diff --git a/.flake8 b/.flake8 new file mode 100644 index 000000000..3dd31e6e9 --- /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 index 0bfeaccb0..47d43017a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -8,3 +8,6 @@ *.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 index d0d79c326..36234f1c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,29 +12,43 @@ jobs: strategy: fail-fast: false matrix: - version: [usa, usa.demo] + version: [GPVE01, GPVE01_D17] steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 + submodules: recursive - name: Git config run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Prepare + run: cp -R /orig . - name: Build run: | - python configure.py -m -v ${{matrix.version}} --compilers /compilers/GC - ninja + python configure.py --map --version ${{ matrix.version }} \ + --binutils /binutils --compilers /compilers + ninja all_source build/${{ matrix.version }}/progress.json \ + build/${{ matrix.version }}/report.json - name: Upload progress if: github.ref == 'refs/heads/main' continue-on-error: true env: + PROGRESS_SLUG: pikmin2 PROGRESS_API_KEY: ${{secrets.PROGRESS_API_KEY}} run: | - python tools/upload-progress.py -b https://progress.decomp.club/ -p pikmin2 -v ${{matrix.version}} \ - build/pikmin2.${{matrix.version}}/main.dol.progress + python tools/upload_progress.py -b https://progress.decomp.club/ \ + -p $PROGRESS_SLUG -v ${{ matrix.version }} \ + build/${{ matrix.version }}/progress.json - name: Upload map uses: actions/upload-artifact@v4 with: - name: pikmin2UP-${{matrix.version}}.MAP - path: build/*/pikmin2UP.MAP + name: ${{ matrix.version }}_maps + path: build/${{ matrix.version }}/**/*.MAP + - name: Upload report + uses: actions/upload-artifact@v4 + with: + name: ${{ matrix.version }}_report + path: build/${{ matrix.version }}/report.json build_make: name: Build (legacy) @@ -43,13 +57,15 @@ jobs: strategy: fail-fast: false matrix: - version: [usa, usa.demo] + version: [GPVE01, GPVE01_D17] steps: - name: Checkout uses: actions/checkout@v4 + with: + fetch-depth: 0 + submodules: recursive - name: Git config run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Build run: | - python configure.py --map --compilers /compilers/GC - make -j$(nproc) MAPGENFLAG=1 VERSION=${{matrix.version}} COMPILERS=/compilers/GC + make -j$(nproc) MAPGENFLAG=1 VERSION=${{matrix.version}} diff --git a/.gitignore b/.gitignore index 741476446..6d3819e82 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,11 @@ __pycache__ .ninja_log newlines.py objdiff.json + +.idea +.ninja_* +.mypy_cache + +orig/*/* +!orig/*/.gitkeep +/*.txt diff --git a/.vscode/settings.json b/.vscode/settings.json index 3bbd5944a..19d7c179a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,10 +1,10 @@ { "[c]": { - "files.encoding": "shiftjis", + "files.encoding": "utf8", "editor.defaultFormatter": "ms-vscode.cpptools" }, "[cpp]": { - "files.encoding": "shiftjis", + "files.encoding": "utf8", "editor.defaultFormatter": "ms-vscode.cpptools" }, "editor.tabSize": 4, @@ -59,7 +59,7 @@ "ctype.h": "c", "mem_funcs.h": "c", "card.h": "c", - "FILE_POS.C": "cpp", + "FILE_POS.c": "cpp", "ctype_api.h": "c" } -} \ No newline at end of file +} diff --git a/Makefile b/Makefile index 8dee5c44a..ea2f5d9d6 100644 --- a/Makefile +++ b/Makefile @@ -23,15 +23,24 @@ endif #------------------------------------------------------------------------------- NAME := pikmin2 -VERSION ?= usa -#VERSION := usa.demo +VERSION ?= GPVE01 +#VERSION := GPVE01_D17 -ifeq ($(VERSION), usa) - VERNUM = 2 -else ifeq ($(VERSION), usa.demo) +# only GPVE01 and GPVE01_D17 are implemented right now --EpochFlame + +ifeq ($(VERSION), GPVE01) + VERNUM = 4 +else ifeq ($(VERSION), GPVE01_D17) + VERNUM = 0 +else ifeq ($(VERSION), GPVE01_D18) VERNUM = 1 +else ifeq ($(VERSION), GPVJ01) + VERNUM = 2 +else ifeq ($(VERSION), GPVP01) + VERNUM = 3 +# default to usa retail else - VERNUM = 0 + VERNUM = 4 endif # Use the all-in-one updater after successful build? (Fails on non-windows platforms) @@ -80,35 +89,35 @@ DEPENDS += $(MAKECMDGOALS:.o=.d) MWCC_VERSION := 2.6 MWLD_VERSION := 2.6 +# Tool versions (keep in sync with configure.py) +BINUTILS_TAG := 2.42-1 +COMPILERS_TAG := 20240706 +DTK_TAG := v0.9.4 +SJISWRAP_TAG := v1.1.1 +WIBO_TAG := 0.6.11 + # Programs -POWERPC ?= tools/powerpc +BINUTILS ?= build/binutils +COMPILERS ?= build/compilers +DTK ?= build/tools/dtk +SJISWRAP ?= build/tools/sjiswrap.exe +WIBO ?= build/tools/wibo ifeq ($(WINDOWS),1) - WINE := - AS := $(POWERPC)/powerpc-eabi-as.exe + WRAPPER := + AS := $(BINUTILS)/powerpc-eabi-as.exe PYTHON := python else - WIBO := $(shell command -v wibo 2> /dev/null) - ifdef WIBO - WINE ?= wibo - else - WINE ?= wine - endif - # Disable wine debug output for cleanliness - export WINEDEBUG ?= -all - AS := $(POWERPC)/powerpc-eabi-as + WRAPPER := $(WIBO) + AS := $(BINUTILS)/powerpc-eabi-as PYTHON := python3 endif -COMPILERS ?= tools/mwcc_compiler -CC = $(WINE) $(COMPILERS)/$(MWCC_VERSION)/mwcceppc.exe -LD := $(WINE) $(COMPILERS)/$(MWLD_VERSION)/mwldeppc.exe -DTK := tools/dtk -ELF2DOL := $(DTK) elf2dol -SHASUM := $(DTK) shasum +CC = $(WRAPPER) $(SJISWRAP) $(COMPILERS)/GC/$(MWCC_VERSION)/mwcceppc.exe +LD := $(WRAPPER) $(COMPILERS)/GC/$(MWLD_VERSION)/mwldeppc.exe ifneq ($(WINDOWS),1) -TRANSFORM_DEP := tools/transform-dep.py +TRANSFORM_DEP := tools/transform_dep.py else -TRANSFORM_DEP := tools/transform-win.py +TRANSFORM_DEP := tools/transform_win.py endif # Options @@ -125,7 +134,7 @@ ifeq ($(VERBOSE),0) LDFLAGS := $(MAPGEN) -fp hard -nodefaults -w off endif LIBRARY_LDFLAGS := -nodefaults -fp hard -proc gekko -CFLAGS := -Cpp_exceptions off -enum int -inline auto -proc gekko -RTTI off -fp hard -fp_contract on -rostr -O4,p -use_lmw_stmw on -common on -sdata 8 -sdata2 8 -nodefaults -MMD -DVERNUM=$(VERNUM) $(INCLUDES) +CFLAGS := -Cpp_exceptions off -enum int -inline auto -proc gekko -RTTI off -fp hard -fp_contract on -rostr -O4,p -use_lmw_stmw on -common on -multibyte -sdata 8 -sdata2 8 -nodefaults -MMD -DVERNUM=$(VERNUM) $(INCLUDES) ifeq ($(VERBOSE),0) # this set of ASFLAGS generates no warnings. @@ -152,24 +161,45 @@ DUMMY != mkdir -p $(ALL_DIRS) LDSCRIPT := ldscript.lcf $(DOL): $(ELF) | $(DTK) - $(QUIET) $(ELF2DOL) $< $@ - $(QUIET) $(SHASUM) -c sha1/$(NAME).$(VERSION).sha1 + $(QUIET) $(DTK) elf2dol $< $@ + $(QUIET) $(DTK) shasum -c sha1/$(NAME).$(VERSION).sha1 ifneq ($(findstring -map,$(LDFLAGS)),) $(QUIET) $(PYTHON) tools/calcprogress.py $(DOL) $(MAP) endif ifeq ($(USE_AOI),1) - $(WINE) ./aoi.exe + ./aoi.exe endif clean: rm -f -d -r build -$(DTK): tools/dtk_version +$(DTK): + @echo "Downloading $@" + $(QUIET) mkdir -p $(dir $@) + $(QUIET) $(PYTHON) tools/download_tool.py dtk $@ --tag $(DTK_TAG) + +$(SJISWRAP): + @echo "Downloading $@" + $(QUIET) mkdir -p $(dir $@) + $(QUIET) $(PYTHON) tools/download_tool.py sjiswrap $@ --tag $(SJISWRAP_TAG) + +$(BINUTILS): + @echo "Downloading $@" + $(QUIET) mkdir -p $(dir $@) + $(QUIET) $(PYTHON) tools/download_tool.py binutils $@ --tag $(BINUTILS_TAG) + +$(COMPILERS): + @echo "Downloading $@" + $(QUIET) mkdir -p $(dir $@) + $(QUIET) $(PYTHON) tools/download_tool.py compilers $@ --tag $(COMPILERS_TAG) + +$(WIBO): @echo "Downloading $@" - $(QUIET) $(PYTHON) tools/download_dtk.py $< $@ + $(QUIET) mkdir -p $(dir $@) + $(QUIET) $(PYTHON) tools/download_tool.py wibo $@ --tag $(WIBO_TAG) # ELF creation makefile instructions -$(ELF): $(O_FILES) $(LDSCRIPT) +$(ELF): $(O_FILES) $(LDSCRIPT) $(WRAPPER) $(COMPILERS) @echo Linking ELF $@ $(QUIET) @echo $(O_FILES) > build/o_files $(QUIET) $(LD) $(LDFLAGS) -o $@ -lcf $(LDSCRIPT) @build/o_files @@ -185,46 +215,32 @@ ifneq ($(MAKECMDGOALS), clean) -include $(DEPENDS) endif -$(BUILD_DIR)/%.o: %.s +$(BUILD_DIR)/%.o: %.s | $(BINUTILS) $(DTK) @echo Assembling $< $(QUIET) mkdir -p $(dir $@) $(QUIET) $(AS) $(ASFLAGS) -o $@ $< + $(QUIET) $(DTK) elf fixup $@ $@ -# for files with capitalized .C extension -$(BUILD_DIR)/%.o: %.C +$(BUILD_DIR)/%.o: %.c | $(WRAPPER) $(COMPILERS) $(SJISWRAP) @echo "Compiling " $< $(QUIET) mkdir -p $(dir $@) $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< -$(BUILD_DIR)/%.o: %.c +$(BUILD_DIR)/%.o: %.C | $(WRAPPER) $(COMPILERS) $(SJISWRAP) @echo "Compiling " $< $(QUIET) mkdir -p $(dir $@) $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< -$(BUILD_DIR)/%.o: %.cp +$(BUILD_DIR)/%.o: %.cp | $(WRAPPER) $(COMPILERS) $(SJISWRAP) @echo "Compiling " $< $(QUIET) mkdir -p $(dir $@) $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< -$(BUILD_DIR)/%.o: %.cpp +$(BUILD_DIR)/%.o: %.cpp | $(WRAPPER) $(COMPILERS) $(SJISWRAP) @echo "Compiling " $< $(QUIET) mkdir -p $(dir $@) $(QUIET) $(CC) $(CFLAGS) -c -o $(dir $@) $< -### Extremely lazy recipes for generating context ### -# Example usage: make build/pikmin2.usa/src/plugProjectYamashitaU/farmMgr.h -$(BUILD_DIR)/%.h: %.c - @echo "Compiling and generating context for " $< - $(QUIET) $(CC) $(CFLAGS) -E -c -o $@ $< - -$(BUILD_DIR)/%.h: %.cp - @echo "Compiling and generating context for " $< - $(QUIET) $(CC) $(CFLAGS) -E -c -o $@ $< - -$(BUILD_DIR)/%.h: %.cpp - @echo "Compiling and generating context for " $< - $(QUIET) $(CC) $(CFLAGS) -E -c -o $@ $< - ### Debug Print ### print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true diff --git a/README.MD b/README.MD index b6d61d106..dea89898a 100644 --- a/README.MD +++ b/README.MD @@ -1,77 +1,122 @@ -Pikmin 2 [![Build Status]][actions] ![Code Progress] ![Data Progress] -======== +Pikmin 2 +[![Build Status]][actions] ![Code Progress] ![Data Progress] [![Discord Badge]][discord] +============= [Build Status]: https://github.com/projectPiki/pikmin2/actions/workflows/build.yml/badge.svg [actions]: https://github.com/projectPiki/pikmin2/actions/workflows/build.yml -[Code Progress]: https://img.shields.io/endpoint?label=Code&url=https%3A%2F%2Fprogress.deco.mp%2Fdata%2Fpikmin2%2Fusa%2Fdol%2F%3Fmode%3Dshield%26measure%3Dcode -[Data Progress]: https://img.shields.io/endpoint?label=Data&url=https%3A%2F%2Fprogress.deco.mp%2Fdata%2Fpikmin2%2Fusa%2Fdol%2F%3Fmode%3Dshield%26measure%3Ddata +[Code Progress]: https://img.shields.io/endpoint?label=Code&url=https%3A%2F%2Fprogress.deco.mp%2Fdata%2Fpikmin2%2FGPVE01%2Fdol%2F%3Fmode%3Dshield%26measure%3Dcode +[Data Progress]: https://img.shields.io/endpoint?label=Data&url=https%3A%2F%2Fprogress.deco.mp%2Fdata%2Fpikmin2%2FGPVE01%2Fdol%2F%3Fmode%3Dshield%26measure%3Ddata +[Discord Badge]: https://img.shields.io/discord/933849697485983765?color=%237289DA&logo=discord&logoColor=%23FFFFFF +[discord]: https://discord.gg/CWKqYMePX8 -A decompilation of Pikmin 2. +A work-in-progress decompilation of Pikmin 2. -This repository builds the following DOLs: +Supported versions: +- `GPVE01`: USA Retail +- `GPVE01_D17`: USA Demo 17 + +Index +----- + +- [Dependencies](#dependencies) + - [Windows](#windows) + - [macOS](#macos) + - [Linux](#linux) +- [Building](#building) +- [Diffing](#diffing) +- [Modding](#modding) + +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' ``` -90d328bf8f190c90472e8c19e7e53c6ad0fe0d1a build/pikmin2.usa/main.dol -3730939092688902af4866be66d4a8404ae752c7 build/pikmin2.usa.demo/main.dol -``` -> **Note** -> The ROM this repository builds can be shifted. You are able to add -> and remove code as you see fit, for modding or research purposes. +### 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 +Building +-------- -### Required Tools -[Python 3.8+](https://www.python.org/downloads/) +- Clone the repository: -### Instructions + ```sh + git clone https://github.com/projectPiki/pikmin2.git + ``` -1. Clone the repo using `git clone https://github.com/projectPiki/pikmin2/` +- Using [Dolphin Emulator](https://dolphin-emu.org/), extract your game's system data to `orig/GPVE01`. (Or `orig/GPVE01_D17` for demo) + - Right-click the game in Dolphin's game list and select `Properties`. + - Go to the `Filesystem` tab and right-click `Disc` -> `Extract System Data`. +![Dolphin filesystem extract](assets/dolphin-extract.png) + - After extraction, the following file should exist: `orig/GPVE01/sys/main.dol`. +- Configure: -2. Run `configure.py` to automatically download/build any other necessary files for the project. + ```sh + python configure.py + ``` -3. Enter `ninja` (recommended) or `make -j` in a command prompt or terminal. - - `-j` Allows `make` to use multiple threads, speeding up the process. - - `ninja` already implicitly uses the max amount of cores available, only use `-j` to *decrease* the thread count. - - If just `-j` gives errors on your setup, try specifying a set number of threads, e.g. `make -j 4`. + To use the demo version, add `--version GPVE01_D17`. Add `--help` to see all available options. +- Build: -* OPTIONAL STEPS: - - Obtain a clean DOL of Pikmin 2 USA 1.0 and place it in the base working directory and rename it to `baserom.dol`. - - To generate a linker map (takes a considerable amount of time), run `ninja -m` or `make MAPGENFLAG=1 -j`. - - The project uses clang-format for a consistent style. Download the [correct version](https://cdn.discordapp.com/attachments/933849922418126918/1031358615300345856/clang-format.exe) and place in the main repo directory (e.g. `pikmin2/clang-format.exe`). + ```sh + ninja + ``` -* See [this video](https://youtu.be/CZXNQagqpkw) for a walkthrough of the steps on Windows (thanks Altafen for making this!). +Diffing +------- -### Decompilation workflow +Once the initial build succeeds, an `objdiff.json` should exist in the project root. -- The project is compatible with [objdiff](https://github.com/encounter/objdiff), which is highly recommended for local decompilation testing. Objdiff can be built from source, or the latest stable build obtained from GitHub actions (recommended). +Download the latest release from [encounter/objdiff](https://github.com/encounter/objdiff). Under project settings, set `Project directory`. The configuration should be loaded automatically. -- To obtain the latest stable build: - 1. Navigate to the `Actions` tab of the objdiff repo. - 2. Select the latest `main` workflow. - 3. Scroll to the bottom of the page and download the `stable` release for your platform (Mac, Linux, Windows). - 4. Extract contents of `.zip` to obtain an executable version. +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`. + +![objdiff project configuration](assets/objdiff.png) + +Modding +------- + +To enable modding, run `configure.py` with the `--non-matching` flag: + +```sh +python configure.py --non-matching +``` -- To set up objdiff for this project: - 1. Run `objdiff.exe`. - 2. Set: - - Project dir: `/path/to/cloned/pikmin2`. - - Custom make program: `ninja` or `make`, depending on what was used to build previously. - - If specifying the name isn't enough, it's likely the program isn't on your `PATH`; try an absolute path instead. - - (`make` only) Build config: `None`. - - (`make` only) Select target build dir: `/path/to/cloned/pikmin2/build/pikmin2.usa/asm`. - - (`make` only) Select base build dir: `/path/to/cloned/pikmin2/build/pikmin2.usa/src`. - 3. Select desired object file to diff: - - With `ninja`, an explorer viewer is provided after applying the previous settings. - - With `make`, you must explicitly select the object each time (likely from `pikmin2/build/pikmin2.usa/asm/LIBRARY/OBJECTFILE.o`). - 4. Decomp it! +This: -### Generating Context for decomp.me Scratches +- Disables final hash verification. +- Builds all assembly files in `asm`. +- Builds all source files marked as `Equivalent` in `configure.py`. -- [decomp.me](https://decomp.me/) is an online decompilation sharing hub, allowing 'scratches' of functions to be generated and collaborated on. -- Stand-alone decompilation packages and tools such as decomp.me require information on the functions and structures of the project in order to parse extracted blocks correctly. The easiest way to do this is to pass the tool just the necessary 'context' for the file, i.e. a set of all the headers used by the file that's being worked on. -- A recursive context processing script is included in the repo ([tools/decompctx.py](https://github.com/projectPiki/pikmin2/tree/main/tools/decompctx.py)), which generates a `ctx.c` file in the root directory. - - The contents of this can then be copied and pasted into the 'Context' section of a decomp.me scratch or similar. -- To use, call the generator via the terminal/command line from the root directory (replacing DIRECTORY and FILE as required): - ```python tools/decompctx.py src/DIRECTORY/FILE.cpp``` -- Credit to encounter and the [Metroid Prime decomp project](https://github.com/PrimeDecomp/prime) for the script! +Once built with `ninja`, the new DOL will exist at `build/GPVE01/main.dol`. diff --git a/asm/JSystem/J3D/J3DTevs.s b/asm/JSystem/J3D/J3DTevs.s index e2c5eb22a..c9076aba4 100644 --- a/asm/JSystem/J3D/J3DTevs.s +++ b/asm/JSystem/J3D/J3DTevs.s @@ -174,11 +174,6 @@ .endobj lbl_804A1900 .section .bss # 0x804EFC20 - 0x8051467C -# J3DTevs.cpp -# J3DPacket.cpp -# temporarily moved to J3DTevs.cpp for the sake of alignment -.comm sGDLObj__17J3DDisplayListObj, 0x10, 4 - .comm j3dTexCoordTable, 0x2528, 4 .comm j3dTevSwapTableTable, 0x400, 4 .comm j3dAlphaCmpTable, 0x300, 4 diff --git a/asm/JSystem/JAudio/JAS/JASTrack.s b/asm/JSystem/JAudio/JAS/JASTrack.s index 02302c1d5..8ab58cc8f 100644 --- a/asm/JSystem/JAudio/JAS/JASTrack.s +++ b/asm/JSystem/JAudio/JAS/JASTrack.s @@ -1,5 +1,5 @@ .include "macros.inc" -.if version == 2 +.if version == 4 .section .sdata, "wa" # 0x80514680 - 0x80514D80 .balign 8 .obj zz_80514788, local @@ -48,7 +48,7 @@ .4byte .L_800A1CB8 .endobj lbl_804A4394 -.if version == 1 +.if version == 0 .balign 32 .obj c32, local .float 1.0 @@ -4155,7 +4155,7 @@ /* 800A2654 0009F594 4E 80 00 20 */ blr .endfn panCalc__8JASTrackFfffUc -.if version == 1 +.if version == 0 .fn rootCallback__8JASTrackFPv, global /* 800A2658 0009F598 94 21 FF F0 */ stwu r1, -0x10(r1) /* 800A265C 0009F59C 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectKandoU/baseGameSection.s b/asm/plugProjectKandoU/baseGameSection.s index 68fc570c1..a147529bd 100644 --- a/asm/plugProjectKandoU/baseGameSection.s +++ b/asm/plugProjectKandoU/baseGameSection.s @@ -765,7 +765,7 @@ lbl_constructor: .endobj lbl_80520E58 .section .text, "ax" # 0x800056C0 - 0x80472F00 -.if version == 1 +.if version == 0 .fn __ct__Q24Game15BaseGameSectionFP7JKRHeap, global /* 8014ADA0 00147CE0 94 21 FF D0 */ stwu r1, -0x30(r1) /* 8014ADA4 00147CE4 7C 08 02 A6 */ mflr r0 @@ -1149,7 +1149,7 @@ lbl_constructor: /* 8014B0F8 00148038 4E 80 00 20 */ blr .endfn __dt__8WipeBaseFv -.if version == 1 +.if version == 0 .fn useSpecificFBTexture__Q24Game15BaseGameSectionFP10JUTTexture, global /* 8014B0FC 0014803C 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014B100 00148040 7C 08 02 A6 */ mflr r0 @@ -1217,7 +1217,7 @@ lbl_constructor: .endfn useSpecificFBTexture__Q24Game15BaseGameSectionFP10JUTTexture .endif -.if version == 1 +.if version == 0 .fn restoreFBTexture__Q24Game15BaseGameSectionFv, global /* 8014B170 001480B0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014B174 001480B4 7C 08 02 A6 */ mflr r0 @@ -1281,7 +1281,7 @@ lbl_constructor: .endfn restoreFBTexture__Q24Game15BaseGameSectionFv .endif -.if version == 1 +.if version == 0 .fn __dt__Q24Game15BaseGameSectionFv, global /* 8014B1DC 0014811C 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014B1E0 00148120 7C 08 02 A6 */ mflr r0 @@ -1435,7 +1435,7 @@ lbl_constructor: .endfn __dt__Q24Game15BaseGameSectionFv .endif -.if version == 1 +.if version == 0 .fn loadSync__Q24Game15BaseGameSectionFP9IDelegateb, global /* 8014B2F0 00148230 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014B2F4 00148234 7C 08 02 A6 */ mflr r0 @@ -1483,7 +1483,7 @@ lbl_constructor: .endfn loadSync__Q24Game15BaseGameSectionFP9IDelegateb .endif -.if version == 1 +.if version == 0 .fn waitSyncLoad__Q24Game15BaseGameSectionFb, global /* 8014B340 00148280 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014B344 00148284 7C 08 02 A6 */ mflr r0 @@ -1669,7 +1669,7 @@ lbl_constructor: /* 8014B4AC 001483EC 4E 80 00 20 */ blr .endfn dvdloadGameSystem__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn init__Q24Game15BaseGameSectionFv, global /* 8014B4B0 001483F0 94 21 FF A0 */ stwu r1, -0x60(r1) /* 8014B4B4 001483F4 7C 08 02 A6 */ mflr r0 @@ -2172,7 +2172,7 @@ lbl_constructor: /* 8014B878 001487B8 4E 80 00 20 */ blr .endfn section_fadeout__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn doUpdate__Q24Game15BaseGameSectionFv, global /* 8014B87C 001487BC 94 21 FF D0 */ stwu r1, -0x30(r1) /* 8014B880 001487C0 7C 08 02 A6 */ mflr r0 @@ -2690,7 +2690,7 @@ lbl_constructor: /* 8014BC24 00148B64 4E 80 00 20 */ blr .endfn onUpdate__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn doDraw__Q24Game15BaseGameSectionFR8Graphics, global /* 8014BC28 00148B68 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014BC2C 00148B6C 7C 08 02 A6 */ mflr r0 @@ -2896,7 +2896,7 @@ lbl_constructor: /* 8014BD98 00148CD8 4E 80 00 20 */ blr .endfn pre2dDraw__Q24Game15BaseGameSectionFR8Graphics -.if version == 1 +.if version == 0 .fn movieDone__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl, global /* 8014BD9C 00148CDC 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014BDA0 00148CE0 7C 08 02 A6 */ mflr r0 @@ -3012,7 +3012,7 @@ lbl_constructor: /* 8014BEA0 00148DE0 4E 80 00 20 */ blr .endfn onMovieCommand__Q24Game15BaseGameSectionFi -.if version == 1 +.if version == 0 .fn initJ3D__Q24Game15BaseGameSectionFv, global /* 8014BEA4 00148DE4 94 21 FF C0 */ stwu r1, -0x40(r1) /* 8014BEA8 00148DE8 7C 08 02 A6 */ mflr r0 @@ -3592,7 +3592,7 @@ lbl_constructor: /* 8014C324 00149264 4E 80 00 20 */ blr .endfn initResources__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn initViewports__Q24Game15BaseGameSectionFR8Graphics, global /* 8014C328 00149268 94 21 FF C0 */ stwu r1, -0x40(r1) /* 8014C32C 0014926C 7C 08 02 A6 */ mflr r0 @@ -3901,7 +3901,7 @@ lbl_constructor: /* 8014C5C8 00149508 4E 80 00 20 */ blr .endfn __dt__12LookAtCameraFv -.if version == 1 +.if version == 0 .fn initGenerators__Q24Game15BaseGameSectionFv, global /* 8014C5CC 0014950C 94 21 E3 60 */ stwu r1, -0x1ca0(r1) /* 8014C5D0 00149510 7C 08 02 A6 */ mflr r0 @@ -6326,7 +6326,7 @@ lbl_constructor: /* 8014D860 0014A7A0 4E 80 00 20 */ blr .endfn saveToGeneratorCache__Q24Game15BaseGameSectionFPQ24Game10CourseInfo -.if version == 1 +.if version == 0 .fn pmTogglePlayer__Q24Game15BaseGameSectionFv, global /* 8014D864 0014A7A4 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014D868 0014A7A8 7C 08 02 A6 */ mflr r0 @@ -6432,7 +6432,7 @@ lbl_constructor: /* 8014D914 0014A854 4E 80 00 20 */ blr .endfn onPlayerJoin__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn setPlayerMode__Q24Game15BaseGameSectionFi, global /* 8014D918 0014A858 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014D91C 0014A85C 7C 08 02 A6 */ mflr r0 @@ -6896,7 +6896,7 @@ lbl_constructor: /* 8014DD1C 0014AC5C 4E 80 00 20 */ blr .endfn onCameraBlendFinished__Q24Game15BaseGameSectionFPQ24Game9CameraArg -.if version == 1 +.if version == 0 .fn setFixNearFar__Q24Game15BaseGameSectionFbff, global /* 8014DD20 0014AC60 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014DD24 0014AC64 7C 08 02 A6 */ mflr r0 @@ -6956,7 +6956,7 @@ lbl_constructor: .endfn setFixNearFar__Q24Game15BaseGameSectionFbff .endif -.if version == 1 +.if version == 0 .fn setCamController__Q24Game15BaseGameSectionFv, global /* 8014DD88 0014ACC8 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014DD8C 0014ACCC 7C 08 02 A6 */ mflr r0 @@ -7250,7 +7250,7 @@ lbl_constructor: /* 8014DF98 0014AED8 4E 80 00 20 */ blr .endfn on_setCamController__Q24Game15BaseGameSectionFi -.if version == 1 +.if version == 0 .fn setDefaultPSSceneInfo__Q24Game15BaseGameSectionFRQ26PSGame9SceneInfo, global /* 8014DF9C 0014AEDC 94 21 FF D0 */ stwu r1, -0x30(r1) /* 8014DFA0 0014AEE0 7C 08 02 A6 */ mflr r0 @@ -8405,7 +8405,7 @@ lbl_constructor: /* 8014EECC 0014BE0C 4E 80 00 20 */ blr .endfn "prepareFountainOn__Q24Game15BaseGameSectionFR10Vector3" -.if version == 1 +.if version == 0 .fn initLights__Q24Game15BaseGameSectionFv, global /* 8014EED0 0014BE10 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014EED4 0014BE14 7C 08 02 A6 */ mflr r0 @@ -8484,7 +8484,7 @@ lbl_constructor: /* 8014EF60 0014BEA0 4E 80 00 20 */ blr .endfn draw3D__Q24Game15BaseGameSectionFR8Graphics -.if version == 1 +.if version == 0 .fn drawParticle__Q24Game15BaseGameSectionFR8Graphicsi, global /* 8014EF64 0014BEA4 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014EF68 0014BEA8 7C 08 02 A6 */ mflr r0 @@ -8795,7 +8795,7 @@ lbl_constructor: /* 8014F1D8 0014C118 4E 80 00 20 */ blr .endfn test_draw_treasure_detector__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn draw2D__Q24Game15BaseGameSectionFR8Graphics, global /* 8014F1DC 0014C11C 94 21 FF 80 */ stwu r1, -0x80(r1) /* 8014F1E0 0014C120 7C 08 02 A6 */ mflr r0 @@ -9029,7 +9029,7 @@ lbl_constructor: .endfn draw2D__Q24Game15BaseGameSectionFR8Graphics .endif -.if version == 1 +.if version == 0 .fn directDraw__Q24Game15BaseGameSectionFR8GraphicsP8Viewport, global /* 8014F398 0014C2D8 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014F39C 0014C2DC 7C 08 02 A6 */ mflr r0 @@ -9420,7 +9420,7 @@ lbl_constructor: /* 8014F864 0014C7A4 4E 80 00 20 */ blr .endfn doEntry__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn doSetView__Q24Game15BaseGameSectionFi, global /* 8014F868 0014C7A8 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014F86C 0014C7AC 7C 08 02 A6 */ mflr r0 @@ -9617,7 +9617,7 @@ lbl_constructor: /* 8014FA2C 0014C96C 4E 80 00 20 */ blr .endfn doViewCalc__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn updateBlendCamera__Q24Game15BaseGameSectionFv, global /* 8014FA30 0014C970 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8014FA34 0014C974 7C 08 02 A6 */ mflr r0 @@ -9821,7 +9821,7 @@ lbl_constructor: .endfn updateBlendCamera__Q24Game15BaseGameSectionFv .endif -.if version == 1 +.if version == 0 .fn setSplitter__Q24Game15BaseGameSectionFb, global /* 8014FBA4 0014CAE4 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014FBA8 0014CAE8 7C 08 02 A6 */ mflr r0 @@ -9887,7 +9887,7 @@ lbl_constructor: .endfn setSplitter__Q24Game15BaseGameSectionFb .endif -.if version == 1 +.if version == 0 .fn updateSplitter__Q24Game15BaseGameSectionFv, global /* 8014FC10 0014CB50 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014FC14 0014CB54 7C 08 02 A6 */ mflr r0 @@ -10094,7 +10094,7 @@ lbl_constructor: /* 8014FDA0 0014CCE0 4E 80 00 20 */ blr .endfn onStartHeap__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn clearHeap__Q24Game15BaseGameSectionFv, global /* 8014FDA4 0014CCE4 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8014FDA8 0014CCE8 7C 08 02 A6 */ mflr r0 @@ -10490,7 +10490,7 @@ lbl_constructor: /* 801500AC 0014CFEC 4E 80 00 20 */ blr .endfn onClearHeap__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn startFadeout__Q24Game15BaseGameSectionFf, global /* 801500B0 0014CFF0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 801500B4 0014CFF4 7C 08 02 A6 */ mflr r0 @@ -10520,7 +10520,7 @@ lbl_constructor: .endfn startFadeout__Q24Game15BaseGameSectionFf .endif -.if version == 1 +.if version == 0 .fn startFadein__Q24Game15BaseGameSectionFf, global /* 801500DC 0014D01C 94 21 FF F0 */ stwu r1, -0x10(r1) /* 801500E0 0014D020 7C 08 02 A6 */ mflr r0 @@ -10550,7 +10550,7 @@ lbl_constructor: .endfn startFadein__Q24Game15BaseGameSectionFf .endif -.if version == 1 +.if version == 0 .fn startFadeoutin__Q24Game15BaseGameSectionFf, global /* 80150108 0014D048 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8015010C 0014D04C 7C 08 02 A6 */ mflr r0 @@ -10580,7 +10580,7 @@ lbl_constructor: .endfn startFadeoutin__Q24Game15BaseGameSectionFf .endif -.if version == 1 +.if version == 0 .fn startFadeblack__Q24Game15BaseGameSectionFv, global /* 80150134 0014D074 94 21 FF F0 */ stwu r1, -0x10(r1) /* 80150138 0014D078 7C 08 02 A6 */ mflr r0 @@ -10618,7 +10618,7 @@ lbl_constructor: .endfn startFadeblack__Q24Game15BaseGameSectionFv .endif -.if version == 1 +.if version == 0 .fn startFadewhite__Q24Game15BaseGameSectionFv, global /* 80150170 0014D0B0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 80150174 0014D0B4 7C 08 02 A6 */ mflr r0 @@ -10656,7 +10656,7 @@ lbl_constructor: .endfn startFadewhite__Q24Game15BaseGameSectionFv .endif -.if version == 1 +.if version == 0 .fn setupFixMemory__Q24Game15BaseGameSectionFv, global /* 801501AC 0014D0EC 94 21 FF E0 */ stwu r1, -0x20(r1) /* 801501B0 0014D0F0 7C 08 02 A6 */ mflr r0 @@ -10898,7 +10898,7 @@ lbl_constructor: .endfn setupFixMemory__Q24Game15BaseGameSectionFv .endif -.if version == 1 +.if version == 0 .fn setupFixMemory_dvdload__Q24Game15BaseGameSectionFv, global /* 8015036C 0014D2AC 94 21 FF E0 */ stwu r1, -0x20(r1) /* 80150370 0014D2B0 7C 08 02 A6 */ mflr r0 @@ -11374,7 +11374,7 @@ lbl_constructor: /* 8015070C 0014D64C 4E 80 00 20 */ blr .endfn disableAllocHalt__Q24Game15BaseGameSectionFv -.if version == 1 +.if version == 0 .fn setupFloatMemory__Q24Game15BaseGameSectionFv, global /* 80150710 0014D650 94 21 FD 40 */ stwu r1, -0x2c0(r1) /* 80150714 0014D654 7C 08 02 A6 */ mflr r0 @@ -13179,7 +13179,7 @@ lbl_constructor: /* 80151458 0014E398 4E 80 00 20 */ blr .endfn "__dt__Q28PSSystem28SingletonBaseFv" -.if version == 1 +.if version == 0 .fn setDrawBuffer__Q24Game15BaseGameSectionFi, global /* 8015145C 0014E39C 94 21 FF F0 */ stwu r1, -0x10(r1) /* 80151460 0014E3A0 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectKandoU/pelletMgr.s b/asm/plugProjectKandoU/pelletMgr.s index b0f997a04..7315f72ac 100644 --- a/asm/plugProjectKandoU/pelletMgr.s +++ b/asm/plugProjectKandoU/pelletMgr.s @@ -8716,7 +8716,7 @@ lbl_constructor: /* 8016C5E8 00169528 4E 80 00 20 */ blr .endfn closeTextArc__Q24Game13BasePelletMgrFP10JKRArchive -.if version == 1 +.if version == 0 .fn useModelMgr__Q24Game13BasePelletMgrFiUl, global /* 8016C5EC 0016952C 94 21 FF D0 */ stwu r1, -0x30(r1) /* 8016C5F0 00169530 7C 08 02 A6 */ mflr r0 @@ -8862,7 +8862,7 @@ lbl_constructor: /* 8016C6FC 0016963C 4E 80 00 20 */ blr .endfn onCreateModel__Q24Game13BasePelletMgrFPQ28SysShape5Model -.if version == 1 +.if version == 0 .fn createShape__Q24Game13BasePelletMgrFii, global /* 8016C700 00169640 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8016C704 00169644 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectKandoU/pelletState.s b/asm/plugProjectKandoU/pelletState.s index 0012f1b9c..a68c0bebc 100644 --- a/asm/plugProjectKandoU/pelletState.s +++ b/asm/plugProjectKandoU/pelletState.s @@ -1129,7 +1129,7 @@ lbl_constructor: /* 801A4D54 001A1C94 4E 80 00 20 */ blr .endfn init__Q24Game15PelletGoalStateFPQ24Game6PelletPQ24Game8StateArg -.if version == 1 +.if version == 0 .fn checkMovie__Q24Game15PelletGoalStateFPQ24Game6Pellet, global /* 801A4D58 001A1C98 94 21 FD 40 */ stwu r1, -0x2c0(r1) /* 801A4D5C 001A1C9C 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectKandoU/singleGS_CaveResult.s b/asm/plugProjectKandoU/singleGS_CaveResult.s index 6bd13a691..99a74fd5d 100644 --- a/asm/plugProjectKandoU/singleGS_CaveResult.s +++ b/asm/plugProjectKandoU/singleGS_CaveResult.s @@ -245,7 +245,7 @@ lbl_constructor: /* 8021AE38 00217D78 4E 80 00 20 */ blr .endfn init__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionPQ24Game8StateArg -.if version == 1 +.if version == 0 .fn loadResource__Q34Game10SingleGame15CaveResultStateFv, global /* 8021AE3C 00217D7C 94 21 FF A0 */ stwu r1, -0x60(r1) /* 8021AE40 00217D80 7C 08 02 A6 */ mflr r0 @@ -559,7 +559,7 @@ lbl_constructor: .endfn loadResource__Q34Game10SingleGame15CaveResultStateFv .endif -.if version == 1 +.if version == 0 .fn exec__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection, global /* 8021B07C 00217FBC 94 21 FF 80 */ stwu r1, -0x80(r1) /* 8021B080 00217FC0 7C 08 02 A6 */ mflr r0 @@ -1013,7 +1013,7 @@ lbl_constructor: /* 8021B420 00218360 4E 80 00 20 */ blr .endfn draw__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionR8Graphics -.if version == 1 +.if version == 0 .fn cleanup__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection, global /* 8021B424 00218364 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8021B428 00218368 7C 08 02 A6 */ mflr r0 @@ -1123,7 +1123,7 @@ lbl_constructor: .endfn cleanup__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection .endif -.if version == 1 +.if version == 0 .fn createResultNodes__Q34Game10SingleGame15CaveResultStateFv, global /* 8021B4E8 00218428 94 21 FF C0 */ stwu r1, -0x40(r1) /* 8021B4EC 0021842C 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectKandoU/singleGS_Zukan.s b/asm/plugProjectKandoU/singleGS_Zukan.s index 3b06c96d8..b68a22151 100644 --- a/asm/plugProjectKandoU/singleGS_Zukan.s +++ b/asm/plugProjectKandoU/singleGS_Zukan.s @@ -2041,7 +2041,7 @@ lbl_constructor: /* 802225D4 0021F514 4E 80 00 20 */ blr .endfn __ct__Q34Game10SingleGame10ZukanStateFv -.if version == 1 +.if version == 0 .fn init__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionPQ24Game8StateArg, global /* 802225D8 0021F518 94 21 FF B0 */ stwu r1, -0x50(r1) /* 802225DC 0021F51C 7C 08 02 A6 */ mflr r0 @@ -4830,7 +4830,7 @@ lbl_constructor: /* 80224B48 00221A88 4E 80 00 20 */ blr .endfn drawLightEffect__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics -.if version == 1 +.if version == 0 .fn dvdloadA__Q34Game10SingleGame10ZukanStateFv, global /* 80224B4C 00221A8C 94 21 F9 00 */ stwu r1, -0x700(r1) /* 80224B50 00221A90 7C 08 02 A6 */ mflr r0 @@ -6211,7 +6211,7 @@ lbl_constructor: /* 80225600 00222540 4E 80 00 20 */ blr .endfn createPellet__Q34Game10SingleGame10ZukanStateFi -.if version == 1 +.if version == 0 .fn dvdloadB_teki__Q34Game10SingleGame10ZukanStateFv, global /* 80225604 00222544 94 21 FE 80 */ stwu r1, -0x180(r1) /* 80225608 00222548 7C 08 02 A6 */ mflr r0 @@ -7985,7 +7985,7 @@ lbl_constructor: .endfn dvdloadB_teki__Q34Game10SingleGame10ZukanStateFv .endif -.if version == 1 +.if version == 0 .fn dvdloadB_pellet__Q34Game10SingleGame10ZukanStateFv, global /* 802262E0 00223220 94 21 FF 80 */ stwu r1, -0x80(r1) /* 802262E4 00223224 7C 08 02 A6 */ mflr r0 @@ -9030,7 +9030,7 @@ lbl_constructor: /* 80226D4C 00223C8C 4E 80 00 20 */ blr .endfn clearHeapB_pellet__Q34Game10SingleGame10ZukanStateFv -.if version == 1 +.if version == 0 .fn clearHeaps__Q34Game10SingleGame10ZukanStateFv, global /* 80226D50 00223C90 94 21 FC B0 */ stwu r1, -0x350(r1) /* 80226D54 00223C94 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectKandoU/vsCardMgr.s b/asm/plugProjectKandoU/vsCardMgr.s index 34f4acc52..261976e9e 100644 --- a/asm/plugProjectKandoU/vsCardMgr.s +++ b/asm/plugProjectKandoU/vsCardMgr.s @@ -800,7 +800,7 @@ lbl_constructor: /* 80235A7C 002329BC 4E 80 00 20 */ blr .endfn stopSlot__Q34Game6VsGame7CardMgrFi -.if version == 1 +.if version == 0 .fn usePlayerCard__Q34Game6VsGame7CardMgrFiPQ34Game6VsGame7TekiMgr, global /* 80235A80 002329C0 94 21 FE A0 */ stwu r1, -0x160(r1) /* 80235A84 002329C4 7C 08 02 A6 */ mflr r0 @@ -2811,7 +2811,7 @@ lbl_constructor: /* 80236A1C 0023395C 4E 80 00 20 */ blr .endfn clear__Q44Game6VsGame7CardMgr11SlotMachineFv -.if version == 1 +.if version == 0 .fn start__Q44Game6VsGame7CardMgr11SlotMachineFv, global /* 80236A20 00233960 94 21 FF 40 */ stwu r1, -0xc0(r1) /* 80236A24 00233964 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectMorimuraU/challengeSelect2D.s b/asm/plugProjectMorimuraU/challengeSelect2D.s index bf5d26283..245f6d72c 100644 --- a/asm/plugProjectMorimuraU/challengeSelect2D.s +++ b/asm/plugProjectMorimuraU/challengeSelect2D.s @@ -3358,7 +3358,7 @@ lbl_constructor: /* 8038EBE4 0038BB24 4E 80 00 20 */ blr .endfn __dt__Q28Morimura16TChallengeSelectFv -.if version == 1 +.if version == 0 .fn doCreate__Q28Morimura16TChallengeSelectFP10JKRArchive, global /* 8038EC1C 0038BB5C 94 21 F8 60 */ stwu r1, -0x7a0(r1) /* 8038EC20 0038BB60 7C 08 02 A6 */ mflr r0 @@ -7059,7 +7059,7 @@ lbl_constructor: .endfn doCreate__Q28Morimura16TChallengeSelectFP10JKRArchive .endif -.if version == 1 +.if version == 0 .fn doUpdate__Q28Morimura16TChallengeSelectFv, global /* 803907D0 0038D710 94 21 FF 00 */ stwu r1, -0x100(r1) /* 803907D4 0038D714 7C 08 02 A6 */ mflr r0 @@ -10323,7 +10323,7 @@ lbl_constructor: /* 8039215C 0038F09C 4E 80 00 20 */ blr .endfn doDraw__Q28Morimura16TChallengeSelectFR8Graphics -.if version == 1 +.if version == 0 .fn doUpdateFadeoutFinish__Q28Morimura16TChallengeSelectFv, global /* 80392160 0038F0A0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 80392164 0038F0A4 7C 08 02 A6 */ mflr r0 @@ -10397,7 +10397,7 @@ lbl_constructor: .endfn doUpdateFadeoutFinish__Q28Morimura16TChallengeSelectFv .endif -.if version == 1 +.if version == 0 .fn setInfo__Q28Morimura16TChallengeSelectFi, global /* 803921D8 0038F118 94 21 FF B0 */ stwu r1, -0x50(r1) /* 803921DC 0038F11C 7C 08 02 A6 */ mflr r0 @@ -11008,7 +11008,7 @@ lbl_constructor: /* 8039269C 0038F5DC 4E 80 00 20 */ blr .endfn setStageName__Q28Morimura16TChallengeSelectFi -.if version == 1 +.if version == 0 .fn getState__Q28Morimura16TChallengeSelectFi, global /* 803926A0 0038F5E0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 803926A4 0038F5E4 7C 08 02 A6 */ mflr r0 @@ -11188,7 +11188,7 @@ lbl_constructor: .endfn getState__Q28Morimura16TChallengeSelectFi .endif -.if version == 1 +.if version == 0 .fn getAfterState__Q28Morimura16TChallengeSelectFi, global /* 803927CC 0038F70C 94 21 FF F0 */ stwu r1, -0x10(r1) /* 803927D0 0038F710 7C 08 02 A6 */ mflr r0 @@ -11288,7 +11288,7 @@ lbl_constructor: .endfn getAfterState__Q28Morimura16TChallengeSelectFi .endif -.if version == 1 +.if version == 0 .fn isChangeState__Q28Morimura16TChallengeSelectFi, global /* 80392870 0038F7B0 94 21 FF E0 */ stwu r1, -0x20(r1) /* 80392874 0038F7B4 7C 08 02 A6 */ mflr r0 diff --git a/asm/plugProjectMorimuraU/zukan2D.s b/asm/plugProjectMorimuraU/zukan2D.s index 50569a2bd..bb3d6c352 100644 --- a/asm/plugProjectMorimuraU/zukan2D.s +++ b/asm/plugProjectMorimuraU/zukan2D.s @@ -10460,7 +10460,7 @@ lbl_constructor: /* 80378E6C 00375DAC 4E 80 00 20 */ blr .endfn getIdMax__Q28Morimura10TItemZukanFv -.if version == 1 +.if version == 0 .fn doCreate__Q28Morimura10TItemZukanFP10JKRArchive, global /* 80378E70 00375DB0 94 21 FF 30 */ stwu r1, -0xd0(r1) /* 80378E74 00375DB4 7C 08 02 A6 */ mflr r0 @@ -14052,7 +14052,7 @@ lbl_constructor: /* 8037ACB0 00377BF0 4E 80 00 20 */ blr .endfn doDemoDraw__Q28Morimura10TItemZukanFR8Graphics -.if version == 1 +.if version == 0 .fn setDetail__Q28Morimura10TItemZukanFv, global /* 8037ACB4 00377BF4 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8037ACB8 00377BF8 7C 08 02 A6 */ mflr r0 @@ -14878,7 +14878,7 @@ lbl_constructor: /* 8037B6A0 003785E0 4E 80 00 20 */ blr .endfn __ct__Q28Morimura18TCallbackScrollMsgFv -.if version == 1 +.if version == 0 .fn doInit__Q28Morimura18TCallbackScrollMsgFv, global /* 8037B6A4 003785E4 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8037B6A8 003785E8 7C 08 02 A6 */ mflr r0 @@ -15100,7 +15100,7 @@ lbl_constructor: /* 8037B930 00378870 4E 80 00 20 */ blr .endfn __ct__Q28Morimura12TZukanWindowFP10JKRArchivei -.if version == 1 +.if version == 0 .fn create__Q28Morimura12TZukanWindowFPCcUl, global /* 8037B934 00378874 94 21 FF C0 */ stwu r1, -0x40(r1) /* 8037B938 00378878 7C 08 02 A6 */ mflr r0 @@ -16270,7 +16270,7 @@ lbl_constructor: /* 8037C508 00379448 4E 80 00 20 */ blr .endfn setIconColor__Q28Morimura12TZukanWindowFR13J2DGXColorS10R13J2DGXColorS10 -.if version == 1 +.if version == 0 .fn onIcon__Q28Morimura12TZukanWindowFi, global /* 8037C50C 0037944C 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8037C510 00379450 7C 08 02 A6 */ mflr r0 diff --git a/asm/sysGCU/bootSection.s b/asm/sysGCU/bootSection.s index 1b5fc403b..01046e98a 100644 --- a/asm/sysGCU/bootSection.s +++ b/asm/sysGCU/bootSection.s @@ -134,7 +134,7 @@ lbl_constructor: .4byte .L_8044896C .4byte .L_8044896C .endobj lbl_804ED010 -.if version == 1 +.if version == 0 .obj lbl_804ED03C, local .4byte .L_80449068 .4byte .L_80449074 @@ -426,7 +426,7 @@ lbl_constructor: .obj lbl_80520A6C, local .float 112.0 .endobj lbl_80520A6C -.if version == 2 +.if version == 4 .obj lbl_80520A70, local .float 608.0 .endobj lbl_80520A70 @@ -457,7 +457,7 @@ lbl_constructor: /* 804473E8 00444328 4E 80 00 20 */ blr .endfn __ct__10TinyPikminFv -.if version == 1 +.if version == 0 .fn update__10TinyPikminFv, global /* 804473EC 0044432C 94 21 FF D0 */ stwu r1, -0x30(r1) /* 804473F0 00444330 7C 08 02 A6 */ mflr r0 @@ -1445,7 +1445,7 @@ lbl_constructor: /* 80447D68 00444CA8 4E 80 00 20 */ blr .endfn init__13TinyPikminMgrFv -.if version == 1 +.if version == 0 .fn __ct__11BootSectionFP7JKRHeap, global /* 80447D6C 00444CAC 94 21 FF C0 */ stwu r1, -0x40(r1) /* 80447D70 00444CB0 7C 08 02 A6 */ mflr r0 @@ -1895,7 +1895,7 @@ lbl_constructor: .endfn __ct__11BootSectionFP7JKRHeap .endif -.if version == 1 +.if version == 0 .fn __dt__11BootSectionFv, global /* 804480B4 00444FF4 94 21 FF F0 */ stwu r1, -0x10(r1) /* 804480B8 00444FF8 7C 08 02 A6 */ mflr r0 @@ -1977,7 +1977,7 @@ lbl_constructor: /* 80448138 00445078 4E 80 00 20 */ blr .endfn init__11BootSectionFv -.if version == 1 +.if version == 0 .fn loadBootResource__11BootSectionFv, global /* 8044813C 0044507C 94 21 FE C0 */ stwu r1, -0x140(r1) /* 80448140 00445080 7C 08 02 A6 */ mflr r0 @@ -2359,7 +2359,7 @@ lbl_constructor: .endfn loadBootResource__11BootSectionFv .endif -.if version == 1 +.if version == 0 .fn load2DResource__11BootSectionFv, global /* 804483F4 00445334 94 21 FF F0 */ stwu r1, -0x10(r1) /* 804483F8 00445338 7C 08 02 A6 */ mflr r0 @@ -2705,7 +2705,7 @@ lbl_constructor: /* 804487F0 00445730 4E 80 00 20 */ blr .endfn loadResident__11BootSectionFv -.if version == 1 +.if version == 0 .fn doDraw__11BootSectionFR8Graphics, global /* 804487F4 00445734 94 21 FF F0 */ stwu r1, -0x10(r1) /* 804487F8 00445738 7C 08 02 A6 */ mflr r0 @@ -2966,7 +2966,7 @@ lbl_constructor: /* 804489EC 0044592C 4E 80 00 20 */ blr .endfn drawSetInterlace__11BootSectionFR8Graphics -.if version == 1 +.if version == 0 .fn drawNintendoLogo__11BootSectionFR8Graphics, global /* 804489F0 00445930 94 21 FE 20 */ stwu r1, -0x1e0(r1) /* 804489F4 00445934 7C 08 02 A6 */ mflr r0 @@ -3496,7 +3496,7 @@ lbl_constructor: .endfn drawNintendoLogo__11BootSectionFR8Graphics .endif -.if version == 1 +.if version == 0 .fn drawDolbyLogo__11BootSectionFR8Graphics, global /* 80448DD0 00445D10 94 21 FE 80 */ stwu r1, -0x180(r1) /* 80448DD4 00445D14 7C 08 02 A6 */ mflr r0 @@ -3594,7 +3594,7 @@ lbl_constructor: .endfn drawDolbyLogo__11BootSectionFR8Graphics .endif -.if version == 2 +.if version == 4 .fn drawEpilepsy__11BootSectionFR8Graphics, global /* 80448E84 00445DC4 94 21 FD 00 */ stwu r1, -0x300(r1) /* 80448E88 00445DC8 7C 08 02 A6 */ mflr r0 @@ -3701,7 +3701,7 @@ lbl_constructor: .endfn drawEpilepsy__11BootSectionFR8Graphics .endif -.if version == 1 +.if version == 0 .fn doUpdate__11BootSectionFv, global /* 80448FF4 00445F34 94 21 FF E0 */ stwu r1, -0x20(r1) /* 80448FF8 00445F38 7C 08 02 A6 */ mflr r0 @@ -4522,7 +4522,7 @@ lbl_constructor: .endfn doUpdate__11BootSectionFv .endif -.if version == 1 +.if version == 0 .fn updateLoadResourceFirst__11BootSectionFv, global /* 804494C8 00446408 94 21 FF E0 */ stwu r1, -0x20(r1) /* 804494CC 0044640C 7C 08 02 A6 */ mflr r0 @@ -4738,7 +4738,7 @@ lbl_constructor: /* 80449874 004467B4 4E 80 00 20 */ blr .endfn updateLoadMemoryCard__11BootSectionFv -.if version == 1 +.if version == 0 .fn updateNintendoLogo__11BootSectionFv, global /* 80449878 004467B8 94 21 FF D0 */ stwu r1, -0x30(r1) /* 8044987C 004467BC 7C 08 02 A6 */ mflr r0 @@ -5098,7 +5098,7 @@ lbl_constructor: .endfn updateNintendoLogo__11BootSectionFv .endif -.if version == 1 +.if version == 0 .fn updateProgressive__11BootSectionFv, global /* 80449B00 00446A40 94 21 FF E0 */ stwu r1, -0x20(r1) /* 80449B04 00446A44 7C 08 02 A6 */ mflr r0 @@ -5320,7 +5320,7 @@ lbl_constructor: .endfn updateProgressive__11BootSectionFv .endif -.if version == 1 +.if version == 0 .fn updateWaitProgressive__11BootSectionFv, global /* 80449C80 00446BC0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 80449C84 00446BC4 7C 08 02 A6 */ mflr r0 @@ -5380,7 +5380,7 @@ lbl_constructor: .endfn updateWaitProgressive__11BootSectionFv .endif -.if version == 1 +.if version == 0 .fn run__11BootSectionFv, global /* 80449CE4 00446C24 94 21 FF C0 */ stwu r1, -0x40(r1) /* 80449CE8 00446C28 7C 08 02 A6 */ mflr r0 @@ -5593,7 +5593,7 @@ lbl_constructor: /* 80449ECC 00446E0C 4E 80 00 20 */ blr .endfn waitLoadResource__11BootSectionFv -.if version == 1 +.if version == 0 .fn setMode__11BootSectionFi, global /* 80449ED0 00446E10 94 21 FF E0 */ stwu r1, -0x20(r1) /* 80449ED4 00446E14 7C 08 02 A6 */ mflr r0 @@ -5671,7 +5671,7 @@ lbl_constructor: .endfn setMode__11BootSectionFi .endif -.if version == 1 +.if version == 0 .fn setModeEpilepsy__11BootSectionFv, global /* 80449F54 00446E94 94 21 FF E0 */ stwu r1, -0x20(r1) /* 80449F58 00446E98 7C 08 02 A6 */ mflr r0 diff --git a/asm/sysGCU/section.s b/asm/sysGCU/section.s index 6bda9d1fa..bd9c3d7b1 100644 --- a/asm/sysGCU/section.s +++ b/asm/sysGCU/section.s @@ -85,7 +85,7 @@ lbl_constructor: .obj lbl_80520440, local .float 0.5 .endobj lbl_80520440 -.if version == 1 +.if version == 0 .obj lbl_80520444, local .float 0.0 .endobj lbl_80520444 @@ -109,7 +109,7 @@ lbl_constructor: .asciz "update" .endobj lbl_80520454 .balign 4 -.if version == 1 +.if version == 0 .obj lbl_8052045C, local .float 180.0 .endobj lbl_8052045C @@ -124,7 +124,7 @@ lbl_constructor: /* 80423770 004206B0 4E 80 00 20 */ blr .endfn init__7SectionFv -.if version == 1 +.if version == 0 .fn __ct__7SectionFP10JFWDisplayP7JKRHeapb, global /* 804237F0 00420730 94 21 FF D0 */ stwu r1, -0x30(r1) /* 804237F4 00420734 7C 08 02 A6 */ mflr r0 @@ -507,7 +507,7 @@ lbl_constructor: /* 80423AC0 00420A00 4E 80 00 20 */ blr .endfn __dt__7SectionFv -.if version == 1 +.if version == 0 .fn run__7SectionFv, global /* 80423B94 00420AD4 94 21 FF C0 */ stwu r1, -0x40(r1) /* 80423B98 00420AD8 7C 08 02 A6 */ mflr r0 diff --git a/asm/sysGCU/titleSection.s b/asm/sysGCU/titleSection.s index f19fa1e07..ced887160 100644 --- a/asm/sysGCU/titleSection.s +++ b/asm/sysGCU/titleSection.s @@ -277,7 +277,7 @@ lbl_constructor: .endobj lbl_80520AA4 .section .text, "ax" # 0x800056C0 - 0x80472F00 -.if version == 1 +.if version == 0 .fn __ct__Q25Title7SectionFP7JKRHeap, global /* 8044A03C 00446F7C 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8044A040 00446F80 7C 08 02 A6 */ mflr r0 @@ -631,7 +631,7 @@ lbl_constructor: /* 8044A45C 0044739C 4E 80 00 20 */ blr .endfn __dt__Q23ebi13TMainTitleMgrFv -.if version == 1 +.if version == 0 .fn __dt__Q25Title7SectionFv, global /* 8044A460 004473A0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8044A464 004473A4 7C 08 02 A6 */ mflr r0 @@ -725,7 +725,7 @@ lbl_constructor: .endfn __dt__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn doExit__Q25Title7SectionFv, global /* 8044A504 00447444 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8044A508 00447448 7C 08 02 A6 */ mflr r0 @@ -837,7 +837,7 @@ lbl_constructor: .endfn doExit__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn loadResident__Q25Title7SectionFv, global /* 8044A5C8 00447508 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8044A5CC 0044750C 7C 08 02 A6 */ mflr r0 @@ -981,7 +981,7 @@ lbl_constructor: .endfn loadResident__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn init__Q25Title7SectionFv, global /* 8044A6CC 0044760C 94 21 FF B0 */ stwu r1, -0x50(r1) /* 8044A6D0 00447610 7C 08 02 A6 */ mflr r0 @@ -1601,7 +1601,7 @@ lbl_constructor: /* 8044AB7C 00447ABC 4E 80 00 20 */ blr .endfn menuSelect__Q25Title7SectionFR4Menu -.if version == 1 +.if version == 0 .fn doDraw__Q25Title7SectionFR8Graphics, global /* 8044AB80 00447AC0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8044AB84 00447AC4 7C 08 02 A6 */ mflr r0 @@ -1759,7 +1759,7 @@ lbl_constructor: .endfn doDraw__Q25Title7SectionFR8Graphics .endif -.if version == 1 +.if version == 0 .fn doUpdateMainTitle__Q25Title7SectionFv, global /* 8044AC90 00447BD0 94 21 FF D0 */ stwu r1, -0x30(r1) /* 8044AC94 00447BD4 7C 08 02 A6 */ mflr r0 @@ -2687,7 +2687,7 @@ lbl_constructor: .endfn doUpdateMainTitle__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn doUpdateOmake__Q25Title7SectionFv, global /* 8044B318 00448258 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8044B31C 0044825C 7C 08 02 A6 */ mflr r0 @@ -3443,7 +3443,7 @@ lbl_constructor: /* 8044B8E4 00448824 4E 80 00 20 */ blr .endfn run__Q25Title7SectionFv -.if version == 1 +.if version == 0 .fn doUpdate__Q25Title7SectionFv, global /* 8044B8E8 00448828 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8044B8EC 0044882C 7C 08 02 A6 */ mflr r0 @@ -4255,7 +4255,7 @@ lbl_constructor: .endfn doUpdate__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn isFinishable__Q25Title7SectionFv, global /* 8044BEA0 00448DE0 94 21 FF F0 */ stwu r1, -0x10(r1) /* 8044BEA4 00448DE4 7C 08 02 A6 */ mflr r0 @@ -4295,7 +4295,7 @@ lbl_constructor: .endfn isFinishable__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn doLoadingStart__Q25Title7SectionFv, global /* 8044BEE0 00448E20 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8044BEE4 00448E24 7C 08 02 A6 */ mflr r0 @@ -4375,7 +4375,7 @@ lbl_constructor: .endfn doLoadingStart__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn doLoading__Q25Title7SectionFv, global /* 8044BF6C 00448EAC 94 21 FF E0 */ stwu r1, -0x20(r1) /* 8044BF70 00448EB0 7C 08 02 A6 */ mflr r0 @@ -4509,7 +4509,7 @@ lbl_constructor: .endfn doLoading__Q25Title7SectionFv .endif -.if version == 1 +.if version == 0 .fn loadResource__Q25Title7SectionFv, global /* 8044C058 00448F98 94 21 FF 60 */ stwu r1, -0xa0(r1) /* 8044C05C 00448F9C 7C 08 02 A6 */ mflr r0 diff --git a/assets/dolphin-extract.png b/assets/dolphin-extract.png new file mode 100644 index 000000000..b19e37cf3 Binary files /dev/null and b/assets/dolphin-extract.png differ diff --git a/assets/objdiff.png b/assets/objdiff.png new file mode 100644 index 000000000..e051fd19f Binary files /dev/null and b/assets/objdiff.png differ diff --git a/config/GPVE01/build.sha1 b/config/GPVE01/build.sha1 new file mode 100644 index 000000000..7bc7a767a --- /dev/null +++ b/config/GPVE01/build.sha1 @@ -0,0 +1 @@ +90d328bf8f190c90472e8c19e7e53c6ad0fe0d1a build/GPVE01/main.dol \ No newline at end of file diff --git a/config/GPVE01/config.yml b/config/GPVE01/config.yml new file mode 100644 index 000000000..6f580bc76 --- /dev/null +++ b/config/GPVE01/config.yml @@ -0,0 +1,10 @@ +object: orig/GPVE01/sys/main.dol +hash: 90d328bf8f190c90472e8c19e7e53c6ad0fe0d1a + +# Generated from pikmin2UP.MAP +symbols: config/GPVE01/symbols.txt +splits: config/GPVE01/splits.txt + +mw_comment_version: 10 # GC Linker 2.6 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/GPVE01/splits.txt b/config/GPVE01/splits.txt new file mode 100644 index 000000000..7310657c9 --- /dev/null +++ b/config/GPVE01/splits.txt @@ -0,0 +1,6715 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:32 + .text type:code align:8 + .ctors type:rodata align:32 + .dtors type:rodata align:4 + .rodata type:rodata align:32 + .data type:data align:16 + .bss type:bss align:32 + .sdata type:data align:8 + .sbss type:bss align:4 + .sdata2 type:rodata align:32 + .sbss2 type:bss align:32 + +JSystem/JStudio_JParticle/object-particle.cpp: + .text start:0x800056C0 end:0x80006220 + .rodata start:0x804732E0 end:0x804732F0 + .data start:0x8049E220 end:0x8049E2D8 + .bss start:0x804EFC20 end:0x804EFCB0 + .sbss start:0x80514D80 end:0x80514D88 + .sdata2 start:0x80516360 end:0x80516398 + +JSystem/JStudio_JParticle/control.cpp: + .text start:0x80006220 end:0x800063C4 + .data start:0x8049E2D8 end:0x8049E2E8 + +JSystem/JMessage/resource.cpp: + .text start:0x800063C4 end:0x80006D0C + .data start:0x8049E2E8 end:0x8049E360 + +JSystem/JMessage/processor.cpp: + .text start:0x80006D0C end:0x800083A4 + .data start:0x8049E360 end:0x8049E458 + +JSystem/JMessage/data.cpp: + .sdata2 start:0x80516398 end:0x805163A0 + +JSystem/JMessage/control.cpp: + .text start:0x800083A4 end:0x8000893C + .data start:0x8049E458 end:0x8049E468 + +JSystem/JStudio/stb-data-parse.cpp: + .text start:0x8000893C end:0x80008A80 + +JSystem/JStudio/functionvalue.cpp: + .text start:0x80008A80 end:0x8000BB48 + .rodata start:0x804732F0 end:0x80473300 + .data start:0x8049E468 end:0x8049E548 + .sbss start:0x80514D88 end:0x80514D90 + .sdata2 start:0x805163A0 end:0x805163F0 + +JSystem/JStudio/fvb-data.cpp: + .sdata2 start:0x805163F0 end:0x805163F8 + +JSystem/JStudio/fvb.cpp: + .text start:0x8000BB48 end:0x8000CA3C + .rodata start:0x80473300 end:0x80473340 + .data start:0x8049E548 end:0x8049E648 + +JSystem/JStudio/fvb-data-parse.cpp: + .text start:0x8000CA3C end:0x8000CAA4 + +JSystem/JStudio/jstudio-control.cpp: + .text start:0x8000CAA4 end:0x8000D068 + .rodata start:0x80473340 end:0x80473350 + .data start:0x8049E648 end:0x8049E698 + .sdata2 start:0x805163F8 end:0x80516400 + +JSystem/JStudio/jstudio-data.cpp: + .sdata2 start:0x80516400 end:0x80516408 + +JSystem/JStudio/jstudio-object.cpp: + .text start:0x8000D068 end:0x80010188 + .ctors start:0x80472F04 end:0x80472F08 + .rodata start:0x80473350 end:0x80473460 + .data start:0x8049E698 end:0x8049F4F8 + .bss start:0x804EFCB0 end:0x804EFDA0 + .sbss start:0x80514D90 end:0x80514D98 + .sdata2 start:0x80516408 end:0x80516438 + +JSystem/JStudio/object-id.cpp: + .text start:0x80010188 end:0x80010278 + +JSystem/JStudio/stb.cpp: + .text start:0x80010278 end:0x80010FC4 + .data start:0x8049F4F8 end:0x8049F578 + .sdata2 start:0x80516438 end:0x80516440 + +JSystem/JStudio/stb-data.cpp: + .rodata start:0x80473460 end:0x80473480 + .sdata2 start:0x80516440 end:0x80516448 + +JSystem/JStudio/jstudio-math.cpp: + .text start:0x80010FC4 end:0x800113C8 + .sdata2 start:0x80516448 end:0x80516480 + +JSystem/JStudio_JStage/object-light.cpp: + .text start:0x800113C8 end:0x80011DCC + .ctors start:0x80472F08 end:0x80472F0C + .data start:0x8049F578 end:0x8049F5B0 + .bss start:0x804EFDA0 end:0x804EFDE8 + .bss start:0x80506A8C end:0x80506AD4 align:4 common + .sdata2 start:0x80516480 end:0x805164A8 + +JSystem/JStudio_JStage/object.cpp: + .text start:0x80011DCC end:0x80012198 + +JSystem/JStudio_JStage/object-actor.cpp: + .text start:0x80012198 end:0x8001318C + .ctors start:0x80472F0C end:0x80472F10 + .data start:0x8049F5B0 end:0x8049F708 + .bss start:0x804EFDE8 end:0x804EFE28 + .bss start:0x80506AD4 end:0x80506C34 align:4 common + .sdata2 start:0x805164A8 end:0x805164B0 + +JSystem/JStudio_JStage/object-ambientlight.cpp: + .text start:0x8001318C end:0x80013428 + .data start:0x8049F708 end:0x8049F728 + +JSystem/JStudio_JStage/object-camera.cpp: + .text start:0x80013428 end:0x80014134 + .ctors start:0x80472F10 end:0x80472F14 + .data start:0x8049F728 end:0x8049F820 + .bss start:0x804EFE28 end:0x804EFE68 + .bss start:0x80506C34 end:0x80506CD4 align:4 common + +JSystem/JStudio_JStage/object-fog.cpp: + .text start:0x80014134 end:0x80014734 + .ctors start:0x80472F14 end:0x80472F18 + .data start:0x8049F820 end:0x8049F8B0 + .bss start:0x804EFE68 end:0x804EFE90 + .bss start:0x80506CD4 end:0x80506D34 align:4 common + +JSystem/JStudio_JStage/control.cpp: + .text start:0x80014734 end:0x80014D24 + .data start:0x8049F8B0 end:0x8049F8C0 + +JSystem/JStudio_JMessage/object-message.cpp: + .text start:0x80014D24 end:0x80014DF8 + .data start:0x8049F8C0 end:0x8049F8E8 + +JSystem/JStudio_JMessage/control.cpp: + .text start:0x80014DF8 end:0x80014FD8 + .data start:0x8049F8E8 end:0x8049F910 + +JSystem/JStudio_JAudio/object-sound.cpp: + .text start:0x80014FD8 end:0x80015C44 + .ctors start:0x80472F18 end:0x80472F1C + .data start:0x8049F910 end:0x8049F9F8 + .bss start:0x804EFE90 end:0x804EFEF8 + .bss start:0x80506D34 end:0x80506DAC align:4 common + .sbss start:0x80514D98 end:0x80514DA0 + .sdata2 start:0x805164B0 end:0x805164B8 + +JSystem/JStudio_JAudio/control.cpp: + .text start:0x80015C44 end:0x80015DE8 + .data start:0x8049F9F8 end:0x8049FA08 + +JSystem/J3DU/J3DUDL.cpp: + .text start:0x80015DE8 end:0x80015DF0 + +JSystem/J3DU/J3DUMotion.cpp: + .text start:0x80015DF0 end:0x800177D0 + .data start:0x8049FA08 end:0x8049FB68 + .sdata2 start:0x805164B8 end:0x805164C8 + +JSystem/J3DU/J3DUShadow.cpp: + .text start:0x800177D0 end:0x800177EC + +JSystem/J3DU/J3DUMtxCache.cpp: + .text start:0x800177EC end:0x80017A10 + .sdata2 start:0x805164C8 end:0x805164D0 + +JSystem/JKernel/JKRAram.cpp: + .text start:0x80017A10 end:0x80018958 + .ctors start:0x80472F1C end:0x80472F20 + .rodata start:0x80473480 end:0x80473510 + .data start:0x8049FB68 end:0x8049FBA8 + .bss start:0x804EFEF8 end:0x804EFF20 + .bss start:0x80506DAC end:0x80506DB8 align:4 common + .sdata start:0x80514680 end:0x80514688 + .sbss start:0x80514DA0 end:0x80514DE0 + .sdata2 start:0x805164D0 end:0x805164D8 + +JSystem/JKernel/JKRAramArchive.cpp: + .text start:0x80018958 end:0x80019444 + .rodata start:0x80473510 end:0x80473540 + .data start:0x8049FBA8 end:0x8049FC18 + +JSystem/JKernel/JKRAramBlock.cpp: + .text start:0x80019444 end:0x800196C8 + .data start:0x8049FC18 end:0x8049FC28 + +JSystem/JKernel/JKRAramHeap.cpp: + .text start:0x800196C8 end:0x80019AD8 + .ctors start:0x80472F20 end:0x80472F24 + .data start:0x8049FC28 end:0x8049FC38 + .bss start:0x804EFF20 end:0x804EFF30 + .bss start:0x80506DB8 end:0x80506DC4 align:4 common + +JSystem/JKernel/JKRAramPiece.cpp: + .text start:0x80019AD8 end:0x80019F20 + .ctors start:0x80472F24 end:0x80472F28 + .rodata start:0x80473540 end:0x80473598 + .bss start:0x804EFF30 end:0x804EFF40 + .bss start:0x80506DC4 end:0x80506E00 align:4 common + .sdata2 start:0x805164D8 end:0x805164E0 + +JSystem/JKernel/JKRAramStream.cpp: + .text start:0x80019F20 end:0x8001A4BC + .rodata start:0x80473598 end:0x804735C8 + .data start:0x8049FC38 end:0x8049FC78 + .sbss start:0x80514DE0 end:0x80514DF0 + .sdata2 start:0x805164E0 end:0x805164E8 + +JSystem/JKernel/JKRArchivePri.cpp: + .text start:0x8001A4BC end:0x8001B130 + .sbss start:0x80514DF0 end:0x80514DF8 + +JSystem/JKernel/JKRArchivePub.cpp: + .text start:0x8001B130 end:0x8001BBB8 + .data start:0x8049FC78 end:0x8049FCC8 + +JSystem/JKernel/JKRCompArchive.cpp: + .text start:0x8001BBB8 end:0x8001C934 + .rodata start:0x804735C8 end:0x80473608 + .data start:0x8049FCC8 end:0x8049FD18 + .sdata2 start:0x805164E8 end:0x805164F0 + +JSystem/JKernel/JKRDecomp.cpp: + .text start:0x8001C934 end:0x8001CFCC + .data start:0x8049FD18 end:0x8049FD58 + .sbss start:0x80514DF8 end:0x80514E00 + +JSystem/JKernel/JKRDisposer.cpp: + .text start:0x8001CFCC end:0x8001D0B8 + .data start:0x8049FD58 end:0x8049FD68 + +JSystem/JKernel/JKRDvdFile.cpp: + .text start:0x8001D0B8 end:0x8001D6F0 + .ctors start:0x80472F28 end:0x80472F2C + .rodata start:0x80473608 end:0x80473630 + .data start:0x8049FD68 end:0x8049FD90 + .bss start:0x804EFF40 end:0x804EFF50 + .bss start:0x80506E00 end:0x80506E0C align:4 common + +JSystem/JKernel/JKRDvdAramRipper.cpp: + .text start:0x8001D6F0 end:0x8001E57C + .ctors start:0x80472F2C end:0x80472F30 + .bss start:0x804EFF50 end:0x804EFF78 + .bss start:0x80506E0C end:0x80506E18 align:4 common + .sdata start:0x80514688 end:0x80514690 + .sbss start:0x80514E00 end:0x80514E48 + +JSystem/JKernel/JKRDvdArchive.cpp: + .text start:0x8001E57C end:0x8001F188 + .rodata start:0x80473630 end:0x80473688 + .data start:0x8049FD90 end:0x8049FDE0 + +JSystem/JKernel/JKRDvdRipper.cpp: + .text start:0x8001F188 end:0x8001FE48 + .ctors start:0x80472F30 end:0x80472F34 + .rodata start:0x80473688 end:0x804736E8 + .bss start:0x804EFF78 end:0x804EFFA0 + .bss start:0x80506E18 end:0x80506E24 align:4 common + .sdata start:0x80514690 end:0x80514698 + .sbss start:0x80514E48 end:0x80514E88 + +JSystem/JKernel/JKRExpHeap.cpp: + .text start:0x8001FE48 end:0x800219C4 + .rodata start:0x804736E8 end:0x80473A68 + .data start:0x8049FDE0 end:0x8049FE40 + .sbss start:0x80514E88 end:0x80514EA0 + .sdata2 start:0x805164F0 end:0x80516520 + +JSystem/JKernel/JKRFileCache.cpp: + .text start:0x800219C4 end:0x80022ADC + .data start:0x8049FE40 end:0x8049FEA0 + .sdata2 start:0x80516520 end:0x80516528 + +JSystem/JKernel/JKRFileFinder.cpp: + .text start:0x80022ADC end:0x80022E1C + .data start:0x8049FEA0 end:0x8049FEC0 + +JSystem/JKernel/JKRFile.cpp: + .text start:0x80022E1C end:0x80022E98 + +JSystem/JKernel/JKRFileLoader.cpp: + .text start:0x80022E98 end:0x800232B4 + .ctors start:0x80472F34 end:0x80472F38 + .data start:0x8049FEC0 end:0x8049FF00 + .bss start:0x804EFFA0 end:0x804EFFB0 + .bss start:0x80506E24 end:0x80506E30 align:4 common + .sdata start:0x80514698 end:0x805146A0 + .sbss start:0x80514EA0 end:0x80514EA8 + .sdata2 start:0x80516528 end:0x80516530 + +JSystem/JKernel/JKRHeap.cpp: + .text start:0x800232B4 end:0x80024644 + .rodata start:0x80473A68 end:0x80473A78 + .data start:0x8049FF00 end:0x8049FF60 + .sdata start:0x805146A0 end:0x805146A8 + .sbss start:0x80514EA8 end:0x80514ED8 + .sdata2 start:0x80516530 end:0x80516538 + +JSystem/JKernel/JKRMemArchive.cpp: + .text start:0x80024644 end:0x80024D70 + .rodata start:0x80473A78 end:0x80473AA8 + .data start:0x8049FF60 end:0x8049FFB0 + +JSystem/JKernel/JKRSolidHeap.cpp: + .text start:0x80024D70 end:0x80025638 + .rodata start:0x80473AA8 end:0x80473C18 + .data start:0x8049FFB0 end:0x804A0010 + .sdata2 start:0x80516538 end:0x80516550 + +JSystem/JKernel/JKRThread.cpp: + .text start:0x80025638 end:0x800261E0 + .ctors start:0x80472F38 end:0x80472F3C + .data start:0x804A0010 end:0x804A0030 + .bss start:0x804EFFB0 end:0x804EFFC8 + .bss start:0x80506E30 end:0x80506E74 align:4 common + .sbss start:0x80514ED8 end:0x80514EE8 + +JSystem/JSupport/JSUOutputStream.cpp: + .text start:0x800261E0 end:0x80026378 + .data start:0x804A0030 end:0x804A0040 + +JSystem/JSupport/JSUInputStream.cpp: + .text start:0x80026378 end:0x800267B8 + .data start:0x804A0040 end:0x804A0080 + +JSystem/JSupport/JSUList.cpp: + .text start:0x800267B8 end:0x80026D5C + +JSystem/JSupport/JSUMemoryStream.cpp: + .text start:0x80026D5C end:0x80026EE4 + .data start:0x804A0080 end:0x804A00A8 + +JSystem/JSupport/JSUFileStream.cpp: + .text start:0x80026EE4 end:0x80027128 + .data start:0x804A00A8 end:0x804A00D0 + +JSystem/JGadget/binary.cpp: + .text start:0x80027128 end:0x800272E4 + +JSystem/JGadget/linklist.cpp: + .text start:0x800272E4 end:0x80027484 + +JSystem/JGadget/std-list.cpp: + .text start:0x80027484 end:0x8002766C + +JSystem/JGadget/std-vector.cpp: + .text start:0x8002766C end:0x80027DC0 + +JSystem/JUtility/JUTAssert.cpp: + .text start:0x80027DC0 end:0x800280DC + .bss start:0x804EFFC8 end:0x804F0108 + .sdata start:0x805146A8 end:0x805146B0 + .sbss start:0x80514EE8 end:0x80514EF0 + .sdata2 start:0x80516550 end:0x80516568 + +JSystem/JUtility/JUTConsole.cpp: + .text start:0x800280DC end:0x800294D4 + .data start:0x804A00D0 end:0x804A00E0 + .sbss start:0x80514EF0 end:0x80514F00 + .sdata2 start:0x80516568 end:0x805165A0 + +JSystem/JUtility/JUTDbPrint.cpp: + .text start:0x800294D4 end:0x8002982C + .sbss start:0x80514F00 end:0x80514F08 + .sdata2 start:0x805165A0 end:0x805165B0 + +JSystem/JUtility/JUTDirectFile.cpp: + .text start:0x8002982C end:0x80029BCC + +JSystem/JUtility/JUTDirectPrint.cpp: + .text start:0x80029BCC end:0x8002A30C + .data start:0x804A00E0 end:0x804A03A8 + .sbss start:0x80514F08 end:0x80514F10 + .sdata2 start:0x805165B0 end:0x80516610 + +JSystem/JUtility/JUTException.cpp: + .text start:0x8002A30C end:0x8002CE5C + .ctors start:0x80472F3C end:0x80472F40 + .rodata start:0x80473C18 end:0x80474150 + .data start:0x804A03A8 end:0x804A0440 + .bss start:0x804F0108 end:0x804F03F0 + .bss start:0x80506E74 end:0x80506E80 align:4 common + .sdata start:0x805146B0 end:0x805146B8 + .sbss start:0x80514F10 end:0x80514F30 + .sdata2 start:0x80516610 end:0x80516658 + +JSystem/JUtility/JUTFader.cpp: + .text start:0x8002CE5C end:0x8002D144 + .data start:0x804A0440 end:0x804A0458 + .sdata2 start:0x80516658 end:0x80516660 + +JSystem/JUtility/JUTFont.cpp: + .text start:0x8002D144 end:0x8002D458 + .data start:0x804A0458 end:0x804A04A0 + +JSystem/JUtility/JUTGamePad.cpp: + .text start:0x8002D458 end:0x8002EB34 + .ctors start:0x80472F40 end:0x80472F44 + .data start:0x804A04A0 end:0x804A04D0 + .bss start:0x804F03F0 end:0x804F0408 + .bss start:0x80506E80 end:0x805071A0 align:4 common + .sdata start:0x805146B8 end:0x805146D0 + .sbss start:0x80514F30 end:0x80514F68 + .sdata2 start:0x80516660 end:0x80516698 + +JSystem/JUtility/JUTGraphFifo.cpp: + .text start:0x8002EB34 end:0x8002ECCC + .data start:0x804A04D0 end:0x804A04E0 + .sbss start:0x80514F68 end:0x80514F78 + +JSystem/JUtility/JUTNameTab.cpp: + .text start:0x8002ECCC end:0x8002EEC4 + .data start:0x804A04E0 end:0x804A04F0 + +JSystem/JUtility/JUTPalette.cpp: + .text start:0x8002EEC4 end:0x8002EFE0 + .rodata start:0x80474150 end:0x80474180 + +JSystem/JUtility/JUTProcBar.cpp: + .text start:0x8002EFE0 end:0x80031180 + .sdata start:0x805146D0 end:0x805146D8 + .sbss start:0x80514F78 end:0x80514F90 + .sdata2 start:0x80516698 end:0x805166E0 + +JSystem/JUtility/JUTResFont.cpp: + .text start:0x80031180 end:0x80032478 + .rodata start:0x80474180 end:0x80474280 + .data start:0x804A04F0 end:0x804A0540 + .sdata2 start:0x805166E0 end:0x805166F8 + +JSystem/JUtility/JUTResource.cpp: + .text start:0x80032478 end:0x8003264C + +JSystem/JUtility/JUTRomFont.cpp: + .text start:0x8003264C end:0x80032F1C + .rodata start:0x80474280 end:0x804742C0 + .data start:0x804A0540 end:0x804A05A0 + .sbss start:0x80514F90 end:0x80514FA0 + .sdata2 start:0x805166F8 end:0x80516708 + +JSystem/JUtility/JUTFontData_Ascfont_fix12.cpp: + .rodata start:0x804742C0 end:0x80478420 + +JSystem/JUtility/JUTTexture.cpp: + .text start:0x80032F1C end:0x80033744 + .sdata2 start:0x80516708 end:0x80516720 + +JSystem/JUtility/JUTVideo.cpp: + .text start:0x80033744 end:0x80033CFC + .data start:0x804A05A0 end:0x804A05B0 + .sbss start:0x80514FA0 end:0x80514FB8 + +JSystem/JUtility/JUTXfb.cpp: + .text start:0x80033CFC end:0x80033F94 + .sbss start:0x80514FB8 end:0x80514FC0 + +JSystem/JUtility/JUTCacheFont.cpp: + .text start:0x80033F94 end:0x80034F08 + .rodata start:0x80478420 end:0x80478498 + .data start:0x804A05B0 end:0x804A0600 + .sdata2 start:0x80516720 end:0x80516728 + +JSystem/JMath/JMath.cpp: + .text start:0x80034F08 end:0x80035100 + .sdata2 start:0x80516728 end:0x80516738 + +JSystem/JMath/random.cpp: + .text start:0x80035100 end:0x80035108 + +JSystem/JMath/JMATrigonometric.cpp: + .text start:0x80035108 end:0x80035530 + .ctors start:0x80472F44 end:0x80472F48 + .bss start:0x805071A0 end:0x8050F220 align:4 common + .sdata2 start:0x80516738 end:0x80516780 + +JSystem/J2D/J2DOrthoGraph.cpp: + .text start:0x80035530 end:0x80035DC8 + .data start:0x804A0600 end:0x804A0628 + .sdata2 start:0x80516780 end:0x80516788 + +JSystem/J2D/J2DPerspGraph.cpp: + .text start:0x80035DC8 end:0x80036074 + .data start:0x804A0628 end:0x804A0650 + .sdata2 start:0x80516788 end:0x805167A8 + +JSystem/J2D/J2DGrafContext.cpp: + .text start:0x80036074 end:0x80036AF0 + .data start:0x804A0650 end:0x804A0678 + .sdata2 start:0x805167A8 end:0x805167C0 + +JSystem/J2D/J2DPane.cpp: + .text start:0x80036AF0 end:0x80039ADC + .ctors start:0x80472F48 end:0x80472F4C + .data start:0x804A0678 end:0x804A0730 + .bss start:0x8050F220 end:0x8050F230 align:4 common + .sdata2 start:0x805167C0 end:0x805167F0 + +JSystem/J2D/J2DPicture.cpp: + .text start:0x80039ADC end:0x8003D750 + .data start:0x804A0730 end:0x804A0880 + .sdata2 start:0x805167F0 end:0x80516818 + +JSystem/J2D/J2DPrint.cpp: + .text start:0x8003D750 end:0x8003F474 + .data start:0x804A0880 end:0x804A08F0 + .sbss start:0x80514FC0 end:0x80514FD0 + .sdata2 start:0x80516818 end:0x80516840 + +JSystem/J2D/J2DScreen.cpp: + .text start:0x8003F474 end:0x80040F74 + .data start:0x804A08F0 end:0x804A0990 + .sbss start:0x80514FD0 end:0x80514FD8 + .sdata2 start:0x80516840 end:0x80516860 + +JSystem/J2D/J2DTextBox.cpp: + .text start:0x80040F74 end:0x80042544 + .data start:0x804A0990 end:0x804A0A50 + .sdata2 start:0x80516860 end:0x80516880 + +JSystem/J2D/J2DWindow.cpp: + .text start:0x80042544 end:0x80044E34 + .rodata start:0x80478498 end:0x804784E0 + .data start:0x804A0A50 end:0x804A0B20 + .sdata2 start:0x80516880 end:0x805168A0 + +JSystem/J2D/J2DWindowEx.cpp: + .text start:0x80044E34 end:0x8004791C + .rodata start:0x804784E0 end:0x804785D0 + .data start:0x804A0B20 end:0x804A0BF0 + .sdata2 start:0x805168A0 end:0x805168C0 + +JSystem/J2D/J2DAnmLoader.cpp: + .text start:0x8004791C end:0x800494E4 + .data start:0x804A0BF0 end:0x804A0C78 + .sdata2 start:0x805168C0 end:0x805168C8 + +JSystem/J2D/J2DBloSaver.cpp: + .text start:0x800494E4 end:0x8004985C + .ctors start:0x80472F4C end:0x80472F50 + .bss start:0x804F0408 end:0x804F0418 + .sbss start:0x80514FD8 end:0x80514FE0 + +JSystem/J2D/J2DManage.cpp: + .text start:0x8004985C end:0x80049B20 + .bss start:0x804F0418 end:0x804F0520 + +JSystem/J2D/J2DMatBlock.cpp: + .text start:0x80049B20 end:0x80051EA4 + .rodata start:0x804785D0 end:0x804785E0 + .data start:0x804A0C78 end:0x804A1160 + +JSystem/J2D/J2DMaterial.cpp: + .text start:0x80051EA4 end:0x800532E8 + .data start:0x804A1160 end:0x804A11B0 + .sdata2 start:0x805168C8 end:0x805168D8 + +JSystem/J2D/J2DMaterialFactory.cpp: + .text start:0x800532E8 end:0x80054AF0 + .sdata2 start:0x805168D8 end:0x805168E0 + .sbss2 start:0x80520E40 end:0x80520E48 + +JSystem/J2D/J2DPictureEx.cpp: + .text start:0x80054AF0 end:0x8005921C + .rodata start:0x804785E0 end:0x80478648 + .data start:0x804A11B0 end:0x804A1300 + .sdata2 start:0x805168E0 end:0x805168F8 + +JSystem/J2D/J2DTevs.cpp: + .text start:0x8005921C end:0x800596A8 + .rodata start:0x80478648 end:0x804786C8 + .sdata2 start:0x805168F8 end:0x80516940 + +JSystem/J2D/J2DTextBoxEx.cpp: + .text start:0x800596A8 end:0x8005AF0C + .rodata start:0x804786C8 end:0x80478700 + .data start:0x804A1300 end:0x804A13C0 + .sdata2 start:0x80516940 end:0x80516960 + +JSystem/J2D/J2DAnimation.cpp: + .text start:0x8005AF0C end:0x8005DAAC + .data start:0x804A13C0 end:0x804A1480 + .sdata2 start:0x80516960 end:0x80516988 + +JSystem/J3D/J3DSys.cpp: + .text start:0x8005DAAC end:0x8005EB80 + .ctors start:0x80472F50 end:0x80472F54 + .rodata start:0x80478700 end:0x80478840 + .data start:0x804A1480 end:0x804A14D8 + .bss start:0x8050F230 end:0x8050F45C align:4 common + .sdata start:0x805146D8 end:0x805146E0 + .sbss start:0x80514FE0 end:0x80514FE8 + .sdata2 start:0x80516988 end:0x80516998 + +JSystem/J3D/J3DVertex.cpp: + .text start:0x8005EB80 end:0x8005EE78 + +JSystem/J3D/J3DTransform.cpp: + .text start:0x8005EE78 end:0x8005F82C + .rodata start:0x80478840 end:0x804788A8 + .sdata start:0x805146E0 end:0x805146E8 + .sdata2 start:0x80516998 end:0x805169A8 + +JSystem/J3D/J3DPacket.cpp: + .text start:0x8005F82C end:0x80060850 + .data start:0x804A14D8 end:0x804A1560 + .bss start:0x8050F45C end:0x8050F46C align:4 common + .sbss start:0x80514FE8 end:0x80514FF0 + +JSystem/J3D/J3DShape.cpp: + .text start:0x80060850 end:0x800614E0 + .data start:0x804A1560 end:0x804A1578 + .sbss start:0x80514FF0 end:0x80515000 + .sdata2 start:0x805169A8 end:0x805169B0 + +JSystem/J3D/J3DMaterial.cpp: + .text start:0x800614E0 end:0x80063B24 + .data start:0x804A1578 end:0x804A1810 + +JSystem/J3D/J3DTevs.cpp: + .text start:0x80063B24 end:0x800659A4 + .rodata start:0x804788A8 end:0x804789B0 + .data start:0x804A1810 end:0x804A1930 + .bss start:0x8050F46C end:0x805120F4 align:4 common + .sdata2 start:0x805169B0 end:0x80516A00 + +JSystem/J3D/J3DDrawBuffer.cpp: + .text start:0x800659A4 end:0x800662FC + .ctors start:0x80472F54 end:0x80472F58 + .data start:0x804A1930 end:0x804A19F0 + .sbss start:0x80515000 end:0x80515008 + .sdata2 start:0x80516A00 end:0x80516A10 + +JSystem/J3D/J3DModel.cpp: + .text start:0x800662FC end:0x80067678 + .data start:0x804A19F0 end:0x804A1A20 + .sdata2 start:0x80516A10 end:0x80516A18 + +JSystem/J3D/J3DAnimation.cpp: + .text start:0x80067678 end:0x8006A0F4 + .data start:0x804A1A20 end:0x804A1B10 + .sdata2 start:0x80516A18 end:0x80516A48 + +JSystem/J3D/J3DMaterialAnm.cpp: + .text start:0x8006A0F4 end:0x8006A59C + .data start:0x804A1B10 end:0x804A1B30 + +JSystem/J3D/J3DCluster.cpp: + .text start:0x8006A59C end:0x8006B200 + .sdata2 start:0x80516A48 end:0x80516A78 + +JSystem/J3D/J3DJoint.cpp: + .text start:0x8006B200 end:0x8006C3A4 + .rodata start:0x804789B0 end:0x804789E0 + .data start:0x804A1B30 end:0x804A1BE0 + .sbss start:0x80515008 end:0x80515018 + .sdata2 start:0x80516A78 end:0x80516A80 + +JSystem/J3D/J3DMaterialFactory.cpp: + .text start:0x8006C3A4 end:0x8006F888 + .data start:0x804A1BE0 end:0x804A1E30 + .sdata2 start:0x80516A80 end:0x80516A90 + .sbss2 start:0x80520E48 end:0x80520E50 + +JSystem/J3D/J3DBinaryFormat.cpp: + .text start:0x8006F888 end:0x8006F894 + +JSystem/J3D/J3DModelLoader.cpp: + .text start:0x8006F894 end:0x80071B20 + .data start:0x804A1E30 end:0x804A1FB8 + +JSystem/J3D/J3DJointFactory.cpp: + .text start:0x80071B20 end:0x80071D10 + +JSystem/J3D/J3DShapeFactory.cpp: + .text start:0x80071D10 end:0x800725A0 + +JSystem/J3D/J3DAnmLoader.cpp: + .text start:0x800725A0 end:0x80074438 + .data start:0x804A1FB8 end:0x804A2048 + .sdata2 start:0x80516A90 end:0x80516A98 + +JSystem/J3D/J3DModelSaver.cpp: + .text start:0x80074438 end:0x80074440 + +JSystem/J3D/J3DGD.cpp: + .text start:0x80074440 end:0x800771C0 + .data start:0x804A2048 end:0x804A20F0 + .sdata start:0x805146E8 end:0x80514730 + .sdata2 start:0x80516A98 end:0x80516AD8 + +JSystem/J3D/J3DMatBlock.cpp: + .text start:0x800771C0 end:0x80083794 + .ctors start:0x80472F58 end:0x80472F5C + .data start:0x804A20F0 end:0x804A2C70 + .sdata start:0x80514730 end:0x80514740 + .sbss start:0x80515018 end:0x80515020 + .sdata2 start:0x80516AD8 end:0x80516AE0 + +JSystem/J3D/J3DModelData.cpp: + .text start:0x80083794 end:0x80083C4C + .data start:0x804A2C70 end:0x804A2C88 + .sbss start:0x80515020 end:0x80515028 + +JSystem/J3D/J3DMaterialAttach.cpp: + .text start:0x80083C4C end:0x80084A00 + .data start:0x804A2C88 end:0x804A2C98 + +JSystem/J3D/J3DMaterialFactory_v21.cpp: + .text start:0x80084A00 end:0x80086104 + .sdata2 start:0x80516AE0 end:0x80516AE8 + .sbss2 start:0x80520E50 end:0x80520E58 + +JSystem/J3D/J3DShapeMtx.cpp: + .text start:0x80086104 end:0x80087900 + .ctors start:0x80472F5C end:0x80472F60 + .data start:0x804A2C98 end:0x804A2F70 + .bss start:0x805120F4 end:0x80512108 align:4 common + .sbss start:0x80515028 end:0x80515048 + .sdata2 start:0x80516AE8 end:0x80516AF0 + +JSystem/J3D/J3DModelLoaderCalcSize.cpp: + .text start:0x80087900 end:0x8008828C + +JSystem/J3D/J3DJointTree.cpp: + .text start:0x8008828C end:0x80088658 + .data start:0x804A2F70 end:0x804A2FD0 + .sdata2 start:0x80516AF0 end:0x80516AF8 + +JSystem/J3D/J3DSkinDeform.cpp: + .text start:0x80088658 end:0x8008884C + .data start:0x804A2FD0 end:0x804A2FE0 + +JSystem/J3D/J3DShapeDraw.cpp: + .text start:0x8008884C end:0x800888D8 + .data start:0x804A2FE0 end:0x804A3000 + +JSystem/J3D/J3DMtxBuffer.cpp: + .text start:0x800888D8 end:0x80089664 + .bss start:0x80512108 end:0x80512180 align:4 common + .sdata start:0x80514740 end:0x80514750 + .sdata2 start:0x80516AF8 end:0x80516B00 + +JSystem/J3D/J3DShapeTable.cpp: + .text start:0x80089664 end:0x8008975C + +JSystem/JFramework/JFWSystem.cpp: + .text start:0x8008975C end:0x80089AAC + .sdata start:0x80514750 end:0x80514780 + .sbss start:0x80515048 end:0x80515068 + .sdata2 start:0x80516B00 end:0x80516B10 + +JSystem/JFramework/JFWDisplay.cpp: + .text start:0x80089AAC end:0x8008B114 + .ctors start:0x80472F60 end:0x80472F64 + .rodata start:0x804789E0 end:0x80478AB8 + .data start:0x804A3000 end:0x804A30A0 + .bss start:0x804F0520 end:0x804F0550 + .bss start:0x80512180 end:0x8051218C align:4 common + .sbss start:0x80515068 end:0x80515090 + .sdata2 start:0x80516B10 end:0x80516B38 + +JSystem/JParticle/JPABaseShape.cpp: + .text start:0x8008B114 end:0x8008EE44 + .data start:0x804A30A0 end:0x804A3248 + .sdata start:0x80514780 end:0x80514788 + .sdata2 start:0x80516B38 end:0x80516B70 + +JSystem/JParticle/JPAChildShape.cpp: + .text start:0x8008EE44 end:0x8008EFD0 + .sdata2 start:0x80516B70 end:0x80516B78 + +JSystem/JParticle/JPADynamicsBlock.cpp: + .text start:0x8008EFD0 end:0x8008FC9C + .data start:0x804A3248 end:0x804A3268 + .sdata2 start:0x80516B78 end:0x80516BA0 + +JSystem/JParticle/JPAEmitter.cpp: + .text start:0x8008FC9C end:0x80090538 + .sdata2 start:0x80516BA0 end:0x80516BB8 + +JSystem/JParticle/JPAEmitterManager.cpp: + .text start:0x80090538 end:0x80090F2C + .sdata2 start:0x80516BB8 end:0x80516BD0 + +JSystem/JParticle/JPAExTexShape.cpp: + .text start:0x80090F2C end:0x80091030 + +JSystem/JParticle/JPAExtraShape.cpp: + .text start:0x80091030 end:0x800915A0 + .sdata2 start:0x80516BD0 end:0x80516BF8 + +JSystem/JParticle/JPAFieldBlock.cpp: + .text start:0x800915A0 end:0x80093A40 + .data start:0x804A3268 end:0x804A3358 + .sdata2 start:0x80516BF8 end:0x80516C10 + +JSystem/JParticle/JPAKeyBlock.cpp: + .text start:0x80093A40 end:0x80093AE4 + .sdata2 start:0x80516C10 end:0x80516C18 + +JSystem/JParticle/JPAMath.cpp: + .text start:0x80093AE4 end:0x80094028 + .sdata2 start:0x80516C18 end:0x80516C30 + +JSystem/JParticle/JPAParticle.cpp: + .text start:0x80094028 end:0x800955EC + .data start:0x804A3358 end:0x804A3380 + .sdata2 start:0x80516C30 end:0x80516C58 + +JSystem/JParticle/JPAResource.cpp: + .text start:0x800955EC end:0x800980D8 + .data start:0x804A3380 end:0x804A3588 + .sdata2 start:0x80516C58 end:0x80516C70 + +JSystem/JParticle/JPAResourceLoader.cpp: + .text start:0x800980D8 end:0x800984D0 + +JSystem/JParticle/JPAResourceManager.cpp: + .text start:0x800984D0 end:0x800986A0 + +JSystem/JParticle/JPATexture.cpp: + .text start:0x800986A0 end:0x8009876C + .data start:0x804A3588 end:0x804A3598 + +JSystem/JStage/JSGSystem.cpp: + .text start:0x8009876C end:0x800987F4 + .data start:0x804A3598 end:0x804A35E8 + +JSystem/JStage/JSGCamera.cpp: + .text start:0x800987F4 end:0x800988D4 + .data start:0x804A35E8 end:0x804A3680 + .sdata2 start:0x80516C70 end:0x80516C78 + +JSystem/JStage/JSGObject.cpp: + .text start:0x800988D4 end:0x80098990 + .data start:0x804A3680 end:0x804A36C0 + .sdata2 start:0x80516C78 end:0x80516C80 + +JSystem/JStage/JSGActor.cpp: + .text start:0x80098990 end:0x80098A68 + .data start:0x804A36C0 end:0x804A3750 + .sdata2 start:0x80516C80 end:0x80516C88 + +JSystem/JAudio/JAS/JASWSParser.cpp: + .text start:0x80098A68 end:0x80098F34 + .sbss start:0x80515090 end:0x80515098 + +JSystem/JAudio/JAS/JASBankMgr.cpp: + .text start:0x80098F34 end:0x800996FC + .rodata start:0x80478AB8 end:0x80478AE0 + .sbss start:0x80515098 end:0x805150A8 + .sdata2 start:0x80516C88 end:0x80516CA8 + +JSystem/JAudio/JAS/JASBasicBank.cpp: + .text start:0x800996FC end:0x80099888 + .data start:0x804A3750 end:0x804A3778 + +JSystem/JAudio/JAS/JASBasicInst.cpp: + .text start:0x80099888 end:0x80099E60 + .data start:0x804A3778 end:0x804A37A8 + .sdata2 start:0x80516CA8 end:0x80516CB8 + +JSystem/JAudio/JAS/JASBasicWaveBank.cpp: + .text start:0x80099E60 end:0x8009A7DC + .data start:0x804A37A8 end:0x804A3810 + +JSystem/JAudio/JAS/JASBNKParser.cpp: + .text start:0x8009A7DC end:0x8009B0B8 + .data start:0x804A3810 end:0x804A3820 + .sbss start:0x805150A8 end:0x805150B0 + .sdata2 start:0x80516CB8 end:0x80516CD8 + +JSystem/JAudio/JAS/JASDrumSet.cpp: + .text start:0x8009B0B8 end:0x8009B4E0 + .data start:0x804A3820 end:0x804A3838 + .bss start:0x804F0550 end:0x804F0568 + .sbss start:0x805150B0 end:0x805150B8 + .sdata2 start:0x80516CD8 end:0x80516CF0 + +JSystem/JAudio/JAS/JASInstEffect.cpp: + .text start:0x8009B4E0 end:0x8009B4E8 + +JSystem/JAudio/JAS/JASInstRand.cpp: + .text start:0x8009B4E8 end:0x8009B58C + .data start:0x804A3838 end:0x804A3848 + .sbss start:0x805150B8 end:0x805150C0 + .sdata2 start:0x80516CF0 end:0x80516CF8 + +JSystem/JAudio/JAS/JASInstSense.cpp: + .text start:0x8009B58C end:0x8009B6C4 + .data start:0x804A3848 end:0x804A3858 + .sdata2 start:0x80516CF8 end:0x80516D10 + +JSystem/JAudio/JAS/JASSimpleWaveBank.cpp: + .text start:0x8009B6C4 end:0x8009BA08 + .data start:0x804A3858 end:0x804A3898 + +JSystem/JAudio/JAS/JASWaveArcLoader.cpp: + .text start:0x8009BA08 end:0x8009C030 + .data start:0x804A3898 end:0x804A38F8 + .sbss start:0x805150C0 end:0x805150C8 + +JSystem/JAudio/JAS/JASWaveBank.cpp: + .text start:0x8009C030 end:0x8009C044 + .sbss start:0x805150C8 end:0x805150D0 + +JSystem/JAudio/JAS/JASWaveBankMgr.cpp: + .text start:0x8009C044 end:0x8009C2FC + .sbss start:0x805150D0 end:0x805150D8 + +JSystem/JAudio/JAS/JASBank.cpp: + .text start:0x8009C2FC end:0x8009C310 + .sbss start:0x805150D8 end:0x805150E0 + +JSystem/JAudio/JAS/JASTrackPort.cpp: + .text start:0x8009C310 end:0x8009C400 + +JSystem/JAudio/JAS/JASOuterParam.cpp: + .text start:0x8009C400 end:0x8009C5B4 + .sdata2 start:0x80516D10 end:0x80516D18 + +JSystem/JAudio/JAS/JASPlayer_impl.cpp: + .text start:0x8009C5B4 end:0x8009C714 + .rodata start:0x80478AE0 end:0x80478C40 + .data start:0x804A38F8 end:0x804A3D68 + .sbss start:0x805150E0 end:0x805150F0 + .sdata2 start:0x80516D18 end:0x80516D30 + +JSystem/JAudio/JAS/JASRegisterParam.cpp: + .text start:0x8009C714 end:0x8009C858 + +JSystem/JAudio/JAS/JASSeqCtrl.cpp: + .text start:0x8009C858 end:0x8009CAB8 + +JSystem/JAudio/JAS/JASSeqParser.cpp: + .text start:0x8009CAB8 end:0x8009EF94 + .ctors start:0x80472F64 end:0x80472F68 + .rodata start:0x80478C40 end:0x80478D40 + .data start:0x804A3D68 end:0x804A4350 + .sdata2 start:0x80516D30 end:0x80516D78 + +JSystem/JAudio/JAS/JASTrack.cpp: + .text start:0x8009EF94 end:0x800A29F8 + .data start:0x804A4350 end:0x804A43D8 + .sdata start:0x80514788 end:0x80514790 + .sbss start:0x805150F0 end:0x80515100 + .sdata2 start:0x80516D78 end:0x80516DD8 + +JSystem/JAudio/JAS/JASTrackInterrupt.cpp: + .text start:0x800A29F8 end:0x800A2B78 + +JSystem/JAudio/JAS/JASOscillator.cpp: + .text start:0x800A2B78 end:0x800A3204 + .rodata start:0x80478D40 end:0x80478E18 + .sdata2 start:0x80516DD8 end:0x80516E10 + +JSystem/JAudio/JAS/JASChannel.cpp: + .text start:0x800A3204 end:0x800A47D8 + .rodata start:0x80478E18 end:0x80478E70 + .data start:0x804A43D8 end:0x804A4440 + .sdata2 start:0x80516E10 end:0x80516E50 + +JSystem/JAudio/JAS/JASDriverIF.cpp: + .text start:0x800A47D8 end:0x800A4B48 + .ctors start:0x80472F68 end:0x80472F6C + .rodata start:0x80478E70 end:0x80479080 + .bss start:0x804F0568 end:0x804F06E8 + .sdata start:0x80514790 end:0x80514798 + .sdata2 start:0x80516E50 end:0x80516E60 + +JSystem/JAudio/JAS/JASDSPChannel.cpp: + .text start:0x800A4B48 end:0x800A5310 + .sbss start:0x80515100 end:0x80515108 + +JSystem/JAudio/JAS/JASDSPInterface.cpp: + .text start:0x800A5310 end:0x800A5B88 + .rodata start:0x80479080 end:0x804795D8 + .data start:0x804A4440 end:0x804A4458 + .sdata start:0x80514798 end:0x805147A8 + .sbss start:0x80515108 end:0x80515118 + +JSystem/JAudio/JAS/JASAudioThread.cpp: + .text start:0x800A5B88 end:0x800A5EBC + .rodata start:0x804795D8 end:0x804795E8 + .data start:0x804A4458 end:0x804A4468 + .sbss start:0x80515118 end:0x80515130 + .sdata2 start:0x80516E60 end:0x80516E68 + +JSystem/JAudio/JAS/JASCalc.cpp: + .text start:0x800A5EBC end:0x800A6500 + +JSystem/JAudio/JAS/JASCallback.cpp: + .text start:0x800A6500 end:0x800A6724 + +JSystem/JAudio/JAS/JASCmdStack.cpp: + .text start:0x800A6724 end:0x800A698C + .ctors start:0x80472F6C end:0x80472F70 + .bss start:0x804F06E8 end:0x804F0700 + .bss start:0x8051218C end:0x805121B0 align:4 common + +JSystem/JAudio/JAS/JASDvdThread.cpp: + .text start:0x800A698C end:0x800A6A9C + .sbss start:0x80515130 end:0x80515138 + +JSystem/JAudio/JAS/JASHeapCtrl.cpp: + .text start:0x800A6A9C end:0x800A74D4 + .ctors start:0x80472F70 end:0x80472F74 + .bss start:0x804F0700 end:0x804F0750 + .sbss start:0x80515138 end:0x80515148 + +JSystem/JAudio/JAS/JASProbe.cpp: + .text start:0x800A74D4 end:0x800A7670 + .sbss start:0x80515148 end:0x80515150 + .sdata2 start:0x80516E68 end:0x80516E80 + +JSystem/JAudio/JAS/JASResArcLoader.cpp: + .text start:0x800A7670 end:0x800A786C + +JSystem/JAudio/JAS/JASReport.cpp: + .text start:0x800A786C end:0x800A7968 + .bss start:0x804F0750 end:0x804F0768 + .sbss start:0x80515150 end:0x80515160 + +JSystem/JAudio/JAS/JASAiCtrl.cpp: + .text start:0x800A7968 end:0x800A8504 + .rodata start:0x804795E8 end:0x80479640 + .data start:0x804A4468 end:0x804A4490 + .bss start:0x804F0768 end:0x804F0780 + .sdata start:0x805147A8 end:0x805147B8 + .sbss start:0x80515160 end:0x80515198 + .sdata2 start:0x80516E80 end:0x80516EA0 + +JSystem/JAudio/JAS/JASChannelUpdater.cpp: + .text start:0x800A8504 end:0x800A8840 + .sdata2 start:0x80516EA0 end:0x80516EB0 + +JSystem/JAudio/JAS/JASTaskThread.cpp: + .text start:0x800A8840 end:0x800A8FA4 + .data start:0x804A4490 end:0x804A44A0 + +JSystem/JAudio/JAS/JASAramStream.cpp: + .text start:0x800A8FA4 end:0x800AA760 + .rodata start:0x80479640 end:0x80479668 + .data start:0x804A44A0 end:0x804A44E0 + .sbss start:0x80515198 end:0x805151B0 + .sdata2 start:0x80516EB0 end:0x80516ED0 + +JSystem/JAudio/dsp/dspproc.c: + .text start:0x800AA760 end:0x800AA900 + .sdata start:0x805147B8 end:0x805147C0 + .sbss start:0x805151B0 end:0x805151B8 + .sdata2 start:0x80516ED0 end:0x80516ED8 + +JSystem/JAudio/dsp/dsptask.c: + .text start:0x800AA900 end:0x800AAC20 + .data start:0x804A44E0 end:0x804A6200 + .bss start:0x804F0780 end:0x804F2860 + .sbss start:0x805151B8 end:0x805151C0 + +JSystem/JAudio/dsp/osdsp.c: + .text start:0x800AAC20 end:0x800AAD00 + .rodata start:0x80479668 end:0x80479688 + +JSystem/JAudio/dsp/osdsp_task.c: + .text start:0x800AAD00 end:0x800AB0EC + .bss start:0x804F2860 end:0x804F2870 + .sbss start:0x805151C0 end:0x805151D0 + +JSystem/JAudio/JAI/JAIAnimation.cpp: + .text start:0x800AB0EC end:0x800ABE44 + .data start:0x804A6200 end:0x804A6248 + .sdata2 start:0x80516ED8 end:0x80516F08 + +JSystem/JAudio/JAI/JAIBankWave.cpp: + .text start:0x800ABE44 end:0x800AC158 + .sdata start:0x805147C0 end:0x805147D8 + .sbss start:0x805151D0 end:0x805151E8 + +JSystem/JAudio/JAI/JAIBasic.cpp: + .text start:0x800AC158 end:0x800AD1C4 + .data start:0x804A6248 end:0x804A6270 + .sdata start:0x805147D8 end:0x805147E0 + .sbss start:0x805151E8 end:0x80515208 + .sdata2 start:0x80516F08 end:0x80516F28 + +JSystem/JAudio/JAI/JAIConst.cpp: + .text start:0x800AD1C4 end:0x800AD490 + .ctors start:0x80472F74 end:0x80472F78 + .data start:0x804A6270 end:0x804A62A0 + .bss start:0x805121B0 end:0x80512274 align:4 common + .sbss start:0x80515208 end:0x80515210 + +JSystem/JAudio/JAI/JAIDummyObject.cpp: + .text start:0x800AD490 end:0x800AD6CC + .sbss start:0x80515210 end:0x80515220 + +JSystem/JAudio/JAI/JAIFx.cpp: + .text start:0x800AD6CC end:0x800AD950 + .sbss start:0x80515220 end:0x80515238 + +JSystem/JAudio/JAI/JAIGlobalParameter.cpp: + .text start:0x800AD950 end:0x800ADBA4 + .rodata start:0x80479688 end:0x804796B0 + .sdata start:0x805147E0 end:0x80514880 + .sbss start:0x80515238 end:0x80515248 + .sdata2 start:0x80516F28 end:0x80516F40 + +JSystem/JAudio/JAI/JAIInitData.cpp: + .text start:0x800ADBA4 end:0x800AE0A0 + .data start:0x804A62A0 end:0x804A62C8 + .sdata start:0x80514880 end:0x80514888 + .sbss start:0x80515248 end:0x80515250 + .sdata2 start:0x80516F40 end:0x80516F48 + +JSystem/JAudio/JAI/JAISeMgr.cpp: + .text start:0x800AE0A0 end:0x800B0340 + .sdata start:0x80514888 end:0x80514890 + .sbss start:0x80515250 end:0x80515278 + .sdata2 start:0x80516F48 end:0x80516FA0 + +JSystem/JAudio/JAI/JAISequenceHeap.cpp: + .text start:0x800B0340 end:0x800B0944 + .sbss start:0x80515278 end:0x80515288 + +JSystem/JAudio/JAI/JAISequenceMgr.cpp: + .text start:0x800B0944 end:0x800B3838 + .sbss start:0x80515288 end:0x805152A0 + .sdata2 start:0x80516FA0 end:0x80516FE0 + +JSystem/JAudio/JAI/JAISound.cpp: + .text start:0x800B3838 end:0x800B744C + .data start:0x804A62C8 end:0x804A6638 + .sbss start:0x805152A0 end:0x805152A8 + .sdata2 start:0x80516FE0 end:0x80517040 + +JSystem/JAudio/JAI/JAISoundTable.cpp: + .text start:0x800B744C end:0x800B764C + .sbss start:0x805152A8 end:0x805152C0 + +JSystem/JAudio/JAI/JAIStreamMgr.cpp: + .text start:0x800B764C end:0x800B8EE4 + .rodata start:0x804796B0 end:0x804796C8 + .data start:0x804A6638 end:0x804A6658 + .sdata start:0x80514890 end:0x80514898 + .sbss start:0x805152C0 end:0x80515300 + .sdata2 start:0x80517040 end:0x80517050 + +JSystem/JAudio/JAI/JAISystemInterface.cpp: + .text start:0x800B8EE4 end:0x800B95FC + .ctors start:0x80472F78 end:0x80472F7C + .bss start:0x804F2870 end:0x804F2880 + .bss start:0x80512274 end:0x8051228C align:4 common + .sdata2 start:0x80517050 end:0x80517058 + +JSystem/JAudio/JAI/JAIObject.cpp: + .text start:0x800B95FC end:0x800BA1EC + .data start:0x804A6658 end:0x804A66D0 + .sdata2 start:0x80517058 end:0x80517078 + +JSystem/JAudio/JAD/JADHioNode.cpp: + .text start:0x800BA1EC end:0x800BA244 + .data start:0x804A66D0 end:0x804A66E0 + +JSystem/JAudio/JAL/JALCalc.cpp: + .text start:0x800BA244 end:0x800BA564 + .sbss start:0x80515300 end:0x80515308 + .sdata2 start:0x80517078 end:0x80517090 + +JSystem/JAudio/JAU/JAUData.cpp: + .text start:0x800BA564 end:0x800BA7F8 + .data start:0x804A66E0 end:0x804A6738 + +JSystem/JAudio/JAU/JAUDataMgr.cpp: + .text start:0x800BA7F8 end:0x800BB390 + .data start:0x804A6738 end:0x804A6808 + .sdata2 start:0x80517090 end:0x80517098 + +Dolphin/TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x800BB390 end:0x800BB488 + +Dolphin/TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x800BB488 end:0x800BB6B0 + .bss start:0x804F2880 end:0x804F28A8 + +Dolphin/TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x800BB6B0 end:0x800BB848 + .rodata start:0x804796C8 end:0x804796F8 + .bss start:0x804F28A8 end:0x804F28B0 + +Dolphin/TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x800BB848 end:0x800BB88C + .rodata start:0x804796F8 end:0x80479720 + +Dolphin/TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x800BB88C end:0x800BC0C8 + .rodata start:0x80479720 end:0x80479740 + .bss start:0x804F28B0 end:0x804F4260 + +Dolphin/TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x800BC0C8 end:0x800BC380 + .rodata start:0x80479740 end:0x804798D0 + .bss start:0x804F4260 end:0x804F4278 + .sbss start:0x80515308 end:0x80515310 + +Dolphin/TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x800BC380 end:0x800BC40C + +Dolphin/TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x800BC40C end:0x800BC584 + .rodata start:0x804798D0 end:0x80479910 + .data start:0x804A6808 end:0x804A6878 + +Dolphin/TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x800BC584 end:0x800BD5F4 + .rodata start:0x80479910 end:0x80479AF8 + .data start:0x804A6878 end:0x804A68B0 + .bss start:0x804F4278 end:0x804F4280 + +Dolphin/TRK_MINNOW_DOLPHIN/support.c: + .text start:0x800BD5F4 end:0x800BDD08 + .rodata start:0x80479AF8 end:0x80479BA0 + +Dolphin/TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x800BDD08 end:0x800BDD20 + +Dolphin/TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x800BDD20 end:0x800BDDB8 + +Dolphin/TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x800BDDB8 end:0x800BDDF0 + +Dolphin/TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x80003100 end:0x80003154 + .text start:0x800BDDF0 end:0x800BDEA8 + +Dolphin/TRK_MINNOW_DOLPHIN/targimpl.c: + .text start:0x800BDEA8 end:0x800BFA40 + .rodata start:0x80479BA0 end:0x80479C38 + .data start:0x804A68B0 end:0x804A68E0 + .bss start:0x804F4280 end:0x804F4800 + +Dolphin/TRK_MINNOW_DOLPHIN/targsupp.c: comment:0 + .text start:0x800BFA40 end:0x800BFA60 align:32 + +Dolphin/TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x800BFA60 end:0x800BFDD0 + +Dolphin/TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x80003154 end:0x80005088 + +Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x80005088 end:0x800050B4 + .text start:0x800BFDD0 end:0x800C040C + .data start:0x804A68E0 end:0x804A6920 + .bss start:0x804F4800 end:0x804F4808 + +Dolphin/TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x800C040C end:0x800C0464 + .rodata start:0x80479C38 end:0x80479C48 + .bss start:0x804F4808 end:0x804F4810 + +Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x800C0464 end:0x800C09BC + .rodata start:0x80479C48 end:0x80479D50 + .data start:0x804A6920 end:0x804A6948 + .bss start:0x804F4810 end:0x804F4818 + +Dolphin/TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x800C09BC end:0x800C09F0 + +Dolphin/TRK_MINNOW_DOLPHIN/target_options.c: + .text start:0x800C09F0 end:0x800C0A0C + .bss start:0x804F4818 end:0x804F4820 + +Dolphin/TRK_MINNOW_DOLPHIN/mslsupp.c: + .text start:0x800C0A0C end:0x800C0C08 + +Dolphin/TRK_MINNOW_DOLPHIN/UDP_Stubs.c: + .text start:0x800C0C08 end:0x800C0C50 + +Dolphin/TRK_MINNOW_DOLPHIN/ddh/main.c: + .text start:0x800C0C50 end:0x800C0F94 + .bss start:0x804F4820 end:0x804F5040 + .sbss start:0x80515310 end:0x80515318 + .sbss start:0x80515318 end:0x80515320 + +Dolphin/TRK_MINNOW_DOLPHIN/CircleBuffer.c: + .text start:0x800C0F94 end:0x800C11FC + +Dolphin/TRK_MINNOW_DOLPHIN/gdev/main.c: + .text start:0x800C11FC end:0x800C1548 + .rodata start:0x80479D50 end:0x80479E30 + .rodata start:0x80479E30 end:0x80479F10 + .bss start:0x804F5040 end:0x804F5560 + +Dolphin/TRK_MINNOW_DOLPHIN/MWTrace.c: + .text start:0x800C1548 end:0x800C1598 + +Dolphin/TRK_MINNOW_DOLPHIN/MWCriticalSection_gc.cpp: + .text start:0x800C1598 end:0x800C15F0 + +Dolphin/Runtime/__va_arg.c: + .text start:0x800C15F0 end:0x800C16B8 + +Dolphin/Runtime/global_destructor_chain.c: + .text start:0x800C16B8 end:0x800C1718 + .dtors start:0x804732C8 end:0x804732CC + .sbss start:0x80515320 end:0x80515328 + +Dolphin/Runtime/__mem.c: + .init start:0x800050B4 end:0x800051EC + +Dolphin/Runtime/CPlusLibPPC.cp: + .text start:0x800C1718 end:0x800C1748 + +Dolphin/Runtime/NMWException.cp: + extab start:0x80005600 end:0x80005648 + extabindex start:0x80005660 end:0x8000569C + .text start:0x800C1748 end:0x800C1AF4 + +Dolphin/Runtime/ptmf.c: + .text start:0x800C1AF4 end:0x800C1B4C + .rodata start:0x80479F10 end:0x80479F20 + +Dolphin/Runtime/runtime.c: + .text start:0x800C1B4C end:0x800C22C4 + .rodata start:0x80479F20 end:0x80479F38 + +Dolphin/Runtime/__init_cpp_exceptions.cpp: + .text start:0x800C22C4 end:0x800C2340 + .ctors start:0x80472F00 end:0x80472F04 + .dtors start:0x804732C0 end:0x804732C8 + .sdata start:0x80514898 end:0x805148A0 + +Dolphin/Runtime/Gecko_ExceptionPPC.cp: + .text start:0x800C2340 end:0x800C23A8 + .bss start:0x804F5560 end:0x804F5570 + +Dolphin/Runtime/GCN_mem_alloc.c: + .text start:0x800C23A8 end:0x800C2460 + .rodata start:0x80479F38 end:0x80479FB0 + +Dolphin/MSL_C/PPC_EABI/abort_exit.c: + .text start:0x800C2460 end:0x800C2550 + .bss start:0x804F5570 end:0x804F5670 + .sbss start:0x80515328 end:0x80515338 + +Dolphin/MSL_C/MSL_Common/alloc.c: + .text start:0x800C2550 end:0x800C2A04 + .rodata start:0x80479FB0 end:0x80479FC8 + .bss start:0x804F5670 end:0x804F56A8 + .sbss start:0x80515338 end:0x80515340 + +Dolphin/MSL_C/MSL_Common/errno.c: + .sbss start:0x80515340 end:0x80515348 + +Dolphin/MSL_C/MSL_Common/ansi_files.c: + .text start:0x800C2A04 end:0x800C2B1C + .data start:0x804A6948 end:0x804A6A88 + .bss start:0x804F56A8 end:0x804F59A8 + +Dolphin/MSL_C/MSL_Common_Embedded/ansi_fp.c: + .text start:0x800C2B1C end:0x800C60F8 + .rodata start:0x80479FC8 end:0x8047A0A8 + .data start:0x804A6A88 end:0x804A6BF0 + .sdata2 start:0x80517098 end:0x805170C8 + +Dolphin/MSL_C/MSL_Common/arith.c: + .text start:0x800C60F8 end:0x800C6160 + +Dolphin/MSL_C/MSL_Common/buffer_io.c: + .text start:0x800C6160 end:0x800C6258 + +Dolphin/MSL_C/PPC_EABI/critical_regions.gamecube.c: + .text start:0x800C6258 end:0x800C6264 + +Dolphin/MSL_C/MSL_Common/ctype.c: + .text start:0x800C6264 end:0x800C6288 + .data start:0x804A6BF0 end:0x804A6EF0 + +Dolphin/MSL_C/MSL_Common/locale.c: + .rodata start:0x8047A0A8 end:0x8047A0B0 + .data start:0x804A6EF0 end:0x804A6F28 + +Dolphin/MSL_C/MSL_Common/direct_io.c: + .text start:0x800C6288 end:0x800C6610 + +Dolphin/MSL_C/MSL_Common/file_io.c: + .text start:0x800C6610 end:0x800C6904 + +Dolphin/MSL_C/MSL_Common/FILE_POS.C: + .text start:0x800C6904 end:0x800C6CC4 + +Dolphin/MSL_C/MSL_Common/mbstring.c: + .text start:0x800C6CC4 end:0x800C6FE8 + .sdata2 start:0x805170C8 end:0x805170D0 + +Dolphin/MSL_C/MSL_Common/mem.c: + .text start:0x800C6FE8 end:0x800C7158 + +Dolphin/MSL_C/MSL_Common/mem_funcs.c: + .text start:0x800C7158 end:0x800C7428 + +Dolphin/MSL_C/MSL_Common/misc_io.c: + .text start:0x800C7428 end:0x800C7438 + +Dolphin/MSL_C/MSL_Common/printf.c: + .text start:0x800C7438 end:0x800C9598 + .rodata start:0x8047A0B0 end:0x8047A0D8 + .data start:0x804A6F28 end:0x804A7158 + .sdata start:0x805148A0 end:0x805148A8 + .sdata2 start:0x805170D0 end:0x805170D8 + +Dolphin/MSL_C/MSL_Common/rand.c: + .text start:0x800C9598 end:0x800C95C0 + .sdata start:0x805148A8 end:0x805148B0 + +Dolphin/MSL_C/MSL_Common/float.c: + .sdata start:0x805148B0 end:0x805148E0 + +Dolphin/MSL_C/MSL_Common/scanf.c: + .text start:0x800C95C0 end:0x800CA608 + .rodata start:0x8047A0D8 end:0x8047A100 + .data start:0x804A7158 end:0x804A7228 + +Dolphin/MSL_C/MSL_Common/string.c: + .text start:0x800CA608 end:0x800CA92C + +Dolphin/MSL_C/MSL_Common/strtold.c: + .text start:0x800CA92C end:0x800CB938 + .rodata start:0x8047A100 end:0x8047A138 + .sdata2 start:0x805170D8 end:0x805170F0 + +Dolphin/MSL_C/MSL_Common/strtoul.c: + .text start:0x800CB938 end:0x800CC258 + .data start:0x804A7228 end:0x804A72B0 + +Dolphin/MSL_C/MSL_Common/wchar_io.c: + .text start:0x800CC258 end:0x800CC2E0 + +Dolphin/MSL_C/PPC_EABI/uart_console_io_gcn.c: + .text start:0x800CC2E0 end:0x800CC3B0 + .sbss start:0x80515348 end:0x80515350 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_asin.c: + .text start:0x800CC3B0 end:0x800CC5E8 + .sdata2 start:0x805170F0 end:0x80517178 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_atan2.c: + .text start:0x800CC5E8 end:0x800CC878 + .sdata2 start:0x80517178 end:0x805171D0 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_exp.c: + .text start:0x800CC878 end:0x800CCA9C + .rodata start:0x8047A138 end:0x8047A168 + .sdata2 start:0x805171D0 end:0x80517248 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_fmod.c: + .text start:0x800CCA9C end:0x800CCDD8 + .rodata start:0x8047A168 end:0x8047A178 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log.c: + .text start:0x800CCDD8 end:0x800CD054 + .sbss start:0x80515350 end:0x80515358 + .sdata2 start:0x80517248 end:0x805172C8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log10.c: + .text start:0x800CD054 end:0x800CD164 + .sbss start:0x80515358 end:0x80515360 + .sdata2 start:0x805172C8 end:0x805172F8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_pow.c: + .text start:0x800CD164 end:0x800CD994 + .rodata start:0x8047A178 end:0x8047A1A8 + .sdata2 start:0x805172F8 end:0x80517408 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_rem_pio2.c: + .text start:0x800CD994 end:0x800CDD34 + .rodata start:0x8047A1A8 end:0x8047A330 + .sdata2 start:0x80517408 end:0x80517460 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_cos.c: + .text start:0x800CDD34 end:0x800CDE28 + .sdata2 start:0x80517460 end:0x805174A8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_rem_pio2.c: + .text start:0x800CDE28 end:0x800CEC7C + .rodata start:0x8047A330 end:0x8047A380 + .sdata2 start:0x805174A8 end:0x805174E8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_sin.c: + .text start:0x800CEC7C end:0x800CED1C + .sdata2 start:0x805174E8 end:0x80517520 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_tan.c: + .text start:0x800CED1C end:0x800CEF30 + .rodata start:0x8047A380 end:0x8047A3E8 + .sdata2 start:0x80517520 end:0x80517558 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_atan.c: + .text start:0x800CEF30 end:0x800CF148 + .rodata start:0x8047A3E8 end:0x8047A480 + .sdata2 start:0x80517558 end:0x80517580 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ceil.c: + .text start:0x800CF148 end:0x800CF28C + .sdata2 start:0x80517580 end:0x80517590 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_copysign.c: + .text start:0x800CF28C end:0x800CF2B4 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_cos.c: + .text start:0x800CF2B4 end:0x800CF388 + .sdata2 start:0x80517590 end:0x80517598 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_floor.c: + .text start:0x800CF388 end:0x800CF4D0 + .sdata2 start:0x80517598 end:0x805175A8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_frexp.c: + .text start:0x800CF4D0 end:0x800CF55C + .sdata2 start:0x805175A8 end:0x805175B0 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ldexp.c: + .text start:0x800CF55C end:0x800CF720 + .sdata2 start:0x805175B0 end:0x805175D8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_modf.c: + .text start:0x800CF720 end:0x800CF81C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_sin.c: + .text start:0x800CF81C end:0x800CF8F4 + .sdata2 start:0x805175D8 end:0x805175E0 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_tan.c: + .text start:0x800CF8F4 end:0x800CF96C + .sdata2 start:0x805175E0 end:0x805175E8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_asin.c: + .text start:0x800CF96C end:0x800CF98C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_atan2.c: + .text start:0x800CF98C end:0x800CF9AC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_exp.c: + .text start:0x800CF9AC end:0x800CF9CC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_fmod.c: + .text start:0x800CF9CC end:0x800CF9EC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_log10.c: + .text start:0x800CF9EC end:0x800CFA0C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_pow.c: + .text start:0x800CFA0C end:0x800CFA2C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_sqrt.c: + .text start:0x800CFA2C end:0x800CFC50 + .sdata2 start:0x805175E8 end:0x805175F0 + +Dolphin/MSL_C/PPC_EABI/math_ppc.c: + .text start:0x800CFC50 end:0x800CFCBC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_sqrt.c: + .text start:0x800CFCBC end:0x800CFCDC + +Dolphin/MSL_C/MSL_Common/extras.c: + .text start:0x800CFCDC end:0x800CFD68 + +Dolphin/OdemuExi2/DebuggerDriver.c: + .text start:0x800CFD68 end:0x800D07E8 + .sdata start:0x805148E0 end:0x805148E8 + .sbss start:0x80515360 end:0x80515378 + +Dolphin/vi/vi.c: + .text start:0x800D07E8 end:0x800D2644 + .data start:0x804A72B0 end:0x804A7680 + .bss start:0x804F59A8 end:0x804F5AF0 + .sdata start:0x805148E8 end:0x805148F8 + .sbss start:0x80515378 end:0x805153D8 + +Dolphin/amcstubs/AmcExi2Stubs.c: + .text start:0x800D2644 end:0x800D2674 + +Dolphin/ar/ar.c: + .text start:0x800D2674 end:0x800D41BC + .data start:0x804A7680 end:0x804A76C8 + .sdata start:0x805148F8 end:0x80514900 + .sbss start:0x805153D8 end:0x805153F8 + +Dolphin/ar/arq.c: + .text start:0x800D41BC end:0x800D4558 + .data start:0x804A76C8 end:0x804A7710 + .sdata start:0x80514900 end:0x80514908 + .sbss start:0x805153F8 end:0x80515420 + +Dolphin/base/PPCArch.c: + .text start:0x800D4558 end:0x800D466C + +Dolphin/card/CARDBios.c: + .text start:0x800D466C end:0x800D5920 + .data start:0x804A7710 end:0x804A7780 + .bss start:0x804F5AF0 end:0x804F5D30 + .sdata start:0x80514908 end:0x80514910 + .sbss start:0x80515420 end:0x80515428 + +Dolphin/card/CARDUnlock.c: + .text start:0x800D5920 end:0x800D6B80 + .data start:0x804A7780 end:0x804A78E0 + .sdata start:0x80514910 end:0x80514918 + +Dolphin/card/CARDRdwr.c: + .text start:0x800D6B80 end:0x800D6E00 + +Dolphin/card/CARDBlock.c: + .text start:0x800D6E00 end:0x800D7168 + +Dolphin/card/CARDDir.c: + .text start:0x800D7168 end:0x800D73CC + +Dolphin/card/CARDCheck.c: + .text start:0x800D73CC end:0x800D8334 + +Dolphin/card/CARDMount.c: + .text start:0x800D8334 end:0x800D8E2C + .data start:0x804A78E0 end:0x804A7920 + +Dolphin/card/CARDFormat.c: + .text start:0x800D8E2C end:0x800D961C + +Dolphin/card/CARDOpen.c: + .text start:0x800D961C end:0x800D9AB0 + +Dolphin/card/CARDCreate.c: + .text start:0x800D9AB0 end:0x800D9E48 + +Dolphin/card/CARDRead.c: + .text start:0x800D9E48 end:0x800DA2BC + +Dolphin/card/CARDWrite.c: + .text start:0x800DA2BC end:0x800DA638 + +Dolphin/card/CARDStat.c: + .text start:0x800DA638 end:0x800DAB00 + +Dolphin/card/CARDNet.c: + .text start:0x800DAB00 end:0x800DABC4 + .sdata start:0x80514918 end:0x80514920 + +Dolphin/db/db.c: + .text start:0x800DABC4 end:0x800DACB0 + .data start:0x804A7920 end:0x804A7938 + .sbss start:0x80515428 end:0x80515430 + +Dolphin/dsp/dsp.c: + .text start:0x800DACB0 end:0x800DAE00 + .data start:0x804A7938 end:0x804A79B8 + .sdata start:0x80514920 end:0x80514928 + .sbss start:0x80515430 end:0x80515438 + +Dolphin/dsp/dsp_debug.c: + .text start:0x800DAE00 end:0x800DAE50 + +Dolphin/dsp/dsp_task.c: + .text start:0x800DAE50 end:0x800DB2B0 + .data start:0x804A79B8 end:0x804A7AF8 + .sbss start:0x80515438 end:0x80515448 + +Dolphin/dvd/dvdlow.c: + .text start:0x800DB2B0 end:0x800DC12C + .bss start:0x804F5D30 end:0x804F5E00 + .sdata start:0x80514928 end:0x80514930 + .sbss start:0x80515448 end:0x80515490 + +Dolphin/dvd/dvdfs.c: + .text start:0x800DC12C end:0x800DCD28 + .data start:0x804A7AF8 end:0x804A7C98 + .sdata start:0x80514930 end:0x80514938 + .sbss start:0x80515490 end:0x805154B0 + +Dolphin/dvd/dvd.c: + .text start:0x800DCD28 end:0x800DF45C + .data start:0x804A7C98 end:0x804A7E18 + .bss start:0x804F5E00 end:0x804F5E98 + .sdata start:0x80514938 end:0x80514950 + .sbss start:0x805154B0 end:0x805154F8 + +Dolphin/dvd/dvdqueue.c: + .text start:0x800DF45C end:0x800DF654 + .bss start:0x804F5E98 end:0x804F5EB8 + +Dolphin/dvd/dvderror.c: + .text start:0x800DF654 end:0x800DF7EC + .data start:0x804A7E18 end:0x804A7E60 + +Dolphin/dvd/dvdidutils.c: + .text start:0x800DF7EC end:0x800DF8E4 + +Dolphin/dvd/dvdFatal.c: + .text start:0x800DF8E4 end:0x800DF914 + .sbss start:0x805154F8 end:0x80515500 + +Dolphin/dvd/fstload.c: + .text start:0x800DF914 end:0x800DFB54 + .data start:0x804A7E60 end:0x804A7ED0 + .bss start:0x804F5EB8 end:0x804F5F28 + .sdata start:0x80514950 end:0x80514960 + .sbss start:0x80515500 end:0x80515510 + +Dolphin/exi/EXIBios.c: + .text start:0x800DFB54 end:0x800E1530 + .data start:0x804A7ED0 end:0x804A7FE0 + .bss start:0x804F5F28 end:0x804F5FE8 + .sdata start:0x80514960 end:0x80514968 + .sbss start:0x80515510 end:0x80515518 + +Dolphin/exi/EXIUart.c: + .text start:0x800E1530 end:0x800E1B04 + .sbss start:0x80515518 end:0x80515528 + +Dolphin/gd/GDBase.c: + .text start:0x800E1B04 end:0x800E1C70 + .sbss start:0x80515528 end:0x80515530 + +Dolphin/gd/GDGeometry.c: + .text start:0x800E1C70 end:0x800E2680 + .data start:0x804A7FE0 end:0x804A8060 + +Dolphin/gx/GXInit.c: + .text start:0x800E2680 end:0x800E3A00 + .data start:0x804A8060 end:0x804A82A0 + .bss start:0x804F5FE8 end:0x804F6620 + .sdata start:0x80514968 end:0x80514970 + .sbss start:0x80515530 end:0x80515558 + .sdata2 start:0x805175F0 end:0x80517618 + +Dolphin/gx/GXFifo.c: + .text start:0x800E3A00 end:0x800E4284 + .sbss start:0x80515558 end:0x80515578 + +Dolphin/gx/GXAttr.c: + .text start:0x800E4284 end:0x800E4FD8 + .data start:0x804A82A0 end:0x804A8400 + .sdata start:0x80514970 end:0x80514980 + +Dolphin/gx/GXMisc.c: + .text start:0x800E4FD8 end:0x800E5908 + .sbss start:0x80515578 end:0x80515590 + +Dolphin/gx/GXGeometry.c: + .text start:0x800E5908 end:0x800E5C44 + +Dolphin/gx/GXFrameBuf.c: + .text start:0x800E5C44 end:0x800E6870 + .data start:0x804A8400 end:0x804A8530 + .sdata2 start:0x80517618 end:0x80517628 + +Dolphin/gx/GXLight.c: + .text start:0x800E6870 end:0x800E6F58 + .data start:0x804A8530 end:0x804A8550 + .sdata2 start:0x80517628 end:0x80517670 + +Dolphin/gx/GXTexture.c: + .text start:0x800E6F58 end:0x800E7F40 + .data start:0x804A8550 end:0x804A8778 + .sdata start:0x80514980 end:0x805149C0 + .sdata2 start:0x80517670 end:0x80517698 + +Dolphin/gx/GXBump.c: + .text start:0x800E7F40 end:0x800E847C + .sdata2 start:0x80517698 end:0x805176A0 + +Dolphin/gx/GXTev.c: + .text start:0x800E847C end:0x800E8BE0 + .data start:0x804A8778 end:0x804A87F0 + +Dolphin/gx/GXPixel.c: + .text start:0x800E8BE0 end:0x800E93D8 + .data start:0x804A87F0 end:0x804A8810 + .sdata2 start:0x805176A0 end:0x80517700 + +Dolphin/gx/GXDisplayList.c: + .text start:0x800E93D8 end:0x800E9448 + +Dolphin/gx/GXTransform.c: + .text start:0x800E9448 end:0x800E9984 + .sdata2 start:0x80517700 end:0x80517710 + +Dolphin/gx/GXPerf.c: + .text start:0x800E9984 end:0x800EA2A0 + .data start:0x804A8810 end:0x804A8900 + +Dolphin/mtx/mtx.c: + .text start:0x800EA2A0 end:0x800EABD8 + .sdata start:0x805149C0 end:0x805149C8 + .sdata2 start:0x80517710 end:0x80517730 + +Dolphin/mtx/mtxvec.c: + .text start:0x800EABD8 end:0x800EAD08 + +Dolphin/mtx/mtx44.c: + .text start:0x800EAD08 end:0x800EAEB4 + .sdata2 start:0x80517730 end:0x80517748 + +Dolphin/mtx/vec.c: + .text start:0x800EAEB4 end:0x800EAFC0 + .sdata2 start:0x80517748 end:0x80517750 + +Dolphin/odenotstub/odenotstub.c: + .text start:0x800EAFC0 end:0x800EAFC8 + +Dolphin/os/OS.c: + .text start:0x800EAFC8 end:0x800EBAB4 + .data start:0x804A8900 end:0x804A8AF8 + .bss start:0x804F6620 end:0x804F6670 + .sdata start:0x805149C8 end:0x805149D8 + .sbss start:0x80515590 end:0x805155D0 + +Dolphin/os/OSAlarm.c: + .text start:0x800EBAB4 end:0x800EC210 + .data start:0x804A8AF8 end:0x804A8B08 + .sbss start:0x805155D0 end:0x805155D8 + +Dolphin/os/OSAlloc.c: + .text start:0x800EC210 end:0x800EC424 + .sdata start:0x805149D8 end:0x805149E0 + .sbss start:0x805155D8 end:0x805155E8 + +Dolphin/os/OSArena.c: + .text start:0x800EC424 end:0x800EC444 + .sdata start:0x805149E0 end:0x805149E8 + .sbss start:0x805155E8 end:0x805155F0 + +Dolphin/os/OSAudioSystem.c: + .text start:0x800EC444 end:0x800EC6D8 + .data start:0x804A8B08 end:0x804A8B88 + +Dolphin/os/OSCache.c: + .text start:0x800EC6D8 end:0x800ECD50 + .data start:0x804A8B88 end:0x804A8DB8 + +Dolphin/os/OSContext.c: + .text start:0x800ECD50 end:0x800ED6EC + .data start:0x804A8DB8 end:0x804A8F90 + +Dolphin/os/OSError.c: + .text start:0x800ED6EC end:0x800EDD98 + .data start:0x804A8F90 end:0x804A92B0 + .bss start:0x804F6670 end:0x804F66C0 + .sdata start:0x805149E8 end:0x805149F0 + +Dolphin/os/OSFont.c: + .text start:0x800EDD98 end:0x800EEC38 + .data start:0x804A92B0 end:0x804A9DC0 + .sdata start:0x805149F0 end:0x805149F8 + .sbss start:0x805155F0 end:0x80515600 + .sdata2 start:0x80517750 end:0x80517758 + +Dolphin/os/OSInterrupt.c: + .text start:0x800EEC38 end:0x800EF4A4 + .data start:0x804A9DC0 end:0x804A9DF0 + .sbss start:0x80515600 end:0x80515618 + +Dolphin/os/OSLink.c: + .text start:0x800EF4A4 end:0x800EF4BC + +Dolphin/os/OSMessage.c: + .text start:0x800EF4BC end:0x800EF794 + +Dolphin/os/OSMemory.c: + .text start:0x800EF794 end:0x800EFB30 + .data start:0x804A9DF0 end:0x804A9E00 + +Dolphin/os/OSMutex.c: + .text start:0x800EFB30 end:0x800EFF4C + +Dolphin/os/OSReboot.c: + .text start:0x800EFF4C end:0x800F02A4 + .bss start:0x804F66C0 end:0x804F66E0 + .sbss start:0x80515618 end:0x80515628 + +Dolphin/os/OSReset.c: + .text start:0x800F02A4 end:0x800F06D0 + .sbss start:0x80515628 end:0x80515638 + +Dolphin/os/OSResetSW.c: + .text start:0x800F06D0 end:0x800F0A7C + .sbss start:0x80515638 end:0x80515658 + +Dolphin/os/OSRtc.c: + .text start:0x800F0A7C end:0x800F17D4 + .bss start:0x804F66E0 end:0x804F6738 + +Dolphin/os/OSSync.c: + .text start:0x800F17D4 end:0x800F1858 + +Dolphin/os/OSThread.c: + .text start:0x800F1858 end:0x800F2B90 + .bss start:0x804F6738 end:0x804F7130 + .sdata start:0x805149F8 end:0x80514A00 + .sbss start:0x80515658 end:0x80515668 + +Dolphin/os/__start.c: + .init start:0x800051EC end:0x800054EC + .sbss start:0x80515668 end:0x80515670 + +Dolphin/os/OSTime.c: + .text start:0x800F2B90 end:0x800F2FB4 + .data start:0x804A9E00 end:0x804A9E60 + +Dolphin/os/__ppc_eabi_init.cpp: + .init start:0x800054EC end:0x80005544 + .text start:0x800F2FB4 end:0x800F3048 + +Dolphin/pad/Padclamp.c: + .text start:0x800F3048 end:0x800F3540 + .rodata start:0x8047A480 end:0x8047A490 + .sdata2 start:0x80517758 end:0x80517778 + +Dolphin/pad/Pad.c: + .text start:0x800F3540 end:0x800F4EFC + .data start:0x804A9E60 end:0x804A9EB8 + .bss start:0x804F7130 end:0x804F7180 + .sdata start:0x80514A00 end:0x80514A20 + .sbss start:0x80515670 end:0x805156A0 + +Dolphin/si/SIBios.c: + .text start:0x800F4EFC end:0x800F675C + .data start:0x804A9EB8 end:0x804A9FD0 + .bss start:0x804F7180 end:0x804F7380 + .sdata start:0x80514A20 end:0x80514A28 + .sbss start:0x805156A0 end:0x805156B0 + +Dolphin/si/SISamplingRate.c: + .text start:0x800F675C end:0x800F6864 + .data start:0x804A9FD0 end:0x804AA068 + .sbss start:0x805156B0 end:0x805156B8 + +Dolphin/ai/ai.c: + .text start:0x800F6864 end:0x800F7148 + .data start:0x804AA068 end:0x804AA0B0 + .sdata start:0x80514A28 end:0x80514A30 + .sbss start:0x805156B8 end:0x80515700 + +Dolphin/thp/THPDec.c: + .text start:0x800F7148 end:0x800FE6B0 + .rodata start:0x8047A490 end:0x8047A520 + .data start:0x804AA0B0 end:0x804AA0F8 + .bss start:0x804F7380 end:0x804F74C0 + .sdata start:0x80514A30 end:0x80514A38 + .sbss start:0x80515700 end:0x80515818 + .sdata2 start:0x80517778 end:0x80517798 + +Dolphin/thp/THPAudio.c: + .text start:0x800FE6B0 end:0x800FEB2C + +Dolphin/gba/GBA.c: + .text start:0x800FEB2C end:0x800FED70 + .data start:0x804AA0F8 end:0x804AA150 + .bss start:0x804F74C0 end:0x804F79C0 + .sdata start:0x80514A38 end:0x80514A40 + .sbss start:0x80515818 end:0x80515820 + +Dolphin/gba/GBARead.c: + .text start:0x800FED70 end:0x800FEE64 + +Dolphin/gba/GBAWrite.c: + .text start:0x800FEE64 end:0x800FEF58 + +Dolphin/gba/GBAXfer.c: + .text start:0x800FEF58 end:0x800FF26C + +plugProjectYamashitaU/enemyBase.cpp: + .text start:0x800FF26C end:0x80108300 + .ctors start:0x80472F7C end:0x80472F80 + .rodata start:0x8047A520 end:0x8047A660 + .data start:0x804AA150 end:0x804AA9A8 + .sbss start:0x80515820 end:0x80515858 + .sdata2 start:0x80517798 end:0x80517850 + +plugProjectYamashitaU/pelplant.cpp: + .text start:0x80108300 end:0x8010AB38 + .rodata start:0x8047A660 end:0x8047AA20 + .data start:0x804AA9A8 end:0x804AB100 + .sbss start:0x80515858 end:0x80515860 + .sdata2 start:0x80517850 end:0x80517960 + +plugProjectYamashitaU/pelplantState.cpp: + .text start:0x8010AB38 end:0x8010BA00 + .rodata start:0x8047AA20 end:0x8047AA70 + .data start:0x804AB100 end:0x804AB2D8 + .sdata2 start:0x80517960 end:0x805179A0 + +plugProjectYamashitaU/enemyInteractBattle.cpp: + .text start:0x8010BA00 end:0x8010BD3C + .data start:0x804AB2D8 end:0x804AB390 + +plugProjectYamashitaU/generalEnemyMgr.cpp: + .text start:0x8010BD3C end:0x8010F2A8 + .rodata start:0x8047AA70 end:0x8047AB28 + .data start:0x804AB390 end:0x804AB628 + .sbss start:0x80515860 end:0x80515870 + .sdata2 start:0x805179A0 end:0x805179D0 + +plugProjectYamashitaU/kochappyAnimator.cpp: + .text start:0x8010F2A8 end:0x8010F31C + .data start:0x804AB628 end:0x804AB650 + +plugProjectYamashitaU/kochappy.cpp: + .text start:0x8010F31C end:0x8010F874 + .data start:0x804AB650 end:0x804AB998 + .sdata2 start:0x805179D0 end:0x805179D8 + +plugProjectYamashitaU/kochappyState.cpp: + .text start:0x8010F874 end:0x801122B4 + .ctors start:0x80472F80 end:0x80472F84 + .rodata start:0x8047AB28 end:0x8047AB38 + .data start:0x804AB998 end:0x804ABB58 + .sbss start:0x80515870 end:0x80515878 + .sdata2 start:0x805179D8 end:0x80517A58 + +plugProjectYamashitaU/kochappyMgr.cpp: + .text start:0x801122B4 end:0x801126F4 + .rodata start:0x8047AB38 end:0x8047AE88 + .data start:0x804ABB58 end:0x804ABC48 + .sdata start:0x80514A40 end:0x80514A48 + .sdata2 start:0x80517A58 end:0x80517A78 + +plugProjectYamashitaU/enemyAction.cpp: + .text start:0x801126F4 end:0x80115F90 + .ctors start:0x80472F84 end:0x80472F88 + .rodata start:0x8047AE88 end:0x8047AEA8 + .data start:0x804ABC48 end:0x804ABCD0 + .sbss start:0x80515878 end:0x80515880 + .sdata2 start:0x80517A78 end:0x80517A98 + +plugProjectYamashitaU/chappy.cpp: + .text start:0x80115F90 end:0x80116648 + .data start:0x804ABCD0 end:0x804AC038 + .sdata2 start:0x80517A98 end:0x80517AA0 + +plugProjectYamashitaU/chappyState.cpp: + .text start:0x80116648 end:0x80119710 + .rodata start:0x8047AEA8 end:0x8047AEC8 + .data start:0x804AC038 end:0x804AC1E8 + .sdata2 start:0x80517AA0 end:0x80517B10 + +plugProjectYamashitaU/chappyAnimator.cpp: + .text start:0x80119710 end:0x80119784 + .data start:0x804AC1E8 end:0x804AC210 + +plugProjectYamashitaU/chappyMgr.cpp: + .text start:0x80119784 end:0x80119BFC + .rodata start:0x8047AEC8 end:0x8047B238 + .data start:0x804AC210 end:0x804AC308 + .sdata start:0x80514A48 end:0x80514A50 + .sdata2 start:0x80517B10 end:0x80517B28 + +plugProjectYamashitaU/lifeGaugeMgr.cpp: + .text start:0x80119BFC end:0x8011AFD0 + .ctors start:0x80472F88 end:0x80472F8C + .rodata start:0x8047B238 end:0x8047B268 + .data start:0x804AC308 end:0x804AC320 + .sbss start:0x80515880 end:0x80515890 + .sdata2 start:0x80517B28 end:0x80517B60 + +plugProjectYamashitaU/carryInfoMgr.cpp: + .text start:0x8011AFD0 end:0x8011CCE0 + .ctors start:0x80472F8C end:0x80472F90 + .rodata start:0x8047B268 end:0x8047B2C0 + .data start:0x804AC320 end:0x804AC420 + .sbss start:0x80515890 end:0x805158A0 + .sdata2 start:0x80517B60 end:0x80517BF0 + +plugProjectYamashitaU/gameLightMgr.cpp: + .text start:0x8011CCE0 end:0x80122450 + .ctors start:0x80472F90 end:0x80472F94 + .rodata start:0x8047B2C0 end:0x8047B420 + .data start:0x804AC420 end:0x804AC518 + .sbss start:0x805158A0 end:0x805158A8 + .sdata2 start:0x80517BF0 end:0x80517CC0 + +plugProjectYamashitaU/vtxAnm.cpp: + .text start:0x80122450 end:0x80123278 + .rodata start:0x8047B420 end:0x8047B448 + .data start:0x804AC518 end:0x804AC538 + .sdata2 start:0x80517CC0 end:0x80517CE8 + +plugProjectYamashitaU/enemyInfo.cpp: + .text start:0x80123278 end:0x801234F8 + .rodata start:0x8047B448 end:0x8047B6C8 + .data start:0x804AC538 end:0x804AD988 + .sdata start:0x80514A50 end:0x80514A58 + .sdata2 start:0x80517CE8 end:0x80517E78 + +plugProjectYamashitaU/farm.cpp: + .text start:0x801234F8 end:0x80124018 + .rodata start:0x8047B6C8 end:0x8047B718 + .data start:0x804AD988 end:0x804AD9B8 + .sdata2 start:0x80517E78 end:0x80517EA0 + +plugProjectYamashitaU/farmMgr.cpp: + .text start:0x80124018 end:0x80124778 + .ctors start:0x80472F94 end:0x80472F98 + .rodata start:0x8047B718 end:0x8047B750 + .data start:0x804AD9B8 end:0x804ADA18 + .sbss start:0x805158A8 end:0x805158B0 + .sdata2 start:0x80517EA0 end:0x80517EA8 + +plugProjectYamashitaU/genEnemy.cpp: + .text start:0x80124778 end:0x80126C00 + .rodata start:0x8047B750 end:0x8047BD48 + .data start:0x804ADA18 end:0x804ADC20 + .sdata2 start:0x80517EA8 end:0x80517F50 + +plugProjectYamashitaU/timeMgr.cpp: + .text start:0x80126C00 end:0x801275B0 + .rodata start:0x8047BD48 end:0x8047BE28 + .data start:0x804ADC20 end:0x804ADC30 + .sdata2 start:0x80517F50 end:0x80517F88 + +plugProjectYamashitaU/pelplantGenerator.cpp: + .text start:0x801275B0 end:0x80127884 + .rodata start:0x8047BE28 end:0x8047BE58 + .data start:0x804ADC30 end:0x804ADC58 + .sdata2 start:0x80517F88 end:0x80517F90 + +plugProjectYamashitaU/enemyInteractActions.cpp: + .text start:0x80127884 end:0x80127974 + .sdata2 start:0x80517F90 end:0x80517F98 + +plugProjectYamashitaU/enemyAnimatorBase.cpp: + .text start:0x80127974 end:0x80127C00 + .data start:0x804ADC58 end:0x804ADC80 + .sdata2 start:0x80517F98 end:0x80517FB8 + +plugProjectYamashitaU/enemyStoneMgr.cpp: + .text start:0x80127C00 end:0x80128108 + .rodata start:0x8047BE58 end:0x8047BF00 + .sdata start:0x80514A58 end:0x80514A60 + +plugProjectYamashitaU/enemyStoenInfo.cpp: + .text start:0x80128108 end:0x80128280 + .sdata2 start:0x80517FB8 end:0x80517FC0 + +plugProjectYamashitaU/enemyStoneDrawInfo.cpp: + .text start:0x80128280 end:0x80129B30 + .rodata start:0x8047BF00 end:0x8047BF18 + .data start:0x804ADC80 end:0x804ADDF8 + .sbss start:0x805158B0 end:0x805158B8 + .sdata2 start:0x80517FC0 end:0x80518038 + +plugProjectYamashitaU/enemyStoneObj.cpp: + .text start:0x80129B30 end:0x8012A244 + .ctors start:0x80472F98 end:0x80472F9C + .rodata start:0x8047BF18 end:0x8047BF30 + .data start:0x804ADDF8 end:0x804ADE18 + .sbss start:0x805158B8 end:0x805158C0 + .sdata2 start:0x80518038 end:0x80518048 + +plugProjectYamashitaU/enemyParmsBase.cpp: + .text start:0x8012A244 end:0x8012A320 + +plugProjectYamashitaU/walkSmokeEffect.cpp: + .text start:0x8012A320 end:0x8012A670 + .rodata start:0x8047BF30 end:0x8047BF80 + .sdata2 start:0x80518048 end:0x80518050 + +plugProjectYamashitaU/ChappyBaseMgr.cpp: + .text start:0x8012A670 end:0x8012A950 + .rodata start:0x8047BF80 end:0x8047BFC0 + .data start:0x804ADE18 end:0x804ADF00 + .sdata2 start:0x80518050 end:0x80518058 + +plugProjectYamashitaU/ChappyBase.cpp: + .text start:0x8012A950 end:0x8012B8AC + .data start:0x804ADF00 end:0x804AE2B0 + .sdata2 start:0x80518058 end:0x805180D0 + +plugProjectYamashitaU/BlueChappyMgr.cpp: + .text start:0x8012B8AC end:0x8012BBF4 + .rodata start:0x8047BFC0 end:0x8047C030 + .data start:0x804AE2B0 end:0x804AE398 + .sdata start:0x80514A60 end:0x80514A68 + +plugProjectYamashitaU/BlueChappy.cpp: + .text start:0x8012BBF4 end:0x8012BFF0 + .data start:0x804AE398 end:0x804AE700 + +plugProjectYamashitaU/YellowChappyMgr.cpp: + .text start:0x8012BFF0 end:0x8012C378 + .rodata start:0x8047C030 end:0x8047C0A0 + .data start:0x804AE700 end:0x804AE7E8 + .sdata start:0x80514A68 end:0x80514A70 + +plugProjectYamashitaU/YellowChappy.cpp: + .text start:0x8012C378 end:0x8012CC1C + .rodata start:0x8047C0A0 end:0x8047C0C0 + .data start:0x804AE7E8 end:0x804AEBB8 + .sdata2 start:0x805180D0 end:0x805180E0 + +plugProjectYamashitaU/BlueKochappyMgr.cpp: + .text start:0x8012CC1C end:0x8012CF38 + .rodata start:0x8047C0C0 end:0x8047C110 + .data start:0x804AEBB8 end:0x804AECA0 + .sdata start:0x80514A70 end:0x80514A78 + +plugProjectYamashitaU/BlueKochappy.cpp: + .text start:0x8012CF38 end:0x8012D214 + .data start:0x804AECA0 end:0x804AEFD8 + +plugProjectYamashitaU/YellowKochappy.cpp: + .text start:0x8012D214 end:0x8012D5E4 + .data start:0x804AEFD8 end:0x804AF310 + +plugProjectYamashitaU/YellowKochappyMgr.cpp: + .text start:0x8012D5E4 end:0x8012D80C + .rodata start:0x8047C110 end:0x8047C160 + .data start:0x804AF310 end:0x804AF3F8 + .sdata start:0x80514A78 end:0x80514A80 + +plugProjectYamashitaU/KochappyBaseMgr.cpp: + .text start:0x8012D80C end:0x8012DAE8 + .rodata start:0x8047C160 end:0x8047C1A8 + .data start:0x804AF3F8 end:0x804AF4E0 + +plugProjectYamashitaU/KochappyBase.cpp: + .text start:0x8012DAE8 end:0x8012E0E8 + .data start:0x804AF4E0 end:0x804AF818 + .sdata2 start:0x805180E0 end:0x80518118 + +plugProjectYamashitaU/enemyBlendAnimatorBase.cpp: + .text start:0x8012E0E8 end:0x8012E34C + .ctors start:0x80472F9C end:0x80472FA0 + .data start:0x804AF818 end:0x804AF858 + .sbss start:0x805158C0 end:0x805158C8 + .sdata2 start:0x80518118 end:0x80518120 + +plugProjectYamashitaU/enemyPelletInfo.cpp: + .text start:0x8012E34C end:0x8012E510 + .rodata start:0x8047C1A8 end:0x8047C1E8 + .data start:0x804AF858 end:0x804AF868 + .sdata2 start:0x80518120 end:0x80518128 + +plugProjectYamashitaU/enemyEffectNode.cpp: + .text start:0x8012E510 end:0x8012EC24 + .data start:0x804AF868 end:0x804AF8A0 + .sdata2 start:0x80518128 end:0x80518130 + +plugProjectYamashitaU/enemyMgrBase.cpp: + .text start:0x8012EC24 end:0x8013070C + .rodata start:0x8047C1E8 end:0x8047C358 + .data start:0x804AF8A0 end:0x804AF980 + .sdata2 start:0x80518130 end:0x80518148 + +plugProjectYamashitaU/enemyFSM.cpp: + .text start:0x8013070C end:0x80130B9C + .data start:0x804AF980 end:0x804AF9C8 + .sdata2 start:0x80518148 end:0x80518150 + +plugProjectYamashitaU/singleGS_ZukanParms.cpp: + .text start:0x80130B9C end:0x8013286C + .ctors start:0x80472FA0 end:0x80472FA4 + .rodata start:0x8047C358 end:0x8047C530 + .data start:0x804AF9C8 end:0x804AFA80 + .sbss start:0x805158C8 end:0x805158D8 + .sdata2 start:0x80518150 end:0x805181D0 + +plugProjectYamashitaU/treasureLightMgr.cpp: + .text start:0x8013286C end:0x80132CB4 + .ctors start:0x80472FA4 end:0x80472FA8 + .rodata start:0x8047C530 end:0x8047C570 + .data start:0x804AFA80 end:0x804AFAB0 + .sbss start:0x805158D8 end:0x805158E0 + .sdata2 start:0x805181D0 end:0x805181F8 + +plugProjectYamashitaU/effectAnimator.cpp: + .text start:0x80132CB4 end:0x8013364C + .rodata start:0x8047C570 end:0x8047C5A0 + .data start:0x804AFAB0 end:0x804AFE00 + .sdata2 start:0x805181F8 end:0x80518208 + +plugProjectKandoU/pikiAnimator.cpp: + .text start:0x8013364C end:0x801336A8 + +plugProjectKandoU/collinfo.cpp: + .text start:0x801336A8 end:0x80139C60 + .rodata start:0x8047C5A0 end:0x8047C648 + .data start:0x804AFE00 end:0x804B0068 + .sbss start:0x805158E0 end:0x805158E8 + .sdata2 start:0x80518208 end:0x80518238 + +plugProjectKandoU/gameDynamics.cpp: + .text start:0x80139C60 end:0x8013AE84 + .rodata start:0x8047C648 end:0x8047C6E8 + .data start:0x804B0068 end:0x804B0098 + .sbss start:0x805158E8 end:0x805158F0 + .sdata2 start:0x80518238 end:0x80518280 + +plugProjectKandoU/creature.cpp: + .text start:0x8013AE84 end:0x8013CC68 + .ctors start:0x80472FA8 end:0x80472FAC + .rodata start:0x8047C6E8 end:0x8047C708 + .data start:0x804B0098 end:0x804B02B0 + .sdata start:0x80514A80 end:0x80514A88 + .sbss start:0x805158F0 end:0x80515900 + .sdata2 start:0x80518280 end:0x805182B0 + +plugProjectKandoU/fakePiki.cpp: + .text start:0x8013CC68 end:0x8013F6D4 + .ctors start:0x80472FAC end:0x80472FB0 + .rodata start:0x8047C708 end:0x8047C788 + .data start:0x804B02B0 end:0x804B04E0 + .sdata start:0x80514A88 end:0x80514A90 + .sbss start:0x80515900 end:0x80515910 + .sdata2 start:0x805182B0 end:0x80518348 + +plugProjectKandoU/navi.cpp: + .text start:0x8013F6D4 end:0x801476DC + .ctors start:0x80472FB0 end:0x80472FB4 + .rodata start:0x8047C788 end:0x8047C880 + .data start:0x804B04E0 end:0x804B0990 + .sbss start:0x80515910 end:0x80515920 + .sdata2 start:0x80518348 end:0x80518410 + +plugProjectKandoU/piki.cpp: + .text start:0x801476DC end:0x8014ADA0 + .ctors start:0x80472FB4 end:0x80472FB8 + .rodata start:0x8047C880 end:0x8047C948 + .data start:0x804B0990 end:0x804B0C70 + .bss start:0x8051228C end:0x805122EC align:4 common + .sbss start:0x80515920 end:0x80515928 + .sdata2 start:0x80518410 end:0x80518498 + +plugProjectKandoU/baseGameSection.cpp: + .text start:0x8014ADA0 end:0x80152074 + .ctors start:0x80472FB8 end:0x80472FBC + .rodata start:0x8047C948 end:0x8047CD98 + .data start:0x804B0C70 end:0x804B1070 + .sdata start:0x80514A90 end:0x80514A98 + .sbss start:0x80515928 end:0x80515940 + .sdata2 start:0x80518498 end:0x805185C0 + .sbss2 start:0x80520E58 end:0x80520E60 + +plugProjectKandoU/singleGameSection.cpp: + .text start:0x80152074 end:0x801565C8 + .ctors start:0x80472FBC end:0x80472FC0 + .rodata start:0x8047CD98 end:0x8047CFE0 + .data start:0x804B1070 end:0x804B1488 + .sbss start:0x80515940 end:0x80515948 + .sdata2 start:0x805185C0 end:0x80518628 + +plugProjectKandoU/cellPyramid.cpp: + .text start:0x801565C8 end:0x8015928C + .rodata start:0x8047CFE0 end:0x8047D088 + .data start:0x804B1488 end:0x804B14A0 + .sdata start:0x80514A98 end:0x80514AA0 + .sbss start:0x80515948 end:0x80515960 + .sdata2 start:0x80518628 end:0x80518668 + +plugProjectKandoU/naviMgr.cpp: + .text start:0x8015928C end:0x8015CD14 + .rodata start:0x8047D088 end:0x8047D7A0 + .data start:0x804B14A0 end:0x804B1698 + .sbss start:0x80515960 end:0x80515968 + .sdata2 start:0x80518668 end:0x80518758 + +plugProjectKandoU/pikiMgr.cpp: + .text start:0x8015CD14 end:0x8016239C + .ctors start:0x80472FC0 end:0x80472FC4 + .rodata start:0x8047D7A0 end:0x8047E190 + .data start:0x804B1698 end:0x804B18A8 + .sbss start:0x80515968 end:0x80515980 + .sdata2 start:0x80518758 end:0x80518860 + +plugProjectKandoU/mapMgr.cpp: + .text start:0x8016239C end:0x80164BF0 + .ctors start:0x80472FC4 end:0x80472FC8 + .rodata start:0x8047E190 end:0x8047E2A0 + .data start:0x804B18A8 end:0x804B19F0 + .sbss start:0x80515980 end:0x80515990 + .sdata2 start:0x80518860 end:0x805188D8 + +plugProjectKandoU/baseHIOSection.cpp: + .text start:0x80164BF0 end:0x80165088 + .ctors start:0x80472FC8 end:0x80472FCC + .rodata start:0x8047E2A0 end:0x8047E318 + .data start:0x804B19F0 end:0x804B1A60 + .sbss start:0x80515990 end:0x80515998 + .sdata2 start:0x805188D8 end:0x805188E0 + +plugProjectKandoU/naviWhistle.cpp: + .text start:0x80165088 end:0x801658EC + .sdata2 start:0x805188E0 end:0x80518910 + +plugProjectKandoU/pelletMgr.cpp: + .text start:0x801658EC end:0x80172520 + .ctors start:0x80472FCC end:0x80472FD0 + .rodata start:0x8047E318 end:0x8047E548 + .data start:0x804B1A60 end:0x804B2300 + .sdata start:0x80514AA0 end:0x80514AA8 + .sbss start:0x80515998 end:0x805159A8 + .sdata2 start:0x80518910 end:0x80518A00 + +plugProjectKandoU/routeMgr.cpp: + .text start:0x80172520 end:0x80174CA0 + .rodata start:0x8047E548 end:0x8047E620 + .data start:0x804B2300 end:0x804B2420 + .sdata2 start:0x80518A00 end:0x80518A28 + +plugProjectKandoU/onyonMgr.cpp: + .text start:0x80174CA0 end:0x8017D3F8 + .ctors start:0x80472FD0 end:0x80472FD4 + .rodata start:0x8047E620 end:0x8047EA80 + .data start:0x804B2420 end:0x804B2C88 + .sbss start:0x805159A8 end:0x805159B8 + .sdata2 start:0x80518A28 end:0x80518B60 + .sbss2 start:0x80520E60 end:0x80520E68 + +plugProjectKandoU/objectTypes.cpp: + .text start:0x8017D3F8 end:0x8017D44C + .rodata start:0x8047EA80 end:0x8047EAC8 + .data start:0x804B2C88 end:0x804B2D40 + .sdata2 start:0x80518B60 end:0x80518BE0 + +plugProjectKandoU/naviState.cpp: + .text start:0x8017D44C end:0x80189378 + .ctors start:0x80472FD4 end:0x80472FD8 + .rodata start:0x8047EAC8 end:0x8047EBE8 + .data start:0x804B2D40 end:0x804B37D0 + .sbss start:0x805159B8 end:0x805159C0 + .sdata2 start:0x80518BE0 end:0x80518D00 + +plugProjectKandoU/pikiState.cpp: + .text start:0x80189378 end:0x80192C84 + .ctors start:0x80472FD8 end:0x80472FDC + .rodata start:0x8047EBE8 end:0x8047EE90 + .data start:0x804B37D0 end:0x804B47D0 + .sbss start:0x805159C0 end:0x805159C8 + .sdata2 start:0x80518D00 end:0x80518EB0 + +plugProjectKandoU/interactPiki.cpp: + .text start:0x80192C84 end:0x80194FF4 + .ctors start:0x80472FDC end:0x80472FE0 + .rodata start:0x8047EE90 end:0x8047EFA8 + .data start:0x804B47D0 end:0x804B4A08 + .sbss start:0x805159C8 end:0x805159D0 + .sdata2 start:0x80518EB0 end:0x80518EF0 + +plugProjectKandoU/gameCPlate.cpp: + .text start:0x80194FF4 end:0x80196670 + .rodata start:0x8047EFA8 end:0x8047F048 + .data start:0x804B4A08 end:0x804B4A60 + .sdata2 start:0x80518EF0 end:0x80518F48 + +plugProjectKandoU/updateMgr.cpp: + .text start:0x80196670 end:0x80196A18 + .rodata start:0x8047F048 end:0x8047F070 + .sbss start:0x805159D0 end:0x805159D8 + +plugProjectKandoU/aiAction.cpp: + .text start:0x80196A18 end:0x801972DC + .ctors start:0x80472FE0 end:0x80472FE4 + .data start:0x804B4A60 end:0x804B4AA8 + .sbss start:0x805159D8 end:0x805159E0 + .sdata2 start:0x80518F48 end:0x80518F60 + +plugProjectKandoU/aiPrimitives.cpp: + .text start:0x801972DC end:0x8019CD70 + .ctors start:0x80472FE4 end:0x80472FE8 + .rodata start:0x8047F070 end:0x8047F168 + .data start:0x804B4AA8 end:0x804B4CF0 + .sbss start:0x805159E0 end:0x805159E8 + .sdata2 start:0x80518F60 end:0x80518FE8 + +plugProjectKandoU/aiFormation.cpp: + .text start:0x8019CD70 end:0x8019EE94 + .ctors start:0x80472FE8 end:0x80472FEC + .rodata start:0x8047F168 end:0x8047F218 + .data start:0x804B4CF0 end:0x804B4D68 + .sdata start:0x80514AA8 end:0x80514AB0 + .sbss start:0x805159E8 end:0x805159F0 + .sdata2 start:0x80518FE8 end:0x80519040 + +plugProjectKandoU/creatureStick.cpp: + .text start:0x8019EE94 end:0x8019FE78 + .rodata start:0x8047F218 end:0x8047F260 + .data start:0x804B4D68 end:0x804B4D98 + .sdata start:0x80514AB0 end:0x80514AB8 + .sbss start:0x805159F0 end:0x80515A00 + .sdata2 start:0x80519040 end:0x80519058 + +plugProjectKandoU/interactBattle.cpp: + .text start:0x8019FE78 end:0x8019FF38 + .data start:0x804B4D98 end:0x804B4E28 + +plugProjectKandoU/aiFree.cpp: + .text start:0x8019FF38 end:0x801A04CC + .rodata start:0x8047F260 end:0x8047F2A0 + .data start:0x804B4E28 end:0x804B4E80 + .sdata2 start:0x80519058 end:0x80519078 + +plugProjectKandoU/aiAttack.cpp: + .text start:0x801A04CC end:0x801A1914 + .rodata start:0x8047F2A0 end:0x8047F338 + .data start:0x804B4E80 end:0x804B4F00 + .sdata2 start:0x80519078 end:0x805190D0 + +plugProjectKandoU/aiTransport.cpp: + .text start:0x801A1914 end:0x801A2720 + .rodata start:0x8047F338 end:0x8047F3C0 + .data start:0x804B4F00 end:0x804B4F68 + .sdata2 start:0x805190D0 end:0x80519110 + +plugProjectKandoU/aiEnter.cpp: + .text start:0x801A2720 end:0x801A35EC + .rodata start:0x8047F3C0 end:0x8047F400 + .data start:0x804B4F68 end:0x804B5008 + .sdata2 start:0x80519110 end:0x80519178 + +plugProjectKandoU/pathfinder.cpp: + .text start:0x801A35EC end:0x801A4310 + .rodata start:0x8047F400 end:0x8047F490 + .sbss start:0x80515A00 end:0x80515A08 + .sdata2 start:0x80519178 end:0x80519188 + +plugProjectKandoU/pelletState.cpp: + .text start:0x801A4310 end:0x801A7F3C + .ctors start:0x80472FEC end:0x80472FF0 + .rodata start:0x8047F490 end:0x8047F630 + .data start:0x804B5008 end:0x804B5218 + .sbss start:0x80515A08 end:0x80515A10 + .sdata2 start:0x80519188 end:0x80519238 + +plugProjectKandoU/dynCreature.cpp: + .text start:0x801A7F3C end:0x801AA6E4 + .rodata start:0x8047F630 end:0x8047F668 + .data start:0x804B5218 end:0x804B55F0 + .sbss start:0x80515A10 end:0x80515A18 + .sdata2 start:0x80519238 end:0x80519258 + +plugProjectKandoU/gameGenerator.cpp: + .text start:0x801AA6E4 end:0x801AC3C0 + .ctors start:0x80472FF0 end:0x80472FF4 + .rodata start:0x8047F668 end:0x8047F788 + .data start:0x804B55F0 end:0x804B56A8 + .sdata start:0x80514AB8 end:0x80514AC0 + .sbss start:0x80515A18 end:0x80515A40 + .sdata2 start:0x80519258 end:0x80519278 + +plugProjectKandoU/genPiki.cpp: + .text start:0x801AC3C0 end:0x801ACA08 + .ctors start:0x80472FF4 end:0x80472FF8 + .rodata start:0x8047F788 end:0x8047F7D8 + .data start:0x804B56A8 end:0x804B56F8 + .sbss start:0x80515A40 end:0x80515A48 + .sdata2 start:0x80519278 end:0x805192A8 + +plugProjectKandoU/genNavi.cpp: + .text start:0x801ACA08 end:0x801ACD20 + .rodata start:0x8047F7D8 end:0x8047F810 + .data start:0x804B56F8 end:0x804B5738 + .sdata2 start:0x805192A8 end:0x805192B8 + +plugProjectKandoU/genItem.cpp: + .text start:0x801ACD20 end:0x801AD378 + .rodata start:0x8047F810 end:0x8047F8A8 + .data start:0x804B5738 end:0x804B5778 + .sdata2 start:0x805192B8 end:0x805192C8 + +plugProjectKandoU/gameStages.cpp: + .text start:0x801AD378 end:0x801AE448 + .rodata start:0x8047F8A8 end:0x8047F958 + .data start:0x804B5778 end:0x804B57A8 + .sbss start:0x80515A48 end:0x80515A50 + .sdata2 start:0x805192C8 end:0x80519320 + +plugProjectKandoU/gameSeaMgr.cpp: + .text start:0x801AE448 end:0x801B07C0 + .ctors start:0x80472FF8 end:0x80472FFC + .rodata start:0x8047F958 end:0x8047FA28 + .data start:0x804B57A8 end:0x804B5A00 + .sbss start:0x80515A50 end:0x80515A58 + .sdata2 start:0x80519320 end:0x80519348 + +plugProjectKandoU/pikiAI.cpp: + .text start:0x801B07C0 end:0x801B3EEC + .ctors start:0x80472FFC end:0x80473000 + .rodata start:0x8047FA28 end:0x8047FAA8 + .data start:0x804B5A00 end:0x804B5A98 + .sdata start:0x80514AC0 end:0x80514AC8 + .sbss start:0x80515A58 end:0x80515A60 + .sdata2 start:0x80519348 end:0x80519370 + +plugProjectKandoU/pelletConfig.cpp: + .text start:0x801B3EEC end:0x801B4794 + .rodata start:0x8047FAA8 end:0x8047FBB8 + .data start:0x804B5A98 end:0x804B5B50 + .sdata2 start:0x80519370 end:0x80519418 + +plugProjectKandoU/gameFootmark.cpp: + .text start:0x801B4794 end:0x801B4A80 + .sdata2 start:0x80519418 end:0x80519428 + +plugProjectKandoU/gameSystem.cpp: + .text start:0x801B4A80 end:0x801B62B0 + .ctors start:0x80473000 end:0x80473004 + .rodata start:0x8047FBB8 end:0x8047FC28 + .data start:0x804B5B50 end:0x804B5C10 + .sbss start:0x80515A60 end:0x80515A70 + +plugProjectKandoU/aiConstants.cpp: + .text start:0x801B62B0 end:0x801B6468 + .rodata start:0x8047FC28 end:0x8047FC70 + .data start:0x804B5C10 end:0x804B5C20 + .sbss start:0x80515A70 end:0x80515A78 + .sdata2 start:0x80519428 end:0x80519440 + +plugProjectKandoU/gameMapParts.cpp: + .text start:0x801B6468 end:0x801C0DF8 + .ctors start:0x80473004 end:0x80473008 + .rodata start:0x8047FC70 end:0x8047FF98 + .data start:0x804B5C20 end:0x804B60E8 + .sbss start:0x80515A78 end:0x80515A88 + .sdata2 start:0x80519440 end:0x805194A8 + +plugProjectKandoU/vsGameSection.cpp: + .text start:0x801C0DF8 end:0x801C4BD4 + .ctors start:0x80473008 end:0x8047300C + .rodata start:0x8047FF98 end:0x80480168 + .data start:0x804B60E8 end:0x804B6338 + .sbss start:0x80515A88 end:0x80515AA0 + .sdata2 start:0x805194A8 end:0x80519588 + .sbss2 start:0x80520E68 end:0x80520E80 + +plugProjectKandoU/gamePlatMgr.cpp: + .text start:0x801C4BD4 end:0x801C7604 + .rodata start:0x80480168 end:0x80480188 + .data start:0x804B6338 end:0x804B6558 + .sdata start:0x80514AC8 end:0x80514AD0 + .sbss start:0x80515AA0 end:0x80515AA8 + .sdata2 start:0x80519588 end:0x80519590 + +plugProjectKandoU/itemGate.cpp: + .text start:0x801C7604 end:0x801CBFE8 + .ctors start:0x8047300C end:0x80473010 + .rodata start:0x80480188 end:0x80480390 + .data start:0x804B6558 end:0x804B70F8 + .sbss start:0x80515AA8 end:0x80515AB8 + .sdata2 start:0x80519590 end:0x80519618 + +plugProjectKandoU/itemMgr.cpp: + .text start:0x801CBFE8 end:0x801D04E8 + .rodata start:0x80480390 end:0x80480460 + .data start:0x804B70F8 end:0x804B7908 + .sbss start:0x80515AB8 end:0x80515AC0 + .sdata2 start:0x80519618 end:0x80519630 + +plugProjectKandoU/aiBreakGate.cpp: + .text start:0x801D04E8 end:0x801D0DB8 + .rodata start:0x80480460 end:0x80480500 + .data start:0x804B7908 end:0x804B7960 + .sdata2 start:0x80519630 end:0x80519638 + +plugProjectKandoU/gameStat.cpp: + .text start:0x801D0DB8 end:0x801D1738 + .ctors start:0x80473010 end:0x80473014 + .rodata start:0x80480500 end:0x80480520 + .data start:0x804B7960 end:0x804B7970 + .bss start:0x805122EC end:0x8051264C align:4 common + +plugProjectKandoU/itemHole.cpp: + .text start:0x801D1738 end:0x801D2D6C + .ctors start:0x80473014 end:0x80473018 + .rodata start:0x80480520 end:0x804805B0 + .data start:0x804B7970 end:0x804B7E30 + .sbss start:0x80515AC0 end:0x80515AD0 + .sdata2 start:0x80519638 end:0x80519680 + +plugProjectKandoU/itemHoney.cpp: + .text start:0x801D2D6C end:0x801D60A4 + .rodata start:0x804805B0 end:0x80480640 + .data start:0x804B7E30 end:0x804B8558 + .sbss start:0x80515AD0 end:0x80515AD8 + .sdata2 start:0x80519680 end:0x805196C0 + +plugProjectKandoU/gameCaveInfo.cpp: + .text start:0x801D60A4 end:0x801D7808 + .rodata start:0x80480640 end:0x804807C8 + .data start:0x804B8558 end:0x804B8610 + .sdata start:0x80514AD0 end:0x80514AD8 + .sdata2 start:0x805196C0 end:0x80519750 + +plugProjectKandoU/creatureLOD.cpp: + .text start:0x801D7808 end:0x801D7E64 + .ctors start:0x80473018 end:0x8047301C + .rodata start:0x804807C8 end:0x80480800 + .data start:0x804B8610 end:0x804B8620 + .sbss start:0x80515AD8 end:0x80515AE8 + .sdata2 start:0x80519750 end:0x80519788 + +plugProjectKandoU/interactNavi.cpp: + .text start:0x801D7E64 end:0x801D8ABC + .data start:0x804B8620 end:0x804B8668 + .sdata2 start:0x80519788 end:0x805197B0 + +plugProjectKandoU/itemPikihead.cpp: + .text start:0x801D8ABC end:0x801DCE28 + .ctors start:0x8047301C end:0x80473020 + .rodata start:0x80480800 end:0x804808F0 + .data start:0x804B8668 end:0x804B9010 + .sbss start:0x80515AE8 end:0x80515AF8 + .sdata2 start:0x805197B0 end:0x80519800 + +plugProjectKandoU/itemPlant.cpp: + .text start:0x801DCE28 end:0x801E0E84 + .rodata start:0x804808F0 end:0x80480B10 + .data start:0x804B9010 end:0x804B99A8 + .sbss start:0x80515AF8 end:0x80515B00 + .sdata2 start:0x80519800 end:0x805198C8 + +plugProjectKandoU/itemRock.cpp: + .text start:0x801E0E84 end:0x801E36A0 + .rodata start:0x80480B10 end:0x80480CA0 + .data start:0x804B99A8 end:0x804BA2C0 + .sbss start:0x80515B00 end:0x80515B08 + .sdata2 start:0x805198C8 end:0x80519940 + +plugProjectKandoU/aiBreakRock.cpp: + .text start:0x801E36A0 end:0x801E3E50 + .rodata start:0x80480CA0 end:0x80480D40 + .data start:0x804BA2C0 end:0x804BA310 + +plugProjectKandoU/aiCrop.cpp: + .text start:0x801E3E50 end:0x801E4B98 + .rodata start:0x80480D40 end:0x80480DB0 + .data start:0x804BA310 end:0x804BA360 + .sdata2 start:0x80519940 end:0x80519990 + +plugProjectKandoU/registItem.cpp: + .text start:0x801E4B98 end:0x801E5354 + .ctors start:0x80473020 end:0x80473024 + .rodata start:0x80480DB0 end:0x80480E40 + .data start:0x804BA360 end:0x804BA370 + .sbss start:0x80515B08 end:0x80515B10 + .sdata2 start:0x80519990 end:0x805199D0 + +plugProjectKandoU/gamePlayData.cpp: + .text start:0x801E5354 end:0x801E9FB8 + .rodata start:0x80480E40 end:0x80480F98 + .data start:0x804BA370 end:0x804BA3A0 + .sbss start:0x80515B10 end:0x80515B18 + .sdata2 start:0x805199D0 end:0x805199E0 + +plugProjectKandoU/itemCave.cpp: + .text start:0x801E9FB8 end:0x801EC188 + .ctors start:0x80473024 end:0x80473028 + .rodata start:0x80480F98 end:0x804810A0 + .data start:0x804BA3A0 end:0x804BAA08 + .sbss start:0x80515B18 end:0x80515B28 + .sdata2 start:0x805199E0 end:0x80519A98 + +plugProjectKandoU/itemBigFountain.cpp: + .text start:0x801EC188 end:0x801EDF74 + .ctors start:0x80473028 end:0x8047302C + .rodata start:0x804810A0 end:0x80481228 + .data start:0x804BAA08 end:0x804BB370 + .sbss start:0x80515B28 end:0x80515B38 + .sdata2 start:0x80519A98 end:0x80519B10 + +plugProjectKandoU/itemBridge.cpp: + .text start:0x801EDF74 end:0x801F1240 + .rodata start:0x80481228 end:0x80481428 + .data start:0x804BB370 end:0x804BBBF8 + .sbss start:0x80515B38 end:0x80515B40 + .sdata2 start:0x80519B10 end:0x80519BC0 + +plugProjectKandoU/pikiContainer.cpp: + .text start:0x801F1240 end:0x801F1908 + .rodata start:0x80481428 end:0x80481480 + .data start:0x804BBBF8 end:0x804BBC08 + +plugProjectKandoU/gameGeneratorCache.cpp: + .text start:0x801F1908 end:0x801F316C + .rodata start:0x80481480 end:0x804816B8 + .data start:0x804BBC08 end:0x804BBC18 + .sbss start:0x80515B40 end:0x80515B48 + .sdata2 start:0x80519BC0 end:0x80519BD0 + +plugProjectKandoU/itemTreasure.cpp: + .text start:0x801F316C end:0x801F4CDC + .ctors start:0x8047302C end:0x80473030 + .rodata start:0x804816B8 end:0x80481800 + .data start:0x804BBC18 end:0x804BC480 + .sbss start:0x80515B48 end:0x80515B58 + .sdata2 start:0x80519BD0 end:0x80519C38 + +plugProjectKandoU/itemDownFloor.cpp: + .text start:0x801F4CDC end:0x801F78C8 + .ctors start:0x80473030 end:0x80473034 + .rodata start:0x80481800 end:0x804819C8 + .data start:0x804BC480 end:0x804BCCA8 + .sbss start:0x80515B58 end:0x80515B68 + .sdata2 start:0x80519C38 end:0x80519C80 + +plugProjectKandoU/kandoLib.cpp: + .text start:0x801F78C8 end:0x801F7970 + .sdata2 start:0x80519C80 end:0x80519C90 + +plugProjectKandoU/itemBarrel.cpp: + .text start:0x801F7970 end:0x801F90D4 + .ctors start:0x80473034 end:0x80473038 + .rodata start:0x804819C8 end:0x80481AE0 + .data start:0x804BCCA8 end:0x804BD570 + .sbss start:0x80515B68 end:0x80515B78 + .sdata2 start:0x80519C90 end:0x80519CE0 + +plugProjectKandoU/pelletNumber.cpp: + .text start:0x801F90D4 end:0x801FB8CC + .rodata start:0x80481AE0 end:0x80481B40 + .data start:0x804BD570 end:0x804BDAD0 + .sbss start:0x80515B78 end:0x80515B80 + .sdata2 start:0x80519CE0 end:0x80519CF8 + +plugProjectKandoU/pelletCarcass.cpp: + .text start:0x801FB8CC end:0x801FD9B8 + .data start:0x804BDAD0 end:0x804BDFD0 + .sbss start:0x80515B80 end:0x80515B88 + .sdata2 start:0x80519CF8 end:0x80519D08 + +plugProjectKandoU/pelletFruit.cpp: + .text start:0x801FD9B8 end:0x801FFE64 + .ctors start:0x80473038 end:0x8047303C + .rodata start:0x80481B40 end:0x80481B50 + .data start:0x804BDFD0 end:0x804BE4E0 + .sbss start:0x80515B88 end:0x80515B98 + .sdata2 start:0x80519D08 end:0x80519D18 + +plugProjectKandoU/pelletOtakara.cpp: + .text start:0x801FFE64 end:0x8020278C + .ctors start:0x8047303C end:0x80473040 + .rodata start:0x80481B50 end:0x80481B98 + .data start:0x804BE4E0 end:0x804BE9D8 + .sbss start:0x80515B98 end:0x80515BA8 + .sdata2 start:0x80519D18 end:0x80519D40 + +plugProjectKandoU/genPellet.cpp: + .text start:0x8020278C end:0x80202E14 + .rodata start:0x80481B98 end:0x80481C50 + .data start:0x804BE9D8 end:0x804BEA18 + .sdata2 start:0x80519D40 end:0x80519D50 + +plugProjectKandoU/pelletItem.cpp: + .text start:0x80202E14 end:0x8020508C + .rodata start:0x80481C50 end:0x80481C88 + .data start:0x804BEA18 end:0x804BEF00 + .sbss start:0x80515BA8 end:0x80515BB0 + .sdata2 start:0x80519D50 end:0x80519D60 + +plugProjectKandoU/mapMgrTraceMove.cpp: + .text start:0x8020508C end:0x802055A4 + .ctors start:0x80473040 end:0x80473044 + .data start:0x804BEF00 end:0x804BEF10 + .sdata start:0x80514AD8 end:0x80514AE0 + .sbss start:0x80515BB0 end:0x80515BB8 + .sdata2 start:0x80519D60 end:0x80519D70 + +plugProjectKandoU/efxModelObjects.cpp: + .text start:0x802055A4 end:0x80205A28 + .rodata start:0x80481C88 end:0x80481D40 + .data start:0x804BEF10 end:0x804BEF60 + .sdata2 start:0x80519D70 end:0x80519D90 + +plugProjectKandoU/itemUjamushi.cpp: + .text start:0x80205A28 end:0x8020D784 + .ctors start:0x80473044 end:0x80473048 + .rodata start:0x80481D40 end:0x80481EF8 + .data start:0x804BEF60 end:0x804BFAA8 + .sbss start:0x80515BB8 end:0x80515BC8 + .sdata2 start:0x80519D90 end:0x80519EB8 + .sbss2 start:0x80520E80 end:0x80520E88 + +plugProjectKandoU/aiWeed.cpp: + .text start:0x8020D784 end:0x8020EADC + .ctors start:0x80473048 end:0x8047304C + .rodata start:0x80481EF8 end:0x80481FA0 + .data start:0x804BFAA8 end:0x804BFB60 + .sbss start:0x80515BC8 end:0x80515BD0 + .sdata2 start:0x80519EB8 end:0x80519EE8 + +plugProjectKandoU/flockMgr.cpp: + .text start:0x8020EADC end:0x8020F280 + .ctors start:0x8047304C end:0x80473050 + .rodata start:0x80481FA0 end:0x80481FC0 + .data start:0x804BFB60 end:0x804BFBA0 + .sbss start:0x80515BD0 end:0x80515BD8 + .sdata2 start:0x80519EE8 end:0x80519EF8 + +plugProjectKandoU/itemWeed.cpp: + .text start:0x8020F280 end:0x80212288 + .ctors start:0x80473050 end:0x80473054 + .rodata start:0x80481FC0 end:0x804820A8 + .data start:0x804BFBA0 end:0x804C0438 + .sbss start:0x80515BD8 end:0x80515BE8 + .sdata2 start:0x80519EF8 end:0x80519F58 + +plugProjectKandoU/aiBridge.cpp: + .text start:0x80212288 end:0x8021295C + .rodata start:0x804820A8 end:0x80482138 + .data start:0x804C0438 end:0x804C0488 + .sdata2 start:0x80519F58 end:0x80519F68 + +plugProjectKandoU/aiTeki.cpp: + .text start:0x8021295C end:0x802135AC + .rodata start:0x80482138 end:0x80482150 + .data start:0x804C0488 end:0x804C04D8 + .sdata2 start:0x80519F68 end:0x80519FA8 + +plugProjectKandoU/singleGS_MainGame.cpp: + .text start:0x802135AC end:0x80217760 + .ctors start:0x80473054 end:0x80473058 + .rodata start:0x80482150 end:0x80482430 + .data start:0x804C04D8 end:0x804C05F0 + .sbss start:0x80515BE8 end:0x80515BF0 + .sdata2 start:0x80519FA8 end:0x8051A000 + +plugProjectKandoU/singleGS_CaveGame.cpp: + .text start:0x80217760 end:0x80219F48 + .ctors start:0x80473058 end:0x8047305C + .rodata start:0x80482430 end:0x80482598 + .data start:0x804C05F0 end:0x804C0648 + .sbss start:0x80515BF0 end:0x80515BF8 + .sdata2 start:0x8051A000 end:0x8051A038 + +plugProjectKandoU/singleGS_MainResult.cpp: + .text start:0x80219F48 end:0x8021AC20 + .ctors start:0x8047305C end:0x80473060 + .rodata start:0x80482598 end:0x804825B0 + .data start:0x804C0648 end:0x804C0700 + .sbss start:0x80515BF8 end:0x80515C08 + .sdata2 start:0x8051A038 end:0x8051A048 + +plugProjectKandoU/singleGS_CaveResult.cpp: + .text start:0x8021AC20 end:0x8021B94C + .ctors start:0x80473060 end:0x80473064 + .rodata start:0x804825B0 end:0x80482658 + .data start:0x804C0700 end:0x804C0770 + .sbss start:0x80515C08 end:0x80515C10 + .sdata2 start:0x8051A048 end:0x8051A050 + +plugProjectKandoU/singleGS_WorldMap.cpp: + .text start:0x8021B94C end:0x8021C718 + .ctors start:0x80473064 end:0x80473068 + .rodata start:0x80482658 end:0x80482748 + .data start:0x804C0770 end:0x804C07E0 + .sbss start:0x80515C10 end:0x80515C20 + .sdata2 start:0x8051A050 end:0x8051A070 + +plugProjectKandoU/singleGS_FileSelect.cpp: + .text start:0x8021C718 end:0x8021CFF4 + .ctors start:0x80473068 end:0x8047306C + .rodata start:0x80482748 end:0x804827B8 + .data start:0x804C07E0 end:0x804C0850 + .sbss start:0x80515C20 end:0x80515C28 + .sdata2 start:0x8051A070 end:0x8051A078 + +plugProjectKandoU/gamePlayDataMemCard.cpp: + .text start:0x8021CFF4 end:0x8021E28C + .rodata start:0x804827B8 end:0x80482C20 + .data start:0x804C0850 end:0x804C0860 + .sdata start:0x80514AE0 end:0x80514AE8 + .sbss start:0x80515C28 end:0x80515C30 + .sdata2 start:0x8051A078 end:0x8051A090 + +plugProjectKandoU/baseHIOparms.cpp: + .sdata start:0x80514AE8 end:0x80514AF0 + +plugProjectKandoU/radarInfo.cpp: + .text start:0x8021E28C end:0x8021EED8 + .data start:0x804C0860 end:0x804C0880 + .sbss start:0x80515C30 end:0x80515C38 + .sdata2 start:0x8051A090 end:0x8051A0C0 + +plugProjectKandoU/singleGS_Movie.cpp: + .text start:0x8021EED8 end:0x8021F3D0 + .ctors start:0x8047306C end:0x80473070 + .rodata start:0x80482C20 end:0x80482D30 + .data start:0x804C0880 end:0x804C0A18 + .bss start:0x804F79C0 end:0x804F79D0 + .sbss start:0x80515C38 end:0x80515C40 + .sdata2 start:0x8051A0C0 end:0x8051A0D8 + +plugProjectKandoU/navi_demoCheck.cpp: + .text start:0x8021F3D0 end:0x80221028 + .ctors start:0x80473070 end:0x80473074 + .rodata start:0x80482D30 end:0x80482E60 + .data start:0x804C0A18 end:0x804C0A40 + .sbss start:0x80515C40 end:0x80515C48 + .sdata2 start:0x8051A0D8 end:0x8051A100 + +plugProjectKandoU/singleGS_Zukan.cpp: + .text start:0x80221028 end:0x80227418 + .ctors start:0x80473074 end:0x80473078 + .rodata start:0x80482E60 end:0x804831C8 + .data start:0x804C0A40 end:0x804C0DB8 + .sbss start:0x80515C48 end:0x80515C58 + .sdata2 start:0x8051A100 end:0x8051A230 + +plugProjectKandoU/gameResultTexMgr.cpp: + .text start:0x80227418 end:0x80227D5C + .rodata start:0x804831C8 end:0x80483320 + .data start:0x804C0DB8 end:0x804C0DD8 + .sdata2 start:0x8051A230 end:0x8051A248 + +plugProjectKandoU/gamePelletList.cpp: + .text start:0x80227D5C end:0x80228328 + .rodata start:0x80483320 end:0x80483458 + .data start:0x804C0DD8 end:0x804C0DE8 + .sbss start:0x80515C58 end:0x80515C60 + .sdata2 start:0x8051A248 end:0x8051A250 + +plugProjectKandoU/vsGS_Title.cpp: + .text start:0x80228328 end:0x802292A4 + .ctors start:0x80473078 end:0x8047307C + .rodata start:0x80483458 end:0x80483550 + .data start:0x804C0DE8 end:0x804C0F08 + .sbss start:0x80515C60 end:0x80515C68 + .sdata2 start:0x8051A250 end:0x8051A268 + +plugProjectKandoU/vsGS_Game.cpp: + .text start:0x802292A4 end:0x8022C7F4 + .ctors start:0x8047307C end:0x80473080 + .rodata start:0x80483550 end:0x80483720 + .data start:0x804C0F08 end:0x804C0FE0 + .sbss start:0x80515C68 end:0x80515C70 + .sdata2 start:0x8051A268 end:0x8051A2C0 + +plugProjectKandoU/vsGS_Result.cpp: + .text start:0x8022C7F4 end:0x8022D0E8 + .ctors start:0x80473080 end:0x80473084 + .rodata start:0x80483720 end:0x80483788 + .data start:0x804C0FE0 end:0x804C1068 + .sbss start:0x80515C70 end:0x80515C78 + .sdata2 start:0x8051A2C0 end:0x8051A2C8 + +plugProjectKandoU/vsGS_Load.cpp: + .text start:0x8022D0E8 end:0x8022D68C + .ctors start:0x80473084 end:0x80473088 + .data start:0x804C1068 end:0x804C10F0 + .sbss start:0x80515C78 end:0x80515C80 + .sdata2 start:0x8051A2C8 end:0x8051A2E0 + +plugProjectKandoU/vsStageData.cpp: + .text start:0x8022D68C end:0x8022E188 + .ctors start:0x80473088 end:0x8047308C + .rodata start:0x80483788 end:0x804837E8 + .data start:0x804C10F0 end:0x804C1140 + .sbss start:0x80515C80 end:0x80515C88 + .sdata2 start:0x8051A2E0 end:0x8051A2F0 + +plugProjectKandoU/cellMgrParms.cpp: + .text start:0x8022E188 end:0x8022E36C + .rodata start:0x804837E8 end:0x80483828 + .data start:0x804C1140 end:0x804C1158 + .sbss start:0x80515C88 end:0x80515C90 + .sdata2 start:0x8051A2F0 end:0x8051A300 + +plugProjectKandoU/cellIterator.cpp: + .text start:0x8022E36C end:0x8022EA94 + .rodata start:0x80483828 end:0x80483850 + .sdata2 start:0x8051A300 end:0x8051A320 + +plugProjectKandoU/vsGS_VSGame.cpp: + .text start:0x8022EA94 end:0x8022EBCC + .ctors start:0x8047308C end:0x80473090 + .rodata start:0x80483850 end:0x80483890 + .data start:0x804C1158 end:0x804C11B8 + .sbss start:0x80515C90 end:0x80515C98 + +plugProjectKandoU/gameSoundEvent.cpp: + .text start:0x8022EBCC end:0x8022ECB4 + +plugProjectKandoU/aiBattle.cpp: + .text start:0x8022ECB4 end:0x8022F9FC + .rodata start:0x80483890 end:0x804838F0 + .data start:0x804C11B8 end:0x804C1208 + .sdata2 start:0x8051A320 end:0x8051A368 + +plugProjectKandoU/gameDeathCount.cpp: + .text start:0x8022F9FC end:0x802312F4 + .ctors start:0x80473090 end:0x80473094 + .rodata start:0x804838F0 end:0x80483930 + .bss start:0x8051264C end:0x805127B0 align:4 common + .sbss start:0x80515C98 end:0x80515CA0 + .sdata2 start:0x8051A368 end:0x8051A370 + +plugProjectKandoU/aiBore.cpp: + .text start:0x802312F4 end:0x8023233C + .rodata start:0x80483930 end:0x804839B0 + .data start:0x804C1208 end:0x804C1340 + .sdata2 start:0x8051A370 end:0x8051A3A8 + +plugProjectKandoU/mapPartsView.cpp: + .text start:0x8023233C end:0x802326A8 + .data start:0x804C1340 end:0x804C1370 + .sdata2 start:0x8051A3A8 end:0x8051A3B0 + +plugProjectKandoU/singleGS_Ending.cpp: + .text start:0x802326A8 end:0x80233484 + .ctors start:0x80473094 end:0x80473098 + .rodata start:0x804839B0 end:0x804839F0 + .data start:0x804C1370 end:0x804C1428 + .sbss start:0x80515CA0 end:0x80515CA8 + +plugProjectKandoU/gameIconTexture.cpp: + .text start:0x80233484 end:0x8023381C + .rodata start:0x804839F0 end:0x80483A48 + .data start:0x804C1428 end:0x804C1440 + +plugProjectKandoU/gameTekiStat.cpp: + .text start:0x8023381C end:0x80233CEC + .rodata start:0x80483A48 end:0x80483A68 + +plugProjectKandoU/gameHighscore.cpp: + .text start:0x80233CEC end:0x8023410C + .rodata start:0x80483A68 end:0x80483A88 + .data start:0x804C1440 end:0x804C1450 + +plugProjectKandoU/gamePlayCommonData.cpp: + .text start:0x8023410C end:0x80234EF8 + .rodata start:0x80483A88 end:0x80483AB0 + .data start:0x804C1450 end:0x804C1460 + +plugProjectKandoU/pelletCarry.cpp: + .text start:0x80234EF8 end:0x802350A0 + .sdata2 start:0x8051A3B0 end:0x8051A3B8 + +plugProjectKandoU/gameChallenge2D.cpp: + .text start:0x802350A0 end:0x802352F0 + .rodata start:0x80483AB0 end:0x80483AD0 + .sdata2 start:0x8051A3B8 end:0x8051A3C0 + +plugProjectKandoU/vsTekiMgr.cpp: + .text start:0x802352F0 end:0x8023550C + .data start:0x804C1460 end:0x804C1470 + .sdata2 start:0x8051A3C0 end:0x8051A3D8 + +plugProjectKandoU/vsCardMgr.cpp: + .text start:0x8023550C end:0x80238EB0 + .ctors start:0x80473098 end:0x8047309C + .rodata start:0x80483AD0 end:0x80483CD0 + .data start:0x804C1470 end:0x804C1538 + .sbss start:0x80515CA8 end:0x80515CB0 + .sdata2 start:0x8051A3D8 end:0x8051A4F0 + +plugProjectKandoU/aiRescue.cpp: + .text start:0x80238EB0 end:0x802398D8 + .rodata start:0x80483CD0 end:0x80483D28 + .data start:0x804C1538 end:0x804C1590 + .sdata2 start:0x8051A4F0 end:0x8051A520 + +plugProjectKandoU/baseGameSectionDraw.cpp: + .text start:0x802398D8 end:0x80239E84 + .ctors start:0x8047309C end:0x804730A0 + .rodata start:0x80483D28 end:0x80483D50 + .data start:0x804C1590 end:0x804C15C0 + .sbss start:0x80515CB0 end:0x80515CB8 + .sdata2 start:0x8051A520 end:0x8051A538 + +plugProjectKandoU/singleGS_Load.cpp: + .text start:0x80239E84 end:0x8023A250 + .ctors start:0x804730A0 end:0x804730A4 + .rodata start:0x80483D50 end:0x80483D70 + .data start:0x804C15C0 end:0x804C1630 + .sbss start:0x80515CB8 end:0x80515CC0 + +plugProjectKandoU/singleGS_DayEnd.cpp: + .text start:0x8023A250 end:0x8023B534 + .ctors start:0x804730A4 end:0x804730A8 + .rodata start:0x80483D70 end:0x80483EA0 + .data start:0x804C1630 end:0x804C1688 + .sbss start:0x80515CC0 end:0x80515CC8 + .sdata2 start:0x8051A538 end:0x8051A578 + +plugProjectKandoU/baseGameSectionKantei.cpp: + .text start:0x8023B534 end:0x8023C5B0 + .ctors start:0x804730A8 end:0x804730AC + .data start:0x804C1688 end:0x804C1748 + .sdata start:0x80514AF0 end:0x80514AF8 + .sbss start:0x80515CC8 end:0x80515CD0 + .sdata2 start:0x8051A578 end:0x8051A5D0 + +plugProjectKandoU/sweepPrune.cpp: + .text start:0x8023C5B0 end:0x8023C95C + .sdata2 start:0x8051A5D0 end:0x8051A5D8 + +plugProjectKandoU/texCaster.cpp: + .text start:0x8023C95C end:0x8023D41C + .rodata start:0x80483EA0 end:0x80483EE8 + .data start:0x804C1748 end:0x804C1758 + .sbss start:0x80515CD0 end:0x80515CD8 + .sdata2 start:0x8051A5D8 end:0x8051A600 + +plugProjectKandoU/vsCoinOtakaraName.cpp: + .rodata start:0x80483EE8 end:0x80483F28 + .sdata start:0x80514AF8 end:0x80514B10 + +plugProjectKandoU/pelletBirthBuffer.cpp: + .text start:0x8023D41C end:0x8023D64C + .ctors start:0x804730AC end:0x804730B0 + .rodata start:0x80483F28 end:0x80483F58 + .bss start:0x805127B0 end:0x80513BB0 align:4 common + .sbss start:0x80515CD8 end:0x80515CE0 + +plugProjectKandoU/vsFifo.cpp: + .text start:0x8023D64C end:0x8023D7B0 + .data start:0x804C1758 end:0x804C1780 + .sbss start:0x80515CE0 end:0x80515CE8 + +plugProjectNishimuraU/nslibmath.cpp: + .text start:0x8023D7B0 end:0x8023DA30 + .sdata2 start:0x8051A600 end:0x8051A618 + +plugProjectNishimuraU/ShadowCylinder.cpp: + .text start:0x8023DA30 end:0x8023F3F0 + .ctors start:0x804730B0 end:0x804730B4 + .rodata start:0x80483F58 end:0x80483FD0 + .data start:0x804C1780 end:0x804C1958 + .bss start:0x804F79D0 end:0x804F7C10 + .sbss start:0x80515CE8 end:0x80515CF0 + .sdata2 start:0x8051A618 end:0x8051A660 + .sbss2 start:0x80520E88 end:0x80520E90 + +plugProjectNishimuraU/playCamera.cpp: + .text start:0x8023F3F0 end:0x8024127C + .ctors start:0x804730B4 end:0x804730B8 + .rodata start:0x80483FD0 end:0x80483FF8 + .data start:0x804C1958 end:0x804C19E8 + .sbss start:0x80515CF0 end:0x80515CF8 + .sdata2 start:0x8051A660 end:0x8051A6C0 + +plugProjectNishimuraU/shadowMgr.cpp: + .text start:0x8024127C end:0x802427A8 + .ctors start:0x804730B8 end:0x804730BC + .rodata start:0x80483FF8 end:0x80484070 + .data start:0x804C19E8 end:0x804C1A58 + .sbss start:0x80515CF8 end:0x80515D08 + .sdata2 start:0x8051A6C0 end:0x8051A6D8 + +plugProjectNishimuraU/MapUnit.cpp: + .text start:0x802427A8 end:0x80242D58 + .data start:0x804C1A58 end:0x804C1A68 + .sdata2 start:0x8051A6D8 end:0x8051A6E0 + +plugProjectNishimuraU/MapNode.cpp: + .text start:0x80242D58 end:0x802440F4 + .data start:0x804C1A68 end:0x804C1A78 + .sdata2 start:0x8051A6E0 end:0x8051A708 + +plugProjectNishimuraU/EnemyUnit.cpp: + .text start:0x802440F4 end:0x80244528 + .data start:0x804C1A78 end:0x804C1AD8 + .sdata2 start:0x8051A708 end:0x8051A728 + +plugProjectNishimuraU/RandMapMgr.cpp: + .text start:0x80244528 end:0x80245418 + .rodata start:0x80484070 end:0x80484090 + .data start:0x804C1AD8 end:0x804C1AF8 + .sbss start:0x80515D08 end:0x80515D10 + .sdata2 start:0x8051A728 end:0x8051A750 + +plugProjectNishimuraU/RandMapDraw.cpp: + .text start:0x80245418 end:0x80245664 + .sdata2 start:0x8051A750 end:0x8051A760 + +plugProjectNishimuraU/RandMapChecker.cpp: + .text start:0x80245664 end:0x80245C5C + +plugProjectNishimuraU/RandMapUnit.cpp: + .text start:0x80245C5C end:0x80248914 + .rodata start:0x80484090 end:0x804840C0 + .sdata2 start:0x8051A760 end:0x8051A788 + +plugProjectNishimuraU/RandEnemyUnit.cpp: + .text start:0x80248914 end:0x8024B874 + .rodata start:0x804840C0 end:0x804840F8 + .sdata2 start:0x8051A788 end:0x8051A7D8 + .sbss2 start:0x80520E90 end:0x80520EA8 + +plugProjectNishimuraU/DoorNode.cpp: + .text start:0x8024B874 end:0x8024BAAC + .data start:0x804C1AF8 end:0x804C1B08 + +plugProjectNishimuraU/MapUnitGenerator.cpp: + .text start:0x8024BAAC end:0x8024C5E4 + .ctors start:0x804730BC end:0x804730C0 + .data start:0x804C1B08 end:0x804C1B18 + .sbss start:0x80515D10 end:0x80515D18 + .sdata2 start:0x8051A7D8 end:0x8051A7F0 + +plugProjectNishimuraU/MapCreator.cpp: + .text start:0x8024C5E4 end:0x8024C878 + .sdata2 start:0x8051A7F0 end:0x8051A7F8 + +plugProjectNishimuraU/RandMapScore.cpp: + .text start:0x8024C878 end:0x8024E170 + .rodata start:0x804840F8 end:0x80484128 + .data start:0x804C1B18 end:0x804C1B48 + .sdata2 start:0x8051A7F8 end:0x8051A838 + .sbss2 start:0x80520EA8 end:0x80520EB8 + +plugProjectNishimuraU/ItemUnit.cpp: + .text start:0x8024E170 end:0x8024E38C + .data start:0x804C1B48 end:0x804C1B78 + .sdata2 start:0x8051A838 end:0x8051A840 + +plugProjectNishimuraU/RandItemUnit.cpp: + .text start:0x8024E38C end:0x8024FCC8 + .rodata start:0x80484128 end:0x80484190 + .sdata2 start:0x8051A840 end:0x8051A868 + +plugProjectNishimuraU/GateUnit.cpp: + .text start:0x8024FCC8 end:0x8024FE70 + .data start:0x804C1B78 end:0x804C1BA8 + .sdata2 start:0x8051A868 end:0x8051A878 + +plugProjectNishimuraU/RandGateUnit.cpp: + .text start:0x8024FE70 end:0x80250824 + .sdata2 start:0x8051A878 end:0x8051A898 + +plugProjectNishimuraU/ObjectLayout.cpp: + .text start:0x80250824 end:0x80250988 + .data start:0x804C1BA8 end:0x804C1BC8 + +plugProjectNishimuraU/CameraMgr.cpp: + .text start:0x80250988 end:0x80252B20 + .ctors start:0x804730C0 end:0x804730C4 + .rodata start:0x80484190 end:0x80484850 + .data start:0x804C1BC8 end:0x804C1BE8 + .sbss start:0x80515D18 end:0x80515D28 + .sdata2 start:0x8051A898 end:0x8051A968 + +plugProjectNishimuraU/ContRumble.cpp: + .text start:0x80252B20 end:0x80253304 + .rodata start:0x80484850 end:0x80484868 + .data start:0x804C1BE8 end:0x804C1BF8 + .sdata2 start:0x8051A968 end:0x8051A978 + +plugProjectNishimuraU/RumbleMgr.cpp: + .text start:0x80253304 end:0x80253E18 + .rodata start:0x80484868 end:0x80484940 + .data start:0x804C1BF8 end:0x804C1C08 + .sbss start:0x80515D28 end:0x80515D30 + .sdata2 start:0x8051A978 end:0x8051A990 + +plugProjectNishimuraU/PomAnimator.cpp: + .text start:0x80253E18 end:0x80253E8C + .data start:0x804C1C08 end:0x804C1C30 + +plugProjectNishimuraU/PomMgr.cpp: + .text start:0x80253E8C end:0x802547A4 + .ctors start:0x804730C4 end:0x804730C8 + .rodata start:0x80484940 end:0x80484CD8 + .data start:0x804C1C30 end:0x804C1D28 + .sbss start:0x80515D30 end:0x80515D38 + .sdata2 start:0x8051A990 end:0x8051A9A8 + +plugProjectNishimuraU/Pom.cpp: + .text start:0x802547A4 end:0x80255CA4 + .rodata start:0x80484CD8 end:0x80484D08 + .data start:0x804C1D28 end:0x804C2068 + .sdata2 start:0x8051A9A8 end:0x8051A9F0 + +plugProjectNishimuraU/PomState.cpp: + .text start:0x80255CA4 end:0x802563C4 + .data start:0x804C2068 end:0x804C2188 + .sdata2 start:0x8051A9F0 end:0x8051AA28 + +plugProjectNishimuraU/FrogState.cpp: + .text start:0x802563C4 end:0x802580AC + .rodata start:0x80484D08 end:0x80484D20 + .data start:0x804C2188 end:0x804C2338 + .sdata2 start:0x8051AA28 end:0x8051AAA0 + +plugProjectNishimuraU/FrogAnimator.cpp: + .text start:0x802580AC end:0x80258120 + .data start:0x804C2338 end:0x804C2360 + +plugProjectNishimuraU/FrogMgr.cpp: + .text start:0x80258120 end:0x80258548 + .rodata start:0x80484D20 end:0x80485050 + .data start:0x804C2360 end:0x804C2450 + .sdata2 start:0x8051AAA0 end:0x8051AAC8 + +plugProjectNishimuraU/Frog.cpp: + .text start:0x80258548 end:0x8025979C + .ctors start:0x804730C8 end:0x804730CC + .data start:0x804C2450 end:0x804C2808 + .sbss start:0x80515D38 end:0x80515D40 + .sdata2 start:0x8051AAC8 end:0x8051AB18 + +plugProjectNishimuraU/UjibMgr.cpp: + .text start:0x8025979C end:0x80259B4C + .rodata start:0x80485050 end:0x80485358 + .data start:0x804C2808 end:0x804C28F8 + .sdata2 start:0x8051AB18 end:0x8051AB30 + +plugProjectNishimuraU/Ujib.cpp: + .text start:0x80259B4C end:0x8025B1A8 + .rodata start:0x80485358 end:0x80485368 + .data start:0x804C28F8 end:0x804C2C78 + .sdata2 start:0x8051AB30 end:0x8051AB98 + +plugProjectNishimuraU/UjibState.cpp: + .text start:0x8025B1A8 end:0x8025CCD4 + .rodata start:0x80485368 end:0x80485380 + .data start:0x804C2C78 end:0x804C2E98 + .sdata2 start:0x8051AB98 end:0x8051ABF8 + +plugProjectNishimuraU/UjibAnimator.cpp: + .text start:0x8025CCD4 end:0x8025CD48 + .data start:0x804C2E98 end:0x804C2EC0 + +plugProjectNishimuraU/KoganeState.cpp: + .text start:0x8025CD48 end:0x8025D898 + .rodata start:0x80485380 end:0x80485390 + .data start:0x804C2EC0 end:0x804C2FC0 + .sdata2 start:0x8051ABF8 end:0x8051AC20 + +plugProjectNishimuraU/KoganeMgr.cpp: + .text start:0x8025D898 end:0x8025DC8C + .rodata start:0x80485390 end:0x804853D8 + .data start:0x804C2FC0 end:0x804C30A8 + .sdata2 start:0x8051AC20 end:0x8051AC28 + +plugProjectNishimuraU/Kogane.cpp: + .text start:0x8025DC8C end:0x8025F020 + .rodata start:0x804853D8 end:0x804853E8 + .data start:0x804C30A8 end:0x804C33F8 + .sdata2 start:0x8051AC28 end:0x8051AC88 + +plugProjectNishimuraU/KoganeAnimator.cpp: + .text start:0x8025F020 end:0x8025F094 + .data start:0x804C33F8 end:0x804C3420 + +plugProjectNishimuraU/QurioneState.cpp: + .text start:0x8025F094 end:0x8025FA8C + .rodata start:0x804853E8 end:0x804853F8 + .data start:0x804C3420 end:0x804C3540 + .sdata2 start:0x8051AC88 end:0x8051ACC0 + +plugProjectNishimuraU/QurioneMgr.cpp: + .text start:0x8025FA8C end:0x80260178 + .rodata start:0x804853F8 end:0x80485760 + .data start:0x804C3540 end:0x804C3650 + .sdata2 start:0x8051ACC0 end:0x8051ACF0 + +plugProjectNishimuraU/Qurione.cpp: + .text start:0x80260178 end:0x8026134C + .rodata start:0x80485760 end:0x80485770 + .data start:0x804C3650 end:0x804C3A78 + .sdata2 start:0x8051ACF0 end:0x8051AD40 + +plugProjectNishimuraU/QurioneAnimator.cpp: + .text start:0x8026134C end:0x802613C0 + .data start:0x804C3A78 end:0x804C3AA0 + +plugProjectNishimuraU/RumbleData.cpp: + .text start:0x802613C0 end:0x8026152C + +plugProjectNishimuraU/MaroFrogMgr.cpp: + .text start:0x8026152C end:0x802617E0 + .rodata start:0x80485770 end:0x80485788 + .data start:0x804C3AA0 end:0x804C3B80 + +plugProjectNishimuraU/MaroFrog.cpp: + .text start:0x802617E0 end:0x80261D8C + .data start:0x804C3B80 end:0x804C3EB8 + .sdata2 start:0x8051AD40 end:0x8051AD48 + +plugProjectNishimuraU/RockState.cpp: + .text start:0x80261D8C end:0x8026287C + .ctors start:0x804730CC end:0x804730D0 + .rodata start:0x80485788 end:0x80485798 + .data start:0x804C3EB8 end:0x804C3FE8 + .sbss start:0x80515D40 end:0x80515D48 + .sdata2 start:0x8051AD48 end:0x8051AD80 + +plugProjectNishimuraU/RockAnimator.cpp: + .text start:0x8026287C end:0x802628F0 + .data start:0x804C3FE8 end:0x804C4010 + +plugProjectNishimuraU/RockMgr.cpp: + .text start:0x802628F0 end:0x80262FF0 + .rodata start:0x80485798 end:0x80485AD8 + .data start:0x804C4010 end:0x804C4120 + .sdata2 start:0x8051AD80 end:0x8051ADA0 + +plugProjectNishimuraU/Rock.cpp: + .text start:0x80262FF0 end:0x80264720 + .data start:0x804C4120 end:0x804C4560 + .sdata2 start:0x8051ADA0 end:0x8051AE08 + +plugProjectNishimuraU/UjiaState.cpp: + .text start:0x80264720 end:0x80265CA0 + .rodata start:0x80485AD8 end:0x80485AF0 + .data start:0x804C4560 end:0x804C4738 + .sdata2 start:0x8051AE08 end:0x8051AE60 + +plugProjectNishimuraU/UjiaAnimator.cpp: + .text start:0x80265CA0 end:0x80265D14 + .data start:0x804C4738 end:0x804C4760 + +plugProjectNishimuraU/UjiaMgr.cpp: + .text start:0x80265D14 end:0x80266080 + .rodata start:0x80485AF0 end:0x80485B28 + .data start:0x804C4760 end:0x804C4850 + .sdata2 start:0x8051AE60 end:0x8051AE70 + +plugProjectNishimuraU/Ujia.cpp: + .text start:0x80266080 end:0x8026759C + .rodata start:0x80485B28 end:0x80485B38 + .data start:0x804C4850 end:0x804C4B80 + .sdata2 start:0x8051AE70 end:0x8051AED8 + +plugProjectNishimuraU/TobiState.cpp: + .text start:0x8026759C end:0x802693D4 + .rodata start:0x80485B38 end:0x80485B50 + .data start:0x804C4B80 end:0x804C4DC0 + .sdata2 start:0x8051AED8 end:0x8051AF40 + +plugProjectNishimuraU/TobiAnimator.cpp: + .text start:0x802693D4 end:0x80269448 + .data start:0x804C4DC0 end:0x804C4DE8 + +plugProjectNishimuraU/TobiMgr.cpp: + .text start:0x80269448 end:0x802698AC + .rodata start:0x80485B50 end:0x80485E80 + .data start:0x804C4DE8 end:0x804C4ED8 + .sdata2 start:0x8051AF40 end:0x8051AF68 + +plugProjectNishimuraU/Tobi.cpp: + .text start:0x802698AC end:0x8026B354 + .rodata start:0x80485E80 end:0x80485E90 + .data start:0x804C4ED8 end:0x804C5208 + .sdata2 start:0x8051AF68 end:0x8051AFE0 + +plugProjectNishimuraU/HibaState.cpp: + .text start:0x8026B354 end:0x8026B848 + .data start:0x804C5208 end:0x804C52C0 + .sdata2 start:0x8051AFE0 end:0x8051B000 + +plugProjectNishimuraU/HibaAnimator.cpp: + .text start:0x8026B848 end:0x8026B8BC + .data start:0x804C52C0 end:0x804C52E8 + +plugProjectNishimuraU/HibaMgr.cpp: + .text start:0x8026B8BC end:0x8026BE8C + .rodata start:0x80485E90 end:0x804861B8 + .data start:0x804C52E8 end:0x804C54B8 + .sdata2 start:0x8051B000 end:0x8051B020 + +plugProjectNishimuraU/Hiba.cpp: + .text start:0x8026BE8C end:0x8026C68C + .data start:0x804C54B8 end:0x804C5800 + .sdata2 start:0x8051B020 end:0x8051B038 + +plugProjectNishimuraU/GasHibaState.cpp: + .text start:0x8026C68C end:0x8026CC0C + .data start:0x804C5800 end:0x804C58B8 + .sdata2 start:0x8051B038 end:0x8051B058 + +plugProjectNishimuraU/GasHibaAnimator.cpp: + .text start:0x8026CC0C end:0x8026CC80 + .data start:0x804C58B8 end:0x804C58E0 + +plugProjectNishimuraU/GasHibaMgr.cpp: + .text start:0x8026CC80 end:0x8026D14C + .rodata start:0x804861B8 end:0x804864F8 + .data start:0x804C58E0 end:0x804C59D0 + .sdata2 start:0x8051B058 end:0x8051B078 + +plugProjectNishimuraU/GasHiba.cpp: + .text start:0x8026D14C end:0x8026DFD8 + .rodata start:0x804864F8 end:0x80486508 + .data start:0x804C59D0 end:0x804C5D08 + .sdata2 start:0x8051B078 end:0x8051B098 + +plugProjectNishimuraU/ElecHibaState.cpp: + .text start:0x8026DFD8 end:0x8026E994 + .data start:0x804C5D08 end:0x804C5DE0 + .sdata2 start:0x8051B098 end:0x8051B0C0 + +plugProjectNishimuraU/ElecHibaAnimator.cpp: + .text start:0x8026E994 end:0x8026EA08 + .data start:0x804C5DE0 end:0x804C5E08 + +plugProjectNishimuraU/ElecHibaMgr.cpp: + .text start:0x8026EA08 end:0x8026F258 + .rodata start:0x80486508 end:0x80486868 + .data start:0x804C5E08 end:0x804C5F28 + .sdata2 start:0x8051B0C0 end:0x8051B0E0 + +plugProjectNishimuraU/ElecHiba.cpp: + .text start:0x8026F258 end:0x802708A0 + .rodata start:0x80486868 end:0x80486878 + .data start:0x804C5F28 end:0x804C62C8 + .sdata2 start:0x8051B0E0 end:0x8051B110 + +plugProjectNishimuraU/SaraiState.cpp: + .text start:0x802708A0 end:0x80272490 + .rodata start:0x80486878 end:0x80486890 + .data start:0x804C62C8 end:0x804C64A0 + .sdata2 start:0x8051B110 end:0x8051B1B0 + +plugProjectNishimuraU/SaraiAnimator.cpp: + .text start:0x80272490 end:0x80272504 + .data start:0x804C64A0 end:0x804C64C8 + +plugProjectNishimuraU/SaraiMgr.cpp: + .text start:0x80272504 end:0x80272BC4 + .rodata start:0x80486890 end:0x80486C50 + .data start:0x804C64C8 end:0x804C65B8 + .sdata2 start:0x8051B1B0 end:0x8051B1F8 + +plugProjectNishimuraU/Sarai.cpp: + .text start:0x80272BC4 end:0x80273DE4 + .rodata start:0x80486C50 end:0x80486C68 + .data start:0x804C65B8 end:0x804C68F8 + .sdata2 start:0x8051B1F8 end:0x8051B268 + +plugProjectNishimuraU/TankState.cpp: + .text start:0x80273DE4 end:0x802759A4 + .rodata start:0x80486C68 end:0x80486C80 + .data start:0x804C68F8 end:0x804C6A40 + .sdata2 start:0x8051B268 end:0x8051B2D8 + +plugProjectNishimuraU/TankAnimator.cpp: + .text start:0x802759A4 end:0x80275A18 + .data start:0x804C6A40 end:0x804C6A68 + +plugProjectNishimuraU/TankMgr.cpp: + .text start:0x80275A18 end:0x80275D8C + .rodata start:0x80486C80 end:0x80486CD0 + .data start:0x804C6A68 end:0x804C6B50 + .sdata2 start:0x8051B2D8 end:0x8051B2E8 + +plugProjectNishimuraU/Tank.cpp: + .text start:0x80275D8C end:0x80276D54 + .data start:0x804C6B50 end:0x804C6EA8 + .sdata2 start:0x8051B2E8 end:0x8051B358 + +plugProjectNishimuraU/CatfishMgr.cpp: + .text start:0x80276D54 end:0x80277008 + .rodata start:0x80486CD0 end:0x80486CE8 + .data start:0x804C6EA8 end:0x804C6F88 + +plugProjectNishimuraU/Catfish.cpp: + .text start:0x80277008 end:0x8027730C + .data start:0x804C6F88 end:0x804C72C0 + .sdata2 start:0x8051B358 end:0x8051B390 + +plugProjectNishimuraU/TadpoleState.cpp: + .text start:0x8027730C end:0x802781F0 + .data start:0x804C72C0 end:0x804C73E0 + .sdata2 start:0x8051B390 end:0x8051B400 + +plugProjectNishimuraU/TadpoleAnimator.cpp: + .text start:0x802781F0 end:0x80278264 + .data start:0x804C73E0 end:0x804C7408 + +plugProjectNishimuraU/TadpoleMgr.cpp: + .text start:0x80278264 end:0x802785D0 + .rodata start:0x80486CE8 end:0x80486D20 + .data start:0x804C7408 end:0x804C74F8 + .sdata2 start:0x8051B400 end:0x8051B410 + +plugProjectNishimuraU/Tadpole.cpp: + .text start:0x802785D0 end:0x80278E90 + .data start:0x804C74F8 end:0x804C7838 + .sdata2 start:0x8051B410 end:0x8051B450 + +plugProjectNishimuraU/ElecBugState.cpp: + .text start:0x80278E90 end:0x8027A828 + .rodata start:0x80486D20 end:0x80486D60 + .data start:0x804C7838 end:0x804C7A00 + .sdata2 start:0x8051B450 end:0x8051B4C8 + +plugProjectNishimuraU/ElecBugAnimator.cpp: + .text start:0x8027A828 end:0x8027A89C + .data start:0x804C7A00 end:0x804C7A28 + +plugProjectNishimuraU/ElecBugMgr.cpp: + .text start:0x8027A89C end:0x8027AC88 + .rodata start:0x80486D60 end:0x80487080 + .data start:0x804C7A28 end:0x804C7B18 + .sdata2 start:0x8051B4C8 end:0x8051B4E0 + +plugProjectNishimuraU/ElecBug.cpp: + .text start:0x8027AC88 end:0x8027C40C + .data start:0x804C7B18 end:0x804C7EE0 + .sdata2 start:0x8051B4E0 end:0x8051B520 + +plugProjectNishimuraU/WtankMgr.cpp: + .text start:0x8027C40C end:0x8027C80C + .rodata start:0x80487080 end:0x804870F8 + .data start:0x804C7EE0 end:0x804C7FD0 + .sdata start:0x80514B10 end:0x80514B18 + +plugProjectNishimuraU/Wtank.cpp: + .text start:0x8027C80C end:0x8027D2B8 + .data start:0x804C7FD0 end:0x804C83F0 + .sdata2 start:0x8051B520 end:0x8051B528 + +plugProjectNishimuraU/ArmorMgr.cpp: + .text start:0x8027D2B8 end:0x8027D69C + .rodata start:0x804870F8 end:0x80487418 + .data start:0x804C83F0 end:0x804C84E0 + .sdata2 start:0x8051B528 end:0x8051B540 + +plugProjectNishimuraU/Armor.cpp: + .text start:0x8027D69C end:0x8027F50C + .rodata start:0x80487418 end:0x80487428 + .data start:0x804C84E0 end:0x804C88A8 + .sdata2 start:0x8051B540 end:0x8051B598 + +plugProjectNishimuraU/Mar.cpp: + .text start:0x8027F50C end:0x80281E9C + .data start:0x804C88A8 end:0x804C8C78 + .sdata2 start:0x8051B598 end:0x8051B618 + +plugProjectNishimuraU/MarAnimator.cpp: + .text start:0x80281E9C end:0x80281F10 + .data start:0x804C8C78 end:0x804C8CA0 + +plugProjectNishimuraU/MarMgr.cpp: + .text start:0x80281F10 end:0x80282614 + .rodata start:0x80487428 end:0x80487800 + .data start:0x804C8CA0 end:0x804C8D90 + .sdata start:0x80514B18 end:0x80514B20 + .sdata2 start:0x8051B618 end:0x8051B640 + +plugProjectNishimuraU/MarState.cpp: + .text start:0x80282614 end:0x80284470 + .rodata start:0x80487800 end:0x80487838 + .data start:0x804C8D90 end:0x804C8F88 + .sdata2 start:0x8051B640 end:0x8051B6C0 + +plugProjectNishimuraU/WealthyMgr.cpp: + .text start:0x80284470 end:0x80284A9C + .rodata start:0x80487838 end:0x80487BE8 + .data start:0x804C8F88 end:0x804C9078 + .sdata start:0x80514B20 end:0x80514B28 + .sdata2 start:0x8051B6C0 end:0x8051B6F0 + +plugProjectNishimuraU/Wealthy.cpp: + .text start:0x80284A9C end:0x802850F0 + .data start:0x804C9078 end:0x804C9418 + .sdata2 start:0x8051B6F0 end:0x8051B708 + +plugProjectNishimuraU/FartMgr.cpp: + .text start:0x802850F0 end:0x80285448 + .rodata start:0x80487BE8 end:0x80487C40 + .data start:0x804C9418 end:0x804C9500 + .sdata start:0x80514B28 end:0x80514B30 + +plugProjectNishimuraU/Fart.cpp: + .text start:0x80285448 end:0x80285ED8 + .data start:0x804C9500 end:0x804C9850 + .sdata2 start:0x8051B708 end:0x8051B728 + +plugProjectNishimuraU/ArmorState.cpp: + .text start:0x80285ED8 end:0x80287AFC + .rodata start:0x80487C40 end:0x80487C58 + .data start:0x804C9850 end:0x804C9A90 + .sdata2 start:0x8051B728 end:0x8051B798 + +plugProjectNishimuraU/ArmorAnimator.cpp: + .text start:0x80287AFC end:0x80287B70 + .data start:0x804C9A90 end:0x804C9AB8 + +plugProjectNishimuraU/QueenState.cpp: + .text start:0x80287B70 end:0x80288E40 + .ctors start:0x804730D0 end:0x804730D4 + .data start:0x804C9AB8 end:0x804C9C08 + .sbss start:0x80515D48 end:0x80515D50 + .sdata2 start:0x8051B798 end:0x8051B800 + +plugProjectNishimuraU/QueenAnimator.cpp: + .text start:0x80288E40 end:0x80288EB4 + .data start:0x804C9C08 end:0x804C9C30 + +plugProjectNishimuraU/QueenMgr.cpp: + .text start:0x80288EB4 end:0x802894D4 + .rodata start:0x80487C58 end:0x80487FF8 + .data start:0x804C9C30 end:0x804C9D20 + .sdata start:0x80514B30 end:0x80514B38 + .sdata2 start:0x8051B800 end:0x8051B818 + +plugProjectNishimuraU/Queen.cpp: + .text start:0x802894D4 end:0x8028C584 + .ctors start:0x804730D4 end:0x804730D8 + .rodata start:0x80487FF8 end:0x80488028 + .data start:0x804C9D20 end:0x804CA348 + .sbss start:0x80515D50 end:0x80515D58 + .sdata2 start:0x8051B818 end:0x8051B888 + +plugProjectNishimuraU/BabyState.cpp: + .text start:0x8028C584 end:0x8028D04C + .data start:0x804CA348 end:0x804CA458 + .sdata2 start:0x8051B888 end:0x8051B8C8 + +plugProjectNishimuraU/BabyAnimator.cpp: + .text start:0x8028D04C end:0x8028D0C0 + .data start:0x804CA458 end:0x804CA480 + +plugProjectNishimuraU/BabyMgr.cpp: + .text start:0x8028D0C0 end:0x8028D470 + .rodata start:0x80488028 end:0x80488330 + .data start:0x804CA480 end:0x804CA570 + .sdata2 start:0x8051B8C8 end:0x8051B8E0 + +plugProjectNishimuraU/Baby.cpp: + .text start:0x8028D470 end:0x8028E048 + .data start:0x804CA570 end:0x804CA8E8 + .sdata2 start:0x8051B8E0 end:0x8051B930 + +plugProjectNishimuraU/DemonMgr.cpp: + .text start:0x8028E048 end:0x8028E394 + .rodata start:0x80488330 end:0x80488348 + .data start:0x804CA8E8 end:0x804CA9C8 + +plugProjectNishimuraU/Demon.cpp: + .text start:0x8028E394 end:0x8028EB68 + .data start:0x804CA9C8 end:0x804CAD08 + .sdata2 start:0x8051B930 end:0x8051B948 + +plugProjectNishimuraU/QueenShadow.cpp: + .text start:0x8028EB68 end:0x8028F138 + .data start:0x804CAD08 end:0x804CAD18 + .sdata2 start:0x8051B948 end:0x8051B9C8 + +plugProjectNishimuraU/FireChappyMgr.cpp: + .text start:0x8028F138 end:0x8028F62C + .rodata start:0x80488348 end:0x804883D8 + .data start:0x804CAD18 end:0x804CADF8 + .sdata start:0x80514B38 end:0x80514B40 + +plugProjectNishimuraU/FireChappy.cpp: + .text start:0x8028F62C end:0x80290724 + .data start:0x804CADF8 end:0x804CB2A8 + .sdata2 start:0x8051B9C8 end:0x8051B9F8 + +plugProjectNishimuraU/SnakeCrowState.cpp: + .text start:0x80290724 end:0x80292B28 + .ctors start:0x804730D8 end:0x804730DC + .rodata start:0x804883D8 end:0x804883F0 + .data start:0x804CB2A8 end:0x804CB458 + .sbss start:0x80515D58 end:0x80515D60 + .sdata2 start:0x8051B9F8 end:0x8051BA68 + +plugProjectNishimuraU/SnakeCrowAnimator.cpp: + .text start:0x80292B28 end:0x80292B9C + .data start:0x804CB458 end:0x804CB480 + +plugProjectNishimuraU/SnakeCrowMgr.cpp: + .text start:0x80292B9C end:0x80293094 + .rodata start:0x804883F0 end:0x80488730 + .data start:0x804CB480 end:0x804CB570 + .sdata2 start:0x8051BA68 end:0x8051BA90 + +plugProjectNishimuraU/SnakeCrow.cpp: + .text start:0x80293094 end:0x80295E28 + .ctors start:0x804730DC end:0x804730E0 + .rodata start:0x80488730 end:0x804888C8 + .data start:0x804CB570 end:0x804CB9E8 + .sbss start:0x80515D60 end:0x80515D68 + .sdata2 start:0x8051BA90 end:0x8051BAE0 + +plugProjectNishimuraU/KumaChappyState.cpp: + .text start:0x80295E28 end:0x80299240 + .rodata start:0x804888C8 end:0x804888E0 + .data start:0x804CB9E8 end:0x804CBB78 + .sdata2 start:0x8051BAE0 end:0x8051BB48 + +plugProjectNishimuraU/KumaChappyAnimator.cpp: + .text start:0x80299240 end:0x802992B4 + .data start:0x804CBB78 end:0x804CBBA0 + +plugProjectNishimuraU/KumaChappyMgr.cpp: + .text start:0x802992B4 end:0x802996A0 + .rodata start:0x804888E0 end:0x80488C10 + .data start:0x804CBBA0 end:0x804CBC90 + .sdata2 start:0x8051BB48 end:0x8051BB68 + +plugProjectNishimuraU/KumaChappy.cpp: + .text start:0x802996A0 end:0x8029A63C + .data start:0x804CBC90 end:0x804CBFD8 + .sdata2 start:0x8051BB68 end:0x8051BBF0 + +plugProjectNishimuraU/FuefukiState.cpp: + .text start:0x8029A63C end:0x8029BBC4 + .rodata start:0x80488C10 end:0x80488C20 + .data start:0x804CBFD8 end:0x804CC168 + .sdata2 start:0x8051BBF0 end:0x8051BC70 + +plugProjectNishimuraU/FuefukiAnimator.cpp: + .text start:0x8029BBC4 end:0x8029BC38 + .data start:0x804CC168 end:0x804CC190 + +plugProjectNishimuraU/FuefukiMgr.cpp: + .text start:0x8029BC38 end:0x8029C1C4 + .rodata start:0x80488C20 end:0x80488FA8 + .data start:0x804CC190 end:0x804CC280 + .sdata2 start:0x8051BC70 end:0x8051BC98 + +plugProjectNishimuraU/Fuefuki.cpp: + .text start:0x8029C1C4 end:0x8029D9F0 + .rodata start:0x80488FA8 end:0x80488FB8 + .data start:0x804CC280 end:0x804CC628 + .sdata2 start:0x8051BC98 end:0x8051BCE0 + +plugProjectNishimuraU/KoganemushiMgr.cpp: + .text start:0x8029D9F0 end:0x8029DD44 + .rodata start:0x80488FB8 end:0x80489010 + .data start:0x804CC628 end:0x804CC710 + .sdata start:0x80514B40 end:0x80514B48 + +plugProjectNishimuraU/Koganemushi.cpp: + .text start:0x8029DD44 end:0x8029E12C + .data start:0x804CC710 end:0x804CCA60 + .sdata2 start:0x8051BCE0 end:0x8051BCF0 + +plugProjectNishimuraU/FtankMgr.cpp: + .text start:0x8029E12C end:0x8029E484 + .rodata start:0x80489010 end:0x80489078 + .data start:0x804CCA60 end:0x804CCB48 + .sdata start:0x80514B48 end:0x80514B50 + +plugProjectNishimuraU/Ftank.cpp: + .text start:0x8029E484 end:0x8029EF0C + .data start:0x804CCB48 end:0x804CCF30 + .sdata2 start:0x8051BCF0 end:0x8051BCF8 + +plugProjectNishimuraU/RandPlantUnit.cpp: + .text start:0x8029EF0C end:0x8029F228 + .sdata2 start:0x8051BCF8 end:0x8051BD08 + +plugProjectNishimuraU/HanachirashiState.cpp: + .text start:0x8029F228 end:0x802A12B4 + .rodata start:0x80489078 end:0x804890B8 + .data start:0x804CCF30 end:0x804CD150 + .sdata2 start:0x8051BD08 end:0x8051BD90 + +plugProjectNishimuraU/HanachirashiAnimator.cpp: + .text start:0x802A12B4 end:0x802A1328 + .data start:0x804CD150 end:0x804CD178 + +plugProjectNishimuraU/HanachirashiMgr.cpp: + .text start:0x802A1328 end:0x802A1AE8 + .rodata start:0x804890B8 end:0x804894B8 + .data start:0x804CD178 end:0x804CD268 + .sdata start:0x80514B50 end:0x80514B58 + .sdata2 start:0x8051BD90 end:0x8051BDB8 + +plugProjectNishimuraU/Hanachirashi.cpp: + .text start:0x802A1AE8 end:0x802A43FC + .data start:0x804CD268 end:0x804CD5D0 + .sdata2 start:0x8051BDB8 end:0x8051BE48 + +plugProjectNishimuraU/DamagumoState.cpp: + .text start:0x802A43FC end:0x802A5058 + .ctors start:0x804730E0 end:0x804730E4 + .data start:0x804CD5D0 end:0x804CD700 + .sbss start:0x80515D68 end:0x80515D70 + .sdata2 start:0x8051BE48 end:0x8051BEA0 + +plugProjectNishimuraU/DamagumoAnimator.cpp: + .text start:0x802A5058 end:0x802A50CC + .data start:0x804CD700 end:0x804CD728 + +plugProjectNishimuraU/DamagumoMgr.cpp: + .text start:0x802A50CC end:0x802A57A4 + .rodata start:0x804894B8 end:0x80489870 + .data start:0x804CD728 end:0x804CD818 + .sdata start:0x80514B58 end:0x80514B60 + .sdata2 start:0x8051BEA0 end:0x8051BED0 + +plugProjectNishimuraU/Damagumo.cpp: + .text start:0x802A57A4 end:0x802A8A80 + .ctors start:0x804730E4 end:0x804730E8 + .rodata start:0x80489870 end:0x80489968 + .data start:0x804CD818 end:0x804CDEB8 + .sbss start:0x80515D70 end:0x80515D78 + .sdata2 start:0x8051BED0 end:0x8051BF70 + +plugProjectNishimuraU/IKSystemMgr.cpp: + .text start:0x802A8A80 end:0x802A9E5C + .rodata start:0x80489968 end:0x80489978 + .sbss start:0x80515D78 end:0x80515D80 + .sdata2 start:0x8051BF70 end:0x8051BFA0 + +plugProjectNishimuraU/IKSystemBase.cpp: + .text start:0x802A9E5C end:0x802AAD94 + .sdata2 start:0x8051BFA0 end:0x8051BFD8 + +plugProjectNishimuraU/DamagumoShadow.cpp: + .text start:0x802AAD94 end:0x802AB5F0 + .rodata start:0x80489978 end:0x80489A20 + .data start:0x804CDEB8 end:0x804CDEE8 + .sdata2 start:0x8051BFD8 end:0x8051C020 + +plugProjectNishimuraU/KurageState.cpp: + .text start:0x802AB5F0 end:0x802AD090 + .ctors start:0x804730E8 end:0x804730EC + .rodata start:0x80489A20 end:0x80489A38 + .data start:0x804CDEE8 end:0x804CE0E0 + .sbss start:0x80515D80 end:0x80515D88 + .sdata2 start:0x8051C020 end:0x8051C0A0 + +plugProjectNishimuraU/KurageAnimator.cpp: + .text start:0x802AD090 end:0x802AD104 + .data start:0x804CE0E0 end:0x804CE108 + +plugProjectNishimuraU/KurageMgr.cpp: + .text start:0x802AD104 end:0x802AD6F0 + .rodata start:0x80489A38 end:0x80489DA8 + .data start:0x804CE108 end:0x804CE1F8 + .sdata2 start:0x8051C0A0 end:0x8051C0C0 + +plugProjectNishimuraU/Kurage.cpp: + .text start:0x802AD6F0 end:0x802AFC74 + .rodata start:0x80489DA8 end:0x80489E80 + .data start:0x804CE1F8 end:0x804CE658 + .sdata2 start:0x8051C0C0 end:0x8051C130 + +plugProjectNishimuraU/BombSaraiState.cpp: + .text start:0x802AFC74 end:0x802B2130 + .ctors start:0x804730EC end:0x804730F0 + .rodata start:0x80489E80 end:0x80489EE0 + .data start:0x804CE658 end:0x804CE880 + .sbss start:0x80515D88 end:0x80515D90 + .sdata2 start:0x8051C130 end:0x8051C1C0 + +plugProjectNishimuraU/BombSaraiAnimator.cpp: + .text start:0x802B2130 end:0x802B21A4 + .data start:0x804CE880 end:0x804CE8A8 + +plugProjectNishimuraU/BombSaraiMgr.cpp: + .text start:0x802B21A4 end:0x802B27CC + .rodata start:0x80489EE0 end:0x8048A250 + .data start:0x804CE8A8 end:0x804CE998 + .sdata2 start:0x8051C1C0 end:0x8051C1F8 + +plugProjectNishimuraU/BombSarai.cpp: + .text start:0x802B27CC end:0x802B37A8 + .rodata start:0x8048A250 end:0x8048A2C0 + .data start:0x804CE998 end:0x804CED28 + .sdata2 start:0x8051C1F8 end:0x8051C248 + +plugProjectNishimuraU/OtakaraBaseState.cpp: + .text start:0x802B37A8 end:0x802B5E24 + .rodata start:0x8048A2C0 end:0x8048A338 + .data start:0x804CED28 end:0x804CEF68 + .sdata2 start:0x8051C248 end:0x8051C290 + +plugProjectNishimuraU/OtakaraBaseAnimator.cpp: + .text start:0x802B5E24 end:0x802B5E98 + .data start:0x804CEF68 end:0x804CEF90 + +plugProjectNishimuraU/OtakaraBaseMgr.cpp: + .text start:0x802B5E98 end:0x802B624C + .rodata start:0x8048A338 end:0x8048A3B8 + .data start:0x804CEF90 end:0x804CF078 + +plugProjectNishimuraU/OtakaraBase.cpp: + .text start:0x802B624C end:0x802B7CCC + .data start:0x804CF078 end:0x804CF3D8 + .sdata2 start:0x8051C290 end:0x8051C2E8 + +plugProjectNishimuraU/FireOtakaraMgr.cpp: + .text start:0x802B7CCC end:0x802B81C8 + .rodata start:0x8048A3B8 end:0x8048A760 + .data start:0x804CF3D8 end:0x804CF4C8 + .sdata start:0x80514B60 end:0x80514B68 + .sdata2 start:0x8051C2E8 end:0x8051C308 + +plugProjectNishimuraU/FireOtakara.cpp: + .text start:0x802B81C8 end:0x802B86E0 + .data start:0x804CF4C8 end:0x804CF850 + .sdata2 start:0x8051C308 end:0x8051C310 + +plugProjectNishimuraU/WaterOtakaraMgr.cpp: + .text start:0x802B86E0 end:0x802B8A38 + .rodata start:0x8048A760 end:0x8048A7D0 + .data start:0x804CF850 end:0x804CF938 + .sdata start:0x80514B68 end:0x80514B70 + +plugProjectNishimuraU/WaterOtakara.cpp: + .text start:0x802B8A38 end:0x802B8F3C + .data start:0x804CF938 end:0x804CFCC0 + .sdata2 start:0x8051C310 end:0x8051C318 + +plugProjectNishimuraU/GasOtakaraMgr.cpp: + .text start:0x802B8F3C end:0x802B9294 + .rodata start:0x8048A7D0 end:0x8048A840 + .data start:0x804CFCC0 end:0x804CFDA8 + .sdata start:0x80514B70 end:0x80514B78 + +plugProjectNishimuraU/GasOtakara.cpp: + .text start:0x802B9294 end:0x802B9780 + .data start:0x804CFDA8 end:0x804D0130 + .sdata2 start:0x8051C318 end:0x8051C320 + +plugProjectNishimuraU/ElecOtakaraMgr.cpp: + .text start:0x802B9780 end:0x802B9AD8 + .rodata start:0x8048A840 end:0x8048A8B0 + .data start:0x804D0130 end:0x804D0218 + .sdata start:0x80514B78 end:0x80514B80 + +plugProjectNishimuraU/ElecOtakara.cpp: + .text start:0x802B9AD8 end:0x802BA0D8 + .data start:0x804D0218 end:0x804D05A0 + .sdata2 start:0x8051C320 end:0x8051C330 + +plugProjectNishimuraU/ImomushiState.cpp: + .text start:0x802BA0D8 end:0x802BBC60 + .rodata start:0x8048A8B0 end:0x8048A900 + .data start:0x804D05A0 end:0x804D07E0 + .sdata2 start:0x8051C330 end:0x8051C3A0 + +plugProjectNishimuraU/ImomushiAnimator.cpp: + .text start:0x802BBC60 end:0x802BBCD4 + .data start:0x804D07E0 end:0x804D0808 + +plugProjectNishimuraU/ImomushiMgr.cpp: + .text start:0x802BBCD4 end:0x802BC138 + .rodata start:0x8048A900 end:0x8048AC30 + .data start:0x804D0808 end:0x804D08F8 + .sdata2 start:0x8051C3A0 end:0x8051C3C0 + +plugProjectNishimuraU/Imomushi.cpp: + .text start:0x802BC138 end:0x802BDAB0 + .rodata start:0x8048AC30 end:0x8048AC58 + .data start:0x804D08F8 end:0x804D0C30 + .sdata2 start:0x8051C3C0 end:0x8051C418 + +plugProjectNishimuraU/HoudaiState.cpp: + .text start:0x802BDAB0 end:0x802BED6C + .ctors start:0x804730F0 end:0x804730F4 + .data start:0x804D0C30 end:0x804D0D80 + .sbss start:0x80515D90 end:0x80515D98 + .sdata2 start:0x8051C418 end:0x8051C478 + +plugProjectNishimuraU/HoudaiAnimator.cpp: + .text start:0x802BED6C end:0x802BEDE0 + .data start:0x804D0D80 end:0x804D0DA8 + +plugProjectNishimuraU/HoudaiMgr.cpp: + .text start:0x802BEDE0 end:0x802BF47C + .rodata start:0x8048AC58 end:0x8048B030 + .data start:0x804D0DA8 end:0x804D0E98 + .sdata2 start:0x8051C478 end:0x8051C4B0 + +plugProjectNishimuraU/HoudaiShadow.cpp: + .text start:0x802BF47C end:0x802BFCB0 + .rodata start:0x8048B030 end:0x8048B0D8 + .sdata2 start:0x8051C4B0 end:0x8051C4F8 + +plugProjectNishimuraU/Houdai.cpp: + .text start:0x802BFCB0 end:0x802C394C + .ctors start:0x804730F4 end:0x804730F8 + .rodata start:0x8048B0D8 end:0x8048B1F8 + .data start:0x804D0E98 end:0x804D14A0 + .sbss start:0x80515D98 end:0x80515DA0 + .sdata2 start:0x8051C4F8 end:0x8051C588 + +plugProjectNishimuraU/HoudaiShotGun.cpp: + .text start:0x802C394C end:0x802C5918 + .data start:0x804D14A0 end:0x804D1558 + .sbss start:0x80515DA0 end:0x80515DA8 + .sdata2 start:0x8051C588 end:0x8051C5F8 + +plugProjectNishimuraU/LeafChappyMgr.cpp: + .text start:0x802C5918 end:0x802C5C18 + .rodata start:0x8048B1F8 end:0x8048B218 + .data start:0x804D1558 end:0x804D1638 + +plugProjectNishimuraU/LeafChappy.cpp: + .text start:0x802C5C18 end:0x802C62E8 + .data start:0x804D1638 end:0x804D1978 + .sdata2 start:0x8051C5F8 end:0x8051C668 + +plugProjectNishimuraU/BigFootState.cpp: + .text start:0x802C62E8 end:0x802C6EE4 + .ctors start:0x804730F8 end:0x804730FC + .data start:0x804D1978 end:0x804D1AA8 + .sbss start:0x80515DA8 end:0x80515DB0 + .sdata2 start:0x8051C668 end:0x8051C6B0 + +plugProjectNishimuraU/BigFootAnimator.cpp: + .text start:0x802C6EE4 end:0x802C6F58 + .data start:0x804D1AA8 end:0x804D1AD0 + +plugProjectNishimuraU/BigFootMgr.cpp: + .text start:0x802C6F58 end:0x802C7810 + .rodata start:0x8048B218 end:0x8048B640 + .data start:0x804D1AD0 end:0x804D1BC0 + .sdata start:0x80514B80 end:0x80514B88 + .sdata2 start:0x8051C6B0 end:0x8051C6E8 + +plugProjectNishimuraU/BigFootShadow.cpp: + .text start:0x802C7810 end:0x802C7EF0 + .rodata start:0x8048B640 end:0x8048B6E8 + .sdata2 start:0x8051C6E8 end:0x8051C728 + +plugProjectNishimuraU/BigFoot.cpp: + .text start:0x802C7EF0 end:0x802CB94C + .ctors start:0x804730FC end:0x80473100 + .rodata start:0x8048B6E8 end:0x8048B7F0 + .data start:0x804D1BC0 end:0x804D2150 + .sbss start:0x80515DB0 end:0x80515DB8 + .sdata2 start:0x8051C728 end:0x8051C7D0 + +plugProjectNishimuraU/SnakeWholeState.cpp: + .text start:0x802CB94C end:0x802CE268 + .ctors start:0x80473100 end:0x80473104 + .rodata start:0x8048B7F0 end:0x8048B808 + .data start:0x804D2150 end:0x804D2330 + .sbss start:0x80515DB8 end:0x80515DC0 + .sdata2 start:0x8051C7D0 end:0x8051C848 + +plugProjectNishimuraU/SnakeWholeAnimator.cpp: + .text start:0x802CE268 end:0x802CE2DC + .data start:0x804D2330 end:0x804D2358 + +plugProjectNishimuraU/SnakeWholeMgr.cpp: + .text start:0x802CE2DC end:0x802CE798 + .rodata start:0x8048B808 end:0x8048BB38 + .data start:0x804D2358 end:0x804D2448 + .sdata2 start:0x8051C848 end:0x8051C868 + +plugProjectNishimuraU/SnakeWhole.cpp: + .text start:0x802CE798 end:0x802D1634 + .rodata start:0x8048BB38 end:0x8048BCC0 + .data start:0x804D2448 end:0x804D27A8 + .sdata2 start:0x8051C868 end:0x8051C8D8 + +plugProjectNishimuraU/SnakeJointMgr.cpp: + .text start:0x802D1634 end:0x802D1AE0 + .rodata start:0x8048BCC0 end:0x8048BD38 + .sbss start:0x80515DC0 end:0x80515DC8 + .sdata2 start:0x8051C8D8 end:0x8051C8E8 + +plugProjectNishimuraU/OniKurageState.cpp: + .text start:0x802D1AE0 end:0x802D3924 + .ctors start:0x80473104 end:0x80473108 + .rodata start:0x8048BD38 end:0x8048BD50 + .data start:0x804D27A8 end:0x804D29C0 + .sbss start:0x80515DC8 end:0x80515DD0 + .sdata2 start:0x8051C8E8 end:0x8051C970 + +plugProjectNishimuraU/OniKurageAnimator.cpp: + .text start:0x802D3924 end:0x802D3998 + .data start:0x804D29C0 end:0x804D29E8 + +plugProjectNishimuraU/OniKurageMgr.cpp: + .text start:0x802D3998 end:0x802D3F84 + .rodata start:0x8048BD50 end:0x8048C0C0 + .data start:0x804D29E8 end:0x804D2AD8 + .sdata2 start:0x8051C970 end:0x8051C990 + +plugProjectNishimuraU/OniKurage.cpp: + .text start:0x802D3F84 end:0x802D72CC + .ctors start:0x80473108 end:0x8047310C + .rodata start:0x8048C0C0 end:0x8048C198 + .data start:0x804D2AD8 end:0x804D2F90 + .sbss start:0x80515DD0 end:0x80515DD8 + .sdata2 start:0x8051C990 end:0x8051CA40 + +plugProjectNishimuraU/BigTreasureState.cpp: + .text start:0x802D72CC end:0x802D90E4 + .ctors start:0x8047310C end:0x80473110 + .rodata start:0x8048C198 end:0x8048C1F0 + .data start:0x804D2F90 end:0x804D3198 + .sbss start:0x80515DD8 end:0x80515DE0 + .sdata2 start:0x8051CA40 end:0x8051CAB0 + +plugProjectNishimuraU/BigTreasureMgr.cpp: + .text start:0x802D90E4 end:0x802DA5C8 + .rodata start:0x8048C1F0 end:0x8048C968 + .data start:0x804D3198 end:0x804D3288 + .sdata2 start:0x8051CAB0 end:0x8051CB88 + +plugProjectNishimuraU/BigTreasureShadow.cpp: + .text start:0x802DA5C8 end:0x802DBBB4 + .rodata start:0x8048C968 end:0x8048CA80 + .data start:0x804D3288 end:0x804D3298 + .sdata2 start:0x8051CB88 end:0x8051CC30 + +plugProjectNishimuraU/BigTreasure.cpp: + .text start:0x802DBBB4 end:0x802E1834 + .ctors start:0x80473110 end:0x80473114 + .rodata start:0x8048CA80 end:0x8048CC60 + .data start:0x804D3298 end:0x804D38E8 + .sbss start:0x80515DE0 end:0x80515DE8 + .sdata2 start:0x8051CC30 end:0x8051CD58 + +plugProjectNishimuraU/KabutoState.cpp: + .text start:0x802E1834 end:0x802E3CF4 + .rodata start:0x8048CC60 end:0x8048CC98 + .data start:0x804D38E8 end:0x804D3B30 + .sdata2 start:0x8051CD58 end:0x8051CDC8 + +plugProjectNishimuraU/KabutoAnimator.cpp: + .text start:0x802E3CF4 end:0x802E3D68 + .data start:0x804D3B30 end:0x804D3B58 + +plugProjectNishimuraU/KabutoMgr.cpp: + .text start:0x802E3D68 end:0x802E4178 + .rodata start:0x8048CC98 end:0x8048CD30 + .data start:0x804D3B58 end:0x804D3C40 + +plugProjectNishimuraU/Kabuto.cpp: + .text start:0x802E4178 end:0x802E4EE8 + .data start:0x804D3C40 end:0x804D3FA0 + .sdata2 start:0x8051CDC8 end:0x8051CE60 + +plugProjectNishimuraU/KumaKochappyState.cpp: + .text start:0x802E4EE8 end:0x802E6C70 + .rodata start:0x8048CD30 end:0x8048CD40 + .data start:0x804D3FA0 end:0x804D40E8 + .sdata2 start:0x8051CE60 end:0x8051CEB0 + +plugProjectNishimuraU/KumaKochappyAnimator.cpp: + .text start:0x802E6C70 end:0x802E6CE4 + .data start:0x804D40E8 end:0x804D4110 + +plugProjectNishimuraU/KumaKochappyMgr.cpp: + .text start:0x802E6CE4 end:0x802E7050 + .rodata start:0x8048CD40 end:0x8048CD70 + .data start:0x804D4110 end:0x804D4200 + .sdata2 start:0x8051CEB0 end:0x8051CEC0 + +plugProjectNishimuraU/KumaKochappy.cpp: + .text start:0x802E7050 end:0x802E7F4C + .data start:0x804D4200 end:0x804D4548 + .sdata2 start:0x8051CEC0 end:0x8051CF10 + +plugProjectNishimuraU/MiniHoudaiState.cpp: + .text start:0x802E7F4C end:0x802EBCE0 + .ctors start:0x80473114 end:0x80473118 + .rodata start:0x8048CD70 end:0x8048CDC0 + .data start:0x804D4548 end:0x804D4728 + .sbss start:0x80515DE8 end:0x80515DF0 + .sdata2 start:0x8051CF10 end:0x8051CF78 + +plugProjectNishimuraU/MiniHoudaiAnimator.cpp: + .text start:0x802EBCE0 end:0x802EBD54 + .data start:0x804D4728 end:0x804D4750 + +plugProjectNishimuraU/MiniHoudaiMgr.cpp: + .text start:0x802EBD54 end:0x802EBFF8 + .rodata start:0x8048CDC0 end:0x8048CDD8 + .data start:0x804D4750 end:0x804D4830 + .sdata2 start:0x8051CF78 end:0x8051CF88 + +plugProjectNishimuraU/MiniHoudai.cpp: + .text start:0x802EBFF8 end:0x802EDCA0 + .data start:0x804D4830 end:0x804D4C58 + .sdata2 start:0x8051CF88 end:0x8051D020 + +plugProjectNishimuraU/MiniHoudaiShotGun.cpp: + .text start:0x802EDCA0 end:0x802EFA24 + .ctors start:0x80473118 end:0x8047311C + .rodata start:0x8048CDD8 end:0x8048CDE8 + .data start:0x804D4C58 end:0x804D4CC0 + .sbss start:0x80515DF0 end:0x80515E00 + .sdata2 start:0x8051D020 end:0x8051D090 + +plugProjectNishimuraU/SokkuriState.cpp: + .text start:0x802EFA24 end:0x802F0B90 + .rodata start:0x8048CDE8 end:0x8048CE20 + .data start:0x804D4CC0 end:0x804D4E50 + .sdata2 start:0x8051D090 end:0x8051D0F0 + +plugProjectNishimuraU/SokkuriAnimator.cpp: + .text start:0x802F0B90 end:0x802F0C04 + .data start:0x804D4E50 end:0x804D4E78 + +plugProjectNishimuraU/SokkuriMgr.cpp: + .text start:0x802F0C04 end:0x802F1264 + .rodata start:0x8048CE20 end:0x8048D1B0 + .data start:0x804D4E78 end:0x804D4F68 + .sdata2 start:0x8051D0F0 end:0x8051D120 + +plugProjectNishimuraU/Sokkuri.cpp: + .text start:0x802F1264 end:0x802F2040 + .rodata start:0x8048D1B0 end:0x8048D1C0 + .data start:0x804D4F68 end:0x804D52A8 + .sdata2 start:0x8051D120 end:0x8051D170 + +plugProjectNishimuraU/JointShadowBase.cpp: + .text start:0x802F2040 end:0x802F27DC + .sdata2 start:0x8051D170 end:0x8051D180 + +plugProjectNishimuraU/UmimushiShadow.cpp: + .text start:0x802F27DC end:0x802F2DEC + .rodata start:0x8048D1C0 end:0x8048D1D8 + .data start:0x804D52A8 end:0x804D52C8 + .sdata2 start:0x8051D180 end:0x8051D1A0 + +plugProjectNishimuraU/HanaMgr.cpp: + .text start:0x802F2DEC end:0x802F3138 + .rodata start:0x8048D1D8 end:0x8048D1F0 + .data start:0x804D52C8 end:0x804D53A8 + +plugProjectNishimuraU/Hana.cpp: + .text start:0x802F3138 end:0x802F39A8 + .ctors start:0x8047311C end:0x80473120 + .data start:0x804D53A8 end:0x804D5738 + .sbss start:0x80515E00 end:0x80515E08 + .sdata2 start:0x8051D1A0 end:0x8051D200 + +plugProjectNishimuraU/BigTreasureAttack.cpp: + .text start:0x802F39A8 end:0x802F8090 + .rodata start:0x8048D1F0 end:0x8048D240 + .data start:0x804D5738 end:0x804D59E0 + .sdata2 start:0x8051D200 end:0x8051D2C0 + +plugProjectNishimuraU/SnakeCrowShadow.cpp: + .text start:0x802F8090 end:0x802F89AC + .rodata start:0x8048D240 end:0x8048D300 + .data start:0x804D59E0 end:0x804D5A00 + .sdata2 start:0x8051D2C0 end:0x8051D2D8 + +plugProjectNishimuraU/SnakeWholeShadow.cpp: + .text start:0x802F89AC end:0x802F92D0 + .rodata start:0x8048D300 end:0x8048D3D8 + .data start:0x804D5A00 end:0x804D5A20 + .sdata2 start:0x8051D2D8 end:0x8051D2F0 + +plugProjectNishimuraU/BombOtakaraMgr.cpp: + .text start:0x802F92D0 end:0x802F9624 + .rodata start:0x8048D3D8 end:0x8048D448 + .data start:0x804D5A20 end:0x804D5B08 + .sdata start:0x80514B88 end:0x80514B90 + +plugProjectNishimuraU/BombOtakara.cpp: + .text start:0x802F9624 end:0x802F9A8C + .data start:0x804D5B08 end:0x804D5E60 + .sdata2 start:0x8051D2F0 end:0x8051D2F8 + +plugProjectNishimuraU/DangoMushiState.cpp: + .text start:0x802F9A8C end:0x802FBD1C + .ctors start:0x80473120 end:0x80473124 + .data start:0x804D5E60 end:0x804D5FF8 + .sbss start:0x80515E08 end:0x80515E10 + .sdata2 start:0x8051D2F8 end:0x8051D378 + +plugProjectNishimuraU/DangoMushiMgr.cpp: + .text start:0x802FBD1C end:0x802FC3BC + .rodata start:0x8048D448 end:0x8048D7E0 + .data start:0x804D5FF8 end:0x804D60E8 + .sdata start:0x80514B90 end:0x80514B98 + .sdata2 start:0x8051D378 end:0x8051D3A8 + +plugProjectNishimuraU/DangoMushi.cpp: + .text start:0x802FC3BC end:0x802FF7CC + .rodata start:0x8048D7E0 end:0x8048D810 + .data start:0x804D60E8 end:0x804D6540 + .sdata2 start:0x8051D3A8 end:0x8051D4C0 + +plugProjectNishimuraU/GreenKabutoMgr.cpp: + .text start:0x802FF7CC end:0x802FFBC8 + .rodata start:0x8048D810 end:0x8048D890 + .data start:0x804D6540 end:0x804D6630 + .sdata start:0x80514B98 end:0x80514BA0 + +plugProjectNishimuraU/GreenKabuto.cpp: + .text start:0x802FFBC8 end:0x802FFE04 + .data start:0x804D6630 end:0x804D6980 + +plugProjectNishimuraU/RedKabutoMgr.cpp: + .text start:0x802FFE04 end:0x80300158 + .rodata start:0x8048D890 end:0x8048D8F8 + .data start:0x804D6980 end:0x804D6A68 + .sdata start:0x80514BA0 end:0x80514BA8 + +plugProjectNishimuraU/RedKabuto.cpp: + .text start:0x80300158 end:0x80300394 + .data start:0x804D6A68 end:0x804D6DB8 + +plugProjectNishimuraU/FixKabutoMgr.cpp: + .text start:0x80300394 end:0x803006EC + .rodata start:0x8048D8F8 end:0x8048D960 + .data start:0x804D6DB8 end:0x804D6EA0 + .sdata start:0x80514BA8 end:0x80514BB0 + +plugProjectNishimuraU/FixKabuto.cpp: + .text start:0x803006EC end:0x80300E68 + .data start:0x804D6EA0 end:0x804D7288 + +plugProjectNishimuraU/RandCapEnemyUnit.cpp: + .text start:0x80300E68 end:0x803011F8 + .sdata2 start:0x8051D4C0 end:0x8051D4D8 + +plugProjectNishimuraU/NormMiniHoudaiMgr.cpp: + .text start:0x803011F8 end:0x803015F8 + .rodata start:0x8048D960 end:0x8048DC88 + .data start:0x804D7288 end:0x804D76A0 + .sdata2 start:0x8051D4D8 end:0x8051D4E8 + +plugProjectNishimuraU/NormMiniHoudai.cpp: + .text start:0x803015F8 end:0x80301688 + +plugProjectNishimuraU/FixMiniHoudaiMgr.cpp: + .text start:0x80301688 end:0x8030195C + .rodata start:0x8048DC88 end:0x8048DCA8 + .data start:0x804D76A0 end:0x804D7AB0 + +plugProjectNishimuraU/FixMiniHoudai.cpp: + .text start:0x8030195C end:0x803019EC + +plugProjectNishimuraU/TyreShadow.cpp: + .text start:0x803019EC end:0x80301EB8 + .rodata start:0x8048DCA8 end:0x8048DCC0 + .data start:0x804D7AB0 end:0x804D7AC0 + .sdata2 start:0x8051D4E8 end:0x8051D508 + +plugProjectOgawaU/ogScreen.cpp: + .text start:0x80301EB8 end:0x8030360C + .rodata start:0x8048DCC0 end:0x8048DE50 + .data start:0x804D7AC0 end:0x804D7B28 + .bss start:0x80513BB0 end:0x80513BFC align:4 common + .sbss start:0x80515E10 end:0x80515E28 + .sdata2 start:0x8051D508 end:0x8051D560 + +plugProjectOgawaU/ogDopingScreen.cpp: + .text start:0x8030360C end:0x8030421C + .data start:0x804D7B28 end:0x804D7BF8 + .sdata2 start:0x8051D560 end:0x8051D580 + +plugProjectOgawaU/ogPikminCounter.cpp: + .text start:0x8030421C end:0x80304CB0 + .data start:0x804D7BF8 end:0x804D7DE8 + .sdata2 start:0x8051D580 end:0x8051D598 + +plugProjectOgawaU/ogAnime.cpp: + .text start:0x80304CB0 end:0x80305E48 + .rodata start:0x8048DE50 end:0x8048DE90 + .data start:0x804D7DE8 end:0x804D7E18 + .sdata2 start:0x8051D598 end:0x8051D5B0 + +plugProjectOgawaU/ogCounter.cpp: + .text start:0x80305E48 end:0x80306038 + .rodata start:0x8048DE90 end:0x8048DFB8 + .data start:0x804D7E18 end:0x804D7E70 + +plugProjectOgawaU/ogLifeGauge.cpp: + .text start:0x80306038 end:0x80307294 + .ctors start:0x80473124 end:0x80473128 + .rodata start:0x8048DFB8 end:0x8048DFE0 + .data start:0x804D7E70 end:0x804D7F48 + .bss start:0x80513BFC end:0x80513C0C align:4 common + .sdata2 start:0x8051D5B0 end:0x8051D5F0 + +plugProjectOgawaU/ogSunMeter.cpp: + .text start:0x80307294 end:0x80307820 + .data start:0x804D7F48 end:0x804D8008 + .sdata2 start:0x8051D5F0 end:0x8051D628 + +plugProjectOgawaU/ogCatchPiki.cpp: + .text start:0x80307820 end:0x80307B58 + .data start:0x804D8008 end:0x804D8028 + .sdata2 start:0x8051D628 end:0x8051D640 + +plugProjectOgawaU/ogContenaCounter.cpp: + .text start:0x80307B58 end:0x80307DCC + .data start:0x804D8028 end:0x804D80C8 + +plugProjectOgawaU/ogMapCounter.cpp: + .text start:0x80307DCC end:0x803087B8 + .data start:0x804D80C8 end:0x804D8168 + +plugProjectOgawaU/ogAnimTextScreen.cpp: + .text start:0x803087B8 end:0x80309614 + .rodata start:0x8048DFE0 end:0x8048E030 + .data start:0x804D8168 end:0x804D8188 + .sdata2 start:0x8051D640 end:0x8051D670 + +plugProjectOgawaU/ogCallBackMessage.cpp: + .text start:0x80309614 end:0x80309E28 + .data start:0x804D8188 end:0x804D81A8 + .sdata2 start:0x8051D670 end:0x8051D680 + +plugProjectOgawaU/ogMenuMgr.cpp: + .text start:0x80309E28 end:0x8030B370 + .sdata2 start:0x8051D680 end:0x8051D698 + +plugProjectOgawaU/ogCallBackScreen.cpp: + .text start:0x8030B370 end:0x8030B524 + .data start:0x804D81A8 end:0x804D81C8 + .sdata2 start:0x8051D698 end:0x8051D6A0 + +plugProjectOgawaU/ogCounterRV.cpp: + .text start:0x8030B524 end:0x8030C9B0 + .ctors start:0x80473128 end:0x8047312C + .data start:0x804D81C8 end:0x804D81F8 + .bss start:0x80513C0C end:0x80513C18 align:4 common + .sdata2 start:0x8051D6A0 end:0x8051D6D8 + +plugProjectOgawaU/ogSE.cpp: + .text start:0x8030C9B0 end:0x8030D2B8 + .rodata start:0x8048E030 end:0x8048E078 + .sbss start:0x80515E28 end:0x80515E30 + +plugProjectOgawaU/ogCounterDay.cpp: + .text start:0x8030D2B8 end:0x8030D790 + .data start:0x804D81F8 end:0x804D8228 + +plugProjectOgawaU/testScene.cpp: + .text start:0x8030D790 end:0x8030D868 + .data start:0x804D8228 end:0x804D8240 + +plugProjectOgawaU/testObj.cpp: + .text start:0x8030D868 end:0x8030DA00 + .rodata start:0x8048E078 end:0x8048E090 + .data start:0x804D8240 end:0x804D8288 + +plugProjectOgawaU/ogSceneGround.cpp: + .text start:0x8030DA00 end:0x8030DEB8 + .rodata start:0x8048E090 end:0x8048E110 + .data start:0x804D8288 end:0x804D82D8 + .sbss start:0x80515E30 end:0x80515E38 + .sdata2 start:0x8051D6D8 end:0x8051D6F0 + +plugProjectOgawaU/ogObjGround.cpp: + .text start:0x8030DEB8 end:0x8030E958 + .ctors start:0x8047312C end:0x80473130 + .rodata start:0x8048E110 end:0x8048E1A8 + .data start:0x804D82D8 end:0x804D8360 + .bss start:0x80513C18 end:0x80513C40 align:4 common + .sbss start:0x80515E38 end:0x80515E40 + .sdata2 start:0x8051D6F0 end:0x8051D738 + +plugProjectOgawaU/ogCopyPane.cpp: + .text start:0x8030E958 end:0x8030EF88 + .sdata2 start:0x8051D738 end:0x8051D740 + +plugProjectOgawaU/ogBloGroup.cpp: + .text start:0x8030EF88 end:0x8030F31C + .data start:0x804D8360 end:0x804D8388 + +plugProjectOgawaU/DispMemberBase.cpp: + .text start:0x8030F31C end:0x8030F600 + +plugProjectOgawaU/ogLib2D.cpp: + .text start:0x8030F600 end:0x8030F6F0 + .data start:0x804D8388 end:0x804D8398 + .sbss start:0x80515E40 end:0x80515E48 + +plugProjectOgawaU/ogObjSMenuMap.cpp: + .text start:0x8030F6F0 end:0x80312BFC + .ctors start:0x80473130 end:0x80473134 + .rodata start:0x8048E1A8 end:0x8048E300 + .data start:0x804D8398 end:0x804D8520 + .bss start:0x80513C40 end:0x80513C90 align:4 common + .sbss start:0x80515E48 end:0x80515E58 + .sdata2 start:0x8051D740 end:0x8051D828 + +plugProjectOgawaU/ogSceneSMenuMap.cpp: + .text start:0x80312BFC end:0x80312EF8 + .ctors start:0x80473134 end:0x80473138 + .rodata start:0x8048E300 end:0x8048E438 + .data start:0x804D8520 end:0x804D8640 + .sbss start:0x80515E58 end:0x80515E60 + .sdata2 start:0x8051D828 end:0x8051D830 + +plugProjectOgawaU/ogObjSMenuItem.cpp: + .text start:0x80312EF8 end:0x80313F4C + .ctors start:0x80473138 end:0x8047313C + .rodata start:0x8048E438 end:0x8048E550 + .data start:0x804D8640 end:0x804D8778 + .bss start:0x80513C90 end:0x80513CB0 align:4 common + .sdata2 start:0x8051D830 end:0x8051D858 + +plugProjectOgawaU/ogSceneSMenuItem.cpp: + .text start:0x80313F4C end:0x803140B4 + .rodata start:0x8048E550 end:0x8048E578 + .data start:0x804D8778 end:0x804D8838 + +plugProjectOgawaU/ogSceneSMenuPause.cpp: + .text start:0x803140B4 end:0x80314238 + .ctors start:0x8047313C end:0x80473140 + .rodata start:0x8048E578 end:0x8048E5A8 + .data start:0x804D8838 end:0x804D8908 + .sbss start:0x80515E60 end:0x80515E68 + +plugProjectOgawaU/ogObjSMenuPause.cpp: + .text start:0x80314238 end:0x80316210 + .ctors start:0x80473140 end:0x80473144 + .rodata start:0x8048E5A8 end:0x8048E658 + .data start:0x804D8908 end:0x804D89B0 + .bss start:0x80513CB0 end:0x80513CF4 align:4 common + .sdata2 start:0x8051D858 end:0x8051D880 + +plugProjectOgawaU/ogObjSMenuBase.cpp: + .text start:0x80316210 end:0x8031741C + .ctors start:0x80473144 end:0x80473148 + .rodata start:0x8048E658 end:0x8048E700 + .data start:0x804D89B0 end:0x804D8A88 + .bss start:0x80513CF4 end:0x80513D10 align:4 common + .sbss start:0x80515E68 end:0x80515E70 + .sdata2 start:0x8051D880 end:0x8051D8D0 + +plugProjectOgawaU/ogObjCourseName.cpp: + .text start:0x8031741C end:0x80317F28 + .ctors start:0x80473148 end:0x8047314C + .rodata start:0x8048E700 end:0x8048E778 + .data start:0x804D8A88 end:0x804D8B00 + .bss start:0x80513D10 end:0x80513D20 align:4 common + .sdata2 start:0x8051D8D0 end:0x8051D8F8 + +plugProjectOgawaU/ogUtil.cpp: + .text start:0x80317F28 end:0x80318050 + .ctors start:0x8047314C end:0x80473150 + .rodata start:0x8048E778 end:0x8048E790 + .data start:0x804D8B00 end:0x804D8B28 + .sbss start:0x80515E70 end:0x80515E78 + .sdata2 start:0x8051D8F8 end:0x8051D930 + +plugProjectOgawaU/ogSceneCourseName.cpp: + .text start:0x80318050 end:0x80318244 + .rodata start:0x8048E790 end:0x8048E990 + .data start:0x804D8B28 end:0x804D8BE8 + .sdata2 start:0x8051D930 end:0x8051D938 + +plugProjectOgawaU/ogObjKantei.cpp: + .text start:0x80318244 end:0x80319BDC + .ctors start:0x80473150 end:0x80473154 + .rodata start:0x8048E990 end:0x8048EAB8 + .data start:0x804D8BE8 end:0x804D8CB8 + .bss start:0x80513D20 end:0x80513D60 align:4 common + .sdata2 start:0x8051D938 end:0x8051D980 + +plugProjectOgawaU/ogSceneKantei.cpp: + .text start:0x80319BDC end:0x80319CC4 + .rodata start:0x8048EAB8 end:0x8048EAD8 + .data start:0x804D8CB8 end:0x804D8D08 + +plugProjectOgawaU/ogObjSpecialItem.cpp: + .text start:0x80319CC4 end:0x8031A2A0 + .rodata start:0x8048EAD8 end:0x8048EB78 + .data start:0x804D8D08 end:0x804D8D80 + .sdata2 start:0x8051D980 end:0x8051D998 + +plugProjectOgawaU/ogSceneSpecialItem.cpp: + .text start:0x8031A2A0 end:0x8031A3C8 + .rodata start:0x8048EB78 end:0x8048EBA8 + .data start:0x804D8D80 end:0x804D8DD0 + +plugProjectOgawaU/ogObjFloor.cpp: + .text start:0x8031A3C8 end:0x8031BE60 + .ctors start:0x80473154 end:0x80473158 + .rodata start:0x8048EBA8 end:0x8048EC80 + .data start:0x804D8DD0 end:0x804D8E78 + .bss start:0x80513D60 end:0x80513DDC align:4 common + .sdata2 start:0x8051D998 end:0x8051DBB8 + +plugProjectOgawaU/ogSceneFloor.cpp: + .text start:0x8031BE60 end:0x8031C008 + .rodata start:0x8048EC80 end:0x8048ED18 + .data start:0x804D8E78 end:0x804D8EC8 + .sdata2 start:0x8051DBB8 end:0x8051DBC0 + +plugProjectOgawaU/ogObjCave.cpp: + .text start:0x8031C008 end:0x8031CC90 + .ctors start:0x80473158 end:0x8047315C + .rodata start:0x8048ED18 end:0x8048EDB8 + .data start:0x804D8EC8 end:0x804D8F50 + .bss start:0x80513DDC end:0x80513E28 align:4 common + .sbss start:0x80515E78 end:0x80515E80 + .sdata2 start:0x8051DBC0 end:0x8051DC10 + +plugProjectOgawaU/ogSceneCave.cpp: + .text start:0x8031CC90 end:0x8031CD80 + .rodata start:0x8048EDB8 end:0x8048EDD8 + .data start:0x804D8F50 end:0x804D8FA0 + +plugProjectOgawaU/ogObjAnaDemo.cpp: + .text start:0x8031CD80 end:0x8031EA58 + .ctors start:0x8047315C end:0x80473160 + .rodata start:0x8048EDD8 end:0x8048EE98 + .data start:0x804D8FA0 end:0x804D9470 + .bss start:0x80513E28 end:0x80513E38 align:4 common + .sdata2 start:0x8051DC10 end:0x8051DC48 + +plugProjectOgawaU/ogSceneAnaDemo.cpp: + .text start:0x8031EA58 end:0x8031EBE8 + .rodata start:0x8048EE98 end:0x8048EEF0 + .data start:0x804D9470 end:0x804D94C0 + +plugProjectOgawaU/ogObjChallenge2P.cpp: + .text start:0x8031EBE8 end:0x8031FD04 + .ctors start:0x80473160 end:0x80473164 + .rodata start:0x8048EEF0 end:0x8048EF88 + .data start:0x804D94C0 end:0x804D9540 + .bss start:0x80513E38 end:0x80513EC8 align:4 common + .sdata2 start:0x8051DC48 end:0x8051DC88 + +plugProjectOgawaU/ogSceneChallenge2P.cpp: + .text start:0x8031FD04 end:0x8031FF44 + .rodata start:0x8048EF88 end:0x8048EFE0 + .data start:0x804D9540 end:0x804D9598 + +plugProjectOgawaU/ogObjContena.cpp: + .text start:0x8031FF44 end:0x80321F08 + .ctors start:0x80473164 end:0x80473168 + .rodata start:0x8048EFE0 end:0x8048F140 + .data start:0x804D9598 end:0x804D9610 + .bss start:0x80513EC8 end:0x80513F0C align:4 common + .sbss start:0x80515E80 end:0x80515E88 + .sdata2 start:0x8051DC88 end:0x8051DD08 + +plugProjectOgawaU/ogSceneContena.cpp: + .text start:0x80321F08 end:0x8032208C + .rodata start:0x8048F140 end:0x8048F160 + .data start:0x804D9610 end:0x804D9660 + +plugProjectOgawaU/ogObjSMenuPauseDoukutu.cpp: + .text start:0x8032208C end:0x80323584 + .ctors start:0x80473168 end:0x8047316C + .rodata start:0x8048F160 end:0x8048F240 + .data start:0x804D9660 end:0x804D9708 + .bss start:0x80513F0C end:0x80513F18 align:4 common + .sdata2 start:0x8051DD08 end:0x8051DD28 + +plugProjectOgawaU/ogSceneSMenuPauseDoukutu.cpp: + .text start:0x80323584 end:0x80323798 + .ctors start:0x8047316C end:0x80473170 + .rodata start:0x8048F240 end:0x8048F280 + .data start:0x804D9708 end:0x804D97D8 + .sbss start:0x80515E88 end:0x80515E90 + +plugProjectOgawaU/ogObjUfo.cpp: + .text start:0x80323798 end:0x803248F4 + .ctors start:0x80473170 end:0x80473174 + .rodata start:0x8048F280 end:0x8048F2C8 + .data start:0x804D97D8 end:0x804D9850 + .bss start:0x80513F18 end:0x80513F40 align:4 common + .sdata2 start:0x8051DD28 end:0x8051DD68 + +plugProjectOgawaU/ogSceneUfo.cpp: + .text start:0x803248F4 end:0x80324A54 + .rodata start:0x8048F2C8 end:0x8048F2E8 + .data start:0x804D9850 end:0x804D98A0 + +plugProjectOgawaU/ogObjSave.cpp: + .text start:0x80324A54 end:0x80324DB4 + .rodata start:0x8048F2E8 end:0x8048F318 + .data start:0x804D98A0 end:0x804D9918 + .sdata2 start:0x8051DD68 end:0x8051DD70 + +plugProjectOgawaU/ogSceneSave.cpp: + .text start:0x80324DB4 end:0x80324F2C + .rodata start:0x8048F318 end:0x8048F328 + .data start:0x804D9918 end:0x804D9968 + .sdata2 start:0x8051DD70 end:0x8051DD78 + +plugProjectOgawaU/ogObjFinalMsg.cpp: + .text start:0x80324F2C end:0x803258E8 + .rodata start:0x8048F328 end:0x8048F338 + .data start:0x804D9968 end:0x804D99E0 + .sdata2 start:0x8051DD78 end:0x8051DD98 + +plugProjectOgawaU/ogSceneFinalMsg.cpp: + .text start:0x803258E8 end:0x80325A40 + .rodata start:0x8048F338 end:0x8048F368 + .data start:0x804D99E0 end:0x804D9A30 + +plugProjectOgawaU/ogObjVs.cpp: + .text start:0x80325A40 end:0x80327C5C + .ctors start:0x80473174 end:0x80473178 + .rodata start:0x8048F368 end:0x8048F410 + .data start:0x804D9A30 end:0x804D9AB8 + .bss start:0x80513F40 end:0x80513F74 align:4 common + .sdata2 start:0x8051DD98 end:0x8051DE28 + +plugProjectOgawaU/ogSceneVs.cpp: + .text start:0x80327C5C end:0x80327D48 + .rodata start:0x8048F410 end:0x8048F428 + .data start:0x804D9AB8 end:0x804D9B08 + +plugProjectOgawaU/ogObjChallenge1P.cpp: + .text start:0x80327D48 end:0x80328C30 + .ctors start:0x80473178 end:0x8047317C + .rodata start:0x8048F428 end:0x8048F4D0 + .data start:0x804D9B08 end:0x804D9B90 + .bss start:0x80513F74 end:0x80513FE0 align:4 common + .sbss start:0x80515E90 end:0x80515E98 + .sdata2 start:0x8051DE28 end:0x8051DE68 + +plugProjectOgawaU/ogSceneChallenge1P.cpp: + .text start:0x80328C30 end:0x80328E04 + .rodata start:0x8048F4D0 end:0x8048F510 + .data start:0x804D9B90 end:0x804D9BE8 + +plugProjectOgawaU/ogScaleMgr.cpp: + .text start:0x80328E04 end:0x80329190 + .sdata2 start:0x8051DE68 end:0x8051DE90 + +plugProjectOgawaU/ogObjSMenuPauseVs.cpp: + .text start:0x80329190 end:0x80329CFC + .rodata start:0x8048F510 end:0x8048F520 + .data start:0x804D9BE8 end:0x804D9CA0 + .sdata2 start:0x8051DE90 end:0x8051DEA8 + +plugProjectOgawaU/ogSceneSMenuPauseVs.cpp: + .text start:0x80329CFC end:0x80329F18 + .ctors start:0x8047317C end:0x80473180 + .rodata start:0x8048F520 end:0x8048F550 + .data start:0x804D9CA0 end:0x804D9D00 + .sbss start:0x80515E98 end:0x80515EA0 + +plugProjectOgawaU/ogFuriko.cpp: + .text start:0x80329F18 end:0x8032A754 + .rodata start:0x8048F550 end:0x8048F578 + .data start:0x804D9D00 end:0x804D9D20 + .sdata2 start:0x8051DEA8 end:0x8051DEC8 + +plugProjectOgawaU/ogCounterSlot.cpp: + .text start:0x8032A754 end:0x8032B340 + .rodata start:0x8048F578 end:0x8048F5A8 + .data start:0x804D9D20 end:0x804D9D50 + .sdata2 start:0x8051DEC8 end:0x8051DF08 + +plugProjectOgawaU/ogObjWorldMapInfoWindow0.cpp: + .text start:0x8032B340 end:0x8032BAA4 + .rodata start:0x8048F5A8 end:0x8048F608 + .data start:0x804D9D50 end:0x804D9E20 + .sdata2 start:0x8051DF08 end:0x8051DF18 + +plugProjectOgawaU/ogSceneWorldMapInfoWindow0.cpp: + .text start:0x8032BAA4 end:0x8032BC48 + .ctors start:0x80473180 end:0x80473184 + .rodata start:0x8048F608 end:0x8048F648 + .data start:0x804D9E20 end:0x804D9E80 + .sbss start:0x80515EA0 end:0x80515EA8 + +plugProjectOgawaU/ogObjWorldMapInfoWindow1.cpp: + .text start:0x8032BC48 end:0x8032C208 + .rodata start:0x8048F648 end:0x8048F670 + .data start:0x804D9E80 end:0x804D9F50 + .sdata2 start:0x8051DF18 end:0x8051DF28 + +plugProjectOgawaU/ogSceneWorldMapInfoWindow1.cpp: + .text start:0x8032C208 end:0x8032C3AC + .ctors start:0x80473184 end:0x80473188 + .rodata start:0x8048F670 end:0x8048F6B0 + .data start:0x804D9F50 end:0x804D9FB0 + .sbss start:0x80515EA8 end:0x80515EB0 + +plugProjectOgawaU/ogTotalPokoScreen.cpp: + .text start:0x8032C3AC end:0x8032C8A0 + .data start:0x804D9FB0 end:0x804DA058 + .sdata2 start:0x8051DF28 end:0x8051DF40 + +plugProjectOgawaU/ogObjChallengeBase.cpp: + .text start:0x8032C8A0 end:0x8032CD30 + .ctors start:0x80473188 end:0x8047318C + .data start:0x804DA058 end:0x804DA0E0 + .bss start:0x80513FE0 end:0x80513FFC align:4 common + .sbss start:0x80515EB0 end:0x80515EB8 + .sdata2 start:0x8051DF40 end:0x8051DF50 + +plugProjectOgawaU/ogSceneChallengeBase.cpp: + .text start:0x8032CD30 end:0x8032CE18 + .data start:0x804DA0E0 end:0x804DA138 + .sdata2 start:0x8051DF50 end:0x8051DF60 + +plugProjectOgawaU/ogCallBackPicture.cpp: + .text start:0x8032CE18 end:0x8032D684 + .rodata start:0x8048F6B0 end:0x8048F710 + .data start:0x804DA138 end:0x804DA158 + .sdata2 start:0x8051DF60 end:0x8051DF78 + +plugProjectOgawaU/ogDrawAfter.cpp: + .text start:0x8032D684 end:0x8032D8E8 + .data start:0x804DA158 end:0x804DA178 + +plugProjectOgawaU/ogOtakaraSensor.cpp: + .text start:0x8032D8E8 end:0x8032EA58 + .rodata start:0x8048F710 end:0x8048F7A0 + .data start:0x804DA178 end:0x804DA1C0 + .sdata2 start:0x8051DF78 end:0x8051E008 + +plugProjectOgawaU/ogTitleMsg.cpp: + .text start:0x8032EA58 end:0x8033028C + .data start:0x804DA1C0 end:0x804DA328 + .sbss start:0x80515EB8 end:0x80515EC0 + .sdata2 start:0x8051E008 end:0x8051E070 + .sbss2 start:0x80520EB8 end:0x80520EC0 + +plugProjectOgawaU/ogAngleMgr.cpp: + .text start:0x8033028C end:0x803304F0 + .sdata2 start:0x8051E070 end:0x8051E090 + +plugProjectOgawaU/ogSceneSMenuCont.cpp: + .text start:0x803304F0 end:0x80330658 + .rodata start:0x8048F7A0 end:0x8048F7D0 + .data start:0x804DA328 end:0x804DA3D8 + +plugProjectOgawaU/ogObjSMenuCont.cpp: + .text start:0x80330658 end:0x80330D20 + .ctors start:0x8047318C end:0x80473190 + .rodata start:0x8048F7D0 end:0x8048F848 + .data start:0x804DA3D8 end:0x804DA480 + .sbss start:0x80515EC0 end:0x80515EC8 + .sdata2 start:0x8051E090 end:0x8051E0A0 + +plugProjectHikinoU/PSSeq.cpp: + .text start:0x80330D20 end:0x80333FB0 + .text start:0x80333FB0 end:0x80334070 + .text start:0x80334070 end:0x803341B8 + .text start:0x803341B8 end:0x80334230 + .text start:0x80334230 end:0x80334268 + .text start:0x80334268 end:0x80334268 + .rodata start:0x8048F848 end:0x8048F918 + .data start:0x804DA480 end:0x804DA920 + .sbss start:0x80515EC8 end:0x80515ED0 + .sdata2 start:0x8051E0A0 end:0x8051E0C0 + +plugProjectHikinoU/PSGame.cpp: + .text start:0x80334268 end:0x803380AC + .text start:0x803380AC end:0x803381EC + .text start:0x803381EC end:0x803381FC + .text start:0x803381FC end:0x803381FC + .text start:0x803381FC end:0x80338238 + .text start:0x80338238 end:0x803382EC + .text start:0x803382EC end:0x8033836C + .rodata start:0x8048F918 end:0x8048FE28 + .data start:0x804DA920 end:0x804DAA98 + .bss start:0x80513FFC end:0x8051401C align:4 common + .sbss start:0x80515ED0 end:0x80515ED8 + .sdata2 start:0x8051E0C0 end:0x8051E150 + +plugProjectHikinoU/PSSystemIF.cpp: + .text start:0x8033836C end:0x80338B18 + .text start:0x80338B18 end:0x80338CB4 + .text start:0x80338CB4 end:0x80338CB4 + .text start:0x80338CB4 end:0x80338DB4 + .ctors start:0x80473190 end:0x80473194 + .rodata start:0x8048FE28 end:0x8048FE60 + .data start:0x804DAA98 end:0x804DAAD8 + .sdata start:0x80514BB0 end:0x80514BB8 + .sbss start:0x80515ED8 end:0x80515EE8 + .sdata2 start:0x8051E150 end:0x8051E160 + +plugProjectHikinoU/PSAutoBgm.cpp: + .text start:0x80338DB4 end:0x8033C568 + .text start:0x8033C568 end:0x8033D0DC + .text start:0x8033D0DC end:0x8033D46C + .text start:0x8033D46C end:0x8033D46C + .text start:0x8033D46C end:0x8033D46C + .text start:0x8033D46C end:0x8033D470 + .text start:0x8033D470 end:0x8033D738 + .text start:0x8033D738 end:0x8033D738 + .rodata start:0x8048FE60 end:0x8048FEF0 + .data start:0x804DAAD8 end:0x804DAD68 + .sbss start:0x80515EE8 end:0x80515EF0 + .sdata2 start:0x8051E160 end:0x8051E178 + +plugProjectHikinoU/PSBnkMgr.cpp: + .text start:0x8033D738 end:0x8033DCE0 + .text start:0x8033DCE0 end:0x8033E1F8 + .rodata start:0x8048FEF0 end:0x8048FF20 + .data start:0x804DAD68 end:0x804DAD80 + .sbss start:0x80515EF0 end:0x80515EF8 + +plugProjectHikinoU/PSTaskBase.cpp: + .text start:0x8033E1F8 end:0x8033E5AC + .text start:0x8033E5AC end:0x8033E6B4 + .rodata start:0x8048FF20 end:0x8048FF50 + +plugProjectHikinoU/PSBgmTask.cpp: + .text start:0x8033E6B4 end:0x8033EE98 + .text start:0x8033EE98 end:0x8033EE98 + .rodata start:0x8048FF50 end:0x80490010 + .data start:0x804DAD80 end:0x804DADE8 + .sbss start:0x80515EF8 end:0x80515F00 + .sdata2 start:0x8051E178 end:0x8051E188 + +plugProjectHikinoU/PSCreatureMgr.cpp: + .text start:0x8033EE98 end:0x8033EE9C + +plugProjectHikinoU/PSAutoBgm_MeloArranger.cpp: + .text start:0x8033EE9C end:0x8033F010 + .text start:0x8033F010 end:0x8033F148 + .text start:0x8033F148 end:0x8033F158 + .rodata start:0x80490010 end:0x80490038 + .data start:0x804DADE8 end:0x804DAE40 + +plugProjectHikinoU/PSSe.cpp: + .text start:0x8033F158 end:0x80340770 + .text start:0x80340770 end:0x803407C0 + .text start:0x803407C0 end:0x803407C4 + .text start:0x803407C4 end:0x80340838 + .text start:0x80340838 end:0x80340838 + .rodata start:0x80490038 end:0x80490100 + .data start:0x804DAE40 end:0x804DAEC0 + .sdata start:0x80514BB8 end:0x80514BD0 + .sdata2 start:0x8051E188 end:0x8051E1C0 + +plugProjectHikinoU/PSSeBase.cpp: + .text start:0x80340838 end:0x8034147C + .text start:0x8034147C end:0x8034147C + .rodata start:0x80490100 end:0x80490120 + .data start:0x804DAEC0 end:0x804DAF00 + .sdata2 start:0x8051E1C0 end:0x8051E1D8 + +plugProjectHikinoU/PSScene.cpp: + .text start:0x8034147C end:0x80342248 + .text start:0x80342248 end:0x80342248 + .text start:0x80342248 end:0x80342258 + .text start:0x80342258 end:0x803422A8 + .rodata start:0x80490120 end:0x80490158 + .data start:0x804DAF00 end:0x804DAF40 + .sbss start:0x80515F00 end:0x80515F08 + +plugProjectHikinoU/PSBgmTrack.cpp: + .text start:0x803422A8 end:0x80342E4C + .text start:0x80342E4C end:0x80342E4C + .text start:0x80342E4C end:0x80342EB4 + .rodata start:0x80490158 end:0x80490180 + .data start:0x804DAF40 end:0x804DAFA0 + .sdata2 start:0x8051E1D8 end:0x8051E1F0 + +plugProjectHikinoU/PSDirector.cpp: + .text start:0x80342EB4 end:0x80343EC8 + .text start:0x80343EC8 end:0x80344088 + .rodata start:0x80490180 end:0x804901E8 + .data start:0x804DAFA0 end:0x804DB078 + .sbss start:0x80515F08 end:0x80515F10 + .sdata2 start:0x8051E1F0 end:0x8051E1F8 + +plugProjectMorimuraU/dayEndCount.cpp: + .text start:0x80344088 end:0x80346178 + .rodata start:0x804901E8 end:0x80490280 + .data start:0x804DB078 end:0x804DB2E8 + .sdata start:0x80514BD0 end:0x80514BF8 + .sbss start:0x80515F10 end:0x80515F18 + .sdata2 start:0x8051E1F8 end:0x8051E258 + +plugProjectMorimuraU/hurryUp2D.cpp: + .text start:0x80346178 end:0x80347F48 + .ctors start:0x80473194 end:0x80473198 + .rodata start:0x80490280 end:0x804902F8 + .data start:0x804DB2E8 end:0x804DB4C0 + .sdata start:0x80514BF8 end:0x80514C10 + .sbss start:0x80515F18 end:0x80515F20 + .sdata2 start:0x8051E258 end:0x8051E2D0 + +plugProjectMorimuraU/gameOver2D.cpp: + .text start:0x80347F48 end:0x803491C8 + .rodata start:0x804902F8 end:0x804904E8 + .data start:0x804DB4C0 end:0x804DB8F8 + .sdata2 start:0x8051E2D0 end:0x8051E2F0 + +plugProjectMorimuraU/testBase.cpp: + .text start:0x803491C8 end:0x803493F8 + .data start:0x804DB8F8 end:0x804DB978 + .sbss start:0x80515F20 end:0x80515F28 + .sdata2 start:0x8051E2F0 end:0x8051E300 + +plugProjectMorimuraU/bombState.cpp: + .text start:0x803493F8 end:0x80349D64 + .ctors start:0x80473198 end:0x8047319C + .data start:0x804DB978 end:0x804DBA50 + .sbss start:0x80515F28 end:0x80515F30 + .sdata2 start:0x8051E300 end:0x8051E320 + +plugProjectMorimuraU/bombAnimator.cpp: + .text start:0x80349D64 end:0x80349DD8 + .data start:0x804DBA50 end:0x804DBA78 + +plugProjectMorimuraU/bombMgr.cpp: + .text start:0x80349DD8 end:0x8034A21C + .rodata start:0x804904E8 end:0x80490808 + .data start:0x804DBA78 end:0x804DBB68 + .sdata2 start:0x8051E320 end:0x8051E330 + +plugProjectMorimuraU/bomb.cpp: + .text start:0x8034A21C end:0x8034B3C4 + .data start:0x804DBB68 end:0x804DBEE0 + .sdata2 start:0x8051E330 end:0x8051E370 + +plugProjectMorimuraU/eggState.cpp: + .text start:0x8034B3C4 end:0x8034B63C + .data start:0x804DBEE0 end:0x804DBF60 + .sdata2 start:0x8051E370 end:0x8051E380 + +plugProjectMorimuraU/eggAnimator.cpp: + .text start:0x8034B63C end:0x8034B6B0 + .data start:0x804DBF60 end:0x804DBF88 + +plugProjectMorimuraU/eggMgr.cpp: + .text start:0x8034B6B0 end:0x8034BB30 + .rodata start:0x80490808 end:0x80490B38 + .data start:0x804DBF88 end:0x804DC078 + .sdata2 start:0x8051E380 end:0x8051E388 + +plugProjectMorimuraU/egg.cpp: + .text start:0x8034BB30 end:0x8034C93C + .data start:0x804DC078 end:0x804DC3A8 + .sdata2 start:0x8051E388 end:0x8051E3D0 + +plugProjectMorimuraU/panModokiState.cpp: + .text start:0x8034C93C end:0x8034E94C + .rodata start:0x80490B38 end:0x80490B48 + .data start:0x804DC3A8 end:0x804DC580 + .sdata2 start:0x8051E3D0 end:0x8051E458 + +plugProjectMorimuraU/panModokiAnimator.cpp: + .text start:0x8034E94C end:0x8034E9C0 + .data start:0x804DC580 end:0x804DC5A8 + +plugProjectMorimuraU/panModokiMgr.cpp: + .text start:0x8034E9C0 end:0x8034F5E0 + .rodata start:0x80490B48 end:0x80490EF8 + .data start:0x804DC5A8 end:0x804DCAB8 + .sdata2 start:0x8051E458 end:0x8051E490 + +plugProjectMorimuraU/panModoki.cpp: + .text start:0x8034F5E0 end:0x80353D4C + .ctors start:0x8047319C end:0x804731A0 + .rodata start:0x80490EF8 end:0x80490F18 + .data start:0x804DCAB8 end:0x804DD178 + .sbss start:0x80515F30 end:0x80515F38 + .sdata2 start:0x8051E490 end:0x8051E550 + +plugProjectMorimuraU/plantsMgr.cpp: + .text start:0x80353D4C end:0x80358358 + .rodata start:0x80490F18 end:0x804910D8 + .data start:0x804DD178 end:0x804E0698 + +plugProjectMorimuraU/plantsAnimator.cpp: + .text start:0x80358358 end:0x803583CC + .data start:0x804E0698 end:0x804E06C0 + +plugProjectMorimuraU/plants.cpp: + .text start:0x803583CC end:0x803591BC + .ctors start:0x804731A0 end:0x804731A4 + .rodata start:0x804910D8 end:0x804910F0 + .data start:0x804E06C0 end:0x804E1A00 + .sbss start:0x80515F38 end:0x80515F40 + .sdata2 start:0x8051E550 end:0x8051E568 + +plugProjectMorimuraU/kingChappyState.cpp: + .text start:0x803591BC end:0x8035C288 + .ctors start:0x804731A4 end:0x804731A8 + .rodata start:0x804910F0 end:0x80491130 + .data start:0x804E1A00 end:0x804E1C38 + .sbss start:0x80515F40 end:0x80515F48 + .sdata2 start:0x8051E568 end:0x8051E608 + +plugProjectMorimuraU/kingChappyMgr.cpp: + .text start:0x8035C288 end:0x8035CCE8 + .rodata start:0x80491130 end:0x804915D0 + .data start:0x804E1C38 end:0x804E1D28 + .sdata2 start:0x8051E608 end:0x8051E668 + +plugProjectMorimuraU/kingChappy.cpp: + .text start:0x8035CCE8 end:0x80362618 + .ctors start:0x804731A8 end:0x804731AC + .rodata start:0x804915D0 end:0x80491670 + .data start:0x804E1D28 end:0x804E2348 + .sbss start:0x80515F48 end:0x80515F58 + .sdata2 start:0x8051E668 end:0x8051E780 + +plugProjectMorimuraU/miulinState.cpp: + .text start:0x80362618 end:0x80363EE4 + .rodata start:0x80491670 end:0x804916B0 + .data start:0x804E2348 end:0x804E24B0 + .sdata2 start:0x8051E780 end:0x8051E7F0 + +plugProjectMorimuraU/miulinAnimator.cpp: + .text start:0x80363EE4 end:0x80363F58 + .data start:0x804E24B0 end:0x804E24D8 + +plugProjectMorimuraU/miulinMgr.cpp: + .text start:0x80363F58 end:0x80364454 + .rodata start:0x804916B0 end:0x80491A18 + .data start:0x804E24D8 end:0x804E25C8 + .sdata2 start:0x8051E7F0 end:0x8051E810 + +plugProjectMorimuraU/miulin.cpp: + .text start:0x80364454 end:0x80365FF4 + .rodata start:0x80491A18 end:0x80491A58 + .data start:0x804E25C8 end:0x804E2908 + .sdata2 start:0x8051E810 end:0x8051E870 + +plugProjectMorimuraU/jigumoState.cpp: + .text start:0x80365FF4 end:0x80368858 + .ctors start:0x804731AC end:0x804731B0 + .data start:0x804E2908 end:0x804E2B40 + .sbss start:0x80515F58 end:0x80515F60 + .sdata2 start:0x8051E870 end:0x8051E920 + +plugProjectMorimuraU/jigumoAnimator.cpp: + .text start:0x80368858 end:0x803688CC + .data start:0x804E2B40 end:0x804E2B68 + +plugProjectMorimuraU/jigumoMgr.cpp: + .text start:0x803688CC end:0x80368EA0 + .rodata start:0x80491A58 end:0x80491D98 + .data start:0x804E2B68 end:0x804E2C58 + .sdata2 start:0x8051E920 end:0x8051E960 + +plugProjectMorimuraU/jigumo.cpp: + .text start:0x80368EA0 end:0x8036C194 + .rodata start:0x80491D98 end:0x80491DD8 + .data start:0x804E2C58 end:0x804E2F88 + .sbss start:0x80515F60 end:0x80515F68 + .sdata2 start:0x8051E960 end:0x8051E9F0 + +plugProjectMorimuraU/enemyNestMgr.cpp: + .text start:0x8036C194 end:0x8036CA94 + .ctors start:0x804731B0 end:0x804731B4 + .rodata start:0x80491DD8 end:0x80492170 + .data start:0x804E2F88 end:0x804E3068 + .sbss start:0x80515F68 end:0x80515F70 + +plugProjectMorimuraU/enemyNest.cpp: + .text start:0x8036CA94 end:0x8036CCF0 + .data start:0x804E3068 end:0x804E3390 + .sdata2 start:0x8051E9F0 end:0x8051EA00 + +plugProjectMorimuraU/tamagoMushiState.cpp: + .text start:0x8036CCF0 end:0x8036D914 + .data start:0x804E3390 end:0x804E34B0 + .sdata2 start:0x8051EA00 end:0x8051EA50 + +plugProjectMorimuraU/tamagoMushiAnimator.cpp: + .text start:0x8036D914 end:0x8036D988 + .data start:0x804E34B0 end:0x804E34D8 + +plugProjectMorimuraU/tamagoMushiMgr.cpp: + .text start:0x8036D988 end:0x8036EBA8 + .rodata start:0x80492170 end:0x804924E8 + .data start:0x804E34D8 end:0x804E35E8 + .sdata2 start:0x8051EA50 end:0x8051EAB0 + +plugProjectMorimuraU/tamagoMushi.cpp: + .text start:0x8036EBA8 end:0x80370C08 + .rodata start:0x804924E8 end:0x80492520 + .data start:0x804E35E8 end:0x804E3928 + .sdata2 start:0x8051EAB0 end:0x8051EB20 + +plugProjectMorimuraU/zukan2D.cpp: + .text start:0x80370C08 end:0x8037C9AC + .ctors start:0x804731B4 end:0x804731B8 + .rodata start:0x80492520 end:0x804932E0 + .data start:0x804E3928 end:0x804E4140 + .bss start:0x8051401C end:0x80514030 align:4 common + .sdata start:0x80514C10 end:0x80514C38 + .sbss start:0x80515F70 end:0x80515FB8 + .sdata2 start:0x8051EB20 end:0x8051EC18 + +plugProjectMorimuraU/hiScore2D.cpp: + .text start:0x8037C9AC end:0x80380A2C + .ctors start:0x804731B8 end:0x804731BC + .rodata start:0x804932E0 end:0x804936A0 + .data start:0x804E4140 end:0x804E4380 + .bss start:0x80514030 end:0x80514044 align:4 common + .sdata start:0x80514C38 end:0x80514C48 + .sbss start:0x80515FB8 end:0x80515FC0 + .sdata2 start:0x8051EC18 end:0x8051ECC8 + +plugProjectMorimuraU/umiMushiState.cpp: + .text start:0x80380A2C end:0x803826C8 + .ctors start:0x804731BC end:0x804731C0 + .rodata start:0x804936A0 end:0x804936D8 + .data start:0x804E4380 end:0x804E4540 + .sbss start:0x80515FC0 end:0x80515FC8 + .sdata2 start:0x8051ECC8 end:0x8051ED40 + +plugProjectMorimuraU/umiMushiAnimator.cpp: + .text start:0x803826C8 end:0x8038273C + .data start:0x804E4540 end:0x804E4568 + +plugProjectMorimuraU/umiMushiMgr.cpp: + .text start:0x8038273C end:0x80383100 + .rodata start:0x804936D8 end:0x80493AE8 + .data start:0x804E4568 end:0x804E4658 + .sdata2 start:0x8051ED40 end:0x8051ED90 + +plugProjectMorimuraU/umiMushi.cpp: + .text start:0x80383100 end:0x80387718 + .rodata start:0x80493AE8 end:0x80493C08 + .data start:0x804E4658 end:0x804E4AA8 + .sbss start:0x80515FC8 end:0x80515FD0 + .sdata2 start:0x8051ED90 end:0x8051EE10 + +plugProjectMorimuraU/shijimiChouState.cpp: + .text start:0x80387718 end:0x8038844C + .data start:0x804E4AA8 end:0x804E4BC8 + .sdata2 start:0x8051EE10 end:0x8051EE78 + +plugProjectMorimuraU/shijimiChouAnimator.cpp: + .text start:0x8038844C end:0x803884C0 + .data start:0x804E4BC8 end:0x804E4BF0 + +plugProjectMorimuraU/shijimiChouMgr.cpp: + .text start:0x803884C0 end:0x80389634 + .rodata start:0x80493C08 end:0x80493F80 + .data start:0x804E4BF0 end:0x804E4CE0 + .sdata2 start:0x8051EE78 end:0x8051EEF8 + +plugProjectMorimuraU/shijimiChou.cpp: + .text start:0x80389634 end:0x8038C488 + .ctors start:0x804731C0 end:0x804731C4 + .rodata start:0x80493F80 end:0x80493FC0 + .data start:0x804E4CE0 end:0x804E5030 + .sbss start:0x80515FD0 end:0x80515FF8 + .sdata2 start:0x8051EEF8 end:0x8051EF88 + +plugProjectMorimuraU/challengeSelect2D.cpp: + .text start:0x8038C488 end:0x80393348 + .ctors start:0x804731C4 end:0x804731C8 + .rodata start:0x80493FC0 end:0x80494720 + .data start:0x804E5030 end:0x804E51A8 + .sdata start:0x80514C48 end:0x80514C78 + .sbss start:0x80515FF8 end:0x80516018 + .sdata2 start:0x8051EF88 end:0x8051F080 + +plugProjectMorimuraU/challengeResult2D.cpp: + .text start:0x80393348 end:0x8039982C + .rodata start:0x80494720 end:0x80494B18 + .data start:0x804E51A8 end:0x804E5328 + .sdata start:0x80514C78 end:0x80514CA0 + .sbss start:0x80516018 end:0x80516030 + .sdata2 start:0x8051F080 end:0x8051F170 + +plugProjectMorimuraU/vsSelect2D.cpp: + .text start:0x8039982C end:0x803A102C + .ctors start:0x804731C8 end:0x804731CC + .rodata start:0x80494B18 end:0x804951F8 + .data start:0x804E5328 end:0x804E56F0 + .bss start:0x80514044 end:0x80514058 align:4 common + .sdata start:0x80514CA0 end:0x80514CD0 + .sbss start:0x80516030 end:0x80516048 + .sdata2 start:0x8051F170 end:0x8051F2C0 + +plugProjectMorimuraU/mrUtil.cpp: + .text start:0x803A102C end:0x803A2154 + .rodata start:0x804951F8 end:0x80495210 + .data start:0x804E56F0 end:0x804E58C0 + .sdata2 start:0x8051F2C0 end:0x8051F2F8 + +plugProjectMorimuraU/scrollList.cpp: + .text start:0x803A2154 end:0x803A3644 + .rodata start:0x80495210 end:0x80495230 + .data start:0x804E58C0 end:0x804E5980 + .sdata start:0x80514CD0 end:0x80514CD8 + .sbss start:0x80516048 end:0x80516050 + .sdata2 start:0x8051F2F8 end:0x8051F358 + +plugProjectMorimuraU/mrWindow.cpp: + .text start:0x803A3644 end:0x803A3AF0 + .data start:0x804E5980 end:0x804E5A50 + .sdata2 start:0x8051F358 end:0x8051F370 + +plugProjectMorimuraU/blackManState.cpp: + .text start:0x803A3AF0 end:0x803A5354 + .ctors start:0x804731CC end:0x804731D0 + .rodata start:0x80495230 end:0x80495258 + .data start:0x804E5A50 end:0x804E5BE8 + .sbss start:0x80516050 end:0x80516058 + .sdata2 start:0x8051F370 end:0x8051F3E8 + +plugProjectMorimuraU/blackManAnimator.cpp: + .text start:0x803A5354 end:0x803A53C8 + .data start:0x804E5BE8 end:0x804E5C10 + +plugProjectMorimuraU/blackManMgr.cpp: + .text start:0x803A53C8 end:0x803A5DB0 + .rodata start:0x80495258 end:0x80495670 + .data start:0x804E5C10 end:0x804E5D00 + .sdata2 start:0x8051F3E8 end:0x8051F438 + +plugProjectMorimuraU/blackMan.cpp: + .text start:0x803A5DB0 end:0x803AB864 + .ctors start:0x804731D0 end:0x804731D4 + .rodata start:0x80495670 end:0x804957D0 + .data start:0x804E5D00 end:0x804E61D8 + .sbss start:0x80516058 end:0x80516068 + .sdata2 start:0x8051F438 end:0x8051F568 + +plugProjectMorimuraU/tyreState.cpp: + .text start:0x803AB864 end:0x803ABDEC + .data start:0x804E61D8 end:0x804E62B0 + .sdata2 start:0x8051F568 end:0x8051F598 + +plugProjectMorimuraU/tyreAnimator.cpp: + .text start:0x803ABDEC end:0x803ABE60 + .data start:0x804E62B0 end:0x804E62D8 + +plugProjectMorimuraU/tyreMgr.cpp: + .text start:0x803ABE60 end:0x803AC2F0 + .rodata start:0x804957D0 end:0x80495820 + .data start:0x804E62D8 end:0x804E63C8 + .sdata2 start:0x8051F598 end:0x8051F5B8 + +plugProjectMorimuraU/tyre.cpp: + .text start:0x803AC2F0 end:0x803AE8B0 + .ctors start:0x804731D4 end:0x804731D8 + .rodata start:0x80495820 end:0x80495880 + .data start:0x804E63C8 end:0x804E6778 + .sbss start:0x80516068 end:0x80516078 + .sdata2 start:0x8051F5B8 end:0x8051F610 + +plugProjectEbisawaU/efxBase.cpp: + .text start:0x803AE8B0 end:0x803B2D84 + .ctors start:0x804731D8 end:0x804731DC + .rodata start:0x80495880 end:0x80495898 + .data start:0x804E6778 end:0x804E6B68 + .bss start:0x804F7C10 end:0x804F7C20 + .sbss start:0x80516078 end:0x80516080 + .sdata2 start:0x8051F610 end:0x8051F620 + +plugProjectEbisawaU/efxEnemy.cpp: + .text start:0x803B2D84 end:0x803B57BC + .rodata start:0x80495898 end:0x80495988 + .data start:0x804E6B68 end:0x804E7058 + .sdata2 start:0x8051F620 end:0x8051F650 + +plugProjectEbisawaU/efxObject.cpp: + .text start:0x803B57BC end:0x803B66B0 + .rodata start:0x80495988 end:0x80495A28 + .data start:0x804E7058 end:0x804E71A0 + .sdata2 start:0x8051F650 end:0x8051F670 + +plugProjectEbisawaU/efxPikmin.cpp: + .text start:0x803B66B0 end:0x803B9064 + .rodata start:0x80495A28 end:0x80495A70 + .data start:0x804E71A0 end:0x804E7368 + .sdata2 start:0x8051F670 end:0x8051F6C0 + +plugProjectEbisawaU/particle2dMgr.cpp: + .text start:0x803B9064 end:0x803B9830 + .ctors start:0x804731DC end:0x804731E0 + .rodata start:0x80495A70 end:0x80495B48 + .data start:0x804E7368 end:0x804E7390 + .sbss start:0x80516080 end:0x80516090 + .sdata2 start:0x8051F6C0 end:0x8051F6D8 + +plugProjectEbisawaU/efx2dBase.cpp: + .text start:0x803B9830 end:0x803BA18C + .rodata start:0x80495B48 end:0x80495B68 + .data start:0x804E7390 end:0x804E74A0 + .sdata2 start:0x8051F6D8 end:0x8051F6E0 + +plugProjectEbisawaU/efx2dEffect.cpp: + .text start:0x803BA18C end:0x803BAF70 + .rodata start:0x80495B68 end:0x80495BC8 + .data start:0x804E74A0 end:0x804E7688 + .sdata2 start:0x8051F6E0 end:0x8051F6F0 + +plugProjectEbisawaU/particleMgr.cpp: + .text start:0x803BAF70 end:0x803BCD18 + .ctors start:0x804731E0 end:0x804731E4 + .rodata start:0x80495BC8 end:0x80495C58 + .data start:0x804E7688 end:0x804E7828 + .sdata start:0x80514CD8 end:0x80514CE8 + .sbss start:0x80516090 end:0x805160A0 + .sdata2 start:0x8051F6F0 end:0x8051F6F8 + +plugProjectEbisawaU/ebiP2Title.cpp: + .text start:0x803BCD18 end:0x803C0AF8 + .ctors start:0x804731E4 end:0x804731E8 + .rodata start:0x80495C58 end:0x804961D8 + .data start:0x804E7828 end:0x804E79B8 + .sbss start:0x805160A0 end:0x805160B8 + .sdata2 start:0x8051F6F8 end:0x8051F838 + +plugProjectEbisawaU/ebiP2TitleUnit.cpp: + .text start:0x803C0AF8 end:0x803C1A3C + .ctors start:0x804731E8 end:0x804731EC + .rodata start:0x804961D8 end:0x80496270 + .data start:0x804E79B8 end:0x804E79C8 + .sbss start:0x805160B8 end:0x805160C0 + .sdata2 start:0x8051F838 end:0x8051F880 + +plugProjectEbisawaU/ebiUtility.cpp: + .text start:0x803C1A3C end:0x803C1EBC + .sdata2 start:0x8051F880 end:0x8051F890 + +plugProjectEbisawaU/ebiP2TitleCamera.cpp: + .text start:0x803C1EBC end:0x803C1F58 + .ctors start:0x804731EC end:0x804731F0 + .data start:0x804E79C8 end:0x804E79D8 + .sbss start:0x805160C0 end:0x805160C8 + .sdata2 start:0x8051F890 end:0x8051F8A0 + +plugProjectEbisawaU/ebiP2TitleLight.cpp: + .text start:0x803C1F58 end:0x803C2244 + .ctors start:0x804731F0 end:0x804731F4 + .data start:0x804E79D8 end:0x804E7A08 + .sbss start:0x805160C8 end:0x805160D0 + .sdata2 start:0x8051F8A0 end:0x8051F8A8 + +plugProjectEbisawaU/ebiScreenMemoryCard.cpp: + .text start:0x803C2244 end:0x803C4E0C + .rodata start:0x80496270 end:0x80496378 + .data start:0x804E7A08 end:0x804E7AC8 + .sdata2 start:0x8051F8A8 end:0x8051F8D0 + +plugProjectEbisawaU/efxTPkEffectMgr.cpp: + .text start:0x803C4E0C end:0x803C7834 + .rodata start:0x80496378 end:0x804963C8 + .data start:0x804E7AC8 end:0x804E7B50 + .sbss start:0x805160D0 end:0x805160D8 + +plugProjectEbisawaU/efxEnemyGeneral.cpp: + .text start:0x803C7834 end:0x803C9D10 + .rodata start:0x804963C8 end:0x80496408 + .data start:0x804E7B50 end:0x804E8750 + .sdata2 start:0x8051F8D0 end:0x8051F9D8 + +plugProjectEbisawaU/ebi3DGraph.cpp: + .text start:0x803C9D10 end:0x803C9FF4 + .rodata start:0x80496408 end:0x80496428 + .sdata2 start:0x8051F9D8 end:0x8051F9F0 + +plugProjectEbisawaU/ebiGeometry.cpp: + .text start:0x803C9FF4 end:0x803CA358 + .sdata2 start:0x8051F9F0 end:0x8051F9F8 + +plugProjectEbisawaU/ebi2DGraph.cpp: + .text start:0x803CA358 end:0x803CADC8 + .rodata start:0x80496428 end:0x80496448 + .sdata2 start:0x8051F9F8 end:0x8051FA00 + +plugProjectEbisawaU/ebiScreenOption.cpp: + .text start:0x803CADC8 end:0x803CD6D8 + .rodata start:0x80496448 end:0x80496520 + .data start:0x804E8750 end:0x804E87D8 + .sdata2 start:0x8051FA00 end:0x8051FA58 + +plugProjectEbisawaU/ebiScreenProgre.cpp: + .text start:0x803CD6D8 end:0x803CE8F8 + .rodata start:0x80496520 end:0x804965A0 + .data start:0x804E87D8 end:0x804E87E8 + .sdata2 start:0x8051FA58 end:0x8051FA78 + +plugProjectEbisawaU/ebiOptionMgr.cpp: + .text start:0x803CE8F8 end:0x803D068C + .rodata start:0x804965A0 end:0x80496678 + .data start:0x804E87E8 end:0x804E89E8 + .sdata2 start:0x8051FA78 end:0x8051FA98 + +plugProjectEbisawaU/ebi2DCallBack.cpp: + .text start:0x803D068C end:0x803D1104 + .rodata start:0x80496678 end:0x80496698 + .data start:0x804E89E8 end:0x804E8AA0 + .sdata2 start:0x8051FA98 end:0x8051FAC0 + +plugProjectEbisawaU/ebiCardMgr.cpp: + .text start:0x803D1104 end:0x803D3850 + .rodata start:0x80496698 end:0x804968F8 + .data start:0x804E8AA0 end:0x804E8C90 + .sdata2 start:0x8051FAC0 end:0x8051FAE0 + +plugProjectEbisawaU/ebiScreenFramework.cpp: + .text start:0x803D3850 end:0x803D3B10 + .rodata start:0x804968F8 end:0x80496908 + .data start:0x804E8C90 end:0x804E8CE0 + +plugProjectEbisawaU/ebiScreenPushStart.cpp: + .text start:0x803D3B10 end:0x803D4244 + .rodata start:0x80496908 end:0x80496AE8 + .data start:0x804E8CE0 end:0x804E8D30 + .sdata2 start:0x8051FAE0 end:0x8051FB18 + +plugProjectEbisawaU/ebiScreenFileSelect.cpp: + .text start:0x803D4244 end:0x803D9724 + .text start:0x803D9724 end:0x803D9724 + .text start:0x803D9724 end:0x803D9824 + .text start:0x803D9824 end:0x803D9A64 + .text start:0x803D9A64 end:0x803D9BFC + .text start:0x803D9BFC end:0x803D9BFC + .text start:0x803D9BFC end:0x803D9BFC + .text start:0x803D9BFC end:0x803D9C14 + .text start:0x803D9C14 end:0x803D9C14 + .text start:0x803D9C14 end:0x803D9C14 + .text start:0x803D9C14 end:0x803D9CB0 + .text start:0x803D9CB0 end:0x803D9CB0 + .text start:0x803D9CB0 end:0x803D9CE0 + .rodata start:0x80496AE8 end:0x80496D38 + .data start:0x804E8D30 end:0x804E8F30 + .sdata2 start:0x8051FB18 end:0x8051FB68 + +plugProjectEbisawaU/ebiScreenTitleMenu.cpp: + .text start:0x803D9CE0 end:0x803DB190 + .rodata start:0x80496D38 end:0x80496DD0 + .data start:0x804E8F30 end:0x804E8F80 + .sdata2 start:0x8051FB68 end:0x8051FBA0 + +plugProjectEbisawaU/ebiSaveMgr.cpp: + .text start:0x803DB190 end:0x803DD0A8 + .rodata start:0x80496DD0 end:0x80496E70 + .data start:0x804E8F80 end:0x804E9278 + .sbss start:0x805160D8 end:0x805160E0 + .sdata2 start:0x8051FBA0 end:0x8051FBC8 + +plugProjectEbisawaU/ebiScreenSaveMenu.cpp: + .text start:0x803DD0A8 end:0x803DE2C0 + .rodata start:0x80496E70 end:0x80496F18 + .data start:0x804E9278 end:0x804E92C8 + .sdata2 start:0x8051FBC8 end:0x8051FBF8 + +plugProjectEbisawaU/ebiScreenFileSelect_Mgr.cpp: + .text start:0x803DE2C0 end:0x803E04A0 + .text start:0x803E04A0 end:0x803E04A0 + .text start:0x803E04A0 end:0x803E04B4 + .text start:0x803E04B4 end:0x803E12E0 + .text start:0x803E12E0 end:0x803E12E0 + .text start:0x803E12E0 end:0x803E12E0 + .text start:0x803E12E0 end:0x803E12E0 + .text start:0x803E12E0 end:0x803E12E0 + .rodata start:0x80496F18 end:0x80497010 + .data start:0x804E92C8 end:0x804E9678 + .sdata2 start:0x8051FBF8 end:0x8051FC18 + +plugProjectEbisawaU/ebiFileSelectMgr.cpp: + .text start:0x803E12E0 end:0x803E2520 + .rodata start:0x80497010 end:0x80497118 + .data start:0x804E9678 end:0x804E98C8 + .sbss start:0x805160E0 end:0x805160E8 + .sdata2 start:0x8051FC18 end:0x8051FC20 + +plugProjectEbisawaU/ebiCardMgr_Load.cpp: + .text start:0x803E2520 end:0x803E396C + .rodata start:0x80497118 end:0x80497138 + .data start:0x804E98C8 end:0x804E9DF0 + +plugProjectEbisawaU/ebiP2TitleCoordMgr.cpp: + .text start:0x803E396C end:0x803E3DE8 + .rodata start:0x80497138 end:0x80497158 + .sdata2 start:0x8051FC20 end:0x8051FC60 + +plugProjectEbisawaU/ebiP2TitlePikmin.cpp: + .text start:0x803E3DE8 end:0x803E6BDC + .text start:0x803E6BDC end:0x803E7330 + .text start:0x803E7330 end:0x803E7330 + .text start:0x803E7330 end:0x803E7358 + .ctors start:0x804731F4 end:0x804731F8 + .rodata start:0x80497158 end:0x804974A0 + .data start:0x804E9DF0 end:0x804E9E10 + .sbss start:0x805160E8 end:0x805160F8 + .sdata2 start:0x8051FC60 end:0x8051FD00 + +plugProjectEbisawaU/ebiP2TitleKogane.cpp: + .text start:0x803E7358 end:0x803E8264 + .text start:0x803E8264 end:0x803E85AC + .text start:0x803E85AC end:0x803E85B0 + .text start:0x803E85B0 end:0x803E85B0 + .text start:0x803E85B0 end:0x803E85D8 + .ctors start:0x804731F8 end:0x804731FC + .rodata start:0x804974A0 end:0x80497628 + .data start:0x804E9E10 end:0x804E9E60 + .sbss start:0x805160F8 end:0x80516100 + .sdata2 start:0x8051FD00 end:0x8051FD68 + +plugProjectEbisawaU/ebiP2TitleChappy.cpp: + .text start:0x803E85D8 end:0x803E9878 + .text start:0x803E9878 end:0x803E9C38 + .text start:0x803E9C38 end:0x803E9C38 + .text start:0x803E9C38 end:0x803E9C38 + .text start:0x803E9C38 end:0x803E9C60 + .ctors start:0x804731FC end:0x80473200 + .rodata start:0x80497628 end:0x804977F0 + .data start:0x804E9E60 end:0x804E9EC8 + .sbss start:0x80516100 end:0x80516108 + .sdata2 start:0x8051FD68 end:0x8051FDF8 + +plugProjectEbisawaU/ebiScreenTMBack.cpp: + .text start:0x803E9C60 end:0x803EA158 + .text start:0x803EA158 end:0x803EA158 + .text start:0x803EA158 end:0x803EA170 + .text start:0x803EA170 end:0x803EA170 + .rodata start:0x804977F0 end:0x80497880 + .data start:0x804E9EC8 end:0x804E9F60 + .sdata2 start:0x8051FDF8 end:0x8051FE10 + +plugProjectEbisawaU/ebiMainTitleMgr.cpp: + .text start:0x803EA170 end:0x803EB0F4 + .text start:0x803EB0F4 end:0x803EB0F4 + .text start:0x803EB0F4 end:0x803EB164 + .text start:0x803EB164 end:0x803EB168 + .text start:0x803EB168 end:0x803EB17C + .text start:0x803EB17C end:0x803EB17C + .text start:0x803EB17C end:0x803EB1A4 + .ctors start:0x80473200 end:0x80473204 + .rodata start:0x80497880 end:0x80497910 + .data start:0x804E9F60 end:0x804E9FA8 + .sbss start:0x80516108 end:0x80516110 + .sdata2 start:0x8051FE10 end:0x8051FE30 + +plugProjectEbisawaU/ebiP2TitleFog.cpp: + .text start:0x803EB1A4 end:0x803EB360 + .ctors start:0x80473204 end:0x80473208 + .data start:0x804E9FA8 end:0x804E9FB8 + .sbss start:0x80516110 end:0x80516118 + .sdata2 start:0x8051FE30 end:0x8051FE38 + +plugProjectEbisawaU/efxEnemyBoss.cpp: + .text start:0x803EB360 end:0x803ECA94 + .text start:0x803ECA94 end:0x803ECB40 + .text start:0x803ECB40 end:0x803ECB40 + .text start:0x803ECB40 end:0x803ECB40 + .rodata start:0x80497910 end:0x80497978 + .data start:0x804E9FB8 end:0x804EA188 + .sdata2 start:0x8051FE38 end:0x8051FE58 + +plugProjectEbisawaU/ebiCardEReader.cpp: + .text start:0x803ECB40 end:0x803ED2A8 + .rodata start:0x80497978 end:0x80497A18 + .data start:0x804EA188 end:0x804EA198 + .sdata start:0x80514CE8 end:0x80514CF0 + .sbss start:0x80516118 end:0x80516120 + .sdata2 start:0x8051FE58 end:0x8051FE60 + +plugProjectEbisawaU/ebiScreenOmake.cpp: + .text start:0x803ED2A8 end:0x803EEB24 + .text start:0x803EEB24 end:0x803EEB24 + .text start:0x803EEB24 end:0x803EEBE0 + .text start:0x803EEBE0 end:0x803EEBE0 + .text start:0x803EEBE0 end:0x803EEBE0 + .text start:0x803EEBE0 end:0x803EEBE8 + .text start:0x803EEBE8 end:0x803EEBE8 + .text start:0x803EEBE8 end:0x803EEBE8 + .rodata start:0x80497A18 end:0x80497AA0 + .data start:0x804EA198 end:0x804EA200 + .sdata2 start:0x8051FE60 end:0x8051FEA0 + +plugProjectEbisawaU/ebiOmakeMgr.cpp: + .text start:0x803EEBE8 end:0x803EF8F4 + .text start:0x803EF8F4 end:0x803EF8F4 + .text start:0x803EF8F4 end:0x803EF8FC + .text start:0x803EF8FC end:0x803F0298 + .text start:0x803F0298 end:0x803F0298 + .text start:0x803F0298 end:0x803F0298 + .text start:0x803F0298 end:0x803F02A4 + .text start:0x803F02A4 end:0x803F02A4 + .rodata start:0x80497AA0 end:0x80497B40 + .data start:0x804EA200 end:0x804EA300 + .sdata2 start:0x8051FEA0 end:0x8051FEB0 + +plugProjectEbisawaU/ebiScreenOmakeCardE.cpp: + .text start:0x803F02A4 end:0x803F0CE8 + .text start:0x803F0CE8 end:0x803F0CE8 + .text start:0x803F0CE8 end:0x803F0CF4 + .text start:0x803F0CF4 end:0x803F0CF4 + .text start:0x803F0CF4 end:0x803F0CF4 + .text start:0x803F0CF4 end:0x803F0CF4 + .rodata start:0x80497B40 end:0x80497BE8 + .data start:0x804EA300 end:0x804EA350 + .sdata2 start:0x8051FEB0 end:0x8051FEC8 + +plugProjectEbisawaU/ebiScreenOmakeGame.cpp: + .text start:0x803F0CF4 end:0x803F1A74 + .text start:0x803F1A74 end:0x803F1A74 + .text start:0x803F1A74 end:0x803F1A74 + .text start:0x803F1A74 end:0x803F1A74 + .text start:0x803F1A74 end:0x803F1A74 + .text start:0x803F1A74 end:0x803F1A80 + .text start:0x803F1A80 end:0x803F1A80 + .text start:0x803F1A80 end:0x803F1A80 + .rodata start:0x80497BE8 end:0x80497C70 + .data start:0x804EA350 end:0x804EA3A0 + .sdata2 start:0x8051FEC8 end:0x8051FEF0 + +plugProjectEbisawaU/ebiScreenInfoWindow.cpp: + .text start:0x803F1A80 end:0x803F1A80 + .text start:0x803F1A80 end:0x803F1A80 + .text start:0x803F1A80 end:0x803F1A80 + .text start:0x803F1A80 end:0x803F1A80 + .text start:0x803F1A80 end:0x803F1B04 + .text start:0x803F1B04 end:0x803F1B04 + .text start:0x803F1B04 end:0x803F1B04 + .text start:0x803F1B04 end:0x803F1B04 + .text start:0x803F1B04 end:0x803F1B04 + .text start:0x803F1B04 end:0x803F1B04 + +plugProjectKonoU/khWorldMap.cpp: + .text start:0x803F1B04 end:0x803F8694 + .ctors start:0x80473208 end:0x8047320C + .rodata start:0x80497C70 end:0x80498360 + .data start:0x804EA3A0 end:0x804EA560 + .bss start:0x80514058 end:0x805140D4 align:4 common + .sdata2 start:0x8051FEF0 end:0x8051FFA8 + +plugProjectKonoU/khCaveResult.cpp: + .text start:0x803F8694 end:0x803FBAD4 + .ctors start:0x8047320C end:0x80473210 + .rodata start:0x80498360 end:0x804984C0 + .data start:0x804EA560 end:0x804EA668 + .bss start:0x805140D4 end:0x80514110 align:4 common + .sdata2 start:0x8051FFA8 end:0x80520038 + .sbss2 start:0x80520EC0 end:0x80520EC8 + +plugProjectKonoU/khSceneLoader.cpp: + .text start:0x803FBAD4 end:0x803FBEEC + .rodata start:0x804984C0 end:0x80498510 + .data start:0x804EA668 end:0x804EA7D8 + +plugProjectKonoU/newGame2DMgr.cpp: + .text start:0x803FBEEC end:0x804001D8 + .rodata start:0x80498510 end:0x804985B8 + .data start:0x804EA7D8 end:0x804EA878 + .sbss start:0x80516120 end:0x80516128 + .sdata2 start:0x80520038 end:0x80520048 + +plugProjectKonoU/newScreenMgr.cpp: + .text start:0x804001D8 end:0x80401268 + .rodata start:0x804985B8 end:0x80498670 + .data start:0x804EA878 end:0x804EAB98 + .sdata2 start:0x80520048 end:0x80520058 + +plugProjectKonoU/khReadyGo.cpp: + .text start:0x80401268 end:0x80401D38 + .ctors start:0x80473210 end:0x80473214 + .rodata start:0x80498670 end:0x80498758 + .data start:0x804EAB98 end:0x804EACA0 + .bss start:0x80514110 end:0x80514128 align:4 common + .sbss start:0x80516128 end:0x80516130 + .sdata2 start:0x80520058 end:0x80520088 + +plugProjectKonoU/khFinalFloor.cpp: + .text start:0x80401D38 end:0x8040284C + .ctors start:0x80473214 end:0x80473218 + .rodata start:0x80498758 end:0x80498830 + .data start:0x804EACA0 end:0x804EAD78 + .bss start:0x80514128 end:0x80514134 align:4 common + .sbss start:0x80516130 end:0x80516138 + .sdata2 start:0x80520088 end:0x805200A8 + +plugProjectKonoU/khDayEndResult.cpp: + .text start:0x8040284C end:0x8040B3F4 + .ctors start:0x80473218 end:0x8047321C + .rodata start:0x80498830 end:0x80498CB0 + .data start:0x804EAD78 end:0x804EB1B8 + .bss start:0x80514134 end:0x80514188 align:4 common + .sbss start:0x80516138 end:0x80516140 + .sdata2 start:0x805200A8 end:0x80520180 + .sbss2 start:0x80520EC8 end:0x80520ED0 + +plugProjectKonoU/khUtil.cpp: + .text start:0x8040B3F4 end:0x8040C1E8 + .rodata start:0x80498CB0 end:0x80498CD8 + .data start:0x804EB1B8 end:0x804EB200 + .sdata2 start:0x80520180 end:0x80520198 + +plugProjectKonoU/khFinalResult.cpp: + .text start:0x8040C1E8 end:0x8040F1E0 + .ctors start:0x8047321C end:0x80473220 + .rodata start:0x80498CD8 end:0x80499160 + .data start:0x804EB200 end:0x804EB2E0 + .bss start:0x80514188 end:0x805141AC align:4 common + .sdata2 start:0x80520198 end:0x805201E8 + +plugProjectKonoU/khPayDept.cpp: + .text start:0x8040F1E0 end:0x8040FCE8 + .ctors start:0x80473220 end:0x80473224 + .rodata start:0x80499160 end:0x80499358 + .data start:0x804EB2E0 end:0x804EB3E8 + .sbss start:0x80516140 end:0x80516148 + .sdata2 start:0x805201E8 end:0x80520208 + +plugProjectKonoU/khWinLose.cpp: + .text start:0x8040FCE8 end:0x80410714 + .ctors start:0x80473224 end:0x80473228 + .rodata start:0x80499358 end:0x804994F0 + .data start:0x804EB3E8 end:0x804EB460 + .bss start:0x805141AC end:0x805141C8 align:4 common + .sdata2 start:0x80520208 end:0x80520240 + .sbss2 start:0x80520ED0 end:0x80520ED8 + +plugProjectKonoU/khWinLoseReason.cpp: + .text start:0x80410714 end:0x80410FE0 + .ctors start:0x80473228 end:0x8047322C + .rodata start:0x804994F0 end:0x804995D0 + .data start:0x804EB460 end:0x804EB528 + .bss start:0x805141C8 end:0x805141E4 align:4 common + .sdata2 start:0x80520240 end:0x80520250 + +plugProjectKonoU/khMailSaveData.cpp: + .text start:0x80410FE0 end:0x804111B4 + +sysBootupU/sysBootup.cpp: + .text start:0x804111B4 end:0x80411204 + .rodata start:0x804995D0 end:0x804995F0 + +sysCommonU/node.cpp: + .text start:0x80411204 end:0x80411730 + .rodata start:0x804995F0 end:0x80499648 + .data start:0x804EB528 end:0x804EB550 + .sdata2 start:0x80520250 end:0x80520268 + +sysCommonU/sysMath.cpp: + .text start:0x80411730 end:0x80413254 + .ctors start:0x8047322C end:0x80473230 + .rodata start:0x80499648 end:0x80499660 + .bss start:0x805141E4 end:0x805141F0 align:4 common + .sbss start:0x80516148 end:0x80516150 + .sdata2 start:0x80520268 end:0x805202C8 + +sysCommonU/id32.cpp: + .text start:0x80413254 end:0x80413658 + .ctors start:0x80473230 end:0x80473234 + .bss start:0x805141F0 end:0x805141FC align:4 common + .sdata2 start:0x805202C8 end:0x805202D0 + +sysCommonU/parameters.cpp: + .text start:0x80413658 end:0x80413DEC + .data start:0x804EB550 end:0x804EB590 + .sdata2 start:0x805202D0 end:0x805202E0 + +sysCommonU/stream.cpp: + .text start:0x80413DEC end:0x80415AA4 + .rodata start:0x80499660 end:0x804997A8 + .data start:0x804EB590 end:0x804EB5C0 + .sdata2 start:0x805202E0 end:0x80520308 + +sysCommonU/geometry.cpp: + .text start:0x80415AA4 end:0x8041A030 + .rodata start:0x804997A8 end:0x804997B8 + .data start:0x804EB5C0 end:0x804EB6F8 + .sbss start:0x80516150 end:0x80516158 + .sdata2 start:0x80520308 end:0x80520350 + +sysCommonU/mapCollision.cpp: + .text start:0x8041A030 end:0x8041A190 + .data start:0x804EB6F8 end:0x804EB718 + .sdata2 start:0x80520350 end:0x80520358 + +sysCommonU/camera.cpp: + .text start:0x8041A190 end:0x8041BD2C + .ctors start:0x80473234 end:0x80473238 + .data start:0x804EB718 end:0x804EB8F0 + .sbss start:0x80516158 end:0x80516160 + .sdata2 start:0x80520358 end:0x805203A0 + +sysCommonU/tagparams.cpp: + .text start:0x8041BD2C end:0x8041C1A8 + .data start:0x804EB8F0 end:0x804EB920 + .sdata2 start:0x805203A0 end:0x805203A8 + +sysCommonU/sysTemplates.cpp: + .text start:0x8041C1A8 end:0x8041C434 + +sysCommonU/mapCode.cpp: + .text start:0x8041C434 end:0x8041C9CC + .rodata start:0x804997B8 end:0x804997C8 + .data start:0x804EB920 end:0x804EB9E0 + .sdata2 start:0x805203A8 end:0x805203B0 + +sysCommonU/geomIntersection.cpp: + .text start:0x8041C9CC end:0x8041CEBC + .sdata2 start:0x805203B0 end:0x805203B8 + +sysCommonU/geomOBBTree.cpp: + .text start:0x8041CEBC end:0x8041FFA8 + .data start:0x804EB9E0 end:0x804EBA10 + .sbss start:0x80516160 end:0x80516168 + .sdata2 start:0x805203B8 end:0x805203E0 + +sysCommonU/geomTraceMove.cpp: + .text start:0x8041FFA8 end:0x80421628 + .sdata2 start:0x805203E0 end:0x805203E8 + +sysCommonU/geomCylinder.cpp: + .text start:0x80421628 end:0x80421ACC + .sdata2 start:0x805203E8 end:0x805203F8 + +sysCommonU/geomClone.cpp: + .text start:0x80421ACC end:0x80421EC4 + .data start:0x804EBA10 end:0x804EBA40 + .sdata2 start:0x805203F8 end:0x80520400 + +sysGCU/system.cpp: + .text start:0x80421EC4 end:0x80423770 + .ctors start:0x80473238 end:0x8047323C + .rodata start:0x804997C8 end:0x804999F0 + .data start:0x804EBA40 end:0x804EBB80 + .bss start:0x804F7C20 end:0x804F7C38 + .sdata start:0x80514CF0 end:0x80514CF8 + .sbss start:0x80516168 end:0x80516178 + .sdata2 start:0x80520400 end:0x80520440 + +sysGCU/section.cpp: + .text start:0x80423770 end:0x804241A4 + .ctors start:0x8047323C end:0x80473240 + .rodata start:0x804999F0 end:0x80499A48 + .data start:0x804EBB80 end:0x804EBBF0 + .sbss start:0x80516178 end:0x80516188 + .sdata2 start:0x80520440 end:0x80520460 + +sysGCU/gameflow.cpp: + .text start:0x804241A4 end:0x804245CC + .ctors start:0x80473240 end:0x80473244 + .rodata start:0x80499A48 end:0x80499C00 + .data start:0x804EBBF0 end:0x804EBD38 + .sdata start:0x80514CF8 end:0x80514D00 + .sbss start:0x80516188 end:0x80516190 + .sdata2 start:0x80520460 end:0x805204A8 + +sysGCU/menuSection.cpp: + .text start:0x804245CC end:0x80424818 + .rodata start:0x80499C00 end:0x80499C18 + .data start:0x804EBD38 end:0x804EBD88 + .sdata2 start:0x805204A8 end:0x805204B0 + +sysGCU/dvdThread.cpp: + .text start:0x80424818 end:0x80424E18 + .rodata start:0x80499C18 end:0x80499C38 + .data start:0x804EBD88 end:0x804EBD98 + .sdata2 start:0x805204B0 end:0x805204B8 + +sysGCU/appThread.cpp: + .text start:0x80424E18 end:0x80424E54 + +sysGCU/controller.cpp: + .text start:0x80424E54 end:0x80424E90 + +sysGCU/graphics.cpp: + .text start:0x80424E90 end:0x80427F90 + .ctors start:0x80473244 end:0x80473248 + .rodata start:0x80499C38 end:0x80499C58 + .data start:0x804EBD98 end:0x804EBDC8 + .sbss start:0x80516190 end:0x805161A0 + .sdata2 start:0x805204B8 end:0x80520510 + +sysGCU/matMath.cpp: + .text start:0x80427F90 end:0x80428C50 + .sdata2 start:0x80520510 end:0x80520528 + +sysGCU/sysShape.cpp: + .text start:0x80428C50 end:0x80429DB0 + .ctors start:0x80473248 end:0x8047324C + .rodata start:0x80499C58 end:0x80499D20 + .data start:0x804EBDC8 end:0x804EBE10 + .sbss start:0x805161A0 end:0x805161B0 + .sdata2 start:0x80520528 end:0x80520548 + +sysGCU/reset.cpp: + .text start:0x80429DB0 end:0x8042A314 + .rodata start:0x80499D20 end:0x80499DA8 + .data start:0x804EBE10 end:0x804EBE20 + .sdata2 start:0x80520548 end:0x80520570 + +sysGCU/dvdStatus.cpp: + .text start:0x8042A314 end:0x8042A7FC + .rodata start:0x80499DA8 end:0x80499E10 + .data start:0x804EBE20 end:0x804EBE40 + .sdata2 start:0x80520570 end:0x80520588 + +sysGCU/sysTimers.cpp: + .text start:0x8042A7FC end:0x8042AB00 + .rodata start:0x80499E10 end:0x80499E68 + .data start:0x804EBE40 end:0x804EBE60 + .sbss start:0x805161B0 end:0x805161B8 + .sdata2 start:0x80520588 end:0x80520598 + +sysGCU/modelMgr.cpp: + .text start:0x8042AB00 end:0x8042AFC4 + .rodata start:0x80499E68 end:0x80499EE8 + +sysGCU/heapStatus.cpp: + .text start:0x8042AFC4 end:0x8042B46C + .rodata start:0x80499EE8 end:0x80499EF8 + .data start:0x804EBE60 end:0x804EBE88 + .sdata2 start:0x80520598 end:0x805205A8 + +sysGCU/light.cpp: + .text start:0x8042B46C end:0x8042BD0C + .ctors start:0x8047324C end:0x80473250 + .rodata start:0x80499EF8 end:0x80499F10 + .data start:0x804EBE88 end:0x804EBED8 + .sbss start:0x805161B8 end:0x805161C0 + .sdata2 start:0x805205A8 end:0x805205E8 + +sysGCU/wipe.cpp: + .text start:0x8042BD0C end:0x8042C700 + .ctors start:0x80473250 end:0x80473254 + .data start:0x804EBED8 end:0x804EBFB0 + .sbss start:0x805161C0 end:0x805161C8 + .sdata2 start:0x805205E8 end:0x80520610 + +sysGCU/moviePlayer.cpp: + .text start:0x8042C700 end:0x8042E960 + .ctors start:0x80473254 end:0x80473258 + .rodata start:0x80499F10 end:0x8049A158 + .data start:0x804EBFB0 end:0x804EC018 + .sbss start:0x805161C8 end:0x805161D8 + .sdata2 start:0x80520610 end:0x80520678 + +sysGCU/JSTObjectActor.cpp: + .text start:0x8042E960 end:0x8042F6E4 + .ctors start:0x80473258 end:0x8047325C + .rodata start:0x8049A158 end:0x8049A210 + .data start:0x804EC018 end:0x804EC110 + .sbss start:0x805161D8 end:0x805161E0 + .sdata2 start:0x80520678 end:0x80520698 + +sysGCU/JSTObjectCamera.cpp: + .text start:0x8042F6E4 end:0x8042FDA8 + .ctors start:0x8047325C end:0x80473260 + .data start:0x804EC110 end:0x804EC1F0 + .sbss start:0x805161E0 end:0x805161F0 + .sdata2 start:0x80520698 end:0x805206B8 + +sysGCU/JSTObjectGameActor.cpp: + .text start:0x8042FDA8 end:0x80430954 + .ctors start:0x80473260 end:0x80473264 + .rodata start:0x8049A210 end:0x8049A300 + .data start:0x804EC1F0 end:0x804EC2C8 + .sbss start:0x805161F0 end:0x805161F8 + .sdata2 start:0x805206B8 end:0x805206C8 + +sysGCU/JSTObjectSystem.cpp: + .text start:0x80430954 end:0x804313B8 + .ctors start:0x80473264 end:0x80473268 + .rodata start:0x8049A300 end:0x8049A338 + .data start:0x804EC2C8 end:0x804EC358 + .sbss start:0x805161F8 end:0x80516208 + +sysGCU/JSTFindCreature.cpp: + .text start:0x804313B8 end:0x80431830 + .ctors start:0x80473268 end:0x8047326C + .rodata start:0x8049A338 end:0x8049A3B0 + .data start:0x804EC358 end:0x804EC368 + .sbss start:0x80516208 end:0x80516210 + .sdata2 start:0x805206C8 end:0x805206F8 + +sysGCU/movieConfig.cpp: + .text start:0x80431830 end:0x80432170 + .ctors start:0x8047326C end:0x80473270 + .rodata start:0x8049A3B0 end:0x8049A428 + .data start:0x804EC368 end:0x804EC3A8 + .sbss start:0x80516210 end:0x80516220 + .sdata2 start:0x805206F8 end:0x80520710 + +sysGCU/gameConfig.cpp: + .text start:0x80432170 end:0x80432948 + .ctors start:0x80473270 end:0x80473274 + .rodata start:0x8049A428 end:0x8049A610 + .data start:0x804EC3A8 end:0x804EC3B8 + .bss start:0x804F7C38 end:0x804F7C48 + .bss start:0x805141FC end:0x80514478 align:4 common + .sdata2 start:0x80520710 end:0x80520760 + +sysGCU/fogMgr.cpp: + .text start:0x80432948 end:0x80432B18 + .ctors start:0x80473274 end:0x80473278 + .rodata start:0x8049A610 end:0x8049A628 + .data start:0x804EC3B8 end:0x804EC3C8 + .sbss start:0x80516220 end:0x80516228 + .sdata2 start:0x80520760 end:0x80520770 + +sysGCU/aramMgr.cpp: + .text start:0x80432B18 end:0x804330D8 + .rodata start:0x8049A628 end:0x8049A640 + .data start:0x804EC3C8 end:0x804EC3D8 + .sbss start:0x80516228 end:0x80516230 + .sdata2 start:0x80520770 end:0x80520780 + +sysGCU/resourceMgr.cpp: + .text start:0x804330D8 end:0x80433F70 + .rodata start:0x8049A640 end:0x8049A680 + .data start:0x804EC3D8 end:0x804EC468 + +sysGCU/resourceMgr2D.cpp: + .text start:0x80433F70 end:0x80434020 + .rodata start:0x8049A680 end:0x8049A6A0 + .data start:0x804EC468 end:0x804EC478 + .sbss start:0x80516230 end:0x80516238 + +sysGCU/sysMaterialAnim.cpp: + .text start:0x80434020 end:0x80434AC0 + .rodata start:0x8049A6A0 end:0x8049A6C0 + .data start:0x804EC478 end:0x804EC500 + .sdata2 start:0x80520780 end:0x80520790 + +sysGCU/P2DScreen.cpp: + .text start:0x80434AC0 end:0x80434F5C + .rodata start:0x8049A6C0 end:0x8049A6E0 + .data start:0x804EC500 end:0x804EC640 + .sdata2 start:0x80520790 end:0x805207B8 + +sysGCU/movieMessage.cpp: + .text start:0x80434F5C end:0x80436ED0 + .ctors start:0x80473278 end:0x8047327C + .rodata start:0x8049A6E0 end:0x8049A858 + .data start:0x804EC640 end:0x804EC810 + .sbss start:0x80516238 end:0x80516240 + .sdata2 start:0x805207B8 end:0x80520860 + +sysGCU/moviePlayerPauseAndDraw.cpp: + .text start:0x80436ED0 end:0x80437400 + .ctors start:0x8047327C end:0x80473280 + .data start:0x804EC810 end:0x804EC820 + .sbss start:0x80516240 end:0x80516248 + +sysGCU/JSTObjectSpecialActor.cpp: + .text start:0x80437400 end:0x80437844 + .ctors start:0x80473280 end:0x80473284 + .rodata start:0x8049A858 end:0x8049A8B0 + .data start:0x804EC820 end:0x804EC8F8 + .sbss start:0x80516248 end:0x80516250 + .sdata2 start:0x80520860 end:0x80520868 + +sysGCU/messageSequence.cpp: + .text start:0x80437844 end:0x80437EAC + .rodata start:0x8049A8B0 end:0x8049A8D0 + .data start:0x804EC8F8 end:0x804EC970 + .sdata2 start:0x80520868 end:0x80520890 + +sysGCU/messageMgr.cpp: + .text start:0x80437EAC end:0x80438A34 + .ctors start:0x80473284 end:0x80473288 + .rodata start:0x8049A8D0 end:0x8049AB98 + .data start:0x804EC970 end:0x804EC9F0 + .sbss start:0x80516250 end:0x80516260 + .sdata2 start:0x80520890 end:0x805208A8 + +sysGCU/messageObj.cpp: + .text start:0x80438A34 end:0x804391F0 + .rodata start:0x8049AB98 end:0x8049ABE8 + .data start:0x804EC9F0 end:0x804ECA38 + .sdata2 start:0x805208A8 end:0x805208B8 + +sysGCU/messageRendering.cpp: + .text start:0x804391F0 end:0x8043D32C + .rodata start:0x8049ABE8 end:0x8049AC20 + .data start:0x804ECA38 end:0x804ECBA0 + .bss start:0x804F7C48 end:0x804F7C70 + .sdata2 start:0x805208B8 end:0x805208E8 + +sysGCU/message.cpp: + .text start:0x8043D32C end:0x8043D49C + +sysGCU/modelEffect.cpp: + .text start:0x8043D49C end:0x8043DB18 + .ctors start:0x80473288 end:0x8047328C + .rodata start:0x8049AC20 end:0x8049AC40 + .data start:0x804ECBA0 end:0x804ECBE0 + .sbss start:0x80516260 end:0x80516268 + +sysGCU/messageReference.cpp: + .text start:0x8043DB18 end:0x8043DBEC + .data start:0x804ECBE0 end:0x804ECBF0 + .bss start:0x804F7C70 end:0x804F7D80 + .sbss start:0x80516268 end:0x80516270 + .sdata2 start:0x805208E8 end:0x805208F8 + +sysGCU/simpleMessage.cpp: + .text start:0x8043DBEC end:0x8043DCDC + +sysGCU/sysShapeAnimation.cpp: + .text start:0x8043DCDC end:0x8043E1D8 + .ctors start:0x8047328C end:0x80473290 + .rodata start:0x8049AC40 end:0x8049AC90 + .data start:0x804ECBF0 end:0x804ECC00 + .sbss start:0x80516270 end:0x80516278 + .sdata2 start:0x805208F8 end:0x80520908 + +sysGCU/sysShapeModel.cpp: + .text start:0x8043E1D8 end:0x8043F188 + .ctors start:0x80473290 end:0x80473294 + .rodata start:0x8049AC90 end:0x8049ACA8 + .data start:0x804ECC00 end:0x804ECC50 + .sdata start:0x80514D00 end:0x80514D08 + .sbss start:0x80516278 end:0x80516288 + .sdata2 start:0x80520908 end:0x80520920 + +sysGCU/windowMessage.cpp: + .text start:0x8043F188 end:0x804405F0 + .ctors start:0x80473294 end:0x80473298 + .rodata start:0x8049ACA8 end:0x8049AD08 + .data start:0x804ECC50 end:0x804ECDC0 + .sbss start:0x80516288 end:0x80516290 + .sdata2 start:0x80520920 end:0x80520978 + +sysGCU/memoryCard.cpp: + .text start:0x804405F0 end:0x804428AC + .rodata start:0x8049AD08 end:0x8049ADB8 + .data start:0x804ECDC0 end:0x804ECF58 + .bss start:0x804F7D80 end:0x80501D80 + +sysGCU/pikmin2MemoryCardMgr.cpp: + .text start:0x804428AC end:0x80446C68 + .rodata start:0x8049ADB8 end:0x8049AEC0 + .data start:0x804ECF58 end:0x804ECFE8 + .sdata start:0x80514D08 end:0x80514D10 + .sdata2 start:0x80520978 end:0x80520980 + +sysGCU/commonSaveData.cpp: + .text start:0x80446C68 end:0x804473BC + .rodata start:0x8049AEC0 end:0x8049AF08 + .sdata2 start:0x80520980 end:0x805209A0 + +sysGCU/bootSection.cpp: + .text start:0x804473BC end:0x8044A03C + .ctors start:0x80473298 end:0x8047329C + .rodata start:0x8049AF08 end:0x8049B100 + .data start:0x804ECFE8 end:0x804ED1A8 + .bss start:0x80514478 end:0x80514490 align:4 common + .sdata start:0x80514D10 end:0x80514D18 + .sbss start:0x80516290 end:0x805162A0 + .sdata2 start:0x805209A0 end:0x80520A80 + +sysGCU/titleSection.cpp: + .text start:0x8044A03C end:0x8044C520 + .ctors start:0x8047329C end:0x804732A0 + .rodata start:0x8049B100 end:0x8049B368 + .data start:0x804ED1A8 end:0x804ED2B8 + .sdata start:0x80514D18 end:0x80514D20 + .sbss start:0x805162A0 end:0x805162A8 + .sdata2 start:0x80520A80 end:0x80520AA8 + +sysGCU/loadResource.cpp: + .text start:0x8044C520 end:0x8044CACC + .rodata start:0x8049B368 end:0x8049B3C0 + .data start:0x804ED2B8 end:0x804ED2D8 + .sbss start:0x805162A8 end:0x805162B0 + .sdata2 start:0x80520AA8 end:0x80520AB0 + +sysGCU/rootMenuSection.cpp: + .text start:0x8044CACC end:0x8044CBB8 + .data start:0x804ED2D8 end:0x804ED328 + +sysGCU/demoSection.cpp: + .text start:0x8044CBB8 end:0x8044D2C4 + .rodata start:0x8049B3C0 end:0x8049B470 + .data start:0x804ED328 end:0x804ED3C0 + .sdata start:0x80514D20 end:0x80514D30 + .sdata2 start:0x80520AB0 end:0x80520AD0 + +sysGCU/THPAudioDecode.c: + .text start:0x8044D2C4 end:0x8044D684 + .bss start:0x80501D80 end:0x80503100 + .sbss start:0x805162B0 end:0x805162B8 + +sysGCU/THPDraw.c: + .text start:0x8044D684 end:0x8044DE38 + .sdata2 start:0x80520AD0 end:0x80520AF8 + +sysGCU/THPPlayer.c: + .text start:0x8044DE38 end:0x8044F58C + .rodata start:0x8049B470 end:0x8049B510 + .data start:0x804ED3C0 end:0x804ED4C0 + .bss start:0x80503100 end:0x80504320 + .bss start:0x80514490 end:0x80514660 align:4 common + .sbss start:0x805162B8 end:0x805162D0 + .sdata2 start:0x80520AF8 end:0x80520B10 + +sysGCU/THPRead.c: + .text start:0x8044F58C end:0x8044F8B4 + .bss start:0x80504320 end:0x80505710 + .sbss start:0x805162D0 end:0x805162D8 + +sysGCU/THPVideoDecode.c: + .text start:0x8044F8B4 end:0x8044FDF0 + .bss start:0x80505710 end:0x80506A80 + .sbss start:0x805162D8 end:0x805162E0 + +sysGCU/pikmin2THPPlayer.cpp: + .text start:0x8044FDF0 end:0x804508E8 + .rodata start:0x8049B510 end:0x8049B848 + .data start:0x804ED4C0 end:0x804ED508 + .sdata2 start:0x80520B10 end:0x80520B20 + +sysGCU/captionMgr.cpp: + .text start:0x804508E8 end:0x80450FC0 + .rodata start:0x8049B848 end:0x8049B880 + .data start:0x804ED508 end:0x804ED530 + .sdata2 start:0x80520B20 end:0x80520B30 + +sysGCU/captionMessage.cpp: + .text start:0x80450FC0 end:0x80451790 + .rodata start:0x8049B880 end:0x8049B8A0 + .data start:0x804ED530 end:0x804ED680 + .sdata2 start:0x80520B30 end:0x80520B70 + +sysGCU/screenScene.cpp: + .text start:0x80451790 end:0x80452300 + .rodata start:0x8049B8A0 end:0x8049B8C8 + .data start:0x804ED680 end:0x804ED6F8 + .sdata2 start:0x80520B70 end:0x80520B80 + +sysGCU/screenMgr.cpp: + .text start:0x80452300 end:0x80453AE8 + .ctors start:0x804732A0 end:0x804732A4 + .rodata start:0x8049B8C8 end:0x8049BA58 + .data start:0x804ED6F8 end:0x804ED758 + .sbss start:0x805162E0 end:0x805162F0 + .sdata2 start:0x80520B80 end:0x80520B88 + +sysGCU/screenObj.cpp: + .text start:0x80453AE8 end:0x804544D4 + .rodata start:0x8049BA58 end:0x8049BA78 + .data start:0x804ED758 end:0x804ED7D0 + .sdata2 start:0x80520B88 end:0x80520B98 + +sysGCU/JSTObjectParticleActor.cpp: + .text start:0x804544D4 end:0x80454D30 + .ctors start:0x804732A4 end:0x804732A8 + .rodata start:0x8049BA78 end:0x8049BAA0 + .data start:0x804ED7D0 end:0x804ED8C8 + .sbss start:0x805162F0 end:0x805162F8 + .sdata2 start:0x80520B98 end:0x80520BC0 + +sysGCU/moviePlayerAudio.cpp: + .text start:0x80454D30 end:0x80454F88 + .ctors start:0x804732A8 end:0x804732AC + .data start:0x804ED8C8 end:0x804ED8E8 + .sbss start:0x805162F8 end:0x80516300 + +sysGCU/illustratedBookMessage.cpp: + .text start:0x80454F88 end:0x80455700 + .rodata start:0x8049BAA0 end:0x8049BAD8 + .data start:0x804ED8E8 end:0x804EDAB0 + .sdata2 start:0x80520BC0 end:0x80520BE0 + +sysGCU/sysDrawBuffer.cpp: + .text start:0x80455700 end:0x80455C30 + .rodata start:0x8049BAD8 end:0x8049BB08 + .data start:0x804EDAB0 end:0x804EDAD0 + +sysGCU/dvdErrorMessage.cpp: + .rodata start:0x8049BB08 end:0x8049C410 + .data start:0x804EDAD0 end:0x804EDB60 + +sysGCU/pikmin2AramMgr.cpp: + .text start:0x80455C30 end:0x804560C8 + .rodata start:0x8049C410 end:0x8049CD78 + .data start:0x804EDB60 end:0x804EDC60 + .sbss start:0x80516300 end:0x80516308 + .sdata2 start:0x80520BE0 end:0x80520BE8 + +sysGCU/messageAnalyzer.cpp: + .text start:0x804560C8 end:0x80456184 + .data start:0x804EDC60 end:0x804EDCC8 + +utilityU/menu.cpp: + .text start:0x80456184 end:0x80456AF8 + .rodata start:0x8049CD78 end:0x8049CD98 + .data start:0x804EDCC8 end:0x804EDD50 + .sdata2 start:0x80520BE8 end:0x80520C00 + +utilityU/PSMainSide_Director.cpp: + .text start:0x80456AF8 end:0x804595B0 + .text start:0x804595B0 end:0x804595B0 + .text start:0x804595B0 end:0x804595B4 + .text start:0x804595B4 end:0x804595B4 + .text start:0x804595B4 end:0x804595BC + .text start:0x804595BC end:0x804595C4 + .text start:0x804595C4 end:0x804595C4 + .text start:0x804595C4 end:0x804595C4 + .text start:0x804595C4 end:0x804595C4 + .text start:0x804595C4 end:0x80459BD4 + .text start:0x80459BD4 end:0x80459BD4 + .rodata start:0x8049CD98 end:0x8049CE68 + .data start:0x804EDD50 end:0x804EE158 + .sdata2 start:0x80520C00 end:0x80520C20 + +utilityU/PSMainSide_Factory.cpp: + .text start:0x80459BD4 end:0x8045CD28 + .text start:0x8045CD28 end:0x8045CD28 + .text start:0x8045CD28 end:0x8045CD88 + .text start:0x8045CD88 end:0x8045CD88 + .text start:0x8045CD88 end:0x8045CE3C + .text start:0x8045CE3C end:0x8045CE3C + .text start:0x8045CE3C end:0x8045CE3C + .text start:0x8045CE3C end:0x8045CE64 + .ctors start:0x804732AC end:0x804732B0 + .rodata start:0x8049CE68 end:0x8049CFA0 + .data start:0x804EE158 end:0x804EE370 + .sbss start:0x80516308 end:0x80516310 + .sdata2 start:0x80520C20 end:0x80520C50 + +utilityU/PSMainSide_ObjSound.cpp: + .text start:0x8045CE64 end:0x804633A4 + .text start:0x804633A4 end:0x804633A4 + .text start:0x804633A4 end:0x804633B4 + .text start:0x804633B4 end:0x80463D90 + .text start:0x80463D90 end:0x80463D90 + .text start:0x80463D90 end:0x80463D90 + .text start:0x80463D90 end:0x80463E88 + .text start:0x80463E88 end:0x80463E88 + .text start:0x80463E88 end:0x80463FE8 + .rodata start:0x8049CFA0 end:0x8049D080 + .data start:0x804EE370 end:0x804EF250 + .sbss start:0x80516310 end:0x80516318 + .sdata2 start:0x80520C50 end:0x80520C90 + +utilityU/PSMainSide_Demo.cpp: + .text start:0x80463FE8 end:0x8046751C + .text start:0x8046751C end:0x80467628 + .text start:0x80467628 end:0x80467630 + .rodata start:0x8049D080 end:0x8049D908 + .data start:0x804EF250 end:0x804EF268 + .sdata2 start:0x80520C90 end:0x80520C98 + +utilityU/PSMainSide_Scene.cpp: + .text start:0x80467630 end:0x8046C050 + .text start:0x8046C050 end:0x8046C050 + .text start:0x8046C050 end:0x8046C050 + .text start:0x8046C050 end:0x8046C050 + .text start:0x8046C050 end:0x8046C0C0 + .text start:0x8046C0C0 end:0x8046C0C0 + .text start:0x8046C0C0 end:0x8046C2D4 + .text start:0x8046C2D4 end:0x8046C5F0 + .text start:0x8046C5F0 end:0x8046C6B8 + .ctors start:0x804732B0 end:0x804732B4 + .rodata start:0x8049D908 end:0x8049D9A8 + .data start:0x804EF268 end:0x804EF6D8 + .sbss start:0x80516318 end:0x80516320 + .sdata2 start:0x80520C98 end:0x80520CB8 + +utilityU/PSMainSide_BossMgr.cpp: + .text start:0x8046C6B8 end:0x8046D144 + .text start:0x8046D144 end:0x8046D144 + .text start:0x8046D144 end:0x8046D144 + .rodata start:0x8049D9A8 end:0x8049DA08 + .data start:0x804EF6D8 end:0x804EF6F0 + .sdata2 start:0x80520CB8 end:0x80520CE0 + +utilityU/PSMainSide_Se.cpp: + .text start:0x8046D144 end:0x8046F21C + .text start:0x8046F21C end:0x8046F21C + .text start:0x8046F21C end:0x8046F21C + .text start:0x8046F21C end:0x8046F21C + .text start:0x8046F21C end:0x8046F21C + .text start:0x8046F21C end:0x8046F24C + .text start:0x8046F24C end:0x8046F2BC + .rodata start:0x8049DA08 end:0x8049DA80 + .data start:0x804EF6F0 end:0x804EF880 + .sdata start:0x80514D30 end:0x80514D58 + .sbss start:0x80516320 end:0x80516330 + .sdata2 start:0x80520CE0 end:0x80520D60 + +utilityU/PSMainSide_DirectorMgr.cpp: + .text start:0x8046F2BC end:0x80470D48 + .text start:0x80470D48 end:0x80470D5C + .text start:0x80470D5C end:0x80470DE4 + .text start:0x80470DE4 end:0x80470DE4 + .text start:0x80470DE4 end:0x80470E94 + .text start:0x80470E94 end:0x80470E9C + .text start:0x80470E9C end:0x80470F0C + .rodata start:0x8049DA80 end:0x8049DC30 + .data start:0x804EF880 end:0x804EF9A8 + .sdata2 start:0x80520D60 end:0x80520D90 + +utilityU/PSMainSide_Sound.cpp: + .text start:0x80470F0C end:0x804718A8 + .text start:0x804718A8 end:0x804718A8 + .text start:0x804718A8 end:0x804718D0 + .ctors start:0x804732B4 end:0x804732B8 + .rodata start:0x8049DC30 end:0x8049DE78 + .data start:0x804EF9A8 end:0x804EFAA8 + .sdata start:0x80514D58 end:0x80514D70 + .sbss start:0x80516330 end:0x80516340 + .sdata2 start:0x80520D90 end:0x80520DB0 + +utilityU/PSMainSide_TrackMap.cpp: + .text start:0x804718D0 end:0x80472388 + .text start:0x80472388 end:0x80472498 + .text start:0x80472498 end:0x804724A0 + .rodata start:0x8049DE78 end:0x8049E0F0 + .data start:0x804EFAA8 end:0x804EFAC8 + .sdata2 start:0x80520DB0 end:0x80520DB8 + +utilityU/PSMainSide_CreaturePrm.cpp: + .text start:0x804724A0 end:0x804727B4 + .text start:0x804727B4 end:0x804728A4 + .ctors start:0x804732B8 end:0x804732BC + .rodata start:0x8049E0F0 end:0x8049E1C8 + .data start:0x804EFAC8 end:0x804EFBD0 + .bss start:0x80506A80 end:0x80506A8C + .bss start:0x80514660 end:0x8051467C align:4 common + .sdata start:0x80514D70 end:0x80514D80 + .sbss start:0x80516340 end:0x80516344 + .sdata2 start:0x80520DB8 end:0x80520E28 + +utilityU/PSMainSide_ObjCalc.cpp: + .text start:0x804728A4 end:0x80472DF4 + .text start:0x80472DF4 end:0x80472DF4 + .text start:0x80472DF4 end:0x80472E68 + .text start:0x80472E68 end:0x80472EDC + .text start:0x80472EDC end:0x80472EE4 + .rodata start:0x8049E1C8 end:0x8049E212 + .data start:0x804EFBD0 end:0x804EFC08 + .sdata2 start:0x80520E28 end:0x80520E30 diff --git a/config/GPVE01/symbols.txt b/config/GPVE01/symbols.txt new file mode 100644 index 000000000..c2161bf28 --- /dev/null +++ b/config/GPVE01/symbols.txt @@ -0,0 +1,48024 @@ +TRK_memset = .init:0x80003100; // type:function size:0x30 scope:global align:4 +TRK_memcpy = .init:0x80003130; // type:function size:0x24 scope:global align:4 +gTRKInterruptVectorTable = .init:0x80003154; // type:label scope:global +gTRKInterruptVectorTableEnd = .init:0x80005088; // type:label scope:global +__TRK_reset = .init:0x80005088; // type:function size:0x2C scope:global align:4 +memset = .init:0x800050B4; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x800050E4; // type:function size:0xB8 scope:global align:4 +memcpy = .init:0x8000519C; // type:function size:0x50 scope:global align:4 +__check_pad3 = .init:0x800051EC; // type:function size:0x40 scope:local align:4 +__set_debug_bba = .init:0x8000522C; // type:function size:0xC scope:local align:4 +__get_debug_bba = .init:0x80005238; // type:function size:0x8 scope:local align:4 +__start = .init:0x80005240; // type:function size:0x15C scope:weak align:4 +__init_registers = .init:0x8000539C; // type:function size:0x90 scope:local align:4 +__init_data = .init:0x8000542C; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x800054EC; // type:function size:0x24 scope:global align:4 +__flush_cache = .init:0x80005510; // type:function size:0x34 scope:global align:4 +_rom_copy_info = .init:0x80005544; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x800055C8; // type:object size:0x20 scope:global data:4byte +@205 = extab:0x80005600; // type:object size:0x8 scope:local align:4 +@210 = extab:0x80005608; // type:object size:0x8 scope:local align:4 +@231 = extab:0x80005610; // type:object size:0x18 scope:local align:4 +@239 = extab:0x80005628; // type:object size:0x8 scope:local align:4 +@262 = extab:0x80005630; // type:object size:0x18 scope:local align:4 +@206 = extabindex:0x80005660; // type:object size:0xC scope:local align:4 +@211 = extabindex:0x8000566C; // type:object size:0xC scope:local align:4 +@232 = extabindex:0x80005678; // type:object size:0xC scope:local align:4 +@240 = extabindex:0x80005684; // type:object size:0xC scope:local align:4 +@263 = extabindex:0x80005690; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x8000569C; // type:object size:0x20 scope:global +__ct__Q217JStudio_JParticle17TAdaptor_particleFP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x800056C0; // type:function size:0xE8 scope:global align:4 +__dt__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_Fv = .text:0x800057A8; // type:function size:0x60 scope:weak align:4 +__ct__Q27JStudio14TVariableValueFv = .text:0x80005808; // type:function size:0x18 scope:weak align:4 +__dt__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x80005820; // type:function size:0x98 scope:global align:4 +adaptor_do_prepare__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObject = .text:0x800058B8; // type:function size:0x144 scope:global align:4 +adaptor_do_end__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObject = .text:0x800059FC; // type:function size:0x4 scope:global align:4 +adaptor_do_update__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObjectUl = .text:0x80005A00; // type:function size:0xB0 scope:global align:4 +adaptor_do_BEGIN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005AB0; // type:function size:0x30 scope:global align:4 +adaptor_do_BEGIN_FADE_IN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005AE0; // type:function size:0x48 scope:global align:4 +adaptor_do_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005B28; // type:function size:0x2C scope:global align:4 +adaptor_do_END_FADE_OUT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005B54; // type:function size:0x48 scope:global align:4 +adaptor_do_PARTICLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005B9C; // type:function size:0x14 scope:global align:4 +adaptor_do_PARENT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005BB0; // type:function size:0x68 scope:global align:4 +adaptor_do_PARENT_NODE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005C18; // type:function size:0x80 scope:global align:4 +adaptor_do_PARENT_ENABLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005C98; // type:function size:0x20 scope:global align:4 +execute__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_FP14JPABaseEmitter = .text:0x80005CB8; // type:function size:0x35C scope:global align:4 +beginParticle_fadeIn___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x80006014; // type:function size:0xE4 scope:global align:4 +endParticle_fadeOut___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x800060F8; // type:function size:0x118 scope:global align:4 +executeAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80006210; // type:function size:0x4 scope:weak align:4 +draw__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80006214; // type:function size:0x4 scope:weak align:4 +drawAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80006218; // type:function size:0x4 scope:weak align:4 +execute__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x8000621C; // type:function size:0x4 scope:weak align:4 +createObject_PARTICLE_JPA___Q217JStudio_JParticle21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x80006220; // type:function size:0xCC scope:local align:4 +__dt__Q217JStudio_JParticle13TCreateObjectFv = .text:0x800062EC; // type:function size:0x60 scope:global align:4 +create__Q217JStudio_JParticle13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8000634C; // type:function size:0x78 scope:global align:4 +toMessageIndex_messageID__Q28JMessage9TResourceCFUlUlPb = .text:0x800063C4; // type:function size:0x1E4 scope:global align:4 +__dt__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x800065A8; // type:function size:0x74 scope:global align:4 +Get_groupID__Q38JMessage18TResourceContainer10TCResourceFUs = .text:0x8000661C; // type:function size:0x84 scope:global align:4 +Do_create__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x800066A0; // type:function size:0x4C scope:global align:4 +Do_destroy__Q38JMessage18TResourceContainer10TCResourceFPQ28JMessage9TResource = .text:0x800066EC; // type:function size:0x24 scope:global align:4 +__ct__Q28JMessage18TResourceContainerFv = .text:0x80006710; // type:function size:0x48 scope:global align:4 +isLeadByte_1Byte__7JUTFontFi = .text:0x80006758; // type:function size:0x8 scope:weak align:4 +isLeadByte_2Byte__7JUTFontFi = .text:0x80006760; // type:function size:0x8 scope:weak align:4 +isLeadByte_ShiftJIS__7JUTFontFi = .text:0x80006768; // type:function size:0x30 scope:weak align:4 +__ct__Q28JMessage6TParseFPQ28JMessage18TResourceContainer = .text:0x80006798; // type:function size:0x28 scope:global align:4 +__dt__Q28JMessage6TParseFv = .text:0x800067C0; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x80006820; // type:function size:0x18C scope:global align:4 +parseBlock_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x800069AC; // type:function size:0x17C scope:global align:4 +__ct__Q28JMessage12TParse_colorFPQ28JMessage18TResourceContainer = .text:0x80006B28; // type:function size:0x20 scope:global align:4 +__dt__Q28JMessage12TParse_colorFv = .text:0x80006B48; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x80006BA8; // type:function size:0xBC scope:global align:4 +parseBlock_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x80006C64; // type:function size:0x54 scope:global align:4 +lower_bound__3stdFPCUlPCUlRCUl = .text:0x80006CB8; // type:function size:0x54 scope:weak align:4 +__dt__Q28JMessage10TReferenceFv = .text:0x80006D0C; // type:function size:0x48 scope:global align:4 +do_word__Q28JMessage10TReferenceCFUl = .text:0x80006D54; // type:function size:0x8 scope:global align:4 +__dt__Q28JMessage10TProcessorFv = .text:0x80006D5C; // type:function size:0x48 scope:global align:4 +setBegin_messageCode__Q28JMessage10TProcessorFUsUs = .text:0x80006DA4; // type:function size:0xBC scope:global align:4 +setBegin_messageID__Q28JMessage10TProcessorFUlUlPb = .text:0x80006E60; // type:function size:0x44 scope:global align:4 +setBegin_messageCode__Q28JMessage10TProcessorFUl = .text:0x80006EA4; // type:function size:0xC0 scope:weak align:4 +getResource_groupID__Q28JMessage10TProcessorCFUs = .text:0x80006F64; // type:function size:0x80 scope:global align:4 +toMessageCode_messageID__Q28JMessage10TProcessorCFUlUlPb = .text:0x80006FE4; // type:function size:0x150 scope:global align:4 +do_reset__Q28JMessage10TProcessorFv = .text:0x80007134; // type:function size:0x4 scope:global align:4 +do_character__Q28JMessage10TProcessorFi = .text:0x80007138; // type:function size:0x4 scope:global align:4 +do_tag__Q28JMessage10TProcessorFUlPCvUl = .text:0x8000713C; // type:function size:0x8 scope:global align:4 +do_systemTagCode__Q28JMessage10TProcessorFUsPCvUl = .text:0x80007144; // type:function size:0x8 scope:global align:4 +do_select_begin__Q28JMessage10TProcessorFUl = .text:0x8000714C; // type:function size:0x4 scope:global align:4 +do_select_end__Q28JMessage10TProcessorFv = .text:0x80007150; // type:function size:0x4 scope:global align:4 +do_select_separate__Q28JMessage10TProcessorFv = .text:0x80007154; // type:function size:0x4 scope:global align:4 +reset___Q28JMessage10TProcessorFPCc = .text:0x80007158; // type:function size:0x64 scope:global align:4 +do_setBegin_isReady___Q28JMessage10TProcessorCFv = .text:0x800071BC; // type:function size:0x8 scope:global align:4 +do_tag___Q28JMessage10TProcessorFUlPCvUl = .text:0x800071C4; // type:function size:0x260 scope:global align:4 +on_message_limited__Q28JMessage10TProcessorCFUs = .text:0x80007424; // type:function size:0x50 scope:weak align:4 +do_systemTagCode___Q28JMessage10TProcessorFUsPCvUl = .text:0x80007474; // type:function size:0xD0 scope:global align:4 +on_message__Q28JMessage10TProcessorCFUl = .text:0x80007544; // type:function size:0x20 scope:weak align:4 +getMessageText_messageCode__Q28JMessage10TProcessorCFUl = .text:0x80007564; // type:function size:0xEC scope:weak align:4 +process_onCharacterEnd_normal___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x80007650; // type:function size:0x60 scope:global align:4 +process_onCharacterEnd_select___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x800076B0; // type:function size:0xFC scope:global align:4 +process_onSelect_limited___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x800077AC; // type:function size:0x1C scope:global align:4 +process_onSelect___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x800077C8; // type:function size:0x1C scope:global align:4 +__ct__Q28JMessage18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x800077E4; // type:function size:0x44 scope:global align:4 +__dt__Q28JMessage18TSequenceProcessorFv = .text:0x80007828; // type:function size:0x5C scope:global align:4 +process__Q28JMessage18TSequenceProcessorFPCc = .text:0x80007884; // type:function size:0x278 scope:global align:4 +on_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007AFC; // type:function size:0x2C scope:global align:4 +on_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007B28; // type:function size:0x2C scope:global align:4 +on_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007B54; // type:function size:0x9C scope:global align:4 +on_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x80007BF0; // type:function size:0x2C scope:global align:4 +on_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007C1C; // type:function size:0x9C scope:global align:4 +do_begin__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007CB8; // type:function size:0x4 scope:global align:4 +do_end__Q28JMessage18TSequenceProcessorFv = .text:0x80007CBC; // type:function size:0x4 scope:global align:4 +do_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007CC0; // type:function size:0x8 scope:global align:4 +do_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007CC8; // type:function size:0x8 scope:global align:4 +do_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007CD0; // type:function size:0x4 scope:global align:4 +do_branch_query__Q28JMessage18TSequenceProcessorFUs = .text:0x80007CD4; // type:function size:0x4 scope:global align:4 +do_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x80007CD8; // type:function size:0x8 scope:global align:4 +do_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007CE0; // type:function size:0x4 scope:global align:4 +do_reset___Q28JMessage18TSequenceProcessorFPCc = .text:0x80007CE4; // type:function size:0x1C scope:global align:4 +do_setBegin_isReady___Q28JMessage18TSequenceProcessorCFv = .text:0x80007D00; // type:function size:0x10 scope:global align:4 +do_begin___Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007D10; // type:function size:0x2C scope:global align:4 +do_end___Q28JMessage18TSequenceProcessorFv = .text:0x80007D3C; // type:function size:0x34 scope:global align:4 +do_tag___Q28JMessage18TSequenceProcessorFUlPCvUl = .text:0x80007D70; // type:function size:0x140 scope:global align:4 +do_systemTagCode___Q28JMessage18TSequenceProcessorFUsPCvUl = .text:0x80007EB0; // type:function size:0x64 scope:global align:4 +process_onJump_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x80007F14; // type:function size:0x6C scope:global align:4 +process_onJump___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x80007F80; // type:function size:0x64 scope:global align:4 +process_onBranch_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x80007FE4; // type:function size:0x70 scope:global align:4 +process_onBranch___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x80008054; // type:function size:0x6C scope:global align:4 +__ct__Q28JMessage19TRenderingProcessorFPCQ28JMessage10TReference = .text:0x800080C0; // type:function size:0x3C scope:global align:4 +__dt__Q28JMessage19TRenderingProcessorFv = .text:0x800080FC; // type:function size:0x5C scope:global align:4 +process__Q28JMessage19TRenderingProcessorFPCc = .text:0x80008158; // type:function size:0x174 scope:global align:4 +do_begin__Q28JMessage19TRenderingProcessorFPCvPCc = .text:0x800082CC; // type:function size:0x4 scope:global align:4 +do_end__Q28JMessage19TRenderingProcessorFv = .text:0x800082D0; // type:function size:0x4 scope:global align:4 +do_reset___Q28JMessage19TRenderingProcessorFPCc = .text:0x800082D4; // type:function size:0x4 scope:global align:4 +do_begin___Q28JMessage19TRenderingProcessorFPCvPCc = .text:0x800082D8; // type:function size:0x2C scope:global align:4 +do_end___Q28JMessage19TRenderingProcessorFv = .text:0x80008304; // type:function size:0x2C scope:global align:4 +do_tag___Q28JMessage19TRenderingProcessorFUlPCvUl = .text:0x80008330; // type:function size:0x34 scope:global align:4 +do_systemTagCode___Q28JMessage19TRenderingProcessorFUsPCvUl = .text:0x80008364; // type:function size:0x40 scope:global align:4 +__ct__Q28JMessage8TControlFv = .text:0x800083A4; // type:function size:0x44 scope:global align:4 +__dt__Q28JMessage8TControlFv = .text:0x800083E8; // type:function size:0x48 scope:global align:4 +reset__Q28JMessage8TControlFv = .text:0x80008430; // type:function size:0x68 scope:global align:4 +update__Q28JMessage8TControlFv = .text:0x80008498; // type:function size:0x88 scope:global align:4 +render__Q28JMessage8TControlFv = .text:0x80008520; // type:function size:0x15C scope:global align:4 +setMessageCode__Q28JMessage8TControlFUsUs = .text:0x8000867C; // type:function size:0xDC scope:global align:4 +setMessageID__Q28JMessage8TControlFUlUlPb = .text:0x80008758; // type:function size:0xFC scope:global align:4 +setMessageCode_inSequence___Q28JMessage8TControlFPCQ28JMessage10TProcessorUsUs = .text:0x80008854; // type:function size:0xE8 scope:global align:4 +getData__Q47JStudio3stb4data16TParse_TSequenceCFPQ57JStudio3stb4data16TParse_TSequence5TData = .text:0x8000893C; // type:function size:0x4C scope:global align:4 +getData__Q47JStudio3stb4data17TParse_TParagraphCFPQ57JStudio3stb4data17TParse_TParagraph5TData = .text:0x80008988; // type:function size:0x78 scope:global align:4 +getData__Q47JStudio3stb4data22TParse_TParagraph_dataCFPQ57JStudio3stb4data22TParse_TParagraph_data5TData = .text:0x80008A00; // type:function size:0x80 scope:global align:4 +extrapolateParameter_raw__Q27JStudio13functionvalueFdd = .text:0x80008A80; // type:function size:0x4 scope:weak align:4 +extrapolateParameter_repeat__Q27JStudio13functionvalueFdd = .text:0x80008A84; // type:function size:0x3C scope:weak align:4 +extrapolateParameter_clamp__Q27JStudio13functionvalueFdd = .text:0x80008AC0; // type:function size:0x2C scope:weak align:4 +toFunction_outside__Q27JStudio14TFunctionValueFi = .text:0x80008AEC; // type:function size:0x48 scope:global align:4 +__dt__Q27JStudio14TFunctionValueFv = .text:0x80008B34; // type:function size:0x48 scope:global align:4 +extrapolateParameter_turn__Q27JStudio13functionvalueFdd = .text:0x80008B7C; // type:function size:0x60 scope:global align:4 +range_set__Q27JStudio29TFunctionValueAttribute_rangeFdd = .text:0x80008BDC; // type:function size:0x14 scope:global align:4 +__ct__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008BF0; // type:function size:0x64 scope:global align:4 +getType__Q27JStudio24TFunctionValue_compositeCFv = .text:0x80008C54; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008C5C; // type:function size:0x20 scope:global align:4 +initialize__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008C7C; // type:function size:0x4C scope:global align:4 +prepare__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008CC8; // type:function size:0x4 scope:global align:4 +getValue__Q27JStudio24TFunctionValue_compositeFd = .text:0x80008CCC; // type:function size:0x34 scope:global align:4 +composite_raw__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008D00; // type:function size:0x6C scope:global align:4 +composite_index__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008D6C; // type:function size:0x16C scope:global align:4 +composite_parameter__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008ED8; // type:function size:0x68 scope:global align:4 +composite_add__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008F40; // type:function size:0x84 scope:global align:4 +composite_subtract__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008FC4; // type:function size:0xE8 scope:global align:4 +composite_multiply__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x800090AC; // type:function size:0x84 scope:global align:4 +composite_divide__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80009130; // type:function size:0xE8 scope:global align:4 +__ct__Q27JStudio23TFunctionValue_constantFv = .text:0x80009218; // type:function size:0x28 scope:global align:4 +getType__Q27JStudio23TFunctionValue_constantCFv = .text:0x80009240; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio23TFunctionValue_constantFv = .text:0x80009248; // type:function size:0x14 scope:global align:4 +initialize__Q27JStudio23TFunctionValue_constantFv = .text:0x8000925C; // type:function size:0x10 scope:global align:4 +prepare__Q27JStudio23TFunctionValue_constantFv = .text:0x8000926C; // type:function size:0x4 scope:global align:4 +getValue__Q27JStudio23TFunctionValue_constantFd = .text:0x80009270; // type:function size:0x8 scope:global align:4 +__ct__Q27JStudio25TFunctionValue_transitionFv = .text:0x80009278; // type:function size:0x74 scope:global align:4 +getType__Q27JStudio25TFunctionValue_transitionCFv = .text:0x800092EC; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio25TFunctionValue_transitionFv = .text:0x800092F4; // type:function size:0x30 scope:global align:4 +initialize__Q27JStudio25TFunctionValue_transitionFv = .text:0x80009324; // type:function size:0x48 scope:global align:4 +prepare__Q27JStudio25TFunctionValue_transitionFv = .text:0x8000936C; // type:function size:0xA8 scope:global align:4 +getValue__Q27JStudio25TFunctionValue_transitionFd = .text:0x80009414; // type:function size:0x250 scope:global align:4 +__ct__Q27JStudio19TFunctionValue_listFv = .text:0x80009664; // type:function size:0x78 scope:global align:4 +getType__Q27JStudio19TFunctionValue_listCFv = .text:0x800096DC; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio19TFunctionValue_listFv = .text:0x800096E4; // type:function size:0x30 scope:global align:4 +initialize__Q27JStudio19TFunctionValue_listFv = .text:0x80009714; // type:function size:0x4C scope:global align:4 +prepare__Q27JStudio19TFunctionValue_listFv = .text:0x80009760; // type:function size:0x128 scope:global align:4 +getValue__Q27JStudio19TFunctionValue_listFd = .text:0x80009888; // type:function size:0x530 scope:global align:4 +update_INTERPOLATE_NONE___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009DB8; // type:function size:0x14 scope:global align:4 +update_INTERPOLATE_LINEAR___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009DCC; // type:function size:0x30 scope:global align:4 +update_INTERPOLATE_PLATEAU___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009DFC; // type:function size:0x7C scope:global align:4 +update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009E78; // type:function size:0xB4 scope:global align:4 +__ct__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x80009F2C; // type:function size:0x84 scope:global align:4 +getType__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x80009FB0; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x80009FB8; // type:function size:0x30 scope:global align:4 +data_set__Q27JStudio29TFunctionValue_list_parameterFPCfUl = .text:0x80009FE8; // type:function size:0x30 scope:global align:4 +initialize__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8000A018; // type:function size:0x58 scope:global align:4 +prepare__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8000A070; // type:function size:0x128 scope:global align:4 +getValue__Q27JStudio29TFunctionValue_list_parameterFd = .text:0x8000A198; // type:function size:0x538 scope:global align:4 +findUpperBound_binary_current__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCd = .text:0x8000A6D0; // type:function size:0x5C scope:local align:4 +findUpperBound_binary_current>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less = .text:0x8000A72C; // type:function size:0x22C scope:local align:4 +update_INTERPOLATE_NONE___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000A958; // type:function size:0xC scope:global align:4 +update_INTERPOLATE_LINEAR___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000A964; // type:function size:0x30 scope:global align:4 +update_INTERPOLATE_PLATEAU___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000A994; // type:function size:0x6C scope:global align:4 +update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000AA00; // type:function size:0x260 scope:global align:4 +__ct__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000AC60; // type:function size:0x98 scope:global align:4 +getType__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x8000ACF8; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000AD00; // type:function size:0x20 scope:global align:4 +data_set__Q27JStudio22TFunctionValue_hermiteFPCfUlUl = .text:0x8000AD20; // type:function size:0x50 scope:global align:4 +initialize__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000AD70; // type:function size:0x6C scope:global align:4 +prepare__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000ADDC; // type:function size:0xA8 scope:global align:4 +getValue__Q27JStudio22TFunctionValue_hermiteFd = .text:0x8000AE84; // type:function size:0x5D0 scope:global align:4 +findUpperBound_binary_current__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCd = .text:0x8000B454; // type:function size:0x84 scope:local align:4 +findUpperBound_binary_current>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less = .text:0x8000B4D8; // type:function size:0x2E4 scope:local align:4 +__dt__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000B7BC; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8000B818; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio19TFunctionValue_listFv = .text:0x8000B874; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio25TFunctionValue_transitionFv = .text:0x8000B8D0; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio23TFunctionValue_constantFv = .text:0x8000B92C; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio24TFunctionValue_compositeFv = .text:0x8000B988; // type:function size:0x88 scope:weak align:4 +upper_bound>__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less = .text:0x8000BA10; // type:function size:0x80 scope:weak align:4 +upper_bound>__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less = .text:0x8000BA90; // type:function size:0xB8 scope:weak align:4 +prepare__Q37JStudio3fvb7TObjectFRCQ47JStudio3fvb4data13TParse_TBlockPQ37JStudio3fvb8TControl = .text:0x8000BB48; // type:function size:0x21C scope:global align:4 +getCompositeData_raw___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD64; // type:function size:0xC scope:local align:4 +getCompositeData_index___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD70; // type:function size:0xC scope:local align:4 +getCompositeData_parameter___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD7C; // type:function size:0xC scope:local align:4 +getCompositeData_add___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD88; // type:function size:0xC scope:local align:4 +getCompositeData_subtract___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD94; // type:function size:0xC scope:local align:4 +getCompositeData_multiply___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BDA0; // type:function size:0xC scope:local align:4 +getCompositeData_divide___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BDAC; // type:function size:0xC scope:local align:4 +prepare_data___Q37JStudio3fvb17TObject_compositeFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BDB8; // type:function size:0x6C scope:global align:4 +prepare_data___Q37JStudio3fvb16TObject_constantFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE24; // type:function size:0x10 scope:global align:4 +prepare_data___Q37JStudio3fvb18TObject_transitionFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE34; // type:function size:0x18 scope:global align:4 +prepare_data___Q37JStudio3fvb12TObject_listFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE4C; // type:function size:0x20 scope:global align:4 +prepare_data___Q37JStudio3fvb22TObject_list_parameterFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE6C; // type:function size:0x30 scope:global align:4 +prepare_data___Q37JStudio3fvb15TObject_hermiteFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE9C; // type:function size:0x38 scope:global align:4 +__ct__Q37JStudio3fvb8TControlFv = .text:0x8000BED4; // type:function size:0x30 scope:global align:4 +__dt__Q37JStudio3fvb8TControlFv = .text:0x8000BF04; // type:function size:0x6C scope:global align:4 +getObject__Q37JStudio3fvb8TControlFPCvUl = .text:0x8000BF70; // type:function size:0x94 scope:global align:4 +find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal = .text:0x8000C004; // type:function size:0x9C scope:local align:4 +getObject_index__Q37JStudio3fvb8TControlFUl = .text:0x8000C0A0; // type:function size:0x7C scope:global align:4 +__dt__Q37JStudio3fvb8TFactoryFv = .text:0x8000C11C; // type:function size:0x48 scope:global align:4 +create__Q37JStudio3fvb8TFactoryFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x8000C164; // type:function size:0x308 scope:global align:4 +destroy__Q37JStudio3fvb8TFactoryFPQ37JStudio3fvb7TObject = .text:0x8000C46C; // type:function size:0x3C scope:global align:4 +__ct__Q37JStudio3fvb6TParseFPQ37JStudio3fvb8TControl = .text:0x8000C4A8; // type:function size:0x20 scope:global align:4 +__dt__Q37JStudio3fvb6TParseFv = .text:0x8000C4C8; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x8000C528; // type:function size:0x98 scope:global align:4 +parseBlock_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x8000C5C0; // type:function size:0x118 scope:global align:4 +__dt__Q37JStudio3fvb15TObject_hermiteFv = .text:0x8000C6D8; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb22TObject_list_parameterFv = .text:0x8000C764; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb12TObject_listFv = .text:0x8000C7F0; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb18TObject_transitionFv = .text:0x8000C87C; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb16TObject_constantFv = .text:0x8000C908; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb17TObject_compositeFv = .text:0x8000C994; // type:function size:0xA8 scope:weak align:4 +getData__Q47JStudio3fvb4data17TParse_TParagraphCFPQ57JStudio3fvb4data17TParse_TParagraph5TData = .text:0x8000CA3C; // type:function size:0x68 scope:global align:4 +__ct__Q27JStudio8TControlFv = .text:0x8000CAA4; // type:function size:0x90 scope:global align:4 +__dt__Q27JStudio8TControlFv = .text:0x8000CB34; // type:function size:0x70 scope:global align:4 +transformOnSet_setOrigin__Q27JStudio8TControlFRC3Vecf = .text:0x8000CBA4; // type:function size:0x80 scope:global align:4 +transformOnGet_setOrigin__Q27JStudio8TControlFRC3Vecf = .text:0x8000CC24; // type:function size:0x94 scope:global align:4 +__dt__Q27JStudio13TCreateObjectFv = .text:0x8000CCB8; // type:function size:0x48 scope:global align:4 +__dt__Q27JStudio8TFactoryFv = .text:0x8000CD00; // type:function size:0x84 scope:global align:4 +appendCreateObject__Q27JStudio8TFactoryFPQ27JStudio13TCreateObject = .text:0x8000CD84; // type:function size:0x50 scope:global align:4 +create__Q27JStudio8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8000CDD4; // type:function size:0xB4 scope:global align:4 +__ct__Q27JStudio6TParseFPQ27JStudio8TControl = .text:0x8000CE88; // type:function size:0x54 scope:global align:4 +__dt__Q27JStudio6TParseFv = .text:0x8000CEDC; // type:function size:0x70 scope:global align:4 +parseHeader__Q27JStudio6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x8000CF4C; // type:function size:0x78 scope:global align:4 +parseBlock_block__Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x8000CFC4; // type:function size:0x44 scope:global align:4 +parseBlock_block_fvb___Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x8000D008; // type:function size:0x60 scope:global align:4 +__dt__Q37JStudio14TVariableValue7TOutputFv = .text:0x8000D068; // type:function size:0x48 scope:global align:4 +update_immediate___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x8000D0B0; // type:function size:0x14 scope:global align:4 +update_time___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x8000D0C4; // type:function size:0x3C scope:global align:4 +update_functionValue___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x8000D100; // type:function size:0x64 scope:global align:4 +__dt__Q37JStudio14TVariableValue13TOutput_none_Fv = .text:0x8000D164; // type:function size:0x5C scope:global align:4 +__cl__Q37JStudio14TVariableValue13TOutput_none_CFfPQ27JStudio8TAdaptor = .text:0x8000D1C0; // type:function size:0x4 scope:global align:4 +adaptor_do_prepare__Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x8000D1C4; // type:function size:0x4 scope:global align:4 +adaptor_do_begin__Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x8000D1C8; // type:function size:0x4 scope:global align:4 +adaptor_do_end__Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x8000D1CC; // type:function size:0x4 scope:global align:4 +adaptor_do_update__Q27JStudio8TAdaptorFPCQ27JStudio7TObjectUl = .text:0x8000D1D0; // type:function size:0x4 scope:global align:4 +adaptor_do_data__Q27JStudio8TAdaptorFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x8000D1D4; // type:function size:0x4 scope:global align:4 +adaptor_setVariableValue__Q27JStudio8TAdaptorFPQ27JStudio7TObjectUlQ37JStudio4data15TEOperationDataPCvUl = .text:0x8000D1D8; // type:function size:0xA0 scope:global align:4 +adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFPCQ37JStudio8TAdaptor27TSetVariableValue_immediate = .text:0x8000D278; // type:function size:0x44 scope:global align:4 +adaptor_setVariableValue_Vec__Q27JStudio8TAdaptorFPCUlRC3Vec = .text:0x8000D2BC; // type:function size:0x70 scope:global align:4 +adaptor_getVariableValue_Vec__Q27JStudio8TAdaptorCFP3VecPCUl = .text:0x8000D32C; // type:function size:0x38 scope:global align:4 +adaptor_setVariableValue_GXColor__Q27JStudio8TAdaptorFPCUlRC8_GXColor = .text:0x8000D364; // type:function size:0xE0 scope:global align:4 +adaptor_getVariableValue_GXColor__Q27JStudio8TAdaptorCFP8_GXColorPCUl = .text:0x8000D444; // type:function size:0x14C scope:global align:4 +adaptor_setVariableValue_VOID___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D590; // type:function size:0x18 scope:global align:4 +adaptor_setVariableValue_IMMEDIATE___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D5A8; // type:function size:0x2C scope:global align:4 +adaptor_setVariableValue_TIME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D5D4; // type:function size:0x2C scope:global align:4 +adaptor_setVariableValue_FVR_NAME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D600; // type:function size:0x70 scope:global align:4 +adaptor_setVariableValue_FVR_INDEX___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D670; // type:function size:0x6C scope:global align:4 +do_begin__Q27JStudio7TObjectFv = .text:0x8000D6DC; // type:function size:0x3C scope:global align:4 +do_end__Q27JStudio7TObjectFv = .text:0x8000D718; // type:function size:0x3C scope:global align:4 +do_wait__Q27JStudio7TObjectFUl = .text:0x8000D754; // type:function size:0xEC scope:global align:4 +do_data__Q27JStudio7TObjectFPCvUlPCvUl = .text:0x8000D840; // type:function size:0x5C scope:global align:4 +__dt__Q27JStudio14TAdaptor_actorFv = .text:0x8000D89C; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio13TObject_actorFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_actor = .text:0x8000D8F8; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio13TObject_actorFUlPCvUl = .text:0x8000D950; // type:function size:0x484 scope:global align:4 +__dt__Q27JStudio21TAdaptor_ambientLightFv = .text:0x8000DDD4; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio20TObject_ambientLightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio21TAdaptor_ambientLight = .text:0x8000DE30; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio20TObject_ambientLightFUlPCvUl = .text:0x8000DE88; // type:function size:0x1DC scope:global align:4 +__dt__Q27JStudio15TAdaptor_cameraFv = .text:0x8000E064; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio14TObject_cameraFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio15TAdaptor_camera = .text:0x8000E0C0; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio14TObject_cameraFUlPCvUl = .text:0x8000E118; // type:function size:0x3F8 scope:global align:4 +__dt__Q27JStudio12TAdaptor_fogFv = .text:0x8000E510; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio11TObject_fogFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio12TAdaptor_fog = .text:0x8000E56C; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio11TObject_fogFUlPCvUl = .text:0x8000E5C4; // type:function size:0x1E8 scope:global align:4 +__dt__Q27JStudio14TAdaptor_lightFv = .text:0x8000E7AC; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio13TObject_lightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_light = .text:0x8000E808; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio13TObject_lightFUlPCvUl = .text:0x8000E860; // type:function size:0x370 scope:global align:4 +__dt__Q27JStudio16TAdaptor_messageFv = .text:0x8000EBD0; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio15TObject_messageFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio16TAdaptor_message = .text:0x8000EC2C; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio15TObject_messageFUlPCvUl = .text:0x8000EC84; // type:function size:0x90 scope:global align:4 +__dt__Q27JStudio17TAdaptor_particleFv = .text:0x8000ED14; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio16TObject_particleFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio17TAdaptor_particle = .text:0x8000ED70; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio16TObject_particleFUlPCvUl = .text:0x8000EDC8; // type:function size:0x458 scope:global align:4 +__dt__Q27JStudio14TAdaptor_soundFv = .text:0x8000F220; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio13TObject_soundFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_sound = .text:0x8000F27C; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio13TObject_soundFUlPCvUl = .text:0x8000F2D4; // type:function size:0x3F8 scope:global align:4 +__dt__Q27JStudio13TObject_soundFv = .text:0x8000F6CC; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio16TObject_particleFv = .text:0x8000F760; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio15TObject_messageFv = .text:0x8000F7F4; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio13TObject_lightFv = .text:0x8000F888; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio11TObject_fogFv = .text:0x8000F91C; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio14TObject_cameraFv = .text:0x8000F9B0; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio20TObject_ambientLightFv = .text:0x8000FA44; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio13TObject_actorFv = .text:0x8000FAD8; // type:function size:0x94 scope:weak align:4 +__sinit_jstudio-object_cpp = .text:0x8000FB6C; // type:function size:0x284 scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8000FDF0; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_Fv = .text:0x8000FE4C; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8000FEA8; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_Fv = .text:0x8000FF04; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8000FF60; // type:function size:0x5C scope:local align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8000FFBC; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x80010018; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x80010074; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x800100D0; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8001012C; // type:function size:0x5C scope:weak align:4 +isEqual__Q37JStudio6object7TIDDataFRCQ37JStudio6object7TIDDataRCQ37JStudio6object7TIDData = .text:0x80010188; // type:function size:0xF0 scope:global align:4 +__ct__Q37JStudio3stb7TObjectFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80010278; // type:function size:0x70 scope:global align:4 +__dt__Q37JStudio3stb7TObjectFv = .text:0x800102E8; // type:function size:0x48 scope:global align:4 +forward__Q37JStudio3stb7TObjectFUl = .text:0x80010330; // type:function size:0x238 scope:global align:4 +do_begin__Q37JStudio3stb7TObjectFv = .text:0x80010568; // type:function size:0x4 scope:global align:4 +do_end__Q37JStudio3stb7TObjectFv = .text:0x8001056C; // type:function size:0x4 scope:global align:4 +do_paragraph__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x80010570; // type:function size:0x4 scope:global align:4 +do_wait__Q37JStudio3stb7TObjectFUl = .text:0x80010574; // type:function size:0x4 scope:global align:4 +do_data__Q37JStudio3stb7TObjectFPCvUlPCvUl = .text:0x80010578; // type:function size:0x4 scope:global align:4 +process_sequence___Q37JStudio3stb7TObjectFv = .text:0x8001057C; // type:function size:0x1A4 scope:global align:4 +process_paragraph_reserved___Q37JStudio3stb7TObjectFUlPCvUl = .text:0x80010720; // type:function size:0x13C scope:global align:4 +__ct__Q37JStudio3stb8TControlFv = .text:0x8001085C; // type:function size:0x94 scope:global align:4 +__dt__Q37JStudio3stb15TObject_controlFv = .text:0x800108F0; // type:function size:0x5C scope:weak align:4 +__dt__Q37JStudio3stb8TControlFv = .text:0x8001094C; // type:function size:0x9C scope:global align:4 +getObject__Q37JStudio3stb8TControlFPCvUl = .text:0x800109E8; // type:function size:0x94 scope:global align:4 +find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal = .text:0x80010A7C; // type:function size:0x9C scope:local align:4 +forward__Q37JStudio3stb8TControlFUl = .text:0x80010B18; // type:function size:0xF0 scope:global align:4 +__dt__Q37JStudio3stb8TFactoryFv = .text:0x80010C08; // type:function size:0x48 scope:global align:4 +create__Q37JStudio3stb8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80010C50; // type:function size:0x8 scope:global align:4 +destroy__Q37JStudio3stb8TFactoryFPQ37JStudio3stb7TObject = .text:0x80010C58; // type:function size:0x3C scope:global align:4 +__ct__Q37JStudio3stb6TParseFPQ37JStudio3stb8TControl = .text:0x80010C94; // type:function size:0x20 scope:global align:4 +__dt__Q37JStudio3stb6TParseFv = .text:0x80010CB4; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80010D14; // type:function size:0xC8 scope:global align:4 +parseBlock_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80010DDC; // type:function size:0x54 scope:global align:4 +parseHeader__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x80010E30; // type:function size:0x8 scope:global align:4 +parseBlock_block__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80010E38; // type:function size:0x38 scope:global align:4 +parseBlock_object__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data20TParse_TBlock_objectUl = .text:0x80010E70; // type:function size:0x154 scope:global align:4 +getTransformation_SRxyzT__Q27JStudio4mathFPA4_fRC3VecRC3VecRC3Vec = .text:0x80010FC4; // type:function size:0x1B0 scope:global align:4 +getFromTransformation_SRxyzT__Q27JStudio4mathFP3VecP3VecP3VecPA4_Cf = .text:0x80011174; // type:function size:0x254 scope:global align:4 +__ct__Q214JStudio_JStage14TAdaptor_lightFPCQ26JStage7TSystemPQ26JStage6TLight = .text:0x800113C8; // type:function size:0xA8 scope:global align:4 +__dt__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80011470; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject = .text:0x800114E8; // type:function size:0x48 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject = .text:0x80011530; // type:function size:0x2AC scope:global align:4 +adaptor_do_end__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject = .text:0x800117DC; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObjectUl = .text:0x80011830; // type:function size:0x1C8 scope:global align:4 +adaptor_do_data__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x800119F8; // type:function size:0x34 scope:global align:4 +adaptor_do_FACULTY__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80011A2C; // type:function size:0x78 scope:global align:4 +adaptor_do_ENABLE__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80011AA4; // type:function size:0x24 scope:global align:4 +__cl__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFfPQ27JStudio8TAdaptor = .text:0x80011AC8; // type:function size:0xC scope:global align:4 +__dt__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_Fv = .text:0x80011AD4; // type:function size:0x60 scope:weak align:4 +__sinit_object-light_cpp = .text:0x80011B34; // type:function size:0x298 scope:local align:4 +transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80011DCC; // type:function size:0x98 scope:global align:4 +transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80011E64; // type:function size:0x98 scope:global align:4 +transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80011EFC; // type:function size:0xA4 scope:global align:4 +transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80011FA0; // type:function size:0xA4 scope:global align:4 +adaptor_data___Q214JStudio_JStage16TAdaptor_object_FPQ26JStage7TObjectPCvUlPCvUl = .text:0x80012044; // type:function size:0x48 scope:global align:4 +adaptor_findJSGObject___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TSystemPCc = .text:0x8001208C; // type:function size:0x4C scope:global align:4 +adaptor_findJSGObjectNode___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TObjectPCc = .text:0x800120D8; // type:function size:0x2C scope:global align:4 +adaptor_ENABLE___Q214JStudio_JStage16TAdaptor_object_FPQ26JStage7TObjectQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012104; // type:function size:0x94 scope:global align:4 +__ct__Q214JStudio_JStage14TAdaptor_actorFPCQ26JStage7TSystemPQ26JStage6TActor = .text:0x80012198; // type:function size:0xC8 scope:global align:4 +__dt__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80012260; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject = .text:0x800122D8; // type:function size:0x8C scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject = .text:0x80012364; // type:function size:0x130 scope:global align:4 +adaptor_do_end__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject = .text:0x80012494; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObjectUl = .text:0x800124E8; // type:function size:0x44 scope:global align:4 +adaptor_do_data__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x8001252C; // type:function size:0x34 scope:global align:4 +adaptor_do_SHAPE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012560; // type:function size:0x54 scope:global align:4 +adaptor_do_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800125B4; // type:function size:0x54 scope:global align:4 +adaptor_do_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012608; // type:function size:0x14 scope:global align:4 +adaptor_do_TEXTURE_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8001261C; // type:function size:0x54 scope:global align:4 +adaptor_do_TEXTURE_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012670; // type:function size:0x14 scope:global align:4 +adaptor_do_PARENT__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012684; // type:function size:0x44 scope:global align:4 +adaptor_do_PARENT_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800126C8; // type:function size:0x5C scope:global align:4 +adaptor_do_PARENT_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012724; // type:function size:0x88 scope:global align:4 +adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800127AC; // type:function size:0x14 scope:global align:4 +adaptor_do_RELATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800127C0; // type:function size:0x44 scope:global align:4 +adaptor_do_RELATION_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012804; // type:function size:0x5C scope:global align:4 +adaptor_do_RELATION_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012860; // type:function size:0x58 scope:global align:4 +setJSG_ID___Q214JStudio_JStage14TAdaptor_actorFMQ26JStage6TActorFPCvPvUl_vQ37JStudio4data15TEOperationDataPCvUl = .text:0x800128B8; // type:function size:0x3C scope:global align:4 +setJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x800128F4; // type:function size:0x178 scope:global align:4 +getJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x80012A6C; // type:function size:0x17C scope:global align:4 +__cl__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFfPQ27JStudio8TAdaptor = .text:0x80012BE8; // type:function size:0xE4 scope:global align:4 +__dt__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_Fv = .text:0x80012CCC; // type:function size:0x60 scope:weak align:4 +__sinit_object-actor_cpp = .text:0x80012D2C; // type:function size:0x3D0 scope:local align:4 +__dt__Q214JStudio_JStage81TVariableValueOutput_object_Fv = .text:0x800130FC; // type:function size:0x60 scope:weak align:4 +__cl__Q214JStudio_JStage81TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x8001315C; // type:function size:0x30 scope:weak align:4 +__ct__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ26JStage7TSystemPQ26JStage13TAmbientLight = .text:0x8001318C; // type:function size:0xA0 scope:global align:4 +__dt__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x8001322C; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject = .text:0x800132A4; // type:function size:0x4 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject = .text:0x800132A8; // type:function size:0x8C scope:global align:4 +adaptor_do_end__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject = .text:0x80013334; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObjectUl = .text:0x80013388; // type:function size:0x6C scope:global align:4 +adaptor_do_data__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x800133F4; // type:function size:0x34 scope:global align:4 +__ct__Q214JStudio_JStage15TAdaptor_cameraFPCQ26JStage7TSystemPQ26JStage7TCamera = .text:0x80013428; // type:function size:0xC4 scope:global align:4 +__dt__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x800134EC; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject = .text:0x80013564; // type:function size:0x48 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject = .text:0x800135AC; // type:function size:0xE8 scope:global align:4 +adaptor_do_end__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject = .text:0x80013694; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObjectUl = .text:0x800136E8; // type:function size:0x5C scope:global align:4 +adaptor_do_data__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x80013744; // type:function size:0x34 scope:global align:4 +adaptor_do_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80013778; // type:function size:0x44 scope:global align:4 +adaptor_do_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800137BC; // type:function size:0x5C scope:global align:4 +adaptor_do_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80013818; // type:function size:0x80 scope:global align:4 +adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80013898; // type:function size:0x14 scope:global align:4 +adaptor_do_TARGET_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800138AC; // type:function size:0x44 scope:global align:4 +adaptor_do_TARGET_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800138F0; // type:function size:0x5C scope:global align:4 +adaptor_do_TARGET_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8001394C; // type:function size:0x20 scope:global align:4 +setJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x8001396C; // type:function size:0xFC scope:global align:4 +getJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80013A68; // type:function size:0x108 scope:global align:4 +setJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80013B70; // type:function size:0xE0 scope:global align:4 +getJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80013C50; // type:function size:0xE4 scope:global align:4 +__sinit_object-camera_cpp = .text:0x80013D34; // type:function size:0x370 scope:local align:4 +__dt__Q214JStudio_JStage83TVariableValueOutput_object_Fv = .text:0x800140A4; // type:function size:0x60 scope:weak align:4 +__cl__Q214JStudio_JStage83TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x80014104; // type:function size:0x30 scope:weak align:4 +__ct__Q214JStudio_JStage12TAdaptor_fogFPCQ26JStage7TSystemPQ26JStage4TFog = .text:0x80014134; // type:function size:0xA0 scope:global align:4 +__dt__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x800141D4; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject = .text:0x8001424C; // type:function size:0x48 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject = .text:0x80014294; // type:function size:0xF4 scope:global align:4 +adaptor_do_end__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject = .text:0x80014388; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObjectUl = .text:0x800143DC; // type:function size:0x6C scope:global align:4 +adaptor_do_data__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x80014448; // type:function size:0x34 scope:global align:4 +__sinit_object-fog_cpp = .text:0x8001447C; // type:function size:0x228 scope:local align:4 +__dt__Q214JStudio_JStage77TVariableValueOutput_object_Fv = .text:0x800146A4; // type:function size:0x60 scope:weak align:4 +__cl__Q214JStudio_JStage77TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x80014704; // type:function size:0x30 scope:weak align:4 +__dt__Q214JStudio_JStage13TCreateObjectFv = .text:0x80014734; // type:function size:0x60 scope:global align:4 +create__Q214JStudio_JStage13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80014794; // type:function size:0x194 scope:global align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014928; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x800149F4; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014AC0; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014B8C; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014C58; // type:function size:0xCC scope:weak align:4 +__ct__Q216JStudio_JMessage16TAdaptor_messageFPQ28JMessage8TControl = .text:0x80014D24; // type:function size:0x38 scope:global align:4 +__dt__Q216JStudio_JMessage16TAdaptor_messageFv = .text:0x80014D5C; // type:function size:0x60 scope:global align:4 +adaptor_do_MESSAGE__Q216JStudio_JMessage16TAdaptor_messageFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80014DBC; // type:function size:0x3C scope:global align:4 +createObject_MESSAGE_JMS___Q216JStudio_JMessage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ28JMessage8TControl = .text:0x80014DF8; // type:function size:0xBC scope:local align:4 +create__Q216JStudio_JMessage18TCreateObject_baseFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80014EB4; // type:function size:0xAC scope:global align:4 +__dt__Q216JStudio_JMessage13TCreateObjectFv = .text:0x80014F60; // type:function size:0x70 scope:global align:4 +find__Q216JStudio_JMessage13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80014FD0; // type:function size:0x8 scope:global align:4 +__ct__Q214JStudio_JAudio14TAdaptor_soundFP8JAIBasicPCQ26JStage7TSystem = .text:0x80014FD8; // type:function size:0xC8 scope:global align:4 +__dt__Q214JStudio_JAudio14TAdaptor_soundFv = .text:0x800150A0; // type:function size:0x84 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObject = .text:0x80015124; // type:function size:0xCC scope:global align:4 +adaptor_do_end__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObject = .text:0x800151F0; // type:function size:0x58 scope:global align:4 +adaptor_do_update__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObjectUl = .text:0x80015248; // type:function size:0x14C scope:global align:4 +adaptor_do_SOUND__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015394; // type:function size:0xA4 scope:global align:4 +adaptor_do_BEGIN__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015438; // type:function size:0x30 scope:global align:4 +adaptor_do_BEGIN_FADE_IN__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015468; // type:function size:0x48 scope:global align:4 +adaptor_do_END__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800154B0; // type:function size:0x30 scope:global align:4 +adaptor_do_END_FADE_OUT__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800154E0; // type:function size:0x48 scope:global align:4 +adaptor_do_PARENT__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015528; // type:function size:0x68 scope:global align:4 +adaptor_do_PARENT_NODE__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015590; // type:function size:0x80 scope:global align:4 +adaptor_do_PARENT_ENABLE__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015610; // type:function size:0x20 scope:global align:4 +adaptor_do_LOCATED__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015630; // type:function size:0x28 scope:global align:4 +__cl__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_CFfPQ27JStudio8TAdaptor = .text:0x80015658; // type:function size:0x40 scope:global align:4 +beginSound_fadeIn___Q214JStudio_JAudio14TAdaptor_soundFUl = .text:0x80015698; // type:function size:0xD8 scope:global align:4 +endSound_fadeOut___Q214JStudio_JAudio14TAdaptor_soundFUl = .text:0x80015770; // type:function size:0x50 scope:global align:4 +__dt__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_Fv = .text:0x800157C0; // type:function size:0x60 scope:weak align:4 +prepareSoundVecT<8JAISound>__8JAIBasicFUlPP8JAISoundP3VecUlUlUc = .text:0x80015820; // type:function size:0x4C scope:weak align:4 +startSoundVecT<8JAISound>__8JAIBasicFUlPP8JAISoundP3VecUlUlUc = .text:0x8001586C; // type:function size:0x60 scope:weak align:4 +startSoundActorT<8JAISound>__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUc = .text:0x800158CC; // type:function size:0x68 scope:weak align:4 +__sinit_object-sound_cpp = .text:0x80015934; // type:function size:0x310 scope:local align:4 +createObject_SOUND_JAI___Q214JStudio_JAudio21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectP8JAIBasicPCQ26JStage7TSystem = .text:0x80015C44; // type:function size:0xCC scope:local align:4 +__dt__Q214JStudio_JAudio13TCreateObjectFv = .text:0x80015D10; // type:function size:0x60 scope:global align:4 +create__Q214JStudio_JAudio13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80015D70; // type:function size:0x78 scope:global align:4 +getUseMtxNum__11J3DShapeMtxCFv = .text:0x80015DE8; // type:function size:0x8 scope:weak align:4 +J3DUNewMtxCalcAnm__FUlP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransform14J3DMtxCalcFlag = .text:0x80015DF0; // type:function size:0x590 scope:global align:4 +setWeight__10J3DMtxCalcFUcf = .text:0x80016380; // type:function size:0x4 scope:weak align:4 +setAnmTransform__10J3DMtxCalcFUcP15J3DAnmTransform = .text:0x80016384; // type:function size:0x4 scope:weak align:4 +__dt__22J3DMtxCalcBlendAnmBaseFv = .text:0x80016388; // type:function size:0x5C scope:weak align:4 +__dt__10J3DMtxCalcFv = .text:0x800163E4; // type:function size:0x48 scope:weak align:4 +calcBlend__15J3DMtxCalcBlendFP3VecP3VecPP15J3DAnmTransformPf = .text:0x8001642C; // type:function size:0x348 scope:global align:4 +calcBlend__28J3DMtxCalcBlendSharedMotionTFP3VecP3VecPP15J3DAnmTransformPf = .text:0x80016774; // type:function size:0x390 scope:global align:4 +calcScaleBlend__24J3DMtxCalcScaleBlendMayaFRC3VecRC3Vec = .text:0x80016B04; // type:function size:0x198 scope:global align:4 +setAnmTransform__22J3DMtxCalcBlendAnmBaseFP15J3DAnmTransform = .text:0x80016C9C; // type:function size:0x8 scope:weak align:4 +getAnmTransform__22J3DMtxCalcBlendAnmBaseFUc = .text:0x80016CA4; // type:function size:0x10 scope:weak align:4 +getAnmTransform__22J3DMtxCalcBlendAnmBaseFv = .text:0x80016CB4; // type:function size:0x8 scope:weak align:4 +getWeight__22J3DMtxCalcBlendAnmBaseCFUc = .text:0x80016CBC; // type:function size:0x10 scope:weak align:4 +setAnmTransform__22J3DMtxCalcBlendAnmBaseFUcP15J3DAnmTransform = .text:0x80016CCC; // type:function size:0x10 scope:weak align:4 +setWeight__22J3DMtxCalcBlendAnmBaseFUcf = .text:0x80016CDC; // type:function size:0x10 scope:weak align:4 +setAnmTransform__10J3DMtxCalcFP15J3DAnmTransform = .text:0x80016CEC; // type:function size:0x4 scope:weak align:4 +getAnmTransform__10J3DMtxCalcFUc = .text:0x80016CF0; // type:function size:0x8 scope:weak align:4 +getAnmTransform__10J3DMtxCalcFv = .text:0x80016CF8; // type:function size:0x8 scope:weak align:4 +getWeight__10J3DMtxCalcCFUc = .text:0x80016D00; // type:function size:0x8 scope:weak align:4 +__dt__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80016D08; // type:function size:0x6C scope:weak align:4 +init__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80016D74; // type:function size:0x28 scope:weak align:4 +setWeight__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcf = .text:0x80016D9C; // type:function size:0x10 scope:weak align:4 +setAnmTransform__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcP15J3DAnmTransform = .text:0x80016DAC; // type:function size:0x10 scope:weak align:4 +__dt__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80016DBC; // type:function size:0x6C scope:weak align:4 +init__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80016E28; // type:function size:0x28 scope:weak align:4 +setWeight__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcf = .text:0x80016E50; // type:function size:0x10 scope:weak align:4 +setAnmTransform__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcP15J3DAnmTransform = .text:0x80016E60; // type:function size:0x10 scope:weak align:4 +__dt__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80016E70; // type:function size:0x6C scope:weak align:4 +init__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x80016EDC; // type:function size:0x4C scope:weak align:4 +setWeight__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcf = .text:0x80016F28; // type:function size:0x10 scope:weak align:4 +setAnmTransform__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcP15J3DAnmTransform = .text:0x80016F38; // type:function size:0x10 scope:weak align:4 +__dt__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80016F48; // type:function size:0x6C scope:weak align:4 +init__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x80016FB4; // type:function size:0x4C scope:weak align:4 +setWeight__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcf = .text:0x80017000; // type:function size:0x10 scope:weak align:4 +setAnmTransform__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcP15J3DAnmTransform = .text:0x80017010; // type:function size:0x10 scope:weak align:4 +__dt__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x80017020; // type:function size:0x6C scope:weak align:4 +init__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x8001708C; // type:function size:0x28 scope:weak align:4 +setWeight__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcf = .text:0x800170B4; // type:function size:0x10 scope:weak align:4 +setAnmTransform__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcP15J3DAnmTransform = .text:0x800170C4; // type:function size:0x10 scope:weak align:4 +__dt__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x800170D4; // type:function size:0x6C scope:weak align:4 +init__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x80017140; // type:function size:0x28 scope:weak align:4 +setWeight__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcf = .text:0x80017168; // type:function size:0x10 scope:weak align:4 +setAnmTransform__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcP15J3DAnmTransform = .text:0x80017178; // type:function size:0x10 scope:weak align:4 +calc__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x80017188; // type:function size:0x134 scope:weak align:4 +calc__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x800172BC; // type:function size:0x134 scope:weak align:4 +calc__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x800173F0; // type:function size:0x1A4 scope:weak align:4 +calc__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80017594; // type:function size:0x1A4 scope:weak align:4 +calc__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80017738; // type:function size:0x4C scope:weak align:4 +calc__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80017784; // type:function size:0x4C scope:weak align:4 +__ct__10JUTTextureFv = .text:0x800177D0; // type:function size:0x1C scope:weak align:4 +__dt__24J3DUMtxAnmCacheTableBaseFv = .text:0x800177EC; // type:function size:0x5C scope:global align:4 +__ct__20J3DUMtxAnmCacheTableFP8J3DModelP15J3DAnmTransform = .text:0x80017848; // type:function size:0x84 scope:global align:4 +init<20J3DUMtxAnmCacheTable>__26@unnamed@J3DUMtxCache_cpp@FP8J3DModelP15J3DAnmTransformP20J3DUMtxAnmCacheTable = .text:0x800178CC; // type:function size:0x144 scope:weak align:4 +create__7JKRAramFUlUllll = .text:0x80017A10; // type:function size:0x94 scope:global align:4 +__ct__7JKRAramFUlUll = .text:0x80017AA4; // type:function size:0x11C scope:global align:4 +__dt__7JKRAramFv = .text:0x80017BC0; // type:function size:0x90 scope:global align:4 +run__7JKRAramFv = .text:0x80017C50; // type:function size:0x70 scope:global align:4 +mainRamToAram__7JKRAramFPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80017CC0; // type:function size:0x28C scope:global align:4 +aramToMainRam__7JKRAramFUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80017F4C; // type:function size:0x2DC scope:global align:4 +aramToMainRam__7JKRAramFP12JKRAramBlockPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80018228; // type:function size:0x10C scope:global align:4 +JKRDecompressFromAramToMainRam__FUlPvUlUlUlPUl = .text:0x80018334; // type:function size:0x168 scope:global align:4 +decompSZS_subroutine__FPUcPUc = .text:0x8001849C; // type:function size:0x2A8 scope:local align:4 +firstSrcData__Fv = .text:0x80018744; // type:function size:0xA4 scope:local align:4 +nextSrcData__FPUc = .text:0x800187E8; // type:function size:0xD8 scope:local align:4 +__sinit_JKRAram_cpp = .text:0x800188C0; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRAMCommand>Fv = .text:0x80018904; // type:function size:0x54 scope:weak align:4 +__ct__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80018958; // type:function size:0xB0 scope:global align:4 +__dt__14JKRAramArchiveFv = .text:0x80018A08; // type:function size:0x150 scope:global align:4 +__dt__7JKRFileFv = .text:0x80018B58; // type:function size:0x60 scope:weak align:4 +open__14JKRAramArchiveFl = .text:0x80018BB8; // type:function size:0x334 scope:global align:4 +fetchResource__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80018EEC; // type:function size:0x124 scope:global align:4 +fetchResource__14JKRAramArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80019010; // type:function size:0xF8 scope:global align:4 +fetchResource_subroutine__14JKRAramArchiveFUlUlPUcUli = .text:0x80019108; // type:function size:0xBC scope:global align:4 +fetchResource_subroutine__14JKRAramArchiveFUlUlP7JKRHeapiPPUc = .text:0x800191C4; // type:function size:0x14C scope:global align:4 +getExpandedResSize__14JKRAramArchiveCFPCv = .text:0x80019310; // type:function size:0x134 scope:global align:4 +__ct__12JKRAramBlockFUlUlUlUcb = .text:0x80019444; // type:function size:0x6C scope:global align:4 +__dt__12JKRAramBlockFv = .text:0x800194B0; // type:function size:0xBC scope:global align:4 +allocHead__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x8001956C; // type:function size:0xA8 scope:global align:4 +allocTail__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x80019614; // type:function size:0xB4 scope:global align:4 +__ct__11JKRAramHeapFUlUl = .text:0x800196C8; // type:function size:0xD8 scope:global align:4 +__dt__11JKRAramHeapFv = .text:0x800197A0; // type:function size:0xA8 scope:global align:4 +alloc__11JKRAramHeapFUlQ211JKRAramHeap10EAllocMode = .text:0x80019848; // type:function size:0x80 scope:global align:4 +allocFromHead__11JKRAramHeapFUl = .text:0x800198C8; // type:function size:0x88 scope:global align:4 +allocFromTail__11JKRAramHeapFUl = .text:0x80019950; // type:function size:0x78 scope:global align:4 +getFreeSize__11JKRAramHeapFv = .text:0x800199C8; // type:function size:0x78 scope:global align:4 +__sinit_JKRAramHeap_cpp = .text:0x80019A40; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRAramBlock>Fv = .text:0x80019A84; // type:function size:0x54 scope:weak align:4 +sendCommand__12JKRAramPieceFP12JKRAMCommand = .text:0x80019AD8; // type:function size:0x20 scope:global align:4 +orderSync__12JKRAramPieceFiUlUlUlP12JKRAramBlock = .text:0x80019AF8; // type:function size:0x1AC scope:global align:4 +startDMA__12JKRAramPieceFP12JKRAMCommand = .text:0x80019CA4; // type:function size:0x78 scope:global align:4 +doneDMA__12JKRAramPieceFUl = .text:0x80019D1C; // type:function size:0xA8 scope:global align:4 +__ct__12JKRAMCommandFv = .text:0x80019DC4; // type:function size:0x70 scope:global align:4 +__dt__12JKRAMCommandFv = .text:0x80019E34; // type:function size:0xA8 scope:global align:4 +__sinit_JKRAramPiece_cpp = .text:0x80019EDC; // type:function size:0x44 scope:local align:4 +create__13JKRAramStreamFl = .text:0x80019F20; // type:function size:0x70 scope:global align:4 +__ct__13JKRAramStreamFl = .text:0x80019F90; // type:function size:0x50 scope:global align:4 +__dt__13JKRAramStreamFv = .text:0x80019FE0; // type:function size:0x60 scope:global align:4 +run__13JKRAramStreamFv = .text:0x8001A040; // type:function size:0x70 scope:global align:4 +readFromAram__13JKRAramStreamFv = .text:0x8001A0B0; // type:function size:0x8 scope:global align:4 +writeToAram__13JKRAramStreamFP20JKRAramStreamCommand = .text:0x8001A0B8; // type:function size:0x1EC scope:global align:4 +getAvailable__20JSURandomInputStreamCFv = .text:0x8001A2A4; // type:function size:0x5C scope:weak align:4 +write_StreamToAram_Async__13JKRAramStreamFP18JSUFileInputStreamUlUlUlPUl = .text:0x8001A300; // type:function size:0xC8 scope:global align:4 +sync__13JKRAramStreamFP20JKRAramStreamCommandi = .text:0x8001A3C8; // type:function size:0x94 scope:global align:4 +setTransBuffer__13JKRAramStreamFPUcUlP7JKRHeap = .text:0x8001A45C; // type:function size:0x54 scope:global align:4 +__ct__20JKRAramStreamCommandFv = .text:0x8001A4B0; // type:function size:0xC scope:global align:4 +__ct__10JKRArchiveFlQ210JKRArchive10EMountMode = .text:0x8001A4BC; // type:function size:0xA8 scope:global align:4 +__dt__10JKRArchiveFv = .text:0x8001A564; // type:function size:0x60 scope:global align:4 +isSameName__10JKRArchiveCFRQ210JKRArchive8CArcNameUlUs = .text:0x8001A5C4; // type:function size:0x4C scope:global align:4 +findDirectory__10JKRArchiveCFPCcUl = .text:0x8001A610; // type:function size:0x31C scope:global align:4 +__ct__Q210JKRArchive8CArcNameFPPCcc = .text:0x8001A92C; // type:function size:0x44 scope:weak align:4 +getString__Q210JKRArchive8CArcNameCFv = .text:0x8001A970; // type:function size:0x8 scope:weak align:4 +getHash__Q210JKRArchive8CArcNameCFv = .text:0x8001A978; // type:function size:0x8 scope:weak align:4 +findTypeResource__10JKRArchiveCFUlPCc = .text:0x8001A980; // type:function size:0xF4 scope:global align:4 +findFsResource__10JKRArchiveCFPCcUl = .text:0x8001AA74; // type:function size:0x340 scope:global align:4 +findIdxResource__10JKRArchiveCFUl = .text:0x8001ADB4; // type:function size:0x28 scope:global align:4 +findNameResource__10JKRArchiveCFPCc = .text:0x8001ADDC; // type:function size:0xA4 scope:global align:4 +findPtrResource__10JKRArchiveCFPCv = .text:0x8001AE80; // type:function size:0x34 scope:global align:4 +findIdResource__10JKRArchiveCFUs = .text:0x8001AEB4; // type:function size:0x80 scope:global align:4 +store__Q210JKRArchive8CArcNameFPCc = .text:0x8001AF34; // type:function size:0x98 scope:global align:4 +store__Q210JKRArchive8CArcNameFPCcc = .text:0x8001AFCC; // type:function size:0xC8 scope:global align:4 +setExpandSize__10JKRArchiveFPQ210JKRArchive12SDIFileEntryUl = .text:0x8001B094; // type:function size:0x4C scope:global align:4 +getExpandSize__10JKRArchiveCFPQ210JKRArchive12SDIFileEntry = .text:0x8001B0E0; // type:function size:0x50 scope:global align:4 +mount__10JKRArchiveFPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x8001B130; // type:function size:0x64 scope:global align:4 +mount__10JKRArchiveFPvP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x8001B194; // type:function size:0xD8 scope:global align:4 +mount__10JKRArchiveFlQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x8001B26C; // type:function size:0x1D8 scope:global align:4 +becomeCurrent__10JKRArchiveFPCc = .text:0x8001B444; // type:function size:0x88 scope:global align:4 +getDirEntry__10JKRArchiveCFPQ210JKRArchive9SDirEntryUl = .text:0x8001B4CC; // type:function size:0x78 scope:global align:4 +getGlbResource__10JKRArchiveFUlPCcP10JKRArchive = .text:0x8001B544; // type:function size:0xB8 scope:global align:4 +getResource__10JKRArchiveFPCc = .text:0x8001B5FC; // type:function size:0x7C scope:global align:4 +getResource__10JKRArchiveFUlPCc = .text:0x8001B678; // type:function size:0x80 scope:global align:4 +getIdxResource__10JKRArchiveFUl = .text:0x8001B6F8; // type:function size:0x54 scope:global align:4 +readResource__10JKRArchiveFPvUlUlPCc = .text:0x8001B74C; // type:function size:0xAC scope:global align:4 +readResource__10JKRArchiveFPvUlPCc = .text:0x8001B7F8; // type:function size:0xA4 scope:global align:4 +readResource__10JKRArchiveFPvUlUs = .text:0x8001B89C; // type:function size:0x7C scope:global align:4 +removeResourceAll__10JKRArchiveFv = .text:0x8001B918; // type:function size:0x98 scope:global align:4 +removeResource__10JKRArchiveFPv = .text:0x8001B9B0; // type:function size:0x60 scope:global align:4 +detachResource__10JKRArchiveFPv = .text:0x8001BA10; // type:function size:0x3C scope:global align:4 +getResSize__10JKRArchiveCFPCv = .text:0x8001BA4C; // type:function size:0x34 scope:global align:4 +countFile__10JKRArchiveCFPCc = .text:0x8001BA80; // type:function size:0x60 scope:global align:4 +getFirstFile__10JKRArchiveCFPCc = .text:0x8001BAE0; // type:function size:0xAC scope:global align:4 +getExpandedResSize__10JKRArchiveCFPCv = .text:0x8001BB8C; // type:function size:0x2C scope:weak align:4 +__ct__14JKRCompArchiveFlQ210JKRArchive15EMountDirection = .text:0x8001BBB8; // type:function size:0xB0 scope:global align:4 +__dt__14JKRCompArchiveFv = .text:0x8001BC68; // type:function size:0x150 scope:global align:4 +open__14JKRCompArchiveFl = .text:0x8001BDB8; // type:function size:0x57C scope:global align:4 +fetchResource__14JKRCompArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001C334; // type:function size:0x190 scope:global align:4 +fetchResource__14JKRCompArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001C4C4; // type:function size:0x194 scope:global align:4 +removeResourceAll__14JKRCompArchiveFv = .text:0x8001C658; // type:function size:0xA4 scope:global align:4 +removeResource__14JKRCompArchiveFPv = .text:0x8001C6FC; // type:function size:0x74 scope:global align:4 +getExpandedResSize__14JKRCompArchiveCFPCv = .text:0x8001C770; // type:function size:0x1C4 scope:global align:4 +create__9JKRDecompFl = .text:0x8001C934; // type:function size:0x60 scope:global align:4 +__ct__9JKRDecompFl = .text:0x8001C994; // type:function size:0x50 scope:global align:4 +__dt__9JKRDecompFv = .text:0x8001C9E4; // type:function size:0x60 scope:global align:4 +run__9JKRDecompFv = .text:0x8001CA44; // type:function size:0xC8 scope:global align:4 +sendCommand__9JKRDecompFP16JKRDecompCommand = .text:0x8001CB0C; // type:function size:0x30 scope:global align:4 +orderSync__9JKRDecompFPUcPUcUlUl = .text:0x8001CB3C; // type:function size:0xA0 scope:global align:4 +decode__9JKRDecompFPUcPUcUlUl = .text:0x8001CBDC; // type:function size:0x8C scope:global align:4 +decodeSZP__9JKRDecompFPUcPUcUlUl = .text:0x8001CC68; // type:function size:0x1A4 scope:global align:4 +decodeSZS__9JKRDecompFPUcPUcUlUl = .text:0x8001CE0C; // type:function size:0xE4 scope:global align:4 +checkCompressed__9JKRDecompFPUc = .text:0x8001CEF0; // type:function size:0x50 scope:global align:4 +__ct__16JKRDecompCommandFv = .text:0x8001CF40; // type:function size:0x50 scope:global align:4 +__dt__16JKRDecompCommandFv = .text:0x8001CF90; // type:function size:0x3C scope:global align:4 +__ct__11JKRDisposerFv = .text:0x8001CFCC; // type:function size:0x68 scope:global align:4 +__dt__11JKRDisposerFv = .text:0x8001D034; // type:function size:0x84 scope:global align:4 +__ct__10JKRDvdFileFv = .text:0x8001D0B8; // type:function size:0x74 scope:global align:4 +__ct__10JKRDvdFileFPCc = .text:0x8001D12C; // type:function size:0xB0 scope:global align:4 +__ct__10JKRDvdFileFl = .text:0x8001D1DC; // type:function size:0xB0 scope:global align:4 +__dt__10JKRDvdFileFv = .text:0x8001D28C; // type:function size:0x9C scope:global align:4 +initiate__10JKRDvdFileFv = .text:0x8001D328; // type:function size:0x6C scope:global align:4 +open__10JKRDvdFileFPCc = .text:0x8001D394; // type:function size:0x78 scope:global align:4 +open__10JKRDvdFileFl = .text:0x8001D40C; // type:function size:0x78 scope:global align:4 +close__10JKRDvdFileFv = .text:0x8001D484; // type:function size:0x7C scope:global align:4 +readData__10JKRDvdFileFPvll = .text:0x8001D500; // type:function size:0xC4 scope:global align:4 +writeData__10JKRDvdFileFPCvll = .text:0x8001D5C4; // type:function size:0x8 scope:global align:4 +sync__10JKRDvdFileFv = .text:0x8001D5CC; // type:function size:0x54 scope:global align:4 +doneProcess__10JKRDvdFileFlP11DVDFileInfo = .text:0x8001D620; // type:function size:0x30 scope:global align:4 +getFileSize__10JKRDvdFileCFv = .text:0x8001D650; // type:function size:0x8 scope:weak align:4 +__sinit_JKRDvdFile_cpp = .text:0x8001D658; // type:function size:0x44 scope:local align:4 +__dt__21JSUList<10JKRDvdFile>Fv = .text:0x8001D69C; // type:function size:0x54 scope:weak align:4 +loadToAram__16JKRDvdAramRipperFPCcUl15JKRExpandSwitchUlUlPUl = .text:0x8001D6F0; // type:function size:0x9C scope:global align:4 +loadToAram__16JKRDvdAramRipperFlUl15JKRExpandSwitchUlUlPUl = .text:0x8001D78C; // type:function size:0x9C scope:global align:4 +loadToAram__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchUlUlPUl = .text:0x8001D828; // type:function size:0xA4 scope:global align:4 +loadToAram_Async__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchPFUl_vUlUlPUl = .text:0x8001D8CC; // type:function size:0xAC scope:global align:4 +callCommand_Async__16JKRDvdAramRipperFP12JKRADCommand = .text:0x8001D978; // type:function size:0x350 scope:global align:4 +__dt__18JSUFileInputStreamFv = .text:0x8001DCC8; // type:function size:0x70 scope:weak align:4 +syncAram__16JKRDvdAramRipperFP12JKRADCommandi = .text:0x8001DD38; // type:function size:0xE0 scope:global align:4 +__ct__12JKRADCommandFv = .text:0x8001DE18; // type:function size:0x40 scope:global align:4 +__dt__12JKRADCommandFv = .text:0x8001DE58; // type:function size:0x8C scope:global align:4 +JKRDecompressFromDVDToAram__FP10JKRDvdFileUlUlUlUlUlPUl = .text:0x8001DEE4; // type:function size:0x178 scope:global align:4 +decompSZS_subroutine__FPUcUl = .text:0x8001E05C; // type:function size:0x280 scope:local align:4 +firstSrcData__Fv = .text:0x8001E2DC; // type:function size:0xB4 scope:local align:4 +nextSrcData__FPUc = .text:0x8001E390; // type:function size:0xEC scope:local align:4 +dmaBufferFlush__FUl = .text:0x8001E47C; // type:function size:0x68 scope:local align:4 +__sinit_JKRDvdAramRipper_cpp = .text:0x8001E4E4; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRADCommand>Fv = .text:0x8001E528; // type:function size:0x54 scope:weak align:4 +__ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection = .text:0x8001E57C; // type:function size:0xB0 scope:global align:4 +__dt__13JKRDvdArchiveFv = .text:0x8001E62C; // type:function size:0x12C scope:global align:4 +open__13JKRDvdArchiveFl = .text:0x8001E758; // type:function size:0x2AC scope:global align:4 +fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001EA04; // type:function size:0x128 scope:global align:4 +fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001EB2C; // type:function size:0xFC scope:global align:4 +fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii = .text:0x8001EC28; // type:function size:0x200 scope:global align:4 +fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc = .text:0x8001EE28; // type:function size:0x21C scope:global align:4 +getExpandedResSize__13JKRDvdArchiveCFPCv = .text:0x8001F044; // type:function size:0x144 scope:global align:4 +loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8001F188; // type:function size:0xB4 scope:global align:4 +loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8001F23C; // type:function size:0xB4 scope:global align:4 +loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8001F2F0; // type:function size:0x4AC scope:global align:4 +JKRDecompressFromDVD__FP10JKRDvdFilePvUlUlUlUlPUl = .text:0x8001F79C; // type:function size:0x174 scope:global align:4 +decompSZS_subroutine__FPUcPUc = .text:0x8001F910; // type:function size:0x2B8 scope:local align:4 +firstSrcData__Fv = .text:0x8001FBC8; // type:function size:0xD4 scope:local align:4 +nextSrcData__FPUc = .text:0x8001FC9C; // type:function size:0x10C scope:local align:4 +isErrorRetry__12JKRDvdRipperFv = .text:0x8001FDA8; // type:function size:0x8 scope:weak align:4 +__sinit_JKRDvdRipper_cpp = .text:0x8001FDB0; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRDMCommand>Fv = .text:0x8001FDF4; // type:function size:0x54 scope:weak align:4 +createRoot__10JKRExpHeapFib = .text:0x8001FE48; // type:function size:0x80 scope:global align:4 +create__10JKRExpHeapFUlP7JKRHeapb = .text:0x8001FEC8; // type:function size:0xE4 scope:global align:4 +do_destroy__10JKRExpHeapFv = .text:0x8001FFAC; // type:function size:0x84 scope:global align:4 +__ct__10JKRExpHeapFPvUlP7JKRHeapb = .text:0x80020030; // type:function size:0x98 scope:global align:4 +__dt__10JKRExpHeapFv = .text:0x800200C8; // type:function size:0x68 scope:global align:4 +do_alloc__10JKRExpHeapFUli = .text:0x80020130; // type:function size:0x11C scope:global align:4 +allocFromHead__10JKRExpHeapFUli = .text:0x8002024C; // type:function size:0x254 scope:global align:4 +allocFromHead__10JKRExpHeapFUl = .text:0x800204A0; // type:function size:0xE4 scope:global align:4 +allocFromTail__10JKRExpHeapFUli = .text:0x80020584; // type:function size:0x158 scope:global align:4 +allocFromTail__10JKRExpHeapFUl = .text:0x800206DC; // type:function size:0xE0 scope:global align:4 +do_free__10JKRExpHeapFPv = .text:0x800207BC; // type:function size:0x74 scope:global align:4 +freeGroup__10JKRExpHeapFUc = .text:0x80020830; // type:function size:0x94 scope:global align:4 +do_freeAll__10JKRExpHeapFv = .text:0x800208C4; // type:function size:0x7C scope:global align:4 +do_freeTail__10JKRExpHeapFv = .text:0x80020940; // type:function size:0x90 scope:global align:4 +do_fillFreeArea__10JKRExpHeapFv = .text:0x800209D0; // type:function size:0x4 scope:global align:4 +do_changeGroupID__10JKRExpHeapFUc = .text:0x800209D4; // type:function size:0x58 scope:global align:4 +do_resize__10JKRExpHeapFPvUl = .text:0x80020A2C; // type:function size:0x1BC scope:global align:4 +do_getSize__10JKRExpHeapFPv = .text:0x80020BE8; // type:function size:0x88 scope:global align:4 +do_getFreeSize__10JKRExpHeapFv = .text:0x80020C70; // type:function size:0x6C scope:global align:4 +do_getMaxFreeBlock__10JKRExpHeapFv = .text:0x80020CDC; // type:function size:0x74 scope:global align:4 +do_getTotalFreeSize__10JKRExpHeapFv = .text:0x80020D50; // type:function size:0x64 scope:global align:4 +appendUsedList__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80020DB4; // type:function size:0x98 scope:global align:4 +setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock = .text:0x80020E4C; // type:function size:0x4C scope:global align:4 +removeFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80020E98; // type:function size:0x34 scope:global align:4 +recycleFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80020ECC; // type:function size:0x1E4 scope:global align:4 +joinTwoBlocks__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x800210B0; // type:function size:0x104 scope:global align:4 +check__10JKRExpHeapFv = .text:0x800211B4; // type:function size:0x1E0 scope:global align:4 +dump__10JKRExpHeapFv = .text:0x80021394; // type:function size:0x1C8 scope:global align:4 +dump_sort__10JKRExpHeapFv = .text:0x8002155C; // type:function size:0x1F8 scope:global align:4 +initiate__Q210JKRExpHeap9CMemBlockFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockUlUcUc = .text:0x80021754; // type:function size:0x20 scope:global align:4 +allocFore__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x80021774; // type:function size:0x44 scope:global align:4 +allocBack__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x800217B8; // type:function size:0x58 scope:global align:4 +free__Q210JKRExpHeap9CMemBlockFP10JKRExpHeap = .text:0x80021810; // type:function size:0x60 scope:global align:4 +getHeapBlock__Q210JKRExpHeap9CMemBlockFPv = .text:0x80021870; // type:function size:0x1C scope:global align:4 +state_register__10JKRExpHeapCFPQ27JKRHeap6TStateUl = .text:0x8002188C; // type:function size:0xF4 scope:global align:4 +state_compare__10JKRExpHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x80021980; // type:function size:0x30 scope:global align:4 +getHeapType__10JKRExpHeapFv = .text:0x800219B0; // type:function size:0xC scope:weak align:4 +do_getCurrentGroupId__10JKRExpHeapFv = .text:0x800219BC; // type:function size:0x8 scope:weak align:4 +mount__12JKRFileCacheFPCcP7JKRHeapPCc = .text:0x800219C4; // type:function size:0xF8 scope:global align:4 +__ct__12JKRFileCacheFPCcPCc = .text:0x80021ABC; // type:function size:0x1C0 scope:global align:4 +__dt__12JKRFileCacheFv = .text:0x80021C7C; // type:function size:0xD4 scope:global align:4 +becomeCurrent__12JKRFileCacheFPCc = .text:0x80021D50; // type:function size:0x98 scope:global align:4 +getResource__12JKRFileCacheFPCc = .text:0x80021DE8; // type:function size:0x118 scope:global align:4 +getResource__12JKRFileCacheFUlPCc = .text:0x80021F00; // type:function size:0x90 scope:global align:4 +readResource__12JKRFileCacheFPvUlPCc = .text:0x80021F90; // type:function size:0xD4 scope:global align:4 +readResource__12JKRFileCacheFPvUlUlPCc = .text:0x80022064; // type:function size:0x90 scope:global align:4 +removeResourceAll__12JKRFileCacheFv = .text:0x800220F4; // type:function size:0x90 scope:global align:4 +removeResource__12JKRFileCacheFPv = .text:0x80022184; // type:function size:0x9C scope:global align:4 +detachResource__12JKRFileCacheFPv = .text:0x80022220; // type:function size:0x74 scope:global align:4 +getResSize__12JKRFileCacheCFPCv = .text:0x80022294; // type:function size:0x34 scope:global align:4 +countFile__12JKRFileCacheCFPCc = .text:0x800222C8; // type:function size:0x7C scope:global align:4 +getFirstFile__12JKRFileCacheCFPCc = .text:0x80022344; // type:function size:0x9C scope:global align:4 +__dt__13JKRFileFinderFv = .text:0x800223E0; // type:function size:0x48 scope:weak align:4 +findCacheBlock__12JKRFileCacheCFPCv = .text:0x80022428; // type:function size:0x2C scope:global align:4 +findCacheBlock__12JKRFileCacheCFUl = .text:0x80022454; // type:function size:0x2C scope:global align:4 +findFile__12JKRFileCacheCFPcPCc = .text:0x80022480; // type:function size:0x3E8 scope:global align:4 +getDvdPathName__12JKRFileCacheCFPCc = .text:0x80022868; // type:function size:0x110 scope:global align:4 +convStrLower__12JKRFileCacheCFPc = .text:0x80022978; // type:function size:0x48 scope:global align:4 +__ct__Q212JKRFileCache11CCacheBlockFUlUlPCv = .text:0x800229C0; // type:function size:0x6C scope:global align:4 +getFsResource__12JKRFileCacheFPCc = .text:0x80022A2C; // type:function size:0x2C scope:weak align:4 +getNameResource__12JKRFileCacheFUlPCc = .text:0x80022A58; // type:function size:0x2C scope:weak align:4 +readFsResource__12JKRFileCacheFPvUlPCc = .text:0x80022A84; // type:function size:0x2C scope:weak align:4 +readNameResource__12JKRFileCacheFPvUlUlPCc = .text:0x80022AB0; // type:function size:0x2C scope:weak align:4 +__ct__12JKRArcFinderFP10JKRArchivell = .text:0x80022ADC; // type:function size:0x8C scope:global align:4 +findNextFile__12JKRArcFinderFv = .text:0x80022B68; // type:function size:0xAC scope:global align:4 +__ct__12JKRDvdFinderFPCc = .text:0x80022C14; // type:function size:0x88 scope:global align:4 +__dt__12JKRDvdFinderFv = .text:0x80022C9C; // type:function size:0x80 scope:global align:4 +findNextFile__12JKRDvdFinderFv = .text:0x80022D1C; // type:function size:0xA4 scope:global align:4 +__dt__12JKRArcFinderFv = .text:0x80022DC0; // type:function size:0x5C scope:weak align:4 +read__7JKRFileFPvll = .text:0x80022E1C; // type:function size:0x7C scope:global align:4 +__ct__13JKRFileLoaderFv = .text:0x80022E98; // type:function size:0x58 scope:global align:4 +__dt__13JKRFileLoaderFv = .text:0x80022EF0; // type:function size:0x8C scope:global align:4 +unmount__13JKRFileLoaderFv = .text:0x80022F7C; // type:function size:0x50 scope:global align:4 +getGlbResource__13JKRFileLoaderFPCc = .text:0x80022FCC; // type:function size:0x4C scope:global align:4 +getGlbResource__13JKRFileLoaderFPCcP13JKRFileLoader = .text:0x80023018; // type:function size:0x98 scope:global align:4 +findVolume__13JKRFileLoaderFPPCc = .text:0x800230B0; // type:function size:0x8C scope:global align:4 +fetchVolumeName__13JKRFileLoaderFPclPCc = .text:0x8002313C; // type:function size:0xE0 scope:global align:4 +__sinit_JKRFileLoader_cpp = .text:0x8002321C; // type:function size:0x44 scope:local align:4 +__dt__24JSUList<13JKRFileLoader>Fv = .text:0x80023260; // type:function size:0x54 scope:weak align:4 +__ct__7JKRHeapFPvUlP7JKRHeapb = .text:0x800232B4; // type:function size:0x124 scope:global align:4 +__dt__7JKRHeapFv = .text:0x800233D8; // type:function size:0x114 scope:global align:4 +initArena__7JKRHeapFPPcPUli = .text:0x800234EC; // type:function size:0xA8 scope:global align:4 +becomeSystemHeap__7JKRHeapFv = .text:0x80023594; // type:function size:0x10 scope:global align:4 +becomeCurrentHeap__7JKRHeapFv = .text:0x800235A4; // type:function size:0x10 scope:global align:4 +destroy__7JKRHeapFv = .text:0x800235B4; // type:function size:0x2C scope:global align:4 +alloc__7JKRHeapFUliP7JKRHeap = .text:0x800235E0; // type:function size:0x60 scope:global align:4 +alloc__7JKRHeapFUli = .text:0x80023640; // type:function size:0x2C scope:global align:4 +free__7JKRHeapFPvP7JKRHeap = .text:0x8002366C; // type:function size:0x48 scope:global align:4 +free__7JKRHeapFPv = .text:0x800236B4; // type:function size:0x2C scope:global align:4 +callAllDisposer__7JKRHeapFv = .text:0x800236E0; // type:function size:0x50 scope:global align:4 +freeAll__7JKRHeapFv = .text:0x80023730; // type:function size:0x2C scope:global align:4 +freeTail__7JKRHeapFv = .text:0x8002375C; // type:function size:0x2C scope:global align:4 +resize__7JKRHeapFPvUl = .text:0x80023788; // type:function size:0x2C scope:global align:4 +getFreeSize__7JKRHeapFv = .text:0x800237B4; // type:function size:0x2C scope:global align:4 +getTotalFreeSize__7JKRHeapFv = .text:0x800237E0; // type:function size:0x2C scope:global align:4 +changeGroupID__7JKRHeapFUc = .text:0x8002380C; // type:function size:0x2C scope:global align:4 +do_changeGroupID__7JKRHeapFUc = .text:0x80023838; // type:function size:0x8 scope:weak align:4 +getCurrentGroupId__7JKRHeapFv = .text:0x80023840; // type:function size:0x2C scope:global align:4 +do_getCurrentGroupId__7JKRHeapFv = .text:0x8002386C; // type:function size:0x8 scope:weak align:4 +getMaxAllocatableSize__7JKRHeapFi = .text:0x80023874; // type:function size:0x80 scope:global align:4 +findFromRoot__7JKRHeapFPv = .text:0x800238F4; // type:function size:0x3C scope:global align:4 +find__7JKRHeapCFPv = .text:0x80023930; // type:function size:0x270 scope:global align:4 +getNextChild__17JSUTree<7JKRHeap>CFv = .text:0x80023BA0; // type:function size:0x14 scope:weak align:4 +__ne__25JSUTreeIterator<7JKRHeap>CFPC17JSUTree<7JKRHeap> = .text:0x80023BB4; // type:function size:0x18 scope:weak align:4 +getEndChild__17JSUTree<7JKRHeap>CFv = .text:0x80023BCC; // type:function size:0x8 scope:weak align:4 +__pp__25JSUTreeIterator<7JKRHeap>Fv = .text:0x80023BD4; // type:function size:0x1C scope:weak align:4 +__rf__25JSUTreeIterator<7JKRHeap>CFv = .text:0x80023BF0; // type:function size:0xC scope:weak align:4 +__ct__25JSUTreeIterator<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x80023BFC; // type:function size:0x8 scope:weak align:4 +getNumChildren__17JSUTree<7JKRHeap>CFv = .text:0x80023C04; // type:function size:0x8 scope:weak align:4 +getFirstChild__17JSUTree<7JKRHeap>CFv = .text:0x80023C0C; // type:function size:0x14 scope:weak align:4 +getFirstLink__10JSUPtrListCFv = .text:0x80023C20; // type:function size:0x8 scope:weak align:4 +dispose__7JKRHeapFPvUl = .text:0x80023C28; // type:function size:0xA8 scope:global align:4 +dispose__7JKRHeapFPvPv = .text:0x80023CD0; // type:function size:0xA4 scope:global align:4 +dispose__7JKRHeapFv = .text:0x80023D74; // type:function size:0x50 scope:global align:4 +copyMemory__7JKRHeapFPvPvUl = .text:0x80023DC4; // type:function size:0x8C scope:global align:4 +JKRDefaultMemoryErrorRoutine__FPvUli = .text:0x80023E50; // type:function size:0x34 scope:local align:4 +setErrorHandler__7JKRHeapFPFPvUli_v = .text:0x80023E84; // type:function size:0x20 scope:global align:4 +__nw__FUl = .text:0x80023EA4; // type:function size:0x4C scope:global align:4 +__nw__FUli = .text:0x80023EF0; // type:function size:0x50 scope:global align:4 +__nw__FUlP7JKRHeapi = .text:0x80023F40; // type:function size:0x6C scope:global align:4 +__nwa__FUl = .text:0x80023FAC; // type:function size:0x4C scope:global align:4 +__nwa__FUli = .text:0x80023FF8; // type:function size:0x50 scope:global align:4 +__nwa__FUlP7JKRHeapi = .text:0x80024048; // type:function size:0x6C scope:global align:4 +__dl__FPv = .text:0x800240B4; // type:function size:0x24 scope:global align:4 +__dla__FPv = .text:0x800240D8; // type:function size:0x24 scope:global align:4 +__dt__Q27JKRHeap6TStateFv = .text:0x800240FC; // type:function size:0x414 scope:global align:4 +dump__Q27JKRHeap6TStateCFv = .text:0x80024510; // type:function size:0x34 scope:weak align:4 +isVerbose__Q27JKRHeap6TStateFv = .text:0x80024544; // type:function size:0x8 scope:weak align:4 +__ct__Q27JKRHeap6TStateFPC7JKRHeapUlb = .text:0x8002454C; // type:function size:0x80 scope:weak align:4 +isCompareOnDestructed__Q27JKRHeap6TStateCFv = .text:0x800245CC; // type:function size:0x8 scope:weak align:4 +__ct__Q37JKRHeap6TState9TLocationFv = .text:0x800245D4; // type:function size:0x14 scope:weak align:4 +__ct__Q37JKRHeap6TState9TArgumentFPC7JKRHeapUlb = .text:0x800245E8; // type:function size:0x20 scope:weak align:4 +getHeap__Q27JKRHeap6TStateCFv = .text:0x80024608; // type:function size:0x8 scope:weak align:4 +getId__Q27JKRHeap6TStateCFv = .text:0x80024610; // type:function size:0x8 scope:weak align:4 +state_register__7JKRHeapCFPQ27JKRHeap6TStateUl = .text:0x80024618; // type:function size:0x4 scope:global align:4 +state_compare__7JKRHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x8002461C; // type:function size:0x18 scope:global align:4 +state_dumpDifference__7JKRHeapFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x80024634; // type:function size:0x4 scope:global align:4 +state_dump__7JKRHeapCFRCQ27JKRHeap6TState = .text:0x80024638; // type:function size:0x4 scope:global align:4 +dump_sort__7JKRHeapFv = .text:0x8002463C; // type:function size:0x8 scope:weak align:4 +__ct__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80024644; // type:function size:0xBC scope:global align:4 +__ct__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x80024700; // type:function size:0xC8 scope:global align:4 +__dt__13JKRMemArchiveFv = .text:0x800247C8; // type:function size:0xA8 scope:global align:4 +open__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80024870; // type:function size:0x168 scope:global align:4 +open__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x800249D8; // type:function size:0xAC scope:global align:4 +fetchResource__13JKRMemArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80024A84; // type:function size:0x34 scope:global align:4 +fetchResource__13JKRMemArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80024AB8; // type:function size:0xC8 scope:global align:4 +removeResourceAll__13JKRMemArchiveFv = .text:0x80024B80; // type:function size:0x50 scope:global align:4 +removeResource__13JKRMemArchiveFPv = .text:0x80024BD0; // type:function size:0x3C scope:global align:4 +fetchResource_subroutine__13JKRMemArchiveFPUcUlPUcUli = .text:0x80024C0C; // type:function size:0xD4 scope:global align:4 +getExpandedResSize__13JKRMemArchiveCFPCv = .text:0x80024CE0; // type:function size:0x90 scope:global align:4 +create__12JKRSolidHeapFUlP7JKRHeapb = .text:0x80024D70; // type:function size:0xB4 scope:global align:4 +do_destroy__12JKRSolidHeapFv = .text:0x80024E24; // type:function size:0x60 scope:global align:4 +__ct__12JKRSolidHeapFPvUlP7JKRHeapb = .text:0x80024E84; // type:function size:0x5C scope:global align:4 +__dt__12JKRSolidHeapFv = .text:0x80024EE0; // type:function size:0x68 scope:global align:4 +adjustSize__12JKRSolidHeapFv = .text:0x80024F48; // type:function size:0xC4 scope:global align:4 +do_alloc__12JKRSolidHeapFUli = .text:0x8002500C; // type:function size:0xB0 scope:global align:4 +allocFromHead__12JKRSolidHeapFUli = .text:0x800250BC; // type:function size:0xD8 scope:global align:4 +allocFromTail__12JKRSolidHeapFUli = .text:0x80025194; // type:function size:0xD0 scope:global align:4 +do_free__12JKRSolidHeapFPv = .text:0x80025264; // type:function size:0x2C scope:global align:4 +do_freeAll__12JKRSolidHeapFv = .text:0x80025290; // type:function size:0x60 scope:global align:4 +do_freeTail__12JKRSolidHeapFv = .text:0x800252F0; // type:function size:0x8C scope:global align:4 +do_fillFreeArea__12JKRSolidHeapFv = .text:0x8002537C; // type:function size:0x4 scope:global align:4 +do_resize__12JKRSolidHeapFPvUl = .text:0x80025380; // type:function size:0x30 scope:global align:4 +do_getSize__12JKRSolidHeapFPv = .text:0x800253B0; // type:function size:0x30 scope:global align:4 +check__12JKRSolidHeapFv = .text:0x800253E0; // type:function size:0x8C scope:global align:4 +dump__12JKRSolidHeapFv = .text:0x8002546C; // type:function size:0x104 scope:global align:4 +state_register__12JKRSolidHeapCFPQ27JKRHeap6TStateUl = .text:0x80025570; // type:function size:0x5C scope:global align:4 +state_compare__12JKRSolidHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x800255CC; // type:function size:0x30 scope:global align:4 +getHeapType__12JKRSolidHeapFv = .text:0x800255FC; // type:function size:0xC scope:weak align:4 +do_getFreeSize__12JKRSolidHeapFv = .text:0x80025608; // type:function size:0x8 scope:weak align:4 +do_getMaxFreeBlock__12JKRSolidHeapFv = .text:0x80025610; // type:function size:0x8 scope:weak align:4 +do_getTotalFreeSize__12JKRSolidHeapFv = .text:0x80025618; // type:function size:0x20 scope:weak align:4 +__ct__9JKRThreadFUlii = .text:0x80025638; // type:function size:0xB8 scope:global align:4 +__ct__9JKRThreadFP7JKRHeapUlii = .text:0x800256F0; // type:function size:0xA0 scope:global align:4 +__ct__9JKRThreadFP8OSThreadi = .text:0x80025790; // type:function size:0xA8 scope:global align:4 +__dt__9JKRThreadFv = .text:0x80025838; // type:function size:0xD8 scope:global align:4 +setCommon_mesgQueue__9JKRThreadFP7JKRHeapi = .text:0x80025910; // type:function size:0x70 scope:global align:4 +setCommon_heapSpecified__9JKRThreadFP7JKRHeapUli = .text:0x80025980; // type:function size:0x90 scope:global align:4 +start__9JKRThreadFPv = .text:0x80025A10; // type:function size:0x2C scope:global align:4 +run__9JKRThreadFv = .text:0x80025A3C; // type:function size:0x8 scope:weak align:4 +loopProc__15JKRThreadSwitchFv = .text:0x80025A44; // type:function size:0x184 scope:global align:4 +__dt__7JKRTaskFv = .text:0x80025BC8; // type:function size:0x110 scope:global align:4 +create__7JKRTaskFiiUlP7JKRHeap = .text:0x80025CD8; // type:function size:0x2A4 scope:global align:4 +run__7JKRTaskFv = .text:0x80025F7C; // type:function size:0x9C scope:global align:4 +request__7JKRTaskFPFPv_vPvPv = .text:0x80026018; // type:function size:0xB0 scope:global align:4 +__sinit_JKRThread_cpp = .text:0x800260C8; // type:function size:0x70 scope:local align:4 +__dt__17JSUList<7JKRTask>Fv = .text:0x80026138; // type:function size:0x54 scope:weak align:4 +__dt__19JSUList<9JKRThread>Fv = .text:0x8002618C; // type:function size:0x54 scope:weak align:4 +write__15JSUOutputStreamFPCvl = .text:0x800261E0; // type:function size:0x58 scope:global align:4 +write__15JSUOutputStreamFPCc = .text:0x80026238; // type:function size:0xF8 scope:global align:4 +__dt__10JSUIosBaseFv = .text:0x80026330; // type:function size:0x48 scope:weak align:4 +__dt__14JSUInputStreamFv = .text:0x80026378; // type:function size:0x5C scope:global align:4 +read__14JSUInputStreamFPvl = .text:0x800263D4; // type:function size:0x58 scope:global align:4 +read__14JSUInputStreamFPc = .text:0x8002642C; // type:function size:0xB0 scope:global align:4 +skip__14JSUInputStreamFl = .text:0x800264DC; // type:function size:0x88 scope:global align:4 +align__20JSURandomInputStreamFl = .text:0x80026564; // type:function size:0x8C scope:global align:4 +skip__20JSURandomInputStreamFl = .text:0x800265F0; // type:function size:0x5C scope:global align:4 +peek__20JSURandomInputStreamFPvl = .text:0x8002664C; // type:function size:0xBC scope:global align:4 +seek__20JSURandomInputStreamFl17JSUStreamSeekFrom = .text:0x80026708; // type:function size:0x44 scope:global align:4 +__dt__20JSURandomInputStreamFv = .text:0x8002674C; // type:function size:0x6C scope:weak align:4 +__ct__10JSUPtrLinkFPv = .text:0x800267B8; // type:function size:0x18 scope:global align:4 +__dt__10JSUPtrLinkFv = .text:0x800267D0; // type:function size:0x60 scope:global align:4 +__ct__10JSUPtrListFb = .text:0x80026830; // type:function size:0x38 scope:global align:4 +__dt__10JSUPtrListFv = .text:0x80026868; // type:function size:0x68 scope:global align:4 +initiate__10JSUPtrListFv = .text:0x800268D0; // type:function size:0x14 scope:global align:4 +append__10JSUPtrListFP10JSUPtrLink = .text:0x800268E4; // type:function size:0xB8 scope:global align:4 +prepend__10JSUPtrListFP10JSUPtrLink = .text:0x8002699C; // type:function size:0xB8 scope:global align:4 +insert__10JSUPtrListFP10JSUPtrLinkP10JSUPtrLink = .text:0x80026A54; // type:function size:0x1D0 scope:global align:4 +remove__10JSUPtrListFP10JSUPtrLink = .text:0x80026C24; // type:function size:0xB0 scope:global align:4 +getNthLink__10JSUPtrListCFUl = .text:0x80026CD4; // type:function size:0x88 scope:global align:4 +setBuffer__20JSUMemoryInputStreamFPCvl = .text:0x80026D5C; // type:function size:0x14 scope:global align:4 +readData__20JSUMemoryInputStreamFPvl = .text:0x80026D70; // type:function size:0x78 scope:global align:4 +seekPos__20JSUMemoryInputStreamFl17JSUStreamSeekFrom = .text:0x80026DE8; // type:function size:0x7C scope:global align:4 +__dt__20JSUMemoryInputStreamFv = .text:0x80026E64; // type:function size:0x70 scope:weak align:4 +getLength__20JSUMemoryInputStreamCFv = .text:0x80026ED4; // type:function size:0x8 scope:weak align:4 +getPosition__20JSUMemoryInputStreamCFv = .text:0x80026EDC; // type:function size:0x8 scope:weak align:4 +__ct__18JSUFileInputStreamFP7JKRFile = .text:0x80026EE4; // type:function size:0x44 scope:global align:4 +readData__18JSUFileInputStreamFPvl = .text:0x80026F28; // type:function size:0xE0 scope:global align:4 +seekPos__18JSUFileInputStreamFl17JSUStreamSeekFrom = .text:0x80027008; // type:function size:0xE8 scope:global align:4 +getLength__18JSUFileInputStreamCFv = .text:0x800270F0; // type:function size:0x30 scope:weak align:4 +getPosition__18JSUFileInputStreamCFv = .text:0x80027120; // type:function size:0x8 scope:weak align:4 +parseVariableUInt_16_32_following__Q27JGadget6binaryFPCvPUlPUlPQ37JGadget6binary5TEBit = .text:0x80027128; // type:function size:0x68 scope:global align:4 +__dt__Q37JGadget6binary19TParse_header_blockFv = .text:0x80027190; // type:function size:0x48 scope:global align:4 +parse_next__Q37JGadget6binary19TParse_header_blockFPPCvUl = .text:0x800271D8; // type:function size:0x10C scope:global align:4 +__dt__Q27JGadget13TNodeLinkListFv = .text:0x800272E4; // type:function size:0x3C scope:global align:4 +Insert__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorPQ27JGadget13TLinkListNode = .text:0x80027320; // type:function size:0x2C scope:global align:4 +Erase__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x8002734C; // type:function size:0x24 scope:global align:4 +Remove__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x80027370; // type:function size:0x2C scope:global align:4 +remove_if>__Q27JGadget13TNodeLinkListFQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_ = .text:0x8002739C; // type:function size:0xE8 scope:local align:4 +__ct__Q27JGadget18TList_pointer_voidFRCQ27JGadget14TAllocator = .text:0x80027484; // type:function size:0x20 scope:global align:4 +__dt__Q27JGadget18TList_pointer_voidFv = .text:0x800274A4; // type:function size:0xC0 scope:global align:4 +insert__Q27JGadget18TList_pointer_voidFQ37JGadget36TList>8iteratorRCPv = .text:0x80027564; // type:function size:0x98 scope:global align:4 +erase__Q27JGadget18TList_pointer_voidFQ37JGadget36TList>8iterator = .text:0x800275FC; // type:function size:0x70 scope:global align:4 +extend_default__Q27JGadget6vectorFUlUlUl = .text:0x8002766C; // type:function size:0x8 scope:global align:4 +__ct__Q27JGadget20TVector_pointer_voidFRCQ27JGadget14TAllocator = .text:0x80027674; // type:function size:0x2C scope:global align:4 +insert__Q27JGadget38TVector>FPPvUlRCPv = .text:0x800276A0; // type:function size:0x78 scope:weak align:4 +Insert_raw__Q27JGadget38TVector>FPPvUl = .text:0x80027718; // type:function size:0x470 scope:weak align:4 +__dt__Q27JGadget20TVector_pointer_voidFv = .text:0x80027B88; // type:function size:0x108 scope:global align:4 +insert__Q27JGadget20TVector_pointer_voidFPPvRCPv = .text:0x80027C90; // type:function size:0x20 scope:global align:4 +insert__Q27JGadget38TVector>FPPvRCPv = .text:0x80027CB0; // type:function size:0x58 scope:weak align:4 +erase__Q27JGadget20TVector_pointer_voidFPPvPPv = .text:0x80027D08; // type:function size:0xB8 scope:global align:4 +create__12JUTAssertionFv = .text:0x80027DC0; // type:function size:0x4 scope:global align:4 +flushMessage__12JUTAssertionFv = .text:0x80027DC4; // type:function size:0xEC scope:global align:4 +flushMessage_dbPrint__12JUTAssertionFv = .text:0x80027EB0; // type:function size:0x214 scope:global align:4 +setMessageCount__12JUTAssertionFi = .text:0x800280C4; // type:function size:0x18 scope:global align:4 +create__10JUTConsoleFUiUiP7JKRHeap = .text:0x800280DC; // type:function size:0x88 scope:global align:4 +create__10JUTConsoleFUiPvUl = .text:0x80028164; // type:function size:0x98 scope:global align:4 +__ct__10JUTConsoleFUiUib = .text:0x800281FC; // type:function size:0x100 scope:global align:4 +__dt__10JUTConsoleFv = .text:0x800282FC; // type:function size:0x70 scope:global align:4 +getObjectSizeFromBufferSize__10JUTConsoleFUiUi = .text:0x8002836C; // type:function size:0x10 scope:global align:4 +getLineFromObjectSize__10JUTConsoleFUlUi = .text:0x8002837C; // type:function size:0x10 scope:global align:4 +clear__10JUTConsoleFv = .text:0x8002838C; // type:function size:0x5C scope:global align:4 +doDraw__10JUTConsoleCFQ210JUTConsole12EConsoleType = .text:0x800283E8; // type:function size:0x55C scope:global align:4 +__dt__13J2DOrthoGraphFv = .text:0x80028944; // type:function size:0x5C scope:weak align:4 +print_f__10JUTConsoleFPCce = .text:0x800289A0; // type:function size:0x8C scope:global align:4 +print__10JUTConsoleFPCc = .text:0x80028A2C; // type:function size:0x300 scope:global align:4 +JUTConsole_print_f_va_ = .text:0x80028D2C; // type:function size:0x48 scope:global align:4 +scroll__10JUTConsoleFi = .text:0x80028D74; // type:function size:0xDC scope:global align:4 +getUsedLine__10JUTConsoleCFv = .text:0x80028E50; // type:function size:0x24 scope:global align:4 +getLineOffset__10JUTConsoleCFv = .text:0x80028E74; // type:function size:0x24 scope:global align:4 +createManager__17JUTConsoleManagerFP7JKRHeap = .text:0x80028E98; // type:function size:0x68 scope:global align:4 +appendConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80028F00; // type:function size:0x70 scope:global align:4 +removeConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80028F70; // type:function size:0xC8 scope:global align:4 +draw__17JUTConsoleManagerCFv = .text:0x80029038; // type:function size:0xCC scope:global align:4 +drawDirect__17JUTConsoleManagerCFb = .text:0x80029104; // type:function size:0x7C scope:global align:4 +setDirectConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80029180; // type:function size:0x124 scope:global align:4 +JUTSetReportConsole = .text:0x800292A4; // type:function size:0x8 scope:global align:4 +JUTGetReportConsole = .text:0x800292AC; // type:function size:0x8 scope:global align:4 +JUTSetWarningConsole = .text:0x800292B4; // type:function size:0x8 scope:global align:4 +JUTGetWarningConsole = .text:0x800292BC; // type:function size:0x8 scope:global align:4 +JUTReportConsole_f = .text:0x800292C4; // type:function size:0xDC scope:global align:4 +JUTReportConsole = .text:0x800293A0; // type:function size:0x2C scope:global align:4 +JUTWarningConsole_f = .text:0x800293CC; // type:function size:0xDC scope:global align:4 +JUTWarningConsole = .text:0x800294A8; // type:function size:0x2C scope:global align:4 +start__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x800294D4; // type:function size:0xAC scope:global align:4 +changeFont__10JUTDbPrintFP7JUTFont = .text:0x80029580; // type:function size:0x18 scope:global align:4 +flush__10JUTDbPrintFv = .text:0x80029598; // type:function size:0x38 scope:global align:4 +flush__10JUTDbPrintFiiii = .text:0x800295D0; // type:function size:0x174 scope:global align:4 +drawString__10JUTDbPrintFiiiPCUc = .text:0x80029744; // type:function size:0xE8 scope:global align:4 +__ct__13JUTDirectFileFv = .text:0x8002982C; // type:function size:0x24 scope:global align:4 +__dt__13JUTDirectFileFv = .text:0x80029850; // type:function size:0x44 scope:global align:4 +fopen__13JUTDirectFileFPCc = .text:0x80029894; // type:function size:0xA8 scope:global align:4 +fclose__13JUTDirectFileFv = .text:0x8002993C; // type:function size:0x60 scope:global align:4 +fgets__13JUTDirectFileFPvi = .text:0x8002999C; // type:function size:0x230 scope:global align:4 +start__14JUTDirectPrintFv = .text:0x80029BCC; // type:function size:0x74 scope:global align:4 +erase__14JUTDirectPrintFiiii = .text:0x80029C40; // type:function size:0xF8 scope:global align:4 +drawChar__14JUTDirectPrintFiii = .text:0x80029D38; // type:function size:0x254 scope:global align:4 +changeFrameBuffer__14JUTDirectPrintFPvUsUs = .text:0x80029F8C; // type:function size:0x34 scope:global align:4 +drawString__14JUTDirectPrintFUsUsPc = .text:0x80029FC0; // type:function size:0x2C scope:global align:4 +drawString_f__14JUTDirectPrintFUsUsPCce = .text:0x80029FEC; // type:function size:0x174 scope:global align:4 +setCharColor__14JUTDirectPrintFQ28JUtility6TColor = .text:0x8002A160; // type:function size:0x30 scope:global align:4 +setCharColor__14JUTDirectPrintFUcUcUc = .text:0x8002A190; // type:function size:0x17C scope:global align:4 +create__12JUTExceptionFP14JUTDirectPrint = .text:0x8002A30C; // type:function size:0x110 scope:global align:4 +run__12JUTExceptionFv = .text:0x8002A41C; // type:function size:0x120 scope:global align:4 +errorHandler__12JUTExceptionFUsP9OSContextUlUl = .text:0x8002A53C; // type:function size:0x104 scope:global align:4 +panic_f__12JUTExceptionFPCciPCce = .text:0x8002A640; // type:function size:0x1A0 scope:global align:4 +setFPException__12JUTExceptionFUl = .text:0x8002A7E0; // type:function size:0x48 scope:global align:4 +showFloat__12JUTExceptionFP9OSContext = .text:0x8002A828; // type:function size:0x770 scope:global align:4 +showStack__12JUTExceptionFP9OSContext = .text:0x8002AF98; // type:function size:0xFC scope:global align:4 +showMainInfo__12JUTExceptionFUsP9OSContextUlUl = .text:0x8002B094; // type:function size:0x244 scope:global align:4 +showMapInfo_subroutine__12JUTExceptionFUlb = .text:0x8002B2D8; // type:function size:0x258 scope:global align:4 +showGPRMap__12JUTExceptionFP9OSContext = .text:0x8002B530; // type:function size:0x2F4 scope:global align:4 +printDebugInfo__12JUTExceptionFQ212JUTException9EInfoPageUsP9OSContextUlUl = .text:0x8002B824; // type:function size:0x3AC scope:global align:4 +readPad__12JUTExceptionFPUlPUl = .text:0x8002BBD0; // type:function size:0x570 scope:global align:4 +printContext__12JUTExceptionFUsP9OSContextUlUl = .text:0x8002C140; // type:function size:0x4E4 scope:global align:4 +waitTime__12JUTExceptionFl = .text:0x8002C624; // type:function size:0x88 scope:global align:4 +createFB__12JUTExceptionFv = .text:0x8002C6AC; // type:function size:0xF4 scope:global align:4 +setPreUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x8002C7A0; // type:function size:0x10 scope:global align:4 +appendMapFile__12JUTExceptionFPCc = .text:0x8002C7B0; // type:function size:0x94 scope:global align:4 +queryMapAddress__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x8002C844; // type:function size:0xE0 scope:global align:4 +queryMapAddress_single__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x8002C924; // type:function size:0x33C scope:global align:4 +createConsole__12JUTExceptionFPvUl = .text:0x8002CC60; // type:function size:0xE0 scope:global align:4 +__ct__13JUTExternalFBFP16_GXRenderModeObj8_GXGammaPvUl = .text:0x8002CD40; // type:function size:0x20 scope:global align:4 +__dt__12JUTExceptionFv = .text:0x8002CD60; // type:function size:0x60 scope:weak align:4 +__sinit_JUTException_cpp = .text:0x8002CDC0; // type:function size:0x48 scope:local align:4 +__dt__39JSUListFv = .text:0x8002CE08; // type:function size:0x54 scope:weak align:4 +__ct__8JUTFaderFiiiiQ28JUtility6TColor = .text:0x8002CE5C; // type:function size:0xAC scope:global align:4 +control__8JUTFaderFv = .text:0x8002CF08; // type:function size:0x100 scope:global align:4 +draw__8JUTFaderFv = .text:0x8002D008; // type:function size:0x90 scope:global align:4 +startFadeIn__8JUTFaderFi = .text:0x8002D098; // type:function size:0x30 scope:global align:4 +startFadeOut__8JUTFaderFi = .text:0x8002D0C8; // type:function size:0x34 scope:global align:4 +__dt__8JUTFaderFv = .text:0x8002D0FC; // type:function size:0x48 scope:weak align:4 +__ct__7JUTFontFv = .text:0x8002D144; // type:function size:0x2C scope:global align:4 +initialize_state__7JUTFontFv = .text:0x8002D170; // type:function size:0x4C scope:global align:4 +setCharColor__7JUTFontFQ28JUtility6TColor = .text:0x8002D1BC; // type:function size:0x54 scope:global align:4 +setGradColor__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8002D210; // type:function size:0x64 scope:global align:4 +drawString_size_scale__7JUTFontFffffPCcUlb = .text:0x8002D274; // type:function size:0x118 scope:global align:4 +__dt__7JUTFontFv = .text:0x8002D38C; // type:function size:0x48 scope:weak align:4 +setGX__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8002D3D4; // type:function size:0x2C scope:weak align:4 +getCellWidth__7JUTFontCFv = .text:0x8002D400; // type:function size:0x2C scope:weak align:4 +getCellHeight__7JUTFontCFv = .text:0x8002D42C; // type:function size:0x2C scope:weak align:4 +__ct__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x8002D458; // type:function size:0xD4 scope:global align:4 +__dt__10JUTGamePadFv = .text:0x8002D52C; // type:function size:0xAC scope:global align:4 +initList__10JUTGamePadFv = .text:0x8002D5D8; // type:function size:0x3C scope:global align:4 +init__10JUTGamePadFv = .text:0x8002D614; // type:function size:0x38 scope:global align:4 +clear__10JUTGamePadFv = .text:0x8002D64C; // type:function size:0x14 scope:global align:4 +read__10JUTGamePadFv = .text:0x8002D660; // type:function size:0x2C8 scope:global align:4 +assign__10JUTGamePadFv = .text:0x8002D928; // type:function size:0xA8 scope:global align:4 +checkResetCallback__10JUTGamePadFx = .text:0x8002D9D0; // type:function size:0x6C scope:global align:4 +update__10JUTGamePadFv = .text:0x8002DA3C; // type:function size:0x32C scope:global align:4 +checkResetSwitch__10JUTGamePadFv = .text:0x8002DD68; // type:function size:0x80 scope:global align:4 +clearForReset__10JUTGamePadFv = .text:0x8002DDE8; // type:function size:0x2C scope:global align:4 +clear__Q210JUTGamePad7CButtonFv = .text:0x8002DE14; // type:function size:0x3C scope:global align:4 +update__Q210JUTGamePad7CButtonFPC9PADStatusUl = .text:0x8002DE50; // type:function size:0x190 scope:global align:4 +clear__Q210JUTGamePad6CStickFv = .text:0x8002DFE0; // type:function size:0x1C scope:global align:4 +update__Q210JUTGamePad6CStickFScScQ210JUTGamePad10EStickModeQ210JUTGamePad11EWhichStickUl = .text:0x8002DFFC; // type:function size:0x2B8 scope:global align:4 +getButton__Q210JUTGamePad6CStickFUl = .text:0x8002E2B4; // type:function size:0xB4 scope:global align:4 +clear__Q210JUTGamePad7CRumbleFP10JUTGamePad = .text:0x8002E368; // type:function size:0x74 scope:global align:4 +stopMotor__Q210JUTGamePad7CRumbleFib = .text:0x8002E3DC; // type:function size:0x70 scope:global align:4 +update__Q210JUTGamePad7CRumbleFs = .text:0x8002E44C; // type:function size:0x25C scope:global align:4 +setEnabled__Q210JUTGamePad7CRumbleFUl = .text:0x8002E6A8; // type:function size:0x124 scope:global align:4 +setRepeat__Q210JUTGamePad7CButtonFUlUlUl = .text:0x8002E7CC; // type:function size:0x1C scope:global align:4 +setButtonRepeat__10JUTGamePadFUlUlUl = .text:0x8002E7E8; // type:function size:0x4C scope:global align:4 +recalibrate__10JUTGamePadFUl = .text:0x8002E834; // type:function size:0x8C scope:global align:4 +checkCallback__19JUTGamePadLongPressFiUl = .text:0x8002E8C0; // type:function size:0x64 scope:global align:4 +__sinit_JUTGamePad_cpp = .text:0x8002E924; // type:function size:0x110 scope:local align:4 +__dt__30JSUList<19JUTGamePadLongPress>Fv = .text:0x8002EA34; // type:function size:0x54 scope:weak align:4 +__ct__Q210JUTGamePad6CStickFv = .text:0x8002EA88; // type:function size:0x1C scope:weak align:4 +__ct__Q210JUTGamePad7CButtonFv = .text:0x8002EAA4; // type:function size:0x3C scope:weak align:4 +__dt__21JSUList<10JUTGamePad>Fv = .text:0x8002EAE0; // type:function size:0x54 scope:weak align:4 +__ct__12JUTGraphFifoFUl = .text:0x8002EB34; // type:function size:0xDC scope:global align:4 +__dt__12JUTGraphFifoFv = .text:0x8002EC10; // type:function size:0xBC scope:global align:4 +__ct__10JUTNameTabFv = .text:0x8002ECCC; // type:function size:0x40 scope:global align:4 +__ct__10JUTNameTabFPC7ResNTAB = .text:0x8002ED0C; // type:function size:0x3C scope:global align:4 +setResource__10JUTNameTabFPC7ResNTAB = .text:0x8002ED48; // type:function size:0x3C scope:global align:4 +getIndex__10JUTNameTabCFPCc = .text:0x8002ED84; // type:function size:0x98 scope:global align:4 +getName__10JUTNameTabCFUs = .text:0x8002EE1C; // type:function size:0x30 scope:global align:4 +calcKeyCode__10JUTNameTabCFPCc = .text:0x8002EE4C; // type:function size:0x30 scope:global align:4 +__dt__10JUTNameTabFv = .text:0x8002EE7C; // type:function size:0x48 scope:weak align:4 +storeTLUT__10JUTPaletteF7_GXTlutP7ResTLUT = .text:0x8002EEC4; // type:function size:0x98 scope:global align:4 +storeTLUT__10JUTPaletteF7_GXTlut10_GXTlutFmt15JUTTransparencyUsPv = .text:0x8002EF5C; // type:function size:0x40 scope:global align:4 +load__10JUTPaletteFv = .text:0x8002EF9C; // type:function size:0x44 scope:global align:4 +__ct__Q210JUTProcBar5CTimeFv = .text:0x8002EFE0; // type:function size:0x14 scope:weak align:4 +create__10JUTProcBarFv = .text:0x8002EFF4; // type:function size:0x130 scope:global align:4 +destroy__10JUTProcBarFv = .text:0x8002F124; // type:function size:0x40 scope:global align:4 +clear__10JUTProcBarFv = .text:0x8002F164; // type:function size:0xD0 scope:global align:4 +draw__10JUTProcBarFv = .text:0x8002F234; // type:function size:0x34 scope:global align:4 +drawProcessBar__10JUTProcBarFv = .text:0x8002F268; // type:function size:0x1814 scope:global align:4 +drawHeapBar__10JUTProcBarFv = .text:0x80030A7C; // type:function size:0x704 scope:global align:4 +__ct__10JUTResFontFv = .text:0x80031180; // type:function size:0x4C scope:global align:4 +__ct__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x800311CC; // type:function size:0x74 scope:global align:4 +__dt__10JUTResFontFv = .text:0x80031240; // type:function size:0x8C scope:global align:4 +deleteMemBlocks_ResFont__10JUTResFontFv = .text:0x800312CC; // type:function size:0x24 scope:global align:4 +initialize_state__10JUTResFontFv = .text:0x800312F0; // type:function size:0x2C scope:global align:4 +initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8003131C; // type:function size:0x80 scope:global align:4 +protected_initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8003139C; // type:function size:0x138 scope:global align:4 +countBlock__10JUTResFontFv = .text:0x800314D4; // type:function size:0x10C scope:global align:4 +setBlock__10JUTResFontFv = .text:0x800315E0; // type:function size:0x13C scope:global align:4 +setGX__10JUTResFontFv = .text:0x8003171C; // type:function size:0xF8 scope:global align:4 +setGX__10JUTResFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80031814; // type:function size:0x240 scope:global align:4 +drawChar_scale__10JUTResFontFffffib = .text:0x80031A54; // type:function size:0x404 scope:global align:4 +getDescent__10JUTResFontCFv = .text:0x80031E58; // type:function size:0xC scope:weak align:4 +getHeight__10JUTResFontCFv = .text:0x80031E64; // type:function size:0x5C scope:weak align:4 +getAscent__10JUTResFontCFv = .text:0x80031EC0; // type:function size:0xC scope:weak align:4 +loadFont__10JUTResFontFi11_GXTexMapIDPQ27JUTFont6TWidth = .text:0x80031ECC; // type:function size:0x88 scope:global align:4 +getWidthEntry__10JUTResFontCFiPQ27JUTFont6TWidth = .text:0x80031F54; // type:function size:0xC0 scope:global align:4 +getCellWidth__10JUTResFontCFv = .text:0x80032014; // type:function size:0x4C scope:global align:4 +getWidth__10JUTResFontCFv = .text:0x80032060; // type:function size:0xC scope:weak align:4 +getCellHeight__10JUTResFontCFv = .text:0x8003206C; // type:function size:0x4C scope:global align:4 +isLeadByte__10JUTResFontCFi = .text:0x800320B8; // type:function size:0x30 scope:global align:4 +getFontCode__10JUTResFontCFi = .text:0x800320E8; // type:function size:0x1AC scope:global align:4 +getFontType__10JUTResFontCFv = .text:0x80032294; // type:function size:0xC scope:weak align:4 +loadImage__10JUTResFontFi11_GXTexMapID = .text:0x800322A0; // type:function size:0x180 scope:global align:4 +convertSjis__10JUTResFontCFiPUs = .text:0x80032420; // type:function size:0x44 scope:global align:4 +getResFont__10JUTResFontCFv = .text:0x80032464; // type:function size:0x8 scope:weak align:4 +getLeading__10JUTResFontCFv = .text:0x8003246C; // type:function size:0xC scope:weak align:4 +getResource__15JUTResReferenceFP14JSUInputStreamUlP10JKRArchive = .text:0x80032478; // type:function size:0xB8 scope:global align:4 +getResource__15JUTResReferenceFPCvUlP10JKRArchive = .text:0x80032530; // type:function size:0xA4 scope:global align:4 +getResource__15JUTResReferenceFUlP10JKRArchive = .text:0x800325D4; // type:function size:0x78 scope:global align:4 +__ct__10JUTRomFontFP7JKRHeap = .text:0x8003264C; // type:function size:0x54 scope:global align:4 +initiate__10JUTRomFontFP7JKRHeap = .text:0x800326A0; // type:function size:0x54 scope:global align:4 +__dt__10JUTRomFontFv = .text:0x800326F4; // type:function size:0x9C scope:global align:4 +loadImage__10JUTRomFontFP7JKRHeap = .text:0x80032790; // type:function size:0xCC scope:global align:4 +setGX__10JUTRomFontFv = .text:0x8003285C; // type:function size:0xF8 scope:global align:4 +drawChar_scale__10JUTRomFontFffffib = .text:0x80032954; // type:function size:0x480 scope:global align:4 +getHeight__10JUTRomFontCFv = .text:0x80032DD4; // type:function size:0x5C scope:weak align:4 +getDescent__10JUTRomFontCFv = .text:0x80032E30; // type:function size:0xC scope:weak align:4 +getAscent__10JUTRomFontCFv = .text:0x80032E3C; // type:function size:0xC scope:weak align:4 +getCellHeight__10JUTRomFontCFv = .text:0x80032E48; // type:function size:0xC scope:weak align:4 +getCellWidth__10JUTRomFontCFv = .text:0x80032E54; // type:function size:0xC scope:weak align:4 +getWidthEntry__10JUTRomFontCFiPQ27JUTFont6TWidth = .text:0x80032E60; // type:function size:0x60 scope:global align:4 +isLeadByte__10JUTRomFontCFi = .text:0x80032EC0; // type:function size:0x30 scope:global align:4 +getWidth__10JUTRomFontCFv = .text:0x80032EF0; // type:function size:0xC scope:weak align:4 +getLeading__10JUTRomFontCFv = .text:0x80032EFC; // type:function size:0xC scope:weak align:4 +getResFont__10JUTRomFontCFv = .text:0x80032F08; // type:function size:0x8 scope:weak align:4 +getFontType__10JUTRomFontCFv = .text:0x80032F10; // type:function size:0xC scope:weak align:4 +__ct__10JUTTextureFii9_GXTexFmt = .text:0x80032F1C; // type:function size:0xF4 scope:global align:4 +__dt__10JUTTextureFv = .text:0x80033010; // type:function size:0x74 scope:global align:4 +storeTIMG__10JUTTextureFPC7ResTIMGUc = .text:0x80033084; // type:function size:0x1AC scope:global align:4 +storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette = .text:0x80033230; // type:function size:0x34 scope:global align:4 +storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette7_GXTlut = .text:0x80033264; // type:function size:0x138 scope:global align:4 +attachPalette__10JUTTextureFP10JUTPalette = .text:0x8003339C; // type:function size:0x58 scope:global align:4 +init__10JUTTextureFv = .text:0x800333F4; // type:function size:0x50 scope:global align:4 +initTexObj__10JUTTextureFv = .text:0x80033444; // type:function size:0xF0 scope:global align:4 +initTexObj__10JUTTextureF7_GXTlut = .text:0x80033534; // type:function size:0xFC scope:global align:4 +load__10JUTTextureF11_GXTexMapID = .text:0x80033630; // type:function size:0x50 scope:global align:4 +capture__10JUTTextureFii9_GXTexFmtbUc = .text:0x80033680; // type:function size:0xC4 scope:global align:4 +createManager__8JUTVideoFPC16_GXRenderModeObj = .text:0x80033744; // type:function size:0x58 scope:global align:4 +destroyManager__8JUTVideoFv = .text:0x8003379C; // type:function size:0x48 scope:global align:4 +__ct__8JUTVideoFPC16_GXRenderModeObj = .text:0x800337E4; // type:function size:0xF4 scope:global align:4 +__dt__8JUTVideoFv = .text:0x800338D8; // type:function size:0x68 scope:global align:4 +preRetraceProc__8JUTVideoFUl = .text:0x80033940; // type:function size:0x228 scope:global align:4 +drawDoneStart__8JUTVideoFv = .text:0x80033B68; // type:function size:0x28 scope:global align:4 +dummyNoDrawWait__8JUTVideoFv = .text:0x80033B90; // type:function size:0xC scope:global align:4 +drawDoneCallback__8JUTVideoFv = .text:0x80033B9C; // type:function size:0x88 scope:global align:4 +postRetraceProc__8JUTVideoFUl = .text:0x80033C24; // type:function size:0x4C scope:global align:4 +setRenderMode__8JUTVideoFPC16_GXRenderModeObj = .text:0x80033C70; // type:function size:0x78 scope:global align:4 +waitRetraceIfNeed__8JUTVideoFv = .text:0x80033CE8; // type:function size:0x4 scope:global align:4 +setPostRetraceCallback__8JUTVideoFPFUl_v = .text:0x80033CEC; // type:function size:0x10 scope:global align:4 +clearIndex__6JUTXfbFv = .text:0x80033CFC; // type:function size:0x14 scope:global align:4 +createManager__6JUTXfbFP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80033D10; // type:function size:0xA8 scope:global align:4 +destroyManager__6JUTXfbFv = .text:0x80033DB8; // type:function size:0x90 scope:global align:4 +initiate__6JUTXfbFUsUsP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80033E48; // type:function size:0xE8 scope:global align:4 +accumeXfbSize__6JUTXfbFv = .text:0x80033F30; // type:function size:0x64 scope:global align:4 +__ct__12JUTCacheFontFPC7ResFONTUlP7JKRHeap = .text:0x80033F94; // type:function size:0x90 scope:global align:4 +__dt__12JUTCacheFontFv = .text:0x80034024; // type:function size:0x94 scope:global align:4 +deleteMemBlocks_CacheFont__12JUTCacheFontFv = .text:0x800340B8; // type:function size:0x84 scope:global align:4 +initialize_state__12JUTCacheFontFv = .text:0x8003413C; // type:function size:0x3C scope:global align:4 +getMemorySize__12JUTCacheFontFPC7ResFONTPUsPUlPUsPUlPUsPUlPUl = .text:0x80034178; // type:function size:0x188 scope:global align:4 +initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x80034300; // type:function size:0xB4 scope:global align:4 +internal_initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x800343B4; // type:function size:0x184 scope:global align:4 +allocArea__12JUTCacheFontFPvUlP7JKRHeap = .text:0x80034538; // type:function size:0x1C4 scope:global align:4 +allocArray__12JUTCacheFontFP7JKRHeap = .text:0x800346FC; // type:function size:0xE8 scope:global align:4 +setBlock__12JUTCacheFontFv = .text:0x800347E4; // type:function size:0x210 scope:global align:4 +loadImage__12JUTCacheFontFi11_GXTexMapID = .text:0x800349F4; // type:function size:0xBC scope:global align:4 +loadCache_char_subroutine__12JUTCacheFontFPib = .text:0x80034AB0; // type:function size:0x298 scope:global align:4 +loadCache_string__12JUTCacheFontFPCcb = .text:0x80034D48; // type:function size:0xC8 scope:global align:4 +invalidiateAllCache__12JUTCacheFontFv = .text:0x80034E10; // type:function size:0x88 scope:global align:4 +unlink__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x80034E98; // type:function size:0x44 scope:global align:4 +prepend__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x80034EDC; // type:function size:0x2C scope:global align:4 +JMAEulerToQuat__FsssP10Quaternion = .text:0x80034F08; // type:function size:0xBC scope:global align:4 +JMAQuatLerp__FPC10QuaternionPC10QuaternionfP10Quaternion = .text:0x80034FC4; // type:function size:0xD8 scope:global align:4 +JMAMTXApplyScale__FPA4_CfPA4_ffff = .text:0x8003509C; // type:function size:0x64 scope:global align:4 +__ct__Q25JMath13TRandom_fast_FUl = .text:0x80035100; // type:function size:0x8 scope:global align:4 +atan2___Q25JMath18TAtanTable<1024,f>CFff = .text:0x80035108; // type:function size:0x258 scope:global align:4 +__sinit_JMATrigonometric_cpp = .text:0x80035360; // type:function size:0x1C0 scope:local align:4 +__ct__Q23std9pairFv = .text:0x80035520; // type:function size:0x10 scope:weak align:4 +__ct__13J2DOrthoGraphFv = .text:0x80035530; // type:function size:0x60 scope:global align:4 +__dt__14J2DGrafContextFv = .text:0x80035590; // type:function size:0x48 scope:weak align:4 +__ct__13J2DOrthoGraphFffffff = .text:0x800355D8; // type:function size:0xE4 scope:global align:4 +setPort__13J2DOrthoGraphFv = .text:0x800356BC; // type:function size:0x58 scope:global align:4 +setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2ff = .text:0x80035714; // type:function size:0x34 scope:global align:4 +setLookat__13J2DOrthoGraphFv = .text:0x80035748; // type:function size:0x3C scope:global align:4 +scissorBounds__13J2DOrthoGraphFPQ29JGeometry8TBox2PCQ29JGeometry8TBox2 = .text:0x80035784; // type:function size:0x10C scope:global align:4 +J2DDrawLine__FffffQ28JUtility6TColori = .text:0x80035890; // type:function size:0x168 scope:global align:4 +J2DFillBox__FffffQ28JUtility6TColor = .text:0x800359F8; // type:function size:0x48 scope:global align:4 +J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColor = .text:0x80035A40; // type:function size:0xCC scope:global align:4 +J2DFillBox__FffffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80035B0C; // type:function size:0x6C scope:global align:4 +J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80035B78; // type:function size:0xD0 scope:global align:4 +J2DDrawFrame__FffffQ28JUtility6TColorUc = .text:0x80035C48; // type:function size:0x4C scope:global align:4 +J2DDrawFrame__FRCQ29JGeometry8TBox2Q28JUtility6TColorUc = .text:0x80035C94; // type:function size:0xE4 scope:global align:4 +getGrafType__13J2DOrthoGraphCFv = .text:0x80035D78; // type:function size:0x8 scope:weak align:4 +place__14J2DGrafContextFffff = .text:0x80035D80; // type:function size:0x48 scope:weak align:4 +__ct__13J2DPerspGraphFv = .text:0x80035DC8; // type:function size:0x4C scope:global align:4 +set__13J2DPerspGraphFfff = .text:0x80035E14; // type:function size:0x60 scope:global align:4 +setFovy__13J2DPerspGraphFf = .text:0x80035E74; // type:function size:0x2C scope:global align:4 +setPort__13J2DPerspGraphFv = .text:0x80035EA0; // type:function size:0x68 scope:global align:4 +setLookat__13J2DPerspGraphFv = .text:0x80035F08; // type:function size:0x68 scope:global align:4 +makeLookat__13J2DPerspGraphFv = .text:0x80035F70; // type:function size:0xA0 scope:global align:4 +__dt__13J2DPerspGraphFv = .text:0x80036010; // type:function size:0x5C scope:weak align:4 +getGrafType__13J2DPerspGraphCFv = .text:0x8003606C; // type:function size:0x8 scope:weak align:4 +__ct__14J2DGrafContextFffff = .text:0x80036074; // type:function size:0xAC scope:global align:4 +setPort__14J2DGrafContextFv = .text:0x80036120; // type:function size:0x90 scope:global align:4 +setup2D__14J2DGrafContextFv = .text:0x800361B0; // type:function size:0x1DC scope:global align:4 +setScissor__14J2DGrafContextFv = .text:0x8003638C; // type:function size:0x2A8 scope:global align:4 +scissor__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80036634; // type:function size:0x24 scope:global align:4 +place__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80036658; // type:function size:0x34 scope:global align:4 +setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003668C; // type:function size:0x11C scope:global align:4 +setLineWidth__14J2DGrafContextFUc = .text:0x800367A8; // type:function size:0x2C scope:global align:4 +fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x800367D4; // type:function size:0xFC scope:global align:4 +drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x800368D0; // type:function size:0x110 scope:global align:4 +lineTo__14J2DGrafContextFQ29JGeometry8TVec2 = .text:0x800369E0; // type:function size:0x104 scope:global align:4 +getGrafType__14J2DGrafContextCFv = .text:0x80036AE4; // type:function size:0x8 scope:weak align:4 +setLookat__14J2DGrafContextFv = .text:0x80036AEC; // type:function size:0x4 scope:weak align:4 +__ct__7J2DPaneFv = .text:0x80036AF0; // type:function size:0xC0 scope:global align:4 +calcMtx__7J2DPaneFv = .text:0x80036BB0; // type:function size:0x40 scope:weak align:4 +makeMatrix__7J2DPaneFff = .text:0x80036BF0; // type:function size:0x3C scope:weak align:4 +initiate__7J2DPaneFv = .text:0x80036C2C; // type:function size:0x88 scope:global align:4 +__ct__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x80036CB4; // type:function size:0x88 scope:global align:4 +initialize__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x80036D3C; // type:function size:0x120 scope:global align:4 +__ct__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x80036E5C; // type:function size:0x78 scope:global align:4 +initialize__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x80036ED4; // type:function size:0xF4 scope:global align:4 +__ct__7J2DPaneFP7J2DPaneP20JSURandomInputStreamUc = .text:0x80036FC8; // type:function size:0x120 scope:global align:4 +makePaneStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x800370E8; // type:function size:0x340 scope:global align:4 +changeUseTrans__7J2DPaneFP7J2DPane = .text:0x80037428; // type:function size:0x1BC scope:global align:4 +__dt__7J2DPaneFv = .text:0x800375E4; // type:function size:0xE0 scope:global align:4 +appendChild__7J2DPaneFP7J2DPane = .text:0x800376C4; // type:function size:0xB8 scope:global align:4 +prependChild__7J2DPaneFP7J2DPane = .text:0x8003777C; // type:function size:0xB8 scope:global align:4 +removeChild__7J2DPaneFP7J2DPane = .text:0x80037834; // type:function size:0xA4 scope:global align:4 +draw__7J2DPaneFffPC14J2DGrafContextbb = .text:0x800378D8; // type:function size:0x658 scope:global align:4 +drawSelf__7J2DPaneFffPA3_A4_f = .text:0x80037F30; // type:function size:0x4 scope:weak align:4 +rewriteAlpha__7J2DPaneFv = .text:0x80037F34; // type:function size:0x4 scope:weak align:4 +place__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80037F38; // type:function size:0x248 scope:global align:4 +move__7J2DPaneFff = .text:0x80038180; // type:function size:0x54 scope:global align:4 +add__7J2DPaneFff = .text:0x800381D4; // type:function size:0x44 scope:global align:4 +resize__7J2DPaneFff = .text:0x80038218; // type:function size:0x108 scope:global align:4 +getBounds__7J2DPaneFv = .text:0x80038320; // type:function size:0xE0 scope:global align:4 +rotate__7J2DPaneFff13J2DRotateAxisf = .text:0x80038400; // type:function size:0x30 scope:global align:4 +rotate__7J2DPaneFf = .text:0x80038430; // type:function size:0x58 scope:global align:4 +clip__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80038488; // type:function size:0x7C scope:global align:4 +search__7J2DPaneFUx = .text:0x80038504; // type:function size:0xB0 scope:global align:4 +gather__7J2DPaneFPP7J2DPaneUxUxiRi = .text:0x800385B4; // type:function size:0x310 scope:global align:4 +getNextChild__17JSUTree<7J2DPane>CFv = .text:0x800388C4; // type:function size:0x14 scope:weak align:4 +__ne__25JSUTreeIterator<7J2DPane>CFPC17JSUTree<7J2DPane> = .text:0x800388D8; // type:function size:0x18 scope:weak align:4 +getEndChild__17JSUTree<7J2DPane>CFv = .text:0x800388F0; // type:function size:0x8 scope:weak align:4 +__pp__25JSUTreeIterator<7J2DPane>Fv = .text:0x800388F8; // type:function size:0x1C scope:weak align:4 +__ct__25JSUTreeIterator<7J2DPane>FP17JSUTree<7J2DPane> = .text:0x80038914; // type:function size:0x8 scope:weak align:4 +__rf__25JSUTreeIterator<7J2DPane>CFv = .text:0x8003891C; // type:function size:0xC scope:weak align:4 +getFirstChild__17JSUTree<7J2DPane>CFv = .text:0x80038928; // type:function size:0x14 scope:weak align:4 +getObject__17JSUTree<7J2DPane>CFv = .text:0x8003893C; // type:function size:0x8 scope:weak align:4 +searchUserInfo__7J2DPaneFUx = .text:0x80038944; // type:function size:0xB0 scope:global align:4 +isUsed__7J2DPaneFPC7ResTIMG = .text:0x800389F4; // type:function size:0x88 scope:global align:4 +isUsed__7J2DPaneFPC7ResFONT = .text:0x80038A7C; // type:function size:0x88 scope:global align:4 +makeMatrix__7J2DPaneFffff = .text:0x80038B04; // type:function size:0x140 scope:global align:4 +setCullBack__7J2DPaneF11_GXCullMode = .text:0x80038C44; // type:function size:0x78 scope:global align:4 +setBasePosition__7J2DPaneF15J2DBasePosition = .text:0x80038CBC; // type:function size:0xF0 scope:global align:4 +setInfluencedAlpha__7J2DPaneFbb = .text:0x80038DAC; // type:function size:0x1E4 scope:global align:4 +setAlpha__7J2DPaneFUc = .text:0x80038F90; // type:function size:0x8 scope:weak align:4 +getGlbVtx__7J2DPaneCFUc = .text:0x80038F98; // type:function size:0xD8 scope:global align:4 +getFirstChildPane__7J2DPaneFv = .text:0x80039070; // type:function size:0x38 scope:global align:4 +getNextChildPane__7J2DPaneFv = .text:0x800390A8; // type:function size:0x38 scope:global align:4 +getParentPane__7J2DPaneFv = .text:0x800390E0; // type:function size:0x1C scope:global align:4 +makePaneExStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x800390FC; // type:function size:0x20C scope:global align:4 +J2DCast_F32_to_S16__7J2DPaneFfUc = .text:0x80039308; // type:function size:0xB8 scope:global align:4 +getPointer__7J2DPaneFP20JSURandomInputStreamUlP10JKRArchive = .text:0x800393C0; // type:function size:0x14C scope:global align:4 +setAnimation__7J2DPaneFP10J2DAnmBase = .text:0x8003950C; // type:function size:0xD0 scope:global align:4 +setAnimation__7J2DPaneFP15J2DAnmTevRegKey = .text:0x800395DC; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x800395E0; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP16J2DAnmTexPattern = .text:0x800395E4; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP19J2DAnmTextureSRTKey = .text:0x800395E8; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x800395EC; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP11J2DAnmColor = .text:0x800395F0; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP15J2DAnmTransform = .text:0x800395F4; // type:function size:0x8 scope:global align:4 +animationTransform__7J2DPaneFv = .text:0x800395FC; // type:function size:0x38 scope:global align:4 +clearAnmTransform__7J2DPaneFv = .text:0x80039634; // type:function size:0x7C scope:global align:4 +animationTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x800396B0; // type:function size:0xA0 scope:global align:4 +setVisibileAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x80039750; // type:function size:0x88 scope:global align:4 +setAnimationVF__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x800397D8; // type:function size:0x2C scope:weak align:4 +setVtxColorAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x80039804; // type:function size:0x88 scope:global align:4 +setAnimationVC__7J2DPaneFP14J2DAnmVtxColor = .text:0x8003988C; // type:function size:0x2C scope:weak align:4 +animationPane__7J2DPaneFPC15J2DAnmTransform = .text:0x800398B8; // type:function size:0xA0 scope:global align:4 +updateTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x80039958; // type:function size:0x108 scope:global align:4 +getTransform__15J2DAnmTransformCFUsP16J3DTransformInfo = .text:0x80039A60; // type:function size:0x4 scope:weak align:4 +getTypeID__7J2DPaneCFv = .text:0x80039A64; // type:function size:0x8 scope:weak align:4 +setCullBack__7J2DPaneFb = .text:0x80039A6C; // type:function size:0x3C scope:weak align:4 +setConnectParent__7J2DPaneFb = .text:0x80039AA8; // type:function size:0x10 scope:weak align:4 +update__7J2DPaneFv = .text:0x80039AB8; // type:function size:0x4 scope:weak align:4 +drawSelf__7J2DPaneFff = .text:0x80039ABC; // type:function size:0x4 scope:weak align:4 +__sinit_J2DPane_cpp = .text:0x80039AC0; // type:function size:0x1C scope:local align:4 +__ct__10J2DPictureFv = .text:0x80039ADC; // type:function size:0xB8 scope:global align:4 +__ct__Q28JUtility6TColorFv = .text:0x80039B94; // type:function size:0xC scope:weak align:4 +__ct__Q29JGeometry8TVec2Fv = .text:0x80039BA0; // type:function size:0x4 scope:weak align:4 +__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80039BA4; // type:function size:0xCC scope:global align:4 +__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x80039C70; // type:function size:0x5EC scope:global align:4 +getTevKColor__11J2DTevBlockFUl = .text:0x8003A25C; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__11J2DTevBlockFUc = .text:0x8003A264; // type:function size:0x4 scope:weak align:4 +getTevColor__11J2DTevBlockFUl = .text:0x8003A268; // type:function size:0x8 scope:weak align:4 +getTevStageNum__11J2DTevBlockCFv = .text:0x8003A270; // type:function size:0x8 scope:weak align:4 +__ct__10J2DPictureFPC7ResTIMG = .text:0x8003A278; // type:function size:0xE8 scope:global align:4 +append__10J2DPictureFPC7ResTIMGf = .text:0x8003A360; // type:function size:0x30 scope:weak align:4 +insert__10J2DPictureFPC7ResTIMGUcf = .text:0x8003A390; // type:function size:0x34 scope:weak align:4 +__ct__10J2DPictureFPCc = .text:0x8003A3C4; // type:function size:0xE8 scope:global align:4 +append__10J2DPictureFPCcf = .text:0x8003A4AC; // type:function size:0x30 scope:weak align:4 +insert__10J2DPictureFPCcUcf = .text:0x8003A4DC; // type:function size:0x34 scope:weak align:4 +__ct__10J2DPictureFP10JUTTexture = .text:0x8003A510; // type:function size:0xE8 scope:global align:4 +append__10J2DPictureFP10JUTTexturef = .text:0x8003A5F8; // type:function size:0x30 scope:weak align:4 +__ct__10J2DPictureFUxRCQ29JGeometry8TBox2 = .text:0x8003A628; // type:function size:0xEC scope:global align:4 +setBlendRatio__10J2DPictureFffffffff = .text:0x8003A714; // type:function size:0x9C scope:weak align:4 +private_readStream__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8003A7B0; // type:function size:0x3F4 scope:global align:4 +initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x8003ABA4; // type:function size:0x94 scope:global align:4 +private_initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x8003AC38; // type:function size:0x13C scope:global align:4 +initinfo__10J2DPictureFv = .text:0x8003AD74; // type:function size:0x16C scope:global align:4 +__dt__10J2DPictureFv = .text:0x8003AEE0; // type:function size:0x9C scope:global align:4 +prepareTexture__10J2DPictureFUc = .text:0x8003AF7C; // type:function size:0xE0 scope:global align:4 +insert__10J2DPictureFPC7ResTIMGP10JUTPaletteUcf = .text:0x8003B05C; // type:function size:0x32C scope:global align:4 +insert__10J2DPictureFPCcP10JUTPaletteUcf = .text:0x8003B388; // type:function size:0x78 scope:global align:4 +insert__10J2DPictureFP10JUTTextureUcf = .text:0x8003B400; // type:function size:0x1D8 scope:global align:4 +remove__10J2DPictureFUc = .text:0x8003B5D8; // type:function size:0x130 scope:global align:4 +remove__10J2DPictureFP10JUTTexture = .text:0x8003B708; // type:function size:0x60 scope:global align:4 +changeTexture__10J2DPictureFPC7ResTIMGUc = .text:0x8003B768; // type:function size:0xE8 scope:global align:4 +getTexture__10J2DPictureCFUc = .text:0x8003B850; // type:function size:0x24 scope:weak align:4 +changeTexture__10J2DPictureFPCcUc = .text:0x8003B874; // type:function size:0x58 scope:global align:4 +changeTexture__10J2DPictureFPC7ResTIMGUcP10JUTPalette = .text:0x8003B8CC; // type:function size:0x108 scope:global align:4 +append__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8003B9D4; // type:function size:0x30 scope:weak align:4 +changeTexture__10J2DPictureFPCcUcP10JUTPalette = .text:0x8003BA04; // type:function size:0x68 scope:global align:4 +drawSelf__10J2DPictureFff = .text:0x8003BA6C; // type:function size:0x68 scope:global align:4 +drawSelf__10J2DPictureFffPA3_A4_f = .text:0x8003BAD4; // type:function size:0x6C scope:global align:4 +drawFullSet__10J2DPictureFffffPA3_A4_f = .text:0x8003BB40; // type:function size:0x74 scope:global align:4 +draw__10J2DPictureFffffbbb = .text:0x8003BBB4; // type:function size:0x2F4 scope:global align:4 +load__10J2DPictureFUc = .text:0x8003BEA8; // type:function size:0x34 scope:weak align:4 +load__10J2DPictureF11_GXTexMapIDUc = .text:0x8003BEDC; // type:function size:0x4C scope:weak align:4 +drawOut__10J2DPictureFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x8003BF28; // type:function size:0x3FC scope:global align:4 +drawTexCoord__10J2DPictureFffffssssssssPA3_A4_f = .text:0x8003C324; // type:function size:0x23C scope:global align:4 +setTevMode__10J2DPictureFv = .text:0x8003C560; // type:function size:0x4A0 scope:global align:4 +setBlendColorRatio__10J2DPictureFffffffff = .text:0x8003CA00; // type:function size:0x30 scope:global align:4 +setBlendAlphaRatio__10J2DPictureFffffffff = .text:0x8003CA30; // type:function size:0x30 scope:global align:4 +setBlendKonstColor__10J2DPictureFv = .text:0x8003CA60; // type:function size:0x150 scope:global align:4 +setBlendKonstAlpha__10J2DPictureFv = .text:0x8003CBB0; // type:function size:0x150 scope:global align:4 +getNewColor__10J2DPictureFPQ28JUtility6TColor = .text:0x8003CD00; // type:function size:0x124 scope:global align:4 +setTexCoord__10J2DPictureFPCQ29JGeometry8TVec2 = .text:0x8003CE24; // type:function size:0x44 scope:global align:4 +setTexCoord__10J2DPictureFPC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8003CE68; // type:function size:0x3C scope:global align:4 +setTexCoord__10J2DPictureFPQ29JGeometry8TVec2PC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8003CEA4; // type:function size:0x318 scope:global align:4 +isUsed__10J2DPictureFPC7ResTIMG = .text:0x8003D1BC; // type:function size:0x64 scope:global align:4 +getUsableTlut__10J2DPictureFUc = .text:0x8003D220; // type:function size:0xD0 scope:global align:4 +getTlutID__10J2DPictureFPC7ResTIMGUc = .text:0x8003D2F0; // type:function size:0x34 scope:global align:4 +getTypeID__10J2DPictureCFv = .text:0x8003D324; // type:function size:0x8 scope:weak align:4 +append__10J2DPictureFPCcP10JUTPalettef = .text:0x8003D32C; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFP10JUTTexturef = .text:0x8003D35C; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPCcP10JUTPalettef = .text:0x8003D38C; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPCcf = .text:0x8003D3BC; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8003D3EC; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPC7ResTIMGf = .text:0x8003D41C; // type:function size:0x30 scope:weak align:4 +remove__10J2DPictureFv = .text:0x8003D44C; // type:function size:0x38 scope:weak align:4 +draw__10J2DPictureFffUcbbb = .text:0x8003D484; // type:function size:0x98 scope:weak align:4 +draw__10J2DPictureFffbbb = .text:0x8003D51C; // type:function size:0x40 scope:weak align:4 +drawOut__10J2DPictureFffffffff = .text:0x8003D55C; // type:function size:0x64 scope:weak align:4 +drawOut__10J2DPictureFffffff = .text:0x8003D5C0; // type:function size:0xAC scope:weak align:4 +getTextureCount__10J2DPictureCFv = .text:0x8003D66C; // type:function size:0x8 scope:weak align:4 +setBlack__10J2DPictureFQ28JUtility6TColor = .text:0x8003D674; // type:function size:0x28 scope:weak align:4 +setWhite__10J2DPictureFQ28JUtility6TColor = .text:0x8003D69C; // type:function size:0x28 scope:weak align:4 +setBlackWhite__10J2DPictureFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003D6C4; // type:function size:0x48 scope:weak align:4 +getBlack__10J2DPictureCFv = .text:0x8003D70C; // type:function size:0xC scope:weak align:4 +getWhite__10J2DPictureCFv = .text:0x8003D718; // type:function size:0xC scope:weak align:4 +getMaterial__10J2DPictureCFv = .text:0x8003D724; // type:function size:0x8 scope:weak align:4 +isUsed__10J2DPictureFPC7ResFONT = .text:0x8003D72C; // type:function size:0x20 scope:weak align:4 +rewriteAlpha__10J2DPictureFv = .text:0x8003D74C; // type:function size:0x4 scope:weak align:4 +__ct__8J2DPrintFP7JUTFontf = .text:0x8003D750; // type:function size:0x94 scope:global align:4 +__ct__8J2DPrintFP7JUTFontQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003D7E4; // type:function size:0x98 scope:global align:4 +__ct__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003D87C; // type:function size:0x94 scope:global align:4 +__dt__8J2DPrintFv = .text:0x8003D910; // type:function size:0x48 scope:global align:4 +initiate__8J2DPrintFv = .text:0x8003D958; // type:function size:0x54 scope:global align:4 +private_initiate__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorb = .text:0x8003D9AC; // type:function size:0x1E8 scope:global align:4 +setFont__8J2DPrintFP7JUTFont = .text:0x8003DB94; // type:function size:0x44 scope:global align:4 +setBuffer__8J2DPrintFUl = .text:0x8003DBD8; // type:function size:0x6C scope:global align:4 +setFontSize__8J2DPrintFv = .text:0x8003DC44; // type:function size:0x98 scope:global align:4 +locate__8J2DPrintFff = .text:0x8003DCDC; // type:function size:0x1C scope:global align:4 +print__8J2DPrintFffPCce = .text:0x8003DCF8; // type:function size:0x114 scope:global align:4 +print__8J2DPrintFffUcPCce = .text:0x8003DE0C; // type:function size:0x120 scope:global align:4 +getWidth__8J2DPrintFPCce = .text:0x8003DF2C; // type:function size:0xEC scope:global align:4 +printReturn__8J2DPrintFPCcff18J2DTextBoxHBinding18J2DTextBoxVBindingffUc = .text:0x8003E018; // type:function size:0x31C scope:global align:4 +parse__8J2DPrintFPCUciiPUsRQ28J2DPrint5TSizeUcb = .text:0x8003E334; // type:function size:0x7BC scope:global align:4 +doCtrlCode__8J2DPrintFi = .text:0x8003EAF0; // type:function size:0x128 scope:global align:4 +doEscapeCode__8J2DPrintFPPCUcUc = .text:0x8003EC18; // type:function size:0x5A0 scope:global align:4 +initchar__8J2DPrintFv = .text:0x8003F1B8; // type:function size:0x74 scope:global align:4 +getNumberS32__8J2DPrintFPPCUclli = .text:0x8003F22C; // type:function size:0x114 scope:global align:4 +getNumberF32__8J2DPrintFPPCUcffi = .text:0x8003F340; // type:function size:0x134 scope:global align:4 +__ct__9J2DScreenFv = .text:0x8003F474; // type:function size:0xA8 scope:global align:4 +__dt__9J2DScreenFv = .text:0x8003F51C; // type:function size:0x68 scope:global align:4 +clean__9J2DScreenFv = .text:0x8003F584; // type:function size:0xA0 scope:global align:4 +set__9J2DScreenFPCcUlP10JKRArchive = .text:0x8003F624; // type:function size:0x104 scope:global align:4 +set__9J2DScreenFP20JSURandomInputStreamUl = .text:0x8003F728; // type:function size:0x24 scope:global align:4 +private_set__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x8003F74C; // type:function size:0x140 scope:global align:4 +checkSignature__9J2DScreenFP20JSURandomInputStream = .text:0x8003F88C; // type:function size:0x60 scope:global align:4 +getScreenInformation__9J2DScreenFP20JSURandomInputStream = .text:0x8003F8EC; // type:function size:0xFC scope:global align:4 +makeHierarchyPanes__9J2DScreenFP7J2DPaneP20JSURandomInputStreamUlP10JKRArchive = .text:0x8003F9E8; // type:function size:0x560 scope:global align:4 +createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUl = .text:0x8003FF48; // type:function size:0x30 scope:weak align:4 +createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUlP10JKRArchive = .text:0x8003FF78; // type:function size:0x334 scope:global align:4 +draw__9J2DScreenFffPC14J2DGrafContext = .text:0x800402AC; // type:function size:0x1CC scope:global align:4 +search__9J2DScreenFUx = .text:0x80040478; // type:function size:0x40 scope:global align:4 +gather__9J2DScreenFPP7J2DPaneUxUxi = .text:0x800404B8; // type:function size:0x30 scope:global align:4 +searchUserInfo__9J2DScreenFUx = .text:0x800404E8; // type:function size:0x40 scope:global align:4 +drawSelf__9J2DScreenFffPA3_A4_f = .text:0x80040528; // type:function size:0x158 scope:global align:4 +getResReference__9J2DScreenFP20JSURandomInputStreamUl = .text:0x80040680; // type:function size:0xF4 scope:global align:4 +createMaterial__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80040774; // type:function size:0x2F0 scope:global align:4 +getMaterial__9J2DScreenFUs = .text:0x80040A64; // type:function size:0x38 scope:global align:4 +isUsed__9J2DScreenFPC7ResTIMG = .text:0x80040A9C; // type:function size:0x20 scope:global align:4 +isUsed__9J2DScreenFPC7ResFONT = .text:0x80040ABC; // type:function size:0x20 scope:global align:4 +getNameResource__9J2DScreenFPCc = .text:0x80040ADC; // type:function size:0x50 scope:global align:4 +animation__9J2DScreenFv = .text:0x80040B2C; // type:function size:0x74 scope:global align:4 +setAnimation__9J2DScreenFP11J2DAnmColor = .text:0x80040BA0; // type:function size:0xA4 scope:global align:4 +setAnimation__9J2DScreenFP19J2DAnmTextureSRTKey = .text:0x80040C44; // type:function size:0xBC scope:global align:4 +setAnimation__9J2DScreenFP16J2DAnmTexPattern = .text:0x80040D00; // type:function size:0xA4 scope:global align:4 +setAnimation__9J2DScreenFP15J2DAnmTevRegKey = .text:0x80040DA4; // type:function size:0xEC scope:global align:4 +setAnimation__9J2DScreenFP14J2DAnmVtxColor = .text:0x80040E90; // type:function size:0x20 scope:global align:4 +setAnimation__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x80040EB0; // type:function size:0x20 scope:global align:4 +getTypeID__9J2DScreenCFv = .text:0x80040ED0; // type:function size:0x8 scope:weak align:4 +calcMtx__9J2DScreenFv = .text:0x80040ED8; // type:function size:0x34 scope:weak align:4 +setAnimation__9J2DScreenFP15J2DAnmTransform = .text:0x80040F0C; // type:function size:0x20 scope:weak align:4 +setAnimation__9J2DScreenFP10J2DAnmBase = .text:0x80040F2C; // type:function size:0x20 scope:weak align:4 +clearAnmTransform__9J2DScreenFv = .text:0x80040F4C; // type:function size:0x20 scope:weak align:4 +setAnimationVF__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x80040F6C; // type:function size:0x4 scope:weak align:4 +setAnimationVC__9J2DScreenFP14J2DAnmVtxColor = .text:0x80040F70; // type:function size:0x4 scope:weak align:4 +__ct__10J2DTextBoxFv = .text:0x80040F74; // type:function size:0x78 scope:global align:4 +__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80040FEC; // type:function size:0x94 scope:global align:4 +__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80041080; // type:function size:0x460 scope:global align:4 +setFontUndeleteFlag__11J2DTevBlockFv = .text:0x800414E0; // type:function size:0x4 scope:weak align:4 +getFont__11J2DTevBlockFv = .text:0x800414E4; // type:function size:0x8 scope:weak align:4 +__ct__10J2DTextBoxFUxRCQ29JGeometry8TBox2PC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x800414EC; // type:function size:0x8C scope:global align:4 +initiate__10J2DTextBoxFPC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x80041578; // type:function size:0x228 scope:global align:4 +private_readStream__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x800417A0; // type:function size:0x350 scope:global align:4 +__dt__10J2DTextBoxFv = .text:0x80041AF0; // type:function size:0x98 scope:global align:4 +getFont__10J2DTextBoxCFv = .text:0x80041B88; // type:function size:0x8 scope:weak align:4 +setFont__10J2DTextBoxFP7JUTFont = .text:0x80041B90; // type:function size:0x70 scope:global align:4 +draw__10J2DTextBoxFff = .text:0x80041C00; // type:function size:0x1A4 scope:global align:4 +draw__10J2DTextBoxFfff18J2DTextBoxHBinding = .text:0x80041DA4; // type:function size:0x1D0 scope:global align:4 +setString__10J2DTextBoxFPCce = .text:0x80041F74; // type:function size:0xF4 scope:global align:4 +setConnectParent__10J2DTextBoxFb = .text:0x80042068; // type:function size:0x78 scope:global align:4 +drawSelf__10J2DTextBoxFff = .text:0x800420E0; // type:function size:0x68 scope:global align:4 +drawSelf__10J2DTextBoxFffPA3_A4_f = .text:0x80042148; // type:function size:0x1A8 scope:global align:4 +resize__10J2DTextBoxFff = .text:0x800422F0; // type:function size:0x104 scope:global align:4 +isUsed__10J2DTextBoxFPC7ResFONT = .text:0x800423F4; // type:function size:0x6C scope:global align:4 +getTypeID__10J2DTextBoxCFv = .text:0x80042460; // type:function size:0x8 scope:weak align:4 +setBlack__10J2DTextBoxFQ28JUtility6TColor = .text:0x80042468; // type:function size:0x28 scope:weak align:4 +setWhite__10J2DTextBoxFQ28JUtility6TColor = .text:0x80042490; // type:function size:0x28 scope:weak align:4 +setBlackWhite__10J2DTextBoxFQ28JUtility6TColorQ28JUtility6TColor = .text:0x800424B8; // type:function size:0x48 scope:weak align:4 +getBlack__10J2DTextBoxCFv = .text:0x80042500; // type:function size:0xC scope:weak align:4 +getWhite__10J2DTextBoxCFv = .text:0x8004250C; // type:function size:0xC scope:weak align:4 +getMaterial__10J2DTextBoxCFv = .text:0x80042518; // type:function size:0x8 scope:weak align:4 +isUsed__10J2DTextBoxFPC7ResTIMG = .text:0x80042520; // type:function size:0x20 scope:weak align:4 +rewriteAlpha__10J2DTextBoxFv = .text:0x80042540; // type:function size:0x4 scope:weak align:4 +__ct__9J2DWindowFv = .text:0x80042544; // type:function size:0xF8 scope:global align:4 +__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8004263C; // type:function size:0xAC scope:global align:4 +__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x800426E8; // type:function size:0x560 scope:global align:4 +private_readStream__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80042C48; // type:function size:0x4E4 scope:global align:4 +initinfo2__9J2DWindowFv = .text:0x8004312C; // type:function size:0x27C scope:global align:4 +__dt__9J2DWindowFv = .text:0x800433A8; // type:function size:0xA8 scope:global align:4 +draw__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x80043450; // type:function size:0x134 scope:global align:4 +draw_private__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80043584; // type:function size:0x484 scope:global align:4 +draw__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80043A08; // type:function size:0x138 scope:global align:4 +resize__9J2DWindowFff = .text:0x80043B40; // type:function size:0x12C scope:global align:4 +setContentsColor__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80043C6C; // type:function size:0xAC scope:global align:4 +drawSelf__9J2DWindowFff = .text:0x80043D18; // type:function size:0x68 scope:global align:4 +drawSelf__9J2DWindowFffPA3_A4_f = .text:0x80043D80; // type:function size:0xF8 scope:global align:4 +drawContents__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x80043E78; // type:function size:0x33C scope:global align:4 +drawFrameTexture__9J2DWindowFP10JUTTextureffffUsUsUsUsb = .text:0x800441B4; // type:function size:0x180 scope:global align:4 +drawFrameTexture__9J2DWindowFP10JUTTextureffbbb = .text:0x80044334; // type:function size:0x22C scope:global align:4 +drawContentsTexture__9J2DWindowFffff = .text:0x80044560; // type:function size:0x360 scope:global align:4 +setTevMode__9J2DWindowFP10JUTTextureQ28JUtility6TColorQ28JUtility6TColor = .text:0x800448C0; // type:function size:0x2D8 scope:global align:4 +getFrameTexture__9J2DWindowCFUcUc = .text:0x80044B98; // type:function size:0x7C scope:global align:4 +isUsed__9J2DWindowFPC7ResTIMG = .text:0x80044C14; // type:function size:0xB8 scope:global align:4 +getTypeID__9J2DWindowCFv = .text:0x80044CCC; // type:function size:0x8 scope:weak align:4 +draw__9J2DWindowFffff = .text:0x80044CD4; // type:function size:0x48 scope:weak align:4 +setBlack__9J2DWindowFQ28JUtility6TColor = .text:0x80044D1C; // type:function size:0x28 scope:weak align:4 +setWhite__9J2DWindowFQ28JUtility6TColor = .text:0x80044D44; // type:function size:0x28 scope:weak align:4 +setBlackWhite__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80044D6C; // type:function size:0x48 scope:weak align:4 +getBlack__9J2DWindowCFv = .text:0x80044DB4; // type:function size:0xC scope:weak align:4 +getWhite__9J2DWindowCFv = .text:0x80044DC0; // type:function size:0xC scope:weak align:4 +getContentsTexture__9J2DWindowCFUc = .text:0x80044DCC; // type:function size:0x18 scope:weak align:4 +getMaterial__9J2DWindowCFRQ29J2DWindow9TMaterial = .text:0x80044DE4; // type:function size:0x1C scope:weak align:4 +getFrameMaterial__9J2DWindowCFUc = .text:0x80044E00; // type:function size:0x8 scope:weak align:4 +getContentsMaterial__9J2DWindowCFv = .text:0x80044E08; // type:function size:0x8 scope:weak align:4 +isUsed__9J2DWindowFPC7ResFONT = .text:0x80044E10; // type:function size:0x20 scope:weak align:4 +rewriteAlpha__9J2DWindowFv = .text:0x80044E30; // type:function size:0x4 scope:weak align:4 +__ct__11J2DWindowExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80044E34; // type:function size:0x2E8 scope:global align:4 +getTevStage__11J2DTevBlockFUl = .text:0x8004511C; // type:function size:0x8 scope:weak align:4 +setTevOrder__11J2DTevBlockFUl11J2DTevOrder = .text:0x80045124; // type:function size:0x4 scope:weak align:4 +insertTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80045128; // type:function size:0x8 scope:weak align:4 +setTevKAlphaSel__11J2DTevBlockFUlUc = .text:0x80045130; // type:function size:0x4 scope:weak align:4 +setTevKColorSel__11J2DTevBlockFUlUc = .text:0x80045134; // type:function size:0x4 scope:weak align:4 +setTevStageNum__11J2DTevBlockFUc = .text:0x80045138; // type:function size:0x4 scope:weak align:4 +setMinSize__11J2DWindowExFv = .text:0x8004513C; // type:function size:0x1C4 scope:global align:4 +__dt__11J2DWindowExFv = .text:0x80045300; // type:function size:0xF8 scope:global align:4 +drawSelf__11J2DWindowExFffPA3_A4_f = .text:0x800453F8; // type:function size:0xA0 scope:global align:4 +draw_private__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80045498; // type:function size:0x6F0 scope:global align:4 +drawContents__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x80045B88; // type:function size:0x42C scope:global align:4 +drawFrameTexture__11J2DWindowExFffffUsUsUsUsP11J2DMaterialb = .text:0x80045FB4; // type:function size:0x264 scope:global align:4 +draw__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x80046218; // type:function size:0x194 scope:global align:4 +draw__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x800463AC; // type:function size:0x128 scope:global align:4 +setTevStage__11J2DWindowExFb = .text:0x800464D4; // type:function size:0x124 scope:global align:4 +setStage__11J2DWindowExFP11J2DTevStageQ211J2DWindowEx10stage_enum = .text:0x800465F8; // type:function size:0x2BC scope:global align:4 +setBlack__11J2DWindowExFQ28JUtility6TColor = .text:0x800468B4; // type:function size:0x88 scope:global align:4 +setWhite__11J2DWindowExFQ28JUtility6TColor = .text:0x8004693C; // type:function size:0x88 scope:global align:4 +setBlackWhite__11J2DWindowExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x800469C4; // type:function size:0x2EC scope:global align:4 +setTevColor__11J2DTevBlockFUl13J2DGXColorS10 = .text:0x80046CB0; // type:function size:0x4 scope:weak align:4 +getBlackWhite__11J2DWindowExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80046CB4; // type:function size:0x194 scope:global align:4 +isSetBlackWhite__11J2DWindowExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80046E48; // type:function size:0x98 scope:global align:4 +getBlack__11J2DWindowExCFv = .text:0x80046EE0; // type:function size:0x60 scope:global align:4 +getWhite__11J2DWindowExCFv = .text:0x80046F40; // type:function size:0x60 scope:global align:4 +setAlpha__11J2DWindowExFUc = .text:0x80046FA0; // type:function size:0x84 scope:global align:4 +setCullBack__11J2DWindowExF11_GXCullMode = .text:0x80047024; // type:function size:0x78 scope:global align:4 +rewriteAlpha__11J2DWindowExFv = .text:0x8004709C; // type:function size:0x18 scope:global align:4 +getFrameTexture__11J2DWindowExCFUcUc = .text:0x800470B4; // type:function size:0x68 scope:global align:4 +getFrameMaterial__11J2DWindowExCFUc = .text:0x8004711C; // type:function size:0x24 scope:weak align:4 +getContentsTexture__11J2DWindowExCFUc = .text:0x80047140; // type:function size:0x68 scope:global align:4 +getContentsMaterial__11J2DWindowExCFv = .text:0x800471A8; // type:function size:0x8 scope:weak align:4 +isUsed__11J2DWindowExFPC7ResTIMG = .text:0x800471B0; // type:function size:0x118 scope:global align:4 +setAnimation__11J2DWindowExFP11J2DAnmColor = .text:0x800472C8; // type:function size:0x90 scope:global align:4 +setAnimation__11J2DWindowExFP19J2DAnmTextureSRTKey = .text:0x80047358; // type:function size:0x90 scope:global align:4 +setAnimation__11J2DWindowExFP16J2DAnmTexPattern = .text:0x800473E8; // type:function size:0x90 scope:global align:4 +setAnimation__11J2DWindowExFP15J2DAnmTevRegKey = .text:0x80047478; // type:function size:0x90 scope:global align:4 +isNeedSetAnm__11J2DWindowExFUc = .text:0x80047508; // type:function size:0x5C scope:global align:4 +setAnimation__11J2DWindowExFP20J2DAnmVisibilityFull = .text:0x80047564; // type:function size:0x8 scope:global align:4 +setAnimation__11J2DWindowExFP14J2DAnmVtxColor = .text:0x8004756C; // type:function size:0xE0 scope:global align:4 +animationPane__11J2DWindowExFPC15J2DAnmTransform = .text:0x8004764C; // type:function size:0x1AC scope:global align:4 +getColor__14J2DAnmVtxColorCFUcUsP8_GXColor = .text:0x800477F8; // type:function size:0x4 scope:weak align:4 +getMaterial__11J2DWindowExCFRQ29J2DWindow9TMaterial = .text:0x800477FC; // type:function size:0x2C scope:weak align:4 +draw__11J2DWindowExFffff = .text:0x80047828; // type:function size:0x58 scope:weak align:4 +setCullBack__11J2DWindowExFb = .text:0x80047880; // type:function size:0x3C scope:weak align:4 +isUsed__11J2DWindowExFPC7ResFONT = .text:0x800478BC; // type:function size:0x20 scope:weak align:4 +setAnimation__11J2DWindowExFP15J2DAnmTransform = .text:0x800478DC; // type:function size:0x20 scope:weak align:4 +setAnimation__11J2DWindowExFP10J2DAnmBase = .text:0x800478FC; // type:function size:0x20 scope:weak align:4 +load__20J2DAnmLoaderDataBaseFPCv = .text:0x8004791C; // type:function size:0x79C scope:global align:4 +__dt__14J2DAnmVtxColorFv = .text:0x800480B8; // type:function size:0x5C scope:weak align:4 +__dt__11J2DAnmColorFv = .text:0x80048114; // type:function size:0x74 scope:weak align:4 +__dt__15J2DAnmTransformFv = .text:0x80048188; // type:function size:0x5C scope:weak align:4 +__dt__10J2DAnmBaseFv = .text:0x800481E4; // type:function size:0x48 scope:weak align:4 +__ct__19J2DAnmKeyLoader_v15Fv = .text:0x8004822C; // type:function size:0x1C scope:global align:4 +__dt__12J2DAnmLoaderFv = .text:0x80048248; // type:function size:0x48 scope:weak align:4 +__dt__19J2DAnmKeyLoader_v15Fv = .text:0x80048290; // type:function size:0x5C scope:global align:4 +load__19J2DAnmKeyLoader_v15FPCv = .text:0x800482EC; // type:function size:0x104 scope:global align:4 +setResource__19J2DAnmKeyLoader_v15FP10J2DAnmBasePCv = .text:0x800483F0; // type:function size:0x154 scope:global align:4 +readAnmTransform__19J2DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x80048544; // type:function size:0x28 scope:global align:4 +setAnmTransform__19J2DAnmKeyLoader_v15FP18J2DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x8004856C; // type:function size:0x9C scope:global align:4 +readAnmTextureSRT__19J2DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x80048608; // type:function size:0x28 scope:global align:4 +setAnmTextureSRT__19J2DAnmKeyLoader_v15FP19J2DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x80048630; // type:function size:0x1EC scope:global align:4 +readAnmColor__19J2DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x8004881C; // type:function size:0x28 scope:global align:4 +setAnmColor__19J2DAnmKeyLoader_v15FP14J2DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x80048844; // type:function size:0xEC scope:global align:4 +readAnmVtxColor__19J2DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x80048930; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__19J2DAnmKeyLoader_v15FP17J2DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x80048958; // type:function size:0xFC scope:global align:4 +load__20J2DAnmFullLoader_v15FPCv = .text:0x80048A54; // type:function size:0x104 scope:global align:4 +setResource__20J2DAnmFullLoader_v15FP10J2DAnmBasePCv = .text:0x80048B58; // type:function size:0x154 scope:global align:4 +__ct__20J2DAnmFullLoader_v15Fv = .text:0x80048CAC; // type:function size:0x1C scope:global align:4 +__dt__20J2DAnmFullLoader_v15Fv = .text:0x80048CC8; // type:function size:0x5C scope:global align:4 +readAnmTransform__20J2DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x80048D24; // type:function size:0x28 scope:global align:4 +setAnmTransform__20J2DAnmFullLoader_v15FP19J2DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x80048D4C; // type:function size:0x94 scope:global align:4 +readAnmColor__20J2DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x80048DE0; // type:function size:0x28 scope:global align:4 +setAnmColor__20J2DAnmFullLoader_v15FP15J2DAnmColorFullPC19J3DAnmColorFullData = .text:0x80048E08; // type:function size:0xCC scope:global align:4 +readAnmTexPattern__20J2DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x80048ED4; // type:function size:0x28 scope:global align:4 +setAnmTexPattern__20J2DAnmFullLoader_v15FP16J2DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x80048EFC; // type:function size:0xA4 scope:global align:4 +readAnmTevReg__19J2DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x80048FA0; // type:function size:0x28 scope:global align:4 +setAnmTevReg__19J2DAnmKeyLoader_v15FP15J2DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x80048FC8; // type:function size:0x18C scope:global align:4 +readAnmVisibility__20J2DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x80049154; // type:function size:0x28 scope:global align:4 +setAnmVisibility__20J2DAnmFullLoader_v15FP20J2DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x8004917C; // type:function size:0x7C scope:global align:4 +readAnmVtxColor__20J2DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x800491F8; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__20J2DAnmFullLoader_v15FP18J2DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x80049220; // type:function size:0xFC scope:global align:4 +__dt__20J2DAnmVisibilityFullFv = .text:0x8004931C; // type:function size:0x5C scope:weak align:4 +searchUpdateMaterialID__10J2DAnmBaseFP9J2DScreen = .text:0x80049378; // type:function size:0x4 scope:weak align:4 +JSUConvertOffsetToPtr<25J3DAnmVisibilityFullTable>__FPCvPCv = .text:0x8004937C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DAnmKRegKeyTable>__FPCvPCv = .text:0x80049394; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DAnmCRegKeyTable>__FPCvPCv = .text:0x800493AC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<25J3DAnmTexPatternFullTable>__FPCvPCv = .text:0x800493C4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<20J3DAnmColorFullTable>__FPCvPCv = .text:0x800493DC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<24J3DAnmTransformFullTable>__FPCvPCv = .text:0x800493F4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J3DAnmVtxColorIndexData>__FPCvPCv = .text:0x8004940C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J3DAnmColorKeyTable>__FPCvPCv = .text:0x80049424; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<3Vec>__FPCvPCv = .text:0x8004943C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80049454; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<7ResNTAB>__FPCvPCv = .text:0x8004946C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80049484; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x8004949C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x800494B4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J3DAnmTransformKeyTable>__FPCvPCv = .text:0x800494CC; // type:function size:0x18 scope:weak align:4 +getTexNo__11J2DTevBlockCFUl = .text:0x800494E4; // type:function size:0xC scope:weak align:4 +setTexNo__11J2DTevBlockFUlUs = .text:0x800494F0; // type:function size:0x4 scope:weak align:4 +getTevSwapModeTable__11J2DTevBlockFUl = .text:0x800494F4; // type:function size:0x8 scope:weak align:4 +getTevOrder__11J2DTevBlockFUl = .text:0x800494FC; // type:function size:0x8 scope:weak align:4 +getFontNo__11J2DTevBlockCFv = .text:0x80049504; // type:function size:0xC scope:weak align:4 +getIndTexStageNum__11J2DIndBlockCFv = .text:0x80049510; // type:function size:0x8 scope:weak align:4 +__dt__Q211J2DBloSaver19CTextureNameConnectFv = .text:0x80049518; // type:function size:0x50 scope:global align:4 +clear__Q211J2DBloSaver19CTextureNameConnectFv = .text:0x80049568; // type:function size:0x70 scope:global align:4 +__ct__11J2DTevStageFv = .text:0x800495D8; // type:function size:0x68 scope:weak align:4 +setTevStageInfo__11J2DTevStageFRC15J2DTevStageInfo = .text:0x80049640; // type:function size:0x1E0 scope:weak align:4 +__sinit_J2DBloSaver_cpp = .text:0x80049820; // type:function size:0x3C scope:local align:4 +get__13J2DDataManageFPCc = .text:0x8004985C; // type:function size:0x64 scope:global align:4 +get__13J2DDataManageFP14JSUInputStream = .text:0x800498C0; // type:function size:0xC8 scope:global align:4 +getResReference__15J2DResReferenceCFUs = .text:0x80049988; // type:function size:0x34 scope:global align:4 +getName__15J2DResReferenceCFUs = .text:0x800499BC; // type:function size:0x164 scope:global align:4 +initialize__13J2DColorBlockFv = .text:0x80049B20; // type:function size:0xAC scope:global align:4 +setGX__13J2DColorBlockFv = .text:0x80049BCC; // type:function size:0xF4 scope:global align:4 +initialize__14J2DTexGenBlockFv = .text:0x80049CC0; // type:function size:0xF0 scope:global align:4 +setGX__14J2DTexGenBlockFv = .text:0x80049DB0; // type:function size:0xB4 scope:global align:4 +__dt__14J2DTexGenBlockFv = .text:0x80049E64; // type:function size:0x90 scope:global align:4 +setTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x80049EF4; // type:function size:0x158 scope:global align:4 +getTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x8004A04C; // type:function size:0xB8 scope:global align:4 +getTexture__11J2DTevBlockFUl = .text:0x8004A104; // type:function size:0x8 scope:global align:4 +getPalette__11J2DTevBlockFUl = .text:0x8004A10C; // type:function size:0x8 scope:global align:4 +__ct__12J2DTevBlock1Fv = .text:0x8004A114; // type:function size:0x10C scope:global align:4 +__ct__14J2DIndTevStageFv = .text:0x8004A220; // type:function size:0x94 scope:weak align:4 +__ct__19J2DTevSwapModeTableFv = .text:0x8004A2B4; // type:function size:0xC scope:weak align:4 +__ct__13J2DGXColorS10Fv = .text:0x8004A2C0; // type:function size:0x4 scope:weak align:4 +__ct__11J2DTevOrderFv = .text:0x8004A2C4; // type:function size:0x20 scope:weak align:4 +__dt__11J2DTevBlockFv = .text:0x8004A2E4; // type:function size:0x48 scope:weak align:4 +__dt__12J2DTevBlock1Fv = .text:0x8004A32C; // type:function size:0xB8 scope:global align:4 +initialize__12J2DTevBlock1Fv = .text:0x8004A3E4; // type:function size:0x278 scope:global align:4 +prepareTexture__12J2DTevBlock1FUc = .text:0x8004A65C; // type:function size:0xBC scope:global align:4 +insertTexture__12J2DTevBlock1FUlPC7ResTIMGP10JUTPalette = .text:0x8004A718; // type:function size:0x134 scope:global align:4 +insertTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8004A84C; // type:function size:0xA8 scope:global align:4 +setTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x8004A8F4; // type:function size:0x198 scope:global align:4 +setTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8004AA8C; // type:function size:0x8C scope:global align:4 +removeTexture__12J2DTevBlock1FUl = .text:0x8004AB18; // type:function size:0x7C scope:global align:4 +setFont__12J2DTevBlock1FP7ResFONT = .text:0x8004AB94; // type:function size:0xBC scope:global align:4 +setFont__12J2DTevBlock1FP7JUTFont = .text:0x8004AC50; // type:function size:0x80 scope:global align:4 +setPalette__12J2DTevBlock1FUlPC7ResTLUT = .text:0x8004ACD0; // type:function size:0xC8 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock1FUcb = .text:0x8004AD98; // type:function size:0x10 scope:global align:4 +setGX__12J2DTevBlock1Fv = .text:0x8004ADA8; // type:function size:0x24C scope:global align:4 +loadTexture__12J2DTevBlock1F11_GXTexMapIDUl = .text:0x8004AFF4; // type:function size:0x48 scope:global align:4 +__ct__12J2DTevBlock2Fv = .text:0x8004B03C; // type:function size:0x110 scope:global align:4 +__dt__12J2DTevBlock2Fv = .text:0x8004B14C; // type:function size:0xD8 scope:global align:4 +initialize__12J2DTevBlock2Fv = .text:0x8004B224; // type:function size:0x350 scope:global align:4 +prepareTexture__12J2DTevBlock2FUc = .text:0x8004B574; // type:function size:0xE0 scope:global align:4 +insertTexture__12J2DTevBlock2FUlPC7ResTIMGP10JUTPalette = .text:0x8004B654; // type:function size:0x2CC scope:global align:4 +insertTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x8004B920; // type:function size:0x168 scope:global align:4 +setTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x8004BA88; // type:function size:0x21C scope:global align:4 +setTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x8004BCA4; // type:function size:0xA8 scope:global align:4 +removeTexture__12J2DTevBlock2FUl = .text:0x8004BD4C; // type:function size:0xD4 scope:global align:4 +setFont__12J2DTevBlock2FP7ResFONT = .text:0x8004BE20; // type:function size:0xBC scope:global align:4 +setFont__12J2DTevBlock2FP7JUTFont = .text:0x8004BEDC; // type:function size:0x80 scope:global align:4 +setPalette__12J2DTevBlock2FUlPC7ResTLUT = .text:0x8004BF5C; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock2FUcb = .text:0x8004C02C; // type:function size:0x88 scope:global align:4 +setGX__12J2DTevBlock2Fv = .text:0x8004C0B4; // type:function size:0x2E8 scope:global align:4 +loadTexture__12J2DTevBlock2F11_GXTexMapIDUl = .text:0x8004C39C; // type:function size:0x48 scope:global align:4 +__ct__12J2DTevBlock4Fv = .text:0x8004C3E4; // type:function size:0x118 scope:global align:4 +__dt__12J2DTevBlock4Fv = .text:0x8004C4FC; // type:function size:0xD0 scope:global align:4 +initialize__12J2DTevBlock4Fv = .text:0x8004C5CC; // type:function size:0x3BC scope:global align:4 +prepareTexture__12J2DTevBlock4FUc = .text:0x8004C988; // type:function size:0xE0 scope:global align:4 +insertTexture__12J2DTevBlock4FUlPC7ResTIMGP10JUTPalette = .text:0x8004CA68; // type:function size:0x3AC scope:global align:4 +insertTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x8004CE14; // type:function size:0x198 scope:global align:4 +setTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x8004CFAC; // type:function size:0x2E4 scope:global align:4 +setTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x8004D290; // type:function size:0xA8 scope:global align:4 +removeTexture__12J2DTevBlock4FUl = .text:0x8004D338; // type:function size:0x210 scope:global align:4 +setFont__12J2DTevBlock4FP7ResFONT = .text:0x8004D548; // type:function size:0xBC scope:global align:4 +setFont__12J2DTevBlock4FP7JUTFont = .text:0x8004D604; // type:function size:0x80 scope:global align:4 +setPalette__12J2DTevBlock4FUlPC7ResTLUT = .text:0x8004D684; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock4FUcb = .text:0x8004D754; // type:function size:0x88 scope:global align:4 +setGX__12J2DTevBlock4Fv = .text:0x8004D7DC; // type:function size:0x2E8 scope:global align:4 +loadTexture__12J2DTevBlock4F11_GXTexMapIDUl = .text:0x8004DAC4; // type:function size:0x48 scope:global align:4 +__ct__12J2DTevBlock8Fv = .text:0x8004DB0C; // type:function size:0x128 scope:global align:4 +__dt__12J2DTevBlock8Fv = .text:0x8004DC34; // type:function size:0xD0 scope:global align:4 +initialize__12J2DTevBlock8Fv = .text:0x8004DD04; // type:function size:0x4A0 scope:global align:4 +prepareTexture__12J2DTevBlock8FUc = .text:0x8004E1A4; // type:function size:0xE0 scope:global align:4 +insertTexture__12J2DTevBlock8FUlPC7ResTIMGP10JUTPalette = .text:0x8004E284; // type:function size:0x3C8 scope:global align:4 +insertTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x8004E64C; // type:function size:0x198 scope:global align:4 +setTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x8004E7E4; // type:function size:0x2E4 scope:global align:4 +setTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x8004EAC8; // type:function size:0xA8 scope:global align:4 +removeTexture__12J2DTevBlock8FUl = .text:0x8004EB70; // type:function size:0x210 scope:global align:4 +setFont__12J2DTevBlock8FP7ResFONT = .text:0x8004ED80; // type:function size:0xB4 scope:global align:4 +setFont__12J2DTevBlock8FP7JUTFont = .text:0x8004EE34; // type:function size:0x7C scope:global align:4 +setPalette__12J2DTevBlock8FUlPC7ResTLUT = .text:0x8004EEB0; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock8FUcb = .text:0x8004EF80; // type:function size:0x6C scope:global align:4 +setGX__12J2DTevBlock8Fv = .text:0x8004EFEC; // type:function size:0x2E8 scope:global align:4 +loadTexture__12J2DTevBlock8F11_GXTexMapIDUl = .text:0x8004F2D4; // type:function size:0x48 scope:global align:4 +__ct__13J2DTevBlock16Fv = .text:0x8004F31C; // type:function size:0x128 scope:global align:4 +__dt__13J2DTevBlock16Fv = .text:0x8004F444; // type:function size:0xD0 scope:global align:4 +initialize__13J2DTevBlock16Fv = .text:0x8004F514; // type:function size:0x550 scope:global align:4 +prepareTexture__13J2DTevBlock16FUc = .text:0x8004FA64; // type:function size:0xE0 scope:global align:4 +insertTexture__13J2DTevBlock16FUlPC7ResTIMGP10JUTPalette = .text:0x8004FB44; // type:function size:0x3C8 scope:global align:4 +insertTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x8004FF0C; // type:function size:0x198 scope:global align:4 +setTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x800500A4; // type:function size:0x2E4 scope:global align:4 +setTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x80050388; // type:function size:0xA8 scope:global align:4 +removeTexture__13J2DTevBlock16FUl = .text:0x80050430; // type:function size:0x210 scope:global align:4 +setFont__13J2DTevBlock16FP7ResFONT = .text:0x80050640; // type:function size:0xB4 scope:global align:4 +setFont__13J2DTevBlock16FP7JUTFont = .text:0x800506F4; // type:function size:0x7C scope:global align:4 +setPalette__13J2DTevBlock16FUlPC7ResTLUT = .text:0x80050770; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__13J2DTevBlock16FUcb = .text:0x80050840; // type:function size:0x6C scope:global align:4 +setGX__13J2DTevBlock16Fv = .text:0x800508AC; // type:function size:0x2E8 scope:global align:4 +loadTexture__13J2DTevBlock16F11_GXTexMapIDUl = .text:0x80050B94; // type:function size:0x48 scope:global align:4 +initialize__15J2DIndBlockFullFv = .text:0x80050BDC; // type:function size:0x148 scope:global align:4 +setGX__15J2DIndBlockFullFv = .text:0x80050D24; // type:function size:0xCC scope:global align:4 +initialize__10J2DPEBlockFv = .text:0x80050DF0; // type:function size:0x44 scope:global align:4 +setGX__10J2DPEBlockFv = .text:0x80050E34; // type:function size:0x60 scope:global align:4 +getType__15J2DIndBlockFullFv = .text:0x80050E94; // type:function size:0xC scope:weak align:4 +setIndTexStageNum__15J2DIndBlockFullFUc = .text:0x80050EA0; // type:function size:0x8 scope:weak align:4 +getIndTexStageNum__15J2DIndBlockFullCFv = .text:0x80050EA8; // type:function size:0x8 scope:weak align:4 +setIndTexOrder__15J2DIndBlockFullFUl14J2DIndTexOrder = .text:0x80050EB0; // type:function size:0x1C scope:weak align:4 +getIndTexOrder__15J2DIndBlockFullFUl = .text:0x80050ECC; // type:function size:0x14 scope:weak align:4 +setIndTexMtx__15J2DIndBlockFullFUl12J2DIndTexMtx = .text:0x80050EE0; // type:function size:0x44 scope:weak align:4 +getIndTexMtx__15J2DIndBlockFullFUl = .text:0x80050F24; // type:function size:0x14 scope:weak align:4 +setIndTexCoordScale__15J2DIndBlockFullFUl19J2DIndTexCoordScale = .text:0x80050F38; // type:function size:0x1C scope:weak align:4 +getIndTexCoordScale__15J2DIndBlockFullFUl = .text:0x80050F54; // type:function size:0x14 scope:weak align:4 +__dt__15J2DIndBlockFullFv = .text:0x80050F68; // type:function size:0x9C scope:weak align:4 +__dt__12J2DIndTexMtxFv = .text:0x80051004; // type:function size:0x3C scope:weak align:4 +__dt__19J2DIndTexCoordScaleFv = .text:0x80051040; // type:function size:0x3C scope:weak align:4 +initialize__11J2DIndBlockFv = .text:0x8005107C; // type:function size:0x4 scope:weak align:4 +setGX__11J2DIndBlockFv = .text:0x80051080; // type:function size:0x4 scope:weak align:4 +setIndTexStageNum__11J2DIndBlockFUc = .text:0x80051084; // type:function size:0x4 scope:weak align:4 +setIndTexOrder__11J2DIndBlockFUl14J2DIndTexOrder = .text:0x80051088; // type:function size:0x4 scope:weak align:4 +getIndTexOrder__11J2DIndBlockFUl = .text:0x8005108C; // type:function size:0x8 scope:weak align:4 +setIndTexMtx__11J2DIndBlockFUl12J2DIndTexMtx = .text:0x80051094; // type:function size:0x4 scope:weak align:4 +getIndTexMtx__11J2DIndBlockFUl = .text:0x80051098; // type:function size:0x8 scope:weak align:4 +setIndTexCoordScale__11J2DIndBlockFUl19J2DIndTexCoordScale = .text:0x800510A0; // type:function size:0x4 scope:weak align:4 +getIndTexCoordScale__11J2DIndBlockFUl = .text:0x800510A4; // type:function size:0x8 scope:weak align:4 +__dt__11J2DIndBlockFv = .text:0x800510AC; // type:function size:0x48 scope:weak align:4 +getType__13J2DTevBlock16Fv = .text:0x800510F4; // type:function size:0xC scope:weak align:4 +getMaxStage__13J2DTevBlock16Fv = .text:0x80051100; // type:function size:0x8 scope:weak align:4 +setTexNo__13J2DTevBlock16FUlUs = .text:0x80051108; // type:function size:0x10 scope:weak align:4 +getTexNo__13J2DTevBlock16CFUl = .text:0x80051118; // type:function size:0x10 scope:weak align:4 +setFontNo__13J2DTevBlock16FUs = .text:0x80051128; // type:function size:0x8 scope:weak align:4 +getFontNo__13J2DTevBlock16CFv = .text:0x80051130; // type:function size:0x8 scope:weak align:4 +setTevOrder__13J2DTevBlock16FUl11J2DTevOrder = .text:0x80051138; // type:function size:0x24 scope:weak align:4 +getTevOrder__13J2DTevBlock16FUl = .text:0x8005115C; // type:function size:0x14 scope:weak align:4 +setTevColor__13J2DTevBlock16FUl13J2DGXColorS10 = .text:0x80051170; // type:function size:0x2C scope:weak align:4 +getTevColor__13J2DTevBlock16FUl = .text:0x8005119C; // type:function size:0x14 scope:weak align:4 +setTevKColor__13J2DTevBlock16FUlQ28JUtility6TColor = .text:0x800511B0; // type:function size:0x2C scope:weak align:4 +getTevKColor__13J2DTevBlock16FUl = .text:0x800511DC; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__13J2DTevBlock16FUlUc = .text:0x800511F0; // type:function size:0xC scope:weak align:4 +getTevKColorSel__13J2DTevBlock16FUl = .text:0x800511FC; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__13J2DTevBlock16FUlUc = .text:0x80051208; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__13J2DTevBlock16FUl = .text:0x80051214; // type:function size:0xC scope:weak align:4 +setTevStageNum__13J2DTevBlock16FUc = .text:0x80051220; // type:function size:0x8 scope:weak align:4 +getTevStageNum__13J2DTevBlock16CFv = .text:0x80051228; // type:function size:0x8 scope:weak align:4 +setTevStage__13J2DTevBlock16FUl11J2DTevStage = .text:0x80051230; // type:function size:0x3C scope:weak align:4 +getTevStage__13J2DTevBlock16FUl = .text:0x8005126C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__13J2DTevBlock16FUl18J2DTevSwapModeInfo = .text:0x80051280; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__13J2DTevBlock16FUl19J2DTevSwapModeTable = .text:0x800512B8; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__13J2DTevBlock16FUl = .text:0x800512C8; // type:function size:0x10 scope:weak align:4 +setIndTevStage__13J2DTevBlock16FUl14J2DIndTevStage = .text:0x800512D8; // type:function size:0x14 scope:weak align:4 +getIndTevStage__13J2DTevBlock16FUl = .text:0x800512EC; // type:function size:0x14 scope:weak align:4 +insertTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x80051300; // type:function size:0x30 scope:weak align:4 +getTexture__13J2DTevBlock16FUl = .text:0x80051330; // type:function size:0x20 scope:weak align:4 +getPalette__13J2DTevBlock16FUl = .text:0x80051350; // type:function size:0x20 scope:weak align:4 +getFont__13J2DTevBlock16Fv = .text:0x80051370; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__13J2DTevBlock16FUc = .text:0x80051378; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__13J2DTevBlock16Fv = .text:0x80051388; // type:function size:0xC scope:weak align:4 +getType__12J2DTevBlock8Fv = .text:0x80051394; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock8Fv = .text:0x800513A0; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock8FUlUs = .text:0x800513A8; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock8CFUl = .text:0x800513B8; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock8FUs = .text:0x800513C8; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock8CFv = .text:0x800513D0; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock8FUl11J2DTevOrder = .text:0x800513D8; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock8FUl = .text:0x800513FC; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock8FUl13J2DGXColorS10 = .text:0x80051410; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock8FUl = .text:0x8005143C; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock8FUlQ28JUtility6TColor = .text:0x80051450; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock8FUl = .text:0x8005147C; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock8FUlUc = .text:0x80051490; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock8FUl = .text:0x8005149C; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock8FUlUc = .text:0x800514A8; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock8FUl = .text:0x800514B4; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock8FUc = .text:0x800514C0; // type:function size:0x8 scope:weak align:4 +getTevStageNum__12J2DTevBlock8CFv = .text:0x800514C8; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock8FUl11J2DTevStage = .text:0x800514D0; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock8FUl = .text:0x8005150C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock8FUl18J2DTevSwapModeInfo = .text:0x80051520; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock8FUl19J2DTevSwapModeTable = .text:0x80051558; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock8FUl = .text:0x80051568; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock8FUl14J2DIndTevStage = .text:0x80051578; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock8FUl = .text:0x8005158C; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x800515A0; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock8FUl = .text:0x800515D0; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock8FUl = .text:0x800515F0; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock8Fv = .text:0x80051610; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock8FUc = .text:0x80051618; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock8Fv = .text:0x80051628; // type:function size:0xC scope:weak align:4 +getType__12J2DTevBlock4Fv = .text:0x80051634; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock4Fv = .text:0x80051640; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock4FUlUs = .text:0x80051648; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock4CFUl = .text:0x80051658; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock4FUs = .text:0x80051668; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock4CFv = .text:0x80051670; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock4FUl11J2DTevOrder = .text:0x80051678; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock4FUl = .text:0x8005169C; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock4FUl13J2DGXColorS10 = .text:0x800516B0; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock4FUl = .text:0x800516DC; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock4FUlQ28JUtility6TColor = .text:0x800516F0; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock4FUl = .text:0x8005171C; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock4FUlUc = .text:0x80051730; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock4FUl = .text:0x8005173C; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock4FUlUc = .text:0x80051748; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock4FUl = .text:0x80051754; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock4FUc = .text:0x80051760; // type:function size:0x8 scope:weak align:4 +getTevStageNum__12J2DTevBlock4CFv = .text:0x80051768; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock4FUl11J2DTevStage = .text:0x80051770; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock4FUl = .text:0x800517AC; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock4FUl18J2DTevSwapModeInfo = .text:0x800517C0; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock4FUl19J2DTevSwapModeTable = .text:0x800517F8; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock4FUl = .text:0x80051808; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock4FUl14J2DIndTevStage = .text:0x80051818; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock4FUl = .text:0x8005182C; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x80051840; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock4FUl = .text:0x80051870; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock4FUl = .text:0x80051890; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock4Fv = .text:0x800518B0; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock4FUc = .text:0x800518B8; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock4Fv = .text:0x800518C8; // type:function size:0x10 scope:weak align:4 +getType__12J2DTevBlock2Fv = .text:0x800518D8; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock2Fv = .text:0x800518E4; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock2FUlUs = .text:0x800518EC; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock2CFUl = .text:0x800518FC; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock2FUs = .text:0x8005190C; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock2CFv = .text:0x80051914; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock2FUl11J2DTevOrder = .text:0x8005191C; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock2FUl = .text:0x80051940; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock2FUl13J2DGXColorS10 = .text:0x80051954; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock2FUl = .text:0x80051980; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock2FUlQ28JUtility6TColor = .text:0x80051994; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock2FUl = .text:0x800519C0; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock2FUlUc = .text:0x800519D4; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock2FUl = .text:0x800519E0; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock2FUlUc = .text:0x800519EC; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock2FUl = .text:0x800519F8; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock2FUc = .text:0x80051A04; // type:function size:0x8 scope:weak align:4 +getTevStageNum__12J2DTevBlock2CFv = .text:0x80051A0C; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock2FUl11J2DTevStage = .text:0x80051A14; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock2FUl = .text:0x80051A50; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock2FUl18J2DTevSwapModeInfo = .text:0x80051A64; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock2FUl19J2DTevSwapModeTable = .text:0x80051A9C; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock2FUl = .text:0x80051AAC; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock2FUl14J2DIndTevStage = .text:0x80051ABC; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock2FUl = .text:0x80051AD0; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x80051AE4; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock2FUl = .text:0x80051B14; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock2FUl = .text:0x80051B34; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock2Fv = .text:0x80051B54; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock2FUc = .text:0x80051B5C; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock2Fv = .text:0x80051B6C; // type:function size:0x10 scope:weak align:4 +getType__12J2DTevBlock1Fv = .text:0x80051B7C; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock1Fv = .text:0x80051B88; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock1FUlUs = .text:0x80051B90; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock1CFUl = .text:0x80051BA0; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock1FUs = .text:0x80051BB0; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock1CFv = .text:0x80051BB8; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock1FUl11J2DTevOrder = .text:0x80051BC0; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock1FUl = .text:0x80051BE4; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock1FUl13J2DGXColorS10 = .text:0x80051BF8; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock1FUl = .text:0x80051C24; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock1FUlQ28JUtility6TColor = .text:0x80051C38; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock1FUl = .text:0x80051C64; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock1FUlUc = .text:0x80051C78; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock1FUl = .text:0x80051C84; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock1FUlUc = .text:0x80051C90; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock1FUl = .text:0x80051C9C; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock1FUc = .text:0x80051CA8; // type:function size:0x4 scope:weak align:4 +getTevStageNum__12J2DTevBlock1CFv = .text:0x80051CAC; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock1FUl11J2DTevStage = .text:0x80051CB4; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock1FUl = .text:0x80051CF0; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock1FUl18J2DTevSwapModeInfo = .text:0x80051D04; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock1FUl19J2DTevSwapModeTable = .text:0x80051D3C; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock1FUl = .text:0x80051D4C; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock1FUl14J2DIndTevStage = .text:0x80051D5C; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock1FUl = .text:0x80051D70; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x80051D84; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock1FUl = .text:0x80051DB4; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock1FUl = .text:0x80051DD4; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock1Fv = .text:0x80051DF4; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock1FUc = .text:0x80051DFC; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock1Fv = .text:0x80051E0C; // type:function size:0x10 scope:weak align:4 +initialize__11J2DTevBlockFv = .text:0x80051E1C; // type:function size:0x4 scope:weak align:4 +setGX__11J2DTevBlockFv = .text:0x80051E20; // type:function size:0x4 scope:weak align:4 +loadTexture__11J2DTevBlockF11_GXTexMapIDUl = .text:0x80051E24; // type:function size:0x4 scope:weak align:4 +setFontNo__11J2DTevBlockFUs = .text:0x80051E28; // type:function size:0x4 scope:weak align:4 +setTevKColor__11J2DTevBlockFUlQ28JUtility6TColor = .text:0x80051E2C; // type:function size:0x4 scope:weak align:4 +getTevKColorSel__11J2DTevBlockFUl = .text:0x80051E30; // type:function size:0x8 scope:weak align:4 +getTevKAlphaSel__11J2DTevBlockFUl = .text:0x80051E38; // type:function size:0x8 scope:weak align:4 +setTevStage__11J2DTevBlockFUl11J2DTevStage = .text:0x80051E40; // type:function size:0x4 scope:weak align:4 +setTevSwapModeInfo__11J2DTevBlockFUl18J2DTevSwapModeInfo = .text:0x80051E44; // type:function size:0x4 scope:weak align:4 +setTevSwapModeTable__11J2DTevBlockFUl19J2DTevSwapModeTable = .text:0x80051E48; // type:function size:0x4 scope:weak align:4 +setIndTevStage__11J2DTevBlockFUl14J2DIndTevStage = .text:0x80051E4C; // type:function size:0x4 scope:weak align:4 +getIndTevStage__11J2DTevBlockFUl = .text:0x80051E50; // type:function size:0x8 scope:weak align:4 +insertTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80051E58; // type:function size:0x8 scope:weak align:4 +insertTexture__11J2DTevBlockFUlPC7ResTIMGP10JUTPalette = .text:0x80051E60; // type:function size:0x8 scope:weak align:4 +setTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80051E68; // type:function size:0x8 scope:weak align:4 +setTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80051E70; // type:function size:0x8 scope:weak align:4 +removeTexture__11J2DTevBlockFUl = .text:0x80051E78; // type:function size:0x8 scope:weak align:4 +setFont__11J2DTevBlockFP7JUTFont = .text:0x80051E80; // type:function size:0x8 scope:weak align:4 +setFont__11J2DTevBlockFP7ResFONT = .text:0x80051E88; // type:function size:0x8 scope:weak align:4 +setPalette__11J2DTevBlockFUlPC7ResTLUT = .text:0x80051E90; // type:function size:0x8 scope:weak align:4 +prepareTexture__11J2DTevBlockFUc = .text:0x80051E98; // type:function size:0x8 scope:weak align:4 +shiftDeleteFlag__11J2DTevBlockFUcb = .text:0x80051EA0; // type:function size:0x4 scope:weak align:4 +__ct__11J2DMaterialFv = .text:0x80051EA4; // type:function size:0x120 scope:global align:4 +__ct__11J2DTexCoordFv = .text:0x80051FC4; // type:function size:0x20 scope:weak align:4 +__dt__13J2DColorBlockFv = .text:0x80051FE4; // type:function size:0x48 scope:weak align:4 +__ct__12J2DColorChanFv = .text:0x8005202C; // type:function size:0x10 scope:weak align:4 +__ct__11J2DMaterialFUl = .text:0x8005203C; // type:function size:0x14C scope:global align:4 +__dt__11J2DMaterialFv = .text:0x80052188; // type:function size:0xC0 scope:global align:4 +setGX__11J2DMaterialFv = .text:0x80052248; // type:function size:0x84 scope:global align:4 +createTevBlock__11J2DMaterialFib = .text:0x800522CC; // type:function size:0x1B4 scope:global align:4 +createIndBlock__11J2DMaterialFib = .text:0x80052480; // type:function size:0x1D8 scope:global align:4 +__ct__19J2DIndTexCoordScaleFv = .text:0x80052658; // type:function size:0x18 scope:weak align:4 +__ct__12J2DIndTexMtxFv = .text:0x80052670; // type:function size:0x40 scope:weak align:4 +__ct__14J2DIndTexOrderFv = .text:0x800526B0; // type:function size:0x18 scope:weak align:4 +makeAnmPointer__11J2DMaterialFv = .text:0x800526C8; // type:function size:0xC8 scope:global align:4 +setAnimation__11J2DMaterialFP11J2DAnmColor = .text:0x80052790; // type:function size:0x144 scope:global align:4 +setAnimation__11J2DMaterialFP19J2DAnmTextureSRTKey = .text:0x800528D4; // type:function size:0x1A4 scope:global align:4 +setAnimation__11J2DMaterialFP16J2DAnmTexPattern = .text:0x80052A78; // type:function size:0x194 scope:global align:4 +setAnimation__11J2DMaterialFP15J2DAnmTevRegKey = .text:0x80052C0C; // type:function size:0x1FC scope:global align:4 +animation__11J2DMaterialFv = .text:0x80052E08; // type:function size:0x470 scope:global align:4 +getColor__11J2DAnmColorCFUsP8_GXColor = .text:0x80053278; // type:function size:0x4 scope:weak align:4 +setGX__15J2DIndBlockNullFv = .text:0x8005327C; // type:function size:0x4 scope:weak align:4 +getType__15J2DIndBlockNullFv = .text:0x80053280; // type:function size:0xC scope:weak align:4 +__dt__15J2DIndBlockNullFv = .text:0x8005328C; // type:function size:0x5C scope:weak align:4 +__ct__18J2DMaterialFactoryFRC16J2DMaterialBlock = .text:0x800532E8; // type:function size:0x1C4 scope:global align:4 +create__18J2DMaterialFactoryCFP11J2DMaterialiUlP15J2DResReferenceP15J2DResReferenceP10JKRArchive = .text:0x800534AC; // type:function size:0x9C8 scope:global align:4 +newMatColor__18J2DMaterialFactoryCFii = .text:0x80053E74; // type:function size:0x9C scope:global align:4 +newColorChanNum__18J2DMaterialFactoryCFi = .text:0x80053F10; // type:function size:0x38 scope:global align:4 +newColorChan__18J2DMaterialFactoryCFii = .text:0x80053F48; // type:function size:0x54 scope:global align:4 +newTexGenNum__18J2DMaterialFactoryCFi = .text:0x80053F9C; // type:function size:0x38 scope:global align:4 +newTexCoord__18J2DMaterialFactoryCFii = .text:0x80053FD4; // type:function size:0x74 scope:global align:4 +newTexMtx__18J2DMaterialFactoryCFii = .text:0x80054048; // type:function size:0xEC scope:global align:4 +newCullMode__18J2DMaterialFactoryCFi = .text:0x80054134; // type:function size:0x40 scope:global align:4 +newTexNo__18J2DMaterialFactoryCFii = .text:0x80054174; // type:function size:0x48 scope:global align:4 +newFontNo__18J2DMaterialFactoryCFi = .text:0x800541BC; // type:function size:0x40 scope:global align:4 +newTevOrder__18J2DMaterialFactoryCFii = .text:0x800541FC; // type:function size:0x74 scope:global align:4 +newTevColor__18J2DMaterialFactoryCFii = .text:0x80054270; // type:function size:0x98 scope:global align:4 +newTevKColor__18J2DMaterialFactoryCFii = .text:0x80054308; // type:function size:0x9C scope:global align:4 +newTevStageNum__18J2DMaterialFactoryCFi = .text:0x800543A4; // type:function size:0x38 scope:global align:4 +newTevStage__18J2DMaterialFactoryCFii = .text:0x800543DC; // type:function size:0x60 scope:global align:4 +__ct__11J2DTevStageFRC15J2DTevStageInfo = .text:0x8005443C; // type:function size:0x60 scope:weak align:4 +newTevSwapModeTable__18J2DMaterialFactoryCFii = .text:0x8005449C; // type:function size:0x9C scope:global align:4 +newIndTexStageNum__18J2DMaterialFactoryCFi = .text:0x80054538; // type:function size:0x30 scope:global align:4 +newIndTexOrder__18J2DMaterialFactoryCFii = .text:0x80054568; // type:function size:0x68 scope:global align:4 +newIndTexMtx__18J2DMaterialFactoryCFii = .text:0x800545D0; // type:function size:0xEC scope:global align:4 +newIndTevStage__18J2DMaterialFactoryCFii = .text:0x800546BC; // type:function size:0x14C scope:global align:4 +newIndTexCoordScale__18J2DMaterialFactoryCFii = .text:0x80054808; // type:function size:0x68 scope:global align:4 +newAlphaComp__18J2DMaterialFactoryCFi = .text:0x80054870; // type:function size:0x7C scope:global align:4 +newBlend__18J2DMaterialFactoryCFi = .text:0x800548EC; // type:function size:0x7C scope:global align:4 +newDither__18J2DMaterialFactoryCFi = .text:0x80054968; // type:function size:0x38 scope:global align:4 +JSUConvertOffsetToPtr<12J2DBlendInfo>__FPCvPCv = .text:0x800549A0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J2DAlphaCompInfo>__FPCvPCv = .text:0x800549B8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J2DTevSwapModeTableInfo>__FPCvPCv = .text:0x800549D0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J2DTevSwapModeInfo>__FPCvPCv = .text:0x800549E8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J2DTevStageInfo>__FPCvPCv = .text:0x80054A00; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<11_GXColorS10>__FPCvPCv = .text:0x80054A18; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J2DTevOrderInfo>__FPCvPCv = .text:0x80054A30; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<13J2DTexMtxInfo>__FPCvPCv = .text:0x80054A48; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J2DTexCoordInfo>__FPCvPCv = .text:0x80054A60; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J2DColorChanInfo>__FPCvPCv = .text:0x80054A78; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<8_GXColor>__FPCvPCv = .text:0x80054A90; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<11_GXCullMode>__FPCvPCv = .text:0x80054AA8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<14J2DIndInitData>__FPCvPCv = .text:0x80054AC0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J2DMaterialInitData>__FPCvPCv = .text:0x80054AD8; // type:function size:0x18 scope:weak align:4 +__ct__12J2DPictureExFv = .text:0x80054AF0; // type:function size:0x48 scope:global align:4 +__ct__12J2DPictureExFPC7ResTIMGUl = .text:0x80054B38; // type:function size:0x7C scope:global align:4 +append__12J2DPictureExFPC7ResTIMGf = .text:0x80054BB4; // type:function size:0x30 scope:weak align:4 +append__12J2DPictureExFPCcf = .text:0x80054BE4; // type:function size:0x30 scope:weak align:4 +initiate__12J2DPictureExFPC7ResTIMGPC7ResTLUT = .text:0x80054C14; // type:function size:0xAC scope:global align:4 +initialize__12J2DPictureExFUl = .text:0x80054CC0; // type:function size:0xD0 scope:global align:4 +__ct__12J2DPictureExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80054D90; // type:function size:0x29C scope:global align:4 +__ct__12J2DPictureExFUxRCQ29JGeometry8TBox2PC7ResTIMGUl = .text:0x8005502C; // type:function size:0x110 scope:global align:4 +__ct__12J2DPictureExFUxRCQ29JGeometry8TBox2PCcUl = .text:0x8005513C; // type:function size:0x110 scope:global align:4 +__dt__12J2DPictureExFv = .text:0x8005524C; // type:function size:0x90 scope:global align:4 +prepareTexture__12J2DPictureExFUc = .text:0x800552DC; // type:function size:0xF8 scope:global align:4 +drawSelf__12J2DPictureExFffPA3_A4_f = .text:0x800553D4; // type:function size:0xCC scope:global align:4 +drawFullSet__12J2DPictureExFffffPA3_A4_f = .text:0x800554A0; // type:function size:0x5C scope:global align:4 +drawTexCoord__12J2DPictureExFffffssssssssPA3_A4_f = .text:0x800554FC; // type:function size:0x2B4 scope:global align:4 +append__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x800557B0; // type:function size:0x48 scope:global align:4 +append__12J2DPictureExFPCcP10JUTPalettef = .text:0x800557F8; // type:function size:0x48 scope:global align:4 +append__12J2DPictureExFP10JUTTexturef = .text:0x80055840; // type:function size:0x48 scope:global align:4 +insert__12J2DPictureExFPC7ResTIMGP10JUTPaletteUcf = .text:0x80055888; // type:function size:0xB4 scope:global align:4 +insert__12J2DPictureExFPCcP10JUTPaletteUcf = .text:0x8005593C; // type:function size:0x78 scope:global align:4 +insert__12J2DPictureExFP10JUTTextureUcf = .text:0x800559B4; // type:function size:0xA4 scope:global align:4 +insertCommon__12J2DPictureExFUcf = .text:0x80055A58; // type:function size:0x334 scope:global align:4 +isInsert__12J2DPictureExCFUc = .text:0x80055D8C; // type:function size:0xF8 scope:global align:4 +remove__12J2DPictureExFUc = .text:0x80055E84; // type:function size:0x1AC scope:global align:4 +remove__12J2DPictureExFv = .text:0x80056030; // type:function size:0x64 scope:global align:4 +remove__12J2DPictureExFP10JUTTexture = .text:0x80056094; // type:function size:0xC8 scope:global align:4 +isRemove__12J2DPictureExCFUc = .text:0x8005615C; // type:function size:0x54 scope:global align:4 +draw__12J2DPictureExFffUcbbb = .text:0x800561B0; // type:function size:0x124 scope:global align:4 +draw__12J2DPictureExFffffbbb = .text:0x800562D4; // type:function size:0x5A8 scope:global align:4 +drawOut__12J2DPictureExFffffff = .text:0x8005687C; // type:function size:0x168 scope:global align:4 +drawOut__12J2DPictureExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x800569E4; // type:function size:0x3E8 scope:global align:4 +load__12J2DPictureExF11_GXTexMapIDUc = .text:0x80056DCC; // type:function size:0x48 scope:global align:4 +setTevOrder__12J2DPictureExFUcUcb = .text:0x80056E14; // type:function size:0x1FC scope:global align:4 +setTevStage__12J2DPictureExFUcUcb = .text:0x80057010; // type:function size:0x2BC scope:global align:4 +setStage__12J2DPictureExFP11J2DTevStageQ212J2DPictureEx10stage_enum = .text:0x800572CC; // type:function size:0x300 scope:global align:4 +setTevKColor__12J2DPictureExFUc = .text:0x800575CC; // type:function size:0x4A4 scope:global align:4 +setTevKColorSel__12J2DPictureExFUc = .text:0x80057A70; // type:function size:0xB0 scope:global align:4 +setTevKAlphaSel__12J2DPictureExFUc = .text:0x80057B20; // type:function size:0xB0 scope:global align:4 +shiftSetBlendRatio__12J2DPictureExFUcfbb = .text:0x80057BD0; // type:function size:0x118 scope:global align:4 +setBlendColorRatio__12J2DPictureExFffffffff = .text:0x80057CE8; // type:function size:0x58 scope:global align:4 +setBlendAlphaRatio__12J2DPictureExFffffffff = .text:0x80057D40; // type:function size:0x58 scope:global align:4 +changeTexture__12J2DPictureExFPC7ResTIMGUc = .text:0x80057D98; // type:function size:0x140 scope:global align:4 +changeTexture__12J2DPictureExFPCcUc = .text:0x80057ED8; // type:function size:0x58 scope:global align:4 +changeTexture__12J2DPictureExFPC7ResTIMGUcP10JUTPalette = .text:0x80057F30; // type:function size:0x160 scope:global align:4 +changeTexture__12J2DPictureExFPCcUcP10JUTPalette = .text:0x80058090; // type:function size:0x68 scope:global align:4 +getTexture__12J2DPictureExCFUc = .text:0x800580F8; // type:function size:0x58 scope:global align:4 +getTextureCount__12J2DPictureExCFv = .text:0x80058150; // type:function size:0x20 scope:global align:4 +setBlack__12J2DPictureExFQ28JUtility6TColor = .text:0x80058170; // type:function size:0x88 scope:global align:4 +setWhite__12J2DPictureExFQ28JUtility6TColor = .text:0x800581F8; // type:function size:0x88 scope:global align:4 +setBlackWhite__12J2DPictureExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80058280; // type:function size:0x454 scope:global align:4 +getBlackWhite__12J2DPictureExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x800586D4; // type:function size:0x1C4 scope:global align:4 +isSetBlackWhite__12J2DPictureExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80058898; // type:function size:0xDC scope:global align:4 +getBlack__12J2DPictureExCFv = .text:0x80058974; // type:function size:0x60 scope:global align:4 +getWhite__12J2DPictureExCFv = .text:0x800589D4; // type:function size:0x60 scope:global align:4 +setAlpha__12J2DPictureExFUc = .text:0x80058A34; // type:function size:0x20 scope:global align:4 +setCullBack__12J2DPictureExF11_GXCullMode = .text:0x80058A54; // type:function size:0x34 scope:global align:4 +rewriteAlpha__12J2DPictureExFv = .text:0x80058A88; // type:function size:0x18 scope:global align:4 +isUsed__12J2DPictureExFPC7ResTIMG = .text:0x80058AA0; // type:function size:0xA8 scope:global align:4 +setAnimation__12J2DPictureExFP11J2DAnmColor = .text:0x80058B48; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP19J2DAnmTextureSRTKey = .text:0x80058B74; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP16J2DAnmTexPattern = .text:0x80058BA0; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP15J2DAnmTevRegKey = .text:0x80058BCC; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP20J2DAnmVisibilityFull = .text:0x80058BF8; // type:function size:0x8 scope:global align:4 +setAnimation__12J2DPictureExFP14J2DAnmVtxColor = .text:0x80058C00; // type:function size:0xE0 scope:global align:4 +animationPane__12J2DPictureExFPC15J2DAnmTransform = .text:0x80058CE0; // type:function size:0x164 scope:global align:4 +getUsableTlut__12J2DPictureExFUc = .text:0x80058E44; // type:function size:0x104 scope:global align:4 +getMaterial__12J2DPictureExCFv = .text:0x80058F48; // type:function size:0x8 scope:weak align:4 +prepend__12J2DPictureExFP10JUTTexturef = .text:0x80058F50; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPCcP10JUTPalettef = .text:0x80058F80; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPCcf = .text:0x80058FB0; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x80058FE0; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPC7ResTIMGf = .text:0x80059010; // type:function size:0x30 scope:weak align:4 +insert__12J2DPictureExFPCcUcf = .text:0x80059040; // type:function size:0x34 scope:weak align:4 +insert__12J2DPictureExFPC7ResTIMGUcf = .text:0x80059074; // type:function size:0x34 scope:weak align:4 +draw__12J2DPictureExFffbbb = .text:0x800590A8; // type:function size:0x40 scope:weak align:4 +drawOut__12J2DPictureExFffffffff = .text:0x800590E8; // type:function size:0x64 scope:weak align:4 +load__12J2DPictureExFUc = .text:0x8005914C; // type:function size:0x34 scope:weak align:4 +setCullBack__12J2DPictureExFb = .text:0x80059180; // type:function size:0x3C scope:weak align:4 +isUsed__12J2DPictureExFPC7ResFONT = .text:0x800591BC; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DPictureExFP15J2DAnmTransform = .text:0x800591DC; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DPictureExFP10J2DAnmBase = .text:0x800591FC; // type:function size:0x20 scope:weak align:4 +load__9J2DTexMtxFUl = .text:0x8005921C; // type:function size:0x30 scope:global align:4 +calc__9J2DTexMtxFv = .text:0x8005924C; // type:function size:0x68 scope:global align:4 +getTextureMtx__9J2DTexMtxFRC17J2DTextureSRTInfo3VecPA4_f = .text:0x800592B4; // type:function size:0x190 scope:global align:4 +getTextureMtxMaya__9J2DTexMtxFRC17J2DTextureSRTInfoPA4_f = .text:0x80059444; // type:function size:0x180 scope:global align:4 +load__14J2DIndTevStageFUc = .text:0x800595C4; // type:function size:0x54 scope:global align:4 +load__12J2DIndTexMtxFUc = .text:0x80059618; // type:function size:0x30 scope:global align:4 +load__19J2DIndTexCoordScaleFUc = .text:0x80059648; // type:function size:0x30 scope:global align:4 +load__14J2DIndTexOrderFUc = .text:0x80059678; // type:function size:0x30 scope:global align:4 +__ct__12J2DTextBoxExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x800596A8; // type:function size:0x330 scope:global align:4 +__dt__12J2DTextBoxExFv = .text:0x800599D8; // type:function size:0x90 scope:global align:4 +drawSelf__12J2DTextBoxExFffPA3_A4_f = .text:0x80059A68; // type:function size:0x300 scope:global align:4 +draw__12J2DTextBoxExFff = .text:0x80059D68; // type:function size:0x240 scope:global align:4 +draw__12J2DTextBoxExFfff18J2DTextBoxHBinding = .text:0x80059FA8; // type:function size:0x26C scope:global align:4 +setFont__12J2DTextBoxExFP7JUTFont = .text:0x8005A214; // type:function size:0x64 scope:global align:4 +getFont__12J2DTextBoxExCFv = .text:0x8005A278; // type:function size:0x4C scope:global align:4 +setTevStage__12J2DTextBoxExFb = .text:0x8005A2C4; // type:function size:0xA4 scope:global align:4 +setStage__12J2DTextBoxExFP11J2DTevStageQ212J2DTextBoxEx10stage_enum = .text:0x8005A368; // type:function size:0x2B0 scope:global align:4 +setBlack__12J2DTextBoxExFQ28JUtility6TColor = .text:0x8005A618; // type:function size:0x88 scope:global align:4 +setWhite__12J2DTextBoxExFQ28JUtility6TColor = .text:0x8005A6A0; // type:function size:0x88 scope:global align:4 +setBlackWhite__12J2DTextBoxExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8005A728; // type:function size:0x224 scope:global align:4 +getBlackWhite__12J2DTextBoxExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x8005A94C; // type:function size:0x194 scope:global align:4 +isSetBlackWhite__12J2DTextBoxExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8005AAE0; // type:function size:0x94 scope:global align:4 +getBlack__12J2DTextBoxExCFv = .text:0x8005AB74; // type:function size:0x60 scope:global align:4 +getWhite__12J2DTextBoxExCFv = .text:0x8005ABD4; // type:function size:0x60 scope:global align:4 +setAlpha__12J2DTextBoxExFUc = .text:0x8005AC34; // type:function size:0x20 scope:global align:4 +setCullBack__12J2DTextBoxExF11_GXCullMode = .text:0x8005AC54; // type:function size:0x34 scope:global align:4 +rewriteAlpha__12J2DTextBoxExFv = .text:0x8005AC88; // type:function size:0x18 scope:global align:4 +isUsed__12J2DTextBoxExFPC7ResFONT = .text:0x8005ACA0; // type:function size:0x8C scope:global align:4 +setAnimation__12J2DTextBoxExFP11J2DAnmColor = .text:0x8005AD2C; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP19J2DAnmTextureSRTKey = .text:0x8005AD58; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP16J2DAnmTexPattern = .text:0x8005AD84; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP15J2DAnmTevRegKey = .text:0x8005ADB0; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP20J2DAnmVisibilityFull = .text:0x8005ADDC; // type:function size:0x8 scope:global align:4 +animationPane__12J2DTextBoxExFPC15J2DAnmTransform = .text:0x8005ADE4; // type:function size:0x80 scope:global align:4 +getMaterial__12J2DTextBoxExCFv = .text:0x8005AE64; // type:function size:0x8 scope:weak align:4 +setCullBack__12J2DTextBoxExFb = .text:0x8005AE6C; // type:function size:0x3C scope:weak align:4 +isUsed__12J2DTextBoxExFPC7ResTIMG = .text:0x8005AEA8; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DTextBoxExFP14J2DAnmVtxColor = .text:0x8005AEC8; // type:function size:0x4 scope:weak align:4 +setAnimation__12J2DTextBoxExFP15J2DAnmTransform = .text:0x8005AECC; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DTextBoxExFP10J2DAnmBase = .text:0x8005AEEC; // type:function size:0x20 scope:weak align:4 +getTransform__19J2DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x8005AF0C; // type:function size:0x56C scope:global align:4 +calcTransform__18J2DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x8005B478; // type:function size:0x420 scope:global align:4 +searchUpdateMaterialID__11J2DAnmColorFP9J2DScreen = .text:0x8005B898; // type:function size:0xAC scope:global align:4 +getColor__15J2DAnmColorFullCFUsP8_GXColor = .text:0x8005B944; // type:function size:0x238 scope:global align:4 +getColor__14J2DAnmColorKeyCFUsP8_GXColor = .text:0x8005BB7C; // type:function size:0x2CC scope:global align:4 +getColor__18J2DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x8005BE48; // type:function size:0x240 scope:global align:4 +getColor__17J2DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x8005C088; // type:function size:0x2F4 scope:global align:4 +calcTransform__19J2DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x8005C37C; // type:function size:0x268 scope:global align:4 +searchUpdateMaterialID__19J2DAnmTextureSRTKeyFP9J2DScreen = .text:0x8005C5E4; // type:function size:0xCC scope:global align:4 +searchUpdateMaterialID__16J2DAnmTexPatternFP9J2DScreen = .text:0x8005C6B0; // type:function size:0x1D4 scope:global align:4 +__ct__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8005C884; // type:function size:0x10 scope:weak align:4 +__dt__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8005C894; // type:function size:0x54 scope:weak align:4 +getTexNo__16J2DAnmTexPatternCFUsPUs = .text:0x8005C8E8; // type:function size:0xB4 scope:global align:4 +getResTIMG__16J2DAnmTexPatternCFUs = .text:0x8005C99C; // type:function size:0xC4 scope:global align:4 +getPalette__16J2DAnmTexPatternCFUs = .text:0x8005CA60; // type:function size:0xC8 scope:global align:4 +getVisibility__20J2DAnmVisibilityFullCFUsPUc = .text:0x8005CB28; // type:function size:0xA8 scope:global align:4 +getTevColorReg__15J2DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x8005CBD0; // type:function size:0x2CC scope:global align:4 +getTevKonstReg__15J2DAnmTevRegKeyCFUsP8_GXColor = .text:0x8005CE9C; // type:function size:0x2CC scope:global align:4 +searchUpdateMaterialID__15J2DAnmTevRegKeyFP9J2DScreen = .text:0x8005D168; // type:function size:0x10C scope:global align:4 +__dt__15J2DAnmTevRegKeyFv = .text:0x8005D274; // type:function size:0x88 scope:weak align:4 +__dt__16J2DAnmTexPatternFv = .text:0x8005D2FC; // type:function size:0x90 scope:weak align:4 +__dt__19J2DAnmTextureSRTKeyFv = .text:0x8005D38C; // type:function size:0x88 scope:weak align:4 +__dt__17J2DAnmVtxColorKeyFv = .text:0x8005D414; // type:function size:0x6C scope:weak align:4 +__dt__18J2DAnmVtxColorFullFv = .text:0x8005D480; // type:function size:0x6C scope:weak align:4 +__dt__14J2DAnmColorKeyFv = .text:0x8005D4EC; // type:function size:0x84 scope:weak align:4 +__dt__15J2DAnmColorFullFv = .text:0x8005D570; // type:function size:0x84 scope:weak align:4 +__dt__18J2DAnmTransformKeyFv = .text:0x8005D5F4; // type:function size:0x6C scope:weak align:4 +getTransform__18J2DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x8005D660; // type:function size:0x30 scope:weak align:4 +__dt__19J2DAnmTransformFullFv = .text:0x8005D690; // type:function size:0x6C scope:weak align:4 +J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs = .text:0x8005D6FC; // type:function size:0x234 scope:local align:4 +J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf = .text:0x8005D930; // type:function size:0x17C scope:local align:4 +__ct__6J3DSysFv = .text:0x8005DAAC; // type:function size:0x114 scope:global align:4 +loadPosMtxIndx__6J3DSysCFiUs = .text:0x8005DBC0; // type:function size:0x24 scope:global align:4 +loadNrmMtxIndx__6J3DSysCFiUs = .text:0x8005DBE4; // type:function size:0x28 scope:global align:4 +drawInit__6J3DSysFv = .text:0x8005DC0C; // type:function size:0x7B8 scope:global align:4 +reinitGX__6J3DSysFv = .text:0x8005E3C4; // type:function size:0x5C scope:global align:4 +reinitGenMode__6J3DSysFv = .text:0x8005E420; // type:function size:0x4C scope:global align:4 +reinitLighting__6J3DSysFv = .text:0x8005E46C; // type:function size:0xAC scope:global align:4 +reinitTransform__6J3DSysFv = .text:0x8005E518; // type:function size:0x104 scope:global align:4 +reinitTexture__6J3DSysFv = .text:0x8005E61C; // type:function size:0xA4 scope:global align:4 +reinitTevStages__6J3DSysFv = .text:0x8005E6C0; // type:function size:0x308 scope:global align:4 +reinitIndStages__6J3DSysFv = .text:0x8005E9C8; // type:function size:0xF8 scope:global align:4 +reinitPixelProc__6J3DSysFv = .text:0x8005EAC0; // type:function size:0x94 scope:global align:4 +ErrorReport__6J3DSysCF10J3DErrType = .text:0x8005EB54; // type:function size:0x4 scope:global align:4 +__sinit_J3DSys_cpp = .text:0x8005EB58; // type:function size:0x28 scope:local align:4 +__ct__13J3DVertexDataFv = .text:0x8005EB80; // type:function size:0x68 scope:global align:4 +setVertexData__15J3DVertexBufferFP13J3DVertexData = .text:0x8005EBE8; // type:function size:0x60 scope:global align:4 +init__15J3DVertexBufferFv = .text:0x8005EC48; // type:function size:0x58 scope:global align:4 +__dt__15J3DVertexBufferFv = .text:0x8005ECA0; // type:function size:0x3C scope:global align:4 +setArray__15J3DVertexBufferCFv = .text:0x8005ECDC; // type:function size:0x24 scope:global align:4 +copyVtxColorArray__15J3DVertexBufferF19J3DDeformAttachFlag = .text:0x8005ED00; // type:function size:0x128 scope:global align:4 +__ct__14J3DDrawMtxDataFv = .text:0x8005EE28; // type:function size:0x14 scope:global align:4 +__dt__14J3DDrawMtxDataFv = .text:0x8005EE3C; // type:function size:0x3C scope:global align:4 +J3DCalcBBoardMtx__FPA4_f = .text:0x8005EE78; // type:function size:0xF0 scope:global align:4 +J3DCalcYBBoardMtx__FPA4_f = .text:0x8005EF68; // type:function size:0x13C scope:global align:4 +J3DPSCalcInverseTranspose__FPA4_fPA3_f = .text:0x8005F0A4; // type:function size:0xC8 scope:global align:4 +J3DGetTranslateRotateMtx__FRC16J3DTransformInfoPA4_f = .text:0x8005F16C; // type:function size:0xB0 scope:global align:4 +J3DGetTranslateRotateMtx__FsssfffPA4_f = .text:0x8005F21C; // type:function size:0xB0 scope:global align:4 +J3DGetTextureMtx__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x8005F2CC; // type:function size:0xAC scope:global align:4 +J3DGetTextureMtxOld__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x8005F378; // type:function size:0xAC scope:global align:4 +J3DGetTextureMtxMaya__FRC17J3DTextureSRTInfoPA4_f = .text:0x8005F424; // type:function size:0xA8 scope:global align:4 +J3DGetTextureMtxMayaOld__FRC17J3DTextureSRTInfoPA4_f = .text:0x8005F4CC; // type:function size:0xA8 scope:global align:4 +J3DScaleNrmMtx__FPA4_fRC3Vec = .text:0x8005F574; // type:function size:0x64 scope:global align:4 +J3DScaleNrmMtx33__FPA3_fRC3Vec = .text:0x8005F5D8; // type:function size:0x54 scope:global align:4 +J3DMtxProjConcat__FPA4_fPA4_fPA4_f = .text:0x8005F62C; // type:function size:0x124 scope:global align:4 +J3DPSMtxArrayConcat__FPA4_fPA4_fPA4_fUl = .text:0x8005F750; // type:function size:0xDC scope:global align:4 +newDisplayList__17J3DDisplayListObjFUl = .text:0x8005F82C; // type:function size:0x60 scope:global align:4 +newSingleDisplayList__17J3DDisplayListObjFUl = .text:0x8005F88C; // type:function size:0x58 scope:global align:4 +single_To_Double__17J3DDisplayListObjFv = .text:0x8005F8E4; // type:function size:0x68 scope:global align:4 +setSingleDisplayList__17J3DDisplayListObjFPvUl = .text:0x8005F94C; // type:function size:0x20 scope:global align:4 +callDL__17J3DDisplayListObjCFv = .text:0x8005F96C; // type:function size:0x2C scope:global align:4 +beginDL__17J3DDisplayListObjFv = .text:0x8005F998; // type:function size:0x60 scope:global align:4 +endDL__17J3DDisplayListObjFv = .text:0x8005F9F8; // type:function size:0x5C scope:global align:4 +beginPatch__17J3DDisplayListObjFv = .text:0x8005FA54; // type:function size:0x60 scope:global align:4 +endPatch__17J3DDisplayListObjFv = .text:0x8005FAB4; // type:function size:0x3C scope:global align:4 +entry__9J3DPacketFP13J3DDrawBuffer = .text:0x8005FAF0; // type:function size:0x8 scope:global align:4 +addChildPacket__9J3DPacketFP9J3DPacket = .text:0x8005FAF8; // type:function size:0x20 scope:global align:4 +draw__9J3DPacketFv = .text:0x8005FB18; // type:function size:0x4 scope:weak align:4 +__dt__9J3DPacketFv = .text:0x8005FB1C; // type:function size:0x48 scope:weak align:4 +__dt__13J3DDrawPacketFv = .text:0x8005FB64; // type:function size:0x5C scope:global align:4 +newDisplayList__13J3DDrawPacketFUl = .text:0x8005FBC0; // type:function size:0xA4 scope:global align:4 +newSingleDisplayList__13J3DDrawPacketFUl = .text:0x8005FC64; // type:function size:0x9C scope:global align:4 +draw__13J3DDrawPacketFv = .text:0x8005FD00; // type:function size:0x2C scope:global align:4 +__ct__12J3DMatPacketFv = .text:0x8005FD2C; // type:function size:0x5C scope:global align:4 +__dt__12J3DMatPacketFv = .text:0x8005FD88; // type:function size:0x6C scope:global align:4 +addShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x8005FDF4; // type:function size:0x20 scope:global align:4 +beginDiff__12J3DMatPacketFv = .text:0x8005FE14; // type:function size:0x64 scope:global align:4 +endDiff__12J3DMatPacketFv = .text:0x8005FE78; // type:function size:0x60 scope:global align:4 +isSame__12J3DMatPacketCFP12J3DMatPacket = .text:0x8005FED8; // type:function size:0x24 scope:global align:4 +draw__12J3DMatPacketFv = .text:0x8005FEFC; // type:function size:0x94 scope:global align:4 +__ct__14J3DShapePacketFv = .text:0x8005FF90; // type:function size:0x58 scope:global align:4 +__dt__14J3DShapePacketFv = .text:0x8005FFE8; // type:function size:0x6C scope:global align:4 +calcDifferedBufferSize__14J3DShapePacketFUl = .text:0x80060054; // type:function size:0x274 scope:global align:4 +getTevStageNum__11J3DTevBlockCFv = .text:0x800602C8; // type:function size:0x8 scope:weak align:4 +getTexGenNum__14J3DTexGenBlockCFv = .text:0x800602D0; // type:function size:0x8 scope:weak align:4 +newDifferedDisplayList__14J3DShapePacketFUl = .text:0x800602D8; // type:function size:0xBC scope:global align:4 +newDifferedTexMtx__14J3DShapePacketF14J3DTexDiffFlag = .text:0x80060394; // type:function size:0x114 scope:global align:4 +draw__14J3DShapePacketFv = .text:0x800604A8; // type:function size:0x1B0 scope:global align:4 +drawFast__14J3DShapePacketFv = .text:0x80060658; // type:function size:0x198 scope:global align:4 +entry__12J3DMatPacketFP13J3DDrawBuffer = .text:0x800607F0; // type:function size:0x60 scope:weak align:4 +initialize__8J3DShapeFv = .text:0x80060850; // type:function size:0x70 scope:global align:4 +calcNBTScale__8J3DShapeFRC3VecPA3_A3_fPA3_A3_f = .text:0x800608C0; // type:function size:0x78 scope:global align:4 +countBumpMtxNum__8J3DShapeCFv = .text:0x80060938; // type:function size:0x80 scope:global align:4 +isSameVcdVatCmd__8J3DShapeFP8J3DShape = .text:0x800609B8; // type:function size:0xEC scope:global align:4 +makeVtxArrayCmd__8J3DShapeFv = .text:0x80060AA4; // type:function size:0x2FC scope:global align:4 +makeVcdVatCmd__8J3DShapeFv = .text:0x80060DA0; // type:function size:0xA0 scope:global align:4 +loadPreDrawSetting__8J3DShapeCFv = .text:0x80060E40; // type:function size:0xA0 scope:global align:4 +drawFast__8J3DShapeCFv = .text:0x80060EE0; // type:function size:0x278 scope:global align:4 +draw__8J3DShapeCFv = .text:0x80061158; // type:function size:0xB8 scope:global align:4 +simpleDraw__8J3DShapeCFv = .text:0x80061210; // type:function size:0x160 scope:global align:4 +simpleDrawCache__8J3DShapeCFv = .text:0x80061370; // type:function size:0x170 scope:global align:4 +createColorBlock__11J3DMaterialFUl = .text:0x800614E0; // type:function size:0x200 scope:global align:4 +__dt__21J3DColorBlockLightOffFv = .text:0x800616E0; // type:function size:0x5C scope:weak align:4 +__ct__12J3DColorChanFv = .text:0x8006173C; // type:function size:0xB4 scope:weak align:4 +__ct__10J3DGXColorFv = .text:0x800617F0; // type:function size:0x4 scope:weak align:4 +__dt__13J3DColorBlockFv = .text:0x800617F4; // type:function size:0x48 scope:weak align:4 +createTexGenBlock__11J3DMaterialFUl = .text:0x8006183C; // type:function size:0x164 scope:global align:4 +__dt__21J3DTexGenBlockPatchedFv = .text:0x800619A0; // type:function size:0x5C scope:weak align:4 +__ct__11J3DTexCoordFv = .text:0x800619FC; // type:function size:0x28 scope:weak align:4 +__dt__14J3DTexGenBlockFv = .text:0x80061A24; // type:function size:0x48 scope:weak align:4 +createTevBlock__11J3DMaterialFi = .text:0x80061A6C; // type:function size:0x374 scope:global align:4 +__ct__19J3DTevSwapModeTableFv = .text:0x80061DE0; // type:function size:0xC scope:weak align:4 +__ct__13J3DGXColorS10Fv = .text:0x80061DEC; // type:function size:0x4 scope:weak align:4 +__ct__14J3DIndTevStageFv = .text:0x80061DF0; // type:function size:0xE4 scope:weak align:4 +__ct__11J3DTevStageFv = .text:0x80061ED4; // type:function size:0x68 scope:weak align:4 +setTevStageInfo__11J3DTevStageFRC15J3DTevStageInfo = .text:0x80061F3C; // type:function size:0x1D8 scope:weak align:4 +__ct__11J3DTevOrderFv = .text:0x80062114; // type:function size:0x20 scope:weak align:4 +__dt__11J3DTevBlockFv = .text:0x80062134; // type:function size:0x48 scope:weak align:4 +createIndBlock__11J3DMaterialFi = .text:0x8006217C; // type:function size:0xE8 scope:global align:4 +__dt__19J3DIndTexCoordScaleFv = .text:0x80062264; // type:function size:0x3C scope:weak align:4 +__ct__19J3DIndTexCoordScaleFv = .text:0x800622A0; // type:function size:0x18 scope:weak align:4 +__dt__12J3DIndTexMtxFv = .text:0x800622B8; // type:function size:0x3C scope:weak align:4 +__ct__12J3DIndTexMtxFv = .text:0x800622F4; // type:function size:0x40 scope:weak align:4 +__ct__14J3DIndTexOrderFv = .text:0x80062334; // type:function size:0x18 scope:weak align:4 +__dt__11J3DIndBlockFv = .text:0x8006234C; // type:function size:0x48 scope:weak align:4 +createPEBlock__11J3DMaterialFUlUl = .text:0x80062394; // type:function size:0x27C scope:global align:4 +__dt__10J3DPEBlockFv = .text:0x80062610; // type:function size:0x48 scope:weak align:4 +calcSizeColorBlock__11J3DMaterialFUl = .text:0x80062658; // type:function size:0x50 scope:global align:4 +calcSizeTexGenBlock__11J3DMaterialFUl = .text:0x800626A8; // type:function size:0x2C scope:global align:4 +calcSizeTevBlock__11J3DMaterialFi = .text:0x800626D4; // type:function size:0x48 scope:global align:4 +calcSizeIndBlock__11J3DMaterialFi = .text:0x8006271C; // type:function size:0x14 scope:global align:4 +calcSizePEBlock__11J3DMaterialFUlUl = .text:0x80062730; // type:function size:0x68 scope:global align:4 +initialize__11J3DMaterialFv = .text:0x80062798; // type:function size:0x50 scope:global align:4 +countDLSize__11J3DMaterialFv = .text:0x800627E8; // type:function size:0xBC scope:global align:4 +countDLSize__14J3DTexGenBlockFv = .text:0x800628A4; // type:function size:0x8 scope:weak align:4 +countDLSize__13J3DColorBlockFv = .text:0x800628AC; // type:function size:0x8 scope:weak align:4 +countDLSize__11J3DTevBlockFv = .text:0x800628B4; // type:function size:0x8 scope:weak align:4 +countDLSize__11J3DIndBlockFv = .text:0x800628BC; // type:function size:0x8 scope:weak align:4 +countDLSize__10J3DPEBlockFv = .text:0x800628C4; // type:function size:0x8 scope:weak align:4 +load__13J3DColorBlockFv = .text:0x800628CC; // type:function size:0x4 scope:weak align:4 +getCullMode__13J3DColorBlockCFv = .text:0x800628D0; // type:function size:0x8 scope:weak align:4 +getIndTexStageNum__11J3DIndBlockCFv = .text:0x800628D8; // type:function size:0x8 scope:weak align:4 +getColorChanNum__13J3DColorBlockCFv = .text:0x800628E0; // type:function size:0x8 scope:weak align:4 +load__11J3DTevBlockFv = .text:0x800628E8; // type:function size:0x4 scope:weak align:4 +makeDisplayList__11J3DMaterialFv = .text:0x800628EC; // type:function size:0x2F8 scope:global align:4 +makeSharedDisplayList__11J3DMaterialFv = .text:0x80062BE4; // type:function size:0x2D4 scope:global align:4 +load__11J3DMaterialFv = .text:0x80062EB8; // type:function size:0x50 scope:global align:4 +getNBTScale__14J3DTexGenBlockFv = .text:0x80062F08; // type:function size:0x8 scope:weak align:4 +loadSharedDL__11J3DMaterialFv = .text:0x80062F10; // type:function size:0x64 scope:global align:4 +patch__11J3DMaterialFv = .text:0x80062F74; // type:function size:0x98 scope:global align:4 +patch__13J3DColorBlockFv = .text:0x8006300C; // type:function size:0x4 scope:weak align:4 +patch__11J3DTevBlockFv = .text:0x80063010; // type:function size:0x4 scope:weak align:4 +diff__11J3DMaterialFUl = .text:0x80063014; // type:function size:0x1FC scope:global align:4 +diff__13J3DColorBlockFUl = .text:0x80063210; // type:function size:0x4 scope:weak align:4 +diff__10J3DPEBlockFUl = .text:0x80063214; // type:function size:0x4 scope:weak align:4 +calc__11J3DMaterialFPA4_Cf = .text:0x80063218; // type:function size:0x78 scope:global align:4 +calcDiffTexMtx__11J3DMaterialFPA4_Cf = .text:0x80063290; // type:function size:0x5C scope:global align:4 +setCurrentMtx__11J3DMaterialFv = .text:0x800632EC; // type:function size:0x18 scope:global align:4 +calcCurrentMtx__11J3DMaterialFv = .text:0x80063304; // type:function size:0x294 scope:global align:4 +getTexCoord__14J3DTexGenBlockFUl = .text:0x80063598; // type:function size:0x8 scope:weak align:4 +reset__10J3DPEBlockFP10J3DPEBlock = .text:0x800635A0; // type:function size:0x4 scope:weak align:4 +reset__11J3DIndBlockFP11J3DIndBlock = .text:0x800635A4; // type:function size:0x4 scope:weak align:4 +reset__11J3DTevBlockFP11J3DTevBlock = .text:0x800635A8; // type:function size:0x4 scope:weak align:4 +reset__14J3DTexGenBlockFP14J3DTexGenBlock = .text:0x800635AC; // type:function size:0x4 scope:weak align:4 +reset__13J3DColorBlockFP13J3DColorBlock = .text:0x800635B0; // type:function size:0x4 scope:weak align:4 +reset__11J3DMaterialFv = .text:0x800635B4; // type:function size:0xE4 scope:global align:4 +change__11J3DMaterialFv = .text:0x80063698; // type:function size:0x20 scope:global align:4 +newSharedDisplayList__11J3DMaterialFUl = .text:0x800636B8; // type:function size:0x94 scope:global align:4 +newSingleSharedDisplayList__11J3DMaterialFUl = .text:0x8006374C; // type:function size:0x94 scope:global align:4 +initialize__18J3DPatchedMaterialFv = .text:0x800637E0; // type:function size:0x50 scope:global align:4 +makeDisplayList__18J3DPatchedMaterialFv = .text:0x80063830; // type:function size:0x4 scope:global align:4 +makeSharedDisplayList__18J3DPatchedMaterialFv = .text:0x80063834; // type:function size:0x4 scope:global align:4 +load__18J3DPatchedMaterialFv = .text:0x80063838; // type:function size:0x1C scope:global align:4 +loadSharedDL__18J3DPatchedMaterialFv = .text:0x80063854; // type:function size:0x40 scope:global align:4 +reset__18J3DPatchedMaterialFv = .text:0x80063894; // type:function size:0x4 scope:global align:4 +change__18J3DPatchedMaterialFv = .text:0x80063898; // type:function size:0x4 scope:global align:4 +initialize__17J3DLockedMaterialFv = .text:0x8006389C; // type:function size:0x50 scope:global align:4 +makeDisplayList__17J3DLockedMaterialFv = .text:0x800638EC; // type:function size:0x4 scope:global align:4 +makeSharedDisplayList__17J3DLockedMaterialFv = .text:0x800638F0; // type:function size:0x4 scope:global align:4 +load__17J3DLockedMaterialFv = .text:0x800638F4; // type:function size:0x1C scope:global align:4 +loadSharedDL__17J3DLockedMaterialFv = .text:0x80063910; // type:function size:0x40 scope:global align:4 +patch__17J3DLockedMaterialFv = .text:0x80063950; // type:function size:0x4 scope:global align:4 +diff__17J3DLockedMaterialFUl = .text:0x80063954; // type:function size:0x4 scope:global align:4 +calc__17J3DLockedMaterialFPA4_Cf = .text:0x80063958; // type:function size:0x4 scope:global align:4 +reset__17J3DLockedMaterialFv = .text:0x8006395C; // type:function size:0x4 scope:global align:4 +change__17J3DLockedMaterialFv = .text:0x80063960; // type:function size:0x4 scope:global align:4 +patch__10J3DPEBlockFv = .text:0x80063964; // type:function size:0x4 scope:weak align:4 +diffFog__10J3DPEBlockFv = .text:0x80063968; // type:function size:0x4 scope:weak align:4 +diffBlend__10J3DPEBlockFv = .text:0x8006396C; // type:function size:0x4 scope:weak align:4 +setFog__10J3DPEBlockFP6J3DFog = .text:0x80063970; // type:function size:0x4 scope:weak align:4 +setFog__10J3DPEBlockF6J3DFog = .text:0x80063974; // type:function size:0x4 scope:weak align:4 +getFog__10J3DPEBlockFv = .text:0x80063978; // type:function size:0x8 scope:weak align:4 +setAlphaComp__10J3DPEBlockFRC12J3DAlphaComp = .text:0x80063980; // type:function size:0x4 scope:weak align:4 +setAlphaComp__10J3DPEBlockFPC12J3DAlphaComp = .text:0x80063984; // type:function size:0x4 scope:weak align:4 +getAlphaComp__10J3DPEBlockFv = .text:0x80063988; // type:function size:0x8 scope:weak align:4 +setBlend__10J3DPEBlockFRC8J3DBlend = .text:0x80063990; // type:function size:0x4 scope:weak align:4 +setBlend__10J3DPEBlockFPC8J3DBlend = .text:0x80063994; // type:function size:0x4 scope:weak align:4 +getBlend__10J3DPEBlockFv = .text:0x80063998; // type:function size:0x8 scope:weak align:4 +setZMode__10J3DPEBlockF8J3DZMode = .text:0x800639A0; // type:function size:0x4 scope:weak align:4 +setZMode__10J3DPEBlockFPC8J3DZMode = .text:0x800639A4; // type:function size:0x4 scope:weak align:4 +getZMode__10J3DPEBlockFv = .text:0x800639A8; // type:function size:0x8 scope:weak align:4 +setZCompLoc__10J3DPEBlockFUc = .text:0x800639B0; // type:function size:0x4 scope:weak align:4 +setZCompLoc__10J3DPEBlockFPCUc = .text:0x800639B4; // type:function size:0x4 scope:weak align:4 +getZCompLoc__10J3DPEBlockCFv = .text:0x800639B8; // type:function size:0x8 scope:weak align:4 +setDither__10J3DPEBlockFUc = .text:0x800639C0; // type:function size:0x4 scope:weak align:4 +setDither__10J3DPEBlockFPCUc = .text:0x800639C4; // type:function size:0x4 scope:weak align:4 +getDither__10J3DPEBlockCFv = .text:0x800639C8; // type:function size:0x8 scope:weak align:4 +getFogOffset__10J3DPEBlockCFv = .text:0x800639D0; // type:function size:0x8 scope:weak align:4 +setFogOffset__10J3DPEBlockFUl = .text:0x800639D8; // type:function size:0x4 scope:weak align:4 +diff__15J3DIndBlockNullFUl = .text:0x800639DC; // type:function size:0x4 scope:weak align:4 +load__15J3DIndBlockNullFv = .text:0x800639E0; // type:function size:0x4 scope:weak align:4 +reset__15J3DIndBlockNullFP11J3DIndBlock = .text:0x800639E4; // type:function size:0x4 scope:weak align:4 +getType__15J3DIndBlockNullFv = .text:0x800639E8; // type:function size:0xC scope:weak align:4 +__dt__15J3DIndBlockNullFv = .text:0x800639F4; // type:function size:0x5C scope:weak align:4 +setIndTexStageNum__11J3DIndBlockFUc = .text:0x80063A50; // type:function size:0x4 scope:weak align:4 +setIndTexOrder__11J3DIndBlockFUlPC14J3DIndTexOrder = .text:0x80063A54; // type:function size:0x4 scope:weak align:4 +setIndTexOrder__11J3DIndBlockFUl14J3DIndTexOrder = .text:0x80063A58; // type:function size:0x4 scope:weak align:4 +getIndTexOrder__11J3DIndBlockFUl = .text:0x80063A5C; // type:function size:0x8 scope:weak align:4 +setIndTexMtx__11J3DIndBlockFUl12J3DIndTexMtx = .text:0x80063A64; // type:function size:0x4 scope:weak align:4 +setIndTexMtx__11J3DIndBlockFUlPC12J3DIndTexMtx = .text:0x80063A68; // type:function size:0x4 scope:weak align:4 +getIndTexMtx__11J3DIndBlockFUl = .text:0x80063A6C; // type:function size:0x8 scope:weak align:4 +setIndTexCoordScale__11J3DIndBlockFUl19J3DIndTexCoordScale = .text:0x80063A74; // type:function size:0x4 scope:weak align:4 +setIndTexCoordScale__11J3DIndBlockFUlPC19J3DIndTexCoordScale = .text:0x80063A78; // type:function size:0x4 scope:weak align:4 +getIndTexCoordScale__11J3DIndBlockFUl = .text:0x80063A7C; // type:function size:0x8 scope:weak align:4 +setTexGenNum__14J3DTexGenBlockFUl = .text:0x80063A84; // type:function size:0x4 scope:weak align:4 +setTexGenNum__14J3DTexGenBlockFPCUl = .text:0x80063A88; // type:function size:0x4 scope:weak align:4 +setTexCoord__14J3DTexGenBlockFUlPC11J3DTexCoord = .text:0x80063A8C; // type:function size:0x4 scope:weak align:4 +setTexMtx__14J3DTexGenBlockFUlP9J3DTexMtx = .text:0x80063A90; // type:function size:0x4 scope:weak align:4 +getTexMtx__14J3DTexGenBlockFUl = .text:0x80063A94; // type:function size:0x8 scope:weak align:4 +setNBTScale__14J3DTexGenBlockF11J3DNBTScale = .text:0x80063A9C; // type:function size:0x4 scope:weak align:4 +setNBTScale__14J3DTexGenBlockFPC11J3DNBTScale = .text:0x80063AA0; // type:function size:0x4 scope:weak align:4 +getTexMtxOffset__14J3DTexGenBlockCFv = .text:0x80063AA4; // type:function size:0x8 scope:weak align:4 +setTexMtxOffset__14J3DTexGenBlockFUl = .text:0x80063AAC; // type:function size:0x4 scope:weak align:4 +patchMatColor__13J3DColorBlockFv = .text:0x80063AB0; // type:function size:0x4 scope:weak align:4 +patchLight__13J3DColorBlockFv = .text:0x80063AB4; // type:function size:0x4 scope:weak align:4 +diffMatColor__13J3DColorBlockFv = .text:0x80063AB8; // type:function size:0x4 scope:weak align:4 +diffLight__13J3DColorBlockFv = .text:0x80063ABC; // type:function size:0x4 scope:weak align:4 +setMatColor__13J3DColorBlockFUl10J3DGXColor = .text:0x80063AC0; // type:function size:0x4 scope:weak align:4 +setMatColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x80063AC4; // type:function size:0x4 scope:weak align:4 +getMatColor__13J3DColorBlockFUl = .text:0x80063AC8; // type:function size:0x8 scope:weak align:4 +setAmbColor__13J3DColorBlockFUl10J3DGXColor = .text:0x80063AD0; // type:function size:0x4 scope:weak align:4 +setAmbColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x80063AD4; // type:function size:0x4 scope:weak align:4 +getAmbColor__13J3DColorBlockFUl = .text:0x80063AD8; // type:function size:0x8 scope:weak align:4 +setColorChanNum__13J3DColorBlockFPCUc = .text:0x80063AE0; // type:function size:0x4 scope:weak align:4 +setColorChanNum__13J3DColorBlockFUc = .text:0x80063AE4; // type:function size:0x4 scope:weak align:4 +setColorChan__13J3DColorBlockFUlPC12J3DColorChan = .text:0x80063AE8; // type:function size:0x4 scope:weak align:4 +setColorChan__13J3DColorBlockFUlRC12J3DColorChan = .text:0x80063AEC; // type:function size:0x4 scope:weak align:4 +getColorChan__13J3DColorBlockFUl = .text:0x80063AF0; // type:function size:0x8 scope:weak align:4 +setLight__13J3DColorBlockFUlP11J3DLightObj = .text:0x80063AF8; // type:function size:0x4 scope:weak align:4 +getLight__13J3DColorBlockFUl = .text:0x80063AFC; // type:function size:0x8 scope:weak align:4 +setCullMode__13J3DColorBlockFUc = .text:0x80063B04; // type:function size:0x4 scope:weak align:4 +setCullMode__13J3DColorBlockFPCUc = .text:0x80063B08; // type:function size:0x4 scope:weak align:4 +getMatColorOffset__13J3DColorBlockCFv = .text:0x80063B0C; // type:function size:0x8 scope:weak align:4 +getColorChanOffset__13J3DColorBlockCFv = .text:0x80063B14; // type:function size:0x8 scope:weak align:4 +setMatColorOffset__13J3DColorBlockFUl = .text:0x80063B1C; // type:function size:0x4 scope:weak align:4 +setColorChanOffset__13J3DColorBlockFUl = .text:0x80063B20; // type:function size:0x4 scope:weak align:4 +load__11J3DLightObjCFUl = .text:0x80063B24; // type:function size:0xB4 scope:global align:4 +loadTexCoordGens__FUlP11J3DTexCoord = .text:0x80063BD8; // type:function size:0x530 scope:global align:4 +load__9J3DTexMtxCFUl = .text:0x80064108; // type:function size:0x3C scope:global align:4 +loadTexMtx__9J3DTexMtxCFUl = .text:0x80064144; // type:function size:0x64 scope:weak align:4 +J3DGDLoadTexMtxImm__FPA4_fUl13_GXTexMtxType = .text:0x800641A8; // type:function size:0x580 scope:weak align:4 +loadPostTexMtx__9J3DTexMtxCFUl = .text:0x80064728; // type:function size:0x60 scope:weak align:4 +J3DGDLoadPostTexMtxImm__FPA4_fUl = .text:0x80064788; // type:function size:0x56C scope:weak align:4 +calc__9J3DTexMtxFPA4_Cf = .text:0x80064CF4; // type:function size:0x20 scope:global align:4 +calcTexMtx__9J3DTexMtxFPA4_Cf = .text:0x80064D14; // type:function size:0x2EC scope:global align:4 +calcPostTexMtx__9J3DTexMtxFPA4_Cf = .text:0x80065000; // type:function size:0x358 scope:global align:4 +isTexNoReg__FPv = .text:0x80065358; // type:function size:0x24 scope:global align:4 +getTexNoReg__FPv = .text:0x8006537C; // type:function size:0xC scope:global align:4 +loadTexNo__FUlRCUs = .text:0x80065388; // type:function size:0x1B8 scope:global align:4 +patchTexNo_PtrToIdx__FUlRCUs = .text:0x80065540; // type:function size:0x24 scope:global align:4 +loadNBTScale__FR11J3DNBTScale = .text:0x80065564; // type:function size:0x34 scope:global align:4 +makeTexCoordTable__Fv = .text:0x80065598; // type:function size:0x160 scope:global align:4 +makeAlphaCmpTable__Fv = .text:0x800656F8; // type:function size:0x130 scope:global align:4 +makeZModeTable__Fv = .text:0x80065828; // type:function size:0x138 scope:global align:4 +makeTevSwapTable__Fv = .text:0x80065960; // type:function size:0x44 scope:global align:4 +initialize__13J3DDrawBufferFv = .text:0x800659A4; // type:function size:0x68 scope:global align:4 +allocBuffer__13J3DDrawBufferFUl = .text:0x80065A0C; // type:function size:0x84 scope:global align:4 +frameInit__13J3DDrawBufferFv = .text:0x80065A90; // type:function size:0xEC scope:global align:4 +entryMatSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065B7C; // type:function size:0x158 scope:global align:4 +getTexNo__11J3DTevBlockCFUl = .text:0x80065CD4; // type:function size:0xC scope:weak align:4 +entryMatAnmSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065CE0; // type:function size:0x1E8 scope:global align:4 +entryZSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065EC8; // type:function size:0x11C scope:global align:4 +entryModelSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065FE4; // type:function size:0x50 scope:global align:4 +entryInvalidSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80066034; // type:function size:0x54 scope:global align:4 +entryNonSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80066088; // type:function size:0x34 scope:global align:4 +draw__13J3DDrawBufferCFv = .text:0x800660BC; // type:function size:0x54 scope:global align:4 +drawHead__13J3DDrawBufferCFv = .text:0x80066110; // type:function size:0x84 scope:global align:4 +drawTail__13J3DDrawBufferCFv = .text:0x80066194; // type:function size:0x84 scope:global align:4 +__sinit_J3DDrawBuffer_cpp = .text:0x80066218; // type:function size:0xE4 scope:local align:4 +initialize__8J3DModelFv = .text:0x800662FC; // type:function size:0x84 scope:global align:4 +entryModelData__8J3DModelFP12J3DModelDataUlUl = .text:0x80066380; // type:function size:0xC4 scope:global align:4 +createShapePacket__8J3DModelFP12J3DModelData = .text:0x80066444; // type:function size:0xBC scope:global align:4 +createMatPacket__8J3DModelFP12J3DModelDataUl = .text:0x80066500; // type:function size:0x1D8 scope:global align:4 +newDifferedDisplayList__8J3DModelFUl = .text:0x800666D8; // type:function size:0x90 scope:global align:4 +newDifferedTexMtx__8J3DModelF14J3DTexDiffFlag = .text:0x80066768; // type:function size:0x8C scope:global align:4 +lock__8J3DModelFv = .text:0x800667F4; // type:function size:0x130 scope:global align:4 +makeDL__8J3DModelFv = .text:0x80066924; // type:function size:0xA4 scope:global align:4 +calcMaterial__8J3DModelFv = .text:0x800669C8; // type:function size:0x164 scope:global align:4 +calcDiffTexMtx__8J3DModelFv = .text:0x80066B2C; // type:function size:0x140 scope:global align:4 +diff__8J3DModelFv = .text:0x80066C6C; // type:function size:0x9C scope:global align:4 +setVtxColorCalc__8J3DModelFP15J3DVtxColorCalc19J3DDeformAttachFlag = .text:0x80066D08; // type:function size:0x34 scope:global align:4 +calcWeightEnvelopeMtx__8J3DModelFv = .text:0x80066D3C; // type:function size:0x4C scope:global align:4 +update__8J3DModelFv = .text:0x80066D88; // type:function size:0x4C scope:global align:4 +calc__8J3DModelFv = .text:0x80066DD4; // type:function size:0x1E0 scope:global align:4 +entry__8J3DModelFv = .text:0x80066FB4; // type:function size:0xF4 scope:global align:4 +viewCalc__8J3DModelFv = .text:0x800670A8; // type:function size:0x368 scope:global align:4 +calcNrmMtx__8J3DModelFv = .text:0x80067410; // type:function size:0x24 scope:global align:4 +calcBumpMtx__8J3DModelFv = .text:0x80067434; // type:function size:0x100 scope:global align:4 +calcBBoardMtx__8J3DModelFv = .text:0x80067534; // type:function size:0x34 scope:global align:4 +prepareShapePackets__8J3DModelFv = .text:0x80067568; // type:function size:0x64 scope:global align:4 +__dt__8J3DModelFv = .text:0x800675CC; // type:function size:0x64 scope:weak align:4 +__dt__12J3DMtxBufferFv = .text:0x80067630; // type:function size:0x48 scope:weak align:4 +init__12J3DFrameCtrlFs = .text:0x80067678; // type:function size:0x30 scope:global align:4 +update__12J3DFrameCtrlFv = .text:0x800676A8; // type:function size:0x474 scope:global align:4 +getTransform__19J3DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x80067B1C; // type:function size:0x360 scope:global align:4 +calcTransform__18J3DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x80067E7C; // type:function size:0x420 scope:global align:4 +calcTransform__19J3DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x8006829C; // type:function size:0x268 scope:global align:4 +getWeight__17J3DAnmClusterFullCFUs = .text:0x80068504; // type:function size:0x94 scope:global align:4 +getWeight__16J3DAnmClusterKeyCFUs = .text:0x80068598; // type:function size:0x84 scope:global align:4 +getColor__18J3DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x8006861C; // type:function size:0x178 scope:global align:4 +getColor__17J3DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x80068794; // type:function size:0x2F4 scope:global align:4 +searchUpdateMaterialID__11J3DAnmColorFP12J3DModelData = .text:0x80068A88; // type:function size:0xA8 scope:global align:4 +getColor__15J3DAnmColorFullCFUsP8_GXColor = .text:0x80068B30; // type:function size:0x170 scope:global align:4 +getColor__14J3DAnmColorKeyCFUsP8_GXColor = .text:0x80068CA0; // type:function size:0x2CC scope:global align:4 +getTexNo__16J3DAnmTexPatternCFUsPUs = .text:0x80068F6C; // type:function size:0xB4 scope:global align:4 +searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP12J3DModelData = .text:0x80069020; // type:function size:0x124 scope:global align:4 +getTevColorReg__15J3DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x80069144; // type:function size:0x2CC scope:global align:4 +getTevKonstReg__15J3DAnmTevRegKeyCFUsP8_GXColor = .text:0x80069410; // type:function size:0x2CC scope:global align:4 +searchUpdateMaterialID__15J3DAnmTevRegKeyFP12J3DModelData = .text:0x800696DC; // type:function size:0x10C scope:global align:4 +__dt__14J3DAnmColorKeyFv = .text:0x800697E8; // type:function size:0x84 scope:weak align:4 +getKind__14J3DAnmColorKeyCFv = .text:0x8006986C; // type:function size:0x8 scope:weak align:4 +__dt__10J3DAnmBaseFv = .text:0x80069874; // type:function size:0x48 scope:weak align:4 +__dt__11J3DAnmColorFv = .text:0x800698BC; // type:function size:0x74 scope:weak align:4 +getKind__11J3DAnmColorCFv = .text:0x80069930; // type:function size:0x8 scope:weak align:4 +getColor__11J3DAnmColorCFUsP8_GXColor = .text:0x80069938; // type:function size:0x4 scope:weak align:4 +__dt__15J3DAnmColorFullFv = .text:0x8006993C; // type:function size:0x84 scope:weak align:4 +getKind__15J3DAnmColorFullCFv = .text:0x800699C0; // type:function size:0x8 scope:weak align:4 +__dt__17J3DAnmVtxColorKeyFv = .text:0x800699C8; // type:function size:0x6C scope:weak align:4 +getKind__17J3DAnmVtxColorKeyCFv = .text:0x80069A34; // type:function size:0x8 scope:weak align:4 +__dt__14J3DAnmVtxColorFv = .text:0x80069A3C; // type:function size:0x5C scope:weak align:4 +getKind__14J3DAnmVtxColorCFv = .text:0x80069A98; // type:function size:0x8 scope:weak align:4 +getColor__14J3DAnmVtxColorCFUcUsP8_GXColor = .text:0x80069AA0; // type:function size:0x4 scope:weak align:4 +__dt__18J3DAnmVtxColorFullFv = .text:0x80069AA4; // type:function size:0x6C scope:weak align:4 +getKind__18J3DAnmVtxColorFullCFv = .text:0x80069B10; // type:function size:0x8 scope:weak align:4 +__dt__16J3DAnmClusterKeyFv = .text:0x80069B18; // type:function size:0x6C scope:weak align:4 +getKind__16J3DAnmClusterKeyCFv = .text:0x80069B84; // type:function size:0x8 scope:weak align:4 +__dt__13J3DAnmClusterFv = .text:0x80069B8C; // type:function size:0x5C scope:weak align:4 +getKind__13J3DAnmClusterCFv = .text:0x80069BE8; // type:function size:0x8 scope:weak align:4 +getWeight__13J3DAnmClusterCFUs = .text:0x80069BF0; // type:function size:0x8 scope:weak align:4 +__dt__17J3DAnmClusterFullFv = .text:0x80069BF8; // type:function size:0x6C scope:weak align:4 +getKind__17J3DAnmClusterFullCFv = .text:0x80069C64; // type:function size:0x8 scope:weak align:4 +__dt__19J3DAnmTransformFullFv = .text:0x80069C6C; // type:function size:0x6C scope:weak align:4 +getKind__19J3DAnmTransformFullCFv = .text:0x80069CD8; // type:function size:0x8 scope:weak align:4 +__dt__15J3DAnmTransformFv = .text:0x80069CE0; // type:function size:0x5C scope:weak align:4 +getKind__15J3DAnmTransformCFv = .text:0x80069D3C; // type:function size:0x8 scope:weak align:4 +J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs = .text:0x80069D44; // type:function size:0x234 scope:local align:4 +J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf = .text:0x80069F78; // type:function size:0x17C scope:local align:4 +initialize__14J3DMaterialAnmFv = .text:0x8006A0F4; // type:function size:0x70 scope:global align:4 +calc__14J3DMaterialAnmCFP11J3DMaterial = .text:0x8006A164; // type:function size:0x1EC scope:global align:4 +getTevKColor__11J3DTevBlockFUl = .text:0x8006A350; // type:function size:0x8 scope:weak align:4 +getTevColor__11J3DTevBlockFUl = .text:0x8006A358; // type:function size:0x8 scope:weak align:4 +setTexNo__11J3DTevBlockFUlUs = .text:0x8006A360; // type:function size:0x4 scope:weak align:4 +calc__11J3DTexNoAnmCFPUs = .text:0x8006A364; // type:function size:0x30 scope:weak align:4 +__dt__14J3DMaterialAnmFv = .text:0x8006A394; // type:function size:0xD0 scope:weak align:4 +__dt__14J3DMatColorAnmFv = .text:0x8006A464; // type:function size:0x3C scope:weak align:4 +__dt__12J3DTexMtxAnmFv = .text:0x8006A4A0; // type:function size:0x3C scope:weak align:4 +__dt__11J3DTexNoAnmFv = .text:0x8006A4DC; // type:function size:0x48 scope:weak align:4 +__dt__14J3DTevColorAnmFv = .text:0x8006A524; // type:function size:0x3C scope:weak align:4 +__dt__15J3DTevKColorAnmFv = .text:0x8006A560; // type:function size:0x3C scope:weak align:4 +deform__13J3DDeformDataFP8J3DModel = .text:0x8006A59C; // type:function size:0x24 scope:global align:4 +deform__13J3DDeformDataFP15J3DVertexBuffer = .text:0x8006A5C0; // type:function size:0xD4 scope:global align:4 +deform__11J3DDeformerFP15J3DVertexBufferUs = .text:0x8006A694; // type:function size:0x168 scope:global align:4 +deform_VtxPosF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8006A7FC; // type:function size:0x26C scope:global align:4 +deform_VtxNrmF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8006AA68; // type:function size:0x470 scope:global align:4 +deform__11J3DDeformerFP15J3DVertexBufferUsPf = .text:0x8006AED8; // type:function size:0x1CC scope:global align:4 +normalizeWeight__11J3DDeformerFiPf = .text:0x8006B0A4; // type:function size:0x15C scope:global align:4 +init__25J3DMtxCalcJ3DSysInitBasicFRC3VecRA3_A4_Cf = .text:0x8006B200; // type:function size:0x98 scope:global align:4 +init__24J3DMtxCalcJ3DSysInitMayaFRC3VecRA3_A4_Cf = .text:0x8006B298; // type:function size:0x98 scope:global align:4 +calcTransform__28J3DMtxCalcCalcTransformBasicFRC16J3DTransformInfo = .text:0x8006B330; // type:function size:0x118 scope:global align:4 +calcTransform__32J3DMtxCalcCalcTransformSoftimageFRC16J3DTransformInfo = .text:0x8006B448; // type:function size:0x168 scope:global align:4 +calcTransform__27J3DMtxCalcCalcTransformMayaFRC16J3DTransformInfo = .text:0x8006B5B0; // type:function size:0x178 scope:global align:4 +J3DNewMtxCalcAnm__FUlP15J3DAnmTransform = .text:0x8006B728; // type:function size:0x104 scope:global align:4 +__dt__17J3DMtxCalcAnmBaseFv = .text:0x8006B82C; // type:function size:0x5C scope:weak align:4 +appendChild__8J3DJointFP8J3DJoint = .text:0x8006B888; // type:function size:0x34 scope:global align:4 +__ct__8J3DJointFv = .text:0x8006B8BC; // type:function size:0xFC scope:global align:4 +entryIn__8J3DJointFv = .text:0x8006B9B8; // type:function size:0x19C scope:global align:4 +recursiveCalc__8J3DJointFv = .text:0x8006BB54; // type:function size:0x1A8 scope:global align:4 +getAnmTransform__17J3DMtxCalcAnmBaseFv = .text:0x8006BCFC; // type:function size:0x8 scope:weak align:4 +setAnmTransform__17J3DMtxCalcAnmBaseFP15J3DAnmTransform = .text:0x8006BD04; // type:function size:0x8 scope:weak align:4 +__dt__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8006BD0C; // type:function size:0x6C scope:weak align:4 +init__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x8006BD78; // type:function size:0x94 scope:weak align:4 +setAnmTransform__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FP15J3DAnmTransform = .text:0x8006BE0C; // type:function size:0x8 scope:weak align:4 +__dt__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x8006BE14; // type:function size:0x6C scope:weak align:4 +init__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x8006BE80; // type:function size:0x4C scope:weak align:4 +setAnmTransform__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FP15J3DAnmTransform = .text:0x8006BECC; // type:function size:0x8 scope:weak align:4 +__dt__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x8006BED4; // type:function size:0x6C scope:weak align:4 +init__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x8006BF40; // type:function size:0x98 scope:weak align:4 +setAnmTransform__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>FP15J3DAnmTransform = .text:0x8006BFD8; // type:function size:0x8 scope:weak align:4 +calc__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x8006BFE0; // type:function size:0x178 scope:weak align:4 +calc__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x8006C158; // type:function size:0x1C4 scope:weak align:4 +calc__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8006C31C; // type:function size:0x88 scope:weak align:4 +__ct__18J3DMaterialFactoryFRC16J3DMaterialBlock = .text:0x8006C3A4; // type:function size:0x248 scope:global align:4 +__ct__18J3DMaterialFactoryFRC18J3DMaterialDLBlock = .text:0x8006C5EC; // type:function size:0x88 scope:global align:4 +countUniqueMaterials__18J3DMaterialFactoryFv = .text:0x8006C674; // type:function size:0x48 scope:global align:4 +create__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x8006C6BC; // type:function size:0x7C scope:global align:4 +createNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006C738; // type:function size:0xA0C scope:global align:4 +setIndTevStage__11J3DTevBlockFUl14J3DIndTevStage = .text:0x8006D144; // type:function size:0x4 scope:weak align:4 +setTevKAlphaSel__11J3DTevBlockFUlUc = .text:0x8006D148; // type:function size:0x4 scope:weak align:4 +setTevKColorSel__11J3DTevBlockFUlUc = .text:0x8006D14C; // type:function size:0x4 scope:weak align:4 +setTevSwapModeTable__11J3DTevBlockFUl19J3DTevSwapModeTable = .text:0x8006D150; // type:function size:0x4 scope:weak align:4 +setTevColor__11J3DTevBlockFUl13J3DGXColorS10 = .text:0x8006D154; // type:function size:0x4 scope:weak align:4 +setTevKColor__11J3DTevBlockFUl10J3DGXColor = .text:0x8006D158; // type:function size:0x4 scope:weak align:4 +getTevStage__11J3DTevBlockFUl = .text:0x8006D15C; // type:function size:0x8 scope:weak align:4 +setTevStage__11J3DTevBlockFUl11J3DTevStage = .text:0x8006D164; // type:function size:0x4 scope:weak align:4 +setTevOrder__11J3DTevBlockFUl11J3DTevOrder = .text:0x8006D168; // type:function size:0x4 scope:weak align:4 +setTevStageNum__11J3DTevBlockFUc = .text:0x8006D16C; // type:function size:0x4 scope:weak align:4 +createPatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006D170; // type:function size:0x924 scope:global align:4 +__dt__11J3DMaterialFv = .text:0x8006DA94; // type:function size:0x48 scope:weak align:4 +modifyPatchedCurrentMtx__18J3DMaterialFactoryCFP11J3DMateriali = .text:0x8006DADC; // type:function size:0x1A4 scope:global align:4 +createLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006DC80; // type:function size:0x2B8 scope:global align:4 +setTevRegOffset__11J3DTevBlockFUl = .text:0x8006DF38; // type:function size:0x4 scope:weak align:4 +setTexNoOffset__11J3DTevBlockFUl = .text:0x8006DF3C; // type:function size:0x8 scope:weak align:4 +calcSize__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x8006DF44; // type:function size:0x80 scope:global align:4 +calcSizeNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006DFC4; // type:function size:0x258 scope:global align:4 +calcSizePatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006E21C; // type:function size:0x13C scope:global align:4 +calcSizeLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006E358; // type:function size:0x18 scope:global align:4 +newMatColor__18J3DMaterialFactoryCFii = .text:0x8006E370; // type:function size:0x90 scope:global align:4 +newColorChanNum__18J3DMaterialFactoryCFi = .text:0x8006E400; // type:function size:0x38 scope:global align:4 +newColorChan__18J3DMaterialFactoryCFii = .text:0x8006E438; // type:function size:0x194 scope:global align:4 +newAmbColor__18J3DMaterialFactoryCFii = .text:0x8006E5CC; // type:function size:0x90 scope:global align:4 +newTexGenNum__18J3DMaterialFactoryCFi = .text:0x8006E65C; // type:function size:0x38 scope:global align:4 +newTexCoord__18J3DMaterialFactoryCFii = .text:0x8006E694; // type:function size:0x84 scope:global align:4 +newTexMtx__18J3DMaterialFactoryCFii = .text:0x8006E718; // type:function size:0x158 scope:global align:4 +newCullMode__18J3DMaterialFactoryCFi = .text:0x8006E870; // type:function size:0x40 scope:global align:4 +newTexNo__18J3DMaterialFactoryCFii = .text:0x8006E8B0; // type:function size:0x48 scope:global align:4 +newTevOrder__18J3DMaterialFactoryCFii = .text:0x8006E8F8; // type:function size:0x74 scope:global align:4 +newTevColor__18J3DMaterialFactoryCFii = .text:0x8006E96C; // type:function size:0x98 scope:global align:4 +newTevKColor__18J3DMaterialFactoryCFii = .text:0x8006EA04; // type:function size:0x90 scope:global align:4 +newTevStageNum__18J3DMaterialFactoryCFi = .text:0x8006EA94; // type:function size:0x38 scope:global align:4 +newTevStage__18J3DMaterialFactoryCFii = .text:0x8006EACC; // type:function size:0x60 scope:global align:4 +__ct__11J3DTevStageFRC15J3DTevStageInfo = .text:0x8006EB2C; // type:function size:0x60 scope:weak align:4 +newTevSwapModeTable__18J3DMaterialFactoryCFii = .text:0x8006EB8C; // type:function size:0x9C scope:global align:4 +newIndTexStageNum__18J3DMaterialFactoryCFi = .text:0x8006EC28; // type:function size:0x28 scope:global align:4 +newIndTexOrder__18J3DMaterialFactoryCFii = .text:0x8006EC50; // type:function size:0x60 scope:global align:4 +newIndTexMtx__18J3DMaterialFactoryCFii = .text:0x8006ECB0; // type:function size:0xE0 scope:global align:4 +newIndTevStage__18J3DMaterialFactoryCFii = .text:0x8006ED90; // type:function size:0x194 scope:global align:4 +newIndTexCoordScale__18J3DMaterialFactoryCFii = .text:0x8006EF24; // type:function size:0x60 scope:global align:4 +newFog__18J3DMaterialFactoryCFi = .text:0x8006EF84; // type:function size:0x24C scope:global align:4 +newAlphaComp__18J3DMaterialFactoryCFi = .text:0x8006F1D0; // type:function size:0x80 scope:global align:4 +newBlend__18J3DMaterialFactoryCFi = .text:0x8006F250; // type:function size:0x7C scope:global align:4 +newZMode__18J3DMaterialFactoryCFi = .text:0x8006F2CC; // type:function size:0x60 scope:global align:4 +newZCompLoc__18J3DMaterialFactoryCFi = .text:0x8006F32C; // type:function size:0x38 scope:global align:4 +newDither__18J3DMaterialFactoryCFi = .text:0x8006F364; // type:function size:0x38 scope:global align:4 +newNBTScale__18J3DMaterialFactoryCFi = .text:0x8006F39C; // type:function size:0xA8 scope:global align:4 +load__14J3DPEBlockNullFv = .text:0x8006F444; // type:function size:0x4 scope:weak align:4 +getType__14J3DPEBlockNullFv = .text:0x8006F448; // type:function size:0xC scope:weak align:4 +__dt__14J3DPEBlockNullFv = .text:0x8006F454; // type:function size:0x5C scope:weak align:4 +reset__15J3DTevBlockNullFP11J3DTevBlock = .text:0x8006F4B0; // type:function size:0x4 scope:weak align:4 +ptrToIndex__15J3DTevBlockNullFv = .text:0x8006F4B4; // type:function size:0x4 scope:weak align:4 +indexToPtr__15J3DTevBlockNullFv = .text:0x8006F4B8; // type:function size:0x24 scope:weak align:4 +getType__15J3DTevBlockNullFv = .text:0x8006F4DC; // type:function size:0xC scope:weak align:4 +__dt__15J3DTevBlockNullFv = .text:0x8006F4E8; // type:function size:0x5C scope:weak align:4 +diffTexNo__11J3DTevBlockFv = .text:0x8006F544; // type:function size:0x4 scope:weak align:4 +diffTevReg__11J3DTevBlockFv = .text:0x8006F548; // type:function size:0x4 scope:weak align:4 +diffTexCoordScale__11J3DTevBlockFv = .text:0x8006F54C; // type:function size:0x4 scope:weak align:4 +diffTevStage__11J3DTevBlockFv = .text:0x8006F550; // type:function size:0x4 scope:weak align:4 +diffTevStageIndirect__11J3DTevBlockFv = .text:0x8006F554; // type:function size:0x4 scope:weak align:4 +patchTexNo__11J3DTevBlockFv = .text:0x8006F558; // type:function size:0x4 scope:weak align:4 +patchTevReg__11J3DTevBlockFv = .text:0x8006F55C; // type:function size:0x4 scope:weak align:4 +patchTexNoAndTexCoordScale__11J3DTevBlockFv = .text:0x8006F560; // type:function size:0x4 scope:weak align:4 +setTexNo__11J3DTevBlockFUlPCUs = .text:0x8006F564; // type:function size:0x4 scope:weak align:4 +setTevOrder__11J3DTevBlockFUlPC11J3DTevOrder = .text:0x8006F568; // type:function size:0x4 scope:weak align:4 +getTevOrder__11J3DTevBlockFUl = .text:0x8006F56C; // type:function size:0x8 scope:weak align:4 +setTevColor__11J3DTevBlockFUlPC13J3DGXColorS10 = .text:0x8006F574; // type:function size:0x4 scope:weak align:4 +setTevKColor__11J3DTevBlockFUlPC10J3DGXColor = .text:0x8006F578; // type:function size:0x4 scope:weak align:4 +setTevKColorSel__11J3DTevBlockFUlPCUc = .text:0x8006F57C; // type:function size:0x4 scope:weak align:4 +getTevKColorSel__11J3DTevBlockFUl = .text:0x8006F580; // type:function size:0x8 scope:weak align:4 +setTevKAlphaSel__11J3DTevBlockFUlPCUc = .text:0x8006F588; // type:function size:0x4 scope:weak align:4 +getTevKAlphaSel__11J3DTevBlockFUl = .text:0x8006F58C; // type:function size:0x8 scope:weak align:4 +setTevStageNum__11J3DTevBlockFPCUc = .text:0x8006F594; // type:function size:0x4 scope:weak align:4 +setTevStage__11J3DTevBlockFUlPC11J3DTevStage = .text:0x8006F598; // type:function size:0x4 scope:weak align:4 +setTevSwapModeInfo__11J3DTevBlockFUl18J3DTevSwapModeInfo = .text:0x8006F59C; // type:function size:0x4 scope:weak align:4 +setTevSwapModeInfo__11J3DTevBlockFUlPC18J3DTevSwapModeInfo = .text:0x8006F5A0; // type:function size:0x4 scope:weak align:4 +setTevSwapModeTable__11J3DTevBlockFUlPC19J3DTevSwapModeTable = .text:0x8006F5A4; // type:function size:0x4 scope:weak align:4 +getTevSwapModeTable__11J3DTevBlockFUl = .text:0x8006F5A8; // type:function size:0x8 scope:weak align:4 +setIndTevStage__11J3DTevBlockFUlPC14J3DIndTevStage = .text:0x8006F5B0; // type:function size:0x4 scope:weak align:4 +getIndTevStage__11J3DTevBlockFUl = .text:0x8006F5B4; // type:function size:0x8 scope:weak align:4 +getTexNoOffset__11J3DTevBlockCFv = .text:0x8006F5BC; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__11J3DTevBlockCFv = .text:0x8006F5C4; // type:function size:0x8 scope:weak align:4 +calc__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5CC; // type:function size:0x4 scope:weak align:4 +calcWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5D0; // type:function size:0x4 scope:weak align:4 +calcPostTexMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5D4; // type:function size:0x4 scope:weak align:4 +calcPostTexMtxWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5D8; // type:function size:0x4 scope:weak align:4 +load__18J3DTexGenBlockNullFv = .text:0x8006F5DC; // type:function size:0x4 scope:weak align:4 +patch__18J3DTexGenBlockNullFv = .text:0x8006F5E0; // type:function size:0x4 scope:weak align:4 +diff__18J3DTexGenBlockNullFUl = .text:0x8006F5E4; // type:function size:0x4 scope:weak align:4 +diffTexMtx__18J3DTexGenBlockNullFv = .text:0x8006F5E8; // type:function size:0x4 scope:weak align:4 +diffTexGen__18J3DTexGenBlockNullFv = .text:0x8006F5EC; // type:function size:0x4 scope:weak align:4 +getType__18J3DTexGenBlockNullFv = .text:0x8006F5F0; // type:function size:0xC scope:weak align:4 +__dt__18J3DTexGenBlockNullFv = .text:0x8006F5FC; // type:function size:0x5C scope:weak align:4 +getType__17J3DColorBlockNullFv = .text:0x8006F658; // type:function size:0xC scope:weak align:4 +__dt__17J3DColorBlockNullFv = .text:0x8006F664; // type:function size:0x5C scope:weak align:4 +JSUConvertOffsetToPtr<17J3DCurrentMtxInfo>__FPCvPCv = .text:0x8006F6C0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DPatchingInfo>__FPCvPCv = .text:0x8006F6D8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DDisplayListInit>__FPCvPCv = .text:0x8006F6F0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DNBTScaleInfo>__FPCvPCv = .text:0x8006F708; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<12J3DZModeInfo>__FPCvPCv = .text:0x8006F720; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<12J3DBlendInfo>__FPCvPCv = .text:0x8006F738; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DAlphaCompInfo>__FPCvPCv = .text:0x8006F750; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<10J3DFogInfo>__FPCvPCv = .text:0x8006F768; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J3DTevSwapModeTableInfo>__FPCvPCv = .text:0x8006F780; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DTevSwapModeInfo>__FPCvPCv = .text:0x8006F798; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DTevStageInfo>__FPCvPCv = .text:0x8006F7B0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DTevOrderInfo>__FPCvPCv = .text:0x8006F7C8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<13J3DTexMtxInfo>__FPCvPCv = .text:0x8006F7E0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DTexCoord2Info>__FPCvPCv = .text:0x8006F7F8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DTexCoordInfo>__FPCvPCv = .text:0x8006F810; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<12J3DLightInfo>__FPCvPCv = .text:0x8006F828; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DColorChanInfo>__FPCvPCv = .text:0x8006F840; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<14J3DIndInitData>__FPCvPCv = .text:0x8006F858; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J3DMaterialInitData>__FPCvPCv = .text:0x8006F870; // type:function size:0x18 scope:weak align:4 +getType__11J3DShapeMtxCFv = .text:0x8006F888; // type:function size:0xC scope:weak align:4 +load__22J3DModelLoaderDataBaseFPCvUl = .text:0x8006F894; // type:function size:0x154 scope:global align:4 +__dt__18J3DModelLoader_v26Fv = .text:0x8006F9E8; // type:function size:0x5C scope:weak align:4 +__dt__18J3DModelLoader_v21Fv = .text:0x8006FA44; // type:function size:0x5C scope:weak align:4 +__dt__14J3DModelLoaderFv = .text:0x8006FAA0; // type:function size:0x48 scope:weak align:4 +loadBinaryDisplayList__22J3DModelLoaderDataBaseFPCvUl = .text:0x8006FAE8; // type:function size:0xBC scope:global align:4 +load__14J3DModelLoaderFPCvUl = .text:0x8006FBA4; // type:function size:0x2BC scope:global align:4 +readMaterial_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x8006FE60; // type:function size:0x4 scope:weak align:4 +readMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x8006FE64; // type:function size:0x4 scope:weak align:4 +loadMaterialTable__14J3DModelLoaderFPCv = .text:0x8006FE68; // type:function size:0x148 scope:global align:4 +readMaterialTable_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x8006FFB0; // type:function size:0x4 scope:weak align:4 +readMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x8006FFB4; // type:function size:0x4 scope:weak align:4 +loadBinaryDisplayList__14J3DModelLoaderFPCvUl = .text:0x8006FFB8; // type:function size:0x2A4 scope:global align:4 +setupBBoardInfo__14J3DModelLoaderFv = .text:0x8007025C; // type:function size:0x14C scope:global align:4 +readInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x800703A8; // type:function size:0x168 scope:global align:4 +__dt__19J3DMtxCalcNoAnmBaseFv = .text:0x80070510; // type:function size:0x5C scope:weak align:4 +readVertex__14J3DModelLoaderFPC14J3DVertexBlock = .text:0x8007056C; // type:function size:0x238 scope:global align:4 +readEnvelop__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x800707A4; // type:function size:0x98 scope:global align:4 +readDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x8007083C; // type:function size:0xB8 scope:global align:4 +readJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x800708F4; // type:function size:0xEC scope:global align:4 +readMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x800709E0; // type:function size:0x274 scope:global align:4 +__ct__11J3DMaterialFv = .text:0x80070C54; // type:function size:0x54 scope:weak align:4 +readMaterial_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x80070CA8; // type:function size:0x25C scope:global align:4 +readShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x80070F04; // type:function size:0x11C scope:global align:4 +readTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x80071020; // type:function size:0xC4 scope:global align:4 +readMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x800710E4; // type:function size:0x14C scope:global align:4 +readMaterialTable_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x80071230; // type:function size:0x14C scope:global align:4 +readTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x8007137C; // type:function size:0xC4 scope:global align:4 +readPatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x80071440; // type:function size:0x150 scope:global align:4 +readMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x80071590; // type:function size:0x1BC scope:global align:4 +modifyMaterial__14J3DModelLoaderFUl = .text:0x8007174C; // type:function size:0x7C scope:global align:4 +calcSizeMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x800717C8; // type:function size:0x8 scope:weak align:4 +calcSizeMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x800717D0; // type:function size:0x8 scope:weak align:4 +__dt__10J3DTextureFv = .text:0x800717D8; // type:function size:0x48 scope:weak align:4 +__dt__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80071820; // type:function size:0x6C scope:weak align:4 +init__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x8007188C; // type:function size:0x28 scope:weak align:4 +calc__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x800718B4; // type:function size:0x28 scope:weak align:4 +__dt__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x800718DC; // type:function size:0x6C scope:weak align:4 +init__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x80071948; // type:function size:0x4C scope:weak align:4 +calc__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80071994; // type:function size:0x28 scope:weak align:4 +__dt__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x800719BC; // type:function size:0x6C scope:weak align:4 +init__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x80071A28; // type:function size:0x28 scope:weak align:4 +calc__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x80071A50; // type:function size:0x28 scope:weak align:4 +JSUConvertOffsetToPtr<7ResTIMG>__FPCvPCv = .text:0x80071A78; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80071A90; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80071AA8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<17_GXVtxAttrFmtList>__FPCvPCv = .text:0x80071AC0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<17J3DModelHierarchy>__FPCvPCv = .text:0x80071AD8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DShapeInitData>__FPCvUl = .text:0x80071AF0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80071B08; // type:function size:0x18 scope:weak align:4 +__ct__15J3DJointFactoryFRC13J3DJointBlock = .text:0x80071B20; // type:function size:0x58 scope:global align:4 +create__15J3DJointFactoryFi = .text:0x80071B78; // type:function size:0x180 scope:global align:4 +JSUConvertOffsetToPtr<16J3DJointInitData>__FPCvUl = .text:0x80071CF8; // type:function size:0x18 scope:weak align:4 +__ct__15J3DShapeFactoryFRC13J3DShapeBlock = .text:0x80071D10; // type:function size:0xB0 scope:global align:4 +create__15J3DShapeFactoryFiUlP14_GXVtxDescList = .text:0x80071DC0; // type:function size:0x1B4 scope:global align:4 +newShapeMtx__15J3DShapeFactoryCFUlii = .text:0x80071F74; // type:function size:0x24C scope:global align:4 +__dt__21J3DShapeMtxConcatViewFv = .text:0x800721C0; // type:function size:0x5C scope:weak align:4 +__dt__11J3DShapeMtxFv = .text:0x8007221C; // type:function size:0x48 scope:weak align:4 +newShapeDraw__15J3DShapeFactoryCFii = .text:0x80072264; // type:function size:0x8C scope:global align:4 +allocVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x800722F0; // type:function size:0x10C scope:global align:4 +calcSize__15J3DShapeFactoryFiUl = .text:0x800723FC; // type:function size:0x8C scope:global align:4 +calcSizeVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x80072488; // type:function size:0x10 scope:global align:4 +calcSizeShapeMtx__15J3DShapeFactoryCFUlii = .text:0x80072498; // type:function size:0xA8 scope:global align:4 +JSUConvertOffsetToPtr<20J3DShapeDrawInitData>__FPCvUl = .text:0x80072540; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J3DShapeMtxInitData>__FPCvUl = .text:0x80072558; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80072570; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<14_GXVtxDescList>__FPCvUl = .text:0x80072588; // type:function size:0x18 scope:weak align:4 +load__20J3DAnmLoaderDataBaseFPCv = .text:0x800725A0; // type:function size:0x8C4 scope:global align:4 +__ct__20J3DAnmFullLoader_v15Fv = .text:0x80072E64; // type:function size:0x1C scope:global align:4 +__dt__12J3DAnmLoaderFv = .text:0x80072E80; // type:function size:0x48 scope:weak align:4 +__dt__20J3DAnmFullLoader_v15Fv = .text:0x80072EC8; // type:function size:0x5C scope:global align:4 +__ct__19J3DAnmKeyLoader_v15Fv = .text:0x80072F24; // type:function size:0x1C scope:global align:4 +__dt__19J3DAnmKeyLoader_v15Fv = .text:0x80072F40; // type:function size:0x5C scope:global align:4 +load__20J3DAnmFullLoader_v15FPCv = .text:0x80072F9C; // type:function size:0x128 scope:global align:4 +setResource__20J3DAnmFullLoader_v15FP10J3DAnmBasePCv = .text:0x800730C4; // type:function size:0x140 scope:global align:4 +readAnmTransform__20J3DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x80073204; // type:function size:0x28 scope:global align:4 +setAnmTransform__20J3DAnmFullLoader_v15FP19J3DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x8007322C; // type:function size:0x94 scope:global align:4 +readAnmColor__20J3DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x800732C0; // type:function size:0x28 scope:global align:4 +setAnmColor__20J3DAnmFullLoader_v15FP15J3DAnmColorFullPC19J3DAnmColorFullData = .text:0x800732E8; // type:function size:0xCC scope:global align:4 +readAnmTexPattern__20J3DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x800733B4; // type:function size:0x28 scope:global align:4 +setAnmTexPattern__20J3DAnmFullLoader_v15FP16J3DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x800733DC; // type:function size:0xA4 scope:global align:4 +readAnmVisibility__20J3DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x80073480; // type:function size:0x28 scope:global align:4 +setAnmVisibility__20J3DAnmFullLoader_v15FP20J3DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x800734A8; // type:function size:0x7C scope:global align:4 +readAnmCluster__20J3DAnmFullLoader_v15FPC21J3DAnmClusterFullData = .text:0x80073524; // type:function size:0x28 scope:global align:4 +setAnmCluster__20J3DAnmFullLoader_v15FP17J3DAnmClusterFullPC21J3DAnmClusterFullData = .text:0x8007354C; // type:function size:0x6C scope:global align:4 +readAnmVtxColor__20J3DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x800735B8; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__20J3DAnmFullLoader_v15FP18J3DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x800735E0; // type:function size:0x170 scope:global align:4 +load__19J3DAnmKeyLoader_v15FPCv = .text:0x80073750; // type:function size:0x128 scope:global align:4 +setResource__19J3DAnmKeyLoader_v15FP10J3DAnmBasePCv = .text:0x80073878; // type:function size:0x140 scope:global align:4 +readAnmTransform__19J3DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x800739B8; // type:function size:0x28 scope:global align:4 +setAnmTransform__19J3DAnmKeyLoader_v15FP18J3DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x800739E0; // type:function size:0x9C scope:global align:4 +readAnmTextureSRT__19J3DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x80073A7C; // type:function size:0x28 scope:global align:4 +setAnmTextureSRT__19J3DAnmKeyLoader_v15FP19J3DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x80073AA4; // type:function size:0x1D8 scope:global align:4 +readAnmColor__19J3DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x80073C7C; // type:function size:0x28 scope:global align:4 +setAnmColor__19J3DAnmKeyLoader_v15FP14J3DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x80073CA4; // type:function size:0xEC scope:global align:4 +readAnmCluster__19J3DAnmKeyLoader_v15FPC20J3DAnmClusterKeyData = .text:0x80073D90; // type:function size:0x28 scope:global align:4 +setAnmCluster__19J3DAnmKeyLoader_v15FP16J3DAnmClusterKeyPC20J3DAnmClusterKeyData = .text:0x80073DB8; // type:function size:0x6C scope:global align:4 +readAnmTevReg__19J3DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x80073E24; // type:function size:0x28 scope:global align:4 +setAnmTevReg__19J3DAnmKeyLoader_v15FP15J3DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x80073E4C; // type:function size:0x18C scope:global align:4 +readAnmVtxColor__19J3DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x80073FD8; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__19J3DAnmKeyLoader_v15FP17J3DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x80074000; // type:function size:0x170 scope:global align:4 +__dt__20J3DAnmVisibilityFullFv = .text:0x80074170; // type:function size:0x5C scope:weak align:4 +getKind__20J3DAnmVisibilityFullCFv = .text:0x800741CC; // type:function size:0x8 scope:weak align:4 +__dt__16J3DAnmTexPatternFv = .text:0x800741D4; // type:function size:0x74 scope:weak align:4 +getKind__16J3DAnmTexPatternCFv = .text:0x80074248; // type:function size:0x8 scope:weak align:4 +__dt__15J3DAnmTevRegKeyFv = .text:0x80074250; // type:function size:0x88 scope:weak align:4 +getKind__15J3DAnmTevRegKeyCFv = .text:0x800742D8; // type:function size:0x8 scope:weak align:4 +__dt__19J3DAnmTextureSRTKeyFv = .text:0x800742E0; // type:function size:0x88 scope:weak align:4 +getKind__19J3DAnmTextureSRTKeyCFv = .text:0x80074368; // type:function size:0x8 scope:weak align:4 +__dt__18J3DAnmTransformKeyFv = .text:0x80074370; // type:function size:0x6C scope:weak align:4 +getKind__18J3DAnmTransformKeyCFv = .text:0x800743DC; // type:function size:0x8 scope:weak align:4 +getTransform__18J3DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x800743E4; // type:function size:0x24 scope:weak align:4 +JSUConvertOffsetToPtr<21J3DAnmClusterKeyTable>__FPCvPCv = .text:0x80074408; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<22J3DAnmClusterFullTable>__FPCvPCv = .text:0x80074420; // type:function size:0x18 scope:weak align:4 +getUseMtxIndex__11J3DShapeMtxCFUs = .text:0x80074438; // type:function size:0x8 scope:weak align:4 +J3DGDSetGenMode__FUcUcUcUc11_GXCullMode = .text:0x80074440; // type:function size:0x170 scope:global align:4 +J3DGDSetGenMode_3Param__FUcUcUc = .text:0x800745B0; // type:function size:0x15C scope:global align:4 +J3DGDSetLightAttn__F10_GXLightIDffffff = .text:0x8007470C; // type:function size:0x318 scope:global align:4 +J3DGDSetLightColor__F10_GXLightID8_GXColor = .text:0x80074A24; // type:function size:0x110 scope:global align:4 +J3DGDSetLightPos__F10_GXLightIDfff = .text:0x80074B34; // type:function size:0x1EC scope:global align:4 +J3DGDSetLightDir__F10_GXLightIDfff = .text:0x80074D20; // type:function size:0x1EC scope:global align:4 +J3DGDSetVtxAttrFmtv__F9_GXVtxFmtPC17_GXVtxAttrFmtListb = .text:0x80074F0C; // type:function size:0x548 scope:global align:4 +J3DGDSetTexCoordGen__F13_GXTexGenType12_GXTexGenSrc = .text:0x80075454; // type:function size:0x1D0 scope:global align:4 +J3DGDSetTexCoordScale2__F13_GXTexCoordIDUsUcUcUsUcUc = .text:0x80075624; // type:function size:0x1FC scope:global align:4 +J3DGDSetTexLookupMode__F11_GXTexMapID14_GXTexWrapMode14_GXTexWrapMode12_GXTexFilter12_GXTexFilterfffUcUc13_GXAnisotropy = .text:0x80075820; // type:function size:0x1AC scope:global align:4 +J3DGDSetTexImgAttr__F11_GXTexMapIDUsUs9_GXTexFmt = .text:0x800759CC; // type:function size:0xA8 scope:global align:4 +J3DGDSetTexImgPtr__F11_GXTexMapIDPv = .text:0x80075A74; // type:function size:0x90 scope:global align:4 +J3DGDSetTexImgPtrRaw__F11_GXTexMapIDUl = .text:0x80075B04; // type:function size:0xD4 scope:global align:4 +J3DGDSetTexTlut__F11_GXTexMapIDUl10_GXTlutFmt = .text:0x80075BD8; // type:function size:0x98 scope:global align:4 +J3DGDLoadTlut__FPvUl11_GXTlutSize = .text:0x80075C70; // type:function size:0x2C8 scope:global align:4 +J3DGDSetIndTexMtx__F14_GXIndTexMtxIDPA3_fSc = .text:0x80075F38; // type:function size:0x2D8 scope:global align:4 +J3DGDSetIndTexCoordScale__F16_GXIndTexStageID14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale = .text:0x80076210; // type:function size:0xF0 scope:global align:4 +J3DGDSetIndTexOrder__FUl13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID = .text:0x80076300; // type:function size:0x1F8 scope:global align:4 +J3DGDSetTevOrder__F13_GXTevStageID13_GXTexCoordID11_GXTexMapID12_GXChannelID13_GXTexCoordID11_GXTexMapID12_GXChannelID = .text:0x800764F8; // type:function size:0x188 scope:global align:4 +J3DGDSetTevKColor__F14_GXTevKColorID8_GXColor = .text:0x80076680; // type:function size:0x168 scope:global align:4 +J3DGDSetTevColorS10__F11_GXTevRegID11_GXColorS10 = .text:0x800767E8; // type:function size:0x234 scope:global align:4 +J3DGDSetFog__F10_GXFogTypeffff8_GXColor = .text:0x80076A1C; // type:function size:0x360 scope:global align:4 +J3DGDSetFogRangeAdj__FUcUsP14_GXFogAdjTable = .text:0x80076D7C; // type:function size:0x13C scope:global align:4 +J3DFifoLoadPosMtxImm__FPA4_fUl = .text:0x80076EB8; // type:function size:0x80 scope:global align:4 +J3DFifoLoadNrmMtxImm__FPA4_fUl = .text:0x80076F38; // type:function size:0x6C scope:global align:4 +J3DFifoLoadNrmMtxImm3x3__FPA3_fUl = .text:0x80076FA4; // type:function size:0x6C scope:global align:4 +J3DFifoLoadNrmMtxToTexMtx__FPA4_fUl = .text:0x80077010; // type:function size:0x98 scope:global align:4 +J3DFifoLoadNrmMtxToTexMtx3x3__FPA3_fUl = .text:0x800770A8; // type:function size:0x98 scope:global align:4 +J3DFifoLoadTexCached__F11_GXTexMapIDUl15_GXTexCacheSizeUl15_GXTexCacheSize = .text:0x80077140; // type:function size:0x80 scope:global align:4 +initialize__21J3DColorBlockLightOffFv = .text:0x800771C0; // type:function size:0x48 scope:global align:4 +initialize__22J3DColorBlockAmbientOnFv = .text:0x80077208; // type:function size:0x7C scope:global align:4 +initialize__20J3DColorBlockLightOnFv = .text:0x80077284; // type:function size:0x9C scope:global align:4 +initialize__21J3DTexGenBlockPatchedFv = .text:0x80077320; // type:function size:0x30 scope:global align:4 +initialize__15J3DTexGenBlock4Fv = .text:0x80077350; // type:function size:0x20 scope:global align:4 +initialize__19J3DTexGenBlockBasicFv = .text:0x80077370; // type:function size:0x30 scope:global align:4 +initialize__15J3DTevBlockNullFv = .text:0x800773A0; // type:function size:0xC scope:global align:4 +initialize__18J3DTevBlockPatchedFv = .text:0x800773AC; // type:function size:0x18C scope:global align:4 +initialize__12J3DTevBlock1Fv = .text:0x80077538; // type:function size:0x28 scope:global align:4 +initialize__12J3DTevBlock2Fv = .text:0x80077560; // type:function size:0x110 scope:global align:4 +initialize__12J3DTevBlock4Fv = .text:0x80077670; // type:function size:0x140 scope:global align:4 +initialize__13J3DTevBlock16Fv = .text:0x800777B0; // type:function size:0x24C scope:global align:4 +initialize__15J3DIndBlockFullFv = .text:0x800779FC; // type:function size:0xC scope:global align:4 +initialize__16J3DPEBlockFogOffFv = .text:0x80077A08; // type:function size:0x24 scope:global align:4 +initialize__14J3DPEBlockFullFv = .text:0x80077A2C; // type:function size:0x2C scope:global align:4 +countDLSize__21J3DColorBlockLightOffFv = .text:0x80077A58; // type:function size:0x8 scope:global align:4 +countDLSize__22J3DColorBlockAmbientOnFv = .text:0x80077A60; // type:function size:0x8 scope:global align:4 +countDLSize__20J3DColorBlockLightOnFv = .text:0x80077A68; // type:function size:0x8 scope:global align:4 +countDLSize__21J3DTexGenBlockPatchedFv = .text:0x80077A70; // type:function size:0x8 scope:global align:4 +countDLSize__15J3DTexGenBlock4Fv = .text:0x80077A78; // type:function size:0x8 scope:global align:4 +countDLSize__19J3DTexGenBlockBasicFv = .text:0x80077A80; // type:function size:0x8 scope:global align:4 +countDLSize__18J3DTevBlockPatchedFv = .text:0x80077A88; // type:function size:0x8 scope:global align:4 +countDLSize__12J3DTevBlock1Fv = .text:0x80077A90; // type:function size:0x8 scope:global align:4 +countDLSize__12J3DTevBlock2Fv = .text:0x80077A98; // type:function size:0x8 scope:global align:4 +countDLSize__12J3DTevBlock4Fv = .text:0x80077AA0; // type:function size:0x8 scope:global align:4 +countDLSize__13J3DTevBlock16Fv = .text:0x80077AA8; // type:function size:0x8 scope:global align:4 +countDLSize__15J3DIndBlockFullFv = .text:0x80077AB0; // type:function size:0x8 scope:global align:4 +countDLSize__13J3DPEBlockOpaFv = .text:0x80077AB8; // type:function size:0x8 scope:global align:4 +countDLSize__17J3DPEBlockTexEdgeFv = .text:0x80077AC0; // type:function size:0x8 scope:global align:4 +countDLSize__13J3DPEBlockXluFv = .text:0x80077AC8; // type:function size:0x8 scope:global align:4 +countDLSize__16J3DPEBlockFogOffFv = .text:0x80077AD0; // type:function size:0x8 scope:global align:4 +countDLSize__14J3DPEBlockFullFv = .text:0x80077AD8; // type:function size:0x8 scope:global align:4 +load__21J3DColorBlockLightOffFv = .text:0x80077AE0; // type:function size:0x558 scope:global align:4 +load__22J3DColorBlockAmbientOnFv = .text:0x80078038; // type:function size:0x680 scope:global align:4 +load__20J3DColorBlockLightOnFv = .text:0x800786B8; // type:function size:0x6B0 scope:global align:4 +patch__21J3DColorBlockLightOffFv = .text:0x80078D68; // type:function size:0x4C scope:global align:4 +patchMatColor__21J3DColorBlockLightOffFv = .text:0x80078DB4; // type:function size:0x1AC scope:global align:4 +patchLight__21J3DColorBlockLightOffFv = .text:0x80078F60; // type:function size:0x438 scope:global align:4 +patch__20J3DColorBlockLightOnFv = .text:0x80079398; // type:function size:0x4C scope:global align:4 +patchMatColor__20J3DColorBlockLightOnFv = .text:0x800793E4; // type:function size:0x1AC scope:global align:4 +patchLight__20J3DColorBlockLightOnFv = .text:0x80079590; // type:function size:0x464 scope:global align:4 +diff__21J3DColorBlockLightOffFUl = .text:0x800799F4; // type:function size:0x68 scope:global align:4 +diffMatColor__21J3DColorBlockLightOffFv = .text:0x80079A5C; // type:function size:0x17C scope:global align:4 +diffLight__21J3DColorBlockLightOffFv = .text:0x80079BD8; // type:function size:0x404 scope:global align:4 +diff__20J3DColorBlockLightOnFUl = .text:0x80079FDC; // type:function size:0x70 scope:global align:4 +diffMatColor__20J3DColorBlockLightOnFv = .text:0x8007A04C; // type:function size:0x17C scope:global align:4 +diffLight__20J3DColorBlockLightOnFv = .text:0x8007A1C8; // type:function size:0x434 scope:global align:4 +load__15J3DTexGenBlock4Fv = .text:0x8007A5FC; // type:function size:0xA8 scope:global align:4 +load__19J3DTexGenBlockBasicFv = .text:0x8007A6A4; // type:function size:0xA8 scope:global align:4 +patch__21J3DTexGenBlockPatchedFv = .text:0x8007A74C; // type:function size:0x90 scope:global align:4 +patch__15J3DTexGenBlock4Fv = .text:0x8007A7DC; // type:function size:0xAC scope:global align:4 +patch__19J3DTexGenBlockBasicFv = .text:0x8007A888; // type:function size:0xAC scope:global align:4 +diff__21J3DTexGenBlockPatchedFUl = .text:0x8007A934; // type:function size:0x68 scope:global align:4 +diffTexMtx__21J3DTexGenBlockPatchedFv = .text:0x8007A99C; // type:function size:0x58 scope:global align:4 +diffTexGen__21J3DTexGenBlockPatchedFv = .text:0x8007A9F4; // type:function size:0x34 scope:global align:4 +load__12J3DTevBlock1Fv = .text:0x8007AA28; // type:function size:0x240 scope:global align:4 +load__12J3DTevBlock2Fv = .text:0x8007AC68; // type:function size:0x504 scope:global align:4 +load__12J3DTevBlock4Fv = .text:0x8007B16C; // type:function size:0x528 scope:global align:4 +load__13J3DTevBlock16Fv = .text:0x8007B694; // type:function size:0x52C scope:global align:4 +patchTexNo__18J3DTevBlockPatchedFv = .text:0x8007BBC0; // type:function size:0x94 scope:global align:4 +patchTevReg__18J3DTevBlockPatchedFv = .text:0x8007BC54; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__18J3DTevBlockPatchedFv = .text:0x8007BD24; // type:function size:0x16C scope:global align:4 +patch__18J3DTevBlockPatchedFv = .text:0x8007BE90; // type:function size:0x4C scope:global align:4 +patchTexNo__12J3DTevBlock1Fv = .text:0x8007BEDC; // type:function size:0x6C scope:global align:4 +patchTevReg__12J3DTevBlock1Fv = .text:0x8007BF48; // type:function size:0x4 scope:global align:4 +patchTexNoAndTexCoordScale__12J3DTevBlock1Fv = .text:0x8007BF4C; // type:function size:0xE4 scope:global align:4 +patch__12J3DTevBlock1Fv = .text:0x8007C030; // type:function size:0x2C scope:global align:4 +patchTexNo__12J3DTevBlock2Fv = .text:0x8007C05C; // type:function size:0x94 scope:global align:4 +patchTevReg__12J3DTevBlock2Fv = .text:0x8007C0F0; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__12J3DTevBlock2Fv = .text:0x8007C1C0; // type:function size:0x15C scope:global align:4 +patch__12J3DTevBlock2Fv = .text:0x8007C31C; // type:function size:0x4C scope:global align:4 +patchTexNo__12J3DTevBlock4Fv = .text:0x8007C368; // type:function size:0x94 scope:global align:4 +patchTevReg__12J3DTevBlock4Fv = .text:0x8007C3FC; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__12J3DTevBlock4Fv = .text:0x8007C4CC; // type:function size:0x16C scope:global align:4 +patch__12J3DTevBlock4Fv = .text:0x8007C638; // type:function size:0x4C scope:global align:4 +patchTexNo__13J3DTevBlock16Fv = .text:0x8007C684; // type:function size:0x94 scope:global align:4 +patchTevReg__13J3DTevBlock16Fv = .text:0x8007C718; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__13J3DTevBlock16Fv = .text:0x8007C7E8; // type:function size:0x16C scope:global align:4 +patch__13J3DTevBlock16Fv = .text:0x8007C954; // type:function size:0x4C scope:global align:4 +diff__11J3DTevBlockFUl = .text:0x8007C9A0; // type:function size:0xBC scope:global align:4 +diffTexNo__18J3DTevBlockPatchedFv = .text:0x8007CA5C; // type:function size:0x5C scope:global align:4 +diffTevStage__18J3DTevBlockPatchedFv = .text:0x8007CAB8; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__18J3DTevBlockPatchedFv = .text:0x8007CBC0; // type:function size:0xA8 scope:global align:4 +diffTevReg__18J3DTevBlockPatchedFv = .text:0x8007CC68; // type:function size:0x98 scope:global align:4 +diffTexCoordScale__18J3DTevBlockPatchedFv = .text:0x8007CD00; // type:function size:0xEC scope:global align:4 +diffTexNo__12J3DTevBlock1Fv = .text:0x8007CDEC; // type:function size:0x34 scope:global align:4 +diffTevReg__12J3DTevBlock1Fv = .text:0x8007CE20; // type:function size:0x4 scope:global align:4 +diffTevStage__12J3DTevBlock1Fv = .text:0x8007CE24; // type:function size:0xF0 scope:global align:4 +diffTevStageIndirect__12J3DTevBlock1Fv = .text:0x8007CF14; // type:function size:0x80 scope:global align:4 +diffTexCoordScale__12J3DTevBlock1Fv = .text:0x8007CF94; // type:function size:0x68 scope:global align:4 +diffTexNo__12J3DTevBlock2Fv = .text:0x8007CFFC; // type:function size:0x5C scope:global align:4 +diffTevReg__12J3DTevBlock2Fv = .text:0x8007D058; // type:function size:0x98 scope:global align:4 +diffTevStage__12J3DTevBlock2Fv = .text:0x8007D0F0; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__12J3DTevBlock2Fv = .text:0x8007D1F8; // type:function size:0xA8 scope:global align:4 +diffTexCoordScale__12J3DTevBlock2Fv = .text:0x8007D2A0; // type:function size:0xC4 scope:global align:4 +diffTexNo__12J3DTevBlock4Fv = .text:0x8007D364; // type:function size:0x5C scope:global align:4 +diffTevReg__12J3DTevBlock4Fv = .text:0x8007D3C0; // type:function size:0x98 scope:global align:4 +diffTevStage__12J3DTevBlock4Fv = .text:0x8007D458; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__12J3DTevBlock4Fv = .text:0x8007D560; // type:function size:0xA8 scope:global align:4 +diffTexCoordScale__12J3DTevBlock4Fv = .text:0x8007D608; // type:function size:0xEC scope:global align:4 +diffTexNo__13J3DTevBlock16Fv = .text:0x8007D6F4; // type:function size:0x5C scope:global align:4 +diffTevReg__13J3DTevBlock16Fv = .text:0x8007D750; // type:function size:0x98 scope:global align:4 +diffTevStage__13J3DTevBlock16Fv = .text:0x8007D7E8; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__13J3DTevBlock16Fv = .text:0x8007D8F0; // type:function size:0xA8 scope:global align:4 +diffTexCoordScale__13J3DTevBlock16Fv = .text:0x8007D998; // type:function size:0xEC scope:global align:4 +ptrToIndex__13J3DTevBlock16Fv = .text:0x8007DA84; // type:function size:0xD4 scope:global align:4 +ptrToIndex__18J3DTevBlockPatchedFv = .text:0x8007DB58; // type:function size:0xD4 scope:global align:4 +indexToPtr_private__11J3DTevBlockFUl = .text:0x8007DC2C; // type:function size:0x9C scope:global align:4 +load__15J3DIndBlockFullFv = .text:0x8007DCC8; // type:function size:0x200 scope:global align:4 +diff__15J3DIndBlockFullFUl = .text:0x8007DEC8; // type:function size:0xDC scope:global align:4 +load__13J3DPEBlockOpaFv = .text:0x8007DFA4; // type:function size:0x2C8 scope:global align:4 +load__17J3DPEBlockTexEdgeFv = .text:0x8007E26C; // type:function size:0x2E0 scope:global align:4 +load__13J3DPEBlockXluFv = .text:0x8007E54C; // type:function size:0x2D4 scope:global align:4 +load__16J3DPEBlockFogOffFv = .text:0x8007E820; // type:function size:0x49C scope:global align:4 +diffBlend__16J3DPEBlockFogOffFv = .text:0x8007ECBC; // type:function size:0x2F8 scope:global align:4 +load__14J3DPEBlockFullFv = .text:0x8007EFB4; // type:function size:0x4E4 scope:global align:4 +patch__14J3DPEBlockFullFv = .text:0x8007F498; // type:function size:0xB0 scope:global align:4 +diffFog__14J3DPEBlockFullFv = .text:0x8007F548; // type:function size:0x78 scope:global align:4 +diffBlend__14J3DPEBlockFullFv = .text:0x8007F5C0; // type:function size:0x2F8 scope:global align:4 +diff__14J3DPEBlockFullFUl = .text:0x8007F8B8; // type:function size:0x68 scope:global align:4 +reset__21J3DColorBlockLightOffFP13J3DColorBlock = .text:0x8007F920; // type:function size:0xE4 scope:global align:4 +reset__22J3DColorBlockAmbientOnFP13J3DColorBlock = .text:0x8007FA04; // type:function size:0x154 scope:global align:4 +reset__20J3DColorBlockLightOnFP13J3DColorBlock = .text:0x8007FB58; // type:function size:0x154 scope:global align:4 +reset__21J3DTexGenBlockPatchedFP14J3DTexGenBlock = .text:0x8007FCAC; // type:function size:0x11C scope:global align:4 +reset__15J3DTexGenBlock4FP14J3DTexGenBlock = .text:0x8007FDC8; // type:function size:0x150 scope:global align:4 +reset__19J3DTexGenBlockBasicFP14J3DTexGenBlock = .text:0x8007FF18; // type:function size:0x150 scope:global align:4 +reset__18J3DTevBlockPatchedFP11J3DTevBlock = .text:0x80080068; // type:function size:0x1B8 scope:global align:4 +reset__12J3DTevBlock1FP11J3DTevBlock = .text:0x80080220; // type:function size:0xE8 scope:global align:4 +reset__12J3DTevBlock2FP11J3DTevBlock = .text:0x80080308; // type:function size:0x308 scope:global align:4 +reset__12J3DTevBlock4FP11J3DTevBlock = .text:0x80080610; // type:function size:0x4E0 scope:global align:4 +reset__13J3DTevBlock16FP11J3DTevBlock = .text:0x80080AF0; // type:function size:0x27C scope:global align:4 +reset__15J3DIndBlockFullFP11J3DIndBlock = .text:0x80080D6C; // type:function size:0x144 scope:global align:4 +reset__16J3DPEBlockFogOffFP10J3DPEBlock = .text:0x80080EB0; // type:function size:0x100 scope:global align:4 +reset__14J3DPEBlockFullFP10J3DPEBlock = .text:0x80080FB0; // type:function size:0x1D8 scope:global align:4 +calc__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80081188; // type:function size:0x1B0 scope:global align:4 +calcWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80081338; // type:function size:0x140 scope:global align:4 +calcPostTexMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80081478; // type:function size:0x140 scope:global align:4 +calcPostTexMtxWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x800815B8; // type:function size:0x118 scope:global align:4 +getType__14J3DPEBlockFullFv = .text:0x800816D0; // type:function size:0xC scope:weak align:4 +setFog__14J3DPEBlockFullFP6J3DFog = .text:0x800816DC; // type:function size:0xAC scope:weak align:4 +setFog__14J3DPEBlockFullF6J3DFog = .text:0x80081788; // type:function size:0xAC scope:weak align:4 +getFog__14J3DPEBlockFullFv = .text:0x80081834; // type:function size:0x8 scope:weak align:4 +setAlphaComp__14J3DPEBlockFullFRC12J3DAlphaComp = .text:0x8008183C; // type:function size:0x1C scope:weak align:4 +setAlphaComp__14J3DPEBlockFullFPC12J3DAlphaComp = .text:0x80081858; // type:function size:0x1C scope:weak align:4 +getAlphaComp__14J3DPEBlockFullFv = .text:0x80081874; // type:function size:0x8 scope:weak align:4 +setBlend__14J3DPEBlockFullFRC8J3DBlend = .text:0x8008187C; // type:function size:0x24 scope:weak align:4 +setBlend__14J3DPEBlockFullFPC8J3DBlend = .text:0x800818A0; // type:function size:0x24 scope:weak align:4 +getBlend__14J3DPEBlockFullFv = .text:0x800818C4; // type:function size:0x8 scope:weak align:4 +setZMode__14J3DPEBlockFullF8J3DZMode = .text:0x800818CC; // type:function size:0xC scope:weak align:4 +setZMode__14J3DPEBlockFullFPC8J3DZMode = .text:0x800818D8; // type:function size:0xC scope:weak align:4 +getZMode__14J3DPEBlockFullFv = .text:0x800818E4; // type:function size:0x8 scope:weak align:4 +setZCompLoc__14J3DPEBlockFullFUc = .text:0x800818EC; // type:function size:0x8 scope:weak align:4 +setZCompLoc__14J3DPEBlockFullFPCUc = .text:0x800818F4; // type:function size:0xC scope:weak align:4 +getZCompLoc__14J3DPEBlockFullCFv = .text:0x80081900; // type:function size:0x8 scope:weak align:4 +setDither__14J3DPEBlockFullFUc = .text:0x80081908; // type:function size:0x8 scope:weak align:4 +setDither__14J3DPEBlockFullFPCUc = .text:0x80081910; // type:function size:0xC scope:weak align:4 +getDither__14J3DPEBlockFullCFv = .text:0x8008191C; // type:function size:0x8 scope:weak align:4 +getFogOffset__14J3DPEBlockFullCFv = .text:0x80081924; // type:function size:0x8 scope:weak align:4 +setFogOffset__14J3DPEBlockFullFUl = .text:0x8008192C; // type:function size:0x8 scope:weak align:4 +__dt__14J3DPEBlockFullFv = .text:0x80081934; // type:function size:0x5C scope:weak align:4 +diff__16J3DPEBlockFogOffFUl = .text:0x80081990; // type:function size:0x34 scope:weak align:4 +getType__16J3DPEBlockFogOffFv = .text:0x800819C4; // type:function size:0xC scope:weak align:4 +setAlphaComp__16J3DPEBlockFogOffFRC12J3DAlphaComp = .text:0x800819D0; // type:function size:0x1C scope:weak align:4 +setAlphaComp__16J3DPEBlockFogOffFPC12J3DAlphaComp = .text:0x800819EC; // type:function size:0x1C scope:weak align:4 +getAlphaComp__16J3DPEBlockFogOffFv = .text:0x80081A08; // type:function size:0x8 scope:weak align:4 +setBlend__16J3DPEBlockFogOffFRC8J3DBlend = .text:0x80081A10; // type:function size:0x24 scope:weak align:4 +setBlend__16J3DPEBlockFogOffFPC8J3DBlend = .text:0x80081A34; // type:function size:0x24 scope:weak align:4 +getBlend__16J3DPEBlockFogOffFv = .text:0x80081A58; // type:function size:0x8 scope:weak align:4 +setZMode__16J3DPEBlockFogOffF8J3DZMode = .text:0x80081A60; // type:function size:0xC scope:weak align:4 +setZMode__16J3DPEBlockFogOffFPC8J3DZMode = .text:0x80081A6C; // type:function size:0xC scope:weak align:4 +getZMode__16J3DPEBlockFogOffFv = .text:0x80081A78; // type:function size:0x8 scope:weak align:4 +setZCompLoc__16J3DPEBlockFogOffFUc = .text:0x80081A80; // type:function size:0x8 scope:weak align:4 +setZCompLoc__16J3DPEBlockFogOffFPCUc = .text:0x80081A88; // type:function size:0xC scope:weak align:4 +getZCompLoc__16J3DPEBlockFogOffCFv = .text:0x80081A94; // type:function size:0x8 scope:weak align:4 +setDither__16J3DPEBlockFogOffFUc = .text:0x80081A9C; // type:function size:0x8 scope:weak align:4 +setDither__16J3DPEBlockFogOffFPCUc = .text:0x80081AA4; // type:function size:0xC scope:weak align:4 +getDither__16J3DPEBlockFogOffCFv = .text:0x80081AB0; // type:function size:0x8 scope:weak align:4 +__dt__16J3DPEBlockFogOffFv = .text:0x80081AB8; // type:function size:0x5C scope:weak align:4 +indexToPtr__13J3DTevBlock16Fv = .text:0x80081B14; // type:function size:0xA0 scope:weak align:4 +getType__13J3DTevBlock16Fv = .text:0x80081BB4; // type:function size:0xC scope:weak align:4 +setTexNo__13J3DTevBlock16FUlUs = .text:0x80081BC0; // type:function size:0x10 scope:weak align:4 +setTexNo__13J3DTevBlock16FUlPCUs = .text:0x80081BD0; // type:function size:0x14 scope:weak align:4 +getTexNo__13J3DTevBlock16CFUl = .text:0x80081BE4; // type:function size:0x10 scope:weak align:4 +setTevOrder__13J3DTevBlock16FUl11J3DTevOrder = .text:0x80081BF4; // type:function size:0x24 scope:weak align:4 +setTevOrder__13J3DTevBlock16FUlPC11J3DTevOrder = .text:0x80081C18; // type:function size:0x24 scope:weak align:4 +getTevOrder__13J3DTevBlock16FUl = .text:0x80081C3C; // type:function size:0x14 scope:weak align:4 +setTevColor__13J3DTevBlock16FUl13J3DGXColorS10 = .text:0x80081C50; // type:function size:0x2C scope:weak align:4 +setTevColor__13J3DTevBlock16FUlPC13J3DGXColorS10 = .text:0x80081C7C; // type:function size:0x2C scope:weak align:4 +getTevColor__13J3DTevBlock16FUl = .text:0x80081CA8; // type:function size:0x14 scope:weak align:4 +setTevKColor__13J3DTevBlock16FUl10J3DGXColor = .text:0x80081CBC; // type:function size:0x2C scope:weak align:4 +setTevKColor__13J3DTevBlock16FUlPC10J3DGXColor = .text:0x80081CE8; // type:function size:0x2C scope:weak align:4 +getTevKColor__13J3DTevBlock16FUl = .text:0x80081D14; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__13J3DTevBlock16FUlUc = .text:0x80081D28; // type:function size:0xC scope:weak align:4 +setTevKColorSel__13J3DTevBlock16FUlPCUc = .text:0x80081D34; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__13J3DTevBlock16FUl = .text:0x80081D44; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__13J3DTevBlock16FUlUc = .text:0x80081D50; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__13J3DTevBlock16FUlPCUc = .text:0x80081D5C; // type:function size:0x10 scope:weak align:4 +getTevKAlphaSel__13J3DTevBlock16FUl = .text:0x80081D6C; // type:function size:0xC scope:weak align:4 +setTevStageNum__13J3DTevBlock16FUc = .text:0x80081D78; // type:function size:0x8 scope:weak align:4 +setTevStageNum__13J3DTevBlock16FPCUc = .text:0x80081D80; // type:function size:0xC scope:weak align:4 +getTevStageNum__13J3DTevBlock16CFv = .text:0x80081D8C; // type:function size:0x8 scope:weak align:4 +setTevStage__13J3DTevBlock16FUl11J3DTevStage = .text:0x80081D94; // type:function size:0x3C scope:weak align:4 +setTevStage__13J3DTevBlock16FUlPC11J3DTevStage = .text:0x80081DD0; // type:function size:0x3C scope:weak align:4 +getTevStage__13J3DTevBlock16FUl = .text:0x80081E0C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__13J3DTevBlock16FUl18J3DTevSwapModeInfo = .text:0x80081E20; // type:function size:0x38 scope:weak align:4 +setTevSwapModeInfo__13J3DTevBlock16FUlPC18J3DTevSwapModeInfo = .text:0x80081E58; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__13J3DTevBlock16FUl19J3DTevSwapModeTable = .text:0x80081E90; // type:function size:0x10 scope:weak align:4 +setTevSwapModeTable__13J3DTevBlock16FUlPC19J3DTevSwapModeTable = .text:0x80081EA0; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__13J3DTevBlock16FUl = .text:0x80081EB0; // type:function size:0x10 scope:weak align:4 +setIndTevStage__13J3DTevBlock16FUl14J3DIndTevStage = .text:0x80081EC0; // type:function size:0x14 scope:weak align:4 +setIndTevStage__13J3DTevBlock16FUlPC14J3DIndTevStage = .text:0x80081ED4; // type:function size:0x14 scope:weak align:4 +getIndTevStage__13J3DTevBlock16FUl = .text:0x80081EE8; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__13J3DTevBlock16CFv = .text:0x80081EFC; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__13J3DTevBlock16CFv = .text:0x80081F04; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__13J3DTevBlock16FUl = .text:0x80081F0C; // type:function size:0x8 scope:weak align:4 +__dt__13J3DTevBlock16Fv = .text:0x80081F14; // type:function size:0x5C scope:weak align:4 +ptrToIndex__12J3DTevBlock4Fv = .text:0x80081F70; // type:function size:0x4 scope:weak align:4 +indexToPtr__12J3DTevBlock4Fv = .text:0x80081F74; // type:function size:0xA0 scope:weak align:4 +getType__12J3DTevBlock4Fv = .text:0x80082014; // type:function size:0xC scope:weak align:4 +setTexNo__12J3DTevBlock4FUlUs = .text:0x80082020; // type:function size:0x10 scope:weak align:4 +setTexNo__12J3DTevBlock4FUlPCUs = .text:0x80082030; // type:function size:0x14 scope:weak align:4 +getTexNo__12J3DTevBlock4CFUl = .text:0x80082044; // type:function size:0x10 scope:weak align:4 +setTevOrder__12J3DTevBlock4FUl11J3DTevOrder = .text:0x80082054; // type:function size:0x24 scope:weak align:4 +setTevOrder__12J3DTevBlock4FUlPC11J3DTevOrder = .text:0x80082078; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J3DTevBlock4FUl = .text:0x8008209C; // type:function size:0x14 scope:weak align:4 +setTevColor__12J3DTevBlock4FUl13J3DGXColorS10 = .text:0x800820B0; // type:function size:0x2C scope:weak align:4 +setTevColor__12J3DTevBlock4FUlPC13J3DGXColorS10 = .text:0x800820DC; // type:function size:0x2C scope:weak align:4 +getTevColor__12J3DTevBlock4FUl = .text:0x80082108; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J3DTevBlock4FUl10J3DGXColor = .text:0x8008211C; // type:function size:0x2C scope:weak align:4 +setTevKColor__12J3DTevBlock4FUlPC10J3DGXColor = .text:0x80082148; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J3DTevBlock4FUl = .text:0x80082174; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J3DTevBlock4FUlUc = .text:0x80082188; // type:function size:0xC scope:weak align:4 +setTevKColorSel__12J3DTevBlock4FUlPCUc = .text:0x80082194; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__12J3DTevBlock4FUl = .text:0x800821A4; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock4FUlUc = .text:0x800821B0; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock4FUlPCUc = .text:0x800821BC; // type:function size:0x10 scope:weak align:4 +getTevKAlphaSel__12J3DTevBlock4FUl = .text:0x800821CC; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J3DTevBlock4FUc = .text:0x800821D8; // type:function size:0x8 scope:weak align:4 +setTevStageNum__12J3DTevBlock4FPCUc = .text:0x800821E0; // type:function size:0xC scope:weak align:4 +getTevStageNum__12J3DTevBlock4CFv = .text:0x800821EC; // type:function size:0x8 scope:weak align:4 +setTevStage__12J3DTevBlock4FUl11J3DTevStage = .text:0x800821F4; // type:function size:0x3C scope:weak align:4 +setTevStage__12J3DTevBlock4FUlPC11J3DTevStage = .text:0x80082230; // type:function size:0x3C scope:weak align:4 +getTevStage__12J3DTevBlock4FUl = .text:0x8008226C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock4FUl18J3DTevSwapModeInfo = .text:0x80082280; // type:function size:0x38 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock4FUlPC18J3DTevSwapModeInfo = .text:0x800822B8; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock4FUl19J3DTevSwapModeTable = .text:0x800822F0; // type:function size:0x10 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock4FUlPC19J3DTevSwapModeTable = .text:0x80082300; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J3DTevBlock4FUl = .text:0x80082310; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J3DTevBlock4FUl14J3DIndTevStage = .text:0x80082320; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock4FUlPC14J3DIndTevStage = .text:0x80082334; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J3DTevBlock4FUl = .text:0x80082348; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__12J3DTevBlock4CFv = .text:0x8008235C; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__12J3DTevBlock4CFv = .text:0x80082364; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__12J3DTevBlock4FUl = .text:0x8008236C; // type:function size:0x8 scope:weak align:4 +__dt__12J3DTevBlock4Fv = .text:0x80082374; // type:function size:0x5C scope:weak align:4 +ptrToIndex__12J3DTevBlock2Fv = .text:0x800823D0; // type:function size:0x4 scope:weak align:4 +indexToPtr__12J3DTevBlock2Fv = .text:0x800823D4; // type:function size:0xA0 scope:weak align:4 +getType__12J3DTevBlock2Fv = .text:0x80082474; // type:function size:0xC scope:weak align:4 +setTexNo__12J3DTevBlock2FUlUs = .text:0x80082480; // type:function size:0x10 scope:weak align:4 +setTexNo__12J3DTevBlock2FUlPCUs = .text:0x80082490; // type:function size:0x14 scope:weak align:4 +getTexNo__12J3DTevBlock2CFUl = .text:0x800824A4; // type:function size:0x10 scope:weak align:4 +setTevOrder__12J3DTevBlock2FUl11J3DTevOrder = .text:0x800824B4; // type:function size:0x24 scope:weak align:4 +setTevOrder__12J3DTevBlock2FUlPC11J3DTevOrder = .text:0x800824D8; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J3DTevBlock2FUl = .text:0x800824FC; // type:function size:0x14 scope:weak align:4 +setTevColor__12J3DTevBlock2FUl13J3DGXColorS10 = .text:0x80082510; // type:function size:0x2C scope:weak align:4 +setTevColor__12J3DTevBlock2FUlPC13J3DGXColorS10 = .text:0x8008253C; // type:function size:0x2C scope:weak align:4 +getTevColor__12J3DTevBlock2FUl = .text:0x80082568; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J3DTevBlock2FUl10J3DGXColor = .text:0x8008257C; // type:function size:0x2C scope:weak align:4 +setTevKColor__12J3DTevBlock2FUlPC10J3DGXColor = .text:0x800825A8; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J3DTevBlock2FUl = .text:0x800825D4; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J3DTevBlock2FUlUc = .text:0x800825E8; // type:function size:0xC scope:weak align:4 +setTevKColorSel__12J3DTevBlock2FUlPCUc = .text:0x800825F4; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__12J3DTevBlock2FUl = .text:0x80082604; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock2FUlUc = .text:0x80082610; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock2FUlPCUc = .text:0x8008261C; // type:function size:0x10 scope:weak align:4 +getTevKAlphaSel__12J3DTevBlock2FUl = .text:0x8008262C; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J3DTevBlock2FUc = .text:0x80082638; // type:function size:0x8 scope:weak align:4 +setTevStageNum__12J3DTevBlock2FPCUc = .text:0x80082640; // type:function size:0xC scope:weak align:4 +getTevStageNum__12J3DTevBlock2CFv = .text:0x8008264C; // type:function size:0x8 scope:weak align:4 +setTevStage__12J3DTevBlock2FUl11J3DTevStage = .text:0x80082654; // type:function size:0x3C scope:weak align:4 +setTevStage__12J3DTevBlock2FUlPC11J3DTevStage = .text:0x80082690; // type:function size:0x3C scope:weak align:4 +getTevStage__12J3DTevBlock2FUl = .text:0x800826CC; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock2FUl18J3DTevSwapModeInfo = .text:0x800826E0; // type:function size:0x38 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock2FUlPC18J3DTevSwapModeInfo = .text:0x80082718; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock2FUl19J3DTevSwapModeTable = .text:0x80082750; // type:function size:0x10 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock2FUlPC19J3DTevSwapModeTable = .text:0x80082760; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J3DTevBlock2FUl = .text:0x80082770; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J3DTevBlock2FUl14J3DIndTevStage = .text:0x80082780; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock2FUlPC14J3DIndTevStage = .text:0x80082794; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J3DTevBlock2FUl = .text:0x800827A8; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__12J3DTevBlock2CFv = .text:0x800827BC; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__12J3DTevBlock2CFv = .text:0x800827C4; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__12J3DTevBlock2FUl = .text:0x800827CC; // type:function size:0x8 scope:weak align:4 +__dt__12J3DTevBlock2Fv = .text:0x800827D4; // type:function size:0x5C scope:weak align:4 +ptrToIndex__12J3DTevBlock1Fv = .text:0x80082830; // type:function size:0x4 scope:weak align:4 +indexToPtr__12J3DTevBlock1Fv = .text:0x80082834; // type:function size:0xA0 scope:weak align:4 +getType__12J3DTevBlock1Fv = .text:0x800828D4; // type:function size:0xC scope:weak align:4 +setTexNo__12J3DTevBlock1FUlUs = .text:0x800828E0; // type:function size:0x10 scope:weak align:4 +setTexNo__12J3DTevBlock1FUlPCUs = .text:0x800828F0; // type:function size:0x14 scope:weak align:4 +getTexNo__12J3DTevBlock1CFUl = .text:0x80082904; // type:function size:0x10 scope:weak align:4 +setTevOrder__12J3DTevBlock1FUl11J3DTevOrder = .text:0x80082914; // type:function size:0x24 scope:weak align:4 +setTevOrder__12J3DTevBlock1FUlPC11J3DTevOrder = .text:0x80082938; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J3DTevBlock1FUl = .text:0x8008295C; // type:function size:0x14 scope:weak align:4 +setTevStageNum__12J3DTevBlock1FUc = .text:0x80082970; // type:function size:0x4 scope:weak align:4 +setTevStageNum__12J3DTevBlock1FPCUc = .text:0x80082974; // type:function size:0x4 scope:weak align:4 +getTevStageNum__12J3DTevBlock1CFv = .text:0x80082978; // type:function size:0x8 scope:weak align:4 +setTevStage__12J3DTevBlock1FUl11J3DTevStage = .text:0x80082980; // type:function size:0x3C scope:weak align:4 +setTevStage__12J3DTevBlock1FUlPC11J3DTevStage = .text:0x800829BC; // type:function size:0x3C scope:weak align:4 +getTevStage__12J3DTevBlock1FUl = .text:0x800829F8; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock1FUl14J3DIndTevStage = .text:0x80082A0C; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock1FUlPC14J3DIndTevStage = .text:0x80082A20; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J3DTevBlock1FUl = .text:0x80082A34; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__12J3DTevBlock1CFv = .text:0x80082A48; // type:function size:0x8 scope:weak align:4 +__dt__12J3DTevBlock1Fv = .text:0x80082A50; // type:function size:0x5C scope:weak align:4 +load__18J3DTevBlockPatchedFv = .text:0x80082AAC; // type:function size:0x4 scope:weak align:4 +indexToPtr__18J3DTevBlockPatchedFv = .text:0x80082AB0; // type:function size:0xA0 scope:weak align:4 +getType__18J3DTevBlockPatchedFv = .text:0x80082B50; // type:function size:0xC scope:weak align:4 +setTevStageNum__18J3DTevBlockPatchedFUc = .text:0x80082B5C; // type:function size:0x8 scope:weak align:4 +setTevStageNum__18J3DTevBlockPatchedFPCUc = .text:0x80082B64; // type:function size:0xC scope:weak align:4 +getTevStageNum__18J3DTevBlockPatchedCFv = .text:0x80082B70; // type:function size:0x8 scope:weak align:4 +setTexNo__18J3DTevBlockPatchedFUlUs = .text:0x80082B78; // type:function size:0x10 scope:weak align:4 +setTexNo__18J3DTevBlockPatchedFUlPCUs = .text:0x80082B88; // type:function size:0x14 scope:weak align:4 +getTexNo__18J3DTevBlockPatchedCFUl = .text:0x80082B9C; // type:function size:0x10 scope:weak align:4 +setTevOrder__18J3DTevBlockPatchedFUl11J3DTevOrder = .text:0x80082BAC; // type:function size:0x24 scope:weak align:4 +setTevOrder__18J3DTevBlockPatchedFUlPC11J3DTevOrder = .text:0x80082BD0; // type:function size:0x24 scope:weak align:4 +getTevOrder__18J3DTevBlockPatchedFUl = .text:0x80082BF4; // type:function size:0x14 scope:weak align:4 +setTevStage__18J3DTevBlockPatchedFUl11J3DTevStage = .text:0x80082C08; // type:function size:0x3C scope:weak align:4 +setTevStage__18J3DTevBlockPatchedFUlPC11J3DTevStage = .text:0x80082C44; // type:function size:0x3C scope:weak align:4 +getTevStage__18J3DTevBlockPatchedFUl = .text:0x80082C80; // type:function size:0x14 scope:weak align:4 +setIndTevStage__18J3DTevBlockPatchedFUl14J3DIndTevStage = .text:0x80082C94; // type:function size:0x14 scope:weak align:4 +setIndTevStage__18J3DTevBlockPatchedFUlPC14J3DIndTevStage = .text:0x80082CA8; // type:function size:0x14 scope:weak align:4 +getIndTevStage__18J3DTevBlockPatchedFUl = .text:0x80082CBC; // type:function size:0x14 scope:weak align:4 +setTevColor__18J3DTevBlockPatchedFUl13J3DGXColorS10 = .text:0x80082CD0; // type:function size:0x2C scope:weak align:4 +setTevColor__18J3DTevBlockPatchedFUlPC13J3DGXColorS10 = .text:0x80082CFC; // type:function size:0x2C scope:weak align:4 +getTevColor__18J3DTevBlockPatchedFUl = .text:0x80082D28; // type:function size:0x14 scope:weak align:4 +setTevKColor__18J3DTevBlockPatchedFUl10J3DGXColor = .text:0x80082D3C; // type:function size:0x2C scope:weak align:4 +setTevKColor__18J3DTevBlockPatchedFUlPC10J3DGXColor = .text:0x80082D68; // type:function size:0x2C scope:weak align:4 +getTevKColor__18J3DTevBlockPatchedFUl = .text:0x80082D94; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__18J3DTevBlockPatchedFUlUc = .text:0x80082DA8; // type:function size:0xC scope:weak align:4 +setTevKColorSel__18J3DTevBlockPatchedFUlPCUc = .text:0x80082DB4; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__18J3DTevBlockPatchedFUl = .text:0x80082DC4; // type:function size:0xC scope:weak align:4 +getTexNoOffset__18J3DTevBlockPatchedCFv = .text:0x80082DD0; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__18J3DTevBlockPatchedCFv = .text:0x80082DD8; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__18J3DTevBlockPatchedFUl = .text:0x80082DE0; // type:function size:0x8 scope:weak align:4 +__dt__18J3DTevBlockPatchedFv = .text:0x80082DE8; // type:function size:0x5C scope:weak align:4 +getType__19J3DTexGenBlockBasicFv = .text:0x80082E44; // type:function size:0xC scope:weak align:4 +setNBTScale__19J3DTexGenBlockBasicF11J3DNBTScale = .text:0x80082E50; // type:function size:0x24 scope:weak align:4 +setNBTScale__19J3DTexGenBlockBasicFPC11J3DNBTScale = .text:0x80082E74; // type:function size:0x24 scope:weak align:4 +getNBTScale__19J3DTexGenBlockBasicFv = .text:0x80082E98; // type:function size:0x8 scope:weak align:4 +__dt__19J3DTexGenBlockBasicFv = .text:0x80082EA0; // type:function size:0x6C scope:weak align:4 +setTexGenNum__21J3DTexGenBlockPatchedFUl = .text:0x80082F0C; // type:function size:0x8 scope:weak align:4 +setTexGenNum__21J3DTexGenBlockPatchedFPCUl = .text:0x80082F14; // type:function size:0xC scope:weak align:4 +getTexGenNum__21J3DTexGenBlockPatchedCFv = .text:0x80082F20; // type:function size:0x8 scope:weak align:4 +setTexCoord__21J3DTexGenBlockPatchedFUlPC11J3DTexCoord = .text:0x80082F28; // type:function size:0x24 scope:weak align:4 +getTexCoord__21J3DTexGenBlockPatchedFUl = .text:0x80082F4C; // type:function size:0x14 scope:weak align:4 +setTexMtx__21J3DTexGenBlockPatchedFUlP9J3DTexMtx = .text:0x80082F60; // type:function size:0x10 scope:weak align:4 +getTexMtx__21J3DTexGenBlockPatchedFUl = .text:0x80082F70; // type:function size:0x10 scope:weak align:4 +getTexMtxOffset__21J3DTexGenBlockPatchedCFv = .text:0x80082F80; // type:function size:0x8 scope:weak align:4 +setTexMtxOffset__21J3DTexGenBlockPatchedFUl = .text:0x80082F88; // type:function size:0x8 scope:weak align:4 +getType__15J3DTexGenBlock4Fv = .text:0x80082F90; // type:function size:0xC scope:weak align:4 +setNBTScale__15J3DTexGenBlock4F11J3DNBTScale = .text:0x80082F9C; // type:function size:0x24 scope:weak align:4 +setNBTScale__15J3DTexGenBlock4FPC11J3DNBTScale = .text:0x80082FC0; // type:function size:0x24 scope:weak align:4 +getNBTScale__15J3DTexGenBlock4Fv = .text:0x80082FE4; // type:function size:0x8 scope:weak align:4 +__dt__15J3DTexGenBlock4Fv = .text:0x80082FEC; // type:function size:0x6C scope:weak align:4 +load__21J3DTexGenBlockPatchedFv = .text:0x80083058; // type:function size:0x4 scope:weak align:4 +getType__21J3DTexGenBlockPatchedFv = .text:0x8008305C; // type:function size:0xC scope:weak align:4 +getType__20J3DColorBlockLightOnFv = .text:0x80083068; // type:function size:0xC scope:weak align:4 +setMatColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x80083074; // type:function size:0x2C scope:weak align:4 +setMatColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x800830A0; // type:function size:0x2C scope:weak align:4 +getMatColor__20J3DColorBlockLightOnFUl = .text:0x800830CC; // type:function size:0x14 scope:weak align:4 +setAmbColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x800830E0; // type:function size:0x2C scope:weak align:4 +setAmbColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x8008310C; // type:function size:0x2C scope:weak align:4 +getAmbColor__20J3DColorBlockLightOnFUl = .text:0x80083138; // type:function size:0x14 scope:weak align:4 +setColorChanNum__20J3DColorBlockLightOnFPCUc = .text:0x8008314C; // type:function size:0xC scope:weak align:4 +setColorChanNum__20J3DColorBlockLightOnFUc = .text:0x80083158; // type:function size:0x8 scope:weak align:4 +getColorChanNum__20J3DColorBlockLightOnCFv = .text:0x80083160; // type:function size:0x8 scope:weak align:4 +setColorChan__20J3DColorBlockLightOnFUlPC12J3DColorChan = .text:0x80083168; // type:function size:0x14 scope:weak align:4 +setColorChan__20J3DColorBlockLightOnFUlRC12J3DColorChan = .text:0x8008317C; // type:function size:0x14 scope:weak align:4 +getColorChan__20J3DColorBlockLightOnFUl = .text:0x80083190; // type:function size:0x14 scope:weak align:4 +setLight__20J3DColorBlockLightOnFUlP11J3DLightObj = .text:0x800831A4; // type:function size:0x10 scope:weak align:4 +getLight__20J3DColorBlockLightOnFUl = .text:0x800831B4; // type:function size:0x10 scope:weak align:4 +setCullMode__20J3DColorBlockLightOnFUc = .text:0x800831C4; // type:function size:0x8 scope:weak align:4 +setCullMode__20J3DColorBlockLightOnFPCUc = .text:0x800831CC; // type:function size:0xC scope:weak align:4 +getCullMode__20J3DColorBlockLightOnCFv = .text:0x800831D8; // type:function size:0x8 scope:weak align:4 +getMatColorOffset__20J3DColorBlockLightOnCFv = .text:0x800831E0; // type:function size:0x8 scope:weak align:4 +getColorChanOffset__20J3DColorBlockLightOnCFv = .text:0x800831E8; // type:function size:0x8 scope:weak align:4 +setMatColorOffset__20J3DColorBlockLightOnFUl = .text:0x800831F0; // type:function size:0x8 scope:weak align:4 +setColorChanOffset__20J3DColorBlockLightOnFUl = .text:0x800831F8; // type:function size:0x8 scope:weak align:4 +__dt__20J3DColorBlockLightOnFv = .text:0x80083200; // type:function size:0x5C scope:weak align:4 +getType__22J3DColorBlockAmbientOnFv = .text:0x8008325C; // type:function size:0xC scope:weak align:4 +setAmbColor__22J3DColorBlockAmbientOnFUl10J3DGXColor = .text:0x80083268; // type:function size:0x2C scope:weak align:4 +setAmbColor__22J3DColorBlockAmbientOnFUlPC10J3DGXColor = .text:0x80083294; // type:function size:0x2C scope:weak align:4 +getAmbColor__22J3DColorBlockAmbientOnFUl = .text:0x800832C0; // type:function size:0x14 scope:weak align:4 +__dt__22J3DColorBlockAmbientOnFv = .text:0x800832D4; // type:function size:0x6C scope:weak align:4 +setMatColor__21J3DColorBlockLightOffFUl10J3DGXColor = .text:0x80083340; // type:function size:0x2C scope:weak align:4 +setMatColor__21J3DColorBlockLightOffFUlPC10J3DGXColor = .text:0x8008336C; // type:function size:0x2C scope:weak align:4 +getMatColor__21J3DColorBlockLightOffFUl = .text:0x80083398; // type:function size:0x14 scope:weak align:4 +setColorChanNum__21J3DColorBlockLightOffFPCUc = .text:0x800833AC; // type:function size:0xC scope:weak align:4 +setColorChanNum__21J3DColorBlockLightOffFUc = .text:0x800833B8; // type:function size:0x8 scope:weak align:4 +getColorChanNum__21J3DColorBlockLightOffCFv = .text:0x800833C0; // type:function size:0x8 scope:weak align:4 +setColorChan__21J3DColorBlockLightOffFUlPC12J3DColorChan = .text:0x800833C8; // type:function size:0x14 scope:weak align:4 +setColorChan__21J3DColorBlockLightOffFUlRC12J3DColorChan = .text:0x800833DC; // type:function size:0x14 scope:weak align:4 +getColorChan__21J3DColorBlockLightOffFUl = .text:0x800833F0; // type:function size:0x14 scope:weak align:4 +setCullMode__21J3DColorBlockLightOffFUc = .text:0x80083404; // type:function size:0x8 scope:weak align:4 +setCullMode__21J3DColorBlockLightOffFPCUc = .text:0x8008340C; // type:function size:0xC scope:weak align:4 +getCullMode__21J3DColorBlockLightOffCFv = .text:0x80083418; // type:function size:0x8 scope:weak align:4 +getMatColorOffset__21J3DColorBlockLightOffCFv = .text:0x80083420; // type:function size:0x8 scope:weak align:4 +getColorChanOffset__21J3DColorBlockLightOffCFv = .text:0x80083428; // type:function size:0x8 scope:weak align:4 +setMatColorOffset__21J3DColorBlockLightOffFUl = .text:0x80083430; // type:function size:0x8 scope:weak align:4 +setColorChanOffset__21J3DColorBlockLightOffFUl = .text:0x80083438; // type:function size:0x8 scope:weak align:4 +getType__13J3DPEBlockXluFv = .text:0x80083440; // type:function size:0xC scope:weak align:4 +__dt__13J3DPEBlockXluFv = .text:0x8008344C; // type:function size:0x5C scope:weak align:4 +getType__17J3DPEBlockTexEdgeFv = .text:0x800834A8; // type:function size:0xC scope:weak align:4 +__dt__17J3DPEBlockTexEdgeFv = .text:0x800834B4; // type:function size:0x5C scope:weak align:4 +getType__13J3DPEBlockOpaFv = .text:0x80083510; // type:function size:0xC scope:weak align:4 +__dt__13J3DPEBlockOpaFv = .text:0x8008351C; // type:function size:0x5C scope:weak align:4 +getType__15J3DIndBlockFullFv = .text:0x80083578; // type:function size:0xC scope:weak align:4 +setIndTexStageNum__15J3DIndBlockFullFUc = .text:0x80083584; // type:function size:0x8 scope:weak align:4 +getIndTexStageNum__15J3DIndBlockFullCFv = .text:0x8008358C; // type:function size:0x8 scope:weak align:4 +setIndTexOrder__15J3DIndBlockFullFUl14J3DIndTexOrder = .text:0x80083594; // type:function size:0x1C scope:weak align:4 +setIndTexOrder__15J3DIndBlockFullFUlPC14J3DIndTexOrder = .text:0x800835B0; // type:function size:0x1C scope:weak align:4 +getIndTexOrder__15J3DIndBlockFullFUl = .text:0x800835CC; // type:function size:0x14 scope:weak align:4 +setIndTexMtx__15J3DIndBlockFullFUl12J3DIndTexMtx = .text:0x800835E0; // type:function size:0x44 scope:weak align:4 +setIndTexMtx__15J3DIndBlockFullFUlPC12J3DIndTexMtx = .text:0x80083624; // type:function size:0x44 scope:weak align:4 +getIndTexMtx__15J3DIndBlockFullFUl = .text:0x80083668; // type:function size:0x14 scope:weak align:4 +setIndTexCoordScale__15J3DIndBlockFullFUl19J3DIndTexCoordScale = .text:0x8008367C; // type:function size:0x1C scope:weak align:4 +setIndTexCoordScale__15J3DIndBlockFullFUlPC19J3DIndTexCoordScale = .text:0x80083698; // type:function size:0x1C scope:weak align:4 +getIndTexCoordScale__15J3DIndBlockFullFUl = .text:0x800836B4; // type:function size:0x14 scope:weak align:4 +__dt__15J3DIndBlockFullFv = .text:0x800836C8; // type:function size:0x9C scope:weak align:4 +getType__21J3DColorBlockLightOffFv = .text:0x80083764; // type:function size:0xC scope:weak align:4 +__sinit_J3DMatBlock_cpp = .text:0x80083770; // type:function size:0x24 scope:local align:4 +clear__12J3DModelDataFv = .text:0x80083794; // type:function size:0x18 scope:global align:4 +__ct__12J3DModelDataFv = .text:0x800837AC; // type:function size:0x80 scope:global align:4 +__dt__13J3DShapeTableFv = .text:0x8008382C; // type:function size:0x48 scope:weak align:4 +__dt__12J3DJointTreeFv = .text:0x80083874; // type:function size:0x64 scope:weak align:4 +newSharedDisplayList__12J3DModelDataFUl = .text:0x800838D8; // type:function size:0x94 scope:global align:4 +indexToPtr__12J3DModelDataFv = .text:0x8008396C; // type:function size:0xC4 scope:global align:4 +makeSharedDL__12J3DModelDataFv = .text:0x80083A30; // type:function size:0x80 scope:global align:4 +simpleCalcMaterial__12J3DModelDataFUsPA4_f = .text:0x80083AB0; // type:function size:0xC8 scope:global align:4 +syncJ3DSysFlags__12J3DModelDataCFv = .text:0x80083B78; // type:function size:0x3C scope:global align:4 +__dt__12J3DModelDataFv = .text:0x80083BB4; // type:function size:0x98 scope:weak align:4 +clear__16J3DMaterialTableFv = .text:0x80083C4C; // type:function size:0x28 scope:global align:4 +__ct__16J3DMaterialTableFv = .text:0x80083C74; // type:function size:0x34 scope:global align:4 +__dt__16J3DMaterialTableFv = .text:0x80083CA8; // type:function size:0x48 scope:global align:4 +__ct__14J3DMatColorAnmFv = .text:0x80083CF0; // type:function size:0x18 scope:weak align:4 +__ct__11J3DTexNoAnmFv = .text:0x80083D08; // type:function size:0x24 scope:weak align:4 +allocTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKeyPP12J3DTexMtxAnm = .text:0x80083D2C; // type:function size:0x1C4 scope:global align:4 +__ct__12J3DTexMtxAnmFv = .text:0x80083EF0; // type:function size:0x18 scope:weak align:4 +allocTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKeyPP14J3DTevColorAnmPP15J3DTevKColorAnm = .text:0x80083F08; // type:function size:0x32C scope:global align:4 +__ct__15J3DTevKColorAnmFv = .text:0x80084234; // type:function size:0x18 scope:weak align:4 +__ct__14J3DTevColorAnmFv = .text:0x8008424C; // type:function size:0x18 scope:weak align:4 +removeTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x80084264; // type:function size:0xAC scope:global align:4 +removeTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x80084310; // type:function size:0x11C scope:global align:4 +entryMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor = .text:0x8008442C; // type:function size:0xBC scope:global align:4 +entryTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x800844E8; // type:function size:0x380 scope:global align:4 +entryTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x80084868; // type:function size:0x198 scope:global align:4 +__ct__22J3DMaterialFactory_v21FRC20J3DMaterialBlock_v21 = .text:0x80084A00; // type:function size:0x1E0 scope:global align:4 +countUniqueMaterials__22J3DMaterialFactory_v21Fv = .text:0x80084BE0; // type:function size:0x4C scope:global align:4 +create__22J3DMaterialFactory_v21CFP11J3DMaterialiUl = .text:0x80084C2C; // type:function size:0x838 scope:global align:4 +newMatColor__22J3DMaterialFactory_v21CFii = .text:0x80085464; // type:function size:0x90 scope:global align:4 +newColorChanNum__22J3DMaterialFactory_v21CFi = .text:0x800854F4; // type:function size:0x38 scope:global align:4 +newColorChan__22J3DMaterialFactory_v21CFii = .text:0x8008552C; // type:function size:0x194 scope:global align:4 +newTexGenNum__22J3DMaterialFactory_v21CFi = .text:0x800856C0; // type:function size:0x38 scope:global align:4 +newTexCoord__22J3DMaterialFactory_v21CFii = .text:0x800856F8; // type:function size:0x84 scope:global align:4 +newTexMtx__22J3DMaterialFactory_v21CFii = .text:0x8008577C; // type:function size:0x158 scope:global align:4 +newCullMode__22J3DMaterialFactory_v21CFi = .text:0x800858D4; // type:function size:0x40 scope:global align:4 +newTexNo__22J3DMaterialFactory_v21CFii = .text:0x80085914; // type:function size:0x48 scope:global align:4 +newTevOrder__22J3DMaterialFactory_v21CFii = .text:0x8008595C; // type:function size:0x74 scope:global align:4 +newTevColor__22J3DMaterialFactory_v21CFii = .text:0x800859D0; // type:function size:0x98 scope:global align:4 +newTevKColor__22J3DMaterialFactory_v21CFii = .text:0x80085A68; // type:function size:0x90 scope:global align:4 +newTevStageNum__22J3DMaterialFactory_v21CFi = .text:0x80085AF8; // type:function size:0x38 scope:global align:4 +newTevStage__22J3DMaterialFactory_v21CFii = .text:0x80085B30; // type:function size:0x60 scope:global align:4 +newTevSwapModeTable__22J3DMaterialFactory_v21CFii = .text:0x80085B90; // type:function size:0x9C scope:global align:4 +newFog__22J3DMaterialFactory_v21CFi = .text:0x80085C2C; // type:function size:0x24C scope:global align:4 +newAlphaComp__22J3DMaterialFactory_v21CFi = .text:0x80085E78; // type:function size:0x80 scope:global align:4 +newBlend__22J3DMaterialFactory_v21CFi = .text:0x80085EF8; // type:function size:0x7C scope:global align:4 +newZMode__22J3DMaterialFactory_v21CFi = .text:0x80085F74; // type:function size:0x60 scope:global align:4 +newZCompLoc__22J3DMaterialFactory_v21CFi = .text:0x80085FD4; // type:function size:0x38 scope:global align:4 +newDither__22J3DMaterialFactory_v21CFi = .text:0x8008600C; // type:function size:0x38 scope:global align:4 +newNBTScale__22J3DMaterialFactory_v21CFi = .text:0x80086044; // type:function size:0xA8 scope:global align:4 +JSUConvertOffsetToPtr<23J3DMaterialInitData_v21>__FPCvPCv = .text:0x800860EC; // type:function size:0x18 scope:weak align:4 +resetMtxLoadCache__11J3DShapeMtxFv = .text:0x80086104; // type:function size:0x3C scope:global align:4 +loadMtxIndx_PNGP__11J3DShapeMtxCFiUs = .text:0x80086140; // type:function size:0x44 scope:global align:4 +loadMtxIndx_PCPU__11J3DShapeMtxCFiUs = .text:0x80086184; // type:function size:0x60 scope:global align:4 +loadMtxIndx_NCPU__11J3DShapeMtxCFiUs = .text:0x800861E4; // type:function size:0x4C scope:global align:4 +loadMtxIndx_PNCPU__11J3DShapeMtxCFiUs = .text:0x80086230; // type:function size:0x58 scope:global align:4 +loadExecute__17J3DDifferedTexMtxFPA4_Cf = .text:0x80086288; // type:function size:0x588 scope:global align:4 +loadMtxConcatView_PNGP__21J3DShapeMtxConcatViewCFiUs = .text:0x80086810; // type:function size:0xA8 scope:global align:4 +loadMtxConcatView_PCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x800868B8; // type:function size:0xB4 scope:global align:4 +loadMtxConcatView_NCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x8008696C; // type:function size:0xA8 scope:global align:4 +loadMtxConcatView_PNCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80086A14; // type:function size:0xB4 scope:global align:4 +loadMtxConcatView_PNGP_LOD__21J3DShapeMtxConcatViewCFiUs = .text:0x80086AC8; // type:function size:0xD4 scope:global align:4 +load__11J3DShapeMtxCFv = .text:0x80086B9C; // type:function size:0x5C scope:global align:4 +calcNBTScale__11J3DShapeMtxFRC3VecPA3_A3_fPA3_A3_f = .text:0x80086BF8; // type:function size:0x64 scope:global align:4 +load__21J3DShapeMtxConcatViewCFv = .text:0x80086C5C; // type:function size:0xD4 scope:global align:4 +loadNrmMtx__21J3DShapeMtxConcatViewCFiUsPA4_f = .text:0x80086D30; // type:function size:0x124 scope:global align:4 +load__16J3DShapeMtxMultiCFv = .text:0x80086E54; // type:function size:0xAC scope:global align:4 +calcNBTScale__16J3DShapeMtxMultiFRC3VecPA3_A3_fPA3_A3_f = .text:0x80086F00; // type:function size:0xB0 scope:global align:4 +load__26J3DShapeMtxMultiConcatViewCFv = .text:0x80086FB0; // type:function size:0x1EC scope:global align:4 +loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUsPA4_f = .text:0x8008719C; // type:function size:0x138 scope:global align:4 +load__27J3DShapeMtxBBoardConcatViewCFv = .text:0x800872D4; // type:function size:0x134 scope:global align:4 +load__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x80087408; // type:function size:0x13C scope:global align:4 +__dt__28J3DShapeMtxYBBoardConcatViewFv = .text:0x80087544; // type:function size:0x6C scope:weak align:4 +getType__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x800875B0; // type:function size:0xC scope:weak align:4 +loadNrmMtx__21J3DShapeMtxConcatViewCFiUs = .text:0x800875BC; // type:function size:0x4 scope:weak align:4 +__dt__27J3DShapeMtxBBoardConcatViewFv = .text:0x800875C0; // type:function size:0x6C scope:weak align:4 +getType__27J3DShapeMtxBBoardConcatViewCFv = .text:0x8008762C; // type:function size:0xC scope:weak align:4 +__dt__26J3DShapeMtxMultiConcatViewFv = .text:0x80087638; // type:function size:0x6C scope:weak align:4 +getType__26J3DShapeMtxMultiConcatViewCFv = .text:0x800876A4; // type:function size:0xC scope:weak align:4 +getUseMtxNum__26J3DShapeMtxMultiConcatViewCFv = .text:0x800876B0; // type:function size:0x8 scope:weak align:4 +getUseMtxIndex__26J3DShapeMtxMultiConcatViewCFUs = .text:0x800876B8; // type:function size:0x10 scope:weak align:4 +loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUs = .text:0x800876C8; // type:function size:0x4 scope:weak align:4 +__dt__16J3DShapeMtxMultiFv = .text:0x800876CC; // type:function size:0x5C scope:weak align:4 +getType__16J3DShapeMtxMultiCFv = .text:0x80087728; // type:function size:0xC scope:weak align:4 +getUseMtxNum__16J3DShapeMtxMultiCFv = .text:0x80087734; // type:function size:0x8 scope:weak align:4 +getUseMtxIndex__16J3DShapeMtxMultiCFUs = .text:0x8008773C; // type:function size:0x10 scope:weak align:4 +getType__21J3DShapeMtxConcatViewCFv = .text:0x8008774C; // type:function size:0xC scope:weak align:4 +__sinit_J3DShapeMtx_cpp = .text:0x80087758; // type:function size:0x1A8 scope:local align:4 +countMaterialNum__14J3DModelLoaderFPCv = .text:0x80087900; // type:function size:0x40 scope:global align:4 +calcLoadSize__14J3DModelLoaderFPCvUl = .text:0x80087940; // type:function size:0x1B0 scope:global align:4 +calcLoadMaterialTableSize__14J3DModelLoaderFPCv = .text:0x80087AF0; // type:function size:0xCC scope:global align:4 +calcLoadBinaryDisplayListSize__14J3DModelLoaderFPCvUl = .text:0x80087BBC; // type:function size:0x210 scope:global align:4 +calcSizeInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x80087DCC; // type:function size:0x90 scope:global align:4 +calcSizeJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x80087E5C; // type:function size:0x2C scope:global align:4 +calcSizeEnvelope__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x80087E88; // type:function size:0x10 scope:global align:4 +calcSizeDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x80087E98; // type:function size:0x14 scope:global align:4 +calcSizeMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x80087EAC; // type:function size:0xE4 scope:global align:4 +calcSizeShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x80087F90; // type:function size:0xB4 scope:global align:4 +calcSizeTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x80088044; // type:function size:0x1C scope:global align:4 +calcSizeMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x80088060; // type:function size:0xA0 scope:global align:4 +calcSizeTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x80088100; // type:function size:0x1C scope:global align:4 +calcSizePatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x8008811C; // type:function size:0xA0 scope:global align:4 +calcSizeMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x800881BC; // type:function size:0xD0 scope:global align:4 +__ct__12J3DJointTreeFv = .text:0x8008828C; // type:function size:0x84 scope:global align:4 +makeHierarchy__12J3DJointTreeFP8J3DJointPPC17J3DModelHierarchyP16J3DMaterialTableP13J3DShapeTable = .text:0x80088310; // type:function size:0x15C scope:global align:4 +findImportantMtxIndex__12J3DJointTreeFv = .text:0x8008846C; // type:function size:0x174 scope:global align:4 +calc__12J3DJointTreeFP12J3DMtxBufferRC3VecRA3_A4_Cf = .text:0x800885E0; // type:function size:0x70 scope:global align:4 +setMtxBuffer__10J3DMtxCalcFP12J3DMtxBuffer = .text:0x80088650; // type:function size:0x8 scope:weak align:4 +deform__13J3DSkinDeformFP8J3DModel = .text:0x80088658; // type:function size:0x88 scope:global align:4 +calc__15J3DVtxColorCalcFP8J3DModel = .text:0x800886E0; // type:function size:0x30 scope:global align:4 +calc__15J3DVtxColorCalcFP15J3DVertexBuffer = .text:0x80088710; // type:function size:0xF4 scope:global align:4 +__dt__15J3DVtxColorCalcFv = .text:0x80088804; // type:function size:0x48 scope:weak align:4 +__ct__12J3DShapeDrawFPCUcUl = .text:0x8008884C; // type:function size:0x18 scope:global align:4 +draw__12J3DShapeDrawCFv = .text:0x80088864; // type:function size:0x2C scope:global align:4 +__dt__12J3DShapeDrawFv = .text:0x80088890; // type:function size:0x48 scope:weak align:4 +initialize__12J3DMtxBufferFv = .text:0x800888D8; // type:function size:0x40 scope:global align:4 +create__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80088918; // type:function size:0x11C scope:global align:4 +createAnmMtx__12J3DMtxBufferFP12J3DModelData = .text:0x80088A34; // type:function size:0x5C scope:global align:4 +createWeightEnvelopeMtx__12J3DMtxBufferFP12J3DModelData = .text:0x80088A90; // type:function size:0x5C scope:global align:4 +setNoUseDrawMtx__12J3DMtxBufferFv = .text:0x80088AEC; // type:function size:0x2C scope:global align:4 +createDoubleDrawMtx__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80088B18; // type:function size:0xE0 scope:global align:4 +createBumpMtxArray__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80088BF8; // type:function size:0x214 scope:global align:4 +calcWeightEnvelopeMtx__12J3DMtxBufferFv = .text:0x80088E0C; // type:function size:0x220 scope:global align:4 +calcDrawMtx__12J3DMtxBufferFUlRC3VecRA3_A4_Cf = .text:0x8008902C; // type:function size:0x304 scope:global align:4 +calcNrmMtx__12J3DMtxBufferFv = .text:0x80089330; // type:function size:0x1BC scope:global align:4 +calcBBoardMtx__12J3DMtxBufferFv = .text:0x800894EC; // type:function size:0x178 scope:global align:4 +initShapeNodes__13J3DShapeTableFP14J3DDrawMtxDataP13J3DVertexData = .text:0x80089664; // type:function size:0x64 scope:global align:4 +sortVcdVatCmd__13J3DShapeTableFv = .text:0x800896C8; // type:function size:0x94 scope:global align:4 +init__9JFWSystemFv = .text:0x8008975C; // type:function size:0x350 scope:global align:4 +__dt__10JFWDisplayFv = .text:0x80089AAC; // type:function size:0x7C scope:global align:4 +createManager__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x80089B28; // type:function size:0x11C scope:global align:4 +destroyManager__10JFWDisplayFv = .text:0x80089C44; // type:function size:0x44 scope:global align:4 +beginRender__10JFWDisplayFv = .text:0x80089C88; // type:function size:0x478 scope:global align:4 +endRender__10JFWDisplayFv = .text:0x8008A100; // type:function size:0x340 scope:global align:4 +endFrame__10JFWDisplayFv = .text:0x8008A440; // type:function size:0x198 scope:global align:4 +waitBlanking__10JFWDisplayFi = .text:0x8008A5D8; // type:function size:0x50 scope:global align:4 +waitForTick__FUlUs = .text:0x8008A628; // type:function size:0x120 scope:local align:4 +JFWThreadAlarmHandler__FP7OSAlarmP9OSContext = .text:0x8008A748; // type:function size:0x40 scope:local align:4 +threadSleep__10JFWDisplayFx = .text:0x8008A788; // type:function size:0xBC scope:global align:4 +clearEfb_init__10JFWDisplayFv = .text:0x8008A844; // type:function size:0x74 scope:global align:4 +clearEfb__10JFWDisplayF8_GXColor = .text:0x8008A8B8; // type:function size:0x44 scope:global align:4 +clearEfb__10JFWDisplayFiiii8_GXColor = .text:0x8008A8FC; // type:function size:0x370 scope:global align:4 +calcCombinationRatio__10JFWDisplayFv = .text:0x8008AC6C; // type:function size:0x8C scope:global align:4 +JFWDrawDoneAlarm__Fv = .text:0x8008ACF8; // type:function size:0xF0 scope:local align:4 +JFWGXAbortAlarmHandler__FP7OSAlarmP9OSContext = .text:0x8008ADE8; // type:function size:0x40 scope:local align:4 +diagnoseGpHang__Fv = .text:0x8008AE28; // type:function size:0x1BC scope:local align:4 +setForOSResetSystem__10JFWDisplayFv = .text:0x8008AFE4; // type:function size:0x94 scope:global align:4 +__sinit_JFWDisplay_cpp = .text:0x8008B078; // type:function size:0x48 scope:local align:4 +__dt__18JSUList<8JFWAlarm>Fv = .text:0x8008B0C0; // type:function size:0x54 scope:weak align:4 +JPASetPointSize__FP18JPAEmitterWorkData = .text:0x8008B114; // type:function size:0x3C scope:global align:4 +JPASetLineWidth__FP18JPAEmitterWorkData = .text:0x8008B150; // type:function size:0x3C scope:global align:4 +JPASetPointSize__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B18C; // type:function size:0x44 scope:global align:4 +JPASetLineWidth__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B1D0; // type:function size:0x44 scope:global align:4 +JPARegistPrm__FP18JPAEmitterWorkData = .text:0x8008B214; // type:function size:0x9C scope:global align:4 +JPARegistEnv__FP18JPAEmitterWorkData = .text:0x8008B2B0; // type:function size:0x84 scope:global align:4 +JPARegistPrmEnv__FP18JPAEmitterWorkData = .text:0x8008B334; // type:function size:0x118 scope:global align:4 +JPARegistAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B44C; // type:function size:0xB0 scope:global align:4 +JPARegistPrmAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B4FC; // type:function size:0xB0 scope:global align:4 +JPARegistPrmAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B5AC; // type:function size:0x134 scope:global align:4 +JPARegistAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B6E0; // type:function size:0x124 scope:global align:4 +JPARegistEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B804; // type:function size:0x84 scope:global align:4 +JPACalcClrIdxNormal__FP18JPAEmitterWorkData = .text:0x8008B888; // type:function size:0x2C scope:global align:4 +JPACalcClrIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B8B4; // type:function size:0x28 scope:global align:4 +JPACalcClrIdxRepeat__FP18JPAEmitterWorkData = .text:0x8008B8DC; // type:function size:0x30 scope:global align:4 +JPACalcClrIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B90C; // type:function size:0x3C scope:global align:4 +JPACalcClrIdxReverse__FP18JPAEmitterWorkData = .text:0x8008B948; // type:function size:0x40 scope:global align:4 +JPACalcClrIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B988; // type:function size:0x4C scope:global align:4 +JPACalcClrIdxMerge__FP18JPAEmitterWorkData = .text:0x8008B9D4; // type:function size:0xC scope:global align:4 +JPACalcClrIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B9E0; // type:function size:0x70 scope:global align:4 +JPACalcClrIdxRandom__FP18JPAEmitterWorkData = .text:0x8008BA50; // type:function size:0xC scope:global align:4 +JPACalcClrIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BA5C; // type:function size:0x34 scope:global align:4 +JPACalcPrm__FP18JPAEmitterWorkData = .text:0x8008BA90; // type:function size:0x40 scope:global align:4 +JPACalcPrm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BAD0; // type:function size:0x3C scope:global align:4 +JPACalcEnv__FP18JPAEmitterWorkData = .text:0x8008BB0C; // type:function size:0x40 scope:global align:4 +JPACalcEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BB4C; // type:function size:0x3C scope:global align:4 +JPACalcColorCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BB88; // type:function size:0x48 scope:global align:4 +JPAGenTexCrdMtxIdt__FP18JPAEmitterWorkData = .text:0x8008BBD0; // type:function size:0x38 scope:global align:4 +JPAGenTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8008BC08; // type:function size:0x38 scope:global align:4 +JPAGenTexCrdMtxPrj__FP18JPAEmitterWorkData = .text:0x8008BC40; // type:function size:0x38 scope:global align:4 +JPAGenCalcTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8008BC78; // type:function size:0x198 scope:global align:4 +JPALoadCalcTexCrdMtxAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BE10; // type:function size:0x170 scope:global align:4 +JPALoadTex__FP18JPAEmitterWorkData = .text:0x8008BF80; // type:function size:0x54 scope:global align:4 +JPALoadTexAnm__FP18JPAEmitterWorkData = .text:0x8008BFD4; // type:function size:0x50 scope:global align:4 +JPALoadTexAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C024; // type:function size:0x4C scope:global align:4 +JPACalcTexIdxNormal__FP18JPAEmitterWorkData = .text:0x8008C070; // type:function size:0x3C scope:global align:4 +JPACalcTexIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C0AC; // type:function size:0x38 scope:global align:4 +JPACalcTexIdxRepeat__FP18JPAEmitterWorkData = .text:0x8008C0E4; // type:function size:0x38 scope:global align:4 +JPACalcTexIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C11C; // type:function size:0x44 scope:global align:4 +JPACalcTexIdxReverse__FP18JPAEmitterWorkData = .text:0x8008C160; // type:function size:0x50 scope:global align:4 +JPACalcTexIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C1B0; // type:function size:0x5C scope:global align:4 +JPACalcTexIdxMerge__FP18JPAEmitterWorkData = .text:0x8008C20C; // type:function size:0x1C scope:global align:4 +JPACalcTexIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C228; // type:function size:0x78 scope:global align:4 +JPACalcTexIdxRandom__FP18JPAEmitterWorkData = .text:0x8008C2A0; // type:function size:0x1C scope:global align:4 +JPACalcTexIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C2BC; // type:function size:0x3C scope:global align:4 +JPALoadPosMtxCam__FP18JPAEmitterWorkData = .text:0x8008C2F8; // type:function size:0x28 scope:global align:4 +noLoadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8008C320; // type:function size:0x4 scope:local align:4 +loadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8008C324; // type:function size:0x38 scope:local align:4 +loadPrjAnm__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8008C35C; // type:function size:0x1AC scope:local align:4 +JPADrawBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C508; // type:function size:0xE8 scope:global align:4 +JPADrawRotBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C5F0; // type:function size:0x118 scope:global align:4 +JPADrawYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C708; // type:function size:0xFC scope:global align:4 +JPADrawRotYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C804; // type:function size:0x130 scope:global align:4 +dirTypeVel__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C934; // type:function size:0x1C scope:local align:4 +dirTypePos__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C950; // type:function size:0x1C scope:local align:4 +dirTypePosInv__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C96C; // type:function size:0x40 scope:local align:4 +dirTypeEmtrDir__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C9AC; // type:function size:0x1C scope:local align:4 +dirTypePrevPtcl__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C9C8; // type:function size:0xC0 scope:local align:4 +rotTypeY__FffRA3_A4_f = .text:0x8008CA88; // type:function size:0x40 scope:local align:4 +rotTypeX__FffRA3_A4_f = .text:0x8008CAC8; // type:function size:0x40 scope:local align:4 +rotTypeZ__FffRA3_A4_f = .text:0x8008CB08; // type:function size:0x40 scope:local align:4 +rotTypeXYZ__FffRA3_A4_f = .text:0x8008CB48; // type:function size:0x5C scope:local align:4 +basePlaneTypeXY__FPA4_fff = .text:0x8008CBA4; // type:function size:0x4C scope:local align:4 +basePlaneTypeXZ__FPA4_fff = .text:0x8008CBF0; // type:function size:0x4C scope:local align:4 +basePlaneTypeX__FPA4_fff = .text:0x8008CC3C; // type:function size:0x70 scope:local align:4 +JPADrawDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008CCAC; // type:function size:0x350 scope:global align:4 +JPADrawRotDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008CFFC; // type:function size:0x3FC scope:global align:4 +JPADrawDBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D3F8; // type:function size:0x208 scope:global align:4 +JPADrawRotation__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D600; // type:function size:0x150 scope:global align:4 +JPADrawPoint__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D750; // type:function size:0x9C scope:global align:4 +JPADrawLine__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D7EC; // type:function size:0x1B8 scope:global align:4 +getNext__FP26JPANode<15JPABaseParticle> = .text:0x8008D9A4; // type:function size:0x8 scope:local align:4 +getPrev__FP26JPANode<15JPABaseParticle> = .text:0x8008D9AC; // type:function size:0x8 scope:local align:4 +JPADrawStripe__FP18JPAEmitterWorkData = .text:0x8008D9B4; // type:function size:0x588 scope:global align:4 +JPADrawStripeX__FP18JPAEmitterWorkData = .text:0x8008DF3C; // type:function size:0x9AC scope:global align:4 +JPADrawEmitterCallBackB__FP18JPAEmitterWorkData = .text:0x8008E8E8; // type:function size:0x3C scope:global align:4 +JPADrawParticleCallBack__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008E924; // type:function size:0x44 scope:global align:4 +draw__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8008E968; // type:function size:0x4 scope:weak align:4 +makeColorTable__FPP8_GXColorPC16JPAClrAnmKeyDataUcsP7JKRHeap = .text:0x8008E96C; // type:function size:0x284 scope:local align:4 +__ct__12JPABaseShapeFPCUcP7JKRHeap = .text:0x8008EBF0; // type:function size:0x114 scope:global align:4 +setGX__12JPABaseShapeCFP18JPAEmitterWorkData = .text:0x8008ED04; // type:function size:0x140 scope:global align:4 +JPARegistChildPrmEnv__FP18JPAEmitterWorkData = .text:0x8008EE44; // type:function size:0x128 scope:global align:4 +JPACalcChildAlphaOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008EF6C; // type:function size:0x2C scope:global align:4 +JPACalcChildScaleOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008EF98; // type:function size:0x30 scope:global align:4 +__ct__13JPAChildShapeFPCUc = .text:0x8008EFC8; // type:function size:0x8 scope:global align:4 +JPAVolumePoint__FP18JPAEmitterWorkData = .text:0x8008EFD0; // type:function size:0xDC scope:local align:4 +JPAVolumeLine__FP18JPAEmitterWorkData = .text:0x8008F0AC; // type:function size:0x11C scope:local align:4 +JPAVolumeCircle__FP18JPAEmitterWorkData = .text:0x8008F1C8; // type:function size:0x1B4 scope:local align:4 +JPAVolumeCube__FP18JPAEmitterWorkData = .text:0x8008F37C; // type:function size:0x118 scope:local align:4 +JPAVolumeSphere__FP18JPAEmitterWorkData = .text:0x8008F494; // type:function size:0x28C scope:local align:4 +JPAVolumeCylinder__FP18JPAEmitterWorkData = .text:0x8008F720; // type:function size:0x184 scope:local align:4 +JPAVolumeTorus__FP18JPAEmitterWorkData = .text:0x8008F8A4; // type:function size:0x128 scope:local align:4 +__ct__16JPADynamicsBlockFPCUc = .text:0x8008F9CC; // type:function size:0x34 scope:global align:4 +init__16JPADynamicsBlockFv = .text:0x8008FA00; // type:function size:0x9C scope:global align:4 +create__16JPADynamicsBlockFP18JPAEmitterWorkData = .text:0x8008FA9C; // type:function size:0x200 scope:global align:4 +__dt__18JPAEmitterCallBackFv = .text:0x8008FC9C; // type:function size:0x48 scope:global align:4 +init__14JPABaseEmitterFP17JPAEmitterManagerP11JPAResource = .text:0x8008FCE4; // type:function size:0x35C scope:global align:4 +createParticle__14JPABaseEmitterFv = .text:0x80090040; // type:function size:0x11C scope:global align:4 +createChild__14JPABaseEmitterFP15JPABaseParticle = .text:0x8009015C; // type:function size:0xFC scope:global align:4 +deleteAllParticle__14JPABaseEmitterFv = .text:0x80090258; // type:function size:0x174 scope:global align:4 +processTillStartFrame__14JPABaseEmitterFv = .text:0x800903CC; // type:function size:0x40 scope:global align:4 +processTermination__14JPABaseEmitterFv = .text:0x8009040C; // type:function size:0x9C scope:global align:4 +calcEmitterGlobalPosition__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x800904A8; // type:function size:0x80 scope:global align:4 +getCurrentCreateNumber__14JPABaseEmitterCFv = .text:0x80090528; // type:function size:0x10 scope:global align:4 +__ct__17JPAEmitterManagerFUlUlP7JKRHeapUcUc = .text:0x80090538; // type:function size:0x1FC scope:global align:4 +__ct__25JSUList<14JPABaseEmitter>Fv = .text:0x80090734; // type:function size:0x30 scope:weak align:4 +__dt__26JPANode<15JPABaseParticle>Fv = .text:0x80090764; // type:function size:0x3C scope:weak align:4 +__ct__26JPANode<15JPABaseParticle>Fv = .text:0x800907A0; // type:function size:0x10 scope:weak align:4 +__dt__14JPABaseEmitterFv = .text:0x800907B0; // type:function size:0x60 scope:weak align:4 +__ct__14JPABaseEmitterFv = .text:0x80090810; // type:function size:0x58 scope:weak align:4 +__dt__25JSUList<14JPABaseEmitter>Fv = .text:0x80090868; // type:function size:0x54 scope:weak align:4 +createSimpleEmitterID__17JPAEmitterManagerFRCQ29JGeometry8TVec3UsUcUcP18JPAEmitterCallBackP19JPAParticleCallBack = .text:0x800908BC; // type:function size:0xDC scope:global align:4 +calc__17JPAEmitterManagerFv = .text:0x80090998; // type:function size:0xB0 scope:global align:4 +draw__17JPAEmitterManagerFPC11JPADrawInfoUc = .text:0x80090A48; // type:function size:0x200 scope:global align:4 +forceDeleteAllEmitter__17JPAEmitterManagerFv = .text:0x80090C48; // type:function size:0x58 scope:global align:4 +forceDeleteGroupEmitter__17JPAEmitterManagerFUc = .text:0x80090CA0; // type:function size:0x60 scope:global align:4 +forceDeleteEmitter__17JPAEmitterManagerFP14JPABaseEmitter = .text:0x80090D00; // type:function size:0x6C scope:global align:4 +entryResourceManager__17JPAEmitterManagerFP18JPAResourceManagerUc = .text:0x80090D6C; // type:function size:0x10 scope:global align:4 +clearResourceManager__17JPAEmitterManagerFUc = .text:0x80090D7C; // type:function size:0xC8 scope:global align:4 +calcYBBCam__17JPAEmitterManagerFv = .text:0x80090E44; // type:function size:0xE8 scope:global align:4 +JPALoadExTex__FP18JPAEmitterWorkData = .text:0x80090F2C; // type:function size:0xFC scope:global align:4 +__ct__13JPAExTexShapeFPCUc = .text:0x80091028; // type:function size:0x8 scope:global align:4 +JPACalcScaleX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091030; // type:function size:0x70 scope:global align:4 +JPACalcScaleY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x800910A0; // type:function size:0x70 scope:global align:4 +JPACalcScaleCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091110; // type:function size:0xC scope:global align:4 +JPACalcScaleAnmNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8009111C; // type:function size:0xC scope:global align:4 +JPACalcScaleAnmRepeatX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091128; // type:function size:0x64 scope:global align:4 +JPACalcScaleAnmRepeatY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8009118C; // type:function size:0x64 scope:global align:4 +JPACalcScaleAnmReverseX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x800911F0; // type:function size:0x8C scope:global align:4 +JPACalcScaleAnmReverseY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8009127C; // type:function size:0x8C scope:global align:4 +JPACalcAlphaAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091308; // type:function size:0x80 scope:global align:4 +JPACalcAlphaFlickAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091388; // type:function size:0xE4 scope:global align:4 +__ct__13JPAExtraShapeFPCUc = .text:0x8009146C; // type:function size:0x34 scope:global align:4 +init__13JPAExtraShapeFv = .text:0x800914A0; // type:function size:0x100 scope:global align:4 +prepare__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x800915A0; // type:function size:0xA8 scope:global align:4 +calc__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091648; // type:function size:0x1BC scope:global align:4 +prepare__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80091804; // type:function size:0x150 scope:global align:4 +calc__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091954; // type:function size:0x25C scope:global align:4 +prepare__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80091BB0; // type:function size:0x60 scope:global align:4 +calc__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091C10; // type:function size:0x288 scope:global align:4 +prepare__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80091E98; // type:function size:0x84 scope:global align:4 +calc__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091F1C; // type:function size:0x32C scope:global align:4 +prepare__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80092248; // type:function size:0xF4 scope:global align:4 +calc__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x8009233C; // type:function size:0x2F0 scope:global align:4 +prepare__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x8009262C; // type:function size:0x28C scope:global align:4 +calc__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x800928B8; // type:function size:0x39C scope:global align:4 +calc__14JPAFieldRandomFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80092C54; // type:function size:0x2B0 scope:global align:4 +calc__12JPAFieldDragFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80092F04; // type:function size:0xD8 scope:global align:4 +prepare__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80092FDC; // type:function size:0x130 scope:global align:4 +calc__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x8009310C; // type:function size:0x288 scope:global align:4 +__ct__13JPAFieldBlockFPCUcP7JKRHeap = .text:0x80093394; // type:function size:0x38 scope:global align:4 +init__13JPAFieldBlockFP7JKRHeap = .text:0x800933CC; // type:function size:0x2EC scope:global align:4 +__dt__12JPAFieldBaseFv = .text:0x800936B8; // type:function size:0x48 scope:weak align:4 +prepare__12JPAFieldBaseFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80093700; // type:function size:0x4 scope:weak align:4 +__dt__12JPAFieldSpinFv = .text:0x80093704; // type:function size:0x5C scope:weak align:4 +__dt__12JPAFieldDragFv = .text:0x80093760; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldRandomFv = .text:0x800937BC; // type:function size:0x5C scope:weak align:4 +__dt__18JPAFieldConvectionFv = .text:0x80093818; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldVortexFv = .text:0x80093874; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldNewtonFv = .text:0x800938D0; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldMagnetFv = .text:0x8009392C; // type:function size:0x5C scope:weak align:4 +__dt__11JPAFieldAirFv = .text:0x80093988; // type:function size:0x5C scope:weak align:4 +__dt__15JPAFieldGravityFv = .text:0x800939E4; // type:function size:0x5C scope:weak align:4 +__ct__11JPAKeyBlockFPCUc = .text:0x80093A40; // type:function size:0x10 scope:global align:4 +calc__11JPAKeyBlockFf = .text:0x80093A50; // type:function size:0x94 scope:global align:4 +JPAGetDirMtx__FRCQ29JGeometry8TVec3PA4_f = .text:0x80093AE4; // type:function size:0x100 scope:global align:4 +JPAGetYZRotateMtx__FssPA4_f = .text:0x80093BE4; // type:function size:0x74 scope:global align:4 +JPAGetXYZRotateMtx__FsssPA4_f = .text:0x80093C58; // type:function size:0x9C scope:global align:4 +JPASetRMtxfromMtx__FPA4_CfPA4_f = .text:0x80093CF4; // type:function size:0x28 scope:global align:4 +JPASetRMtxTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3 = .text:0x80093D1C; // type:function size:0x28 scope:global align:4 +JPASetRMtxSTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3PQ29JGeometry8TVec3 = .text:0x80093D44; // type:function size:0x21C scope:global align:4 +JPACalcKeyAnmValue__FfUsPCf = .text:0x80093F60; // type:function size:0xC8 scope:global align:4 +__dt__19JPAParticleCallBackFv = .text:0x80094028; // type:function size:0x48 scope:global align:4 +init_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80094070; // type:function size:0x8C4 scope:global align:4 +init_c__15JPABaseParticleFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80094934; // type:function size:0x6A8 scope:global align:4 +calc_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80094FDC; // type:function size:0x2A8 scope:global align:4 +execute__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x80095284; // type:function size:0x4 scope:weak align:4 +calc_c__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80095288; // type:function size:0x278 scope:global align:4 +canCreateChild__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80095500; // type:function size:0x80 scope:global align:4 +getCalcCurrentPositionX__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x80095580; // type:function size:0x24 scope:global align:4 +getCalcCurrentPositionY__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x800955A4; // type:function size:0x24 scope:global align:4 +getCalcCurrentPositionZ__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x800955C8; // type:function size:0x24 scope:global align:4 +__ct__11JPAResourceFv = .text:0x800955EC; // type:function size:0x70 scope:global align:4 +init__11JPAResourceFP7JKRHeap = .text:0x8009565C; // type:function size:0x1540 scope:global align:4 +calc__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x80096B9C; // type:function size:0x55C scope:global align:4 +draw__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x800970F8; // type:function size:0xF0 scope:global align:4 +drawP__11JPAResourceFP18JPAEmitterWorkData = .text:0x800971E8; // type:function size:0x334 scope:global align:4 +drawC__11JPAResourceFP18JPAEmitterWorkData = .text:0x8009751C; // type:function size:0x2F0 scope:global align:4 +setPTev__11JPAResourceFv = .text:0x8009780C; // type:function size:0x278 scope:global align:4 +setCTev__11JPAResourceFP18JPAEmitterWorkData = .text:0x80097A84; // type:function size:0x164 scope:global align:4 +calc_p__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80097BE8; // type:function size:0x74 scope:global align:4 +calc_c__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80097C5C; // type:function size:0x74 scope:global align:4 +calcField__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80097CD0; // type:function size:0x74 scope:global align:4 +calcKey__11JPAResourceFP18JPAEmitterWorkData = .text:0x80097D44; // type:function size:0x138 scope:global align:4 +calcWorkData_c__11JPAResourceFP18JPAEmitterWorkData = .text:0x80097E7C; // type:function size:0x1DC scope:global align:4 +calcWorkData_d__11JPAResourceFP18JPAEmitterWorkData = .text:0x80098058; // type:function size:0x80 scope:global align:4 +__ct__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x800980D8; // type:function size:0x40 scope:global align:4 +load_jpc__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x80098118; // type:function size:0x3B8 scope:global align:4 +__ct__18JPAResourceManagerFPCvP7JKRHeap = .text:0x800984D0; // type:function size:0x58 scope:global align:4 +getResource__18JPAResourceManagerCFUs = .text:0x80098528; // type:function size:0x40 scope:global align:4 +swapTexture__18JPAResourceManagerFPC7ResTIMGPCc = .text:0x80098568; // type:function size:0x9C scope:global align:4 +registRes__18JPAResourceManagerFP11JPAResource = .text:0x80098604; // type:function size:0x20 scope:global align:4 +registTex__18JPAResourceManagerFP10JPATexture = .text:0x80098624; // type:function size:0x20 scope:global align:4 +getResUserWork__18JPAResourceManagerCFUs = .text:0x80098644; // type:function size:0x5C scope:global align:4 +__ct__10JPATextureFPCUc = .text:0x800986A0; // type:function size:0x68 scope:global align:4 +__dt__10JPATextureFv = .text:0x80098708; // type:function size:0x64 scope:weak align:4 +__dt__Q26JStage7TSystemFv = .text:0x8009876C; // type:function size:0x60 scope:global align:4 +JSGFGetType__Q26JStage7TSystemCFv = .text:0x800987CC; // type:function size:0x8 scope:global align:4 +JSGFindObject__Q26JStage7TSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x800987D4; // type:function size:0x8 scope:global align:4 +JSGCreateObject__Q26JStage7TSystemFPCcQ26JStage8TEObjectUl = .text:0x800987DC; // type:function size:0x8 scope:global align:4 +JSGDestroyObject__Q26JStage7TSystemFPQ26JStage7TObject = .text:0x800987E4; // type:function size:0x4 scope:global align:4 +JSGGetSystemData__Q26JStage7TSystemFUl = .text:0x800987E8; // type:function size:0x8 scope:global align:4 +JSGSetSystemData__Q26JStage7TSystemFUlUl = .text:0x800987F0; // type:function size:0x4 scope:global align:4 +__dt__Q26JStage7TCameraFv = .text:0x800987F4; // type:function size:0x60 scope:global align:4 +JSGFGetType__Q26JStage7TCameraCFv = .text:0x80098854; // type:function size:0x8 scope:global align:4 +JSGGetProjectionType__Q26JStage7TCameraCFv = .text:0x8009885C; // type:function size:0x8 scope:global align:4 +JSGSetProjectionType__Q26JStage7TCameraFQ26JStage18TECameraProjection = .text:0x80098864; // type:function size:0x4 scope:global align:4 +JSGGetProjectionNear__Q26JStage7TCameraCFv = .text:0x80098868; // type:function size:0x8 scope:global align:4 +JSGSetProjectionNear__Q26JStage7TCameraFf = .text:0x80098870; // type:function size:0x4 scope:global align:4 +JSGGetProjectionFar__Q26JStage7TCameraCFv = .text:0x80098874; // type:function size:0xC scope:global align:4 +JSGSetProjectionFar__Q26JStage7TCameraFf = .text:0x80098880; // type:function size:0x4 scope:global align:4 +JSGGetProjectionFovy__Q26JStage7TCameraCFv = .text:0x80098884; // type:function size:0x8 scope:global align:4 +JSGSetProjectionFovy__Q26JStage7TCameraFf = .text:0x8009888C; // type:function size:0x4 scope:global align:4 +JSGGetProjectionAspect__Q26JStage7TCameraCFv = .text:0x80098890; // type:function size:0x8 scope:global align:4 +JSGSetProjectionAspect__Q26JStage7TCameraFf = .text:0x80098898; // type:function size:0x4 scope:global align:4 +JSGGetProjectionField__Q26JStage7TCameraCFPf = .text:0x8009889C; // type:function size:0x4 scope:global align:4 +JSGSetProjectionField__Q26JStage7TCameraFPCf = .text:0x800988A0; // type:function size:0x4 scope:global align:4 +JSGGetViewType__Q26JStage7TCameraCFv = .text:0x800988A4; // type:function size:0x8 scope:global align:4 +JSGSetViewType__Q26JStage7TCameraFQ26JStage12TECameraView = .text:0x800988AC; // type:function size:0x4 scope:global align:4 +JSGGetViewPosition__Q26JStage7TCameraCFP3Vec = .text:0x800988B0; // type:function size:0x4 scope:global align:4 +JSGSetViewPosition__Q26JStage7TCameraFRC3Vec = .text:0x800988B4; // type:function size:0x4 scope:global align:4 +JSGGetViewUpVector__Q26JStage7TCameraCFP3Vec = .text:0x800988B8; // type:function size:0x4 scope:global align:4 +JSGSetViewUpVector__Q26JStage7TCameraFRC3Vec = .text:0x800988BC; // type:function size:0x4 scope:global align:4 +JSGGetViewTargetPosition__Q26JStage7TCameraCFP3Vec = .text:0x800988C0; // type:function size:0x4 scope:global align:4 +JSGSetViewTargetPosition__Q26JStage7TCameraFRC3Vec = .text:0x800988C4; // type:function size:0x4 scope:global align:4 +JSGGetViewRoll__Q26JStage7TCameraCFv = .text:0x800988C8; // type:function size:0x8 scope:global align:4 +JSGSetViewRoll__Q26JStage7TCameraFf = .text:0x800988D0; // type:function size:0x4 scope:global align:4 +__dt__Q26JStage7TObjectFv = .text:0x800988D4; // type:function size:0x48 scope:global align:4 +JSGGetName__Q26JStage7TObjectCFv = .text:0x8009891C; // type:function size:0x8 scope:global align:4 +JSGUpdate__Q26JStage7TObjectFv = .text:0x80098924; // type:function size:0x4 scope:global align:4 +JSGGetFlag__Q26JStage7TObjectCFv = .text:0x80098928; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q26JStage7TObjectFUl = .text:0x80098930; // type:function size:0x4 scope:global align:4 +JSGGetData__Q26JStage7TObjectCFUlPvUl = .text:0x80098934; // type:function size:0x8 scope:global align:4 +JSGSetData__Q26JStage7TObjectFUlPCvUl = .text:0x8009893C; // type:function size:0x4 scope:global align:4 +JSGGetParent__Q26JStage7TObjectCFPPQ26JStage7TObjectPUl = .text:0x80098940; // type:function size:0x4 scope:global align:4 +JSGSetParent__Q26JStage7TObjectFPQ26JStage7TObjectUl = .text:0x80098944; // type:function size:0x4 scope:global align:4 +JSGSetRelation__Q26JStage7TObjectFbPQ26JStage7TObjectUl = .text:0x80098948; // type:function size:0x4 scope:global align:4 +JSGFindNodeID__Q26JStage7TObjectCFPCc = .text:0x8009894C; // type:function size:0x8 scope:global align:4 +JSGGetNodeTransformation__Q26JStage7TObjectCFUlPA4_f = .text:0x80098954; // type:function size:0x3C scope:global align:4 +__dt__Q26JStage6TActorFv = .text:0x80098990; // type:function size:0x60 scope:global align:4 +JSGFGetType__Q26JStage6TActorCFv = .text:0x800989F0; // type:function size:0x8 scope:global align:4 +JSGGetTranslation__Q26JStage6TActorCFP3Vec = .text:0x800989F8; // type:function size:0x4 scope:global align:4 +JSGSetTranslation__Q26JStage6TActorFRC3Vec = .text:0x800989FC; // type:function size:0x4 scope:global align:4 +JSGGetScaling__Q26JStage6TActorCFP3Vec = .text:0x80098A00; // type:function size:0x4 scope:global align:4 +JSGSetScaling__Q26JStage6TActorFRC3Vec = .text:0x80098A04; // type:function size:0x4 scope:global align:4 +JSGGetRotation__Q26JStage6TActorCFP3Vec = .text:0x80098A08; // type:function size:0x4 scope:global align:4 +JSGSetRotation__Q26JStage6TActorFRC3Vec = .text:0x80098A0C; // type:function size:0x4 scope:global align:4 +JSGGetShape__Q26JStage6TActorCFv = .text:0x80098A10; // type:function size:0x8 scope:global align:4 +JSGSetShape__Q26JStage6TActorFUl = .text:0x80098A18; // type:function size:0x4 scope:global align:4 +JSGGetAnimation__Q26JStage6TActorCFv = .text:0x80098A1C; // type:function size:0x8 scope:global align:4 +JSGSetAnimation__Q26JStage6TActorFUl = .text:0x80098A24; // type:function size:0x4 scope:global align:4 +JSGGetAnimationFrame__Q26JStage6TActorCFv = .text:0x80098A28; // type:function size:0x8 scope:global align:4 +JSGSetAnimationFrame__Q26JStage6TActorFf = .text:0x80098A30; // type:function size:0x4 scope:global align:4 +JSGGetAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80098A34; // type:function size:0x8 scope:global align:4 +JSGGetAnimationTransition__Q26JStage6TActorCFv = .text:0x80098A3C; // type:function size:0x8 scope:global align:4 +JSGSetAnimationTransition__Q26JStage6TActorFf = .text:0x80098A44; // type:function size:0x4 scope:global align:4 +JSGGetTextureAnimation__Q26JStage6TActorCFv = .text:0x80098A48; // type:function size:0x8 scope:global align:4 +JSGSetTextureAnimation__Q26JStage6TActorFUl = .text:0x80098A50; // type:function size:0x4 scope:global align:4 +JSGGetTextureAnimationFrame__Q26JStage6TActorCFv = .text:0x80098A54; // type:function size:0x8 scope:global align:4 +JSGSetTextureAnimationFrame__Q26JStage6TActorFf = .text:0x80098A5C; // type:function size:0x4 scope:global align:4 +JSGGetTextureAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80098A60; // type:function size:0x8 scope:global align:4 +getGroupCount__11JASWSParserFPv = .text:0x80098A68; // type:function size:0x28 scope:global align:4 +createBasicWaveBank__11JASWSParserFPv = .text:0x80098A90; // type:function size:0x204 scope:global align:4 +createSimpleWaveBank__11JASWSParserFPv = .text:0x80098C94; // type:function size:0x1F8 scope:global align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098E8C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098EA4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098EBC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098ED4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098EEC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098F04; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098F1C; // type:function size:0x18 scope:weak align:4 +init__10JASBankMgrFi = .text:0x80098F34; // type:function size:0x138 scope:global align:4 +registBankBNK__10JASBankMgrFiPv = .text:0x8009906C; // type:function size:0x68 scope:global align:4 +getPhysicalNumber__10JASBankMgrFUs = .text:0x800990D4; // type:function size:0x10 scope:global align:4 +setVir2PhyTable__10JASBankMgrFUli = .text:0x800990E4; // type:function size:0x18 scope:global align:4 +assignWaveBank__10JASBankMgrFii = .text:0x800990FC; // type:function size:0x84 scope:global align:4 +noteOn__10JASBankMgrFiiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80099180; // type:function size:0x360 scope:global align:4 +noteOnOsc__10JASBankMgrFiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x800994E0; // type:function size:0x174 scope:local align:4 +gateOn__10JASBankMgrFP10JASChannelUcUc = .text:0x80099654; // type:function size:0xA8 scope:global align:4 +__ct__12JASBasicBankFv = .text:0x800996FC; // type:function size:0x2C scope:global align:4 +__dt__7JASBankFv = .text:0x80099728; // type:function size:0x48 scope:weak align:4 +__dt__12JASBasicBankFv = .text:0x80099770; // type:function size:0x74 scope:global align:4 +setInstCount__12JASBasicBankFUl = .text:0x800997E4; // type:function size:0x64 scope:global align:4 +setInst__12JASBasicBankFiP7JASInst = .text:0x80099848; // type:function size:0x10 scope:global align:4 +getInst__12JASBasicBankCFi = .text:0x80099858; // type:function size:0x24 scope:global align:4 +getType__12JASBasicBankCFv = .text:0x8009987C; // type:function size:0xC scope:weak align:4 +__ct__12JASBasicInstFv = .text:0x80099888; // type:function size:0x44 scope:global align:4 +__dt__7JASInstFv = .text:0x800998CC; // type:function size:0x48 scope:weak align:4 +__dt__12JASBasicInstFv = .text:0x80099914; // type:function size:0x8C scope:global align:4 +getParam__12JASBasicInstCFiiP12JASInstParam = .text:0x800999A0; // type:function size:0x1E8 scope:global align:4 +getKeymapIndex__12JASBasicInstCFi = .text:0x80099B88; // type:function size:0x8 scope:global align:4 +setKeyRegionCount__12JASBasicInstFUl = .text:0x80099B90; // type:function size:0x84 scope:global align:4 +__ct__Q212JASBasicInst7TKeymapFv = .text:0x80099C14; // type:function size:0x18 scope:weak align:4 +setEffectCount__12JASBasicInstFUl = .text:0x80099C2C; // type:function size:0x78 scope:global align:4 +setEffect__12JASBasicInstFiP13JASInstEffect = .text:0x80099CA4; // type:function size:0x10 scope:global align:4 +setOscCount__12JASBasicInstFUl = .text:0x80099CB4; // type:function size:0x78 scope:global align:4 +setOsc__12JASBasicInstFiPQ213JASOscillator4Data = .text:0x80099D2C; // type:function size:0x10 scope:global align:4 +getKeyRegion__12JASBasicInstFi = .text:0x80099D3C; // type:function size:0x24 scope:global align:4 +__dt__Q212JASBasicInst7TKeymapFv = .text:0x80099D60; // type:function size:0x54 scope:global align:4 +setVeloRegionCount__Q212JASBasicInst7TKeymapFUl = .text:0x80099DB4; // type:function size:0x58 scope:global align:4 +getVeloRegion__Q212JASBasicInst7TKeymapFi = .text:0x80099E0C; // type:function size:0x24 scope:global align:4 +getVeloRegion__Q212JASBasicInst7TKeymapCFi = .text:0x80099E30; // type:function size:0x24 scope:global align:4 +getType__12JASBasicInstCFv = .text:0x80099E54; // type:function size:0xC scope:weak align:4 +__ct__16JASBasicWaveBankFv = .text:0x80099E60; // type:function size:0x60 scope:global align:4 +__dt__11JASWaveBankFv = .text:0x80099EC0; // type:function size:0x48 scope:weak align:4 +__dt__16JASBasicWaveBankFv = .text:0x80099F08; // type:function size:0xBC scope:global align:4 +getWaveGroup__16JASBasicWaveBankFi = .text:0x80099FC4; // type:function size:0x24 scope:global align:4 +setGroupCount__16JASBasicWaveBankFUl = .text:0x80099FE8; // type:function size:0xE8 scope:global align:4 +setWaveTableSize__16JASBasicWaveBankFUl = .text:0x8009A0D0; // type:function size:0x64 scope:global align:4 +getWaveHandle__16JASBasicWaveBankCFUl = .text:0x8009A134; // type:function size:0x30 scope:global align:4 +__ct__Q216JASBasicWaveBank10TWaveGroupFP16JASBasicWaveBank = .text:0x8009A164; // type:function size:0x58 scope:global align:4 +__dt__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x8009A1BC; // type:function size:0xB4 scope:global align:4 +__dt__Q216JASBasicWaveBank9TWaveInfoFv = .text:0x8009A270; // type:function size:0x60 scope:weak align:4 +setWaveCount__Q216JASBasicWaveBank10TWaveGroupFUl = .text:0x8009A2D0; // type:function size:0x1BC scope:global align:4 +__ct__Q216JASBasicWaveBank9TWaveInfoFv = .text:0x8009A48C; // type:function size:0x30 scope:weak align:4 +__dt__Q216JASBasicWaveBank11TWaveHandleFv = .text:0x8009A4BC; // type:function size:0x5C scope:weak align:4 +__dt__13JASWaveHandleFv = .text:0x8009A518; // type:function size:0x48 scope:weak align:4 +setWaveInfo__Q216JASBasicWaveBank10TWaveGroupFiUlRC11JASWaveInfo = .text:0x8009A560; // type:function size:0x90 scope:global align:4 +onLoadDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x8009A5F0; // type:function size:0xA0 scope:global align:4 +onEraseDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x8009A690; // type:function size:0xE8 scope:global align:4 +getWaveID__Q216JASBasicWaveBank10TWaveGroupCFi = .text:0x8009A778; // type:function size:0x14 scope:global align:4 +getWaveInfo__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x8009A78C; // type:function size:0x8 scope:weak align:4 +getWavePtr__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x8009A794; // type:function size:0x24 scope:weak align:4 +getWaveArc__16JASBasicWaveBankFi = .text:0x8009A7B8; // type:function size:0x24 scope:weak align:4 +createBasicBank__12JASBNKParserFPv = .text:0x8009A7DC; // type:function size:0x6D0 scope:global align:4 +findOscPtr__12JASBNKParserFP12JASBasicBankPQ212JASBNKParser7THeaderPQ212JASBNKParser4TOsc = .text:0x8009AEAC; // type:function size:0x120 scope:local align:4 +getOscTableEndPtr__12JASBNKParserFPs = .text:0x8009AFCC; // type:function size:0x14 scope:local align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009AFE0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009AFF8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B010; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B028; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B040; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B058; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B070; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B088; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B0A0; // type:function size:0x18 scope:weak align:4 +getParam__10JASDrumSetCFiiP12JASInstParam = .text:0x8009B0B8; // type:function size:0x1FC scope:global align:4 +getPerc__10JASDrumSetFi = .text:0x8009B2B4; // type:function size:0x14 scope:global align:4 +__ct__Q210JASDrumSet5TPercFv = .text:0x8009B2C8; // type:function size:0x34 scope:global align:4 +__dt__Q210JASDrumSet5TPercFv = .text:0x8009B2FC; // type:function size:0x5C scope:global align:4 +setEffectCount__Q210JASDrumSet5TPercFUl = .text:0x8009B358; // type:function size:0x78 scope:global align:4 +setVeloRegionCount__Q210JASDrumSet5TPercFUl = .text:0x8009B3D0; // type:function size:0x58 scope:global align:4 +getVeloRegion__Q210JASDrumSet5TPercFi = .text:0x8009B428; // type:function size:0x10 scope:global align:4 +setEffect__Q210JASDrumSet5TPercFiP13JASInstEffect = .text:0x8009B438; // type:function size:0x10 scope:global align:4 +setRelease__Q210JASDrumSet5TPercFUl = .text:0x8009B448; // type:function size:0x8 scope:global align:4 +__dt__10JASDrumSetFv = .text:0x8009B450; // type:function size:0x84 scope:weak align:4 +getType__10JASDrumSetCFv = .text:0x8009B4D4; // type:function size:0xC scope:weak align:4 +setTarget__13JASInstEffectFi = .text:0x8009B4E0; // type:function size:0x8 scope:global align:4 +getY__11JASInstRandCFii = .text:0x8009B4E8; // type:function size:0xA4 scope:global align:4 +getY__12JASInstSenseCFii = .text:0x8009B58C; // type:function size:0x124 scope:global align:4 +setParams__12JASInstSenseFiiff = .text:0x8009B6B0; // type:function size:0x14 scope:global align:4 +__ct__17JASSimpleWaveBankFv = .text:0x8009B6C4; // type:function size:0x60 scope:global align:4 +__dt__17JASSimpleWaveBankFv = .text:0x8009B724; // type:function size:0xD4 scope:global align:4 +__dt__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x8009B7F8; // type:function size:0x5C scope:weak align:4 +setWaveTableSize__17JASSimpleWaveBankFUl = .text:0x8009B854; // type:function size:0x84 scope:global align:4 +__ct__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x8009B8D8; // type:function size:0x24 scope:weak align:4 +getWaveHandle__17JASSimpleWaveBankCFUl = .text:0x8009B8FC; // type:function size:0x24 scope:global align:4 +setWaveInfo__17JASSimpleWaveBankFUlRC11JASWaveInfo = .text:0x8009B920; // type:function size:0x94 scope:global align:4 +getWaveArc__17JASSimpleWaveBankFi = .text:0x8009B9B4; // type:function size:0x20 scope:global align:4 +getWaveInfo__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x8009B9D4; // type:function size:0x8 scope:weak align:4 +getWavePtr__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x8009B9DC; // type:function size:0x24 scope:weak align:4 +onLoadDone__10JASWaveArcFv = .text:0x8009BA00; // type:function size:0x4 scope:weak align:4 +onEraseDone__10JASWaveArcFv = .text:0x8009BA04; // type:function size:0x4 scope:weak align:4 +init__16JASWaveArcLoaderFP7JASHeap = .text:0x8009BA08; // type:function size:0x2C scope:global align:4 +setCurrentDir__16JASWaveArcLoaderFPCc = .text:0x8009BA34; // type:function size:0x60 scope:global align:4 +__ct__10JASWaveArcFv = .text:0x8009BA94; // type:function size:0x6C scope:global align:4 +__dt__7JASHeapFv = .text:0x8009BB00; // type:function size:0x78 scope:weak align:4 +loadToAramCallback__10JASWaveArcFPv = .text:0x8009BB78; // type:function size:0xC8 scope:global align:4 +load__10JASWaveArcFP7JASHeap = .text:0x8009BC40; // type:function size:0x128 scope:global align:4 +loadTail__10JASWaveArcFP7JASHeap = .text:0x8009BD68; // type:function size:0x128 scope:global align:4 +erase__10JASWaveArcFv = .text:0x8009BE90; // type:function size:0x24 scope:global align:4 +onDispose__10JASWaveArcFv = .text:0x8009BEB4; // type:function size:0x94 scope:global align:4 +setFileName__10JASWaveArcFPCc = .text:0x8009BF48; // type:function size:0xE4 scope:global align:4 +onDispose__11JASDisposerFv = .text:0x8009C02C; // type:function size:0x4 scope:weak align:4 +getCurrentHeap__11JASWaveBankFv = .text:0x8009C030; // type:function size:0x14 scope:global align:4 +init__14JASWaveBankMgrFi = .text:0x8009C044; // type:function size:0x54 scope:global align:4 +getWaveBank__14JASWaveBankMgrFi = .text:0x8009C098; // type:function size:0x34 scope:global align:4 +registWaveBankWS__14JASWaveBankMgrFiPv = .text:0x8009C0CC; // type:function size:0x80 scope:global align:4 +loadWave__14JASWaveBankMgrFiiP7JASHeap = .text:0x8009C14C; // type:function size:0x90 scope:global align:4 +loadWaveTail__14JASWaveBankMgrFiiP7JASHeap = .text:0x8009C1DC; // type:function size:0x90 scope:global align:4 +eraseWave__14JASWaveBankMgrFii = .text:0x8009C26C; // type:function size:0x90 scope:global align:4 +getCurrentHeap__7JASBankFv = .text:0x8009C2FC; // type:function size:0x14 scope:global align:4 +init__12JASTrackPortFv = .text:0x8009C310; // type:function size:0x88 scope:global align:4 +readImport__12JASTrackPortFi = .text:0x8009C398; // type:function size:0x18 scope:global align:4 +readExport__12JASTrackPortFi = .text:0x8009C3B0; // type:function size:0x1C scope:global align:4 +writeImport__12JASTrackPortFiUs = .text:0x8009C3CC; // type:function size:0x18 scope:global align:4 +writeExport__12JASTrackPortFiUs = .text:0x8009C3E4; // type:function size:0x1C scope:global align:4 +__ct__13JASOuterParamFv = .text:0x8009C400; // type:function size:0x4C scope:global align:4 +initExtBuffer__13JASOuterParamFv = .text:0x8009C44C; // type:function size:0x10 scope:global align:4 +setOuterSwitch__13JASOuterParamFUs = .text:0x8009C45C; // type:function size:0x8 scope:global align:4 +checkOuterSwitch__13JASOuterParamFUs = .text:0x8009C464; // type:function size:0x1C scope:global align:4 +setOuterUpdate__13JASOuterParamFUs = .text:0x8009C480; // type:function size:0x8 scope:global align:4 +getOuterUpdate__13JASOuterParamFv = .text:0x8009C488; // type:function size:0x8 scope:global align:4 +getIntFirFilter__13JASOuterParamFUc = .text:0x8009C490; // type:function size:0x10 scope:global align:4 +setParam__13JASOuterParamFUcf = .text:0x8009C4A0; // type:function size:0x9C scope:global align:4 +onSwitch__13JASOuterParamFUs = .text:0x8009C53C; // type:function size:0x1C scope:global align:4 +setFirFilter__13JASOuterParamFPs = .text:0x8009C558; // type:function size:0x5C scope:global align:4 +extend8to16__9JASPlayerFUc = .text:0x8009C5B4; // type:function size:0x1C scope:global align:4 +pitchToCent__9JASPlayerFff = .text:0x8009C5D0; // type:function size:0xD4 scope:global align:4 +getRandomS32__9JASPlayerFv = .text:0x8009C6A4; // type:function size:0x70 scope:global align:4 +__ct__16JASRegisterParamFv = .text:0x8009C714; // type:function size:0x50 scope:global align:4 +init__16JASRegisterParamFv = .text:0x8009C764; // type:function size:0x68 scope:global align:4 +inherit__16JASRegisterParamFRC16JASRegisterParam = .text:0x8009C7CC; // type:function size:0x70 scope:global align:4 +getBankNumber__16JASRegisterParamCFv = .text:0x8009C83C; // type:function size:0x10 scope:global align:4 +getProgramNumber__16JASRegisterParamCFv = .text:0x8009C84C; // type:function size:0xC scope:global align:4 +init__10JASSeqCtrlFv = .text:0x8009C858; // type:function size:0x60 scope:global align:4 +start__10JASSeqCtrlFPvUl = .text:0x8009C8B8; // type:function size:0x14 scope:global align:4 +loopEnd__10JASSeqCtrlFv = .text:0x8009C8CC; // type:function size:0x6C scope:global align:4 +waitCountDown__10JASSeqCtrlFv = .text:0x8009C938; // type:function size:0x30 scope:global align:4 +callIntr__10JASSeqCtrlFPv = .text:0x8009C968; // type:function size:0x38 scope:global align:4 +retIntr__10JASSeqCtrlFv = .text:0x8009C9A0; // type:function size:0x34 scope:global align:4 +get16__10JASSeqCtrlCFUl = .text:0x8009C9D4; // type:function size:0x18 scope:global align:4 +get24__10JASSeqCtrlCFUl = .text:0x8009C9EC; // type:function size:0x28 scope:global align:4 +get32__10JASSeqCtrlCFUl = .text:0x8009CA14; // type:function size:0x38 scope:global align:4 +read16__10JASSeqCtrlFv = .text:0x8009CA4C; // type:function size:0x28 scope:global align:4 +read24__10JASSeqCtrlFv = .text:0x8009CA74; // type:function size:0x44 scope:global align:4 +cmdOpenTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8009CAB8; // type:function size:0x58 scope:global align:4 +cmdOpenTrackBros__12JASSeqParserFP8JASTrackPUl = .text:0x8009CB10; // type:function size:0x68 scope:global align:4 +cmdCall__12JASSeqParserFP8JASTrackPUl = .text:0x8009CB78; // type:function size:0x108 scope:global align:4 +cmdRet__12JASSeqParserFP8JASTrackPUl = .text:0x8009CC80; // type:function size:0x84 scope:global align:4 +cmdJmp__12JASSeqParserFP8JASTrackPUl = .text:0x8009CD04; // type:function size:0x144 scope:global align:4 +cmdLoopS__12JASSeqParserFP8JASTrackPUl = .text:0x8009CE48; // type:function size:0x3C scope:global align:4 +cmdLoopE__12JASSeqParserFP8JASTrackPUl = .text:0x8009CE84; // type:function size:0x28 scope:global align:4 +cmdReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CEAC; // type:function size:0x58 scope:global align:4 +cmdWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CF04; // type:function size:0x34 scope:global align:4 +cmdParentWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CF38; // type:function size:0x38 scope:global align:4 +cmdChildWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CF70; // type:function size:0x44 scope:global align:4 +cmdCheckPortImport__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFB4; // type:function size:0x18 scope:global align:4 +cmdCheckPortExport__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFCC; // type:function size:0x18 scope:global align:4 +cmdWait__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFE4; // type:function size:0x18 scope:global align:4 +cmdSetLastNote__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFFC; // type:function size:0x48 scope:global align:4 +cmdTimeRelate__12JASSeqParserFP8JASTrackPUl = .text:0x8009D044; // type:function size:0x1C scope:global align:4 +cmdSimpleOsc__12JASSeqParserFP8JASTrackPUl = .text:0x8009D060; // type:function size:0x30 scope:global align:4 +cmdSimpleEnv__12JASSeqParserFP8JASTrackPUl = .text:0x8009D090; // type:function size:0x34 scope:global align:4 +cmdSimpleADSR__12JASSeqParserFP8JASTrackPUl = .text:0x8009D0C4; // type:function size:0x70 scope:global align:4 +cmdTranspose__12JASSeqParserFP8JASTrackPUl = .text:0x8009D134; // type:function size:0x10 scope:global align:4 +cmdCloseTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8009D144; // type:function size:0x54 scope:global align:4 +cmdOutSwitch__12JASSeqParserFP8JASTrackPUl = .text:0x8009D198; // type:function size:0x54 scope:global align:4 +cmdUpdateSync__12JASSeqParserFP8JASTrackPUl = .text:0x8009D1EC; // type:function size:0x2C scope:global align:4 +cmdBusConnect__12JASSeqParserFP8JASTrackPUl = .text:0x8009D218; // type:function size:0x30 scope:global align:4 +cmdPauseStatus__12JASSeqParserFP8JASTrackPUl = .text:0x8009D248; // type:function size:0x10 scope:global align:4 +cmdVolumeMode__12JASSeqParserFP8JASTrackPUl = .text:0x8009D258; // type:function size:0x10 scope:global align:4 +cmdSetInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8009D268; // type:function size:0x38 scope:global align:4 +cmdDisInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2A0; // type:function size:0x2C scope:global align:4 +cmdClrI__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2CC; // type:function size:0x18 scope:global align:4 +cmdSetI__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2E4; // type:function size:0x10 scope:global align:4 +cmdRetI__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2F4; // type:function size:0x50 scope:global align:4 +cmdIntTimer__12JASSeqParserFP8JASTrackPUl = .text:0x8009D344; // type:function size:0x1C scope:global align:4 +cmdSyncCPU__12JASSeqParserFP8JASTrackPUl = .text:0x8009D360; // type:function size:0x58 scope:global align:4 +cmdFlushAll__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3B8; // type:function size:0x8 scope:global align:4 +cmdFlushRelease__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3C0; // type:function size:0x8 scope:global align:4 +cmdTimeBase__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3C8; // type:function size:0x30 scope:global align:4 +cmdTempo__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3F8; // type:function size:0x30 scope:global align:4 +cmdFinish__12JASSeqParserFP8JASTrackPUl = .text:0x8009D428; // type:function size:0x8 scope:global align:4 +cmdNop__12JASSeqParserFP8JASTrackPUl = .text:0x8009D430; // type:function size:0x8 scope:global align:4 +cmdPanPowSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D438; // type:function size:0x84 scope:global align:4 +cmdFIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D4BC; // type:function size:0x34 scope:global align:4 +cmdEXTSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D4F0; // type:function size:0x54 scope:global align:4 +cmdPanSwSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D544; // type:function size:0xF8 scope:global align:4 +cmdOscRoute__12JASSeqParserFP8JASTrackPUl = .text:0x8009D63C; // type:function size:0x1C scope:global align:4 +cmdVibDepth__12JASSeqParserFP8JASTrackPUl = .text:0x8009D658; // type:function size:0x48 scope:global align:4 +cmdVibDepthMidi__12JASSeqParserFP8JASTrackPUl = .text:0x8009D6A0; // type:function size:0x38 scope:global align:4 +cmdVibPitch__12JASSeqParserFP8JASTrackPUl = .text:0x8009D6D8; // type:function size:0x48 scope:global align:4 +cmdIIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D720; // type:function size:0xF4 scope:global align:4 +cmdIIRCutOff__12JASSeqParserFP8JASTrackPUl = .text:0x8009D814; // type:function size:0xF8 scope:global align:4 +cmdOscFull__12JASSeqParserFP8JASTrackPUl = .text:0x8009D90C; // type:function size:0x3C scope:global align:4 +cmdCheckWave__12JASSeqParserFP8JASTrackPUl = .text:0x8009D948; // type:function size:0x10 scope:global align:4 +cmdPrintf__12JASSeqParserFP8JASTrackPUl = .text:0x8009D958; // type:function size:0x214 scope:global align:4 +cmdSetParam__12JASSeqParserFP8JASTrackUc = .text:0x8009DB6C; // type:function size:0x18C scope:global align:4 +cmdNoteOn__12JASSeqParserFP8JASTrackUc = .text:0x8009DCF8; // type:function size:0x3D4 scope:global align:4 +conditionCheck__12JASSeqParserFP8JASTrackUc = .text:0x8009E0CC; // type:function size:0xB4 scope:global align:4 +parseSeq__12JASSeqParserFP8JASTrack = .text:0x8009E180; // type:function size:0x6D4 scope:global align:4 +__sinit_JASSeqParser_cpp = .text:0x8009E854; // type:function size:0x740 scope:local align:4 +__ct__8JASTrackFv = .text:0x8009EF94; // type:function size:0x12C scope:global align:4 +__ct__Q28JASTrack11TimedParam_Fv = .text:0x8009F0C0; // type:function size:0x4C scope:weak align:4 +__ct__Q28JASTrack10MoveParam_Fv = .text:0x8009F10C; // type:function size:0x18 scope:weak align:4 +__ct__Q28JASTrack12AInnerParam_Fv = .text:0x8009F124; // type:function size:0x130 scope:weak align:4 +init__8JASTrackFv = .text:0x8009F254; // type:function size:0x1E8 scope:global align:4 +mainProc__8JASTrackFv = .text:0x8009F43C; // type:function size:0x20C scope:global align:4 +setInterrupt__8JASTrackFUs = .text:0x8009F648; // type:function size:0x28 scope:global align:4 +tryInterrupt__8JASTrackFv = .text:0x8009F670; // type:function size:0x60 scope:global align:4 +assignExtBuffer__8JASTrackFP13JASOuterParam = .text:0x8009F6D0; // type:function size:0x8 scope:global align:4 +initTimed__8JASTrackFv = .text:0x8009F6D8; // type:function size:0xCC scope:global align:4 +connectBus__8JASTrackFii = .text:0x8009F7A4; // type:function size:0x10 scope:global align:4 +noteOn__8JASTrackFUclllUl = .text:0x8009F7B4; // type:function size:0x1A4 scope:global align:4 +overwriteOsc__8JASTrackFP10JASChannel = .text:0x8009F958; // type:function size:0xA4 scope:global align:4 +noteOff__8JASTrackFUcUs = .text:0x8009F9FC; // type:function size:0x68 scope:global align:4 +gateOn__8JASTrackFUclll = .text:0x8009FA64; // type:function size:0x64 scope:global align:4 +checkNoteStop__8JASTrackFl = .text:0x8009FAC8; // type:function size:0x2C scope:global align:4 +oscSetupFull__8JASTrackFUcUlUl = .text:0x8009FAF4; // type:function size:0xE0 scope:global align:4 +oscSetupSimpleEnv__8JASTrackFUcUl = .text:0x8009FBD4; // type:function size:0x70 scope:global align:4 +oscSetupSimple__8JASTrackFUc = .text:0x8009FC44; // type:function size:0xDC scope:global align:4 +updateTimedParam__8JASTrackFv = .text:0x8009FD20; // type:function size:0xE8 scope:global align:4 +updateTrackAll__8JASTrackFv = .text:0x8009FE08; // type:function size:0x3E8 scope:global align:4 +updateTrack__8JASTrackFUl = .text:0x800A01F0; // type:function size:0x4E0 scope:global align:4 +updateTempo__8JASTrackFv = .text:0x800A06D0; // type:function size:0x3B4 scope:global align:4 +getTempo__13JASOuterParamCFv = .text:0x800A0A84; // type:function size:0x8 scope:weak align:4 +updateSeq__8JASTrackFUlb = .text:0x800A0A8C; // type:function size:0x294 scope:global align:4 +seqTimeToDspTime__8JASTrackFlUc = .text:0x800A0D20; // type:function size:0xD8 scope:global align:4 +setParam__8JASTrackFifi = .text:0x800A0DF8; // type:function size:0x84 scope:global align:4 +setSeqData__8JASTrackFPUcl = .text:0x800A0E7C; // type:function size:0x64 scope:global align:4 +startSeq__8JASTrackFv = .text:0x800A0EE0; // type:function size:0x78 scope:global align:4 +stopSeq__8JASTrackFv = .text:0x800A0F58; // type:function size:0xFC scope:global align:4 +stopSeqMain__8JASTrackFv = .text:0x800A1054; // type:function size:0x3C scope:global align:4 +close__8JASTrackFv = .text:0x800A1090; // type:function size:0x1D4 scope:global align:4 +setNoteMask__8JASTrackFUc = .text:0x800A1264; // type:function size:0x80 scope:global align:4 +muteTrack__8JASTrackFb = .text:0x800A12E4; // type:function size:0x234 scope:global align:4 +start__8JASTrackFPvUl = .text:0x800A1518; // type:function size:0x44 scope:global align:4 +openChild__8JASTrackFUcUc = .text:0x800A155C; // type:function size:0x1DC scope:global align:4 +exchangeRegisterValue__8JASTrackFUc = .text:0x800A1738; // type:function size:0x40 scope:global align:4 +readReg32__8JASTrackFUc = .text:0x800A1778; // type:function size:0x94 scope:global align:4 +readReg16__8JASTrackFUc = .text:0x800A180C; // type:function size:0x218 scope:global align:4 +writeRegDirect__8JASTrackFUcUs = .text:0x800A1A24; // type:function size:0xD0 scope:global align:4 +writeRegParam__8JASTrackFUc = .text:0x800A1AF4; // type:function size:0x5B0 scope:global align:4 +readSelfPort__8JASTrackFi = .text:0x800A20A4; // type:function size:0x24 scope:global align:4 +writeSelfPort__8JASTrackFiUs = .text:0x800A20C8; // type:function size:0x24 scope:global align:4 +writePortAppDirect__8JASTrackFUlUs = .text:0x800A20EC; // type:function size:0x68 scope:global align:4 +readPortAppDirect__8JASTrackFUlPUs = .text:0x800A2154; // type:function size:0x38 scope:global align:4 +writePortApp__8JASTrackFUlUs = .text:0x800A218C; // type:function size:0xB4 scope:global align:4 +readPortApp__8JASTrackFUlPUs = .text:0x800A2240; // type:function size:0x84 scope:global align:4 +pause__8JASTrackFbb = .text:0x800A22C4; // type:function size:0x168 scope:global align:4 +getTranspose__8JASTrackCFv = .text:0x800A242C; // type:function size:0x170 scope:global align:4 +setTempo__8JASTrackFUs = .text:0x800A259C; // type:function size:0x3C scope:global align:4 +setTimebase__8JASTrackFUs = .text:0x800A25D8; // type:function size:0x30 scope:global align:4 +panCalc__8JASTrackFfffUc = .text:0x800A2608; // type:function size:0x50 scope:global align:4 +rootCallback__8JASTrackFPv = .text:0x800A2658; // type:function size:0xF4 scope:global align:4 +registerSeqCallback__8JASTrackFPFP8JASTrackUs_Us = .text:0x800A274C; // type:function size:0x8 scope:global align:4 +newMemPool__8JASTrackFi = .text:0x800A2754; // type:function size:0xD4 scope:global align:4 +__ct__10JASVibrateFv = .text:0x800A2828; // type:function size:0x30 scope:global align:4 +init__10JASVibrateFv = .text:0x800A2858; // type:function size:0x18 scope:global align:4 +incCounter__10JASVibrateFv = .text:0x800A2870; // type:function size:0x34 scope:global align:4 +getValue__10JASVibrateCFv = .text:0x800A28A4; // type:function size:0xA4 scope:global align:4 +channelUpdateCallback__8JASTrackFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x800A2948; // type:function size:0xB0 scope:global align:4 +init__10JASIntrMgrFv = .text:0x800A29F8; // type:function size:0x44 scope:global align:4 +request__10JASIntrMgrFUl = .text:0x800A2A3C; // type:function size:0x24 scope:global align:4 +setIntr__10JASIntrMgrFUlPv = .text:0x800A2A60; // type:function size:0x24 scope:global align:4 +resetInter__10JASIntrMgrFUl = .text:0x800A2A84; // type:function size:0x18 scope:global align:4 +checkIntr__10JASIntrMgrFv = .text:0x800A2A9C; // type:function size:0x6C scope:global align:4 +timerProcess__10JASIntrMgrFv = .text:0x800A2B08; // type:function size:0x70 scope:global align:4 +init__13JASOscillatorFv = .text:0x800A2B78; // type:function size:0x34 scope:global align:4 +initStart__13JASOscillatorFPCQ213JASOscillator4Data = .text:0x800A2BAC; // type:function size:0x88 scope:global align:4 +incCounter__13JASOscillatorFv = .text:0x800A2C34; // type:function size:0xC8 scope:global align:4 +getValue__13JASOscillatorCFv = .text:0x800A2CFC; // type:function size:0x2C scope:global align:4 +release__13JASOscillatorFv = .text:0x800A2D28; // type:function size:0x168 scope:global align:4 +calc__13JASOscillatorFPCs = .text:0x800A2E90; // type:function size:0x374 scope:global align:4 +__ct__10JASChannelFPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x800A3204; // type:function size:0x160 scope:global align:4 +__ct__13JASOscillatorFv = .text:0x800A3364; // type:function size:0x30 scope:weak align:4 +__dt__109JASPoolAllocObject<10JASChannel,Q217JASCreationPolicy15NewFromRootHeap,Q217JASThreadingModel14SingleThreaded>Fv = .text:0x800A3394; // type:function size:0xA4 scope:weak align:4 +__dt__10JASChannelFv = .text:0x800A3438; // type:function size:0x10C scope:global align:4 +setOscInit__10JASChannelFiPCQ213JASOscillator4Data = .text:0x800A3544; // type:function size:0x34 scope:global align:4 +setMixConfig__10JASChannelFiUs = .text:0x800A3578; // type:function size:0x10 scope:global align:4 +directReleaseOsc__10JASChannelFUs = .text:0x800A3588; // type:function size:0x8 scope:global align:4 +copyOsc__10JASChannelFiPQ213JASOscillator4Data = .text:0x800A3590; // type:function size:0x48 scope:global align:4 +overwriteOsc__10JASChannelFiPQ213JASOscillator4Data = .text:0x800A35D8; // type:function size:0x34 scope:global align:4 +setKeySweepTarget__10JASChannelFUcUl = .text:0x800A360C; // type:function size:0x88 scope:global align:4 +setPauseFlag__10JASChannelFb = .text:0x800A3694; // type:function size:0x8 scope:global align:4 +setPanPower__10JASChannelFfff = .text:0x800A369C; // type:function size:0x24 scope:global align:4 +play__10JASChannelFv = .text:0x800A36C0; // type:function size:0x84 scope:global align:4 +playForce__10JASChannelFv = .text:0x800A3744; // type:function size:0x84 scope:global align:4 +release__10JASChannelFUs = .text:0x800A37C8; // type:function size:0x98 scope:global align:4 +updateEffectorParam__10JASChannelFPQ26JASDsp8TChannelPUsRCQ210JASChannel14EffectOscParam = .text:0x800A3860; // type:function size:0x25C scope:global align:4 +dspUpdateCallback__10JASChannelFUlPQ26JASDsp8TChannelPv = .text:0x800A3ABC; // type:function size:0xA0 scope:global align:4 +initialUpdateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x800A3B5C; // type:function size:0x2A4 scope:global align:4 +updateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x800A3E00; // type:function size:0x2BC scope:global align:4 +calcEffect__10JASChannelFPCQ210JASChannel9PanVectorPCQ210JASChannel9PanVectorUc = .text:0x800A40BC; // type:function size:0xC0 scope:global align:4 +calcPan__10JASChannelFPCQ210JASChannel9PanVectorPCQ210JASChannel9PanVectorUc = .text:0x800A417C; // type:function size:0xFC scope:global align:4 +updateAutoMixer__10JASChannelFPQ26JASDsp8TChannelffff = .text:0x800A4278; // type:function size:0x120 scope:global align:4 +updateMixer__10JASChannelFffffPUs = .text:0x800A4398; // type:function size:0x3D4 scope:global align:4 +sweepProc__10JASChannelFv = .text:0x800A476C; // type:function size:0x54 scope:global align:4 +free__10JASChannelFv = .text:0x800A47C0; // type:function size:0x10 scope:global align:4 +@16@__dt__10JASChannelFv = .text:0x800A47D0; // type:function size:0x8 scope:weak align:4 +key2pitch_c5__9JASDriverFi = .text:0x800A47D8; // type:function size:0x30 scope:global align:4 +setLevel__9JASDriverFfff = .text:0x800A4808; // type:function size:0x50 scope:global align:4 +setMixerLevel__9JASDriverFff = .text:0x800A4858; // type:function size:0x3C scope:global align:4 +setAutoLevel__9JASDriverFf = .text:0x800A4894; // type:function size:0x24 scope:global align:4 +setDSPLevel__9JASDriverFf = .text:0x800A48B8; // type:function size:0x20 scope:global align:4 +getChannelLevel__9JASDriverFv = .text:0x800A48D8; // type:function size:0x8 scope:global align:4 +getAutoLevel__9JASDriverFv = .text:0x800A48E0; // type:function size:0x8 scope:global align:4 +getAutoLevel_f32__9JASDriverFv = .text:0x800A48E8; // type:function size:0x30 scope:global align:4 +getDSPLevel_f32__9JASDriverFv = .text:0x800A4918; // type:function size:0x20 scope:global align:4 +setOutputMode__9JASDriverFUl = .text:0x800A4938; // type:function size:0x8 scope:global align:4 +getOutputMode__9JASDriverFv = .text:0x800A4940; // type:function size:0x8 scope:global align:4 +rejectCallback__9JASDriverFPFPv_lPv = .text:0x800A4948; // type:function size:0x90 scope:global align:4 +registerDspSyncCallback__9JASDriverFPFPv_lPv = .text:0x800A49D8; // type:function size:0x34 scope:global align:4 +registerSubFrameCallback__9JASDriverFPFPv_lPv = .text:0x800A4A0C; // type:function size:0x34 scope:global align:4 +subframeCallback__9JASDriverFv = .text:0x800A4A40; // type:function size:0x28 scope:global align:4 +DSPSyncCallback__9JASDriverFv = .text:0x800A4A68; // type:function size:0x28 scope:global align:4 +updateDacCallback__9JASDriverFv = .text:0x800A4A90; // type:function size:0x28 scope:global align:4 +__sinit_JASDriverIF_cpp = .text:0x800A4AB8; // type:function size:0x80 scope:local align:4 +__ct__Q214JASCallbackMgr9TCallbackFv = .text:0x800A4B38; // type:function size:0x10 scope:weak align:4 +__ct__13JASDSPChannelFv = .text:0x800A4B48; // type:function size:0x2C scope:global align:4 +free__13JASDSPChannelFv = .text:0x800A4B74; // type:function size:0x10 scope:global align:4 +start__13JASDSPChannelFv = .text:0x800A4B84; // type:function size:0x10 scope:global align:4 +drop__13JASDSPChannelFv = .text:0x800A4B94; // type:function size:0x88 scope:global align:4 +initAll__13JASDSPChannelFv = .text:0x800A4C1C; // type:function size:0x84 scope:global align:4 +alloc__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x800A4CA0; // type:function size:0xDC scope:global align:4 +allocForce__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x800A4D7C; // type:function size:0xE4 scope:global align:4 +setPriority__13JASDSPChannelFUc = .text:0x800A4E60; // type:function size:0xC scope:global align:4 +getLowestChannel__13JASDSPChannelFi = .text:0x800A4E6C; // type:function size:0xDC scope:global align:4 +updateProc__13JASDSPChannelFv = .text:0x800A4F48; // type:function size:0x1E4 scope:global align:4 +updateAll__13JASDSPChannelFv = .text:0x800A512C; // type:function size:0x74 scope:global align:4 +killActiveChannel__13JASDSPChannelFv = .text:0x800A51A0; // type:function size:0x160 scope:global align:4 +getHandle__13JASDSPChannelFUl = .text:0x800A5300; // type:function size:0x10 scope:global align:4 +boot__6JASDspFPFPv_v = .text:0x800A5310; // type:function size:0x4C scope:global align:4 +releaseHalt__6JASDspFUl = .text:0x800A535C; // type:function size:0x20 scope:global align:4 +finishWork__6JASDspFUs = .text:0x800A537C; // type:function size:0x20 scope:global align:4 +syncFrame__6JASDspFUlUlUl = .text:0x800A539C; // type:function size:0x20 scope:global align:4 +setDSPMixerLevel__6JASDspFf = .text:0x800A53BC; // type:function size:0x24 scope:global align:4 +getDSPMixerLevel__6JASDspFv = .text:0x800A53E0; // type:function size:0x8 scope:global align:4 +getDSPHandle__6JASDspFi = .text:0x800A53E8; // type:function size:0x10 scope:global align:4 +invalChannelAll__6JASDspFv = .text:0x800A53F8; // type:function size:0x28 scope:global align:4 +initBuffer__6JASDspFv = .text:0x800A5420; // type:function size:0xC4 scope:global align:4 +setFXLine__6JASDspFUcPsPQ26JASDsp13FxlineConfig_ = .text:0x800A54E4; // type:function size:0x154 scope:global align:4 +init__Q26JASDsp8TChannelFv = .text:0x800A5638; // type:function size:0x3C scope:global align:4 +playStart__Q26JASDsp8TChannelFv = .text:0x800A5674; // type:function size:0xA0 scope:global align:4 +playStop__Q26JASDsp8TChannelFv = .text:0x800A5714; // type:function size:0xC scope:global align:4 +replyFinishRequest__Q26JASDsp8TChannelFv = .text:0x800A5720; // type:function size:0x10 scope:global align:4 +forceStop__Q26JASDsp8TChannelFv = .text:0x800A5730; // type:function size:0xC scope:global align:4 +isFinish__Q26JASDsp8TChannelCFv = .text:0x800A573C; // type:function size:0x14 scope:global align:4 +setWaveInfo__Q26JASDsp8TChannelFRC11JASWaveInfoUlUl = .text:0x800A5750; // type:function size:0x150 scope:global align:4 +setOscInfo__Q26JASDsp8TChannelFUl = .text:0x800A58A0; // type:function size:0x18 scope:global align:4 +initAutoMixer__Q26JASDsp8TChannelFv = .text:0x800A58B8; // type:function size:0x2C scope:global align:4 +setAutoMixer__Q26JASDsp8TChannelFUsUcUcUcUc = .text:0x800A58E4; // type:function size:0x2C scope:global align:4 +setPitch__Q26JASDsp8TChannelFUs = .text:0x800A5910; // type:function size:0x18 scope:global align:4 +setMixerInitDelayMax__Q26JASDsp8TChannelFUc = .text:0x800A5928; // type:function size:0xC scope:global align:4 +setMixerInitVolume__Q26JASDsp8TChannelFUcs = .text:0x800A5934; // type:function size:0x20 scope:global align:4 +setMixerInitDelaySamples__Q26JASDsp8TChannelFUcUc = .text:0x800A5954; // type:function size:0x18 scope:global align:4 +setMixerDelaySamples__Q26JASDsp8TChannelFUcUc = .text:0x800A596C; // type:function size:0x20 scope:global align:4 +setMixerVolume__Q26JASDsp8TChannelFUcs = .text:0x800A598C; // type:function size:0x2C scope:global align:4 +setPauseFlag__Q26JASDsp8TChannelFUc = .text:0x800A59B8; // type:function size:0xC scope:global align:4 +flush__Q26JASDsp8TChannelFv = .text:0x800A59C4; // type:function size:0x24 scope:global align:4 +initFilter__Q26JASDsp8TChannelFv = .text:0x800A59E8; // type:function size:0x48 scope:global align:4 +setFilterMode__Q26JASDsp8TChannelFUs = .text:0x800A5A30; // type:function size:0x38 scope:global align:4 +setIIRFilterParam__Q26JASDsp8TChannelFPs = .text:0x800A5A68; // type:function size:0x24 scope:global align:4 +setFIR8FilterParam__Q26JASDsp8TChannelFPs = .text:0x800A5A8C; // type:function size:0x44 scope:global align:4 +setDistFilter__Q26JASDsp8TChannelFs = .text:0x800A5AD0; // type:function size:0x8 scope:global align:4 +setBusConnect__Q26JASDsp8TChannelFUcUc = .text:0x800A5AD8; // type:function size:0x20 scope:global align:4 +DSP_CreateMap2__FUl = .text:0x800A5AF8; // type:function size:0x90 scope:global align:4 +create__14JASAudioThreadFl = .text:0x800A5B88; // type:function size:0x74 scope:global align:4 +stop__14JASAudioThreadFv = .text:0x800A5BFC; // type:function size:0x38 scope:global align:4 +run__14JASAudioThreadFv = .text:0x800A5C34; // type:function size:0x17C scope:global align:4 +DMACallback__14JASAudioThreadFv = .text:0x800A5DB0; // type:function size:0x48 scope:global align:4 +DSPCallback__14JASAudioThreadFPv = .text:0x800A5DF8; // type:function size:0x64 scope:global align:4 +__dt__14JASAudioThreadFv = .text:0x800A5E5C; // type:function size:0x60 scope:weak align:4 +imixcopy__7JASCalcFPCsPCsPsUl = .text:0x800A5EBC; // type:function size:0xD4 scope:global align:4 +bcopy__7JASCalcFPCvPvUl = .text:0x800A5F90; // type:function size:0x2D4 scope:global align:4 +bzero__7JASCalcFPvUl = .text:0x800A6264; // type:function size:0x274 scope:global align:4 +clamp__7JASCalcFl = .text:0x800A64D8; // type:function size:0x28 scope:weak align:4 +regist__14JASCallbackMgrFPFPv_lPv = .text:0x800A6500; // type:function size:0x9C scope:global align:4 +reject__14JASCallbackMgrFPFPv_lPv = .text:0x800A659C; // type:function size:0x110 scope:global align:4 +callback__14JASCallbackMgrFv = .text:0x800A66AC; // type:function size:0x78 scope:global align:4 +addPortCmdOnce__10JASPortCmdFv = .text:0x800A6724; // type:function size:0x5C scope:global align:4 +setPortCmd__10JASPortCmdFPFP11JASPortArgs_vP11JASPortArgs = .text:0x800A6780; // type:function size:0x24 scope:global align:4 +execAllCommand__10JASPortCmdFv = .text:0x800A67A4; // type:function size:0x34 scope:global align:4 +execCommandOnce__Q210JASPortCmd9TPortHeadFv = .text:0x800A67D8; // type:function size:0x88 scope:global align:4 +execCommandStay__Q210JASPortCmd9TPortHeadFv = .text:0x800A6860; // type:function size:0x68 scope:global align:4 +__sinit_JASCmdStack_cpp = .text:0x800A68C8; // type:function size:0x6C scope:local align:4 +__dt__Q210JASPortCmd9TPortHeadFv = .text:0x800A6934; // type:function size:0x58 scope:weak align:4 +getThreadPointer__6JASDvdFv = .text:0x800A698C; // type:function size:0x8 scope:global align:4 +createThread__6JASDvdFliUl = .text:0x800A6994; // type:function size:0x7C scope:global align:4 +checkPassDvdT__6JASDvdFUlPUlPFUl_v = .text:0x800A6A10; // type:function size:0x44 scope:global align:4 +dvdThreadCheckBack__6JASDvdFPv = .text:0x800A6A54; // type:function size:0x48 scope:local align:4 +__ct__7JASHeapFP11JASDisposer = .text:0x800A6A9C; // type:function size:0x74 scope:global align:4 +alloc__7JASHeapFP7JASHeapUl = .text:0x800A6B10; // type:function size:0x1D0 scope:global align:4 +allocTail__7JASHeapFP7JASHeapUl = .text:0x800A6CE0; // type:function size:0xE8 scope:global align:4 +free__7JASHeapFv = .text:0x800A6DC8; // type:function size:0x124 scope:global align:4 +insertChild__7JASHeapFP7JASHeapP7JASHeapPvUlb = .text:0x800A6EEC; // type:function size:0xE0 scope:global align:4 +getTailHeap__7JASHeapFv = .text:0x800A6FCC; // type:function size:0x8C scope:global align:4 +getTailOffset__7JASHeapFv = .text:0x800A7058; // type:function size:0xC4 scope:global align:4 +getCurOffset__7JASHeapFv = .text:0x800A711C; // type:function size:0x68 scope:global align:4 +__ct__17JASGenericMemPoolFv = .text:0x800A7184; // type:function size:0x14 scope:global align:4 +newMemPool__17JASGenericMemPoolFUli = .text:0x800A7198; // type:function size:0x94 scope:global align:4 +alloc__17JASGenericMemPoolFUl = .text:0x800A722C; // type:function size:0x44 scope:global align:4 +free__17JASGenericMemPoolFPvUl = .text:0x800A7270; // type:function size:0x34 scope:global align:4 +setupRootHeap__9JASKernelFP12JKRSolidHeapUl = .text:0x800A72A4; // type:function size:0x118 scope:global align:4 +getSystemHeap__9JASKernelFv = .text:0x800A73BC; // type:function size:0x8 scope:global align:4 +getCommandHeap__9JASKernelFv = .text:0x800A73C4; // type:function size:0x8 scope:global align:4 +setupAramHeap__9JASKernelFUlUl = .text:0x800A73CC; // type:function size:0x7C scope:global align:4 +getAramHeap__9JASKernelFv = .text:0x800A7448; // type:function size:0xC scope:global align:4 +__sinit_JASHeapCtrl_cpp = .text:0x800A7454; // type:function size:0x80 scope:local align:4 +probeStart__9JASKernelFlPc = .text:0x800A74D4; // type:function size:0x60 scope:global align:4 +probeFinish__9JASKernelFl = .text:0x800A7534; // type:function size:0x13C scope:global align:4 +getResSize__15JASResArcLoaderFP10JKRArchiveUs = .text:0x800A7670; // type:function size:0x34 scope:global align:4 +loadResourceCallback__15JASResArcLoaderFPv = .text:0x800A76A4; // type:function size:0x9C scope:local align:4 +loadResource__15JASResArcLoaderFP10JKRArchiveUsPUcUl = .text:0x800A7740; // type:function size:0xD0 scope:global align:4 +loadResourceAsync__15JASResArcLoaderFP10JKRArchiveUsPUcUlPFUlUl_vUl = .text:0x800A7810; // type:function size:0x5C scope:global align:4 +JASReport__FPCce = .text:0x800A786C; // type:function size:0xFC scope:global align:4 +initAI__9JASDriverFPFv_v = .text:0x800A7968; // type:function size:0x13C scope:global align:4 +startDMA__9JASDriverFv = .text:0x800A7AA4; // type:function size:0x20 scope:global align:4 +stopDMA__9JASDriverFv = .text:0x800A7AC4; // type:function size:0x20 scope:global align:4 +updateDac__9JASDriverFv = .text:0x800A7AE4; // type:function size:0x15C scope:global align:4 +updateDSP__9JASDriverFv = .text:0x800A7C40; // type:function size:0xF0 scope:global align:4 +readDspBuffer__9JASDriverFPsUl = .text:0x800A7D30; // type:function size:0x310 scope:global align:4 +finishDSPFrame__9JASDriverFv = .text:0x800A8040; // type:function size:0x1A4 scope:global align:4 +registerMixCallback__9JASDriverFPFl_Ps10JASMixMode = .text:0x800A81E4; // type:function size:0xC scope:global align:4 +getDacRate__9JASDriverFv = .text:0x800A81F0; // type:function size:0x8 scope:global align:4 +getSubFrames__9JASDriverFv = .text:0x800A81F8; // type:function size:0x8 scope:global align:4 +getDacSize__9JASDriverFv = .text:0x800A8200; // type:function size:0xC scope:local align:4 +getFrameSamples__9JASDriverFv = .text:0x800A820C; // type:function size:0xC scope:local align:4 +mixMonoTrack__9JASDriverFPsUlPFl_Ps = .text:0x800A8218; // type:function size:0xC0 scope:local align:4 +mixMonoTrackWide__9JASDriverFPsUlPFl_Ps = .text:0x800A82D8; // type:function size:0xC0 scope:local align:4 +mixExtraTrack__9JASDriverFPsUlPFl_Ps = .text:0x800A8398; // type:function size:0xE0 scope:local align:4 +mixInterleaveTrack__9JASDriverFPsUlPFl_Ps = .text:0x800A8478; // type:function size:0x8C scope:local align:4 +__ct__17JASChannelUpdaterFv = .text:0x800A8504; // type:function size:0x30 scope:global align:4 +init__17JASChannelUpdaterFv = .text:0x800A8534; // type:function size:0xC0 scope:global align:4 +initialUpdateChannel__17JASChannelUpdaterFP10JASChannelPQ26JASDsp8TChannel = .text:0x800A85F4; // type:function size:0x164 scope:global align:4 +updateChannel__17JASChannelUpdaterFP10JASChannelPQ26JASDsp8TChannel = .text:0x800A8758; // type:function size:0xE8 scope:global align:4 +__ct__13JASTaskThreadFiiUl = .text:0x800A8840; // type:function size:0x60 scope:global align:4 +__dt__13JASTaskThreadFv = .text:0x800A88A0; // type:function size:0x128 scope:global align:4 +sendCmdMsg__13JASTaskThreadFPFPv_vPCvUl = .text:0x800A89C8; // type:function size:0x260 scope:global align:4 +sendCmdMsg__13JASTaskThreadFPFPv_vPv = .text:0x800A8C28; // type:function size:0x234 scope:global align:4 +run__13JASTaskThreadFv = .text:0x800A8E5C; // type:function size:0x148 scope:global align:4 +initSystem__13JASAramStreamFUlUl = .text:0x800A8FA4; // type:function size:0x90 scope:global align:4 +__ct__13JASAramStreamFv = .text:0x800A9034; // type:function size:0x158 scope:global align:4 +init__13JASAramStreamFUlUlPFUlP13JASAramStreamPv_vPv = .text:0x800A918C; // type:function size:0xF8 scope:global align:4 +prepare__13JASAramStreamFli = .text:0x800A9284; // type:function size:0xB8 scope:global align:4 +start__13JASAramStreamFv = .text:0x800A933C; // type:function size:0x34 scope:global align:4 +stop__13JASAramStreamFUs = .text:0x800A9370; // type:function size:0x38 scope:global align:4 +pause__13JASAramStreamFb = .text:0x800A93A8; // type:function size:0x48 scope:global align:4 +cancel__13JASAramStreamFv = .text:0x800A93F0; // type:function size:0x44 scope:global align:4 +headerLoadTask__13JASAramStreamFPv = .text:0x800A9434; // type:function size:0x30 scope:global align:4 +firstLoadTask__13JASAramStreamFPv = .text:0x800A9464; // type:function size:0xDC scope:global align:4 +loadToAramTask__13JASAramStreamFPv = .text:0x800A9540; // type:function size:0x20 scope:global align:4 +finishTask__13JASAramStreamFPv = .text:0x800A9560; // type:function size:0x60 scope:global align:4 +prepareFinishTask__13JASAramStreamFPv = .text:0x800A95C0; // type:function size:0x58 scope:global align:4 +headerLoad__13JASAramStreamFUli = .text:0x800A9618; // type:function size:0x1CC scope:global align:4 +load__13JASAramStreamFv = .text:0x800A97E4; // type:function size:0x2B4 scope:global align:4 +channelProcCallback__13JASAramStreamFPv = .text:0x800A9A98; // type:function size:0x20 scope:global align:4 +dvdErrorCheck__13JASAramStreamFPv = .text:0x800A9AB8; // type:function size:0x5C scope:global align:4 +channelCallback__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x800A9B14; // type:function size:0x3C scope:global align:4 +updateChannel__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannel = .text:0x800A9B50; // type:function size:0x758 scope:global align:4 +channelProc__13JASAramStreamFv = .text:0x800AA2A8; // type:function size:0x1E4 scope:global align:4 +channelStart__13JASAramStreamFv = .text:0x800AA48C; // type:function size:0x240 scope:global align:4 +channelStop__13JASAramStreamFUs = .text:0x800AA6CC; // type:function size:0x78 scope:global align:4 +DSPReleaseHalt2__FUl = .text:0x800AA760; // type:function size:0x48 scope:global align:32 +setup_callback__FUs = .text:0x800AA7C0; // type:function size:0xC scope:local align:32 +DsetupTable__FUlUlUlUlUl = .text:0x800AA7E0; // type:function size:0x64 scope:global align:32 +DsetMixerLevel__Ff = .text:0x800AA860; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x800AA8A0; // type:function size:0x48 scope:global align:32 +DspHandShake__FPv = .text:0x800AA900; // type:function size:0x38 scope:local align:32 +DspBoot__FPFPv_v = .text:0x800AA940; // type:function size:0xAC scope:global align:32 +DSPSendCommands2__FPUlUlPFUs_v = .text:0x800AAA00; // type:function size:0xE8 scope:global align:32 +DspInitWork__Fv = .text:0x800AAB00; // type:function size:0x2C scope:local align:32 +DspStartWork__FUlPFUs_v = .text:0x800AAB40; // type:function size:0x48 scope:global align:32 +DspFinishWork__FUs = .text:0x800AABA0; // type:function size:0x68 scope:global align:32 +DSPAddTask = .text:0x800AAC20; // type:function size:0x60 scope:global align:32 +DSPAddPriorTask__FP15STRUCT_DSP_TASK = .text:0x800AAC80; // type:function size:0x7C scope:global align:32 +__DSPHandler = .text:0x800AAD00; // type:function size:0x304 scope:global align:32 +DsyncFrame2__FUlUlUl = .text:0x800AB020; // type:function size:0x50 scope:global align:32 +Dsp_Update_Request__Fv = .text:0x800AB080; // type:function size:0x40 scope:local align:32 +Dsp_Running_Check__Fv = .text:0x800AB0C0; // type:function size:0x14 scope:global align:32 +Dsp_Running_Start__Fv = .text:0x800AB0E0; // type:function size:0xC scope:global align:32 +handleStop__13JAIAnimeSoundFUcUl = .text:0x800AB0EC; // type:function size:0x3C scope:global align:4 +__ct__13JAIAnimeSoundFP3VecP7JKRHeapUc = .text:0x800AB128; // type:function size:0x188 scope:global align:4 +initActorAnimSound__13JAIAnimeSoundFP17JAIAnimeSoundDataUlff = .text:0x800AB2B0; // type:function size:0x194 scope:global align:4 +checkLoopStartCount__13JAIAnimeSoundFf = .text:0x800AB444; // type:function size:0x40 scope:global align:4 +checkLoopEndCount__13JAIAnimeSoundFf = .text:0x800AB484; // type:function size:0x48 scope:global align:4 +setAnimSoundActor__13JAIAnimeSoundFPQ27JAInter5ActorffUc = .text:0x800AB4CC; // type:function size:0x504 scope:global align:4 +playActorAnimSound__13JAIAnimeSoundFPQ27JAInter5ActorfUc = .text:0x800AB9D0; // type:function size:0x280 scope:global align:4 +startAnimSound__13JAIAnimeSoundFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x800ABC50; // type:function size:0x4C scope:global align:4 +setSpeedModifySound__13JAIAnimeSoundFP8JAISoundP22JAIAnimeFrameSoundDataf = .text:0x800ABC9C; // type:function size:0x13C scope:global align:4 +__dt__13JAIAnimeSoundFv = .text:0x800ABDD8; // type:function size:0x60 scope:weak align:4 +enable__Q27JAInter10ObjectBaseFv = .text:0x800ABE38; // type:function size:0xC scope:weak align:4 +setInitCallback__Q27JAInter8BankWaveFPFv_v = .text:0x800ABE44; // type:function size:0x8 scope:global align:4 +setFirstLoadCallback__Q27JAInter8BankWaveFPFv_v = .text:0x800ABE4C; // type:function size:0x8 scope:global align:4 +setSecondLoadCallback__Q27JAInter8BankWaveFPFv_v = .text:0x800ABE54; // type:function size:0x8 scope:global align:4 +init__Q27JAInter8BankWaveFv = .text:0x800ABE5C; // type:function size:0x148 scope:global align:4 +loadFirstStayWave__Q27JAInter8BankWaveFv = .text:0x800ABFA4; // type:function size:0x94 scope:global align:4 +loadSecondStayWave__Q27JAInter8BankWaveFv = .text:0x800AC038; // type:function size:0x94 scope:global align:4 +finishSceneSet__Q27JAInter8BankWaveFUl = .text:0x800AC0CC; // type:function size:0x18 scope:global align:4 +loadGroupWave__Q27JAInter8BankWaveFll = .text:0x800AC0E4; // type:function size:0x74 scope:global align:4 +__ct__8JAIBasicFv = .text:0x800AC158; // type:function size:0x7C scope:global align:4 +initDriver__8JAIBasicFP12JKRSolidHeapUlUc = .text:0x800AC1D4; // type:function size:0x20 scope:global align:4 +initInterface__8JAIBasicFUc = .text:0x800AC1F4; // type:function size:0x20 scope:global align:4 +initInterfaceMain__8JAIBasicFv = .text:0x800AC214; // type:function size:0xC0 scope:global align:4 +initHeap__8JAIBasicFv = .text:0x800AC2D4; // type:function size:0x5C scope:global align:4 +initArchive__8JAIBasicFv = .text:0x800AC330; // type:function size:0x4C scope:global align:4 +initResourcePath__8JAIBasicFv = .text:0x800AC37C; // type:function size:0xC8 scope:global align:4 +setCameraInfo__8JAIBasicFP3VecP3VecPA4_fUl = .text:0x800AC444; // type:function size:0x34 scope:global align:4 +setRegisterTrackCallback__8JAIBasicFv = .text:0x800AC478; // type:function size:0x28 scope:global align:4 +initAudioThread__8JAIBasicFP12JKRSolidHeapUlUc = .text:0x800AC4A0; // type:function size:0x98 scope:global align:4 +initCamera__8JAIBasicFv = .text:0x800AC538; // type:function size:0x158 scope:global align:4 +__defctor__Q27JAInter6CameraFv = .text:0x800AC690; // type:function size:0x14 scope:weak align:4 +setInitFileLoadSwitch__8JAIBasicFUc = .text:0x800AC6A4; // type:function size:0x8 scope:global align:4 +initReadFile__8JAIBasicFv = .text:0x800AC6AC; // type:function size:0x6C scope:global align:4 +processFrameWork__8JAIBasicFv = .text:0x800AC718; // type:function size:0x64 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC77C; // type:function size:0x64 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP11JAISequencePQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC7E0; // type:function size:0x84 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP5JAISePQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC864; // type:function size:0x64 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP9JAIStreamPQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC8C8; // type:function size:0x58 scope:global align:4 +stopSoundHandle__8JAIBasicFP8JAISoundUl = .text:0x800AC920; // type:function size:0x88 scope:global align:4 +stopAllSe__8JAIBasicFUc = .text:0x800AC9A8; // type:function size:0xAC scope:global align:4 +stop__9JAIStreamFUl = .text:0x800ACA54; // type:function size:0x20 scope:weak align:4 +stop__11JAISequenceFUl = .text:0x800ACA74; // type:function size:0x20 scope:weak align:4 +getMapInfoFxline__8JAIBasicFUl = .text:0x800ACA94; // type:function size:0x10 scope:global align:4 +getMapInfoGround__8JAIBasicFUl = .text:0x800ACAA4; // type:function size:0x10 scope:global align:4 +getMapInfoFxParameter__8JAIBasicFUl = .text:0x800ACAB4; // type:function size:0x18 scope:global align:4 +getSoundOffsetNumberFromID__8JAIBasicFUl = .text:0x800ACACC; // type:function size:0x50 scope:global align:4 +setParameterSeqSync__8JAIBasicFP8JASTrackUs = .text:0x800ACB1C; // type:function size:0x1DC scope:global align:4 +setSeExtParameter__8JAIBasicFP8JAISound = .text:0x800ACCF8; // type:function size:0x104 scope:global align:4 +makeSequence__8JAIBasicFv = .text:0x800ACDFC; // type:function size:0x70 scope:global align:4 +makeSe__8JAIBasicFv = .text:0x800ACE6C; // type:function size:0x70 scope:global align:4 +makeStream__8JAIBasicFv = .text:0x800ACEDC; // type:function size:0x70 scope:global align:4 +stopAudio__8JAIBasicFUlb = .text:0x800ACF4C; // type:function size:0xDC scope:global align:4 +checkAudioStopStatus__8JAIBasicFv = .text:0x800AD028; // type:function size:0x34 scope:global align:4 +stopCallBack__8JAIBasicFPv = .text:0x800AD05C; // type:function size:0x168 scope:global align:4 +transInitDataFile__7JAInterFPUcUl = .text:0x800AD1C4; // type:function size:0xF4 scope:global align:4 +loadTmpDVDFile__7JAInterFPcPPUc = .text:0x800AD2B8; // type:function size:0xE4 scope:global align:4 +deleteTmpDVDFile__7JAInterFPPUc = .text:0x800AD39C; // type:function size:0x30 scope:global align:4 +routeToTrack__7JAInterFUl = .text:0x800AD3CC; // type:function size:0x40 scope:global align:4 +__sinit_JAIConst_cpp = .text:0x800AD40C; // type:function size:0x84 scope:local align:4 +init__Q27JAInter14DummyObjectMgrFv = .text:0x800AD490; // type:function size:0xDC scope:global align:4 +getPointer__Q27JAInter14DummyObjectMgrFUl = .text:0x800AD56C; // type:function size:0x68 scope:global align:4 +check__Q27JAInter14DummyObjectMgrFv = .text:0x800AD5D4; // type:function size:0xF8 scope:global align:4 +init__Q27JAInter2FxFv = .text:0x800AD6CC; // type:function size:0x160 scope:global align:4 +setSceneMax__Q27JAInter2FxFUc = .text:0x800AD82C; // type:function size:0x8 scope:global align:4 +setBufferMax__Q27JAInter2FxFUlUlUlUl = .text:0x800AD834; // type:function size:0x24 scope:global align:4 +setTablePointer__Q27JAInter2FxFPPv = .text:0x800AD858; // type:function size:0x8 scope:global align:4 +setBufferPointer__Q27JAInter2FxFUcPs = .text:0x800AD860; // type:function size:0x10 scope:global align:4 +setScenePointer__Q27JAInter2FxFUcPv = .text:0x800AD870; // type:function size:0x10 scope:global align:4 +getSceneMax__Q27JAInter2FxFv = .text:0x800AD880; // type:function size:0x8 scope:global align:4 +getBufferSizeMax__Q27JAInter2FxFUc = .text:0x800AD888; // type:function size:0x10 scope:global align:4 +getBufferPointer__Q27JAInter2FxFUc = .text:0x800AD898; // type:function size:0x10 scope:global align:4 +getFxconfigTable__Q27JAInter2FxFv = .text:0x800AD8A8; // type:function size:0x8 scope:global align:4 +clearAllBuffer__Q27JAInter2FxFv = .text:0x800AD8B0; // type:function size:0xA0 scope:global align:4 +setParamInitDataPointer__18JAIGlobalParameterFPv = .text:0x800AD950; // type:function size:0x14 scope:global align:4 +setParamSoundSceneMax__18JAIGlobalParameterFUl = .text:0x800AD964; // type:function size:0x8 scope:global align:4 +setParamSeTrackMax__18JAIGlobalParameterFUl = .text:0x800AD96C; // type:function size:0x8 scope:global align:4 +setParamSeqPlayTrackMax__18JAIGlobalParameterFUl = .text:0x800AD974; // type:function size:0x10 scope:global align:4 +setParamSeqControlBufferMax__18JAIGlobalParameterFUl = .text:0x800AD984; // type:function size:0x8 scope:global align:4 +setParamAutoHeapMax__18JAIGlobalParameterFUl = .text:0x800AD98C; // type:function size:0x8 scope:global align:4 +setParamStayHeapMax__18JAIGlobalParameterFUl = .text:0x800AD994; // type:function size:0x8 scope:global align:4 +setParamDistanceMax__18JAIGlobalParameterFf = .text:0x800AD99C; // type:function size:0x8 scope:global align:4 +setParamMaxVolumeDistance__18JAIGlobalParameterFf = .text:0x800AD9A4; // type:function size:0x8 scope:global align:4 +setParamMinDistanceVolume__18JAIGlobalParameterFf = .text:0x800AD9AC; // type:function size:0x8 scope:global align:4 +setParamStreamInsideBufferCut__18JAIGlobalParameterFb = .text:0x800AD9B4; // type:function size:0x14 scope:global align:4 +setParamAutoHeapRoomSize__18JAIGlobalParameterFUl = .text:0x800AD9C8; // type:function size:0x8 scope:global align:4 +setParamStayHeapSize__18JAIGlobalParameterFUl = .text:0x800AD9D0; // type:function size:0x8 scope:global align:4 +setParamInitDataFileName__18JAIGlobalParameterFPc = .text:0x800AD9D8; // type:function size:0x8 scope:global align:4 +setParamSequenceArchivesFileName__18JAIGlobalParameterFPc = .text:0x800AD9E0; // type:function size:0x8 scope:global align:4 +setParamDistanceParameterMoveTime__18JAIGlobalParameterFUc = .text:0x800AD9E8; // type:function size:0x8 scope:global align:4 +setParamAudioCameraMax__18JAIGlobalParameterFUl = .text:0x800AD9F0; // type:function size:0x8 scope:global align:4 +setParamSystemTrackMax__18JAIGlobalParameterFl = .text:0x800AD9F8; // type:function size:0x8 scope:global align:4 +setParamSystemRootTrackMax__18JAIGlobalParameterFl = .text:0x800ADA00; // type:function size:0x8 scope:global align:4 +setParamSoundOutputMode__18JAIGlobalParameterFUl = .text:0x800ADA08; // type:function size:0x68 scope:global align:4 +getParamSeCategoryMax__18JAIGlobalParameterFv = .text:0x800ADA70; // type:function size:0x24 scope:global align:4 +getParamSoundSceneMax__18JAIGlobalParameterFv = .text:0x800ADA94; // type:function size:0x8 scope:global align:4 +getParamSeRegistMax__18JAIGlobalParameterFv = .text:0x800ADA9C; // type:function size:0x8 scope:global align:4 +getParamSeTrackMax__18JAIGlobalParameterFv = .text:0x800ADAA4; // type:function size:0x8 scope:global align:4 +getParamSeqTrackMax__18JAIGlobalParameterFv = .text:0x800ADAAC; // type:function size:0x8 scope:global align:4 +getParamSeqControlBufferMax__18JAIGlobalParameterFv = .text:0x800ADAB4; // type:function size:0x8 scope:global align:4 +getParamAutoHeapMax__18JAIGlobalParameterFv = .text:0x800ADABC; // type:function size:0x8 scope:global align:4 +getParamStayHeapMax__18JAIGlobalParameterFv = .text:0x800ADAC4; // type:function size:0x8 scope:global align:4 +getParamSeqPlayTrackMax__18JAIGlobalParameterFv = .text:0x800ADACC; // type:function size:0x8 scope:global align:4 +getParamDistanceMax__18JAIGlobalParameterFv = .text:0x800ADAD4; // type:function size:0x8 scope:global align:4 +getParamMaxVolumeDistance__18JAIGlobalParameterFv = .text:0x800ADADC; // type:function size:0x8 scope:global align:4 +getParamMinDistanceVolume__18JAIGlobalParameterFv = .text:0x800ADAE4; // type:function size:0x8 scope:global align:4 +getParamStreamDecodedBufferBlocks__18JAIGlobalParameterFv = .text:0x800ADAEC; // type:function size:0x20 scope:global align:4 +getParamAutoHeapRoomSize__18JAIGlobalParameterFv = .text:0x800ADB0C; // type:function size:0x8 scope:global align:4 +getParamStayHeapSize__18JAIGlobalParameterFv = .text:0x800ADB14; // type:function size:0x8 scope:global align:4 +getParamSeDolbyCenterValue__18JAIGlobalParameterFv = .text:0x800ADB1C; // type:function size:0x8 scope:global align:4 +getParamInitDataFileName__18JAIGlobalParameterFv = .text:0x800ADB24; // type:function size:0x8 scope:global align:4 +getParamWavePath__18JAIGlobalParameterFv = .text:0x800ADB2C; // type:function size:0x8 scope:global align:4 +getParamSequenceArchivesPath__18JAIGlobalParameterFv = .text:0x800ADB34; // type:function size:0x8 scope:global align:4 +getParamStreamPath__18JAIGlobalParameterFv = .text:0x800ADB3C; // type:function size:0x8 scope:global align:4 +getParamAudioResPath__18JAIGlobalParameterFv = .text:0x800ADB44; // type:function size:0x8 scope:global align:4 +getParamSequenceArchivesFileName__18JAIGlobalParameterFv = .text:0x800ADB4C; // type:function size:0x8 scope:global align:4 +getParamDopplarMoveTime__18JAIGlobalParameterFv = .text:0x800ADB54; // type:function size:0x8 scope:global align:4 +getParamDistanceParameterMoveTime__18JAIGlobalParameterFv = .text:0x800ADB5C; // type:function size:0x8 scope:global align:4 +getParamDummyObjectLifeTime__18JAIGlobalParameterFv = .text:0x800ADB64; // type:function size:0x8 scope:global align:4 +getParamDummyObjectMax__18JAIGlobalParameterFv = .text:0x800ADB6C; // type:function size:0x8 scope:global align:4 +getParamSeqMuteVolumeSePlay__18JAIGlobalParameterFv = .text:0x800ADB74; // type:function size:0x8 scope:global align:4 +getParamSeqMuteMoveSpeedSePlay__18JAIGlobalParameterFv = .text:0x800ADB7C; // type:function size:0x8 scope:global align:4 +getParamAudioCameraMax__18JAIGlobalParameterFv = .text:0x800ADB84; // type:function size:0x8 scope:global align:4 +getParamSeqParameterLines__18JAIGlobalParameterFv = .text:0x800ADB8C; // type:function size:0x8 scope:global align:4 +getParamStreamParameterLines__18JAIGlobalParameterFv = .text:0x800ADB94; // type:function size:0x8 scope:global align:4 +getParamSeDistanceWaitMax__18JAIGlobalParameterFv = .text:0x800ADB9C; // type:function size:0x8 scope:global align:4 +setWsInitCallback__Q27JAInter8InitDataFPFPUl_v = .text:0x800ADBA4; // type:function size:0x8 scope:global align:4 +setBnkInitCallback__Q27JAInter8InitDataFPFPUl_v = .text:0x800ADBAC; // type:function size:0x8 scope:global align:4 +checkInitDataFile__Q27JAInter8InitDataFv = .text:0x800ADBB4; // type:function size:0xE4 scope:global align:4 +checkInitDataOnMemory__Q27JAInter8InitDataFv = .text:0x800ADC98; // type:function size:0x264 scope:global align:4 +initBnkList__Q27JAInter8InitDataFPUl = .text:0x800ADEFC; // type:function size:0xCC scope:global align:4 +initWsList__Q27JAInter8InitDataFPUl = .text:0x800ADFC8; // type:function size:0xD8 scope:global align:4 +init__Q27JAInter5SeMgrFv = .text:0x800AE0A0; // type:function size:0x3A4 scope:global align:4 +__ct__Q27JAInter11SeParameterFv = .text:0x800AE444; // type:function size:0xF0 scope:weak align:4 +__ct__Q27JAInter19MoveParaSetInitZeroFv = .text:0x800AE534; // type:function size:0x18 scope:weak align:4 +__ct__Q27JAInter19MoveParaSetInitHalfFv = .text:0x800AE54C; // type:function size:0x18 scope:weak align:4 +__defctor__Q27JAInter11MoveParaSetFv = .text:0x800AE564; // type:function size:0x18 scope:weak align:4 +startSeSequence__Q27JAInter5SeMgrFv = .text:0x800AE57C; // type:function size:0x50 scope:global align:4 +processGFrameSe__Q27JAInter5SeMgrFv = .text:0x800AE5CC; // type:function size:0x34 scope:global align:4 +checkNextFrameSe__Q27JAInter5SeMgrFv = .text:0x800AE600; // type:function size:0x7E4 scope:global align:4 +checkPlayingSe__Q27JAInter5SeMgrFv = .text:0x800AEDE4; // type:function size:0x488 scope:global align:4 +setVolume__5JAISeFfUlUc = .text:0x800AF26C; // type:function size:0x30 scope:weak align:4 +setSeqMuteFromSeStart__Q27JAInter5SeMgrFP8JAISound = .text:0x800AF29C; // type:function size:0xF0 scope:global align:4 +setVolume__11JAISequenceFfUlUc = .text:0x800AF38C; // type:function size:0x2C scope:weak align:4 +checkSeMovePara__Q27JAInter5SeMgrFv = .text:0x800AF3B8; // type:function size:0xD4 scope:global align:4 +sendSeAllParameter__Q27JAInter5SeMgrFP5JAISe = .text:0x800AF48C; // type:function size:0x168 scope:global align:4 +checkPlayingSeUpdateMultiplication__Q27JAInter5SeMgrFP5JAISePQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetfUcPf = .text:0x800AF5F4; // type:function size:0x10C scope:global align:4 +checkPlayingSeUpdateAddition__Q27JAInter5SeMgrFP5JAISePQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetUcPff = .text:0x800AF700; // type:function size:0x14C scope:global align:4 +changeIDToCategory__Q27JAInter5SeMgrFUl = .text:0x800AF84C; // type:function size:0x8 scope:global align:4 +releaseSeRegist__Q27JAInter5SeMgrFP5JAISe = .text:0x800AF854; // type:function size:0x1D0 scope:global align:4 +storeSeBuffer__Q27JAInter5SeMgrFPP5JAISePQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800AFA24; // type:function size:0x6EC scope:global align:4 +stop__5JAISeFUl = .text:0x800B0110; // type:function size:0x20 scope:weak align:4 +releaseSeBuffer__Q27JAInter5SeMgrFP5JAISeUl = .text:0x800B0130; // type:function size:0x208 scope:global align:4 +setSeSequenceStartCallback__Q27JAInter5SeMgrFPFv_v = .text:0x800B0338; // type:function size:0x8 scope:global align:4 +init__Q27JAInter7HeapMgrFUcUlUcUl = .text:0x800B0340; // type:function size:0x254 scope:global align:4 +getAutoHeapPointer__Q27JAInter7HeapMgrFv = .text:0x800B0594; // type:function size:0x8 scope:global align:4 +checkOnMemory__Q27JAInter7HeapMgrFUlPUc = .text:0x800B059C; // type:function size:0x100 scope:global align:4 +releaseAutoHeapPointer__Q27JAInter7HeapMgrFUc = .text:0x800B069C; // type:function size:0x24 scope:global align:4 +checkUsefulAutoHeapPosition__Q27JAInter7HeapMgrFv = .text:0x800B06C0; // type:function size:0xE8 scope:global align:4 +getFreeAutoHeapPointer__Q27JAInter7HeapMgrFUcUl = .text:0x800B07A8; // type:function size:0x48 scope:global align:4 +checkUsefulStayHeapPosition__Q27JAInter7HeapMgrFv = .text:0x800B07F0; // type:function size:0xC scope:global align:4 +getFreeStayHeapPointer__Q27JAInter7HeapMgrFUlUl = .text:0x800B07FC; // type:function size:0x108 scope:global align:4 +setAutoHeapLoadedFlag__Q27JAInter7HeapMgrFUcUc = .text:0x800B0904; // type:function size:0x14 scope:global align:4 +setStayHeapLoadedFlag__Q27JAInter7HeapMgrFUcUc = .text:0x800B0918; // type:function size:0x14 scope:global align:4 +__ct__Q27JAInter9HeapBlockFv = .text:0x800B092C; // type:function size:0x18 scope:global align:4 +init__Q27JAInter11SequenceMgrFv = .text:0x800B0944; // type:function size:0x488 scope:global align:4 +__ct__Q27JAInter7MuteBitFv = .text:0x800B0DCC; // type:function size:0x20 scope:weak align:4 +__ct__Q27JAInter13SeqUpdateDataFv = .text:0x800B0DEC; // type:function size:0x12C scope:global align:4 +__dt__Q27JAInter15PlayerParameterFv = .text:0x800B0F18; // type:function size:0x68 scope:weak align:4 +__ct__Q27JAInter15PlayerParameterFv = .text:0x800B0F80; // type:function size:0x50 scope:weak align:4 +__dt__10JASPortCmdFv = .text:0x800B0FD0; // type:function size:0x58 scope:weak align:4 +getArchiveName__Q27JAInter11SequenceMgrFPc = .text:0x800B1028; // type:function size:0x6C scope:global align:4 +setArchivePointer__Q27JAInter11SequenceMgrFP10JKRArchive = .text:0x800B1094; // type:function size:0x8 scope:global align:4 +getArchivePointer__Q27JAInter11SequenceMgrFv = .text:0x800B109C; // type:function size:0x8 scope:global align:4 +setCustomHeapCallback__Q27JAInter11SequenceMgrFPFUlUsP11JAISequence_Q37JAInter11SequenceMgr14CustomHeapInfo = .text:0x800B10A4; // type:function size:0x8 scope:global align:4 +processGFrameSequence__Q27JAInter11SequenceMgrFv = .text:0x800B10AC; // type:function size:0x38 scope:global align:4 +checkEntriedSeq__Q27JAInter11SequenceMgrFv = .text:0x800B10E4; // type:function size:0x430 scope:global align:4 +checkFadeoutSeq__Q27JAInter11SequenceMgrFv = .text:0x800B1514; // type:function size:0xB8 scope:global align:4 +getVolume__11JAISequenceFUc = .text:0x800B15CC; // type:function size:0x20 scope:weak align:4 +checkStoppedSeq__Q27JAInter11SequenceMgrFv = .text:0x800B15EC; // type:function size:0xA4 scope:global align:4 +checkPlayingSeq__Q27JAInter11SequenceMgrFv = .text:0x800B1690; // type:function size:0xEC scope:global align:4 +checkStartedSeq__Q27JAInter11SequenceMgrFv = .text:0x800B177C; // type:function size:0xA0 scope:global align:4 +checkReadSeq__Q27JAInter11SequenceMgrFv = .text:0x800B181C; // type:function size:0x224 scope:global align:4 +checkSeqWave__Q27JAInter11SequenceMgrFv = .text:0x800B1A40; // type:function size:0xD8 scope:global align:4 +checkPlayingSeqTrack__Q27JAInter11SequenceMgrFUl = .text:0x800B1B18; // type:function size:0x1078 scope:global align:4 +setPitch__11JAISequenceFfUlUc = .text:0x800B2B90; // type:function size:0x2C scope:weak align:4 +setPan__11JAISequenceFfUlUc = .text:0x800B2BBC; // type:function size:0x2C scope:weak align:4 +stopSeq__Q27JAInter11SequenceMgrFP11JAISequence = .text:0x800B2BE8; // type:function size:0x130 scope:global align:4 +checkDvdLoadArc__Q27JAInter11SequenceMgrFUlUl = .text:0x800B2D18; // type:function size:0xE4 scope:global align:4 +checkCustomDvdLoadArc__Q27JAInter11SequenceMgrFUlUl = .text:0x800B2DFC; // type:function size:0x9C scope:global align:4 +storeSeqBuffer__Q27JAInter11SequenceMgrFPP11JAISequencePQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800B2E98; // type:function size:0x430 scope:global align:4 +init__Q27JAInter12SeqParameterFv = .text:0x800B32C8; // type:function size:0x388 scope:weak align:4 +releaseSeqBuffer__Q27JAInter11SequenceMgrFP11JAISequenceUl = .text:0x800B3650; // type:function size:0x1D8 scope:global align:4 +getPlayTrackInfo__Q27JAInter11SequenceMgrFUl = .text:0x800B3828; // type:function size:0x10 scope:global align:4 +__ct__11JAISequenceFv = .text:0x800B3838; // type:function size:0xEC scope:global align:4 +__ct__5JAISeFv = .text:0x800B3924; // type:function size:0x154 scope:global align:4 +__ct__9JAIStreamFv = .text:0x800B3A78; // type:function size:0xAC scope:global align:4 +getSeCategoryNumber__5JAISeFv = .text:0x800B3B24; // type:function size:0x24 scope:global align:4 +getSwBit__8JAISoundFv = .text:0x800B3B48; // type:function size:0xC scope:global align:4 +checkSwBit__8JAISoundFUl = .text:0x800B3B54; // type:function size:0x10 scope:global align:4 +getInfoPriority__8JAISoundFv = .text:0x800B3B64; // type:function size:0xC scope:global align:4 +clearMainSoundPPointer__8JAISoundFv = .text:0x800B3B70; // type:function size:0x18 scope:global align:4 +release__8JAISoundFv = .text:0x800B3B88; // type:function size:0x14 scope:global align:4 +start__8JAISoundFUl = .text:0x800B3B9C; // type:function size:0x4C scope:global align:4 +stop__8JAISoundFUl = .text:0x800B3BE8; // type:function size:0x30 scope:global align:4 +setPrepareFlag__8JAISoundFUc = .text:0x800B3C18; // type:function size:0x78 scope:global align:4 +setPrepareFlag__9JAIStreamFUc = .text:0x800B3C90; // type:function size:0x20 scope:weak align:4 +setPrepareFlag__11JAISequenceFUc = .text:0x800B3CB0; // type:function size:0x20 scope:weak align:4 +checkReady__8JAISoundFv = .text:0x800B3CD0; // type:function size:0x78 scope:global align:4 +checkReady__9JAIStreamFv = .text:0x800B3D48; // type:function size:0x20 scope:weak align:4 +checkReady__11JAISequenceFv = .text:0x800B3D68; // type:function size:0x20 scope:weak align:4 +setDistanceVolumeCommon__8JAISoundFfUc = .text:0x800B3D88; // type:function size:0x154 scope:global align:4 +setDistancePanCommon__8JAISoundFv = .text:0x800B3EDC; // type:function size:0x15C scope:global align:4 +setPositionDopplarCommon__8JAISoundFUl = .text:0x800B4038; // type:function size:0x270 scope:global align:4 +setDistanceDolbyCommon__8JAISoundFv = .text:0x800B42A8; // type:function size:0x74 scope:global align:4 +setSeqInterVolume__11JAISequenceFUcfUl = .text:0x800B431C; // type:function size:0x88 scope:global align:4 +setSeqInterPan__11JAISequenceFUcfUl = .text:0x800B43A4; // type:function size:0x88 scope:global align:4 +setSeqInterPitch__11JAISequenceFUcfUl = .text:0x800B442C; // type:function size:0x88 scope:global align:4 +setTrackInterruptSwitch__11JAISequenceFUcUc = .text:0x800B44B4; // type:function size:0x28 scope:global align:4 +setTrackFxmix__11JAISequenceFUcfUl = .text:0x800B44DC; // type:function size:0xB0 scope:global align:4 +setTrackPortData__11JAISequenceFUcUcUs = .text:0x800B458C; // type:function size:0xD0 scope:global align:4 +setSeInterVolume__5JAISeFUcfUlUc = .text:0x800B465C; // type:function size:0x158 scope:global align:4 +setSeInterPan__5JAISeFUcfUlUc = .text:0x800B47B4; // type:function size:0x158 scope:global align:4 +setSeInterDolby__5JAISeFUcfUlUc = .text:0x800B490C; // type:function size:0x158 scope:global align:4 +setSeDistanceParameters__5JAISeFv = .text:0x800B4A64; // type:function size:0x12C scope:global align:4 +setFxmix__5JAISeFfUlUc = .text:0x800B4B90; // type:function size:0x30 scope:weak align:4 +setSeDistanceVolume__5JAISeFUc = .text:0x800B4BC0; // type:function size:0x70 scope:global align:4 +setSeDistancePan__5JAISeFUc = .text:0x800B4C30; // type:function size:0x74 scope:global align:4 +setSeDistancePitch__5JAISeFUc = .text:0x800B4CA4; // type:function size:0x138 scope:global align:4 +setSePositionDopplar__5JAISeFv = .text:0x800B4DDC; // type:function size:0x80 scope:global align:4 +setSeDistanceFxmix__5JAISeFUc = .text:0x800B4E5C; // type:function size:0xC8 scope:global align:4 +setSeDistanceFir__5JAISeFUc = .text:0x800B4F24; // type:function size:0x4 scope:global align:4 +setSeDistanceDolby__5JAISeFUc = .text:0x800B4F28; // type:function size:0xA4 scope:global align:4 +setStreamPrepareFlag__9JAIStreamFUc = .text:0x800B4FCC; // type:function size:0xC scope:global align:4 +checkStreamReady__9JAIStreamFv = .text:0x800B4FD8; // type:function size:0x40 scope:global align:4 +setChannelVolume__9JAIStreamFUcfUl = .text:0x800B5018; // type:function size:0xA0 scope:global align:4 +setChannelPan__9JAIStreamFUcfUl = .text:0x800B50B8; // type:function size:0xA0 scope:global align:4 +setPauseMode__8JAISoundFUcUc = .text:0x800B5158; // type:function size:0x1E8 scope:global align:4 +setVolume__9JAIStreamFfUlUc = .text:0x800B5340; // type:function size:0x84 scope:weak align:4 +setVolumeU7__11JAISequenceFUcUlUc = .text:0x800B53C4; // type:function size:0xAC scope:weak align:4 +setSeqPrepareFlag__11JAISequenceFUc = .text:0x800B5470; // type:function size:0xC scope:global align:4 +checkSeqReady__11JAISequenceFv = .text:0x800B547C; // type:function size:0x2C scope:global align:4 +getSeqInterVolume__11JAISequenceFUc = .text:0x800B54A8; // type:function size:0x2C scope:global align:4 +getTrackPortRoute__8JAISoundFUcUc = .text:0x800B54D4; // type:function size:0x3C scope:global align:4 +checkSoundHandle__8JAISoundFUlPv = .text:0x800B5510; // type:function size:0x88 scope:global align:4 +getFadeCounter__11JAISequenceFv = .text:0x800B5598; // type:function size:0x4C scope:global align:4 +getFadeCounter__5JAISeFv = .text:0x800B55E4; // type:function size:0xC scope:global align:4 +getFadeCounter__9JAIStreamFv = .text:0x800B55F0; // type:function size:0x24 scope:global align:4 +initParameter__8JAISoundFPvPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800B5614; // type:function size:0xE8 scope:global align:4 +init__Q27JAInter9LinkSoundFv = .text:0x800B56FC; // type:function size:0x70 scope:global align:4 +getSound__Q27JAInter9LinkSoundFv = .text:0x800B576C; // type:function size:0x7C scope:global align:4 +onGet__8JAISoundFv = .text:0x800B57E8; // type:function size:0x4 scope:weak align:4 +releaseSound__Q27JAInter9LinkSoundFP8JAISound = .text:0x800B57EC; // type:function size:0x68 scope:global align:4 +onRelease__8JAISoundFv = .text:0x800B5854; // type:function size:0x4 scope:weak align:4 +set__Q27JAInter11MoveParaSetFfUl = .text:0x800B5858; // type:function size:0x98 scope:global align:4 +move__Q27JAInter11MoveParaSetFv = .text:0x800B58F0; // type:function size:0x4C scope:global align:4 +getVolume__9JAIStreamFUc = .text:0x800B593C; // type:function size:0x2C scope:weak align:4 +setPan__9JAIStreamFfUlUc = .text:0x800B5968; // type:function size:0xE4 scope:weak align:4 +getPan__9JAIStreamFUc = .text:0x800B5A4C; // type:function size:0x30 scope:weak align:4 +setPitch__9JAIStreamFfUlUc = .text:0x800B5A7C; // type:function size:0xE4 scope:weak align:4 +getPitch__9JAIStreamFUc = .text:0x800B5B60; // type:function size:0x30 scope:weak align:4 +setFxmix__9JAIStreamFfUlUc = .text:0x800B5B90; // type:function size:0xE4 scope:weak align:4 +getFxmix__9JAIStreamFUc = .text:0x800B5C74; // type:function size:0x30 scope:weak align:4 +setDolby__9JAIStreamFfUlUc = .text:0x800B5CA4; // type:function size:0xE4 scope:weak align:4 +getDolby__9JAIStreamFUc = .text:0x800B5D88; // type:function size:0x30 scope:weak align:4 +setVolumeU7__9JAIStreamFUcUlUc = .text:0x800B5DB8; // type:function size:0x58 scope:weak align:4 +getVolumeU7__9JAIStreamFUc = .text:0x800B5E10; // type:function size:0x40 scope:weak align:4 +setPanU7__9JAIStreamFUcUlUc = .text:0x800B5E50; // type:function size:0x58 scope:weak align:4 +getPanU7__9JAIStreamFUc = .text:0x800B5EA8; // type:function size:0x40 scope:weak align:4 +setFxmixU7__9JAIStreamFUcUlUc = .text:0x800B5EE8; // type:function size:0x58 scope:weak align:4 +getFxmixU7__9JAIStreamFUc = .text:0x800B5F40; // type:function size:0x40 scope:weak align:4 +setDolbyU7__9JAIStreamFUcUlUc = .text:0x800B5F80; // type:function size:0x58 scope:weak align:4 +getDolbyU7__9JAIStreamFUc = .text:0x800B5FD8; // type:function size:0x40 scope:weak align:4 +setPortData__9JAIStreamFUcUs = .text:0x800B6018; // type:function size:0x4 scope:weak align:4 +getPortData__9JAIStreamFUc = .text:0x800B601C; // type:function size:0xC scope:weak align:4 +setTempoProportion__8JAISoundFfUl = .text:0x800B6028; // type:function size:0x4 scope:weak align:4 +getTempoProportion__8JAISoundFv = .text:0x800B602C; // type:function size:0x8 scope:weak align:4 +setDirectVolume__8JAISoundFfUl = .text:0x800B6034; // type:function size:0x30 scope:weak align:4 +setDirectPan__8JAISoundFfUl = .text:0x800B6064; // type:function size:0x30 scope:weak align:4 +setDirectPitch__8JAISoundFfUl = .text:0x800B6094; // type:function size:0x30 scope:weak align:4 +setDirectFxmix__8JAISoundFfUl = .text:0x800B60C4; // type:function size:0x30 scope:weak align:4 +setDirectDolby__8JAISoundFfUl = .text:0x800B60F4; // type:function size:0x30 scope:weak align:4 +setDemoVolume__8JAISoundFfUl = .text:0x800B6124; // type:function size:0x30 scope:weak align:4 +setDemoPan__8JAISoundFfUl = .text:0x800B6154; // type:function size:0x30 scope:weak align:4 +setDemoPitch__8JAISoundFfUl = .text:0x800B6184; // type:function size:0x30 scope:weak align:4 +setDemoFxmix__8JAISoundFfUl = .text:0x800B61B4; // type:function size:0x30 scope:weak align:4 +setDemoDolby__8JAISoundFfUl = .text:0x800B61E4; // type:function size:0x30 scope:weak align:4 +setDemoVolumeU7__8JAISoundFUcUl = .text:0x800B6214; // type:function size:0x30 scope:weak align:4 +setDemoPanU7__8JAISoundFUcUl = .text:0x800B6244; // type:function size:0x30 scope:weak align:4 +setDemoFxmixU7__8JAISoundFUcUl = .text:0x800B6274; // type:function size:0x30 scope:weak align:4 +setDemoDolbyU7__8JAISoundFUcUl = .text:0x800B62A4; // type:function size:0x30 scope:weak align:4 +setDistanceParameterMoveTime__8JAISoundFUc = .text:0x800B62D4; // type:function size:0x8 scope:weak align:4 +setAdjustPriority__8JAISoundFs = .text:0x800B62DC; // type:function size:0x8 scope:weak align:4 +getVolume__5JAISeFUc = .text:0x800B62E4; // type:function size:0x10 scope:weak align:4 +setPan__5JAISeFfUlUc = .text:0x800B62F4; // type:function size:0x90 scope:weak align:4 +getPan__5JAISeFUc = .text:0x800B6384; // type:function size:0x10 scope:weak align:4 +setPitch__5JAISeFfUlUc = .text:0x800B6394; // type:function size:0x90 scope:weak align:4 +getPitch__5JAISeFUc = .text:0x800B6424; // type:function size:0x10 scope:weak align:4 +getFxmix__5JAISeFUc = .text:0x800B6434; // type:function size:0x10 scope:weak align:4 +setDolby__5JAISeFfUlUc = .text:0x800B6444; // type:function size:0x90 scope:weak align:4 +getDolby__5JAISeFUc = .text:0x800B64D4; // type:function size:0x10 scope:weak align:4 +setVolumeU7__5JAISeFUcUlUc = .text:0x800B64E4; // type:function size:0xB4 scope:weak align:4 +getVolumeU7__5JAISeFUc = .text:0x800B6598; // type:function size:0x2C scope:weak align:4 +setPanU7__5JAISeFUcUlUc = .text:0x800B65C4; // type:function size:0xB4 scope:weak align:4 +getPanU7__5JAISeFUc = .text:0x800B6678; // type:function size:0x2C scope:weak align:4 +setFxmixU7__5JAISeFUcUlUc = .text:0x800B66A4; // type:function size:0xB4 scope:weak align:4 +getFxmixU7__5JAISeFUc = .text:0x800B6758; // type:function size:0x2C scope:weak align:4 +setDolbyU7__5JAISeFUcUlUc = .text:0x800B6784; // type:function size:0xB4 scope:weak align:4 +getDolbyU7__5JAISeFUc = .text:0x800B6838; // type:function size:0x2C scope:weak align:4 +setPortData__5JAISeFUcUs = .text:0x800B6864; // type:function size:0x130 scope:weak align:4 +getPortData__5JAISeFUc = .text:0x800B6994; // type:function size:0xAC scope:weak align:4 +getPan__11JAISequenceFUc = .text:0x800B6A40; // type:function size:0x30 scope:weak align:4 +getPitch__11JAISequenceFUc = .text:0x800B6A70; // type:function size:0x30 scope:weak align:4 +setFxmix__11JAISequenceFfUlUc = .text:0x800B6AA0; // type:function size:0xE4 scope:weak align:4 +getFxmix__11JAISequenceFUc = .text:0x800B6B84; // type:function size:0x30 scope:weak align:4 +setDolby__11JAISequenceFfUlUc = .text:0x800B6BB4; // type:function size:0x110 scope:weak align:4 +getDolby__11JAISequenceFUc = .text:0x800B6CC4; // type:function size:0x30 scope:weak align:4 +setTempoProportion__11JAISequenceFfUl = .text:0x800B6CF4; // type:function size:0x98 scope:weak align:4 +getTempoProportion__11JAISequenceFv = .text:0x800B6D8C; // type:function size:0x24 scope:weak align:4 +getVolumeU7__11JAISequenceFUc = .text:0x800B6DB0; // type:function size:0x48 scope:weak align:4 +setPanU7__11JAISequenceFUcUlUc = .text:0x800B6DF8; // type:function size:0x148 scope:weak align:4 +getPanU7__11JAISequenceFUc = .text:0x800B6F40; // type:function size:0x4C scope:weak align:4 +setFxmixU7__11JAISequenceFUcUlUc = .text:0x800B6F8C; // type:function size:0x148 scope:weak align:4 +getFxmixU7__11JAISequenceFUc = .text:0x800B70D4; // type:function size:0x4C scope:weak align:4 +setDolbyU7__11JAISequenceFUcUlUc = .text:0x800B7120; // type:function size:0x134 scope:weak align:4 +getDolbyU7__11JAISequenceFUc = .text:0x800B7254; // type:function size:0x4C scope:weak align:4 +setPortData__11JAISequenceFUcUs = .text:0x800B72A0; // type:function size:0x17C scope:weak align:4 +getPortData__11JAISequenceFUc = .text:0x800B741C; // type:function size:0x30 scope:weak align:4 +init__Q27JAInter10SoundTableFPUcUl = .text:0x800B744C; // type:function size:0xCC scope:global align:4 +getInfoPointer__Q27JAInter10SoundTableFUl = .text:0x800B7518; // type:function size:0xC4 scope:global align:4 +getInfoFormat__Q27JAInter10SoundTableFUl = .text:0x800B75DC; // type:function size:0x58 scope:global align:4 +getCategotyMax__Q27JAInter10SoundTableFv = .text:0x800B7634; // type:function size:0x8 scope:global align:4 +getSoundMax__Q27JAInter10SoundTableFUc = .text:0x800B763C; // type:function size:0x10 scope:global align:4 +init__Q27JAInter9StreamMgrFv = .text:0x800B764C; // type:function size:0x31C scope:global align:4 +storeStreamBuffer__Q27JAInter9StreamMgrFPP9JAIStreamPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800B7968; // type:function size:0x358 scope:global align:4 +releaseStreamBuffer__Q27JAInter9StreamMgrFP9JAIStreamUl = .text:0x800B7CC0; // type:function size:0x88 scope:global align:4 +checkSystem__Q27JAInter9StreamMgrFv = .text:0x800B7D48; // type:function size:0x1AC scope:global align:4 +PlayingStream__Q27JAInter9StreamMgrFv = .text:0x800B7EF4; // type:function size:0xA00 scope:global align:4 +changeCallback__Q27JAInter9StreamMgrFv = .text:0x800B88F4; // type:function size:0xA8 scope:global align:4 +processGFrameStream__Q27JAInter9StreamMgrFv = .text:0x800B899C; // type:function size:0x30 scope:global align:4 +checkEntriedStream__Q27JAInter9StreamMgrFv = .text:0x800B89CC; // type:function size:0xE8 scope:global align:4 +systemCallBack__Q27JAInter9StreamMgrFUlP13JASAramStreamPv = .text:0x800B8AB4; // type:function size:0x70 scope:global align:4 +prepareSystem__Q27JAInter9StreamMgrFl = .text:0x800B8B24; // type:function size:0xC8 scope:global align:4 +playDirect__Q27JAInter9StreamMgrFPc = .text:0x800B8BEC; // type:function size:0x198 scope:global align:4 +stopDirect__Q27JAInter9StreamMgrFv = .text:0x800B8D84; // type:function size:0x3C scope:global align:4 +initChannel__Q27JAInter9StreamMgrFv = .text:0x800B8DC0; // type:function size:0xEC scope:global align:4 +getStreamObjectPointer__Q27JAInter9StreamMgrFv = .text:0x800B8EAC; // type:function size:0x8 scope:global align:4 +getSystemStatus__Q27JAInter9StreamMgrFv = .text:0x800B8EB4; // type:function size:0x8 scope:global align:4 +getDecodedBufferBlocks__Q27JAInter9StreamMgrFv = .text:0x800B8EBC; // type:function size:0x8 scope:global align:4 +getDecodedBufferSize__Q27JAInter9StreamMgrFUl = .text:0x800B8EC4; // type:function size:0x18 scope:global align:4 +getChannelMax__Q27JAInter9StreamMgrFv = .text:0x800B8EDC; // type:function size:0x8 scope:global align:4 +checkFileExsistence__Q27JAInter15SystemInterfaceFPc = .text:0x800B8EE4; // type:function size:0x30 scope:global align:4 +checkSeqActiveFlag__Q27JAInter15SystemInterfaceFP8JASTrack = .text:0x800B8F14; // type:function size:0xEC scope:global align:4 +trackToSeqp__Q27JAInter15SystemInterfaceFP11JAISequenceUc = .text:0x800B9000; // type:function size:0x4C scope:global align:4 +setSeqPortargsF32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcf = .text:0x800B904C; // type:function size:0x1C scope:global align:4 +setSeqPortargsU32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcUl = .text:0x800B9068; // type:function size:0x1C scope:global align:4 +rootInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData = .text:0x800B9084; // type:function size:0x58 scope:global align:4 +trackInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData = .text:0x800B90DC; // type:function size:0x88 scope:global align:4 +outerInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataP8JASTrackUlUsUc = .text:0x800B9164; // type:function size:0x288 scope:global align:4 +setSePortParameter__Q27JAInter15SystemInterfaceFP11JASPortArgs = .text:0x800B93EC; // type:function size:0x1BC scope:global align:4 +__sinit_JAISystemInterface_cpp = .text:0x800B95A8; // type:function size:0x54 scope:local align:4 +__dt__Q27JAInter10ObjectBaseFv = .text:0x800B95FC; // type:function size:0x74 scope:global align:4 +startSound__Q27JAInter10ObjectBaseFUlUl = .text:0x800B9670; // type:function size:0x164 scope:global align:4 +handleStop__Q27JAInter10ObjectBaseFUcUl = .text:0x800B97D4; // type:function size:0x44 scope:global align:4 +startSound__Q27JAInter10ObjectBaseFUcUlUl = .text:0x800B9818; // type:function size:0x48 scope:global align:4 +startSound__Q27JAInter10ObjectBaseFPP8JAISoundUlUl = .text:0x800B9860; // type:function size:0x44 scope:global align:4 +stopSound__Q27JAInter10ObjectBaseFUlUl = .text:0x800B98A4; // type:function size:0x60 scope:global align:4 +stopAllSound__Q27JAInter10ObjectBaseFv = .text:0x800B9904; // type:function size:0x68 scope:global align:4 +disable__Q27JAInter10ObjectBaseFv = .text:0x800B996C; // type:function size:0x44 scope:global align:4 +dispose__Q27JAInter10ObjectBaseFv = .text:0x800B99B0; // type:function size:0x40 scope:global align:4 +getFreeSoundHandlePointer__Q27JAInter10ObjectBaseFv = .text:0x800B99F0; // type:function size:0x5C scope:global align:4 +getUseSoundHandlePointer__Q27JAInter10ObjectBaseFUl = .text:0x800B9A4C; // type:function size:0x54 scope:global align:4 +getUseSoundHandleNo__Q27JAInter10ObjectBaseFUl = .text:0x800B9AA0; // type:function size:0x4C scope:global align:4 +__ct__Q27JAInter6ObjectFP3VecP7JKRHeapUc = .text:0x800B9AEC; // type:function size:0xF4 scope:global align:4 +__dt__Q27JAInter6ObjectFv = .text:0x800B9BE0; // type:function size:0x84 scope:global align:4 +startSound__Q27JAInter6ObjectFUlUl = .text:0x800B9C64; // type:function size:0x21C scope:global align:4 +disable__Q27JAInter6ObjectFv = .text:0x800B9E80; // type:function size:0x158 scope:global align:4 +loop__Q27JAInter6ObjectFv = .text:0x800B9FD8; // type:function size:0x214 scope:global align:4 +__ct__10JADHioNodeFPCc = .text:0x800BA1EC; // type:function size:0x10 scope:global align:4 +__dt__10JADHioNodeFv = .text:0x800BA1FC; // type:function size:0x48 scope:global align:4 +linearTransform__7JALCalcFfffffb = .text:0x800BA244; // type:function size:0x64 scope:global align:4 +getParamByExp__7JALCalcFffffffQ27JALCalc9CurveSign = .text:0x800BA2A8; // type:function size:0x18C scope:global align:4 +getRandom__7JALCalcFfff = .text:0x800BA434; // type:function size:0xC0 scope:global align:4 +getRandom_0_1__7JALCalcFv = .text:0x800BA4F4; // type:function size:0x70 scope:global align:4 +__ct__Q210JADUtility10PrmSetBaseFb = .text:0x800BA564; // type:function size:0xAC scope:global align:4 +load__Q210JADUtility10PrmSetBaseFR20JSUMemoryInputStream = .text:0x800BA610; // type:function size:0x98 scope:global align:4 +load__Q210JADUtility7PrmBaseFR20JSUMemoryInputStream = .text:0x800BA6A8; // type:function size:0x40 scope:weak align:4 +__dt__Q210JADUtility10PrmSetBaseFv = .text:0x800BA6E8; // type:function size:0xE8 scope:weak align:4 +appendAfter__Q210JADUtility10PrmSetBaseFv = .text:0x800BA7D0; // type:function size:0x4 scope:weak align:4 +afterRemovingChildButton__Q210JADUtility10PrmSetBaseFPQ210JADUtility10PrmSetBase = .text:0x800BA7D4; // type:function size:0x4 scope:weak align:4 +afterRemovingThisButton__Q210JADUtility10PrmSetBaseFPQ210JADUtility10PrmSetBase = .text:0x800BA7D8; // type:function size:0x4 scope:weak align:4 +getEraseLink__Q210JADUtility10PrmSetBaseFv = .text:0x800BA7DC; // type:function size:0x8 scope:weak align:4 +afterGetFromFree__Q210JADUtility10PrmSetBaseFv = .text:0x800BA7E4; // type:function size:0x4 scope:weak align:4 +beforeRemovingChild__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase = .text:0x800BA7E8; // type:function size:0x4 scope:weak align:4 +beforeRemovingThis__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase = .text:0x800BA7EC; // type:function size:0x4 scope:weak align:4 +afterRemovingChildButton__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase = .text:0x800BA7F0; // type:function size:0x4 scope:weak align:4 +afterRemovingThisButton__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBasePQ210JADUtility10PrmSetBase = .text:0x800BA7F4; // type:function size:0x4 scope:weak align:4 +__ct__Q210JADUtility11DataMgrBaseFv = .text:0x800BA7F8; // type:function size:0x44 scope:global align:4 +__dt__Q210JADUtility11DataMgrBaseFv = .text:0x800BA83C; // type:function size:0x78 scope:global align:4 +__dt__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BA8B4; // type:function size:0xC8 scope:global align:4 +isTempBuffaMode__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BA97C; // type:function size:0x8 scope:weak align:4 +initInstanceExt__Q210JADUtility15DataLoadMgrNodeFPvl = .text:0x800BA984; // type:function size:0xF0 scope:global align:4 +setFlagsAsExternal__Q210JADUtility15DataLoadMgrNodeFPv = .text:0x800BAA74; // type:function size:0x14 scope:global align:4 +__ct__Q210JADUtility11DataMgrNodeFv = .text:0x800BAA88; // type:function size:0x15C scope:global align:4 +__dt__Q210JADUtility6StrPrmFv = .text:0x800BABE4; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility10PrmHioFv = .text:0x800BAC8C; // type:function size:0x98 scope:weak align:4 +__dt__Q210JADUtility7PrmFv = .text:0x800BAD24; // type:function size:0x88 scope:weak align:4 +__dt__Q210JADUtility7PrmBaseFv = .text:0x800BADAC; // type:function size:0x78 scope:weak align:4 +save__Q210JADUtility6StrPrmFR21JSUMemoryOutputStream = .text:0x800BAE24; // type:function size:0xA0 scope:weak align:4 +load__Q210JADUtility6StrPrmFR20JSUMemoryInputStream = .text:0x800BAEC4; // type:function size:0xA0 scope:weak align:4 +save__Q210JADUtility7PrmBaseFR21JSUMemoryOutputStream = .text:0x800BAF64; // type:function size:0x78 scope:weak align:4 +__dt__Q210JADUtility11DataMgrNodeFv = .text:0x800BAFDC; // type:function size:0x164 scope:weak align:4 +getPath__Q210JADUtility11DataMgrNodeFv = .text:0x800BB140; // type:function size:0x8 scope:weak align:4 +setPath__Q210JADUtility11DataMgrNodeFPc = .text:0x800BB148; // type:function size:0x50 scope:weak align:4 +init__Q210JADUtility11DataMgrNodeFv = .text:0x800BB198; // type:function size:0x44 scope:weak align:4 +init__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BB1DC; // type:function size:0x44 scope:weak align:4 +init__Q210JADUtility11DataMgrBaseFv = .text:0x800BB220; // type:function size:0x3C scope:weak align:4 +save__Q210JADUtility7PrmFR21JSUMemoryOutputStream = .text:0x800BB25C; // type:function size:0x84 scope:weak align:4 +load__Q210JADUtility7PrmFR20JSUMemoryInputStream = .text:0x800BB2E0; // type:function size:0x60 scope:weak align:4 +@532@28@init__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BB340; // type:function size:0x14 scope:weak align:4 +@532@28@__dt__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BB354; // type:function size:0x14 scope:weak align:4 +@592@28@init__Q210JADUtility11DataMgrNodeFv = .text:0x800BB368; // type:function size:0x14 scope:weak align:4 +@592@28@__dt__Q210JADUtility11DataMgrNodeFv = .text:0x800BB37C; // type:function size:0x14 scope:weak align:4 +TRKNubMainLoop = .text:0x800BB390; // type:function size:0xF8 scope:global align:4 +TRKDestructEvent = .text:0x800BB488; // type:function size:0x24 scope:global align:4 +TRKConstructEvent = .text:0x800BB4AC; // type:function size:0x18 scope:global align:4 +TRKPostEvent = .text:0x800BB4C4; // type:function size:0xE0 scope:global align:4 +TRKGetNextEvent = .text:0x800BB5A4; // type:function size:0xB4 scope:global align:4 +TRKInitializeEventQueue = .text:0x800BB658; // type:function size:0x58 scope:global align:4 +TRKNubWelcome = .text:0x800BB6B0; // type:function size:0x28 scope:global align:4 +TRKTerminateNub = .text:0x800BB6D8; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x800BB6FC; // type:function size:0x14C scope:global align:4 +TRKMessageSend = .text:0x800BB848; // type:function size:0x44 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x800BB88C; // type:function size:0xF0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x800BB97C; // type:function size:0x98 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x800BBA14; // type:function size:0xE8 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x800BBAFC; // type:function size:0xFC scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x800BBBF8; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x800BBC60; // type:function size:0xFC scope:global align:4 +TRKReadBuffer = .text:0x800BBD5C; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer = .text:0x800BBDE8; // type:function size:0xA4 scope:global align:4 +TRKSetBufferPosition = .text:0x800BBE8C; // type:function size:0x30 scope:global align:4 +TRKResetBuffer = .text:0x800BBEBC; // type:function size:0x40 scope:global align:4 +TRKReleaseBuffer = .text:0x800BBEFC; // type:function size:0x64 scope:global align:4 +TRKGetBuffer = .text:0x800BBF60; // type:function size:0x2C scope:global align:4 +TRKGetFreeBuffer = .text:0x800BBF8C; // type:function size:0xC8 scope:global align:4 +TRKInitializeMessageBuffers = .text:0x800BC054; // type:function size:0x74 scope:global align:4 +TRKTerminateSerialHandler = .text:0x800BC0C8; // type:function size:0x8 scope:global align:4 +TRKInitializeSerialHandler = .text:0x800BC0D0; // type:function size:0xC4 scope:global align:4 +TRKProcessInput = .text:0x800BC194; // type:function size:0x50 scope:global align:4 +TRKGetInput = .text:0x800BC1E4; // type:function size:0x60 scope:global align:4 +TRKTestForPacket = .text:0x800BC244; // type:function size:0x13C scope:global align:4 +usr_put_initialize = .text:0x800BC380; // type:function size:0x4 scope:global align:4 +usr_puts_serial = .text:0x800BC384; // type:function size:0x88 scope:global align:4 +TRKDispatchMessage = .text:0x800BC40C; // type:function size:0x170 scope:global align:4 +TRKInitializeDispatcher = .text:0x800BC57C; // type:function size:0x8 scope:global align:4 +TRKDoSetOption = .text:0x800BC584; // type:function size:0xA8 scope:global align:4 +TRKDoStop = .text:0x800BC62C; // type:function size:0xA8 scope:global align:4 +TRKDoStep = .text:0x800BC6D4; // type:function size:0x220 scope:global align:4 +TRKDoContinue = .text:0x800BC8F4; // type:function size:0xB0 scope:global align:4 +TRKDoWriteRegisters = .text:0x800BC9A4; // type:function size:0x290 scope:global align:4 +TRKDoReadRegisters = .text:0x800BCC34; // type:function size:0x2E0 scope:global align:4 +TRKDoWriteMemory = .text:0x800BCF14; // type:function size:0x23C scope:global align:4 +TRKDoReadMemory = .text:0x800BD150; // type:function size:0x244 scope:global align:4 +TRKDoSupportMask = .text:0x800BD394; // type:function size:0x8 scope:global align:4 +TRKDoVersions = .text:0x800BD39C; // type:function size:0x8 scope:global align:4 +TRKDoOverride = .text:0x800BD3A4; // type:function size:0x58 scope:global align:4 +TRKDoReset = .text:0x800BD3FC; // type:function size:0x58 scope:global align:4 +TRKDoDisconnect = .text:0x800BD454; // type:function size:0x78 scope:global align:4 +TRKDoConnect = .text:0x800BD4CC; // type:function size:0x64 scope:global align:4 +SetTRKConnected = .text:0x800BD530; // type:function size:0xC scope:global align:4 +GetTRKConnected = .text:0x800BD53C; // type:function size:0x10 scope:global align:4 +OutputData = .text:0x800BD54C; // type:function size:0xA8 scope:global align:4 +HandlePositionFileSupportRequest = .text:0x800BD5F4; // type:function size:0x110 scope:global align:4 +HandleCloseFileSupportRequest = .text:0x800BD704; // type:function size:0xE8 scope:global align:4 +HandleOpenFileSupportRequest = .text:0x800BD7EC; // type:function size:0x11C scope:global align:4 +TRKRequestSend = .text:0x800BD908; // type:function size:0x1E0 scope:global align:4 +TRKSuppAccessFile = .text:0x800BDAE8; // type:function size:0x220 scope:global align:4 +TRKReleaseMutex = .text:0x800BDD08; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x800BDD10; // type:function size:0x8 scope:global align:4 +TRKInitializeMutex = .text:0x800BDD18; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x800BDD20; // type:function size:0x98 scope:global align:4 +TRK_flush_cache = .text:0x800BDDB8; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x800BDDF0; // type:function size:0xB8 scope:local align:4 +__TRK_get_MSR = .text:0x800BDEA8; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x800BDEB0; // type:function size:0x8 scope:global align:4 +TRK_ppc_memcpy = .text:0x800BDEB8; // type:function size:0x3C scope:local align:4 +TRKInterruptHandler = .text:0x800BDEF4; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x800BE088; // type:function size:0x9C scope:global align:4 +TRKSwapAndGo = .text:0x800BE124; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x800BE1E8; // type:function size:0x54 scope:global align:4 +ReadFPSCR = .text:0x800BE23C; // type:function size:0x24 scope:global align:4 +WriteFPSCR = .text:0x800BE260; // type:function size:0x24 scope:global align:4 +TRKTargetAccessARAM = .text:0x800BE284; // type:function size:0xC4 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x800BE348; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x800BE358; // type:function size:0x18 scope:global align:4 +TRKTargetSetStopped = .text:0x800BE370; // type:function size:0x10 scope:global align:4 +TRKTargetStopped = .text:0x800BE380; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x800BE390; // type:function size:0x200 scope:global align:4 +TRKTargetGetPC = .text:0x800BE590; // type:function size:0x10 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x800BE5A0; // type:function size:0xB8 scope:global align:4 +TRKTargetSingleStep = .text:0x800BE658; // type:function size:0xAC scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x800BE704; // type:function size:0x84 scope:global align:4 +TRKTargetAddStopInfo = .text:0x800BE788; // type:function size:0x8C scope:global align:4 +TRKTargetInterrupt = .text:0x800BE814; // type:function size:0x190 scope:global align:4 +TRKPostInterruptEvent = .text:0x800BE9A4; // type:function size:0xAC scope:global align:4 +TRKTargetAccessExtended2 = .text:0x800BEA50; // type:function size:0x438 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x800BEE88; // type:function size:0x170 scope:global align:4 +TRKTargetAccessFP = .text:0x800BEFF8; // type:function size:0x50C scope:global align:4 +TRKTargetAccessDefault = .text:0x800BF504; // type:function size:0xF4 scope:global align:4 +TRKTargetReadInstruction = .text:0x800BF5F8; // type:function size:0x4C scope:global align:4 +TRKTargetAccessMemory = .text:0x800BF644; // type:function size:0x14C scope:global align:4 +TRKValidMemory32 = .text:0x800BF790; // type:function size:0x2A4 scope:global align:4 +TRKAccessFile = .text:0x800BFA40; // type:label scope:global +TRKOpenFile = .text:0x800BFA48; // type:label scope:global +TRKCloseFile = .text:0x800BFA50; // type:label scope:global +TRKPositionFile = .text:0x800BFA58; // type:label scope:global +TRKSaveExtended1Block = .text:0x800BFA60; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x800BFC18; // type:function size:0x1B8 scope:global align:4 +InitMetroTRK = .text:0x800BFDD0; // type:function size:0x98 scope:global align:4 +InitMetroTRK_BBA = .text:0x800BFE68; // type:function size:0x94 scope:global align:4 +TRK__write_aram = .text:0x800BFEFC; // type:function size:0x1EC scope:global align:4 +TRK__read_aram = .text:0x800C00E8; // type:function size:0x134 scope:global align:4 +TRKInitializeTarget = .text:0x800C021C; // type:function size:0x4C scope:global align:4 +__TRK_copy_vectors = .text:0x800C0268; // type:function size:0x12C scope:global align:4 +TRKTargetTranslate = .text:0x800C0394; // type:function size:0x58 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x800C03EC; // type:function size:0x20 scope:global align:4 +TRK_main = .text:0x800C040C; // type:function size:0x58 scope:global align:4 +TRKLoadContext = .text:0x800C0464; // type:function size:0x88 scope:global align:4 +TRKUARTInterruptHandler = .text:0x800C04EC; // type:function size:0x4 scope:global align:4 +InitializeProgramEndTrap = .text:0x800C04F0; // type:function size:0x58 scope:global align:4 +TRK_board_display = .text:0x800C0548; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x800C0578; // type:function size:0x30 scope:global align:4 +ReserveEXI2Port = .text:0x800C05A8; // type:function size:0x30 scope:global align:4 +TRKWriteUARTN = .text:0x800C05D8; // type:function size:0x3C scope:global align:4 +TRKReadUARTN = .text:0x800C0614; // type:function size:0x3C scope:global align:4 +TRKPollUART = .text:0x800C0650; // type:function size:0x30 scope:global align:4 +EnableEXI2Interrupts = .text:0x800C0680; // type:function size:0x48 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x800C06C8; // type:function size:0x50 scope:global align:4 +InitMetroTRKCommTable = .text:0x800C0718; // type:function size:0x26C scope:global align:4 +TRKEXICallBack = .text:0x800C0984; // type:function size:0x38 scope:global align:4 +TRKTargetContinue = .text:0x800C09BC; // type:function size:0x34 scope:global align:4 +GetUseSerialIO = .text:0x800C09F0; // type:function size:0x10 scope:global align:4 +SetUseSerialIO = .text:0x800C0A00; // type:function size:0xC scope:global align:4 +__close_console = .text:0x800C0A0C; // type:function size:0x84 scope:global align:4 +__TRK_write_console = .text:0x800C0A90; // type:function size:0xBC scope:global align:4 +__read_console = .text:0x800C0B4C; // type:function size:0xBC scope:global align:4 +udp_cc_post_stop = .text:0x800C0C08; // type:function size:0x8 scope:weak align:4 +udp_cc_pre_continue = .text:0x800C0C10; // type:function size:0x8 scope:weak align:4 +udp_cc_peek = .text:0x800C0C18; // type:function size:0x8 scope:weak align:4 +udp_cc_write = .text:0x800C0C20; // type:function size:0x8 scope:weak align:4 +udp_cc_read = .text:0x800C0C28; // type:function size:0x8 scope:weak align:4 +udp_cc_close = .text:0x800C0C30; // type:function size:0x8 scope:weak align:4 +udp_cc_open = .text:0x800C0C38; // type:function size:0x8 scope:weak align:4 +udp_cc_shutdown = .text:0x800C0C40; // type:function size:0x8 scope:weak align:4 +udp_cc_initialize = .text:0x800C0C48; // type:function size:0x8 scope:weak align:4 +ddh_cc_initinterrupts = .text:0x800C0C50; // type:function size:0x24 scope:global align:4 +ddh_cc_peek = .text:0x800C0C74; // type:function size:0x70 scope:global align:4 +ddh_cc_post_stop = .text:0x800C0CE4; // type:function size:0x24 scope:global align:4 +ddh_cc_pre_continue = .text:0x800C0D08; // type:function size:0x24 scope:global align:4 +ddh_cc_write = .text:0x800C0D2C; // type:function size:0xC0 scope:global align:4 +ddh_cc_read = .text:0x800C0DEC; // type:function size:0xEC scope:global align:4 +ddh_cc_close = .text:0x800C0ED8; // type:function size:0x8 scope:global align:4 +ddh_cc_open = .text:0x800C0EE0; // type:function size:0x24 scope:global align:4 +ddh_cc_shutdown = .text:0x800C0F04; // type:function size:0x8 scope:global align:4 +ddh_cc_initialize = .text:0x800C0F0C; // type:function size:0x88 scope:global align:4 +CircleBufferReadBytes = .text:0x800C0F94; // type:function size:0x108 scope:global align:4 +CircleBufferWriteBytes = .text:0x800C109C; // type:function size:0x108 scope:global align:4 +CircleBufferInitialize = .text:0x800C11A4; // type:function size:0x50 scope:global align:4 +CBGetBytesAvailableForRead = .text:0x800C11F4; // type:function size:0x8 scope:global align:4 +gdev_cc_initinterrupts = .text:0x800C11FC; // type:function size:0x24 scope:global align:4 +gdev_cc_peek = .text:0x800C1220; // type:function size:0x70 scope:global align:4 +gdev_cc_post_stop = .text:0x800C1290; // type:function size:0x24 scope:global align:4 +gdev_cc_pre_continue = .text:0x800C12B4; // type:function size:0x24 scope:global align:4 +gdev_cc_write = .text:0x800C12D8; // type:function size:0xC0 scope:global align:4 +gdev_cc_read = .text:0x800C1398; // type:function size:0xF4 scope:global align:4 +gdev_cc_close = .text:0x800C148C; // type:function size:0x8 scope:global align:4 +gdev_cc_open = .text:0x800C1494; // type:function size:0x24 scope:global align:4 +gdev_cc_shutdown = .text:0x800C14B8; // type:function size:0x8 scope:global align:4 +gdev_cc_initialize = .text:0x800C14C0; // type:function size:0x88 scope:global align:4 +MWTRACE = .text:0x800C1548; // type:function size:0x50 scope:global align:4 +MWExitCriticalSection = .text:0x800C1598; // type:function size:0x24 scope:global align:4 +MWEnterCriticalSection = .text:0x800C15BC; // type:function size:0x30 scope:global align:4 +MWInitializeCriticalSection = .text:0x800C15EC; // type:function size:0x4 scope:global align:4 +__va_arg = .text:0x800C15F0; // type:function size:0xC8 scope:global align:4 +__destroy_global_chain = .text:0x800C16B8; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x800C1700; // type:function size:0x18 scope:global align:4 +__copy = .text:0x800C1718; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x800C1748; // type:function size:0x7C scope:global align:4 +__destroy_arr = .text:0x800C17C4; // type:function size:0x78 scope:global align:4 +__construct_array = .text:0x800C183C; // type:function size:0xFC scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x800C1938; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x800C19F0; // type:function size:0x104 scope:global align:4 +__ptmf_test = .text:0x800C1AF4; // type:function size:0x30 scope:global align:4 +__ptmf_scall = .text:0x800C1B24; // type:function size:0x28 scope:global align:4 +__cvt_fp2unsigned = .text:0x800C1B4C; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x800C1BA8; // type:function size:0x4C scope:local align:4 +_savefpr_24 = .text:0x800C1BD0; // type:label scope:global +_savefpr_25 = .text:0x800C1BD4; // type:label scope:global +_savefpr_28 = .text:0x800C1BE0; // type:label scope:global +__restore_fpr = .text:0x800C1BF4; // type:function size:0x4C scope:local align:4 +_restfpr_24 = .text:0x800C1C1C; // type:label scope:global +_restfpr_25 = .text:0x800C1C20; // type:label scope:global +_restfpr_28 = .text:0x800C1C2C; // type:label scope:global +__save_gpr = .text:0x800C1C40; // type:function size:0x4C scope:local align:4 +_savegpr_26 = .text:0x800C1C70; // type:label scope:global +__restore_gpr = .text:0x800C1C8C; // type:function size:0x4C scope:local align:4 +_restgpr_26 = .text:0x800C1CBC; // type:label scope:global +__div2u = .text:0x800C1CD8; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x800C1DC4; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x800C1EFC; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x800C1FE0; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x800C20EC; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x800C2110; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x800C2134; // type:function size:0x28 scope:global align:4 +__cvt_ull_dbl = .text:0x800C215C; // type:function size:0x9C scope:global align:4 +__cvt_dbl_usll = .text:0x800C21F8; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x800C22C4; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x800C22CC; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x800C2300; // type:function size:0x40 scope:global align:4 +__unregister_fragment = .text:0x800C2340; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x800C2374; // type:function size:0x34 scope:global align:4 +__sys_free = .text:0x800C23A8; // type:function size:0xB8 scope:weak align:4 +exit = .text:0x800C2460; // type:function size:0xF0 scope:global align:4 +free = .text:0x800C2550; // type:function size:0x70 scope:global align:4 +__pool_free = .text:0x800C25C0; // type:function size:0x58 scope:global align:4 +deallocate_from_fixed_pools = .text:0x800C2618; // type:function size:0x158 scope:global align:4 +deallocate_from_var_pools = .text:0x800C2770; // type:function size:0x294 scope:local align:4 +__flush_all = .text:0x800C2A04; // type:function size:0x70 scope:global align:4 +__close_all = .text:0x800C2A74; // type:function size:0xA8 scope:global align:4 +__dec2num = .text:0x800C2B1C; // type:function size:0x1080 scope:global align:4 +__num2dec = .text:0x800C3B9C; // type:function size:0x1A4 scope:global align:4 +__num2dec_internal = .text:0x800C3D40; // type:function size:0x3B4 scope:local align:4 +__minus_dec = .text:0x800C40F4; // type:function size:0x4FC scope:local align:4 +__equals_dec = .text:0x800C45F0; // type:function size:0x10C scope:local align:4 +__two_exp = .text:0x800C46FC; // type:function size:0x1784 scope:local align:4 +__timesdec = .text:0x800C5E80; // type:function size:0x278 scope:local align:4 +div = .text:0x800C60F8; // type:function size:0x58 scope:global align:4 +abs = .text:0x800C6150; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x800C6160; // type:function size:0xC4 scope:global align:4 +__prep_buffer = .text:0x800C6224; // type:function size:0x34 scope:global align:4 +__end_critical_region = .text:0x800C6258; // type:function size:0x4 scope:global align:4 +__begin_critical_region = .text:0x800C625C; // type:function size:0x4 scope:global align:4 +__kill_critical_regions = .text:0x800C6260; // type:function size:0x4 scope:global align:4 +tolower = .text:0x800C6264; // type:function size:0x24 scope:weak align:4 +__fwrite = .text:0x800C6288; // type:function size:0x30C scope:global align:4 +fwrite = .text:0x800C6594; // type:function size:0x7C scope:global align:4 +fflush = .text:0x800C6610; // type:function size:0x138 scope:global align:4 +fclose = .text:0x800C6748; // type:function size:0x1BC scope:global align:4 +fseek = .text:0x800C6904; // type:function size:0x6C scope:global align:4 +_fseek = .text:0x800C6970; // type:function size:0x270 scope:global align:4 +ftell = .text:0x800C6BE0; // type:function size:0xE4 scope:global align:4 +wcstombs = .text:0x800C6CC4; // type:function size:0x118 scope:global align:4 +mbtowc = .text:0x800C6DDC; // type:function size:0x120 scope:global align:4 +is_utf8_complete = .text:0x800C6EFC; // type:function size:0xEC scope:local align:4 +memcmp = .text:0x800C6FE8; // type:function size:0x4C scope:global align:4 +__memrchr = .text:0x800C7034; // type:function size:0x2C scope:global align:4 +memchr = .text:0x800C7060; // type:function size:0x2C scope:global align:4 +memmove = .text:0x800C708C; // type:function size:0xCC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x800C7158; // type:function size:0xAC scope:global align:4 +__copy_longs_unaligned = .text:0x800C7204; // type:function size:0xC0 scope:global align:4 +__copy_longs_rev_aligned = .text:0x800C72C4; // type:function size:0xA8 scope:global align:4 +__copy_longs_aligned = .text:0x800C736C; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x800C7428; // type:function size:0x10 scope:global align:4 +sprintf = .text:0x800C7438; // type:function size:0xE0 scope:global align:4 +snprintf = .text:0x800C7518; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x800C75EC; // type:function size:0x78 scope:global align:4 +vsnprintf = .text:0x800C7664; // type:function size:0x74 scope:global align:4 +vprintf = .text:0x800C76D8; // type:function size:0x98 scope:global align:4 +__StringWrite = .text:0x800C7770; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x800C77DC; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x800C7834; // type:function size:0x774 scope:local align:4 +float2str = .text:0x800C7FA8; // type:function size:0x71C scope:local align:4 +round_decimal = .text:0x800C86C4; // type:function size:0x12C scope:local align:4 +double2hex = .text:0x800C87F0; // type:function size:0x338 scope:local align:4 +longlong2str = .text:0x800C8B28; // type:function size:0x314 scope:local align:4 +long2str = .text:0x800C8E3C; // type:function size:0x258 scope:local align:4 +parse_format = .text:0x800C9094; // type:function size:0x504 scope:local align:4 +srand = .text:0x800C9598; // type:function size:0x8 scope:global align:4 +rand = .text:0x800C95A0; // type:function size:0x20 scope:global align:4 +sscanf = .text:0x800C95C0; // type:function size:0xC4 scope:global align:4 +__StringRead = .text:0x800C9684; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x800C9714; // type:function size:0x9AC scope:local align:4 +parse_format = .text:0x800CA0C0; // type:function size:0x548 scope:local align:4 +strrchr = .text:0x800CA608; // type:function size:0x48 scope:global align:4 +strchr = .text:0x800CA650; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x800CA680; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x800CA6C0; // type:function size:0x128 scope:global align:4 +strcat = .text:0x800CA7E8; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x800CA814; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x800CA858; // type:function size:0xB8 scope:global align:4 +strlen = .text:0x800CA910; // type:function size:0x1C scope:global align:4 +__strtold = .text:0x800CA92C; // type:function size:0x100C scope:global align:4 +strtol = .text:0x800CB938; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x800CBA28; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x800CBAD4; // type:function size:0x40C scope:global align:4 +__strtoul = .text:0x800CBEE0; // type:function size:0x378 scope:global align:4 +fwide = .text:0x800CC258; // type:function size:0x88 scope:global align:4 +__write_console = .text:0x800CC2E0; // type:function size:0xD0 scope:weak align:4 +__ieee754_asin = .text:0x800CC3B0; // type:function size:0x238 scope:global align:4 +__ieee754_atan2 = .text:0x800CC5E8; // type:function size:0x290 scope:global align:4 +__ieee754_exp = .text:0x800CC878; // type:function size:0x224 scope:global align:4 +__ieee754_fmod = .text:0x800CCA9C; // type:function size:0x33C scope:global align:4 +__ieee754_log = .text:0x800CCDD8; // type:function size:0x27C scope:global align:4 +__ieee754_log10 = .text:0x800CD054; // type:function size:0x110 scope:global align:4 +__ieee754_pow = .text:0x800CD164; // type:function size:0x830 scope:global align:4 +__ieee754_rem_pio2 = .text:0x800CD994; // type:function size:0x3A0 scope:global align:4 +__kernel_cos = .text:0x800CDD34; // type:function size:0xF4 scope:global align:4 +__kernel_rem_pio2 = .text:0x800CDE28; // type:function size:0xE54 scope:global align:4 +__kernel_sin = .text:0x800CEC7C; // type:function size:0xA0 scope:global align:4 +__kernel_tan = .text:0x800CED1C; // type:function size:0x214 scope:global align:4 +atan = .text:0x800CEF30; // type:function size:0x218 scope:global align:4 +ceil = .text:0x800CF148; // type:function size:0x144 scope:global align:4 +copysign = .text:0x800CF28C; // type:function size:0x28 scope:global align:4 +cos = .text:0x800CF2B4; // type:function size:0xD4 scope:global align:4 +floor = .text:0x800CF388; // type:function size:0x148 scope:global align:4 +frexp = .text:0x800CF4D0; // type:function size:0x8C scope:global align:4 +ldexp = .text:0x800CF55C; // type:function size:0x1C4 scope:global align:4 +modf = .text:0x800CF720; // type:function size:0xFC scope:global align:4 +sin = .text:0x800CF81C; // type:function size:0xD8 scope:global align:4 +tan = .text:0x800CF8F4; // type:function size:0x78 scope:global align:4 +asin = .text:0x800CF96C; // type:function size:0x20 scope:global align:4 +atan2 = .text:0x800CF98C; // type:function size:0x20 scope:global align:4 +exp = .text:0x800CF9AC; // type:function size:0x20 scope:global align:4 +fmod = .text:0x800CF9CC; // type:function size:0x20 scope:global align:4 +log10 = .text:0x800CF9EC; // type:function size:0x20 scope:global align:4 +pow = .text:0x800CFA0C; // type:function size:0x20 scope:global align:4 +__ieee754_sqrt = .text:0x800CFA2C; // type:function size:0x224 scope:global align:4 +tanf = .text:0x800CFC50; // type:function size:0x24 scope:weak align:4 +sinf = .text:0x800CFC74; // type:function size:0x24 scope:weak align:4 +cosf = .text:0x800CFC98; // type:function size:0x24 scope:weak align:4 +sqrt = .text:0x800CFCBC; // type:function size:0x20 scope:global align:4 +stricmp = .text:0x800CFCDC; // type:function size:0x8C scope:global align:4 +DBClose = .text:0x800CFD68; // type:function size:0x4 scope:global align:4 +DBOpen = .text:0x800CFD6C; // type:function size:0x4 scope:global align:4 +DBWrite = .text:0x800CFD70; // type:function size:0x260 scope:global align:4 +DBRead = .text:0x800CFFD0; // type:function size:0x8C scope:global align:4 +DBQueryData = .text:0x800D005C; // type:function size:0x9C scope:global align:4 +DBInitInterrupts = .text:0x800D00F8; // type:function size:0x54 scope:global align:4 +DBInitComm = .text:0x800D014C; // type:function size:0x78 scope:global align:4 +DBGHandler = .text:0x800D01C4; // type:function size:0x40 scope:local align:4 +MWCallback = .text:0x800D0204; // type:function size:0x3C scope:local align:4 +DBGReadStatus = .text:0x800D0240; // type:function size:0xAC scope:local align:4 +DBGWrite = .text:0x800D02EC; // type:function size:0xDC scope:local align:4 +DBGRead = .text:0x800D03C8; // type:function size:0xDC scope:local align:4 +DBGReadMailbox = .text:0x800D04A4; // type:function size:0xAC scope:local align:4 +DBGEXIImm = .text:0x800D0550; // type:function size:0x298 scope:local align:4 +__VIRetraceHandler = .text:0x800D07E8; // type:function size:0x274 scope:local align:4 +VISetPreRetraceCallback = .text:0x800D0A5C; // type:function size:0x44 scope:global align:4 +VISetPostRetraceCallback = .text:0x800D0AA0; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x800D0AE4; // type:function size:0xA0 scope:local align:4 +__VIInit = .text:0x800D0B84; // type:function size:0x200 scope:global align:4 +VIInit = .text:0x800D0D84; // type:function size:0x4B0 scope:global align:4 +VIWaitForRetrace = .text:0x800D1234; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x800D1288; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x800D155C; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x800D16FC; // type:function size:0x828 scope:global align:4 +VIFlush = .text:0x800D1F24; // type:function size:0x130 scope:global align:4 +VISetNextFrameBuffer = .text:0x800D2054; // type:function size:0x6C scope:global align:4 +VIGetCurrentFrameBuffer = .text:0x800D20C0; // type:function size:0x8 scope:global align:4 +VISetBlack = .text:0x800D20C8; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x800D2144; // type:function size:0x8 scope:global align:4 +GetCurrentDisplayPosition = .text:0x800D214C; // type:function size:0x3C scope:local align:4 +getCurrentFieldEvenOdd = .text:0x800D2188; // type:function size:0x68 scope:local align:4 +VIGetNextField = .text:0x800D21F0; // type:function size:0x9C scope:global align:4 +VIGetCurrentLine = .text:0x800D228C; // type:function size:0x98 scope:global align:4 +VIGetTvFormat = .text:0x800D2324; // type:function size:0x68 scope:global align:4 +VIGetDTVStatus = .text:0x800D238C; // type:function size:0x3C scope:global align:4 +__VIDisplayPositionToXY = .text:0x800D23C8; // type:function size:0x21C scope:global align:4 +__VIGetCurrentPosition = .text:0x800D25E4; // type:function size:0x60 scope:global align:4 +EXI2_Init = .text:0x800D2644; // type:function size:0x4 scope:global align:4 +EXI2_EnableInterrupts = .text:0x800D2648; // type:function size:0x4 scope:global align:4 +EXI2_Poll = .text:0x800D264C; // type:function size:0x8 scope:global align:4 +EXI2_ReadN = .text:0x800D2654; // type:function size:0x8 scope:global align:4 +EXI2_WriteN = .text:0x800D265C; // type:function size:0x8 scope:global align:4 +EXI2_Reserve = .text:0x800D2664; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x800D2668; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x800D266C; // type:function size:0x8 scope:global align:4 +ARRegisterDMACallback = .text:0x800D2674; // type:function size:0x44 scope:global align:4 +ARGetDMAStatus = .text:0x800D26B8; // type:function size:0x3C scope:global align:4 +ARStartDMA = .text:0x800D26F4; // type:function size:0xF0 scope:global align:4 +ARAlloc = .text:0x800D27E4; // type:function size:0x68 scope:global align:4 +ARInit = .text:0x800D284C; // type:function size:0xC4 scope:global align:4 +ARGetBaseAddress = .text:0x800D2910; // type:function size:0x8 scope:global align:4 +ARGetSize = .text:0x800D2918; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x800D2920; // type:function size:0x78 scope:local align:4 +__ARClearInterrupt = .text:0x800D2998; // type:function size:0x20 scope:global align:4 +__ARGetInterruptStatus = .text:0x800D29B8; // type:function size:0x10 scope:global align:4 +__ARChecksize = .text:0x800D29C8; // type:function size:0x17F4 scope:local align:4 +__ARQServiceQueueLo = .text:0x800D41BC; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x800D42BC; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x800D42C0; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x800D438C; // type:function size:0x70 scope:global align:4 +ARQPostRequest = .text:0x800D43FC; // type:function size:0x15C scope:global align:4 +PPCMfmsr = .text:0x800D4558; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x800D4560; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x800D4568; // type:function size:0x8 scope:global align:4 +PPCMthid0 = .text:0x800D4570; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x800D4578; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x800D4580; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x800D4588; // type:function size:0x8 scope:weak align:4 +PPCSync = .text:0x800D4590; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x800D4598; // type:function size:0x14 scope:weak align:4 +PPCMtmmcr0 = .text:0x800D45AC; // type:function size:0x8 scope:global align:4 +PPCMtmmcr1 = .text:0x800D45B4; // type:function size:0x8 scope:global align:4 +PPCMtpmc1 = .text:0x800D45BC; // type:function size:0x8 scope:global align:4 +PPCMtpmc2 = .text:0x800D45C4; // type:function size:0x8 scope:global align:4 +PPCMtpmc3 = .text:0x800D45CC; // type:function size:0x8 scope:global align:4 +PPCMtpmc4 = .text:0x800D45D4; // type:function size:0x8 scope:global align:4 +PPCMffpscr = .text:0x800D45DC; // type:function size:0x20 scope:global align:4 +PPCMtfpscr = .text:0x800D45FC; // type:function size:0x28 scope:global align:4 +PPCMfhid2 = .text:0x800D4624; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x800D462C; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x800D4634; // type:function size:0x8 scope:global align:4 +PPCDisableSpeculation = .text:0x800D463C; // type:function size:0x28 scope:global align:4 +PPCSetFpNonIEEEMode = .text:0x800D4664; // type:function size:0x8 scope:global align:4 +__CARDDefaultApiCallback = .text:0x800D466C; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x800D4670; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x800D46A4; // type:function size:0xD8 scope:global align:4 +__CARDExiHandler = .text:0x800D477C; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x800D4894; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x800D493C; // type:function size:0x84 scope:global align:4 +__CARDEnableInterrupt = .text:0x800D49C0; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x800D4A80; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x800D4B70; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x800D4C1C; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x800D4CC0; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x800D4EEC; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x800D4FFC; // type:function size:0x1B4 scope:local align:4 +__CARDReadSegment = .text:0x800D51B0; // type:function size:0x134 scope:global align:4 +__CARDWritePage = .text:0x800D52E4; // type:function size:0x11C scope:global align:4 +__CARDEraseSector = .text:0x800D5400; // type:function size:0xE0 scope:global align:4 +CARDInit = .text:0x800D54E0; // type:function size:0xAC scope:global align:4 +__CARDGetFontEncode = .text:0x800D558C; // type:function size:0x8 scope:global align:4 +__CARDSetDiskID = .text:0x800D5594; // type:function size:0x38 scope:global align:4 +__CARDGetControlBlock = .text:0x800D55CC; // type:function size:0xB8 scope:global align:4 +__CARDPutControlBlock = .text:0x800D5684; // type:function size:0x64 scope:global align:4 +CARDFreeBlocks = .text:0x800D56E8; // type:function size:0x150 scope:global align:4 +__CARDSync = .text:0x800D5838; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x800D58D0; // type:function size:0x50 scope:local align:4 +bitrev = .text:0x800D5920; // type:function size:0x16C scope:local align:4 +ReadArrayUnlock = .text:0x800D5A8C; // type:function size:0x144 scope:local align:4 +DummyLen = .text:0x800D5BD0; // type:function size:0xC4 scope:local align:4 +__CARDUnlock = .text:0x800D5C94; // type:function size:0xB58 scope:global align:4 +InitCallback = .text:0x800D67EC; // type:function size:0x70 scope:local align:4 +DoneCallback = .text:0x800D685C; // type:function size:0x324 scope:local align:4 +BlockReadCallback = .text:0x800D6B80; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x800D6C5C; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x800D6CC0; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x800D6D9C; // type:function size:0x64 scope:global align:4 +__CARDGetFatBlock = .text:0x800D6E00; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x800D6E08; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x800D6EDC; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x800D6FA4; // type:function size:0x118 scope:global align:4 +__CARDUpdateFatBlock = .text:0x800D70BC; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x800D7168; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x800D7170; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x800D7240; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x800D7308; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x800D73CC; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x800D757C; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x800D7800; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x800D7A40; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x800D7CC4; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x800D7D50; // type:function size:0x590 scope:global align:4 +CARDCheck = .text:0x800D82E0; // type:function size:0x54 scope:global align:4 +IsCard = .text:0x800D8334; // type:function size:0xCC scope:local align:4 +CARDProbe = .text:0x800D8400; // type:function size:0x38 scope:global align:4 +CARDProbeEx = .text:0x800D8438; // type:function size:0x17C scope:global align:4 +DoMount = .text:0x800D85B4; // type:function size:0x410 scope:local align:4 +__CARDMountCallback = .text:0x800D89C4; // type:function size:0x138 scope:global align:4 +CARDMountAsync = .text:0x800D8AFC; // type:function size:0x1A0 scope:global align:4 +CARDMount = .text:0x800D8C9C; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x800D8CE4; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x800D8D80; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x800D8E2C; // type:function size:0x144 scope:local align:4 +__CARDFormatRegionAsync = .text:0x800D8F70; // type:function size:0x658 scope:global align:4 +CARDFormat = .text:0x800D95C8; // type:function size:0x54 scope:global align:4 +__CARDCompareFileName = .text:0x800D961C; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x800D9684; // type:function size:0x94 scope:global align:4 +__CARDIsWritable = .text:0x800D9718; // type:function size:0x134 scope:global align:4 +__CARDIsReadable = .text:0x800D984C; // type:function size:0xF4 scope:global align:4 +CARDOpen = .text:0x800D9940; // type:function size:0x11C scope:global align:4 +CARDClose = .text:0x800D9A5C; // type:function size:0x54 scope:global align:4 +CreateCallbackFat = .text:0x800D9AB0; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x800D9BE0; // type:function size:0x220 scope:global align:4 +CARDCreate = .text:0x800D9E00; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x800D9E48; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x800DA000; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x800DA130; // type:function size:0x144 scope:global align:4 +CARDRead = .text:0x800DA274; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x800DA2BC; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x800DA42C; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x800DA4DC; // type:function size:0x114 scope:global align:4 +CARDWrite = .text:0x800DA5F0; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x800DA638; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x800DA830; // type:function size:0x114 scope:global align:4 +CARDSetStatusAsync = .text:0x800DA944; // type:function size:0x174 scope:global align:4 +CARDSetStatus = .text:0x800DAAB8; // type:function size:0x48 scope:global align:4 +CARDGetSerialNo = .text:0x800DAB00; // type:function size:0xC4 scope:global align:4 +DBInit = .text:0x800DABC4; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x800DABEC; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x800DAC34; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x800DAC44; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x800DAC60; // type:function size:0x50 scope:global align:4 +DSPCheckMailToDSP = .text:0x800DACB0; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x800DACC0; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x800DACD0; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x800DACE8; // type:function size:0x14 scope:global align:4 +DSPAssertInt = .text:0x800DACFC; // type:function size:0x40 scope:global align:4 +DSPInit = .text:0x800DAD3C; // type:function size:0xC4 scope:global align:4 +__DSP_debug_printf = .text:0x800DAE00; // type:function size:0x50 scope:global align:4 +__DSP_exec_task = .text:0x800DAE50; // type:function size:0x1A0 scope:global align:4 +__DSP_boot_task = .text:0x800DAFF0; // type:function size:0x18C scope:global align:4 +__DSP_insert_task = .text:0x800DB17C; // type:function size:0xA0 scope:global align:4 +__DSP_remove_task = .text:0x800DB21C; // type:function size:0x94 scope:global align:4 +__DVDInitWA = .text:0x800DB2B0; // type:function size:0x40 scope:weak align:4 +__DVDInterruptHandler = .text:0x800DB2F0; // type:function size:0x2E0 scope:weak align:4 +AlarmHandler = .text:0x800DB5D0; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x800DB654; // type:function size:0x70 scope:local align:4 +Read = .text:0x800DB6C4; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x800DB7D4; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x800DB854; // type:function size:0x298 scope:weak align:4 +DVDLowSeek = .text:0x800DBAEC; // type:function size:0x94 scope:weak align:4 +DVDLowWaitCoverClose = .text:0x800DBB80; // type:function size:0x2C scope:weak align:4 +DVDLowReadDiskID = .text:0x800DBBAC; // type:function size:0xA4 scope:weak align:4 +DVDLowStopMotor = .text:0x800DBC50; // type:function size:0x8C scope:weak align:4 +DVDLowRequestError = .text:0x800DBCDC; // type:function size:0x8C scope:weak align:4 +DVDLowInquiry = .text:0x800DBD68; // type:function size:0x9C scope:weak align:4 +DVDLowAudioStream = .text:0x800DBE04; // type:function size:0x98 scope:weak align:4 +DVDLowRequestAudioStatus = .text:0x800DBE9C; // type:function size:0x8C scope:weak align:4 +DVDLowAudioBufferConfig = .text:0x800DBF28; // type:function size:0x9C scope:weak align:4 +DVDLowReset = .text:0x800DBFC4; // type:function size:0xBC scope:weak align:4 +DVDLowBreak = .text:0x800DC080; // type:function size:0x14 scope:weak align:4 +DVDLowClearCallback = .text:0x800DC094; // type:function size:0x1C scope:weak align:4 +__DVDLowSetWAType = .text:0x800DC0B0; // type:function size:0x44 scope:weak align:4 +__DVDLowTestAlarm = .text:0x800DC0F4; // type:function size:0x38 scope:global align:4 +__DVDFSInit = .text:0x800DC12C; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x800DC164; // type:function size:0x2F4 scope:global align:4 +DVDFastOpen = .text:0x800DC458; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x800DC4CC; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x800DC594; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x800DC5B8; // type:function size:0x160 scope:local align:4 +DVDConvertEntrynumToPath = .text:0x800DC718; // type:function size:0x154 scope:local align:4 +DVDGetCurrentDir = .text:0x800DC86C; // type:function size:0xC4 scope:global align:4 +DVDChangeDir = .text:0x800DC930; // type:function size:0x60 scope:global align:4 +DVDReadAsyncPrio = .text:0x800DC990; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x800DCA50; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x800DCA80; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x800DCB98; // type:function size:0x24 scope:local align:4 +DVDOpenDir = .text:0x800DCBBC; // type:function size:0xC0 scope:global align:4 +DVDReadDir = .text:0x800DCC7C; // type:function size:0xA4 scope:global align:4 +DVDCloseDir = .text:0x800DCD20; // type:function size:0x8 scope:global align:4 +defaultOptionalCommandChecker = .text:0x800DCD28; // type:function size:0x4 scope:local align:4 +DVDInit = .text:0x800DCD2C; // type:function size:0xCC scope:global align:4 +stateReadingFST = .text:0x800DCDF8; // type:function size:0x94 scope:local align:4 +cbForStateReadingFST = .text:0x800DCE8C; // type:function size:0x8C scope:local align:4 +cbForStateError = .text:0x800DCF18; // type:function size:0xAC scope:local align:4 +stateTimeout = .text:0x800DCFC4; // type:function size:0x34 scope:local align:4 +stateGettingError = .text:0x800DCFF8; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x800DD020; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x800DD0D4; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x800DD368; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x800DD3D0; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x800DD468; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x800DD490; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x800DD5E8; // type:function size:0xE0 scope:local align:4 +stateCheckID3 = .text:0x800DD6C8; // type:function size:0x34 scope:local align:4 +stateCheckID2a = .text:0x800DD6FC; // type:function size:0x34 scope:local align:4 +cbForStateCheckID2a = .text:0x800DD730; // type:function size:0x74 scope:local align:4 +stateCheckID2 = .text:0x800DD7A4; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x800DD7DC; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x800DD8F0; // type:function size:0xE4 scope:local align:4 +cbForStateCheckID3 = .text:0x800DD9D4; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x800DDAD0; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x800DDB14; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x800DDBE0; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x800DDC10; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x800DDC80; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x800DDCA8; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x800DDD8C; // type:function size:0x230 scope:local align:4 +stateBusy = .text:0x800DDFBC; // type:function size:0x320 scope:local align:4 +cbForStateBusy = .text:0x800DE2DC; // type:function size:0x638 scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x800DE914; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x800DE9F0; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x800DEAC0; // type:function size:0xD4 scope:global align:4 +DVDCancelStreamAsync = .text:0x800DEB94; // type:function size:0xBC scope:global align:4 +DVDInquiryAsync = .text:0x800DEC50; // type:function size:0xD0 scope:global align:4 +DVDReset = .text:0x800DED20; // type:function size:0x44 scope:global align:4 +DVDGetCommandBlockStatus = .text:0x800DED64; // type:function size:0x4C scope:global align:4 +DVDGetDriveStatus = .text:0x800DEDB0; // type:function size:0xAC scope:global align:4 +DVDSetAutoInvalidation = .text:0x800DEE5C; // type:function size:0x10 scope:global align:4 +DVDResume = .text:0x800DEE6C; // type:function size:0x50 scope:global align:4 +DVDCancelAsync = .text:0x800DEEBC; // type:function size:0x27C scope:global align:4 +DVDCancel = .text:0x800DF138; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x800DF1E4; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x800DF208; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x800DF210; // type:function size:0xF8 scope:global align:4 +__DVDPrepareResetAsync = .text:0x800DF308; // type:function size:0x11C scope:global align:4 +__DVDTestAlarm = .text:0x800DF424; // type:function size:0x38 scope:global align:4 +__DVDClearWaitingQueue = .text:0x800DF45C; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x800DF494; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x800DF4FC; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x800DF59C; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x800DF5F4; // type:function size:0x60 scope:global align:4 +ErrorCode2Num = .text:0x800DF654; // type:function size:0x11C scope:local align:4 +__DVDStoreErrorCode = .text:0x800DF770; // type:function size:0x7C scope:global align:4 +DVDCompareDiskID = .text:0x800DF7EC; // type:function size:0xF8 scope:global align:4 +__DVDPrintFatalMessage = .text:0x800DF8E4; // type:function size:0x30 scope:global align:4 +cb = .text:0x800DF914; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x800DF9EC; // type:function size:0x168 scope:global align:4 +SetExiInterruptMask = .text:0x800DFB54; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x800DFC48; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x800DFEA4; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x800DFF44; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x800E0030; // type:function size:0x24C scope:global align:4 +EXIClearInterrupts = .text:0x800E027C; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x800E02C4; // type:function size:0x7C scope:global align:4 +__EXIProbe = .text:0x800E0340; // type:function size:0x174 scope:local align:4 +EXIProbe = .text:0x800E04B4; // type:function size:0x80 scope:global align:4 +EXIProbeEx = .text:0x800E0534; // type:function size:0xB4 scope:global align:4 +EXIAttach = .text:0x800E05E8; // type:function size:0x10C scope:global align:4 +EXIDetach = .text:0x800E06F4; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x800E07B0; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x800E08DC; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x800E09EC; // type:function size:0xC8 scope:local align:4 +TCIntrruptHandler = .text:0x800E0AB4; // type:function size:0x218 scope:local align:4 +EXTIntrruptHandler = .text:0x800E0CCC; // type:function size:0xD0 scope:local align:4 +EXIInit = .text:0x800E0D9C; // type:function size:0x1D4 scope:global align:4 +EXILock = .text:0x800E0F70; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x800E1064; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x800E1140; // type:function size:0x18 scope:global align:4 +UnlockedHandler = .text:0x800E1158; // type:function size:0x28 scope:local align:4 +EXIGetID = .text:0x800E1180; // type:function size:0x3B0 scope:global align:4 +ProbeBarnacle = .text:0x800E1530; // type:function size:0x18C scope:local align:4 +__OSEnableBarnacle = .text:0x800E16BC; // type:function size:0x1BC scope:global align:4 +InitializeUART = .text:0x800E1878; // type:function size:0x70 scope:global align:4 +WriteUARTN = .text:0x800E18E8; // type:function size:0x21C scope:global align:4 +GDInitGDLObj = .text:0x800E1B04; // type:function size:0x18 scope:global align:4 +GDFlushCurrToMem = .text:0x800E1B1C; // type:function size:0x2C scope:global align:4 +GDPadCurr32 = .text:0x800E1B48; // type:function size:0xF8 scope:global align:4 +GDOverflowed = .text:0x800E1C40; // type:function size:0x30 scope:global align:4 +GDSetVtxDescv = .text:0x800E1C70; // type:function size:0x5FC scope:global align:4 +GDSetArray = .text:0x800E226C; // type:function size:0x20C scope:global align:4 +GDSetArrayRaw = .text:0x800E2478; // type:function size:0x208 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x800E2680; // type:function size:0xFC scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x800E277C; // type:function size:0x24 scope:local align:4 +__GXShutdown = .text:0x800E27A0; // type:function size:0x190 scope:local align:4 +GXInit = .text:0x800E2930; // type:function size:0x798 scope:global align:4 +__GXInitGX = .text:0x800E30C8; // type:function size:0x938 scope:global align:4 +GXCPInterruptHandler = .text:0x800E3A00; // type:function size:0x134 scope:local align:4 +GXInitFifoBase = .text:0x800E3B34; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x800E3BA0; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x800E3C10; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x800E3C1C; // type:function size:0x128 scope:global align:4 +GXSetGPFifo = .text:0x800E3D44; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x800E3EBC; // type:function size:0x34 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x800E3EF0; // type:function size:0xC8 scope:global align:4 +GXGetGPStatus = .text:0x800E3FB8; // type:function size:0x50 scope:global align:4 +GXSetBreakPtCallback = .text:0x800E4008; // type:function size:0x44 scope:global align:4 +__GXFifoInit = .text:0x800E404C; // type:function size:0x4C scope:global align:4 +__GXFifoReadEnable = .text:0x800E4098; // type:function size:0x24 scope:local align:4 +__GXFifoReadDisable = .text:0x800E40BC; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x800E40E0; // type:function size:0x34 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x800E4114; // type:function size:0x30 scope:local align:4 +__GXWriteFifoIntReset = .text:0x800E4144; // type:function size:0x30 scope:local align:4 +__GXCleanGPFifo = .text:0x800E4174; // type:function size:0x100 scope:global align:4 +GXGetCPUFifo = .text:0x800E4274; // type:function size:0x8 scope:global align:4 +GXGetGPFifo = .text:0x800E427C; // type:function size:0x8 scope:global align:4 +GXSetVtxDesc = .text:0x800E4284; // type:function size:0x26C scope:global align:4 +__GXSetVCD = .text:0x800E44F0; // type:function size:0xBC scope:global align:4 +__GXCalculateVLim = .text:0x800E45AC; // type:function size:0x124 scope:global align:4 +GXClearVtxDesc = .text:0x800E46D0; // type:function size:0x38 scope:global align:4 +GXSetVtxAttrFmt = .text:0x800E4708; // type:function size:0x25C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x800E4964; // type:function size:0x280 scope:global align:4 +__GXSetVAT = .text:0x800E4BE4; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x800E4C80; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x800E4D0C; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x800E4D1C; // type:function size:0x280 scope:global align:4 +GXSetNumTexGens = .text:0x800E4F9C; // type:function size:0x3C scope:global align:4 +GXSetMisc = .text:0x800E4FD8; // type:function size:0x94 scope:global align:4 +GXFlush = .text:0x800E506C; // type:function size:0x5C scope:global align:4 +__GXAbort = .text:0x800E50C8; // type:function size:0x16C scope:global align:4 +GXAbortFrame = .text:0x800E5234; // type:function size:0x170 scope:global align:4 +GXSetDrawSync = .text:0x800E53A4; // type:function size:0xB4 scope:global align:4 +GXSetDrawDone = .text:0x800E5458; // type:function size:0x98 scope:global align:4 +GXWaitDrawDone = .text:0x800E54F0; // type:function size:0x4C scope:global align:4 +GXDrawDone = .text:0x800E553C; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x800E55BC; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x800E55E0; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x800E55F4; // type:function size:0x20 scope:global align:4 +GXPokeAlphaUpdate = .text:0x800E5614; // type:function size:0x18 scope:global align:4 +GXPokeBlendMode = .text:0x800E562C; // type:function size:0x64 scope:global align:4 +GXPokeColorUpdate = .text:0x800E5690; // type:function size:0x18 scope:global align:4 +GXPokeDstAlpha = .text:0x800E56A8; // type:function size:0x24 scope:global align:4 +GXPokeDither = .text:0x800E56CC; // type:function size:0x18 scope:global align:4 +GXPokeZMode = .text:0x800E56E4; // type:function size:0x20 scope:global align:4 +GXSetDrawSyncCallback = .text:0x800E5704; // type:function size:0x44 scope:global align:4 +GXTokenInterruptHandler = .text:0x800E5748; // type:function size:0x88 scope:local align:4 +GXSetDrawDoneCallback = .text:0x800E57D0; // type:function size:0x44 scope:global align:4 +GXFinishInterruptHandler = .text:0x800E5814; // type:function size:0x80 scope:local align:4 +__GXPEInit = .text:0x800E5894; // type:function size:0x74 scope:global align:4 +__GXSetDirtyState = .text:0x800E5908; // type:function size:0x80 scope:global align:4 +GXBegin = .text:0x800E5988; // type:function size:0xD0 scope:global align:4 +__GXSendFlushPrim = .text:0x800E5A58; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x800E5AE0; // type:function size:0x40 scope:global align:4 +GXSetPointSize = .text:0x800E5B20; // type:function size:0x40 scope:global align:4 +GXEnableTexOffsets = .text:0x800E5B60; // type:function size:0x48 scope:global align:4 +GXSetCullMode = .text:0x800E5BA8; // type:function size:0x44 scope:global align:4 +GXSetCoPlanar = .text:0x800E5BEC; // type:function size:0x34 scope:global align:4 +__GXSetGenMode = .text:0x800E5C20; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x800E5C44; // type:function size:0x7C scope:global align:4 +GXSetTexCopySrc = .text:0x800E5CC0; // type:function size:0x7C scope:global align:4 +GXSetDispCopyDst = .text:0x800E5D3C; // type:function size:0x34 scope:global align:4 +GXSetTexCopyDst = .text:0x800E5D70; // type:function size:0x130 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x800E5EA0; // type:function size:0x24 scope:global align:4 +GXSetCopyClamp = .text:0x800E5EC4; // type:function size:0x58 scope:global align:4 +GXGetNumXfbLines = .text:0x800E5F1C; // type:function size:0x90 scope:global align:4 +GXGetYScaleFactor = .text:0x800E5FAC; // type:function size:0x238 scope:global align:4 +GXSetDispCopyYScale = .text:0x800E61E4; // type:function size:0xCC scope:global align:4 +GXSetCopyClear = .text:0x800E62B0; // type:function size:0x78 scope:global align:4 +GXSetCopyFilter = .text:0x800E6328; // type:function size:0x208 scope:global align:4 +GXSetDispCopyGamma = .text:0x800E6530; // type:function size:0x14 scope:global align:4 +GXCopyDisp = .text:0x800E6544; // type:function size:0x168 scope:global align:4 +GXCopyTex = .text:0x800E66AC; // type:function size:0x18C scope:global align:4 +GXClearBoundingBox = .text:0x800E6838; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x800E6870; // type:function size:0x1C scope:global align:4 +GXInitLightSpot = .text:0x800E688C; // type:function size:0x190 scope:global align:4 +GXInitLightDistAttn = .text:0x800E6A1C; // type:function size:0xD0 scope:global align:4 +GXInitLightPos = .text:0x800E6AEC; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x800E6AFC; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x800E6B18; // type:function size:0xE4 scope:global align:4 +GXInitLightColor = .text:0x800E6BFC; // type:function size:0xC scope:global align:4 +GXLoadLightObjImm = .text:0x800E6C08; // type:function size:0x7C scope:global align:4 +GXSetChanAmbColor = .text:0x800E6C84; // type:function size:0xF0 scope:global align:4 +GXSetChanMatColor = .text:0x800E6D74; // type:function size:0xF0 scope:global align:4 +GXSetNumChans = .text:0x800E6E64; // type:function size:0x3C scope:global align:4 +GXSetChanCtrl = .text:0x800E6EA0; // type:function size:0xB8 scope:global align:4 +GXGetTexBufferSize = .text:0x800E6F58; // type:function size:0x15C scope:global align:4 +__GetImageTileCount = .text:0x800E70B4; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x800E717C; // type:function size:0x24C scope:global align:4 +GXInitTexObjCI = .text:0x800E73C8; // type:function size:0x48 scope:global align:4 +GXInitTexObjLOD = .text:0x800E7410; // type:function size:0x164 scope:global align:4 +GXGetTexObjFmt = .text:0x800E7574; // type:function size:0x8 scope:global align:4 +GXGetTexObjMipMap = .text:0x800E757C; // type:function size:0x18 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x800E7594; // type:function size:0x17C scope:global align:4 +GXLoadTexObj = .text:0x800E7710; // type:function size:0x54 scope:global align:4 +GXInitTlutObj = .text:0x800E7764; // type:function size:0x38 scope:global align:4 +GXLoadTlut = .text:0x800E779C; // type:function size:0x98 scope:global align:4 +GXInitTexCacheRegion = .text:0x800E7834; // type:function size:0xF4 scope:global align:4 +GXInitTlutRegion = .text:0x800E7928; // type:function size:0x38 scope:global align:4 +GXInvalidateTexAll = .text:0x800E7960; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x800E79A8; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x800E79BC; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x800E79D0; // type:function size:0xA0 scope:local align:4 +__GXSetSUTexRegs = .text:0x800E7A70; // type:function size:0x17C scope:global align:4 +__GXSetTmemConfig = .text:0x800E7BEC; // type:function size:0x354 scope:global align:4 +GXSetTevIndirect = .text:0x800E7F40; // type:function size:0x6C scope:global align:4 +GXSetIndTexMtx = .text:0x800E7FAC; // type:function size:0x178 scope:global align:4 +GXSetIndTexCoordScale = .text:0x800E8124; // type:function size:0x144 scope:global align:4 +GXSetIndTexOrder = .text:0x800E8268; // type:function size:0xEC scope:global align:4 +GXSetNumIndStages = .text:0x800E8354; // type:function size:0x24 scope:global align:4 +GXSetTevDirect = .text:0x800E8378; // type:function size:0x48 scope:global align:4 +GXSetTevIndWarp = .text:0x800E83C0; // type:function size:0x64 scope:global align:4 +__GXUpdateBPMask = .text:0x800E8424; // type:function size:0x4 scope:global align:4 +__GXSetIndirectMask = .text:0x800E8428; // type:function size:0x30 scope:global align:4 +__GXFlushTextureState = .text:0x800E8458; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x800E847C; // type:function size:0x8C scope:global align:4 +GXSetTevColorIn = .text:0x800E8508; // type:function size:0x44 scope:global align:4 +GXSetTevAlphaIn = .text:0x800E854C; // type:function size:0x44 scope:global align:4 +GXSetTevColorOp = .text:0x800E8590; // type:function size:0x68 scope:global align:4 +GXSetTevAlphaOp = .text:0x800E85F8; // type:function size:0x68 scope:global align:4 +GXSetTevColor = .text:0x800E8660; // type:function size:0x7C scope:global align:4 +GXSetTevColorS10 = .text:0x800E86DC; // type:function size:0x7C scope:global align:4 +GXSetTevKColor = .text:0x800E8758; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x800E87CC; // type:function size:0x5C scope:global align:4 +GXSetTevKAlphaSel = .text:0x800E8828; // type:function size:0x5C scope:global align:4 +GXSetTevSwapMode = .text:0x800E8884; // type:function size:0x48 scope:global align:4 +GXSetTevSwapModeTable = .text:0x800E88CC; // type:function size:0x80 scope:global align:4 +GXSetAlphaCompare = .text:0x800E894C; // type:function size:0x44 scope:global align:4 +GXSetZTexture = .text:0x800E8990; // type:function size:0x8C scope:global align:4 +GXSetTevOrder = .text:0x800E8A1C; // type:function size:0x19C scope:global align:4 +GXSetNumTevStages = .text:0x800E8BB8; // type:function size:0x28 scope:global align:4 +GXSetFog = .text:0x800E8BE0; // type:function size:0x224 scope:global align:4 +GXInitFogAdjTable = .text:0x800E8E04; // type:function size:0x1B0 scope:global align:4 +GXSetFogRangeAdj = .text:0x800E8FB4; // type:function size:0x124 scope:global align:4 +GXSetBlendMode = .text:0x800E90D8; // type:function size:0x54 scope:global align:4 +GXSetColorUpdate = .text:0x800E912C; // type:function size:0x2C scope:global align:4 +GXSetAlphaUpdate = .text:0x800E9158; // type:function size:0x2C scope:global align:4 +GXSetZMode = .text:0x800E9184; // type:function size:0x34 scope:global align:4 +GXSetZCompLoc = .text:0x800E91B8; // type:function size:0x34 scope:global align:4 +GXSetPixelFmt = .text:0x800E91EC; // type:function size:0xD4 scope:global align:4 +GXSetDither = .text:0x800E92C0; // type:function size:0x2C scope:global align:4 +GXSetDstAlpha = .text:0x800E92EC; // type:function size:0x3C scope:global align:4 +GXSetFieldMask = .text:0x800E9328; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x800E9360; // type:function size:0x78 scope:global align:4 +GXCallDisplayList = .text:0x800E93D8; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x800E9448; // type:function size:0xA4 scope:global align:4 +GXSetProjectionv = .text:0x800E94EC; // type:function size:0x8C scope:global align:4 +GXLoadPosMtxImm = .text:0x800E9578; // type:function size:0x50 scope:global align:4 +GXLoadNrmMtxImm = .text:0x800E95C8; // type:function size:0x50 scope:global align:4 +GXSetCurrentMtx = .text:0x800E9618; // type:function size:0x34 scope:global align:4 +GXLoadTexMtxImm = .text:0x800E964C; // type:function size:0xB4 scope:global align:4 +__GXSetViewport = .text:0x800E9700; // type:function size:0x90 scope:global align:4 +GXSetViewport = .text:0x800E9790; // type:function size:0x48 scope:global align:4 +GXSetScissor = .text:0x800E97D8; // type:function size:0x78 scope:global align:4 +GXGetScissor = .text:0x800E9850; // type:function size:0x48 scope:global align:4 +GXSetScissorBoxOffset = .text:0x800E9898; // type:function size:0x40 scope:global align:4 +GXSetClipMode = .text:0x800E98D8; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x800E9900; // type:function size:0x84 scope:global align:4 +GXSetGPMetric = .text:0x800E9984; // type:function size:0x848 scope:global align:4 +GXClearGPMetric = .text:0x800EA1CC; // type:function size:0x10 scope:global align:4 +GXReadXfRasMetric = .text:0x800EA1DC; // type:function size:0xC4 scope:global align:4 +PSMTXIdentity = .text:0x800EA2A0; // type:function size:0x2C scope:global align:4 +PSMTXCopy = .text:0x800EA2CC; // type:function size:0x34 scope:global align:4 +PSMTXConcat = .text:0x800EA300; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x800EA3CC; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x800EA41C; // type:function size:0xF8 scope:global align:4 +PSMTXRotRad = .text:0x800EA514; // type:function size:0x70 scope:global align:4 +PSMTXRotTrig = .text:0x800EA584; // type:function size:0xB0 scope:global align:4 +__PSMTXRotAxisRadInternal = .text:0x800EA634; // type:function size:0xB0 scope:local align:4 +PSMTXRotAxisRad = .text:0x800EA6E4; // type:function size:0x70 scope:global align:4 +PSMTXTrans = .text:0x800EA754; // type:function size:0x34 scope:global align:4 +PSMTXTransApply = .text:0x800EA788; // type:function size:0x4C scope:global align:4 +PSMTXScale = .text:0x800EA7D4; // type:function size:0x28 scope:global align:4 +PSMTXScaleApply = .text:0x800EA7FC; // type:function size:0x58 scope:global align:4 +PSMTXQuat = .text:0x800EA854; // type:function size:0xA4 scope:global align:4 +C_MTXLookAt = .text:0x800EA8F8; // type:function size:0x18C scope:global align:4 +C_MTXLightPerspective = .text:0x800EAA84; // type:function size:0xCC scope:global align:4 +C_MTXLightOrtho = .text:0x800EAB50; // type:function size:0x88 scope:global align:4 +PSMTXMultVec = .text:0x800EABD8; // type:function size:0x54 scope:global align:4 +PSMTXMultVecSR = .text:0x800EAC2C; // type:function size:0x54 scope:global align:4 +PSMTXMultVecArraySR = .text:0x800EAC80; // type:function size:0x88 scope:global align:4 +C_MTXPerspective = .text:0x800EAD08; // type:function size:0xD0 scope:global align:4 +C_MTXOrtho = .text:0x800EADD8; // type:function size:0x98 scope:global align:4 +PSMTX44Copy = .text:0x800EAE70; // type:function size:0x44 scope:global align:4 +PSVECAdd = .text:0x800EAEB4; // type:function size:0x24 scope:global align:4 +PSVECSubtract = .text:0x800EAED8; // type:function size:0x24 scope:global align:4 +PSVECNormalize = .text:0x800EAEFC; // type:function size:0x44 scope:global align:4 +PSVECMag = .text:0x800EAF40; // type:function size:0x44 scope:global align:4 +PSVECCrossProduct = .text:0x800EAF84; // type:function size:0x3C scope:global align:4 +Hu_IsStub = .text:0x800EAFC0; // type:function size:0x8 scope:weak align:4 +__OSFPRInit = .text:0x800EAFC8; // type:function size:0x128 scope:global align:4 +OSGetConsoleType = .text:0x800EB0F0; // type:function size:0x28 scope:global align:4 +ClearArena = .text:0x800EB118; // type:function size:0x128 scope:local align:4 +InquiryCallback = .text:0x800EB240; // type:function size:0x3C scope:local align:4 +OSInit = .text:0x800EB27C; // type:function size:0x3D8 scope:global align:4 +OSExceptionInit = .text:0x800EB654; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x800EB8D4; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x800EB8D4; // type:label scope:global +__OSDBJump = .text:0x800EB8F8; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x800EB8F8; // type:label scope:global +__OSDBJUMPEND = .text:0x800EB8FC; // type:label scope:global +__OSSetExceptionHandler = .text:0x800EB8FC; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x800EB918; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x800EB92C; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x800EB92C; // type:label scope:global +__DBVECTOR = .text:0x800EB984; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x800EB994; // type:label scope:global data:4byte +__OSEVEnd = .text:0x800EB9C4; // type:label scope:global +OSDefaultExceptionHandler = .text:0x800EB9C8; // type:function size:0x58 scope:global align:4 +__OSPSInit = .text:0x800EBA20; // type:function size:0x54 scope:global align:4 +__OSGetDIConfig = .text:0x800EBA74; // type:function size:0x14 scope:global align:4 +OSRegisterVersion = .text:0x800EBA88; // type:function size:0x2C scope:global align:4 +OSInitAlarm = .text:0x800EBAB4; // type:function size:0x58 scope:global align:4 +OSCreateAlarm = .text:0x800EBB0C; // type:function size:0x10 scope:global align:4 +InsertAlarm = .text:0x800EBB1C; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x800EBD6C; // type:function size:0x68 scope:global align:4 +OSCancelAlarm = .text:0x800EBDD4; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x800EBEF0; // type:function size:0x230 scope:local align:4 +DecrementerExceptionHandler = .text:0x800EC120; // type:function size:0x50 scope:local align:4 +OnReset = .text:0x800EC170; // type:function size:0xA0 scope:local align:4 +DLInsert = .text:0x800EC210; // type:function size:0xAC scope:local align:4 +OSFreeToHeap = .text:0x800EC2BC; // type:function size:0x7C scope:global align:4 +OSSetCurrentHeap = .text:0x800EC338; // type:function size:0x10 scope:global align:4 +OSInitAlloc = .text:0x800EC348; // type:function size:0x70 scope:global align:4 +OSCreateHeap = .text:0x800EC3B8; // type:function size:0x6C scope:global align:4 +OSGetArenaHi = .text:0x800EC424; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x800EC42C; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x800EC434; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x800EC43C; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x800EC444; // type:function size:0x1BC scope:global align:4 +__OSStopAudioSystem = .text:0x800EC600; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x800EC6D8; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x800EC6EC; // type:function size:0x2C scope:global align:4 +DCFlushRange = .text:0x800EC718; // type:function size:0x30 scope:global align:4 +DCStoreRange = .text:0x800EC748; // type:function size:0x30 scope:global align:4 +DCFlushRangeNoSync = .text:0x800EC778; // type:function size:0x2C scope:global align:4 +DCStoreRangeNoSync = .text:0x800EC7A4; // type:function size:0x2C scope:global align:4 +DCZeroRange = .text:0x800EC7D0; // type:function size:0x2C scope:global align:4 +ICInvalidateRange = .text:0x800EC7FC; // type:function size:0x34 scope:global align:4 +ICFlashInvalidate = .text:0x800EC830; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x800EC840; // type:function size:0x14 scope:global align:4 +__LCEnable = .text:0x800EC854; // type:function size:0xCC scope:local align:4 +LCEnable = .text:0x800EC920; // type:function size:0x38 scope:global align:4 +LCDisable = .text:0x800EC958; // type:function size:0x28 scope:global align:4 +LCStoreBlocks = .text:0x800EC980; // type:function size:0x24 scope:global align:4 +LCStoreData = .text:0x800EC9A4; // type:function size:0xAC scope:global align:4 +LCQueueWait = .text:0x800ECA50; // type:function size:0x14 scope:global align:4 +L2GlobalInvalidate = .text:0x800ECA64; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x800ECAFC; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x800ECC5C; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x800ECD50; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x800ECE74; // type:function size:0x128 scope:local align:4 +OSSaveFPUContext = .text:0x800ECF9C; // type:function size:0x8 scope:global align:4 +OSSetCurrentContext = .text:0x800ECFA4; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x800ED000; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x800ED00C; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x800ED08C; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x800ED164; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x800ED16C; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x800ED190; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x800ED24C; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x800ED4F4; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x800ED578; // type:function size:0x48 scope:global align:4 +OSFillFPUContext = .text:0x800ED5C0; // type:function size:0x12C scope:global align:4 +OSReport = .text:0x800ED6EC; // type:function size:0x80 scope:weak align:4 +OSPanic = .text:0x800ED76C; // type:function size:0x12C scope:weak align:4 +OSSetErrorHandler = .text:0x800ED898; // type:function size:0x218 scope:global align:4 +__OSUnhandledException = .text:0x800EDAB0; // type:function size:0x2E8 scope:global align:4 +GetFontCode = .text:0x800EDD98; // type:function size:0x19C scope:local align:4 +Decode = .text:0x800EDF34; // type:function size:0x174 scope:local align:4 +OSGetFontEncode = .text:0x800EE0A8; // type:function size:0x58 scope:global align:4 +ReadROM = .text:0x800EE100; // type:function size:0x8C scope:local align:4 +OSLoadFont = .text:0x800EE18C; // type:function size:0x334 scope:global align:4 +ExpandFontSheet = .text:0x800EE4C0; // type:function size:0x3B0 scope:local align:4 +OSInitFont = .text:0x800EE870; // type:function size:0xE0 scope:global align:4 +OSGetFontTexture = .text:0x800EE950; // type:function size:0x1A8 scope:global align:4 +OSGetFontWidth = .text:0x800EEAF8; // type:function size:0x140 scope:global align:4 +OSDisableInterrupts = .text:0x800EEC38; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x800EEC38; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x800EEC44; // type:label scope:global +OSEnableInterrupts = .text:0x800EEC4C; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x800EEC60; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x800EEC84; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x800EECA0; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x800EECB4; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x800EED28; // type:function size:0x2D8 scope:local align:4 +__OSMaskInterrupts = .text:0x800EF000; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x800EF088; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x800EF110; // type:function size:0x344 scope:global align:4 +ExternalInterruptHandler = .text:0x800EF454; // type:function size:0x50 scope:local align:4 +__OSModuleInit = .text:0x800EF4A4; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x800EF4BC; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x800EF51C; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x800EF5E4; // type:function size:0xDC scope:global align:4 +OSJamMessage = .text:0x800EF6C0; // type:function size:0xD4 scope:global align:4 +OnReset = .text:0x800EF794; // type:function size:0x3C scope:local align:4 +MEMIntrruptHandler = .text:0x800EF7D0; // type:function size:0x6C scope:local align:4 +OSProtectRange = .text:0x800EF83C; // type:function size:0xC4 scope:global align:4 +Config24MB = .text:0x800EF900; // type:function size:0x80 scope:local align:4 +Config48MB = .text:0x800EF980; // type:function size:0x80 scope:local align:4 +RealMode = .text:0x800EFA00; // type:function size:0x18 scope:local align:4 +__OSInitMemoryProtection = .text:0x800EFA18; // type:function size:0x118 scope:global align:4 +OSInitMutex = .text:0x800EFB30; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x800EFB68; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x800EFC44; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x800EFD0C; // type:function size:0x70 scope:global align:4 +OSTryLockMutex = .text:0x800EFD7C; // type:function size:0xBC scope:global align:4 +OSInitCond = .text:0x800EFE38; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x800EFE58; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x800EFF2C; // type:function size:0x20 scope:global align:4 +Run = .text:0x800EFF4C; // type:function size:0x10 scope:local align:4 +Callback = .text:0x800EFF5C; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x800EFF68; // type:function size:0x330 scope:global align:4 +OSSetSaveRegion = .text:0x800F0298; // type:function size:0xC scope:global align:4 +OSRegisterResetFunction = .text:0x800F02A4; // type:function size:0x84 scope:global align:4 +Reset = .text:0x800F0328; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x800F0398; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x800F03E0; // type:function size:0x2BC scope:global align:4 +OSGetResetCode = .text:0x800F069C; // type:function size:0x34 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x800F06D0; // type:function size:0xF4 scope:global align:4 +OSGetResetButtonState = .text:0x800F07C4; // type:function size:0x298 scope:global align:4 +OSGetResetSwitchState = .text:0x800F0A5C; // type:function size:0x20 scope:global align:4 +WriteSramCallback = .text:0x800F0A7C; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x800F0ADC; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x800F0BF4; // type:function size:0x13C scope:global align:4 +__OSLockSram = .text:0x800F0D30; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x800F0D8C; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x800F0DE8; // type:function size:0x33C scope:local align:4 +__OSUnlockSram = .text:0x800F1124; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x800F1148; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x800F116C; // type:function size:0x10 scope:global align:4 +__OSReadROM = .text:0x800F117C; // type:function size:0x124 scope:global align:4 +OSGetSoundMode = .text:0x800F12A0; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x800F1320; // type:function size:0xA4 scope:global align:4 +OSGetProgressiveMode = .text:0x800F13C4; // type:function size:0x70 scope:global align:4 +OSSetProgressiveMode = .text:0x800F1434; // type:function size:0xA4 scope:global align:4 +OSSetEuRgb60Mode = .text:0x800F14D8; // type:function size:0xA4 scope:global align:4 +OSGetWirelessID = .text:0x800F157C; // type:function size:0x84 scope:global align:4 +OSSetWirelessID = .text:0x800F1600; // type:function size:0xAC scope:global align:4 +OSGetGbsMode = .text:0x800F16AC; // type:function size:0x70 scope:global align:4 +OSSetGbsMode = .text:0x800F171C; // type:function size:0xB8 scope:global align:4 +SystemCallVector = .text:0x800F17D4; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x800F17D4; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x800F17F0; // type:label scope:global +__OSInitSystemCall = .text:0x800F17F4; // type:function size:0x64 scope:global align:4 +DefaultSwitchThreadCallback = .text:0x800F1858; // type:function size:0x4 scope:local align:4 +__OSThreadInit = .text:0x800F185C; // type:function size:0x158 scope:global align:4 +OSInitThreadQueue = .text:0x800F19B4; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x800F19C4; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x800F19D0; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x800F1A04; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x800F1A44; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x800F1A84; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x800F1AEC; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x800F1B28; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x800F1CE8; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x800F1D38; // type:function size:0x228 scope:local align:4 +__OSReschedule = .text:0x800F1F60; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x800F1F90; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x800F1FCC; // type:function size:0x1E8 scope:global align:4 +OSExitThread = .text:0x800F21B4; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x800F2298; // type:function size:0x1BC scope:global align:4 +OSDetachThread = .text:0x800F2454; // type:function size:0xA0 scope:global align:4 +OSResumeThread = .text:0x800F24F4; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x800F277C; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x800F28EC; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x800F29D8; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x800F2ADC; // type:function size:0x8 scope:global align:4 +OSClearStack = .text:0x800F2AE4; // type:function size:0xAC scope:global align:4 +OSGetTime = .text:0x800F2B90; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x800F2BA8; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x800F2BB0; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x800F2C14; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x800F2DB0; // type:function size:0x204 scope:global align:4 +__init_user = .text:0x800F2FB4; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x800F2FD4; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x800F3028; // type:function size:0x20 scope:global align:4 +ClampStick = .text:0x800F3048; // type:function size:0x130 scope:local align:4 +ClampCircle = .text:0x800F3178; // type:function size:0x1A8 scope:local align:4 +PADClamp = .text:0x800F3320; // type:function size:0x114 scope:global align:4 +PADClampCircle = .text:0x800F3434; // type:function size:0x10C scope:global align:4 +UpdateOrigin = .text:0x800F3540; // type:function size:0x1A4 scope:local align:4 +PADOriginCallback = .text:0x800F36E4; // type:function size:0xC4 scope:local align:4 +PADOriginUpdateCallback = .text:0x800F37A8; // type:function size:0xCC scope:local align:4 +PADProbeCallback = .text:0x800F3874; // type:function size:0xD8 scope:local align:4 +PADTypeAndStatusCallback = .text:0x800F394C; // type:function size:0x32C scope:local align:4 +PADReceiveCheckCallback = .text:0x800F3C78; // type:function size:0x140 scope:local align:4 +PADReset = .text:0x800F3DB8; // type:function size:0x110 scope:global align:4 +PADRecalibrate = .text:0x800F3EC8; // type:function size:0x114 scope:global align:4 +PADInit = .text:0x800F3FDC; // type:function size:0x150 scope:global align:4 +PADRead = .text:0x800F412C; // type:function size:0x300 scope:global align:4 +PADControlMotor = .text:0x800F442C; // type:function size:0xB8 scope:global align:4 +PADSetSpec = .text:0x800F44E4; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x800F4544; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x800F46B8; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x800F482C; // type:function size:0x470 scope:local align:4 +PADSetAnalogMode = .text:0x800F4C9C; // type:function size:0x74 scope:global align:4 +OnReset = .text:0x800F4D10; // type:function size:0xBC scope:local align:4 +SamplingHandler = .text:0x800F4DCC; // type:function size:0x60 scope:local align:4 +PADSetSamplingCallback = .text:0x800F4E2C; // type:function size:0x54 scope:global align:4 +__PADDisableRecalibration = .text:0x800F4E80; // type:function size:0x7C scope:global align:4 +SIBusy = .text:0x800F4EFC; // type:function size:0x20 scope:global align:4 +SIIsChanBusy = .text:0x800F4F1C; // type:function size:0x3C scope:global align:4 +CompleteTransfer = .text:0x800F4F58; // type:function size:0x2FC scope:local align:4 +SIInterruptHandler = .text:0x800F5254; // type:function size:0x344 scope:local align:4 +SIEnablePollingInterrupt = .text:0x800F5598; // type:function size:0x98 scope:local align:4 +SIRegisterPollingHandler = .text:0x800F5630; // type:function size:0xCC scope:global align:4 +SIUnregisterPollingHandler = .text:0x800F56FC; // type:function size:0xF4 scope:global align:4 +SIInit = .text:0x800F57F0; // type:function size:0xB4 scope:global align:4 +__SITransfer = .text:0x800F58A4; // type:function size:0x20C scope:local align:4 +SIGetStatus = .text:0x800F5AB0; // type:function size:0x7C scope:global align:4 +SISetCommand = .text:0x800F5B2C; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x800F5B40; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x800F5B50; // type:function size:0x6C scope:global align:4 +SIEnablePolling = .text:0x800F5BBC; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x800F5C58; // type:function size:0x6C scope:global align:4 +SIGetResponseRaw = .text:0x800F5CC4; // type:function size:0xD4 scope:local align:4 +SIGetResponse = .text:0x800F5D98; // type:function size:0xC4 scope:local align:4 +AlarmHandler = .text:0x800F5E5C; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x800F5EE8; // type:function size:0x16C scope:global align:4 +GetTypeCallback = .text:0x800F6054; // type:function size:0x298 scope:local align:4 +SIGetType = .text:0x800F62EC; // type:function size:0x1C4 scope:global align:4 +SIGetTypeAsync = .text:0x800F64B0; // type:function size:0x13C scope:global align:4 +SIDecodeType = .text:0x800F65EC; // type:function size:0x14C scope:global align:4 +SIProbe = .text:0x800F6738; // type:function size:0x24 scope:global align:4 +SISetSamplingRate = .text:0x800F675C; // type:function size:0xE4 scope:global align:4 +SIRefreshSamplingRate = .text:0x800F6840; // type:function size:0x24 scope:global align:4 +AIRegisterDMACallback = .text:0x800F6864; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x800F68A8; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x800F6930; // type:function size:0x18 scope:global align:4 +AIStopDMA = .text:0x800F6948; // type:function size:0x18 scope:global align:4 +AISetStreamPlayState = .text:0x800F6960; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x800F6A38; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x800F6A48; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x800F6B28; // type:function size:0x14 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x800F6B3C; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x800F6C10; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x800F6C20; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x800F6C3C; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x800F6C4C; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x800F6C68; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x800F6C78; // type:function size:0x16C scope:global align:4 +__AISHandler = .text:0x800F6DE4; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x800F6E60; // type:function size:0xAC scope:local align:4 +__AICallbackStackSwitch = .text:0x800F6F0C; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x800F6F64; // type:function size:0x1E4 scope:local align:4 +THPVideoDecode = .text:0x800F7148; // type:function size:0x244 scope:global align:4 +__THPSetupBuffers = .text:0x800F738C; // type:function size:0x44 scope:local align:4 +__THPReadFrameHeader = .text:0x800F73D0; // type:function size:0x13C scope:local align:4 +__THPReadScaneHeader = .text:0x800F750C; // type:function size:0x11C scope:local align:4 +__THPReadQuantizationTable = .text:0x800F7628; // type:function size:0x3BC scope:local align:4 +__THPReadHuffmanTableSpecification = .text:0x800F79E4; // type:function size:0x1E0 scope:local align:4 +__THPHuffGenerateSizeTable = .text:0x800F7BC4; // type:function size:0xF0 scope:local align:4 +__THPHuffGenerateCodeTable = .text:0x800F7CB4; // type:function size:0x68 scope:local align:4 +__THPHuffGenerateDecoderTables = .text:0x800F7D1C; // type:function size:0x1BC scope:local align:4 +__THPRestartDefinition = .text:0x800F7ED8; // type:function size:0x54 scope:local align:4 +__THPPrepBitStream = .text:0x800F7F2C; // type:function size:0x24C scope:local align:4 +__THPDecompressYUV = .text:0x800F8178; // type:function size:0x10C scope:local align:4 +__THPDecompressiMCURow512x448 = .text:0x800F8284; // type:function size:0x1A88 scope:local align:4 +__THPDecompressiMCURow640x480 = .text:0x800F9D0C; // type:function size:0x1A8C scope:local align:4 +__THPDecompressiMCURowNxN = .text:0x800FB798; // type:function size:0x1AAC scope:local align:4 +__THPHuffDecodeDCTCompY = .text:0x800FD244; // type:function size:0x67C scope:local align:4 +__THPHuffDecodeDCTCompU = .text:0x800FD8C0; // type:function size:0x6A8 scope:local align:4 +__THPHuffDecodeDCTCompV = .text:0x800FDF68; // type:function size:0x6A8 scope:local align:4 +THPInit = .text:0x800FE610; // type:function size:0xA0 scope:global align:4 +THPAudioDecode = .text:0x800FE6B0; // type:function size:0x3B0 scope:global align:4 +__THPAudioGetNewSample = .text:0x800FEA60; // type:function size:0x90 scope:local align:4 +__THPAudioInitialize = .text:0x800FEAF0; // type:function size:0x3C scope:local align:4 +ShortCommandProc = .text:0x800FEB2C; // type:function size:0x54 scope:local align:4 +GBAInit = .text:0x800FEB80; // type:function size:0xC0 scope:global align:4 +GBAGetStatus = .text:0x800FEC40; // type:function size:0x90 scope:global align:4 +GBAReset = .text:0x800FECD0; // type:function size:0x90 scope:global align:4 +OnReset = .text:0x800FED60; // type:function size:0x10 scope:local align:4 +ReadProc = .text:0x800FED70; // type:function size:0x60 scope:local align:4 +GBARead = .text:0x800FEDD0; // type:function size:0x94 scope:global align:4 +WriteProc = .text:0x800FEE64; // type:function size:0x30 scope:local align:4 +GBAWrite = .text:0x800FEE94; // type:function size:0xC4 scope:global align:4 +__GBAHandler = .text:0x800FEF58; // type:function size:0xDC scope:local align:4 +__GBASyncCallback = .text:0x800FF034; // type:function size:0x34 scope:global align:4 +__GBASync = .text:0x800FF068; // type:function size:0x6C scope:global align:4 +TypeAndStatusCallback = .text:0x800FF0D4; // type:function size:0x124 scope:local align:4 +__GBATransfer = .text:0x800FF1F8; // type:function size:0x74 scope:global align:4 +animation__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase = .text:0x800FF26C; // type:function size:0xF8 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x800FF364; // type:function size:0x1E0 scope:global align:4 +isAlive__Q24Game8CreatureFv = .text:0x800FF544; // type:function size:0xC scope:weak align:4 +init__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x800FF550; // type:function size:0x1A8 scope:global align:4 +update__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x800FF6F8; // type:function size:0x6C scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x800FF764; // type:function size:0x30 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM24BirthTypeDropPikminStateFPQ24Game9EnemyBase = .text:0x800FF794; // type:function size:0x1C4 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM24BirthTypeDropOlimarStateFPQ24Game9EnemyBase = .text:0x800FF958; // type:function size:0x1A8 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM26BirthTypeDropTreasureStateFPQ24Game9EnemyBase = .text:0x800FFB00; // type:function size:0x18C scope:global align:4 +getPosition__Q24Game6PelletFv = .text:0x800FFC8C; // type:function size:0x1C scope:weak align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM28BirthTypeDropEarthquakeStateFPQ24Game9EnemyBase = .text:0x800FFCA8; // type:function size:0x8 scope:global align:4 +entry__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase = .text:0x800FFCB0; // type:function size:0x24 scope:global align:4 +init__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x800FFCD4; // type:function size:0xFC scope:global align:4 +getPosition__Q24Game9EnemyBaseFv = .text:0x800FFDD0; // type:function size:0x1C scope:weak align:4 +update__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase = .text:0x800FFDEC; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase = .text:0x800FFF1C; // type:function size:0x1C scope:global align:4 +simulation__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBasef = .text:0x800FFF38; // type:function size:0x10C scope:global align:4 +getCreatureID__Q24Game9EnemyBaseFv = .text:0x80100044; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q24Game9EnemyBaseFv = .text:0x8010004C; // type:function size:0x38 scope:weak align:4 +entry__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x80100084; // type:function size:0x40 scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x801000C4; // type:function size:0x30 scope:global align:4 +updateAlways__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x801000F4; // type:function size:0x30 scope:global align:4 +update__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x80100124; // type:function size:0x1BC scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase = .text:0x801002E0; // type:function size:0x48 scope:global align:4 +init__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80100328; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase = .text:0x80100478; // type:function size:0x80 scope:global align:4 +updateAlways__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase = .text:0x801004F8; // type:function size:0x204 scope:global align:4 +init__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801006FC; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBase = .text:0x80100784; // type:function size:0x50 scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBase = .text:0x801007D4; // type:function size:0x158 scope:global align:4 +isFlying__Q24Game9EnemyBaseFv = .text:0x8010092C; // type:function size:0xC scope:weak align:4 +bounceProcedure__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBasePQ23Sys8Triangle = .text:0x80100938; // type:function size:0x64 scope:global align:4 +init__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010099C; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase = .text:0x80100A9C; // type:function size:0xCC scope:global align:4 +updateAlways__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase = .text:0x80100B68; // type:function size:0x118 scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase = .text:0x80100C80; // type:function size:0x74 scope:global align:4 +init__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x80100CF4; // type:function size:0x484 scope:global align:4 +__dt__Q23efx10TEnemyPiyoFv = .text:0x80101178; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TChasePosFv = .text:0x80101214; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx5TSyncFv = .text:0x80101298; // type:function size:0x6C scope:weak align:4 +update__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x80101304; // type:function size:0x30 scope:global align:4 +update__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase = .text:0x80101334; // type:function size:0x4 scope:weak align:4 +entry__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x80101338; // type:function size:0x30 scope:global align:4 +entry__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase = .text:0x80101368; // type:function size:0x4 scope:weak align:4 +simulation__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasef = .text:0x8010136C; // type:function size:0x30 scope:global align:4 +simulation__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBasef = .text:0x8010139C; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game9EnemyBaseFv = .text:0x801013A0; // type:function size:0x370 scope:global align:4 +__dt__Q28SysShape8KeyEventFv = .text:0x80101710; // type:function size:0x60 scope:weak align:4 +__ct__11BitFlag
    Fv = .text:0x80101770; // type:function size:0x18 scope:weak align:4 +constructor__Q24Game9EnemyBaseFv = .text:0x80101788; // type:function size:0x44 scope:global align:4 +createEffects__Q24Game9EnemyBaseFv = .text:0x801017CC; // type:function size:0x5C scope:global align:4 +fadeEffects__Q24Game9EnemyBaseFv = .text:0x80101828; // type:function size:0x5C scope:global align:4 +createInstanceEfxHamon__Q24Game9EnemyBaseFv = .text:0x80101884; // type:function size:0x50 scope:global align:4 +updateEfxHamon__Q24Game9EnemyBaseFv = .text:0x801018D4; // type:function size:0x30 scope:global align:4 +createEfxHamon__Q24Game9EnemyBaseFv = .text:0x80101904; // type:function size:0x3C scope:global align:4 +fadeEfxHamon__Q24Game9EnemyBaseFv = .text:0x80101940; // type:function size:0x3C scope:global align:4 +setEmotionCaution__Q24Game9EnemyBaseFv = .text:0x8010197C; // type:function size:0x50 scope:global align:4 +setEmotionExcitement__Q24Game9EnemyBaseFv = .text:0x801019CC; // type:function size:0x3C scope:global align:4 +setEmotionNone__Q24Game9EnemyBaseFv = .text:0x80101A08; // type:function size:0x50 scope:global align:4 +onInit__Q24Game9EnemyBaseFPQ24Game15CreatureInitArg = .text:0x80101A58; // type:function size:0x104 scope:global align:4 +onInitPost__Q24Game9EnemyBaseFPQ24Game15CreatureInitArg = .text:0x80101B5C; // type:function size:0x218 scope:global align:4 +setOtakaraCode__Q24Game9EnemyBaseFRQ34Game9PelletMgr15OtakaraItemCode = .text:0x80101D74; // type:function size:0xA0 scope:global align:4 +setKilled__Q23PSM9EnemyBaseFv = .text:0x80101E14; // type:function size:0x4 scope:weak align:4 +setCarcassArg__Q24Game9EnemyBaseFRQ24Game13PelletViewArg = .text:0x80101E18; // type:function size:0xC4 scope:global align:4 +doBecomeCarcass__Q24Game9EnemyBaseFv = .text:0x80101EDC; // type:function size:0x8 scope:global align:4 +doUpdateCarcass__Q24Game9EnemyBaseFv = .text:0x80101EE4; // type:function size:0x4 scope:global align:4 +onKill__Q24Game9EnemyBaseFPQ24Game15CreatureKillArg = .text:0x80101EE8; // type:function size:0x9EC scope:global align:4 +setVelocity__Q24Game8BaseItemFR10Vector3 = .text:0x801028D4; // type:function size:0x1C scope:weak align:4 +getBoundingSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere = .text:0x801028F0; // type:function size:0x24 scope:weak align:4 +getName__Q24Game15CreatureKillArgFv = .text:0x80102914; // type:function size:0xC scope:weak align:4 +setZukanVisible__Q24Game9EnemyBaseFb = .text:0x80102920; // type:function size:0xE0 scope:global align:4 +birth__Q24Game9EnemyBaseFR10Vector3f = .text:0x80102A00; // type:function size:0x160 scope:global align:4 +updateTrMatrix__Q24Game9EnemyBaseFv = .text:0x80102B60; // type:function size:0x78 scope:global align:4 +setParameters__Q24Game9EnemyBaseFv = .text:0x80102BD8; // type:function size:0x78 scope:global align:4 +update__Q24Game9EnemyBaseFv = .text:0x80102C50; // type:function size:0x34 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x80102C84; // type:function size:0x1E0 scope:global align:4 +startStoneState__Q24Game9EnemyBaseFv = .text:0x80102E64; // type:function size:0x90 scope:global align:4 +doStartStoneState__Q24Game9EnemyBaseFv = .text:0x80102EF4; // type:function size:0x14 scope:global align:4 +doFinishStoneState__Q24Game9EnemyBaseFv = .text:0x80102F08; // type:function size:0x4 scope:global align:4 +getWalkSmokeEffectMgr__Q24Game9EnemyBaseFv = .text:0x80102F0C; // type:function size:0x8 scope:weak align:4 +doUpdateCommon__Q24Game9EnemyBaseFv = .text:0x80102F14; // type:function size:0x80 scope:global align:4 +doAnimation__Q24Game9EnemyBaseFv = .text:0x80102F94; // type:function size:0x34 scope:global align:4 +animation__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x80102FC8; // type:function size:0x30 scope:weak align:4 +doAnimationUpdateAnimator__Q24Game9EnemyBaseFv = .text:0x80102FF8; // type:function size:0x88 scope:global align:4 +doAnimationCullingOff__Q24Game9EnemyBaseFv = .text:0x80103080; // type:function size:0x1E0 scope:global align:4 +onSetPositionPost__Q24Game9EnemyBaseFR10Vector3 = .text:0x80103260; // type:function size:0x20 scope:weak align:4 +onSetPosition__Q24Game9EnemyBaseFR10Vector3 = .text:0x80103280; // type:function size:0x1C scope:weak align:4 +doAnimationStick__Q24Game9EnemyBaseFv = .text:0x8010329C; // type:function size:0x7C scope:global align:4 +doAnimationCullingOn__Q24Game9EnemyBaseFv = .text:0x80103318; // type:function size:0x20 scope:global align:4 +show__Q24Game9EnemyBaseFv = .text:0x80103338; // type:function size:0x7C scope:global align:4 +hide__Q24Game9EnemyBaseFv = .text:0x801033B4; // type:function size:0x54 scope:global align:4 +doEntryCarcass__Q24Game9EnemyBaseFv = .text:0x80103408; // type:function size:0x108 scope:global align:4 +doEntryLiving__Q24Game9EnemyBaseFv = .text:0x80103510; // type:function size:0x13C scope:global align:4 +doEntry__Q24Game9EnemyBaseFv = .text:0x8010364C; // type:function size:0x34 scope:global align:4 +doSetView__Q24Game9EnemyBaseFi = .text:0x80103680; // type:function size:0x28 scope:global align:4 +isCullingOff__Q24Game9EnemyBaseFv = .text:0x801036A8; // type:function size:0x54 scope:global align:4 +doViewCalc__Q24Game9EnemyBaseFv = .text:0x801036FC; // type:function size:0x78 scope:global align:4 +doSimulationGround__Q24Game9EnemyBaseFf = .text:0x80103774; // type:function size:0xAC scope:global align:4 +doSimulationFlying__Q24Game9EnemyBaseFf = .text:0x80103820; // type:function size:0x58 scope:global align:4 +doSimulationStick__Q24Game9EnemyBaseFf = .text:0x80103878; // type:function size:0x58 scope:global align:4 +updateSpheres__Q24Game9EnemyBaseFv = .text:0x801038D0; // type:function size:0x70 scope:global align:4 +createDropEffect__Q24Game9EnemyBaseFRC10Vector3f = .text:0x80103940; // type:function size:0xB8 scope:global align:4 +createSplashDownEffect__Q24Game9EnemyBaseFRC10Vector3f = .text:0x801039F8; // type:function size:0x158 scope:global align:4 +createBounceEffect__Q24Game9EnemyBaseFRC10Vector3f = .text:0x80103B50; // type:function size:0x1DC scope:global align:4 +outWaterCallback__Q24Game9EnemyBaseFv = .text:0x80103D2C; // type:function size:0x168 scope:global align:4 +inWaterCallback__Q24Game9EnemyBaseFPQ24Game8WaterBox = .text:0x80103E94; // type:function size:0x168 scope:global align:4 +finishDropping__Q24Game9EnemyBaseFb = .text:0x80103FFC; // type:function size:0x28C scope:global align:4 +bounceProcedure__Q24Game9EnemyBaseFPQ23Sys8Triangle = .text:0x80104288; // type:function size:0x80 scope:global align:4 +bounceProcedure__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasePQ23Sys8Triangle = .text:0x80104308; // type:function size:0x30 scope:weak align:4 +bounceProcedure__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBasePQ23Sys8Triangle = .text:0x80104338; // type:function size:0x4 scope:weak align:4 +bounceCallback__Q24Game8CreatureFPQ23Sys8Triangle = .text:0x8010433C; // type:function size:0x4 scope:weak align:4 +collisionMapAndPlat__Q24Game9EnemyBaseFf = .text:0x80104340; // type:function size:0x6D4 scope:global align:4 +constraintBoundBox__Q24Game6MapMgrFRQ23Sys6Sphere = .text:0x80104A14; // type:function size:0x4 scope:weak align:4 +hasHiddenCollision__Q24Game6MapMgrFv = .text:0x80104A18; // type:function size:0x8 scope:weak align:4 +wallCallback__Q24Game9EnemyBaseFRCQ24Game8MoveInfo = .text:0x80104A20; // type:function size:0x4 scope:weak align:4 +getOffsetForMapCollision__Q24Game9EnemyBaseFv = .text:0x80104A24; // type:function size:0x14 scope:weak align:4 +doSimulationCarcass__Q24Game9EnemyBaseFf = .text:0x80104A38; // type:function size:0x20 scope:global align:4 +doSimulation__Q24Game9EnemyBaseFf = .text:0x80104A58; // type:function size:0x34 scope:global align:4 +doSimulationConstraint__Q24Game9EnemyBaseFf = .text:0x80104A8C; // type:function size:0xD8 scope:global align:4 +gotoHell__Q24Game9EnemyBaseFv = .text:0x80104B64; // type:function size:0x70 scope:global align:4 +setAnimMgr__Q24Game9EnemyBaseFPQ28SysShape7AnimMgr = .text:0x80104BD4; // type:function size:0x30 scope:global align:4 +setPSEnemyBaseAnime__Q24Game9EnemyBaseFv = .text:0x80104C04; // type:function size:0x1B4 scope:global align:4 +startBlend__Q24Game9EnemyBaseFiiPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener = .text:0x80104DB8; // type:function size:0x1F0 scope:global align:4 +endBlend__Q24Game9EnemyBaseFv = .text:0x80104FA8; // type:function size:0x50 scope:global align:4 +getTypeID__Q24Game17EnemyAnimatorBaseFv = .text:0x80104FF8; // type:function size:0xC scope:weak align:4 +startMotion__Q24Game9EnemyBaseFiPQ28SysShape14MotionListener = .text:0x80105004; // type:function size:0x224 scope:global align:4 +setMotionFrame__Q24Game9EnemyBaseFf = .text:0x80105228; // type:function size:0x44 scope:global align:4 +getMotionFrame__Q24Game9EnemyBaseFv = .text:0x8010526C; // type:function size:0x34 scope:global align:4 +finishMotion__Q24Game9EnemyBaseFv = .text:0x801052A0; // type:function size:0x40 scope:global align:4 +onKeyEvent__Q24Game9EnemyBaseFRCQ28SysShape8KeyEvent = .text:0x801052E0; // type:function size:0x20 scope:global align:4 +stimulate__Q24Game9EnemyBaseFRQ24Game11Interaction = .text:0x80105300; // type:function size:0x80 scope:global align:4 +actEnemy__Q24Game11InteractionFPQ24Game9EnemyBase = .text:0x80105380; // type:function size:0x8 scope:weak align:4 +actCommon__Q24Game11InteractionFPQ24Game8Creature = .text:0x80105388; // type:function size:0x8 scope:weak align:4 +lifeRecover__Q24Game9EnemyBaseFv = .text:0x80105390; // type:function size:0x30 scope:global align:4 +scaleDamageAnim__Q24Game9EnemyBaseFv = .text:0x801053C0; // type:function size:0x33C scope:global align:4 +finishScaleDamageAnim__Q24Game9EnemyBaseFv = .text:0x801056FC; // type:function size:0x24 scope:global align:4 +deathProcedure__Q24Game9EnemyBaseFv = .text:0x80105720; // type:function size:0xF8 scope:global align:4 +getCastType__Q23PSM9EnemyBaseFv = .text:0x80105818; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q24Game9EnemyBaseFv = .text:0x80105820; // type:function size:0x2C scope:weak align:4 +setAlive__Q24Game8CreatureFb = .text:0x8010584C; // type:function size:0x28 scope:weak align:4 +createDeadBombEffect__Q24Game9EnemyBaseFv = .text:0x80105874; // type:function size:0xD8 scope:global align:4 +getThrowupItemPosition__Q24Game9EnemyBaseFP10Vector3 = .text:0x8010594C; // type:function size:0x54 scope:global align:4 +getThrowupItemVelocity__Q24Game9EnemyBaseFP10Vector3 = .text:0x801059A0; // type:function size:0x18 scope:global align:4 +throwupItem__Q24Game9EnemyBaseFv = .text:0x801059B8; // type:function size:0x4B0 scope:global align:4 +createKiraEffect__Q24Game6PelletFR10Vector3 = .text:0x80105E68; // type:function size:0x4 scope:weak align:4 +doDebugDraw__Q24Game9EnemyBaseFR8Graphics = .text:0x80105E6C; // type:function size:0x4 scope:global align:4 +getLifeGaugeParam__Q24Game9EnemyBaseFRQ24Game14LifeGaugeParam = .text:0x80105E70; // type:function size:0x80 scope:global align:4 +doGetLifeGaugeParam__Q24Game9EnemyBaseFRQ24Game14LifeGaugeParam = .text:0x80105EF0; // type:function size:0x40 scope:global align:4 +onStickStart__Q24Game9EnemyBaseFPQ24Game8Creature = .text:0x80105F30; // type:function size:0x50 scope:global align:4 +onStickEnd__Q24Game9EnemyBaseFPQ24Game8Creature = .text:0x80105F80; // type:function size:0x50 scope:global align:4 +injure__Q24Game9EnemyBaseFv = .text:0x80105FD0; // type:function size:0x5C scope:global align:4 +addDamage__Q24Game9EnemyBaseFff = .text:0x8010602C; // type:function size:0x40 scope:global align:4 +damageCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x8010606C; // type:function size:0x48 scope:global align:4 +pressCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x801060B4; // type:function size:0x8 scope:global align:4 +flyCollisionCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x801060BC; // type:function size:0x8 scope:global align:4 +hipdropCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x801060C4; // type:function size:0x248 scope:global align:4 +dropCallBack__Q24Game9EnemyBaseFPQ24Game8Creature = .text:0x8010630C; // type:function size:0x8 scope:global align:4 +isBeforeAppearState__Q24Game9EnemyBaseFv = .text:0x80106314; // type:function size:0x40 scope:global align:4 +checkBirthTypeDropEarthquake__Q24Game9EnemyBaseFv = .text:0x80106354; // type:function size:0x70 scope:global align:4 +earthquakeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef = .text:0x801063C4; // type:function size:0xEC scope:global align:4 +dopeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturei = .text:0x801064B0; // type:function size:0x108 scope:global align:4 +doDopeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturei = .text:0x801065B8; // type:function size:0x8 scope:weak align:4 +farmCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef = .text:0x801065C0; // type:function size:0x8 scope:global align:4 +bombCallBack__Q24Game9EnemyBaseFPQ24Game8CreatureR10Vector3f = .text:0x801065C8; // type:function size:0x48 scope:global align:4 +collisionCallback__Q24Game9EnemyBaseFRQ24Game9CollEvent = .text:0x80106610; // type:function size:0x54 scope:global align:4 +setCollEvent__Q24Game9EnemyBaseFRQ24Game9CollEvent = .text:0x80106664; // type:function size:0x28 scope:global align:4 +resetCollEvent__Q24Game9EnemyBaseFv = .text:0x8010668C; // type:function size:0x10 scope:global align:4 +changeMaterial__Q24Game9EnemyBaseFv = .text:0x8010669C; // type:function size:0x4 scope:global align:4 +viewGetShape__Q24Game9EnemyBaseFv = .text:0x801066A0; // type:function size:0x8 scope:global align:4 +viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x801066A8; // type:function size:0x20 scope:global align:4 +viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x801066C8; // type:function size:0x40 scope:global align:4 +startCarcassMotion__Q24Game9EnemyBaseFv = .text:0x80106708; // type:function size:0x214 scope:weak align:4 +viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8010691C; // type:function size:0x130 scope:global align:4 +view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80106A4C; // type:function size:0x2C scope:global align:4 +view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80106A78; // type:function size:0x40 scope:global align:4 +getCommonEffectPos__Q24Game9EnemyBaseFR10Vector3 = .text:0x80106AB8; // type:function size:0xA8 scope:global align:4 +getWaterSphere__Q24Game9EnemyBaseFPQ23Sys6Sphere = .text:0x80106B60; // type:function size:0x40 scope:global align:4 +updateWaterBox__Q24Game9EnemyBaseFv = .text:0x80106BA0; // type:function size:0x148 scope:global align:4 +inWater__Q24Game8WaterBoxFRQ23Sys6Sphere = .text:0x80106CE8; // type:function size:0x8 scope:weak align:4 +createPSEnemyBase__Q24Game9EnemyBaseFv = .text:0x80106CF0; // type:function size:0x27C scope:global align:4 +__dt__Q23PSM8EnemyBigFv = .text:0x80106F6C; // type:function size:0x164 scope:weak align:4 +__dt__Q23PSM9EnemyBaseFv = .text:0x801070D0; // type:function size:0x134 scope:weak align:4 +startMotion__Q24Game9EnemyBaseFv = .text:0x80107204; // type:function size:0x1C scope:global align:4 +getMotionFrameMax__Q24Game9EnemyBaseFv = .text:0x80107220; // type:function size:0x58 scope:global align:4 +getFirstKeyFrame__Q24Game9EnemyBaseFv = .text:0x80107278; // type:function size:0x68 scope:global align:4 +stopMotion__Q24Game9EnemyBaseFv = .text:0x801072E0; // type:function size:0x20 scope:global align:4 +isFinishMotion__Q24Game9EnemyBaseFv = .text:0x80107300; // type:function size:0x38 scope:global align:4 +isStopMotion__Q24Game9EnemyBaseFv = .text:0x80107338; // type:function size:0x10 scope:global align:4 +getCurrAnimIndex__Q24Game9EnemyBaseFv = .text:0x80107348; // type:function size:0x48 scope:global align:4 +setAnimSpeed__Q24Game9EnemyBaseFf = .text:0x80107390; // type:function size:0xC scope:global align:4 +resetAnimSpeed__Q24Game9EnemyBaseFv = .text:0x8010739C; // type:function size:0x30 scope:global align:4 +resetAnimSpeed__Q24Game17EnemyAnimatorBaseFv = .text:0x801073CC; // type:function size:0xC scope:weak align:4 +getJAIObject__Q24Game9EnemyBaseFv = .text:0x801073D8; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game9EnemyBaseFv = .text:0x801073EC; // type:function size:0x8 scope:global align:4 +getStateID__Q24Game9EnemyBaseFv = .text:0x801073F4; // type:function size:0x1C scope:global align:4 +needShadow__Q24Game9EnemyBaseFv = .text:0x80107410; // type:function size:0xAC scope:global align:4 +isAlwaysMovieActor__Q24Game12EnemyMgrBaseFv = .text:0x801074BC; // type:function size:0x8 scope:weak align:4 +isMovieActor__Q24Game8CreatureFv = .text:0x801074C4; // type:function size:0xC scope:weak align:4 +eatWhitePikminCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef = .text:0x801074D0; // type:function size:0x234 scope:global align:4 +__dt__Q34Game10EnemyStone8DrawInfoFv = .text:0x80107704; // type:function size:0x60 scope:weak align:4 +getDownSmokeScale__Q24Game9EnemyBaseFv = .text:0x80107764; // type:function size:0x8 scope:global align:4 +constraintOff__Q24Game9EnemyBaseFv = .text:0x8010776C; // type:function size:0x10 scope:global align:4 +hardConstraintOn__Q24Game9EnemyBaseFv = .text:0x8010777C; // type:function size:0x18 scope:global align:4 +hardConstraintOff__Q24Game9EnemyBaseFv = .text:0x80107794; // type:function size:0x28 scope:global align:4 +startMovie__Q24Game9EnemyBaseFv = .text:0x801077BC; // type:function size:0x84 scope:global align:4 +doStartMovie__Q24Game9EnemyBaseFv = .text:0x80107840; // type:function size:0x4 scope:weak align:4 +endMovie__Q24Game9EnemyBaseFv = .text:0x80107844; // type:function size:0x84 scope:global align:4 +doEndMovie__Q24Game9EnemyBaseFv = .text:0x801078C8; // type:function size:0x4 scope:weak align:4 +doStartEarthquakeState__Q24Game9EnemyBaseFf = .text:0x801078CC; // type:function size:0x94 scope:global align:4 +doFinishEarthquakeState__Q24Game9EnemyBaseFv = .text:0x80107960; // type:function size:0x4 scope:global align:4 +doStartEarthquakeFitState__Q24Game9EnemyBaseFv = .text:0x80107964; // type:function size:0x4 scope:global align:4 +doFinishEarthquakeFitState__Q24Game9EnemyBaseFv = .text:0x80107968; // type:function size:0x4 scope:global align:4 +startWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x8010796C; // type:function size:0x2C scope:global align:4 +doStartWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x80107998; // type:function size:0x4 scope:global align:4 +finishWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x8010799C; // type:function size:0x2C scope:global align:4 +doFinishWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x801079C8; // type:function size:0x64 scope:global align:4 +isBirthTypeDropGroup__Q24Game9EnemyBaseFv = .text:0x80107A2C; // type:function size:0x3C scope:global align:4 +getFitEffectPos__Q24Game9EnemyBaseFv = .text:0x80107A68; // type:function size:0x8 scope:global align:4 +setDroppingMassZero__Q24Game9EnemyBaseFv = .text:0x80107A70; // type:function size:0x18 scope:global align:4 +resetDroppingMassZero__Q24Game9EnemyBaseFv = .text:0x80107A88; // type:function size:0x18 scope:global align:4 +__dt__Q23PSM10EnemyHekoiFv = .text:0x80107AA0; // type:function size:0x164 scope:weak align:4 +getCastType__Q23PSM10EnemyHekoiFv = .text:0x80107C04; // type:function size:0x8 scope:weak align:4 +getJAIObject__Q23PSM13CreatureAnimeFv = .text:0x80107C0C; // type:function size:0x10 scope:weak align:4 +getHandleArea__Q23PSM13CreatureAnimeFUc = .text:0x80107C1C; // type:function size:0x10 scope:weak align:4 +getName__Q24Game13PelletInitArgFv = .text:0x80107C2C; // type:function size:0xC scope:weak align:4 +getName__Q24Game12EnemyKillArgFv = .text:0x80107C38; // type:function size:0xC scope:weak align:4 +getName__Q23efx8ArgScaleFv = .text:0x80107C44; // type:function size:0xC scope:weak align:4 +getName__Q34Game9ItemHoney7InitArgFv = .text:0x80107C50; // type:function size:0xC scope:weak align:4 +actPiki__Q24Game11InteractionFPQ24Game4Piki = .text:0x80107C5C; // type:function size:0x8 scope:weak align:4 +actNavi__Q24Game11InteractionFPQ24Game4Navi = .text:0x80107C64; // type:function size:0x8 scope:weak align:4 +actPellet__Q24Game11InteractionFPQ24Game6Pellet = .text:0x80107C6C; // type:function size:0x8 scope:weak align:4 +actOnyon__Q24Game11InteractionFPQ24Game5Onyon = .text:0x80107C74; // type:function size:0x8 scope:weak align:4 +actItem__Q24Game11InteractionFPQ24Game8BaseItem = .text:0x80107C7C; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game9EnemyBaseFv = .text:0x80107C84; // type:function size:0x88 scope:weak align:4 +doSimpleDraw__Q24Game9EnemyBaseFP8Viewport = .text:0x80107D0C; // type:function size:0x4 scope:weak align:4 +getCellRadius__Q24Game9EnemyBaseFv = .text:0x80107D10; // type:function size:0xC scope:weak align:4 +getBodyRadius__Q24Game9EnemyBaseFv = .text:0x80107D1C; // type:function size:0xC scope:weak align:4 +getFaceDir__Q24Game9EnemyBaseFv = .text:0x80107D28; // type:function size:0x8 scope:weak align:4 +setVelocity__Q24Game9EnemyBaseFR10Vector3 = .text:0x80107D30; // type:function size:0x1C scope:weak align:4 +getVelocity__Q24Game9EnemyBaseFv = .text:0x80107D4C; // type:function size:0x1C scope:weak align:4 +getVelocityAt__Q24Game9EnemyBaseFR10Vector3R10Vector3 = .text:0x80107D68; // type:function size:0x34 scope:weak align:4 +isTeki__Q24Game9EnemyBaseFv = .text:0x80107D9C; // type:function size:0x8 scope:weak align:4 +getSound_PosPtr__Q24Game9EnemyBaseFv = .text:0x80107DA4; // type:function size:0x8 scope:weak align:4 +initMouthSlots__Q24Game9EnemyBaseFv = .text:0x80107DAC; // type:function size:0x4 scope:weak align:4 +initWalkSmokeEffect__Q24Game9EnemyBaseFv = .text:0x80107DB0; // type:function size:0x4 scope:weak align:4 +inWater__Q24Game9EnemyBaseFv = .text:0x80107DB4; // type:function size:0x14 scope:weak align:4 +getEfxHamonPos__Q24Game9EnemyBaseFP10Vector3 = .text:0x80107DC8; // type:function size:0x1C scope:weak align:4 +getMouthSlots__Q24Game9EnemyBaseFv = .text:0x80107DE4; // type:function size:0x8 scope:weak align:4 +setLODSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere = .text:0x80107DEC; // type:function size:0x24 scope:weak align:4 +getLODSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere = .text:0x80107E10; // type:function size:0x24 scope:weak align:4 +getDamageCoeStoneState__Q24Game9EnemyBaseFv = .text:0x80107E34; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimFrame__Q24Game9EnemyBaseFv = .text:0x80107E3C; // type:function size:0x34 scope:weak align:4 +getSound_CurrAnimSpeed__Q24Game9EnemyBaseFv = .text:0x80107E70; // type:function size:0xC scope:weak align:4 +sound_culling__Q24Game9EnemyBaseFv = .text:0x80107E7C; // type:function size:0x30 scope:weak align:4 +getCarcassArgHeight__Q24Game9EnemyBaseFv = .text:0x80107EAC; // type:function size:0x8 scope:weak align:4 +viewGetBaseScale__Q24Game10PelletViewFv = .text:0x80107EB4; // type:function size:0x8 scope:weak align:4 +viewGetCollTreeJointIndex__Q24Game10PelletViewFv = .text:0x80107EBC; // type:function size:0x8 scope:weak align:4 +viewGetCollTreeOffset__Q24Game10PelletViewFv = .text:0x80107EC4; // type:function size:0x20 scope:weak align:4 +viewEntryShape__Q24Game10PelletViewFR7MatrixfR10Vector3 = .text:0x80107EE4; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game8CreatureFR8Graphics = .text:0x80107EE8; // type:function size:0x4 scope:weak align:4 +onInitPosition__Q24Game8CreatureFR10Vector3 = .text:0x80107EEC; // type:function size:0x4 scope:weak align:4 +getFlockMgr__Q24Game8CreatureFv = .text:0x80107EF0; // type:function size:0x8 scope:weak align:4 +onStartCapture__Q24Game8CreatureFv = .text:0x80107EF8; // type:function size:0x4 scope:weak align:4 +onUpdateCapture__Q24Game8CreatureFR7Matrixf = .text:0x80107EFC; // type:function size:0x4 scope:weak align:4 +onEndCapture__Q24Game8CreatureFv = .text:0x80107F00; // type:function size:0x4 scope:weak align:4 +isAtari__Q24Game8CreatureFv = .text:0x80107F04; // type:function size:0xC scope:weak align:4 +setAtari__Q24Game8CreatureFb = .text:0x80107F10; // type:function size:0x28 scope:weak align:4 +isCollisionFlick__Q24Game8CreatureFv = .text:0x80107F38; // type:function size:0xC scope:weak align:4 +setCollisionFlick__Q24Game8CreatureFb = .text:0x80107F44; // type:function size:0x28 scope:weak align:4 +isMovieExtra__Q24Game8CreatureFv = .text:0x80107F6C; // type:function size:0xC scope:weak align:4 +isMovieMotion__Q24Game8CreatureFv = .text:0x80107F78; // type:function size:0xC scope:weak align:4 +setMovieMotion__Q24Game8CreatureFb = .text:0x80107F84; // type:function size:0x28 scope:weak align:4 +isBuried__Q24Game8CreatureFv = .text:0x80107FAC; // type:function size:0x8 scope:weak align:4 +isUnderground__Q24Game8CreatureFv = .text:0x80107FB4; // type:function size:0x8 scope:weak align:4 +isLivingThing__Q24Game8CreatureFv = .text:0x80107FBC; // type:function size:0x8 scope:weak align:4 +isDebugCollision__Q24Game8CreatureFv = .text:0x80107FC4; // type:function size:0xC scope:weak align:4 +setDebugCollision__Q24Game8CreatureFb = .text:0x80107FD0; // type:function size:0x28 scope:weak align:4 +doSave__Q24Game8CreatureFR6Stream = .text:0x80107FF8; // type:function size:0x4 scope:weak align:4 +doLoad__Q24Game8CreatureFR6Stream = .text:0x80107FFC; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game8CreatureFRQ24Game9PlatEvent = .text:0x80108000; // type:function size:0x4 scope:weak align:4 +getSound_AILOD__Q24Game8CreatureFv = .text:0x80108004; // type:function size:0x8 scope:weak align:4 +on_movie_begin__Q24Game8CreatureFb = .text:0x8010800C; // type:function size:0x4 scope:weak align:4 +on_movie_end__Q24Game8CreatureFb = .text:0x80108010; // type:function size:0x4 scope:weak align:4 +movieStartAnimation__Q24Game8CreatureFUl = .text:0x80108014; // type:function size:0x4 scope:weak align:4 +movieStartDemoAnimation__Q24Game8CreatureFPQ28SysShape8AnimInfo = .text:0x80108018; // type:function size:0x4 scope:weak align:4 +movieSetAnimationLastFrame__Q24Game8CreatureFv = .text:0x8010801C; // type:function size:0x4 scope:weak align:4 +movieSetTranslation__Q24Game8CreatureFR10Vector3f = .text:0x80108020; // type:function size:0x4 scope:weak align:4 +movieSetFaceDir__Q24Game8CreatureFf = .text:0x80108024; // type:function size:0x4 scope:weak align:4 +movieGotoPosition__Q24Game8CreatureFR10Vector3 = .text:0x80108028; // type:function size:0x8 scope:weak align:4 +movieUserCommand__Q24Game8CreatureFUlPQ24Game11MoviePlayer = .text:0x80108030; // type:function size:0x4 scope:weak align:4 +getLODCylinder__Q24Game8CreatureFRQ23Sys8Cylinder = .text:0x80108034; // type:function size:0x4 scope:weak align:4 +startPick__Q24Game8CreatureFv = .text:0x80108038; // type:function size:0x4 scope:weak align:4 +endPick__Q24Game8CreatureFb = .text:0x8010803C; // type:function size:0x4 scope:weak align:4 +getMabiki__Q24Game8CreatureFv = .text:0x80108040; // type:function size:0x8 scope:weak align:4 +getFootmarks__Q24Game8CreatureFv = .text:0x80108048; // type:function size:0x8 scope:weak align:4 +onStickStartSelf__Q24Game8CreatureFPQ24Game8Creature = .text:0x80108050; // type:function size:0x4 scope:weak align:4 +onStickEndSelf__Q24Game8CreatureFPQ24Game8Creature = .text:0x80108054; // type:function size:0x4 scope:weak align:4 +isSlotFree__Q24Game8CreatureFs = .text:0x80108058; // type:function size:0x8 scope:weak align:4 +getFreeStickSlot__Q24Game8CreatureFv = .text:0x80108060; // type:function size:0x8 scope:weak align:4 +getNearFreeStickSlot__Q24Game8CreatureFR10Vector3 = .text:0x80108068; // type:function size:0x8 scope:weak align:4 +getRandomFreeStickSlot__Q24Game8CreatureFv = .text:0x80108070; // type:function size:0x8 scope:weak align:4 +onSlotStickStart__Q24Game8CreatureFPQ24Game8Creatures = .text:0x80108078; // type:function size:0x4 scope:weak align:4 +onSlotStickEnd__Q24Game8CreatureFPQ24Game8Creatures = .text:0x8010807C; // type:function size:0x4 scope:weak align:4 +calcStickSlotGlobal__Q24Game8CreatureFsR10Vector3 = .text:0x80108080; // type:function size:0x4 scope:weak align:4 +getAngularEffect__Q24Game8CreatureFR10Vector3R10Vector3 = .text:0x80108084; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q24Game8CreatureFPQ24Game8Creature = .text:0x8010808C; // type:function size:0x8 scope:weak align:4 +getSuckPos__Q24Game8CreatureFv = .text:0x80108094; // type:function size:0x38 scope:weak align:4 +getGoalPos__Q24Game8CreatureFv = .text:0x801080CC; // type:function size:0x38 scope:weak align:4 +isSuckReady__Q24Game8CreatureFv = .text:0x80108104; // type:function size:0x8 scope:weak align:4 +isSuckArriveWait__Q24Game8CreatureFv = .text:0x8010810C; // type:function size:0x8 scope:weak align:4 +getObjType__Q24Game8CreatureFv = .text:0x80108114; // type:function size:0x8 scope:weak align:4 +collisionUpdatable__Q24Game8CreatureFv = .text:0x8010811C; // type:function size:0x24 scope:weak align:4 +deferPikiCollision__Q24Game10CellObjectFv = .text:0x80108140; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game17EnemyAnimKeyEventFv = .text:0x80108148; // type:function size:0x70 scope:weak align:4 +view_start_carrymotion__Q24Game10PelletViewFv = .text:0x801081B8; // type:function size:0x4 scope:weak align:4 +view_finish_carrymotion__Q24Game10PelletViewFv = .text:0x801081BC; // type:function size:0x4 scope:weak align:4 +viewStartPreCarryMotion__Q24Game10PelletViewFv = .text:0x801081C0; // type:function size:0x4 scope:weak align:4 +viewStartCarryMotion__Q24Game10PelletViewFv = .text:0x801081C4; // type:function size:0x4 scope:weak align:4 +viewOnPelletKilled__Q24Game10PelletViewFv = .text:0x801081C8; // type:function size:0x4 scope:weak align:4 +getCurrState__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x801081CC; // type:function size:0x8 scope:weak align:4 +setCurrState__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasePQ24Game13EnemyFSMState = .text:0x801081D4; // type:function size:0x8 scope:weak align:4 +exec__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081DC; // type:function size:0x4 scope:weak align:4 +resume__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081E0; // type:function size:0x4 scope:weak align:4 +restart__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081E4; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game13EnemyFSMStateFPQ24Game9EnemyBaseR8Graphics = .text:0x801081E8; // type:function size:0x4 scope:weak align:4 +init__Q24Game13EnemyFSMStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801081EC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081F0; // type:function size:0x4 scope:weak align:4 +getName__Q23efx12ArgEnemyTypeFv = .text:0x801081F4; // type:function size:0xC scope:weak align:4 +getName__Q23efx3ArgFv = .text:0x80108200; // type:function size:0x8 scope:weak align:4 +simulation__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBasef = .text:0x80108208; // type:function size:0x4 scope:weak align:4 +entry__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x8010820C; // type:function size:0x4 scope:weak align:4 +simulation__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBasef = .text:0x80108210; // type:function size:0x4 scope:weak align:4 +animation__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x80108214; // type:function size:0x4 scope:weak align:4 +__sinit_enemyBase_cpp = .text:0x80108218; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game9EnemyBaseFRCQ28SysShape8KeyEvent = .text:0x80108240; // type:function size:0x8 scope:weak align:4 +@700@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80108248; // type:function size:0x14 scope:weak align:4 +@700@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8010825C; // type:function size:0x14 scope:weak align:4 +@700@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80108270; // type:function size:0x14 scope:weak align:4 +@700@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80108284; // type:function size:0x14 scope:weak align:4 +@700@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80108298; // type:function size:0x14 scope:weak align:4 +@700@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x801082AC; // type:function size:0x14 scope:weak align:4 +@16@__dt__Q23PSM10EnemyHekoiFv = .text:0x801082C0; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM13CreatureAnimeFUcUlUl = .text:0x801082C8; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM13CreatureAnimeFPP8JAISoundUlUl = .text:0x801082D0; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM13CreatureAnimeFUlUl = .text:0x801082D8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM10EnemyHekoiFv = .text:0x801082E0; // type:function size:0x8 scope:weak align:4 +@48@startAnimSound__Q23PSM9EnemyBaseFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x801082E8; // type:function size:0x8 scope:weak align:4 +@48@playActorAnimSound__Q23PSM13CreatureAnimeFPQ27JAInter5ActorfUc = .text:0x801082F0; // type:function size:0x8 scope:weak align:4 +@184@battleOff__Q23PSM9EnemyBaseFv = .text:0x801082F8; // type:function size:0x8 scope:weak align:4 +getValue__Q34Game8Pelplant21BlendAccelerationFuncFf = .text:0x80108300; // type:function size:0xB0 scope:global align:4 +birth__Q34Game8Pelplant3ObjFR10Vector3f = .text:0x801083B0; // type:function size:0xB4 scope:global align:4 +setInitialSetting__Q34Game8Pelplant3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80108464; // type:function size:0x280 scope:global align:4 +__ct__Q34Game8Pelplant3ObjFv = .text:0x801086E4; // type:function size:0x138 scope:global align:4 +setFSM__Q34Game8Pelplant3ObjFPQ34Game8Pelplant3FSM = .text:0x8010881C; // type:function size:0x4C scope:weak align:4 +__dt__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x80108868; // type:function size:0x5C scope:weak align:4 +doUpdate__Q34Game8Pelplant3ObjFv = .text:0x801088C4; // type:function size:0x34 scope:global align:4 +updateLODSphereRadius__Q34Game8Pelplant3ObjFi = .text:0x801088F8; // type:function size:0x88 scope:global align:4 +doDirectDraw__Q34Game8Pelplant3ObjFR8Graphics = .text:0x80108980; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8Pelplant3ObjFR8Graphics = .text:0x80108984; // type:function size:0x18C scope:global align:4 +getShadowParam__Q34Game8Pelplant3ObjFRQ24Game11ShadowParam = .text:0x80108B10; // type:function size:0xC0 scope:global align:4 +doAnimationUpdateAnimator__Q34Game8Pelplant3ObjFv = .text:0x80108BD0; // type:function size:0x90 scope:global align:4 +getHeadScale__Q34Game8Pelplant3ObjFv = .text:0x80108C60; // type:function size:0x58 scope:global align:4 +doAnimation__Q34Game8Pelplant3ObjFv = .text:0x80108CB8; // type:function size:0x198 scope:global align:4 +doSimulation__Q34Game8Pelplant3ObjFf = .text:0x80108E50; // type:function size:0x4 scope:global align:4 +setPelletColor__Q34Game8Pelplant3ObjFUsb = .text:0x80108E54; // type:function size:0xF0 scope:global align:4 +changePelletColor__Q34Game8Pelplant3ObjFv = .text:0x80108F44; // type:function size:0x190 scope:global align:4 +attachPellet__Q34Game8Pelplant3ObjFv = .text:0x801090D4; // type:function size:0x110 scope:global align:4 +damageCallBack__Q34Game8Pelplant3ObjFPQ24Game8CreaturefP8CollPart = .text:0x801091E4; // type:function size:0x98 scope:global align:4 +isLivingThing__Q34Game8Pelplant3ObjFv = .text:0x8010927C; // type:function size:0xC scope:weak align:4 +farmCallBack__Q34Game8Pelplant3ObjFPQ24Game8Creaturef = .text:0x80109288; // type:function size:0x78 scope:global align:4 +onStickStart__Q34Game8Pelplant3ObjFPQ24Game8Creature = .text:0x80109300; // type:function size:0x60 scope:global align:4 +headJointCallBack__Q34Game8Pelplant3ObjFP8J3DJointi = .text:0x80109360; // type:function size:0xF0 scope:global align:4 +neckJointCallBack__Q34Game8Pelplant3ObjFP8J3DJointi = .text:0x80109450; // type:function size:0x104 scope:global align:4 +__ct__Q34Game8Pelplant3MgrFiUc = .text:0x80109554; // type:function size:0x50 scope:global align:4 +__dt__Q24Game12EnemyMgrBaseFv = .text:0x801095A4; // type:function size:0x98 scope:weak align:4 +doAlloc__Q34Game8Pelplant3MgrFv = .text:0x8010963C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8Pelplant5ParmsFv = .text:0x80109684; // type:function size:0x118 scope:weak align:4 +__ct__Q24Game14EnemyParmsBaseFv = .text:0x8010979C; // type:function size:0x1D4 scope:weak align:4 +__ct__Q34Game14EnemyParmsBase5ParmsFv = .text:0x80109970; // type:function size:0xAE0 scope:weak align:4 +__ct__11BitFlagFv = .text:0x8010A450; // type:function size:0x10 scope:weak align:4 +birth__Q34Game8Pelplant3MgrFRQ24Game13EnemyBirthArg = .text:0x8010A460; // type:function size:0x20 scope:global align:4 +onInit__Q34Game8Pelplant3ObjFPQ24Game15CreatureInitArg = .text:0x8010A480; // type:function size:0xD0 scope:global align:4 +doGetLifeGaugeParam__Q34Game8Pelplant3ObjFRQ24Game14LifeGaugeParam = .text:0x8010A550; // type:function size:0x48 scope:global align:4 +__dt__Q34Game8Pelplant3MgrFv = .text:0x8010A598; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8Pelplant3MgrFv = .text:0x8010A648; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game8Pelplant3MgrFi = .text:0x8010A650; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Pelplant3ObjFv = .text:0x8010A6B0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8Pelplant3MgrFi = .text:0x8010A76C; // type:function size:0x10 scope:weak align:4 +initStoneSetting__Q34Game8Pelplant3MgrFv = .text:0x8010A77C; // type:function size:0x4 scope:weak align:4 +get__Q24Game12EnemyMgrBaseFPv = .text:0x8010A780; // type:function size:0x2C scope:weak align:4 +getJ3DModelData__Q24Game12EnemyMgrBaseCFv = .text:0x8010A7AC; // type:function size:0x8 scope:weak align:4 +getGenerator__Q24Game12EnemyMgrBaseCFv = .text:0x8010A7B4; // type:function size:0x8 scope:weak align:4 +getMaxObjects__Q24Game12EnemyMgrBaseCFv = .text:0x8010A7BC; // type:function size:0x8 scope:weak align:4 +doSimpleDraw__16GenericObjectMgrFP8Viewport = .text:0x8010A7C4; // type:function size:0x4 scope:weak align:4 +loadResources__16GenericObjectMgrFv = .text:0x8010A7C8; // type:function size:0x4 scope:weak align:4 +resetMgr__16GenericObjectMgrFv = .text:0x8010A7CC; // type:function size:0x4 scope:weak align:4 +pausable__16GenericObjectMgrFv = .text:0x8010A7D0; // type:function size:0x8 scope:weak align:4 +frozenable__16GenericObjectMgrFv = .text:0x8010A7D8; // type:function size:0x8 scope:weak align:4 +getMatrixLoadType__16GenericObjectMgrFv = .text:0x8010A7E0; // type:function size:0x8 scope:weak align:4 +getEnd__Q24Game12EnemyMgrBaseFv = .text:0x8010A7E8; // type:function size:0x8 scope:weak align:4 +getStart__Q24Game12EnemyMgrBaseFv = .text:0x8010A7F0; // type:function size:0x30 scope:weak align:4 +getObject__Q24Game12EnemyMgrBaseFPv = .text:0x8010A820; // type:function size:0x2C scope:weak align:4 +read__Q24Game14EnemyParmsBaseFR6Stream = .text:0x8010A84C; // type:function size:0x44 scope:weak align:4 +read__Q24Game13CreatureParmsFR6Stream = .text:0x8010A890; // type:function size:0x20 scope:weak align:4 +read__Q34Game8Pelplant5ParmsFR6Stream = .text:0x8010A8B0; // type:function size:0x50 scope:weak align:4 +__dt__16GenericContainerFv = .text:0x8010A900; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game13IEnemyMgrBaseFv = .text:0x8010A960; // type:function size:0x80 scope:weak align:4 +__dt__Q34Game8Pelplant14ProperAnimatorFv = .text:0x8010A9E0; // type:function size:0x6C scope:weak align:4 +animate__Q24Game22EnemyBlendAnimatorBaseFif = .text:0x8010AA4C; // type:function size:0x20 scope:weak align:4 +getTypeID__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8010AA6C; // type:function size:0xC scope:weak align:4 +getEnemyTypeID__Q34Game8Pelplant3ObjFv = .text:0x8010AA78; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x8010AA80; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x8010AA88; // type:function size:0x8 scope:weak align:4 +@728@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8010AA90; // type:function size:0x14 scope:weak align:4 +@728@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8010AAA4; // type:function size:0x14 scope:weak align:4 +@728@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8010AAB8; // type:function size:0x14 scope:weak align:4 +@728@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8010AACC; // type:function size:0x14 scope:weak align:4 +@728@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8010AAE0; // type:function size:0x14 scope:weak align:4 +@728@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8010AAF4; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q24Game13IEnemyMgrBaseFv = .text:0x8010AB08; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Pelplant3MgrFv = .text:0x8010AB10; // type:function size:0x8 scope:weak align:4 +@4@getEnd__Q24Game12EnemyMgrBaseFv = .text:0x8010AB18; // type:function size:0x8 scope:weak align:4 +@4@getStart__Q24Game12EnemyMgrBaseFv = .text:0x8010AB20; // type:function size:0x8 scope:weak align:4 +@4@getNext__Q24Game12EnemyMgrBaseFPv = .text:0x8010AB28; // type:function size:0x8 scope:weak align:4 +@4@getObject__Q24Game12EnemyMgrBaseFPv = .text:0x8010AB30; // type:function size:0x8 scope:weak align:4 +init__Q34Game8Pelplant3FSMFPQ24Game9EnemyBase = .text:0x8010AB38; // type:function size:0x1E0 scope:global align:4 +init__Q34Game8Pelplant14StateBlendAnimFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010AD18; // type:function size:0x3C scope:global align:4 +exec__Q34Game8Pelplant14StateBlendAnimFPQ24Game9EnemyBase = .text:0x8010AD54; // type:function size:0x7C scope:global align:4 +__ct__Q34Game8Pelplant11StateWitherFiiii = .text:0x8010ADD0; // type:function size:0x98 scope:global align:4 +init__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010AE68; // type:function size:0x70 scope:global align:4 +exec__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBase = .text:0x8010AED8; // type:function size:0x7C scope:global align:4 +cleanup__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBase = .text:0x8010AF54; // type:function size:0x28 scope:global align:4 +__ct__Q34Game8Pelplant9StateWaitFii = .text:0x8010AF7C; // type:function size:0x88 scope:global align:4 +init__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010B004; // type:function size:0x144 scope:global align:4 +exec__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBase = .text:0x8010B148; // type:function size:0x278 scope:global align:4 +cleanup__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBase = .text:0x8010B3C0; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8Pelplant9StateGrowFiii = .text:0x8010B3C4; // type:function size:0x44 scope:global align:4 +init__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010B408; // type:function size:0x2E0 scope:global align:4 +exec__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBase = .text:0x8010B6E8; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBase = .text:0x8010B748; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8Pelplant11StateDamageFii = .text:0x8010B74C; // type:function size:0x40 scope:global align:4 +init__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010B78C; // type:function size:0x8C scope:global align:4 +exec__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBase = .text:0x8010B818; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBase = .text:0x8010B880; // type:function size:0x10 scope:global align:4 +__ct__Q34Game8Pelplant9StateDeadFii = .text:0x8010B890; // type:function size:0x40 scope:global align:4 +init__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010B8D0; // type:function size:0xB4 scope:global align:4 +exec__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBase = .text:0x8010B984; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBase = .text:0x8010B9EC; // type:function size:0x4 scope:global align:4 +forceKill__Q23efx8TSimple3Fv = .text:0x8010B9F0; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple3Fv = .text:0x8010B9F4; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx8TSimple2Fv = .text:0x8010B9F8; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple2Fv = .text:0x8010B9FC; // type:function size:0x4 scope:weak align:4 +actEnemy__Q24Game15InteractHipdropFPQ24Game9EnemyBase = .text:0x8010BA00; // type:function size:0x7C scope:global align:4 +actEnemy__Q24Game18InteractEarthquakeFPQ24Game9EnemyBase = .text:0x8010BA7C; // type:function size:0x74 scope:global align:4 +actEnemy__Q24Game13InteractPressFPQ24Game9EnemyBase = .text:0x8010BAF0; // type:function size:0x40 scope:global align:4 +actEnemy__Q24Game20InteractFlyCollisionFPQ24Game9EnemyBase = .text:0x8010BB30; // type:function size:0x40 scope:global align:4 +actEnemy__Q24Game14InteractAttackFPQ24Game9EnemyBase = .text:0x8010BB70; // type:function size:0x11C scope:global align:4 +actEnemy__Q24Game12InteractDropFPQ24Game9EnemyBase = .text:0x8010BC8C; // type:function size:0x38 scope:global align:4 +actEnemy__Q24Game12InteractBombFPQ24Game9EnemyBase = .text:0x8010BCC4; // type:function size:0x78 scope:global align:4 +createEnemyMgr__Q24Game15GeneralEnemyMgrFUcii = .text:0x8010BD3C; // type:function size:0xFAC scope:global align:4 +__ct__Q24Game15GeneralEnemyMgrFv = .text:0x8010CCE8; // type:function size:0x1BC scope:global align:4 +__dt__Q24Game12EnemyMgrNodeFv = .text:0x8010CEA4; // type:function size:0x68 scope:weak align:4 +killAll__Q24Game15GeneralEnemyMgrFv = .text:0x8010CF0C; // type:function size:0x78 scope:global align:4 +killAll__Q24Game12EnemyMgrNodeFPQ24Game15CreatureKillArg = .text:0x8010CF84; // type:function size:0x30 scope:weak align:4 +setupSoundViewerAndBas__Q24Game15GeneralEnemyMgrFv = .text:0x8010CFB4; // type:function size:0x4C scope:global align:4 +setupSoundViewerAndBas__Q24Game12EnemyMgrNodeFv = .text:0x8010D000; // type:function size:0x30 scope:weak align:4 +doAnimation__Q24Game15GeneralEnemyMgrFv = .text:0x8010D030; // type:function size:0x8C scope:global align:4 +doAnimation__Q24Game12EnemyMgrNodeFv = .text:0x8010D0BC; // type:function size:0x30 scope:weak align:4 +doEntry__Q24Game15GeneralEnemyMgrFv = .text:0x8010D0EC; // type:function size:0x58 scope:global align:4 +doEntry__Q24Game12EnemyMgrNodeFv = .text:0x8010D144; // type:function size:0x30 scope:weak align:4 +doSetView__Q24Game15GeneralEnemyMgrFi = .text:0x8010D174; // type:function size:0x68 scope:global align:4 +doSetView__Q24Game12EnemyMgrNodeFi = .text:0x8010D1DC; // type:function size:0x30 scope:weak align:4 +doViewCalc__Q24Game15GeneralEnemyMgrFv = .text:0x8010D20C; // type:function size:0x58 scope:global align:4 +doViewCalc__Q24Game12EnemyMgrNodeFv = .text:0x8010D264; // type:function size:0x30 scope:weak align:4 +doSimulation__Q24Game15GeneralEnemyMgrFf = .text:0x8010D294; // type:function size:0x68 scope:global align:4 +doSimulation__Q24Game12EnemyMgrNodeFf = .text:0x8010D2FC; // type:function size:0x30 scope:weak align:4 +doDirectDraw__Q24Game15GeneralEnemyMgrFR8Graphics = .text:0x8010D32C; // type:function size:0x68 scope:global align:4 +doDirectDraw__Q24Game12EnemyMgrNodeFR8Graphics = .text:0x8010D394; // type:function size:0x30 scope:weak align:4 +doSimpleDraw__Q24Game15GeneralEnemyMgrFP8Viewport = .text:0x8010D3C4; // type:function size:0x80 scope:global align:4 +doSimpleDraw__Q24Game12EnemyMgrNodeFP8Viewport = .text:0x8010D444; // type:function size:0x30 scope:weak align:4 +getJ3DModelData__Q24Game15GeneralEnemyMgrFi = .text:0x8010D474; // type:function size:0x4C scope:global align:4 +birth__Q24Game15GeneralEnemyMgrFiRQ24Game13EnemyBirthArg = .text:0x8010D4C0; // type:function size:0xBC scope:global align:4 +getEnemyName__Q24Game15GeneralEnemyMgrFii = .text:0x8010D57C; // type:function size:0x28 scope:global align:4 +getEnemyID__Q24Game15GeneralEnemyMgrFPci = .text:0x8010D5A4; // type:function size:0x28 scope:global align:4 +getIEnemyMgrBase__Q24Game15GeneralEnemyMgrFi = .text:0x8010D5CC; // type:function size:0x2C scope:global align:4 +allocateEnemys__Q24Game15GeneralEnemyMgrFUci = .text:0x8010D5F8; // type:function size:0x21C scope:global align:4 +resetEnemyNum__Q24Game15GeneralEnemyMgrFv = .text:0x8010D814; // type:function size:0x40 scope:global align:4 +addEnemyNum__Q24Game15GeneralEnemyMgrFiUcPQ24Game14GenObjectEnemy = .text:0x8010D854; // type:function size:0x22C scope:global align:4 +getEnemyNum__Q24Game15GeneralEnemyMgrFib = .text:0x8010DA80; // type:function size:0x170 scope:global align:4 +useHeap__Q24Game15GeneralEnemyMgrFv = .text:0x8010DBF0; // type:function size:0xB4 scope:global align:4 +getEnemyMgr__Q24Game15GeneralEnemyMgrFi = .text:0x8010DCA4; // type:function size:0x38 scope:global align:4 +setMovieDraw__Q24Game15GeneralEnemyMgrFb = .text:0x8010DCDC; // type:function size:0x98 scope:global align:4 +endMovie__Q24Game12EnemyMgrNodeFv = .text:0x8010DD74; // type:function size:0x30 scope:weak align:4 +startMovie__Q24Game12EnemyMgrNodeFv = .text:0x8010DDA4; // type:function size:0x30 scope:weak align:4 +prepareDayendEnemies__Q24Game15GeneralEnemyMgrFv = .text:0x8010DDD4; // type:function size:0x11C scope:global align:4 +next__37GeneralMgrIteratorFv = .text:0x8010DEF0; // type:function size:0x110 scope:weak align:4 +setFirst__37GeneralMgrIteratorFv = .text:0x8010E000; // type:function size:0x490 scope:weak align:4 +first__37GeneralMgrIteratorFv = .text:0x8010E490; // type:function size:0x2C scope:weak align:4 +createDayendEnemies__Q24Game15GeneralEnemyMgrFRQ23Sys6Sphere = .text:0x8010E4BC; // type:function size:0xC84 scope:global align:4 +setDebugParm__Q24Game12EnemyMgrNodeFUl = .text:0x8010F140; // type:function size:0x30 scope:weak align:4 +resetDebugParm__Q24Game12EnemyMgrNodeFUl = .text:0x8010F170; // type:function size:0x30 scope:weak align:4 +__dt__Q24Game15GeneralEnemyMgrFv = .text:0x8010F1A0; // type:function size:0xB4 scope:weak align:4 +getMatrixLoadType__Q24Game12EnemyMgrNodeFv = .text:0x8010F254; // type:function size:0x8 scope:weak align:4 +doEntry__16GenericObjectMgrFv = .text:0x8010F25C; // type:function size:0x4 scope:weak align:4 +@24@getMatrixLoadType__Q24Game12EnemyMgrNodeFv = .text:0x8010F260; // type:function size:0x8 scope:weak align:4 +@24@doSimpleDraw__Q24Game12EnemyMgrNodeFP8Viewport = .text:0x8010F268; // type:function size:0x8 scope:weak align:4 +@24@doDirectDraw__Q24Game12EnemyMgrNodeFR8Graphics = .text:0x8010F270; // type:function size:0x8 scope:weak align:4 +@24@doSimulation__Q24Game12EnemyMgrNodeFf = .text:0x8010F278; // type:function size:0x8 scope:weak align:4 +@24@doViewCalc__Q24Game12EnemyMgrNodeFv = .text:0x8010F280; // type:function size:0x8 scope:weak align:4 +@24@doSetView__Q24Game12EnemyMgrNodeFi = .text:0x8010F288; // type:function size:0x8 scope:weak align:4 +@24@doEntry__Q24Game12EnemyMgrNodeFv = .text:0x8010F290; // type:function size:0x8 scope:weak align:4 +@24@doAnimation__Q24Game12EnemyMgrNodeFv = .text:0x8010F298; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q24Game15GeneralEnemyMgrFv = .text:0x8010F2A0; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game12KochappyBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8010F2A8; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game12KochappyBase14ProperAnimatorFi = .text:0x8010F2B0; // type:function size:0x8 scope:global align:4 +__dt__Q34Game12KochappyBase14ProperAnimatorFv = .text:0x8010F2B8; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game12KochappyBase14ProperAnimatorFv = .text:0x8010F314; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Kochappy3ObjFv = .text:0x8010F31C; // type:function size:0x130 scope:global align:4 +setFSM__Q34Game12KochappyBase3ObjFPQ34Game12KochappyBase3FSM = .text:0x8010F44C; // type:function size:0x4C scope:weak align:4 +__dt__Q24Game17EnemyAnimatorBaseFv = .text:0x8010F498; // type:function size:0x48 scope:weak align:4 +__dt__Q34Game12KochappyBase3ObjFv = .text:0x8010F4E0; // type:function size:0xBC scope:weak align:4 +changeMaterial__Q34Game8Kochappy3ObjFv = .text:0x8010F59C; // type:function size:0x1A4 scope:global align:4 +getChangeTexture__Q34Game8Kochappy3MgrFv = .text:0x8010F740; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8Kochappy3ObjFv = .text:0x8010F748; // type:function size:0xEC scope:weak align:4 +getEnemyTypeID__Q34Game8Kochappy3ObjFv = .text:0x8010F834; // type:function size:0x8 scope:weak align:4 +setAnimationSpeed__Q34Game12KochappyBase3ObjFf = .text:0x8010F83C; // type:function size:0x20 scope:weak align:4 +getMouthSlots__Q34Game12KochappyBase3ObjFv = .text:0x8010F85C; // type:function size:0x8 scope:weak align:4 +resetEnemyNonStone__Q34Game12KochappyBase3ObjFv = .text:0x8010F864; // type:function size:0x4 scope:weak align:4 +setEnemyNonStone__Q34Game12KochappyBase3ObjFv = .text:0x8010F868; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game12KochappyBase3ObjFv = .text:0x8010F86C; // type:function size:0x8 scope:weak align:4 +init__Q34Game12KochappyBase3FSMFPQ24Game9EnemyBase = .text:0x8010F874; // type:function size:0x198 scope:global align:4 +__ct__Q34Game12KochappyBase10StatePressFi = .text:0x8010FA0C; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010FA48; // type:function size:0x54 scope:global align:4 +exec__Q34Game12KochappyBase10StatePressFPQ24Game9EnemyBase = .text:0x8010FA9C; // type:function size:0x50 scope:global align:4 +__ct__Q34Game12KochappyBase9StateWaitFi = .text:0x8010FAEC; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010FB28; // type:function size:0xC8 scope:global align:4 +exec__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBase = .text:0x8010FBF0; // type:function size:0x308 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBase = .text:0x8010FEF8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game12KochappyBase9StateDeadFi = .text:0x8010FF1C; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010FF58; // type:function size:0x40 scope:global align:4 +exec__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x8010FF98; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x8010FFE8; // type:function size:0x4 scope:global align:4 +__ct__Q34Game12KochappyBase9StateTurnFi = .text:0x8010FFEC; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80110028; // type:function size:0x54 scope:global align:4 +exec__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x8011007C; // type:function size:0x710 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x8011078C; // type:function size:0x24 scope:global align:4 +__ct__Q34Game12KochappyBase9StateWalkFi = .text:0x801107B0; // type:function size:0x44 scope:global align:4 +init__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801107F4; // type:function size:0x80 scope:global align:4 +exec__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x80110874; // type:function size:0x6E4 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x80110F58; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12KochappyBase11StateAttackFi = .text:0x80110FA0; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80110FDC; // type:function size:0x48 scope:global align:4 +exec__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x80111024; // type:function size:0x3F0 scope:global align:4 +cleanup__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x80111414; // type:function size:0x24 scope:global align:4 +__ct__Q34Game12KochappyBase10StateFlickFi = .text:0x80111438; // type:function size:0x44 scope:global align:4 +init__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8011147C; // type:function size:0x94 scope:global align:4 +exec__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x80111510; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x80111688; // type:function size:0x50 scope:global align:4 +__ct__Q34Game12KochappyBase15StateTurnToHomeFi = .text:0x801116D8; // type:function size:0x40 scope:global align:4 +init__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80111718; // type:function size:0x120 scope:global align:4 +exec__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80111838; // type:function size:0x46C scope:global align:4 +cleanup__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80111CA4; // type:function size:0x4 scope:global align:4 +__ct__Q34Game12KochappyBase11StateGoHomeFi = .text:0x80111CA8; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80111CE4; // type:function size:0x64 scope:global align:4 +exec__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x80111D48; // type:function size:0x440 scope:global align:4 +cleanup__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x80112188; // type:function size:0x40 scope:global align:4 +__ct__Q34Game12KochappyBase9StateDemoFi = .text:0x801121C8; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateDemoFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80112204; // type:function size:0x7C scope:global align:4 +enableTimer__Q24Game15BaseGameSectionFfUl = .text:0x80112280; // type:function size:0x4 scope:weak align:4 +getTimerType__Q24Game15BaseGameSectionFv = .text:0x80112284; // type:function size:0x8 scope:weak align:4 +__sinit_kochappyState_cpp = .text:0x8011228C; // type:function size:0x28 scope:local align:4 +__ct__Q34Game8Kochappy3MgrFiUc = .text:0x801122B4; // type:function size:0x50 scope:global align:4 +__dt__Q34Game12KochappyBase3MgrFv = .text:0x80112304; // type:function size:0xB0 scope:weak align:4 +doAlloc__Q34Game8Kochappy3MgrFv = .text:0x801123B4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12KochappyBase5ParmsFv = .text:0x801123FC; // type:function size:0x118 scope:weak align:4 +loadTexData__Q34Game8Kochappy3MgrFv = .text:0x80112514; // type:function size:0x48 scope:global align:4 +__dt__Q34Game8Kochappy3MgrFv = .text:0x8011255C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Kochappy3MgrFv = .text:0x80112624; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game8Kochappy3MgrFi = .text:0x8011262C; // type:function size:0x60 scope:weak align:4 +getEnemy__Q34Game8Kochappy3MgrFi = .text:0x8011268C; // type:function size:0x10 scope:weak align:4 +read__Q34Game12KochappyBase5ParmsFR6Stream = .text:0x8011269C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8Kochappy3MgrFv = .text:0x801126EC; // type:function size:0x8 scope:weak align:4 +getNearestNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23Condition = .text:0x801126F4; // type:function size:0x424 scope:global align:4 +isDone__22IteratorFv = .text:0x80112B18; // type:function size:0x4C scope:weak align:4 +getNearestPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23Condition = .text:0x80112B64; // type:function size:0x484 scope:global align:4 +getPosition__Q24Game8FakePikiFv = .text:0x80112FE8; // type:function size:0x1C scope:weak align:4 +isDone__22IteratorFv = .text:0x80113004; // type:function size:0x4C scope:weak align:4 +getNearestPikminOrNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23ConditionP23Condition = .text:0x80113050; // type:function size:0xC4 scope:global align:4 +stimulate__Q24Game8CreatureFRQ24Game11Interaction = .text:0x80113114; // type:function size:0x8 scope:weak align:4 +flickStickPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition = .text:0x8011311C; // type:function size:0x36C scope:global align:4 +isDone__26IteratorFv = .text:0x80113488; // type:function size:0x4C scope:weak align:4 +flickNearbyPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition = .text:0x801134D4; // type:function size:0x2BC scope:global align:4 +flickNearbyNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition = .text:0x80113790; // type:function size:0x3A4 scope:global align:4 +eatPikmin__Q24Game9EnemyFuncFPQ24Game9EnemyBaseP23Condition = .text:0x80113B34; // type:function size:0x350 scope:global align:4 +swallowPikmin__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80113E84; // type:function size:0x3DC scope:global align:4 +attackNavi__Q24Game9EnemyFuncFPQ24Game8CreaturefffP8CollPartP23Condition = .text:0x80114260; // type:function size:0x3F8 scope:global align:4 +isStartFlick__Q24Game9EnemyFuncFPQ24Game9EnemyBaseb = .text:0x80114658; // type:function size:0xDC scope:global align:4 +isTherePikmin__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80114734; // type:function size:0x38C scope:global align:4 +isThereOlimar__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80114AC0; // type:function size:0x330 scope:global align:4 +getSurroundPikminNum__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80114DF0; // type:function size:0x3C4 scope:global align:4 +getStickPikminColorNum__Q24Game9EnemyFuncFPQ24Game8Creaturei = .text:0x801151B4; // type:function size:0x24C scope:global align:4 +walkToTarget__Q24Game9EnemyFuncFPQ24Game9EnemyBasePQ24Game8Creaturefff = .text:0x80115400; // type:function size:0x1DC scope:global align:4 +walkToTarget__Q24Game9EnemyFuncFPQ24Game9EnemyBaseR10Vector3fff = .text:0x801155DC; // type:function size:0x1BC scope:global align:4 +satisfy__Q34Game9EnemyFunc25EatPikminDefaultConditionFPQ24Game4Piki = .text:0x80115798; // type:function size:0x80 scope:weak align:4 +satisfy__Q34Game9EnemyFunc21ConditionPikminNearbyFPQ24Game8Creature = .text:0x80115818; // type:function size:0x168 scope:weak align:4 +__ml__26IteratorFv = .text:0x80115980; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x801159B8; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80115A9C; // type:function size:0xDC scope:weak align:4 +__ml__22IteratorFv = .text:0x80115B78; // type:function size:0x38 scope:weak align:4 +next__22IteratorFv = .text:0x80115BB0; // type:function size:0xE4 scope:weak align:4 +first__22IteratorFv = .text:0x80115C94; // type:function size:0xDC scope:weak align:4 +__ml__22IteratorFv = .text:0x80115D70; // type:function size:0x38 scope:weak align:4 +next__22IteratorFv = .text:0x80115DA8; // type:function size:0xE4 scope:weak align:4 +first__22IteratorFv = .text:0x80115E8C; // type:function size:0xDC scope:weak align:4 +__sinit_enemyAction_cpp = .text:0x80115F68; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6Chappy3ObjFv = .text:0x80115F90; // type:function size:0x144 scope:global align:4 +setFSM__Q34Game10ChappyBase3ObjFPQ34Game10ChappyBase3FSM = .text:0x801160D4; // type:function size:0x4C scope:weak align:4 +__dt__Q34Game10ChappyBase3ObjFv = .text:0x80116120; // type:function size:0xBC scope:weak align:4 +changeMaterial__Q34Game6Chappy3ObjFv = .text:0x801161DC; // type:function size:0x2B0 scope:global align:4 +getChangeTexture1__Q34Game6Chappy3MgrFv = .text:0x8011648C; // type:function size:0x8 scope:weak align:4 +getChangeTexture0__Q34Game6Chappy3MgrFv = .text:0x80116494; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game6Chappy3ObjFv = .text:0x8011649C; // type:function size:0xEC scope:weak align:4 +getEnemyTypeID__Q34Game6Chappy3ObjFv = .text:0x80116588; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game10ChappyBase3ObjFv = .text:0x80116590; // type:function size:0x8 scope:weak align:4 +setAnimationSpeed__Q34Game10ChappyBase3ObjFf = .text:0x80116598; // type:function size:0x20 scope:weak align:4 +resetUnderGround__Q34Game10ChappyBase3ObjFv = .text:0x801165B8; // type:function size:0x4 scope:weak align:4 +setUnderGround__Q34Game10ChappyBase3ObjFv = .text:0x801165BC; // type:function size:0x4 scope:weak align:4 +createFlickEffect__Q34Game10ChappyBase3ObjFv = .text:0x801165C0; // type:function size:0x4 scope:weak align:4 +createSmokeEffect__Q34Game10ChappyBase3ObjFv = .text:0x801165C4; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game10ChappyBase3ObjFv = .text:0x801165C8; // type:function size:0x8 scope:weak align:4 +@740@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x801165D0; // type:function size:0x14 scope:weak align:4 +@740@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x801165E4; // type:function size:0x14 scope:weak align:4 +@740@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x801165F8; // type:function size:0x14 scope:weak align:4 +@740@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8011660C; // type:function size:0x14 scope:weak align:4 +@740@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80116620; // type:function size:0x14 scope:weak align:4 +@740@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80116634; // type:function size:0x14 scope:weak align:4 +init__Q34Game10ChappyBase3FSMFPQ24Game9EnemyBase = .text:0x80116648; // type:function size:0x150 scope:global align:4 +__ct__Q34Game10ChappyBase10StateSleepFi = .text:0x80116798; // type:function size:0x3C scope:global align:4 +init__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801167D4; // type:function size:0xBC scope:global align:4 +exec__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBase = .text:0x80116890; // type:function size:0x1B0 scope:global align:4 +cleanup__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBase = .text:0x80116A40; // type:function size:0x98 scope:global align:4 +setNextState__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBasei = .text:0x80116AD8; // type:function size:0x64 scope:global align:4 +__ct__Q34Game10ChappyBase9StateDeadFi = .text:0x80116B3C; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80116B90; // type:function size:0x40 scope:global align:4 +exec__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x80116BD0; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x80116C34; // type:function size:0x4 scope:global align:4 +__ct__Q34Game10ChappyBase9StateTurnFi = .text:0x80116C38; // type:function size:0x60 scope:global align:4 +init__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80116C98; // type:function size:0x58 scope:global align:4 +exec__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x80116CF0; // type:function size:0x7F0 scope:global align:4 +cleanup__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x801174E0; // type:function size:0x38 scope:global align:4 +__ct__Q34Game10ChappyBase9StateWalkFi = .text:0x80117518; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8011756C; // type:function size:0x58 scope:global align:4 +exec__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x801175C4; // type:function size:0x7FC scope:global align:4 +cleanup__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x80117DC0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10ChappyBase11StateAttackFi = .text:0x80117E08; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80117E5C; // type:function size:0x48 scope:global align:4 +exec__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x80117EA4; // type:function size:0x33C scope:global align:4 +transitState__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x801181E0; // type:function size:0x2F0 scope:global align:4 +cleanup__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x801184D0; // type:function size:0x24 scope:global align:4 +doDirectDraw__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBaseR8Graphics = .text:0x801184F4; // type:function size:0x4 scope:global align:4 +__ct__Q34Game10ChappyBase10StateFlickFi = .text:0x801184F8; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8011854C; // type:function size:0x78 scope:global align:4 +exec__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x801185C4; // type:function size:0x23C scope:global align:4 +cleanup__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x80118800; // type:function size:0x54 scope:global align:4 +__ct__Q34Game10ChappyBase15StateTurnToHomeFi = .text:0x80118854; // type:function size:0x64 scope:global align:4 +init__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801188B8; // type:function size:0x150 scope:global align:4 +exec__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80118A08; // type:function size:0x6AC scope:global align:4 +cleanup__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x801190B4; // type:function size:0x4 scope:global align:4 +__ct__Q34Game10ChappyBase11StateGoHomeFi = .text:0x801190B8; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8011910C; // type:function size:0x2C scope:global align:4 +exec__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x80119138; // type:function size:0x5C4 scope:global align:4 +cleanup__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x801196FC; // type:function size:0x14 scope:global align:4 +setAnimMgr__Q34Game10ChappyBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80119710; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10ChappyBase14ProperAnimatorFi = .text:0x80119718; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10ChappyBase14ProperAnimatorFv = .text:0x80119720; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10ChappyBase14ProperAnimatorFv = .text:0x8011977C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Chappy3MgrFiUc = .text:0x80119784; // type:function size:0x50 scope:global align:4 +__dt__Q34Game10ChappyBase3MgrFv = .text:0x801197D4; // type:function size:0xB0 scope:weak align:4 +loadTexData__Q34Game6Chappy3MgrFv = .text:0x80119884; // type:function size:0x6C scope:global align:4 +doAlloc__Q34Game6Chappy3MgrFv = .text:0x801198F0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10ChappyBase5ParmsFv = .text:0x80119938; // type:function size:0x12C scope:weak align:4 +read__Q34Game10ChappyBase5ParmsFR6Stream = .text:0x80119A64; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game6Chappy3MgrFv = .text:0x80119AB4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Chappy3MgrFv = .text:0x80119B7C; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game6Chappy3MgrFi = .text:0x80119B84; // type:function size:0x60 scope:weak align:4 +getEnemy__Q34Game6Chappy3MgrFi = .text:0x80119BE4; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game6Chappy3MgrFv = .text:0x80119BF4; // type:function size:0x8 scope:weak align:4 +__ct__9LifeGaugeFv = .text:0x80119BFC; // type:function size:0x34 scope:global align:4 +init__9LifeGaugeFUc = .text:0x80119C30; // type:function size:0x14 scope:global align:4 +update__9LifeGaugeFf = .text:0x80119C44; // type:function size:0x1CC scope:global align:4 +draw__9LifeGaugeFfff = .text:0x80119E10; // type:function size:0x1BC scope:global align:4 +initLifeGaugeDraw__9LifeGaugeFv = .text:0x80119FCC; // type:function size:0x110 scope:global align:4 +drawOneTri__9LifeGaugeFP10Vector3R6Color4 = .text:0x8011A0DC; // type:function size:0xF0 scope:global align:4 +draw__13LifeGaugeListFR8Graphics = .text:0x8011A1CC; // type:function size:0x604 scope:global align:4 +__ct__12LifeGaugeMgrFv = .text:0x8011A7D0; // type:function size:0xDC scope:global align:4 +__dt__13LifeGaugeListFv = .text:0x8011A8AC; // type:function size:0x98 scope:weak align:4 +createLifeGauge__12LifeGaugeMgrFPQ24Game8Creature = .text:0x8011A944; // type:function size:0x150 scope:global align:4 +activeLifeGauge__12LifeGaugeMgrFPQ24Game8Creaturef = .text:0x8011AA94; // type:function size:0xE4 scope:global align:4 +inactiveLifeGauge__12LifeGaugeMgrFPQ24Game8Creature = .text:0x8011AB78; // type:function size:0xA8 scope:global align:4 +update__12LifeGaugeMgrFv = .text:0x8011AC20; // type:function size:0x270 scope:global align:4 +draw__12LifeGaugeMgrFR8Graphics = .text:0x8011AE90; // type:function size:0x80 scope:global align:4 +loadResource__12LifeGaugeMgrFv = .text:0x8011AF10; // type:function size:0x98 scope:global align:4 +__sinit_lifeGaugeMgr_cpp = .text:0x8011AFA8; // type:function size:0x28 scope:local align:4 +disappear__9CarryInfoFv = .text:0x8011AFD0; // type:function size:0xC scope:global align:4 +update__9CarryInfoFRC14CarryInfoParam = .text:0x8011AFDC; // type:function size:0x264 scope:global align:4 +draw__9CarryInfoFR8GraphicsR14CarryInfoParam = .text:0x8011B240; // type:function size:0x4AC scope:global align:4 +drawNumber__9CarryInfoFR8GraphicsffiR6Color4f = .text:0x8011B6EC; // type:function size:0x328 scope:global align:4 +drawNumberPrim__9CarryInfoFR8GraphicsffiR6Color4f = .text:0x8011BA14; // type:function size:0x1B4 scope:global align:4 +init__13CarryInfoListFv = .text:0x8011BBC8; // type:function size:0x4 scope:global align:4 +update__13CarryInfoListFv = .text:0x8011BBCC; // type:function size:0x4C scope:global align:4 +draw__13CarryInfoListFR8Graphics = .text:0x8011BC18; // type:function size:0x2C scope:global align:4 +getCarryInfoParam__13PokoInfoOwnerFR14CarryInfoParam = .text:0x8011BC44; // type:function size:0x3C scope:global align:4 +isFinish__13CarryInfoListFv = .text:0x8011BC80; // type:function size:0x14 scope:weak align:4 +__ct__12CarryInfoMgrFi = .text:0x8011BC94; // type:function size:0xD4 scope:global align:4 +__dt__13PokoInfoOwnerFv = .text:0x8011BD68; // type:function size:0x6C scope:weak align:4 +__ct__13PokoInfoOwnerFv = .text:0x8011BDD4; // type:function size:0x78 scope:weak align:4 +__dt__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011BE4C; // type:function size:0x13C scope:weak align:4 +__dt__12CarryInfoMgrFv = .text:0x8011BF88; // type:function size:0x170 scope:global align:4 +appearPoko__12CarryInfoMgrFRC10Vector3i = .text:0x8011C0F8; // type:function size:0xC0 scope:global align:4 +regist__12CarryInfoMgrFP14CarryInfoOwner = .text:0x8011C1B8; // type:function size:0x20 scope:weak align:4 +appear__12CarryInfoMgrFP14CarryInfoOwner = .text:0x8011C1D8; // type:function size:0x40 scope:global align:4 +loadResource__12CarryInfoMgrFv = .text:0x8011C218; // type:function size:0x98 scope:global align:4 +draw__12CarryInfoMgrFR8Graphics = .text:0x8011C2B0; // type:function size:0x198 scope:global align:4 +update__12CarryInfoMgrFv = .text:0x8011C448; // type:function size:0x34 scope:global align:4 +updatePokoInfoOwners__12CarryInfoMgrFv = .text:0x8011C47C; // type:function size:0x108 scope:global align:4 +scratch__12CarryInfoMgrFP14CarryInfoOwner = .text:0x8011C584; // type:function size:0x20 scope:weak align:4 +__dt__11InfoMgrBaseFv = .text:0x8011C5A4; // type:function size:0x48 scope:weak align:4 +init__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C5EC; // type:function size:0x4 scope:weak align:4 +__dt__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C5F0; // type:function size:0x98 scope:weak align:4 +__dt__13CarryInfoListFv = .text:0x8011C688; // type:function size:0xA8 scope:weak align:4 +scratch__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP14CarryInfoOwner = .text:0x8011C730; // type:function size:0x44 scope:weak align:4 +update__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C774; // type:function size:0x8C scope:weak align:4 +draw__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FR8Graphics = .text:0x8011C800; // type:function size:0x68 scope:weak align:4 +search__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoListP14CarryInfoOwner = .text:0x8011C868; // type:function size:0x2C scope:weak align:4 +update__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C894; // type:function size:0x4 scope:weak align:4 +draw__46InfoListBase<14CarryInfoOwner,13CarryInfoList>FR8Graphics = .text:0x8011C898; // type:function size:0x4 scope:weak align:4 +addInactiveList__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoList = .text:0x8011C89C; // type:function size:0x64 scope:weak align:4 +regist__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP14CarryInfoOwner = .text:0x8011C900; // type:function size:0x74 scope:weak align:4 +__ct__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fi = .text:0x8011C974; // type:function size:0x2E0 scope:weak align:4 +addActiveList__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoList = .text:0x8011CC54; // type:function size:0x5C scope:weak align:4 +__sinit_carryInfoMgr_cpp = .text:0x8011CCB0; // type:function size:0x28 scope:local align:4 +@4@__dt__13PokoInfoOwnerFv = .text:0x8011CCD8; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game20GameLightTimeSettingFv = .text:0x8011CCE0; // type:function size:0x654 scope:global align:4 +__ct__Q24Game14GameFogSettingFv = .text:0x8011D334; // type:function size:0x1D4 scope:weak align:4 +read__Q24Game17GameShadowSettingFR6Stream = .text:0x8011D508; // type:function size:0x20 scope:weak align:4 +read__Q24Game14GameFogSettingFR6Stream = .text:0x8011D528; // type:function size:0x44 scope:weak align:4 +read__Q24Game20GameLightSettingBaseFR6Stream = .text:0x8011D56C; // type:function size:0x20 scope:weak align:4 +__dt__Q24Game20GameLightTimeSettingFv = .text:0x8011D58C; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game20GameLightSpotSettingFPc = .text:0x8011D5EC; // type:function size:0x738 scope:global align:4 +read__Q24Game20GameSpotLightSettingFR6Stream = .text:0x8011DD24; // type:function size:0x44 scope:weak align:4 +__ct__Q24Game19GameLightMgrSettingFv = .text:0x8011DD68; // type:function size:0x1E0 scope:global align:4 +__dt__Q24Game20GameLightSpotSettingFv = .text:0x8011DF48; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game19GameLightSunSettingFv = .text:0x8011DFA8; // type:function size:0x7C scope:weak align:4 +updateNode__Q24Game19GameLightMgrSettingFv = .text:0x8011E024; // type:function size:0x74 scope:global align:4 +read__Q24Game19GameLightMgrSettingFR6Stream = .text:0x8011E098; // type:function size:0x2F0 scope:global align:4 +readOldVersion__Q24Game19GameLightMgrSettingF4ID32R6Stream = .text:0x8011E388; // type:function size:0x1E0 scope:global align:4 +update__Q24Game18GameLightEventNodeFPQ24Game12GameLightMgr = .text:0x8011E568; // type:function size:0x1F4 scope:global align:4 +updateCommon__Q24Game18GameLightEventNodeFPQ24Game12GameLightMgrb = .text:0x8011E75C; // type:function size:0x37C scope:global align:4 +calcColor__Q24Game18GameLightEventNodeFP6Color4 = .text:0x8011EAD8; // type:function size:0x464 scope:global align:4 +__ct__Q24Game12GameLightMgrFPc = .text:0x8011EF3C; // type:function size:0x310 scope:global align:4 +__dt__Q24Game18GameLightEventNodeFv = .text:0x8011F24C; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game18GameLightEventNodeFv = .text:0x8011F2AC; // type:function size:0x9C scope:weak align:4 +__ct__10Vector3Fv = .text:0x8011F348; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game19GameLightMgrSettingFv = .text:0x8011F34C; // type:function size:0xDC scope:weak align:4 +__dt__8LightMgrFv = .text:0x8011F428; // type:function size:0x90 scope:weak align:4 +start__Q24Game12GameLightMgrFv = .text:0x8011F4B8; // type:function size:0x2C scope:global align:4 +createEventLight__Q24Game12GameLightMgrFRQ24Game17GameLightEventArg = .text:0x8011F4E4; // type:function size:0xBC scope:global align:4 +loadParm__Q24Game12GameLightMgrFR6Stream = .text:0x8011F5A0; // type:function size:0x48 scope:global align:4 +calcSetting__Q24Game12GameLightMgrFPQ24Game20GameLightTimeSettingPQ24Game20GameLightTimeSettingPQ24Game20GameLightTimeSetting = .text:0x8011F5E8; // type:function size:0x1AE8 scope:global align:4 +updateSunType__Q24Game12GameLightMgrFv = .text:0x801210D0; // type:function size:0x1F0 scope:global align:4 +updateSpotType__Q24Game12GameLightMgrFv = .text:0x801212C0; // type:function size:0xC00 scope:global align:4 +update__Q24Game12GameLightMgrFv = .text:0x80121EC0; // type:function size:0x94 scope:global align:4 +set__Q24Game12GameLightMgrFR8Graphics = .text:0x80121F54; // type:function size:0x54 scope:global align:4 +updatePosition__Q24Game12GameLightMgrFP8Viewport = .text:0x80121FA8; // type:function size:0x2C0 scope:global align:4 +__dt__Q24Game12GameLightMgrFv = .text:0x80122268; // type:function size:0x154 scope:weak align:4 +__dt__15AmbientLightObjFv = .text:0x801223BC; // type:function size:0x60 scope:weak align:4 +complement__4GameFfff = .text:0x8012241C; // type:function size:0xC scope:weak align:4 +__sinit_gameLightMgr_cpp = .text:0x80122428; // type:function size:0x28 scope:local align:4 +__ct__Q24Game16FieldVtxColorMgrFP12J3DModelData = .text:0x80122450; // type:function size:0xB0 scope:global align:4 +createFieldVtxColorInfo__Q24Game16FieldVtxColorMgrFv = .text:0x80122500; // type:function size:0x1F8 scope:global align:4 +__ct__Q24Game17FieldVtxColorInfoFv = .text:0x801226F8; // type:function size:0x1C scope:weak align:4 +initVtxColor__Q24Game16FieldVtxColorMgrFv = .text:0x80122714; // type:function size:0x1C8 scope:global align:4 +calc__Q24Game16FieldVtxColorMgrFP15J3DVertexBuffer = .text:0x801228DC; // type:function size:0x280 scope:global align:4 +setupFieldVtxColorInfoFromStrip__Q24Game16FieldVtxColorMgrFPviiii = .text:0x80122B5C; // type:function size:0x158 scope:global align:4 +setupFieldVtxColorInfo__Q24Game16FieldVtxColorMgrFP8J3DShape = .text:0x80122CB4; // type:function size:0x210 scope:global align:4 +createNewControl__Q24Game16FieldVtxColorMgrFR10Vector3ff = .text:0x80122EC4; // type:function size:0x128 scope:global align:4 +setupFieldVtxColorControl__Q24Game16FieldVtxColorMgrFPQ24Game20FieldVtxColorControlR10Vector3ff = .text:0x80122FEC; // type:function size:0x204 scope:global align:4 +__dt__Q24Game16FieldVtxColorMgrFv = .text:0x801231F0; // type:function size:0x80 scope:weak align:4 +@12@__dt__Q24Game16FieldVtxColorMgrFv = .text:0x80123270; // type:function size:0x8 scope:weak align:4 +getEnemyInfo__Q24Game13EnemyInfoFuncFii = .text:0x80123278; // type:function size:0x64 scope:global align:4 +getEnemyName__Q24Game13EnemyInfoFuncFii = .text:0x801232DC; // type:function size:0x74 scope:global align:4 +getEnemyResName__Q24Game13EnemyInfoFuncFii = .text:0x80123350; // type:function size:0xA4 scope:global align:4 +getEnemyMember__Q24Game13EnemyInfoFuncFii = .text:0x801233F4; // type:function size:0x74 scope:global align:4 +getEnemyID__Q24Game13EnemyInfoFuncFPci = .text:0x80123468; // type:function size:0x90 scope:global align:4 +setPower__Q34Game4Farm8ObstacleFf = .text:0x801234F8; // type:function size:0x30 scope:global align:4 +__ct__Q34Game4Farm4FarmFv = .text:0x80123528; // type:function size:0xBC scope:global align:4 +loadResource__Q34Game4Farm4FarmFUlPv = .text:0x801235E4; // type:function size:0x200 scope:global align:4 +update__Q34Game4Farm4FarmFv = .text:0x801237E4; // type:function size:0x4 scope:global align:4 +doAnimation__Q34Game4Farm4FarmFv = .text:0x801237E8; // type:function size:0x34 scope:global align:4 +doEntry__Q34Game4Farm4FarmFv = .text:0x8012381C; // type:function size:0x34 scope:global align:4 +doSetView__Q34Game4Farm4FarmFUl = .text:0x80123850; // type:function size:0x24 scope:global align:4 +doViewCalc__Q34Game4Farm4FarmFv = .text:0x80123874; // type:function size:0x24 scope:global align:4 +addObstacle__Q34Game4Farm4FarmFPQ24Game8Creatureff = .text:0x80123898; // type:function size:0x70 scope:global align:4 +getCreatureName__Q24Game8CreatureFv = .text:0x80123908; // type:function size:0xC scope:weak align:4 +createNewObstacle__Q34Game4Farm4FarmFPQ24Game8Creatureff = .text:0x80123914; // type:function size:0x114 scope:global align:4 +addPlant__Q34Game4Farm4FarmFPQ24Game8Creature = .text:0x80123A28; // type:function size:0x44 scope:global align:4 +createNewPlant__Q34Game4Farm4FarmFPQ24Game8Creature = .text:0x80123A6C; // type:function size:0xB0 scope:global align:4 +updateObjectRelation__Q34Game4Farm4FarmFb = .text:0x80123B1C; // type:function size:0x1DC scope:global align:4 +doDebugDraw__Q34Game4Farm4FarmFR8Graphics = .text:0x80123CF8; // type:function size:0x108 scope:global align:4 +initAllObjectNodes__Q34Game4Farm4FarmFv = .text:0x80123E00; // type:function size:0xDC scope:global align:4 +__dt__Q34Game4Farm5PlantFv = .text:0x80123EDC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Farm8ObstacleFv = .text:0x80123F3C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Farm4FarmFv = .text:0x80123F9C; // type:function size:0x7C scope:weak align:4 +__ct__Q34Game4Farm7FarmMgrFUl = .text:0x80124018; // type:function size:0xC0 scope:global align:4 +setupSound__Q34Game4Farm7FarmMgrFv = .text:0x801240D8; // type:function size:0x2C scope:global align:4 +doAnimation__Q34Game4Farm7FarmMgrFv = .text:0x80124104; // type:function size:0x124 scope:global align:4 +getJAIObject__Q24Game8CreatureFv = .text:0x80124228; // type:function size:0x8 scope:weak align:4 +doEntry__Q34Game4Farm7FarmMgrFv = .text:0x80124230; // type:function size:0x68 scope:global align:4 +doSetView__Q34Game4Farm7FarmMgrFi = .text:0x80124298; // type:function size:0x5C scope:global align:4 +doViewCalc__Q34Game4Farm7FarmMgrFv = .text:0x801242F4; // type:function size:0x4C scope:global align:4 +doSimulation__Q34Game4Farm7FarmMgrFf = .text:0x80124340; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q34Game4Farm7FarmMgrFR8Graphics = .text:0x80124344; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Farm7FarmMgrFR8Graphics = .text:0x80124348; // type:function size:0x50 scope:global align:4 +addFarmBmd__Q34Game4Farm7FarmMgrFPv = .text:0x80124398; // type:function size:0x68 scope:global align:4 +createNewFarm__Q34Game4Farm7FarmMgrFPv = .text:0x80124400; // type:function size:0x74 scope:global align:4 +addObstacle__Q34Game4Farm7FarmMgrFPQ24Game8Creatureff = .text:0x80124474; // type:function size:0x120 scope:global align:4 +addPlant__Q34Game4Farm7FarmMgrFPQ24Game8Creature = .text:0x80124594; // type:function size:0xF0 scope:global align:4 +initAllFarmObjectNodes__Q34Game4Farm7FarmMgrFv = .text:0x80124684; // type:function size:0x4C scope:global align:4 +__dt__Q34Game4Farm7FarmMgrFv = .text:0x801246D0; // type:function size:0x78 scope:weak align:4 +__sinit_farmMgr_cpp = .text:0x80124748; // type:function size:0x28 scope:local align:4 +@4@__dt__Q34Game4Farm7FarmMgrFv = .text:0x80124770; // type:function size:0x8 scope:weak align:4 +makeObjectEnemy__4GameFv = .text:0x80124778; // type:function size:0x3C scope:local align:4 +__ct__Q24Game14GenObjectEnemyFv = .text:0x801247B4; // type:function size:0xD0 scope:global align:4 +initialise__Q24Game14GenObjectEnemyFv = .text:0x80124884; // type:function size:0x8C scope:global align:4 +ramSaveParameters__Q24Game14GenObjectEnemyFR6Stream = .text:0x80124910; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game14GenObjectEnemyFR6Stream = .text:0x80124914; // type:function size:0x4 scope:global align:4 +generate__Q24Game14GenObjectEnemyFPQ24Game9Generator = .text:0x80124918; // type:function size:0x6B4 scope:global align:4 +birth__Q24Game14GenObjectEnemyFPQ24Game6GenArg = .text:0x80124FCC; // type:function size:0xE0 scope:global align:4 +doWrite__Q24Game14GenObjectEnemyFR6Stream = .text:0x801250AC; // type:function size:0x218 scope:global align:4 +doWrite__Q24Game18EnemyGeneratorBaseFR6Stream = .text:0x801252C4; // type:function size:0x4 scope:weak align:4 +getLatestVersion__Q24Game18EnemyGeneratorBaseFv = .text:0x801252C8; // type:function size:0xC scope:weak align:4 +doRead__Q24Game14GenObjectEnemyFR6Stream = .text:0x801252D4; // type:function size:0x1E4 scope:global align:4 +doRead__Q24Game18EnemyGeneratorBaseFR6Stream = .text:0x801254B8; // type:function size:0x4 scope:weak align:4 +doReadOldVersion__Q24Game14GenObjectEnemyFR6Stream = .text:0x801254BC; // type:function size:0x470 scope:global align:4 +createEnemyGenerator__Q24Game14GenObjectEnemyFv = .text:0x8012592C; // type:function size:0xE38 scope:global align:4 +__ct__Q24Game18EnemyGeneratorBaseFPc = .text:0x80126764; // type:function size:0x6C scope:weak align:4 +getShape__Q24Game14GenObjectEnemyFv = .text:0x801267D0; // type:function size:0x2C scope:global align:4 +updateUseList__Q24Game14GenObjectEnemyFPQ24Game9Generatori = .text:0x801267FC; // type:function size:0x40 scope:global align:4 +render__Q24Game14GenObjectEnemyFR8GraphicsPQ24Game9Generator = .text:0x8012683C; // type:function size:0x31C scope:global align:4 +draw__Q24Game18EnemyGeneratorBaseFR8GraphicsPQ24Game9Generator = .text:0x80126B58; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game18EnemyGeneratorBaseFv = .text:0x80126B5C; // type:function size:0x60 scope:weak align:4 +getInitialParam__Q24Game18EnemyGeneratorBaseFv = .text:0x80126BBC; // type:function size:0x8 scope:weak align:4 +getName__Q24Game6GenArgFv = .text:0x80126BC4; // type:function size:0x8 scope:weak align:4 +update__Q24Game9GenObjectFPQ24Game9Generator = .text:0x80126BCC; // type:function size:0x4 scope:weak align:4 +generatorMakeMatrix__Q24Game9GenObjectFR7MatrixfR10Vector3 = .text:0x80126BD0; // type:function size:0x28 scope:weak align:4 +getDebugInfo__Q24Game9GenObjectFPc = .text:0x80126BF8; // type:function size:0x4 scope:weak align:4 +doEvent__Q24Game7GenBaseFUl = .text:0x80126BFC; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game7TimeMgrFv = .text:0x80126C00; // type:function size:0x90 scope:global align:4 +__ct__Q24Game12TimeMgrParmsFv = .text:0x80126C90; // type:function size:0x34 scope:weak align:4 +__ct__Q34Game12TimeMgrParms5ParmsFv = .text:0x80126CC4; // type:function size:0x32C scope:weak align:4 +init__Q24Game7TimeMgrFv = .text:0x80126FF0; // type:function size:0xB0 scope:global align:4 +setTime__Q24Game7TimeMgrFf = .text:0x801270A0; // type:function size:0x3C scope:global align:4 +setStartTime__Q24Game7TimeMgrFv = .text:0x801270DC; // type:function size:0x40 scope:global align:4 +setEndTime__Q24Game7TimeMgrFv = .text:0x8012711C; // type:function size:0x40 scope:global align:4 +updateSlot__Q24Game7TimeMgrFv = .text:0x8012715C; // type:function size:0x168 scope:global align:4 +getSunGaugeRatio__Q24Game7TimeMgrFv = .text:0x801272C4; // type:function size:0x60 scope:global align:4 +update__Q24Game7TimeMgrFv = .text:0x80127324; // type:function size:0x74 scope:global align:4 +isDayOver__Q24Game7TimeMgrFv = .text:0x80127398; // type:function size:0x18 scope:global align:4 +isDayTime__Q24Game7TimeMgrFv = .text:0x801273B0; // type:function size:0x30 scope:global align:4 +getRealDayTime__Q24Game7TimeMgrFv = .text:0x801273E0; // type:function size:0x20 scope:global align:4 +loadSettingFile__Q24Game7TimeMgrFPc = .text:0x80127400; // type:function size:0x150 scope:global align:4 +__dt__Q24Game7TimeMgrFv = .text:0x80127550; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game8Pelplant9GeneratorFv = .text:0x801275B0; // type:function size:0x98 scope:global align:4 +doRead__Q34Game8Pelplant9GeneratorFR6Stream = .text:0x80127648; // type:function size:0x8C scope:global align:4 +getLatestVersion__Q34Game8Pelplant9GeneratorFv = .text:0x801276D4; // type:function size:0xC scope:weak align:4 +doReadOldVersion__Q34Game8Pelplant9GeneratorFR6Stream = .text:0x801276E0; // type:function size:0x64 scope:global align:4 +doWrite__Q34Game8Pelplant9GeneratorFR6Stream = .text:0x80127744; // type:function size:0xC8 scope:global align:4 +__dt__Q34Game8Pelplant9GeneratorFv = .text:0x8012780C; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game8Pelplant9GeneratorFv = .text:0x8012787C; // type:function size:0x8 scope:weak align:4 +actEnemy__Q24Game18InteractFarmKareroFPQ24Game9EnemyBase = .text:0x80127884; // type:function size:0x5C scope:global align:4 +actEnemy__Q24Game17InteractFarmHaeroFPQ24Game9EnemyBase = .text:0x801278E0; // type:function size:0x58 scope:global align:4 +actEnemy__Q24Game12InteractDopeFPQ24Game9EnemyBase = .text:0x80127938; // type:function size:0x3C scope:global align:4 +__ct__Q24Game17EnemyAnimatorBaseFv = .text:0x80127974; // type:function size:0x44 scope:global align:4 +animate__Q24Game17EnemyAnimatorBaseFf = .text:0x801279B8; // type:function size:0x124 scope:global align:4 +animate__Q24Game17EnemyAnimatorBaseFif = .text:0x80127ADC; // type:function size:0x124 scope:global align:4 +__ct__Q34Game10EnemyStone3MgrFv = .text:0x80127C00; // type:function size:0x88 scope:global align:4 +loadResource__Q34Game10EnemyStone3MgrFv = .text:0x80127C88; // type:function size:0x174 scope:global align:4 +__defctor__Q34Game10EnemyStone8DrawInfoFv = .text:0x80127DFC; // type:function size:0x24 scope:weak align:4 +regist__Q34Game10EnemyStone3MgrFPQ34Game10EnemyStone3Obj = .text:0x80127E20; // type:function size:0xF8 scope:global align:4 +release__Q34Game10EnemyStone3MgrFPQ34Game10EnemyStone3Obj = .text:0x80127F18; // type:function size:0x8C scope:global align:4 +draw__Q34Game10EnemyStone3MgrFP8Viewport = .text:0x80127FA4; // type:function size:0x164 scope:global align:4 +setup__Q34Game10EnemyStone4InfoFR6Stream = .text:0x80128108; // type:function size:0x164 scope:global align:4 +__ct__Q34Game10EnemyStone7ObjInfoFv = .text:0x8012826C; // type:function size:0x14 scope:weak align:4 +init__Q34Game10EnemyStone12StateMachineFPQ34Game10EnemyStone8DrawInfo = .text:0x80128280; // type:function size:0x2D4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone12StateMachineFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80128554; // type:function size:0x38 scope:global align:4 +makeMatrix__Q34Game10EnemyStone8FSMStateFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x8012858C; // type:function size:0x24 scope:global align:4 +init__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x801285B0; // type:function size:0x14 scope:global align:4 +exec__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfo = .text:0x801285C4; // type:function size:0x1BC scope:global align:4 +transit__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg = .text:0x80128780; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfo = .text:0x801287B0; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x801287B4; // type:function size:0x140 scope:global align:4 +makeMatrix__Q34Game10EnemyStone21FSMStateExpansionFullFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x801288F4; // type:function size:0xA0 scope:global align:4 +init__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80128994; // type:function size:0x14 scope:global align:4 +exec__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfo = .text:0x801289A8; // type:function size:0x5C scope:global align:4 +cleanup__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfo = .text:0x80128A04; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80128A08; // type:function size:0xDC scope:global align:4 +init__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80128AE4; // type:function size:0x24 scope:global align:4 +exec__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfo = .text:0x80128B08; // type:function size:0x278 scope:global align:4 +cleanup__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfo = .text:0x80128D80; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80128D84; // type:function size:0x2E4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80129068; // type:function size:0x11C scope:global align:4 +init__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80129184; // type:function size:0xC scope:global align:4 +exec__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfo = .text:0x80129190; // type:function size:0x18 scope:global align:4 +init__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x801291A8; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfo = .text:0x801292EC; // type:function size:0x4 scope:global align:4 +exec__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfo = .text:0x801292F0; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x801292F4; // type:function size:0x24 scope:global align:4 +init__Q34Game10EnemyStone12FSMStateDeadFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80129318; // type:function size:0x144 scope:global align:4 +makeMatrix__Q34Game10EnemyStone12FSMStateDeadFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x8012945C; // type:function size:0x24 scope:global align:4 +__ct__Q34Game10EnemyStone8DrawInfoFb = .text:0x80129480; // type:function size:0xBC scope:global align:4 +reset__Q34Game10EnemyStone8DrawInfoFv = .text:0x8012953C; // type:function size:0x64 scope:global align:4 +start__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg = .text:0x801295A0; // type:function size:0x34 scope:weak align:4 +update__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x801295D4; // type:function size:0x44 scope:global align:4 +makeMatrix__Q34Game10EnemyStone8DrawInfoFP7Matrixfb = .text:0x80129618; // type:function size:0xA8 scope:global align:4 +getStateID__Q34Game10EnemyStone8DrawInfoFv = .text:0x801296C0; // type:function size:0xC scope:global align:4 +getPosAndScale__Q34Game10EnemyStone8DrawInfoFP10Vector3Pf = .text:0x801296CC; // type:function size:0x114 scope:global align:4 +appear__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBasef = .text:0x801297E0; // type:function size:0x4C scope:global align:4 +fit__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x8012982C; // type:function size:0x4C scope:global align:4 +shake__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBasef = .text:0x80129878; // type:function size:0x4C scope:global align:4 +disappear__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x801298C4; // type:function size:0x4C scope:global align:4 +dead__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x80129910; // type:function size:0x4C scope:global align:4 +init__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x8012995C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x80129960; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x80129964; // type:function size:0x4 scope:weak align:4 +resume__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x80129968; // type:function size:0x4 scope:weak align:4 +restart__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x8012996C; // type:function size:0x4 scope:weak align:4 +init__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfo = .text:0x80129970; // type:function size:0x4 scope:weak align:4 +exec__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfo = .text:0x80129974; // type:function size:0x38 scope:weak align:4 +create__Q24Game42StateMachineFi = .text:0x801299AC; // type:function size:0x64 scope:weak align:4 +transit__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg = .text:0x80129A10; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game42StateMachineFPQ24Game38FSMState = .text:0x80129AAC; // type:function size:0x84 scope:weak align:4 +__ct__Q34Game10EnemyStone3ObjFPQ24Game9EnemyBasePQ34Game10EnemyStone4Info = .text:0x80129B30; // type:function size:0xA8 scope:global align:4 +start__Q34Game10EnemyStone3ObjFv = .text:0x80129BD8; // type:function size:0x104 scope:global align:4 +shake__Q34Game10EnemyStone3ObjFv = .text:0x80129CDC; // type:function size:0xE0 scope:global align:4 +update__Q34Game10EnemyStone3ObjFv = .text:0x80129DBC; // type:function size:0x2A8 scope:global align:4 +checkDrawInfoState__Q34Game10EnemyStone3ObjFi = .text:0x8012A064; // type:function size:0x88 scope:global align:4 +dead__Q34Game10EnemyStone3ObjFv = .text:0x8012A0EC; // type:function size:0xB4 scope:global align:4 +__dt__Q34Game10EnemyStone3ObjFv = .text:0x8012A1A0; // type:function size:0x7C scope:weak align:4 +__sinit_enemyStoneObj_cpp = .text:0x8012A21C; // type:function size:0x28 scope:local align:4 +loadSettingFile__Q24Game14EnemyParmsBaseFP10JKRArchivePc = .text:0x8012A244; // type:function size:0x94 scope:global align:4 +setDebugParm__Q24Game14EnemyParmsBaseFUl = .text:0x8012A2D8; // type:function size:0x24 scope:global align:4 +resetDebugParm__Q24Game14EnemyParmsBaseFUl = .text:0x8012A2FC; // type:function size:0x24 scope:global align:4 +__ct__Q34Game15WalkSmokeEffect3ObjFv = .text:0x8012A320; // type:function size:0x34 scope:global align:4 +__ct__Q34Game15WalkSmokeEffect3MgrFv = .text:0x8012A354; // type:function size:0x10 scope:global align:4 +alloc__Q34Game15WalkSmokeEffect3MgrFi = .text:0x8012A364; // type:function size:0xB4 scope:global align:4 +update__Q34Game15WalkSmokeEffect3MgrFPQ24Game9EnemyBase = .text:0x8012A418; // type:function size:0x1C8 scope:global align:4 +setup__Q34Game15WalkSmokeEffect3MgrFiPQ28SysShape5ModelPcf = .text:0x8012A5E0; // type:function size:0x90 scope:global align:4 +__ct__Q34Game10ChappyBase3MgrFiUc = .text:0x8012A670; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game10ChappyBase3MgrFv = .text:0x8012A6C0; // type:function size:0xC0 scope:global align:4 +loadAnimData__Q34Game10ChappyBase3MgrFv = .text:0x8012A780; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game10ChappyBase3MgrFv = .text:0x8012A820; // type:function size:0x11C scope:global align:4 +getEnemyTypeID__Q34Game10ChappyBase3MgrFv = .text:0x8012A93C; // type:function size:0x8 scope:weak align:4 +doAlloc__Q24Game12EnemyMgrBaseFv = .text:0x8012A944; // type:function size:0x4 scope:weak align:4 +@4@__dt__Q34Game10ChappyBase3MgrFv = .text:0x8012A948; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10ChappyBase3ObjFv = .text:0x8012A950; // type:function size:0x15C scope:global align:4 +birth__Q34Game10ChappyBase3ObjFR10Vector3f = .text:0x8012AAAC; // type:function size:0x44 scope:global align:4 +setInitialSetting__Q34Game10ChappyBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8012AAF0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10ChappyBase3ObjFPQ24Game15CreatureInitArg = .text:0x8012AAF4; // type:function size:0x80 scope:global align:4 +doUpdate__Q34Game10ChappyBase3ObjFv = .text:0x8012AB74; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game10ChappyBase3ObjFR8Graphics = .text:0x8012ABA8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10ChappyBase3ObjFR8Graphics = .text:0x8012ABAC; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game10ChappyBase3ObjFRQ24Game11ShadowParam = .text:0x8012ABCC; // type:function size:0xC8 scope:global align:4 +damageCallBack__Q34Game10ChappyBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8012AC94; // type:function size:0x40 scope:global align:4 +collisionCallback__Q34Game10ChappyBase3ObjFRQ24Game9CollEvent = .text:0x8012ACD4; // type:function size:0x150 scope:global align:4 +doStartStoneState__Q34Game10ChappyBase3ObjFv = .text:0x8012AE24; // type:function size:0x50 scope:global align:4 +doFinishStoneState__Q34Game10ChappyBase3ObjFv = .text:0x8012AE74; // type:function size:0x4 scope:global align:4 +getOffsetForMapCollision__Q34Game10ChappyBase3ObjFv = .text:0x8012AE78; // type:function size:0x64 scope:global align:4 +startCarcassMotion__Q34Game10ChappyBase3ObjFv = .text:0x8012AEDC; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game10ChappyBase3ObjFv = .text:0x8012AF04; // type:function size:0xDC scope:global align:4 +initWalkSmokeEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012AFE0; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10ChappyBase3ObjFv = .text:0x8012B044; // type:function size:0x8 scope:global align:4 +isWakeup__Q34Game10ChappyBase3ObjFv = .text:0x8012B04C; // type:function size:0x200 scope:global align:4 +setCollEvent__Q34Game10ChappyBase3ObjFRQ24Game9CollEvent = .text:0x8012B24C; // type:function size:0xB0 scope:global align:4 +flickStatePikmin__Q34Game10ChappyBase3ObjFv = .text:0x8012B2FC; // type:function size:0xC8 scope:global align:4 +flickAttackBomb__Q34Game10ChappyBase3ObjFv = .text:0x8012B3C4; // type:function size:0x1A4 scope:global align:4 +flickAttackFail__Q34Game10ChappyBase3ObjFv = .text:0x8012B568; // type:function size:0x60 scope:global align:4 +eatAttackPikmin__Q34Game10ChappyBase3ObjFv = .text:0x8012B5C8; // type:function size:0x24 scope:global align:4 +createEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B5EC; // type:function size:0xB0 scope:global align:4 +__dt__Q23efx9TChaseMtxFv = .text:0x8012B69C; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B720; // type:function size:0x50 scope:global align:4 +startSleepEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B770; // type:function size:0x34 scope:global align:4 +finishSleepEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B7A4; // type:function size:0x30 scope:global align:4 +__dt__Q23efx9THanachoNFv = .text:0x8012B7D4; // type:function size:0x9C scope:weak align:4 +doExecuteAfter__Q23efx5TSyncFP14JPABaseEmitter = .text:0x8012B870; // type:function size:0x4 scope:weak align:4 +startDemoDrawOff__Q23efx5TSyncFv = .text:0x8012B874; // type:function size:0x10 scope:weak align:4 +endDemoDrawOn__Q23efx5TSyncFv = .text:0x8012B884; // type:function size:0x10 scope:weak align:4 +@4@executeAfter__Q23efx5TSyncFP14JPABaseEmitter = .text:0x8012B894; // type:function size:0x8 scope:weak align:4 +@4@execute__Q23efx5TSyncFP14JPABaseEmitter = .text:0x8012B89C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9THanachoNFv = .text:0x8012B8A4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10BlueChappy3MgrFiUc = .text:0x8012B8AC; // type:function size:0x50 scope:global align:4 +loadTexData__Q34Game10BlueChappy3MgrFv = .text:0x8012B8FC; // type:function size:0x6C scope:global align:4 +doAlloc__Q34Game10BlueChappy3MgrFv = .text:0x8012B968; // type:function size:0x48 scope:global align:4 +__dt__Q34Game10BlueChappy3MgrFv = .text:0x8012B9B0; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game10BlueChappy3MgrFv = .text:0x8012BA78; // type:function size:0x8 scope:weak align:4 +getChangeTexture0__Q34Game10BlueChappy3MgrFv = .text:0x8012BA80; // type:function size:0x8 scope:weak align:4 +getChangeTexture1__Q34Game10BlueChappy3MgrFv = .text:0x8012BA88; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game10BlueChappy3MgrFi = .text:0x8012BA90; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game10BlueChappy3ObjFv = .text:0x8012BAF0; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game10BlueChappy3MgrFi = .text:0x8012BBDC; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game10BlueChappy3MgrFv = .text:0x8012BBEC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10BlueChappy3ObjFv = .text:0x8012BBF4; // type:function size:0x144 scope:global align:4 +changeMaterial__Q34Game10BlueChappy3ObjFv = .text:0x8012BD38; // type:function size:0x2B0 scope:global align:4 +getEnemyTypeID__Q34Game10BlueChappy3ObjFv = .text:0x8012BFE8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12YellowChappy3MgrFiUc = .text:0x8012BFF0; // type:function size:0x58 scope:global align:4 +loadTexData__Q34Game12YellowChappy3MgrFv = .text:0x8012C048; // type:function size:0x6C scope:global align:4 +doAlloc__Q34Game12YellowChappy3MgrFv = .text:0x8012C0B4; // type:function size:0x48 scope:global align:4 +loadAnimData__Q34Game12YellowChappy3MgrFv = .text:0x8012C0FC; // type:function size:0x34 scope:global align:4 +__dt__Q34Game12YellowChappy3MgrFv = .text:0x8012C130; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game12YellowChappy3MgrFv = .text:0x8012C1F8; // type:function size:0x8 scope:weak align:4 +getChangeTexture0__Q34Game12YellowChappy3MgrFv = .text:0x8012C200; // type:function size:0x8 scope:weak align:4 +getChangeTexture1__Q34Game12YellowChappy3MgrFv = .text:0x8012C208; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game12YellowChappy3MgrFi = .text:0x8012C210; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game12YellowChappy3ObjFv = .text:0x8012C270; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game12YellowChappy3MgrFi = .text:0x8012C360; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game12YellowChappy3MgrFv = .text:0x8012C370; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12YellowChappy3ObjFv = .text:0x8012C378; // type:function size:0x154 scope:global align:4 +onInit__Q34Game12YellowChappy3ObjFPQ24Game15CreatureInitArg = .text:0x8012C4CC; // type:function size:0x48 scope:global align:4 +doUpdateCommon__Q34Game12YellowChappy3ObjFv = .text:0x8012C514; // type:function size:0x1B0 scope:global align:4 +onKill__Q34Game12YellowChappy3ObjFPQ24Game15CreatureKillArg = .text:0x8012C6C4; // type:function size:0x40 scope:global align:4 +createEffect__Q34Game12YellowChappy3ObjFv = .text:0x8012C704; // type:function size:0x68 scope:global align:4 +setupEffect__Q34Game12YellowChappy3ObjFv = .text:0x8012C76C; // type:function size:0xB4 scope:global align:4 +doStartMovie__Q34Game12YellowChappy3ObjFv = .text:0x8012C820; // type:function size:0x28 scope:global align:4 +doEndMovie__Q34Game12YellowChappy3ObjFv = .text:0x8012C848; // type:function size:0x4 scope:global align:4 +changeMaterial__Q34Game12YellowChappy3ObjFv = .text:0x8012C84C; // type:function size:0x2B0 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game12YellowChappy3ObjFv = .text:0x8012CAFC; // type:function size:0x4C scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game12YellowChappy3ObjFv = .text:0x8012CB48; // type:function size:0x4C scope:global align:4 +forceKill__Q23efx8TSimple1Fv = .text:0x8012CB94; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple1Fv = .text:0x8012CB98; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game12YellowChappy3ObjFv = .text:0x8012CB9C; // type:function size:0x8 scope:weak align:4 +@752@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8012CBA4; // type:function size:0x14 scope:weak align:4 +@752@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8012CBB8; // type:function size:0x14 scope:weak align:4 +@752@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8012CBCC; // type:function size:0x14 scope:weak align:4 +@752@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8012CBE0; // type:function size:0x14 scope:weak align:4 +@752@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8012CBF4; // type:function size:0x14 scope:weak align:4 +@752@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8012CC08; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game12BlueKochappy3MgrFiUc = .text:0x8012CC1C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12BlueKochappy3MgrFv = .text:0x8012CC6C; // type:function size:0x48 scope:global align:4 +loadTexData__Q34Game12BlueKochappy3MgrFv = .text:0x8012CCB4; // type:function size:0x48 scope:global align:4 +__dt__Q34Game12BlueKochappy3MgrFv = .text:0x8012CCFC; // type:function size:0xC8 scope:weak align:4 +getChangeTexture__Q34Game12BlueKochappy3MgrFv = .text:0x8012CDC4; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game12BlueKochappy3MgrFv = .text:0x8012CDCC; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game12BlueKochappy3MgrFi = .text:0x8012CDD4; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game12BlueKochappy3ObjFv = .text:0x8012CE34; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game12BlueKochappy3MgrFi = .text:0x8012CF20; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game12BlueKochappy3MgrFv = .text:0x8012CF30; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12BlueKochappy3ObjFv = .text:0x8012CF38; // type:function size:0x130 scope:global align:4 +changeMaterial__Q34Game12BlueKochappy3ObjFv = .text:0x8012D068; // type:function size:0x1A4 scope:global align:4 +getEnemyTypeID__Q34Game12BlueKochappy3ObjFv = .text:0x8012D20C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14YellowKochappy3ObjFv = .text:0x8012D214; // type:function size:0x130 scope:global align:4 +changeMaterial__Q34Game14YellowKochappy3ObjFv = .text:0x8012D344; // type:function size:0x1A4 scope:global align:4 +getChangeTexture__Q34Game14YellowKochappy3MgrFv = .text:0x8012D4E8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game14YellowKochappy3ObjFv = .text:0x8012D4F0; // type:function size:0xEC scope:weak align:4 +getEnemyTypeID__Q34Game14YellowKochappy3ObjFv = .text:0x8012D5DC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14YellowKochappy3MgrFiUc = .text:0x8012D5E4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game14YellowKochappy3MgrFv = .text:0x8012D634; // type:function size:0x48 scope:global align:4 +loadTexData__Q34Game14YellowKochappy3MgrFv = .text:0x8012D67C; // type:function size:0x48 scope:global align:4 +__dt__Q34Game14YellowKochappy3MgrFv = .text:0x8012D6C4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game14YellowKochappy3MgrFv = .text:0x8012D78C; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game14YellowKochappy3MgrFi = .text:0x8012D794; // type:function size:0x60 scope:weak align:4 +getEnemy__Q34Game14YellowKochappy3MgrFi = .text:0x8012D7F4; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game14YellowKochappy3MgrFv = .text:0x8012D804; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KochappyBase3MgrFiUc = .text:0x8012D80C; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game12KochappyBase3MgrFv = .text:0x8012D85C; // type:function size:0xC0 scope:global align:4 +loadAnimData__Q34Game12KochappyBase3MgrFv = .text:0x8012D91C; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game12KochappyBase3MgrFv = .text:0x8012D9BC; // type:function size:0x11C scope:global align:4 +getEnemyTypeID__Q34Game12KochappyBase3MgrFv = .text:0x8012DAD8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12KochappyBase3MgrFv = .text:0x8012DAE0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KochappyBase3ObjFv = .text:0x8012DAE8; // type:function size:0x148 scope:global align:4 +birth__Q34Game12KochappyBase3ObjFR10Vector3f = .text:0x8012DC30; // type:function size:0x68 scope:global align:4 +setInitialSetting__Q34Game12KochappyBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8012DC98; // type:function size:0x4 scope:global align:4 +onInit__Q34Game12KochappyBase3ObjFPQ24Game15CreatureInitArg = .text:0x8012DC9C; // type:function size:0x68 scope:global align:4 +doUpdate__Q34Game12KochappyBase3ObjFv = .text:0x8012DD04; // type:function size:0x88 scope:global align:4 +doDirectDraw__Q34Game12KochappyBase3ObjFR8Graphics = .text:0x8012DD8C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game12KochappyBase3ObjFR8Graphics = .text:0x8012DD90; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game12KochappyBase3ObjFRQ24Game11ShadowParam = .text:0x8012DDB0; // type:function size:0x88 scope:global align:4 +bounceCallback__Q34Game12KochappyBase3ObjFPQ23Sys8Triangle = .text:0x8012DE38; // type:function size:0x40 scope:global align:4 +pressCallBack__Q34Game12KochappyBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8012DE78; // type:function size:0xA0 scope:global align:4 +doStartStoneState__Q34Game12KochappyBase3ObjFv = .text:0x8012DF18; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game12KochappyBase3ObjFv = .text:0x8012DF38; // type:function size:0x4 scope:global align:4 +getOffsetForMapCollision__Q34Game12KochappyBase3ObjFv = .text:0x8012DF3C; // type:function size:0x64 scope:global align:4 +startCarcassMotion__Q34Game12KochappyBase3ObjFv = .text:0x8012DFA0; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game12KochappyBase3ObjFv = .text:0x8012DFC8; // type:function size:0x8C scope:global align:4 +initWalkSmokeEffect__Q34Game12KochappyBase3ObjFv = .text:0x8012E054; // type:function size:0x8C scope:global align:4 +getWalkSmokeEffectMgr__Q34Game12KochappyBase3ObjFv = .text:0x8012E0E0; // type:function size:0x8 scope:global align:4 +__ct__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8012E0E8; // type:function size:0x44 scope:global align:4 +setAnimMgr__Q24Game22EnemyBlendAnimatorBaseFPQ28SysShape7AnimMgr = .text:0x8012E12C; // type:function size:0x24 scope:global align:4 +getAnimator__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8012E150; // type:function size:0x8 scope:global align:4 +getAnimator__Q24Game22EnemyBlendAnimatorBaseFi = .text:0x8012E158; // type:function size:0x14 scope:global align:4 +startBlend__Q24Game22EnemyBlendAnimatorBaseFiiPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener = .text:0x8012E16C; // type:function size:0x9C scope:global align:4 +endBlend__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8012E208; // type:function size:0x24 scope:global align:4 +animate__Q24Game22EnemyBlendAnimatorBaseFPQ28SysShape13BlendFunctionfff = .text:0x8012E22C; // type:function size:0x48 scope:global align:4 +animate__Q24Game22EnemyBlendAnimatorBaseFf = .text:0x8012E274; // type:function size:0xB0 scope:global align:4 +getValue__Q28SysShape14BlendLinearFunFf = .text:0x8012E324; // type:function size:0x4 scope:weak align:4 +__sinit_enemyBlendAnimatorBase_cpp = .text:0x8012E328; // type:function size:0x1C scope:local align:4 +getValue__Q28SysShape18BlendQuadraticFuncFf = .text:0x8012E344; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game15EnemyPelletInfoFv = .text:0x8012E34C; // type:function size:0x34 scope:global align:4 +write__Q24Game15EnemyPelletInfoFR6Stream = .text:0x8012E380; // type:function size:0x120 scope:global align:4 +read__Q24Game15EnemyPelletInfoFR6Stream = .text:0x8012E4A0; // type:function size:0x70 scope:global align:4 +__ct__Q24Game20EnemyEffectNodeHamonFv = .text:0x8012E510; // type:function size:0x134 scope:global align:4 +__dt__Q23efx15TEnemyHamonMIndFv = .text:0x8012E644; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TEnemyHamonMFv = .text:0x8012E6E0; // type:function size:0x9C scope:weak align:4 +__dt__Q24Game19EnemyEffectNodeBaseFv = .text:0x8012E77C; // type:function size:0x60 scope:weak align:4 +create__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012E7DC; // type:function size:0x11C scope:global align:4 +fade__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012E8F8; // type:function size:0x2C scope:global align:4 +fade__Q23efx11TEnemyHamonFv = .text:0x8012E924; // type:function size:0x44 scope:weak align:4 +fade__Q23efx19TEnemyHamonChasePosFv = .text:0x8012E968; // type:function size:0x50 scope:weak align:4 +forceKill__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012E9B8; // type:function size:0x2C scope:global align:4 +forceKill__Q23efx11TEnemyHamonFv = .text:0x8012E9E4; // type:function size:0x44 scope:weak align:4 +forceKill__Q23efx19TEnemyHamonChasePosFv = .text:0x8012EA28; // type:function size:0x50 scope:weak align:4 +update__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012EA78; // type:function size:0x4C scope:global align:4 +__dt__Q24Game20EnemyEffectNodeHamonFv = .text:0x8012EAC4; // type:function size:0x160 scope:weak align:4 +__ct__Q24Game13EnemyBirthArgFv = .text:0x8012EC24; // type:function size:0x70 scope:global align:4 +__ct__Q24Game12EnemyMgrBaseFiUc = .text:0x8012EC94; // type:function size:0xC4 scope:global align:4 +startMovie__Q24Game12EnemyMgrBaseFv = .text:0x8012ED58; // type:function size:0x70 scope:global align:4 +endMovie__Q24Game12EnemyMgrBaseFv = .text:0x8012EDC8; // type:function size:0x70 scope:global align:4 +alloc__Q24Game12EnemyMgrBaseFv = .text:0x8012EE38; // type:function size:0xA0 scope:global align:4 +doAnimation__Q24Game12EnemyMgrBaseFv = .text:0x8012EED8; // type:function size:0x110 scope:global align:4 +doEntry__Q24Game12EnemyMgrBaseFv = .text:0x8012EFE8; // type:function size:0xB4 scope:global align:4 +doSetView__Q24Game12EnemyMgrBaseFi = .text:0x8012F09C; // type:function size:0x8C scope:global align:4 +doViewCalc__Q24Game12EnemyMgrBaseFv = .text:0x8012F128; // type:function size:0x7C scope:global align:4 +doSimulation__Q24Game12EnemyMgrBaseFf = .text:0x8012F1A4; // type:function size:0xEC scope:global align:4 +doDirectDraw__Q24Game12EnemyMgrBaseFR8Graphics = .text:0x8012F290; // type:function size:0xC4 scope:global align:4 +getNext__Q24Game12EnemyMgrBaseFPv = .text:0x8012F354; // type:function size:0x74 scope:global align:4 +birth__Q24Game12EnemyMgrBaseFRQ24Game13EnemyBirthArg = .text:0x8012F3C8; // type:function size:0x184 scope:global align:4 +getEnemyTypeID__Q24Game12EnemyMgrBaseFv = .text:0x8012F54C; // type:function size:0x8 scope:weak align:4 +kill__Q24Game12EnemyMgrBaseFPQ24Game9EnemyBase = .text:0x8012F554; // type:function size:0x164 scope:global align:4 +killAll__Q24Game12EnemyMgrBaseFPQ24Game15CreatureKillArg = .text:0x8012F6B8; // type:function size:0xA8 scope:global align:4 +isValidEnemyTypeID__Q24Game12EnemyMgrBaseFv = .text:0x8012F760; // type:function size:0x3C scope:global align:4 +setupSoundViewerAndBas__Q24Game12EnemyMgrBaseFv = .text:0x8012F79C; // type:function size:0x100 scope:global align:4 +init__Q24Game12EnemyMgrBaseFPQ24Game14EnemyParmsBase = .text:0x8012F89C; // type:function size:0x8C scope:global align:4 +setDebugParm__Q24Game12EnemyMgrBaseFUl = .text:0x8012F928; // type:function size:0x24 scope:global align:4 +resetDebugParm__Q24Game12EnemyMgrBaseFUl = .text:0x8012F94C; // type:function size:0x24 scope:global align:4 +createModel__Q24Game12EnemyMgrBaseFv = .text:0x8012F970; // type:function size:0xAC scope:global align:4 +initParms__Q24Game12EnemyMgrBaseFv = .text:0x8012FA1C; // type:function size:0xC0 scope:global align:4 +loadStoneSetting__Q24Game12EnemyMgrBaseFPCc = .text:0x8012FADC; // type:function size:0x78 scope:global align:4 +setupParms__Q24Game12EnemyMgrBaseFPCc = .text:0x8012FB54; // type:function size:0x90 scope:global align:4 +loadResource__Q24Game12EnemyMgrBaseFv = .text:0x8012FBE4; // type:function size:0x88 scope:global align:4 +initObjects__Q24Game12EnemyMgrBaseFv = .text:0x8012FC6C; // type:function size:0x2FC scope:global align:4 +initStoneSetting__Q24Game12EnemyMgrBaseFv = .text:0x8012FF68; // type:function size:0xC0 scope:global align:4 +loadModelData__Q24Game12EnemyMgrBaseFP10JKRArchive = .text:0x80130028; // type:function size:0xE4 scope:global align:4 +loadModelData__Q24Game12EnemyMgrBaseFv = .text:0x8013010C; // type:function size:0xC0 scope:global align:4 +loadAnimData__Q24Game12EnemyMgrBaseFv = .text:0x801301CC; // type:function size:0x154 scope:global align:4 +loadTexData__Q24Game12EnemyMgrBaseFv = .text:0x80130320; // type:function size:0x74 scope:global align:4 +doLoadBmd__Q24Game12EnemyMgrBaseFPv = .text:0x80130394; // type:function size:0x2C scope:global align:4 +doLoadBdl__Q24Game12EnemyMgrBaseFPv = .text:0x801303C0; // type:function size:0x28 scope:global align:4 +initGenerator__Q24Game12EnemyMgrBaseFv = .text:0x801303E8; // type:function size:0x90 scope:global align:4 +doAnimationAlwaysMovieActor__Q24Game12EnemyMgrBaseFv = .text:0x80130478; // type:function size:0xE8 scope:global align:4 +doEntryAlwaysMovieActor__Q24Game12EnemyMgrBaseFv = .text:0x80130560; // type:function size:0x7C scope:global align:4 +doSimulationAlwaysMovieActor__Q24Game12EnemyMgrBaseFf = .text:0x801305DC; // type:function size:0x9C scope:global align:4 +doDirectDrawAlwaysMovieActor__Q24Game12EnemyMgrBaseFR8Graphics = .text:0x80130678; // type:function size:0x8C scope:global align:4 +@4@__dt__Q24Game12EnemyMgrBaseFv = .text:0x80130704; // type:function size:0x8 scope:weak align:4 +transit__Q24Game13EnemyFSMStateFPQ24Game9EnemyBaseiPQ24Game8StateArg = .text:0x8013070C; // type:function size:0x30 scope:global align:4 +doDirectDraw__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseR8Graphics = .text:0x8013073C; // type:function size:0x5C scope:global align:4 +start__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseiPQ24Game8StateArg = .text:0x80130798; // type:function size:0x80 scope:global align:4 +exec__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x80130818; // type:function size:0x4C scope:global align:4 +create__Q24Game17EnemyStateMachineFi = .text:0x80130864; // type:function size:0xA4 scope:global align:4 +registerState__Q24Game17EnemyStateMachineFPQ24Game13EnemyFSMState = .text:0x80130908; // type:function size:0x84 scope:global align:4 +getCurrID__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x8013098C; // type:function size:0x70 scope:global align:4 +getCurrName__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x801309FC; // type:function size:0x70 scope:global align:4 +transit__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseiPQ24Game8StateArg = .text:0x80130A6C; // type:function size:0x11C scope:global align:4 +setCurrState__Q24Game17EnemyStateMachineFPQ24Game9EnemyBasePQ24Game13EnemyFSMState = .text:0x80130B88; // type:function size:0x8 scope:global align:4 +getCurrState__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x80130B90; // type:function size:0x8 scope:global align:4 +init__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x80130B98; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game15IllustratedBook12ColorSettingFv = .text:0x80130B9C; // type:function size:0x1D0 scope:global align:4 +__ct__6Color4Fv = .text:0x80130D6C; // type:function size:0x4 scope:weak align:4 +read__Q34Game15IllustratedBook12ColorSettingFR6Stream = .text:0x80130D70; // type:function size:0x98 scope:global align:4 +update__Q34Game15IllustratedBook12ColorSettingFv = .text:0x80130E08; // type:function size:0x8CC scope:global align:4 +__ct__Q34Game15IllustratedBook13PositionParmsFv = .text:0x801316D4; // type:function size:0x148 scope:global align:4 +read__Q34Game15IllustratedBook13PositionParmsFR6Stream = .text:0x8013181C; // type:function size:0x50 scope:global align:4 +__dt__Q34Game15IllustratedBook13PositionParmsFv = .text:0x8013186C; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook17PositionParmsListFR6Stream = .text:0x801318CC; // type:function size:0x68 scope:global align:4 +read__Q34Game15IllustratedBook11CameraParmsFR6Stream = .text:0x80131934; // type:function size:0x20 scope:global align:4 +__ct__Q34Game15IllustratedBook10EnemyParmsFv = .text:0x80131954; // type:function size:0x130 scope:global align:4 +__ct__Q34Game15IllustratedBook11CameraParmsFv = .text:0x80131A84; // type:function size:0x40 scope:weak align:4 +__ct__Q44Game15IllustratedBook11CameraParms5ParmsFv = .text:0x80131AC4; // type:function size:0x2E4 scope:weak align:4 +read__Q34Game15IllustratedBook10EnemyParmsFR6Stream = .text:0x80131DA8; // type:function size:0x64 scope:global align:4 +__dt__Q34Game15IllustratedBook10EnemyParmsFv = .text:0x80131E0C; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook14EnemyModeParmsFR6Stream = .text:0x80131E6C; // type:function size:0x84 scope:global align:4 +__ct__Q34Game15IllustratedBook9ItemParmsFv = .text:0x80131EF0; // type:function size:0x148 scope:global align:4 +read__Q34Game15IllustratedBook9ItemParmsFR6Stream = .text:0x80132038; // type:function size:0x64 scope:global align:4 +__dt__Q34Game15IllustratedBook9ItemParmsFv = .text:0x8013209C; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook13ItemModeParmsFR6Stream = .text:0x801320FC; // type:function size:0x80 scope:global align:4 +__ct__Q34Game15IllustratedBook5ParmsFv = .text:0x8013217C; // type:function size:0x29C scope:global align:4 +__dt__Q34Game15IllustratedBook13ItemModeParmsFv = .text:0x80132418; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game15IllustratedBook14EnemyModeParmsFv = .text:0x80132478; // type:function size:0x7C scope:weak align:4 +__dt__Q34Game15IllustratedBook17PositionParmsListFv = .text:0x801324F4; // type:function size:0x7C scope:weak align:4 +__dt__Q34Game15IllustratedBook12ColorSettingFv = .text:0x80132570; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook5ParmsFR6Stream = .text:0x801325D0; // type:function size:0x90 scope:global align:4 +loadFile__Q34Game15IllustratedBook5ParmsFP10JKRArchive = .text:0x80132660; // type:function size:0xD0 scope:global align:4 +__dt__Q34Game15IllustratedBook5ParmsFv = .text:0x80132730; // type:function size:0x114 scope:weak align:4 +__sinit_singleGS_ZukanParms_cpp = .text:0x80132844; // type:function size:0x28 scope:local align:4 +__ct__Q213TreasureLight3MgrFv = .text:0x8013286C; // type:function size:0x150 scope:global align:4 +update__Q213TreasureLight3MgrFv = .text:0x801329BC; // type:function size:0x4 scope:global align:4 +set__Q213TreasureLight3MgrFR8Graphics = .text:0x801329C0; // type:function size:0x44 scope:global align:4 +set__Q213TreasureLight3MgrFR7Matrixf = .text:0x80132A04; // type:function size:0x44 scope:global align:4 +setCommonProc__Q213TreasureLight3MgrFv = .text:0x80132A48; // type:function size:0x184 scope:global align:4 +drawDebugInfo__Q213TreasureLight3MgrFR8Graphics = .text:0x80132BCC; // type:function size:0x20 scope:global align:4 +__dt__Q213TreasureLight3MgrFv = .text:0x80132BEC; // type:function size:0xA0 scope:weak align:4 +__sinit_treasureLightMgr_cpp = .text:0x80132C8C; // type:function size:0x28 scope:local align:4 +update__Q214EffectAnimator3ObjFPQ23efx13TKechappyTestf = .text:0x80132CB4; // type:function size:0x4 scope:weak align:4 +setup__Q214EffectAnimator6ObjMgrFPQ214EffectAnimator10ObjMgrData = .text:0x80132CB8; // type:function size:0x2F8 scope:global align:4 +__dt__Q214EffectAnimator3ObjFv = .text:0x80132FB0; // type:function size:0x60 scope:weak align:4 +__ct__Q214EffectAnimator3MgrFv = .text:0x80133010; // type:function size:0xC scope:global align:4 +setup__Q214EffectAnimator3MgrFv = .text:0x8013301C; // type:function size:0xB4 scope:global align:4 +update__Q214EffectAnimator3MgrFPQ23efx13TKechappyTestif = .text:0x801330D0; // type:function size:0xE4 scope:global align:4 +__dt__Q214EffectAnimator9LengthObjFv = .text:0x801331B4; // type:function size:0x70 scope:weak align:4 +update__Q214EffectAnimator9LengthObjFPQ23efx13TKechappyTestf = .text:0x80133224; // type:function size:0x118 scope:weak align:4 +__dt__Q214EffectAnimator10BristleObjFv = .text:0x8013333C; // type:function size:0x70 scope:weak align:4 +update__Q214EffectAnimator10BristleObjFPQ23efx13TKechappyTestf = .text:0x801333AC; // type:function size:0x118 scope:weak align:4 +__dt__Q214EffectAnimator12VibrationObjFv = .text:0x801334C4; // type:function size:0x70 scope:weak align:4 +update__Q214EffectAnimator12VibrationObjFPQ23efx13TKechappyTestf = .text:0x80133534; // type:function size:0x118 scope:weak align:4 +__ct__12PikiAnimatorFv = .text:0x8013364C; // type:function size:0x50 scope:global align:4 +setAnimMgr__12PikiAnimatorFPQ28SysShape7AnimMgr = .text:0x8013369C; // type:function size:0xC scope:global align:4 +__ct__8PlatformFv = .text:0x801336A8; // type:function size:0x44 scope:global align:4 +getTriDivider__8PlatformFv = .text:0x801336EC; // type:function size:0x8 scope:global align:4 +setMapCodeAll__8PlatformFRQ27MapCode4Code = .text:0x801336F4; // type:function size:0x3C scope:global align:4 +clone__8PlatformFR7Matrixf = .text:0x80133730; // type:function size:0x84 scope:global align:4 +load__8PlatformFP13JKRFileLoaderPc = .text:0x801337B4; // type:function size:0xAC scope:global align:4 +__ct__12PlatAttacherFv = .text:0x80133860; // type:function size:0x14 scope:global align:4 +setMapCodeAll__12PlatAttacherFRQ27MapCode4Code = .text:0x80133874; // type:function size:0x64 scope:global align:4 +__dt__8PlatformFv = .text:0x801338D8; // type:function size:0x60 scope:weak align:4 +read__12PlatAttacherFR6Stream = .text:0x80133938; // type:function size:0x190 scope:global align:4 +read__28ArrayContainer<10Vector3>FR6Stream = .text:0x80133AC8; // type:function size:0xB0 scope:weak align:4 +readObject__28ArrayContainer<10Vector3>FR6StreamR10Vector3 = .text:0x80133B78; // type:function size:0x4 scope:weak align:4 +alloc__28ArrayContainer<10Vector3>Fi = .text:0x80133B7C; // type:function size:0x68 scope:weak align:4 +__dt__28ArrayContainer<10Vector3>Fv = .text:0x80133BE4; // type:function size:0x80 scope:weak align:4 +__dt__23Container<10Vector3>Fv = .text:0x80133C64; // type:function size:0x70 scope:weak align:4 +getNumShapes__12PlatAttacherFv = .text:0x80133CD4; // type:function size:0x8 scope:global align:4 +getJointIndex__12PlatAttacherFi = .text:0x80133CDC; // type:function size:0x7C scope:global align:4 +getPlatform__12PlatAttacherFi = .text:0x80133D58; // type:function size:0x7C scope:global align:4 +__dt__Q23Sys11GridDividerFv = .text:0x80133DD4; // type:function size:0x90 scope:weak align:4 +__dt__Q23Sys12TriIndexListFv = .text:0x80133E64; // type:function size:0xA0 scope:weak align:4 +__dt__Q23Sys10TriDividerFv = .text:0x80133F04; // type:function size:0x60 scope:weak align:4 +__dt__Q23Sys7OBBTreeFv = .text:0x80133F64; // type:function size:0xF8 scope:weak align:4 +__ct__8CollTreeFv = .text:0x8013405C; // type:function size:0x10 scope:global align:4 +createFromFactory__8CollTreeFPQ28SysShape9MtxObjectP15CollPartFactoryP11CollPartMgr = .text:0x8013406C; // type:function size:0x44 scope:global align:4 +createSingleSphere__8CollTreeFPQ28SysShape9MtxObjectiRQ23Sys6SphereP11CollPartMgr = .text:0x801340B0; // type:function size:0x104 scope:global align:4 +release__8CollTreeFv = .text:0x801341B4; // type:function size:0x44 scope:global align:4 +releaseRec__8CollTreeFP8CollPart = .text:0x801341F8; // type:function size:0x348 scope:global align:4 +getChild__8CollPartFv = .text:0x80134540; // type:function size:0x8 scope:weak align:4 +getNext__8CollPartFv = .text:0x80134548; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollTreeFP8CollTreePP8CollPartPP8CollPartR10Vector3 = .text:0x80134550; // type:function size:0x3C scope:global align:4 +checkCollisionRec__8CollTreeFP8CollPartP8CollPartPP8CollPartPP8CollPartR10Vector3 = .text:0x8013458C; // type:function size:0x604 scope:global align:4 +isLeaf__8CollPartFv = .text:0x80134B90; // type:function size:0x10 scope:weak align:4 +isPrim__8CollPartFv = .text:0x80134BA0; // type:function size:0x30 scope:weak align:4 +checkCollision__8CollTreeFRQ23Sys6SphereP22IDelegate1 = .text:0x80134BD0; // type:function size:0x2C scope:global align:4 +checkCollision__8CollPartFRQ23Sys6SphereP22IDelegate1 = .text:0x80134BFC; // type:function size:0x8B8 scope:global align:4 +__ct__Q23Sys4TubeFR10Vector3R10Vector3ff = .text:0x801354B4; // type:function size:0x3C scope:weak align:4 +__ct__Q23Sys6SphereFR10Vector3f = .text:0x801354F0; // type:function size:0x20 scope:weak align:4 +isSphere__8CollPartFv = .text:0x80135510; // type:function size:0x10 scope:weak align:4 +__ct__10Vector3FRC10Vector3 = .text:0x80135520; // type:function size:0x1C scope:weak align:4 +isTubeTree__8CollPartFv = .text:0x8013553C; // type:function size:0x14 scope:weak align:4 +isTube__8CollPartFv = .text:0x80135550; // type:function size:0x14 scope:weak align:4 +checkCollisionMulti__8CollTreeFP8CollTreeP47IDelegate3> = .text:0x80135564; // type:function size:0x198 scope:global align:4 +checkCollisionMulti__8CollPartFP8CollPartP47IDelegate3> = .text:0x801356FC; // type:function size:0x1F0 scope:global align:4 +collide__8CollPartFP8CollPartR10Vector3 = .text:0x801358EC; // type:function size:0x1B0 scope:global align:4 +update__8CollTreeFv = .text:0x80135A9C; // type:function size:0x2C scope:global align:4 +attachModel__8CollTreeFPQ28SysShape9MtxObject = .text:0x80135AC8; // type:function size:0x2C scope:global align:4 +attachModel__8CollPartFPQ28SysShape9MtxObject = .text:0x80135AF4; // type:function size:0x350 scope:global align:4 +getCollPart__8CollTreeFUl = .text:0x80135E44; // type:function size:0x34 scope:global align:4 +getCollPart__8CollPartFUl = .text:0x80135E78; // type:function size:0x640 scope:global align:4 +getAllCollPartToArray__8CollPartFPP8CollPartiRi = .text:0x801364B8; // type:function size:0x54C scope:global align:4 +findCollPart__8CollTreeFR15FindCollPartArg = .text:0x80136A04; // type:function size:0x118 scope:global align:4 +getRandomCollPart__8CollTreeFv = .text:0x80136B1C; // type:function size:0x124 scope:global align:4 +getBoundingSphere__8CollTreeFRQ23Sys6Sphere = .text:0x80136C40; // type:function size:0x34 scope:global align:4 +__ct__8CollPartFPQ28SysShape9MtxObject = .text:0x80136C74; // type:function size:0x64 scope:global align:4 +__ct__8CollPartFv = .text:0x80136CD8; // type:function size:0x58 scope:global align:4 +init__8CollPartFPQ28SysShape9MtxObject = .text:0x80136D30; // type:function size:0x80 scope:global align:4 +isStickable__8CollPartFv = .text:0x80136DB0; // type:function size:0x30 scope:global align:4 +update__8CollPartFv = .text:0x80136DE0; // type:function size:0x4E0 scope:global align:4 +getTranslation__7MatrixfFR10Vector3 = .text:0x801372C0; // type:function size:0x1C scope:weak align:4 +getBasis__7MatrixfFiR10Vector3 = .text:0x801372DC; // type:function size:0x24 scope:weak align:4 +__cl__7MatrixfFii = .text:0x80137300; // type:function size:0x18 scope:weak align:4 +makeMatrixTo__8CollPartFR7Matrixf = .text:0x80137318; // type:function size:0x84 scope:global align:4 +makeTubeTree__8CollPartFv = .text:0x8013739C; // type:function size:0x214 scope:global align:4 +calcStickLocal__8CollPartFR10Vector3R10Vector3 = .text:0x801375B0; // type:function size:0x22C scope:global align:4 +calcStickGlobal__8CollPartFR10Vector3R10Vector3 = .text:0x801377DC; // type:function size:0x168 scope:global align:4 +calcPoseMatrix__8CollPartFR10Vector3R7Matrixf = .text:0x80137944; // type:function size:0x4C8 scope:global align:4 +setScale__8CollPartFf = .text:0x80137E0C; // type:function size:0x3F0 scope:global align:4 +getSphere__8CollPartFRQ23Sys6Sphere = .text:0x801381FC; // type:function size:0x7C scope:global align:4 +getTube__8CollPartFRQ23Sys4Tube = .text:0x80138278; // type:function size:0xB8 scope:global align:4 +draw__8CollPartFR8Graphics = .text:0x80138330; // type:function size:0x4 scope:global align:4 +__ct__13MouthCollPartFv = .text:0x80138334; // type:function size:0x134 scope:global align:4 +__dt__8CollPartFv = .text:0x80138468; // type:function size:0x60 scope:weak align:4 +getPosition__13MouthCollPartFR10Vector3 = .text:0x801384C8; // type:function size:0x48 scope:global align:4 +copyMatrixTo__13MouthCollPartFR7Matrixf = .text:0x80138510; // type:function size:0x38 scope:global align:4 +__ct__10MouthSlotsFv = .text:0x80138548; // type:function size:0x10 scope:global align:4 +alloc__10MouthSlotsFi = .text:0x80138558; // type:function size:0x64 scope:global align:4 +__dt__13MouthCollPartFv = .text:0x801385BC; // type:function size:0x70 scope:weak align:4 +update__10MouthSlotsFv = .text:0x8013862C; // type:function size:0x64 scope:global align:4 +setup__10MouthSlotsFiPQ28SysShape5ModelPc = .text:0x80138690; // type:function size:0xE8 scope:global align:4 +getSlot__10MouthSlotsFi = .text:0x80138778; // type:function size:0x7C scope:global align:4 +load__15CollPartFactoryFPc = .text:0x801387F4; // type:function size:0x150 scope:global align:4 +load__15CollPartFactoryFP13JKRFileLoaderPc = .text:0x80138944; // type:function size:0x128 scope:global align:4 +createInstance__15CollPartFactoryFPQ28SysShape9MtxObjectP11CollPartMgr = .text:0x80138A6C; // type:function size:0x20 scope:global align:4 +createOne__11CollPartMgrFPQ28SysShape9MtxObject = .text:0x80138A8C; // type:function size:0xAC scope:global align:4 +clone__8CollPartFPQ28SysShape9MtxObjectP11CollPartMgr = .text:0x80138B38; // type:function size:0x2A8 scope:global align:4 +getChildCount__8CollPartFv = .text:0x80138DE0; // type:function size:0x20 scope:weak align:4 +read__8CollPartFR6Streamb = .text:0x80138E00; // type:function size:0x35C scope:global align:4 +addChild__8CollPartFP8CollPart = .text:0x8013915C; // type:function size:0x20 scope:weak align:4 +setName__5CNodeFPc = .text:0x8013917C; // type:function size:0x8 scope:weak align:4 +readU16__6StreamFv = .text:0x80139184; // type:function size:0x24 scope:weak align:4 +draw__11AgeCollPartFR8Graphics = .text:0x801391A8; // type:function size:0x10C scope:global align:4 +__ct__11AgeCollPartFPQ28SysShape5Model = .text:0x801392B4; // type:function size:0xCC scope:global align:4 +__dt__11AgeCollPartFv = .text:0x80139380; // type:function size:0x70 scope:weak align:4 +isMouth__8CollPartFv = .text:0x801393F0; // type:function size:0x8 scope:weak align:4 +constructor__8CollPartFv = .text:0x801393F8; // type:function size:0x4 scope:weak align:4 +doAnimation__8CollPartFv = .text:0x801393FC; // type:function size:0x4 scope:weak align:4 +doEntry__8CollPartFv = .text:0x80139400; // type:function size:0x4 scope:weak align:4 +doSetView__8CollPartFUl = .text:0x80139404; // type:function size:0x4 scope:weak align:4 +doViewCalc__8CollPartFv = .text:0x80139408; // type:function size:0x4 scope:weak align:4 +doSimulation__8CollPartFf = .text:0x8013940C; // type:function size:0x4 scope:weak align:4 +doDirectDraw__8CollPartFR8Graphics = .text:0x80139410; // type:function size:0x4 scope:weak align:4 +__dt__15CollPartFactoryFv = .text:0x80139414; // type:function size:0x70 scope:weak align:4 +isMouth__13MouthCollPartFv = .text:0x80139484; // type:function size:0x8 scope:weak align:4 +__dt__Q23Sys3OBBFv = .text:0x8013948C; // type:function size:0xD4 scope:weak align:4 +__dt__12ContainerFv = .text:0x80139560; // type:function size:0x70 scope:weak align:4 +__dt__17ArrayContainerFv = .text:0x801395D0; // type:function size:0x80 scope:weak align:4 +alloc__17ArrayContainerFi = .text:0x80139650; // type:function size:0x4C scope:weak align:4 +read__17ArrayContainerFR6Stream = .text:0x8013969C; // type:function size:0xB0 scope:weak align:4 +readObject__17ArrayContainerFR6StreamRi = .text:0x8013974C; // type:function size:0x4 scope:weak align:4 +readObject__Q23Sys9IndexListFR6StreamRi = .text:0x80139750; // type:function size:0x34 scope:weak align:4 +writeObject__Q23Sys9IndexListFR6StreamRi = .text:0x80139784; // type:function size:0x28 scope:weak align:4 +__dt__Q23Sys9IndexListFv = .text:0x801397AC; // type:function size:0x90 scope:weak align:4 +setArray__28ArrayContainer<10Vector3>FP10Vector3i = .text:0x8013983C; // type:function size:0x10 scope:weak align:4 +addOne__28ArrayContainer<10Vector3>FR10Vector3 = .text:0x8013984C; // type:function size:0x40 scope:weak align:4 +birth__24MonoObjectMgr<8CollPart>Fv = .text:0x8013988C; // type:function size:0x60 scope:weak align:4 +kill__24MonoObjectMgr<8CollPart>FP8CollPart = .text:0x801398EC; // type:function size:0x54 scope:weak align:4 +getEmptyIndex__24MonoObjectMgr<8CollPart>Fv = .text:0x80139940; // type:function size:0x3C scope:weak align:4 +writeObject__28ArrayContainer<10Vector3>FR6StreamR10Vector3 = .text:0x8013997C; // type:function size:0x4 scope:weak align:4 +write__28ArrayContainer<10Vector3>FR6Stream = .text:0x80139980; // type:function size:0xD4 scope:weak align:4 +get__28ArrayContainer<10Vector3>FPv = .text:0x80139A54; // type:function size:0x10 scope:weak align:4 +getNext__28ArrayContainer<10Vector3>FPv = .text:0x80139A64; // type:function size:0x8 scope:weak align:4 +getStart__28ArrayContainer<10Vector3>Fv = .text:0x80139A6C; // type:function size:0x8 scope:weak align:4 +getEnd__28ArrayContainer<10Vector3>Fv = .text:0x80139A74; // type:function size:0x8 scope:weak align:4 +getAt__28ArrayContainer<10Vector3>Fi = .text:0x80139A7C; // type:function size:0x10 scope:weak align:4 +getTo__28ArrayContainer<10Vector3>Fv = .text:0x80139A8C; // type:function size:0x8 scope:weak align:4 +writeObject__17ArrayContainerFR6StreamRi = .text:0x80139A94; // type:function size:0x4 scope:weak align:4 +write__17ArrayContainerFR6Stream = .text:0x80139A98; // type:function size:0xD4 scope:weak align:4 +addOne__17ArrayContainerFRi = .text:0x80139B6C; // type:function size:0x2C scope:weak align:4 +setArray__17ArrayContainerFPii = .text:0x80139B98; // type:function size:0x10 scope:weak align:4 +get__17ArrayContainerFPv = .text:0x80139BA8; // type:function size:0x10 scope:weak align:4 +getNext__17ArrayContainerFPv = .text:0x80139BB8; // type:function size:0x8 scope:weak align:4 +getStart__17ArrayContainerFv = .text:0x80139BC0; // type:function size:0x8 scope:weak align:4 +getEnd__17ArrayContainerFv = .text:0x80139BC8; // type:function size:0x8 scope:weak align:4 +getAt__17ArrayContainerFi = .text:0x80139BD0; // type:function size:0x10 scope:weak align:4 +getTo__17ArrayContainerFv = .text:0x80139BE0; // type:function size:0x8 scope:weak align:4 +getObject__23Container<10Vector3>FPv = .text:0x80139BE8; // type:function size:0x2C scope:weak align:4 +getAt__23Container<10Vector3>Fi = .text:0x80139C14; // type:function size:0x8 scope:weak align:4 +getTo__23Container<10Vector3>Fv = .text:0x80139C1C; // type:function size:0x8 scope:weak align:4 +getObject__12ContainerFPv = .text:0x80139C24; // type:function size:0x2C scope:weak align:4 +getAt__12ContainerFi = .text:0x80139C50; // type:function size:0x8 scope:weak align:4 +getTo__12ContainerFv = .text:0x80139C58; // type:function size:0x8 scope:weak align:4 +__ct__13DynamicsParmsFv = .text:0x80139C60; // type:function size:0x334 scope:global align:4 +__dt__13DynamicsParmsFv = .text:0x80139F94; // type:function size:0x74 scope:global align:4 +globalInstance__13DynamicsParmsFv = .text:0x8013A008; // type:function size:0x48 scope:global align:4 +__ct__Q24Game5RigidFv = .text:0x8013A050; // type:function size:0x54 scope:global align:4 +__ct__Q24Game11RigidConfigFv = .text:0x8013A0A4; // type:function size:0x34 scope:weak align:4 +initPosition__Q24Game5RigidFR10Vector3R10Vector3 = .text:0x8013A0D8; // type:function size:0x8C scope:global align:4 +initPositionIndex__Q24Game5RigidFR10Vector3iR10Vector3 = .text:0x8013A164; // type:function size:0x8C scope:global align:4 +updateMatrix__Q24Game5RigidFi = .text:0x8013A1F0; // type:function size:0x38 scope:global align:4 +computeForces__Q24Game5RigidFi = .text:0x8013A228; // type:function size:0x6C scope:global align:4 +getYDegree__FR4QuatR10Vector3 = .text:0x8013A294; // type:function size:0x268 scope:local align:4 +integrate__Q24Game5RigidFfi = .text:0x8013A4FC; // type:function size:0x678 scope:global align:4 +resolveCollision__Q24Game5RigidFiR10Vector3R10Vector3f = .text:0x8013AB74; // type:function size:0x300 scope:global align:4 +size__7ParmFv = .text:0x8013AE74; // type:function size:0x8 scope:weak align:4 +@12@__dt__13DynamicsParmsFv = .text:0x8013AE7C; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game8CreatureFv = .text:0x8013AE84; // type:function size:0x12C scope:global align:4 +__ct__Q24Game7CellLegFv = .text:0x8013AFB0; // type:function size:0x18 scope:weak align:4 +init__Q24Game8CreatureFPQ24Game15CreatureInitArg = .text:0x8013AFC8; // type:function size:0x120 scope:global align:4 +onInitPost__Q24Game8CreatureFPQ24Game15CreatureInitArg = .text:0x8013B0E8; // type:function size:0x4 scope:weak align:4 +onInit__Q24Game8CreatureFPQ24Game15CreatureInitArg = .text:0x8013B0EC; // type:function size:0x4 scope:weak align:4 +kill__Q24Game8CreatureFPQ24Game15CreatureKillArg = .text:0x8013B0F0; // type:function size:0xB4 scope:global align:4 +onKill__Q24Game8CreatureFPQ24Game15CreatureKillArg = .text:0x8013B1A4; // type:function size:0x4 scope:weak align:4 +setPosition__Q24Game8CreatureFR10Vector3b = .text:0x8013B1A8; // type:function size:0xC8 scope:global align:4 +onSetPositionPost__Q24Game8CreatureFR10Vector3 = .text:0x8013B270; // type:function size:0x4 scope:weak align:4 +initPosition__Q24Game8CreatureFR10Vector3 = .text:0x8013B274; // type:function size:0xCC scope:global align:4 +getYVector__Q24Game8CreatureFR10Vector3 = .text:0x8013B340; // type:function size:0xA0 scope:global align:4 +getBodyRadius__Q24Game8CreatureFv = .text:0x8013B3E0; // type:function size:0x34 scope:global align:4 +getCellRadius__Q24Game8CreatureFv = .text:0x8013B414; // type:function size:0x34 scope:global align:4 +getTypeName__Q24Game8CreatureFv = .text:0x8013B448; // type:function size:0x24 scope:global align:4 +getShadowParam__Q24Game8CreatureFRQ24Game11ShadowParam = .text:0x8013B46C; // type:function size:0x8C scope:global align:4 +needShadow__Q24Game8CreatureFv = .text:0x8013B4F8; // type:function size:0xC scope:global align:4 +getLifeGaugeParam__Q24Game8CreatureFRQ24Game14LifeGaugeParam = .text:0x8013B504; // type:function size:0x70 scope:global align:4 +save__Q24Game8CreatureFR6StreamUc = .text:0x8013B574; // type:function size:0x90 scope:global align:4 +load__Q24Game8CreatureFR6StreamUc = .text:0x8013B604; // type:function size:0xE4 scope:global align:4 +calcSphereDistance__Q24Game8CreatureFPQ24Game8Creature = .text:0x8013B6E8; // type:function size:0xBC scope:global align:4 +applyAirDrag__Q24Game8CreatureFfff = .text:0x8013B7A4; // type:function size:0xCC scope:global align:4 +doAnimation__Q24Game8CreatureFv = .text:0x8013B870; // type:function size:0x3C scope:global align:4 +doEntry__Q24Game8CreatureFv = .text:0x8013B8AC; // type:function size:0x4 scope:global align:4 +doSetView__Q24Game8CreatureFi = .text:0x8013B8B0; // type:function size:0x108 scope:global align:4 +doViewCalc__Q24Game8CreatureFv = .text:0x8013B9B8; // type:function size:0x2C scope:global align:4 +isPiki__Q24Game8CreatureFv = .text:0x8013B9E4; // type:function size:0x10 scope:global align:4 +isNavi__Q24Game8CreatureFv = .text:0x8013B9F4; // type:function size:0x14 scope:global align:4 +isTeki__Q24Game8CreatureFv = .text:0x8013BA08; // type:function size:0x14 scope:global align:4 +isPellet__Q24Game8CreatureFv = .text:0x8013BA1C; // type:function size:0x14 scope:global align:4 +sound_culling__Q24Game8CreatureFv = .text:0x8013BA30; // type:function size:0x20 scope:global align:4 +movie_begin__Q24Game8CreatureFb = .text:0x8013BA50; // type:function size:0x9C scope:global align:4 +movie_end__Q24Game8CreatureFb = .text:0x8013BAEC; // type:function size:0x50 scope:global align:4 +checkWater__Q24Game8CreatureFPQ24Game8WaterBoxRQ23Sys6Sphere = .text:0x8013BB3C; // type:function size:0xE0 scope:global align:4 +inWaterCallback__Q24Game8CreatureFPQ24Game8WaterBox = .text:0x8013BC1C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q24Game8CreatureFv = .text:0x8013BC20; // type:function size:0x4 scope:weak align:4 +checkHell__Q24Game8CreatureFRQ34Game8Creature12CheckHellArg = .text:0x8013BC24; // type:function size:0x144 scope:global align:4 +updateCell__Q24Game8CreatureFv = .text:0x8013BD68; // type:function size:0x178 scope:global align:4 +getCreatureID__Q24Game8CreatureFv = .text:0x8013BEE0; // type:function size:0x8 scope:weak align:4 +getCellPikiCount__Q24Game8CreatureFv = .text:0x8013BEE8; // type:function size:0x44 scope:global align:4 +applyImpulse__Q24Game8CreatureFR10Vector3R10Vector3 = .text:0x8013BF2C; // type:function size:0xB0 scope:global align:4 +checkCollision__Q24Game8CreatureFPQ24Game10CellObject = .text:0x8013BFDC; // type:function size:0x2E4 scope:global align:4 +resolveOneColl__Q24Game8CreatureFP8CollPartP8CollPartR10Vector3 = .text:0x8013C2C0; // type:function size:0x8CC scope:global align:4 +collisionCallback__Q24Game8CreatureFRQ24Game9CollEvent = .text:0x8013CB8C; // type:function size:0x4 scope:weak align:4 +invoke__63Delegate3>FP8CollPartP8CollPartR10Vector3 = .text:0x8013CB90; // type:function size:0x30 scope:weak align:4 +constructor__Q24Game8CreatureFv = .text:0x8013CBC0; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game8CreatureFf = .text:0x8013CBC4; // type:function size:0x4 scope:weak align:4 +inWater__Q24Game8CreatureFv = .text:0x8013CBC8; // type:function size:0x8 scope:weak align:4 +isFlying__Q24Game8CreatureFv = .text:0x8013CBD0; // type:function size:0x8 scope:weak align:4 +getPSCreature__Q24Game8CreatureFv = .text:0x8013CBD8; // type:function size:0x8 scope:weak align:4 +getSound_PosPtr__Q24Game8CreatureFv = .text:0x8013CBE0; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimFrame__Q24Game8CreatureFv = .text:0x8013CBE8; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimSpeed__Q24Game8CreatureFv = .text:0x8013CBF0; // type:function size:0x8 scope:weak align:4 +getLODSphere__Q24Game8CreatureFRQ23Sys6Sphere = .text:0x8013CBF8; // type:function size:0x2C scope:weak align:4 +onStickStart__Q24Game8CreatureFPQ24Game8Creature = .text:0x8013CC24; // type:function size:0x4 scope:weak align:4 +onStickEnd__Q24Game8CreatureFPQ24Game8Creature = .text:0x8013CC28; // type:function size:0x4 scope:weak align:4 +checkCollision__Q24Game10CellObjectFPQ24Game10CellObject = .text:0x8013CC2C; // type:function size:0x4 scope:weak align:4 +isPiki__Q24Game10CellObjectFv = .text:0x8013CC30; // type:function size:0x8 scope:weak align:4 +isNavi__Q24Game10CellObjectFv = .text:0x8013CC38; // type:function size:0x8 scope:weak align:4 +__sinit_creature_cpp = .text:0x8013CC40; // type:function size:0x28 scope:local align:4 +__ct__Q24Game8FakePikiFv = .text:0x8013CC68; // type:function size:0x12C scope:global align:4 +initFakePiki__Q24Game8FakePikiFv = .text:0x8013CD94; // type:function size:0xB8 scope:global align:4 +killFakePiki__Q24Game8FakePikiFv = .text:0x8013CE4C; // type:function size:0x28 scope:global align:4 +initAnimator__Q24Game8FakePikiFv = .text:0x8013CE74; // type:function size:0xB8 scope:global align:4 +assertMotion__Q24Game8FakePikiFi = .text:0x8013CF2C; // type:function size:0x28 scope:global align:4 +enableMotionBlend__Q24Game8FakePikiFv = .text:0x8013CF54; // type:function size:0x6C scope:global align:4 +startMotion__Q24Game8FakePikiFiiPQ28SysShape14MotionListenerPQ28SysShape14MotionListener = .text:0x8013CFC0; // type:function size:0x100 scope:global align:4 +finishMotion__Q24Game8FakePikiFv = .text:0x8013D0C0; // type:function size:0x1C scope:global align:4 +movieSetFaceDir__Q24Game8FakePikiFf = .text:0x8013D0DC; // type:function size:0x8 scope:global align:4 +setDoAnimCallback__Q24Game8FakePikiFP9IDelegate = .text:0x8013D0E4; // type:function size:0x8 scope:global align:4 +clearDoAnimCallback__Q24Game8FakePikiFv = .text:0x8013D0EC; // type:function size:0xC scope:global align:4 +updateWalkAnimation__Q24Game8FakePikiFv = .text:0x8013D0F8; // type:function size:0x3BC scope:global align:4 +sNeckCallback__Q24Game8FakePikiFP8J3DJointi = .text:0x8013D4B4; // type:function size:0x23C scope:global align:4 +startLookCreature__Q24Game8FakePikiFPQ24Game8Creature = .text:0x8013D6F0; // type:function size:0xC0 scope:global align:4 +updateLookCreature__Q24Game8FakePikiFv = .text:0x8013D7B0; // type:function size:0x70 scope:global align:4 +do_updateLookCreature__Q24Game8FakePikiFv = .text:0x8013D820; // type:function size:0x4 scope:global align:4 +finishLook__Q24Game8FakePikiFv = .text:0x8013D824; // type:function size:0x18 scope:global align:4 +updateLook__Q24Game8FakePikiFv = .text:0x8013D83C; // type:function size:0x398 scope:global align:4 +turnTo__Q24Game8FakePikiFR10Vector3 = .text:0x8013DBD4; // type:function size:0x60 scope:global align:4 +moveVelocity__Q24Game8FakePikiFv = .text:0x8013DC34; // type:function size:0x3B4 scope:global align:4 +moveRotation__Q24Game8FakePikiFv = .text:0x8013DFE8; // type:function size:0xB4 scope:global align:4 +useMoveRotation__Q24Game8FakePikiFv = .text:0x8013E09C; // type:function size:0x14 scope:weak align:4 +move__Q24Game8FakePikiFf = .text:0x8013E0B0; // type:function size:0x6A4 scope:global align:4 +__opi__Q34Game8GameStat11PikiCounterFv = .text:0x8013E754; // type:function size:0x3C scope:weak align:4 +inWater__Q24Game8FakePikiFv = .text:0x8013E790; // type:function size:0x14 scope:weak align:4 +wallCallback__Q24Game8FakePikiFR10Vector3 = .text:0x8013E7A4; // type:function size:0x4 scope:weak align:4 +useMapCollision__Q24Game8FakePikiFv = .text:0x8013E7A8; // type:function size:0x14 scope:weak align:4 +getMapCollisionRadius__Q24Game8FakePikiFv = .text:0x8013E7BC; // type:function size:0x8 scope:weak align:4 +doEntry__Q24Game8FakePikiFv = .text:0x8013E7C4; // type:function size:0xBC scope:global align:4 +doColorChange__Q24Game8FakePikiFv = .text:0x8013E880; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game8FakePikiFv = .text:0x8013E884; // type:function size:0x494 scope:global align:4 +getBoundingSphere__Q24Game8FakePikiFRQ23Sys6Sphere = .text:0x8013ED18; // type:function size:0x24 scope:weak align:4 +useMoveVelocity__Q24Game8FakePikiFv = .text:0x8013ED3C; // type:function size:0x14 scope:weak align:4 +updateTrMatrix__Q24Game8FakePikiFv = .text:0x8013ED50; // type:function size:0x78 scope:global align:4 +useUpdateTrMatrix__Q24Game8FakePikiFv = .text:0x8013EDC8; // type:function size:0x14 scope:weak align:4 +doSimulation__Q24Game8FakePikiFf = .text:0x8013EDDC; // type:function size:0x560 scope:global align:4 +getPosition__Q24Game8BaseItemFv = .text:0x8013F33C; // type:function size:0x1C scope:weak align:4 +initCaptureStomach__Q24Game8FakePikiFv = .text:0x8013F358; // type:function size:0xC scope:global align:4 +startCaptureStomach__Q24Game8FakePikiFP8CollPart = .text:0x8013F364; // type:function size:0x8 scope:global align:4 +endCaptureStomach__Q24Game8FakePikiFv = .text:0x8013F36C; // type:function size:0xC scope:global align:4 +updateStomach__Q24Game8FakePikiFv = .text:0x8013F378; // type:function size:0x158 scope:global align:4 +debugShapeDL__Q24Game8FakePikiFPc = .text:0x8013F4D0; // type:function size:0x8 scope:global align:4 +getDownfloorMass__Q24Game8FakePikiFv = .text:0x8013F4D8; // type:function size:0x8 scope:weak align:4 +isPikmin__Q24Game8FakePikiFv = .text:0x8013F4E0; // type:function size:0x8 scope:weak align:4 +doDebugDL__Q24Game8FakePikiFv = .text:0x8013F4E8; // type:function size:0x4 scope:weak align:4 +update__Q24Game8FakePikiFv = .text:0x8013F4EC; // type:function size:0x4 scope:weak align:4 +setMoveRotation__Q24Game8FakePikiFb = .text:0x8013F4F0; // type:function size:0x28 scope:weak align:4 +setUpdateTrMatrix__Q24Game8FakePikiFb = .text:0x8013F518; // type:function size:0x28 scope:weak align:4 +setMoveVelocity__Q24Game8FakePikiFb = .text:0x8013F540; // type:function size:0x28 scope:weak align:4 +setMapCollision__Q24Game8FakePikiFb = .text:0x8013F568; // type:function size:0x28 scope:weak align:4 +isZikatu__Q24Game8FakePikiFv = .text:0x8013F590; // type:function size:0xC scope:weak align:4 +setZikatu__Q24Game8FakePikiFb = .text:0x8013F59C; // type:function size:0x3C scope:weak align:4 +wasZikatu__Q24Game8FakePikiFv = .text:0x8013F5D8; // type:function size:0xC scope:weak align:4 +inWaterCallback__Q24Game8FakePikiFPQ24Game8WaterBox = .text:0x8013F5E4; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q24Game8FakePikiFv = .text:0x8013F5E8; // type:function size:0x4 scope:weak align:4 +onSetPosition__Q24Game8FakePikiFv = .text:0x8013F5EC; // type:function size:0x4 scope:weak align:4 +onSetPosition__Q24Game8FakePikiFR10Vector3 = .text:0x8013F5F0; // type:function size:0x44 scope:weak align:4 +getFaceDir__Q24Game8FakePikiFv = .text:0x8013F634; // type:function size:0x8 scope:weak align:4 +getVelocity__Q24Game8FakePikiFv = .text:0x8013F63C; // type:function size:0x1C scope:weak align:4 +setVelocity__Q24Game8FakePikiFR10Vector3 = .text:0x8013F658; // type:function size:0x1C scope:weak align:4 +getVelocityAt__Q24Game8FakePikiFR10Vector3R10Vector3 = .text:0x8013F674; // type:function size:0x1C scope:weak align:4 +getSound_PosPtr__Q24Game8FakePikiFv = .text:0x8013F690; // type:function size:0x8 scope:weak align:4 +isWalking__Q24Game8FakePikiFv = .text:0x8013F698; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q24Game8FakePikiFRCQ28SysShape8KeyEvent = .text:0x8013F6A0; // type:function size:0x4 scope:weak align:4 +__sinit_fakePiki_cpp = .text:0x8013F6A4; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game8FakePikiFRCQ28SysShape8KeyEvent = .text:0x8013F6CC; // type:function size:0x8 scope:weak align:4 +getShadowParam__Q24Game4NaviFRQ24Game11ShadowParam = .text:0x8013F6D4; // type:function size:0x50 scope:global align:4 +getLODSphere__Q24Game4NaviFRQ23Sys6Sphere = .text:0x8013F724; // type:function size:0x24 scope:global align:4 +__ct__Q24Game4NaviFv = .text:0x8013F748; // type:function size:0x208 scope:global align:4 +__ct__Q23efx11TNaviEffectFv = .text:0x8013F950; // type:function size:0x2B0 scope:weak align:4 +__dt__Q23efx10TChaseMtxTFv = .text:0x8013FC00; // type:function size:0x84 scope:weak align:4 +__ct__Q23efx7ContextFv = .text:0x8013FC84; // type:function size:0x50 scope:weak align:4 +__dt__Q23efx11TOneEmitterFv = .text:0x8013FCD4; // type:function size:0x8C scope:weak align:4 +__dt__Q23efx7ContextFv = .text:0x8013FD60; // type:function size:0x60 scope:weak align:4 +__dt__Q23efx12TFueactBiri2Fv = .text:0x8013FDC0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TFueactBiri1Fv = .text:0x8013FE5C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TFueactBiriBaseFv = .text:0x8013FEF8; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx13TFueactCircleFv = .text:0x8013FF7C; // type:function size:0x80 scope:weak align:4 +__dt__Q23efx15ContextChasePosFv = .text:0x8013FFFC; // type:function size:0x60 scope:weak align:4 +__ct__Q23efx15ContextChasePosFv = .text:0x8014005C; // type:function size:0x54 scope:weak align:4 +onInit__Q24Game4NaviFPQ24Game15CreatureInitArg = .text:0x801400B0; // type:function size:0x290 scope:global align:4 +getCreatureID__Q24Game4NaviFv = .text:0x80140340; // type:function size:0x8 scope:weak align:4 +start__Q24Game26StateMachineFPQ24Game4NaviiPQ24Game8StateArg = .text:0x80140348; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q24Game4NaviFR10Vector3 = .text:0x8014037C; // type:function size:0x88 scope:global align:4 +onKill__Q24Game4NaviFPQ24Game15CreatureKillArg = .text:0x80140404; // type:function size:0x40 scope:global align:4 +onKeyEvent__Q24Game4NaviFRCQ28SysShape8KeyEvent = .text:0x80140444; // type:function size:0xD4 scope:global align:4 +onKeyEvent__Q24Game9NaviStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80140518; // type:function size:0x4 scope:weak align:4 +getPosition__Q24Game4NaviFv = .text:0x8014051C; // type:function size:0x80 scope:global align:4 +onStickStart__Q24Game4NaviFPQ24Game8Creature = .text:0x8014059C; // type:function size:0x50 scope:global align:4 +onStickEnd__Q24Game4NaviFPQ24Game8Creature = .text:0x801405EC; // type:function size:0x58 scope:global align:4 +procActionButton__Q24Game4NaviFv = .text:0x80140644; // type:function size:0x654 scope:global align:4 +getAt__27MonoObjectMgrFi = .text:0x80140C98; // type:function size:0x10 scope:weak align:4 +isDone__36IteratorFv = .text:0x80140CA8; // type:function size:0x4C scope:weak align:4 +setupNukuAdjustArg__Q24Game4NaviFPQ34Game12ItemPikihead4ItemRQ24Game22NaviNukuAdjustStateArg = .text:0x80140CF4; // type:function size:0x138 scope:global align:4 +hasDope__Q24Game4NaviFi = .text:0x80140E2C; // type:function size:0x50 scope:global align:4 +getDopeCount__Q24Game4NaviFi = .text:0x80140E7C; // type:function size:0x44 scope:global align:4 +useDope__Q24Game4NaviFi = .text:0x80140EC0; // type:function size:0x4C scope:global align:4 +incDopeCount__Q24Game4NaviFi = .text:0x80140F0C; // type:function size:0xA0 scope:global align:4 +sendMessage__Q24Game15BaseGameSectionFRQ24Game11GameMessage = .text:0x80140FAC; // type:function size:0x8 scope:weak align:4 +applyDopes__Q24Game4NaviFiR10Vector3 = .text:0x80140FB4; // type:function size:0x2E0 scope:global align:4 +applyDopeSmoke__Q24Game4NaviFPQ24Game10CellObject = .text:0x80141294; // type:function size:0x1B0 scope:global align:4 +getStateID__Q24Game4NaviFv = .text:0x80141444; // type:function size:0x1C scope:global align:4 +transit__Q24Game4NaviFiPQ24Game8StateArg = .text:0x80141460; // type:function size:0x44 scope:global align:4 +getOlimarData__Q24Game4NaviFv = .text:0x801414A4; // type:function size:0xC scope:global align:4 +getJAIObject__Q24Game4NaviFv = .text:0x801414B0; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game4NaviFv = .text:0x801414C4; // type:function size:0x8 scope:global align:4 +wallCallback__Q24Game4NaviFR10Vector3 = .text:0x801414CC; // type:function size:0x44 scope:global align:4 +wallCallback__Q24Game9NaviStateFPQ24Game4NaviR10Vector3 = .text:0x80141510; // type:function size:0x4 scope:weak align:4 +bounceCallback__Q24Game4NaviFPQ23Sys8Triangle = .text:0x80141514; // type:function size:0x44 scope:global align:4 +bounceCallback__Q24Game9NaviStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x80141558; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game4NaviFRQ24Game9CollEvent = .text:0x8014155C; // type:function size:0x44 scope:global align:4 +collisionCallback__Q24Game9NaviStateFPQ24Game4NaviRQ24Game9CollEvent = .text:0x801415A0; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game4NaviFRQ24Game9PlatEvent = .text:0x801415A4; // type:function size:0x194 scope:global align:4 +viewEntryShape__Q24Game4NaviFR7MatrixfR10Vector3 = .text:0x80141738; // type:function size:0x4 scope:global align:4 +viewGetShape__Q24Game4NaviFv = .text:0x8014173C; // type:function size:0x8 scope:global align:4 +viewGetBaseScale__Q24Game4NaviFv = .text:0x80141744; // type:function size:0x1C scope:global align:4 +doEntry__Q24Game4NaviFv = .text:0x80141760; // type:function size:0x1F8 scope:global align:4 +doAnimation__Q24Game4NaviFv = .text:0x80141958; // type:function size:0x2C4 scope:global align:4 +updateCursor__Q24Game4NaviFv = .text:0x80141C1C; // type:function size:0x280 scope:global align:4 +doSimulation__Q24Game4NaviFf = .text:0x80141E9C; // type:function size:0x58 scope:global align:4 +doSetView__Q24Game4NaviFi = .text:0x80141EF4; // type:function size:0xB8 scope:global align:4 +doViewCalc__Q24Game4NaviFv = .text:0x80141FAC; // type:function size:0x3C scope:global align:4 +setLifeMax__Q24Game4NaviFv = .text:0x80141FE8; // type:function size:0x14 scope:global align:4 +getLifeRatio__Q24Game4NaviFv = .text:0x80141FFC; // type:function size:0x18 scope:global align:4 +getDownfloorMass__Q24Game4NaviFv = .text:0x80142014; // type:function size:0xAC scope:global align:4 +update__Q24Game4NaviFv = .text:0x801420C0; // type:function size:0x2A8 scope:global align:4 +vsUsableY__Q24Game9NaviStateFv = .text:0x80142368; // type:function size:0x8 scope:weak align:4 +openKanketuMenu__Q24Game15BaseGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller = .text:0x80142370; // type:function size:0x4 scope:weak align:4 +openCaveInMenu__Q24Game15BaseGameSectionFPQ34Game8ItemCave4Itemi = .text:0x80142374; // type:function size:0x4 scope:weak align:4 +openCaveMoreMenu__Q24Game15BaseGameSectionFPQ34Game8ItemHole4ItemP10Controller = .text:0x80142378; // type:function size:0x4 scope:weak align:4 +do_updateLookCreature__Q24Game4NaviFv = .text:0x8014237C; // type:function size:0x4 scope:global align:4 +inWaterCallback__Q24Game4NaviFPQ24Game8WaterBox = .text:0x80142380; // type:function size:0x9C scope:global align:4 +outWaterCallback__Q24Game4NaviFv = .text:0x8014241C; // type:function size:0x44 scope:global align:4 +ignoreAtari__Q24Game4NaviFPQ24Game8Creature = .text:0x80142460; // type:function size:0xB0 scope:global align:4 +ignoreAtari__Q24Game9NaviStateFPQ24Game8Creature = .text:0x80142510; // type:function size:0x8 scope:weak align:4 +on_movie_begin__Q24Game4NaviFb = .text:0x80142518; // type:function size:0x4C scope:global align:4 +on_movie_end__Q24Game4NaviFb = .text:0x80142564; // type:function size:0x48 scope:global align:4 +movieUserCommand__Q24Game4NaviFUlPQ24Game11MoviePlayer = .text:0x801425AC; // type:function size:0x27C scope:global align:4 +movieSetFaceDir__Q24Game4NaviFf = .text:0x80142828; // type:function size:0x28 scope:global align:4 +movieStartAnimation__Q24Game4NaviFUl = .text:0x80142850; // type:function size:0x4C scope:global align:4 +movieStartDemoAnimation__Q24Game4NaviFPQ28SysShape8AnimInfo = .text:0x8014289C; // type:function size:0xDC scope:global align:4 +movieSetTranslation__Q24Game4NaviFR10Vector3f = .text:0x80142978; // type:function size:0x88 scope:global align:4 +movieGotoPosition__Q24Game4NaviFR10Vector3 = .text:0x80142A00; // type:function size:0x12C scope:global align:4 +set_movie_draw__Q24Game4NaviFb = .text:0x80142B2C; // type:function size:0x1A8 scope:global align:4 +isWalking__Q24Game4NaviFv = .text:0x80142CD4; // type:function size:0x50 scope:global align:4 +setDeadLaydown__Q24Game4NaviFv = .text:0x80142D24; // type:function size:0x16C scope:global align:4 +checkHole__Q24Game4NaviFv = .text:0x80142E90; // type:function size:0x2DC scope:global align:4 +isDone__26IteratorFv = .text:0x8014316C; // type:function size:0x4C scope:weak align:4 +checkCave__Q24Game4NaviFv = .text:0x801431B8; // type:function size:0x2CC scope:global align:4 +checkBigFountain__Q24Game4NaviFv = .text:0x80143484; // type:function size:0x2B4 scope:global align:4 +checkOnyon__Q24Game4NaviFv = .text:0x80143738; // type:function size:0x368 scope:global align:4 +isDone__23IteratorFv = .text:0x80143AA0; // type:function size:0x4C scope:weak align:4 +getMapCollisionRadius__Q24Game4NaviFv = .text:0x80143AEC; // type:function size:0x8 scope:global align:4 +doDirectDraw__Q24Game4NaviFR8Graphics = .text:0x80143AF4; // type:function size:0x4 scope:global align:4 +disableController__Q24Game4NaviFv = .text:0x80143AF8; // type:function size:0xC scope:global align:4 +control__Q24Game4NaviFv = .text:0x80143B04; // type:function size:0xD8 scope:global align:4 +makeVelocity__Q24Game4NaviFv = .text:0x80143BDC; // type:function size:0x418 scope:global align:4 +reviseController__Q24Game4NaviFR10Vector3 = .text:0x80143FF4; // type:function size:0x1A4 scope:global align:4 +callPikis__Q24Game4NaviFv = .text:0x80144198; // type:function size:0x1D4 scope:global align:4 +invincible__Q24Game4NaviFv = .text:0x8014436C; // type:function size:0x8C scope:global align:4 +invincible__Q24Game9NaviStateFv = .text:0x801443F8; // type:function size:0x8 scope:weak align:4 +setInvincibleTimer__Q24Game4NaviFUc = .text:0x80144400; // type:function size:0x8 scope:global align:4 +startDamage__Q24Game4NaviFf = .text:0x80144408; // type:function size:0x208 scope:global align:4 +addDamage__Q24Game4NaviFfb = .text:0x80144610; // type:function size:0x214 scope:global align:4 +enterAllPikis__Q24Game4NaviFv = .text:0x80144824; // type:function size:0x29C scope:global align:4 +formationable__Q24Game4NaviFv = .text:0x80144AC0; // type:function size:0x14 scope:global align:4 +updateKaisanDisable__Q24Game4NaviFv = .text:0x80144AD4; // type:function size:0x70 scope:global align:4 +clearKaisanDisable__Q24Game4NaviFv = .text:0x80144B44; // type:function size:0xC scope:global align:4 +throwable__Q24Game4NaviFv = .text:0x80144B50; // type:function size:0x10 scope:global align:4 +startThrowDisable__Q24Game4NaviFv = .text:0x80144B60; // type:function size:0xC scope:global align:4 +updateThrowDisable__Q24Game4NaviFv = .text:0x80144B6C; // type:function size:0x3C scope:global align:4 +clearThrowDisable__Q24Game4NaviFv = .text:0x80144BA8; // type:function size:0xC scope:global align:4 +holeinAllPikis__Q24Game4NaviFR10Vector3 = .text:0x80144BB4; // type:function size:0x2FC scope:global align:4 +soft_transittable__Q24Game9PikiStateFi = .text:0x80144EB0; // type:function size:0x8 scope:weak align:4 +transittable__Q24Game9PikiStateFi = .text:0x80144EB8; // type:function size:0x8 scope:weak align:4 +fountainonAllPikis__Q24Game4NaviFR10Vector3 = .text:0x80144EC0; // type:function size:0x2F8 scope:global align:4 +demowaitAllPikis__Q24Game4NaviFv = .text:0x801451B8; // type:function size:0x2D4 scope:global align:4 +releasePikis__Q24Game4NaviFv = .text:0x8014548C; // type:function size:0x954 scope:global align:4 +releasable__Q24Game9PikiStateFv = .text:0x80145DE0; // type:function size:0x8 scope:weak align:4 +makeCStick__Q24Game4NaviFb = .text:0x80145DE8; // type:function size:0x920 scope:global align:4 +isCStickNetural__Q24Game4NaviFv = .text:0x80146708; // type:function size:0x64 scope:global align:4 +findNextThrowPiki__Q24Game4NaviFv = .text:0x8014676C; // type:function size:0x2BC scope:global align:4 +ogGetNextThrowPiki__Q24Game4NaviFv = .text:0x80146A28; // type:function size:0x2C scope:global align:4 +throwPiki__Q24Game4NaviFPQ24Game4PikiR10Vector3 = .text:0x80146A54; // type:function size:0x2C0 scope:global align:4 +commandOn__Q24Game4NaviFv = .text:0x80146D14; // type:function size:0x8 scope:global align:4 +getName__Q26PikiAI10ActFreeArgFv = .text:0x80146D1C; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI17CreatureActionArgFv = .text:0x80146D28; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI9ActionArgFv = .text:0x80146D34; // type:function size:0xC scope:weak align:4 +getName__Q24Game13NaviDamageArgFv = .text:0x80146D40; // type:function size:0xC scope:weak align:4 +__ml__23IteratorFv = .text:0x80146D4C; // type:function size:0x38 scope:weak align:4 +next__23IteratorFv = .text:0x80146D84; // type:function size:0xE4 scope:weak align:4 +first__23IteratorFv = .text:0x80146E68; // type:function size:0xDC scope:weak align:4 +__ml__26IteratorFv = .text:0x80146F44; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x80146F7C; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80147060; // type:function size:0xDC scope:weak align:4 +actCommon__Q24Game11GameMessageFPQ24Game15BaseGameSection = .text:0x8014713C; // type:function size:0x8 scope:weak align:4 +actSingle__Q24Game11GameMessageFPQ24Game17SingleGameSection = .text:0x80147144; // type:function size:0x8 scope:weak align:4 +actVs__Q24Game11GameMessageFPQ24Game13VsGameSection = .text:0x8014714C; // type:function size:0x8 scope:weak align:4 +__ml__36IteratorFv = .text:0x80147154; // type:function size:0x38 scope:weak align:4 +next__36IteratorFv = .text:0x8014718C; // type:function size:0xE4 scope:weak align:4 +first__36IteratorFv = .text:0x80147270; // type:function size:0xDC scope:weak align:4 +setVelocity__Q24Game4NaviFR10Vector3 = .text:0x8014734C; // type:function size:0x1C scope:weak align:4 +getCreatureName__Q24Game4NaviFv = .text:0x80147368; // type:function size:0x8 scope:weak align:4 +create__Q23efx7TFueactFPQ23efx3Arg = .text:0x80147370; // type:function size:0x9C scope:weak align:4 +fade__Q23efx7TFueactFv = .text:0x8014740C; // type:function size:0x64 scope:weak align:4 +fade__Q23efx13TFueactCircleFv = .text:0x80147470; // type:function size:0x3C scope:weak align:4 +forceKill__Q23efx7TFueactFv = .text:0x801474AC; // type:function size:0x64 scope:weak align:4 +forceKill__Q23efx13TFueactCircleFv = .text:0x80147510; // type:function size:0x3C scope:weak align:4 +init__Q24Game26StateMachineFPQ24Game4Navi = .text:0x8014754C; // type:function size:0x4 scope:weak align:4 +invoke__44Delegate1FPQ24Game10CellObject = .text:0x80147550; // type:function size:0x30 scope:weak align:4 +transit__Q24Game26StateMachineFPQ24Game4NaviiPQ24Game8StateArg = .text:0x80147580; // type:function size:0x9C scope:weak align:4 +init__Q24Game22FSMStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8014761C; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game22FSMStateFPQ24Game4Navi = .text:0x80147620; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26StateMachineFPQ24Game4Navi = .text:0x80147624; // type:function size:0x38 scope:weak align:4 +exec__Q24Game22FSMStateFPQ24Game4Navi = .text:0x8014765C; // type:function size:0x4 scope:weak align:4 +__sinit_navi_cpp = .text:0x80147660; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx12TFueactBiri1Fv = .text:0x80147688; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TFueactBiri2Fv = .text:0x80147690; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game4NaviFRCQ28SysShape8KeyEvent = .text:0x80147698; // type:function size:0x8 scope:weak align:4 +@784@12@viewEntryShape__Q24Game4NaviFR7MatrixfR10Vector3 = .text:0x801476A0; // type:function size:0x14 scope:weak align:4 +@784@12@viewGetShape__Q24Game4NaviFv = .text:0x801476B4; // type:function size:0x14 scope:weak align:4 +@784@12@viewGetBaseScale__Q24Game4NaviFv = .text:0x801476C8; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game4PikiFv = .text:0x801476DC; // type:function size:0x1A4 scope:global align:4 +__ct__Q23efx9TPkEffectFv = .text:0x80147880; // type:function size:0x2BC scope:weak align:4 +__dt__Q23efx12TPkBlackDownFv = .text:0x80147B3C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx7TPkMoeAFv = .text:0x80147BD8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TPkNageBlurFv = .text:0x80147C74; // type:function size:0x9C scope:weak align:4 +isWalking__Q24Game4PikiFv = .text:0x80147D10; // type:function size:0xB4 scope:global align:4 +getFormationSlotID__Q24Game4PikiFv = .text:0x80147DC4; // type:function size:0x50 scope:global align:4 +getCurrAction__Q24Game4PikiFv = .text:0x80147E14; // type:function size:0x24 scope:global align:4 +clearCurrAction__Q24Game4PikiFv = .text:0x80147E38; // type:function size:0x10 scope:global align:4 +getCurrActionID__Q24Game4PikiFv = .text:0x80147E48; // type:function size:0xC scope:global align:4 +onInit__Q24Game4PikiFPQ24Game15CreatureInitArg = .text:0x80147E54; // type:function size:0x280 scope:global align:4 +start__Q24Game26StateMachineFPQ24Game4PikiiPQ24Game8StateArg = .text:0x801480D4; // type:function size:0x34 scope:weak align:4 +onKill__Q24Game4PikiFPQ24Game15CreatureKillArg = .text:0x80148108; // type:function size:0x38C scope:global align:4 +cleanup__Q26PikiAI6ActionFv = .text:0x80148494; // type:function size:0x4 scope:weak align:4 +onSetPosition__Q24Game4PikiFv = .text:0x80148498; // type:function size:0x1C scope:global align:4 +getLODSphere__Q24Game4PikiFRQ23Sys6Sphere = .text:0x801484B4; // type:function size:0x24 scope:global align:4 +update__Q24Game4PikiFv = .text:0x801484D8; // type:function size:0x210 scope:global align:4 +dead__Q24Game9PikiStateFv = .text:0x801486E8; // type:function size:0x8 scope:weak align:4 +isAlive__Q24Game4PikiFv = .text:0x801486F0; // type:function size:0x58 scope:global align:4 +on_movie_begin__Q24Game4PikiFb = .text:0x80148748; // type:function size:0x4 scope:global align:4 +on_movie_end__Q24Game4PikiFb = .text:0x8014874C; // type:function size:0x64 scope:global align:4 +getCreatureID__Q24Game4PikiFv = .text:0x801487B0; // type:function size:0x8 scope:weak align:4 +movieUserCommand__Q24Game4PikiFUlPQ24Game11MoviePlayer = .text:0x801487B8; // type:function size:0x4 scope:global align:4 +movieStartAnimation__Q24Game4PikiFUl = .text:0x801487BC; // type:function size:0x38 scope:global align:4 +movieStartDemoAnimation__Q24Game4PikiFPQ28SysShape8AnimInfo = .text:0x801487F4; // type:function size:0x48 scope:global align:4 +movieSetTranslation__Q24Game4PikiFR10Vector3f = .text:0x8014883C; // type:function size:0x88 scope:global align:4 +movieGotoPosition__Q24Game4PikiFR10Vector3 = .text:0x801488C4; // type:function size:0x8 scope:global align:4 +startSound__Q24Game4PikiFUlb = .text:0x801488CC; // type:function size:0x40 scope:global align:4 +startSound__Q24Game4PikiFUlQ36PSGame5SeMgr7SetSeId = .text:0x8014890C; // type:function size:0x48 scope:global align:4 +startSound__Q24Game4PikiFPQ24Game8CreatureUlb = .text:0x80148954; // type:function size:0x70 scope:global align:4 +startSound__Q24Game4PikiFPQ24Game8CreatureUlQ36PSGame5SeMgr7SetSeId = .text:0x801489C4; // type:function size:0xCC scope:global align:4 +getJAIObject__Q24Game4PikiFv = .text:0x80148A90; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game4PikiFv = .text:0x80148AA4; // type:function size:0x8 scope:global align:4 +canVsBattle__Q24Game4PikiFv = .text:0x80148AAC; // type:function size:0x30 scope:global align:4 +battleOK__Q24Game9PikiStateFv = .text:0x80148ADC; // type:function size:0x8 scope:weak align:4 +getVsBattlePiki__Q24Game4PikiFv = .text:0x80148AE4; // type:function size:0x3C scope:global align:4 +attachRadar__Q24Game4PikiFb = .text:0x80148B20; // type:function size:0xB0 scope:global align:4 +inWaterCallback__Q24Game4PikiFPQ24Game8WaterBox = .text:0x80148BD0; // type:function size:0x148 scope:global align:4 +outWaterCallback__Q24Game4PikiFv = .text:0x80148D18; // type:function size:0x68 scope:global align:4 +outWaterCallback__Q24Game9PikiStateFPQ24Game4Piki = .text:0x80148D80; // type:function size:0x4 scope:weak align:4 +might_bury__Q24Game4PikiFv = .text:0x80148D84; // type:function size:0x154 scope:global align:4 +surviveDayEnd__Q24Game4PikiFv = .text:0x80148ED8; // type:function size:0x14 scope:global align:4 +onKeyEvent__Q24Game4PikiFRCQ28SysShape8KeyEvent = .text:0x80148EEC; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game9PikiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80148F30; // type:function size:0x4 scope:weak align:4 +getStateID__Q24Game4PikiFv = .text:0x80148F34; // type:function size:0x1C scope:global align:4 +getSpeed__Q24Game4PikiFf = .text:0x80148F50; // type:function size:0xC8 scope:global align:4 +setSpeed__Q24Game4PikiFfR10Vector3 = .text:0x80149018; // type:function size:0x1C0 scope:global align:4 +setSpeed__Q24Game4PikiFfR10Vector3f = .text:0x801491D8; // type:function size:0x20C scope:global align:4 +isPikmin__Q24Game4PikiFv = .text:0x801493E4; // type:function size:0x40 scope:global align:4 +isThrowable__Q24Game4PikiFv = .text:0x80149424; // type:function size:0x4C scope:global align:4 +throwable__Q24Game9PikiStateFv = .text:0x80149470; // type:function size:0x8 scope:weak align:4 +getDownfloorMass__Q24Game4PikiFv = .text:0x80149478; // type:function size:0x40 scope:global align:4 +gasInvicible__Q24Game4PikiFv = .text:0x801494B8; // type:function size:0x14 scope:global align:4 +setGasInvincible__Q24Game4PikiFUc = .text:0x801494CC; // type:function size:0x8 scope:global align:4 +updateGasInvincible__Q24Game4PikiFv = .text:0x801494D4; // type:function size:0x18 scope:global align:4 +getAttackDamage__Q24Game4PikiFv = .text:0x801494EC; // type:function size:0xF8 scope:global align:4 +getThrowHeight__Q24Game4PikiFv = .text:0x801495E4; // type:function size:0xC0 scope:global align:4 +getPelletCarryPower__Q24Game4PikiFv = .text:0x801496A4; // type:function size:0xC4 scope:global align:4 +onStickStartSelf__Q24Game4PikiFPQ24Game8Creature = .text:0x80149768; // type:function size:0x4 scope:global align:4 +onStickEndSelf__Q24Game4PikiFPQ24Game8Creature = .text:0x8014976C; // type:function size:0xE8 scope:global align:4 +stimulate__Q24Game4PikiFRQ24Game11Interaction = .text:0x80149854; // type:function size:0x88 scope:global align:4 +bounceCallback__Q24Game4PikiFPQ23Sys8Triangle = .text:0x801498DC; // type:function size:0xA4 scope:global align:4 +bounceCallback__Q26PikiAI6ActionFPQ24Game4PikiPQ23Sys8Triangle = .text:0x80149980; // type:function size:0x4 scope:weak align:4 +aiActive__Q24Game9PikiStateFv = .text:0x80149984; // type:function size:0x8 scope:weak align:4 +bounceCallback__Q24Game9PikiStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8014998C; // type:function size:0x4 scope:weak align:4 +wallCallback__Q24Game4PikiFR10Vector3 = .text:0x80149990; // type:function size:0xA0 scope:global align:4 +wallCallback__Q26PikiAI6ActionFR10Vector3 = .text:0x80149A30; // type:function size:0x4 scope:weak align:4 +wallCallback__Q24Game9PikiStateFPQ24Game4PikiR10Vector3 = .text:0x80149A34; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game4PikiFRQ24Game9CollEvent = .text:0x80149A38; // type:function size:0xAC scope:global align:4 +collisionCallback__Q26PikiAI6ActionFPQ24Game4PikiRQ24Game9CollEvent = .text:0x80149AE4; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game9PikiStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x80149AE8; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game4PikiFRQ24Game9PlatEvent = .text:0x80149AEC; // type:function size:0x178 scope:global align:4 +platCallback__Q26PikiAI6ActionFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x80149C64; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game9PikiStateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x80149C68; // type:function size:0x4 scope:weak align:4 +ignoreAtari__Q24Game4PikiFPQ24Game8Creature = .text:0x80149C6C; // type:function size:0x50 scope:global align:4 +ignoreAtari__Q24Game9PikiStateFPQ24Game4PikiPQ24Game8Creature = .text:0x80149CBC; // type:function size:0x8 scope:weak align:4 +setFreeLightEffect__Q24Game4PikiFb = .text:0x80149CC4; // type:function size:0x60 scope:global align:4 +setDopeEffect__Q24Game4PikiFb = .text:0x80149D24; // type:function size:0x84 scope:global align:4 +clearDope__Q24Game4PikiFv = .text:0x80149DA8; // type:function size:0x88 scope:global align:4 +extendDopeTime__Q24Game4PikiFv = .text:0x80149E30; // type:function size:0x14 scope:global align:4 +startDope__Q24Game4PikiFi = .text:0x80149E44; // type:function size:0x19C scope:global align:4 +doped__Q24Game4PikiFv = .text:0x80149FE0; // type:function size:0x18 scope:global align:4 +initColor__Q24Game4PikiFv = .text:0x80149FF8; // type:function size:0x40 scope:global align:4 +setPastel__Q24Game4PikiFb = .text:0x8014A038; // type:function size:0x100 scope:global align:4 +getShadowParam__Q24Game4PikiFRQ24Game11ShadowParam = .text:0x8014A138; // type:function size:0xD0 scope:global align:4 +isMyPikmin__Q24Game4PikiFPQ24Game8Creature = .text:0x8014A208; // type:function size:0x80 scope:global align:4 +isTekiFollowAI__Q24Game4PikiFv = .text:0x8014A288; // type:function size:0x18 scope:global align:4 +doColorChange__Q24Game4PikiFv = .text:0x8014A2A0; // type:function size:0xEC scope:global align:4 +doDebugDL__Q24Game4PikiFv = .text:0x8014A38C; // type:function size:0x2C scope:global align:4 +startMotion__Q24Game4PikiFiiPQ28SysShape14MotionListenerPQ28SysShape14MotionListener = .text:0x8014A3B8; // type:function size:0xF8 scope:global align:4 +doAnimation__Q24Game4PikiFv = .text:0x8014A4B0; // type:function size:0xE4 scope:global align:4 +doDirectDraw__Q24Game4PikiFR8Graphics = .text:0x8014A594; // type:function size:0x4 scope:global align:4 +getBaseScale__Q24Game4PikiFv = .text:0x8014A598; // type:function size:0x28 scope:global align:4 +changeShape__Q24Game4PikiFi = .text:0x8014A5C0; // type:function size:0x1B0 scope:global align:4 +changeHappa__Q24Game4PikiFi = .text:0x8014A770; // type:function size:0x8 scope:global align:4 +do_updateLookCreature__Q24Game4PikiFv = .text:0x8014A778; // type:function size:0x344 scope:global align:4 +setTekiKillID__Q24Game4PikiFi = .text:0x8014AABC; // type:function size:0x14 scope:global align:4 +deferPikiCollision__Q24Game4PikiFv = .text:0x8014AAD0; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q24Game4PikiFv = .text:0x8014AAD8; // type:function size:0x8 scope:weak align:4 +kill__27MonoObjectMgrFPQ24Game4Piki = .text:0x8014AAE0; // type:function size:0x54 scope:weak align:4 +init__Q24Game26StateMachineFPQ24Game4Piki = .text:0x8014AB34; // type:function size:0x4 scope:weak align:4 +transit__Q24Game26StateMachineFPQ24Game4PikiiPQ24Game8StateArg = .text:0x8014AB38; // type:function size:0x9C scope:weak align:4 +init__Q24Game22FSMStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8014ABD4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game22FSMStateFPQ24Game4Piki = .text:0x8014ABD8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26StateMachineFPQ24Game4Piki = .text:0x8014ABDC; // type:function size:0x38 scope:weak align:4 +exec__Q24Game22FSMStateFPQ24Game4Piki = .text:0x8014AC14; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x8014AC18; // type:function size:0x170 scope:local align:4 +@4@__dt__Q23efx7TPkMoeAFv = .text:0x8014AD88; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TPkBlackDownFv = .text:0x8014AD90; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game4PikiFRCQ28SysShape8KeyEvent = .text:0x8014AD98; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game15BaseGameSectionFP7JKRHeap = .text:0x8014ADA0; // type:function size:0x21C scope:global align:4 +__dt__11WipeInFaderFv = .text:0x8014AFBC; // type:function size:0x70 scope:weak align:4 +__dt__12WipeOutFaderFv = .text:0x8014B02C; // type:function size:0x70 scope:weak align:4 +__dt__8WipeBaseFv = .text:0x8014B09C; // type:function size:0x60 scope:weak align:4 +useSpecificFBTexture__Q24Game15BaseGameSectionFP10JUTTexture = .text:0x8014B0FC; // type:function size:0x74 scope:global align:4 +restoreFBTexture__Q24Game15BaseGameSectionFv = .text:0x8014B170; // type:function size:0x6C scope:global align:4 +__dt__Q24Game15BaseGameSectionFv = .text:0x8014B1DC; // type:function size:0x114 scope:global align:4 +loadSync__Q24Game15BaseGameSectionFP9IDelegateb = .text:0x8014B2F0; // type:function size:0x50 scope:global align:4 +waitSyncLoad__Q24Game15BaseGameSectionFb = .text:0x8014B340; // type:function size:0x120 scope:global align:4 +dvdloadGameSystem__Q24Game15BaseGameSectionFv = .text:0x8014B460; // type:function size:0x50 scope:global align:4 +init__Q24Game15BaseGameSectionFv = .text:0x8014B4B0; // type:function size:0x390 scope:global align:4 +onInit__Q24Game15BaseGameSectionFv = .text:0x8014B840; // type:function size:0x4 scope:weak align:4 +drawInit__Q24Game15BaseGameSectionFR8GraphicsQ27Section13EDrawInitMode = .text:0x8014B844; // type:function size:0x34 scope:global align:4 +section_fadeout__Q24Game15BaseGameSectionFv = .text:0x8014B878; // type:function size:0x4 scope:weak align:4 +doUpdate__Q24Game15BaseGameSectionFv = .text:0x8014B87C; // type:function size:0x3A8 scope:global align:4 +onUpdate__Q24Game15BaseGameSectionFv = .text:0x8014BC24; // type:function size:0x4 scope:weak align:4 +doDraw__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014BC28; // type:function size:0x170 scope:global align:4 +pre2dDraw__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014BD98; // type:function size:0x4 scope:weak align:4 +movieDone__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl = .text:0x8014BD9C; // type:function size:0x78 scope:global align:4 +onMovieDone__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl = .text:0x8014BE14; // type:function size:0x4 scope:weak align:4 +onMovieCommand__Q24Game15BaseGameSectionFi = .text:0x8014BE18; // type:function size:0x8C scope:global align:4 +initJ3D__Q24Game15BaseGameSectionFv = .text:0x8014BEA4; // type:function size:0x450 scope:global align:4 +initResources__Q24Game15BaseGameSectionFv = .text:0x8014C2F4; // type:function size:0x34 scope:global align:4 +initViewports__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014C328; // type:function size:0x1E4 scope:global align:4 +__dt__12LookAtCameraFv = .text:0x8014C50C; // type:function size:0xC0 scope:weak align:4 +initGenerators__Q24Game15BaseGameSectionFv = .text:0x8014C5CC; // type:function size:0x1120 scope:global align:4 +advanceDayCount__Q24Game15BaseGameSectionFv = .text:0x8014D6EC; // type:function size:0xA4 scope:global align:4 +saveToGeneratorCache__Q24Game15BaseGameSectionFPQ24Game10CourseInfo = .text:0x8014D790; // type:function size:0xD4 scope:global align:4 +pmTogglePlayer__Q24Game15BaseGameSectionFv = .text:0x8014D864; // type:function size:0xAC scope:global align:4 +onTogglePlayer__Q24Game15BaseGameSectionFv = .text:0x8014D910; // type:function size:0x4 scope:weak align:4 +onPlayerJoin__Q24Game15BaseGameSectionFv = .text:0x8014D914; // type:function size:0x4 scope:weak align:4 +setPlayerMode__Q24Game15BaseGameSectionFi = .text:0x8014D918; // type:function size:0x2B8 scope:global align:4 +split2__8SplitterFf = .text:0x8014DBD0; // type:function size:0x4 scope:weak align:4 +onCameraBlendFinished__Q24Game15BaseGameSectionFPQ24Game9CameraArg = .text:0x8014DBD4; // type:function size:0x14C scope:global align:4 +setFixNearFar__Q24Game15BaseGameSectionFbff = .text:0x8014DD20; // type:function size:0x68 scope:global align:4 +setCamController__Q24Game15BaseGameSectionFv = .text:0x8014DD88; // type:function size:0x210 scope:global align:4 +on_setCamController__Q24Game15BaseGameSectionFi = .text:0x8014DF98; // type:function size:0x4 scope:weak align:4 +setDefaultPSSceneInfo__Q24Game15BaseGameSectionFRQ26PSGame9SceneInfo = .text:0x8014DF9C; // type:function size:0x184 scope:global align:4 +getSoundMatrixPtr__6CameraFv = .text:0x8014E120; // type:function size:0x8 scope:weak align:4 +getSoundPositionPtr__6CameraFv = .text:0x8014E128; // type:function size:0x8 scope:weak align:4 +prepareHoleIn__Q24Game15BaseGameSectionFR10Vector3b = .text:0x8014E130; // type:function size:0x68C scope:global align:4 +prepareFountainOn__Q24Game15BaseGameSectionFR10Vector3 = .text:0x8014E7BC; // type:function size:0x714 scope:global align:4 +initLights__Q24Game15BaseGameSectionFv = .text:0x8014EED0; // type:function size:0x74 scope:global align:4 +draw3D__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014EF44; // type:function size:0x20 scope:global align:4 +drawParticle__Q24Game15BaseGameSectionFR8Graphicsi = .text:0x8014EF64; // type:function size:0x1D4 scope:global align:4 +draw_Ogawa2D__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014F138; // type:function size:0xA0 scope:global align:4 +test_draw_treasure_detector__Q24Game15BaseGameSectionFv = .text:0x8014F1D8; // type:function size:0x4 scope:global align:4 +draw2D__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014F1DC; // type:function size:0x1BC scope:global align:4 +directDraw__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014F398; // type:function size:0xB8 scope:global align:4 +directDrawPost__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014F450; // type:function size:0x78 scope:global align:4 +j3dSetView__Q24Game15BaseGameSectionFP8Viewportb = .text:0x8014F4C8; // type:function size:0x54 scope:global align:4 +doSimulation__Q24Game15BaseGameSectionFf = .text:0x8014F51C; // type:function size:0x30 scope:global align:4 +doSimpleDraw__Q24Game15BaseGameSectionFP8Viewport = .text:0x8014F54C; // type:function size:0x30 scope:global align:4 +doAnimation__Q24Game15BaseGameSectionFv = .text:0x8014F57C; // type:function size:0x1D8 scope:global align:4 +changeGeneratorCursor__Q24Game15BaseGameSectionFR10Vector3 = .text:0x8014F754; // type:function size:0x4C scope:global align:4 +doEntry__Q24Game15BaseGameSectionFv = .text:0x8014F7A0; // type:function size:0xC8 scope:global align:4 +doSetView__Q24Game15BaseGameSectionFi = .text:0x8014F868; // type:function size:0x100 scope:global align:4 +doViewCalc__Q24Game15BaseGameSectionFv = .text:0x8014F968; // type:function size:0xC8 scope:global align:4 +updateBlendCamera__Q24Game15BaseGameSectionFv = .text:0x8014FA30; // type:function size:0x174 scope:global align:4 +setSplitter__Q24Game15BaseGameSectionFb = .text:0x8014FBA4; // type:function size:0x6C scope:global align:4 +updateSplitter__Q24Game15BaseGameSectionFv = .text:0x8014FC10; // type:function size:0x134 scope:global align:4 +doDirectDrawPost__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014FD44; // type:function size:0x58 scope:global align:4 +doDirectDraw__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014FD9C; // type:function size:0x4 scope:global align:4 +onStartHeap__Q24Game15BaseGameSectionFv = .text:0x8014FDA0; // type:function size:0x4 scope:weak align:4 +clearHeap__Q24Game15BaseGameSectionFv = .text:0x8014FDA4; // type:function size:0x2A8 scope:global align:4 +__dt__10ControllerFv = .text:0x8015004C; // type:function size:0x60 scope:weak align:4 +onClearHeap__Q24Game15BaseGameSectionFv = .text:0x801500AC; // type:function size:0x4 scope:weak align:4 +startFadeout__Q24Game15BaseGameSectionFf = .text:0x801500B0; // type:function size:0x2C scope:global align:4 +startFadein__Q24Game15BaseGameSectionFf = .text:0x801500DC; // type:function size:0x2C scope:global align:4 +startFadeoutin__Q24Game15BaseGameSectionFf = .text:0x80150108; // type:function size:0x2C scope:global align:4 +startFadeblack__Q24Game15BaseGameSectionFv = .text:0x80150134; // type:function size:0x3C scope:global align:4 +startFadewhite__Q24Game15BaseGameSectionFv = .text:0x80150170; // type:function size:0x3C scope:global align:4 +setupFixMemory__Q24Game15BaseGameSectionFv = .text:0x801501AC; // type:function size:0x1C0 scope:global align:4 +setupFixMemory_dvdload__Q24Game15BaseGameSectionFv = .text:0x8015036C; // type:function size:0x334 scope:global align:4 +__dt__15ModelEffectDataFv = .text:0x801506A0; // type:function size:0x60 scope:weak align:4 +enableAllocHalt__Q24Game15BaseGameSectionFv = .text:0x80150700; // type:function size:0x8 scope:global align:4 +disableAllocHalt__Q24Game15BaseGameSectionFv = .text:0x80150708; // type:function size:0x8 scope:global align:4 +setupFloatMemory__Q24Game15BaseGameSectionFv = .text:0x80150710; // type:function size:0xCC0 scope:global align:4 +onSetSoundScene__Q24Game15BaseGameSectionFv = .text:0x801513D0; // type:function size:0x4 scope:weak align:4 +getCurrFloor__Q24Game15BaseGameSectionFv = .text:0x801513D4; // type:function size:0x8 scope:weak align:4 +challengeDisablePelplant__Q24Game15BaseGameSectionFv = .text:0x801513DC; // type:function size:0x8 scope:weak align:4 +getVsEditNumber__Q24Game15BaseGameSectionFv = .text:0x801513E4; // type:function size:0x8 scope:weak align:4 +getEditorFilename__Q24Game15BaseGameSectionFv = .text:0x801513EC; // type:function size:0x8 scope:weak align:4 +getCaveFilename__Q24Game15BaseGameSectionFv = .text:0x801513F4; // type:function size:0xC scope:weak align:4 +onSetupFloatMemory__Q24Game15BaseGameSectionFv = .text:0x80151400; // type:function size:0x4 scope:weak align:4 +isDevelopSection__Q24Game15BaseGameSectionFv = .text:0x80151404; // type:function size:0x8 scope:weak align:4 +__dt__Q28PSSystem28SingletonBaseFv = .text:0x8015140C; // type:function size:0x50 scope:weak align:4 +setDrawBuffer__Q24Game15BaseGameSectionFi = .text:0x8015145C; // type:function size:0xA4 scope:global align:4 +postSetupFloatMemory__Q24Game15BaseGameSectionFv = .text:0x80151500; // type:function size:0x30 scope:global align:4 +setupJUTTextures__Q24Game6MapMgrFv = .text:0x80151530; // type:function size:0x4 scope:weak align:4 +createFallPikminSound__Q24Game15BaseGameSectionFv = .text:0x80151534; // type:function size:0x200 scope:global align:4 +captureRadarmap__Q24Game15BaseGameSectionFR8Graphics = .text:0x80151734; // type:function size:0x4 scope:global align:4 +satisfy__27PikiCond_ExceptChappyPikminFPQ24Game4Piki = .text:0x80151738; // type:function size:0x18 scope:weak align:4 +__dt__17Container<5Plane>Fv = .text:0x80151750; // type:function size:0x70 scope:weak align:4 +__dt__22ArrayContainer<5Plane>Fv = .text:0x801517C0; // type:function size:0x80 scope:weak align:4 +readObject__9CullPlaneFR6StreamR5Plane = .text:0x80151840; // type:function size:0x4 scope:weak align:4 +writeObject__9CullPlaneFR6StreamR5Plane = .text:0x80151844; // type:function size:0x4 scope:weak align:4 +__dt__9CullPlaneFv = .text:0x80151848; // type:function size:0x90 scope:weak align:4 +forceFinish__Q24Game15BaseGameSectionFv = .text:0x801518D8; // type:function size:0x10 scope:weak align:4 +addChallengeScore__Q24Game15BaseGameSectionFi = .text:0x801518E8; // type:function size:0x4 scope:weak align:4 +startMainBgm__Q24Game15BaseGameSectionFv = .text:0x801518EC; // type:function size:0x4 scope:weak align:4 +goNextFloor__Q24Game15BaseGameSectionFPQ34Game8ItemHole4Item = .text:0x801518F0; // type:function size:0x4 scope:weak align:4 +goCave__Q24Game15BaseGameSectionFPQ34Game8ItemCave4Item = .text:0x801518F4; // type:function size:0x4 scope:weak align:4 +goMainMap__Q24Game15BaseGameSectionFPQ34Game15ItemBigFountain4Item = .text:0x801518F8; // type:function size:0x4 scope:weak align:4 +getCaveID__Q24Game15BaseGameSectionFv = .text:0x801518FC; // type:function size:0xC scope:weak align:4 +getCurrentCourseInfo__Q24Game15BaseGameSectionFv = .text:0x80151908; // type:function size:0x8 scope:weak align:4 +openContainerWindow__Q24Game15BaseGameSectionFv = .text:0x80151910; // type:function size:0x8 scope:weak align:4 +closeContainerWindow__Q24Game15BaseGameSectionFv = .text:0x80151918; // type:function size:0x4 scope:weak align:4 +playMovie_firstexperience__Q24Game15BaseGameSectionFiPQ24Game8Creature = .text:0x8015191C; // type:function size:0x4 scope:weak align:4 +playMovie_bootup__Q24Game15BaseGameSectionFPQ24Game5Onyon = .text:0x80151920; // type:function size:0x4 scope:weak align:4 +playMovie_helloPikmin__Q24Game15BaseGameSectionFPQ24Game4Piki = .text:0x80151924; // type:function size:0x4 scope:weak align:4 +disableTimer__Q24Game15BaseGameSectionFUl = .text:0x80151928; // type:function size:0x4 scope:weak align:4 +onMovieStart__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl = .text:0x8015192C; // type:function size:0x4 scope:weak align:4 +gmOrimaDown__Q24Game15BaseGameSectionFi = .text:0x80151930; // type:function size:0x4 scope:weak align:4 +gmPikminZero__Q24Game15BaseGameSectionFv = .text:0x80151934; // type:function size:0x4 scope:weak align:4 +drawInit__7SectionFR8Graphics = .text:0x80151938; // type:function size:0x4 scope:weak align:4 +doExit__7SectionFv = .text:0x8015193C; // type:function size:0x4 scope:weak align:4 +forceReset__7SectionFv = .text:0x80151940; // type:function size:0x8 scope:weak align:4 +getCurrentSection__7SectionFv = .text:0x80151948; // type:function size:0x4 scope:weak align:4 +doLoadingStart__7SectionFv = .text:0x8015194C; // type:function size:0x4 scope:weak align:4 +doLoading__7SectionFv = .text:0x80151950; // type:function size:0x8 scope:weak align:4 +isFinishable__7SectionFv = .text:0x80151958; // type:function size:0x8 scope:weak align:4 +writeObject__22ArrayContainer<5Plane>FR6StreamR5Plane = .text:0x80151960; // type:function size:0x4 scope:weak align:4 +readObject__22ArrayContainer<5Plane>FR6StreamR5Plane = .text:0x80151964; // type:function size:0x4 scope:weak align:4 +write__22ArrayContainer<5Plane>FR6Stream = .text:0x80151968; // type:function size:0xD4 scope:weak align:4 +alloc__22ArrayContainer<5Plane>Fi = .text:0x80151A3C; // type:function size:0x68 scope:weak align:4 +setArray__22ArrayContainer<5Plane>FP5Planei = .text:0x80151AA4; // type:function size:0x10 scope:weak align:4 +get__22ArrayContainer<5Plane>FPv = .text:0x80151AB4; // type:function size:0x10 scope:weak align:4 +getNext__22ArrayContainer<5Plane>FPv = .text:0x80151AC4; // type:function size:0x8 scope:weak align:4 +getStart__22ArrayContainer<5Plane>Fv = .text:0x80151ACC; // type:function size:0x8 scope:weak align:4 +getEnd__22ArrayContainer<5Plane>Fv = .text:0x80151AD4; // type:function size:0x8 scope:weak align:4 +getAt__22ArrayContainer<5Plane>Fi = .text:0x80151ADC; // type:function size:0x10 scope:weak align:4 +getTo__22ArrayContainer<5Plane>Fv = .text:0x80151AEC; // type:function size:0x8 scope:weak align:4 +getObject__17Container<5Plane>FPv = .text:0x80151AF4; // type:function size:0x2C scope:weak align:4 +getAt__17Container<5Plane>Fi = .text:0x80151B20; // type:function size:0x8 scope:weak align:4 +getTo__17Container<5Plane>Fv = .text:0x80151B28; // type:function size:0x8 scope:weak align:4 +invoke__63Delegate3FPQ24Game11MovieConfigUlUl = .text:0x80151B30; // type:function size:0x30 scope:weak align:4 +invoke__49Delegate1>FR10Vector3 = .text:0x80151B60; // type:function size:0x30 scope:weak align:4 +invoke__54Delegate1FPQ24Game9CameraArg = .text:0x80151B90; // type:function size:0x30 scope:weak align:4 +invoke__45Delegate1>FR7Rect = .text:0x80151BC0; // type:function size:0x30 scope:weak align:4 +invoke__34DelegateFv = .text:0x80151BF0; // type:function size:0x30 scope:weak align:4 +addOne__22ArrayContainer<5Plane>FR5Plane = .text:0x80151C20; // type:function size:0x48 scope:weak align:4 +__ct__5PlaneFv = .text:0x80151C68; // type:function size:0x1C scope:weak align:4 +read__22ArrayContainer<5Plane>FR6Stream = .text:0x80151C84; // type:function size:0xB0 scope:weak align:4 +alloc__27MonoObjectMgrFi = .text:0x80151D34; // type:function size:0x188 scope:weak align:4 +onAlloc__27MonoObjectMgrFv = .text:0x80151EBC; // type:function size:0x4 scope:weak align:4 +alloc__27MonoObjectMgrFi = .text:0x80151EC0; // type:function size:0x188 scope:weak align:4 +onAlloc__27MonoObjectMgrFv = .text:0x80152048; // type:function size:0x4 scope:weak align:4 +__sinit_baseGameSection_cpp = .text:0x8015204C; // type:function size:0x28 scope:local align:4 +__dt__Q24Game17SingleGameSectionFv = .text:0x80152074; // type:function size:0x84 scope:global align:4 +startMainBgm__Q24Game17SingleGameSectionFv = .text:0x801520F8; // type:function size:0x184 scope:global align:4 +isGameScene__Q23PSM9SceneBaseFv = .text:0x8015227C; // type:function size:0x8 scope:weak align:4 +init__Q34Game10SingleGame3FSMFPQ24Game17SingleGameSection = .text:0x80152284; // type:function size:0x2A0 scope:global align:4 +draw__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80152524; // type:function size:0x4 scope:weak align:4 +transit__Q34Game10SingleGame3FSMFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x80152528; // type:function size:0x20 scope:global align:4 +getState__Q34Game10SingleGame3FSMFi = .text:0x80152548; // type:function size:0x40 scope:global align:4 +accountEarnings__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game16PelletCropMemoryb = .text:0x80152588; // type:function size:0x200 scope:global align:4 +init__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80152788; // type:function size:0x160 scope:global align:4 +exec__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSection = .text:0x801528E8; // type:function size:0xB4 scope:global align:4 +transit__Q24Game36FSMStateFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x8015299C; // type:function size:0x30 scope:weak align:4 +draw__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x801529CC; // type:function size:0x3C scope:global align:4 +cleanup__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSection = .text:0x80152A08; // type:function size:0x34 scope:global align:4 +__ct__Q24Game17SingleGameSectionFP7JKRHeap = .text:0x80152A3C; // type:function size:0xE0 scope:global align:4 +section_fadeout__Q24Game17SingleGameSectionFv = .text:0x80152B1C; // type:function size:0x34 scope:global align:4 +on_section_fadeout__Q34Game10SingleGame5StateFPQ24Game17SingleGameSection = .text:0x80152B50; // type:function size:0x4 scope:weak align:4 +flow_goto_title__Q24Game17SingleGameSectionFv = .text:0x80152B54; // type:function size:0xC scope:global align:4 +onInit__Q24Game17SingleGameSectionFv = .text:0x80152B60; // type:function size:0x188 scope:global align:4 +start__Q24Game40StateMachineFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x80152CE8; // type:function size:0x34 scope:weak align:4 +doUpdate__Q24Game17SingleGameSectionFv = .text:0x80152D1C; // type:function size:0xEC scope:global align:4 +on_demo_timer__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionUl = .text:0x80152E08; // type:function size:0x4 scope:weak align:4 +doDraw__Q24Game17SingleGameSectionFR8Graphics = .text:0x80152E0C; // type:function size:0x50 scope:global align:4 +on_setCamController__Q24Game17SingleGameSectionFi = .text:0x80152E5C; // type:function size:0x5C scope:global align:4 +onSetSoundScene__Q24Game17SingleGameSectionFv = .text:0x80152EB8; // type:function size:0x260 scope:global align:4 +getCaveID__Q24Game17SingleGameSectionFv = .text:0x80153118; // type:function size:0x8 scope:weak align:4 +onSetupFloatMemory__Q24Game17SingleGameSectionFv = .text:0x80153120; // type:function size:0x2A0 scope:global align:4 +onClearHeap__Q24Game17SingleGameSectionFv = .text:0x801533C0; // type:function size:0x50 scope:global align:4 +onStartHeap__Q24Game17SingleGameSectionFv = .text:0x80153410; // type:function size:0xC scope:global align:4 +gmOrimaDown__Q24Game17SingleGameSectionFi = .text:0x8015341C; // type:function size:0x44 scope:global align:4 +onOrimaDown__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectioni = .text:0x80153460; // type:function size:0x4 scope:weak align:4 +gmPikminZero__Q24Game17SingleGameSectionFv = .text:0x80153464; // type:function size:0x4 scope:global align:4 +enableTimer__Q24Game17SingleGameSectionFfUl = .text:0x80153468; // type:function size:0x20 scope:global align:4 +disableTimer__Q24Game17SingleGameSectionFUl = .text:0x80153488; // type:function size:0x80 scope:global align:4 +onMovieStart__Q24Game17SingleGameSectionFPQ24Game11MovieConfigUlUl = .text:0x80153508; // type:function size:0x54 scope:global align:4 +onMovieStart__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8015355C; // type:function size:0x4 scope:weak align:4 +onMovieDone__Q24Game17SingleGameSectionFPQ24Game11MovieConfigUlUl = .text:0x80153560; // type:function size:0x64 scope:global align:4 +onMovieDone__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x801535C4; // type:function size:0x4 scope:weak align:4 +onMovieCommand__Q24Game17SingleGameSectionFi = .text:0x801535C8; // type:function size:0x5C scope:global align:4 +onMovieCommand__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectioni = .text:0x80153624; // type:function size:0x4 scope:weak align:4 +playMovie_bootup__Q24Game17SingleGameSectionFPQ24Game5Onyon = .text:0x80153628; // type:function size:0x240 scope:global align:4 +getFaceDir__Q24Game5OnyonFv = .text:0x80153868; // type:function size:0x8 scope:weak align:4 +playMovie_helloPikmin__Q24Game17SingleGameSectionFPQ24Game4Piki = .text:0x80153870; // type:function size:0x454 scope:global align:4 +playMovie_firstexperience__Q24Game17SingleGameSectionFiPQ24Game8Creature = .text:0x80153CC4; // type:function size:0x4 scope:global align:4 +saveMainMapSituation__Q24Game17SingleGameSectionFb = .text:0x80153CC8; // type:function size:0x2A0 scope:global align:4 +loadMainMapSituation__Q24Game17SingleGameSectionFv = .text:0x80153F68; // type:function size:0x30 scope:global align:4 +clearCaveMenus__Q24Game17SingleGameSectionFv = .text:0x80153F98; // type:function size:0x18 scope:global align:4 +openCaveInMenu__Q24Game17SingleGameSectionFPQ34Game8ItemCave4Itemi = .text:0x80153FB0; // type:function size:0x418 scope:global align:4 +getCurrentCourseInfo__Q24Game17SingleGameSectionFv = .text:0x801543C8; // type:function size:0x8 scope:weak align:4 +openCaveMoreMenu__Q24Game17SingleGameSectionFPQ34Game8ItemHole4ItemP10Controller = .text:0x801543D0; // type:function size:0x19C scope:global align:4 +saveCaveMore__Q24Game17SingleGameSectionFv = .text:0x8015456C; // type:function size:0x2C scope:global align:4 +openKanketuMenu__Q24Game17SingleGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller = .text:0x80154598; // type:function size:0x184 scope:global align:4 +updateCaveMenus__Q24Game17SingleGameSectionFv = .text:0x8015471C; // type:function size:0x300 scope:global align:4 +goNextFloor__Q24Game17SingleGameSectionFPQ34Game8ItemHole4Item = .text:0x80154A1C; // type:function size:0x40 scope:global align:4 +onNextFloor__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game8ItemHole4Item = .text:0x80154A5C; // type:function size:0x4 scope:weak align:4 +goCave__Q24Game17SingleGameSectionFPQ34Game8ItemCave4Item = .text:0x80154A60; // type:function size:0x74 scope:global align:4 +onHoleIn__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game8ItemCave4Item = .text:0x80154AD4; // type:function size:0x4 scope:weak align:4 +goMainMap__Q24Game17SingleGameSectionFPQ34Game15ItemBigFountain4Item = .text:0x80154AD8; // type:function size:0x48 scope:global align:4 +onFountainReturn__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game15ItemBigFountain4Item = .text:0x80154B20; // type:function size:0x4 scope:weak align:4 +setupMainMapGames__Q24Game17SingleGameSectionFv = .text:0x80154B24; // type:function size:0x20 scope:global align:4 +setupCaveGames__Q24Game17SingleGameSectionFv = .text:0x80154B44; // type:function size:0x20 scope:global align:4 +createFallPikmins__Q24Game17SingleGameSectionFv = .text:0x80154B64; // type:function size:0x474 scope:global align:4 +setDispMemberSMenu__Q24Game17SingleGameSectionFRQ32og6Screen18DispMemberSMenuAll = .text:0x80154FD8; // type:function size:0x504 scope:global align:4 +__cl__Q34Game8GameStat11PikiCounterFi = .text:0x801554DC; // type:function size:0x10 scope:weak align:4 +updateMainMapScreen__Q24Game17SingleGameSectionFv = .text:0x801554EC; // type:function size:0x58C scope:global align:4 +drawMainMapScreen__Q24Game17SingleGameSectionFv = .text:0x80155A78; // type:function size:0x4 scope:global align:4 +updateCaveScreen__Q24Game17SingleGameSectionFv = .text:0x80155A7C; // type:function size:0x4D8 scope:global align:4 +getCurrFloor__Q24Game17SingleGameSectionFv = .text:0x80155F54; // type:function size:0x8 scope:weak align:4 +drawCaveScreen__Q24Game17SingleGameSectionFv = .text:0x80155F5C; // type:function size:0x4 scope:global align:4 +newCaveOtakaraEarningsAndDrops__Q24Game17SingleGameSectionFv = .text:0x80155F60; // type:function size:0x8C scope:global align:4 +clearCaveOtakaraEarningsAndDrops__Q24Game17SingleGameSectionFv = .text:0x80155FEC; // type:function size:0x50 scope:global align:4 +getSize__Q32og6Screen14DispMemberCaveFv = .text:0x8015603C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen14DispMemberCaveFv = .text:0x80156044; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen14DispMemberCaveFv = .text:0x80156050; // type:function size:0x10 scope:weak align:4 +doSetSubMemberAll__Q32og6Screen14DispMemberBaseFv = .text:0x80156060; // type:function size:0x4 scope:weak align:4 +getSize__Q32og6Screen17DispMemberHurryUpFv = .text:0x80156064; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberHurryUpFv = .text:0x8015606C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberHurryUpFv = .text:0x80156078; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen21DispMemberDayEndCountFv = .text:0x8015608C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberDayEndCountFv = .text:0x80156094; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberDayEndCountFv = .text:0x801560A0; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen16DispMemberGroundFv = .text:0x801560B4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen16DispMemberGroundFv = .text:0x801560BC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen16DispMemberGroundFv = .text:0x801560C8; // type:function size:0x10 scope:weak align:4 +getName__Q24Game11PikiInitArgFv = .text:0x801560D8; // type:function size:0xC scope:weak align:4 +getSize__Q32og6Screen21DispMemberKanketuMenuFv = .text:0x801560E4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberKanketuMenuFv = .text:0x801560EC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberKanketuMenuFv = .text:0x801560F8; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberCaveMoreFv = .text:0x8015610C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberCaveMoreFv = .text:0x80156114; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberCaveMoreFv = .text:0x80156120; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen17DispMemberAnaDemoFv = .text:0x80156134; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberAnaDemoFv = .text:0x8015613C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberAnaDemoFv = .text:0x80156148; // type:function size:0x14 scope:weak align:4 +getName__Q24Game11PikiKillArgFv = .text:0x8015615C; // type:function size:0xC scope:weak align:4 +__dt__Q23efx11TLastMomijiFv = .text:0x80156168; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TForestSakuraFv = .text:0x80156204; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TTutorialSnowFv = .text:0x801562A0; // type:function size:0x9C scope:weak align:4 +isCaveFloor__Q26PSGame13CaveFloorInfoFv = .text:0x8015633C; // type:function size:0x8 scope:weak align:4 +isBossFloor__Q26PSGame13CaveFloorInfoFv = .text:0x80156344; // type:function size:0x14 scope:weak align:4 +isRelaxFloor__Q26PSGame13CaveFloorInfoFv = .text:0x80156358; // type:function size:0x14 scope:weak align:4 +isDevelopSection__Q24Game17SingleGameSectionFv = .text:0x8015636C; // type:function size:0x8 scope:weak align:4 +getTimerType__Q24Game17SingleGameSectionFv = .text:0x80156374; // type:function size:0x8 scope:weak align:4 +getCaveFilename__Q24Game17SingleGameSectionFv = .text:0x8015637C; // type:function size:0x8 scope:weak align:4 +init__Q24Game36FSMStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80156384; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x80156388; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x8015638C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x80156390; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x80156394; // type:function size:0x4 scope:weak align:4 +init__Q24Game40StateMachineFPQ24Game17SingleGameSection = .text:0x80156398; // type:function size:0x4 scope:weak align:4 +exec__Q24Game40StateMachineFPQ24Game17SingleGameSection = .text:0x8015639C; // type:function size:0x38 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x801563D4; // type:function size:0x64 scope:weak align:4 +invoke__36DelegateFv = .text:0x80156438; // type:function size:0x30 scope:weak align:4 +transit__Q24Game40StateMachineFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x80156468; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x80156504; // type:function size:0x84 scope:weak align:4 +__sinit_singleGameSection_cpp = .text:0x80156588; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx13TTutorialSnowFv = .text:0x801565B0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TForestSakuraFv = .text:0x801565B8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TLastMomijiFv = .text:0x801565C0; // type:function size:0x8 scope:weak align:4 +mapSearch__Q24Game11CellPyramidFRQ23Sys6SphereP32IDelegate1 = .text:0x801565C8; // type:function size:0xC4 scope:global align:4 +exitCell__Q24Game10CellObjectFv = .text:0x8015668C; // type:function size:0xB4 scope:global align:4 +__ct__Q24Game4CellFv = .text:0x80156740; // type:function size:0x3C scope:global align:4 +mapSearch__Q24Game4CellFP32IDelegate1Ul = .text:0x8015677C; // type:function size:0xC4 scope:global align:4 +mapSearchUp__Q24Game4CellFP32IDelegate1Ul = .text:0x80156840; // type:function size:0x238 scope:global align:4 +mapSearchDown__Q24Game4CellFP32IDelegate1Ul = .text:0x80156A78; // type:function size:0x280 scope:global align:4 +resolveCollision__Q24Game4CellFv = .text:0x80156CF8; // type:function size:0x4C scope:global align:4 +initFrame__Q24Game11CellPyramidFv = .text:0x80156D44; // type:function size:0x4 scope:global align:4 +updateCollisionBuffer__Q24Game10CellObjectFPQ24Game10CellObject = .text:0x80156D48; // type:function size:0xD0 scope:global align:4 +__ct__Q24Game15CollisionBufferFv = .text:0x80156E18; // type:function size:0x18 scope:global align:4 +alloc__Q24Game15CollisionBufferFPQ24Game10CellObjecti = .text:0x80156E30; // type:function size:0x6C scope:global align:4 +__ct__Q24Game8CollNodeFv = .text:0x80156E9C; // type:function size:0x14 scope:weak align:4 +insert__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x80156EB0; // type:function size:0xB8 scope:global align:4 +pikiInsertPiki__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x80156F68; // type:function size:0x128 scope:global align:4 +pikiInsertOther__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x80157090; // type:function size:0x128 scope:global align:4 +insertSort__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x801571B8; // type:function size:0xF8 scope:global align:4 +findIndex__Q24Game15CollisionBufferFPQ24Game10CellObject = .text:0x801572B0; // type:function size:0x44 scope:global align:4 +resolveCollision__Q24Game11CellPyramidFv = .text:0x801572F4; // type:function size:0x244 scope:global align:4 +rec_resolveColl__Q24Game4CellFv = .text:0x80157538; // type:function size:0x294 scope:global align:4 +__cl__7ParmFv = .text:0x801577CC; // type:function size:0x8 scope:weak align:4 +getInstance__12CellMgrParmsFv = .text:0x801577D4; // type:function size:0x8 scope:weak align:4 +clearAllCollBuffer__Q24Game11CellPyramidFv = .text:0x801577DC; // type:function size:0xDC scope:global align:4 +exit__Q24Game4CellFPQ24Game7CellLegb = .text:0x801578B8; // type:function size:0x158 scope:global align:4 +entry__Q24Game4CellFPQ24Game7CellLegb = .text:0x80157A10; // type:function size:0x2EC scope:global align:4 +__cl__Q24Game9CellLayerFii = .text:0x80157CFC; // type:function size:0x48 scope:global align:4 +pileup__Q24Game9CellLayerFRQ24Game9CellLayer = .text:0x80157D44; // type:function size:0x578 scope:global align:4 +__ct__Q24Game11CellPyramidFv = .text:0x801582BC; // type:function size:0x3C scope:global align:4 +clear__Q24Game11CellPyramidFv = .text:0x801582F8; // type:function size:0x98 scope:global align:4 +calcExtent__Q24Game11CellPyramidFRQ23Sys6SphereRiR7Rect = .text:0x80158390; // type:function size:0x190 scope:global align:4 +entry__Q24Game11CellPyramidFPQ24Game10CellObjectRQ23Sys6Sphere = .text:0x80158520; // type:function size:0x34 scope:global align:4 +entry__Q24Game11CellPyramidFPQ24Game10CellObjectRQ23Sys6SphereRiR7Rect = .text:0x80158554; // type:function size:0x4B8 scope:global align:4 +create__Q24Game11CellPyramidFR10BoundBox2df = .text:0x80158A0C; // type:function size:0x2EC scope:global align:4 +__ct__Q24Game9CellLayerFv = .text:0x80158CF8; // type:function size:0x3C scope:weak align:4 +getPikiCount__Q24Game11CellPyramidFiR7Rect = .text:0x80158D34; // type:function size:0x134 scope:global align:4 +resolveCollision_2__Q24Game4CellFv = .text:0x80158E68; // type:function size:0xF8 scope:global align:4 +resolveCollision_1__Q24Game4CellFv = .text:0x80158F60; // type:function size:0x100 scope:global align:4 +resolveCollision_3__Q24Game4CellFv = .text:0x80159060; // type:function size:0x1E0 scope:global align:4 +invoke__13SweepCallbackFPQ210SweepPrune6ObjectPQ210SweepPrune6Object = .text:0x80159240; // type:function size:0x4C scope:weak align:4 +__ct__Q24Game7NaviMgrFv = .text:0x8015928C; // type:function size:0xCC scope:global align:4 +__ct__Q24Game9NaviParmsFv = .text:0x80159358; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game9NaviParms5ParmsFv = .text:0x801593B8; // type:function size:0xF10 scope:weak align:4 +__ct__Q24Game13FakePikiParmsFv = .text:0x8015A2C8; // type:function size:0x1A4 scope:weak align:4 +__ct__Q34Game13FakePikiParms5ParmsFv = .text:0x8015A46C; // type:function size:0x2B4 scope:weak align:4 +__dt__27MonoObjectMgrFv = .text:0x8015A720; // type:function size:0xA0 scope:weak align:4 +__dt__Q24Game7NaviMgrFv = .text:0x8015A7C0; // type:function size:0x110 scope:global align:4 +createPSMDirectorUpdator__Q24Game7NaviMgrFv = .text:0x8015A8D0; // type:function size:0x78 scope:global align:4 +resetMgr__Q24Game7NaviMgrFv = .text:0x8015A948; // type:function size:0x5C scope:global align:4 +killAll__Q24Game7NaviMgrFv = .text:0x8015A9A4; // type:function size:0x90 scope:global align:4 +setupNavi__Q24Game7NaviMgrFPQ24Game4Navi = .text:0x8015AA34; // type:function size:0xF0 scope:global align:4 +birth__Q24Game7NaviMgrFv = .text:0x8015AB24; // type:function size:0xFC scope:global align:4 +getActiveNavi__Q24Game7NaviMgrFv = .text:0x8015AC20; // type:function size:0x9C scope:global align:4 +loadResources__Q24Game7NaviMgrFv = .text:0x8015ACBC; // type:function size:0xBC scope:global align:4 +read__Q24Game9NaviParmsFR6Stream = .text:0x8015AD78; // type:function size:0x50 scope:weak align:4 +load__Q24Game7NaviMgrFv = .text:0x8015ADC8; // type:function size:0x264 scope:global align:4 +createModel__Q24Game7NaviMgrFi = .text:0x8015B02C; // type:function size:0x64 scope:global align:4 +loadResources_float__Q24Game7NaviMgrFv = .text:0x8015B090; // type:function size:0xD4 scope:global align:4 +getAliveCount__Q24Game7NaviMgrFv = .text:0x8015B164; // type:function size:0x8C scope:global align:4 +clearDeadCount__Q24Game7NaviMgrFv = .text:0x8015B1F0; // type:function size:0x18 scope:global align:4 +informOrimaDead__Q24Game7NaviMgrFi = .text:0x8015B208; // type:function size:0x78 scope:global align:4 +getDeadOrima__Q24Game7NaviMgrFi = .text:0x8015B280; // type:function size:0x4C scope:global align:4 +getAliveOrima__Q24Game7NaviMgrFi = .text:0x8015B2CC; // type:function size:0xEC scope:global align:4 +setMovieDraw__Q24Game7NaviMgrFb = .text:0x8015B3B8; // type:function size:0xA8 scope:global align:4 +doAnimation__Q24Game7NaviMgrFv = .text:0x8015B460; // type:function size:0xE0 scope:global align:4 +doEntry__Q24Game7NaviMgrFv = .text:0x8015B540; // type:function size:0x168 scope:global align:4 +doSimulation__Q24Game7NaviMgrFf = .text:0x8015B6A8; // type:function size:0x378 scope:global align:4 +setupSoundViewerAndBas__Q24Game7NaviMgrFv = .text:0x8015BA20; // type:function size:0x4 scope:global align:4 +getMgrName__Q24Game7NaviMgrFv = .text:0x8015BA24; // type:function size:0x8 scope:weak align:4 +frozenable__Q24Game7NaviMgrFv = .text:0x8015BA2C; // type:function size:0x8 scope:weak align:4 +__dt__23ContainerFv = .text:0x8015BA34; // type:function size:0x70 scope:weak align:4 +__dt__23ObjectMgrFv = .text:0x8015BAA4; // type:function size:0x88 scope:weak align:4 +read__Q24Game13FakePikiParmsFR6Stream = .text:0x8015BB2C; // type:function size:0x44 scope:weak align:4 +birth__27MonoObjectMgrFv = .text:0x8015BB70; // type:function size:0x60 scope:weak align:4 +getNext__27MonoObjectMgrFPv = .text:0x8015BBD0; // type:function size:0x40 scope:weak align:4 +getStart__27MonoObjectMgrFv = .text:0x8015BC10; // type:function size:0x30 scope:weak align:4 +getEnd__27MonoObjectMgrFv = .text:0x8015BC40; // type:function size:0x8 scope:weak align:4 +getTo__27MonoObjectMgrFv = .text:0x8015BC48; // type:function size:0x8 scope:weak align:4 +doAnimation__27MonoObjectMgrFv = .text:0x8015BC50; // type:function size:0x80 scope:weak align:4 +doEntry__27MonoObjectMgrFv = .text:0x8015BCD0; // type:function size:0x80 scope:weak align:4 +doSetView__27MonoObjectMgrFi = .text:0x8015BD50; // type:function size:0x90 scope:weak align:4 +doViewCalc__27MonoObjectMgrFv = .text:0x8015BDE0; // type:function size:0x80 scope:weak align:4 +doSimulation__27MonoObjectMgrFf = .text:0x8015BE60; // type:function size:0x90 scope:weak align:4 +doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x8015BEF0; // type:function size:0x90 scope:weak align:4 +resetMgr__27MonoObjectMgrFv = .text:0x8015BF80; // type:function size:0x18 scope:weak align:4 +clearMgr__27MonoObjectMgrFv = .text:0x8015BF98; // type:function size:0x30 scope:weak align:4 +getEmptyIndex__27MonoObjectMgrFv = .text:0x8015BFC8; // type:function size:0x3C scope:weak align:4 +get__27MonoObjectMgrFPv = .text:0x8015C004; // type:function size:0x10 scope:weak align:4 +doAnimation__23ObjectMgrFv = .text:0x8015C014; // type:function size:0x1E4 scope:weak align:4 +doEntry__23ObjectMgrFv = .text:0x8015C1F8; // type:function size:0x1E4 scope:weak align:4 +doSetView__23ObjectMgrFi = .text:0x8015C3DC; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__23ObjectMgrFv = .text:0x8015C5D0; // type:function size:0x1E4 scope:weak align:4 +doSimulation__23ObjectMgrFf = .text:0x8015C7B4; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__23ObjectMgrFR8Graphics = .text:0x8015C9A8; // type:function size:0x1F4 scope:weak align:4 +getObject__23ContainerFPv = .text:0x8015CB9C; // type:function size:0x2C scope:weak align:4 +getAt__23ContainerFi = .text:0x8015CBC8; // type:function size:0x8 scope:weak align:4 +getTo__23ContainerFv = .text:0x8015CBD0; // type:function size:0x8 scope:weak align:4 +__ct__27MonoObjectMgrFv = .text:0x8015CBD8; // type:function size:0x9C scope:weak align:4 +@28@resetMgr__27MonoObjectMgrFv = .text:0x8015CC74; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27MonoObjectMgrFf = .text:0x8015CC7C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27MonoObjectMgrFv = .text:0x8015CC84; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27MonoObjectMgrFv = .text:0x8015CC8C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__23ObjectMgrFR8Graphics = .text:0x8015CC94; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__23ObjectMgrFf = .text:0x8015CC9C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__23ObjectMgrFv = .text:0x8015CCA4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__23ObjectMgrFi = .text:0x8015CCAC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__23ObjectMgrFv = .text:0x8015CCB4; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__23ObjectMgrFv = .text:0x8015CCBC; // type:function size:0x8 scope:weak align:4 +@28@frozenable__Q24Game7NaviMgrFv = .text:0x8015CCC4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__Q24Game7NaviMgrFv = .text:0x8015CCCC; // type:function size:0x8 scope:weak align:4 +@28@loadResources__Q24Game7NaviMgrFv = .text:0x8015CCD4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x8015CCDC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game7NaviMgrFf = .text:0x8015CCE4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27MonoObjectMgrFv = .text:0x8015CCEC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27MonoObjectMgrFi = .text:0x8015CCF4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game7NaviMgrFv = .text:0x8015CCFC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game7NaviMgrFv = .text:0x8015CD04; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game7NaviMgrFv = .text:0x8015CD0C; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game7PikiMgrFv = .text:0x8015CD14; // type:function size:0xB4 scope:global align:4 +__ct__Q24Game9PikiParmsFv = .text:0x8015CDC8; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game9PikiParms5ParmsFv = .text:0x8015CE28; // type:function size:0x17C4 scope:weak align:4 +__dt__27MonoObjectMgrFv = .text:0x8015E5EC; // type:function size:0xA0 scope:weak align:4 +resetMgr__Q24Game7PikiMgrFv = .text:0x8015E68C; // type:function size:0x38 scope:global align:4 +onAlloc__Q24Game7PikiMgrFv = .text:0x8015E6C4; // type:function size:0x64 scope:global align:4 +getAt__27MonoObjectMgrFi = .text:0x8015E728; // type:function size:0x10 scope:weak align:4 +setupPiki__Q24Game7PikiMgrFPQ24Game4Piki = .text:0x8015E738; // type:function size:0x60 scope:global align:4 +birth__Q24Game7PikiMgrFv = .text:0x8015E798; // type:function size:0x324 scope:global align:4 +loadResources__Q24Game7PikiMgrFi = .text:0x8015EABC; // type:function size:0xCC scope:global align:4 +read__Q24Game9PikiParmsFR6Stream = .text:0x8015EB88; // type:function size:0x50 scope:weak align:4 +load__Q24Game7PikiMgrFi = .text:0x8015EBD8; // type:function size:0x298 scope:global align:4 +loadBmd__Q24Game7PikiMgrFiPc = .text:0x8015EE70; // type:function size:0x98 scope:global align:4 +createModelCallback__Q24Game7PikiMgrFPQ28SysShape5Model = .text:0x8015EF08; // type:function size:0x4C scope:global align:4 +createModel__Q24Game7PikiMgrFii = .text:0x8015EF54; // type:function size:0x24 scope:global align:4 +createLeafModel__Q24Game7PikiMgrFii = .text:0x8015EF78; // type:function size:0x8 scope:global align:4 +setMovieDraw__Q24Game7PikiMgrFb = .text:0x8015EF80; // type:function size:0x280 scope:global align:4 +debugShapeDL__Q24Game7PikiMgrFPc = .text:0x8015F200; // type:function size:0x84 scope:global align:4 +doSimpleDraw__Q24Game7PikiMgrFP8Viewport = .text:0x8015F284; // type:function size:0x198 scope:global align:4 +doAnimation__Q24Game7PikiMgrFv = .text:0x8015F41C; // type:function size:0x1D8 scope:global align:4 +setVsXlu__Q24Game7PikiMgrFib = .text:0x8015F5F4; // type:function size:0x58 scope:global align:4 +doEntry__Q24Game7PikiMgrFv = .text:0x8015F64C; // type:function size:0x1FC scope:global align:4 +setupSoundViewerAndBas__Q24Game7PikiMgrFv = .text:0x8015F848; // type:function size:0x4 scope:global align:4 +getColorTransportScale__Q24Game7PikiMgrFi = .text:0x8015F84C; // type:function size:0x74 scope:global align:4 +allocStorePikmins__Q24Game7PikiMgrFv = .text:0x8015F8C0; // type:function size:0x3C scope:global align:4 +clearStorePikmins__Q24Game7PikiMgrFv = .text:0x8015F8FC; // type:function size:0x6C scope:global align:4 +moveAllPikmins__Q24Game7PikiMgrFR10Vector3fP23Condition = .text:0x8015F968; // type:function size:0x34C scope:global align:4 +forceEnterPikmins__Q24Game7PikiMgrFUc = .text:0x8015FCB4; // type:function size:0x298 scope:global align:4 +killDayEndPikmins__Q24Game7PikiMgrFRQ24Game13PikiContainer = .text:0x8015FF4C; // type:function size:0x60C scope:global align:4 +killAllPikmins__Q24Game7PikiMgrFv = .text:0x80160558; // type:function size:0x258 scope:global align:4 +caveSaveFormationPikmins__Q24Game7PikiMgrFb = .text:0x801607B0; // type:function size:0x2C8 scope:global align:4 +caveSaveAllPikmins__Q24Game7PikiMgrFbb = .text:0x80160A78; // type:function size:0x2C4 scope:global align:4 +saveAllPikmins__Q24Game7PikiMgrFRQ24Game13PikiContainer = .text:0x80160D3C; // type:function size:0x2A8 scope:global align:4 +__dt__Q24Game7PikiMgrFv = .text:0x80160FE4; // type:function size:0xB8 scope:weak align:4 +getMgrName__Q24Game7PikiMgrFv = .text:0x8016109C; // type:function size:0x8 scope:weak align:4 +getMatrixLoadType__Q24Game7PikiMgrFv = .text:0x801610A4; // type:function size:0x8 scope:weak align:4 +loadResources__Q24Game7PikiMgrFv = .text:0x801610AC; // type:function size:0x4 scope:weak align:4 +__dt__23ContainerFv = .text:0x801610B0; // type:function size:0x70 scope:weak align:4 +__dt__23ObjectMgrFv = .text:0x80161120; // type:function size:0x88 scope:weak align:4 +invoke__45Delegate1FPQ28SysShape5Model = .text:0x801611A8; // type:function size:0x30 scope:weak align:4 +birth__27MonoObjectMgrFv = .text:0x801611D8; // type:function size:0x60 scope:weak align:4 +getNext__27MonoObjectMgrFPv = .text:0x80161238; // type:function size:0x40 scope:weak align:4 +getStart__27MonoObjectMgrFv = .text:0x80161278; // type:function size:0x30 scope:weak align:4 +getEnd__27MonoObjectMgrFv = .text:0x801612A8; // type:function size:0x8 scope:weak align:4 +getTo__27MonoObjectMgrFv = .text:0x801612B0; // type:function size:0x8 scope:weak align:4 +doAnimation__27MonoObjectMgrFv = .text:0x801612B8; // type:function size:0x80 scope:weak align:4 +doEntry__27MonoObjectMgrFv = .text:0x80161338; // type:function size:0x80 scope:weak align:4 +doSetView__27MonoObjectMgrFi = .text:0x801613B8; // type:function size:0x90 scope:weak align:4 +doViewCalc__27MonoObjectMgrFv = .text:0x80161448; // type:function size:0x80 scope:weak align:4 +doSimulation__27MonoObjectMgrFf = .text:0x801614C8; // type:function size:0x90 scope:weak align:4 +doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x80161558; // type:function size:0x90 scope:weak align:4 +resetMgr__27MonoObjectMgrFv = .text:0x801615E8; // type:function size:0x18 scope:weak align:4 +clearMgr__27MonoObjectMgrFv = .text:0x80161600; // type:function size:0x30 scope:weak align:4 +getEmptyIndex__27MonoObjectMgrFv = .text:0x80161630; // type:function size:0x3C scope:weak align:4 +get__27MonoObjectMgrFPv = .text:0x8016166C; // type:function size:0x10 scope:weak align:4 +doAnimation__23ObjectMgrFv = .text:0x8016167C; // type:function size:0x1E4 scope:weak align:4 +doEntry__23ObjectMgrFv = .text:0x80161860; // type:function size:0x1E4 scope:weak align:4 +doSetView__23ObjectMgrFi = .text:0x80161A44; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__23ObjectMgrFv = .text:0x80161C38; // type:function size:0x1E4 scope:weak align:4 +doSimulation__23ObjectMgrFf = .text:0x80161E1C; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__23ObjectMgrFR8Graphics = .text:0x80162010; // type:function size:0x1F4 scope:weak align:4 +getObject__23ContainerFPv = .text:0x80162204; // type:function size:0x2C scope:weak align:4 +getAt__23ContainerFi = .text:0x80162230; // type:function size:0x8 scope:weak align:4 +getTo__23ContainerFv = .text:0x80162238; // type:function size:0x8 scope:weak align:4 +__ct__27MonoObjectMgrFv = .text:0x80162240; // type:function size:0x9C scope:weak align:4 +__sinit_pikiMgr_cpp = .text:0x801622DC; // type:function size:0x28 scope:local align:4 +@28@resetMgr__27MonoObjectMgrFv = .text:0x80162304; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27MonoObjectMgrFv = .text:0x8016230C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27MonoObjectMgrFv = .text:0x80162314; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__23ObjectMgrFR8Graphics = .text:0x8016231C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__23ObjectMgrFf = .text:0x80162324; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__23ObjectMgrFv = .text:0x8016232C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__23ObjectMgrFi = .text:0x80162334; // type:function size:0x8 scope:weak align:4 +@28@doEntry__23ObjectMgrFv = .text:0x8016233C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__23ObjectMgrFv = .text:0x80162344; // type:function size:0x8 scope:weak align:4 +@28@getMatrixLoadType__Q24Game7PikiMgrFv = .text:0x8016234C; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__Q24Game7PikiMgrFv = .text:0x80162354; // type:function size:0x8 scope:weak align:4 +@28@loadResources__Q24Game7PikiMgrFv = .text:0x8016235C; // type:function size:0x8 scope:weak align:4 +@28@doSimpleDraw__Q24Game7PikiMgrFP8Viewport = .text:0x80162364; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x8016236C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27MonoObjectMgrFf = .text:0x80162374; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27MonoObjectMgrFv = .text:0x8016237C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27MonoObjectMgrFi = .text:0x80162384; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game7PikiMgrFv = .text:0x8016238C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game7PikiMgrFv = .text:0x80162394; // type:function size:0x8 scope:weak align:4 +store__Q24Game18TDispTriangleArrayFRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x8016239C; // type:function size:0x44 scope:global align:4 +store__Q24Game18TDispTriangleArrayFR7MatrixfRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x801623E0; // type:function size:0x44 scope:global align:4 +store__Q24Game13TDispTriangleFRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x80162424; // type:function size:0xC0 scope:global align:4 +store__Q24Game13TDispTriangleFR7MatrixfRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x801624E4; // type:function size:0x100 scope:global align:4 +__ct__Q24Game6MapMgrFv = .text:0x801625E4; // type:function size:0x98 scope:global align:4 +getStartPosition__Q24Game6MapMgrFR10Vector3i = .text:0x8016267C; // type:function size:0x7C scope:global align:4 +getMapRotation__Q24Game6MapMgrFv = .text:0x801626F8; // type:function size:0x2C scope:global align:4 +getDemoMatrix__Q24Game6MapMgrFv = .text:0x80162724; // type:function size:0x1C scope:global align:4 +getBestAngle__Q24Game6MapMgrFR10Vector3ff = .text:0x80162740; // type:function size:0x704 scope:global align:4 +checkBeamCollision__Q24Game6MapMgrFRQ34Game6MapMgr16BeamCollisionArg = .text:0x80162E44; // type:function size:0x2A4 scope:global align:4 +load__Q24Game11ShapeMapMgrFRQ34Game11ShapeMapMgr7LoadArg = .text:0x801630E8; // type:function size:0x804 scope:global align:4 +__ct__Q23Sys15MatLoopAnimatorFv = .text:0x801638EC; // type:function size:0x3C scope:weak align:4 +findWater__Q24Game6MapMgrFRQ23Sys6Sphere = .text:0x80163928; // type:function size:0x34 scope:global align:4 +do_update__Q24Game11ShapeMapMgrFv = .text:0x8016395C; // type:function size:0x9C scope:global align:4 +update__Q24Game6MapMgrFv = .text:0x801639F8; // type:function size:0x50 scope:global align:4 +do_update__Q24Game6MapMgrFv = .text:0x80163A48; // type:function size:0x4 scope:weak align:4 +clearPerfMonitor__Q24Game6MapMgrFv = .text:0x80163A4C; // type:function size:0x18 scope:global align:4 +drawCollision__Q24Game11ShapeMapMgrFR8GraphicsRQ23Sys6Sphere = .text:0x80163A64; // type:function size:0xAC scope:global align:4 +createTriangles__Q24Game11ShapeMapMgrFRQ23Sys17CreateTriangleArg = .text:0x80163B10; // type:function size:0x2C scope:global align:4 +createTriangles__12MapCollisionFRQ23Sys17CreateTriangleArg = .text:0x80163B3C; // type:function size:0x30 scope:weak align:4 +createTriangles__Q23Sys10TriDividerFRQ23Sys17CreateTriangleArg = .text:0x80163B6C; // type:function size:0x4 scope:weak align:4 +getMinY__Q24Game11ShapeMapMgrFR10Vector3 = .text:0x80163B70; // type:function size:0x8C scope:global align:4 +getCurrTri__Q24Game11ShapeMapMgrFRQ24Game11CurrTriInfo = .text:0x80163BFC; // type:function size:0x2C scope:global align:4 +doAnimation__Q24Game11ShapeMapMgrFv = .text:0x80163C28; // type:function size:0x38 scope:global align:4 +doSetView__Q24Game11ShapeMapMgrFi = .text:0x80163C60; // type:function size:0x60 scope:global align:4 +doViewCalc__Q24Game11ShapeMapMgrFv = .text:0x80163CC0; // type:function size:0x4C scope:global align:4 +doEntry__Q24Game11ShapeMapMgrFv = .text:0x80163D0C; // type:function size:0xC0 scope:global align:4 +findRayIntersection__Q24Game11ShapeMapMgrFRQ23Sys16RayIntersectInfo = .text:0x80163DCC; // type:function size:0x214 scope:global align:4 +getBoundBox2d__Q24Game11ShapeMapMgrFR10BoundBox2d = .text:0x80163FE0; // type:function size:0x80 scope:weak align:4 +getBoundBox__Q24Game11ShapeMapMgrFR8BoundBox = .text:0x80164060; // type:function size:0x90 scope:weak align:4 +frozenable__Q24Game6MapMgrFv = .text:0x801640F0; // type:function size:0x8 scope:weak align:4 +doDirectDraw__Q24Game6MapMgrFR8Graphics = .text:0x801640F8; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game6MapMgrFf = .text:0x801640FC; // type:function size:0x4 scope:weak align:4 +findRayIntersection__Q24Game6MapMgrFRQ23Sys16RayIntersectInfo = .text:0x80164100; // type:function size:0x8 scope:weak align:4 +createTriangles__Q24Game6MapMgrFRQ23Sys17CreateTriangleArg = .text:0x80164108; // type:function size:0x4 scope:weak align:4 +doViewCalc__27ObjectMgrFv = .text:0x8016410C; // type:function size:0x1E4 scope:weak align:4 +doViewCalc__Q24Game8WaterBoxFv = .text:0x801642F0; // type:function size:0x4 scope:weak align:4 +isDone__26IteratorFv = .text:0x801642F4; // type:function size:0x4C scope:weak align:4 +doSetView__27ObjectMgrFi = .text:0x80164340; // type:function size:0x1F4 scope:weak align:4 +doSetView__Q24Game8WaterBoxFi = .text:0x80164534; // type:function size:0x4 scope:weak align:4 +doEntry__27ObjectMgrFv = .text:0x80164538; // type:function size:0x1E4 scope:weak align:4 +doEntry__Q24Game8WaterBoxFv = .text:0x8016471C; // type:function size:0x4 scope:weak align:4 +doAnimation__27ObjectMgrFv = .text:0x80164720; // type:function size:0x1E4 scope:weak align:4 +doAnimation__Q24Game8WaterBoxFv = .text:0x80164904; // type:function size:0x4 scope:weak align:4 +__ml__26IteratorFv = .text:0x80164908; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x80164940; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80164A24; // type:function size:0xDC scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x80164B00; // type:function size:0x28 scope:local align:4 +@36@4@frozenable__Q24Game6MapMgrFv = .text:0x80164B28; // type:function size:0x14 scope:weak align:4 +@36@4@doDirectDraw__Q24Game6MapMgrFR8Graphics = .text:0x80164B3C; // type:function size:0x14 scope:weak align:4 +@36@4@doSimulation__Q24Game6MapMgrFf = .text:0x80164B50; // type:function size:0x14 scope:weak align:4 +@84@4@frozenable__Q24Game6MapMgrFv = .text:0x80164B64; // type:function size:0x14 scope:weak align:4 +@84@4@doDirectDraw__Q24Game6MapMgrFR8Graphics = .text:0x80164B78; // type:function size:0x14 scope:weak align:4 +@84@4@doSimulation__Q24Game6MapMgrFf = .text:0x80164B8C; // type:function size:0x14 scope:weak align:4 +@84@4@doViewCalc__Q24Game11ShapeMapMgrFv = .text:0x80164BA0; // type:function size:0x14 scope:weak align:4 +@84@4@doSetView__Q24Game11ShapeMapMgrFi = .text:0x80164BB4; // type:function size:0x14 scope:weak align:4 +@84@4@doEntry__Q24Game11ShapeMapMgrFv = .text:0x80164BC8; // type:function size:0x14 scope:weak align:4 +@84@4@doAnimation__Q24Game11ShapeMapMgrFv = .text:0x80164BDC; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game14BaseHIOSectionFP7JKRHeap = .text:0x80164BF0; // type:function size:0xC0 scope:global align:4 +__dt__Q24Game14BaseHIOSectionFv = .text:0x80164CB0; // type:function size:0xC4 scope:global align:4 +__dt__Q24Game11HIORootNodeFv = .text:0x80164D74; // type:function size:0x60 scope:weak align:4 +setDisplay__Q24Game14BaseHIOSectionFP10JFWDisplayi = .text:0x80164DD4; // type:function size:0x150 scope:global align:4 +initHIO__Q24Game14BaseHIOSectionFPQ24Game11HIORootNode = .text:0x80164F24; // type:function size:0x80 scope:global align:4 +createScreenRootNode__Q24Game14BaseHIOSectionFv = .text:0x80164FA4; // type:function size:0x4 scope:global align:4 +doUpdate__Q24Game14BaseHIOSectionFv = .text:0x80164FA8; // type:function size:0x8 scope:global align:4 +addGenNode__Q24Game14BaseHIOSectionFP5CNode = .text:0x80164FB0; // type:function size:0x24 scope:global align:4 +refreshHIO__Q24Game14BaseHIOSectionFv = .text:0x80164FD4; // type:function size:0x4 scope:global align:4 +__ct__Q24Game11HIORootNodeFP7Section = .text:0x80164FD8; // type:function size:0x54 scope:global align:4 +drawInit__7SectionFR8GraphicsQ27Section13EDrawInitMode = .text:0x8016502C; // type:function size:0x2C scope:weak align:4 +forceFinish__7SectionFv = .text:0x80165058; // type:function size:0x8 scope:weak align:4 +__sinit_baseHIOSection_cpp = .text:0x80165060; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11NaviWhistleFPQ24Game4Navi = .text:0x80165088; // type:function size:0x34 scope:global align:4 +init__Q24Game11NaviWhistleFv = .text:0x801650BC; // type:function size:0x128 scope:global align:4 +updatePosition__Q24Game11NaviWhistleFv = .text:0x801651E4; // type:function size:0x190 scope:global align:4 +start__Q24Game11NaviWhistleFv = .text:0x80165374; // type:function size:0x78 scope:global align:4 +stop__Q24Game11NaviWhistleFv = .text:0x801653EC; // type:function size:0x34 scope:global align:4 +timeout__Q24Game11NaviWhistleFv = .text:0x80165420; // type:function size:0x10 scope:global align:4 +setFaceDir__Q24Game11NaviWhistleFf = .text:0x80165430; // type:function size:0xF4 scope:global align:4 +updateWhistle__Q24Game11NaviWhistleFv = .text:0x80165524; // type:function size:0x1F4 scope:global align:4 +update__Q24Game11NaviWhistleFR10Vector3b = .text:0x80165718; // type:function size:0x1D4 scope:global align:4 +getCreatureName__Q24Game6PelletFv = .text:0x801658EC; // type:function size:0x20 scope:global align:4 +getCreatureID__Q24Game6PelletFv = .text:0x8016590C; // type:function size:0x34 scope:global align:4 +getShadowParam__Q24Game6PelletFRQ24Game11ShadowParam = .text:0x80165940; // type:function size:0x190 scope:global align:4 +needShadow__Q24Game6PelletFv = .text:0x80165AD0; // type:function size:0x74 scope:global align:4 +getWallTimer__Q24Game6PelletFv = .text:0x80165B44; // type:function size:0x8 scope:global align:4 +__ct__Q24Game13PelletViewArgFv = .text:0x80165B4C; // type:function size:0x34 scope:global align:4 +becomePellet__Q24Game10PelletViewFPQ24Game13PelletViewArg = .text:0x80165B80; // type:function size:0x220 scope:global align:4 +viewMakeMatrix__Q24Game10PelletViewFR7Matrixf = .text:0x80165DA0; // type:function size:0x84 scope:global align:4 +clearClaim__Q24Game6PelletFv = .text:0x80165E24; // type:function size:0xC scope:global align:4 +sendClaim__Q24Game6PelletFv = .text:0x80165E30; // type:function size:0x18 scope:global align:4 +updateClaim__Q24Game6PelletFv = .text:0x80165E48; // type:function size:0x3F4 scope:global align:4 +getBuryDepthMax__Q24Game6PelletFv = .text:0x8016623C; // type:function size:0xC scope:global align:4 +getBuryDepth__Q24Game6PelletFv = .text:0x80166248; // type:function size:0xC scope:global align:4 +getBuryRadius__Q24Game6PelletFf = .text:0x80166254; // type:function size:0x124 scope:global align:4 +stimulate__Q24Game6PelletFRQ24Game11Interaction = .text:0x80166378; // type:function size:0x74 scope:global align:4 +actPellet__Q24Game15InteractMattuanFPQ24Game6Pellet = .text:0x801663EC; // type:function size:0x88 scope:global align:4 +actPellet__Q24Game11InteractEatFPQ24Game6Pellet = .text:0x80166474; // type:function size:0x188 scope:global align:4 +actPellet__Q24Game12InteractSuckFPQ24Game6Pellet = .text:0x801665FC; // type:function size:0x80 scope:global align:4 +doDirectDraw__Q24Game6PelletFR8Graphics = .text:0x8016667C; // type:function size:0x4 scope:global align:4 +__ct__Q24Game6PelletFv = .text:0x80166680; // type:function size:0x1B0 scope:global align:4 +constructor__Q24Game6PelletFv = .text:0x80166830; // type:function size:0x6C scope:global align:4 +__dt__Q23PSM11CreatureObjFv = .text:0x8016689C; // type:function size:0x9C scope:weak align:4 +shadowOn__Q24Game6PelletFv = .text:0x80166938; // type:function size:0x34 scope:global align:4 +shadowOff__Q24Game6PelletFv = .text:0x8016696C; // type:function size:0x34 scope:global align:4 +getJAIObject__Q24Game6PelletFv = .text:0x801669A0; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game6PelletFv = .text:0x801669B4; // type:function size:0x8 scope:global align:4 +getBottomRadius__Q24Game6PelletFv = .text:0x801669BC; // type:function size:0xC scope:global align:4 +getPickRadius__Q24Game6PelletFv = .text:0x801669C8; // type:function size:0xC scope:global align:4 +getCylinderHeight__Q24Game6PelletFv = .text:0x801669D4; // type:function size:0xC scope:global align:4 +getConfigIndex__Q24Game6PelletFv = .text:0x801669E0; // type:function size:0x58 scope:global align:4 +getConfigName__Q24Game6PelletFv = .text:0x80166A38; // type:function size:0xC scope:global align:4 +__ct__Q24Game18PelletIndexInitArgFi = .text:0x80166A44; // type:function size:0x130 scope:global align:4 +__ct__Q24Game19PelletNumberInitArgFii = .text:0x80166B74; // type:function size:0xF0 scope:global align:4 +isPickable__Q24Game6PelletFv = .text:0x80166C64; // type:function size:0x40 scope:global align:4 +isPickable__Q24Game11PelletStateFv = .text:0x80166CA4; // type:function size:0x8 scope:weak align:4 +onKill__Q24Game6PelletFPQ24Game15CreatureKillArg = .text:0x80166CAC; // type:function size:0x288 scope:global align:4 +start__Q24Game28StateMachineFPQ24Game6PelletiPQ24Game8StateArg = .text:0x80166F34; // type:function size:0x34 scope:weak align:4 +onInit__Q24Game6PelletFPQ24Game15CreatureInitArg = .text:0x80166F68; // type:function size:0x620 scope:global align:4 +do_onInit__Q24Game6PelletFPQ24Game15CreatureInitArg = .text:0x80167588; // type:function size:0x4 scope:weak align:4 +onCreateShape__Q24Game6PelletFv = .text:0x8016758C; // type:function size:0x4 scope:weak align:4 +getPelletConfigMin__Q24Game6PelletFv = .text:0x80167590; // type:function size:0x20 scope:global align:4 +getPelletConfigMax__Q24Game6PelletFv = .text:0x801675B0; // type:function size:0x20 scope:global align:4 +setupParticles__Q24Game6PelletFv = .text:0x801675D0; // type:function size:0x354 scope:global align:4 +setupParticles_simple__Q24Game6PelletFv = .text:0x80167924; // type:function size:0x220 scope:global align:4 +setupParticles_tall__Q24Game6PelletFv = .text:0x80167B44; // type:function size:0x230 scope:global align:4 +panmodokiCarryable__Q24Game6PelletFv = .text:0x80167D74; // type:function size:0x18 scope:global align:4 +isCarried__Q24Game6PelletFv = .text:0x80167D8C; // type:function size:0x4C scope:global align:4 +isPicked__Q24Game6PelletFv = .text:0x80167DD8; // type:function size:0xC scope:weak align:4 +finishDisplayCarryInfo__Q24Game6PelletFv = .text:0x80167DE4; // type:function size:0x44 scope:global align:4 +getCarryInfoParam__Q24Game6PelletFR14CarryInfoParam = .text:0x80167E28; // type:function size:0xA0 scope:global align:4 +setCarryColor__Q24Game6PelletFi = .text:0x80167EC8; // type:function size:0x68 scope:global align:4 +sound_otakaraEventStart__Q24Game6PelletFv = .text:0x80167F30; // type:function size:0x4 scope:weak align:4 +clearCarryColor__Q24Game6PelletFv = .text:0x80167F34; // type:function size:0xC scope:global align:4 +getVelocity__Q24Game6PelletFv = .text:0x80167F40; // type:function size:0x1C scope:global align:4 +setVelocity__Q24Game6PelletFR10Vector3 = .text:0x80167F5C; // type:function size:0x1C scope:global align:4 +allocateTexCaster__Q24Game6PelletFv = .text:0x80167F78; // type:function size:0x104 scope:global align:4 +onSetPosition__Q24Game6PelletFv = .text:0x8016807C; // type:function size:0x2F0 scope:global align:4 +setPanModokiRotation__Q24Game6PelletFf = .text:0x8016836C; // type:function size:0x160 scope:global align:4 +setOrientation__Q24Game6PelletFR7Matrixf = .text:0x801684CC; // type:function size:0x2D0 scope:global align:4 +getStateID__Q24Game6PelletFv = .text:0x8016879C; // type:function size:0x28 scope:global align:4 +bounceCallback__Q24Game6PelletFPQ23Sys8Triangle = .text:0x801687C4; // type:function size:0x260 scope:global align:4 +onBounce__Q24Game6PelletFv = .text:0x80168A24; // type:function size:0x4 scope:weak align:4 +update__Q24Game6PelletFv = .text:0x80168A28; // type:function size:0xF84 scope:global align:4 +do_update__Q24Game6PelletFv = .text:0x801699AC; // type:function size:0x4 scope:weak align:4 +isCave__Q23PSM10Scene_GameFv = .text:0x801699B0; // type:function size:0x8 scope:weak align:4 +getPikiBirthCount__Q24Game6PelletFRiRi = .text:0x801699B8; // type:function size:0x1C scope:global align:4 +setMovieDraw__Q24Game9PelletMgrFb = .text:0x801699D4; // type:function size:0x14 scope:global align:4 +doSimulation__Q24Game6PelletFf = .text:0x801699E8; // type:function size:0x12C scope:global align:4 +updateTrMatrix__Q24Game6PelletFv = .text:0x80169B14; // type:function size:0x114 scope:global align:4 +doAnimation__Q24Game6PelletFv = .text:0x80169C28; // type:function size:0x27C scope:global align:4 +doEntry__Q24Game6PelletFv = .text:0x80169EA4; // type:function size:0xF0 scope:global align:4 +changeMaterial__Q24Game6PelletFv = .text:0x80169F94; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game6PelletFi = .text:0x80169F98; // type:function size:0x20 scope:global align:4 +doViewCalc__Q24Game6PelletFv = .text:0x80169FB8; // type:function size:0x20 scope:global align:4 +theEntry__Q24Game6PelletFv = .text:0x80169FD8; // type:function size:0xDC scope:global align:4 +entryShape__Q24Game6PelletFv = .text:0x8016A0B4; // type:function size:0x9C scope:global align:4 +getBoundingSphere__Q24Game6PelletFRQ23Sys6Sphere = .text:0x8016A150; // type:function size:0x24 scope:global align:4 +getLODSphere__Q24Game6PelletFRQ23Sys6Sphere = .text:0x8016A174; // type:function size:0x3C scope:global align:4 +init_pmotions__Q24Game6PelletFv = .text:0x8016A1B0; // type:function size:0x58 scope:global align:4 +update_pmotions__Q24Game6PelletFv = .text:0x8016A208; // type:function size:0xB4 scope:global align:4 +start_pmotions__Q24Game6PelletFv = .text:0x8016A2BC; // type:function size:0x44 scope:global align:4 +stop_carrymotion__Q24Game6PelletFv = .text:0x8016A300; // type:function size:0xC scope:global align:4 +finish_carrymotion__Q24Game6PelletFv = .text:0x8016A30C; // type:function size:0x54 scope:global align:4 +onKeyEvent__Q24Game6PelletFRCQ28SysShape8KeyEvent = .text:0x8016A360; // type:function size:0x88 scope:global align:4 +isSlotFree__Q24Game6PelletFs = .text:0x8016A3E8; // type:function size:0xC0 scope:global align:4 +getSpeicalSlot__Q24Game6PelletFv = .text:0x8016A4A8; // type:function size:0x1C scope:global align:4 +getFreeStickSlot__Q24Game6PelletFv = .text:0x8016A4C4; // type:function size:0x54 scope:global align:4 +getNearFreeStickSlot__Q24Game6PelletFR10Vector3 = .text:0x8016A518; // type:function size:0x128 scope:global align:4 +getRandomFreeStickSlot__Q24Game6PelletFv = .text:0x8016A640; // type:function size:0xE8 scope:global align:4 +getPelletGoal__Q24Game6PelletFv = .text:0x8016A728; // type:function size:0x20C scope:global align:4 +getTotalPikmins__Q24Game6PelletFv = .text:0x8016A934; // type:function size:0x3C scope:global align:4 +getTotalCarryPikmins__Q24Game6PelletFv = .text:0x8016A970; // type:function size:0x6C scope:global align:4 +getPikmins__Q24Game6PelletFi = .text:0x8016A9DC; // type:function size:0x78 scope:global align:4 +onSlotStickStart__Q24Game6PelletFPQ24Game8Creatures = .text:0x8016AA54; // type:function size:0x1D4 scope:global align:4 +onSlotStickEnd__Q24Game6PelletFPQ24Game8Creatures = .text:0x8016AC28; // type:function size:0x1E8 scope:global align:4 +calcStickSlotGlobal__Q24Game6PelletFsR10Vector3 = .text:0x8016AE10; // type:function size:0x21C scope:global align:4 +getFace__Q24Game6PelletFv = .text:0x8016B02C; // type:function size:0x68 scope:global align:4 +startPick__Q24Game6PelletFv = .text:0x8016B094; // type:function size:0x2AC scope:global align:4 +sound_otakaraEventRestart__Q24Game6PelletFv = .text:0x8016B340; // type:function size:0x4 scope:weak align:4 +endPick__Q24Game6PelletFb = .text:0x8016B344; // type:function size:0x17C scope:global align:4 +sound_otakaraEventStop__Q24Game6PelletFv = .text:0x8016B4C0; // type:function size:0x4 scope:weak align:4 +clearDiscoverDisable__Q24Game6PelletFv = .text:0x8016B4C4; // type:function size:0xC scope:global align:4 +startDiscoverDisable__Q24Game6PelletFUc = .text:0x8016B4D0; // type:function size:0x8 scope:global align:4 +updateDiscoverDisable__Q24Game6PelletFv = .text:0x8016B4D8; // type:function size:0x18 scope:global align:4 +discoverDisabled__Q24Game6PelletFv = .text:0x8016B4F0; // type:function size:0x2C scope:global align:4 +doSave__Q24Game6PelletFR6Stream = .text:0x8016B51C; // type:function size:0x2C scope:global align:4 +doLoad__Q24Game6PelletFR6Stream = .text:0x8016B548; // type:function size:0x1DC scope:global align:4 +onStartCapture__Q24Game6PelletFv = .text:0x8016B724; // type:function size:0xF4 scope:global align:4 +onUpdateCapture__Q24Game6PelletFR7Matrixf = .text:0x8016B818; // type:function size:0x110 scope:global align:4 +onEndCapture__Q24Game6PelletFv = .text:0x8016B928; // type:function size:0x98 scope:global align:4 +__ct__Q24Game13BasePelletMgrFQ34Game10PelletList5cKind = .text:0x8016B9C0; // type:function size:0x270 scope:global align:4 +__dt__11CollPartMgrFv = .text:0x8016BC30; // type:function size:0xB8 scope:weak align:4 +__dt__24MonoObjectMgr<8CollPart>Fv = .text:0x8016BCE8; // type:function size:0xA0 scope:weak align:4 +getPelletConfig__Q24Game13BasePelletMgrFi = .text:0x8016BD88; // type:function size:0x30 scope:global align:4 +setUse__Q24Game13BasePelletMgrFi = .text:0x8016BDB8; // type:function size:0x7C scope:global align:4 +load__Q24Game13BasePelletMgrFv = .text:0x8016BE34; // type:function size:0x298 scope:global align:4 +load_texArc__Q24Game13BasePelletMgrFPc = .text:0x8016C0CC; // type:function size:0x3E4 scope:global align:4 +openTextArc__Q24Game13BasePelletMgrFPc = .text:0x8016C4B0; // type:function size:0x10C scope:global align:4 +closeTextArc__Q24Game13BasePelletMgrFP10JKRArchive = .text:0x8016C5BC; // type:function size:0x30 scope:global align:4 +useModelMgr__Q24Game13BasePelletMgrFiUl = .text:0x8016C5EC; // type:function size:0xE4 scope:global align:4 +createModelCallback__Q24Game13BasePelletMgrFPQ28SysShape5Model = .text:0x8016C6D0; // type:function size:0x2C scope:weak align:4 +onCreateModel__Q24Game13BasePelletMgrFPQ28SysShape5Model = .text:0x8016C6FC; // type:function size:0x4 scope:weak align:4 +createShape__Q24Game13BasePelletMgrFii = .text:0x8016C700; // type:function size:0xE4 scope:global align:4 +setCollTree__Q24Game13BasePelletMgrFPQ24Game6Pelleti = .text:0x8016C7E4; // type:function size:0x158 scope:global align:4 +generatorNewPelletParm__Q24Game13BasePelletMgrFv = .text:0x8016C93C; // type:function size:0x24 scope:global align:4 +generatorGetShape__Q24Game13BasePelletMgrFPQ24Game13GenPelletParm = .text:0x8016C960; // type:function size:0x8 scope:global align:4 +__ct__Q24Game14PelletIteratorFv = .text:0x8016C968; // type:function size:0x18 scope:global align:4 +first__Q24Game14PelletIteratorFv = .text:0x8016C980; // type:function size:0x4C scope:global align:4 +__ml__Q24Game14PelletIteratorFv = .text:0x8016C9CC; // type:function size:0x68 scope:global align:4 +next__Q24Game14PelletIteratorFv = .text:0x8016CA34; // type:function size:0xC0 scope:global align:4 +isDone__Q24Game14PelletIteratorFv = .text:0x8016CAF4; // type:function size:0x10 scope:global align:4 +setFirst__Q24Game14PelletIteratorFv = .text:0x8016CB04; // type:function size:0x350 scope:global align:4 +getNext__31TObjectNode<16GenericObjectMgr>Fv = .text:0x8016CE54; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game9PelletMgrFv = .text:0x8016CE5C; // type:function size:0xCC scope:global align:4 +__dt__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x8016CF28; // type:function size:0xC8 scope:weak align:4 +__dt__31TObjectNode<16GenericObjectMgr>Fv = .text:0x8016CFF0; // type:function size:0x60 scope:weak align:4 +__dt__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x8016D050; // type:function size:0x88 scope:weak align:4 +__dt__29Container<16GenericObjectMgr>Fv = .text:0x8016D0D8; // type:function size:0x70 scope:weak align:4 +createManagers__Q24Game9PelletMgrFUl = .text:0x8016D148; // type:function size:0xF0 scope:global align:4 +resetMgrs__Q24Game9PelletMgrFv = .text:0x8016D238; // type:function size:0x80 scope:global align:4 +resetMgr__Q24Game47FixedSizePelletMgrFv = .text:0x8016D2B8; // type:function size:0x50 scope:weak align:4 +resetMgr__Q24Game49FixedSizePelletMgrFv = .text:0x8016D308; // type:function size:0x50 scope:weak align:4 +resetMgr__Q24Game48FixedSizePelletMgrFv = .text:0x8016D358; // type:function size:0x50 scope:weak align:4 +setupResources__Q24Game9PelletMgrFv = .text:0x8016D3A8; // type:function size:0x80 scope:global align:4 +isDone__36IteratorFv = .text:0x8016D428; // type:function size:0x4C scope:weak align:4 +isDone__39IteratorFv = .text:0x8016D474; // type:function size:0x4C scope:weak align:4 +birth__Q24Game9PelletMgrFPQ24Game13PelletInitArg = .text:0x8016D4C0; // type:function size:0x21C scope:global align:4 +setUse__Q24Game9PelletMgrFPQ24Game13PelletInitArg = .text:0x8016D6DC; // type:function size:0x1AC scope:global align:4 +isNull__Q34Game9PelletMgr15OtakaraItemCodeFv = .text:0x8016D888; // type:function size:0x15C scope:global align:4 +makePelletInitArg__Q24Game9PelletMgrFRQ24Game13PelletInitArgPc = .text:0x8016D9E4; // type:function size:0xC8 scope:global align:4 +makeVsCarryMinMax__Q24Game9PelletMgrFRQ24Game13PelletInitArgPc = .text:0x8016DAAC; // type:function size:0xE4 scope:global align:4 +makePelletInitArg__Q24Game9PelletMgrFRQ24Game13PelletInitArgRQ34Game9PelletMgr15OtakaraItemCode = .text:0x8016DB90; // type:function size:0x2EC scope:global align:4 +makeOtakaraItemCode__Q24Game9PelletMgrFPcRQ34Game9PelletMgr15OtakaraItemCode = .text:0x8016DE7C; // type:function size:0x60 scope:global align:4 +read__Q34Game9PelletMgr15OtakaraItemCodeFR6Stream = .text:0x8016DEDC; // type:function size:0x34 scope:global align:4 +write__Q34Game9PelletMgr15OtakaraItemCodeFR6Stream = .text:0x8016DF10; // type:function size:0x60 scope:global align:4 +addMgr__Q24Game9PelletMgrFPQ24Game13BasePelletMgr = .text:0x8016DF70; // type:function size:0x6C scope:global align:4 +doAnimation__Q24Game9PelletMgrFv = .text:0x8016DFDC; // type:function size:0x1E4 scope:global align:4 +isDone__28Iterator<16GenericObjectMgr>Fv = .text:0x8016E1C0; // type:function size:0x4C scope:weak align:4 +doEntry__Q24Game9PelletMgrFv = .text:0x8016E20C; // type:function size:0x1E4 scope:global align:4 +doSetView__Q24Game9PelletMgrFi = .text:0x8016E3F0; // type:function size:0x1F4 scope:global align:4 +doViewCalc__Q24Game9PelletMgrFv = .text:0x8016E5E4; // type:function size:0x1E4 scope:global align:4 +doSimulation__Q24Game9PelletMgrFf = .text:0x8016E7C8; // type:function size:0x1F4 scope:global align:4 +doDirectDraw__Q24Game9PelletMgrFR8Graphics = .text:0x8016E9BC; // type:function size:0x4 scope:global align:4 +doSimpleDraw__Q24Game9PelletMgrFP8Viewport = .text:0x8016E9C0; // type:function size:0x1F4 scope:global align:4 +setupSoundViewerAndBas__Q24Game9PelletMgrFv = .text:0x8016EBB4; // type:function size:0x1D4 scope:global align:4 +decode__Q24Game9PelletMgrFlRUcRi = .text:0x8016ED88; // type:function size:0x14 scope:global align:4 +encode__Q24Game9PelletMgrFUci = .text:0x8016ED9C; // type:function size:0xC scope:global align:4 +getCaveName__Q24Game9PelletMgrFi = .text:0x8016EDA8; // type:function size:0xB4 scope:global align:4 +getCaveID__Q24Game9PelletMgrFPc = .text:0x8016EE5C; // type:function size:0x270 scope:global align:4 +getMgrByID__Q24Game9PelletMgrFUc = .text:0x8016F0CC; // type:function size:0x21C scope:global align:4 +__dt__Q24Game9PelletMgrFv = .text:0x8016F2E8; // type:function size:0xE0 scope:weak align:4 +getMgrName__Q24Game9PelletMgrFv = .text:0x8016F3C8; // type:function size:0xC scope:weak align:4 +__ml__28Iterator<16GenericObjectMgr>Fv = .text:0x8016F3D4; // type:function size:0x38 scope:weak align:4 +next__28Iterator<16GenericObjectMgr>Fv = .text:0x8016F40C; // type:function size:0xE4 scope:weak align:4 +first__28Iterator<16GenericObjectMgr>Fv = .text:0x8016F4F0; // type:function size:0xDC scope:weak align:4 +__ml__36IteratorFv = .text:0x8016F5CC; // type:function size:0x38 scope:weak align:4 +next__36IteratorFv = .text:0x8016F604; // type:function size:0xE4 scope:weak align:4 +first__36IteratorFv = .text:0x8016F6E8; // type:function size:0xDC scope:weak align:4 +__ml__39IteratorFv = .text:0x8016F7C4; // type:function size:0x38 scope:weak align:4 +next__39IteratorFv = .text:0x8016F7FC; // type:function size:0xE4 scope:weak align:4 +first__39IteratorFv = .text:0x8016F8E0; // type:function size:0xDC scope:weak align:4 +generatorBirth__Q24Game13BasePelletMgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x8016F9BC; // type:function size:0x8 scope:weak align:4 +generatorWrite__Q24Game13BasePelletMgrFR6StreamPQ24Game13GenPelletParm = .text:0x8016F9C4; // type:function size:0x4 scope:weak align:4 +generatorRead__Q24Game13BasePelletMgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x8016F9C8; // type:function size:0x4 scope:weak align:4 +generatorLocalVersion__Q24Game13BasePelletMgrFv = .text:0x8016F9CC; // type:function size:0xC scope:weak align:4 +doAnimation__Q24Game13BasePelletMgrFv = .text:0x8016F9D8; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game13BasePelletMgrFv = .text:0x8016F9DC; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game13BasePelletMgrFi = .text:0x8016F9E0; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game13BasePelletMgrFv = .text:0x8016F9E4; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game13BasePelletMgrFf = .text:0x8016F9E8; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game13BasePelletMgrFR8Graphics = .text:0x8016F9EC; // type:function size:0x4 scope:weak align:4 +__dt__20Container<8CollPart>Fv = .text:0x8016F9F0; // type:function size:0x70 scope:weak align:4 +__dt__20ObjectMgr<8CollPart>Fv = .text:0x8016FA60; // type:function size:0x88 scope:weak align:4 +satisfy__13WPExcludeSpotFPQ24Game8WayPoint = .text:0x8016FAE8; // type:function size:0x84 scope:weak align:4 +satisfy__Q223@unnamed@pelletMgr_cpp@6NotOffFPQ24Game8WayPoint = .text:0x8016FB6C; // type:function size:0x4DC scope:local align:4 +onSetPosition__Q24Game6PelletFR10Vector3 = .text:0x80170048; // type:function size:0x44 scope:weak align:4 +inWater__Q24Game6PelletFv = .text:0x8017008C; // type:function size:0x8 scope:weak align:4 +getBedamaColor__Q24Game6PelletFv = .text:0x80170094; // type:function size:0x8 scope:weak align:4 +getSound_PosPtr__Q24Game6PelletFv = .text:0x8017009C; // type:function size:0x8 scope:weak align:4 +getFaceDir__Q24Game6PelletFv = .text:0x801700A4; // type:function size:0x8 scope:weak align:4 +deferPikiCollision__Q24Game6PelletFv = .text:0x801700AC; // type:function size:0x8 scope:weak align:4 +sound_otakaraEventFinish__Q24Game6PelletFv = .text:0x801700B4; // type:function size:0x4 scope:weak align:4 +__dt__Q23PSM9EventBaseFv = .text:0x801700B8; // type:function size:0xBC scope:weak align:4 +getCastType__Q23PSM11CreatureObjFv = .text:0x80170174; // type:function size:0x8 scope:weak align:4 +getJAIObject__Q23PSM11CreatureObjFv = .text:0x8017017C; // type:function size:0x10 scope:weak align:4 +getHandleArea__Q23PSM11CreatureObjFUc = .text:0x8017018C; // type:function size:0x10 scope:weak align:4 +onCalcOn__Q23PSM11CreatureObjFv = .text:0x8017019C; // type:function size:0x4 scope:weak align:4 +getName__Q24Game18PelletGoalStateArgFv = .text:0x801701A0; // type:function size:0xC scope:weak align:4 +init__Q24Game28StateMachineFPQ24Game6Pellet = .text:0x801701AC; // type:function size:0x4 scope:weak align:4 +get__33NodeObjectMgr<16GenericObjectMgr>FPv = .text:0x801701B0; // type:function size:0x8 scope:weak align:4 +getNext__33NodeObjectMgr<16GenericObjectMgr>FPv = .text:0x801701B8; // type:function size:0x8 scope:weak align:4 +getStart__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801701C0; // type:function size:0x8 scope:weak align:4 +getEnd__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801701C8; // type:function size:0x8 scope:weak align:4 +resetMgr__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801701D0; // type:function size:0x18 scope:weak align:4 +resetMgr__42MonoObjectMgrFv = .text:0x801701E8; // type:function size:0x18 scope:weak align:4 +resetMgr__44MonoObjectMgrFv = .text:0x80170200; // type:function size:0x18 scope:weak align:4 +resetMgr__43MonoObjectMgrFv = .text:0x80170218; // type:function size:0x18 scope:weak align:4 +getNext__24MonoObjectMgr<8CollPart>FPv = .text:0x80170230; // type:function size:0x40 scope:weak align:4 +getStart__24MonoObjectMgr<8CollPart>Fv = .text:0x80170270; // type:function size:0x30 scope:weak align:4 +getEnd__24MonoObjectMgr<8CollPart>Fv = .text:0x801702A0; // type:function size:0x8 scope:weak align:4 +getAt__24MonoObjectMgr<8CollPart>Fi = .text:0x801702A8; // type:function size:0x10 scope:weak align:4 +getTo__24MonoObjectMgr<8CollPart>Fv = .text:0x801702B8; // type:function size:0x8 scope:weak align:4 +doAnimation__24MonoObjectMgr<8CollPart>Fv = .text:0x801702C0; // type:function size:0x80 scope:weak align:4 +doEntry__24MonoObjectMgr<8CollPart>Fv = .text:0x80170340; // type:function size:0x80 scope:weak align:4 +doSetView__24MonoObjectMgr<8CollPart>Fi = .text:0x801703C0; // type:function size:0x90 scope:weak align:4 +doViewCalc__24MonoObjectMgr<8CollPart>Fv = .text:0x80170450; // type:function size:0x80 scope:weak align:4 +doSimulation__24MonoObjectMgr<8CollPart>Ff = .text:0x801704D0; // type:function size:0x90 scope:weak align:4 +doDirectDraw__24MonoObjectMgr<8CollPart>FR8Graphics = .text:0x80170560; // type:function size:0x90 scope:weak align:4 +resetMgr__24MonoObjectMgr<8CollPart>Fv = .text:0x801705F0; // type:function size:0x18 scope:weak align:4 +clearMgr__24MonoObjectMgr<8CollPart>Fv = .text:0x80170608; // type:function size:0x30 scope:weak align:4 +onAlloc__24MonoObjectMgr<8CollPart>Fv = .text:0x80170638; // type:function size:0x4 scope:weak align:4 +get__24MonoObjectMgr<8CollPart>FPv = .text:0x8017063C; // type:function size:0x10 scope:weak align:4 +doAnimation__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x8017064C; // type:function size:0x1E4 scope:weak align:4 +doEntry__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x80170830; // type:function size:0x1E4 scope:weak align:4 +doSetView__29ObjectMgr<16GenericObjectMgr>Fi = .text:0x80170A14; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x80170C08; // type:function size:0x1E4 scope:weak align:4 +doSimulation__29ObjectMgr<16GenericObjectMgr>Ff = .text:0x80170DEC; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__29ObjectMgr<16GenericObjectMgr>FR8Graphics = .text:0x80170FE0; // type:function size:0x1F4 scope:weak align:4 +getObject__29Container<16GenericObjectMgr>FPv = .text:0x801711D4; // type:function size:0x2C scope:weak align:4 +getAt__29Container<16GenericObjectMgr>Fi = .text:0x80171200; // type:function size:0x8 scope:weak align:4 +getTo__29Container<16GenericObjectMgr>Fv = .text:0x80171208; // type:function size:0x8 scope:weak align:4 +getObject__20Container<8CollPart>FPv = .text:0x80171210; // type:function size:0x2C scope:weak align:4 +getAt__20Container<8CollPart>Fi = .text:0x8017123C; // type:function size:0x8 scope:weak align:4 +getTo__20Container<8CollPart>Fv = .text:0x80171244; // type:function size:0x8 scope:weak align:4 +invoke__52Delegate1FPQ28SysShape5Model = .text:0x8017124C; // type:function size:0x30 scope:weak align:4 +doDirectDraw__20ObjectMgr<8CollPart>FR8Graphics = .text:0x8017127C; // type:function size:0x1F4 scope:weak align:4 +isDone__19Iterator<8CollPart>Fv = .text:0x80171470; // type:function size:0x4C scope:weak align:4 +doSimulation__20ObjectMgr<8CollPart>Ff = .text:0x801714BC; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__20ObjectMgr<8CollPart>Fv = .text:0x801716B0; // type:function size:0x1E4 scope:weak align:4 +doSetView__20ObjectMgr<8CollPart>Fi = .text:0x80171894; // type:function size:0x1F4 scope:weak align:4 +doEntry__20ObjectMgr<8CollPart>Fv = .text:0x80171A88; // type:function size:0x1E4 scope:weak align:4 +doAnimation__20ObjectMgr<8CollPart>Fv = .text:0x80171C6C; // type:function size:0x1E4 scope:weak align:4 +__ct__24MonoObjectMgr<8CollPart>Fv = .text:0x80171E50; // type:function size:0x9C scope:weak align:4 +transit__Q24Game28StateMachineFPQ24Game6PelletiPQ24Game8StateArg = .text:0x80171EEC; // type:function size:0x9C scope:weak align:4 +init__Q24Game24FSMStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x80171F88; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x80171F8C; // type:function size:0x4 scope:weak align:4 +getCurrID__Q24Game28StateMachineFPQ24Game6Pellet = .text:0x80171F90; // type:function size:0x1C scope:weak align:4 +exec__Q24Game28StateMachineFPQ24Game6Pellet = .text:0x80171FAC; // type:function size:0x38 scope:weak align:4 +exec__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x80171FE4; // type:function size:0x4 scope:weak align:4 +resetMgrAndResources__Q24Game49FixedSizePelletMgrFv = .text:0x80171FE8; // type:function size:0x9C scope:weak align:4 +resetMgr__Q24Game49FixedSizePelletMgrFv = .text:0x80172084; // type:function size:0x50 scope:weak align:4 +resetMgrAndResources__Q24Game46FixedSizePelletMgrFv = .text:0x801720D4; // type:function size:0x9C scope:weak align:4 +resetMgr__Q24Game46FixedSizePelletMgrFv = .text:0x80172170; // type:function size:0x50 scope:weak align:4 +__ml__19Iterator<8CollPart>Fv = .text:0x801721C0; // type:function size:0x38 scope:weak align:4 +next__19Iterator<8CollPart>Fv = .text:0x801721F8; // type:function size:0xE4 scope:weak align:4 +first__19Iterator<8CollPart>Fv = .text:0x801722DC; // type:function size:0xDC scope:weak align:4 +resetMgr__41MonoObjectMgrFv = .text:0x801723B8; // type:function size:0x18 scope:weak align:4 +resetMgr__44MonoObjectMgrFv = .text:0x801723D0; // type:function size:0x18 scope:weak align:4 +__sinit_pelletMgr_cpp = .text:0x801723E8; // type:function size:0x28 scope:local align:4 +@16@__dt__Q23PSM9EventBaseFv = .text:0x80172410; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM11CreatureObjFUcUlUl = .text:0x80172418; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM11CreatureObjFPP8JAISoundUlUl = .text:0x80172420; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM11CreatureObjFUlUl = .text:0x80172428; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9EventBaseFv = .text:0x80172430; // type:function size:0x8 scope:weak align:4 +@788@onKeyEvent__Q24Game6PelletFRCQ28SysShape8KeyEvent = .text:0x80172438; // type:function size:0x8 scope:weak align:4 +@792@getCarryInfoParam__Q24Game6PelletFR14CarryInfoParam = .text:0x80172440; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__24MonoObjectMgr<8CollPart>Fv = .text:0x80172448; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__24MonoObjectMgr<8CollPart>FR8Graphics = .text:0x80172450; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__24MonoObjectMgr<8CollPart>Ff = .text:0x80172458; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__24MonoObjectMgr<8CollPart>Fv = .text:0x80172460; // type:function size:0x8 scope:weak align:4 +@28@doSetView__24MonoObjectMgr<8CollPart>Fi = .text:0x80172468; // type:function size:0x8 scope:weak align:4 +@28@doEntry__24MonoObjectMgr<8CollPart>Fv = .text:0x80172470; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__24MonoObjectMgr<8CollPart>Fv = .text:0x80172478; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__20ObjectMgr<8CollPart>FR8Graphics = .text:0x80172480; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__20ObjectMgr<8CollPart>Ff = .text:0x80172488; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__20ObjectMgr<8CollPart>Fv = .text:0x80172490; // type:function size:0x8 scope:weak align:4 +@28@doSetView__20ObjectMgr<8CollPart>Fi = .text:0x80172498; // type:function size:0x8 scope:weak align:4 +@28@doEntry__20ObjectMgr<8CollPart>Fv = .text:0x801724A0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__20ObjectMgr<8CollPart>Fv = .text:0x801724A8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__29ObjectMgr<16GenericObjectMgr>FR8Graphics = .text:0x801724B0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__29ObjectMgr<16GenericObjectMgr>Ff = .text:0x801724B8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x801724C0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__29ObjectMgr<16GenericObjectMgr>Fi = .text:0x801724C8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x801724D0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x801724D8; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801724E0; // type:function size:0x8 scope:weak align:4 +@28@doSimpleDraw__Q24Game9PelletMgrFP8Viewport = .text:0x801724E8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game9PelletMgrFR8Graphics = .text:0x801724F0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game9PelletMgrFf = .text:0x801724F8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__Q24Game9PelletMgrFv = .text:0x80172500; // type:function size:0x8 scope:weak align:4 +@28@doSetView__Q24Game9PelletMgrFi = .text:0x80172508; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game9PelletMgrFv = .text:0x80172510; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game9PelletMgrFv = .text:0x80172518; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game16WayPointIteratorFPQ24Game8WayPointb = .text:0x80172520; // type:function size:0x14 scope:global align:4 +first__Q24Game16WayPointIteratorFv = .text:0x80172534; // type:function size:0x28 scope:global align:4 +next__Q24Game16WayPointIteratorFv = .text:0x8017255C; // type:function size:0x2C scope:global align:4 +isDone__Q24Game16WayPointIteratorFv = .text:0x80172588; // type:function size:0x3C scope:global align:4 +__ml__Q24Game16WayPointIteratorFv = .text:0x801725C4; // type:function size:0x34 scope:global align:4 +forward__Q24Game16WayPointIteratorFv = .text:0x801725F8; // type:function size:0xA8 scope:global align:4 +__ct__Q24Game8WayPointFv = .text:0x801726A0; // type:function size:0x6C scope:global align:4 +__dt__Q34Game8WayPoint8RoomListFv = .text:0x8017270C; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game8WayPointFv = .text:0x8017276C; // type:function size:0x84 scope:global align:4 +reset__Q24Game8WayPointFv = .text:0x801727F0; // type:function size:0x84 scope:global align:4 +setOpen__Q24Game8WayPointFb = .text:0x80172874; // type:function size:0x28 scope:global align:4 +setWater__Q24Game8WayPointFb = .text:0x8017289C; // type:function size:0x28 scope:global align:4 +setBridge__Q24Game8WayPointFb = .text:0x801728C4; // type:function size:0x28 scope:global align:4 +directDraw__Q24Game8WayPointFR8Graphics = .text:0x801728EC; // type:function size:0x4 scope:global align:4 +directDraw_Simple__Q24Game8WayPointFR8Graphics = .text:0x801728F0; // type:function size:0x4 scope:global align:4 +__dt__27ContainerFv = .text:0x801728F4; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game8RouteMgrFv = .text:0x80172964; // type:function size:0x80 scope:global align:4 +makeInvertLinks__Q24Game8RouteMgrFv = .text:0x801729E4; // type:function size:0x148 scope:global align:4 +linkable__Q24Game8RouteMgrFPQ24Game8WayPointPQ24Game8WayPoint = .text:0x80172B2C; // type:function size:0x1E4 scope:global align:4 +refreshWater__Q24Game8RouteMgrFv = .text:0x80172D10; // type:function size:0x268 scope:global align:4 +isDone__26IteratorFv = .text:0x80172F78; // type:function size:0x4C scope:weak align:4 +getNearestWayPoint__Q24Game8RouteMgrFRQ24Game11WPSearchArg = .text:0x80172FC4; // type:function size:0x3A8 scope:global align:4 +getNearestEdge__Q24Game8RouteMgrFRQ24Game15WPEdgeSearchArg = .text:0x8017336C; // type:function size:0x81C scope:global align:4 +setCloseAll__Q24Game8RouteMgrFv = .text:0x80173B88; // type:function size:0x1E0 scope:global align:4 +openRoom__Q24Game8RouteMgrFs = .text:0x80173D68; // type:function size:0x210 scope:global align:4 +write__Q24Game8RouteMgrFR6Stream = .text:0x80173F78; // type:function size:0x31C scope:global align:4 +__ct__Q24Game12GameRouteMgrFv = .text:0x80174294; // type:function size:0x7C scope:global align:4 +__dt__Q24Game12GameRouteMgrFv = .text:0x80174310; // type:function size:0xBC scope:global align:4 +read__Q24Game12GameRouteMgrFR6Stream = .text:0x801743CC; // type:function size:0xF4 scope:global align:4 +getWayPoint__Q24Game12GameRouteMgrFs = .text:0x801744C0; // type:function size:0x88 scope:global align:4 +get__Q24Game12GameRouteMgrFPv = .text:0x80174548; // type:function size:0x30 scope:global align:4 +getNext__Q24Game12GameRouteMgrFPv = .text:0x80174578; // type:function size:0x8 scope:global align:4 +getStart__Q24Game12GameRouteMgrFv = .text:0x80174580; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game12GameRouteMgrFv = .text:0x80174588; // type:function size:0x8 scope:global align:4 +__ct__Q24Game14EditorRouteMgrFv = .text:0x80174590; // type:function size:0xAC scope:global align:4 +__dt__Q34Game14EditorRouteMgr6WPNodeFv = .text:0x8017463C; // type:function size:0x60 scope:weak align:4 +read__Q24Game14EditorRouteMgrFR6Stream = .text:0x8017469C; // type:function size:0x1AC scope:global align:4 +addWayPoint__Q24Game14EditorRouteMgrFPQ24Game8WayPoint = .text:0x80174848; // type:function size:0x8C scope:global align:4 +delWayPoint__Q24Game14EditorRouteMgrFPQ24Game8WayPoint = .text:0x801748D4; // type:function size:0x88 scope:global align:4 +getWayPoint__Q24Game14EditorRouteMgrFs = .text:0x8017495C; // type:function size:0x38 scope:global align:4 +get__Q24Game14EditorRouteMgrFPv = .text:0x80174994; // type:function size:0x8 scope:global align:4 +getNext__Q24Game14EditorRouteMgrFPv = .text:0x8017499C; // type:function size:0x8 scope:global align:4 +getStart__Q24Game14EditorRouteMgrFv = .text:0x801749A4; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game14EditorRouteMgrFv = .text:0x801749AC; // type:function size:0x8 scope:global align:4 +__dt__Q24Game14EditorRouteMgrFv = .text:0x801749B4; // type:function size:0xB8 scope:weak align:4 +__ml__26IteratorFv = .text:0x80174A6C; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x80174AA4; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80174B88; // type:function size:0xDC scope:weak align:4 +getObject__27ContainerFPv = .text:0x80174C64; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x80174C90; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x80174C98; // type:function size:0x8 scope:weak align:4 +movieUserCommand__Q24Game5OnyonFUlPQ24Game11MoviePlayer = .text:0x80174CA0; // type:function size:0x80C scope:global align:4 +isSuckReady__Q24Game5OnyonFv = .text:0x801754AC; // type:function size:0xE4 scope:global align:4 +isSuckArriveWait__Q24Game5OnyonFv = .text:0x80175590; // type:function size:0x28 scope:global align:4 +setType__Q24Game5OnyonFi = .text:0x801755B8; // type:function size:0x68C scope:global align:4 +__dt__Q23efx13TChasePosYRotFv = .text:0x80175C44; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx8TForeverFv = .text:0x80175CC8; // type:function size:0x84 scope:weak align:4 +setupTevRegAnim__Q24Game5OnyonFi = .text:0x80175D4C; // type:function size:0xD0 scope:global align:4 +stimulate__Q24Game5OnyonFRQ24Game11Interaction = .text:0x80175E1C; // type:function size:0x74 scope:global align:4 +actOnyon__Q24Game18InteractSuckArriveFPQ24Game5Onyon = .text:0x80175E90; // type:function size:0x158 scope:global align:4 +needShadow__Q24Game5OnyonFv = .text:0x80175FE8; // type:function size:0x8 scope:global align:4 +getShadowParam__Q24Game5OnyonFRQ24Game11ShadowParam = .text:0x80175FF0; // type:function size:0xA4 scope:global align:4 +sound_culling__Q24Game5OnyonFv = .text:0x80176094; // type:function size:0x34 scope:global align:4 +actOnyon__Q24Game16InteractSuckDoneFPQ24Game5Onyon = .text:0x801760C8; // type:function size:0xDBC scope:global align:4 +startPropera__Q24Game5OnyonFv = .text:0x80176E84; // type:function size:0xC scope:global align:4 +stopPropera__Q24Game5OnyonFv = .text:0x80176E90; // type:function size:0xC scope:global align:4 +doDirectDraw__Q24Game5OnyonFR8Graphics = .text:0x80176E9C; // type:function size:0x16C scope:global align:4 +onInit__Q24Game5OnyonFPQ24Game15CreatureInitArg = .text:0x80177008; // type:function size:0x34 scope:global align:4 +onKill__Q24Game5OnyonFPQ24Game15CreatureKillArg = .text:0x8017703C; // type:function size:0x4 scope:global align:4 +onSetPosition__Q24Game5OnyonFv = .text:0x80177040; // type:function size:0x23C scope:global align:4 +setSpotState__Q24Game5OnyonFQ34Game5Onyon10cSpotState = .text:0x8017727C; // type:function size:0x110 scope:global align:4 +getSuckPos__Q24Game5OnyonFv = .text:0x8017738C; // type:function size:0xAC scope:global align:4 +getGoalPos__Q24Game5OnyonFv = .text:0x80177438; // type:function size:0xD8 scope:global align:4 +doAI__Q24Game5OnyonFv = .text:0x80177510; // type:function size:0x318 scope:global align:4 +forceClose__Q24Game5OnyonFv = .text:0x80177828; // type:function size:0x78 scope:global align:4 +do_updateLOD__Q24Game5OnyonFv = .text:0x801778A0; // type:function size:0x78 scope:global align:4 +getLODCylinder__Q24Game5OnyonFRQ23Sys8Cylinder = .text:0x80177918; // type:function size:0x64 scope:global align:4 +do_doAnimation__Q24Game5OnyonFv = .text:0x8017797C; // type:function size:0x470 scope:global align:4 +getSound_PosPtr__Q24Game8BaseItemFv = .text:0x80177DEC; // type:function size:0x8 scope:weak align:4 +startWaitMotion__Q24Game5OnyonFv = .text:0x80177DF4; // type:function size:0x198 scope:global align:4 +onKeyEvent_UFO__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x80177F8C; // type:function size:0x78 scope:global align:4 +getFlagSetPos__Q24Game5OnyonFv = .text:0x80178004; // type:function size:0x13C scope:global align:4 +onKeyEvent__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x80178140; // type:function size:0x4C scope:global align:4 +vsChargePikmin__Q24Game5OnyonFv = .text:0x8017818C; // type:function size:0xAC scope:global align:4 +onKeyEvent_Onyon__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x80178238; // type:function size:0x648 scope:global align:4 +doEmit__Q24Game5OnyonFPQ24Game8Creatureb = .text:0x80178880; // type:function size:0x298 scope:global align:4 +getLegPart__Q24Game5OnyonFi = .text:0x80178B18; // type:function size:0xA0 scope:global align:4 +getFootPart__Q24Game5OnyonFi = .text:0x80178BB8; // type:function size:0xC0 scope:global align:4 +makeTrMatrix__Q24Game5OnyonFv = .text:0x80178C78; // type:function size:0x12C scope:global align:4 +changeMaterial__Q24Game5OnyonFv = .text:0x80178DA4; // type:function size:0x138 scope:global align:4 +setSpotEffect__Q24Game5OnyonFb = .text:0x80178EDC; // type:function size:0x1D4 scope:global align:4 +setSpotEffectActive__Q24Game5OnyonFb = .text:0x801790B0; // type:function size:0x134 scope:global align:4 +efxSuikomi__Q24Game5OnyonFv = .text:0x801791E4; // type:function size:0x168 scope:global align:4 +efxPafuPafu__Q24Game5OnyonFv = .text:0x8017934C; // type:function size:0x1A0 scope:global align:4 +efxPafuKira__Q24Game5OnyonFv = .text:0x801794EC; // type:function size:0xB0 scope:global align:4 +getStoreCount__Q24Game5OnyonFv = .text:0x8017959C; // type:function size:0x2C scope:global align:4 +enterPiki__Q24Game5OnyonFPQ24Game4Piki = .text:0x801795C8; // type:function size:0x244 scope:global align:4 +exitPikis__Q24Game5OnyonFii = .text:0x8017980C; // type:function size:0x48 scope:global align:4 +exitPiki__Q24Game5OnyonFv = .text:0x80179854; // type:function size:0x454 scope:global align:4 +insideAccessArea__Q24Game5OnyonFR10Vector3 = .text:0x80179CA8; // type:function size:0xB8 scope:global align:4 +generatorBirth__Q34Game9ItemOnyon3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x80179D60; // type:function size:0x11C scope:global align:4 +setupSoundViewerAndBas__Q34Game9ItemOnyon3MgrFv = .text:0x80179E7C; // type:function size:0x4 scope:global align:4 +getInEnd_UFO__Q24Game5OnyonFv = .text:0x80179E80; // type:function size:0xC4 scope:global align:4 +getInStart_UFO__Q24Game5OnyonFv = .text:0x80179F44; // type:function size:0x168 scope:global align:4 +getOutStart_UFO__Q24Game5OnyonFv = .text:0x8017A0AC; // type:function size:0xC4 scope:global align:4 +__ct__Q28SysShape8AnimatorFv = .text:0x8017A170; // type:function size:0x34 scope:weak align:4 +getPMotionSpeed__Q24Game5OnyonFi = .text:0x8017A1A4; // type:function size:0x7C scope:global align:4 +getPAnimator__Q24Game5OnyonFi = .text:0x8017A220; // type:function size:0x7C scope:global align:4 +update_pmotions__Q24Game5OnyonFv = .text:0x8017A29C; // type:function size:0x198 scope:global align:4 +initDependency__Q34Game9ItemOnyon3MgrFv = .text:0x8017A434; // type:function size:0x1E8 scope:global align:4 +initDependency__Q24Game8BaseItemFv = .text:0x8017A61C; // type:function size:0x4 scope:weak align:4 +generatorGetShape__Q34Game9ItemOnyon3MgrFPQ24Game11GenItemParm = .text:0x8017A620; // type:function size:0x4C scope:global align:4 +generatorNewItemParm__Q34Game9ItemOnyon3MgrFv = .text:0x8017A66C; // type:function size:0x54 scope:global align:4 +generatorWrite__Q34Game9ItemOnyon3MgrFR6StreamPQ24Game11GenItemParm = .text:0x8017A6C0; // type:function size:0x8C scope:global align:4 +generatorRead__Q34Game9ItemOnyon3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x8017A74C; // type:function size:0x78 scope:global align:4 +__ct__Q34Game9ItemOnyon3MgrFv = .text:0x8017A7C4; // type:function size:0x188 scope:global align:4 +__dt__28NodeObjectMgrFv = .text:0x8017A94C; // type:function size:0xC8 scope:weak align:4 +__dt__26TObjectNodeFv = .text:0x8017AA14; // type:function size:0x60 scope:weak align:4 +__dt__24ObjectMgrFv = .text:0x8017AA74; // type:function size:0x88 scope:weak align:4 +__dt__24ContainerFv = .text:0x8017AAFC; // type:function size:0x70 scope:weak align:4 +__dt__Q34Game9ItemOnyon3MgrFv = .text:0x8017AB6C; // type:function size:0x11C scope:global align:4 +on_movie_end__Q24Game5OnyonFb = .text:0x8017AC88; // type:function size:0x254 scope:global align:4 +birth__Q34Game9ItemOnyon3MgrFii = .text:0x8017AEDC; // type:function size:0xBC0 scope:global align:4 +getOnyon__Q34Game9ItemOnyon3MgrFi = .text:0x8017BA9C; // type:function size:0x60 scope:global align:4 +init__Q34Game9ItemOnyon3MgrFv = .text:0x8017BAFC; // type:function size:0x20 scope:global align:4 +load__Q34Game9ItemOnyon3MgrFv = .text:0x8017BB1C; // type:function size:0x528 scope:global align:4 +generatorGetID__Q34Game9ItemOnyon3MgrFv = .text:0x8017C044; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game9ItemOnyon3MgrFv = .text:0x8017C050; // type:function size:0xC scope:weak align:4 +doAnimation__Q34Game9ItemOnyon3MgrFv = .text:0x8017C05C; // type:function size:0x2C scope:weak align:4 +doEntry__Q34Game9ItemOnyon3MgrFv = .text:0x8017C088; // type:function size:0x2C scope:weak align:4 +doSetView__Q34Game9ItemOnyon3MgrFi = .text:0x8017C0B4; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q34Game9ItemOnyon3MgrFv = .text:0x8017C0E0; // type:function size:0x2C scope:weak align:4 +doSimulation__Q34Game9ItemOnyon3MgrFf = .text:0x8017C10C; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q34Game9ItemOnyon3MgrFR8Graphics = .text:0x8017C138; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game11BaseItemMgrFv = .text:0x8017C164; // type:function size:0x4 scope:weak align:4 +setup__Q24Game11BaseItemMgrFPQ24Game8BaseItem = .text:0x8017C168; // type:function size:0x4 scope:weak align:4 +onLoadResources__Q24Game11BaseItemMgrFv = .text:0x8017C16C; // type:function size:0x4 scope:weak align:4 +loadEverytime__Q24Game11BaseItemMgrFv = .text:0x8017C170; // type:function size:0x8 scope:weak align:4 +onUpdateUseList__Q24Game11BaseItemMgrFPQ24Game11GenItemParmi = .text:0x8017C178; // type:function size:0x4 scope:weak align:4 +getEnd__Q34Game9ItemOnyon3MgrFv = .text:0x8017C17C; // type:function size:0x2C scope:weak align:4 +getEnd__28NodeObjectMgrFv = .text:0x8017C1A8; // type:function size:0x8 scope:weak align:4 +getStart__Q34Game9ItemOnyon3MgrFv = .text:0x8017C1B0; // type:function size:0x2C scope:weak align:4 +getStart__28NodeObjectMgrFv = .text:0x8017C1DC; // type:function size:0x8 scope:weak align:4 +getNext__Q34Game9ItemOnyon3MgrFPv = .text:0x8017C1E4; // type:function size:0x2C scope:weak align:4 +getNext__28NodeObjectMgrFPv = .text:0x8017C210; // type:function size:0x8 scope:weak align:4 +get__Q34Game9ItemOnyon3MgrFPv = .text:0x8017C218; // type:function size:0x2C scope:weak align:4 +get__28NodeObjectMgrFPv = .text:0x8017C244; // type:function size:0x8 scope:weak align:4 +getShapeID__Q24Game11GenItemParmFv = .text:0x8017C24C; // type:function size:0x8 scope:weak align:4 +getName__Q23efx7ArgTypeFv = .text:0x8017C254; // type:function size:0x8 scope:weak align:4 +getID__Q23efx12OnyonSpotArgFv = .text:0x8017C25C; // type:function size:0x14 scope:weak align:4 +getCreatureName__Q24Game5OnyonFv = .text:0x8017C270; // type:function size:0x8 scope:weak align:4 +getCreatureID__Q24Game8BaseItemFv = .text:0x8017C278; // type:function size:0x8 scope:weak align:4 +do_setLODParm__Q24Game8BaseItemFRQ24Game9AILODParm = .text:0x8017C280; // type:function size:0x4 scope:weak align:4 +getMapCollisionRadius__Q24Game8BaseItemFv = .text:0x8017C284; // type:function size:0x8 scope:weak align:4 +interactAttack__Q24Game8BaseItemFRQ24Game14InteractAttack = .text:0x8017C28C; // type:function size:0x8 scope:weak align:4 +interactBreakBridge__Q24Game8BaseItemFRQ24Game19InteractBreakBridge = .text:0x8017C294; // type:function size:0x8 scope:weak align:4 +interactEat__Q24Game8BaseItemFRQ24Game11InteractEat = .text:0x8017C29C; // type:function size:0x8 scope:weak align:4 +interactFlockAttack__Q24Game8BaseItemFRQ24Game19InteractFlockAttack = .text:0x8017C2A4; // type:function size:0x8 scope:weak align:4 +interactAbsorb__Q24Game8BaseItemFRQ24Game14InteractAbsorb = .text:0x8017C2AC; // type:function size:0x8 scope:weak align:4 +interactFue__Q24Game8BaseItemFRQ24Game11InteractFue = .text:0x8017C2B4; // type:function size:0x8 scope:weak align:4 +interactFarmKarero__Q24Game8BaseItemFRQ24Game18InteractFarmKarero = .text:0x8017C2BC; // type:function size:0x8 scope:weak align:4 +interactFarmHaero__Q24Game8BaseItemFRQ24Game17InteractFarmHaero = .text:0x8017C2C4; // type:function size:0x8 scope:weak align:4 +interactGotKey__Q24Game8BaseItemFRQ24Game14InteractGotKey = .text:0x8017C2CC; // type:function size:0x8 scope:weak align:4 +getVectorField__Q24Game8BaseItemFRQ23Sys6SphereR10Vector3 = .text:0x8017C2D4; // type:function size:0x8 scope:weak align:4 +getWorkDistance__Q24Game8BaseItemFRQ23Sys6Sphere = .text:0x8017C2DC; // type:function size:0x8 scope:weak align:4 +bounceCallback__Q24Game8BaseItemFPQ23Sys8Triangle = .text:0x8017C2E4; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game8BaseItemFRQ24Game9CollEvent = .text:0x8017C2E8; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game8BaseItemFRQ24Game9PlatEvent = .text:0x8017C2EC; // type:function size:0x4 scope:weak align:4 +updateBoundSphere__Q24Game8BaseItemFv = .text:0x8017C2F0; // type:function size:0x4 scope:weak align:4 +getBoundingSphere__Q24Game8BaseItemFRQ23Sys6Sphere = .text:0x8017C2F4; // type:function size:0x24 scope:weak align:4 +onSetPosition__Q24Game8BaseItemFR10Vector3 = .text:0x8017C318; // type:function size:0x44 scope:weak align:4 +onSetPosition__Q24Game8BaseItemFv = .text:0x8017C35C; // type:function size:0x4 scope:weak align:4 +getVelocity__Q24Game8BaseItemFv = .text:0x8017C360; // type:function size:0x1C scope:weak align:4 +getVelocityAt__Q24Game8BaseItemFR10Vector3R10Vector3 = .text:0x8017C37C; // type:function size:0x14 scope:weak align:4 +__dt__Q23efx8TPodKiraFv = .text:0x8017C390; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TPodOpenBFv = .text:0x8017C42C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TPodOpenAFv = .text:0x8017C4C8; // type:function size:0x9C scope:weak align:4 +doExecuteEmitterOperation__Q23efx8TForeverFP14JPABaseEmitter = .text:0x8017C564; // type:function size:0x4 scope:weak align:4 +__dt__Q23efx10TUfoGasOutFv = .text:0x8017C568; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TUfoGasInFv = .text:0x8017C604; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TUfoPodOpenSuckFv = .text:0x8017C6A0; // type:function size:0x9C scope:weak align:4 +getName__Q34Game12ItemPikihead7InitArgFv = .text:0x8017C73C; // type:function size:0xC scope:weak align:4 +getName__Q24Game11ItemInitArgFv = .text:0x8017C748; // type:function size:0xC scope:weak align:4 +resetMgr__28NodeObjectMgrFv = .text:0x8017C754; // type:function size:0x18 scope:weak align:4 +doAnimation__24ObjectMgrFv = .text:0x8017C76C; // type:function size:0x1E4 scope:weak align:4 +doEntry__24ObjectMgrFv = .text:0x8017C950; // type:function size:0x1E4 scope:weak align:4 +doSetView__24ObjectMgrFi = .text:0x8017CB34; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__24ObjectMgrFv = .text:0x8017CD28; // type:function size:0x1E4 scope:weak align:4 +doSimulation__24ObjectMgrFf = .text:0x8017CF0C; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__24ObjectMgrFR8Graphics = .text:0x8017D100; // type:function size:0x1F4 scope:weak align:4 +getObject__24ContainerFPv = .text:0x8017D2F4; // type:function size:0x2C scope:weak align:4 +getAt__24ContainerFi = .text:0x8017D320; // type:function size:0x8 scope:weak align:4 +getTo__24ContainerFv = .text:0x8017D328; // type:function size:0x8 scope:weak align:4 +__sinit_onyonMgr_cpp = .text:0x8017D330; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx8TForeverFv = .text:0x8017D358; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TUfoPodOpenSuckFv = .text:0x8017D360; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TUfoGasInFv = .text:0x8017D368; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TUfoGasOutFv = .text:0x8017D370; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TPodOpenAFv = .text:0x8017D378; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TPodOpenBFv = .text:0x8017D380; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TPodKiraFv = .text:0x8017D388; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x8017D390; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__28NodeObjectMgrFv = .text:0x8017D398; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__24ObjectMgrFR8Graphics = .text:0x8017D3A0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__24ObjectMgrFf = .text:0x8017D3A8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__24ObjectMgrFv = .text:0x8017D3B0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__24ObjectMgrFi = .text:0x8017D3B8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__24ObjectMgrFv = .text:0x8017D3C0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__24ObjectMgrFv = .text:0x8017D3C8; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q34Game9ItemOnyon3MgrFv = .text:0x8017D3D0; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q34Game9ItemOnyon3MgrFv = .text:0x8017D3D8; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q34Game9ItemOnyon3MgrFPv = .text:0x8017D3E0; // type:function size:0x8 scope:weak align:4 +@48@get__Q34Game9ItemOnyon3MgrFPv = .text:0x8017D3E8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game9ItemOnyon3MgrFv = .text:0x8017D3F0; // type:function size:0x8 scope:weak align:4 +getName__Q24Game7ObjTypeFUs = .text:0x8017D3F8; // type:function size:0x54 scope:global align:4 +draw2d__Q24Game9NaviStateFR14J2DGrafContextRi = .text:0x8017D44C; // type:function size:0x4 scope:global align:4 +transit__Q24Game7NaviFSMFPQ24Game4NaviiPQ24Game8StateArg = .text:0x8017D450; // type:function size:0x84 scope:global align:4 +init__Q24Game7NaviFSMFPQ24Game4Navi = .text:0x8017D4D4; // type:function size:0x820 scope:global align:4 +init__Q24Game18NaviCarryBombStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017DCF4; // type:function size:0xD8 scope:global align:4 +transit__Q24Game22FSMStateFPQ24Game4NaviiPQ24Game8StateArg = .text:0x8017DDCC; // type:function size:0x30 scope:weak align:4 +updateMatrix__Q24Game18NaviCarryBombStateFPQ24Game4Navi = .text:0x8017DDFC; // type:function size:0x148 scope:global align:4 +exec__Q24Game18NaviCarryBombStateFPQ24Game4Navi = .text:0x8017DF44; // type:function size:0x24C scope:global align:4 +onKeyEvent__Q24Game18NaviCarryBombStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8017E190; // type:function size:0x17C scope:global align:4 +cleanup__Q24Game18NaviCarryBombStateFPQ24Game4Navi = .text:0x8017E30C; // type:function size:0x2C scope:global align:4 +init__Q24Game14NaviStuckStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017E338; // type:function size:0x58 scope:global align:4 +exec__Q24Game14NaviStuckStateFPQ24Game4Navi = .text:0x8017E390; // type:function size:0x4BC scope:global align:4 +cleanup__Q24Game14NaviStuckStateFPQ24Game4Navi = .text:0x8017E84C; // type:function size:0x4 scope:global align:4 +init__Q24Game13NaviWalkStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017E850; // type:function size:0xDC scope:global align:4 +exec__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017E92C; // type:function size:0x634 scope:global align:4 +needYChangeMotion__Q24Game9NaviStateFv = .text:0x8017EF60; // type:function size:0x8 scope:weak align:4 +cleanup__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017EF68; // type:function size:0x4 scope:global align:4 +collisionCallback__Q24Game13NaviWalkStateFPQ24Game4NaviRQ24Game9CollEvent = .text:0x8017EF6C; // type:function size:0x198 scope:global align:4 +execAI__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F104; // type:function size:0x94 scope:global align:4 +checkAI__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F198; // type:function size:0x23C scope:global align:4 +onKeyEvent__Q24Game13NaviWalkStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8017F3D4; // type:function size:0x100 scope:global align:4 +wallCallback__Q24Game13NaviWalkStateFPQ24Game4NaviR10Vector3 = .text:0x8017F4D4; // type:function size:0x34 scope:global align:4 +initAI_wait__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F508; // type:function size:0x48 scope:global align:4 +execAI_wait__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F550; // type:function size:0x1C4 scope:global align:4 +initAI_animation__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F714; // type:function size:0x26C scope:global align:4 +execAI_animation__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F980; // type:function size:0x80 scope:global align:4 +execAI_attack__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017FA00; // type:function size:0x240 scope:global align:4 +initAI_escape__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017FC40; // type:function size:0x8C scope:global align:4 +execAI_escape__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017FCCC; // type:function size:0x2B4 scope:global align:4 +blendVelocity__Q24Game13NaviWalkStateFPQ24Game4NaviR10Vector3 = .text:0x8017FF80; // type:function size:0x34 scope:global align:4 +init__Q24Game15NaviChangeStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017FFB4; // type:function size:0xA8 scope:global align:4 +onKeyEvent__Q24Game15NaviChangeStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018005C; // type:function size:0x58 scope:global align:4 +exec__Q24Game15NaviChangeStateFPQ24Game4Navi = .text:0x801800B4; // type:function size:0xAC scope:global align:4 +cleanup__Q24Game15NaviChangeStateFPQ24Game4Navi = .text:0x80180160; // type:function size:0x4 scope:global align:4 +init__Q24Game15NaviFollowStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80180164; // type:function size:0x16C scope:global align:4 +onKeyEvent__Q24Game15NaviFollowStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x801802D0; // type:function size:0x174 scope:global align:4 +exec__Q24Game15NaviFollowStateFPQ24Game4Navi = .text:0x80180444; // type:function size:0x9A0 scope:global align:4 +cleanup__Q24Game15NaviFollowStateFPQ24Game4Navi = .text:0x80180DE4; // type:function size:0x4 scope:global align:4 +__ct__Q24Game14NaviPunchStateFv = .text:0x80180DE8; // type:function size:0x40 scope:global align:4 +init__Q24Game14NaviPunchStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80180E28; // type:function size:0xD4 scope:global align:4 +hitCallback__Q24Game14NaviPunchStateFP8CollPart = .text:0x80180EFC; // type:function size:0x300 scope:global align:4 +onKeyEvent__Q24Game14NaviPunchStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x801811FC; // type:function size:0x3A4 scope:global align:4 +exec__Q24Game14NaviPunchStateFPQ24Game4Navi = .text:0x801815A0; // type:function size:0x17C scope:global align:4 +cleanup__Q24Game14NaviPunchStateFPQ24Game4Navi = .text:0x8018171C; // type:function size:0x4 scope:global align:4 +init__Q24Game17NaviPathMoveStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80181720; // type:function size:0xA0 scope:global align:4 +exec__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x801817C0; // type:function size:0xD8 scope:global align:4 +cleanup__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181898; // type:function size:0x44 scope:global align:4 +initPathfinding__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x801818DC; // type:function size:0x1BC scope:global align:4 +execPathfinding__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181A98; // type:function size:0x90 scope:global align:4 +execMove__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181B28; // type:function size:0x15C scope:global align:4 +execMoveGoal__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181C84; // type:function size:0x8 scope:global align:4 +init__Q24Game13NaviNukuStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80181C8C; // type:function size:0xE4 scope:global align:4 +exec__Q24Game13NaviNukuStateFPQ24Game4Navi = .text:0x80181D70; // type:function size:0x18C scope:global align:4 +cleanup__Q24Game13NaviNukuStateFPQ24Game4Navi = .text:0x80181EFC; // type:function size:0x2C scope:global align:4 +onKeyEvent__Q24Game13NaviNukuStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80181F28; // type:function size:0x178 scope:global align:4 +init__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801820A0; // type:function size:0x240 scope:global align:4 +wallCallback__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviR10Vector3 = .text:0x801822E0; // type:function size:0x10 scope:global align:4 +ignoreAtari__Q24Game19NaviNukuAdjustStateFPQ24Game8Creature = .text:0x801822F0; // type:function size:0x64 scope:global align:4 +collisionCallback__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviRQ24Game9CollEvent = .text:0x80182354; // type:function size:0xC4 scope:global align:4 +exec__Q24Game19NaviNukuAdjustStateFPQ24Game4Navi = .text:0x80182418; // type:function size:0x784 scope:global align:4 +cleanup__Q24Game19NaviNukuAdjustStateFPQ24Game4Navi = .text:0x80182B9C; // type:function size:0x50 scope:global align:4 +init__Q24Game13NaviDopeStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80182BEC; // type:function size:0x5EC scope:global align:4 +exec__Q24Game13NaviDopeStateFPQ24Game4Navi = .text:0x801831D8; // type:function size:0xA0 scope:global align:4 +cleanup__Q24Game13NaviDopeStateFPQ24Game4Navi = .text:0x80183278; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game13NaviDopeStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018327C; // type:function size:0x4C scope:global align:4 +init__Q24Game14NaviClimbStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801832C8; // type:function size:0xE0 scope:global align:4 +prepare__Q24Game14NaviClimbStateFPQ24Game4Navi = .text:0x801833A8; // type:function size:0xBC scope:global align:4 +exec__Q24Game14NaviClimbStateFPQ24Game4Navi = .text:0x80183464; // type:function size:0x2BC scope:global align:4 +cleanup__Q24Game14NaviClimbStateFPQ24Game4Navi = .text:0x80183720; // type:function size:0x24 scope:global align:4 +init__Q24Game17NaviFallMeckStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80183744; // type:function size:0xB8 scope:global align:4 +exec__Q24Game17NaviFallMeckStateFPQ24Game4Navi = .text:0x801837FC; // type:function size:0x9C scope:global align:4 +cleanup__Q24Game17NaviFallMeckStateFPQ24Game4Navi = .text:0x80183898; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game17NaviFallMeckStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018389C; // type:function size:0x9C scope:global align:4 +bounceCallback__Q24Game17NaviFallMeckStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x80183938; // type:function size:0x268 scope:global align:4 +init__Q24Game14NaviFlickStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80183BA0; // type:function size:0x12C scope:global align:4 +exec__Q24Game14NaviFlickStateFPQ24Game4Navi = .text:0x80183CCC; // type:function size:0x118 scope:global align:4 +cleanup__Q24Game14NaviFlickStateFPQ24Game4Navi = .text:0x80183DE4; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game14NaviFlickStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80183DE8; // type:function size:0x64 scope:global align:4 +bounceCallback__Q24Game14NaviFlickStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x80183E4C; // type:function size:0x70 scope:global align:4 +init__Q24Game19NaviKokeDamageStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80183EBC; // type:function size:0xC0 scope:global align:4 +exec__Q24Game19NaviKokeDamageStateFPQ24Game4Navi = .text:0x80183F7C; // type:function size:0x208 scope:global align:4 +cleanup__Q24Game19NaviKokeDamageStateFPQ24Game4Navi = .text:0x80184184; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game19NaviKokeDamageStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80184188; // type:function size:0x9C scope:global align:4 +init__Q24Game14NaviSaraiStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80184224; // type:function size:0x6C scope:global align:4 +exec__Q24Game14NaviSaraiStateFPQ24Game4Navi = .text:0x80184290; // type:function size:0x380 scope:global align:4 +cleanup__Q24Game14NaviSaraiStateFPQ24Game4Navi = .text:0x80184610; // type:function size:0xC scope:global align:4 +init__Q24Game18NaviSaraiExitStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018461C; // type:function size:0x6C scope:global align:4 +exec__Q24Game18NaviSaraiExitStateFPQ24Game4Navi = .text:0x80184688; // type:function size:0x4C scope:global align:4 +cleanup__Q24Game18NaviSaraiExitStateFPQ24Game4Navi = .text:0x801846D4; // type:function size:0x34 scope:global align:4 +bounceCallback__Q24Game18NaviSaraiExitStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x80184708; // type:function size:0x34 scope:global align:4 +init__Q24Game18NaviContainerStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018473C; // type:function size:0x5FC scope:global align:4 +exec__Q24Game18NaviContainerStateFPQ24Game4Navi = .text:0x80184D38; // type:function size:0x270 scope:global align:4 +enterPikis__Q24Game18NaviContainerStateFPQ24Game4Navii = .text:0x80184FA8; // type:function size:0x2A0 scope:global align:4 +cleanup__Q24Game18NaviContainerStateFPQ24Game4Navi = .text:0x80185248; // type:function size:0x44 scope:global align:4 +init__Q24Game15NaviAbsorbStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018528C; // type:function size:0x140 scope:global align:4 +exec__Q24Game15NaviAbsorbStateFPQ24Game4Navi = .text:0x801853CC; // type:function size:0xF0 scope:global align:4 +onKeyEvent__Q24Game15NaviAbsorbStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x801854BC; // type:function size:0x174 scope:global align:4 +cleanup__Q24Game15NaviAbsorbStateFPQ24Game4Navi = .text:0x80185630; // type:function size:0x40 scope:global align:4 +init__Q24Game16NaviDamagedStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80185670; // type:function size:0x84 scope:global align:4 +exec__Q24Game16NaviDamagedStateFPQ24Game4Navi = .text:0x801856F4; // type:function size:0x98 scope:global align:4 +cleanup__Q24Game16NaviDamagedStateFPQ24Game4Navi = .text:0x8018578C; // type:function size:0x28 scope:global align:4 +onKeyEvent__Q24Game16NaviDamagedStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x801857B4; // type:function size:0x68 scope:global align:4 +init__Q24Game13NaviDeadStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018581C; // type:function size:0x5C scope:global align:4 +exec__Q24Game13NaviDeadStateFPQ24Game4Navi = .text:0x80185878; // type:function size:0x20 scope:global align:4 +cleanup__Q24Game13NaviDeadStateFPQ24Game4Navi = .text:0x80185898; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game13NaviDeadStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018589C; // type:function size:0x40 scope:global align:4 +init__Q24Game15NaviGatherStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801858DC; // type:function size:0xF8 scope:global align:4 +exec__Q24Game15NaviGatherStateFPQ24Game4Navi = .text:0x801859D4; // type:function size:0x12C scope:global align:4 +cleanup__Q24Game15NaviGatherStateFPQ24Game4Navi = .text:0x80185B00; // type:function size:0x60 scope:global align:4 +__ct__Q24Game18NaviThrowWaitStateFv = .text:0x80185B60; // type:function size:0xF4 scope:global align:4 +draw2d__Q24Game18NaviThrowWaitStateFR14J2DGrafContextRi = .text:0x80185C54; // type:function size:0x4 scope:global align:4 +resume__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80185C58; // type:function size:0x2C scope:global align:4 +restart__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80185C84; // type:function size:0x34 scope:global align:4 +init__Q24Game18NaviThrowWaitStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80185CB8; // type:function size:0x558 scope:global align:4 +onKeyEvent__Q24Game18NaviThrowWaitStateFRCQ28SysShape8KeyEvent = .text:0x80186210; // type:function size:0x3C scope:global align:4 +doAnimCallback__Q24Game18NaviThrowWaitStateFv = .text:0x8018624C; // type:function size:0x24 scope:global align:4 +lockHangPiki__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80186270; // type:function size:0x84 scope:global align:4 +exec__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x801862F4; // type:function size:0xAE0 scope:global align:4 +findNearestColorPiki__Q24Game18NaviThrowWaitStateFPQ24Game4Navii = .text:0x80186DD4; // type:function size:0x2FC scope:global align:4 +sortPikis__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x801870D0; // type:function size:0x270 scope:global align:4 +cleanup__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80187340; // type:function size:0x68 scope:global align:4 +init__Q24Game14NaviThrowStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801873A8; // type:function size:0xC8 scope:global align:4 +onKeyEvent__Q24Game14NaviThrowStateFRCQ28SysShape8KeyEvent = .text:0x80187470; // type:function size:0xD4 scope:global align:4 +exec__Q24Game14NaviThrowStateFPQ24Game4Navi = .text:0x80187544; // type:function size:0xF0 scope:global align:4 +cleanup__Q24Game14NaviThrowStateFPQ24Game4Navi = .text:0x80187634; // type:function size:0x4 scope:global align:4 +init__Q24Game15NaviPelletStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80187638; // type:function size:0x1C0 scope:global align:4 +exec__Q24Game15NaviPelletStateFPQ24Game4Navi = .text:0x801877F8; // type:function size:0x3F8 scope:global align:4 +onKeyEvent__Q24Game15NaviPelletStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80187BF0; // type:function size:0x12C scope:global align:4 +cleanup__Q24Game15NaviPelletStateFPQ24Game4Navi = .text:0x80187D1C; // type:function size:0x80 scope:global align:4 +init__Q24Game17NaviDemo_UfoStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80187D9C; // type:function size:0x48 scope:global align:4 +exec__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80187DE4; // type:function size:0xB0 scope:global align:4 +cleanup__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80187E94; // type:function size:0x4 scope:global align:4 +execGoto__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80187E98; // type:function size:0x17C scope:global align:4 +initSuck__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80188014; // type:function size:0x118 scope:global align:4 +execSuck__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x8018812C; // type:function size:0x120 scope:global align:4 +init__Q24Game20NaviDemo_HoleInStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018824C; // type:function size:0x58C scope:global align:4 +exec__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x801887D8; // type:function size:0xA8 scope:global align:4 +onKeyEvent__Q24Game20NaviDemo_HoleInStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80188880; // type:function size:0xC scope:global align:4 +cleanup__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x8018888C; // type:function size:0x4 scope:global align:4 +execGoto__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188890; // type:function size:0x178 scope:global align:4 +initHesitate__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188A08; // type:function size:0x60 scope:global align:4 +execHesitate__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188A68; // type:function size:0x16C scope:global align:4 +initFall__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188BD4; // type:function size:0x4 scope:global align:4 +execFall__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188BD8; // type:function size:0x8 scope:global align:4 +init__Q24Game16NaviPressedStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80188BE0; // type:function size:0x144 scope:global align:4 +exec__Q24Game16NaviPressedStateFPQ24Game4Navi = .text:0x80188D24; // type:function size:0x270 scope:global align:4 +cleanup__Q24Game16NaviPressedStateFPQ24Game4Navi = .text:0x80188F94; // type:function size:0x7C scope:global align:4 +pressable__Q24Game16NaviPressedStateFv = .text:0x80189010; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game16NaviPressedStateFv = .text:0x80189018; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game16NaviPressedStateFv = .text:0x80189020; // type:function size:0x8 scope:weak align:4 +callable__Q24Game9NaviStateFv = .text:0x80189028; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game9NaviStateFv = .text:0x80189030; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15NaviPelletStateFv = .text:0x80189038; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game13NaviDeadStateFv = .text:0x80189040; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game13NaviDeadStateFv = .text:0x80189048; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game13NaviDeadStateFv = .text:0x80189050; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game16NaviDamagedStateFv = .text:0x80189058; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game16NaviDamagedStateFv = .text:0x80189060; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game15NaviAbsorbStateFv = .text:0x80189068; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game15NaviAbsorbStateFv = .text:0x80189070; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game15NaviAbsorbStateFv = .text:0x80189078; // type:function size:0x8 scope:weak align:4 +getSize__Q32og6Screen17DispMemberContenaFv = .text:0x80189080; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberContenaFv = .text:0x80189088; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberContenaFv = .text:0x80189094; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen17DispMemberUfoMenuFv = .text:0x801890A8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberUfoMenuFv = .text:0x801890B0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberUfoMenuFv = .text:0x801890BC; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890D0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890D8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890E4; // type:function size:0x14 scope:weak align:4 +doSetSubMemberAll__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890F8; // type:function size:0x48 scope:weak align:4 +invincible__Q24Game18NaviContainerStateFv = .text:0x80189140; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game18NaviSaraiExitStateFv = .text:0x80189148; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game14NaviSaraiStateFv = .text:0x80189150; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game19NaviKokeDamageStateFv = .text:0x80189158; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game19NaviKokeDamageStateFv = .text:0x80189160; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game14NaviFlickStateFv = .text:0x80189168; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game14NaviFlickStateFv = .text:0x80189170; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game17NaviFallMeckStateFv = .text:0x80189178; // type:function size:0x8 scope:weak align:4 +getName__Q23efx14ArgDopingSmokeFv = .text:0x80189180; // type:function size:0xC scope:weak align:4 +invincible__Q24Game13NaviDopeStateFv = .text:0x8018918C; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game13NaviNukuStateFv = .text:0x80189194; // type:function size:0x8 scope:weak align:4 +needYChangeMotion__Q24Game15NaviFollowStateFv = .text:0x8018919C; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13NaviWalkStateFv = .text:0x801891A4; // type:function size:0x8 scope:weak align:4 +needYChangeMotion__Q24Game13NaviWalkStateFv = .text:0x801891AC; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game14NaviStuckStateFv = .text:0x801891B4; // type:function size:0x8 scope:weak align:4 +resume__Q24Game22FSMStateFPQ24Game4Navi = .text:0x801891BC; // type:function size:0x4 scope:weak align:4 +restart__Q24Game22FSMStateFPQ24Game4Navi = .text:0x801891C0; // type:function size:0x4 scope:weak align:4 +create__Q24Game26StateMachineFi = .text:0x801891C4; // type:function size:0x64 scope:weak align:4 +invoke__45Delegate1FP8CollPart = .text:0x80189228; // type:function size:0x30 scope:weak align:4 +invoke__37DelegateFv = .text:0x80189258; // type:function size:0x30 scope:weak align:4 +getCurrID__Q24Game26StateMachineFPQ24Game4Navi = .text:0x80189288; // type:function size:0x1C scope:weak align:4 +registerState__Q24Game26StateMachineFPQ24Game22FSMState = .text:0x801892A4; // type:function size:0x84 scope:weak align:4 +__sinit_naviState_cpp = .text:0x80189328; // type:function size:0x28 scope:local align:4 +@60@4@onKeyEvent__Q24Game18NaviThrowWaitStateFRCQ28SysShape8KeyEvent = .text:0x80189350; // type:function size:0x14 scope:weak align:4 +@32@4@onKeyEvent__Q24Game14NaviThrowStateFRCQ28SysShape8KeyEvent = .text:0x80189364; // type:function size:0x14 scope:weak align:4 +dump__Q24Game9PikiStateFv = .text:0x80189378; // type:function size:0x4 scope:global align:4 +getInfo__Q24Game9PikiStateFPc = .text:0x8018937C; // type:function size:0x30 scope:global align:4 +init__Q24Game7PikiFSMFPQ24Game4Piki = .text:0x801893AC; // type:function size:0xB6C scope:global align:4 +transit__Q24Game7PikiFSMFPQ24Game4PikiiPQ24Game8StateArg = .text:0x80189F18; // type:function size:0x118 scope:global align:4 +transitForce__Q24Game7PikiFSMFPQ24Game4PikiiPQ24Game8StateArg = .text:0x8018A030; // type:function size:0x50 scope:global align:4 +init__Q24Game13PikiWalkStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A080; // type:function size:0x40 scope:global align:4 +exec__Q24Game13PikiWalkStateFPQ24Game4Piki = .text:0x8018A0C0; // type:function size:0x24 scope:global align:4 +cleanup__Q24Game13PikiWalkStateFPQ24Game4Piki = .text:0x8018A0E4; // type:function size:0x4 scope:global align:4 +init__Q24Game17PikiDemoWaitStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A0E8; // type:function size:0x40 scope:global align:4 +exec__Q24Game17PikiDemoWaitStateFPQ24Game4Piki = .text:0x8018A128; // type:function size:0x24 scope:global align:4 +cleanup__Q24Game17PikiDemoWaitStateFPQ24Game4Piki = .text:0x8018A14C; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiCarrotStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A150; // type:function size:0x100 scope:global align:4 +exec__Q24Game15PikiCarrotStateFPQ24Game4Piki = .text:0x8018A250; // type:function size:0x334 scope:global align:4 +cleanup__Q24Game15PikiCarrotStateFPQ24Game4Piki = .text:0x8018A584; // type:function size:0xD8 scope:global align:4 +bounceCallback__Q24Game15PikiCarrotStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018A65C; // type:function size:0x124 scope:global align:4 +collisionCallback__Q24Game15PikiCarrotStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018A780; // type:function size:0x4 scope:global align:4 +init__Q24Game18PikiSwallowedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A784; // type:function size:0xD8 scope:global align:4 +exec__Q24Game18PikiSwallowedStateFPQ24Game4Piki = .text:0x8018A85C; // type:function size:0x74 scope:global align:4 +transit__Q24Game22FSMStateFPQ24Game4PikiiPQ24Game8StateArg = .text:0x8018A8D0; // type:function size:0x30 scope:weak align:4 +cleanup__Q24Game18PikiSwallowedStateFPQ24Game4Piki = .text:0x8018A900; // type:function size:0x54 scope:global align:4 +init__Q24Game15PikiHoleinStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A954; // type:function size:0x20C scope:global align:4 +exec__Q24Game15PikiHoleinStateFPQ24Game4Piki = .text:0x8018AB60; // type:function size:0x1C0 scope:global align:4 +cleanup__Q24Game15PikiHoleinStateFPQ24Game4Piki = .text:0x8018AD20; // type:function size:0x4 scope:global align:4 +init__Q24Game19PikiFountainonStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018AD24; // type:function size:0x1F4 scope:global align:4 +exec__Q24Game19PikiFountainonStateFPQ24Game4Piki = .text:0x8018AF18; // type:function size:0x1A0 scope:global align:4 +cleanup__Q24Game19PikiFountainonStateFPQ24Game4Piki = .text:0x8018B0B8; // type:function size:0x4 scope:global align:4 +init__Q24Game13PikiTaneStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018B0BC; // type:function size:0xC8 scope:global align:4 +exec__Q24Game13PikiTaneStateFPQ24Game4Piki = .text:0x8018B184; // type:function size:0x38 scope:global align:4 +cleanup__Q24Game13PikiTaneStateFPQ24Game4Piki = .text:0x8018B1BC; // type:function size:0x34 scope:global align:4 +bounceCallback__Q24Game13PikiTaneStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018B1F0; // type:function size:0x64 scope:global align:4 +init__Q24Game15PikiNukareStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018B254; // type:function size:0x114 scope:global align:4 +soft_transittable__Q24Game15PikiNukareStateFi = .text:0x8018B368; // type:function size:0xC scope:global align:4 +exec__Q24Game15PikiNukareStateFPQ24Game4Piki = .text:0x8018B374; // type:function size:0x150 scope:global align:4 +onKeyEvent__Q24Game15PikiNukareStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018B4C4; // type:function size:0x20C scope:global align:4 +cleanup__Q24Game15PikiNukareStateFPQ24Game4Piki = .text:0x8018B6D0; // type:function size:0x10 scope:global align:4 +init__Q24Game13PikiDopeStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018B6E0; // type:function size:0xB8 scope:global align:4 +onFlute__Q24Game13PikiDopeStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018B798; // type:function size:0x8 scope:global align:4 +exec__Q24Game13PikiDopeStateFPQ24Game4Piki = .text:0x8018B7A0; // type:function size:0x18C scope:global align:4 +onKeyEvent__Q24Game13PikiDopeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018B92C; // type:function size:0xD8 scope:global align:4 +cleanup__Q24Game13PikiDopeStateFPQ24Game4Piki = .text:0x8018BA04; // type:function size:0x4 scope:global align:4 +soft_transittable__Q24Game14PikiPanicStateFi = .text:0x8018BA08; // type:function size:0x24 scope:global align:4 +transittable__Q24Game14PikiPanicStateFi = .text:0x8018BA2C; // type:function size:0x70 scope:global align:4 +init__Q24Game14PikiPanicStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018BA9C; // type:function size:0x280 scope:global align:4 +exec__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018BD1C; // type:function size:0x260 scope:global align:4 +onKeyEvent__Q24Game14PikiPanicStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018BF7C; // type:function size:0x48 scope:global align:4 +panicRun__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018BFC4; // type:function size:0x2BC scope:global align:4 +panicLobster__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018C280; // type:function size:0x2D4 scope:global align:4 +cleanup__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018C554; // type:function size:0xE4 scope:global align:4 +bounceCallback__Q24Game14PikiPanicStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018C638; // type:function size:0xC scope:global align:4 +onFlute__Q24Game14PikiPanicStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018C644; // type:function size:0x11C scope:global align:4 +init__Q24Game13PikiDeadStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018C760; // type:function size:0x4 scope:global align:4 +exec__Q24Game13PikiDeadStateFPQ24Game4Piki = .text:0x8018C764; // type:function size:0x4 scope:global align:4 +transittable__Q24Game14PikiDyingStateFi = .text:0x8018C768; // type:function size:0x10 scope:global align:4 +init__Q24Game14PikiDyingStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018C778; // type:function size:0xB4 scope:global align:4 +exec__Q24Game14PikiDyingStateFPQ24Game4Piki = .text:0x8018C82C; // type:function size:0xDC scope:global align:4 +cleanup__Q24Game14PikiDyingStateFPQ24Game4Piki = .text:0x8018C908; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game14PikiDyingStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018C90C; // type:function size:0x64 scope:global align:4 +soft_transittable__Q24Game19PikiDenkiDyingStateFi = .text:0x8018C970; // type:function size:0x10 scope:global align:4 +transittable__Q24Game19PikiDenkiDyingStateFi = .text:0x8018C980; // type:function size:0x10 scope:global align:4 +init__Q24Game19PikiDenkiDyingStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018C990; // type:function size:0x84 scope:global align:4 +exec__Q24Game19PikiDenkiDyingStateFPQ24Game4Piki = .text:0x8018CA14; // type:function size:0x138 scope:global align:4 +cleanup__Q24Game19PikiDenkiDyingStateFPQ24Game4Piki = .text:0x8018CB4C; // type:function size:0x4 scope:global align:4 +soft_transittable__Q24Game16PikiPressedStateFi = .text:0x8018CB50; // type:function size:0x10 scope:global align:4 +transittable__Q24Game16PikiPressedStateFi = .text:0x8018CB60; // type:function size:0x10 scope:global align:4 +init__Q24Game16PikiPressedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018CB70; // type:function size:0xC8 scope:global align:4 +exec__Q24Game16PikiPressedStateFPQ24Game4Piki = .text:0x8018CC38; // type:function size:0x10C scope:global align:4 +cleanup__Q24Game16PikiPressedStateFPQ24Game4Piki = .text:0x8018CD44; // type:function size:0x34 scope:global align:4 +init__Q24Game15PikiLookAtStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018CD78; // type:function size:0x84 scope:global align:4 +onFlute__Q24Game15PikiLookAtStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018CDFC; // type:function size:0x4 scope:global align:4 +exec__Q24Game15PikiLookAtStateFPQ24Game4Piki = .text:0x8018CE00; // type:function size:0x180 scope:global align:4 +onKeyEvent__Q24Game15PikiLookAtStateFRCQ28SysShape8KeyEvent = .text:0x8018CF80; // type:function size:0x28 scope:global align:4 +cleanup__Q24Game15PikiLookAtStateFPQ24Game4Piki = .text:0x8018CFA8; // type:function size:0x4 scope:global align:4 +init__Q24Game17PikiAutoNukiStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018CFAC; // type:function size:0x1FC scope:global align:4 +exec__Q24Game17PikiAutoNukiStateFPQ24Game4Piki = .text:0x8018D1A8; // type:function size:0x300 scope:global align:4 +onKeyEvent__Q24Game17PikiAutoNukiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018D4A8; // type:function size:0x28 scope:global align:4 +cleanup__Q24Game17PikiAutoNukiStateFPQ24Game4Piki = .text:0x8018D4D0; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiGoHangStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018D4D4; // type:function size:0x64 scope:global align:4 +exec__Q24Game15PikiGoHangStateFPQ24Game4Piki = .text:0x8018D538; // type:function size:0x1C8 scope:global align:4 +cleanup__Q24Game15PikiGoHangStateFPQ24Game4Piki = .text:0x8018D700; // type:function size:0x34 scope:global align:4 +onKeyEvent__Q24Game15PikiHangedStateFRCQ28SysShape8KeyEvent = .text:0x8018D734; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiHangedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018D738; // type:function size:0xC4 scope:global align:4 +exec__Q24Game15PikiHangedStateFPQ24Game4Piki = .text:0x8018D7FC; // type:function size:0x6C scope:global align:4 +cleanup__Q24Game15PikiHangedStateFPQ24Game4Piki = .text:0x8018D868; // type:function size:0x34 scope:global align:4 +ignoreAtari__Q24Game15PikiHangedStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018D89C; // type:function size:0x6C scope:global align:4 +onKeyEvent__Q24Game20PikiWaterHangedStateFRCQ28SysShape8KeyEvent = .text:0x8018D908; // type:function size:0x4 scope:global align:4 +init__Q24Game20PikiWaterHangedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018D90C; // type:function size:0xC4 scope:global align:4 +exec__Q24Game20PikiWaterHangedStateFPQ24Game4Piki = .text:0x8018D9D0; // type:function size:0xA8 scope:global align:4 +cleanup__Q24Game20PikiWaterHangedStateFPQ24Game4Piki = .text:0x8018DA78; // type:function size:0x34 scope:global align:4 +ignoreAtari__Q24Game20PikiWaterHangedStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018DAAC; // type:function size:0x6C scope:global align:4 +init__Q24Game16PikiHipDropStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018DB18; // type:function size:0x70 scope:global align:4 +exec__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018DB88; // type:function size:0x3C8 scope:global align:4 +cleanup__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018DF50; // type:function size:0x38 scope:global align:4 +onKeyEvent__Q24Game16PikiHipDropStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018DF88; // type:function size:0x4 scope:global align:4 +bounceCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018DF8C; // type:function size:0x2C scope:global align:4 +collisionCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018DFB8; // type:function size:0x2E0 scope:global align:4 +platCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8018E298; // type:function size:0x2C scope:global align:4 +dosin__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018E2C4; // type:function size:0xBC scope:global align:4 +earthquake__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018E380; // type:function size:0x108 scope:global align:4 +init__Q24Game17PikiFallMeckStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018E488; // type:function size:0x88 scope:global align:4 +exec__Q24Game17PikiFallMeckStateFPQ24Game4Piki = .text:0x8018E510; // type:function size:0x38 scope:global align:4 +cleanup__Q24Game17PikiFallMeckStateFPQ24Game4Piki = .text:0x8018E548; // type:function size:0x4 scope:global align:4 +collisionCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018E54C; // type:function size:0x4 scope:global align:4 +platCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8018E550; // type:function size:0x34 scope:global align:4 +bounceCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018E584; // type:function size:0x54C scope:global align:4 +init__Q24Game16PikiSuikomiStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018EAD0; // type:function size:0xA0 scope:global align:4 +exec__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EB70; // type:function size:0xEC scope:global align:4 +execMouth__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EC5C; // type:function size:0x1FC scope:global align:4 +onKeyEvent__Q24Game16PikiSuikomiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018EE58; // type:function size:0x38 scope:global align:4 +execString__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EE90; // type:function size:0x108 scope:global align:4 +ignoreAtari__Q24Game16PikiSuikomiStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018EF98; // type:function size:0x14 scope:global align:4 +execStomach__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EFAC; // type:function size:0x1C0 scope:global align:4 +cleanup__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018F16C; // type:function size:0x48 scope:global align:4 +stopEffect__Q24Game15PikiFlyingStateFv = .text:0x8018F1B4; // type:function size:0x4 scope:global align:4 +restartEffect__Q24Game15PikiFlyingStateFv = .text:0x8018F1B8; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018F1BC; // type:function size:0x124 scope:global align:4 +bounceCallback__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018F2E0; // type:function size:0x74 scope:global align:4 +collisionCallback__Q24Game15PikiFlyingStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018F354; // type:function size:0x328 scope:global align:4 +ignoreAtari__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018F67C; // type:function size:0x6C scope:global align:4 +exec__Q24Game15PikiFlyingStateFPQ24Game4Piki = .text:0x8018F6E8; // type:function size:0x3CC scope:global align:4 +cleanup__Q24Game15PikiFlyingStateFPQ24Game4Piki = .text:0x8018FAB4; // type:function size:0x68 scope:global align:4 +init__Q24Game14PikiFlickStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018FB1C; // type:function size:0x170 scope:global align:4 +onFlute__Q24Game14PikiFlickStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018FC8C; // type:function size:0x18 scope:global align:4 +exec__Q24Game14PikiFlickStateFPQ24Game4Piki = .text:0x8018FCA4; // type:function size:0x208 scope:global align:4 +onKeyEvent__Q24Game14PikiFlickStateFRCQ28SysShape8KeyEvent = .text:0x8018FEAC; // type:function size:0x124 scope:global align:4 +cleanup__Q24Game14PikiFlickStateFPQ24Game4Piki = .text:0x8018FFD0; // type:function size:0xAC scope:global align:4 +init__Q24Game13PikiBlowStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8019007C; // type:function size:0x1A4 scope:global align:4 +exec__Q24Game13PikiBlowStateFPQ24Game4Piki = .text:0x80190220; // type:function size:0x140 scope:global align:4 +cleanup__Q24Game13PikiBlowStateFPQ24Game4Piki = .text:0x80190360; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game13PikiBlowStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80190364; // type:function size:0x64 scope:global align:4 +onFlute__Q24Game13PikiBlowStateFPQ24Game4PikiPQ24Game4Navi = .text:0x801903C8; // type:function size:0x10 scope:global align:4 +bounceCallback__Q24Game13PikiBlowStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801903D8; // type:function size:0x168 scope:global align:4 +init__Q24Game19PikiKokeDamageStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80190540; // type:function size:0x8C scope:global align:4 +exec__Q24Game19PikiKokeDamageStateFPQ24Game4Piki = .text:0x801905CC; // type:function size:0x15C scope:global align:4 +onFlute__Q24Game19PikiKokeDamageStateFPQ24Game4PikiPQ24Game4Navi = .text:0x80190728; // type:function size:0x1C scope:global align:4 +cleanup__Q24Game19PikiKokeDamageStateFPQ24Game4Piki = .text:0x80190744; // type:function size:0xE8 scope:global align:4 +onKeyEvent__Q24Game19PikiKokeDamageStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8019082C; // type:function size:0x60 scope:global align:4 +init__Q24Game13PikiKokeStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8019088C; // type:function size:0x120 scope:global align:4 +onFlute__Q24Game13PikiKokeStateFPQ24Game4PikiPQ24Game4Navi = .text:0x801909AC; // type:function size:0xC scope:global align:4 +exec__Q24Game13PikiKokeStateFPQ24Game4Piki = .text:0x801909B8; // type:function size:0x94 scope:global align:4 +onKeyEvent__Q24Game13PikiKokeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80190A4C; // type:function size:0xF0 scope:global align:4 +cleanup__Q24Game13PikiKokeStateFPQ24Game4Piki = .text:0x80190B3C; // type:function size:0x4 scope:global align:4 +init__Q24Game14PikiDrownStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80190B40; // type:function size:0x200 scope:global align:4 +soft_transittable__Q24Game14PikiDrownStateFi = .text:0x80190D40; // type:function size:0x40 scope:global align:4 +onFlute__Q24Game14PikiDrownStateFPQ24Game4PikiPQ24Game4Navi = .text:0x80190D80; // type:function size:0x10 scope:global align:4 +outWaterCallback__Q24Game14PikiDrownStateFPQ24Game4Piki = .text:0x80190D90; // type:function size:0xC scope:global align:4 +exec__Q24Game14PikiDrownStateFPQ24Game4Piki = .text:0x80190D9C; // type:function size:0x74C scope:global align:4 +cleanup__Q24Game14PikiDrownStateFPQ24Game4Piki = .text:0x801914E8; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game14PikiDrownStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x801914EC; // type:function size:0x120 scope:global align:4 +init__Q24Game16PikiEmotionStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8019160C; // type:function size:0x358 scope:global align:4 +exec__Q24Game16PikiEmotionStateFPQ24Game4Piki = .text:0x80191964; // type:function size:0xA8 scope:global align:4 +cleanup__Q24Game16PikiEmotionStateFPQ24Game4Piki = .text:0x80191A0C; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game16PikiEmotionStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80191A10; // type:function size:0xC0 scope:global align:4 +init__Q24Game15PikiAbsorbStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80191AD0; // type:function size:0x170 scope:global align:4 +exec__Q24Game15PikiAbsorbStateFPQ24Game4Piki = .text:0x80191C40; // type:function size:0x154 scope:global align:4 +onKeyEvent__Q24Game15PikiAbsorbStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80191D94; // type:function size:0x12C scope:global align:4 +cleanup__Q24Game15PikiAbsorbStateFPQ24Game4Piki = .text:0x80191EC0; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiGrowupStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80191EC4; // type:function size:0xE0 scope:global align:4 +exec__Q24Game15PikiGrowupStateFPQ24Game4Piki = .text:0x80191FA4; // type:function size:0x78 scope:global align:4 +onKeyEvent__Q24Game15PikiGrowupStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8019201C; // type:function size:0x1A0 scope:global align:4 +cleanup__Q24Game15PikiGrowupStateFPQ24Game4Piki = .text:0x801921BC; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiEscapeStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x801921C0; // type:function size:0x20 scope:global align:4 +initRun__Q24Game15PikiEscapeStateFPQ24Game4Piki = .text:0x801921E0; // type:function size:0x74 scope:global align:4 +exec__Q24Game15PikiEscapeStateFPQ24Game4Piki = .text:0x80192254; // type:function size:0x5C8 scope:global align:4 +onKeyEvent__Q24Game15PikiEscapeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8019281C; // type:function size:0x17C scope:global align:4 +cleanup__Q24Game15PikiEscapeStateFPQ24Game4Piki = .text:0x80192998; // type:function size:0x4 scope:global align:4 +callable__Q24Game15PikiEscapeStateFv = .text:0x8019299C; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game9PikiStateFPQ24Game4Piki = .text:0x801929A4; // type:function size:0x8 scope:weak align:4 +dopable__Q24Game9PikiStateFv = .text:0x801929AC; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game9PikiStateFv = .text:0x801929B4; // type:function size:0x8 scope:weak align:4 +onFlute__Q24Game9PikiStateFPQ24Game4PikiPQ24Game4Navi = .text:0x801929BC; // type:function size:0x4 scope:weak align:4 +callable__Q24Game9PikiStateFv = .text:0x801929C0; // type:function size:0x8 scope:weak align:4 +callable__Q24Game16PikiEmotionStateFv = .text:0x801929C8; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiKokeStateFv = .text:0x801929D0; // type:function size:0x8 scope:weak align:4 +callable__Q24Game19PikiKokeDamageStateFv = .text:0x801929D8; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game13PikiBlowStateFv = .text:0x801929E0; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiBlowStateFv = .text:0x801929E8; // type:function size:0x8 scope:weak align:4 +callable__Q24Game14PikiFlickStateFv = .text:0x801929F0; // type:function size:0x8 scope:weak align:4 +getName__Q26PikiAI10ActCropArgFv = .text:0x801929F8; // type:function size:0xC scope:weak align:4 +callable__Q24Game15PikiFlyingStateFv = .text:0x80192A04; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game16PikiSuikomiStateFv = .text:0x80192A0C; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game17PikiFallMeckStateFv = .text:0x80192A14; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game20PikiWaterHangedStateFv = .text:0x80192A1C; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game15PikiHangedStateFv = .text:0x80192A24; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15PikiGoHangStateFv = .text:0x80192A2C; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game15PikiGoHangStateFv = .text:0x80192A34; // type:function size:0x8 scope:weak align:4 +callable__Q24Game17PikiAutoNukiStateFv = .text:0x80192A3C; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15PikiLookAtStateFv = .text:0x80192A44; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game16PikiPressedStateFv = .text:0x80192A4C; // type:function size:0x8 scope:weak align:4 +dead__Q24Game16PikiPressedStateFv = .text:0x80192A54; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game19PikiDenkiDyingStateFv = .text:0x80192A5C; // type:function size:0x8 scope:weak align:4 +dead__Q24Game19PikiDenkiDyingStateFv = .text:0x80192A64; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game14PikiDyingStateFv = .text:0x80192A6C; // type:function size:0x8 scope:weak align:4 +dead__Q24Game14PikiDyingStateFv = .text:0x80192A74; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game13PikiDeadStateFv = .text:0x80192A7C; // type:function size:0x8 scope:weak align:4 +transittable__Q24Game13PikiDeadStateFi = .text:0x80192A84; // type:function size:0x8 scope:weak align:4 +dead__Q24Game13PikiDeadStateFv = .text:0x80192A8C; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiTaneStateFv = .text:0x80192A94; // type:function size:0x8 scope:weak align:4 +callable__Q24Game19PikiFountainonStateFv = .text:0x80192A9C; // type:function size:0x8 scope:weak align:4 +soft_transittable__Q24Game19PikiFountainonStateFi = .text:0x80192AA4; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game19PikiFountainonStateFPQ24Game4Piki = .text:0x80192AAC; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15PikiHoleinStateFv = .text:0x80192AB4; // type:function size:0x8 scope:weak align:4 +soft_transittable__Q24Game15PikiHoleinStateFi = .text:0x80192ABC; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game15PikiHoleinStateFPQ24Game4Piki = .text:0x80192AC4; // type:function size:0x8 scope:weak align:4 +dead__Q24Game18PikiSwallowedStateFv = .text:0x80192ACC; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q24Game18PikiSwallowedStateFPQ24Game4PikiPQ24Game8Creature = .text:0x80192AD4; // type:function size:0x8 scope:weak align:4 +callable__Q24Game18PikiSwallowedStateFv = .text:0x80192ADC; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game17PikiDemoWaitStateFPQ24Game4Piki = .text:0x80192AE4; // type:function size:0x8 scope:weak align:4 +dopable__Q24Game13PikiWalkStateFv = .text:0x80192AEC; // type:function size:0x8 scope:weak align:4 +aiActive__Q24Game13PikiWalkStateFv = .text:0x80192AF4; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiWalkStateFv = .text:0x80192AFC; // type:function size:0x8 scope:weak align:4 +releasable__Q24Game13PikiWalkStateFv = .text:0x80192B04; // type:function size:0x8 scope:weak align:4 +battleOK__Q24Game13PikiWalkStateFv = .text:0x80192B0C; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game13PikiWalkStateFv = .text:0x80192B14; // type:function size:0x8 scope:weak align:4 +resume__Q24Game22FSMStateFPQ24Game4Piki = .text:0x80192B1C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game22FSMStateFPQ24Game4Piki = .text:0x80192B20; // type:function size:0x4 scope:weak align:4 +create__Q24Game26StateMachineFi = .text:0x80192B24; // type:function size:0x64 scope:weak align:4 +registerState__Q24Game26StateMachineFPQ24Game22FSMState = .text:0x80192B88; // type:function size:0x84 scope:weak align:4 +__sinit_pikiState_cpp = .text:0x80192C0C; // type:function size:0x28 scope:local align:4 +@28@4@onKeyEvent__Q24Game15PikiLookAtStateFRCQ28SysShape8KeyEvent = .text:0x80192C34; // type:function size:0x14 scope:weak align:4 +@20@4@onKeyEvent__Q24Game15PikiHangedStateFRCQ28SysShape8KeyEvent = .text:0x80192C48; // type:function size:0x14 scope:weak align:4 +@24@4@onKeyEvent__Q24Game20PikiWaterHangedStateFRCQ28SysShape8KeyEvent = .text:0x80192C5C; // type:function size:0x14 scope:weak align:4 +@48@4@onKeyEvent__Q24Game14PikiFlickStateFRCQ28SysShape8KeyEvent = .text:0x80192C70; // type:function size:0x14 scope:weak align:4 +actPiki__Q24Game15InteractFueFukiFPQ24Game4Piki = .text:0x80192C84; // type:function size:0xE4 scope:global align:4 +actPiki__Q24Game11InteractFueFPQ24Game4Piki = .text:0x80192D68; // type:function size:0xBD0 scope:global align:4 +actPiki__Q24Game12InteractDopeFPQ24Game4Piki = .text:0x80193938; // type:function size:0x15C scope:global align:4 +actPiki__Q24Game12InteractWindFPQ24Game4Piki = .text:0x80193A94; // type:function size:0x100 scope:global align:4 +actPiki__Q24Game20InteractHanaChirashiFPQ24Game4Piki = .text:0x80193B94; // type:function size:0x120 scope:global align:4 +actPiki__Q24Game12InteractBombFPQ24Game4Piki = .text:0x80193CB4; // type:function size:0x15C scope:global align:4 +actPiki__Q24Game13InteractDenkiFPQ24Game4Piki = .text:0x80193E10; // type:function size:0x114 scope:global align:4 +actPiki__Q24Game16InteractFallMeckFPQ24Game4Piki = .text:0x80193F24; // type:function size:0xA0 scope:global align:4 +actPiki__Q24Game12InteractBuryFPQ24Game4Piki = .text:0x80193FC4; // type:function size:0x288 scope:global align:4 +actPiki__Q24Game20InteractSuikomi_TestFPQ24Game4Piki = .text:0x8019424C; // type:function size:0xDC scope:global align:4 +actPiki__Q24Game12InteractFireFPQ24Game4Piki = .text:0x80194328; // type:function size:0x118 scope:global align:4 +actPiki__Q24Game16InteractAstonishFPQ24Game4Piki = .text:0x80194440; // type:function size:0x134 scope:global align:4 +actPiki__Q24Game14InteractBubbleFPQ24Game4Piki = .text:0x80194574; // type:function size:0x118 scope:global align:4 +actPiki__Q24Game11InteractGasFPQ24Game4Piki = .text:0x8019468C; // type:function size:0x13C scope:global align:4 +actPiki__Q24Game14InteractBattleFPQ24Game4Piki = .text:0x801947C8; // type:function size:0xC0 scope:global align:4 +actPiki__Q24Game13InteractPressFPQ24Game4Piki = .text:0x80194888; // type:function size:0x120 scope:global align:4 +actPiki__Q24Game13InteractFlickFPQ24Game4Piki = .text:0x801949A8; // type:function size:0x260 scope:global align:4 +actPiki__Q24Game15InteractSwallowFPQ24Game4Piki = .text:0x80194C08; // type:function size:0x2EC scope:global align:4 +actPiki__Q24Game12InteractKillFPQ24Game4Piki = .text:0x80194EF4; // type:function size:0xCC scope:global align:4 +getName__Q26PikiAI12ActBattleArgFv = .text:0x80194FC0; // type:function size:0xC scope:weak align:4 +__sinit_interactPiki_cpp = .text:0x80194FCC; // type:function size:0x28 scope:local align:4 +get__Q24Game6CPlateFPv = .text:0x80194FF4; // type:function size:0x14 scope:global align:4 +getNext__Q24Game6CPlateFPv = .text:0x80195008; // type:function size:0x3C scope:global align:4 +getStart__Q24Game6CPlateFv = .text:0x80195044; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game6CPlateFv = .text:0x8019504C; // type:function size:0x8 scope:global align:4 +shrink__Q24Game6CPlateFv = .text:0x80195054; // type:function size:0xC scope:global align:4 +__ct__Q24Game6CPlateFi = .text:0x80195060; // type:function size:0x1F0 scope:global align:4 +__ct__Q34Game6CPlate4SlotFv = .text:0x80195250; // type:function size:0x2C scope:weak align:4 +__dt__27ContainerFv = .text:0x8019527C; // type:function size:0x70 scope:weak align:4 +setPos__Q24Game6CPlateFR10Vector3fR10Vector3f = .text:0x801952EC; // type:function size:0x210 scope:global align:4 +setPosGray__Q24Game6CPlateFR10Vector3fR10Vector3f = .text:0x801954FC; // type:function size:0x20C scope:global align:4 +getSlot__Q24Game6CPlateFPQ24Game8CreaturePQ24Game18SlotChangeListenerb = .text:0x80195708; // type:function size:0xA8 scope:global align:4 +changeFlower__Q24Game6CPlateFPQ24Game8Creature = .text:0x801957B0; // type:function size:0xB8 scope:global align:4 +releaseSlot__Q24Game6CPlateFPQ24Game8Creaturei = .text:0x80195868; // type:function size:0x128 scope:global align:4 +validSlot__Q24Game6CPlateFi = .text:0x80195990; // type:function size:0x24 scope:global align:4 +sortByColor__Q24Game6CPlateFPQ24Game8Creaturei = .text:0x801959B4; // type:function size:0x4A0 scope:global align:4 +rearrangeSlot__Q24Game6CPlateFR10Vector3fR10Vector3 = .text:0x80195E54; // type:function size:0x1E0 scope:global align:4 +getSlotPosition__Q24Game6CPlateFiR10Vector3 = .text:0x80196034; // type:function size:0xC4 scope:global align:4 +refresh__Q24Game6CPlateFif = .text:0x801960F8; // type:function size:0x1B8 scope:global align:4 +refreshSlot__Q24Game6CPlateFf = .text:0x801962B0; // type:function size:0x2EC scope:global align:4 +update__Q24Game6CPlateFv = .text:0x8019659C; // type:function size:0x18 scope:global align:4 +__dt__Q24Game6CPlateFv = .text:0x801965B4; // type:function size:0x80 scope:weak align:4 +getObject__27ContainerFPv = .text:0x80196634; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x80196660; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x80196668; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game13UpdateContextFv = .text:0x80196670; // type:function size:0x18 scope:global align:4 +updatable__Q24Game13UpdateContextFv = .text:0x80196688; // type:function size:0x5C scope:global align:4 +init__Q24Game13UpdateContextFPQ24Game9UpdateMgr = .text:0x801966E4; // type:function size:0x3C scope:global align:4 +exit__Q24Game13UpdateContextFv = .text:0x80196720; // type:function size:0x58 scope:global align:4 +__ct__Q24Game9UpdateMgrFv = .text:0x80196778; // type:function size:0x1C scope:global align:4 +update__Q24Game9UpdateMgrFv = .text:0x80196794; // type:function size:0x24 scope:global align:4 +updatable__Q24Game9UpdateMgrFPQ24Game13UpdateContext = .text:0x801967B8; // type:function size:0x28 scope:global align:4 +create__Q24Game9UpdateMgrFi = .text:0x801967E0; // type:function size:0xA0 scope:global align:4 +addClient__Q24Game9UpdateMgrFPQ24Game13UpdateContext = .text:0x80196880; // type:function size:0xD0 scope:global align:4 +removeClient__Q24Game9UpdateMgrFPQ24Game13UpdateContext = .text:0x80196950; // type:function size:0xC8 scope:global align:4 +__ct__Q26PikiAI6ActionFPQ24Game4Piki = .text:0x80196A18; // type:function size:0x1C scope:global align:4 +getInfo__Q26PikiAI6ActionFPc = .text:0x80196A34; // type:function size:0x30 scope:global align:4 +__ct__Q26PikiAI5BrainFPQ24Game4Piki = .text:0x80196A64; // type:function size:0x280 scope:global align:4 +addAction__Q26PikiAI5BrainFPQ26PikiAI6Action = .text:0x80196CE4; // type:function size:0x1C scope:global align:4 +getCurrAction__Q26PikiAI5BrainFv = .text:0x80196D00; // type:function size:0x24 scope:global align:4 +exec__Q26PikiAI5BrainFv = .text:0x80196D24; // type:function size:0x258 scope:global align:4 +emotion_fail__Q26PikiAI6ActionFv = .text:0x80196F7C; // type:function size:0x4 scope:weak align:4 +emotion_success__Q26PikiAI6ActionFv = .text:0x80196F80; // type:function size:0x4 scope:weak align:4 +getNextAIType__Q26PikiAI6ActionFv = .text:0x80196F84; // type:function size:0x8 scope:weak align:4 +exec__Q26PikiAI6ActionFv = .text:0x80196F8C; // type:function size:0x8 scope:weak align:4 +start__Q26PikiAI5BrainFiPQ26PikiAI9ActionArg = .text:0x80196F94; // type:function size:0x100 scope:global align:4 +applicable__Q26PikiAI6ActionFv = .text:0x80197094; // type:function size:0x8 scope:weak align:4 +init__Q26PikiAI6ActionFPQ26PikiAI9ActionArg = .text:0x8019709C; // type:function size:0x4 scope:weak align:4 +searchOrima__Q26PikiAI5BrainFv = .text:0x801970A0; // type:function size:0x210 scope:global align:4 +doDirectDraw__Q26PikiAI6ActionFR8Graphics = .text:0x801972B0; // type:function size:0x4 scope:weak align:4 +__sinit_aiAction_cpp = .text:0x801972B4; // type:function size:0x28 scope:local align:4 +__ct__Q26PikiAI10ActGotoPosFPQ24Game4Piki = .text:0x801972DC; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI10ActGotoPosFPQ26PikiAI9ActionArg = .text:0x80197318; // type:function size:0x78 scope:global align:4 +exec__Q26PikiAI10ActGotoPosFv = .text:0x80197390; // type:function size:0x11C scope:global align:4 +cleanup__Q26PikiAI10ActGotoPosFv = .text:0x801974AC; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI14ActApproachPosFPQ24Game4Piki = .text:0x801974B0; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI14ActApproachPosFPQ26PikiAI9ActionArg = .text:0x801974EC; // type:function size:0x104 scope:global align:4 +exec__Q26PikiAI14ActApproachPosFv = .text:0x801975F0; // type:function size:0x328 scope:global align:4 +cleanup__Q26PikiAI14ActApproachPosFv = .text:0x80197918; // type:function size:0x34 scope:global align:4 +__ct__Q26PikiAI11ActGotoSlotFPQ24Game4Piki = .text:0x8019794C; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI11ActGotoSlotFPQ26PikiAI9ActionArg = .text:0x80197988; // type:function size:0x18C scope:global align:4 +wallCallback__Q26PikiAI11ActGotoSlotFR10Vector3 = .text:0x80197B14; // type:function size:0x18 scope:global align:4 +resetTimers__Q26PikiAI11ActGotoSlotFv = .text:0x80197B2C; // type:function size:0x14 scope:global align:4 +exec__Q26PikiAI11ActGotoSlotFv = .text:0x80197B40; // type:function size:0xA94 scope:global align:4 +cleanup__Q26PikiAI11ActGotoSlotFv = .text:0x801985D4; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI11ActPathMoveFPQ24Game4Piki = .text:0x801985D8; // type:function size:0x7C scope:global align:4 +init__Q26PikiAI11ActPathMoveFPQ26PikiAI9ActionArg = .text:0x80198654; // type:function size:0x1BC scope:global align:4 +initPathfinding__Q26PikiAI11ActPathMoveFb = .text:0x80198810; // type:function size:0x3AC scope:global align:4 +decideGoal__Q26PikiAI11ActPathMoveFv = .text:0x80198BBC; // type:function size:0x5C scope:global align:4 +exec__Q26PikiAI11ActPathMoveFv = .text:0x80198C18; // type:function size:0x11C scope:global align:4 +execPathfinding__Q26PikiAI11ActPathMoveFv = .text:0x80198D34; // type:function size:0x2B0 scope:global align:4 +execMoveGoal__Q26PikiAI11ActPathMoveFv = .text:0x80198FE4; // type:function size:0x6A8 scope:global align:4 +isAllBlue__Q26PikiAI11ActPathMoveFv = .text:0x8019968C; // type:function size:0x9C scope:global align:4 +carry__Q26PikiAI11ActPathMoveFR10Vector3 = .text:0x80199728; // type:function size:0xA8 scope:global align:4 +execMove__Q26PikiAI11ActPathMoveFv = .text:0x801997D0; // type:function size:0x428 scope:global align:4 +cleanup__Q26PikiAI11ActPathMoveFv = .text:0x80199BF8; // type:function size:0x90 scope:global align:4 +execMoveGuru__Q26PikiAI11ActPathMoveFv = .text:0x80199C88; // type:function size:0x4E8 scope:global align:4 +getWayPoint__Q26PikiAI11ActPathMoveFi = .text:0x8019A170; // type:function size:0xB8 scope:global align:4 +crGetPoint__Q26PikiAI11ActPathMoveFi = .text:0x8019A228; // type:function size:0x18C scope:global align:4 +contextCheck__Q26PikiAI11ActPathMoveFi = .text:0x8019A3B4; // type:function size:0x3C4 scope:global align:4 +crGetRadius__Q26PikiAI11ActPathMoveFi = .text:0x8019A778; // type:function size:0x134 scope:global align:4 +crInit__Q26PikiAI11ActPathMoveFv = .text:0x8019A8AC; // type:function size:0x738 scope:global align:4 +crMakeRefs__Q26PikiAI11ActPathMoveFv = .text:0x8019AFE4; // type:function size:0x80 scope:global align:4 +crMove__Q26PikiAI11ActPathMoveFv = .text:0x8019B064; // type:function size:0xC54 scope:global align:4 +__ct__Q26PikiAI14ActStickAttackFPQ24Game4Piki = .text:0x8019BCB8; // type:function size:0x7C scope:global align:4 +init__Q26PikiAI14ActStickAttackFPQ26PikiAI9ActionArg = .text:0x8019BD34; // type:function size:0x1F0 scope:global align:4 +exec__Q26PikiAI14ActStickAttackFv = .text:0x8019BF24; // type:function size:0x164 scope:global align:4 +createEfx__Q26PikiAI14ActStickAttackFv = .text:0x8019C088; // type:function size:0x650 scope:global align:4 +onKeyEvent__Q26PikiAI14ActStickAttackFRCQ28SysShape8KeyEvent = .text:0x8019C6D8; // type:function size:0x80 scope:global align:4 +cleanup__Q26PikiAI14ActStickAttackFv = .text:0x8019C758; // type:function size:0x24 scope:global align:4 +__ct__Q26PikiAI8ActClimbFPQ24Game4Piki = .text:0x8019C77C; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI8ActClimbFPQ26PikiAI9ActionArg = .text:0x8019C7B8; // type:function size:0x100 scope:global align:4 +exec__Q26PikiAI8ActClimbFv = .text:0x8019C8B8; // type:function size:0xE4 scope:global align:4 +cleanup__Q26PikiAI8ActClimbFv = .text:0x8019C99C; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI9ActGatherFPQ24Game4Piki = .text:0x8019C9A0; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI9ActGatherFPQ26PikiAI9ActionArg = .text:0x8019C9DC; // type:function size:0xE0 scope:global align:4 +exec__Q26PikiAI9ActGatherFv = .text:0x8019CABC; // type:function size:0x154 scope:global align:4 +cleanup__Q26PikiAI9ActGatherFv = .text:0x8019CC10; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI20ActFollowVectorFieldFPQ24Game4Piki = .text:0x8019CC14; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI20ActFollowVectorFieldFPQ26PikiAI9ActionArg = .text:0x8019CC50; // type:function size:0x60 scope:global align:4 +exec__Q26PikiAI20ActFollowVectorFieldFv = .text:0x8019CCB0; // type:function size:0x80 scope:global align:4 +cleanup__Q26PikiAI20ActFollowVectorFieldFv = .text:0x8019CD30; // type:function size:0x4 scope:global align:4 +__sinit_aiPrimitives_cpp = .text:0x8019CD34; // type:function size:0x28 scope:local align:4 +@36@4@onKeyEvent__Q26PikiAI14ActStickAttackFRCQ28SysShape8KeyEvent = .text:0x8019CD5C; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI12ActFormationFPQ24Game4Piki = .text:0x8019CD70; // type:function size:0xF8 scope:global align:4 +inform__Q26PikiAI12ActFormationFi = .text:0x8019CE68; // type:function size:0x8 scope:global align:4 +startSort__Q26PikiAI12ActFormationFv = .text:0x8019CE70; // type:function size:0xC scope:global align:4 +init__Q26PikiAI12ActFormationFPQ26PikiAI9ActionArg = .text:0x8019CE7C; // type:function size:0x1B4 scope:global align:4 +wallCallback__Q26PikiAI12ActFormationFR10Vector3 = .text:0x8019D030; // type:function size:0x58 scope:global align:4 +setFormed__Q26PikiAI12ActFormationFv = .text:0x8019D088; // type:function size:0x45C scope:global align:4 +onKeyEvent__Q26PikiAI12ActFormationFRCQ28SysShape8KeyEvent = .text:0x8019D4E4; // type:function size:0xF8 scope:global align:4 +cleanup__Q26PikiAI12ActFormationFv = .text:0x8019D5DC; // type:function size:0xA4 scope:global align:4 +exec__Q26PikiAI12ActFormationFv = .text:0x8019D680; // type:function size:0x16E8 scope:global align:4 +collisionCallback__Q26PikiAI12ActFormationFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8019ED68; // type:function size:0x74 scope:global align:4 +platCallback__Q26PikiAI12ActFormationFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8019EDDC; // type:function size:0x58 scope:global align:4 +resumable__Q26PikiAI12ActFormationFv = .text:0x8019EE34; // type:function size:0x8 scope:weak align:4 +getNextAIType__Q26PikiAI12ActFormationFv = .text:0x8019EE3C; // type:function size:0x8 scope:weak align:4 +__sinit_aiFormation_cpp = .text:0x8019EE44; // type:function size:0x28 scope:local align:4 +@100@4@inform__Q26PikiAI12ActFormationFi = .text:0x8019EE6C; // type:function size:0x14 scope:weak align:4 +@108@4@onKeyEvent__Q26PikiAI12ActFormationFRCQ28SysShape8KeyEvent = .text:0x8019EE80; // type:function size:0x14 scope:weak align:4 +clearStick__Q24Game8CreatureFv = .text:0x8019EE94; // type:function size:0x24 scope:global align:4 +releaseAllStickers__Q24Game8CreatureFv = .text:0x8019EEB8; // type:function size:0x3C scope:global align:4 +startStick__Q24Game8CreatureFPQ24Game8CreatureP8CollPart = .text:0x8019EEF4; // type:function size:0x174 scope:global align:4 +startStickMouth__Q24Game8CreatureFPQ24Game8CreatureP8CollPart = .text:0x8019F068; // type:function size:0x1B0 scope:global align:4 +startStick__Q24Game8CreatureFPQ24Game8Creatures = .text:0x8019F218; // type:function size:0x20C scope:global align:4 +endStick__Q24Game8CreatureFv = .text:0x8019F424; // type:function size:0x150 scope:global align:4 +isStickTo__Q24Game8CreatureFv = .text:0x8019F574; // type:function size:0x14 scope:global align:4 +isStickToMouth__Q24Game8CreatureFv = .text:0x8019F588; // type:function size:0x60 scope:global align:4 +updateStick__Q24Game8CreatureFR10Vector3 = .text:0x8019F5E8; // type:function size:0x4B4 scope:global align:4 +clearCapture__Q24Game8CreatureFv = .text:0x8019FA9C; // type:function size:0xC scope:global align:4 +startCapture__Q24Game8CreatureFP7Matrixf = .text:0x8019FAA8; // type:function size:0x54 scope:global align:4 +updateCapture__Q24Game8CreatureFR7Matrixf = .text:0x8019FAFC; // type:function size:0xA0 scope:global align:4 +endCapture__Q24Game8CreatureFv = .text:0x8019FB9C; // type:function size:0x58 scope:global align:4 +initialise__Q24Game8StickersFv = .text:0x8019FBF4; // type:function size:0x68 scope:global align:4 +__ct__Q24Game8StickersFPQ24Game8Creature = .text:0x8019FC5C; // type:function size:0x108 scope:global align:4 +__dt__Q24Game8StickersFv = .text:0x8019FD64; // type:function size:0x8C scope:global align:4 +get__Q24Game8StickersFPv = .text:0x8019FDF0; // type:function size:0x70 scope:global align:4 +getNext__Q24Game8StickersFPv = .text:0x8019FE60; // type:function size:0x8 scope:global align:4 +getStart__Q24Game8StickersFv = .text:0x8019FE68; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game8StickersFv = .text:0x8019FE70; // type:function size:0x8 scope:global align:4 +actCommon__Q24Game13InteractFlickFPQ24Game8Creature = .text:0x8019FE78; // type:function size:0x44 scope:global align:4 +actCommon__Q24Game14InteractAttackFPQ24Game8Creature = .text:0x8019FEBC; // type:function size:0x6C scope:global align:4 +actCommon__Q24Game15InteractSwallowFPQ24Game8Creature = .text:0x8019FF28; // type:function size:0x8 scope:global align:4 +actCommon__Q24Game12InteractKillFPQ24Game8Creature = .text:0x8019FF30; // type:function size:0x8 scope:global align:4 +__ct__Q26PikiAI7ActFreeFPQ24Game4Piki = .text:0x8019FF38; // type:function size:0xD0 scope:global align:4 +init__Q26PikiAI7ActFreeFPQ26PikiAI9ActionArg = .text:0x801A0008; // type:function size:0x190 scope:global align:4 +exec__Q26PikiAI7ActFreeFv = .text:0x801A0198; // type:function size:0x1D0 scope:global align:4 +cleanup__Q26PikiAI7ActFreeFv = .text:0x801A0368; // type:function size:0x4C scope:global align:4 +onKeyEvent__Q26PikiAI7ActFreeFRCQ28SysShape8KeyEvent = .text:0x801A03B4; // type:function size:0x4 scope:global align:4 +collisionCallback__Q26PikiAI7ActFreeFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801A03B8; // type:function size:0xEC scope:global align:4 +getName__Q26PikiAI15GatherActionArgFv = .text:0x801A04A4; // type:function size:0xC scope:weak align:4 +getNextAIType__Q26PikiAI7ActFreeFv = .text:0x801A04B0; // type:function size:0x8 scope:weak align:4 +@32@4@onKeyEvent__Q26PikiAI7ActFreeFRCQ28SysShape8KeyEvent = .text:0x801A04B8; // type:function size:0x14 scope:weak align:4 +getInfo__Q26PikiAI9ActAttackFPc = .text:0x801A04CC; // type:function size:0x70 scope:global align:4 +emotion_success__Q26PikiAI9ActAttackFv = .text:0x801A053C; // type:function size:0x44 scope:global align:4 +__ct__Q26PikiAI9ActAttackFPQ24Game4Piki = .text:0x801A0580; // type:function size:0xD4 scope:global align:4 +init__Q26PikiAI9ActAttackFPQ26PikiAI9ActionArg = .text:0x801A0654; // type:function size:0x11C scope:global align:4 +initStickAttack__Q26PikiAI9ActAttackFv = .text:0x801A0770; // type:function size:0x84 scope:global align:4 +initAdjust__Q26PikiAI9ActAttackFv = .text:0x801A07F4; // type:function size:0xA8 scope:global align:4 +initJumpAdjust__Q26PikiAI9ActAttackFv = .text:0x801A089C; // type:function size:0xAC scope:global align:4 +applicable__Q26PikiAI9ActAttackFv = .text:0x801A0948; // type:function size:0x8C scope:global align:4 +calcAttackPos__Q26PikiAI9ActAttackFv = .text:0x801A09D4; // type:function size:0x1C4 scope:global align:4 +exec__Q26PikiAI9ActAttackFv = .text:0x801A0B98; // type:function size:0x94C scope:global align:4 +cleanup__Q26PikiAI9ActAttackFv = .text:0x801A14E4; // type:function size:0x54 scope:global align:4 +collisionCallback__Q26PikiAI9ActAttackFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801A1538; // type:function size:0xE0 scope:global align:4 +bounceCallback__Q26PikiAI9ActAttackFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801A1618; // type:function size:0x24C scope:global align:4 +onKeyEvent__Q26PikiAI9ActAttackFRCQ28SysShape8KeyEvent = .text:0x801A1864; // type:function size:0x24 scope:global align:4 +satisfy__13FindConditionFP8CollPart = .text:0x801A1888; // type:function size:0x58 scope:weak align:4 +getName__Q26PikiAI20ApproachPosActionArgFv = .text:0x801A18E0; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI20StickAttackActionArgFv = .text:0x801A18EC; // type:function size:0xC scope:weak align:4 +getNextAIType__Q26PikiAI9ActAttackFv = .text:0x801A18F8; // type:function size:0x8 scope:weak align:4 +@56@4@onKeyEvent__Q26PikiAI9ActAttackFRCQ28SysShape8KeyEvent = .text:0x801A1900; // type:function size:0x14 scope:weak align:4 +getInfo__Q26PikiAI12ActTransportFPc = .text:0x801A1914; // type:function size:0x64 scope:global align:4 +__ct__Q26PikiAI12ActTransportFPQ24Game4Piki = .text:0x801A1978; // type:function size:0xD0 scope:global align:4 +init__Q26PikiAI12ActTransportFPQ26PikiAI9ActionArg = .text:0x801A1A48; // type:function size:0x17C scope:global align:4 +emotion_success__Q26PikiAI12ActTransportFv = .text:0x801A1BC4; // type:function size:0x44 scope:global align:4 +emotion_fail__Q26PikiAI12ActTransportFv = .text:0x801A1C08; // type:function size:0x4 scope:global align:4 +exec__Q26PikiAI12ActTransportFv = .text:0x801A1C0C; // type:function size:0x3E8 scope:global align:4 +cleanup__Q26PikiAI12ActTransportFv = .text:0x801A1FF4; // type:function size:0x78 scope:global align:4 +onKeyEvent__Q26PikiAI12ActTransportFRCQ28SysShape8KeyEvent = .text:0x801A206C; // type:function size:0x11C scope:global align:4 +isStickLeader__Q26PikiAI12ActTransportFv = .text:0x801A2188; // type:function size:0x9C scope:global align:4 +initLift__Q26PikiAI12ActTransportFv = .text:0x801A2224; // type:function size:0xBC scope:global align:4 +execLift__Q26PikiAI12ActTransportFv = .text:0x801A22E0; // type:function size:0x414 scope:global align:4 +getName__Q26PikiAI11PathMoveArgFv = .text:0x801A26F4; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI11GotoSlotArgFv = .text:0x801A2700; // type:function size:0xC scope:weak align:4 +@60@4@onKeyEvent__Q26PikiAI12ActTransportFRCQ28SysShape8KeyEvent = .text:0x801A270C; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI8ActEnterFPQ24Game4Piki = .text:0x801A2720; // type:function size:0xD0 scope:global align:4 +init__Q26PikiAI8ActEnterFPQ26PikiAI9ActionArg = .text:0x801A27F0; // type:function size:0x338 scope:global align:4 +exec__Q26PikiAI8ActEnterFv = .text:0x801A2B28; // type:function size:0x240 scope:global align:4 +cleanup__Q26PikiAI8ActEnterFv = .text:0x801A2D68; // type:function size:0x68 scope:global align:4 +onKeyEvent__Q26PikiAI8ActEnterFRCQ28SysShape8KeyEvent = .text:0x801A2DD0; // type:function size:0x4 scope:global align:4 +initStay__Q26PikiAI8ActEnterFv = .text:0x801A2DD4; // type:function size:0x78 scope:global align:4 +execStay__Q26PikiAI8ActEnterFv = .text:0x801A2E4C; // type:function size:0x64 scope:global align:4 +initSuck__Q26PikiAI8ActEnterFv = .text:0x801A2EB0; // type:function size:0x1A0 scope:global align:4 +execSuck__Q26PikiAI8ActEnterFv = .text:0x801A3050; // type:function size:0x18C scope:global align:4 +__ct__Q26PikiAI7ActExitFPQ24Game4Piki = .text:0x801A31DC; // type:function size:0x70 scope:global align:4 +init__Q26PikiAI7ActExitFPQ26PikiAI9ActionArg = .text:0x801A324C; // type:function size:0x204 scope:global align:4 +exec__Q26PikiAI7ActExitFv = .text:0x801A3450; // type:function size:0xA8 scope:global align:4 +cleanup__Q26PikiAI7ActExitFv = .text:0x801A34F8; // type:function size:0xC8 scope:global align:4 +getName__Q26PikiAI14ClimbActionArgFv = .text:0x801A35C0; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI16GotoPosActionArgFv = .text:0x801A35CC; // type:function size:0xC scope:weak align:4 +@96@4@onKeyEvent__Q26PikiAI8ActEnterFRCQ28SysShape8KeyEvent = .text:0x801A35D8; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game10PathfinderFv = .text:0x801A35EC; // type:function size:0x60 scope:global align:4 +create__Q24Game10PathfinderFiPQ24Game8RouteMgr = .text:0x801A364C; // type:function size:0xC4 scope:global align:4 +__ct__Q24Game12AStarContextFv = .text:0x801A3710; // type:function size:0x20 scope:weak align:4 +update__Q24Game10PathfinderFv = .text:0x801A3730; // type:function size:0x124 scope:global align:4 +start__Q24Game10PathfinderFRQ24Game15PathfindRequest = .text:0x801A3854; // type:function size:0x14C scope:global align:4 +makepath__Q24Game10PathfinderFUlPPQ24Game8PathNode = .text:0x801A39A0; // type:function size:0xC0 scope:global align:4 +release__Q24Game10PathfinderFUl = .text:0x801A3A60; // type:function size:0x70 scope:global align:4 +check__Q24Game10PathfinderFUl = .text:0x801A3AD0; // type:function size:0x98 scope:global align:4 +init__Q24Game12AStarContextFPQ24Game8RouteMgri = .text:0x801A3B68; // type:function size:0x78 scope:global align:4 +__ct__Q24Game15AStarPathfinderFv = .text:0x801A3BE0; // type:function size:0xC scope:global align:4 +setContext__Q24Game15AStarPathfinderFPQ24Game12AStarContext = .text:0x801A3BEC; // type:function size:0x8 scope:global align:4 +initsearch__Q24Game15AStarPathfinderFPQ24Game12AStarContext = .text:0x801A3BF4; // type:function size:0x17C scope:global align:4 +search__Q24Game15AStarPathfinderFPQ24Game12AStarContextiPPQ24Game8PathNode = .text:0x801A3D70; // type:function size:0x4B8 scope:global align:4 +estimate__Q24Game15AStarPathfinderFss = .text:0x801A4228; // type:function size:0xB4 scope:global align:4 +makepath__Q24Game12AStarContextFPQ24Game8PathNodePPQ24Game8PathNode = .text:0x801A42DC; // type:function size:0x34 scope:global align:4 +init__Q24Game9PelletFSMFPQ24Game6Pellet = .text:0x801A4310; // type:function size:0x2AC scope:global align:4 +init__Q24Game17PelletNormalStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A45BC; // type:function size:0x4 scope:global align:4 +exec__Q24Game17PelletNormalStateFPQ24Game6Pellet = .text:0x801A45C0; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game17PelletNormalStateFPQ24Game6Pellet = .text:0x801A45C4; // type:function size:0x4 scope:global align:4 +init__Q24Game19PelletGoalWaitStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A45C8; // type:function size:0x7C scope:global align:4 +exec__Q24Game19PelletGoalWaitStateFPQ24Game6Pellet = .text:0x801A4644; // type:function size:0x60 scope:global align:4 +transit__Q24Game24FSMStateFPQ24Game6PelletiPQ24Game8StateArg = .text:0x801A46A4; // type:function size:0x30 scope:weak align:4 +cleanup__Q24Game19PelletGoalWaitStateFPQ24Game6Pellet = .text:0x801A46D4; // type:function size:0x4 scope:global align:4 +init__Q24Game15PelletGoalStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A46D8; // type:function size:0x680 scope:global align:4 +checkMovie__Q24Game15PelletGoalStateFPQ24Game6Pellet = .text:0x801A4D58; // type:function size:0xD6C scope:global align:4 +exec__Q24Game15PelletGoalStateFPQ24Game6Pellet = .text:0x801A5AC4; // type:function size:0xB34 scope:global align:4 +cleanup__Q24Game15PelletGoalStateFPQ24Game6Pellet = .text:0x801A65F8; // type:function size:0x4 scope:global align:4 +init__Q24Game17PelletAppearStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A65FC; // type:function size:0x144 scope:global align:4 +exec__Q24Game17PelletAppearStateFPQ24Game6Pellet = .text:0x801A6740; // type:function size:0x240 scope:global align:4 +cleanup__Q24Game17PelletAppearStateFPQ24Game6Pellet = .text:0x801A6980; // type:function size:0x4 scope:global align:4 +init__Q24Game22PelletScaleAppearStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6984; // type:function size:0x130 scope:global align:4 +exec__Q24Game22PelletScaleAppearStateFPQ24Game6Pellet = .text:0x801A6AB4; // type:function size:0x1BC scope:global align:4 +cleanup__Q24Game22PelletScaleAppearStateFPQ24Game6Pellet = .text:0x801A6C70; // type:function size:0x34 scope:global align:4 +init__Q24Game15PelletBuryStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6CA4; // type:function size:0x24 scope:global align:4 +exec__Q24Game15PelletBuryStateFPQ24Game6Pellet = .text:0x801A6CC8; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game15PelletBuryStateFPQ24Game6Pellet = .text:0x801A6CCC; // type:function size:0x4 scope:global align:4 +init__Q24Game16PelletZukanStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6CD0; // type:function size:0x38 scope:global align:4 +exec__Q24Game16PelletZukanStateFPQ24Game6Pellet = .text:0x801A6D08; // type:function size:0x94 scope:global align:4 +cleanup__Q24Game16PelletZukanStateFPQ24Game6Pellet = .text:0x801A6D9C; // type:function size:0x4 scope:global align:4 +init__Q24Game13PelletUpStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6DA0; // type:function size:0x24 scope:global align:4 +exec__Q24Game13PelletUpStateFPQ24Game6Pellet = .text:0x801A6DC4; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game13PelletUpStateFPQ24Game6Pellet = .text:0x801A6DC8; // type:function size:0x4 scope:global align:4 +__ct__Q24Game17PelletReturnStateFv = .text:0x801A6DCC; // type:function size:0xF0 scope:global align:4 +init__Q24Game17PelletReturnStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6EBC; // type:function size:0x318 scope:global align:4 +exec__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A71D4; // type:function size:0xD8 scope:global align:4 +cleanup__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A72AC; // type:function size:0x9C scope:global align:4 +initPathfinding__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A7348; // type:function size:0x1B4 scope:global align:4 +execPathfinding__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A74FC; // type:function size:0x90 scope:global align:4 +execMove__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A758C; // type:function size:0x858 scope:global align:4 +execMoveGoal__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A7DE4; // type:function size:0x8 scope:global align:4 +isBuried__Q24Game11PelletStateFv = .text:0x801A7DEC; // type:function size:0x8 scope:weak align:4 +appeared__Q24Game11PelletStateFv = .text:0x801A7DF4; // type:function size:0x8 scope:weak align:4 +isBuried__Q24Game13PelletUpStateFv = .text:0x801A7DFC; // type:function size:0x8 scope:weak align:4 +isBuried__Q24Game15PelletBuryStateFv = .text:0x801A7E04; // type:function size:0x8 scope:weak align:4 +appeared__Q24Game22PelletScaleAppearStateFv = .text:0x801A7E0C; // type:function size:0x8 scope:weak align:4 +appeared__Q24Game17PelletAppearStateFv = .text:0x801A7E14; // type:function size:0x8 scope:weak align:4 +isPickable__Q24Game17PelletNormalStateFv = .text:0x801A7E1C; // type:function size:0x8 scope:weak align:4 +resume__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x801A7E24; // type:function size:0x4 scope:weak align:4 +restart__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x801A7E28; // type:function size:0x4 scope:weak align:4 +create__Q24Game28StateMachineFi = .text:0x801A7E2C; // type:function size:0x64 scope:weak align:4 +registerState__Q24Game28StateMachineFPQ24Game24FSMState = .text:0x801A7E90; // type:function size:0x84 scope:weak align:4 +__sinit_pelletState_cpp = .text:0x801A7F14; // type:function size:0x28 scope:local align:4 +__ct__Q24Game14DynParticleMgrFi = .text:0x801A7F3C; // type:function size:0x5C scope:global align:4 +__dt__35MonoObjectMgrFv = .text:0x801A7F98; // type:function size:0xA0 scope:weak align:4 +resetMgr__Q24Game14DynParticleMgrFv = .text:0x801A8038; // type:function size:0x30 scope:global align:4 +getAt__Q24Game11DynParticleFi = .text:0x801A8068; // type:function size:0x78 scope:global align:4 +__ct__Q24Game11DynCreatureFv = .text:0x801A80E0; // type:function size:0x74 scope:global align:4 +createParticles__Q24Game11DynCreatureFi = .text:0x801A8154; // type:function size:0xB0 scope:global align:4 +releaseParticles__Q24Game11DynCreatureFv = .text:0x801A8204; // type:function size:0x74 scope:global align:4 +updateParticlePositions__Q24Game11DynCreatureFv = .text:0x801A8278; // type:function size:0x6C scope:global align:4 +computeForces__Q24Game11DynCreatureFf = .text:0x801A82E4; // type:function size:0x4F4 scope:global align:4 +tracemoveCallback__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A87D8; // type:function size:0xB4 scope:global align:4 +simulate__Q24Game11DynCreatureFf = .text:0x801A888C; // type:function size:0x4A8 scope:global align:4 +getPosition__Q24Game11DynCreatureFv = .text:0x801A8D34; // type:function size:0x1C scope:global align:4 +onSetPosition__Q24Game11DynCreatureFR10Vector3 = .text:0x801A8D50; // type:function size:0xAC scope:global align:4 +onSetPosition__Q24Game11DynCreatureFv = .text:0x801A8DFC; // type:function size:0x4 scope:weak align:4 +getVelocity__Q24Game11DynCreatureFv = .text:0x801A8E00; // type:function size:0x1C scope:global align:4 +setVelocity__Q24Game11DynCreatureFR10Vector3 = .text:0x801A8E1C; // type:function size:0x1C scope:global align:4 +getVelocityAt__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A8E38; // type:function size:0x88 scope:global align:4 +getAngularEffect__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A8EC0; // type:function size:0x8 scope:global align:4 +applyImpulse__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A8EC8; // type:function size:0x44 scope:global align:4 +__dt__Q24Game14DynParticleMgrFv = .text:0x801A8F0C; // type:function size:0xB8 scope:weak align:4 +__dt__31ContainerFv = .text:0x801A8FC4; // type:function size:0x70 scope:weak align:4 +__dt__31ObjectMgrFv = .text:0x801A9034; // type:function size:0x88 scope:weak align:4 +birth__35MonoObjectMgrFv = .text:0x801A90BC; // type:function size:0x60 scope:weak align:4 +kill__35MonoObjectMgrFPQ24Game11DynParticle = .text:0x801A911C; // type:function size:0x54 scope:weak align:4 +getNext__35MonoObjectMgrFPv = .text:0x801A9170; // type:function size:0x40 scope:weak align:4 +getStart__35MonoObjectMgrFv = .text:0x801A91B0; // type:function size:0x30 scope:weak align:4 +getEnd__35MonoObjectMgrFv = .text:0x801A91E0; // type:function size:0x8 scope:weak align:4 +getAt__35MonoObjectMgrFi = .text:0x801A91E8; // type:function size:0x10 scope:weak align:4 +getTo__35MonoObjectMgrFv = .text:0x801A91F8; // type:function size:0x8 scope:weak align:4 +doAnimation__35MonoObjectMgrFv = .text:0x801A9200; // type:function size:0x80 scope:weak align:4 +doEntry__35MonoObjectMgrFv = .text:0x801A9280; // type:function size:0x80 scope:weak align:4 +doSetView__35MonoObjectMgrFi = .text:0x801A9300; // type:function size:0x90 scope:weak align:4 +doViewCalc__35MonoObjectMgrFv = .text:0x801A9390; // type:function size:0x80 scope:weak align:4 +doSimulation__35MonoObjectMgrFf = .text:0x801A9410; // type:function size:0x90 scope:weak align:4 +doDirectDraw__35MonoObjectMgrFR8Graphics = .text:0x801A94A0; // type:function size:0x90 scope:weak align:4 +resetMgr__35MonoObjectMgrFv = .text:0x801A9530; // type:function size:0x18 scope:weak align:4 +clearMgr__35MonoObjectMgrFv = .text:0x801A9548; // type:function size:0x30 scope:weak align:4 +onAlloc__35MonoObjectMgrFv = .text:0x801A9578; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__35MonoObjectMgrFv = .text:0x801A957C; // type:function size:0x3C scope:weak align:4 +get__35MonoObjectMgrFPv = .text:0x801A95B8; // type:function size:0x10 scope:weak align:4 +getObject__31ContainerFPv = .text:0x801A95C8; // type:function size:0x2C scope:weak align:4 +getAt__31ContainerFi = .text:0x801A95F4; // type:function size:0x8 scope:weak align:4 +getTo__31ContainerFv = .text:0x801A95FC; // type:function size:0x8 scope:weak align:4 +invoke__59Delegate2,R10Vector3>FR10Vector3R10Vector3 = .text:0x801A9604; // type:function size:0x30 scope:weak align:4 +doDirectDraw__31ObjectMgrFR8Graphics = .text:0x801A9634; // type:function size:0x1F4 scope:weak align:4 +isDone__30IteratorFv = .text:0x801A9828; // type:function size:0x4C scope:weak align:4 +doSimulation__31ObjectMgrFf = .text:0x801A9874; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__31ObjectMgrFv = .text:0x801A9A68; // type:function size:0x1E4 scope:weak align:4 +doSetView__31ObjectMgrFi = .text:0x801A9C4C; // type:function size:0x1F4 scope:weak align:4 +doEntry__31ObjectMgrFv = .text:0x801A9E40; // type:function size:0x1E4 scope:weak align:4 +doAnimation__31ObjectMgrFv = .text:0x801AA024; // type:function size:0x1E4 scope:weak align:4 +doDirectDraw__Q24Game11DynParticleFR8Graphics = .text:0x801AA208; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game11DynParticleFf = .text:0x801AA20C; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game11DynParticleFv = .text:0x801AA210; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game11DynParticleFUl = .text:0x801AA214; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game11DynParticleFv = .text:0x801AA218; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game11DynParticleFv = .text:0x801AA21C; // type:function size:0x4 scope:weak align:4 +alloc__35MonoObjectMgrFi = .text:0x801AA220; // type:function size:0x188 scope:weak align:4 +constructor__Q24Game11DynParticleFv = .text:0x801AA3A8; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game11DynParticleFv = .text:0x801AA3AC; // type:function size:0x34 scope:weak align:4 +__ct__35MonoObjectMgrFv = .text:0x801AA3E0; // type:function size:0x9C scope:weak align:4 +__ml__30IteratorFv = .text:0x801AA47C; // type:function size:0x38 scope:weak align:4 +next__30IteratorFv = .text:0x801AA4B4; // type:function size:0xE4 scope:weak align:4 +first__30IteratorFv = .text:0x801AA598; // type:function size:0xDC scope:weak align:4 +@28@resetMgr__35MonoObjectMgrFv = .text:0x801AA674; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__31ObjectMgrFR8Graphics = .text:0x801AA67C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__31ObjectMgrFf = .text:0x801AA684; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__31ObjectMgrFv = .text:0x801AA68C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__31ObjectMgrFi = .text:0x801AA694; // type:function size:0x8 scope:weak align:4 +@28@doEntry__31ObjectMgrFv = .text:0x801AA69C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__31ObjectMgrFv = .text:0x801AA6A4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__Q24Game14DynParticleMgrFv = .text:0x801AA6AC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__35MonoObjectMgrFR8Graphics = .text:0x801AA6B4; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__35MonoObjectMgrFf = .text:0x801AA6BC; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__35MonoObjectMgrFv = .text:0x801AA6C4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__35MonoObjectMgrFi = .text:0x801AA6CC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__35MonoObjectMgrFv = .text:0x801AA6D4; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__35MonoObjectMgrFv = .text:0x801AA6DC; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game7GenBaseFUlPcPc = .text:0x801AA6E4; // type:function size:0x50 scope:global align:4 +getLatestVersion__Q24Game7GenBaseFv = .text:0x801AA734; // type:function size:0xC scope:weak align:4 +doWrite__Q24Game7GenBaseFR6Stream = .text:0x801AA740; // type:function size:0x4 scope:weak align:4 +ramSaveParameters__Q24Game7GenBaseFR6Stream = .text:0x801AA744; // type:function size:0x20 scope:global align:4 +ramLoadParameters__Q24Game7GenBaseFR6Stream = .text:0x801AA764; // type:function size:0x20 scope:global align:4 +doRead__Q24Game7GenBaseFR6Stream = .text:0x801AA784; // type:function size:0x4 scope:weak align:4 +getLatestVersion__Q24Game9GenObjectFv = .text:0x801AA788; // type:function size:0x50 scope:global align:4 +initialiseSystem__Q24Game9GeneratorFv = .text:0x801AA7D8; // type:function size:0xC scope:global align:4 +__ct__Q24Game9GeneratorFv = .text:0x801AA7E4; // type:function size:0xDC scope:global align:4 +__dt__Q24Game9GeneratorFv = .text:0x801AA8C0; // type:function size:0x68 scope:global align:4 +updateUseList__Q24Game9GeneratorFv = .text:0x801AA928; // type:function size:0x58 scope:global align:4 +updateUseList__Q24Game9GenObjectFPQ24Game9Generatori = .text:0x801AA980; // type:function size:0x4 scope:weak align:4 +isExpired__Q24Game9GeneratorFv = .text:0x801AA984; // type:function size:0x34 scope:global align:4 +loadCreature__Q24Game9GeneratorFR6Stream = .text:0x801AA9B8; // type:function size:0xB8 scope:global align:4 +generate__Q24Game9GenObjectFPQ24Game9Generator = .text:0x801AAA70; // type:function size:0x8 scope:weak align:4 +need_saveCreature__Q24Game9GeneratorFv = .text:0x801AAA78; // type:function size:0x7C scope:global align:4 +saveCreature__Q24Game9GeneratorFR6Stream = .text:0x801AAAF4; // type:function size:0xC8 scope:global align:4 +generate__Q24Game9GeneratorFv = .text:0x801AABBC; // type:function size:0x138 scope:global align:4 +informDeath__Q24Game9GeneratorFPQ24Game8Creature = .text:0x801AACF4; // type:function size:0x24 scope:global align:4 +read__Q24Game9GeneratorFR6Stream = .text:0x801AAD18; // type:function size:0x3A4 scope:global align:4 +write__Q24Game9GeneratorFR6Stream = .text:0x801AB0BC; // type:function size:0x39C scope:global align:4 +__ct__Q24Game12GeneratorMgrFv = .text:0x801AB458; // type:function size:0x120 scope:global align:4 +addMgr__Q24Game12GeneratorMgrFPQ24Game12GeneratorMgr = .text:0x801AB578; // type:function size:0x3C scope:global align:4 +generate__Q24Game12GeneratorMgrFv = .text:0x801AB5B4; // type:function size:0x148 scope:global align:4 +setDayLimit__Q24Game12GeneratorMgrFi = .text:0x801AB6FC; // type:function size:0x1C scope:global align:4 +updateUseList__Q24Game12GeneratorMgrFv = .text:0x801AB718; // type:function size:0x98 scope:global align:4 +getNext__Q24Game12GeneratorMgrFv = .text:0x801AB7B0; // type:function size:0x8 scope:weak align:4 +getChild__Q24Game12GeneratorMgrFv = .text:0x801AB7B8; // type:function size:0x8 scope:weak align:4 +updateCursorPos__Q24Game12GeneratorMgrFR10Vector3 = .text:0x801AB7C0; // type:function size:0x43C scope:global align:4 +__as__10Vector3FRC10Vector3 = .text:0x801ABBFC; // type:function size:0x1C scope:weak align:4 +read__Q24Game12GeneratorMgrFR6Streamb = .text:0x801ABC18; // type:function size:0x2F0 scope:global align:4 +doAnimation__Q24Game9GeneratorFv = .text:0x801ABF08; // type:function size:0xD8 scope:global align:4 +doEntry__Q24Game9GeneratorFv = .text:0x801ABFE0; // type:function size:0x70 scope:global align:4 +doSetView__Q24Game9GeneratorFi = .text:0x801AC050; // type:function size:0x70 scope:global align:4 +doViewCalc__Q24Game9GeneratorFv = .text:0x801AC0C0; // type:function size:0x60 scope:global align:4 +doAnimation__Q24Game12GeneratorMgrFv = .text:0x801AC120; // type:function size:0x7C scope:global align:4 +doEntry__Q24Game12GeneratorMgrFv = .text:0x801AC19C; // type:function size:0x7C scope:global align:4 +doSetView__Q24Game12GeneratorMgrFi = .text:0x801AC218; // type:function size:0x90 scope:global align:4 +doViewCalc__Q24Game12GeneratorMgrFv = .text:0x801AC2A8; // type:function size:0x7C scope:global align:4 +__dt__Q24Game12GeneratorMgrFv = .text:0x801AC324; // type:function size:0x60 scope:weak align:4 +render__Q24Game9GenObjectFR8GraphicsPQ24Game9Generator = .text:0x801AC384; // type:function size:0x4 scope:weak align:4 +getShape__Q24Game7GenBaseFv = .text:0x801AC388; // type:function size:0x8 scope:weak align:4 +update__Q24Game7GenBaseFPQ24Game9Generator = .text:0x801AC390; // type:function size:0x4 scope:weak align:4 +render__Q24Game7GenBaseFR8GraphicsPQ24Game9Generator = .text:0x801AC394; // type:function size:0x4 scope:weak align:4 +__sinit_gameGenerator_cpp = .text:0x801AC398; // type:function size:0x28 scope:local align:4 +makeObjectPiki__Fv = .text:0x801AC3C0; // type:function size:0x128 scope:local align:4 +initialise__Q24Game13GenObjectPikiFv = .text:0x801AC4E8; // type:function size:0x8C scope:global align:4 +ramSaveParameters__Q24Game13GenObjectPikiFR6Stream = .text:0x801AC574; // type:function size:0x2C scope:global align:4 +ramLoadParameters__Q24Game13GenObjectPikiFR6Stream = .text:0x801AC5A0; // type:function size:0x38 scope:global align:4 +generate__Q24Game13GenObjectPikiFPQ24Game9Generator = .text:0x801AC5D8; // type:function size:0x258 scope:global align:4 +birth__Q24Game13GenObjectPikiFPQ24Game6GenArg = .text:0x801AC830; // type:function size:0x1B0 scope:global align:4 +__sinit_genPiki_cpp = .text:0x801AC9E0; // type:function size:0x28 scope:local align:4 +makeObjectNavi__Fv = .text:0x801ACA08; // type:function size:0xB8 scope:local align:4 +initialise__Q24Game13GenObjectNaviFv = .text:0x801ACAC0; // type:function size:0x8C scope:global align:4 +ramSaveParameters__Q24Game13GenObjectNaviFR6Stream = .text:0x801ACB4C; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game13GenObjectNaviFR6Stream = .text:0x801ACB50; // type:function size:0x4 scope:global align:4 +generate__Q24Game13GenObjectNaviFPQ24Game9Generator = .text:0x801ACB54; // type:function size:0x78 scope:global align:4 +birth__Q24Game13GenObjectNaviFPQ24Game6GenArg = .text:0x801ACBCC; // type:function size:0x138 scope:global align:4 +getCalc__Q28SysShape8AnimatorFv = .text:0x801ACD04; // type:function size:0x1C scope:weak align:4 +makeItem__Fv = .text:0x801ACD20; // type:function size:0x9C scope:local align:4 +initialise__Q24Game7GenItemFv = .text:0x801ACDBC; // type:function size:0x8C scope:global align:4 +updateUseList__Q24Game7GenItemFPQ24Game9Generatori = .text:0x801ACE48; // type:function size:0x38 scope:global align:4 +doEvent__Q24Game7GenItemFUl = .text:0x801ACE80; // type:function size:0x6C scope:global align:4 +generatorMakeMatrix__Q24Game7GenItemFR7MatrixfR10Vector3 = .text:0x801ACEEC; // type:function size:0x68 scope:global align:4 +getShape__Q24Game7GenItemFv = .text:0x801ACF54; // type:function size:0x50 scope:global align:4 +doWrite__Q24Game7GenItemFR6Stream = .text:0x801ACFA4; // type:function size:0x154 scope:global align:4 +generatorWrite__Q24Game11BaseItemMgrFR6StreamPQ24Game11GenItemParm = .text:0x801AD0F8; // type:function size:0x4 scope:weak align:4 +generatorLocalVersion__Q24Game11BaseItemMgrFv = .text:0x801AD0FC; // type:function size:0xC scope:weak align:4 +doRead__Q24Game7GenItemFR6Stream = .text:0x801AD108; // type:function size:0x148 scope:global align:4 +generatorRead__Q24Game11BaseItemMgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801AD250; // type:function size:0x4 scope:weak align:4 +ramSaveParameters__Q24Game7GenItemFR6Stream = .text:0x801AD254; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game7GenItemFR6Stream = .text:0x801AD258; // type:function size:0x4 scope:global align:4 +generate__Q24Game7GenItemFPQ24Game9Generator = .text:0x801AD25C; // type:function size:0x78 scope:global align:4 +birth__Q24Game7GenItemFPQ24Game6GenArg = .text:0x801AD2D4; // type:function size:0xA4 scope:global align:4 +__dt__Q24Game11CaveOtakaraFv = .text:0x801AD378; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game8LimitGenFv = .text:0x801AD3D8; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game10CourseInfoFv = .text:0x801AD438; // type:function size:0x154 scope:global align:4 +dump__Q24Game10CourseInfoFv = .text:0x801AD58C; // type:function size:0x4 scope:global align:4 +read__Q24Game10CourseInfoFR6Stream = .text:0x801AD590; // type:function size:0x4C4 scope:global align:4 +getOtakaraNum__Q24Game10CourseInfoFR4ID32 = .text:0x801ADA54; // type:function size:0x88 scope:global align:4 +getOtakaraNum__Q24Game10CourseInfoFi = .text:0x801ADADC; // type:function size:0x38 scope:global align:4 +getCaveIndex_FromID__Q24Game10CourseInfoFR4ID32 = .text:0x801ADB14; // type:function size:0x8C scope:global align:4 +getCaveinfoFilename_FromID__Q24Game10CourseInfoFR4ID32 = .text:0x801ADBA0; // type:function size:0x9C scope:global align:4 +getCaveID_FromIndex__Q24Game10CourseInfoFi = .text:0x801ADC3C; // type:function size:0x3C scope:global align:4 +getCaveNum__Q24Game10CourseInfoFv = .text:0x801ADC78; // type:function size:0x8 scope:global align:4 +__ct__Q24Game6StagesFv = .text:0x801ADC80; // type:function size:0x1EC scope:global align:4 +__dt__Q24Game10CourseInfoFv = .text:0x801ADE6C; // type:function size:0xD0 scope:weak align:4 +getCourseInfo__Q24Game6StagesFPc = .text:0x801ADF3C; // type:function size:0x70 scope:global align:4 +getCourseInfo__Q24Game6StagesFi = .text:0x801ADFAC; // type:function size:0x74 scope:global align:4 +createMapMgr__Q24Game6StagesFPQ24Game10CourseInfoPQ24Game8RouteMgr = .text:0x801AE020; // type:function size:0x234 scope:global align:4 +__dt__12MapCollisionFv = .text:0x801AE254; // type:function size:0x60 scope:weak align:4 +read__Q24Game6StagesFR6Stream = .text:0x801AE2B4; // type:function size:0x194 scope:global align:4 +startDown__Q24Game12AABBWaterBoxFf = .text:0x801AE448; // type:function size:0x28 scope:global align:4 +startUp__Q24Game12AABBWaterBoxFf = .text:0x801AE470; // type:function size:0x38 scope:global align:4 +update__Q24Game12AABBWaterBoxFv = .text:0x801AE4A8; // type:function size:0xB8 scope:global align:4 +attachModel__Q24Game12AABBWaterBoxFP12J3DModelDataPQ23Sys15MatTexAnimationf = .text:0x801AE560; // type:function size:0x1B0 scope:global align:4 +calcMatrix__Q24Game12AABBWaterBoxFv = .text:0x801AE710; // type:function size:0xA0 scope:global align:4 +doAnimation__Q24Game12AABBWaterBoxFv = .text:0x801AE7B0; // type:function size:0x48 scope:global align:4 +doSetView__Q24Game12AABBWaterBoxFi = .text:0x801AE7F8; // type:function size:0x30 scope:global align:4 +doViewCalc__Q24Game12AABBWaterBoxFv = .text:0x801AE828; // type:function size:0x2C scope:global align:4 +doEntry__Q24Game12AABBWaterBoxFv = .text:0x801AE854; // type:function size:0x538 scope:global align:4 +update__Q24Game6SeaMgrFv = .text:0x801AED8C; // type:function size:0x210 scope:global align:4 +inWater__Q24Game12AABBWaterBoxFRQ23Sys6Sphere = .text:0x801AEF9C; // type:function size:0x104 scope:global align:4 +inWater2d__Q24Game12AABBWaterBoxFRQ23Sys6Sphere = .text:0x801AF0A0; // type:function size:0xE4 scope:global align:4 +globalise__Q24Game12AABBWaterBoxFPQ24Game12AABBWaterBoxR7Matrixf = .text:0x801AF184; // type:function size:0x1C8 scope:global align:4 +directDraw__Q24Game12AABBWaterBoxFR8Graphics = .text:0x801AF34C; // type:function size:0x4 scope:global align:4 +__ct__Q24Game6SeaMgrFv = .text:0x801AF350; // type:function size:0x2F8 scope:global align:4 +__dt__31NodeObjectMgrFv = .text:0x801AF648; // type:function size:0xC8 scope:weak align:4 +__dt__29TObjectNodeFv = .text:0x801AF710; // type:function size:0x60 scope:weak align:4 +__dt__27ObjectMgrFv = .text:0x801AF770; // type:function size:0x88 scope:weak align:4 +__dt__27ContainerFv = .text:0x801AF7F8; // type:function size:0x70 scope:weak align:4 +attachModel__Q24Game8WaterBoxFP12J3DModelDataPQ23Sys15MatTexAnimationf = .text:0x801AF868; // type:function size:0x4 scope:weak align:4 +findWater__Q24Game6SeaMgrFRQ23Sys6Sphere = .text:0x801AF86C; // type:function size:0x214 scope:global align:4 +findWater2d__Q24Game6SeaMgrFRQ23Sys6Sphere = .text:0x801AFA80; // type:function size:0x214 scope:global align:4 +inWater2d__Q24Game8WaterBoxFRQ23Sys6Sphere = .text:0x801AFC94; // type:function size:0x8 scope:weak align:4 +read__Q24Game6SeaMgrFR6Stream = .text:0x801AFC9C; // type:function size:0x20C scope:global align:4 +addSeaMgr__Q24Game6SeaMgrFPQ24Game6SeaMgrR7Matrixf = .text:0x801AFEA8; // type:function size:0x308 scope:global align:4 +__dt__Q24Game6SeaMgrFv = .text:0x801B01B0; // type:function size:0xE0 scope:weak align:4 +getSeaLevel__Q24Game12AABBWaterBoxFv = .text:0x801B0290; // type:function size:0x10 scope:weak align:4 +getSeaHeightPtr__Q24Game12AABBWaterBoxFv = .text:0x801B02A0; // type:function size:0x8 scope:weak align:4 +doSimulation__Q24Game8WaterBoxFf = .text:0x801B02A8; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game8WaterBoxFR8Graphics = .text:0x801B02AC; // type:function size:0x4 scope:weak align:4 +startDown__Q24Game8WaterBoxFf = .text:0x801B02B0; // type:function size:0x4 scope:weak align:4 +startUp__Q24Game8WaterBoxFf = .text:0x801B02B4; // type:function size:0x4 scope:weak align:4 +directDraw__Q24Game8WaterBoxFR8Graphics = .text:0x801B02B8; // type:function size:0x4 scope:weak align:4 +calcMatrix__Q24Game8WaterBoxFv = .text:0x801B02BC; // type:function size:0x4 scope:weak align:4 +get__31NodeObjectMgrFPv = .text:0x801B02C0; // type:function size:0x8 scope:weak align:4 +getNext__31NodeObjectMgrFPv = .text:0x801B02C8; // type:function size:0x8 scope:weak align:4 +getStart__31NodeObjectMgrFv = .text:0x801B02D0; // type:function size:0x8 scope:weak align:4 +getEnd__31NodeObjectMgrFv = .text:0x801B02D8; // type:function size:0x8 scope:weak align:4 +delNode__31NodeObjectMgrFPQ24Game8WaterBox = .text:0x801B02E0; // type:function size:0x44 scope:weak align:4 +resetMgr__31NodeObjectMgrFv = .text:0x801B0324; // type:function size:0x18 scope:weak align:4 +doSimulation__27ObjectMgrFf = .text:0x801B033C; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801B0530; // type:function size:0x1F4 scope:weak align:4 +getObject__27ContainerFPv = .text:0x801B0724; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x801B0750; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x801B0758; // type:function size:0x8 scope:weak align:4 +__sinit_gameSeaMgr_cpp = .text:0x801B0760; // type:function size:0x28 scope:local align:4 +@28@resetMgr__31NodeObjectMgrFv = .text:0x801B0788; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801B0790; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27ObjectMgrFf = .text:0x801B0798; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27ObjectMgrFv = .text:0x801B07A0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27ObjectMgrFi = .text:0x801B07A8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27ObjectMgrFv = .text:0x801B07B0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27ObjectMgrFv = .text:0x801B07B8; // type:function size:0x8 scope:weak align:4 +graspSituation_Fast__Q24Game4PikiFPPQ24Game8Creature = .text:0x801B07C0; // type:function size:0xBA0 scope:global align:4 +graspSituation__Q24Game4PikiFPPQ24Game8Creature = .text:0x801B1360; // type:function size:0x1A04 scope:global align:4 +isDone__26IteratorFv = .text:0x801B2D64; // type:function size:0x4C scope:weak align:4 +invokeAI__Q24Game4PikiFPQ24Game9CollEventb = .text:0x801B2DB0; // type:function size:0x7D4 scope:global align:4 +invokeAI__Q24Game4PikiFPQ24Game9PlatEvent = .text:0x801B3584; // type:function size:0x2C4 scope:global align:4 +invokeAIFree__Q24Game4PikiFRQ34Game4Piki15InvokeAIFreeArg = .text:0x801B3848; // type:function size:0xB0 scope:global align:4 +checkInvokeAI__Q24Game4PikiFb = .text:0x801B38F8; // type:function size:0x310 scope:global align:4 +invokeAI__Q24Game4PikiFv = .text:0x801B3C08; // type:function size:0x54 scope:global align:4 +setActTransportArg__Q24Game4PikiFRQ26PikiAI15ActTransportArg = .text:0x801B3C5C; // type:function size:0x28 scope:global align:4 +getName__Q26PikiAI12ActBridgeArgFv = .text:0x801B3C84; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI15ActBreakRockArgFv = .text:0x801B3C90; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI15ActBreakGateArgFv = .text:0x801B3C9C; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI15ActTransportArgFv = .text:0x801B3CA8; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI12ActAttackArgFv = .text:0x801B3CB4; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI10ActWeedArgFv = .text:0x801B3CC0; // type:function size:0xC scope:weak align:4 +__ml__26IteratorFv = .text:0x801B3CCC; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x801B3D04; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x801B3DE8; // type:function size:0xDC scope:weak align:4 +__sinit_pikiAI_cpp = .text:0x801B3EC4; // type:function size:0x28 scope:local align:4 +__ct__Q24Game16PelletConfigListFv = .text:0x801B3EEC; // type:function size:0x48 scope:global align:4 +__ct__Q24Game12PelletConfigFv = .text:0x801B3F34; // type:function size:0xAC scope:global align:4 +__dt__Q34Game12PelletConfig6TParmsFv = .text:0x801B3FE0; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game12PelletConfig6TParmsFv = .text:0x801B4050; // type:function size:0x374 scope:weak align:4 +__dt__13TagParametersFv = .text:0x801B43C4; // type:function size:0x60 scope:weak align:4 +getPelletConfig__Q24Game16PelletConfigListFPc = .text:0x801B4424; // type:function size:0x84 scope:global align:4 +getPelletConfig__Q24Game16PelletConfigListFi = .text:0x801B44A8; // type:function size:0x7C scope:global align:4 +getPelletConfig_ByDictionaryNo__Q24Game16PelletConfigListFi = .text:0x801B4524; // type:function size:0x44 scope:global align:4 +read__Q24Game16PelletConfigListFR6Stream = .text:0x801B4568; // type:function size:0x130 scope:global align:4 +__dt__Q24Game12PelletConfigFv = .text:0x801B4698; // type:function size:0x98 scope:weak align:4 +flushValue__7TagParmFv = .text:0x801B4730; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game16PelletConfigListFv = .text:0x801B4734; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game8FootmarkFv = .text:0x801B4794; // type:function size:0x1C scope:global align:4 +__ct__Q24Game9FootmarksFv = .text:0x801B47B0; // type:function size:0x1C scope:global align:4 +alloc__Q24Game9FootmarksFi = .text:0x801B47CC; // type:function size:0x6C scope:global align:4 +add__Q24Game9FootmarksFRQ24Game8Footmark = .text:0x801B4838; // type:function size:0x134 scope:global align:4 +get__Q24Game9FootmarksFi = .text:0x801B496C; // type:function size:0x4C scope:global align:4 +findNearest2__Q24Game9FootmarksFR10Vector3i = .text:0x801B49B8; // type:function size:0xC8 scope:global align:4 +__ct__Q24Game10GameSystemFPQ24Game15BaseGameSection = .text:0x801B4A80; // type:function size:0x100 scope:global align:4 +__dt__Q24Game10GameSystemFv = .text:0x801B4B80; // type:function size:0xE8 scope:global align:4 +init__Q24Game10GameSystemFv = .text:0x801B4C68; // type:function size:0xF0 scope:global align:4 +calcFrameDist__Q24Game10GameSystemFi = .text:0x801B4D58; // type:function size:0x20 scope:global align:4 +startFrame__Q24Game10GameSystemFv = .text:0x801B4D78; // type:function size:0xDC scope:global align:4 +endFrame__Q24Game10GameSystemFv = .text:0x801B4E54; // type:function size:0x18 scope:global align:4 +startFadeout__Q24Game10GameSystemFf = .text:0x801B4E6C; // type:function size:0x38 scope:global align:4 +startFadein__Q24Game10GameSystemFf = .text:0x801B4EA4; // type:function size:0x38 scope:global align:4 +startFadeoutin__Q24Game10GameSystemFf = .text:0x801B4EDC; // type:function size:0x38 scope:global align:4 +startFadeblack__Q24Game10GameSystemFv = .text:0x801B4F14; // type:function size:0x38 scope:global align:4 +startFadewhite__Q24Game10GameSystemFv = .text:0x801B4F4C; // type:function size:0x38 scope:global align:4 +setMoviePause__Q24Game10GameSystemFbPc = .text:0x801B4F84; // type:function size:0x8 scope:global align:4 +setFrozen__Q24Game10GameSystemFbPc = .text:0x801B4F8C; // type:function size:0x8 scope:global align:4 +setPause__Q24Game10GameSystemFbPci = .text:0x801B4F94; // type:function size:0x2C scope:global align:4 +paused_soft__Q24Game10GameSystemFv = .text:0x801B4FC0; // type:function size:0x8 scope:global align:4 +paused__Q24Game10GameSystemFv = .text:0x801B4FC8; // type:function size:0x28 scope:global align:4 +startPause__Q24Game10GameSystemFbiPc = .text:0x801B4FF0; // type:function size:0x50 scope:global align:4 +setDrawBuffer__Q24Game10GameSystemFi = .text:0x801B5040; // type:function size:0x2C scope:global align:4 +getLightMgr__Q24Game10GameSystemFv = .text:0x801B506C; // type:function size:0xC scope:global align:4 +doAnimation__Q24Game10GameSystemFv = .text:0x801B5078; // type:function size:0x274 scope:global align:4 +doEntry__Q24Game10GameSystemFv = .text:0x801B52EC; // type:function size:0x1E4 scope:global align:4 +doSetView__Q24Game10GameSystemFi = .text:0x801B54D0; // type:function size:0x1F4 scope:global align:4 +doViewCalc__Q24Game10GameSystemFv = .text:0x801B56C4; // type:function size:0x404 scope:global align:4 +doSimulation__Q24Game10GameSystemFf = .text:0x801B5AC8; // type:function size:0x284 scope:global align:4 +doSimpleDraw__Q24Game10GameSystemFP8Viewport = .text:0x801B5D4C; // type:function size:0x1F4 scope:global align:4 +doDirectDraw__Q24Game10GameSystemFR8Graphics = .text:0x801B5F40; // type:function size:0x4 scope:global align:4 +directDraw__Q24Game10GameSystemFR8Graphics = .text:0x801B5F44; // type:function size:0x4 scope:global align:4 +addObjectMgr__Q24Game10GameSystemFP16GenericObjectMgr = .text:0x801B5F48; // type:function size:0x6C scope:global align:4 +detachObjectMgr__Q24Game10GameSystemFP16GenericObjectMgr = .text:0x801B5FB4; // type:function size:0x20 scope:global align:4 +addObjectMgr_reuse__Q24Game10GameSystemFP31TObjectNode<16GenericObjectMgr> = .text:0x801B5FD4; // type:function size:0x24 scope:global align:4 +detachObjectMgr_reuse__Q24Game10GameSystemFP16GenericObjectMgr = .text:0x801B5FF8; // type:function size:0x58 scope:global align:4 +__dt__Q24Game18OptimiseControllerFv = .text:0x801B6050; // type:function size:0x68 scope:global align:4 +globalInstance__Q24Game18OptimiseControllerFv = .text:0x801B60B8; // type:function size:0x10C scope:global align:4 +deleteInstance__Q24Game18OptimiseControllerFv = .text:0x801B61C4; // type:function size:0x48 scope:global align:4 +delNode__33NodeObjectMgr<16GenericObjectMgr>FP16GenericObjectMgr = .text:0x801B620C; // type:function size:0x44 scope:weak align:4 +__sinit_gameSystem_cpp = .text:0x801B6250; // type:function size:0x28 scope:local align:4 +@28@doSimpleDraw__Q24Game10GameSystemFP8Viewport = .text:0x801B6278; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game10GameSystemFR8Graphics = .text:0x801B6280; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game10GameSystemFf = .text:0x801B6288; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__Q24Game10GameSystemFv = .text:0x801B6290; // type:function size:0x8 scope:weak align:4 +@28@doSetView__Q24Game10GameSystemFi = .text:0x801B6298; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game10GameSystemFv = .text:0x801B62A0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game10GameSystemFv = .text:0x801B62A8; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game11AIConstantsFv = .text:0x801B62B0; // type:function size:0x148 scope:global align:4 +__dt__Q24Game11AIConstantsFv = .text:0x801B63F8; // type:function size:0x70 scope:weak align:4 +getDoor__Q24Game16MapUnitInterfaceFi = .text:0x801B6468; // type:function size:0x24 scope:global align:4 +getCellSize__Q24Game16MapUnitInterfaceFRiRi = .text:0x801B648C; // type:function size:0x1C scope:global align:4 +getLink__Q24Game4DoorFi = .text:0x801B64A8; // type:function size:0x24 scope:global align:4 +read__Q24Game4DoorFR6Stream = .text:0x801B64CC; // type:function size:0x104 scope:global align:4 +__ct__Q24Game7MapUnitFv = .text:0x801B65D0; // type:function size:0xAC scope:global align:4 +getBoundBox__12MapCollisionFR8BoundBox = .text:0x801B667C; // type:function size:0x30 scope:weak align:4 +load__Q24Game7MapUnitFR6Stream = .text:0x801B66AC; // type:function size:0x4C scope:global align:4 +__dt__30NodeObjectMgrFv = .text:0x801B66F8; // type:function size:0xC8 scope:weak align:4 +__dt__28TObjectNodeFv = .text:0x801B67C0; // type:function size:0x60 scope:weak align:4 +__dt__26ObjectMgrFv = .text:0x801B6820; // type:function size:0x88 scope:weak align:4 +__dt__26ContainerFv = .text:0x801B68A8; // type:function size:0x70 scope:weak align:4 +getAt__Q24Game10MapUnitMgrFi = .text:0x801B6918; // type:function size:0x88 scope:global align:4 +isDone__25IteratorFv = .text:0x801B69A0; // type:function size:0x4C scope:weak align:4 +makeUnit__Q24Game10MapUnitMgrFPQ24Game7MapUnitPc = .text:0x801B69EC; // type:function size:0x440 scope:global align:4 +__ct__Q24Game7MapRoomFv = .text:0x801B6E2C; // type:function size:0xDC scope:global align:4 +getExtraCode__Q24Game16ObjectLayoutNodeFv = .text:0x801B6F08; // type:function size:0x8 scope:weak align:4 +placeObjects__Q24Game7MapRoomFPQ34Game4Cave9FloorInfob = .text:0x801B6F10; // type:function size:0x7B8 scope:global align:4 +getBirthDoorIndex__Q24Game16ObjectLayoutNodeFv = .text:0x801B76C8; // type:function size:0x8 scope:weak align:4 +isFixedBattery__Q24Game16ObjectLayoutNodeFv = .text:0x801B76D0; // type:function size:0x8 scope:weak align:4 +getDirection__Q24Game16ObjectLayoutNodeFv = .text:0x801B76D8; // type:function size:0x8 scope:weak align:4 +getBirthPosition__Q24Game16ObjectLayoutNodeFRfRf = .text:0x801B76E0; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game12RoomDoorInfoFv = .text:0x801B76E4; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game7MapRoomFv = .text:0x801B76E8; // type:function size:0xD4 scope:global align:4 +doEntry__Q24Game7MapRoomFv = .text:0x801B77BC; // type:function size:0x1F4 scope:global align:4 +doSetView__Q24Game7MapRoomFi = .text:0x801B79B0; // type:function size:0x124 scope:global align:4 +doViewCalc__Q24Game7MapRoomFv = .text:0x801B7AD4; // type:function size:0x24 scope:global align:4 +doSimulation__Q24Game7MapRoomFf = .text:0x801B7AF8; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q24Game7MapRoomFR8Graphics = .text:0x801B7AFC; // type:function size:0x4 scope:global align:4 +__ct__Q24Game10RoomMapMgrFPQ34Game4Cave8CaveInfo = .text:0x801B7B00; // type:function size:0x1E8 scope:global align:4 +__dt__30MonoObjectMgrFv = .text:0x801B7CE8; // type:function size:0xA0 scope:weak align:4 +getMapRoom__Q24Game10RoomMapMgrFs = .text:0x801B7D88; // type:function size:0x1FC scope:global align:4 +isDone__25IteratorFv = .text:0x801B7F84; // type:function size:0x4C scope:weak align:4 +__ct__Q24Game9CaveVRBoxFv = .text:0x801B7FD0; // type:function size:0xC scope:global align:4 +createRandomMap__Q24Game10RoomMapMgrFiPQ34Game4Cave11EditMapUnit = .text:0x801B7FDC; // type:function size:0xA48 scope:global align:4 +__dt__Q24Game16MapUnitInterfaceFv = .text:0x801B8A24; // type:function size:0xEC scope:weak align:4 +__ct__Q24Game16MapUnitInterfaceFv = .text:0x801B8B10; // type:function size:0x3C scope:weak align:4 +__dt__Q24Game9PartsViewFv = .text:0x801B8B4C; // type:function size:0xDC scope:weak align:4 +completeUnitData__Q24Game10RoomMapMgrFv = .text:0x801B8C28; // type:function size:0x224 scope:global align:4 +setupJUTTextures__Q24Game10RoomMapMgrFv = .text:0x801B8E4C; // type:function size:0x234 scope:global align:4 +useUnit__Q24Game10RoomMapMgrFPc = .text:0x801B9080; // type:function size:0x2BC scope:global align:4 +getTexture__Q24Game10RoomMapMgrFPc = .text:0x801B933C; // type:function size:0x210 scope:global align:4 +allocRooms__Q24Game10RoomMapMgrFi = .text:0x801B954C; // type:function size:0x1F4 scope:global align:4 +makeRoom__Q24Game10RoomMapMgrFPcffiiPQ24Game8RoomLinkPQ24Game16ObjectLayoutInfo = .text:0x801B9740; // type:function size:0x50 scope:global align:4 +placeObjects__Q24Game10RoomMapMgrFv = .text:0x801B9790; // type:function size:0x3B4 scope:global align:4 +getBoundBox2d__Q24Game10RoomMapMgrFR10BoundBox2d = .text:0x801B9B44; // type:function size:0x24 scope:global align:4 +getBoundBox__Q24Game10RoomMapMgrFR8BoundBox = .text:0x801B9B68; // type:function size:0x34 scope:global align:4 +drawCollision__Q24Game10RoomMapMgrFR8GraphicsRQ23Sys6Sphere = .text:0x801B9B9C; // type:function size:0x4 scope:global align:4 +traceMove__Q24Game10RoomMapMgrFRQ24Game8MoveInfof = .text:0x801B9BA0; // type:function size:0x1F0 scope:global align:4 +hasHiddenCollision__Q24Game10RoomMapMgrFv = .text:0x801B9D90; // type:function size:0x24 scope:global align:4 +constraintBoundBox__Q24Game10RoomMapMgrFRQ23Sys6Sphere = .text:0x801B9DB4; // type:function size:0x8C scope:global align:4 +entryToMapRoomCellMgr__Q24Game10RoomMapMgrFv = .text:0x801B9E40; // type:function size:0x1F4 scope:global align:4 +findRoomIndex__Q24Game10RoomMapMgrFRQ23Sys6Sphere = .text:0x801BA034; // type:function size:0x128 scope:global align:4 +createGlobalCollision__Q24Game10RoomMapMgrFv = .text:0x801BA15C; // type:function size:0x9FC scope:global align:4 +addOne__Q23Sys11VertexTableFR10Vector3 = .text:0x801BAB58; // type:function size:0xB8 scope:weak align:4 +addOne__31ArrayContainerFRQ23Sys8Triangle = .text:0x801BAC10; // type:function size:0xE8 scope:weak align:4 +alloc__31ArrayContainerFi = .text:0x801BACF8; // type:function size:0x68 scope:weak align:4 +traceMove_new__Q24Game10RoomMapMgrFRQ24Game8MoveInfof = .text:0x801BAD60; // type:function size:0x328 scope:global align:4 +traceMove_original__Q24Game10RoomMapMgrFRQ24Game8MoveInfof = .text:0x801BB088; // type:function size:0x740 scope:global align:4 +findRayIntersection__Q24Game10RoomMapMgrFRQ23Sys16RayIntersectInfo = .text:0x801BB7C8; // type:function size:0x4F0 scope:global align:4 +getMinY__Q24Game10RoomMapMgrFR10Vector3 = .text:0x801BBCB8; // type:function size:0x8C scope:global align:4 +createTriangles__Q24Game10RoomMapMgrFRQ23Sys17CreateTriangleArg = .text:0x801BBD44; // type:function size:0x770 scope:global align:4 +getCurrTri__Q24Game10RoomMapMgrFRQ24Game11CurrTriInfo = .text:0x801BC4B4; // type:function size:0x460 scope:global align:4 +makeOneRoom__Q24Game10RoomMapMgrFfffPcsPQ24Game8RoomLinkPQ24Game16ObjectLayoutInfo = .text:0x801BC914; // type:function size:0x16B8 scope:global align:4 +deleteTemp__Q24Game10RoomMapMgrFv = .text:0x801BDFCC; // type:function size:0x1F4 scope:global align:4 +getMUI__Q24Game10RoomMapMgrFPQ24Game7MapUnit = .text:0x801BE1C0; // type:function size:0x94 scope:global align:4 +doAnimation__Q24Game10RoomMapMgrFv = .text:0x801BE254; // type:function size:0x60 scope:global align:4 +doEntry__Q24Game10RoomMapMgrFv = .text:0x801BE2B4; // type:function size:0xDC scope:global align:4 +doSetView__Q24Game10RoomMapMgrFi = .text:0x801BE390; // type:function size:0x7C scope:global align:4 +doViewCalc__Q24Game10RoomMapMgrFv = .text:0x801BE40C; // type:function size:0x68 scope:global align:4 +doSimulation__Q24Game10RoomMapMgrFf = .text:0x801BE474; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q24Game10RoomMapMgrFR8Graphics = .text:0x801BE478; // type:function size:0x210 scope:global align:4 +getStartPosition__Q24Game10RoomMapMgrFR10Vector3i = .text:0x801BE688; // type:function size:0x24 scope:weak align:4 +getDemoMatrix__Q24Game10RoomMapMgrFv = .text:0x801BE6AC; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game4DoorFv = .text:0x801BE6B4; // type:function size:0x84 scope:weak align:4 +constructor__Q24Game9PartsViewFv = .text:0x801BE738; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game9PartsViewFf = .text:0x801BE73C; // type:function size:0x4 scope:weak align:4 +__ml__25IteratorFv = .text:0x801BE740; // type:function size:0x38 scope:weak align:4 +next__25IteratorFv = .text:0x801BE778; // type:function size:0xE4 scope:weak align:4 +first__25IteratorFv = .text:0x801BE85C; // type:function size:0xDC scope:weak align:4 +__dt__26ContainerFv = .text:0x801BE938; // type:function size:0x70 scope:weak align:4 +__dt__26ObjectMgrFv = .text:0x801BE9A8; // type:function size:0x88 scope:weak align:4 +getBoundingSphere__Q24Game7MapRoomFRQ23Sys6Sphere = .text:0x801BEA30; // type:function size:0x24 scope:weak align:4 +getTypeName__Q24Game7MapRoomFv = .text:0x801BEA54; // type:function size:0x8 scope:weak align:4 +getObjType__Q24Game7MapRoomFv = .text:0x801BEA5C; // type:function size:0xC scope:weak align:4 +collisionUpdatable__Q24Game7MapRoomFv = .text:0x801BEA68; // type:function size:0x8 scope:weak align:4 +getPosition__Q24Game7MapRoomFv = .text:0x801BEA70; // type:function size:0x1C scope:weak align:4 +constructor__Q24Game7MapRoomFv = .text:0x801BEA8C; // type:function size:0x4 scope:weak align:4 +getName__Q24Game15ItemGateInitArgFv = .text:0x801BEA90; // type:function size:0xC scope:weak align:4 +getName__Q34Game15ItemBigFountain7InitArgFv = .text:0x801BEA9C; // type:function size:0xC scope:weak align:4 +getName__Q34Game8ItemHole7InitArgFv = .text:0x801BEAA8; // type:function size:0xC scope:weak align:4 +__ml__25IteratorFv = .text:0x801BEAB4; // type:function size:0x38 scope:weak align:4 +next__25IteratorFv = .text:0x801BEAEC; // type:function size:0xE4 scope:weak align:4 +first__25IteratorFv = .text:0x801BEBD0; // type:function size:0xDC scope:weak align:4 +__dt__Q24Game10MapUnitMgrFv = .text:0x801BECAC; // type:function size:0xE0 scope:weak align:4 +constructor__Q24Game7MapUnitFv = .text:0x801BED8C; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game7MapUnitFv = .text:0x801BED90; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game7MapUnitFv = .text:0x801BED94; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game7MapUnitFi = .text:0x801BED98; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game7MapUnitFv = .text:0x801BED9C; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game7MapUnitFf = .text:0x801BEDA0; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game7MapUnitFR8Graphics = .text:0x801BEDA4; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game8DoorLinkFv = .text:0x801BEDA8; // type:function size:0x60 scope:weak align:4 +get__30NodeObjectMgrFPv = .text:0x801BEE08; // type:function size:0x8 scope:weak align:4 +getNext__30NodeObjectMgrFPv = .text:0x801BEE10; // type:function size:0x8 scope:weak align:4 +getStart__30NodeObjectMgrFv = .text:0x801BEE18; // type:function size:0x8 scope:weak align:4 +getEnd__30NodeObjectMgrFv = .text:0x801BEE20; // type:function size:0x8 scope:weak align:4 +resetMgr__30NodeObjectMgrFv = .text:0x801BEE28; // type:function size:0x18 scope:weak align:4 +birth__30MonoObjectMgrFv = .text:0x801BEE40; // type:function size:0x60 scope:weak align:4 +getNext__30MonoObjectMgrFPv = .text:0x801BEEA0; // type:function size:0x40 scope:weak align:4 +getStart__30MonoObjectMgrFv = .text:0x801BEEE0; // type:function size:0x30 scope:weak align:4 +getEnd__30MonoObjectMgrFv = .text:0x801BEF10; // type:function size:0x8 scope:weak align:4 +getAt__30MonoObjectMgrFi = .text:0x801BEF18; // type:function size:0x10 scope:weak align:4 +getTo__30MonoObjectMgrFv = .text:0x801BEF28; // type:function size:0x8 scope:weak align:4 +doAnimation__30MonoObjectMgrFv = .text:0x801BEF30; // type:function size:0x80 scope:weak align:4 +doEntry__30MonoObjectMgrFv = .text:0x801BEFB0; // type:function size:0x80 scope:weak align:4 +doSetView__30MonoObjectMgrFi = .text:0x801BF030; // type:function size:0x90 scope:weak align:4 +doViewCalc__30MonoObjectMgrFv = .text:0x801BF0C0; // type:function size:0x80 scope:weak align:4 +doSimulation__30MonoObjectMgrFf = .text:0x801BF140; // type:function size:0x90 scope:weak align:4 +doDirectDraw__30MonoObjectMgrFR8Graphics = .text:0x801BF1D0; // type:function size:0x90 scope:weak align:4 +resetMgr__30MonoObjectMgrFv = .text:0x801BF260; // type:function size:0x18 scope:weak align:4 +clearMgr__30MonoObjectMgrFv = .text:0x801BF278; // type:function size:0x30 scope:weak align:4 +onAlloc__30MonoObjectMgrFv = .text:0x801BF2A8; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__30MonoObjectMgrFv = .text:0x801BF2AC; // type:function size:0x3C scope:weak align:4 +get__30MonoObjectMgrFPv = .text:0x801BF2E8; // type:function size:0x10 scope:weak align:4 +doAnimation__26ObjectMgrFv = .text:0x801BF2F8; // type:function size:0x1E4 scope:weak align:4 +doEntry__26ObjectMgrFv = .text:0x801BF4DC; // type:function size:0x1E4 scope:weak align:4 +doSetView__26ObjectMgrFi = .text:0x801BF6C0; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__26ObjectMgrFv = .text:0x801BF8B4; // type:function size:0x1E4 scope:weak align:4 +doSimulation__26ObjectMgrFf = .text:0x801BFA98; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801BFC8C; // type:function size:0x1F4 scope:weak align:4 +doAnimation__26ObjectMgrFv = .text:0x801BFE80; // type:function size:0x1E4 scope:weak align:4 +doEntry__26ObjectMgrFv = .text:0x801C0064; // type:function size:0x1E4 scope:weak align:4 +doSetView__26ObjectMgrFi = .text:0x801C0248; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__26ObjectMgrFv = .text:0x801C043C; // type:function size:0x1E4 scope:weak align:4 +doSimulation__26ObjectMgrFf = .text:0x801C0620; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801C0814; // type:function size:0x1F4 scope:weak align:4 +getObject__26ContainerFPv = .text:0x801C0A08; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x801C0A34; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x801C0A3C; // type:function size:0x8 scope:weak align:4 +getObject__26ContainerFPv = .text:0x801C0A44; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x801C0A70; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x801C0A78; // type:function size:0x8 scope:weak align:4 +alloc__30MonoObjectMgrFi = .text:0x801C0A80; // type:function size:0x188 scope:weak align:4 +__ct__30MonoObjectMgrFv = .text:0x801C0C08; // type:function size:0x9C scope:weak align:4 +__sinit_gameMapParts_cpp = .text:0x801C0CA4; // type:function size:0x28 scope:local align:4 +@28@resetMgr__30NodeObjectMgrFv = .text:0x801C0CCC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801C0CD4; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__26ObjectMgrFf = .text:0x801C0CDC; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__26ObjectMgrFv = .text:0x801C0CE4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__26ObjectMgrFi = .text:0x801C0CEC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__26ObjectMgrFv = .text:0x801C0CF4; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__26ObjectMgrFv = .text:0x801C0CFC; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__30MonoObjectMgrFv = .text:0x801C0D04; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__30MonoObjectMgrFR8Graphics = .text:0x801C0D0C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__30MonoObjectMgrFf = .text:0x801C0D14; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__30MonoObjectMgrFv = .text:0x801C0D1C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__30MonoObjectMgrFi = .text:0x801C0D24; // type:function size:0x8 scope:weak align:4 +@28@doEntry__30MonoObjectMgrFv = .text:0x801C0D2C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__30MonoObjectMgrFv = .text:0x801C0D34; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801C0D3C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__26ObjectMgrFf = .text:0x801C0D44; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__26ObjectMgrFv = .text:0x801C0D4C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__26ObjectMgrFi = .text:0x801C0D54; // type:function size:0x8 scope:weak align:4 +@28@doEntry__26ObjectMgrFv = .text:0x801C0D5C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__26ObjectMgrFv = .text:0x801C0D64; // type:function size:0x8 scope:weak align:4 +@280@4@frozenable__Q24Game6MapMgrFv = .text:0x801C0D6C; // type:function size:0x14 scope:weak align:4 +@280@4@doDirectDraw__Q24Game10RoomMapMgrFR8Graphics = .text:0x801C0D80; // type:function size:0x14 scope:weak align:4 +@280@4@doSimulation__Q24Game10RoomMapMgrFf = .text:0x801C0D94; // type:function size:0x14 scope:weak align:4 +@280@4@doViewCalc__Q24Game10RoomMapMgrFv = .text:0x801C0DA8; // type:function size:0x14 scope:weak align:4 +@280@4@doSetView__Q24Game10RoomMapMgrFi = .text:0x801C0DBC; // type:function size:0x14 scope:weak align:4 +@280@4@doEntry__Q24Game10RoomMapMgrFv = .text:0x801C0DD0; // type:function size:0x14 scope:weak align:4 +@280@4@doAnimation__Q24Game10RoomMapMgrFv = .text:0x801C0DE4; // type:function size:0x14 scope:weak align:4 +init__Q34Game6VsGame3FSMFPQ24Game13VsGameSection = .text:0x801C0DF8; // type:function size:0xD0 scope:global align:4 +draw__Q34Game6VsGame5StateFPQ24Game13VsGameSectionR8Graphics = .text:0x801C0EC8; // type:function size:0x4 scope:weak align:4 +transit__Q34Game6VsGame3FSMFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x801C0ECC; // type:function size:0x20 scope:global align:4 +__ct__Q24Game13VsGameSectionFP7JKRHeapb = .text:0x801C0EEC; // type:function size:0xFC scope:global align:4 +__dt__Q24Game13VsGameSectionFv = .text:0x801C0FE8; // type:function size:0xCC scope:global align:4 +isGPActive__6VSFifoFv = .text:0x801C10B4; // type:function size:0x5C scope:weak align:4 +section_fadeout__Q24Game13VsGameSectionFv = .text:0x801C1110; // type:function size:0x34 scope:global align:4 +on_section_fadeout__Q34Game6VsGame5StateFPQ24Game13VsGameSection = .text:0x801C1144; // type:function size:0x4 scope:weak align:4 +startMainBgm__Q24Game13VsGameSectionFv = .text:0x801C1148; // type:function size:0x90 scope:global align:4 +onInit__Q24Game13VsGameSectionFv = .text:0x801C11D8; // type:function size:0x20C scope:global align:4 +start__Q24Game36StateMachineFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x801C13E4; // type:function size:0x34 scope:weak align:4 +getCurrFloor__Q24Game13VsGameSectionFv = .text:0x801C1418; // type:function size:0x8 scope:global align:4 +doUpdate__Q24Game13VsGameSectionFv = .text:0x801C1420; // type:function size:0x1B8 scope:global align:4 +pre2dDraw__Q24Game13VsGameSectionFR8Graphics = .text:0x801C15D8; // type:function size:0x3C scope:global align:4 +pre2dDraw__Q34Game6VsGame5StateFR8GraphicsPQ24Game13VsGameSection = .text:0x801C1614; // type:function size:0x4 scope:weak align:4 +doDraw__Q24Game13VsGameSectionFR8Graphics = .text:0x801C1618; // type:function size:0x50 scope:global align:4 +onSetSoundScene__Q24Game13VsGameSectionFv = .text:0x801C1668; // type:function size:0x1DC scope:global align:4 +initPlayData__Q24Game13VsGameSectionFv = .text:0x801C1844; // type:function size:0x5C scope:global align:4 +onSetupFloatMemory__Q24Game13VsGameSectionFv = .text:0x801C18A0; // type:function size:0x168 scope:global align:4 +postSetupFloatMemory__Q24Game13VsGameSectionFv = .text:0x801C1A08; // type:function size:0xA0 scope:global align:4 +onClearHeap__Q24Game13VsGameSectionFv = .text:0x801C1AA8; // type:function size:0x20 scope:global align:4 +loadChallengeStageList__Q24Game13VsGameSectionFv = .text:0x801C1AC8; // type:function size:0xB0 scope:global align:4 +loadVsStageList__Q24Game13VsGameSectionFv = .text:0x801C1B78; // type:function size:0x98 scope:global align:4 +gmOrimaDown__Q24Game13VsGameSectionFi = .text:0x801C1C10; // type:function size:0x44 scope:global align:4 +onOrimaDown__Q34Game6VsGame5StateFPQ24Game13VsGameSectioni = .text:0x801C1C54; // type:function size:0x4 scope:weak align:4 +gmPikminZero__Q24Game13VsGameSectionFv = .text:0x801C1C58; // type:function size:0x4 scope:global align:4 +goNextFloor__Q24Game13VsGameSectionFPQ34Game8ItemHole4Item = .text:0x801C1C5C; // type:function size:0x3C scope:global align:4 +onNextFloor__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ34Game8ItemHole4Item = .text:0x801C1C98; // type:function size:0x4 scope:weak align:4 +openCaveMoreMenu__Q24Game13VsGameSectionFPQ34Game8ItemHole4ItemP10Controller = .text:0x801C1C9C; // type:function size:0x1D8 scope:global align:4 +goingToCave__Q34Game6VsGame5StateFPQ24Game13VsGameSection = .text:0x801C1E74; // type:function size:0x8 scope:weak align:4 +openKanketuMenu__Q24Game13VsGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller = .text:0x801C1E7C; // type:function size:0x1B0 scope:global align:4 +clearCaveMenus__Q24Game13VsGameSectionFv = .text:0x801C202C; // type:function size:0x14 scope:global align:4 +updateCaveMenus__Q24Game13VsGameSectionFv = .text:0x801C2040; // type:function size:0x2A8 scope:global align:4 +getFaceDir__Q34Game15ItemBigFountain4ItemFv = .text:0x801C22E8; // type:function size:0x8 scope:weak align:4 +onMovieStart__Q24Game13VsGameSectionFPQ24Game11MovieConfigUlUl = .text:0x801C22F0; // type:function size:0xDC scope:global align:4 +onMovieStart__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x801C23CC; // type:function size:0x4 scope:weak align:4 +onMovieDone__Q24Game13VsGameSectionFPQ24Game11MovieConfigUlUl = .text:0x801C23D0; // type:function size:0x54 scope:global align:4 +onMovieDone__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x801C2424; // type:function size:0x4 scope:weak align:4 +createFallPikmins__Q24Game13VsGameSectionFRQ24Game13PikiContaineri = .text:0x801C2428; // type:function size:0x434 scope:global align:4 +createVsPikmins__Q24Game13VsGameSectionFv = .text:0x801C285C; // type:function size:0x564 scope:global align:4 +addChallengeScore__Q24Game13VsGameSectionFi = .text:0x801C2DC0; // type:function size:0x10 scope:global align:4 +sendMessage__Q24Game13VsGameSectionFRQ24Game11GameMessage = .text:0x801C2DD0; // type:function size:0x6C scope:global align:4 +actVs__Q24Game22GameMessageVsGetDopingFPQ24Game13VsGameSection = .text:0x801C2E3C; // type:function size:0x40 scope:global align:4 +actVs__Q24Game27GameMessageVsBattleFinishedFPQ24Game13VsGameSection = .text:0x801C2E7C; // type:function size:0x4C scope:global align:4 +onBattleFinished__Q34Game6VsGame5StateFPQ24Game13VsGameSectionib = .text:0x801C2EC8; // type:function size:0x4 scope:weak align:4 +actVs__Q24Game27GameMessageVsRedOrSuckStartFPQ24Game13VsGameSection = .text:0x801C2ECC; // type:function size:0x4C scope:global align:4 +onRedOrBlueSuckStart__Q34Game6VsGame5StateFPQ24Game13VsGameSectionib = .text:0x801C2F18; // type:function size:0x4 scope:weak align:4 +actVs__Q24Game23GameMessageVsGetOtakaraFPQ24Game13VsGameSection = .text:0x801C2F1C; // type:function size:0xB8 scope:global align:4 +actVs__Q24Game21GameMessageVsAddEnemyFPQ24Game13VsGameSection = .text:0x801C2FD4; // type:function size:0x34 scope:global align:4 +actVs__Q24Game21GameMessagePelletBornFPQ24Game13VsGameSection = .text:0x801C3008; // type:function size:0x118 scope:global align:4 +actVs__Q24Game21GameMessagePelletDeadFPQ24Game13VsGameSection = .text:0x801C3120; // type:function size:0x8C scope:global align:4 +actVs__Q24Game30GameMessageVsBirthTekiTreasureFPQ24Game13VsGameSection = .text:0x801C31AC; // type:function size:0x228 scope:global align:4 +actVs__Q24Game23GameMessageVsPikminDeadFPQ24Game13VsGameSection = .text:0x801C33D4; // type:function size:0x1C scope:global align:4 +actVs__Q24Game20GameMessageVsGotCardFPQ24Game13VsGameSection = .text:0x801C33F0; // type:function size:0x7C scope:global align:4 +actVs__Q24Game20GameMessageVsUseCardFPQ24Game13VsGameSection = .text:0x801C346C; // type:function size:0xA8 scope:global align:4 +isCardUsable__Q34Game6VsGame5StateFPQ24Game13VsGameSection = .text:0x801C3514; // type:function size:0x8 scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFi = .text:0x801C351C; // type:function size:0x10 scope:weak align:4 +initCardPellets__Q24Game13VsGameSectionFv = .text:0x801C352C; // type:function size:0x190 scope:global align:4 +initCardGeneration__Q24Game13VsGameSectionFv = .text:0x801C36BC; // type:function size:0x14 scope:global align:4 +updateCardGeneration__Q24Game13VsGameSectionFv = .text:0x801C36D0; // type:function size:0x2D8 scope:global align:4 +useCard__Q24Game13VsGameSectionFv = .text:0x801C39A8; // type:function size:0x18 scope:global align:4 +dropCard__Q24Game13VsGameSectionFRQ34Game13VsGameSection11DropCardArg = .text:0x801C39C0; // type:function size:0x3F4 scope:global align:4 +createYellowBedamas__Q24Game13VsGameSectionFi = .text:0x801C3DB4; // type:function size:0x1AC scope:global align:4 +createRedBlueBedamas__Q24Game13VsGameSectionFR10Vector3 = .text:0x801C3F60; // type:function size:0x14C scope:global align:4 +calcVsScores__Q24Game13VsGameSectionFv = .text:0x801C40AC; // type:function size:0x814 scope:global align:4 +clearGetDopeCount__Q24Game13VsGameSectionFv = .text:0x801C48C0; // type:function size:0x18 scope:global align:4 +getGetDopeCount__Q24Game13VsGameSectionFii = .text:0x801C48D8; // type:function size:0xD0 scope:global align:4 +clearGetCherryCount__Q24Game13VsGameSectionFv = .text:0x801C49A8; // type:function size:0x10 scope:global align:4 +challengeDisablePelplant__Q24Game13VsGameSectionFv = .text:0x801C49B8; // type:function size:0x8 scope:weak align:4 +player2enabled__Q24Game13VsGameSectionFv = .text:0x801C49C0; // type:function size:0x8 scope:weak align:4 +getCaveFilename__Q24Game13VsGameSectionFv = .text:0x801C49C8; // type:function size:0x8 scope:weak align:4 +getEditorFilename__Q24Game13VsGameSectionFv = .text:0x801C49D0; // type:function size:0x8 scope:weak align:4 +getVsEditNumber__Q24Game13VsGameSectionFv = .text:0x801C49D8; // type:function size:0x8 scope:weak align:4 +init__Q24Game36StateMachineFPQ24Game13VsGameSection = .text:0x801C49E0; // type:function size:0x4 scope:weak align:4 +create__Q24Game36StateMachineFi = .text:0x801C49E4; // type:function size:0x64 scope:weak align:4 +transit__Q24Game36StateMachineFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x801C4A48; // type:function size:0x9C scope:weak align:4 +init__Q24Game32FSMStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x801C4AE4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x801C4AE8; // type:function size:0x4 scope:weak align:4 +registerState__Q24Game36StateMachineFPQ24Game32FSMState = .text:0x801C4AEC; // type:function size:0x84 scope:weak align:4 +exec__Q24Game36StateMachineFPQ24Game13VsGameSection = .text:0x801C4B70; // type:function size:0x38 scope:weak align:4 +exec__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x801C4BA8; // type:function size:0x4 scope:weak align:4 +__sinit_vsGameSection_cpp = .text:0x801C4BAC; // type:function size:0x28 scope:local align:4 +setCollision__Q24Game12PlatInstanceFb = .text:0x801C4BD4; // type:function size:0x28 scope:global align:4 +getPosition__Q24Game12PlatInstanceFv = .text:0x801C4BFC; // type:function size:0x20 scope:global align:4 +getBoundingSphere__Q24Game12PlatInstanceFRQ23Sys6Sphere = .text:0x801C4C1C; // type:function size:0x50 scope:global align:4 +getCurrTri__Q24Game12PlatInstanceFRQ24Game11CurrTriInfo = .text:0x801C4C6C; // type:function size:0x254 scope:global align:4 +traceMove__Q24Game12PlatInstanceFRQ24Game8MoveInfof = .text:0x801C4EC0; // type:function size:0x2E4 scope:global align:4 +__ct__Q24Game20PlatInstanceAttacherFv = .text:0x801C51A4; // type:function size:0x18 scope:global align:4 +addToMgr__Q24Game20PlatInstanceAttacherFPQ24Game8CreatureR4ID32P12PlatAttacherb = .text:0x801C51BC; // type:function size:0x1B0 scope:global align:4 +setCollision__Q24Game20PlatInstanceAttacherFbUs = .text:0x801C536C; // type:function size:0x94 scope:global align:4 +fixCollision__Q24Game20PlatInstanceAttacherFb = .text:0x801C5400; // type:function size:0x9C scope:global align:4 +setCode__Q24Game20PlatInstanceAttacherFR4ID32Us = .text:0x801C549C; // type:function size:0x8C scope:global align:4 +setShapeVisibility__Q24Game20PlatInstanceAttacherFv = .text:0x801C5528; // type:function size:0xC0 scope:global align:4 +__ct__Q24Game7PlatMgrFv = .text:0x801C55E8; // type:function size:0xB8 scope:global align:4 +__dt__36NodeObjectMgrFv = .text:0x801C56A0; // type:function size:0xC8 scope:weak align:4 +__dt__34TObjectNodeFv = .text:0x801C5768; // type:function size:0x60 scope:weak align:4 +__dt__32ObjectMgrFv = .text:0x801C57C8; // type:function size:0x88 scope:weak align:4 +__dt__32ContainerFv = .text:0x801C5850; // type:function size:0x70 scope:weak align:4 +__ct__Q24Game18PlatAddInstanceArgFv = .text:0x801C58C0; // type:function size:0x64 scope:global align:4 +addInstance__Q24Game7PlatMgrFRQ24Game18PlatAddInstanceArg = .text:0x801C5924; // type:function size:0x270 scope:global align:4 +constructor__Q24Game12PlatInstanceFv = .text:0x801C5B94; // type:function size:0x4 scope:weak align:4 +delInstance__Q24Game7PlatMgrFPQ24Game12PlatInstance = .text:0x801C5B98; // type:function size:0x20 scope:global align:4 +traceMove__Q24Game7PlatMgrFRQ24Game8MoveInfof = .text:0x801C5BB8; // type:function size:0x2A4 scope:global align:4 +isDone__31IteratorFv = .text:0x801C5E5C; // type:function size:0x4C scope:weak align:4 +getCurrTri__Q24Game7PlatMgrFRQ24Game11CurrTriInfo = .text:0x801C5EA8; // type:function size:0x2B0 scope:global align:4 +findRayIntersection__Q24Game7PlatMgrFRQ23Sys16RayIntersectInfo = .text:0x801C6158; // type:function size:0x338 scope:global align:4 +resetOnCount__Q24Game7PlatMgrFv = .text:0x801C6490; // type:function size:0x1DC scope:global align:4 +doDirectDraw__Q24Game7PlatMgrFR8Graphics = .text:0x801C666C; // type:function size:0x4 scope:global align:4 +__dt__Q24Game7PlatMgrFv = .text:0x801C6670; // type:function size:0xE0 scope:weak align:4 +__ml__31IteratorFv = .text:0x801C6750; // type:function size:0x38 scope:weak align:4 +next__31IteratorFv = .text:0x801C6788; // type:function size:0xE4 scope:weak align:4 +first__31IteratorFv = .text:0x801C686C; // type:function size:0xDC scope:weak align:4 +checkCollision__Q24Game12PlatInstanceFPQ24Game10CellObject = .text:0x801C6948; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game12PlatInstanceFv = .text:0x801C694C; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game12PlatInstanceFv = .text:0x801C6950; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game12PlatInstanceFi = .text:0x801C6954; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game12PlatInstanceFv = .text:0x801C6958; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game12PlatInstanceFf = .text:0x801C695C; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game12PlatInstanceFR8Graphics = .text:0x801C6960; // type:function size:0x4 scope:weak align:4 +getTypeName__Q24Game12PlatInstanceFv = .text:0x801C6964; // type:function size:0xC scope:weak align:4 +getObjType__Q24Game12PlatInstanceFv = .text:0x801C6970; // type:function size:0xC scope:weak align:4 +collisionUpdatable__Q24Game12PlatInstanceFv = .text:0x801C697C; // type:function size:0x8 scope:weak align:4 +get__36NodeObjectMgrFPv = .text:0x801C6984; // type:function size:0x8 scope:weak align:4 +getNext__36NodeObjectMgrFPv = .text:0x801C698C; // type:function size:0x8 scope:weak align:4 +getStart__36NodeObjectMgrFv = .text:0x801C6994; // type:function size:0x8 scope:weak align:4 +getEnd__36NodeObjectMgrFv = .text:0x801C699C; // type:function size:0x8 scope:weak align:4 +delNode__36NodeObjectMgrFPQ24Game12PlatInstance = .text:0x801C69A4; // type:function size:0x44 scope:weak align:4 +resetMgr__36NodeObjectMgrFv = .text:0x801C69E8; // type:function size:0x18 scope:weak align:4 +doAnimation__32ObjectMgrFv = .text:0x801C6A00; // type:function size:0x1E4 scope:weak align:4 +doEntry__32ObjectMgrFv = .text:0x801C6BE4; // type:function size:0x1E4 scope:weak align:4 +doSetView__32ObjectMgrFi = .text:0x801C6DC8; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__32ObjectMgrFv = .text:0x801C6FBC; // type:function size:0x1E4 scope:weak align:4 +doSimulation__32ObjectMgrFf = .text:0x801C71A0; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__32ObjectMgrFR8Graphics = .text:0x801C7394; // type:function size:0x1F4 scope:weak align:4 +getObject__32ContainerFPv = .text:0x801C7588; // type:function size:0x2C scope:weak align:4 +getAt__32ContainerFi = .text:0x801C75B4; // type:function size:0x8 scope:weak align:4 +getTo__32ContainerFv = .text:0x801C75BC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__32ObjectMgrFR8Graphics = .text:0x801C75C4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__36NodeObjectMgrFv = .text:0x801C75CC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game7PlatMgrFR8Graphics = .text:0x801C75D4; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__32ObjectMgrFf = .text:0x801C75DC; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__32ObjectMgrFv = .text:0x801C75E4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__32ObjectMgrFi = .text:0x801C75EC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__32ObjectMgrFv = .text:0x801C75F4; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__32ObjectMgrFv = .text:0x801C75FC; // type:function size:0x8 scope:weak align:4 +init__Q24Game7GateFSMFPQ24Game8ItemGate = .text:0x801C7604; // type:function size:0x134 scope:global align:4 +constructor__Q24Game8ItemGateFv = .text:0x801C7738; // type:function size:0x48 scope:global align:4 +onInit__Q24Game8ItemGateFPQ24Game15CreatureInitArg = .text:0x801C7780; // type:function size:0x248 scope:global align:4 +start__Q24Game30StateMachineFPQ24Game8ItemGateiPQ24Game8StateArg = .text:0x801C79C8; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q24Game8ItemGateFv = .text:0x801C79FC; // type:function size:0x1E4 scope:global align:4 +doLoad__Q24Game8ItemGateFR6Stream = .text:0x801C7BE0; // type:function size:0xE8 scope:global align:4 +doSave__Q24Game8ItemGateFR6Stream = .text:0x801C7CC8; // type:function size:0x4C scope:global align:4 +updateBoundSphere__Q24Game8ItemGateFv = .text:0x801C7D14; // type:function size:0x1C scope:global align:4 +update__Q24Game8ItemGateFv = .text:0x801C7D30; // type:function size:0x7C scope:global align:4 +doAI__Q24Game8ItemGateFv = .text:0x801C7DAC; // type:function size:0x130 scope:global align:4 +onKeyEvent__Q24Game8ItemGateFRCQ28SysShape8KeyEvent = .text:0x801C7EDC; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game9GateStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C7F20; // type:function size:0x4 scope:weak align:4 +interactAttack__Q24Game8ItemGateFRQ24Game14InteractAttack = .text:0x801C7F24; // type:function size:0x11C scope:global align:4 +onDamage__Q24Game9GateStateFPQ24Game8ItemGatef = .text:0x801C8040; // type:function size:0x4 scope:weak align:4 +initMotion__Q24Game8ItemGateFv = .text:0x801C8044; // type:function size:0x6C scope:global align:4 +getVectorField__Q24Game8ItemGateFRQ23Sys6SphereR10Vector3 = .text:0x801C80B0; // type:function size:0x290 scope:global align:4 +getWorkDistance__Q24Game8ItemGateFRQ23Sys6Sphere = .text:0x801C8340; // type:function size:0x11C scope:global align:4 +initPlanes__Q24Game8ItemGateFv = .text:0x801C845C; // type:function size:0x3A8 scope:global align:4 +changeMaterial__Q24Game8ItemGateFv = .text:0x801C8804; // type:function size:0xD4 scope:global align:4 +getLifeGaugeParam__Q24Game8ItemGateFRQ24Game14LifeGaugeParam = .text:0x801C88D8; // type:function size:0xA0 scope:global align:4 +__ct__Q24Game11ItemGateMgrFv = .text:0x801C8978; // type:function size:0x1FC scope:global align:4 +__dt__31NodeObjectMgrFv = .text:0x801C8B74; // type:function size:0xC8 scope:weak align:4 +__dt__29TObjectNodeFv = .text:0x801C8C3C; // type:function size:0x60 scope:weak align:4 +__dt__27ObjectMgrFv = .text:0x801C8C9C; // type:function size:0x88 scope:weak align:4 +__dt__27ContainerFv = .text:0x801C8D24; // type:function size:0x70 scope:weak align:4 +setupGate__Q24Game11ItemGateMgrFPQ24Game8ItemGate = .text:0x801C8D94; // type:function size:0xA0 scope:global align:4 +setupPlatform__Q24Game11ItemGateMgrFPQ24Game8ItemGate = .text:0x801C8E34; // type:function size:0x158 scope:global align:4 +birth__Q24Game11ItemGateMgrFv = .text:0x801C8F8C; // type:function size:0x1D4 scope:global align:4 +initDependency__Q24Game11ItemGateMgrFv = .text:0x801C9160; // type:function size:0x1E8 scope:global align:4 +generatorNewItemParm__Q24Game11ItemGateMgrFv = .text:0x801C9348; // type:function size:0x54 scope:global align:4 +generatorWrite__Q24Game11ItemGateMgrFR6StreamPQ24Game11GenItemParm = .text:0x801C939C; // type:function size:0xB0 scope:global align:4 +generatorRead__Q24Game11ItemGateMgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801C944C; // type:function size:0xA8 scope:global align:4 +generatorBirth__Q24Game11ItemGateMgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801C94F4; // type:function size:0x228 scope:global align:4 +getCaveName__Q24Game11ItemGateMgrFi = .text:0x801C971C; // type:function size:0x14 scope:global align:4 +getCaveID__Q24Game11ItemGateMgrFPc = .text:0x801C9730; // type:function size:0x4C scope:global align:4 +init__Q24Game13GateWaitStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801C977C; // type:function size:0x4 scope:global align:4 +exec__Q24Game13GateWaitStateFPQ24Game8ItemGate = .text:0x801C9780; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game13GateWaitStateFPQ24Game8ItemGate = .text:0x801C9784; // type:function size:0x4 scope:global align:4 +onDamage__Q24Game13GateWaitStateFPQ24Game8ItemGatef = .text:0x801C9788; // type:function size:0x40 scope:global align:4 +transit__Q24Game26FSMStateFPQ24Game8ItemGateiPQ24Game8StateArg = .text:0x801C97C8; // type:function size:0x30 scope:weak align:4 +onKeyEvent__Q24Game13GateWaitStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C97F8; // type:function size:0x4 scope:global align:4 +init__Q24Game16GateDamagedStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801C97FC; // type:function size:0x5C scope:global align:4 +exec__Q24Game16GateDamagedStateFPQ24Game8ItemGate = .text:0x801C9858; // type:function size:0xC0 scope:global align:4 +cleanup__Q24Game16GateDamagedStateFPQ24Game8ItemGate = .text:0x801C9918; // type:function size:0x4 scope:global align:4 +onDamage__Q24Game16GateDamagedStateFPQ24Game8ItemGatef = .text:0x801C991C; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q24Game16GateDamagedStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C992C; // type:function size:0xC scope:global align:4 +init__Q24Game13GateDownStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801C9938; // type:function size:0x224 scope:global align:4 +getFaceDir__Q24Game8ItemGateFv = .text:0x801C9B5C; // type:function size:0x8 scope:weak align:4 +exec__Q24Game13GateDownStateFPQ24Game8ItemGate = .text:0x801C9B64; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game13GateDownStateFPQ24Game8ItemGate = .text:0x801C9B68; // type:function size:0x4 scope:global align:4 +onDamage__Q24Game13GateDownStateFPQ24Game8ItemGatef = .text:0x801C9B6C; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q24Game13GateDownStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C9B7C; // type:function size:0x168 scope:global align:4 +__ct__Q34Game15ItemDengekiGate3MgrFv = .text:0x801C9CE4; // type:function size:0x180 scope:global align:4 +__dt__Q24Game29NodeItemMgrFv = .text:0x801C9E64; // type:function size:0x11C scope:weak align:4 +setupGate__Q34Game15ItemDengekiGate3MgrFPQ24Game8ItemGate = .text:0x801C9F80; // type:function size:0xA4 scope:global align:4 +setupPlatform__Q34Game15ItemDengekiGate3MgrFPQ24Game8ItemGate = .text:0x801CA024; // type:function size:0x158 scope:global align:4 +generatorNewItemParm__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA17C; // type:function size:0x54 scope:global align:4 +generatorWrite__Q34Game15ItemDengekiGate3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801CA1D0; // type:function size:0x84 scope:global align:4 +generatorRead__Q34Game15ItemDengekiGate3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801CA254; // type:function size:0x60 scope:global align:4 +generatorBirth__Q34Game15ItemDengekiGate3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801CA2B4; // type:function size:0xB8 scope:global align:4 +getCaveName__Q34Game15ItemDengekiGate3MgrFi = .text:0x801CA36C; // type:function size:0x14 scope:global align:4 +getCaveID__Q34Game15ItemDengekiGate3MgrFPc = .text:0x801CA380; // type:function size:0x4C scope:global align:4 +__dt__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA3CC; // type:function size:0x134 scope:weak align:4 +generatorGetID__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA500; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA50C; // type:function size:0xC scope:weak align:4 +generatorGetID__Q24Game11ItemGateMgrFv = .text:0x801CA518; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q24Game11ItemGateMgrFv = .text:0x801CA524; // type:function size:0xC scope:weak align:4 +doAnimation__Q24Game11ItemGateMgrFv = .text:0x801CA530; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game11ItemGateMgrFv = .text:0x801CA55C; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game11ItemGateMgrFi = .text:0x801CA588; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game11ItemGateMgrFv = .text:0x801CA5B4; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game11ItemGateMgrFf = .text:0x801CA5E0; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game11ItemGateMgrFR8Graphics = .text:0x801CA60C; // type:function size:0x2C scope:weak align:4 +getName__Q23efx7ArgRotYFv = .text:0x801CA638; // type:function size:0x8 scope:weak align:4 +__dt__Q23efx7TEgateAFv = .text:0x801CA640; // type:function size:0x9C scope:weak align:4 +getCreatureName__Q24Game8ItemGateFv = .text:0x801CA6DC; // type:function size:0x8 scope:weak align:4 +getMabiki__Q24Game8ItemGateFv = .text:0x801CA6E4; // type:function size:0x8 scope:weak align:4 +makeTrMatrix__Q24Game8ItemGateFv = .text:0x801CA6EC; // type:function size:0x4 scope:weak align:4 +do_doAnimation__Q24Game8BaseItemFv = .text:0x801CA6F0; // type:function size:0x4 scope:weak align:4 +doAI__Q24Game59FSMItemFv = .text:0x801CA6F4; // type:function size:0x34 scope:weak align:4 +getCreatureName__Q24Game8BaseItemFv = .text:0x801CA728; // type:function size:0x8 scope:weak align:4 +changeMaterial__Q24Game8BaseItemFv = .text:0x801CA730; // type:function size:0x4 scope:weak align:4 +getFaceDir__Q24Game8BaseItemFv = .text:0x801CA734; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game29NodeItemMgrFv = .text:0x801CA73C; // type:function size:0x114 scope:weak align:4 +birth__Q24Game29NodeItemMgrFv = .text:0x801CA850; // type:function size:0x1B4 scope:weak align:4 +initDependency__Q24Game29NodeItemMgrFv = .text:0x801CAA04; // type:function size:0x1E8 scope:weak align:4 +kill__Q24Game29NodeItemMgrFPQ24Game8ItemGate = .text:0x801CABEC; // type:function size:0x24 scope:weak align:4 +doAnimation__Q24Game29NodeItemMgrFv = .text:0x801CAC10; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game29NodeItemMgrFv = .text:0x801CAC3C; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game29NodeItemMgrFi = .text:0x801CAC68; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game29NodeItemMgrFv = .text:0x801CAC94; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game29NodeItemMgrFf = .text:0x801CACC0; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game29NodeItemMgrFR8Graphics = .text:0x801CACEC; // type:function size:0x2C scope:weak align:4 +onKeyEvent__Q24Game59FSMItemFRCQ28SysShape8KeyEvent = .text:0x801CAD18; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game27ItemStateFPQ24Game8ItemGatef = .text:0x801CAD5C; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game27ItemStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801CAD60; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game27ItemStateFPQ24Game8ItemGatePQ23Sys8Triangle = .text:0x801CAD64; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game27ItemStateFPQ24Game8ItemGateRQ24Game9PlatEvent = .text:0x801CAD68; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game27ItemStateFPQ24Game8ItemGateRQ24Game9CollEvent = .text:0x801CAD6C; // type:function size:0x4 scope:weak align:4 +init__Q24Game26FSMStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801CAD70; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD74; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD78; // type:function size:0x4 scope:weak align:4 +resume__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD7C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD80; // type:function size:0x4 scope:weak align:4 +init__Q24Game30StateMachineFPQ24Game8ItemGate = .text:0x801CAD84; // type:function size:0x4 scope:weak align:4 +exec__Q24Game30StateMachineFPQ24Game8ItemGate = .text:0x801CAD88; // type:function size:0x38 scope:weak align:4 +create__Q24Game30StateMachineFi = .text:0x801CADC0; // type:function size:0x64 scope:weak align:4 +get__31NodeObjectMgrFPv = .text:0x801CAE24; // type:function size:0x8 scope:weak align:4 +getNext__31NodeObjectMgrFPv = .text:0x801CAE2C; // type:function size:0x8 scope:weak align:4 +getStart__31NodeObjectMgrFv = .text:0x801CAE34; // type:function size:0x8 scope:weak align:4 +getEnd__31NodeObjectMgrFv = .text:0x801CAE3C; // type:function size:0x8 scope:weak align:4 +delNode__31NodeObjectMgrFPQ24Game8ItemGate = .text:0x801CAE44; // type:function size:0x44 scope:weak align:4 +resetMgr__31NodeObjectMgrFv = .text:0x801CAE88; // type:function size:0x18 scope:weak align:4 +doAnimation__27ObjectMgrFv = .text:0x801CAEA0; // type:function size:0x1E4 scope:weak align:4 +doEntry__27ObjectMgrFv = .text:0x801CB084; // type:function size:0x1E4 scope:weak align:4 +doSetView__27ObjectMgrFi = .text:0x801CB268; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__27ObjectMgrFv = .text:0x801CB45C; // type:function size:0x1E4 scope:weak align:4 +doSimulation__27ObjectMgrFf = .text:0x801CB640; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801CB834; // type:function size:0x1F4 scope:weak align:4 +getObject__27ContainerFPv = .text:0x801CBA28; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x801CBA54; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x801CBA5C; // type:function size:0x8 scope:weak align:4 +transit__Q24Game30StateMachineFPQ24Game8ItemGateiPQ24Game8StateArg = .text:0x801CBA64; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game30StateMachineFPQ24Game26FSMState = .text:0x801CBB00; // type:function size:0x84 scope:weak align:4 +platCallback__Q24Game59FSMItemFRQ24Game9PlatEvent = .text:0x801CBB84; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game59FSMItemFRQ24Game9CollEvent = .text:0x801CBBC8; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game59FSMItemFPQ23Sys8Triangle = .text:0x801CBC0C; // type:function size:0x44 scope:weak align:4 +getEnd__Q24Game29NodeItemMgrFv = .text:0x801CBC50; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game29NodeItemMgrFv = .text:0x801CBC7C; // type:function size:0x2C scope:weak align:4 +getNext__Q24Game29NodeItemMgrFPv = .text:0x801CBCA8; // type:function size:0x2C scope:weak align:4 +get__Q24Game29NodeItemMgrFPv = .text:0x801CBCD4; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game29NodeItemMgrFv = .text:0x801CBD00; // type:function size:0x240 scope:weak align:4 +__sinit_itemGate_cpp = .text:0x801CBF40; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game59FSMItemFRCQ28SysShape8KeyEvent = .text:0x801CBF68; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game8ItemGateFRCQ28SysShape8KeyEvent = .text:0x801CBF70; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx7TEgateAFv = .text:0x801CBF78; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__31NodeObjectMgrFv = .text:0x801CBF80; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801CBF88; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27ObjectMgrFf = .text:0x801CBF90; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27ObjectMgrFv = .text:0x801CBF98; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27ObjectMgrFi = .text:0x801CBFA0; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27ObjectMgrFv = .text:0x801CBFA8; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27ObjectMgrFv = .text:0x801CBFB0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game29NodeItemMgrFv = .text:0x801CBFB8; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game29NodeItemMgrFv = .text:0x801CBFC0; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game29NodeItemMgrFv = .text:0x801CBFC8; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game29NodeItemMgrFPv = .text:0x801CBFD0; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game29NodeItemMgrFPv = .text:0x801CBFD8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CBFE0; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game8BaseItemFi = .text:0x801CBFE8; // type:function size:0x100 scope:global align:4 +constructor__Q24Game8BaseItemFv = .text:0x801CC0E8; // type:function size:0x4C scope:global align:4 +getJAIObject__Q24Game8BaseItemFv = .text:0x801CC134; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game8BaseItemFv = .text:0x801CC148; // type:function size:0x8 scope:global align:4 +startSound__Q24Game8BaseItemFUl = .text:0x801CC150; // type:function size:0x8C scope:global align:4 +doAnimation__Q24Game8BaseItemFv = .text:0x801CC1DC; // type:function size:0x108 scope:global align:4 +updateTrMatrix__Q24Game8BaseItemFv = .text:0x801CC2E4; // type:function size:0x2C scope:global align:4 +entryShape__Q24Game8BaseItemFv = .text:0x801CC310; // type:function size:0xC4 scope:global align:4 +doEntry__Q24Game8BaseItemFv = .text:0x801CC3D4; // type:function size:0x38 scope:global align:4 +stimulate__Q24Game8BaseItemFRQ24Game11Interaction = .text:0x801CC40C; // type:function size:0x74 scope:global align:4 +doSimulation__Q24Game8BaseItemFf = .text:0x801CC480; // type:function size:0x4 scope:global align:4 +makeTrMatrix__Q24Game8BaseItemFv = .text:0x801CC484; // type:function size:0x2C scope:global align:4 +update__Q24Game8BaseItemFv = .text:0x801CC4B0; // type:function size:0xDC scope:global align:4 +doAI__Q24Game8BaseItemFv = .text:0x801CC58C; // type:function size:0x4 scope:weak align:4 +do_updateLOD__Q24Game8BaseItemFv = .text:0x801CC590; // type:function size:0x7C scope:global align:4 +updateCollTree__Q24Game8BaseItemFv = .text:0x801CC60C; // type:function size:0x3C scope:global align:4 +move__Q24Game8BaseItemFf = .text:0x801CC648; // type:function size:0x1C4 scope:global align:4 +movieStartAnimation__Q24Game8BaseItemFUl = .text:0x801CC80C; // type:function size:0x7C scope:global align:4 +movieStartDemoAnimation__Q24Game8BaseItemFPQ28SysShape8AnimInfo = .text:0x801CC888; // type:function size:0x88 scope:global align:4 +movieSetAnimationLastFrame__Q24Game8BaseItemFv = .text:0x801CC910; // type:function size:0x24 scope:global align:4 +movieSetTranslation__Q24Game8BaseItemFR10Vector3f = .text:0x801CC934; // type:function size:0x1C scope:global align:4 +constructor__Q24Game8CFSMItemFv = .text:0x801CC950; // type:function size:0x50 scope:global align:4 +initFSM__Q24Game8CFSMItemFv = .text:0x801CC9A0; // type:function size:0x54 scope:global align:4 +init__Q24Game30StateMachineFPQ24Game8CFSMItem = .text:0x801CC9F4; // type:function size:0x4 scope:weak align:4 +doAI__Q24Game8CFSMItemFv = .text:0x801CC9F8; // type:function size:0x34 scope:global align:4 +setCurrState__Q24Game8CFSMItemFPQ24Game26FSMState = .text:0x801CCA2C; // type:function size:0x8 scope:global align:4 +getCurrState__Q24Game8CFSMItemFv = .text:0x801CCA34; // type:function size:0x8 scope:global align:4 +getStateID__Q24Game8CFSMItemFv = .text:0x801CCA3C; // type:function size:0x1C scope:global align:4 +bounceCallback__Q24Game8CFSMItemFPQ23Sys8Triangle = .text:0x801CCA58; // type:function size:0x44 scope:global align:4 +onBounce__Q24Game10CItemStateFPQ24Game8CFSMItemPQ23Sys8Triangle = .text:0x801CCA9C; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game8CFSMItemFRQ24Game9CollEvent = .text:0x801CCAA0; // type:function size:0x44 scope:global align:4 +onCollision__Q24Game10CItemStateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801CCAE4; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game8CFSMItemFRQ24Game9PlatEvent = .text:0x801CCAE8; // type:function size:0x44 scope:global align:4 +onPlatCollision__Q24Game10CItemStateFPQ24Game8CFSMItemRQ24Game9PlatEvent = .text:0x801CCB2C; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game8CFSMItemFRCQ28SysShape8KeyEvent = .text:0x801CCB30; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game10CItemStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801CCB74; // type:function size:0x4 scope:weak align:4 +actItem__Q24Game14InteractAttackFPQ24Game8BaseItem = .text:0x801CCB78; // type:function size:0x38 scope:global align:4 +actItem__Q24Game19InteractBreakBridgeFPQ24Game8BaseItem = .text:0x801CCBB0; // type:function size:0x38 scope:global align:4 +actItem__Q24Game14InteractGotKeyFPQ24Game8BaseItem = .text:0x801CCBE8; // type:function size:0x38 scope:global align:4 +actItem__Q24Game11InteractEatFPQ24Game8BaseItem = .text:0x801CCC20; // type:function size:0x38 scope:global align:4 +actItem__Q24Game19InteractFlockAttackFPQ24Game8BaseItem = .text:0x801CCC58; // type:function size:0x38 scope:global align:4 +actItem__Q24Game14InteractAbsorbFPQ24Game8BaseItem = .text:0x801CCC90; // type:function size:0x38 scope:global align:4 +actItem__Q24Game11InteractFueFPQ24Game8BaseItem = .text:0x801CCCC8; // type:function size:0x38 scope:global align:4 +actItem__Q24Game18InteractFarmKareroFPQ24Game8BaseItem = .text:0x801CCD00; // type:function size:0x38 scope:global align:4 +actItem__Q24Game17InteractFarmHaeroFPQ24Game8BaseItem = .text:0x801CCD38; // type:function size:0x38 scope:global align:4 +__ct__Q24Game11BaseItemMgrFi = .text:0x801CCD70; // type:function size:0x5C scope:global align:4 +setModelSize__Q24Game11BaseItemMgrFi = .text:0x801CCDCC; // type:function size:0x108 scope:global align:4 +loadArchive__Q24Game11BaseItemMgrFPc = .text:0x801CCED4; // type:function size:0x7C scope:global align:4 +loadBmd__Q24Game11BaseItemMgrFPciUl = .text:0x801CCF50; // type:function size:0xAC scope:global align:4 +loadAnimMgr__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CCFFC; // type:function size:0x80 scope:global align:4 +loadCollision__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CD07C; // type:function size:0x38 scope:global align:4 +generatorNewItemParm__Q24Game11BaseItemMgrFv = .text:0x801CD0B4; // type:function size:0x38 scope:global align:4 +generatorGetShape__Q24Game11BaseItemMgrFPQ24Game11GenItemParm = .text:0x801CD0EC; // type:function size:0x64 scope:global align:4 +getModelData__Q24Game11BaseItemMgrFi = .text:0x801CD150; // type:function size:0x7C scope:global align:4 +openTextArc__Q24Game11BaseItemMgrFPc = .text:0x801CD1CC; // type:function size:0x84 scope:global align:4 +closeTextArc__Q24Game11BaseItemMgrFP10JKRArchive = .text:0x801CD250; // type:function size:0x50 scope:global align:4 +loadPlatform__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CD2A0; // type:function size:0x68 scope:global align:4 +loadPlatAttacher__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CD308; // type:function size:0xBC scope:global align:4 +updateUseList__Q24Game11BaseItemMgrFPQ24Game11GenItemParmi = .text:0x801CD3C4; // type:function size:0x2C scope:global align:4 +loadResources__Q24Game11BaseItemMgrFv = .text:0x801CD3F0; // type:function size:0x2C scope:global align:4 +setupSoundViewerAndBas__Q24Game11BaseItemMgrFv = .text:0x801CD41C; // type:function size:0x4 scope:global align:4 +__ct__Q24Game12TNodeItemMgrFv = .text:0x801CD420; // type:function size:0x14C scope:global align:4 +__dt__31NodeObjectMgrFv = .text:0x801CD56C; // type:function size:0xC8 scope:weak align:4 +__dt__29TObjectNodeFv = .text:0x801CD634; // type:function size:0x60 scope:weak align:4 +__dt__27ObjectMgrFv = .text:0x801CD694; // type:function size:0x88 scope:weak align:4 +__dt__27ContainerFv = .text:0x801CD71C; // type:function size:0x70 scope:weak align:4 +birth__Q24Game12TNodeItemMgrFv = .text:0x801CD78C; // type:function size:0x9C scope:global align:4 +entry__Q24Game12TNodeItemMgrFPQ24Game8BaseItem = .text:0x801CD828; // type:function size:0x84 scope:global align:4 +initDependency__Q24Game12TNodeItemMgrFv = .text:0x801CD8AC; // type:function size:0x1E8 scope:global align:4 +killAll__Q24Game12TNodeItemMgrFv = .text:0x801CDA94; // type:function size:0xA8 scope:global align:4 +__ct__Q24Game7ItemMgrFv = .text:0x801CDB3C; // type:function size:0xC4 scope:global align:4 +__dt__Q24Game7ItemMgrFv = .text:0x801CDC00; // type:function size:0xE8 scope:global align:4 +addMgr__Q24Game7ItemMgrFPQ24Game11BaseItemMgr = .text:0x801CDCE8; // type:function size:0x6C scope:global align:4 +initDependency__Q24Game7ItemMgrFv = .text:0x801CDD54; // type:function size:0x1E4 scope:global align:4 +doAnimation__Q24Game7ItemMgrFv = .text:0x801CDF38; // type:function size:0x1E4 scope:global align:4 +doEntry__Q24Game7ItemMgrFv = .text:0x801CE11C; // type:function size:0x1E4 scope:global align:4 +doSetView__Q24Game7ItemMgrFi = .text:0x801CE300; // type:function size:0x1F4 scope:global align:4 +doViewCalc__Q24Game7ItemMgrFv = .text:0x801CE4F4; // type:function size:0x1E4 scope:global align:4 +doSimulation__Q24Game7ItemMgrFf = .text:0x801CE6D8; // type:function size:0x1F4 scope:global align:4 +doDirectDraw__Q24Game7ItemMgrFR8Graphics = .text:0x801CE8CC; // type:function size:0x4 scope:global align:4 +doSimpleDraw__Q24Game7ItemMgrFP8Viewport = .text:0x801CE8D0; // type:function size:0x1F4 scope:global align:4 +setupSoundViewerAndBas__Q24Game7ItemMgrFv = .text:0x801CEAC4; // type:function size:0x1E4 scope:global align:4 +loadResources__Q24Game7ItemMgrFv = .text:0x801CECA8; // type:function size:0x1E4 scope:global align:4 +getIndexByMgr__Q24Game7ItemMgrFPQ24Game11BaseItemMgr = .text:0x801CEE8C; // type:function size:0x204 scope:global align:4 +getMgrByIndex__Q24Game7ItemMgrFi = .text:0x801CF090; // type:function size:0x200 scope:global align:4 +getMgrByID__Q24Game7ItemMgrFR4ID32 = .text:0x801CF290; // type:function size:0x224 scope:global align:4 +__dt__Q24Game12TNodeItemMgrFv = .text:0x801CF4B4; // type:function size:0x11C scope:weak align:4 +kill__Q24Game12TNodeItemMgrFPQ24Game8BaseItem = .text:0x801CF5D0; // type:function size:0x24 scope:weak align:4 +doAnimation__Q24Game12TNodeItemMgrFv = .text:0x801CF5F4; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game12TNodeItemMgrFv = .text:0x801CF620; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game12TNodeItemMgrFi = .text:0x801CF64C; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game12TNodeItemMgrFv = .text:0x801CF678; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game12TNodeItemMgrFf = .text:0x801CF6A4; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game12TNodeItemMgrFR8Graphics = .text:0x801CF6D0; // type:function size:0x2C scope:weak align:4 +getEnd__Q24Game12TNodeItemMgrFv = .text:0x801CF6FC; // type:function size:0x2C scope:weak align:4 +getEnd__31NodeObjectMgrFv = .text:0x801CF728; // type:function size:0x8 scope:weak align:4 +getStart__Q24Game12TNodeItemMgrFv = .text:0x801CF730; // type:function size:0x2C scope:weak align:4 +getStart__31NodeObjectMgrFv = .text:0x801CF75C; // type:function size:0x8 scope:weak align:4 +getNext__Q24Game12TNodeItemMgrFPv = .text:0x801CF764; // type:function size:0x2C scope:weak align:4 +getNext__31NodeObjectMgrFPv = .text:0x801CF790; // type:function size:0x8 scope:weak align:4 +get__Q24Game12TNodeItemMgrFPv = .text:0x801CF798; // type:function size:0x2C scope:weak align:4 +get__31NodeObjectMgrFPv = .text:0x801CF7C4; // type:function size:0x8 scope:weak align:4 +doAnimation__Q24Game11BaseItemMgrFv = .text:0x801CF7CC; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game11BaseItemMgrFv = .text:0x801CF7D0; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game11BaseItemMgrFi = .text:0x801CF7D4; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game11BaseItemMgrFv = .text:0x801CF7D8; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game11BaseItemMgrFf = .text:0x801CF7DC; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game11BaseItemMgrFR8Graphics = .text:0x801CF7E0; // type:function size:0x4 scope:weak align:4 +delNode__31NodeObjectMgrFPQ24Game8BaseItem = .text:0x801CF7E4; // type:function size:0x44 scope:weak align:4 +resetMgr__31NodeObjectMgrFv = .text:0x801CF828; // type:function size:0x18 scope:weak align:4 +doAnimation__27ObjectMgrFv = .text:0x801CF840; // type:function size:0x1E4 scope:weak align:4 +doEntry__27ObjectMgrFv = .text:0x801CFA24; // type:function size:0x1E4 scope:weak align:4 +doSetView__27ObjectMgrFi = .text:0x801CFC08; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__27ObjectMgrFv = .text:0x801CFDFC; // type:function size:0x1E4 scope:weak align:4 +doSimulation__27ObjectMgrFf = .text:0x801CFFE0; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801D01D4; // type:function size:0x1F4 scope:weak align:4 +getObject__27ContainerFPv = .text:0x801D03C8; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x801D03F4; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x801D03FC; // type:function size:0x8 scope:weak align:4 +exec__Q24Game30StateMachineFPQ24Game8CFSMItem = .text:0x801D0404; // type:function size:0x38 scope:weak align:4 +exec__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D043C; // type:function size:0x4 scope:weak align:4 +@376@onKeyEvent__Q24Game8CFSMItemFRCQ28SysShape8KeyEvent = .text:0x801D0440; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__31NodeObjectMgrFv = .text:0x801D0448; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801D0450; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27ObjectMgrFf = .text:0x801D0458; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27ObjectMgrFv = .text:0x801D0460; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27ObjectMgrFi = .text:0x801D0468; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27ObjectMgrFv = .text:0x801D0470; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27ObjectMgrFv = .text:0x801D0478; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game12TNodeItemMgrFv = .text:0x801D0480; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game12TNodeItemMgrFv = .text:0x801D0488; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game12TNodeItemMgrFPv = .text:0x801D0490; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game12TNodeItemMgrFPv = .text:0x801D0498; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game12TNodeItemMgrFv = .text:0x801D04A0; // type:function size:0x8 scope:weak align:4 +@28@loadResources__Q24Game7ItemMgrFv = .text:0x801D04A8; // type:function size:0x8 scope:weak align:4 +@28@doSimpleDraw__Q24Game7ItemMgrFP8Viewport = .text:0x801D04B0; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game7ItemMgrFR8Graphics = .text:0x801D04B8; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game7ItemMgrFf = .text:0x801D04C0; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__Q24Game7ItemMgrFv = .text:0x801D04C8; // type:function size:0x8 scope:weak align:4 +@28@doSetView__Q24Game7ItemMgrFi = .text:0x801D04D0; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game7ItemMgrFv = .text:0x801D04D8; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game7ItemMgrFv = .text:0x801D04E0; // type:function size:0x8 scope:weak align:4 +__ct__Q26PikiAI12ActBreakGateFPQ24Game4Piki = .text:0x801D04E8; // type:function size:0xF8 scope:global align:4 +init__Q26PikiAI12ActBreakGateFPQ26PikiAI9ActionArg = .text:0x801D05E0; // type:function size:0xC8 scope:global align:4 +initFollow__Q26PikiAI12ActBreakGateFv = .text:0x801D06A8; // type:function size:0x68 scope:global align:4 +exec__Q26PikiAI12ActBreakGateFv = .text:0x801D0710; // type:function size:0x498 scope:global align:4 +cleanup__Q26PikiAI12ActBreakGateFv = .text:0x801D0BA8; // type:function size:0x5C scope:global align:4 +emotion_success__Q26PikiAI12ActBreakGateFv = .text:0x801D0C04; // type:function size:0x44 scope:global align:4 +platCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x801D0C48; // type:function size:0x144 scope:global align:4 +collisionCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801D0D8C; // type:function size:0x4 scope:global align:4 +bounceCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801D0D90; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI12ActBreakGateFRCQ28SysShape8KeyEvent = .text:0x801D0D94; // type:function size:0x4 scope:global align:4 +getName__Q26PikiAI26FollowVectorFieldActionArgFv = .text:0x801D0D98; // type:function size:0xC scope:weak align:4 +@52@4@onKeyEvent__Q26PikiAI12ActBreakGateFRCQ28SysShape8KeyEvent = .text:0x801D0DA4; // type:function size:0x14 scope:weak align:4 +clear__Q24Game8GameStatFv = .text:0x801D0DB8; // type:function size:0x58 scope:global align:4 +getMapPikmins_exclude_Me__Q24Game8GameStatFi = .text:0x801D0E10; // type:function size:0x50 scope:global align:4 +getMapPikmins__Q24Game8GameStatFi = .text:0x801D0E60; // type:function size:0x8C scope:global align:4 +getZikatuPikmins__Q24Game8GameStatFi = .text:0x801D0EEC; // type:function size:0x50 scope:global align:4 +getAllPikmins__Q24Game8GameStatFi = .text:0x801D0F3C; // type:function size:0xF8 scope:global align:4 +__ct__Q34Game8GameStat11PikiCounterFv = .text:0x801D1034; // type:function size:0x3C scope:global align:4 +clear__Q34Game8GameStat11PikiCounterFv = .text:0x801D1070; // type:function size:0x24 scope:global align:4 +inc__Q34Game8GameStat11PikiCounterFPQ24Game4Piki = .text:0x801D1094; // type:function size:0x84 scope:global align:4 +dec__Q34Game8GameStat11PikiCounterFPQ24Game4Piki = .text:0x801D1118; // type:function size:0x84 scope:global align:4 +inc__Q34Game8GameStat11PikiCounterFi = .text:0x801D119C; // type:function size:0x80 scope:global align:4 +dec__Q34Game8GameStat11PikiCounterFi = .text:0x801D121C; // type:function size:0x80 scope:global align:4 +clear__Q34Game8GameStat15PikiNaviCounterFv = .text:0x801D129C; // type:function size:0xCC scope:global align:4 +inc__Q34Game8GameStat15PikiNaviCounterFPQ24Game4Piki = .text:0x801D1368; // type:function size:0xAC scope:global align:4 +dec__Q34Game8GameStat15PikiNaviCounterFPQ24Game4Piki = .text:0x801D1414; // type:function size:0xAC scope:global align:4 +__sinit_gameStat_cpp = .text:0x801D14C0; // type:function size:0x278 scope:local align:4 +init__Q34Game8ItemHole3FSMFPQ24Game8CFSMItem = .text:0x801D1738; // type:function size:0x134 scope:global align:4 +init__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D186C; // type:function size:0x3C scope:global align:4 +exec__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItem = .text:0x801D18A8; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItem = .text:0x801D18AC; // type:function size:0x4 scope:global align:4 +init__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D18B0; // type:function size:0x5C scope:global align:4 +exec__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItem = .text:0x801D190C; // type:function size:0x118 scope:global align:4 +transit__Q24Game26FSMStateFPQ24Game8CFSMItemiPQ24Game8StateArg = .text:0x801D1A24; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItem = .text:0x801D1A54; // type:function size:0x4 scope:global align:4 +init__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D1A58; // type:function size:0x3C scope:global align:4 +exec__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItem = .text:0x801D1A94; // type:function size:0x14 scope:global align:4 +cleanup__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItem = .text:0x801D1AA8; // type:function size:0x4 scope:global align:4 +movieUserCommand__Q34Game8ItemHole4ItemFUlPQ24Game11MoviePlayer = .text:0x801D1AAC; // type:function size:0x25C scope:global align:4 +interactGotKey__Q34Game8ItemHole4ItemFRQ24Game14InteractGotKey = .text:0x801D1D08; // type:function size:0x108 scope:global align:4 +getFaceDir__Q34Game8ItemHole4ItemFv = .text:0x801D1E10; // type:function size:0x8 scope:weak align:4 +onInit__Q34Game8ItemHole4ItemFPQ24Game15CreatureInitArg = .text:0x801D1E18; // type:function size:0xC0 scope:global align:4 +start__Q24Game30StateMachineFPQ24Game8CFSMItemiPQ24Game8StateArg = .text:0x801D1ED8; // type:function size:0x78 scope:weak align:4 +changeMaterial__Q34Game8ItemHole4ItemFv = .text:0x801D1F50; // type:function size:0x50 scope:global align:4 +onSetPosition__Q34Game8ItemHole4ItemFv = .text:0x801D1FA0; // type:function size:0x1DC scope:global align:4 +initDependency__Q34Game8ItemHole4ItemFv = .text:0x801D217C; // type:function size:0x314 scope:global align:4 +makeTrMatrix__Q34Game8ItemHole4ItemFv = .text:0x801D2490; // type:function size:0x68 scope:global align:4 +canRide__Q34Game8ItemHole4ItemFv = .text:0x801D24F8; // type:function size:0x30 scope:global align:4 +canRide__Q34Game8ItemHole5StateFv = .text:0x801D2528; // type:function size:0x8 scope:weak align:4 +do_setLODParm__Q34Game8ItemHole4ItemFRQ24Game9AILODParm = .text:0x801D2530; // type:function size:0x14 scope:global align:4 +sound_culling__Q34Game8ItemHole4ItemFv = .text:0x801D2544; // type:function size:0x8 scope:global align:4 +doAI__Q34Game8ItemHole4ItemFv = .text:0x801D254C; // type:function size:0xE4 scope:global align:4 +doDirectDraw__Q34Game8ItemHole4ItemFR8Graphics = .text:0x801D2630; // type:function size:0xBC scope:global align:4 +createFSM__Q34Game8ItemHole4ItemFv = .text:0x801D26EC; // type:function size:0x58 scope:global align:4 +__ct__Q34Game8ItemHole3MgrFv = .text:0x801D2744; // type:function size:0x7C scope:global align:4 +onLoadResources__Q34Game8ItemHole3MgrFv = .text:0x801D27C0; // type:function size:0x100 scope:global align:4 +setup__Q34Game8ItemHole3MgrFPQ24Game8BaseItem = .text:0x801D28C0; // type:function size:0xBC scope:global align:4 +generatorBirth__Q34Game8ItemHole3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801D297C; // type:function size:0x54 scope:global align:4 +__dt__Q34Game8ItemHole3MgrFv = .text:0x801D29D0; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemHole3MgrFv = .text:0x801D2B04; // type:function size:0x74 scope:weak align:4 +generatorGetID__Q34Game8ItemHole3MgrFv = .text:0x801D2B78; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemHole4ItemFv = .text:0x801D2B84; // type:function size:0x8 scope:weak align:4 +onDamage__Q24Game10CItemStateFPQ24Game8CFSMItemf = .text:0x801D2B8C; // type:function size:0x4 scope:weak align:4 +canRide__Q34Game8ItemHole11NormalStateFv = .text:0x801D2B90; // type:function size:0x8 scope:weak align:4 +init__Q24Game26FSMStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D2B98; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D2B9C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D2BA0; // type:function size:0x4 scope:weak align:4 +restart__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D2BA4; // type:function size:0x4 scope:weak align:4 +create__Q24Game30StateMachineFi = .text:0x801D2BA8; // type:function size:0x64 scope:weak align:4 +transit__Q24Game30StateMachineFPQ24Game8CFSMItemiPQ24Game8StateArg = .text:0x801D2C0C; // type:function size:0xAC scope:weak align:4 +registerState__Q24Game30StateMachineFPQ24Game26FSMState = .text:0x801D2CB8; // type:function size:0x84 scope:weak align:4 +__sinit_itemHole_cpp = .text:0x801D2D3C; // type:function size:0x28 scope:local align:4 +@48@__dt__Q34Game8ItemHole3MgrFv = .text:0x801D2D64; // type:function size:0x8 scope:weak align:4 +init__Q34Game9ItemHoney3FSMFPQ24Game8CFSMItem = .text:0x801D2D6C; // type:function size:0x23C scope:global align:4 +init__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D2FA8; // type:function size:0x4 scope:global align:4 +exec__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItem = .text:0x801D2FAC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItem = .text:0x801D2FB0; // type:function size:0x4 scope:global align:4 +onBounce__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItemPQ23Sys8Triangle = .text:0x801D2FB4; // type:function size:0x34 scope:global align:4 +init__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D2FE8; // type:function size:0x1C4 scope:global align:4 +exec__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItem = .text:0x801D31AC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItem = .text:0x801D31B0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D31B4; // type:function size:0x34 scope:global align:4 +init__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D31E8; // type:function size:0x38 scope:global align:4 +exec__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItem = .text:0x801D3220; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItem = .text:0x801D3224; // type:function size:0x4 scope:global align:4 +collisionCallback__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801D3228; // type:function size:0x11C scope:global align:4 +interactAbsorb__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D3344; // type:function size:0x38 scope:global align:4 +init__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D337C; // type:function size:0x38 scope:global align:4 +exec__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItem = .text:0x801D33B4; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItem = .text:0x801D33B8; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D33BC; // type:function size:0x64 scope:global align:4 +kill__Q24Game40FixedSizeItemMgrFPQ34Game9ItemHoney4Item = .text:0x801D3420; // type:function size:0x24 scope:weak align:4 +init__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D3444; // type:function size:0x4C scope:global align:4 +exec__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItem = .text:0x801D3490; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItem = .text:0x801D3494; // type:function size:0x4 scope:global align:4 +interactAbsorb__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D3498; // type:function size:0x38 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D34D0; // type:function size:0x34 scope:global align:4 +collisionCallback__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801D3504; // type:function size:0x80 scope:global align:4 +init__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D3584; // type:function size:0x38 scope:global align:4 +exec__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItem = .text:0x801D35BC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItem = .text:0x801D35C0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D35C4; // type:function size:0x38 scope:global align:4 +demoOK__Q34Game9ItemHoney4ItemFv = .text:0x801D35FC; // type:function size:0x3C scope:global align:4 +__ct__Q34Game9ItemHoney4ItemFv = .text:0x801D3638; // type:function size:0x88 scope:global align:4 +createFSM__Q34Game9ItemHoney4ItemFv = .text:0x801D36C0; // type:function size:0x58 scope:global align:4 +doAI__Q34Game9ItemHoney4ItemFv = .text:0x801D3718; // type:function size:0x40 scope:global align:4 +onInit__Q34Game9ItemHoney4ItemFPQ24Game15CreatureInitArg = .text:0x801D3758; // type:function size:0x158 scope:global align:4 +onSetPosition__Q34Game9ItemHoney4ItemFv = .text:0x801D38B0; // type:function size:0x4 scope:global align:4 +getMapCollisionRadius__Q34Game9ItemHoney4ItemFv = .text:0x801D38B4; // type:function size:0x8 scope:global align:4 +changeMaterial__Q34Game9ItemHoney4ItemFv = .text:0x801D38BC; // type:function size:0x130 scope:global align:4 +updateBoundSphere__Q34Game9ItemHoney4ItemFv = .text:0x801D39EC; // type:function size:0x38 scope:global align:4 +doSimulation__Q34Game9ItemHoney4ItemFf = .text:0x801D3A24; // type:function size:0x94 scope:global align:4 +absorbable__Q34Game9ItemHoney4ItemFv = .text:0x801D3AB8; // type:function size:0x54 scope:global align:4 +absorbable__Q34Game9ItemHoney5StateFv = .text:0x801D3B0C; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q34Game9ItemHoney4ItemFRCQ28SysShape8KeyEvent = .text:0x801D3B14; // type:function size:0x60 scope:global align:4 +collisionCallback__Q34Game9ItemHoney4ItemFRQ24Game9CollEvent = .text:0x801D3B74; // type:function size:0x60 scope:global align:4 +collisionCallback__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801D3BD4; // type:function size:0x4 scope:weak align:4 +interactAbsorb__Q34Game9ItemHoney4ItemFRQ24Game14InteractAbsorb = .text:0x801D3BD8; // type:function size:0x68 scope:global align:4 +interactAbsorb__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D3C40; // type:function size:0x8 scope:weak align:4 +doDirectDraw__Q34Game9ItemHoney4ItemFR8Graphics = .text:0x801D3C48; // type:function size:0x4 scope:global align:4 +makeTrMatrix__Q34Game9ItemHoney4ItemFv = .text:0x801D3C4C; // type:function size:0x6C scope:global align:4 +onStartCapture__Q34Game9ItemHoney4ItemFv = .text:0x801D3CB8; // type:function size:0x3C scope:global align:4 +onUpdateCapture__Q34Game9ItemHoney4ItemFR7Matrixf = .text:0x801D3CF4; // type:function size:0x54 scope:global align:4 +onEndCapture__Q34Game9ItemHoney4ItemFv = .text:0x801D3D48; // type:function size:0x28 scope:global align:4 +on_movie_end__Q34Game9ItemHoney4ItemFb = .text:0x801D3D70; // type:function size:0x2C scope:global align:4 +isShrinking__Q34Game9ItemHoney4ItemFv = .text:0x801D3D9C; // type:function size:0x2C scope:global align:4 +__ct__Q34Game9ItemHoney3MgrFv = .text:0x801D3DC8; // type:function size:0xD0 scope:global align:4 +__dt__Q24Game40FixedSizeItemMgrFv = .text:0x801D3E98; // type:function size:0x100 scope:weak align:4 +__dt__37MonoObjectMgrFv = .text:0x801D3F98; // type:function size:0xA0 scope:weak align:4 +__dt__33ContainerFv = .text:0x801D4038; // type:function size:0x70 scope:weak align:4 +onCreateModel__Q34Game9ItemHoney3MgrFPQ28SysShape5Model = .text:0x801D40A8; // type:function size:0x70 scope:global align:4 +onLoadResources__Q34Game9ItemHoney3MgrFv = .text:0x801D4118; // type:function size:0xCC scope:global align:4 +birth__Q34Game9ItemHoney3MgrFv = .text:0x801D41E4; // type:function size:0x2C scope:global align:4 +generatorBirth__Q34Game9ItemHoney3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801D4210; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9ItemHoney3MgrFv = .text:0x801D4270; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game9ItemHoney3MgrFv = .text:0x801D4388; // type:function size:0xC scope:weak align:4 +__dt__33ObjectMgrFv = .text:0x801D4394; // type:function size:0x88 scope:weak align:4 +birth__Q24Game40FixedSizeItemMgrFv = .text:0x801D441C; // type:function size:0x2C scope:weak align:4 +getCreatureName__Q34Game9ItemHoney4ItemFv = .text:0x801D4448; // type:function size:0x8 scope:weak align:4 +absorbable__Q34Game9ItemHoney10TouchStateFv = .text:0x801D4450; // type:function size:0x8 scope:weak align:4 +interactAbsorb__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D4458; // type:function size:0x8 scope:weak align:4 +absorbable__Q34Game9ItemHoney11ShrinkStateFv = .text:0x801D4460; // type:function size:0x8 scope:weak align:4 +absorbable__Q34Game9ItemHoney9WaitStateFv = .text:0x801D4468; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D4470; // type:function size:0x4 scope:weak align:4 +onCreateModel__Q24Game40FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801D4474; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game40FixedSizeItemMgrFv = .text:0x801D4478; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game40FixedSizeItemMgrFv = .text:0x801D44A4; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game40FixedSizeItemMgrFi = .text:0x801D44D0; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game40FixedSizeItemMgrFv = .text:0x801D44FC; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game40FixedSizeItemMgrFf = .text:0x801D4528; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game40FixedSizeItemMgrFR8Graphics = .text:0x801D4554; // type:function size:0x2C scope:weak align:4 +getNext__Q24Game40FixedSizeItemMgrFPv = .text:0x801D4580; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game40FixedSizeItemMgrFv = .text:0x801D45AC; // type:function size:0x2C scope:weak align:4 +createModel__Q24Game40FixedSizeItemMgrFPQ34Game9ItemHoney4Item = .text:0x801D45D8; // type:function size:0x30 scope:weak align:4 +birth__37MonoObjectMgrFv = .text:0x801D4608; // type:function size:0x60 scope:weak align:4 +kill__37MonoObjectMgrFPQ34Game9ItemHoney4Item = .text:0x801D4668; // type:function size:0x54 scope:weak align:4 +getNext__37MonoObjectMgrFPv = .text:0x801D46BC; // type:function size:0x40 scope:weak align:4 +getStart__37MonoObjectMgrFv = .text:0x801D46FC; // type:function size:0x30 scope:weak align:4 +getEnd__37MonoObjectMgrFv = .text:0x801D472C; // type:function size:0x8 scope:weak align:4 +getAt__37MonoObjectMgrFi = .text:0x801D4734; // type:function size:0x10 scope:weak align:4 +getTo__37MonoObjectMgrFv = .text:0x801D4744; // type:function size:0x8 scope:weak align:4 +doAnimation__37MonoObjectMgrFv = .text:0x801D474C; // type:function size:0x80 scope:weak align:4 +doEntry__37MonoObjectMgrFv = .text:0x801D47CC; // type:function size:0x80 scope:weak align:4 +doSetView__37MonoObjectMgrFi = .text:0x801D484C; // type:function size:0x90 scope:weak align:4 +doViewCalc__37MonoObjectMgrFv = .text:0x801D48DC; // type:function size:0x80 scope:weak align:4 +doSimulation__37MonoObjectMgrFf = .text:0x801D495C; // type:function size:0x90 scope:weak align:4 +doDirectDraw__37MonoObjectMgrFR8Graphics = .text:0x801D49EC; // type:function size:0x90 scope:weak align:4 +resetMgr__37MonoObjectMgrFv = .text:0x801D4A7C; // type:function size:0x18 scope:weak align:4 +clearMgr__37MonoObjectMgrFv = .text:0x801D4A94; // type:function size:0x30 scope:weak align:4 +onAlloc__37MonoObjectMgrFv = .text:0x801D4AC4; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__37MonoObjectMgrFv = .text:0x801D4AC8; // type:function size:0x3C scope:weak align:4 +get__37MonoObjectMgrFPv = .text:0x801D4B04; // type:function size:0x10 scope:weak align:4 +getObject__33ContainerFPv = .text:0x801D4B14; // type:function size:0x2C scope:weak align:4 +getAt__33ContainerFi = .text:0x801D4B40; // type:function size:0x8 scope:weak align:4 +getTo__33ContainerFv = .text:0x801D4B48; // type:function size:0x8 scope:weak align:4 +doDirectDraw__33ObjectMgrFR8Graphics = .text:0x801D4B50; // type:function size:0x1F4 scope:weak align:4 +isDone__32IteratorFv = .text:0x801D4D44; // type:function size:0x4C scope:weak align:4 +doSimulation__33ObjectMgrFf = .text:0x801D4D90; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__33ObjectMgrFv = .text:0x801D4F84; // type:function size:0x1E4 scope:weak align:4 +doSetView__33ObjectMgrFi = .text:0x801D5168; // type:function size:0x1F4 scope:weak align:4 +doEntry__33ObjectMgrFv = .text:0x801D535C; // type:function size:0x1E4 scope:weak align:4 +doAnimation__33ObjectMgrFv = .text:0x801D5540; // type:function size:0x1E4 scope:weak align:4 +__ct__37MonoObjectMgrFv = .text:0x801D5724; // type:function size:0x9C scope:weak align:4 +getEnd__Q24Game40FixedSizeItemMgrFv = .text:0x801D57C0; // type:function size:0x2C scope:weak align:4 +get__Q24Game40FixedSizeItemMgrFPv = .text:0x801D57EC; // type:function size:0x2C scope:weak align:4 +initDependency__Q24Game40FixedSizeItemMgrFv = .text:0x801D5818; // type:function size:0x1E8 scope:weak align:4 +killAll__Q24Game40FixedSizeItemMgrFv = .text:0x801D5A00; // type:function size:0xE0 scope:weak align:4 +createModelCallback__Q24Game40FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801D5AE0; // type:function size:0x2C scope:weak align:4 +createMgr__Q24Game40FixedSizeItemMgrFiUl = .text:0x801D5B0C; // type:function size:0xE4 scope:weak align:4 +__ml__32IteratorFv = .text:0x801D5BF0; // type:function size:0x38 scope:weak align:4 +next__32IteratorFv = .text:0x801D5C28; // type:function size:0xE4 scope:weak align:4 +first__32IteratorFv = .text:0x801D5D0C; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game40FixedSizeItemMgrFv = .text:0x801D5DE8; // type:function size:0x64 scope:weak align:4 +alloc__37MonoObjectMgrFi = .text:0x801D5E4C; // type:function size:0x188 scope:weak align:4 +invoke__79Delegate1,PQ28SysShape5Model>FPQ28SysShape5Model = .text:0x801D5FD4; // type:function size:0x30 scope:weak align:4 +@376@onKeyEvent__Q34Game9ItemHoney4ItemFRCQ28SysShape8KeyEvent = .text:0x801D6004; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game40FixedSizeItemMgrFv = .text:0x801D600C; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__37MonoObjectMgrFv = .text:0x801D6014; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37MonoObjectMgrFR8Graphics = .text:0x801D601C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37MonoObjectMgrFf = .text:0x801D6024; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37MonoObjectMgrFv = .text:0x801D602C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37MonoObjectMgrFi = .text:0x801D6034; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37MonoObjectMgrFv = .text:0x801D603C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37MonoObjectMgrFv = .text:0x801D6044; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__33ObjectMgrFR8Graphics = .text:0x801D604C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__33ObjectMgrFf = .text:0x801D6054; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__33ObjectMgrFv = .text:0x801D605C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__33ObjectMgrFi = .text:0x801D6064; // type:function size:0x8 scope:weak align:4 +@28@doEntry__33ObjectMgrFv = .text:0x801D606C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__33ObjectMgrFv = .text:0x801D6074; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game40FixedSizeItemMgrFv = .text:0x801D607C; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game40FixedSizeItemMgrFv = .text:0x801D6084; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game40FixedSizeItemMgrFPv = .text:0x801D608C; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game40FixedSizeItemMgrFPv = .text:0x801D6094; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game9ItemHoney3MgrFv = .text:0x801D609C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Cave7BaseGenFv = .text:0x801D60A4; // type:function size:0x70 scope:global align:4 +read__Q34Game4Cave7BaseGenFR6Stream = .text:0x801D6114; // type:function size:0xF4 scope:global align:4 +draw__Q34Game4Cave7BaseGenFR8GraphicsP7Matrixf = .text:0x801D6208; // type:function size:0x4 scope:global align:4 +read__Q34Game4Cave8TekiInfoFR6Stream = .text:0x801D620C; // type:function size:0x1A8 scope:global align:4 +read__Q34Game4Cave8ItemInfoFR6Stream = .text:0x801D63B4; // type:function size:0xA8 scope:global align:4 +read__Q34Game4Cave8GateInfoFR6Stream = .text:0x801D645C; // type:function size:0x8C scope:global align:4 +getTekiInfo__Q34Game4Cave7CapInfoFv = .text:0x801D64E8; // type:function size:0x1C scope:global align:4 +read__Q34Game4Cave7CapInfoFR6Stream = .text:0x801D6504; // type:function size:0xC8 scope:global align:4 +__ct__Q34Game4Cave9FloorInfoFv = .text:0x801D65CC; // type:function size:0x174 scope:global align:4 +__dt__Q34Game4Cave7CapInfoFv = .text:0x801D6740; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave8GateInfoFv = .text:0x801D67A0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave8ItemInfoFv = .text:0x801D6800; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave8TekiInfoFv = .text:0x801D6860; // type:function size:0x60 scope:weak align:4 +__ct__Q44Game4Cave9FloorInfo5ParmsFv = .text:0x801D68C0; // type:function size:0x410 scope:global align:4 +hasHiddenCollision__Q34Game4Cave9FloorInfoFv = .text:0x801D6CD0; // type:function size:0x14 scope:global align:4 +getTekiMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6CE4; // type:function size:0x8 scope:global align:4 +getTekiInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6CEC; // type:function size:0x2C scope:global align:4 +getTekiInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6D18; // type:function size:0x94 scope:global align:4 +getTekiWeightSum__Q34Game4Cave9FloorInfoFv = .text:0x801D6DAC; // type:function size:0x24 scope:global align:4 +getItemMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6DD0; // type:function size:0x8 scope:global align:4 +getItemInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6DD8; // type:function size:0x2C scope:global align:4 +getItemInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6E04; // type:function size:0x94 scope:global align:4 +getItemWeightSum__Q34Game4Cave9FloorInfoFv = .text:0x801D6E98; // type:function size:0x24 scope:global align:4 +getGateMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6EBC; // type:function size:0x8 scope:global align:4 +getGateInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6EC4; // type:function size:0x2C scope:global align:4 +getGateInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6EF0; // type:function size:0x94 scope:global align:4 +getGateWeightSum__Q34Game4Cave9FloorInfoFv = .text:0x801D6F84; // type:function size:0x24 scope:global align:4 +getCapMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6FA8; // type:function size:0x8 scope:global align:4 +getCapInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6FB0; // type:function size:0x2C scope:global align:4 +getCapInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6FDC; // type:function size:0x94 scope:global align:4 +getRoomNum__Q34Game4Cave9FloorInfoFv = .text:0x801D7070; // type:function size:0x8 scope:global align:4 +getRouteRatio__Q34Game4Cave9FloorInfoFv = .text:0x801D7078; // type:function size:0x8 scope:global align:4 +hasEscapeFountain__Q34Game4Cave9FloorInfoFi = .text:0x801D7080; // type:function size:0x44 scope:global align:4 +useKaidanBarrel__Q34Game4Cave9FloorInfoFv = .text:0x801D70C4; // type:function size:0x14 scope:global align:4 +read__Q34Game4Cave9FloorInfoFR6Stream = .text:0x801D70D8; // type:function size:0x224 scope:global align:4 +__ct__Q34Game4Cave8CaveInfoFv = .text:0x801D72FC; // type:function size:0xD0 scope:global align:4 +__dt__Q34Game4Cave9FloorInfoFv = .text:0x801D73CC; // type:function size:0xE4 scope:weak align:4 +disablePelplant__Q34Game4Cave8CaveInfoFv = .text:0x801D74B0; // type:function size:0x40 scope:global align:4 +getFloorMax__Q34Game4Cave8CaveInfoFv = .text:0x801D74F0; // type:function size:0x8 scope:global align:4 +getFloorInfo__Q34Game4Cave8CaveInfoFi = .text:0x801D74F8; // type:function size:0x34 scope:global align:4 +load__Q34Game4Cave8CaveInfoFPc = .text:0x801D752C; // type:function size:0xF8 scope:global align:4 +read__Q34Game4Cave8CaveInfoFR6Stream = .text:0x801D7624; // type:function size:0x90 scope:global align:4 +__dt__Q34Game4Cave8CaveInfoFv = .text:0x801D76B4; // type:function size:0xF4 scope:weak align:4 +__dt__Q34Game4Cave7BaseGenFv = .text:0x801D77A8; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game9AILODParmFv = .text:0x801D7808; // type:function size:0x1C scope:global align:4 +__ct__Q24Game5AILODFv = .text:0x801D7824; // type:function size:0x18 scope:global align:4 +updateLOD__Q24Game8CreatureFRQ24Game9AILODParm = .text:0x801D783C; // type:function size:0x3A8 scope:global align:4 +drawLODInfo__Q24Game8CreatureFR8GraphicsR10Vector3 = .text:0x801D7BE4; // type:function size:0x258 scope:global align:4 +__sinit_creatureLOD_cpp = .text:0x801D7E3C; // type:function size:0x28 scope:local align:4 +stimulate__Q24Game4NaviFRQ24Game11Interaction = .text:0x801D7E64; // type:function size:0x74 scope:global align:4 +actNavi__Q24Game13InteractSaraiFPQ24Game4Navi = .text:0x801D7ED8; // type:function size:0x8C scope:global align:4 +actNavi__Q24Game12InteractBombFPQ24Game4Navi = .text:0x801D7F64; // type:function size:0x80 scope:global align:4 +actNavi__Q24Game12InteractWindFPQ24Game4Navi = .text:0x801D7FE4; // type:function size:0xE0 scope:global align:4 +actNavi__Q24Game13InteractDenkiFPQ24Game4Navi = .text:0x801D80C4; // type:function size:0xB4 scope:global align:4 +actNavi__Q24Game16InteractFallMeckFPQ24Game4Navi = .text:0x801D8178; // type:function size:0x44 scope:global align:4 +actNavi__Q24Game13InteractFlickFPQ24Game4Navi = .text:0x801D81BC; // type:function size:0x1F8 scope:global align:4 +actNavi__Q24Game13InteractPressFPQ24Game4Navi = .text:0x801D83B4; // type:function size:0xF4 scope:global align:4 +actNavi__Q24Game12InteractFireFPQ24Game4Navi = .text:0x801D84A8; // type:function size:0xB8 scope:global align:4 +actNavi__Q24Game14InteractBubbleFPQ24Game4Navi = .text:0x801D8560; // type:function size:0x90 scope:global align:4 +actNavi__Q24Game11InteractGasFPQ24Game4Navi = .text:0x801D85F0; // type:function size:0x8 scope:global align:4 +actNavi__Q24Game12InteractBuryFPQ24Game4Navi = .text:0x801D85F8; // type:function size:0x5C scope:global align:4 +actNavi__Q24Game11InteractFueFPQ24Game4Navi = .text:0x801D8654; // type:function size:0x358 scope:global align:4 +actNavi__Q24Game14InteractKaisanFPQ24Game4Navi = .text:0x801D89AC; // type:function size:0x74 scope:global align:4 +actNavi__Q24Game14InteractAttackFPQ24Game4Navi = .text:0x801D8A20; // type:function size:0x9C scope:global align:4 +init__Q34Game12ItemPikihead3FSMFPQ34Game12ItemPikihead4Item = .text:0x801D8ABC; // type:function size:0x294 scope:global align:4 +init__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D8D50; // type:function size:0x98 scope:global align:4 +exec__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4Item = .text:0x801D8DE8; // type:function size:0x38 scope:global align:4 +cleanup__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4Item = .text:0x801D8E20; // type:function size:0x24 scope:global align:4 +onPlatCollision__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemRQ24Game9PlatEvent = .text:0x801D8E44; // type:function size:0x28 scope:global align:4 +onBounce__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemPQ23Sys8Triangle = .text:0x801D8E6C; // type:function size:0x2F0 scope:global align:4 +transit__Q24Game36FSMStateFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg = .text:0x801D915C; // type:function size:0x30 scope:weak align:4 +init__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D918C; // type:function size:0x8C scope:global align:4 +exec__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4Item = .text:0x801D9218; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4Item = .text:0x801D9280; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9284; // type:function size:0xC scope:global align:4 +init__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D9290; // type:function size:0x8C scope:global align:4 +exec__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4Item = .text:0x801D931C; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4Item = .text:0x801D9384; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9388; // type:function size:0xC scope:global align:4 +init__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D9394; // type:function size:0x58 scope:global align:4 +exec__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4Item = .text:0x801D93EC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4Item = .text:0x801D93F0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D93F4; // type:function size:0x34 scope:global align:4 +init__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D9428; // type:function size:0xEC scope:global align:4 +exec__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4Item = .text:0x801D9514; // type:function size:0x9C scope:global align:4 +cleanup__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4Item = .text:0x801D95B0; // type:function size:0x24 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D95D4; // type:function size:0x38 scope:global align:4 +init__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D960C; // type:function size:0x4C scope:global align:4 +exec__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4Item = .text:0x801D9658; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4Item = .text:0x801D965C; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9660; // type:function size:0xCC scope:global align:4 +init__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D972C; // type:function size:0xAC scope:global align:4 +exec__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4Item = .text:0x801D97D8; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4Item = .text:0x801D9840; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9844; // type:function size:0x14 scope:global align:4 +__ct__Q34Game12ItemPikihead4ItemFv = .text:0x801D9858; // type:function size:0x1D0 scope:global align:4 +__dt__Q23efx8TPkGlow1Fv = .text:0x801D9A28; // type:function size:0x9C scope:weak align:4 +onInit__Q34Game12ItemPikihead4ItemFPQ24Game15CreatureInitArg = .text:0x801D9AC4; // type:function size:0x21C scope:global align:4 +start__Q24Game40StateMachineFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg = .text:0x801D9CE0; // type:function size:0x34 scope:weak align:4 +onKill__Q34Game12ItemPikihead4ItemFPQ24Game15CreatureKillArg = .text:0x801D9D14; // type:function size:0x94 scope:global align:4 +kill__Q24Game44FixedSizeItemMgrFPQ34Game12ItemPikihead4Item = .text:0x801D9DA8; // type:function size:0x24 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801D9DCC; // type:function size:0x4 scope:weak align:4 +needSave__Q34Game12ItemPikihead4ItemFv = .text:0x801D9DD0; // type:function size:0x2C scope:global align:4 +cacheSave__Q34Game12ItemPikihead4ItemFR6Stream = .text:0x801D9DFC; // type:function size:0x5C scope:global align:4 +cacheLoad__Q34Game12ItemPikihead4ItemFR6Stream = .text:0x801D9E58; // type:function size:0xA4 scope:global align:4 +makeTrMatrix__Q34Game12ItemPikihead4ItemFv = .text:0x801D9EFC; // type:function size:0x200 scope:global align:4 +doAI__Q34Game12ItemPikihead4ItemFv = .text:0x801DA0FC; // type:function size:0x140 scope:global align:4 +changeMaterial__Q34Game12ItemPikihead4ItemFv = .text:0x801DA23C; // type:function size:0x14C scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead4ItemFRCQ28SysShape8KeyEvent = .text:0x801DA388; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead5StateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801DA3CC; // type:function size:0x4 scope:weak align:4 +updateBoundSphere__Q34Game12ItemPikihead4ItemFv = .text:0x801DA3D0; // type:function size:0x24 scope:global align:4 +getLODSphere__Q34Game12ItemPikihead4ItemFRQ23Sys6Sphere = .text:0x801DA3F4; // type:function size:0x24 scope:global align:4 +onSetPosition__Q34Game12ItemPikihead4ItemFv = .text:0x801DA418; // type:function size:0x4 scope:global align:4 +doSimulation__Q34Game12ItemPikihead4ItemFf = .text:0x801DA41C; // type:function size:0x74 scope:global align:4 +canPullout__Q34Game12ItemPikihead4ItemFv = .text:0x801DA490; // type:function size:0x2C scope:global align:4 +interactFue__Q34Game12ItemPikihead4ItemFRQ24Game11InteractFue = .text:0x801DA4BC; // type:function size:0x1AC scope:global align:4 +__ct__Q34Game12ItemPikihead3MgrFv = .text:0x801DA668; // type:function size:0xD4 scope:global align:4 +__dt__Q24Game44FixedSizeItemMgrFv = .text:0x801DA73C; // type:function size:0x100 scope:weak align:4 +__dt__41MonoObjectMgrFv = .text:0x801DA83C; // type:function size:0xA0 scope:weak align:4 +__dt__37ContainerFv = .text:0x801DA8DC; // type:function size:0x70 scope:weak align:4 +onLoadResources__Q34Game12ItemPikihead3MgrFv = .text:0x801DA94C; // type:function size:0xAC scope:global align:4 +doSimpleDraw__Q34Game12ItemPikihead3MgrFP8Viewport = .text:0x801DA9F8; // type:function size:0x378 scope:global align:4 +onCreateModel__Q34Game12ItemPikihead3MgrFPQ28SysShape5Model = .text:0x801DAD70; // type:function size:0x6C scope:global align:4 +birth__Q34Game12ItemPikihead3MgrFv = .text:0x801DADDC; // type:function size:0xA0 scope:global align:4 +generatorBirth__Q34Game12ItemPikihead3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801DAE7C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12ItemPikihead3MgrFv = .text:0x801DAEDC; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game12ItemPikihead3MgrFv = .text:0x801DAFF4; // type:function size:0xC scope:weak align:4 +__dt__37ObjectMgrFv = .text:0x801DB000; // type:function size:0x88 scope:weak align:4 +birth__Q24Game44FixedSizeItemMgrFv = .text:0x801DB088; // type:function size:0x2C scope:weak align:4 +getCreatureName__Q34Game12ItemPikihead4ItemFv = .text:0x801DB0B4; // type:function size:0xC scope:weak align:4 +doAI__Q24Game89FSMItemFv = .text:0x801DB0C0; // type:function size:0x34 scope:weak align:4 +onCreateModel__Q24Game44FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801DB0F4; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game44FixedSizeItemMgrFv = .text:0x801DB0F8; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game44FixedSizeItemMgrFv = .text:0x801DB124; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game44FixedSizeItemMgrFi = .text:0x801DB150; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game44FixedSizeItemMgrFv = .text:0x801DB17C; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game44FixedSizeItemMgrFf = .text:0x801DB1A8; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game44FixedSizeItemMgrFR8Graphics = .text:0x801DB1D4; // type:function size:0x2C scope:weak align:4 +initDependency__Q24Game44FixedSizeItemMgrFv = .text:0x801DB200; // type:function size:0x1E8 scope:weak align:4 +getNext__Q24Game44FixedSizeItemMgrFPv = .text:0x801DB3E8; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game44FixedSizeItemMgrFv = .text:0x801DB414; // type:function size:0x2C scope:weak align:4 +createModel__Q24Game44FixedSizeItemMgrFPQ34Game12ItemPikihead4Item = .text:0x801DB440; // type:function size:0x30 scope:weak align:4 +onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801DB470; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game37ItemStateFPQ34Game12ItemPikihead4Itemf = .text:0x801DB4B4; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801DB4B8; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemPQ23Sys8Triangle = .text:0x801DB4BC; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRQ24Game9PlatEvent = .text:0x801DB4C0; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRQ24Game9CollEvent = .text:0x801DB4C4; // type:function size:0x4 scope:weak align:4 +init__Q24Game36FSMStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801DB4C8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801DB4CC; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801DB4D0; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801DB4D4; // type:function size:0x4 scope:weak align:4 +init__Q24Game40StateMachineFPQ34Game12ItemPikihead4Item = .text:0x801DB4D8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game40StateMachineFPQ34Game12ItemPikihead4Item = .text:0x801DB4DC; // type:function size:0x38 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x801DB514; // type:function size:0x64 scope:weak align:4 +birth__41MonoObjectMgrFv = .text:0x801DB578; // type:function size:0x60 scope:weak align:4 +kill__41MonoObjectMgrFPQ34Game12ItemPikihead4Item = .text:0x801DB5D8; // type:function size:0x54 scope:weak align:4 +getNext__41MonoObjectMgrFPv = .text:0x801DB62C; // type:function size:0x40 scope:weak align:4 +getStart__41MonoObjectMgrFv = .text:0x801DB66C; // type:function size:0x30 scope:weak align:4 +getEnd__41MonoObjectMgrFv = .text:0x801DB69C; // type:function size:0x8 scope:weak align:4 +getAt__41MonoObjectMgrFi = .text:0x801DB6A4; // type:function size:0x10 scope:weak align:4 +getTo__41MonoObjectMgrFv = .text:0x801DB6B4; // type:function size:0x8 scope:weak align:4 +doAnimation__41MonoObjectMgrFv = .text:0x801DB6BC; // type:function size:0x80 scope:weak align:4 +doEntry__41MonoObjectMgrFv = .text:0x801DB73C; // type:function size:0x80 scope:weak align:4 +doSetView__41MonoObjectMgrFi = .text:0x801DB7BC; // type:function size:0x90 scope:weak align:4 +doViewCalc__41MonoObjectMgrFv = .text:0x801DB84C; // type:function size:0x80 scope:weak align:4 +doSimulation__41MonoObjectMgrFf = .text:0x801DB8CC; // type:function size:0x90 scope:weak align:4 +doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x801DB95C; // type:function size:0x90 scope:weak align:4 +resetMgr__41MonoObjectMgrFv = .text:0x801DB9EC; // type:function size:0x18 scope:weak align:4 +clearMgr__41MonoObjectMgrFv = .text:0x801DBA04; // type:function size:0x30 scope:weak align:4 +onAlloc__41MonoObjectMgrFv = .text:0x801DBA34; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__41MonoObjectMgrFv = .text:0x801DBA38; // type:function size:0x3C scope:weak align:4 +get__41MonoObjectMgrFPv = .text:0x801DBA74; // type:function size:0x10 scope:weak align:4 +doAnimation__37ObjectMgrFv = .text:0x801DBA84; // type:function size:0x1E4 scope:weak align:4 +doEntry__37ObjectMgrFv = .text:0x801DBC68; // type:function size:0x1E4 scope:weak align:4 +doSetView__37ObjectMgrFi = .text:0x801DBE4C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__37ObjectMgrFv = .text:0x801DC040; // type:function size:0x1E4 scope:weak align:4 +doSimulation__37ObjectMgrFf = .text:0x801DC224; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__37ObjectMgrFR8Graphics = .text:0x801DC418; // type:function size:0x1F4 scope:weak align:4 +getObject__37ContainerFPv = .text:0x801DC60C; // type:function size:0x2C scope:weak align:4 +getAt__37ContainerFi = .text:0x801DC638; // type:function size:0x8 scope:weak align:4 +getTo__37ContainerFv = .text:0x801DC640; // type:function size:0x8 scope:weak align:4 +__ct__41MonoObjectMgrFv = .text:0x801DC648; // type:function size:0x9C scope:weak align:4 +transit__Q24Game40StateMachineFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg = .text:0x801DC6E4; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x801DC780; // type:function size:0x84 scope:weak align:4 +getStateID__Q24Game89FSMItemFv = .text:0x801DC804; // type:function size:0x1C scope:weak align:4 +platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent = .text:0x801DC820; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent = .text:0x801DC864; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle = .text:0x801DC8A8; // type:function size:0x44 scope:weak align:4 +getEnd__Q24Game44FixedSizeItemMgrFv = .text:0x801DC8EC; // type:function size:0x2C scope:weak align:4 +get__Q24Game44FixedSizeItemMgrFPv = .text:0x801DC918; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game44FixedSizeItemMgrFv = .text:0x801DC944; // type:function size:0xE0 scope:weak align:4 +createModelCallback__Q24Game44FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801DCA24; // type:function size:0x2C scope:weak align:4 +createMgr__Q24Game44FixedSizeItemMgrFiUl = .text:0x801DCA50; // type:function size:0xE4 scope:weak align:4 +onAlloc__Q24Game44FixedSizeItemMgrFv = .text:0x801DCB34; // type:function size:0x64 scope:weak align:4 +alloc__41MonoObjectMgrFi = .text:0x801DCB98; // type:function size:0x188 scope:weak align:4 +invoke__83Delegate1,PQ28SysShape5Model>FPQ28SysShape5Model = .text:0x801DCD20; // type:function size:0x30 scope:weak align:4 +__sinit_itemPikihead_cpp = .text:0x801DCD50; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801DCD78; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TPkGlow1Fv = .text:0x801DCD80; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game12ItemPikihead4ItemFRCQ28SysShape8KeyEvent = .text:0x801DCD88; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game44FixedSizeItemMgrFv = .text:0x801DCD90; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__41MonoObjectMgrFv = .text:0x801DCD98; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x801DCDA0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__41MonoObjectMgrFf = .text:0x801DCDA8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__41MonoObjectMgrFv = .text:0x801DCDB0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__41MonoObjectMgrFi = .text:0x801DCDB8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__41MonoObjectMgrFv = .text:0x801DCDC0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__41MonoObjectMgrFv = .text:0x801DCDC8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37ObjectMgrFR8Graphics = .text:0x801DCDD0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37ObjectMgrFf = .text:0x801DCDD8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37ObjectMgrFv = .text:0x801DCDE0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37ObjectMgrFi = .text:0x801DCDE8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37ObjectMgrFv = .text:0x801DCDF0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37ObjectMgrFv = .text:0x801DCDF8; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game44FixedSizeItemMgrFv = .text:0x801DCE00; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game44FixedSizeItemMgrFv = .text:0x801DCE08; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game44FixedSizeItemMgrFPv = .text:0x801DCE10; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game44FixedSizeItemMgrFPv = .text:0x801DCE18; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game12ItemPikihead3MgrFv = .text:0x801DCE20; // type:function size:0x8 scope:weak align:4 +init__Q34Game9ItemPlant3FSMFPQ34Game9ItemPlant4Item = .text:0x801DCE28; // type:function size:0x18C scope:global align:4 +init__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DCFB4; // type:function size:0x34 scope:global align:4 +startMotion__Q34Game9ItemPlant4ItemFi = .text:0x801DCFE8; // type:function size:0x4 scope:weak align:4 +exec__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item = .text:0x801DCFEC; // type:function size:0x128 scope:global align:4 +bearFruits__Q34Game9ItemPlant4ItemFv = .text:0x801DD114; // type:function size:0x4 scope:weak align:4 +transit__Q24Game32FSMStateFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg = .text:0x801DD118; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item = .text:0x801DD148; // type:function size:0x4 scope:global align:4 +eventKarero__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item = .text:0x801DD14C; // type:function size:0x34 scope:global align:4 +onDamage__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD180; // type:function size:0x5C scope:global align:4 +init__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DD1DC; // type:function size:0x48 scope:global align:4 +exec__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item = .text:0x801DD224; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item = .text:0x801DD228; // type:function size:0x4 scope:global align:4 +eventKarero__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item = .text:0x801DD22C; // type:function size:0xC scope:global align:4 +onKeyEvent__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801DD238; // type:function size:0x5C scope:global align:4 +onDamage__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD294; // type:function size:0x24 scope:global align:4 +init__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DD2B8; // type:function size:0x74 scope:global align:4 +exec__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item = .text:0x801DD32C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item = .text:0x801DD330; // type:function size:0x4 scope:global align:4 +eventKarero__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item = .text:0x801DD334; // type:function size:0xC scope:global align:4 +onKeyEvent__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801DD340; // type:function size:0x120 scope:global align:4 +onDamage__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD460; // type:function size:0x24 scope:global align:4 +init__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DD484; // type:function size:0x7C scope:global align:4 +killFruits__Q34Game9ItemPlant4ItemFv = .text:0x801DD500; // type:function size:0x4 scope:weak align:4 +exec__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item = .text:0x801DD504; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item = .text:0x801DD590; // type:function size:0x4 scope:global align:4 +eventHaero__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item = .text:0x801DD594; // type:function size:0x18 scope:global align:4 +onKeyEvent__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801DD5AC; // type:function size:0xA4 scope:global align:4 +onDamage__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD650; // type:function size:0x4 scope:global align:4 +constructor__Q34Game9ItemPlant4ItemFv = .text:0x801DD654; // type:function size:0x48 scope:global align:4 +onInit__Q34Game9ItemPlant4ItemFPQ24Game15CreatureInitArg = .text:0x801DD69C; // type:function size:0x58 scope:global align:4 +onStickStart__Q34Game9ItemPlant4ItemFPQ24Game8Creature = .text:0x801DD6F4; // type:function size:0x28 scope:global align:4 +onStickEnd__Q34Game9ItemPlant4ItemFPQ24Game8Creature = .text:0x801DD71C; // type:function size:0x3C scope:global align:4 +onSetPosition__Q34Game9ItemPlant4ItemFv = .text:0x801DD758; // type:function size:0x28 scope:global align:4 +updateTrMatrix__Q34Game9ItemPlant4ItemFv = .text:0x801DD780; // type:function size:0x44 scope:global align:4 +startColorMotion__Q34Game9ItemPlant4ItemFi = .text:0x801DD7C4; // type:function size:0x28 scope:global align:4 +updateColorMotion__Q34Game9ItemPlant4ItemFf = .text:0x801DD7EC; // type:function size:0x90 scope:global align:4 +doAI__Q34Game9ItemPlant4ItemFv = .text:0x801DD87C; // type:function size:0x34 scope:global align:4 +interactAttack__Q34Game9ItemPlant4ItemFRQ24Game14InteractAttack = .text:0x801DD8B0; // type:function size:0x44 scope:global align:4 +onDamage__Q24Game33ItemStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD8F4; // type:function size:0x4 scope:weak align:4 +interactFarmKarero__Q34Game9ItemPlant4ItemFRQ24Game18InteractFarmKarero = .text:0x801DD8F8; // type:function size:0x38 scope:global align:4 +eventKarero__Q34Game9ItemPlant5StateFPQ34Game9ItemPlant4Item = .text:0x801DD930; // type:function size:0x4 scope:weak align:4 +interactFarmHaero__Q34Game9ItemPlant4ItemFRQ24Game17InteractFarmHaero = .text:0x801DD934; // type:function size:0x38 scope:global align:4 +eventHaero__Q34Game9ItemPlant5StateFPQ34Game9ItemPlant4Item = .text:0x801DD96C; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q34Game9ItemPlant4ItemFR8Graphics = .text:0x801DD970; // type:function size:0x120 scope:global align:4 +addDamage__Q34Game9ItemPlant4ItemFf = .text:0x801DDA90; // type:function size:0x294 scope:global align:4 +dropFruit__Q34Game9ItemPlant4ItemFi = .text:0x801DDD24; // type:function size:0x4 scope:weak align:4 +calcAngles__Q34Game9ItemPlant12ProcAnimatorFv = .text:0x801DDD28; // type:function size:0x318 scope:global align:4 +update__Q34Game9ItemPlant12ProcAnimatorFff = .text:0x801DE040; // type:function size:0x4E4 scope:global align:4 +onKill__Q34Game9ItemPlant5PlantFPQ24Game15CreatureKillArg = .text:0x801DE524; // type:function size:0x34 scope:global align:4 +getNearestFruit__Q34Game9ItemPlant5PlantFR10Vector3 = .text:0x801DE558; // type:function size:0x38 scope:global align:4 +updateBoundSphere__Q34Game9ItemPlant5PlantFv = .text:0x801DE590; // type:function size:0x24 scope:global align:4 +doDirectDraw__Q34Game9ItemPlant5PlantFR8Graphics = .text:0x801DE5B4; // type:function size:0x1E0 scope:global align:4 +onInit__Q34Game9ItemPlant5PlantFPQ24Game15CreatureInitArg = .text:0x801DE794; // type:function size:0x778 scope:global align:4 +start__Q24Game36StateMachineFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg = .text:0x801DEF0C; // type:function size:0x34 scope:weak align:4 +doAI__Q34Game9ItemPlant5PlantFv = .text:0x801DEF40; // type:function size:0x80 scope:global align:4 +startMotion__Q34Game9ItemPlant5PlantFi = .text:0x801DEFC0; // type:function size:0x370 scope:global align:4 +setColor__Q34Game9ItemPlant5PlantFf = .text:0x801DF330; // type:function size:0x18 scope:global align:4 +do_updateLOD__Q34Game9ItemPlant5PlantFv = .text:0x801DF348; // type:function size:0x20 scope:global align:4 +doAnimation__Q34Game9ItemPlant5PlantFv = .text:0x801DF368; // type:function size:0x2B0 scope:global align:4 +bearFruits__Q34Game9ItemPlant5PlantFv = .text:0x801DF618; // type:function size:0x2C scope:global align:4 +killFruits__Q34Game9ItemPlant5PlantFv = .text:0x801DF644; // type:function size:0x24 scope:global align:4 +dropFruit__Q34Game9ItemPlant5PlantFi = .text:0x801DF668; // type:function size:0x80 scope:global align:4 +hasFruits__Q34Game9ItemPlant5PlantFv = .text:0x801DF6E8; // type:function size:0x24 scope:global align:4 +getFruitsNum__Q34Game9ItemPlant5PlantFv = .text:0x801DF70C; // type:function size:0x24 scope:global align:4 +interactEat__Q34Game9ItemPlant5PlantFRQ24Game11InteractEat = .text:0x801DF730; // type:function size:0x1D0 scope:global align:4 +__ct__Q34Game9ItemPlant3MgrFv = .text:0x801DF900; // type:function size:0x120 scope:global align:4 +read__Q34Game9ItemPlant10PlantParmsFR6Stream = .text:0x801DFA20; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game9ItemPlant10PlantParmsFv = .text:0x801DFA44; // type:function size:0x318 scope:weak align:4 +birth__Q34Game9ItemPlant3MgrFv = .text:0x801DFD5C; // type:function size:0x130 scope:global align:4 +onLoadResources__Q34Game9ItemPlant3MgrFv = .text:0x801DFE8C; // type:function size:0xB4 scope:global align:4 +generatorNewItemParm__Q34Game9ItemPlant3MgrFv = .text:0x801DFF40; // type:function size:0x4C scope:global align:4 +generatorWrite__Q34Game9ItemPlant3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801DFF8C; // type:function size:0x88 scope:global align:4 +generatorRead__Q34Game9ItemPlant3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801E0014; // type:function size:0x88 scope:global align:4 +generatorBirth__Q34Game9ItemPlant3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801E009C; // type:function size:0xB4 scope:global align:4 +init__Q34Game9ItemPlant6FruitsFiP7Matrixf = .text:0x801E0150; // type:function size:0x74 scope:global align:4 +__dt__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E01C4; // type:function size:0x60 scope:weak align:4 +update__Q34Game9ItemPlant6FruitsFv = .text:0x801E0224; // type:function size:0x64 scope:global align:4 +bearAll__Q34Game9ItemPlant6FruitsFUs = .text:0x801E0288; // type:function size:0x2B4 scope:global align:4 +hasFruits__Q34Game9ItemPlant6FruitsFv = .text:0x801E053C; // type:function size:0x40 scope:global align:4 +countFruits__Q34Game9ItemPlant6FruitsFv = .text:0x801E057C; // type:function size:0x40 scope:global align:4 +killAll__Q34Game9ItemPlant6FruitsFv = .text:0x801E05BC; // type:function size:0x64 scope:global align:4 +getFruit__Q34Game9ItemPlant6FruitsFR10Vector3 = .text:0x801E0620; // type:function size:0x10C scope:global align:4 +__ct__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E072C; // type:function size:0x4C scope:global align:4 +setFruit__Q34Game9ItemPlant9FruitSlotFPQ24Game6PelletP7MatrixfR7Matrixf = .text:0x801E0778; // type:function size:0x50 scope:global align:4 +dropFruit__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E07C8; // type:function size:0x40 scope:global align:4 +killFruit__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E0808; // type:function size:0x44 scope:global align:4 +update__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E084C; // type:function size:0x34 scope:global align:4 +__dt__Q34Game9ItemPlant3MgrFv = .text:0x801E0880; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game9ItemPlant3MgrFv = .text:0x801E09B4; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game9ItemPlant3MgrFv = .text:0x801E0ACC; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game9ItemPlant3MgrFv = .text:0x801E0AD8; // type:function size:0xC scope:weak align:4 +changeMaterial__Q34Game9ItemPlant4ItemFv = .text:0x801E0AE4; // type:function size:0x30 scope:weak align:4 +setColor__Q34Game9ItemPlant4ItemFf = .text:0x801E0B14; // type:function size:0x4 scope:weak align:4 +hasFruits__Q34Game9ItemPlant4ItemFv = .text:0x801E0B18; // type:function size:0x8 scope:weak align:4 +getFruitsNum__Q34Game9ItemPlant4ItemFv = .text:0x801E0B20; // type:function size:0x8 scope:weak align:4 +getNearestFruit__Q34Game9ItemPlant4ItemFR10Vector3 = .text:0x801E0B28; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game77FSMItemFv = .text:0x801E0B30; // type:function size:0x34 scope:weak align:4 +onKeyEvent__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801E0B64; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemPQ23Sys8Triangle = .text:0x801E0B68; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRQ24Game9PlatEvent = .text:0x801E0B6C; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRQ24Game9CollEvent = .text:0x801E0B70; // type:function size:0x4 scope:weak align:4 +init__Q24Game32FSMStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801E0B74; // type:function size:0x4 scope:weak align:4 +exec__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B78; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B7C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B80; // type:function size:0x4 scope:weak align:4 +restart__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B84; // type:function size:0x4 scope:weak align:4 +init__Q24Game36StateMachineFPQ34Game9ItemPlant4Item = .text:0x801E0B88; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36StateMachineFPQ34Game9ItemPlant4Item = .text:0x801E0B8C; // type:function size:0x38 scope:weak align:4 +create__Q24Game36StateMachineFi = .text:0x801E0BC4; // type:function size:0x64 scope:weak align:4 +transit__Q24Game36StateMachineFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg = .text:0x801E0C28; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game36StateMachineFPQ24Game32FSMState = .text:0x801E0CC4; // type:function size:0x84 scope:weak align:4 +onKeyEvent__Q24Game77FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E0D48; // type:function size:0x44 scope:weak align:4 +getStateID__Q24Game77FSMItemFv = .text:0x801E0D8C; // type:function size:0x1C scope:weak align:4 +platCallback__Q24Game77FSMItemFRQ24Game9PlatEvent = .text:0x801E0DA8; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game77FSMItemFRQ24Game9CollEvent = .text:0x801E0DEC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game77FSMItemFPQ23Sys8Triangle = .text:0x801E0E30; // type:function size:0x44 scope:weak align:4 +@376@onKeyEvent__Q24Game77FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E0E74; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game9ItemPlant3MgrFv = .text:0x801E0E7C; // type:function size:0x8 scope:weak align:4 +init__Q34Game8ItemRock3FSMFPQ34Game8ItemRock4Item = .text:0x801E0E84; // type:function size:0x134 scope:global align:4 +init__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E0FB8; // type:function size:0x3C scope:global align:4 +exec__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Item = .text:0x801E0FF4; // type:function size:0x90 scope:global align:4 +transit__Q24Game31FSMStateFPQ34Game8ItemRock4ItemiPQ24Game8StateArg = .text:0x801E1084; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Item = .text:0x801E10B4; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Itemf = .text:0x801E10B8; // type:function size:0xBC scope:global align:4 +onKeyEvent__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E1174; // type:function size:0xF8 scope:global align:4 +init__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E126C; // type:function size:0x48 scope:global align:4 +exec__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Item = .text:0x801E12B4; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Item = .text:0x801E12B8; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Itemf = .text:0x801E12BC; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E12CC; // type:function size:0xF0 scope:global align:4 +init__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E13BC; // type:function size:0x58 scope:global align:4 +exec__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Item = .text:0x801E1414; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Item = .text:0x801E1418; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Itemf = .text:0x801E141C; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E142C; // type:function size:0xCC scope:global align:4 +constructor__Q34Game8ItemRock4ItemFv = .text:0x801E14F8; // type:function size:0x48 scope:global align:4 +onInit__Q34Game8ItemRock4ItemFPQ24Game15CreatureInitArg = .text:0x801E1540; // type:function size:0x20C scope:global align:4 +start__Q24Game35StateMachineFPQ34Game8ItemRock4ItemiPQ24Game8StateArg = .text:0x801E174C; // type:function size:0x34 scope:weak align:4 +onKill__Q34Game8ItemRock4ItemFPQ24Game15CreatureKillArg = .text:0x801E1780; // type:function size:0x34 scope:global align:4 +onSetPosition__Q34Game8ItemRock4ItemFv = .text:0x801E17B4; // type:function size:0x5C scope:global align:4 +onKeyEvent__Q34Game8ItemRock4ItemFRCQ28SysShape8KeyEvent = .text:0x801E1810; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E1854; // type:function size:0x4 scope:weak align:4 +startLoopEffect__Q34Game8ItemRock4ItemFv = .text:0x801E1858; // type:function size:0x10C scope:global align:4 +finishLoopEffect__Q34Game8ItemRock4ItemFv = .text:0x801E1964; // type:function size:0x64 scope:global align:4 +startFukuEffect__Q34Game8ItemRock4ItemFR10Vector3 = .text:0x801E19C8; // type:function size:0xB0 scope:global align:4 +doLoad__Q34Game8ItemRock4ItemFR6Stream = .text:0x801E1A78; // type:function size:0x204 scope:global align:4 +doSave__Q34Game8ItemRock4ItemFR6Stream = .text:0x801E1C7C; // type:function size:0x58 scope:global align:4 +updateBoundSphere__Q34Game8ItemRock4ItemFv = .text:0x801E1CD4; // type:function size:0x48 scope:global align:4 +doAI__Q34Game8ItemRock4ItemFv = .text:0x801E1D1C; // type:function size:0x1B4 scope:global align:4 +initMotion__Q34Game8ItemRock4ItemFv = .text:0x801E1ED0; // type:function size:0x20 scope:global align:4 +on_movie_end__Q34Game8ItemRock4ItemFb = .text:0x801E1EF0; // type:function size:0x20 scope:global align:4 +startWaitMotion__Q34Game8ItemRock4ItemFv = .text:0x801E1F10; // type:function size:0x12C scope:global align:4 +startDamageMotion__Q34Game8ItemRock4ItemFv = .text:0x801E203C; // type:function size:0x9C scope:global align:4 +startDownMotion__Q34Game8ItemRock4ItemFv = .text:0x801E20D8; // type:function size:0x28C scope:global align:4 +startUpMotion__Q34Game8ItemRock4ItemFv = .text:0x801E2364; // type:function size:0xEC scope:global align:4 +getVectorField__Q34Game8ItemRock4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801E2450; // type:function size:0x114 scope:global align:4 +getWorkDistance__Q34Game8ItemRock4ItemFRQ23Sys6Sphere = .text:0x801E2564; // type:function size:0x88 scope:global align:4 +createRock__Q34Game8ItemRock4ItemFi = .text:0x801E25EC; // type:function size:0x194 scope:global align:4 +interactAttack__Q34Game8ItemRock4ItemFRQ24Game14InteractAttack = .text:0x801E2780; // type:function size:0x174 scope:global align:4 +onDamage__Q34Game8ItemRock5StateFPQ34Game8ItemRock4Itemf = .text:0x801E28F4; // type:function size:0x4 scope:weak align:4 +getWorkRadius__Q34Game8ItemRock4ItemFv = .text:0x801E28F8; // type:function size:0x28 scope:global align:4 +__ct__Q34Game8ItemRock3MgrFv = .text:0x801E2920; // type:function size:0x120 scope:global align:4 +read__Q34Game8ItemRock9RockParmsFR6Stream = .text:0x801E2A40; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game8ItemRock9RockParmsFv = .text:0x801E2A64; // type:function size:0x1A4 scope:weak align:4 +__ct__Q44Game8ItemRock9RockParms5ParmsFv = .text:0x801E2C08; // type:function size:0x2F0 scope:weak align:4 +birth__Q34Game8ItemRock3MgrFv = .text:0x801E2EF8; // type:function size:0x110 scope:global align:4 +generatorBirth__Q34Game8ItemRock3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801E3008; // type:function size:0x60 scope:global align:4 +onLoadResources__Q34Game8ItemRock3MgrFv = .text:0x801E3068; // type:function size:0xA8 scope:global align:4 +__dt__Q34Game8ItemRock3MgrFv = .text:0x801E3110; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemRock3MgrFv = .text:0x801E3244; // type:function size:0xF8 scope:weak align:4 +generatorGetID__Q34Game8ItemRock3MgrFv = .text:0x801E333C; // type:function size:0xC scope:weak align:4 +getName__Q23efx9ArgKouhaiFv = .text:0x801E3348; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemRock4ItemFv = .text:0x801E3354; // type:function size:0xC scope:weak align:4 +doAI__Q24Game74FSMItemFv = .text:0x801E3360; // type:function size:0x34 scope:weak align:4 +onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E3394; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game32ItemStateFPQ34Game8ItemRock4Itemf = .text:0x801E33D8; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game32ItemStateFPQ34Game8ItemRock4ItemPQ23Sys8Triangle = .text:0x801E33DC; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRQ24Game9PlatEvent = .text:0x801E33E0; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRQ24Game9CollEvent = .text:0x801E33E4; // type:function size:0x4 scope:weak align:4 +init__Q24Game31FSMStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E33E8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33EC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33F0; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33F4; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33F8; // type:function size:0x4 scope:weak align:4 +init__Q24Game35StateMachineFPQ34Game8ItemRock4Item = .text:0x801E33FC; // type:function size:0x4 scope:weak align:4 +exec__Q24Game35StateMachineFPQ34Game8ItemRock4Item = .text:0x801E3400; // type:function size:0x38 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x801E3438; // type:function size:0x64 scope:weak align:4 +transit__Q24Game35StateMachineFPQ34Game8ItemRock4ItemiPQ24Game8StateArg = .text:0x801E349C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x801E3538; // type:function size:0x84 scope:weak align:4 +platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent = .text:0x801E35BC; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent = .text:0x801E3600; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle = .text:0x801E3644; // type:function size:0x44 scope:weak align:4 +@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E3688; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game8ItemRock4ItemFRCQ28SysShape8KeyEvent = .text:0x801E3690; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game8ItemRock3MgrFv = .text:0x801E3698; // type:function size:0x8 scope:weak align:4 +__ct__Q26PikiAI12ActBreakRockFPQ24Game4Piki = .text:0x801E36A0; // type:function size:0xF8 scope:global align:4 +init__Q26PikiAI12ActBreakRockFPQ26PikiAI9ActionArg = .text:0x801E3798; // type:function size:0xC0 scope:global align:4 +initFollow__Q26PikiAI12ActBreakRockFv = .text:0x801E3858; // type:function size:0x68 scope:global align:4 +exec__Q26PikiAI12ActBreakRockFv = .text:0x801E38C0; // type:function size:0x32C scope:global align:4 +cleanup__Q26PikiAI12ActBreakRockFv = .text:0x801E3BEC; // type:function size:0x5C scope:global align:4 +platCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x801E3C48; // type:function size:0xF0 scope:global align:4 +collisionCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801E3D38; // type:function size:0xFC scope:global align:4 +bounceCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801E3E34; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI12ActBreakRockFRCQ28SysShape8KeyEvent = .text:0x801E3E38; // type:function size:0x4 scope:global align:4 +@48@4@onKeyEvent__Q26PikiAI12ActBreakRockFRCQ28SysShape8KeyEvent = .text:0x801E3E3C; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI7ActCropFPQ24Game4Piki = .text:0x801E3E50; // type:function size:0xD4 scope:global align:4 +init__Q26PikiAI7ActCropFPQ26PikiAI9ActionArg = .text:0x801E3F24; // type:function size:0x108 scope:global align:4 +execClimb__Q26PikiAI7ActCropFv = .text:0x801E402C; // type:function size:0x2C8 scope:global align:4 +initGoto__Q26PikiAI7ActCropFv = .text:0x801E42F4; // type:function size:0x98 scope:global align:4 +initAttack__Q26PikiAI7ActCropFv = .text:0x801E438C; // type:function size:0xFC scope:global align:4 +exec__Q26PikiAI7ActCropFv = .text:0x801E4488; // type:function size:0x6AC scope:global align:4 +cleanup__Q26PikiAI7ActCropFv = .text:0x801E4B34; // type:function size:0x40 scope:global align:4 +collisionCallback__Q26PikiAI7ActCropFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801E4B74; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI7ActCropFRCQ28SysShape8KeyEvent = .text:0x801E4B78; // type:function size:0x4 scope:global align:4 +getNextAIType__Q26PikiAI7ActCropFv = .text:0x801E4B7C; // type:function size:0x8 scope:weak align:4 +@64@4@onKeyEvent__Q26PikiAI7ActCropFRCQ28SysShape8KeyEvent = .text:0x801E4B84; // type:function size:0x14 scope:weak align:4 +createManagers__Q24Game7ItemMgrFUl = .text:0x801E4B98; // type:function size:0x664 scope:global align:4 +clearGlobalPointers__Q24Game7ItemMgrFv = .text:0x801E51FC; // type:function size:0x48 scope:global align:4 +killAllExceptOnyonMgr__Q24Game7ItemMgrFv = .text:0x801E5244; // type:function size:0xE8 scope:global align:4 +__sinit_registItem_cpp = .text:0x801E532C; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11KindCounterFv = .text:0x801E5354; // type:function size:0x10 scope:global align:4 +alloc__Q24Game11KindCounterFi = .text:0x801E5364; // type:function size:0x74 scope:global align:4 +clear__Q24Game11KindCounterFv = .text:0x801E53D8; // type:function size:0x28 scope:global align:4 +__cl__Q24Game11KindCounterFi = .text:0x801E5400; // type:function size:0x78 scope:global align:4 +createClone__Q24Game16PelletCropMemoryFv = .text:0x801E5478; // type:function size:0x280 scope:global align:4 +addTo__Q24Game16PelletCropMemoryFPQ24Game16PelletCropMemory = .text:0x801E56F8; // type:function size:0x148 scope:global align:4 +clear__Q24Game16PelletCropMemoryFv = .text:0x801E5840; // type:function size:0x70 scope:global align:4 +calcEarnKinds__Q24Game16PelletCropMemoryFv = .text:0x801E58B0; // type:function size:0x48 scope:global align:4 +firstCarryPellet__Q24Game17PelletFirstMemoryFPQ24Game6Pellet = .text:0x801E58F8; // type:function size:0x2C8 scope:global align:4 +obtainPellet__Q24Game17PelletFirstMemoryFPQ24Game13BasePelletMgri = .text:0x801E5BC0; // type:function size:0x154 scope:global align:4 +losePellet__Q24Game17PelletFirstMemoryFPQ24Game13BasePelletMgri = .text:0x801E5D14; // type:function size:0x154 scope:global align:4 +isCompletePelletTrigger__Q24Game8PlayDataFv = .text:0x801E5E68; // type:function size:0x4C scope:global align:4 +completeAll__Q24Game16PelletCropMemoryFv = .text:0x801E5EB4; // type:function size:0x58 scope:global align:4 +completeAll__Q24Game11KindCounterFv = .text:0x801E5F0C; // type:function size:0x3C scope:global align:4 +getEarnKinds__Q24Game11KindCounterFv = .text:0x801E5F48; // type:function size:0x3C scope:global align:4 +__ct__Q24Game10OlimarDataFv = .text:0x801E5F84; // type:function size:0x3C scope:global align:4 +clear__Q24Game10OlimarDataFv = .text:0x801E5FC0; // type:function size:0x10 scope:global align:4 +hasItem__Q24Game10OlimarDataFi = .text:0x801E5FD0; // type:function size:0x98 scope:global align:4 +getItem__Q24Game10OlimarDataFi = .text:0x801E6068; // type:function size:0xCC scope:global align:4 +construct__Q24Game8PlayDataFv = .text:0x801E6134; // type:function size:0x84 scope:global align:4 +__ct__Q24Game8PlayDataFv = .text:0x801E61B8; // type:function size:0x854 scope:global align:4 +__ct__Q34Game8PlayData11CaveOtakaraFv = .text:0x801E6A0C; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game8PlayData8LimitGenFv = .text:0x801E6A20; // type:function size:0x38 scope:weak align:4 +__dt__Q24Game8PlayDataFv = .text:0x801E6A58; // type:function size:0x68 scope:global align:4 +reset__Q24Game8PlayDataFv = .text:0x801E6AC0; // type:function size:0x3D0 scope:global align:4 +setDevelopSetting__Q24Game8PlayDataFbb = .text:0x801E6E90; // type:function size:0xC8 scope:global align:4 +calcPlayMinutes__Q24Game8PlayDataFv = .text:0x801E6F58; // type:function size:0xB4 scope:global align:4 +resetContainerFlag__Q24Game8PlayDataFv = .text:0x801E700C; // type:function size:0x14 scope:global align:4 +hasContainer__Q24Game8PlayDataFi = .text:0x801E7020; // type:function size:0x88 scope:global align:4 +hasMetPikmin__Q24Game8PlayDataFi = .text:0x801E70A8; // type:function size:0x30 scope:global align:4 +hasBootContainer__Q24Game8PlayDataFi = .text:0x801E70D8; // type:function size:0xA4 scope:global align:4 +setContainer__Q24Game8PlayDataFi = .text:0x801E717C; // type:function size:0x80 scope:global align:4 +setMeetPikmin__Q24Game8PlayDataFi = .text:0x801E71FC; // type:function size:0x80 scope:global align:4 +setBootContainer__Q24Game8PlayDataFi = .text:0x801E727C; // type:function size:0x80 scope:global align:4 +debugSetContainerFlagOn__Q24Game8PlayDataFv = .text:0x801E72FC; // type:function size:0xA8 scope:global align:4 +setDemoFlag__Q24Game8PlayDataFi = .text:0x801E73A4; // type:function size:0x3C scope:global align:4 +isDemoFlag__Q24Game8PlayDataFi = .text:0x801E73E0; // type:function size:0x28 scope:global align:4 +setFindItemDemoFlag__Q24Game8PlayDataFi = .text:0x801E7408; // type:function size:0x3C scope:global align:4 +isFindItemDemoFlag__Q24Game8PlayDataFi = .text:0x801E7444; // type:function size:0x28 scope:global align:4 +setCurrentCourse__Q24Game8PlayDataFi = .text:0x801E746C; // type:function size:0x8 scope:global align:4 +clearCurrentCave__Q24Game8PlayDataFv = .text:0x801E7474; // type:function size:0xC scope:global align:4 +setCurrentCave__Q24Game8PlayDataFR4ID32i = .text:0x801E7480; // type:function size:0x4C scope:global align:4 +setCurrentCaveFloor__Q24Game8PlayDataFi = .text:0x801E74CC; // type:function size:0x10 scope:global align:4 +getCurrentCourseIndex__Q24Game8PlayDataFv = .text:0x801E74DC; // type:function size:0x8 scope:global align:4 +getCurrentCourse__Q24Game8PlayDataFv = .text:0x801E74E4; // type:function size:0x38 scope:global align:4 +getCurrentCave__Q24Game8PlayDataFR4ID32Ri = .text:0x801E751C; // type:function size:0x48 scope:global align:4 +firstCarryPellet__Q24Game8PlayDataFPQ24Game6Pellet = .text:0x801E7564; // type:function size:0x30 scope:global align:4 +obtainPellet__Q24Game8PlayDataFPQ24Game13BasePelletMgri = .text:0x801E7594; // type:function size:0x30 scope:global align:4 +losePellet__Q24Game8PlayDataFPQ24Game13BasePelletMgri = .text:0x801E75C4; // type:function size:0x30 scope:global align:4 +obtainPellet_Main__Q24Game8PlayDataFPQ24Game6Pellet = .text:0x801E75F4; // type:function size:0x320 scope:global align:4 +obtainPellet_Cave__Q24Game8PlayDataFPQ24Game6Pellet = .text:0x801E7914; // type:function size:0x284 scope:global align:4 +isPelletEverGot__Q24Game8PlayDataFUcUc = .text:0x801E7B98; // type:function size:0x104 scope:global align:4 +isPelletZukanVisible__Q24Game8PlayDataFi = .text:0x801E7C9C; // type:function size:0x128 scope:global align:4 +isPelletZukanWhatsNew__Q24Game8PlayDataFi = .text:0x801E7DC4; // type:function size:0x138 scope:global align:4 +hasPelletZukanWhatsNew__Q24Game8PlayDataFv = .text:0x801E7EFC; // type:function size:0x1BC scope:global align:4 +setPelletZukanOutOfDateAll__Q24Game8PlayDataFv = .text:0x801E80B8; // type:function size:0x1A8 scope:global align:4 +getGroundOtakaraNum__Q24Game8PlayDataFi = .text:0x801E8260; // type:function size:0x7C scope:global align:4 +getGroundOtakaraMax__Q24Game8PlayDataFi = .text:0x801E82DC; // type:function size:0x78 scope:global align:4 +incGroundOtakara__Q24Game8PlayDataFi = .text:0x801E8354; // type:function size:0x84 scope:global align:4 +getDopeCount__Q24Game8PlayDataFi = .text:0x801E83D8; // type:function size:0x78 scope:global align:4 +setDopeCount__Q24Game8PlayDataFii = .text:0x801E8450; // type:function size:0x84 scope:global align:4 +incDopeCount__Q24Game8PlayDataFi = .text:0x801E84D4; // type:function size:0x80 scope:global align:4 +hasDope__Q24Game8PlayDataFi = .text:0x801E8554; // type:function size:0x84 scope:global align:4 +getDopeFruitCount__Q24Game8PlayDataFi = .text:0x801E85D8; // type:function size:0x78 scope:global align:4 +addDopeFruit__Q24Game8PlayDataFi = .text:0x801E8650; // type:function size:0xB4 scope:global align:4 +useDope__Q24Game8PlayDataFi = .text:0x801E8704; // type:function size:0xC4 scope:global align:4 +isCaveFirstTime__Q24Game8PlayDataFiR4ID32 = .text:0x801E87C8; // type:function size:0xDC scope:global align:4 +setCaveVisit__Q24Game8PlayDataFiR4ID32 = .text:0x801E88A4; // type:function size:0xBC scope:global align:4 +incCaveOtakara__Q24Game8PlayDataFiR4ID32 = .text:0x801E8960; // type:function size:0xB8 scope:global align:4 +getOtakaraNum_Course_CaveID__Q24Game8PlayDataFiR4ID32 = .text:0x801E8A18; // type:function size:0xB8 scope:global align:4 +getOtakaraMax_Course_CaveID__Q24Game8PlayDataFiR4ID32 = .text:0x801E8AD0; // type:function size:0x48 scope:global align:4 +initCaveOtakaras__Q24Game8PlayDataFv = .text:0x801E8B18; // type:function size:0xD4 scope:global align:4 +read_CaveOtakara__Q24Game8PlayDataFR6Stream = .text:0x801E8BEC; // type:function size:0x60 scope:global align:4 +write_CaveOtakara__Q24Game8PlayDataFR6Stream = .text:0x801E8C4C; // type:function size:0x78 scope:global align:4 +write__Q34Game8PlayData11CaveOtakaraFR6Stream = .text:0x801E8CC4; // type:function size:0xD8 scope:global align:4 +read__Q34Game8PlayData11CaveOtakaraFR6Stream = .text:0x801E8D9C; // type:function size:0xC0 scope:global align:4 +getRepayLevel__Q24Game8PlayDataFv = .text:0x801E8E5C; // type:function size:0x124 scope:global align:4 +getRepayLevelPercent__Q24Game8PlayDataFi = .text:0x801E8F80; // type:function size:0x44 scope:global align:4 +checkRepayLevelFirstClear__Q24Game8PlayDataFv = .text:0x801E8FC4; // type:function size:0x160 scope:global align:4 +experienceRepayLevelFirstClear__Q24Game8PlayDataFv = .text:0x801E9124; // type:function size:0x174 scope:global align:4 +initLimitGens__Q24Game8PlayDataFv = .text:0x801E9298; // type:function size:0x64 scope:global align:4 +initCourses__Q24Game8PlayDataFb = .text:0x801E92FC; // type:function size:0x6C scope:global align:4 +openCourse__Q24Game8PlayDataFi = .text:0x801E9368; // type:function size:0x94 scope:global align:4 +visitCourse__Q24Game8PlayDataFi = .text:0x801E93FC; // type:function size:0x84 scope:global align:4 +courseOpen__Q24Game8PlayDataFi = .text:0x801E9480; // type:function size:0x80 scope:global align:4 +courseJustOpen__Q24Game8PlayDataFi = .text:0x801E9500; // type:function size:0xE4 scope:global align:4 +courseFirstTime__Q24Game8PlayDataFi = .text:0x801E95E4; // type:function size:0xDC scope:global align:4 +courseVisited__Q24Game8PlayDataFi = .text:0x801E96C0; // type:function size:0x80 scope:global align:4 +__ct__Q24Game12CaveSaveDataFv = .text:0x801E9740; // type:function size:0x84 scope:global align:4 +clear__Q24Game12CaveSaveDataFv = .text:0x801E97C4; // type:function size:0x68 scope:global align:4 +doneWorldMapEffect__Q24Game8PlayDataFv = .text:0x801E982C; // type:function size:0x194 scope:global align:4 +getGroundOtakaraNum_Old__Q24Game8PlayDataFi = .text:0x801E99C0; // type:function size:0x7C scope:global align:4 +getOtakaraNum_Course_CaveID_Old__Q24Game8PlayDataFiR4ID32 = .text:0x801E9A3C; // type:function size:0xB8 scope:global align:4 +getMoney_Old__Q24Game8PlayDataFv = .text:0x801E9AF4; // type:function size:0x8 scope:global align:4 +isCaveFirstTime_Old__Q24Game8PlayDataFiR4ID32 = .text:0x801E9AFC; // type:function size:0xA4 scope:global align:4 +read_CaveOtakara_Old__Q24Game8PlayDataFR6Stream = .text:0x801E9BA0; // type:function size:0xD4 scope:global align:4 +write_CaveOtakara_Old__Q24Game8PlayDataFR6Stream = .text:0x801E9C74; // type:function size:0x118 scope:global align:4 +getPikminCount_Today__Q24Game8PlayDataFi = .text:0x801E9D8C; // type:function size:0x78 scope:global align:4 +getPikminCount_Yesterday__Q24Game8PlayDataFi = .text:0x801E9E04; // type:function size:0x78 scope:global align:4 +setPikminCounts_Today__Q24Game8PlayDataFv = .text:0x801E9E7C; // type:function size:0x108 scope:global align:4 +setPikminCounts_Yesterday__Q24Game8PlayDataFv = .text:0x801E9F84; // type:function size:0x34 scope:global align:4 +init__Q34Game8ItemCave3FSMFPQ34Game8ItemCave4Item = .text:0x801E9FB8; // type:function size:0xD8 scope:global align:4 +init__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg = .text:0x801EA090; // type:function size:0x4 scope:global align:4 +exec__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4Item = .text:0x801EA094; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4Item = .text:0x801EA098; // type:function size:0x4 scope:global align:4 +init__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg = .text:0x801EA09C; // type:function size:0x4 scope:global align:4 +exec__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4Item = .text:0x801EA0A0; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4Item = .text:0x801EA0A4; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8ItemCave4ItemFv = .text:0x801EA0A8; // type:function size:0xE4 scope:global align:4 +__ct__Q34Game8ItemCave7FogParmFv = .text:0x801EA18C; // type:function size:0x2B4 scope:weak align:4 +onInit__Q34Game8ItemCave4ItemFPQ24Game15CreatureInitArg = .text:0x801EA440; // type:function size:0x78 scope:global align:4 +start__Q24Game35StateMachineFPQ34Game8ItemCave4ItemiPQ24Game8StateArg = .text:0x801EA4B8; // type:function size:0x34 scope:weak align:4 +makeTrMatrix__Q34Game8ItemCave4ItemFv = .text:0x801EA4EC; // type:function size:0x44 scope:global align:4 +onSetPosition__Q34Game8ItemCave4ItemFv = .text:0x801EA530; // type:function size:0x264 scope:global align:4 +initDependency__Q34Game8ItemCave4ItemFv = .text:0x801EA794; // type:function size:0x314 scope:global align:4 +sound_culling__Q34Game8ItemCave4ItemFv = .text:0x801EAAA8; // type:function size:0x8C scope:global align:4 +changeMaterial__Q34Game8ItemCave4ItemFv = .text:0x801EAB34; // type:function size:0x5C scope:global align:4 +createLightEvent__Q34Game8ItemCave4ItemFv = .text:0x801EAB90; // type:function size:0x14C scope:global align:4 +do_setLODParm__Q34Game8ItemCave4ItemFRQ24Game9AILODParm = .text:0x801EACDC; // type:function size:0x14 scope:global align:4 +doAI__Q34Game8ItemCave4ItemFv = .text:0x801EACF0; // type:function size:0x214 scope:global align:4 +getCaveOtakaraNum__Q34Game8ItemCave4ItemFv = .text:0x801EAF04; // type:function size:0x60 scope:global align:4 +getCaveOtakaraMax__Q34Game8ItemCave4ItemFv = .text:0x801EAF64; // type:function size:0x60 scope:global align:4 +complete__Q34Game8ItemCave4ItemFv = .text:0x801EAFC4; // type:function size:0xB4 scope:global align:4 +doDirectDraw__Q34Game8ItemCave4ItemFR8Graphics = .text:0x801EB078; // type:function size:0x1F0 scope:global align:4 +__ct__Q34Game8ItemCave3MgrFv = .text:0x801EB268; // type:function size:0x7C scope:global align:4 +onLoadResources__Q34Game8ItemCave3MgrFv = .text:0x801EB2E4; // type:function size:0xE4 scope:global align:4 +setup__Q34Game8ItemCave3MgrFPQ24Game8BaseItem = .text:0x801EB3C8; // type:function size:0x74 scope:global align:4 +generatorNewItemParm__Q34Game8ItemCave3MgrFv = .text:0x801EB43C; // type:function size:0x38 scope:global align:4 +__ct__11GenCaveParmFv = .text:0x801EB474; // type:function size:0x10C scope:weak align:4 +generatorWrite__Q34Game8ItemCave3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801EB580; // type:function size:0xE0 scope:global align:4 +generatorRead__Q34Game8ItemCave3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801EB660; // type:function size:0x218 scope:global align:4 +generatorBirth__Q34Game8ItemCave3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801EB878; // type:function size:0xFC scope:global align:4 +__as__Q34Game8ItemCave7FogParmFRCQ34Game8ItemCave7FogParm = .text:0x801EB974; // type:function size:0x2E4 scope:weak align:4 +__dt__Q34Game8ItemCave3MgrFv = .text:0x801EBC58; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemCave3MgrFv = .text:0x801EBD8C; // type:function size:0x38 scope:weak align:4 +generatorGetID__Q34Game8ItemCave3MgrFv = .text:0x801EBDC4; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game8ItemCave3MgrFv = .text:0x801EBDD0; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemCave4ItemFv = .text:0x801EBDDC; // type:function size:0x8 scope:weak align:4 +getFaceDir__Q34Game8ItemCave4ItemFv = .text:0x801EBDE4; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game74FSMItemFv = .text:0x801EBDEC; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game32ItemStateFPQ34Game8ItemCave4Itemf = .text:0x801EBE20; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRCQ28SysShape8KeyEvent = .text:0x801EBE24; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game32ItemStateFPQ34Game8ItemCave4ItemPQ23Sys8Triangle = .text:0x801EBE28; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRQ24Game9PlatEvent = .text:0x801EBE2C; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRQ24Game9CollEvent = .text:0x801EBE30; // type:function size:0x4 scope:weak align:4 +init__Q24Game31FSMStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg = .text:0x801EBE34; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE38; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE3C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE40; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE44; // type:function size:0x4 scope:weak align:4 +transit__Q24Game31FSMStateFPQ34Game8ItemCave4ItemiPQ24Game8StateArg = .text:0x801EBE48; // type:function size:0x30 scope:weak align:4 +init__Q24Game35StateMachineFPQ34Game8ItemCave4Item = .text:0x801EBE78; // type:function size:0x4 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x801EBE7C; // type:function size:0x64 scope:weak align:4 +size__8ParmFv = .text:0x801EBEE0; // type:function size:0x8 scope:weak align:4 +transit__Q24Game35StateMachineFPQ34Game8ItemCave4ItemiPQ24Game8StateArg = .text:0x801EBEE8; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x801EBF84; // type:function size:0x84 scope:weak align:4 +exec__Q24Game35StateMachineFPQ34Game8ItemCave4Item = .text:0x801EC008; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EC040; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent = .text:0x801EC084; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent = .text:0x801EC0C8; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle = .text:0x801EC10C; // type:function size:0x44 scope:weak align:4 +__sinit_itemCave_cpp = .text:0x801EC150; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EC178; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game8ItemCave3MgrFv = .text:0x801EC180; // type:function size:0x8 scope:weak align:4 +init__Q34Game15ItemBigFountain3FSMFPQ34Game15ItemBigFountain4Item = .text:0x801EC188; // type:function size:0x18C scope:global align:4 +init__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC314; // type:function size:0x48 scope:global align:4 +exec__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC35C; // type:function size:0xCC scope:global align:4 +transit__Q24Game39FSMStateFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg = .text:0x801EC428; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC458; // type:function size:0x4 scope:global align:4 +init__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC45C; // type:function size:0x3C scope:global align:4 +exec__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC498; // type:function size:0x14 scope:global align:4 +cleanup__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC4AC; // type:function size:0x4 scope:global align:4 +init__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC4B0; // type:function size:0x44 scope:global align:4 +exec__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC4F4; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC528; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Itemf = .text:0x801EC52C; // type:function size:0x94 scope:global align:4 +onKeyEvent__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4ItemRCQ28SysShape8KeyEvent = .text:0x801EC5C0; // type:function size:0xC scope:global align:4 +init__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC5CC; // type:function size:0x11C scope:global align:4 +exec__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC6E8; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC71C; // type:function size:0x4 scope:global align:4 +movieUserCommand__Q34Game15ItemBigFountain4ItemFUlPQ24Game11MoviePlayer = .text:0x801EC720; // type:function size:0x204 scope:global align:4 +interactGotKey__Q34Game15ItemBigFountain4ItemFRQ24Game14InteractGotKey = .text:0x801EC924; // type:function size:0x108 scope:global align:4 +constructor__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECA2C; // type:function size:0x48 scope:global align:4 +onInit__Q34Game15ItemBigFountain4ItemFPQ24Game15CreatureInitArg = .text:0x801ECA74; // type:function size:0x284 scope:global align:4 +start__Q24Game43StateMachineFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg = .text:0x801ECCF8; // type:function size:0x34 scope:weak align:4 +initDependency__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECD2C; // type:function size:0x54 scope:global align:4 +update__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECD80; // type:function size:0xC0 scope:global align:4 +killAllEffect__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECE40; // type:function size:0x60 scope:global align:4 +makeTrMatrix__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECEA0; // type:function size:0x68 scope:global align:4 +onSetPosition__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECF08; // type:function size:0x118 scope:global align:4 +doAI__Q34Game15ItemBigFountain4ItemFv = .text:0x801ED020; // type:function size:0xA0 scope:global align:4 +doDirectDraw__Q34Game15ItemBigFountain4ItemFR8Graphics = .text:0x801ED0C0; // type:function size:0x16C scope:global align:4 +updateBoundSphere__Q34Game15ItemBigFountain4ItemFv = .text:0x801ED22C; // type:function size:0x38 scope:global align:4 +doSimulation__Q34Game15ItemBigFountain4ItemFf = .text:0x801ED264; // type:function size:0x4 scope:global align:4 +canRide__Q34Game15ItemBigFountain4ItemFv = .text:0x801ED268; // type:function size:0x30 scope:global align:4 +canRide__Q34Game15ItemBigFountain5StateFv = .text:0x801ED298; // type:function size:0x8 scope:weak align:4 +interactAttack__Q34Game15ItemBigFountain4ItemFRQ24Game14InteractAttack = .text:0x801ED2A0; // type:function size:0x11C scope:global align:4 +onDamage__Q34Game15ItemBigFountain5StateFPQ34Game15ItemBigFountain4Itemf = .text:0x801ED3BC; // type:function size:0x4 scope:weak align:4 +getVectorField__Q34Game15ItemBigFountain4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801ED3C0; // type:function size:0xC8 scope:global align:4 +getWorkDistance__Q34Game15ItemBigFountain4ItemFRQ23Sys6Sphere = .text:0x801ED488; // type:function size:0x60 scope:global align:4 +onKeyEvent__Q34Game15ItemBigFountain4ItemFRCQ28SysShape8KeyEvent = .text:0x801ED4E8; // type:function size:0x3C scope:global align:4 +onKeyEvent__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRCQ28SysShape8KeyEvent = .text:0x801ED524; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED528; // type:function size:0x120 scope:global align:4 +read__Q34Game15ItemBigFountain13FountainParmsFR6Stream = .text:0x801ED648; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game15ItemBigFountain13FountainParmsFv = .text:0x801ED66C; // type:function size:0x1EC scope:weak align:4 +onLoadResources__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED858; // type:function size:0xDC scope:global align:4 +birth__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED934; // type:function size:0x20 scope:global align:4 +generatorBirth__Q34Game15ItemBigFountain3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801ED954; // type:function size:0x58 scope:global align:4 +__dt__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED9AC; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game15ItemBigFountain3MgrFv = .text:0x801EDAE0; // type:function size:0xE8 scope:weak align:4 +generatorGetID__Q34Game15ItemBigFountain3MgrFv = .text:0x801EDBC8; // type:function size:0xC scope:weak align:4 +sound_culling__Q34Game15ItemBigFountain4ItemFv = .text:0x801EDBD4; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q34Game15ItemBigFountain4ItemFv = .text:0x801EDBDC; // type:function size:0xC scope:weak align:4 +doAI__Q24Game98FSMItemFv = .text:0x801EDBE8; // type:function size:0x34 scope:weak align:4 +canRide__Q34Game15ItemBigFountain8OutStateFv = .text:0x801EDC1C; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q24Game98FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EDC24; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game40ItemStateFPQ34Game15ItemBigFountain4Itemf = .text:0x801EDC68; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemPQ23Sys8Triangle = .text:0x801EDC6C; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRQ24Game9PlatEvent = .text:0x801EDC70; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRQ24Game9CollEvent = .text:0x801EDC74; // type:function size:0x4 scope:weak align:4 +init__Q24Game39FSMStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EDC78; // type:function size:0x4 scope:weak align:4 +exec__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC7C; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC80; // type:function size:0x4 scope:weak align:4 +resume__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC84; // type:function size:0x4 scope:weak align:4 +restart__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC88; // type:function size:0x4 scope:weak align:4 +init__Q24Game43StateMachineFPQ34Game15ItemBigFountain4Item = .text:0x801EDC8C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game43StateMachineFPQ34Game15ItemBigFountain4Item = .text:0x801EDC90; // type:function size:0x38 scope:weak align:4 +create__Q24Game43StateMachineFi = .text:0x801EDCC8; // type:function size:0x64 scope:weak align:4 +transit__Q24Game43StateMachineFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg = .text:0x801EDD2C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game43StateMachineFPQ24Game39FSMState = .text:0x801EDDC8; // type:function size:0x84 scope:weak align:4 +getStateID__Q24Game98FSMItemFv = .text:0x801EDE4C; // type:function size:0x1C scope:weak align:4 +platCallback__Q24Game98FSMItemFRQ24Game9PlatEvent = .text:0x801EDE68; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game98FSMItemFRQ24Game9CollEvent = .text:0x801EDEAC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game98FSMItemFPQ23Sys8Triangle = .text:0x801EDEF0; // type:function size:0x44 scope:weak align:4 +__sinit_itemBigFountain_cpp = .text:0x801EDF34; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game98FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EDF5C; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game15ItemBigFountain4ItemFRCQ28SysShape8KeyEvent = .text:0x801EDF64; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game15ItemBigFountain3MgrFv = .text:0x801EDF6C; // type:function size:0x8 scope:weak align:4 +init__Q34Game10ItemBridge3FSMFPQ34Game10ItemBridge4Item = .text:0x801EDF74; // type:function size:0x84 scope:global align:4 +init__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4ItemPQ24Game8StateArg = .text:0x801EDFF8; // type:function size:0x4 scope:global align:4 +exec__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4Item = .text:0x801EDFFC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4Item = .text:0x801EE000; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10ItemBridge4ItemFPQ24Game15CreatureInitArg = .text:0x801EE004; // type:function size:0x180 scope:global align:4 +start__Q24Game38StateMachineFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg = .text:0x801EE184; // type:function size:0x34 scope:weak align:4 +update__Q34Game10ItemBridge4ItemFv = .text:0x801EE1B8; // type:function size:0x110 scope:global align:4 +getLODCylinder__Q34Game10ItemBridge4ItemFRQ23Sys8Cylinder = .text:0x801EE2C8; // type:function size:0x1B4 scope:global align:4 +do_updateLOD__Q34Game10ItemBridge4ItemFv = .text:0x801EE47C; // type:function size:0x44 scope:global align:4 +doDirectDraw__Q34Game10ItemBridge4ItemFR8Graphics = .text:0x801EE4C0; // type:function size:0x4 scope:global align:4 +constructor__Q34Game10ItemBridge4ItemFv = .text:0x801EE4C4; // type:function size:0x48 scope:global align:4 +doLoad__Q34Game10ItemBridge4ItemFR6Stream = .text:0x801EE50C; // type:function size:0xFC scope:global align:4 +doSave__Q34Game10ItemBridge4ItemFR6Stream = .text:0x801EE608; // type:function size:0x74 scope:global align:4 +onSetPosition__Q34Game10ItemBridge4ItemFv = .text:0x801EE67C; // type:function size:0x90 scope:global align:4 +updateBoundSphere__Q34Game10ItemBridge4ItemFv = .text:0x801EE70C; // type:function size:0x24 scope:global align:4 +changeMaterial__Q34Game10ItemBridge4ItemFv = .text:0x801EE730; // type:function size:0x124 scope:global align:4 +doAI__Q34Game10ItemBridge4ItemFv = .text:0x801EE854; // type:function size:0x1A0 scope:global align:4 +setCurrStage__Q34Game10ItemBridge4ItemFi = .text:0x801EE9F4; // type:function size:0x28C scope:global align:4 +createWayPoints__Q34Game10ItemBridge4ItemFv = .text:0x801EEC80; // type:function size:0x1CC scope:global align:4 +getStagePos__Q34Game10ItemBridge4ItemFi = .text:0x801EEE4C; // type:function size:0xE8 scope:global align:4 +getStartPos__Q34Game10ItemBridge4ItemFv = .text:0x801EEF34; // type:function size:0xA0 scope:global align:4 +getStageZ__Q34Game10ItemBridge4ItemFi = .text:0x801EEFD4; // type:function size:0x5C scope:global align:4 +getStageWidth__Q34Game10ItemBridge4ItemFv = .text:0x801EF030; // type:function size:0x8 scope:global align:4 +getBridgeZVec__Q34Game10ItemBridge4ItemFv = .text:0x801EF038; // type:function size:0xA4 scope:global align:4 +getBridgeXVec__Q34Game10ItemBridge4ItemFv = .text:0x801EF0DC; // type:function size:0xB8 scope:global align:4 +getBridgePos__Q34Game10ItemBridge4ItemFR10Vector3RfRf = .text:0x801EF194; // type:function size:0x1F0 scope:global align:4 +workable__Q34Game10ItemBridge4ItemFR10Vector3 = .text:0x801EF384; // type:function size:0x138 scope:global align:4 +getVectorField__Q34Game10ItemBridge4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801EF4BC; // type:function size:0x430 scope:global align:4 +getWorkDistance__Q34Game10ItemBridge4ItemFRQ23Sys6Sphere = .text:0x801EF8EC; // type:function size:0x148 scope:global align:4 +interactAttack__Q34Game10ItemBridge4ItemFRQ24Game14InteractAttack = .text:0x801EFA34; // type:function size:0x448 scope:global align:4 +interactBreakBridge__Q34Game10ItemBridge4ItemFRQ24Game19InteractBreakBridge = .text:0x801EFE7C; // type:function size:0xF0 scope:global align:4 +generatorNewItemParm__Q34Game10ItemBridge3MgrFv = .text:0x801EFF6C; // type:function size:0x4C scope:global align:4 +generatorWrite__Q34Game10ItemBridge3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801EFFB8; // type:function size:0x88 scope:global align:4 +generatorRead__Q34Game10ItemBridge3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801F0040; // type:function size:0x88 scope:global align:4 +__ct__Q34Game10ItemBridge3MgrFv = .text:0x801F00C8; // type:function size:0x130 scope:global align:4 +read__Q34Game10ItemBridge11BridgeParmsFR6Stream = .text:0x801F01F8; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game10ItemBridge11BridgeParmsFv = .text:0x801F021C; // type:function size:0x1EC scope:weak align:4 +birth__Q34Game10ItemBridge3MgrFv = .text:0x801F0408; // type:function size:0x118 scope:global align:4 +generatorBirth__Q34Game10ItemBridge3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F0520; // type:function size:0xA8 scope:global align:4 +onLoadResources__Q34Game10ItemBridge3MgrFv = .text:0x801F05C8; // type:function size:0x260 scope:global align:4 +__ct__Q34Game10ItemBridge10BridgeInfoFv = .text:0x801F0828; // type:function size:0x1C scope:weak align:4 +getBridgeInfo__Q34Game10ItemBridge3MgrFi = .text:0x801F0844; // type:function size:0x78 scope:global align:4 +createBridgeInfo__Q34Game10ItemBridge3MgrFi = .text:0x801F08BC; // type:function size:0x20C scope:global align:4 +setupPlatInstanceAttacher__Q34Game10ItemBridge3MgrFPQ34Game10ItemBridge4ItemRQ24Game20PlatInstanceAttacher = .text:0x801F0AC8; // type:function size:0x1A0 scope:global align:4 +getName__Q34Game10ItemBridge13BridgeInitArgFv = .text:0x801F0C68; // type:function size:0xC scope:weak align:4 +__dt__Q34Game10ItemBridge3MgrFv = .text:0x801F0C74; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game10ItemBridge3MgrFv = .text:0x801F0DA8; // type:function size:0x100 scope:weak align:4 +generatorGetID__Q34Game10ItemBridge3MgrFv = .text:0x801F0EA8; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game10ItemBridge3MgrFv = .text:0x801F0EB4; // type:function size:0xC scope:weak align:4 +makeTrMatrix__Q34Game10ItemBridge4ItemFv = .text:0x801F0EC0; // type:function size:0x4 scope:weak align:4 +getCreatureName__Q34Game10ItemBridge4ItemFv = .text:0x801F0EC4; // type:function size:0x8 scope:weak align:4 +getMabiki__Q34Game10ItemBridge4ItemFv = .text:0x801F0ECC; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game83FSMItemFv = .text:0x801F0ED4; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game35ItemStateFPQ34Game10ItemBridge4Itemf = .text:0x801F0F08; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRCQ28SysShape8KeyEvent = .text:0x801F0F0C; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemPQ23Sys8Triangle = .text:0x801F0F10; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRQ24Game9PlatEvent = .text:0x801F0F14; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRQ24Game9CollEvent = .text:0x801F0F18; // type:function size:0x4 scope:weak align:4 +init__Q24Game34FSMStateFPQ34Game10ItemBridge4ItemPQ24Game8StateArg = .text:0x801F0F1C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F20; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F24; // type:function size:0x4 scope:weak align:4 +resume__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F28; // type:function size:0x4 scope:weak align:4 +restart__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F2C; // type:function size:0x4 scope:weak align:4 +transit__Q24Game34FSMStateFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg = .text:0x801F0F30; // type:function size:0x30 scope:weak align:4 +init__Q24Game38StateMachineFPQ34Game10ItemBridge4Item = .text:0x801F0F60; // type:function size:0x4 scope:weak align:4 +create__Q24Game38StateMachineFi = .text:0x801F0F64; // type:function size:0x64 scope:weak align:4 +transit__Q24Game38StateMachineFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg = .text:0x801F0FC8; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game38StateMachineFPQ24Game34FSMState = .text:0x801F1064; // type:function size:0x84 scope:weak align:4 +exec__Q24Game38StateMachineFPQ34Game10ItemBridge4Item = .text:0x801F10E8; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F1120; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game83FSMItemFRQ24Game9PlatEvent = .text:0x801F1164; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game83FSMItemFRQ24Game9CollEvent = .text:0x801F11A8; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game83FSMItemFPQ23Sys8Triangle = .text:0x801F11EC; // type:function size:0x44 scope:weak align:4 +@376@onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F1230; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game10ItemBridge3MgrFv = .text:0x801F1238; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game13PikiContainerFv = .text:0x801F1240; // type:function size:0x4C scope:global align:4 +clear__Q24Game13PikiContainerFv = .text:0x801F128C; // type:function size:0x6C scope:global align:4 +__as__Q24Game13PikiContainerFRQ24Game13PikiContainer = .text:0x801F12F8; // type:function size:0xB0 scope:global align:4 +dump__Q24Game13PikiContainerFPc = .text:0x801F13A8; // type:function size:0x74 scope:global align:4 +getCount__Q24Game13PikiContainerFii = .text:0x801F141C; // type:function size:0xC8 scope:global align:4 +__cl__Q24Game13PikiContainerFPQ24Game4Piki = .text:0x801F14E4; // type:function size:0xCC scope:global align:4 +getColorSum__Q24Game13PikiContainerFi = .text:0x801F15B0; // type:function size:0xD4 scope:global align:4 +getTotalSum__Q24Game13PikiContainerFv = .text:0x801F1684; // type:function size:0xE4 scope:global align:4 +write__Q24Game13PikiContainerFR6Stream = .text:0x801F1768; // type:function size:0x134 scope:global align:4 +read__Q24Game13PikiContainerFR6Stream = .text:0x801F189C; // type:function size:0x6C scope:global align:4 +__ct__Q24Game14GeneratorCacheFv = .text:0x801F1908; // type:function size:0x88 scope:global align:4 +__dt__Q24Game11CourseCacheFv = .text:0x801F1990; // type:function size:0x60 scope:weak align:4 +clearCache__Q24Game14GeneratorCacheFv = .text:0x801F19F0; // type:function size:0x98 scope:global align:4 +clearGeneratorList__Q24Game14GeneratorCacheFv = .text:0x801F1A88; // type:function size:0x18 scope:global align:4 +addGenerator__Q24Game14GeneratorCacheFPQ24Game9Generator = .text:0x801F1AA0; // type:function size:0x78 scope:global align:4 +getFirstGenerator__Q24Game14GeneratorCacheFv = .text:0x801F1B18; // type:function size:0x8 scope:global align:4 +getTotalMePikmins__Q24Game14GeneratorCacheFv = .text:0x801F1B20; // type:function size:0x24 scope:global align:4 +getColorMePikmins__Q24Game14GeneratorCacheFi = .text:0x801F1B44; // type:function size:0x74 scope:global align:4 +getColorMePikmins__Q24Game11CourseCacheFPUci = .text:0x801F1BB8; // type:function size:0x9C scope:global align:4 +createHeap__Q24Game14GeneratorCacheFv = .text:0x801F1C54; // type:function size:0x9C scope:global align:4 +findCache__Q24Game14GeneratorCacheFRQ24Game11CourseCachei = .text:0x801F1CF0; // type:function size:0x38 scope:global align:4 +loadGenerators__Q24Game14GeneratorCacheFi = .text:0x801F1D28; // type:function size:0x128 scope:global align:4 +loadCreatures__Q24Game14GeneratorCacheFi = .text:0x801F1E50; // type:function size:0x1B8 scope:global align:4 +loadPikiheads__Q24Game14GeneratorCacheFv = .text:0x801F2008; // type:function size:0x114 scope:global align:4 +slideCache__Q24Game14GeneratorCacheFv = .text:0x801F211C; // type:function size:0xC0 scope:global align:4 +updateUseList__Q24Game14GeneratorCacheFv = .text:0x801F21DC; // type:function size:0x4C scope:global align:4 +createNumberGenerators__Q24Game14GeneratorCacheFv = .text:0x801F2228; // type:function size:0x78 scope:global align:4 +beginSave__Q24Game14GeneratorCacheFi = .text:0x801F22A0; // type:function size:0xF8 scope:global align:4 +endSave__Q24Game14GeneratorCacheFv = .text:0x801F2398; // type:function size:0xC8 scope:global align:4 +saveGenerator__Q24Game14GeneratorCacheFPQ24Game9Generator = .text:0x801F2460; // type:function size:0xF0 scope:global align:4 +saveCreature__Q24Game14GeneratorCacheFPQ24Game9Generator = .text:0x801F2550; // type:function size:0x140 scope:global align:4 +savePikiheads__Q24Game14GeneratorCacheFv = .text:0x801F2690; // type:function size:0x2D0 scope:global align:4 +__ct__Q24Game11CourseCacheFi = .text:0x801F2960; // type:function size:0x70 scope:global align:4 +beginSave__Q24Game11CourseCacheFi = .text:0x801F29D0; // type:function size:0x28 scope:global align:4 +write__Q24Game14GeneratorCacheFR6Stream = .text:0x801F29F8; // type:function size:0x234 scope:global align:4 +read__Q24Game14GeneratorCacheFR6Stream = .text:0x801F2C2C; // type:function size:0x2B0 scope:global align:4 +write__Q24Game11CourseCacheFR6Stream = .text:0x801F2EDC; // type:function size:0x1D4 scope:global align:4 +read__Q24Game11CourseCacheFR6Stream = .text:0x801F30B0; // type:function size:0xBC scope:global align:4 +init__Q34Game12ItemTreasure3FSMFPQ34Game12ItemTreasure4Item = .text:0x801F316C; // type:function size:0x84 scope:global align:4 +init__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4ItemPQ24Game8StateArg = .text:0x801F31F0; // type:function size:0xC scope:global align:4 +exec__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Item = .text:0x801F31FC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Item = .text:0x801F3200; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Itemf = .text:0x801F3204; // type:function size:0x3C8 scope:global align:4 +releasePellet__Q34Game12ItemTreasure4ItemFv = .text:0x801F35CC; // type:function size:0x298 scope:global align:4 +constructor__Q34Game12ItemTreasure4ItemFv = .text:0x801F3864; // type:function size:0x48 scope:global align:4 +onInit__Q34Game12ItemTreasure4ItemFPQ24Game15CreatureInitArg = .text:0x801F38AC; // type:function size:0x80 scope:global align:4 +start__Q24Game40StateMachineFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg = .text:0x801F392C; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game12ItemTreasure4ItemFv = .text:0x801F3960; // type:function size:0x44 scope:global align:4 +updateBoundSphere__Q34Game12ItemTreasure4ItemFv = .text:0x801F39A4; // type:function size:0x48 scope:global align:4 +doAI__Q34Game12ItemTreasure4ItemFv = .text:0x801F39EC; // type:function size:0x180 scope:global align:4 +doDirectDraw__Q34Game12ItemTreasure4ItemFR8Graphics = .text:0x801F3B6C; // type:function size:0x50 scope:global align:4 +getVectorField__Q34Game12ItemTreasure4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801F3BBC; // type:function size:0x11C scope:global align:4 +getWorkDistance__Q34Game12ItemTreasure4ItemFRQ23Sys6Sphere = .text:0x801F3CD8; // type:function size:0x88 scope:global align:4 +setTreasure__Q34Game12ItemTreasure4ItemFPQ24Game6Pellet = .text:0x801F3D60; // type:function size:0xB8 scope:global align:4 +setLife__Q34Game12ItemTreasure4ItemFv = .text:0x801F3E18; // type:function size:0x30 scope:global align:4 +getCurrMaxLife__Q34Game12ItemTreasure4ItemFv = .text:0x801F3E48; // type:function size:0x98 scope:global align:4 +interactAttack__Q34Game12ItemTreasure4ItemFRQ24Game14InteractAttack = .text:0x801F3EE0; // type:function size:0x11C scope:global align:4 +onDamage__Q34Game12ItemTreasure5StateFPQ34Game12ItemTreasure4Itemf = .text:0x801F3FFC; // type:function size:0x4 scope:weak align:4 +getWorkRadius__Q34Game12ItemTreasure4ItemFv = .text:0x801F4000; // type:function size:0x58 scope:global align:4 +isVisible__Q34Game12ItemTreasure4ItemFv = .text:0x801F4058; // type:function size:0x60 scope:global align:4 +ignoreAtari__Q34Game12ItemTreasure4ItemFPQ24Game8Creature = .text:0x801F40B8; // type:function size:0xB0 scope:global align:4 +__ct__Q34Game12ItemTreasure3MgrFv = .text:0x801F4168; // type:function size:0x114 scope:global align:4 +read__Q34Game12ItemTreasure13TreasureParmsFR6Stream = .text:0x801F427C; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game12ItemTreasure13TreasureParmsFv = .text:0x801F42A0; // type:function size:0x2A0 scope:weak align:4 +birth__Q34Game12ItemTreasure3MgrFv = .text:0x801F4540; // type:function size:0x130 scope:global align:4 +generatorBirth__Q34Game12ItemTreasure3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F4670; // type:function size:0x60 scope:global align:4 +onLoadResources__Q34Game12ItemTreasure3MgrFv = .text:0x801F46D0; // type:function size:0x4 scope:global align:4 +__dt__Q34Game12ItemTreasure3MgrFv = .text:0x801F46D4; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game12ItemTreasure3MgrFv = .text:0x801F4808; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game12ItemTreasure3MgrFv = .text:0x801F4920; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game12ItemTreasure4ItemFv = .text:0x801F492C; // type:function size:0xC scope:weak align:4 +getMatrix__Q44Game12ItemTreasure4Item10DummyShapeFi = .text:0x801F4938; // type:function size:0x8 scope:weak align:4 +isModel__Q28SysShape9MtxObjectFv = .text:0x801F4940; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game89FSMItemFv = .text:0x801F4948; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game37ItemStateFPQ34Game12ItemTreasure4Itemf = .text:0x801F497C; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRCQ28SysShape8KeyEvent = .text:0x801F4980; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemPQ23Sys8Triangle = .text:0x801F4984; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRQ24Game9PlatEvent = .text:0x801F4988; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRQ24Game9CollEvent = .text:0x801F498C; // type:function size:0x4 scope:weak align:4 +init__Q24Game36FSMStateFPQ34Game12ItemTreasure4ItemPQ24Game8StateArg = .text:0x801F4990; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F4994; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F4998; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F499C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F49A0; // type:function size:0x4 scope:weak align:4 +transit__Q24Game36FSMStateFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg = .text:0x801F49A4; // type:function size:0x30 scope:weak align:4 +init__Q24Game40StateMachineFPQ34Game12ItemTreasure4Item = .text:0x801F49D4; // type:function size:0x4 scope:weak align:4 +exec__Q24Game40StateMachineFPQ34Game12ItemTreasure4Item = .text:0x801F49D8; // type:function size:0x38 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x801F4A10; // type:function size:0x64 scope:weak align:4 +transit__Q24Game40StateMachineFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg = .text:0x801F4A74; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x801F4B10; // type:function size:0x84 scope:weak align:4 +onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F4B94; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent = .text:0x801F4BD8; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent = .text:0x801F4C1C; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle = .text:0x801F4C60; // type:function size:0x44 scope:weak align:4 +__sinit_itemTreasure_cpp = .text:0x801F4CA4; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F4CCC; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game12ItemTreasure3MgrFv = .text:0x801F4CD4; // type:function size:0x8 scope:weak align:4 +init__Q34Game13ItemDownFloor3FSMFPQ34Game13ItemDownFloor4Item = .text:0x801F4CDC; // type:function size:0x1E4 scope:global align:4 +constructor__Q34Game13ItemDownFloor4ItemFv = .text:0x801F4EC0; // type:function size:0x48 scope:global align:4 +onInit__Q34Game13ItemDownFloor4ItemFPQ24Game15CreatureInitArg = .text:0x801F4F08; // type:function size:0xFC scope:global align:4 +start__Q24Game41StateMachineFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg = .text:0x801F5004; // type:function size:0x34 scope:weak align:4 +initDependency__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5038; // type:function size:0x2B4 scope:global align:4 +onSetPosition__Q34Game13ItemDownFloor4ItemFv = .text:0x801F52EC; // type:function size:0x138 scope:global align:4 +updateBoundSphere__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5424; // type:function size:0x1C scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor4ItemFRCQ28SysShape8KeyEvent = .text:0x801F5440; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor5StateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F5484; // type:function size:0x4 scope:weak align:4 +startDamageMotion__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5488; // type:function size:0x338 scope:global align:4 +startDownMotion__Q34Game13ItemDownFloor4ItemFv = .text:0x801F57C0; // type:function size:0x33C scope:global align:4 +startUpMotion__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5AFC; // type:function size:0x2E4 scope:global align:4 +changeMaterial__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5DE0; // type:function size:0x4 scope:global align:4 +doSave__Q34Game13ItemDownFloor4ItemFR6Stream = .text:0x801F5DE4; // type:function size:0x38 scope:global align:4 +doLoad__Q34Game13ItemDownFloor4ItemFR6Stream = .text:0x801F5E1C; // type:function size:0xF8 scope:global align:4 +doAI__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5F14; // type:function size:0xF8 scope:global align:4 +platCallback__Q34Game13ItemDownFloor4ItemFRQ24Game9PlatEvent = .text:0x801F600C; // type:function size:0x23C scope:global align:4 +onPlat__Q34Game13ItemDownFloor5StateFPQ34Game13ItemDownFloor4Item = .text:0x801F6248; // type:function size:0x4 scope:weak align:4 +getCarryInfoParam__Q34Game13ItemDownFloor4ItemFR14CarryInfoParam = .text:0x801F624C; // type:function size:0x5C scope:global align:4 +__ct__Q34Game13ItemDownFloor3MgrFv = .text:0x801F62A8; // type:function size:0x1E0 scope:global align:4 +setupDownFloor__Q34Game13ItemDownFloor3MgrFPQ34Game13ItemDownFloor4Item = .text:0x801F6488; // type:function size:0xF0 scope:global align:4 +setupPlatform__Q34Game13ItemDownFloor3MgrFPQ34Game13ItemDownFloor4Item = .text:0x801F6578; // type:function size:0x108 scope:global align:4 +onLoadResources__Q34Game13ItemDownFloor3MgrFv = .text:0x801F6680; // type:function size:0x4 scope:global align:4 +birth__Q34Game13ItemDownFloor3MgrFv = .text:0x801F6684; // type:function size:0x17C scope:global align:4 +getCaveName__Q34Game13ItemDownFloor3MgrFi = .text:0x801F6800; // type:function size:0x3C scope:global align:4 +getCaveID__Q34Game13ItemDownFloor3MgrFPc = .text:0x801F683C; // type:function size:0xB0 scope:global align:4 +init__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F68EC; // type:function size:0x68 scope:global align:4 +exec__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6954; // type:function size:0x60 scope:global align:4 +transit__Q24Game37FSMStateFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg = .text:0x801F69B4; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item = .text:0x801F69E4; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F69E8; // type:function size:0x4 scope:global align:4 +onPlat__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item = .text:0x801F69EC; // type:function size:0x40 scope:global align:4 +init__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F6A2C; // type:function size:0x38 scope:global align:4 +exec__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6A64; // type:function size:0xC4 scope:global align:4 +cleanup__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6B28; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F6B2C; // type:function size:0xC scope:global align:4 +onPlat__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6B38; // type:function size:0x4 scope:global align:4 +init__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F6B3C; // type:function size:0x9C scope:global align:4 +exec__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6BD8; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6BDC; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F6BE0; // type:function size:0x220 scope:global align:4 +onPlat__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6E00; // type:function size:0x4 scope:global align:4 +init__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F6E04; // type:function size:0x24 scope:global align:4 +exec__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6E28; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6E2C; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F6E30; // type:function size:0x3C scope:global align:4 +onPlat__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6E6C; // type:function size:0x4 scope:global align:4 +generatorNewItemParm__Q34Game13ItemDownFloor3MgrFv = .text:0x801F6E70; // type:function size:0x7C scope:global align:4 +generatorWrite__Q34Game13ItemDownFloor3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801F6EEC; // type:function size:0x104 scope:global align:4 +generatorRead__Q34Game13ItemDownFloor3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801F6FF0; // type:function size:0xCC scope:global align:4 +generatorBirth__Q34Game13ItemDownFloor3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F70BC; // type:function size:0x1E4 scope:global align:4 +__dt__Q34Game13ItemDownFloor3MgrFv = .text:0x801F72A0; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game13ItemDownFloor3MgrFv = .text:0x801F73D4; // type:function size:0x140 scope:weak align:4 +generatorGetID__Q34Game13ItemDownFloor3MgrFv = .text:0x801F7514; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game13ItemDownFloor3MgrFv = .text:0x801F7520; // type:function size:0xC scope:weak align:4 +makeTrMatrix__Q34Game13ItemDownFloor4ItemFv = .text:0x801F752C; // type:function size:0x4 scope:weak align:4 +getFaceDir__Q34Game13ItemDownFloor4ItemFv = .text:0x801F7530; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q34Game13ItemDownFloor4ItemFv = .text:0x801F7538; // type:function size:0xC scope:weak align:4 +doAI__Q24Game92FSMItemFv = .text:0x801F7544; // type:function size:0x34 scope:weak align:4 +init__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F7578; // type:function size:0x4 scope:weak align:4 +exec__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item = .text:0x801F757C; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item = .text:0x801F7580; // type:function size:0x4 scope:weak align:4 +onPlat__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item = .text:0x801F7584; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game92FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F7588; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game38ItemStateFPQ34Game13ItemDownFloor4Itemf = .text:0x801F75CC; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F75D0; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemPQ23Sys8Triangle = .text:0x801F75D4; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRQ24Game9PlatEvent = .text:0x801F75D8; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRQ24Game9CollEvent = .text:0x801F75DC; // type:function size:0x4 scope:weak align:4 +init__Q24Game37FSMStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F75E0; // type:function size:0x4 scope:weak align:4 +exec__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75E4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75E8; // type:function size:0x4 scope:weak align:4 +resume__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75EC; // type:function size:0x4 scope:weak align:4 +restart__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75F0; // type:function size:0x4 scope:weak align:4 +init__Q24Game41StateMachineFPQ34Game13ItemDownFloor4Item = .text:0x801F75F4; // type:function size:0x4 scope:weak align:4 +exec__Q24Game41StateMachineFPQ34Game13ItemDownFloor4Item = .text:0x801F75F8; // type:function size:0x38 scope:weak align:4 +create__Q24Game41StateMachineFi = .text:0x801F7630; // type:function size:0x64 scope:weak align:4 +transit__Q24Game41StateMachineFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg = .text:0x801F7694; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game41StateMachineFPQ24Game37FSMState = .text:0x801F7730; // type:function size:0x84 scope:weak align:4 +platCallback__Q24Game92FSMItemFRQ24Game9PlatEvent = .text:0x801F77B4; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game92FSMItemFRQ24Game9CollEvent = .text:0x801F77F8; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game92FSMItemFPQ23Sys8Triangle = .text:0x801F783C; // type:function size:0x44 scope:weak align:4 +__sinit_itemDownFloor_cpp = .text:0x801F7880; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game92FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F78A8; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game13ItemDownFloor4ItemFRCQ28SysShape8KeyEvent = .text:0x801F78B0; // type:function size:0x8 scope:weak align:4 +@480@getCarryInfoParam__Q34Game13ItemDownFloor4ItemFR14CarryInfoParam = .text:0x801F78B8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game13ItemDownFloor3MgrFv = .text:0x801F78C0; // type:function size:0x8 scope:weak align:4 +getRandomChoice__8KandoLibFPQ28KandoLib6Choicei = .text:0x801F78C8; // type:function size:0xA8 scope:global align:4 +init__Q34Game10ItemBarrel3FSMFPQ34Game10ItemBarrel4Item = .text:0x801F7970; // type:function size:0x134 scope:global align:4 +init__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F7AA4; // type:function size:0xC scope:global align:4 +exec__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Item = .text:0x801F7AB0; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Item = .text:0x801F7AB4; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F7AB8; // type:function size:0x64 scope:global align:4 +transit__Q24Game34FSMStateFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg = .text:0x801F7B1C; // type:function size:0x30 scope:weak align:4 +onKeyEvent__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F7B4C; // type:function size:0x4 scope:global align:4 +init__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F7B50; // type:function size:0x170 scope:global align:4 +exec__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Item = .text:0x801F7CC0; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Item = .text:0x801F7CC4; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F7CC8; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F7CCC; // type:function size:0x148 scope:global align:4 +init__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F7E14; // type:function size:0x4 scope:global align:4 +exec__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Item = .text:0x801F7E18; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Item = .text:0x801F7E1C; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F7E20; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F7E30; // type:function size:0x4 scope:global align:4 +doSave__Q34Game10ItemBarrel4ItemFR6Stream = .text:0x801F7E34; // type:function size:0x44 scope:global align:4 +doLoad__Q34Game10ItemBarrel4ItemFR6Stream = .text:0x801F7E78; // type:function size:0xBC scope:global align:4 +constructor__Q34Game10ItemBarrel4ItemFv = .text:0x801F7F34; // type:function size:0x48 scope:global align:4 +onInit__Q34Game10ItemBarrel4ItemFPQ24Game15CreatureInitArg = .text:0x801F7F7C; // type:function size:0x140 scope:global align:4 +start__Q24Game38StateMachineFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg = .text:0x801F80BC; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game10ItemBarrel4ItemFv = .text:0x801F80F0; // type:function size:0x4C scope:global align:4 +updateBoundSphere__Q34Game10ItemBarrel4ItemFv = .text:0x801F813C; // type:function size:0x48 scope:global align:4 +doAI__Q34Game10ItemBarrel4ItemFv = .text:0x801F8184; // type:function size:0xC4 scope:global align:4 +getVectorField__Q34Game10ItemBarrel4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801F8248; // type:function size:0x114 scope:global align:4 +getWorkRadius__Q34Game10ItemBarrel4ItemFv = .text:0x801F835C; // type:function size:0x58 scope:global align:4 +getWorkDistance__Q34Game10ItemBarrel4ItemFRQ23Sys6Sphere = .text:0x801F83B4; // type:function size:0xC4 scope:global align:4 +createBarrel__Q34Game10ItemBarrel4ItemFv = .text:0x801F8478; // type:function size:0x24 scope:global align:4 +interactAttack__Q34Game10ItemBarrel4ItemFRQ24Game14InteractAttack = .text:0x801F849C; // type:function size:0x148 scope:global align:4 +onDamage__Q34Game10ItemBarrel5StateFPQ34Game10ItemBarrel4Itemf = .text:0x801F85E4; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game10ItemBarrel3MgrFv = .text:0x801F85E8; // type:function size:0x120 scope:global align:4 +read__Q34Game10ItemBarrel11BarrelParmsFR6Stream = .text:0x801F8708; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game10ItemBarrel11BarrelParmsFv = .text:0x801F872C; // type:function size:0x1EC scope:weak align:4 +birth__Q34Game10ItemBarrel3MgrFv = .text:0x801F8918; // type:function size:0x108 scope:global align:4 +generatorBirth__Q34Game10ItemBarrel3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F8A20; // type:function size:0x60 scope:global align:4 +onLoadResources__Q34Game10ItemBarrel3MgrFv = .text:0x801F8A80; // type:function size:0xB8 scope:global align:4 +__dt__Q34Game10ItemBarrel3MgrFv = .text:0x801F8B38; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game10ItemBarrel3MgrFv = .text:0x801F8C6C; // type:function size:0xF0 scope:weak align:4 +generatorGetID__Q34Game10ItemBarrel3MgrFv = .text:0x801F8D5C; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game10ItemBarrel4ItemFv = .text:0x801F8D68; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game83FSMItemFv = .text:0x801F8D70; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game35ItemStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F8DA4; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F8DA8; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemPQ23Sys8Triangle = .text:0x801F8DAC; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRQ24Game9PlatEvent = .text:0x801F8DB0; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRQ24Game9CollEvent = .text:0x801F8DB4; // type:function size:0x4 scope:weak align:4 +init__Q24Game34FSMStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F8DB8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8DBC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8DC0; // type:function size:0x4 scope:weak align:4 +resume__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8DC4; // type:function size:0x4 scope:weak align:4 +restart__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8DC8; // type:function size:0x4 scope:weak align:4 +init__Q24Game38StateMachineFPQ34Game10ItemBarrel4Item = .text:0x801F8DCC; // type:function size:0x4 scope:weak align:4 +exec__Q24Game38StateMachineFPQ34Game10ItemBarrel4Item = .text:0x801F8DD0; // type:function size:0x38 scope:weak align:4 +create__Q24Game38StateMachineFi = .text:0x801F8E08; // type:function size:0x64 scope:weak align:4 +transit__Q24Game38StateMachineFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg = .text:0x801F8E6C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game38StateMachineFPQ24Game34FSMState = .text:0x801F8F08; // type:function size:0x84 scope:weak align:4 +onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F8F8C; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game83FSMItemFRQ24Game9PlatEvent = .text:0x801F8FD0; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game83FSMItemFRQ24Game9CollEvent = .text:0x801F9014; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game83FSMItemFPQ23Sys8Triangle = .text:0x801F9058; // type:function size:0x44 scope:weak align:4 +__sinit_itemBarrel_cpp = .text:0x801F909C; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F90C4; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game10ItemBarrel3MgrFv = .text:0x801F90CC; // type:function size:0x8 scope:weak align:4 +do_onInit__Q34Game12PelletNumber6ObjectFPQ24Game15CreatureInitArg = .text:0x801F90D4; // type:function size:0x4 scope:global align:4 +constructor__Q34Game12PelletNumber6ObjectFv = .text:0x801F90D8; // type:function size:0xC0 scope:global align:4 +createKiraEffect__Q34Game12PelletNumber6ObjectFR10Vector3 = .text:0x801F9198; // type:function size:0x6C scope:global align:4 +changeMaterial__Q34Game12PelletNumber6ObjectFv = .text:0x801F9204; // type:function size:0x108 scope:global align:4 +__ct__Q34Game12PelletNumber3MgrFv = .text:0x801F930C; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game48FixedSizePelletMgrFv = .text:0x801F93BC; // type:function size:0x19C scope:weak align:4 +__dt__43MonoObjectMgrFv = .text:0x801F9558; // type:function size:0xA0 scope:weak align:4 +__dt__39ContainerFv = .text:0x801F95F8; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game12PelletNumber3MgrFv = .text:0x801F9668; // type:function size:0xF4 scope:global align:4 +onCreateModel__Q34Game12PelletNumber3MgrFPQ28SysShape5Model = .text:0x801F975C; // type:function size:0x7C scope:global align:4 +generatorNewPelletParm__Q34Game12PelletNumber3MgrFv = .text:0x801F97D8; // type:function size:0x3C scope:global align:4 +generatorBirth__Q34Game12PelletNumber3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x801F9814; // type:function size:0xD8 scope:global align:4 +generatorWrite__Q34Game12PelletNumber3MgrFR6StreamPQ24Game13GenPelletParm = .text:0x801F98EC; // type:function size:0x54 scope:global align:4 +generatorRead__Q34Game12PelletNumber3MgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x801F9940; // type:function size:0xC4 scope:global align:4 +__dt__Q34Game12PelletNumber3MgrFv = .text:0x801F9A04; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game12PelletNumber3MgrFv = .text:0x801F9BB8; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game12PelletNumber3MgrFv = .text:0x801F9BC0; // type:function size:0x8 scope:weak align:4 +generatorLocalVersion__Q34Game12PelletNumber3MgrFv = .text:0x801F9BC8; // type:function size:0xC scope:weak align:4 +__dt__39ObjectMgrFv = .text:0x801F9BD4; // type:function size:0x88 scope:weak align:4 +getName__Q23efx10ArgPelTypeFv = .text:0x801F9C5C; // type:function size:0xC scope:weak align:4 +getKind__Q34Game12PelletNumber6ObjectFv = .text:0x801F9C68; // type:function size:0x8 scope:weak align:4 +resetMgrAndResources__Q24Game48FixedSizePelletMgrFv = .text:0x801F9C70; // type:function size:0x9C scope:weak align:4 +onCreateModel__Q24Game48FixedSizePelletMgrFPQ28SysShape5Model = .text:0x801F9D0C; // type:function size:0x4 scope:weak align:4 +birth__Q24Game48FixedSizePelletMgrFv = .text:0x801F9D10; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game48FixedSizePelletMgrFv = .text:0x801F9D3C; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game48FixedSizePelletMgrFv = .text:0x801F9D68; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game48FixedSizePelletMgrFi = .text:0x801F9D94; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game48FixedSizePelletMgrFv = .text:0x801F9DC0; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game48FixedSizePelletMgrFf = .text:0x801F9DEC; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game48FixedSizePelletMgrFR8Graphics = .text:0x801F9E18; // type:function size:0x2C scope:weak align:4 +kill__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801F9E44; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game48FixedSizePelletMgrFPv = .text:0x801F9E68; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game48FixedSizePelletMgrFv = .text:0x801F9E94; // type:function size:0x2C scope:weak align:4 +birth__43MonoObjectMgrFv = .text:0x801F9EC0; // type:function size:0x60 scope:weak align:4 +kill__43MonoObjectMgrFPQ34Game12PelletNumber6Object = .text:0x801F9F20; // type:function size:0x54 scope:weak align:4 +getNext__43MonoObjectMgrFPv = .text:0x801F9F74; // type:function size:0x40 scope:weak align:4 +getStart__43MonoObjectMgrFv = .text:0x801F9FB4; // type:function size:0x30 scope:weak align:4 +getEnd__43MonoObjectMgrFv = .text:0x801F9FE4; // type:function size:0x8 scope:weak align:4 +getAt__43MonoObjectMgrFi = .text:0x801F9FEC; // type:function size:0x10 scope:weak align:4 +getTo__43MonoObjectMgrFv = .text:0x801F9FFC; // type:function size:0x8 scope:weak align:4 +doAnimation__43MonoObjectMgrFv = .text:0x801FA004; // type:function size:0x80 scope:weak align:4 +doEntry__43MonoObjectMgrFv = .text:0x801FA084; // type:function size:0x80 scope:weak align:4 +doSetView__43MonoObjectMgrFi = .text:0x801FA104; // type:function size:0x90 scope:weak align:4 +doViewCalc__43MonoObjectMgrFv = .text:0x801FA194; // type:function size:0x80 scope:weak align:4 +doSimulation__43MonoObjectMgrFf = .text:0x801FA214; // type:function size:0x90 scope:weak align:4 +doDirectDraw__43MonoObjectMgrFR8Graphics = .text:0x801FA2A4; // type:function size:0x90 scope:weak align:4 +clearMgr__43MonoObjectMgrFv = .text:0x801FA334; // type:function size:0x30 scope:weak align:4 +onAlloc__43MonoObjectMgrFv = .text:0x801FA364; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__43MonoObjectMgrFv = .text:0x801FA368; // type:function size:0x3C scope:weak align:4 +get__43MonoObjectMgrFPv = .text:0x801FA3A4; // type:function size:0x10 scope:weak align:4 +getObject__39ContainerFPv = .text:0x801FA3B4; // type:function size:0x2C scope:weak align:4 +getAt__39ContainerFi = .text:0x801FA3E0; // type:function size:0x8 scope:weak align:4 +getTo__39ContainerFv = .text:0x801FA3E8; // type:function size:0x8 scope:weak align:4 +doDirectDraw__39ObjectMgrFR8Graphics = .text:0x801FA3F0; // type:function size:0x1F4 scope:weak align:4 +isDone__38IteratorFv = .text:0x801FA5E4; // type:function size:0x4C scope:weak align:4 +doSimulation__39ObjectMgrFf = .text:0x801FA630; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__39ObjectMgrFv = .text:0x801FA824; // type:function size:0x1E4 scope:weak align:4 +doSetView__39ObjectMgrFi = .text:0x801FAA08; // type:function size:0x1F4 scope:weak align:4 +doEntry__39ObjectMgrFv = .text:0x801FABFC; // type:function size:0x1E4 scope:weak align:4 +doAnimation__39ObjectMgrFv = .text:0x801FADE0; // type:function size:0x1E4 scope:weak align:4 +alloc__24MonoObjectMgr<8CollPart>Fi = .text:0x801FAFC4; // type:function size:0x18C scope:weak align:4 +__ct__43MonoObjectMgrFv = .text:0x801FB150; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB1EC; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB20C; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB228; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB244; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game48FixedSizePelletMgrFi = .text:0x801FB260; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game48FixedSizePelletMgrFv = .text:0x801FB270; // type:function size:0x2C scope:weak align:4 +get__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB29C; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB2C8; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game48FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x801FB2F4; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game48FixedSizePelletMgrFi = .text:0x801FB384; // type:function size:0x80 scope:weak align:4 +__ml__38IteratorFv = .text:0x801FB404; // type:function size:0x38 scope:weak align:4 +next__38IteratorFv = .text:0x801FB43C; // type:function size:0xE4 scope:weak align:4 +first__38IteratorFv = .text:0x801FB520; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game48FixedSizePelletMgrFv = .text:0x801FB5FC; // type:function size:0x64 scope:weak align:4 +alloc__43MonoObjectMgrFi = .text:0x801FB660; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game12PelletNumber6ObjectFv = .text:0x801FB7E8; // type:function size:0x4C scope:weak align:4 +@84@__dt__Q24Game48FixedSizePelletMgrFv = .text:0x801FB834; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__43MonoObjectMgrFv = .text:0x801FB83C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__43MonoObjectMgrFR8Graphics = .text:0x801FB844; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__43MonoObjectMgrFf = .text:0x801FB84C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__43MonoObjectMgrFv = .text:0x801FB854; // type:function size:0x8 scope:weak align:4 +@28@doSetView__43MonoObjectMgrFi = .text:0x801FB85C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__43MonoObjectMgrFv = .text:0x801FB864; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__43MonoObjectMgrFv = .text:0x801FB86C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__39ObjectMgrFR8Graphics = .text:0x801FB874; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__39ObjectMgrFf = .text:0x801FB87C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__39ObjectMgrFv = .text:0x801FB884; // type:function size:0x8 scope:weak align:4 +@28@doSetView__39ObjectMgrFi = .text:0x801FB88C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__39ObjectMgrFv = .text:0x801FB894; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__39ObjectMgrFv = .text:0x801FB89C; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game48FixedSizePelletMgrFv = .text:0x801FB8A4; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game48FixedSizePelletMgrFv = .text:0x801FB8AC; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB8B4; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB8BC; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game12PelletNumber3MgrFv = .text:0x801FB8C4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game13PelletCarcass3MgrFv = .text:0x801FB8CC; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game49FixedSizePelletMgrFv = .text:0x801FB97C; // type:function size:0x19C scope:weak align:4 +__dt__44MonoObjectMgrFv = .text:0x801FBB18; // type:function size:0xA0 scope:weak align:4 +__dt__40ContainerFv = .text:0x801FBBB8; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game13PelletCarcass3MgrFv = .text:0x801FBC28; // type:function size:0x64 scope:global align:4 +__dt__Q34Game13PelletCarcass3MgrFv = .text:0x801FBC8C; // type:function size:0x1B4 scope:weak align:4 +createShape__Q34Game13PelletCarcass3MgrFii = .text:0x801FBE40; // type:function size:0x8 scope:weak align:4 +getMgrName__Q34Game13PelletCarcass3MgrFv = .text:0x801FBE48; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game13PelletCarcass3MgrFv = .text:0x801FBE50; // type:function size:0x8 scope:weak align:4 +__dt__40ObjectMgrFv = .text:0x801FBE58; // type:function size:0x88 scope:weak align:4 +resetMgrAndResources__Q24Game49FixedSizePelletMgrFv = .text:0x801FBEE0; // type:function size:0x9C scope:weak align:4 +onCreateModel__Q24Game49FixedSizePelletMgrFPQ28SysShape5Model = .text:0x801FBF7C; // type:function size:0x4 scope:weak align:4 +birth__Q24Game49FixedSizePelletMgrFv = .text:0x801FBF80; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game49FixedSizePelletMgrFv = .text:0x801FBFAC; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game49FixedSizePelletMgrFv = .text:0x801FBFD8; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game49FixedSizePelletMgrFi = .text:0x801FC004; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game49FixedSizePelletMgrFv = .text:0x801FC030; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game49FixedSizePelletMgrFf = .text:0x801FC05C; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game49FixedSizePelletMgrFR8Graphics = .text:0x801FC088; // type:function size:0x2C scope:weak align:4 +kill__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FC0B4; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x801FC0D8; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game49FixedSizePelletMgrFv = .text:0x801FC104; // type:function size:0x2C scope:weak align:4 +birth__44MonoObjectMgrFv = .text:0x801FC130; // type:function size:0x60 scope:weak align:4 +kill__44MonoObjectMgrFPQ34Game13PelletCarcass6Object = .text:0x801FC190; // type:function size:0x54 scope:weak align:4 +getNext__44MonoObjectMgrFPv = .text:0x801FC1E4; // type:function size:0x40 scope:weak align:4 +getStart__44MonoObjectMgrFv = .text:0x801FC224; // type:function size:0x30 scope:weak align:4 +getEnd__44MonoObjectMgrFv = .text:0x801FC254; // type:function size:0x8 scope:weak align:4 +getAt__44MonoObjectMgrFi = .text:0x801FC25C; // type:function size:0x10 scope:weak align:4 +getTo__44MonoObjectMgrFv = .text:0x801FC26C; // type:function size:0x8 scope:weak align:4 +doAnimation__44MonoObjectMgrFv = .text:0x801FC274; // type:function size:0x80 scope:weak align:4 +doEntry__44MonoObjectMgrFv = .text:0x801FC2F4; // type:function size:0x80 scope:weak align:4 +doSetView__44MonoObjectMgrFi = .text:0x801FC374; // type:function size:0x90 scope:weak align:4 +doViewCalc__44MonoObjectMgrFv = .text:0x801FC404; // type:function size:0x80 scope:weak align:4 +doSimulation__44MonoObjectMgrFf = .text:0x801FC484; // type:function size:0x90 scope:weak align:4 +doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x801FC514; // type:function size:0x90 scope:weak align:4 +clearMgr__44MonoObjectMgrFv = .text:0x801FC5A4; // type:function size:0x30 scope:weak align:4 +onAlloc__44MonoObjectMgrFv = .text:0x801FC5D4; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__44MonoObjectMgrFv = .text:0x801FC5D8; // type:function size:0x3C scope:weak align:4 +get__44MonoObjectMgrFPv = .text:0x801FC614; // type:function size:0x10 scope:weak align:4 +getObject__40ContainerFPv = .text:0x801FC624; // type:function size:0x2C scope:weak align:4 +getAt__40ContainerFi = .text:0x801FC650; // type:function size:0x8 scope:weak align:4 +getTo__40ContainerFv = .text:0x801FC658; // type:function size:0x8 scope:weak align:4 +doDirectDraw__40ObjectMgrFR8Graphics = .text:0x801FC660; // type:function size:0x1F4 scope:weak align:4 +isDone__39IteratorFv = .text:0x801FC854; // type:function size:0x4C scope:weak align:4 +doSimulation__40ObjectMgrFf = .text:0x801FC8A0; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__40ObjectMgrFv = .text:0x801FCA94; // type:function size:0x1E4 scope:weak align:4 +doSetView__40ObjectMgrFi = .text:0x801FCC78; // type:function size:0x1F4 scope:weak align:4 +doEntry__40ObjectMgrFv = .text:0x801FCE6C; // type:function size:0x1E4 scope:weak align:4 +doAnimation__40ObjectMgrFv = .text:0x801FD050; // type:function size:0x1E4 scope:weak align:4 +__ct__44MonoObjectMgrFv = .text:0x801FD234; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD2D0; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD2F0; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD30C; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD328; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFi = .text:0x801FD344; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x801FD354; // type:function size:0x2C scope:weak align:4 +get__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD380; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD3AC; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x801FD3D8; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game49FixedSizePelletMgrFi = .text:0x801FD468; // type:function size:0x80 scope:weak align:4 +__ml__39IteratorFv = .text:0x801FD4E8; // type:function size:0x38 scope:weak align:4 +next__39IteratorFv = .text:0x801FD520; // type:function size:0xE4 scope:weak align:4 +first__39IteratorFv = .text:0x801FD604; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game49FixedSizePelletMgrFv = .text:0x801FD6E0; // type:function size:0x64 scope:weak align:4 +alloc__44MonoObjectMgrFi = .text:0x801FD744; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game13PelletCarcass6ObjectFv = .text:0x801FD8CC; // type:function size:0x4C scope:weak align:4 +getKind__Q34Game13PelletCarcass6ObjectFv = .text:0x801FD918; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q24Game49FixedSizePelletMgrFv = .text:0x801FD920; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__44MonoObjectMgrFv = .text:0x801FD928; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x801FD930; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__44MonoObjectMgrFf = .text:0x801FD938; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__44MonoObjectMgrFv = .text:0x801FD940; // type:function size:0x8 scope:weak align:4 +@28@doSetView__44MonoObjectMgrFi = .text:0x801FD948; // type:function size:0x8 scope:weak align:4 +@28@doEntry__44MonoObjectMgrFv = .text:0x801FD950; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__44MonoObjectMgrFv = .text:0x801FD958; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__40ObjectMgrFR8Graphics = .text:0x801FD960; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__40ObjectMgrFf = .text:0x801FD968; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__40ObjectMgrFv = .text:0x801FD970; // type:function size:0x8 scope:weak align:4 +@28@doSetView__40ObjectMgrFi = .text:0x801FD978; // type:function size:0x8 scope:weak align:4 +@28@doEntry__40ObjectMgrFv = .text:0x801FD980; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__40ObjectMgrFv = .text:0x801FD988; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x801FD990; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game49FixedSizePelletMgrFv = .text:0x801FD998; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD9A0; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD9A8; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game13PelletCarcass3MgrFv = .text:0x801FD9B0; // type:function size:0x8 scope:weak align:4 +do_onInit__Q34Game11PelletFruit6ObjectFPQ24Game15CreatureInitArg = .text:0x801FD9B8; // type:function size:0x70 scope:global align:4 +do_update__Q34Game11PelletFruit6ObjectFv = .text:0x801FDA28; // type:function size:0x180 scope:global align:4 +changeMaterial__Q34Game11PelletFruit6ObjectFv = .text:0x801FDBA8; // type:function size:0x11C scope:global align:4 +__ct__Q34Game11PelletFruit3MgrFv = .text:0x801FDCC4; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game47FixedSizePelletMgrFv = .text:0x801FDD74; // type:function size:0x19C scope:weak align:4 +__dt__42MonoObjectMgrFv = .text:0x801FDF10; // type:function size:0xA0 scope:weak align:4 +__dt__38ContainerFv = .text:0x801FDFB0; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game11PelletFruit3MgrFv = .text:0x801FE020; // type:function size:0x8C scope:global align:4 +onCreateModel__Q34Game11PelletFruit3MgrFPQ28SysShape5Model = .text:0x801FE0AC; // type:function size:0x6C scope:global align:4 +__dt__Q34Game11PelletFruit3MgrFv = .text:0x801FE118; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game11PelletFruit3MgrFv = .text:0x801FE2CC; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game11PelletFruit3MgrFv = .text:0x801FE2D4; // type:function size:0x8 scope:weak align:4 +__dt__38ObjectMgrFv = .text:0x801FE2DC; // type:function size:0x88 scope:weak align:4 +getKind__Q34Game11PelletFruit6ObjectFv = .text:0x801FE364; // type:function size:0x8 scope:weak align:4 +resetMgrAndResources__Q24Game47FixedSizePelletMgrFv = .text:0x801FE36C; // type:function size:0x9C scope:weak align:4 +onCreateModel__Q24Game47FixedSizePelletMgrFPQ28SysShape5Model = .text:0x801FE408; // type:function size:0x4 scope:weak align:4 +birth__Q24Game47FixedSizePelletMgrFv = .text:0x801FE40C; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game47FixedSizePelletMgrFv = .text:0x801FE438; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game47FixedSizePelletMgrFv = .text:0x801FE464; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game47FixedSizePelletMgrFi = .text:0x801FE490; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game47FixedSizePelletMgrFv = .text:0x801FE4BC; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game47FixedSizePelletMgrFf = .text:0x801FE4E8; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game47FixedSizePelletMgrFR8Graphics = .text:0x801FE514; // type:function size:0x2C scope:weak align:4 +kill__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FE540; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game47FixedSizePelletMgrFPv = .text:0x801FE564; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game47FixedSizePelletMgrFv = .text:0x801FE590; // type:function size:0x2C scope:weak align:4 +birth__42MonoObjectMgrFv = .text:0x801FE5BC; // type:function size:0x60 scope:weak align:4 +kill__42MonoObjectMgrFPQ34Game11PelletFruit6Object = .text:0x801FE61C; // type:function size:0x54 scope:weak align:4 +getNext__42MonoObjectMgrFPv = .text:0x801FE670; // type:function size:0x40 scope:weak align:4 +getStart__42MonoObjectMgrFv = .text:0x801FE6B0; // type:function size:0x30 scope:weak align:4 +getEnd__42MonoObjectMgrFv = .text:0x801FE6E0; // type:function size:0x8 scope:weak align:4 +getAt__42MonoObjectMgrFi = .text:0x801FE6E8; // type:function size:0x10 scope:weak align:4 +getTo__42MonoObjectMgrFv = .text:0x801FE6F8; // type:function size:0x8 scope:weak align:4 +doAnimation__42MonoObjectMgrFv = .text:0x801FE700; // type:function size:0x80 scope:weak align:4 +doEntry__42MonoObjectMgrFv = .text:0x801FE780; // type:function size:0x80 scope:weak align:4 +doSetView__42MonoObjectMgrFi = .text:0x801FE800; // type:function size:0x90 scope:weak align:4 +doViewCalc__42MonoObjectMgrFv = .text:0x801FE890; // type:function size:0x80 scope:weak align:4 +doSimulation__42MonoObjectMgrFf = .text:0x801FE910; // type:function size:0x90 scope:weak align:4 +doDirectDraw__42MonoObjectMgrFR8Graphics = .text:0x801FE9A0; // type:function size:0x90 scope:weak align:4 +clearMgr__42MonoObjectMgrFv = .text:0x801FEA30; // type:function size:0x30 scope:weak align:4 +onAlloc__42MonoObjectMgrFv = .text:0x801FEA60; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__42MonoObjectMgrFv = .text:0x801FEA64; // type:function size:0x3C scope:weak align:4 +get__42MonoObjectMgrFPv = .text:0x801FEAA0; // type:function size:0x10 scope:weak align:4 +getObject__38ContainerFPv = .text:0x801FEAB0; // type:function size:0x2C scope:weak align:4 +getAt__38ContainerFi = .text:0x801FEADC; // type:function size:0x8 scope:weak align:4 +getTo__38ContainerFv = .text:0x801FEAE4; // type:function size:0x8 scope:weak align:4 +doDirectDraw__38ObjectMgrFR8Graphics = .text:0x801FEAEC; // type:function size:0x1F4 scope:weak align:4 +isDone__37IteratorFv = .text:0x801FECE0; // type:function size:0x4C scope:weak align:4 +doSimulation__38ObjectMgrFf = .text:0x801FED2C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__38ObjectMgrFv = .text:0x801FEF20; // type:function size:0x1E4 scope:weak align:4 +doSetView__38ObjectMgrFi = .text:0x801FF104; // type:function size:0x1F4 scope:weak align:4 +doEntry__38ObjectMgrFv = .text:0x801FF2F8; // type:function size:0x1E4 scope:weak align:4 +doAnimation__38ObjectMgrFv = .text:0x801FF4DC; // type:function size:0x1E4 scope:weak align:4 +__ct__42MonoObjectMgrFv = .text:0x801FF6C0; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF75C; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF77C; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF798; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF7B4; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game47FixedSizePelletMgrFi = .text:0x801FF7D0; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game47FixedSizePelletMgrFv = .text:0x801FF7E0; // type:function size:0x2C scope:weak align:4 +get__Q24Game47FixedSizePelletMgrFPv = .text:0x801FF80C; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game47FixedSizePelletMgrFPv = .text:0x801FF838; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game47FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x801FF864; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game47FixedSizePelletMgrFi = .text:0x801FF8F4; // type:function size:0x80 scope:weak align:4 +__ml__37IteratorFv = .text:0x801FF974; // type:function size:0x38 scope:weak align:4 +next__37IteratorFv = .text:0x801FF9AC; // type:function size:0xE4 scope:weak align:4 +first__37IteratorFv = .text:0x801FFA90; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game47FixedSizePelletMgrFv = .text:0x801FFB6C; // type:function size:0x64 scope:weak align:4 +alloc__42MonoObjectMgrFi = .text:0x801FFBD0; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game11PelletFruit6ObjectFv = .text:0x801FFD58; // type:function size:0x4C scope:weak align:4 +__sinit_pelletFruit_cpp = .text:0x801FFDA4; // type:function size:0x28 scope:local align:4 +@84@__dt__Q24Game47FixedSizePelletMgrFv = .text:0x801FFDCC; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__42MonoObjectMgrFv = .text:0x801FFDD4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__42MonoObjectMgrFR8Graphics = .text:0x801FFDDC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__42MonoObjectMgrFf = .text:0x801FFDE4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__42MonoObjectMgrFv = .text:0x801FFDEC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__42MonoObjectMgrFi = .text:0x801FFDF4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__42MonoObjectMgrFv = .text:0x801FFDFC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__42MonoObjectMgrFv = .text:0x801FFE04; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__38ObjectMgrFR8Graphics = .text:0x801FFE0C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__38ObjectMgrFf = .text:0x801FFE14; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__38ObjectMgrFv = .text:0x801FFE1C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__38ObjectMgrFi = .text:0x801FFE24; // type:function size:0x8 scope:weak align:4 +@28@doEntry__38ObjectMgrFv = .text:0x801FFE2C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__38ObjectMgrFv = .text:0x801FFE34; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game47FixedSizePelletMgrFv = .text:0x801FFE3C; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game47FixedSizePelletMgrFv = .text:0x801FFE44; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game47FixedSizePelletMgrFPv = .text:0x801FFE4C; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game47FixedSizePelletMgrFPv = .text:0x801FFE54; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game11PelletFruit3MgrFv = .text:0x801FFE5C; // type:function size:0x8 scope:weak align:4 +constructor__Q34Game13PelletOtakara6ObjectFv = .text:0x801FFE64; // type:function size:0x94 scope:global align:4 +do_onInit__Q34Game13PelletOtakara6ObjectFPQ24Game15CreatureInitArg = .text:0x801FFEF8; // type:function size:0xF4 scope:global align:4 +getShadowParam__Q34Game13PelletOtakara6ObjectFRQ24Game11ShadowParam = .text:0x801FFFEC; // type:function size:0x20 scope:global align:4 +sound_otakaraEventStart__Q34Game13PelletOtakara6ObjectFv = .text:0x8020000C; // type:function size:0x148 scope:global align:4 +sound_otakaraEventRestart__Q34Game13PelletOtakara6ObjectFv = .text:0x80200154; // type:function size:0x148 scope:global align:4 +sound_otakaraEventStop__Q34Game13PelletOtakara6ObjectFv = .text:0x8020029C; // type:function size:0x74 scope:global align:4 +sound_otakaraEventFinish__Q34Game13PelletOtakara6ObjectFv = .text:0x80200310; // type:function size:0x74 scope:global align:4 +onCreateShape__Q34Game13PelletOtakara6ObjectFv = .text:0x80200384; // type:function size:0xD8 scope:global align:4 +theEntry__Q34Game13PelletOtakara6ObjectFv = .text:0x8020045C; // type:function size:0xB8 scope:global align:4 +changeMaterial__Q34Game13PelletOtakara6ObjectFv = .text:0x80200514; // type:function size:0x268 scope:global align:4 +__ct__Q34Game13PelletOtakara3MgrFv = .text:0x8020077C; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game49FixedSizePelletMgrFv = .text:0x8020082C; // type:function size:0x19C scope:weak align:4 +__dt__44MonoObjectMgrFv = .text:0x802009C8; // type:function size:0xA0 scope:weak align:4 +__dt__40ContainerFv = .text:0x80200A68; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game13PelletOtakara3MgrFv = .text:0x80200AD8; // type:function size:0x6C scope:global align:4 +generatorNewPelletParm__Q34Game13PelletOtakara3MgrFv = .text:0x80200B44; // type:function size:0x24 scope:global align:4 +generatorBirth__Q34Game13PelletOtakara3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x80200B68; // type:function size:0x148 scope:global align:4 +generatorWrite__Q34Game13PelletOtakara3MgrFR6StreamPQ24Game13GenPelletParm = .text:0x80200CB0; // type:function size:0x30 scope:global align:4 +generatorRead__Q34Game13PelletOtakara3MgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x80200CE0; // type:function size:0x38 scope:global align:4 +__dt__Q34Game13PelletOtakara3MgrFv = .text:0x80200D18; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game13PelletOtakara3MgrFv = .text:0x80200ECC; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game13PelletOtakara3MgrFv = .text:0x80200ED4; // type:function size:0x8 scope:weak align:4 +generatorLocalVersion__Q34Game13PelletOtakara3MgrFv = .text:0x80200EDC; // type:function size:0xC scope:weak align:4 +__dt__40ObjectMgrFv = .text:0x80200EE8; // type:function size:0x88 scope:weak align:4 +getKind__Q34Game13PelletOtakara6ObjectFv = .text:0x80200F70; // type:function size:0x8 scope:weak align:4 +getBedamaColor__Q34Game13PelletOtakara6ObjectFv = .text:0x80200F78; // type:function size:0xC scope:weak align:4 +onCreateModel__Q24Game49FixedSizePelletMgrFPQ28SysShape5Model = .text:0x80200F84; // type:function size:0x4 scope:weak align:4 +birth__Q24Game49FixedSizePelletMgrFv = .text:0x80200F88; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game49FixedSizePelletMgrFv = .text:0x80200FB4; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game49FixedSizePelletMgrFv = .text:0x80200FE0; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game49FixedSizePelletMgrFi = .text:0x8020100C; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game49FixedSizePelletMgrFv = .text:0x80201038; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game49FixedSizePelletMgrFf = .text:0x80201064; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game49FixedSizePelletMgrFR8Graphics = .text:0x80201090; // type:function size:0x2C scope:weak align:4 +kill__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802010BC; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x802010E0; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game49FixedSizePelletMgrFv = .text:0x8020110C; // type:function size:0x2C scope:weak align:4 +birth__44MonoObjectMgrFv = .text:0x80201138; // type:function size:0x60 scope:weak align:4 +kill__44MonoObjectMgrFPQ34Game13PelletOtakara6Object = .text:0x80201198; // type:function size:0x54 scope:weak align:4 +getNext__44MonoObjectMgrFPv = .text:0x802011EC; // type:function size:0x40 scope:weak align:4 +getStart__44MonoObjectMgrFv = .text:0x8020122C; // type:function size:0x30 scope:weak align:4 +getEnd__44MonoObjectMgrFv = .text:0x8020125C; // type:function size:0x8 scope:weak align:4 +getAt__44MonoObjectMgrFi = .text:0x80201264; // type:function size:0x10 scope:weak align:4 +getTo__44MonoObjectMgrFv = .text:0x80201274; // type:function size:0x8 scope:weak align:4 +doAnimation__44MonoObjectMgrFv = .text:0x8020127C; // type:function size:0x80 scope:weak align:4 +doEntry__44MonoObjectMgrFv = .text:0x802012FC; // type:function size:0x80 scope:weak align:4 +doSetView__44MonoObjectMgrFi = .text:0x8020137C; // type:function size:0x90 scope:weak align:4 +doViewCalc__44MonoObjectMgrFv = .text:0x8020140C; // type:function size:0x80 scope:weak align:4 +doSimulation__44MonoObjectMgrFf = .text:0x8020148C; // type:function size:0x90 scope:weak align:4 +doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x8020151C; // type:function size:0x90 scope:weak align:4 +clearMgr__44MonoObjectMgrFv = .text:0x802015AC; // type:function size:0x30 scope:weak align:4 +onAlloc__44MonoObjectMgrFv = .text:0x802015DC; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__44MonoObjectMgrFv = .text:0x802015E0; // type:function size:0x3C scope:weak align:4 +get__44MonoObjectMgrFPv = .text:0x8020161C; // type:function size:0x10 scope:weak align:4 +getObject__40ContainerFPv = .text:0x8020162C; // type:function size:0x2C scope:weak align:4 +getAt__40ContainerFi = .text:0x80201658; // type:function size:0x8 scope:weak align:4 +getTo__40ContainerFv = .text:0x80201660; // type:function size:0x8 scope:weak align:4 +doDirectDraw__40ObjectMgrFR8Graphics = .text:0x80201668; // type:function size:0x1F4 scope:weak align:4 +doSimulation__40ObjectMgrFf = .text:0x8020185C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__40ObjectMgrFv = .text:0x80201A50; // type:function size:0x1E4 scope:weak align:4 +doSetView__40ObjectMgrFi = .text:0x80201C34; // type:function size:0x1F4 scope:weak align:4 +doEntry__40ObjectMgrFv = .text:0x80201E28; // type:function size:0x1E4 scope:weak align:4 +doAnimation__40ObjectMgrFv = .text:0x8020200C; // type:function size:0x1E4 scope:weak align:4 +__ct__44MonoObjectMgrFv = .text:0x802021F0; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x8020228C; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802022AC; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802022C8; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802022E4; // type:function size:0x1C scope:weak align:4 +getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x80202300; // type:function size:0x2C scope:weak align:4 +get__Q24Game49FixedSizePelletMgrFPv = .text:0x8020232C; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game49FixedSizePelletMgrFPv = .text:0x80202358; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x80202384; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game49FixedSizePelletMgrFi = .text:0x80202414; // type:function size:0x80 scope:weak align:4 +onAlloc__Q24Game49FixedSizePelletMgrFv = .text:0x80202494; // type:function size:0x64 scope:weak align:4 +alloc__44MonoObjectMgrFi = .text:0x802024F8; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game13PelletOtakara6ObjectFv = .text:0x80202680; // type:function size:0x4C scope:weak align:4 +__sinit_pelletOtakara_cpp = .text:0x802026CC; // type:function size:0x28 scope:local align:4 +@84@__dt__Q24Game49FixedSizePelletMgrFv = .text:0x802026F4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__44MonoObjectMgrFv = .text:0x802026FC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x80202704; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__44MonoObjectMgrFf = .text:0x8020270C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__44MonoObjectMgrFv = .text:0x80202714; // type:function size:0x8 scope:weak align:4 +@28@doSetView__44MonoObjectMgrFi = .text:0x8020271C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__44MonoObjectMgrFv = .text:0x80202724; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__44MonoObjectMgrFv = .text:0x8020272C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__40ObjectMgrFR8Graphics = .text:0x80202734; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__40ObjectMgrFf = .text:0x8020273C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__40ObjectMgrFv = .text:0x80202744; // type:function size:0x8 scope:weak align:4 +@28@doSetView__40ObjectMgrFi = .text:0x8020274C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__40ObjectMgrFv = .text:0x80202754; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__40ObjectMgrFv = .text:0x8020275C; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x80202764; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game49FixedSizePelletMgrFv = .text:0x8020276C; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x80202774; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game49FixedSizePelletMgrFPv = .text:0x8020277C; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game13PelletOtakara3MgrFv = .text:0x80202784; // type:function size:0x8 scope:weak align:4 +makePellet__Fv = .text:0x8020278C; // type:function size:0x9C scope:local align:4 +initialise__Q24Game9GenPelletFv = .text:0x80202828; // type:function size:0x8C scope:global align:4 +doEvent__Q24Game9GenPelletFUl = .text:0x802028B4; // type:function size:0x6C scope:global align:4 +generatorMakeMatrix__Q24Game9GenPelletFR7MatrixfR10Vector3 = .text:0x80202920; // type:function size:0x68 scope:global align:4 +getShape__Q24Game9GenPelletFv = .text:0x80202988; // type:function size:0x50 scope:global align:4 +doWrite__Q24Game9GenPelletFR6Stream = .text:0x802029D8; // type:function size:0x138 scope:global align:4 +doRead__Q24Game9GenPelletFR6Stream = .text:0x80202B10; // type:function size:0x118 scope:global align:4 +ramSaveParameters__Q24Game9GenPelletFR6Stream = .text:0x80202C28; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game9GenPelletFR6Stream = .text:0x80202C2C; // type:function size:0x4 scope:global align:4 +updateUseList__Q24Game9GenPelletFPQ24Game9Generatori = .text:0x80202C30; // type:function size:0x58 scope:global align:4 +generate__Q24Game9GenPelletFPQ24Game9Generator = .text:0x80202C88; // type:function size:0x78 scope:global align:4 +getDebugInfo__Q24Game9GenPelletFPc = .text:0x80202D00; // type:function size:0x40 scope:global align:4 +birth__Q24Game9GenPelletFPQ24Game6GenArg = .text:0x80202D40; // type:function size:0xD4 scope:global align:4 +do_onInit__Q34Game10PelletItem6ObjectFPQ24Game15CreatureInitArg = .text:0x80202E14; // type:function size:0x4 scope:global align:4 +onBounce__Q34Game10PelletItem6ObjectFv = .text:0x80202E18; // type:function size:0x5C scope:global align:4 +constructor__Q34Game10PelletItem6ObjectFv = .text:0x80202E74; // type:function size:0x54 scope:global align:4 +sound_otakaraEventStart__Q34Game10PelletItem6ObjectFv = .text:0x80202EC8; // type:function size:0x74 scope:global align:4 +sound_otakaraEventRestart__Q34Game10PelletItem6ObjectFv = .text:0x80202F3C; // type:function size:0x74 scope:global align:4 +sound_otakaraEventStop__Q34Game10PelletItem6ObjectFv = .text:0x80202FB0; // type:function size:0x74 scope:global align:4 +sound_otakaraEventFinish__Q34Game10PelletItem6ObjectFv = .text:0x80203024; // type:function size:0x74 scope:global align:4 +__ct__Q34Game10PelletItem3MgrFv = .text:0x80203098; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game46FixedSizePelletMgrFv = .text:0x80203148; // type:function size:0x19C scope:weak align:4 +__dt__41MonoObjectMgrFv = .text:0x802032E4; // type:function size:0xA0 scope:weak align:4 +__dt__37ContainerFv = .text:0x80203384; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game10PelletItem3MgrFv = .text:0x802033F4; // type:function size:0x74 scope:global align:4 +generatorNewPelletParm__Q34Game10PelletItem3MgrFv = .text:0x80203468; // type:function size:0x24 scope:global align:4 +generatorBirth__Q34Game10PelletItem3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x8020348C; // type:function size:0x148 scope:global align:4 +generatorWrite__Q34Game10PelletItem3MgrFR6StreamPQ24Game13GenPelletParm = .text:0x802035D4; // type:function size:0x30 scope:global align:4 +generatorRead__Q34Game10PelletItem3MgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x80203604; // type:function size:0x38 scope:global align:4 +__dt__Q34Game10PelletItem3MgrFv = .text:0x8020363C; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game10PelletItem3MgrFv = .text:0x802037F0; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game10PelletItem3MgrFv = .text:0x802037F8; // type:function size:0x8 scope:weak align:4 +generatorLocalVersion__Q34Game10PelletItem3MgrFv = .text:0x80203800; // type:function size:0xC scope:weak align:4 +__dt__37ObjectMgrFv = .text:0x8020380C; // type:function size:0x88 scope:weak align:4 +getKind__Q34Game10PelletItem6ObjectFv = .text:0x80203894; // type:function size:0x8 scope:weak align:4 +onCreateModel__Q24Game46FixedSizePelletMgrFPQ28SysShape5Model = .text:0x8020389C; // type:function size:0x4 scope:weak align:4 +birth__Q24Game46FixedSizePelletMgrFv = .text:0x802038A0; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game46FixedSizePelletMgrFv = .text:0x802038CC; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game46FixedSizePelletMgrFv = .text:0x802038F8; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game46FixedSizePelletMgrFi = .text:0x80203924; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game46FixedSizePelletMgrFv = .text:0x80203950; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game46FixedSizePelletMgrFf = .text:0x8020397C; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game46FixedSizePelletMgrFR8Graphics = .text:0x802039A8; // type:function size:0x2C scope:weak align:4 +kill__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802039D4; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game46FixedSizePelletMgrFPv = .text:0x802039F8; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game46FixedSizePelletMgrFv = .text:0x80203A24; // type:function size:0x2C scope:weak align:4 +birth__41MonoObjectMgrFv = .text:0x80203A50; // type:function size:0x60 scope:weak align:4 +kill__41MonoObjectMgrFPQ34Game10PelletItem6Object = .text:0x80203AB0; // type:function size:0x54 scope:weak align:4 +getNext__41MonoObjectMgrFPv = .text:0x80203B04; // type:function size:0x40 scope:weak align:4 +getStart__41MonoObjectMgrFv = .text:0x80203B44; // type:function size:0x30 scope:weak align:4 +getEnd__41MonoObjectMgrFv = .text:0x80203B74; // type:function size:0x8 scope:weak align:4 +getAt__41MonoObjectMgrFi = .text:0x80203B7C; // type:function size:0x10 scope:weak align:4 +getTo__41MonoObjectMgrFv = .text:0x80203B8C; // type:function size:0x8 scope:weak align:4 +doAnimation__41MonoObjectMgrFv = .text:0x80203B94; // type:function size:0x80 scope:weak align:4 +doEntry__41MonoObjectMgrFv = .text:0x80203C14; // type:function size:0x80 scope:weak align:4 +doSetView__41MonoObjectMgrFi = .text:0x80203C94; // type:function size:0x90 scope:weak align:4 +doViewCalc__41MonoObjectMgrFv = .text:0x80203D24; // type:function size:0x80 scope:weak align:4 +doSimulation__41MonoObjectMgrFf = .text:0x80203DA4; // type:function size:0x90 scope:weak align:4 +doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x80203E34; // type:function size:0x90 scope:weak align:4 +clearMgr__41MonoObjectMgrFv = .text:0x80203EC4; // type:function size:0x30 scope:weak align:4 +onAlloc__41MonoObjectMgrFv = .text:0x80203EF4; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__41MonoObjectMgrFv = .text:0x80203EF8; // type:function size:0x3C scope:weak align:4 +get__41MonoObjectMgrFPv = .text:0x80203F34; // type:function size:0x10 scope:weak align:4 +getObject__37ContainerFPv = .text:0x80203F44; // type:function size:0x2C scope:weak align:4 +getAt__37ContainerFi = .text:0x80203F70; // type:function size:0x8 scope:weak align:4 +getTo__37ContainerFv = .text:0x80203F78; // type:function size:0x8 scope:weak align:4 +doDirectDraw__37ObjectMgrFR8Graphics = .text:0x80203F80; // type:function size:0x1F4 scope:weak align:4 +doSimulation__37ObjectMgrFf = .text:0x80204174; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__37ObjectMgrFv = .text:0x80204368; // type:function size:0x1E4 scope:weak align:4 +doSetView__37ObjectMgrFi = .text:0x8020454C; // type:function size:0x1F4 scope:weak align:4 +doEntry__37ObjectMgrFv = .text:0x80204740; // type:function size:0x1E4 scope:weak align:4 +doAnimation__37ObjectMgrFv = .text:0x80204924; // type:function size:0x1E4 scope:weak align:4 +__ct__41MonoObjectMgrFv = .text:0x80204B08; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204BA4; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204BC4; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204BE0; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204BFC; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game46FixedSizePelletMgrFi = .text:0x80204C18; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game46FixedSizePelletMgrFv = .text:0x80204C28; // type:function size:0x2C scope:weak align:4 +get__Q24Game46FixedSizePelletMgrFPv = .text:0x80204C54; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game46FixedSizePelletMgrFPv = .text:0x80204C80; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game46FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x80204CAC; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game46FixedSizePelletMgrFi = .text:0x80204D3C; // type:function size:0x80 scope:weak align:4 +onAlloc__Q24Game46FixedSizePelletMgrFv = .text:0x80204DBC; // type:function size:0x64 scope:weak align:4 +alloc__41MonoObjectMgrFi = .text:0x80204E20; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game10PelletItem6ObjectFv = .text:0x80204FA8; // type:function size:0x4C scope:weak align:4 +@84@__dt__Q24Game46FixedSizePelletMgrFv = .text:0x80204FF4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__41MonoObjectMgrFv = .text:0x80204FFC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x80205004; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__41MonoObjectMgrFf = .text:0x8020500C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__41MonoObjectMgrFv = .text:0x80205014; // type:function size:0x8 scope:weak align:4 +@28@doSetView__41MonoObjectMgrFi = .text:0x8020501C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__41MonoObjectMgrFv = .text:0x80205024; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__41MonoObjectMgrFv = .text:0x8020502C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37ObjectMgrFR8Graphics = .text:0x80205034; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37ObjectMgrFf = .text:0x8020503C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37ObjectMgrFv = .text:0x80205044; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37ObjectMgrFi = .text:0x8020504C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37ObjectMgrFv = .text:0x80205054; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37ObjectMgrFv = .text:0x8020505C; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game46FixedSizePelletMgrFv = .text:0x80205064; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game46FixedSizePelletMgrFv = .text:0x8020506C; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game46FixedSizePelletMgrFPv = .text:0x80205074; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game46FixedSizePelletMgrFPv = .text:0x8020507C; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game10PelletItem3MgrFv = .text:0x80205084; // type:function size:0x8 scope:weak align:4 +traceMove__Q24Game11ShapeMapMgrFRQ24Game8MoveInfof = .text:0x8020508C; // type:function size:0x114 scope:global align:4 +traceMove__Q24Game6MapMgrFR12MapCollisionRQ24Game8MoveInfof = .text:0x802051A0; // type:function size:0x20 scope:global align:4 +traceMove_test1203_cylinder__Q24Game6MapMgrFR12MapCollisionRQ24Game8MoveInfof = .text:0x802051C0; // type:function size:0x3BC scope:global align:4 +__sinit_mapMgrTraceMove_cpp = .text:0x8020557C; // type:function size:0x28 scope:local align:4 +getLODSphere__Q23efx9OnyonSpotFRQ23Sys6Sphere = .text:0x802055A4; // type:function size:0x24 scope:global align:4 +getLODCylinder__Q23efx9OnyonSpotFRQ23Sys8Cylinder = .text:0x802055C8; // type:function size:0x54 scope:global align:4 +changeMaterial__Q23efx9OnyonSpotFv = .text:0x8020561C; // type:function size:0x50 scope:global align:4 +loadResources__Q23efx13OnyonSpotDataFv = .text:0x8020566C; // type:function size:0x1A4 scope:global align:4 +onCreate__Q23efx13OnyonSpotDataFP20ModelEffectCreateArg = .text:0x80205810; // type:function size:0x180 scope:global align:4 +getID__Q23efx13OnyonSpotDataFv = .text:0x80205990; // type:function size:0x14 scope:weak align:4 +__dt__Q23efx13OnyonSpotDataFv = .text:0x802059A4; // type:function size:0x70 scope:weak align:4 +useCylinderLOD__Q23efx9OnyonSpotFv = .text:0x80205A14; // type:function size:0x8 scope:weak align:4 +constructor__11ModelEffectFv = .text:0x80205A1C; // type:function size:0x4 scope:weak align:4 +doSimulation__11ModelEffectFf = .text:0x80205A20; // type:function size:0x4 scope:weak align:4 +doDirectDraw__11ModelEffectFR8Graphics = .text:0x80205A24; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game12ItemUjamushi9BoidParmsFv = .text:0x80205A28; // type:function size:0x3D4 scope:global align:4 +blendTo__Q34Game12ItemUjamushi9BoidParmsFRQ34Game12ItemUjamushi9BoidParmsRQ34Game12ItemUjamushi9BoidParmsf = .text:0x80205DFC; // type:function size:0x138 scope:global align:4 +__ct__Q34Game12ItemUjamushi13BoidParameterFv = .text:0x80205F34; // type:function size:0x4C scope:global align:4 +__dt__Q44Game12ItemUjamushi13BoidParameter5TNodeFv = .text:0x80205F80; // type:function size:0x60 scope:weak align:4 +__ct__Q44Game12ItemUjamushi13BoidParameter5TNodeFv = .text:0x80205FE0; // type:function size:0x48 scope:weak align:4 +getParms__Q34Game12ItemUjamushi13BoidParameterFiifRQ34Game12ItemUjamushi9BoidParms = .text:0x80206028; // type:function size:0xC0 scope:global align:4 +newParms__Q34Game12ItemUjamushi13BoidParameterFv = .text:0x802060E8; // type:function size:0x48 scope:global align:4 +read__Q34Game12ItemUjamushi13BoidParameterFR6Stream = .text:0x80206130; // type:function size:0xA8 scope:global align:4 +__ct__Q34Game12ItemUjamushi3UjaFv = .text:0x802061D8; // type:function size:0xA8 scope:global align:4 +damaged__Q34Game12ItemUjamushi3UjaFf = .text:0x80206280; // type:function size:0x28 scope:global align:4 +clearBuffer__Q34Game12ItemUjamushi3UjaFv = .text:0x802062A8; // type:function size:0x3C scope:global align:4 +updateBuffer__Q34Game12ItemUjamushi3UjaFv = .text:0x802062E4; // type:function size:0x318 scope:global align:4 +makeMatrix__Q34Game12ItemUjamushi3UjaFv = .text:0x802065FC; // type:function size:0xAC scope:global align:4 +updateScale__Q34Game12ItemUjamushi3UjaFf = .text:0x802066A8; // type:function size:0x15C scope:global align:4 +update__Q34Game12ItemUjamushi3UjaFRQ34Game12ItemUjamushi9BoidParms = .text:0x80206804; // type:function size:0x134C scope:global align:4 +length__10Vector3CFv = .text:0x80207B50; // type:function size:0x50 scope:weak align:4 +__pl__FRC10Vector3RC10Vector3 = .text:0x80207BA0; // type:function size:0x34 scope:weak align:4 +next__35IteratorFv = .text:0x80207BD4; // type:function size:0xE4 scope:weak align:4 +isDone__35IteratorFv = .text:0x80207CB8; // type:function size:0x4C scope:weak align:4 +first__35IteratorFv = .text:0x80207D04; // type:function size:0xDC scope:weak align:4 +normalise__10Vector3Fv = .text:0x80207DE0; // type:function size:0x90 scope:weak align:4 +__mi__FRC10Vector3RC10Vector3 = .text:0x80207E70; // type:function size:0x34 scope:weak align:4 +__ct__Q34Game12ItemUjamushi6UjaMgrFi = .text:0x80207EA4; // type:function size:0x130 scope:global align:4 +__dt__Q24Game36TFlockMgrFv = .text:0x80207FD4; // type:function size:0x100 scope:weak align:4 +__dt__40MonoObjectMgrFv = .text:0x802080D4; // type:function size:0xA0 scope:weak align:4 +__dt__36ContainerFv = .text:0x80208174; // type:function size:0x70 scope:weak align:4 +init__Q34Game12ItemUjamushi6UjaMgrFRQ34Game12ItemUjamushi13UjaMgrInitArg = .text:0x802081E4; // type:function size:0x50 scope:global align:4 +getMaxObjects__Q24Game36TFlockMgrFv = .text:0x80208234; // type:function size:0x8 scope:weak align:4 +getFlock__Q24Game36TFlockMgrFi = .text:0x8020823C; // type:function size:0x2C scope:weak align:4 +getAt__40MonoObjectMgrFi = .text:0x80208268; // type:function size:0x10 scope:weak align:4 +test_createUjas__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x80208278; // type:function size:0x418 scope:global align:4 +do_update_boundSphere__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x80208690; // type:function size:0x24 scope:global align:4 +do_update__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x802086B4; // type:function size:0x29C scope:global align:4 +isFlagAlive__Q24Game36TFlockMgrFi = .text:0x80208950; // type:function size:0x14 scope:weak align:4 +astonishPikmins__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x80208964; // type:function size:0x2E4 scope:global align:4 +init__Q34Game12ItemUjamushi3FSMFPQ34Game12ItemUjamushi4Item = .text:0x80208C48; // type:function size:0x134 scope:global align:4 +onInit__Q34Game12ItemUjamushi4ItemFPQ24Game15CreatureInitArg = .text:0x80208D7C; // type:function size:0xC8 scope:global align:4 +start__Q24Game40StateMachineFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg = .text:0x80208E44; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game12ItemUjamushi4ItemFv = .text:0x80208E78; // type:function size:0xC0 scope:global align:4 +setBoidTimer__Q34Game12ItemUjamushi4ItemFv = .text:0x80208F38; // type:function size:0x64 scope:global align:4 +ignoreAtari__Q34Game12ItemUjamushi4ItemFPQ24Game8Creature = .text:0x80208F9C; // type:function size:0x3C scope:global align:4 +updateBoundSphere__Q34Game12ItemUjamushi4ItemFv = .text:0x80208FD8; // type:function size:0x78 scope:global align:4 +isCollisionFlick__Q34Game12ItemUjamushi4ItemFv = .text:0x80209050; // type:function size:0x8 scope:weak align:4 +interactFlockAttack__Q34Game12ItemUjamushi4ItemFRQ24Game19InteractFlockAttack = .text:0x80209058; // type:function size:0x374 scope:global align:4 +doAI__Q34Game12ItemUjamushi4ItemFv = .text:0x802093CC; // type:function size:0x2AC scope:global align:4 +getNumObjects__Q24Game36TFlockMgrFv = .text:0x80209678; // type:function size:0x8 scope:weak align:4 +doSimpleDraw__Q34Game12ItemUjamushi4ItemFP8Viewport = .text:0x80209680; // type:function size:0x78 scope:global align:4 +__ct__Q34Game12ItemUjamushi3MgrFv = .text:0x802096F8; // type:function size:0x310 scope:global align:4 +__dt__Q34Game12ItemUjamushi13BoidParameterFv = .text:0x80209A08; // type:function size:0x84 scope:weak align:4 +__dt__Q24Game39NodeItemMgrFv = .text:0x80209A8C; // type:function size:0x11C scope:weak align:4 +doSimpleDraw__Q34Game12ItemUjamushi3MgrFP8Viewport = .text:0x80209BA8; // type:function size:0x200 scope:global align:4 +isDone__36IteratorFv = .text:0x80209DA8; // type:function size:0x4C scope:weak align:4 +onLoadResources__Q34Game12ItemUjamushi3MgrFv = .text:0x80209DF4; // type:function size:0x4 scope:global align:4 +getCaveName__Q34Game12ItemUjamushi3MgrFi = .text:0x80209DF8; // type:function size:0xC scope:global align:4 +getCaveID__Q34Game12ItemUjamushi3MgrFPc = .text:0x80209E04; // type:function size:0x54 scope:global align:4 +init__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x80209E58; // type:function size:0x94 scope:global align:4 +exec__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4Item = .text:0x80209EEC; // type:function size:0x58 scope:global align:4 +transit__Q24Game36FSMStateFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg = .text:0x80209F44; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4Item = .text:0x80209F74; // type:function size:0x4 scope:global align:4 +init__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x80209F78; // type:function size:0xC4 scope:global align:4 +exec__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A03C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A040; // type:function size:0x4 scope:global align:4 +init__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x8020A044; // type:function size:0x94 scope:global align:4 +exec__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A0D8; // type:function size:0x58 scope:global align:4 +cleanup__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A130; // type:function size:0x4 scope:global align:4 +generatorNewItemParm__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A134; // type:function size:0x4C scope:global align:4 +generatorWrite__Q34Game12ItemUjamushi3MgrFR6StreamPQ24Game11GenItemParm = .text:0x8020A180; // type:function size:0x88 scope:global align:4 +generatorRead__Q34Game12ItemUjamushi3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x8020A208; // type:function size:0x64 scope:global align:4 +generatorBirth__Q34Game12ItemUjamushi3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x8020A26C; // type:function size:0x1CC scope:global align:4 +getName__Q34Game12ItemUjamushi7InitArgFv = .text:0x8020A438; // type:function size:0xC scope:weak align:4 +__dt__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A444; // type:function size:0x174 scope:weak align:4 +generatorGetID__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A5B8; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A5C4; // type:function size:0xC scope:weak align:4 +__ml__36IteratorFv = .text:0x8020A5D0; // type:function size:0x38 scope:weak align:4 +next__36IteratorFv = .text:0x8020A608; // type:function size:0xE4 scope:weak align:4 +first__36IteratorFv = .text:0x8020A6EC; // type:function size:0xDC scope:weak align:4 +__dt__37ContainerFv = .text:0x8020A7C8; // type:function size:0x70 scope:weak align:4 +__dt__37ObjectMgrFv = .text:0x8020A838; // type:function size:0x88 scope:weak align:4 +__dt__39TObjectNodeFv = .text:0x8020A8C0; // type:function size:0x60 scope:weak align:4 +__dt__41NodeObjectMgrFv = .text:0x8020A920; // type:function size:0xC8 scope:weak align:4 +getFlockMgr__Q34Game12ItemUjamushi4ItemFv = .text:0x8020A9E8; // type:function size:0x8 scope:weak align:4 +makeTrMatrix__Q34Game12ItemUjamushi4ItemFv = .text:0x8020A9F0; // type:function size:0x4 scope:weak align:4 +getMatrix__Q44Game12ItemUjamushi4Item10DummyShapeFi = .text:0x8020A9F4; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game89FSMItemFv = .text:0x8020A9FC; // type:function size:0x34 scope:weak align:4 +__dt__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x8020AA30; // type:function size:0x118 scope:weak align:4 +isWeed__Q24Game12BaseFlockMgrFi = .text:0x8020AB48; // type:function size:0xAC scope:weak align:4 +isWeed__Q24Game6TFlockFv = .text:0x8020ABF4; // type:function size:0x8 scope:weak align:4 +fear__Q24Game12BaseFlockMgrFi = .text:0x8020ABFC; // type:function size:0xAC scope:weak align:4 +fear__Q24Game6TFlockFv = .text:0x8020ACA8; // type:function size:0x8 scope:weak align:4 +__dt__36ObjectMgrFv = .text:0x8020ACB0; // type:function size:0x88 scope:weak align:4 +do_update__Q24Game12BaseFlockMgrFv = .text:0x8020AD38; // type:function size:0x4 scope:weak align:4 +__ml__35IteratorFv = .text:0x8020AD3C; // type:function size:0x38 scope:weak align:4 +isVisible__Q34Game12ItemUjamushi3UjaFv = .text:0x8020AD74; // type:function size:0x18 scope:weak align:4 +getRadius__Q24Game6TFlockFv = .text:0x8020AD8C; // type:function size:0x8 scope:weak align:4 +constructor__Q24Game6TFlockFv = .text:0x8020AD94; // type:function size:0x4 scope:weak align:4 +isVisible__Q24Game6TFlockFv = .text:0x8020AD98; // type:function size:0x8 scope:weak align:4 +damaged__Q24Game6TFlockFf = .text:0x8020ADA0; // type:function size:0x8 scope:weak align:4 +getNext__Q24Game36TFlockMgrFPv = .text:0x8020ADA8; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game36TFlockMgrFv = .text:0x8020ADD4; // type:function size:0x2C scope:weak align:4 +killFlock__Q24Game36TFlockMgrFPQ24Game6TFlock = .text:0x8020AE00; // type:function size:0x24 scope:weak align:4 +initDependency__Q24Game39NodeItemMgrFv = .text:0x8020AE24; // type:function size:0x1E8 scope:weak align:4 +kill__Q24Game39NodeItemMgrFPQ34Game12ItemUjamushi4Item = .text:0x8020B00C; // type:function size:0x24 scope:weak align:4 +doAnimation__Q24Game39NodeItemMgrFv = .text:0x8020B030; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game39NodeItemMgrFv = .text:0x8020B05C; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game39NodeItemMgrFi = .text:0x8020B088; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game39NodeItemMgrFv = .text:0x8020B0B4; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game39NodeItemMgrFf = .text:0x8020B0E0; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game39NodeItemMgrFR8Graphics = .text:0x8020B10C; // type:function size:0x2C scope:weak align:4 +onDamage__Q24Game37ItemStateFPQ34Game12ItemUjamushi4Itemf = .text:0x8020B138; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRCQ28SysShape8KeyEvent = .text:0x8020B13C; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemPQ23Sys8Triangle = .text:0x8020B140; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRQ24Game9PlatEvent = .text:0x8020B144; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRQ24Game9CollEvent = .text:0x8020B148; // type:function size:0x4 scope:weak align:4 +init__Q24Game36FSMStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x8020B14C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B150; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B154; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B158; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B15C; // type:function size:0x4 scope:weak align:4 +init__Q24Game40StateMachineFPQ34Game12ItemUjamushi4Item = .text:0x8020B160; // type:function size:0x4 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x8020B164; // type:function size:0x64 scope:weak align:4 +get__41NodeObjectMgrFPv = .text:0x8020B1C8; // type:function size:0x8 scope:weak align:4 +getNext__41NodeObjectMgrFPv = .text:0x8020B1D0; // type:function size:0x8 scope:weak align:4 +getStart__41NodeObjectMgrFv = .text:0x8020B1D8; // type:function size:0x8 scope:weak align:4 +getEnd__41NodeObjectMgrFv = .text:0x8020B1E0; // type:function size:0x8 scope:weak align:4 +delNode__41NodeObjectMgrFPQ34Game12ItemUjamushi4Item = .text:0x8020B1E8; // type:function size:0x44 scope:weak align:4 +resetMgr__41NodeObjectMgrFv = .text:0x8020B22C; // type:function size:0x18 scope:weak align:4 +birth__40MonoObjectMgrFv = .text:0x8020B244; // type:function size:0x60 scope:weak align:4 +kill__40MonoObjectMgrFPQ34Game12ItemUjamushi3Uja = .text:0x8020B2A4; // type:function size:0x54 scope:weak align:4 +getNext__40MonoObjectMgrFPv = .text:0x8020B2F8; // type:function size:0x40 scope:weak align:4 +getStart__40MonoObjectMgrFv = .text:0x8020B338; // type:function size:0x30 scope:weak align:4 +getEnd__40MonoObjectMgrFv = .text:0x8020B368; // type:function size:0x8 scope:weak align:4 +getTo__40MonoObjectMgrFv = .text:0x8020B370; // type:function size:0x8 scope:weak align:4 +doAnimation__40MonoObjectMgrFv = .text:0x8020B378; // type:function size:0x50 scope:weak align:4 +doEntry__40MonoObjectMgrFv = .text:0x8020B3C8; // type:function size:0x50 scope:weak align:4 +doSetView__40MonoObjectMgrFi = .text:0x8020B418; // type:function size:0x50 scope:weak align:4 +doViewCalc__40MonoObjectMgrFv = .text:0x8020B468; // type:function size:0x50 scope:weak align:4 +doSimulation__40MonoObjectMgrFf = .text:0x8020B4B8; // type:function size:0x50 scope:weak align:4 +doDirectDraw__40MonoObjectMgrFR8Graphics = .text:0x8020B508; // type:function size:0x50 scope:weak align:4 +resetMgr__40MonoObjectMgrFv = .text:0x8020B558; // type:function size:0x18 scope:weak align:4 +clearMgr__40MonoObjectMgrFv = .text:0x8020B570; // type:function size:0x30 scope:weak align:4 +onAlloc__40MonoObjectMgrFv = .text:0x8020B5A0; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__40MonoObjectMgrFv = .text:0x8020B5A4; // type:function size:0x3C scope:weak align:4 +get__40MonoObjectMgrFPv = .text:0x8020B5E0; // type:function size:0x10 scope:weak align:4 +doAnimation__37ObjectMgrFv = .text:0x8020B5F0; // type:function size:0x1E4 scope:weak align:4 +doEntry__37ObjectMgrFv = .text:0x8020B7D4; // type:function size:0x1E4 scope:weak align:4 +doSetView__37ObjectMgrFi = .text:0x8020B9B8; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__37ObjectMgrFv = .text:0x8020BBAC; // type:function size:0x1E4 scope:weak align:4 +doSimulation__37ObjectMgrFf = .text:0x8020BD90; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__37ObjectMgrFR8Graphics = .text:0x8020BF84; // type:function size:0x1F4 scope:weak align:4 +doAnimation__36ObjectMgrFv = .text:0x8020C178; // type:function size:0x1D4 scope:weak align:4 +doEntry__36ObjectMgrFv = .text:0x8020C34C; // type:function size:0x1D4 scope:weak align:4 +doSetView__36ObjectMgrFi = .text:0x8020C520; // type:function size:0x1D4 scope:weak align:4 +doViewCalc__36ObjectMgrFv = .text:0x8020C6F4; // type:function size:0x1D4 scope:weak align:4 +doSimulation__36ObjectMgrFf = .text:0x8020C8C8; // type:function size:0x1D4 scope:weak align:4 +doDirectDraw__36ObjectMgrFR8Graphics = .text:0x8020CA9C; // type:function size:0x1D4 scope:weak align:4 +getObject__37ContainerFPv = .text:0x8020CC70; // type:function size:0x2C scope:weak align:4 +getAt__37ContainerFi = .text:0x8020CC9C; // type:function size:0x8 scope:weak align:4 +getTo__37ContainerFv = .text:0x8020CCA4; // type:function size:0x8 scope:weak align:4 +getObject__36ContainerFPv = .text:0x8020CCAC; // type:function size:0x2C scope:weak align:4 +getAt__36ContainerFi = .text:0x8020CCD8; // type:function size:0x8 scope:weak align:4 +getTo__36ContainerFv = .text:0x8020CCE0; // type:function size:0x8 scope:weak align:4 +alloc__40MonoObjectMgrFi = .text:0x8020CCE8; // type:function size:0x188 scope:weak align:4 +__ct__40MonoObjectMgrFv = .text:0x8020CE70; // type:function size:0x9C scope:weak align:4 +transit__Q24Game40StateMachineFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg = .text:0x8020CF0C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x8020CFA8; // type:function size:0x84 scope:weak align:4 +exec__Q24Game40StateMachineFPQ34Game12ItemUjamushi4Item = .text:0x8020D02C; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x8020D064; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent = .text:0x8020D0A8; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent = .text:0x8020D0EC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle = .text:0x8020D130; // type:function size:0x44 scope:weak align:4 +getEnd__Q24Game39NodeItemMgrFv = .text:0x8020D174; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game39NodeItemMgrFv = .text:0x8020D1A0; // type:function size:0x2C scope:weak align:4 +getNext__Q24Game39NodeItemMgrFPv = .text:0x8020D1CC; // type:function size:0x2C scope:weak align:4 +get__Q24Game39NodeItemMgrFPv = .text:0x8020D1F8; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game39NodeItemMgrFv = .text:0x8020D224; // type:function size:0x240 scope:weak align:4 +entry__Q24Game39NodeItemMgrFPQ34Game12ItemUjamushi4Item = .text:0x8020D464; // type:function size:0x84 scope:weak align:4 +__ct__Q24Game39NodeItemMgrFv = .text:0x8020D4E8; // type:function size:0x114 scope:weak align:4 +getEnd__Q24Game36TFlockMgrFv = .text:0x8020D5FC; // type:function size:0x2C scope:weak align:4 +get__Q24Game36TFlockMgrFPv = .text:0x8020D628; // type:function size:0x2C scope:weak align:4 +__sinit_itemUjamushi_cpp = .text:0x8020D654; // type:function size:0x28 scope:local align:4 +@32@__dt__Q24Game36TFlockMgrFv = .text:0x8020D67C; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__40MonoObjectMgrFv = .text:0x8020D684; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__40MonoObjectMgrFR8Graphics = .text:0x8020D68C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__40MonoObjectMgrFf = .text:0x8020D694; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__40MonoObjectMgrFv = .text:0x8020D69C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__40MonoObjectMgrFi = .text:0x8020D6A4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__40MonoObjectMgrFv = .text:0x8020D6AC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__40MonoObjectMgrFv = .text:0x8020D6B4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__36ObjectMgrFR8Graphics = .text:0x8020D6BC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__36ObjectMgrFf = .text:0x8020D6C4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__36ObjectMgrFv = .text:0x8020D6CC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__36ObjectMgrFi = .text:0x8020D6D4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__36ObjectMgrFv = .text:0x8020D6DC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__36ObjectMgrFv = .text:0x8020D6E4; // type:function size:0x8 scope:weak align:4 +@32@getEnd__Q24Game36TFlockMgrFv = .text:0x8020D6EC; // type:function size:0x8 scope:weak align:4 +@32@getStart__Q24Game36TFlockMgrFv = .text:0x8020D6F4; // type:function size:0x8 scope:weak align:4 +@32@getNext__Q24Game36TFlockMgrFPv = .text:0x8020D6FC; // type:function size:0x8 scope:weak align:4 +@32@get__Q24Game36TFlockMgrFPv = .text:0x8020D704; // type:function size:0x8 scope:weak align:4 +@32@__dt__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x8020D70C; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x8020D714; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game39NodeItemMgrFv = .text:0x8020D71C; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__41NodeObjectMgrFv = .text:0x8020D724; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37ObjectMgrFR8Graphics = .text:0x8020D72C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37ObjectMgrFf = .text:0x8020D734; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37ObjectMgrFv = .text:0x8020D73C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37ObjectMgrFi = .text:0x8020D744; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37ObjectMgrFv = .text:0x8020D74C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37ObjectMgrFv = .text:0x8020D754; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game39NodeItemMgrFv = .text:0x8020D75C; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game39NodeItemMgrFv = .text:0x8020D764; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game39NodeItemMgrFPv = .text:0x8020D76C; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game39NodeItemMgrFPv = .text:0x8020D774; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game12ItemUjamushi3MgrFv = .text:0x8020D77C; // type:function size:0x8 scope:weak align:4 +getInfo__Q26PikiAI7ActWeedFPc = .text:0x8020D784; // type:function size:0x4C scope:global align:4 +__ct__Q26PikiAI7ActWeedFPQ24Game4Piki = .text:0x8020D7D0; // type:function size:0x94 scope:global align:4 +init__Q26PikiAI7ActWeedFPQ26PikiAI9ActionArg = .text:0x8020D864; // type:function size:0x170 scope:global align:4 +decideTarget__Q26PikiAI7ActWeedFv = .text:0x8020D9D4; // type:function size:0x68 scope:global align:4 +initAdjust__Q26PikiAI7ActWeedFv = .text:0x8020DA3C; // type:function size:0x188 scope:global align:4 +calcAttackPos__Q26PikiAI7ActWeedFv = .text:0x8020DBC4; // type:function size:0xD0 scope:global align:4 +exec__Q26PikiAI7ActWeedFv = .text:0x8020DC94; // type:function size:0x840 scope:global align:4 +cleanup__Q26PikiAI7ActWeedFv = .text:0x8020E4D4; // type:function size:0x68 scope:global align:4 +collisionCallback__Q26PikiAI7ActWeedFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8020E53C; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI14ActFlockAttackFPQ24Game4Piki = .text:0x8020E540; // type:function size:0x88 scope:global align:4 +init__Q26PikiAI14ActFlockAttackFPQ26PikiAI9ActionArg = .text:0x8020E5C8; // type:function size:0x138 scope:global align:4 +exec__Q26PikiAI14ActFlockAttackFv = .text:0x8020E700; // type:function size:0x324 scope:global align:4 +onKeyEvent__Q26PikiAI14ActFlockAttackFRCQ28SysShape8KeyEvent = .text:0x8020EA24; // type:function size:0x64 scope:global align:4 +cleanup__Q26PikiAI14ActFlockAttackFv = .text:0x8020EA88; // type:function size:0xC scope:global align:4 +getName__Q26PikiAI20FlockAttackActionArgFv = .text:0x8020EA94; // type:function size:0xC scope:weak align:4 +__sinit_aiWeed_cpp = .text:0x8020EAA0; // type:function size:0x28 scope:local align:4 +@40@4@onKeyEvent__Q26PikiAI14ActFlockAttackFRCQ28SysShape8KeyEvent = .text:0x8020EAC8; // type:function size:0x14 scope:weak align:4 +update__Q24Game12BaseFlockMgrFv = .text:0x8020EADC; // type:function size:0xE0 scope:global align:4 +getNearestFlock__Q24Game12BaseFlockMgrFR10Vector3 = .text:0x8020EBBC; // type:function size:0x154 scope:global align:4 +attackFlock__Q24Game12BaseFlockMgrFif = .text:0x8020ED10; // type:function size:0x11C scope:global align:4 +resolveCollision__Q24Game12BaseFlockMgrFf = .text:0x8020EE2C; // type:function size:0x294 scope:global align:4 +doSimpleDraw__Q24Game12BaseFlockMgrFP8ViewportPP12J3DModelDatai = .text:0x8020F0C0; // type:function size:0x198 scope:global align:4 +__sinit_flockMgr_cpp = .text:0x8020F258; // type:function size:0x28 scope:local align:4 +__ct__Q34Game8ItemWeed4WeedFv = .text:0x8020F280; // type:function size:0x38 scope:global align:4 +damaged__Q34Game8ItemWeed4WeedFf = .text:0x8020F2B8; // type:function size:0x8 scope:global align:4 +makeMatrix__Q34Game8ItemWeed4WeedFv = .text:0x8020F2C0; // type:function size:0xAC scope:global align:4 +__dt__Q24Game32TFlockMgrFv = .text:0x8020F36C; // type:function size:0x100 scope:weak align:4 +__dt__36MonoObjectMgrFv = .text:0x8020F46C; // type:function size:0xA0 scope:weak align:4 +__dt__32ContainerFv = .text:0x8020F50C; // type:function size:0x70 scope:weak align:4 +getMaxObjects__Q24Game32TFlockMgrFv = .text:0x8020F57C; // type:function size:0x8 scope:weak align:4 +do_update_boundSphere__Q34Game8ItemWeed7WeedMgrFv = .text:0x8020F584; // type:function size:0x4 scope:global align:4 +do_update__Q34Game8ItemWeed7WeedMgrFv = .text:0x8020F588; // type:function size:0x18 scope:global align:4 +init__Q34Game8ItemWeed3FSMFPQ34Game8ItemWeed4Item = .text:0x8020F5A0; // type:function size:0x84 scope:global align:4 +onInit__Q34Game8ItemWeed4ItemFPQ24Game15CreatureInitArg = .text:0x8020F624; // type:function size:0x15C scope:global align:4 +start__Q24Game35StateMachineFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg = .text:0x8020F780; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game8ItemWeed4ItemFv = .text:0x8020F7B4; // type:function size:0x268 scope:global align:4 +ignoreAtari__Q34Game8ItemWeed4ItemFPQ24Game8Creature = .text:0x8020FA1C; // type:function size:0x3C scope:global align:4 +updateBoundSphere__Q34Game8ItemWeed4ItemFv = .text:0x8020FA58; // type:function size:0x78 scope:global align:4 +interactFlockAttack__Q34Game8ItemWeed4ItemFRQ24Game19InteractFlockAttack = .text:0x8020FAD0; // type:function size:0x2E0 scope:global align:4 +getFlock__Q24Game32TFlockMgrFi = .text:0x8020FDB0; // type:function size:0x2C scope:weak align:4 +getAt__36MonoObjectMgrFi = .text:0x8020FDDC; // type:function size:0x10 scope:weak align:4 +doAI__Q34Game8ItemWeed4ItemFv = .text:0x8020FDEC; // type:function size:0x84 scope:global align:4 +getNumObjects__Q24Game32TFlockMgrFv = .text:0x8020FE70; // type:function size:0x8 scope:weak align:4 +doSimpleDraw__Q34Game8ItemWeed4ItemFP8Viewport = .text:0x8020FE78; // type:function size:0x3C scope:global align:4 +__ct__Q34Game8ItemWeed3MgrFv = .text:0x8020FEB4; // type:function size:0x13C scope:global align:4 +doSimpleDraw__Q34Game8ItemWeed3MgrFP8Viewport = .text:0x8020FFF0; // type:function size:0x200 scope:global align:4 +onLoadResources__Q34Game8ItemWeed3MgrFv = .text:0x802101F0; // type:function size:0x4 scope:global align:4 +getCaveName__Q34Game8ItemWeed3MgrFi = .text:0x802101F4; // type:function size:0x8 scope:global align:4 +getCaveID__Q34Game8ItemWeed3MgrFPc = .text:0x802101FC; // type:function size:0x4C scope:global align:4 +init__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4ItemPQ24Game8StateArg = .text:0x80210248; // type:function size:0x4 scope:global align:4 +exec__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4Item = .text:0x8021024C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4Item = .text:0x80210250; // type:function size:0x4 scope:global align:4 +generatorNewItemParm__Q34Game8ItemWeed3MgrFv = .text:0x80210254; // type:function size:0x54 scope:global align:4 +generatorWrite__Q34Game8ItemWeed3MgrFR6StreamPQ24Game11GenItemParm = .text:0x802102A8; // type:function size:0xB0 scope:global align:4 +generatorRead__Q34Game8ItemWeed3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x80210358; // type:function size:0x8C scope:global align:4 +generatorBirth__Q34Game8ItemWeed3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x802103E4; // type:function size:0x1DC scope:global align:4 +getName__Q34Game8ItemWeed7InitArgFv = .text:0x802105C0; // type:function size:0xC scope:weak align:4 +__dt__Q34Game8ItemWeed3MgrFv = .text:0x802105CC; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemWeed3MgrFv = .text:0x80210700; // type:function size:0x148 scope:weak align:4 +generatorGetID__Q34Game8ItemWeed3MgrFv = .text:0x80210848; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game8ItemWeed3MgrFv = .text:0x80210854; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemWeed4ItemFv = .text:0x80210860; // type:function size:0x8 scope:weak align:4 +getFlockMgr__Q34Game8ItemWeed4ItemFv = .text:0x80210868; // type:function size:0x8 scope:weak align:4 +makeTrMatrix__Q34Game8ItemWeed4ItemFv = .text:0x80210870; // type:function size:0x4 scope:weak align:4 +getMatrix__Q44Game8ItemWeed4Item10DummyShapeFi = .text:0x80210874; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game74FSMItemFv = .text:0x8021087C; // type:function size:0x34 scope:weak align:4 +__dt__Q34Game8ItemWeed7WeedMgrFv = .text:0x802108B0; // type:function size:0x118 scope:weak align:4 +__dt__32ObjectMgrFv = .text:0x802109C8; // type:function size:0x88 scope:weak align:4 +isWeed__Q34Game8ItemWeed4WeedFv = .text:0x80210A50; // type:function size:0x10 scope:weak align:4 +getNext__Q24Game32TFlockMgrFPv = .text:0x80210A60; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game32TFlockMgrFv = .text:0x80210A8C; // type:function size:0x2C scope:weak align:4 +killFlock__Q24Game32TFlockMgrFPQ24Game6TFlock = .text:0x80210AB8; // type:function size:0x24 scope:weak align:4 +onDamage__Q24Game32ItemStateFPQ34Game8ItemWeed4Itemf = .text:0x80210ADC; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRCQ28SysShape8KeyEvent = .text:0x80210AE0; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemPQ23Sys8Triangle = .text:0x80210AE4; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRQ24Game9PlatEvent = .text:0x80210AE8; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRQ24Game9CollEvent = .text:0x80210AEC; // type:function size:0x4 scope:weak align:4 +init__Q24Game31FSMStateFPQ34Game8ItemWeed4ItemPQ24Game8StateArg = .text:0x80210AF0; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210AF4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210AF8; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210AFC; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210B00; // type:function size:0x4 scope:weak align:4 +transit__Q24Game31FSMStateFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg = .text:0x80210B04; // type:function size:0x30 scope:weak align:4 +init__Q24Game35StateMachineFPQ34Game8ItemWeed4Item = .text:0x80210B34; // type:function size:0x4 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x80210B38; // type:function size:0x64 scope:weak align:4 +birth__36MonoObjectMgrFv = .text:0x80210B9C; // type:function size:0x60 scope:weak align:4 +kill__36MonoObjectMgrFPQ34Game8ItemWeed4Weed = .text:0x80210BFC; // type:function size:0x54 scope:weak align:4 +getNext__36MonoObjectMgrFPv = .text:0x80210C50; // type:function size:0x40 scope:weak align:4 +getStart__36MonoObjectMgrFv = .text:0x80210C90; // type:function size:0x30 scope:weak align:4 +getEnd__36MonoObjectMgrFv = .text:0x80210CC0; // type:function size:0x8 scope:weak align:4 +getTo__36MonoObjectMgrFv = .text:0x80210CC8; // type:function size:0x8 scope:weak align:4 +doAnimation__36MonoObjectMgrFv = .text:0x80210CD0; // type:function size:0x50 scope:weak align:4 +doEntry__36MonoObjectMgrFv = .text:0x80210D20; // type:function size:0x50 scope:weak align:4 +doSetView__36MonoObjectMgrFi = .text:0x80210D70; // type:function size:0x50 scope:weak align:4 +doViewCalc__36MonoObjectMgrFv = .text:0x80210DC0; // type:function size:0x50 scope:weak align:4 +doSimulation__36MonoObjectMgrFf = .text:0x80210E10; // type:function size:0x50 scope:weak align:4 +doDirectDraw__36MonoObjectMgrFR8Graphics = .text:0x80210E60; // type:function size:0x50 scope:weak align:4 +resetMgr__36MonoObjectMgrFv = .text:0x80210EB0; // type:function size:0x18 scope:weak align:4 +clearMgr__36MonoObjectMgrFv = .text:0x80210EC8; // type:function size:0x30 scope:weak align:4 +onAlloc__36MonoObjectMgrFv = .text:0x80210EF8; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__36MonoObjectMgrFv = .text:0x80210EFC; // type:function size:0x3C scope:weak align:4 +get__36MonoObjectMgrFPv = .text:0x80210F38; // type:function size:0x10 scope:weak align:4 +getObject__32ContainerFPv = .text:0x80210F48; // type:function size:0x2C scope:weak align:4 +getAt__32ContainerFi = .text:0x80210F74; // type:function size:0x8 scope:weak align:4 +getTo__32ContainerFv = .text:0x80210F7C; // type:function size:0x8 scope:weak align:4 +doDirectDraw__32ObjectMgrFR8Graphics = .text:0x80210F84; // type:function size:0x1D4 scope:weak align:4 +isDone__31IteratorFv = .text:0x80211158; // type:function size:0x4C scope:weak align:4 +doSimulation__32ObjectMgrFf = .text:0x802111A4; // type:function size:0x1D4 scope:weak align:4 +doViewCalc__32ObjectMgrFv = .text:0x80211378; // type:function size:0x1D4 scope:weak align:4 +doSetView__32ObjectMgrFi = .text:0x8021154C; // type:function size:0x1D4 scope:weak align:4 +doEntry__32ObjectMgrFv = .text:0x80211720; // type:function size:0x1D4 scope:weak align:4 +doAnimation__32ObjectMgrFv = .text:0x802118F4; // type:function size:0x1D4 scope:weak align:4 +alloc__36MonoObjectMgrFi = .text:0x80211AC8; // type:function size:0x188 scope:weak align:4 +__ct__36MonoObjectMgrFv = .text:0x80211C50; // type:function size:0x9C scope:weak align:4 +transit__Q24Game35StateMachineFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg = .text:0x80211CEC; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x80211D88; // type:function size:0x84 scope:weak align:4 +exec__Q24Game35StateMachineFPQ34Game8ItemWeed4Item = .text:0x80211E0C; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x80211E44; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent = .text:0x80211E88; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent = .text:0x80211ECC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle = .text:0x80211F10; // type:function size:0x44 scope:weak align:4 +isFlagAlive__Q24Game32TFlockMgrFi = .text:0x80211F54; // type:function size:0x14 scope:weak align:4 +getEnd__Q24Game32TFlockMgrFv = .text:0x80211F68; // type:function size:0x2C scope:weak align:4 +get__Q24Game32TFlockMgrFPv = .text:0x80211F94; // type:function size:0x2C scope:weak align:4 +__ml__31IteratorFv = .text:0x80211FC0; // type:function size:0x38 scope:weak align:4 +next__31IteratorFv = .text:0x80211FF8; // type:function size:0xE4 scope:weak align:4 +first__31IteratorFv = .text:0x802120DC; // type:function size:0xDC scope:weak align:4 +__sinit_itemWeed_cpp = .text:0x802121B8; // type:function size:0x28 scope:local align:4 +@32@__dt__Q24Game32TFlockMgrFv = .text:0x802121E0; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__36MonoObjectMgrFv = .text:0x802121E8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__36MonoObjectMgrFR8Graphics = .text:0x802121F0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__36MonoObjectMgrFf = .text:0x802121F8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__36MonoObjectMgrFv = .text:0x80212200; // type:function size:0x8 scope:weak align:4 +@28@doSetView__36MonoObjectMgrFi = .text:0x80212208; // type:function size:0x8 scope:weak align:4 +@28@doEntry__36MonoObjectMgrFv = .text:0x80212210; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__36MonoObjectMgrFv = .text:0x80212218; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__32ObjectMgrFR8Graphics = .text:0x80212220; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__32ObjectMgrFf = .text:0x80212228; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__32ObjectMgrFv = .text:0x80212230; // type:function size:0x8 scope:weak align:4 +@28@doSetView__32ObjectMgrFi = .text:0x80212238; // type:function size:0x8 scope:weak align:4 +@28@doEntry__32ObjectMgrFv = .text:0x80212240; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__32ObjectMgrFv = .text:0x80212248; // type:function size:0x8 scope:weak align:4 +@32@getEnd__Q24Game32TFlockMgrFv = .text:0x80212250; // type:function size:0x8 scope:weak align:4 +@32@getStart__Q24Game32TFlockMgrFv = .text:0x80212258; // type:function size:0x8 scope:weak align:4 +@32@getNext__Q24Game32TFlockMgrFPv = .text:0x80212260; // type:function size:0x8 scope:weak align:4 +@32@get__Q24Game32TFlockMgrFPv = .text:0x80212268; // type:function size:0x8 scope:weak align:4 +@32@__dt__Q34Game8ItemWeed7WeedMgrFv = .text:0x80212270; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x80212278; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game8ItemWeed3MgrFv = .text:0x80212280; // type:function size:0x8 scope:weak align:4 +__ct__Q26PikiAI9ActBridgeFPQ24Game4Piki = .text:0x80212288; // type:function size:0xFC scope:global align:4 +init__Q26PikiAI9ActBridgeFPQ26PikiAI9ActionArg = .text:0x80212384; // type:function size:0xC8 scope:global align:4 +initFollow__Q26PikiAI9ActBridgeFv = .text:0x8021244C; // type:function size:0x68 scope:global align:4 +exec__Q26PikiAI9ActBridgeFv = .text:0x802124B4; // type:function size:0x31C scope:global align:4 +cleanup__Q26PikiAI9ActBridgeFv = .text:0x802127D0; // type:function size:0x5C scope:global align:4 +platCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8021282C; // type:function size:0x110 scope:global align:4 +collisionCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8021293C; // type:function size:0x4 scope:global align:4 +bounceCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiPQ23Sys8Triangle = .text:0x80212940; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI9ActBridgeFRCQ28SysShape8KeyEvent = .text:0x80212944; // type:function size:0x4 scope:global align:4 +@52@4@onKeyEvent__Q26PikiAI9ActBridgeFRCQ28SysShape8KeyEvent = .text:0x80212948; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI7ActTekiFPQ24Game4Piki = .text:0x8021295C; // type:function size:0x90 scope:global align:4 +init__Q26PikiAI7ActTekiFPQ26PikiAI9ActionArg = .text:0x802129EC; // type:function size:0x10C scope:global align:4 +exec__Q26PikiAI7ActTekiFv = .text:0x80212AF8; // type:function size:0x178 scope:global align:4 +emotion_success__Q26PikiAI7ActTekiFv = .text:0x80212C70; // type:function size:0x50 scope:global align:4 +makeTarget__Q26PikiAI7ActTekiFv = .text:0x80212CC0; // type:function size:0x314 scope:global align:4 +test_0__Q26PikiAI7ActTekiFv = .text:0x80212FD4; // type:function size:0x344 scope:global align:4 +doDirectDraw__Q26PikiAI7ActTekiFR8Graphics = .text:0x80213318; // type:function size:0x58 scope:global align:4 +setTimer__Q26PikiAI7ActTekiFv = .text:0x80213370; // type:function size:0x130 scope:global align:4 +cleanup__Q26PikiAI7ActTekiFv = .text:0x802134A0; // type:function size:0x4 scope:global align:4 +collisionCallback__Q26PikiAI7ActTekiFPQ24Game4PikiRQ24Game9CollEvent = .text:0x802134A4; // type:function size:0xE8 scope:global align:4 +onKeyEvent__Q26PikiAI7ActTekiFRCQ28SysShape8KeyEvent = .text:0x8021358C; // type:function size:0x4 scope:global align:4 +getNextAIType__Q26PikiAI7ActTekiFv = .text:0x80213590; // type:function size:0x8 scope:weak align:4 +@72@4@onKeyEvent__Q26PikiAI7ActTekiFRCQ28SysShape8KeyEvent = .text:0x80213598; // type:function size:0x14 scope:weak align:4 +init__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x802135AC; // type:function size:0x8B0 scope:global align:4 +check_DemoInout__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x80213E5C; // type:function size:0x288 scope:global align:4 +on_section_fadeout__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x802140E4; // type:function size:0xC scope:global align:4 +on_demo_timer__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionUl = .text:0x802140F0; // type:function size:0xB28 scope:global align:4 +exec__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x80214C18; // type:function size:0x6E0 scope:global align:4 +__ct__Q32og6Screen18DispMemberSMenuAllFv = .text:0x802152F8; // type:function size:0x1DC scope:weak align:4 +onOrimaDown__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectioni = .text:0x802154D4; // type:function size:0xD4 scope:global align:4 +onHoleIn__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ34Game8ItemCave4Item = .text:0x802155A8; // type:function size:0xDC scope:global align:4 +onMovieCommand__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectioni = .text:0x80215684; // type:function size:0x4 scope:global align:4 +onMovieStart__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x80215688; // type:function size:0x158 scope:global align:4 +onMovieDone__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x802157E0; // type:function size:0x1A7C scope:global align:4 +needRepayDemo__Q34Game10SingleGame9GameStateFv = .text:0x8021725C; // type:function size:0x74 scope:global align:4 +startRepayDemo__Q34Game10SingleGame9GameStateFv = .text:0x802172D0; // type:function size:0x140 scope:global align:4 +updateRepayDemo__Q34Game10SingleGame9GameStateFv = .text:0x80217410; // type:function size:0xA8 scope:global align:4 +draw__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x802174B8; // type:function size:0x78 scope:global align:4 +cleanup__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x80217530; // type:function size:0x68 scope:global align:4 +getSize__Q32og6Screen14DispMemberSaveFv = .text:0x80217598; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen14DispMemberSaveFv = .text:0x802175A0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen14DispMemberSaveFv = .text:0x802175AC; // type:function size:0x10 scope:weak align:4 +getSize__Q32og6Screen19DispMemberSMenuContFv = .text:0x802175BC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen19DispMemberSMenuContFv = .text:0x802175C4; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen19DispMemberSMenuContFv = .text:0x802175D0; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen22DispMemberSMenuPauseVSFv = .text:0x802175E4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen22DispMemberSMenuPauseVSFv = .text:0x802175EC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen22DispMemberSMenuPauseVSFv = .text:0x802175F8; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberSMenuMapFv = .text:0x8021760C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberSMenuMapFv = .text:0x80217614; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberSMenuMapFv = .text:0x80217620; // type:function size:0x10 scope:weak align:4 +getSize__Q32og6Screen19DispMemberSMenuItemFv = .text:0x80217630; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen19DispMemberSMenuItemFv = .text:0x80217638; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen19DispMemberSMenuItemFv = .text:0x80217644; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen27DispMemberSMenuPauseDoukutuFv = .text:0x80217658; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen27DispMemberSMenuPauseDoukutuFv = .text:0x80217660; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen27DispMemberSMenuPauseDoukutuFv = .text:0x8021766C; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen20DispMemberSMenuPauseFv = .text:0x80217680; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen20DispMemberSMenuPauseFv = .text:0x80217688; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen20DispMemberSMenuPauseFv = .text:0x80217694; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberSMenuAllFv = .text:0x802176A8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberSMenuAllFv = .text:0x802176B0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberSMenuAllFv = .text:0x802176BC; // type:function size:0x10 scope:weak align:4 +doSetSubMemberAll__Q32og6Screen18DispMemberSMenuAllFv = .text:0x802176CC; // type:function size:0x6C scope:weak align:4 +__sinit_singleGS_MainGame_cpp = .text:0x80217738; // type:function size:0x28 scope:local align:4 +init__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80217760; // type:function size:0x304 scope:global align:4 +on_section_fadeout__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80217A64; // type:function size:0xC scope:global align:4 +exec__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80217A70; // type:function size:0x2D4 scope:global align:4 +draw__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80217D44; // type:function size:0x98 scope:global align:4 +check_SMenu__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80217DDC; // type:function size:0x48C scope:global align:4 +cleanup__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80218268; // type:function size:0x68 scope:global align:4 +onOrimaDown__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectioni = .text:0x802182D0; // type:function size:0xD4 scope:global align:4 +onFountainReturn__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ34Game15ItemBigFountain4Item = .text:0x802183A4; // type:function size:0x104 scope:global align:4 +onNextFloor__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ34Game8ItemHole4Item = .text:0x802184A8; // type:function size:0x144 scope:global align:4 +onMovieCommand__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectioni = .text:0x802185EC; // type:function size:0x5F0 scope:global align:4 +onMovieStart__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x80218BDC; // type:function size:0x490 scope:global align:4 +onMovieDone__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8021906C; // type:function size:0xEB4 scope:global align:4 +__sinit_singleGS_CaveGame_cpp = .text:0x80219F20; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame15MainResultStateFv = .text:0x80219F48; // type:function size:0x150 scope:global align:4 +__dt__Q34Game6Result5TNodeFv = .text:0x8021A098; // type:function size:0x60 scope:weak align:4 +init__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021A0F8; // type:function size:0x104 scope:global align:4 +beforeSave__Q34Game10SingleGame15MainResultStateFv = .text:0x8021A1FC; // type:function size:0x24 scope:global align:4 +loadResource__Q34Game10SingleGame15MainResultStateFv = .text:0x8021A220; // type:function size:0x88 scope:global align:4 +exec__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSection = .text:0x8021A2A8; // type:function size:0x3E8 scope:global align:4 +onMovieDone__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8021A690; // type:function size:0x30 scope:global align:4 +createResultNodes__Q34Game10SingleGame15MainResultStateFv = .text:0x8021A6C0; // type:function size:0x35C scope:global align:4 +draw__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021AA1C; // type:function size:0x94 scope:global align:4 +cleanup__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSection = .text:0x8021AAB0; // type:function size:0x7C scope:global align:4 +getSize__Q32kh6Screen20DispDayEndResultTitlFv = .text:0x8021AB2C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultTitlFv = .text:0x8021AB34; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultTitlFv = .text:0x8021AB3C; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB50; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB58; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB60; // type:function size:0x14 scope:weak align:4 +doSetSubMemberAll__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB74; // type:function size:0x54 scope:weak align:4 +invoke__46DelegateFv = .text:0x8021ABC8; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_MainResult_cpp = .text:0x8021ABF8; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame15CaveResultStateFv = .text:0x8021AC20; // type:function size:0xF8 scope:global align:4 +init__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021AD18; // type:function size:0x124 scope:global align:4 +loadResource__Q34Game10SingleGame15CaveResultStateFv = .text:0x8021AE3C; // type:function size:0x240 scope:global align:4 +exec__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection = .text:0x8021B07C; // type:function size:0x2E8 scope:global align:4 +draw__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021B364; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection = .text:0x8021B424; // type:function size:0xC4 scope:global align:4 +createResultNodes__Q34Game10SingleGame15CaveResultStateFv = .text:0x8021B4E8; // type:function size:0x40C scope:global align:4 +invoke__46DelegateFv = .text:0x8021B8F4; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_CaveResult_cpp = .text:0x8021B924; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame11SelectStateFv = .text:0x8021B94C; // type:function size:0xE4 scope:global align:4 +init__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021BA30; // type:function size:0x98 scope:global align:4 +initNext__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection = .text:0x8021BAC8; // type:function size:0x260 scope:global align:4 +init__Q34Game8WorldMap4BaseFRQ34Game8WorldMap7InitArg = .text:0x8021BD28; // type:function size:0x4 scope:weak align:4 +dvdload__Q34Game10SingleGame11SelectStateFv = .text:0x8021BD2C; // type:function size:0x30C scope:global align:4 +loadResource__Q34Game8WorldMap4BaseFv = .text:0x8021C038; // type:function size:0x4 scope:weak align:4 +exec__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection = .text:0x8021C03C; // type:function size:0x2AC scope:global align:4 +update__Q34Game8WorldMap4BaseFRQ34Game8WorldMap9UpdateArg = .text:0x8021C2E8; // type:function size:0x4 scope:weak align:4 +draw__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021C2EC; // type:function size:0x2D0 scope:global align:4 +draw4th__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C5BC; // type:function size:0x4 scope:weak align:4 +draw3rd__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C5C0; // type:function size:0x4 scope:weak align:4 +draw2nd__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C5C4; // type:function size:0x4 scope:weak align:4 +draw1st__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C5C8; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection = .text:0x8021C5CC; // type:function size:0xF4 scope:global align:4 +invoke__42DelegateFv = .text:0x8021C6C0; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_WorldMap_cpp = .text:0x8021C6F0; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame9FileStateFv = .text:0x8021C718; // type:function size:0xA8 scope:global align:4 +init__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021C7C0; // type:function size:0x9C scope:global align:4 +dvdload__Q34Game10SingleGame9FileStateFv = .text:0x8021C85C; // type:function size:0x19C scope:global align:4 +exec__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection = .text:0x8021C9F8; // type:function size:0x194 scope:global align:4 +startGame__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection = .text:0x8021CB8C; // type:function size:0x27C scope:global align:4 +draw__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021CE08; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection = .text:0x8021CEC8; // type:function size:0xD4 scope:global align:4 +invoke__39DelegateFv = .text:0x8021CF9C; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_FileSelect_cpp = .text:0x8021CFCC; // type:function size:0x28 scope:local align:4 +write__Q24Game8PlayDataFR6Stream = .text:0x8021CFF4; // type:function size:0x740 scope:global align:4 +read__Q24Game8PlayDataFR6Stream = .text:0x8021D734; // type:function size:0x404 scope:global align:4 +read__Q34Game8PlayData8LimitGenFR6Stream = .text:0x8021DB38; // type:function size:0x44 scope:global align:4 +write__Q34Game8PlayData8LimitGenFR6Stream = .text:0x8021DB7C; // type:function size:0x78 scope:global align:4 +write__Q24Game16PelletCropMemoryFR6Stream = .text:0x8021DBF4; // type:function size:0x208 scope:global align:4 +read__Q24Game16PelletCropMemoryFR6Stream = .text:0x8021DDFC; // type:function size:0x150 scope:global align:4 +write__Q24Game10OlimarDataFR6Stream = .text:0x8021DF4C; // type:function size:0x7C scope:global align:4 +read__Q24Game10OlimarDataFR6Stream = .text:0x8021DFC8; // type:function size:0x5C scope:global align:4 +write__Q24Game12CaveSaveDataFR6Stream = .text:0x8021E024; // type:function size:0x198 scope:global align:4 +read__Q24Game12CaveSaveDataFR6StreamUl = .text:0x8021E1BC; // type:function size:0xD0 scope:global align:4 +getPosition__Q25Radar5PointFv = .text:0x8021E28C; // type:function size:0x68 scope:global align:4 +__ct__Q25Radar3MgrFv = .text:0x8021E2F4; // type:function size:0xF4 scope:global align:4 +__ct__Q25Radar5PointFv = .text:0x8021E3E8; // type:function size:0x50 scope:weak align:4 +__dt__Q25Radar5PointFv = .text:0x8021E438; // type:function size:0x60 scope:weak align:4 +clear__Q25Radar3MgrFv = .text:0x8021E498; // type:function size:0xB4 scope:global align:4 +bornFuefuki__Q25Radar3MgrFv = .text:0x8021E54C; // type:function size:0x10 scope:global align:4 +dieFuefuki__Q25Radar3MgrFv = .text:0x8021E55C; // type:function size:0x18 scope:global align:4 +fuefuki__Q25Radar3MgrFv = .text:0x8021E574; // type:function size:0x10 scope:global align:4 +entry__Q25Radar3MgrFPQ24Game15TPositionObjectQ25Radar10cRadarTypeUl = .text:0x8021E584; // type:function size:0x70 scope:global align:4 +exit__Q25Radar3MgrFPQ24Game15TPositionObject = .text:0x8021E5F4; // type:function size:0x3C scope:global align:4 +getNumOtakaraItems__Q25Radar3MgrFv = .text:0x8021E630; // type:function size:0x1C scope:global align:4 +attach__Q25Radar3MgrFPQ24Game15TPositionObjectQ25Radar10cRadarTypeUl = .text:0x8021E64C; // type:function size:0x64 scope:global align:4 +detach__Q25Radar3MgrFPQ24Game15TPositionObject = .text:0x8021E6B0; // type:function size:0xC4 scope:global align:4 +calcNearestTreasure__Q25Radar3MgrFR10Vector3fR10Vector3Rf = .text:0x8021E774; // type:function size:0x1E0 scope:global align:4 +ogDummpyInit__Q25Radar3MgrFv = .text:0x8021E954; // type:function size:0x568 scope:global align:4 +getPosition__7OgDummyFv = .text:0x8021EEBC; // type:function size:0x1C scope:weak align:4 +__ct__Q34Game10SingleGame10MovieStateFv = .text:0x8021EED8; // type:function size:0x8C scope:global align:4 +init__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021EF64; // type:function size:0x290 scope:global align:4 +exec__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSection = .text:0x8021F1F4; // type:function size:0x114 scope:global align:4 +draw__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021F308; // type:function size:0x40 scope:global align:4 +cleanup__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSection = .text:0x8021F348; // type:function size:0x48 scope:global align:4 +__sinit_singleGS_Movie_cpp = .text:0x8021F390; // type:function size:0x40 scope:local align:4 +demoCheck__Q24Game4NaviFv = .text:0x8021F3D0; // type:function size:0x1790 scope:global align:4 +distance__10Vector3FR10Vector3 = .text:0x80220B60; // type:function size:0x58 scope:weak align:4 +next__Q24Game30EnemyIteratorFv = .text:0x80220BB8; // type:function size:0xE4 scope:weak align:4 +isDone__Q24Game30EnemyIteratorFv = .text:0x80220C9C; // type:function size:0x4C scope:weak align:4 +__ct__Q24Game12MoviePlayArgFPcPcP39IDelegate3Ul = .text:0x80220CE8; // type:function size:0x40 scope:weak align:4 +first__Q24Game30EnemyIteratorFv = .text:0x80220D28; // type:function size:0xDC scope:weak align:4 +checkDemoNaviAndPiki__Q24Game4NaviFRQ23Sys6Sphere = .text:0x80220E04; // type:function size:0x1C4 scope:global align:4 +__ml__Q24Game30EnemyIteratorFv = .text:0x80220FC8; // type:function size:0x38 scope:weak align:4 +__sinit_navi_demoCheck_cpp = .text:0x80221000; // type:function size:0x28 scope:local align:4 +__ct__Q34Game15IllustratedBook6CameraFP10Controller = .text:0x80221028; // type:function size:0x284 scope:global align:4 +startVibration__Q34Game15IllustratedBook6CameraFi = .text:0x802212AC; // type:function size:0x1D8 scope:global align:4 +move__Q34Game15IllustratedBook6CameraFRC10Vector3 = .text:0x80221484; // type:function size:0x88 scope:global align:4 +setTarget__Q34Game15IllustratedBook6CameraFPQ24Game8Creature = .text:0x8022150C; // type:function size:0x128 scope:global align:4 +resetControl__Q34Game15IllustratedBook6CameraFv = .text:0x80221634; // type:function size:0x274 scope:global align:4 +doUpdate__Q34Game15IllustratedBook6CameraFv = .text:0x802218A8; // type:function size:0x904 scope:global align:4 +updateCameraShake__Q34Game15IllustratedBook6CameraFv = .text:0x802221AC; // type:function size:0x204 scope:global align:4 +updateFocus__Q34Game15IllustratedBook6CameraFv = .text:0x802223B0; // type:function size:0xE8 scope:global align:4 +addFovy__Q34Game15IllustratedBook6CameraFf = .text:0x80222498; // type:function size:0x54 scope:global align:4 +__ct__Q34Game10SingleGame10ZukanStateFv = .text:0x802224EC; // type:function size:0xEC scope:global align:4 +init__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x802225D8; // type:function size:0x36C scope:global align:4 +setMode__Q34Game10SingleGame10ZukanStateFQ44Game10SingleGame10ZukanState5CMode = .text:0x80222944; // type:function size:0x14 scope:global align:4 +exec__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x80222958; // type:function size:0x72C scope:global align:4 +execModeChange__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionQ44Game10SingleGame10ZukanState5CMode = .text:0x80223084; // type:function size:0x16C scope:global align:4 +execChangeTeki__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802231F0; // type:function size:0xE0 scope:global align:4 +execTeki__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802232D0; // type:function size:0x5A4 scope:global align:4 +startWipe__Q34Game10SingleGame10ZukanStateFf = .text:0x80223874; // type:function size:0x18 scope:global align:4 +createEnemy__Q34Game10SingleGame10ZukanStateFi = .text:0x8022388C; // type:function size:0x3C scope:global align:4 +execChangePellet__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802238C8; // type:function size:0xEC scope:global align:4 +execPellet__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802239B4; // type:function size:0xB4 scope:global align:4 +getMaxPelletID__Q34Game10SingleGame10ZukanStateFv = .text:0x80223A68; // type:function size:0x3C scope:global align:4 +getCurrentPelletConfig__Q34Game10SingleGame10ZukanStateFi = .text:0x80223AA4; // type:function size:0x7C scope:global align:4 +convertPelletID__Q34Game10SingleGame10ZukanStateFRii = .text:0x80223B20; // type:function size:0x80 scope:global align:4 +draw__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80223BA0; // type:function size:0x274 scope:global align:4 +drawGradationEffect__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80223E14; // type:function size:0x578 scope:global align:4 +drawLightEffect__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8022438C; // type:function size:0x7C0 scope:global align:4 +dvdloadA__Q34Game10SingleGame10ZukanStateFv = .text:0x80224B4C; // type:function size:0x994 scope:global align:4 +createTeki__Q34Game10SingleGame10ZukanStateFi = .text:0x802254E0; // type:function size:0xE4 scope:global align:4 +createPellet__Q34Game10SingleGame10ZukanStateFi = .text:0x802255C4; // type:function size:0x40 scope:global align:4 +dvdloadB_teki__Q34Game10SingleGame10ZukanStateFv = .text:0x80225604; // type:function size:0xCDC scope:global align:4 +dvdloadB_pellet__Q34Game10SingleGame10ZukanStateFv = .text:0x802262E0; // type:function size:0x4B0 scope:global align:4 +clearHeapB_common__Q34Game10SingleGame10ZukanStateFv = .text:0x80226790; // type:function size:0x90 scope:global align:4 +clearHeapB_teki__Q34Game10SingleGame10ZukanStateFv = .text:0x80226820; // type:function size:0x3BC scope:global align:4 +clearHeapB_pellet__Q34Game10SingleGame10ZukanStateFv = .text:0x80226BDC; // type:function size:0x174 scope:global align:4 +clearHeaps__Q34Game10SingleGame10ZukanStateFv = .text:0x80226D50; // type:function size:0x3AC scope:global align:4 +cleanup__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802270FC; // type:function size:0xA8 scope:global align:4 +getSize__Q28Morimura19DispMemberZukanItemFv = .text:0x802271A4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura19DispMemberZukanItemFv = .text:0x802271AC; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura19DispMemberZukanItemFv = .text:0x802271B8; // type:function size:0x10 scope:weak align:4 +getSize__Q28Morimura20DispMemberZukanEnemyFv = .text:0x802271C8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura20DispMemberZukanEnemyFv = .text:0x802271D0; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura20DispMemberZukanEnemyFv = .text:0x802271DC; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game15IllustratedBook6CameraFv = .text:0x802271EC; // type:function size:0xD0 scope:weak align:4 +getLookAtPosition___12LookAtCameraFv = .text:0x802272BC; // type:function size:0x1C scope:weak align:4 +on_getPositionPtr__12LookAtCameraFv = .text:0x802272D8; // type:function size:0x8 scope:weak align:4 +getTargetDistance__6CameraFv = .text:0x802272E0; // type:function size:0x8 scope:weak align:4 +isSpecialCamera__6CameraFv = .text:0x802272E8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game15IllustratedBook11EnemyTexMgrFv = .text:0x802272F0; // type:function size:0x70 scope:weak align:4 +__dt__Q34Game15IllustratedBook10DebugParmsFv = .text:0x80227360; // type:function size:0x60 scope:weak align:4 +invoke__41DelegateFv = .text:0x802273C0; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_Zukan_cpp = .text:0x802273F0; // type:function size:0x28 scope:local align:4 +__ct__Q34Game12ResultTexMgr3MgrFv = .text:0x80227418; // type:function size:0x50 scope:global align:4 +__dt__Q34Game12ResultTexMgr3MgrFv = .text:0x80227468; // type:function size:0x60 scope:global align:4 +create__Q34Game12ResultTexMgr3MgrFRQ34Game12ResultTexMgr3Arg = .text:0x802274C8; // type:function size:0x340 scope:global align:4 +getOtakaraItemTexture__Q34Game12ResultTexMgr3MgrFi = .text:0x80227808; // type:function size:0xB8 scope:global align:4 +getOtakaraTexture__Q34Game12ResultTexMgr3MgrFi = .text:0x802278C0; // type:function size:0x24 scope:global align:4 +getItemTexture__Q34Game12ResultTexMgr3MgrFi = .text:0x802278E4; // type:function size:0x24 scope:global align:4 +getCarcassTexture__Q34Game12ResultTexMgr3MgrFv = .text:0x80227908; // type:function size:0x28 scope:global align:4 +alloc__Q44Game12ResultTexMgr3Mgr8TexturesFi = .text:0x80227930; // type:function size:0x64 scope:global align:4 +getTexture__Q44Game12ResultTexMgr3Mgr8TexturesFi = .text:0x80227994; // type:function size:0x74 scope:global align:4 +__ct__Q34Game6Result5TNodeFv = .text:0x80227A08; // type:function size:0x5C scope:global align:4 +setTNode__Q34Game6Result5TNodeFUxP10JUTTextureiii = .text:0x80227A64; // type:function size:0x1C scope:global align:4 +setTNode__Q34Game6Result5TNodeFUxP10JUTTextureiiii = .text:0x80227A80; // type:function size:0x24 scope:global align:4 +convertByMorimun__Q34Game6Result5TNodeFi = .text:0x80227AA4; // type:function size:0x78 scope:global align:4 +__ct__Q24Game5DNodeFv = .text:0x80227B1C; // type:function size:0x5C scope:global align:4 +add__Q24Game5DNodeFPQ24Game5DNode = .text:0x80227B78; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game5DNodeFv = .text:0x80227C28; // type:function size:0x68 scope:global align:4 +del__Q24Game5DNodeFv = .text:0x80227C90; // type:function size:0x98 scope:global align:4 +getChildCount__Q24Game5DNodeFv = .text:0x80227D28; // type:function size:0x34 scope:global align:4 +getConfigList__Q34Game10PelletList3MgrFQ34Game10PelletList5cKind = .text:0x80227D5C; // type:function size:0x70 scope:global align:4 +getCount__Q34Game10PelletList3MgrFQ34Game10PelletList5cKind = .text:0x80227DCC; // type:function size:0x74 scope:global align:4 +getConfigAndKind__Q34Game10PelletList3MgrFPcRQ34Game10PelletList5cKind = .text:0x80227E40; // type:function size:0xC0 scope:global align:4 +__dt__Q34Game10PelletList3MgrFv = .text:0x80227F00; // type:function size:0x70 scope:global align:4 +loadResource__Q34Game10PelletList3MgrFv = .text:0x80227F70; // type:function size:0x1D8 scope:global align:4 +getDictionaryNum__Q34Game10PelletList3MgrFv = .text:0x80228148; // type:function size:0x18 scope:global align:4 +getConfigFromDictionaryNo__Q34Game10PelletList3MgrFi = .text:0x80228160; // type:function size:0xA4 scope:global align:4 +getOffsetFromDictionaryNo__Q34Game10PelletList3MgrFi = .text:0x80228204; // type:function size:0xA4 scope:global align:4 +globalInstance__Q34Game10PelletList3MgrFv = .text:0x802282A8; // type:function size:0x80 scope:global align:4 +__ct__Q34Game6VsGame10TitleStateFv = .text:0x80228328; // type:function size:0xF8 scope:global align:4 +init__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x80228420; // type:function size:0x134 scope:global align:4 +dvdload__Q34Game6VsGame10TitleStateFv = .text:0x80228554; // type:function size:0x3F4 scope:global align:4 +exec__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80228948; // type:function size:0x38 scope:global align:4 +execChallenge__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80228980; // type:function size:0x2DC scope:global align:4 +transit__Q24Game32FSMStateFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x80228C5C; // type:function size:0x30 scope:weak align:4 +execVs__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80228C8C; // type:function size:0x430 scope:global align:4 +draw__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSectionR8Graphics = .text:0x802290BC; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80229144; // type:function size:0xB0 scope:global align:4 +getSize__Q28Morimura18DispMemberVsSelectFv = .text:0x802291F4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura18DispMemberVsSelectFv = .text:0x802291FC; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura18DispMemberVsSelectFv = .text:0x80229208; // type:function size:0x14 scope:weak align:4 +getSize__Q28Morimura25DispMemberChallengeSelectFv = .text:0x8022921C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura25DispMemberChallengeSelectFv = .text:0x80229224; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura25DispMemberChallengeSelectFv = .text:0x80229230; // type:function size:0x14 scope:weak align:4 +resume__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x80229244; // type:function size:0x4 scope:weak align:4 +restart__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x80229248; // type:function size:0x4 scope:weak align:4 +invoke__36DelegateFv = .text:0x8022924C; // type:function size:0x30 scope:weak align:4 +__sinit_vsGS_Title_cpp = .text:0x8022927C; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6VsGame9GameStateFv = .text:0x802292A4; // type:function size:0xA4 scope:global align:4 +__ct__11BitFlagFv = .text:0x80229348; // type:function size:0xC scope:weak align:4 +init__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x80229354; // type:function size:0x1AC scope:global align:4 +clearLoseCauses__Q34Game6VsGame9GameStateFv = .text:0x80229500; // type:function size:0x14 scope:global align:4 +do_init__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x80229514; // type:function size:0x1D4 scope:global align:4 +goingToCave__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x802296E8; // type:function size:0xC scope:global align:4 +exec__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x802296F4; // type:function size:0x8FC scope:global align:4 +checkFindKeyDemo__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x80229FF0; // type:function size:0x388 scope:global align:4 +checkSMenu__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A378; // type:function size:0x3E4 scope:global align:4 +pre2dDraw__Q34Game6VsGame9GameStateFR8GraphicsPQ24Game13VsGameSection = .text:0x8022A75C; // type:function size:0x50 scope:global align:4 +draw__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionR8Graphics = .text:0x8022A7AC; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A7E0; // type:function size:0x44 scope:global align:4 +onBattleFinished__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionib = .text:0x8022A824; // type:function size:0x34 scope:global align:4 +isCardUsable__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A858; // type:function size:0x10 scope:global align:4 +onRedOrBlueSuckStart__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionib = .text:0x8022A868; // type:function size:0x14C scope:global align:4 +checkPikminZero__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A9B4; // type:function size:0x188 scope:global align:4 +onMovieStart__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x8022AB3C; // type:function size:0x474 scope:global align:4 +onMovieDone__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x8022AFB0; // type:function size:0x9D0 scope:global align:4 +onNextFloor__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ34Game8ItemHole4Item = .text:0x8022B980; // type:function size:0xE4 scope:global align:4 +onOrimaDown__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectioni = .text:0x8022BA64; // type:function size:0x19C scope:global align:4 +open_GameChallenge__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectioni = .text:0x8022BC00; // type:function size:0x33C scope:global align:4 +update_GameChallenge__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022BF3C; // type:function size:0x7D0 scope:global align:4 +drawStatus__Q34Game6VsGame9GameStateFR8GraphicsPQ24Game13VsGameSection = .text:0x8022C70C; // type:function size:0x4 scope:global align:4 +getSize__Q32og6Screen12DispMemberVsFv = .text:0x8022C710; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen12DispMemberVsFv = .text:0x8022C718; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen12DispMemberVsFv = .text:0x8022C724; // type:function size:0xC scope:weak align:4 +getSize__Q32og6Screen21DispMemberChallenge1PFv = .text:0x8022C730; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberChallenge1PFv = .text:0x8022C738; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberChallenge1PFv = .text:0x8022C744; // type:function size:0x10 scope:weak align:4 +getSize__Q32kh6Screen17DispWinLoseReasonFv = .text:0x8022C754; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen17DispWinLoseReasonFv = .text:0x8022C75C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen17DispWinLoseReasonFv = .text:0x8022C764; // type:function size:0x10 scope:weak align:4 +getSize__Q32kh6Screen11DispWinLoseFv = .text:0x8022C774; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen11DispWinLoseFv = .text:0x8022C77C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen11DispWinLoseFv = .text:0x8022C784; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen21DispMemberChallenge2PFv = .text:0x8022C798; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberChallenge2PFv = .text:0x8022C7A0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberChallenge2PFv = .text:0x8022C7AC; // type:function size:0x10 scope:weak align:4 +on_section_fadeout__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022C7BC; // type:function size:0x10 scope:weak align:4 +__sinit_vsGS_Game_cpp = .text:0x8022C7CC; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6VsGame11ResultStateFv = .text:0x8022C7F4; // type:function size:0x104 scope:global align:4 +init__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x8022C8F8; // type:function size:0xBC scope:global align:4 +prepareMorimuraInfo__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection = .text:0x8022C9B4; // type:function size:0x2A8 scope:global align:4 +dvdload__Q34Game6VsGame11ResultStateFv = .text:0x8022CC5C; // type:function size:0x13C scope:global align:4 +exec__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection = .text:0x8022CD98; // type:function size:0x17C scope:global align:4 +draw__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSectionR8Graphics = .text:0x8022CF14; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection = .text:0x8022CF9C; // type:function size:0xCC scope:global align:4 +getSize__Q28Morimura25DispMemberChallengeResultFv = .text:0x8022D068; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura25DispMemberChallengeResultFv = .text:0x8022D070; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura25DispMemberChallengeResultFv = .text:0x8022D07C; // type:function size:0x14 scope:weak align:4 +invoke__37DelegateFv = .text:0x8022D090; // type:function size:0x30 scope:weak align:4 +__sinit_vsGS_Result_cpp = .text:0x8022D0C0; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6VsGame9LoadStateFv = .text:0x8022D0E8; // type:function size:0xF0 scope:global align:4 +init__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x8022D1D8; // type:function size:0xD0 scope:global align:4 +dvdLoad__Q34Game6VsGame9LoadStateFv = .text:0x8022D2A8; // type:function size:0x24 scope:global align:4 +exec__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSection = .text:0x8022D2CC; // type:function size:0x2C4 scope:global align:4 +draw__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSectionR8Graphics = .text:0x8022D590; // type:function size:0x7C scope:global align:4 +cleanup__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSection = .text:0x8022D60C; // type:function size:0x4 scope:global align:4 +getSize__Q32og6Screen15DispMemberFloorFv = .text:0x8022D610; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen15DispMemberFloorFv = .text:0x8022D618; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen15DispMemberFloorFv = .text:0x8022D624; // type:function size:0x10 scope:weak align:4 +invoke__34DelegateFv = .text:0x8022D634; // type:function size:0x30 scope:weak align:4 +__sinit_vsGS_Load_cpp = .text:0x8022D664; // type:function size:0x28 scope:local align:4 +read__Q34Game13ChallengeGame9StageDataFR6Stream = .text:0x8022D68C; // type:function size:0x238 scope:global align:4 +__ct__Q34Game13ChallengeGame9StageListFv = .text:0x8022D8C4; // type:function size:0xB4 scope:global align:4 +__dt__Q34Game13ChallengeGame9StageDataFv = .text:0x8022D978; // type:function size:0x60 scope:weak align:4 +read__Q34Game13ChallengeGame9StageListFR6Stream = .text:0x8022D9D8; // type:function size:0x10C scope:global align:4 +getStageData__Q34Game13ChallengeGame9StageListFi = .text:0x8022DAE4; // type:function size:0x84 scope:global align:4 +__ct__Q34Game6VsGame9StageListFv = .text:0x8022DB68; // type:function size:0xBC scope:global align:4 +__dt__Q34Game6VsGame9StageDataFv = .text:0x8022DC24; // type:function size:0x60 scope:weak align:4 +read__Q34Game6VsGame9StageListFR6Stream = .text:0x8022DC84; // type:function size:0x350 scope:global align:4 +getStageData__Q34Game6VsGame9StageListFi = .text:0x8022DFD4; // type:function size:0x84 scope:global align:4 +__dt__Q34Game6VsGame9StageListFv = .text:0x8022E058; // type:function size:0x84 scope:weak align:4 +__dt__Q34Game13ChallengeGame9StageListFv = .text:0x8022E0DC; // type:function size:0x84 scope:weak align:4 +__sinit_vsStageData_cpp = .text:0x8022E160; // type:function size:0x28 scope:local align:4 +__dt__12CellMgrParmsFv = .text:0x8022E188; // type:function size:0x74 scope:global align:4 +globalInstance__12CellMgrParmsFv = .text:0x8022E1FC; // type:function size:0x168 scope:global align:4 +@12@__dt__12CellMgrParmsFv = .text:0x8022E364; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game15CellIteratorArgFv = .text:0x8022E36C; // type:function size:0x34 scope:global align:4 +__ct__Q24Game15CellIteratorArgFRQ23Sys6Sphere = .text:0x8022E3A0; // type:function size:0x40 scope:global align:4 +__ct__Q24Game12CellIteratorFRQ24Game15CellIteratorArg = .text:0x8022E3E0; // type:function size:0x7C scope:global align:4 +first__Q24Game12CellIteratorFv = .text:0x8022E45C; // type:function size:0xA4 scope:global align:4 +next__Q24Game12CellIteratorFv = .text:0x8022E500; // type:function size:0x34 scope:global align:4 +isDone__Q24Game12CellIteratorFv = .text:0x8022E534; // type:function size:0x10 scope:global align:4 +__ml__Q24Game12CellIteratorFv = .text:0x8022E544; // type:function size:0x1C scope:global align:4 +getCellObject__Q24Game12CellIteratorFv = .text:0x8022E560; // type:function size:0x1C scope:global align:4 +step__Q24Game12CellIteratorFv = .text:0x8022E57C; // type:function size:0xEC scope:global align:4 +find__Q24Game12CellIteratorFv = .text:0x8022E668; // type:function size:0x110 scope:global align:4 +satisfy__Q24Game12CellIteratorFv = .text:0x8022E778; // type:function size:0x18C scope:global align:4 +calcExtent__Q24Game12CellIteratorFv = .text:0x8022E904; // type:function size:0x18C scope:global align:4 +dump__Q24Game12CellIteratorFv = .text:0x8022EA90; // type:function size:0x4 scope:global align:4 +__ct__Q34Game6VsGame7VSStateFv = .text:0x8022EA94; // type:function size:0x44 scope:global align:4 +do_init__Q34Game6VsGame7VSStateFPQ24Game13VsGameSection = .text:0x8022EAD8; // type:function size:0xCC scope:global align:4 +__sinit_vsGS_VSGame_cpp = .text:0x8022EBA4; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11TSoundEventFv = .text:0x8022EBCC; // type:function size:0x1C scope:global align:4 +event__Q24Game11TSoundEventFv = .text:0x8022EBE8; // type:function size:0x48 scope:global align:4 +finish__Q24Game11TSoundEventFv = .text:0x8022EC30; // type:function size:0x10 scope:global align:4 +update__Q24Game11TSoundEventFv = .text:0x8022EC40; // type:function size:0x74 scope:global align:4 +__ct__Q26PikiAI9ActBattleFPQ24Game4Piki = .text:0x8022ECB4; // type:function size:0xB8 scope:global align:4 +emotion_success__Q26PikiAI9ActBattleFv = .text:0x8022ED6C; // type:function size:0x44 scope:global align:4 +init__Q26PikiAI9ActBattleFPQ26PikiAI9ActionArg = .text:0x8022EDB0; // type:function size:0x300 scope:global align:4 +exec__Q26PikiAI9ActBattleFv = .text:0x8022F0B0; // type:function size:0xEC scope:global align:4 +cleanup__Q26PikiAI9ActBattleFv = .text:0x8022F19C; // type:function size:0xC scope:global align:4 +collisionCallback__Q26PikiAI9ActBattleFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8022F1A8; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI9ActBattleFRCQ28SysShape8KeyEvent = .text:0x8022F1AC; // type:function size:0x484 scope:global align:4 +initApproach__Q26PikiAI9ActBattleFv = .text:0x8022F630; // type:function size:0xBC scope:global align:4 +execApproach__Q26PikiAI9ActBattleFv = .text:0x8022F6EC; // type:function size:0x50 scope:global align:4 +initBattle__Q26PikiAI9ActBattleFv = .text:0x8022F73C; // type:function size:0xC8 scope:global align:4 +execBattle__Q26PikiAI9ActBattleFv = .text:0x8022F804; // type:function size:0xFC scope:global align:4 +execDamage__Q26PikiAI9ActBattleFv = .text:0x8022F900; // type:function size:0xE8 scope:global align:4 +@32@4@onKeyEvent__Q26PikiAI9ActBattleFRCQ28SysShape8KeyEvent = .text:0x8022F9E8; // type:function size:0x14 scope:weak align:4 +clear__Q24Game8BirthMgrFv = .text:0x8022F9FC; // type:function size:0x68 scope:global align:4 +inc__Q24Game8BirthMgrFi = .text:0x8022FA64; // type:function size:0x48 scope:global align:4 +dec__Q24Game8BirthMgrFi = .text:0x8022FAAC; // type:function size:0x48 scope:global align:4 +inc_today__Q24Game8BirthMgrFi = .text:0x8022FAF4; // type:function size:0xD0 scope:global align:4 +inc_cave__Q24Game8BirthMgrFi = .text:0x8022FBC4; // type:function size:0xD0 scope:global align:4 +dec_today__Q24Game8BirthMgrFi = .text:0x8022FC94; // type:function size:0xD0 scope:global align:4 +dec_cave__Q24Game8BirthMgrFi = .text:0x8022FD64; // type:function size:0xD0 scope:global align:4 +account_cave__Q24Game8BirthMgrFv = .text:0x8022FE34; // type:function size:0x140 scope:global align:4 +account_today_adjust__Q24Game8BirthMgrFv = .text:0x8022FF74; // type:function size:0x2B4 scope:global align:4 +account_today__Q24Game8BirthMgrFv = .text:0x80230228; // type:function size:0x204 scope:global align:4 +get_total__Q24Game8BirthMgrFi = .text:0x8023042C; // type:function size:0x70 scope:global align:4 +read__Q24Game8BirthMgrFR6Stream = .text:0x8023049C; // type:function size:0xB0 scope:global align:4 +write__Q24Game8BirthMgrFR6Stream = .text:0x8023054C; // type:function size:0x148 scope:global align:4 +clear__Q24Game8DeathMgrFv = .text:0x80230694; // type:function size:0x84 scope:global align:4 +inc__Q24Game8DeathMgrFi = .text:0x80230718; // type:function size:0x5C scope:global align:4 +inc_today__Q24Game8DeathMgrFi = .text:0x80230774; // type:function size:0xFC scope:global align:4 +inc_cave__Q24Game8DeathMgrFi = .text:0x80230870; // type:function size:0xFC scope:global align:4 +account_cave__Q24Game8DeathMgrFv = .text:0x8023096C; // type:function size:0x1FC scope:global align:4 +account_today__Q24Game8DeathMgrFv = .text:0x80230B68; // type:function size:0x1FC scope:global align:4 +get_cave__Q24Game8DeathMgrFi = .text:0x80230D64; // type:function size:0xE8 scope:global align:4 +get_today__Q24Game8DeathMgrFi = .text:0x80230E4C; // type:function size:0xE8 scope:global align:4 +get_total__Q24Game8DeathMgrFi = .text:0x80230F34; // type:function size:0xE8 scope:global align:4 +read__Q24Game8DeathMgrFR6Stream = .text:0x8023101C; // type:function size:0xB0 scope:global align:4 +write__Q24Game8DeathMgrFR6Stream = .text:0x802310CC; // type:function size:0x148 scope:global align:4 +__sinit_gameDeathCount_cpp = .text:0x80231214; // type:function size:0xE0 scope:local align:4 +__ct__Q26PikiAI7ActBoreFPQ24Game4Piki = .text:0x802312F4; // type:function size:0x98 scope:global align:4 +init__Q26PikiAI7ActBoreFPQ26PikiAI9ActionArg = .text:0x8023138C; // type:function size:0x80 scope:global align:4 +startCurrAction__Q26PikiAI7ActBoreFv = .text:0x8023140C; // type:function size:0x180 scope:global align:4 +finish__Q26PikiAI7ActBoreFv = .text:0x8023158C; // type:function size:0x7C scope:global align:4 +exec__Q26PikiAI7ActBoreFv = .text:0x80231608; // type:function size:0x294 scope:global align:4 +cleanup__Q26PikiAI7ActBoreFv = .text:0x8023189C; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI7ActRestFPQ24Game4Piki = .text:0x802318A0; // type:function size:0x9C scope:global align:4 +finish__Q26PikiAI7ActRestFv = .text:0x8023193C; // type:function size:0x1C scope:global align:4 +init__Q26PikiAI7ActRestFPQ26PikiAI9ActionArg = .text:0x80231958; // type:function size:0x80 scope:global align:4 +sitDown__Q26PikiAI7ActRestFv = .text:0x802319D8; // type:function size:0xB8 scope:global align:4 +exec__Q26PikiAI7ActRestFv = .text:0x80231A90; // type:function size:0x330 scope:global align:4 +cleanup__Q26PikiAI7ActRestFv = .text:0x80231DC0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI7ActRestFRCQ28SysShape8KeyEvent = .text:0x80231DC4; // type:function size:0x1F4 scope:global align:4 +__ct__Q26PikiAI10ActOneshotFPQ24Game4Piki = .text:0x80231FB8; // type:function size:0xBC scope:global align:4 +init__Q26PikiAI10ActOneshotFPQ26PikiAI9ActionArg = .text:0x80232074; // type:function size:0x94 scope:global align:4 +finish__Q26PikiAI10ActOneshotFv = .text:0x80232108; // type:function size:0x48 scope:global align:4 +exec__Q26PikiAI10ActOneshotFv = .text:0x80232150; // type:function size:0x70 scope:global align:4 +cleanup__Q26PikiAI10ActOneshotFv = .text:0x802321C0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI10ActOneshotFRCQ28SysShape8KeyEvent = .text:0x802321C4; // type:function size:0x150 scope:global align:4 +@28@4@onKeyEvent__Q26PikiAI7ActRestFRCQ28SysShape8KeyEvent = .text:0x80232314; // type:function size:0x14 scope:weak align:4 +@28@4@onKeyEvent__Q26PikiAI10ActOneshotFRCQ28SysShape8KeyEvent = .text:0x80232328; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game9PartsViewFv = .text:0x8023233C; // type:function size:0x140 scope:global align:4 +doDirectDraw__Q24Game9PartsViewFR8Graphics = .text:0x8023247C; // type:function size:0x4 scope:global align:4 +doAnimation__Q24Game9PartsViewFv = .text:0x80232480; // type:function size:0x74 scope:global align:4 +doEntry__Q24Game9PartsViewFv = .text:0x802324F4; // type:function size:0x4 scope:global align:4 +doSetView__Q24Game9PartsViewFi = .text:0x802324F8; // type:function size:0x2C scope:global align:4 +doViewCalc__Q24Game9PartsViewFv = .text:0x80232524; // type:function size:0x2C scope:global align:4 +read__Q24Game9PartsViewFR6Stream = .text:0x80232550; // type:function size:0x158 scope:global align:4 +__ct__Q34Game10SingleGame11EndingStateFv = .text:0x802326A8; // type:function size:0xE0 scope:global align:4 +init__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80232788; // type:function size:0xD4 scope:global align:4 +dvdload__Q34Game10SingleGame11EndingStateFv = .text:0x8023285C; // type:function size:0x1C8 scope:global align:4 +do_dvdload__Q34Game10SingleGame11EndingStateFv = .text:0x80232A24; // type:function size:0x4 scope:weak align:4 +exec__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSection = .text:0x80232A28; // type:function size:0x850 scope:global align:4 +draw__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80233278; // type:function size:0xD4 scope:global align:4 +cleanup__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSection = .text:0x8023334C; // type:function size:0xB8 scope:global align:4 +getSize__Q32og6Screen22DispMemberFinalMessageFv = .text:0x80233404; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen22DispMemberFinalMessageFv = .text:0x8023340C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen22DispMemberFinalMessageFv = .text:0x80233418; // type:function size:0x14 scope:weak align:4 +invoke__42DelegateFv = .text:0x8023342C; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_Ending_cpp = .text:0x8023345C; // type:function size:0x28 scope:local align:4 +__ct__Q34Game11IconTexture6LoaderFv = .text:0x80233484; // type:function size:0x48 scope:global align:4 +__dt__Q34Game11IconTexture6LoaderFv = .text:0x802334CC; // type:function size:0x8C scope:global align:4 +loadResource__Q34Game11IconTexture6LoaderFPc = .text:0x80233558; // type:function size:0x84 scope:global align:4 +getResTIMG__Q34Game11IconTexture6LoaderFPc = .text:0x802335DC; // type:function size:0x30 scope:global align:4 +__ct__Q34Game11IconTexture3MgrFv = .text:0x8023360C; // type:function size:0x48 scope:global align:4 +__dt__Q34Game11IconTexture3MgrFv = .text:0x80233654; // type:function size:0x8C scope:global align:4 +create__Q34Game11IconTexture3MgrFi = .text:0x802336E0; // type:function size:0x84 scope:global align:4 +setTexture__Q34Game11IconTexture3MgrFiP7ResTIMG = .text:0x80233764; // type:function size:0x8C scope:global align:4 +getTexture__Q34Game11IconTexture3MgrFi = .text:0x802337F0; // type:function size:0x2C scope:global align:4 +incKilled__Q34Game8TekiStat4InfoFv = .text:0x8023381C; // type:function size:0x34 scope:global align:4 +incKillPikmin__Q34Game8TekiStat4InfoFv = .text:0x80233850; // type:function size:0x28 scope:global align:4 +__ct__Q34Game8TekiStat3MgrFv = .text:0x80233878; // type:function size:0x10 scope:global align:4 +whatsNew__Q34Game8TekiStat3MgrFv = .text:0x80233888; // type:function size:0x84 scope:global align:4 +setOutOfDateAll__Q34Game8TekiStat3MgrFv = .text:0x8023390C; // type:function size:0x78 scope:global align:4 +clear__Q34Game8TekiStat3MgrFv = .text:0x80233984; // type:function size:0xC8 scope:global align:4 +allocate__Q34Game8TekiStat3MgrFi = .text:0x80233A4C; // type:function size:0x60 scope:global align:4 +__ct__Q34Game8TekiStat4InfoFv = .text:0x80233AAC; // type:function size:0x18 scope:weak align:4 +getTekiInfo__Q34Game8TekiStat3MgrFi = .text:0x80233AC4; // type:function size:0x7C scope:global align:4 +write__Q34Game8TekiStat3MgrFR6Stream = .text:0x80233B40; // type:function size:0xC0 scope:global align:4 +read__Q34Game8TekiStat3MgrFR6Stream = .text:0x80233C00; // type:function size:0xEC scope:global align:4 +__ct__Q24Game9HighscoreFv = .text:0x80233CEC; // type:function size:0x1C scope:global align:4 +allocate__Q24Game9HighscoreFi = .text:0x80233D08; // type:function size:0x44 scope:global align:4 +getScore__Q24Game9HighscoreFi = .text:0x80233D4C; // type:function size:0x88 scope:global align:4 +entryScore__Q24Game9HighscoreFi = .text:0x80233DD4; // type:function size:0x178 scope:global align:4 +higher__Q24Game9HighscoreFii = .text:0x80233F4C; // type:function size:0x4C scope:global align:4 +do_higher__Q24Game9HighscoreFii = .text:0x80233F98; // type:function size:0x18 scope:weak align:4 +read__Q24Game9HighscoreFR6Stream = .text:0x80233FB0; // type:function size:0xB8 scope:global align:4 +write__Q24Game9HighscoreFR6Stream = .text:0x80234068; // type:function size:0x74 scope:global align:4 +clear__Q24Game9HighscoreFv = .text:0x802340DC; // type:function size:0x30 scope:global align:4 +__ct__Q24Game14PlayCommonDataFv = .text:0x8023410C; // type:function size:0xFC scope:global align:4 +reset__Q24Game14PlayCommonDataFv = .text:0x80234208; // type:function size:0x78 scope:global align:4 +reset__Q24Game21PlayChallengeGameDataFv = .text:0x80234280; // type:function size:0xC0 scope:global align:4 +write__Q24Game14PlayCommonDataFR6Stream = .text:0x80234340; // type:function size:0xA0 scope:global align:4 +read__Q24Game14PlayCommonDataFR6Stream = .text:0x802343E0; // type:function size:0xEC scope:global align:4 +getHighscore_clear__Q24Game14PlayCommonDataFi = .text:0x802344CC; // type:function size:0x78 scope:global align:4 +getHighscore_complete__Q24Game14PlayCommonDataFi = .text:0x80234544; // type:function size:0x78 scope:global align:4 +entryHighscores_clear__Q24Game14PlayCommonDataFiPiPi = .text:0x802345BC; // type:function size:0x38 scope:global align:4 +entryHighscores_complete__Q24Game14PlayCommonDataFiPiPi = .text:0x802345F4; // type:function size:0x38 scope:global align:4 +entryHighscores_common__Q24Game14PlayCommonDataFPPQ24Game9HighscoreiPiPi = .text:0x8023462C; // type:function size:0xE0 scope:global align:4 +isChallengeGamePlayable__Q24Game14PlayCommonDataFv = .text:0x8023470C; // type:function size:0xC scope:global align:4 +isLouieRescued__Q24Game14PlayCommonDataFv = .text:0x80234718; // type:function size:0xC scope:global align:4 +isPerfectChallenge__Q24Game14PlayCommonDataFv = .text:0x80234724; // type:function size:0x8C scope:global align:4 +enableChallengeGame__Q24Game14PlayCommonDataFv = .text:0x802347B0; // type:function size:0x30 scope:global align:4 +enableLouieRescue__Q24Game14PlayCommonDataFv = .text:0x802347E0; // type:function size:0x30 scope:global align:4 +challenge_is_virgin__Q24Game14PlayCommonDataFv = .text:0x80234810; // type:function size:0x1C scope:global align:4 +challenge_is_virgin_check_only__Q24Game14PlayCommonDataFv = .text:0x8023482C; // type:function size:0x14 scope:global align:4 +challenge_get_CourseState__Q24Game14PlayCommonDataFi = .text:0x80234840; // type:function size:0x24 scope:global align:4 +challenge_checkOpen__Q24Game14PlayCommonDataFi = .text:0x80234864; // type:function size:0x2C scope:global align:4 +challenge_checkClear__Q24Game14PlayCommonDataFi = .text:0x80234890; // type:function size:0x2C scope:global align:4 +challenge_checkKunsho__Q24Game14PlayCommonDataFi = .text:0x802348BC; // type:function size:0x2C scope:global align:4 +challenge_checkJustOpen__Q24Game14PlayCommonDataFi = .text:0x802348E8; // type:function size:0x4C scope:global align:4 +challenge_checkJustClear__Q24Game14PlayCommonDataFi = .text:0x80234934; // type:function size:0x4C scope:global align:4 +challenge_checkJustKunsho__Q24Game14PlayCommonDataFi = .text:0x80234980; // type:function size:0x4C scope:global align:4 +challenge_openNewCourse__Q24Game14PlayCommonDataFv = .text:0x802349CC; // type:function size:0x94 scope:global align:4 +challenge_setClear__Q24Game14PlayCommonDataFi = .text:0x80234A60; // type:function size:0x30 scope:global align:4 +challenge_setOpen__Q24Game14PlayCommonDataFi = .text:0x80234A90; // type:function size:0x30 scope:global align:4 +challenge_setKunsho__Q24Game14PlayCommonDataFi = .text:0x80234AC0; // type:function size:0x80 scope:global align:4 +challenge_getHighscore__Q24Game14PlayCommonDataFii = .text:0x80234B40; // type:function size:0x84 scope:global align:4 +__ct__Q24Game21PlayChallengeGameDataFv = .text:0x80234BC4; // type:function size:0xC8 scope:global align:4 +__ct__Q34Game21PlayChallengeGameData11CourseStateFv = .text:0x80234C8C; // type:function size:0x78 scope:weak align:4 +getState__Q24Game21PlayChallengeGameDataFi = .text:0x80234D04; // type:function size:0xA4 scope:global align:4 +write__Q24Game21PlayChallengeGameDataFR6Stream = .text:0x80234DA8; // type:function size:0x9C scope:global align:4 +read__Q24Game21PlayChallengeGameDataFR6Stream = .text:0x80234E44; // type:function size:0x9C scope:global align:4 +do_higher__Q24Game8LowscoreFii = .text:0x80234EE0; // type:function size:0x18 scope:weak align:4 +__ct__Q24Game11PelletCarryFv = .text:0x80234EF8; // type:function size:0x30 scope:global align:4 +reset__Q24Game11PelletCarryFv = .text:0x80234F28; // type:function size:0x28 scope:global align:4 +pull__Q24Game11PelletCarryFUsR10Vector3f = .text:0x80234F50; // type:function size:0x84 scope:global align:4 +pullable__Q24Game11PelletCarryFUsf = .text:0x80234FD4; // type:function size:0x34 scope:global align:4 +giveup__Q24Game11PelletCarryFUs = .text:0x80235008; // type:function size:0x34 scope:global align:4 +frameWork__Q24Game11PelletCarryFR10Vector3 = .text:0x8023503C; // type:function size:0x64 scope:global align:4 +__ct__Q24Game21Challenge2D_TitleInfoFi = .text:0x802350A0; // type:function size:0x64 scope:global align:4 +__ct__Q34Game21Challenge2D_TitleInfo4InfoFv = .text:0x80235104; // type:function size:0x30 scope:global align:4 +__cl__Q24Game21Challenge2D_TitleInfoFi = .text:0x80235134; // type:function size:0x7C scope:global align:4 +__ct__Q24Game14Vs2D_TitleInfoFi = .text:0x802351B0; // type:function size:0x64 scope:global align:4 +__ct__Q34Game14Vs2D_TitleInfo4InfoFv = .text:0x80235214; // type:function size:0xC scope:global align:4 +__cl__Q24Game14Vs2D_TitleInfoFi = .text:0x80235220; // type:function size:0xA8 scope:global align:4 +__ct__Q24Game22Challenge2D_ResultInfoFv = .text:0x802352C8; // type:function size:0x28 scope:global align:4 +__ct__Q34Game6VsGame7TekiMgrFv = .text:0x802352F0; // type:function size:0x44 scope:global align:4 +__dt__Q34Game6VsGame8TekiNodeFv = .text:0x80235334; // type:function size:0x60 scope:weak align:4 +entry__Q34Game6VsGame7TekiMgrFQ34Game11EnemyTypeID12EEnemyTypeIDi = .text:0x80235394; // type:function size:0xA0 scope:global align:4 +birth__Q34Game6VsGame7TekiMgrFiR10Vector3b = .text:0x80235434; // type:function size:0xD8 scope:global align:4 +__ct__Q34Game6VsGame7CardMgrFPQ24Game13VsGameSectionPQ34Game6VsGame7TekiMgr = .text:0x8023550C; // type:function size:0x148 scope:global align:4 +__ct__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80235654; // type:function size:0x58 scope:weak align:4 +loadResource__Q34Game6VsGame7CardMgrFv = .text:0x802356AC; // type:function size:0x2B8 scope:global align:4 +update__Q34Game6VsGame7CardMgrFv = .text:0x80235964; // type:function size:0x48 scope:global align:4 +draw__Q34Game6VsGame7CardMgrFR8Graphics = .text:0x802359AC; // type:function size:0xA4 scope:global align:4 +stopSlot__Q34Game6VsGame7CardMgrFi = .text:0x80235A50; // type:function size:0x30 scope:global align:4 +usePlayerCard__Q34Game6VsGame7CardMgrFiPQ34Game6VsGame7TekiMgr = .text:0x80235A80; // type:function size:0xD8C scope:global align:4 +gotPlayerCard__Q34Game6VsGame7CardMgrFi = .text:0x8023680C; // type:function size:0x1BC scope:global align:4 +clear__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x802369C8; // type:function size:0x58 scope:global align:4 +start__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80236A20; // type:function size:0x5F0 scope:global align:4 +startStop__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80237010; // type:function size:0x50 scope:global align:4 +update__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80237060; // type:function size:0x7B8 scope:global align:4 +updateAppear__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80237818; // type:function size:0x150 scope:global align:4 +initDraw__Q34Game6VsGame7CardMgrFv = .text:0x80237968; // type:function size:0x354 scope:global align:4 +drawSlot__Q34Game6VsGame7CardMgrFR8GraphicsR10Vector3RQ44Game6VsGame7CardMgr11SlotMachine = .text:0x80237CBC; // type:function size:0xE4C scope:global align:4 +update__8LightObjFv = .text:0x80238B08; // type:function size:0x4 scope:weak align:4 +startZoomIn__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238B0C; // type:function size:0x28 scope:global align:4 +startZoomUse__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238B34; // type:function size:0x20 scope:global align:4 +updateZoomIn__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238B54; // type:function size:0x1F0 scope:global align:4 +updateZoomUse__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238D44; // type:function size:0x128 scope:global align:4 +setGroup__Q25efx2d5TBaseFUc = .text:0x80238E6C; // type:function size:0x8 scope:weak align:4 +getName__Q25efx2d18ArgScaleColorColorFv = .text:0x80238E74; // type:function size:0xC scope:weak align:4 +getName__Q25efx2d3ArgFv = .text:0x80238E80; // type:function size:0x8 scope:weak align:4 +__sinit_vsCardMgr_cpp = .text:0x80238E88; // type:function size:0x28 scope:local align:4 +__ct__Q26PikiAI9ActRescueFPQ24Game4Piki = .text:0x80238EB0; // type:function size:0xB8 scope:global align:4 +init__Q26PikiAI9ActRescueFPQ26PikiAI9ActionArg = .text:0x80238F68; // type:function size:0xC4 scope:global align:4 +exec__Q26PikiAI9ActRescueFv = .text:0x8023902C; // type:function size:0x60 scope:global align:4 +initApproach__Q26PikiAI9ActRescueFv = .text:0x8023908C; // type:function size:0xAC scope:global align:4 +execApproach__Q26PikiAI9ActRescueFv = .text:0x80239138; // type:function size:0x13C scope:global align:4 +initGo__Q26PikiAI9ActRescueFv = .text:0x80239274; // type:function size:0x150 scope:global align:4 +execGo__Q26PikiAI9ActRescueFv = .text:0x802393C4; // type:function size:0x1C0 scope:global align:4 +initThrow__Q26PikiAI9ActRescueFv = .text:0x80239584; // type:function size:0x64 scope:global align:4 +execThrow__Q26PikiAI9ActRescueFv = .text:0x802395E8; // type:function size:0x278 scope:global align:4 +onKeyEvent__Q26PikiAI9ActRescueFRCQ28SysShape8KeyEvent = .text:0x80239860; // type:function size:0x2C scope:global align:4 +emotion_success__Q26PikiAI9ActRescueFv = .text:0x8023988C; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q26PikiAI9ActRescueFR8Graphics = .text:0x80239890; // type:function size:0x4 scope:global align:4 +cleanup__Q26PikiAI9ActRescueFv = .text:0x80239894; // type:function size:0x4 scope:global align:4 +collisionCallback__Q26PikiAI9ActRescueFPQ24Game4PikiRQ24Game9CollEvent = .text:0x80239898; // type:function size:0x4 scope:global align:4 +satisfy__10WPFindCondFPQ24Game8WayPoint = .text:0x8023989C; // type:function size:0x20 scope:weak align:4 +getNextAIType__Q26PikiAI9ActRescueFv = .text:0x802398BC; // type:function size:0x8 scope:weak align:4 +@40@4@onKeyEvent__Q26PikiAI9ActRescueFRCQ28SysShape8KeyEvent = .text:0x802398C4; // type:function size:0x14 scope:weak align:4 +newdraw_draw3D_all__Q24Game15BaseGameSectionFR8Graphics = .text:0x802398D8; // type:function size:0x1F4 scope:global align:4 +newdraw_drawAll__Q24Game15BaseGameSectionFP8Viewport = .text:0x80239ACC; // type:function size:0x360 scope:global align:4 +invoke__46Delegate1FP8Viewport = .text:0x80239E2C; // type:function size:0x30 scope:weak align:4 +__sinit_baseGameSectionDraw_cpp = .text:0x80239E5C; // type:function size:0x28 scope:local align:4 +init__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80239E84; // type:function size:0xB4 scope:global align:4 +exec__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSection = .text:0x80239F38; // type:function size:0x238 scope:global align:4 +draw__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8023A170; // type:function size:0x90 scope:global align:4 +cleanup__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSection = .text:0x8023A200; // type:function size:0x4 scope:global align:4 +getSize__Q32og6Screen20DispMemberCourseNameFv = .text:0x8023A204; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen20DispMemberCourseNameFv = .text:0x8023A20C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen20DispMemberCourseNameFv = .text:0x8023A218; // type:function size:0x10 scope:weak align:4 +__sinit_singleGS_Load_cpp = .text:0x8023A228; // type:function size:0x28 scope:local align:4 +init__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8023A250; // type:function size:0x4A0 scope:global align:4 +exec__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSection = .text:0x8023A6F0; // type:function size:0x40C scope:global align:4 +onMovieStart__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8023AAFC; // type:function size:0x5B8 scope:global align:4 +onMovieDone__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8023B0B4; // type:function size:0xF4 scope:global align:4 +onMovieCommand__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectioni = .text:0x8023B1A8; // type:function size:0x2C0 scope:global align:4 +draw__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8023B468; // type:function size:0x28 scope:global align:4 +cleanup__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSection = .text:0x8023B490; // type:function size:0x7C scope:global align:4 +__sinit_singleGS_DayEnd_cpp = .text:0x8023B50C; // type:function size:0x28 scope:local align:4 +drawOtakaraWindow__Q24Game15BaseGameSectionFR8Graphics = .text:0x8023B534; // type:function size:0x64 scope:global align:4 +setDraw2DCreature__Q24Game15BaseGameSectionFPQ24Game8Creature = .text:0x8023B598; // type:function size:0x94 scope:global align:4 +startZoomWindow__Q24Game15BaseGameSectionFv = .text:0x8023B62C; // type:function size:0x1E0 scope:global align:4 +startKantei2D__Q24Game15BaseGameSectionFv = .text:0x8023B80C; // type:function size:0x258 scope:global align:4 +onKanteiDone__Q24Game15BaseGameSectionFR7Rect = .text:0x8023BA64; // type:function size:0xCC scope:global align:4 +init__Q34Game15BaseGameSection10ZoomCameraFffR10Vector3P10Controller = .text:0x8023BB30; // type:function size:0x114 scope:global align:4 +makeLookAt__Q34Game15BaseGameSection10ZoomCameraFv = .text:0x8023BC44; // type:function size:0x2B0 scope:global align:4 +doUpdate__Q34Game15BaseGameSection10ZoomCameraFv = .text:0x8023BEF4; // type:function size:0x164 scope:global align:4 +do_drawOtakaraWindow__Q24Game15BaseGameSectionFR8Graphics = .text:0x8023C058; // type:function size:0x410 scope:global align:4 +__dt__Q34Game15BaseGameSection10ZoomCameraFv = .text:0x8023C468; // type:function size:0xD0 scope:weak align:4 +startVibration__12LookAtCameraFi = .text:0x8023C538; // type:function size:0x4 scope:weak align:4 +getSize__Q32og6Screen21DispMemberSpecialItemFv = .text:0x8023C53C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberSpecialItemFv = .text:0x8023C544; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberSpecialItemFv = .text:0x8023C550; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen16DispMemberKanteiFv = .text:0x8023C564; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen16DispMemberKanteiFv = .text:0x8023C56C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen16DispMemberKanteiFv = .text:0x8023C578; // type:function size:0x10 scope:weak align:4 +__sinit_baseGameSectionKantei_cpp = .text:0x8023C588; // type:function size:0x28 scope:local align:4 +insertSort__Q210SweepPrune4NodeFRQ210SweepPrune4Node = .text:0x8023C5B0; // type:function size:0x1C8 scope:global align:4 +__ct__Q210SweepPrune6ObjectFv = .text:0x8023C778; // type:function size:0x70 scope:global align:4 +__ct__Q210SweepPrune5WorldFv = .text:0x8023C7E8; // type:function size:0x2C scope:global align:4 +resolve__Q210SweepPrune5WorldFRQ310SweepPrune5World10ResolveArg = .text:0x8023C814; // type:function size:0x148 scope:global align:4 +__dt__Q29TexCaster6CasterFv = .text:0x8023C95C; // type:function size:0x60 scope:global align:4 +hide__Q29TexCaster6CasterFv = .text:0x8023C9BC; // type:function size:0x14 scope:global align:4 +fadein__Q29TexCaster6CasterFf = .text:0x8023C9D0; // type:function size:0x80 scope:global align:4 +globalInstance__Q29TexCaster3MgrFv = .text:0x8023CA50; // type:function size:0xA0 scope:global align:4 +deleteInstance__Q29TexCaster3MgrFv = .text:0x8023CAF0; // type:function size:0x6C scope:global align:4 +loadResource__Q29TexCaster3MgrFv = .text:0x8023CB5C; // type:function size:0xE8 scope:global align:4 +create__Q29TexCaster3MgrFRQ23Sys6Spheref = .text:0x8023CC44; // type:function size:0x550 scope:global align:4 +draw__Q29TexCaster3MgrFR8Graphics = .text:0x8023D194; // type:function size:0x288 scope:global align:4 +clear__Q24Game17PelletBirthBufferFv = .text:0x8023D41C; // type:function size:0xC scope:global align:4 +entry__Q24Game17PelletBirthBufferFRQ24Game13PelletInitArg = .text:0x8023D428; // type:function size:0xF0 scope:global align:4 +birthAll__Q24Game17PelletBirthBufferFv = .text:0x8023D518; // type:function size:0xA0 scope:global align:4 +__sinit_pelletBirthBuffer_cpp = .text:0x8023D5B8; // type:function size:0x3C scope:local align:4 +__ct__Q24Game13PelletInitArgFv = .text:0x8023D5F4; // type:function size:0x58 scope:weak align:4 +__ct__6VSFifoFUl = .text:0x8023D64C; // type:function size:0x90 scope:global align:4 +__dt__6VSFifoFv = .text:0x8023D6DC; // type:function size:0x48 scope:global align:4 +becomeCurrent__6VSFifoFv = .text:0x8023D724; // type:function size:0x8C scope:global align:4 +calcLagrange__Q24Game9NsMathExpFPC10Vector3fR10Vector3 = .text:0x8023D7B0; // type:function size:0xA8 scope:global align:4 +calcJointPos__Q24Game9NsMathExpFRC10Vector3RC10Vector3ffR10Vector3R10Vector3 = .text:0x8023D858; // type:function size:0x1D8 scope:global align:4 +__ct__Q24Game12CylinderBaseFv = .text:0x8023DA30; // type:function size:0x4DC scope:global align:4 +setColor__Q24Game12CylinderBaseFP6Color4 = .text:0x8023DF0C; // type:function size:0x8 scope:global align:4 +setShadowRect__Q24Game12CylinderBaseFR7Rect = .text:0x8023DF14; // type:function size:0x24 scope:global align:4 +setCameraParms__Q24Game12CylinderBaseFP6Camerai = .text:0x8023DF38; // type:function size:0xB4 scope:global align:4 +makeSRT__Q24Game12CylinderBaseFR7MatrixfRQ24Game11ShadowParam = .text:0x8023DFEC; // type:function size:0xCC scope:global align:4 +getCylinderType__Q24Game12CylinderBaseFRQ24Game11ShadowParami = .text:0x8023E0B8; // type:function size:0xA4 scope:global align:4 +setFilterTextureID__Q24Game12CylinderBaseFi = .text:0x8023E15C; // type:function size:0x4 scope:global align:4 +drawInit__Q24Game12CylinderBaseFv = .text:0x8023E160; // type:function size:0x4 scope:global align:4 +drawCylinder__Q24Game12CylinderBaseFR7Matrixfi = .text:0x8023E164; // type:function size:0x4 scope:global align:4 +drawFinish__Q24Game12CylinderBaseFv = .text:0x8023E168; // type:function size:0x4 scope:global align:4 +__ct__Q24Game15ShadowCylinder2FPQ24Game11ShadowParmsP6Color4 = .text:0x8023E16C; // type:function size:0x164 scope:global align:4 +setFilterTextureID__Q24Game15ShadowCylinder2Fi = .text:0x8023E2D0; // type:function size:0x44 scope:global align:4 +drawInit__Q24Game15ShadowCylinder2Fv = .text:0x8023E314; // type:function size:0x350 scope:global align:4 +drawCylinder__Q24Game15ShadowCylinder2FR7Matrixfi = .text:0x8023E664; // type:function size:0xC0 scope:global align:4 +drawFinish__Q24Game15ShadowCylinder2Fv = .text:0x8023E724; // type:function size:0x1E4 scope:global align:4 +copyShadowTexture__Q24Game15ShadowCylinder2Fv = .text:0x8023E908; // type:function size:0x170 scope:global align:4 +setupTextureFilterGX__Q24Game15ShadowCylinder2Fv = .text:0x8023EA78; // type:function size:0xFC scope:global align:4 +drawTextureFilter__Q24Game15ShadowCylinder2Fv = .text:0x8023EB74; // type:function size:0x108 scope:global align:4 +__ct__Q24Game15ShadowCylinder3FPQ24Game11ShadowParmsP6Color4 = .text:0x8023EC7C; // type:function size:0x5C scope:global align:4 +drawInit__Q24Game15ShadowCylinder3Fv = .text:0x8023ECD8; // type:function size:0x350 scope:global align:4 +drawCylinder__Q24Game15ShadowCylinder3FR7Matrixfi = .text:0x8023F028; // type:function size:0xF8 scope:global align:4 +drawFinish__Q24Game15ShadowCylinder3Fv = .text:0x8023F120; // type:function size:0x1D4 scope:global align:4 +drawScreenFilter__Q24Game15ShadowCylinder3Fv = .text:0x8023F2F4; // type:function size:0xD0 scope:global align:4 +setFilterTextureID__Q24Game15ShadowCylinder3Fi = .text:0x8023F3C4; // type:function size:0x4 scope:weak align:4 +__sinit_ShadowCylinder_cpp = .text:0x8023F3C8; // type:function size:0x28 scope:local align:4 +__ct__Q24Game10PlayCameraFPQ24Game4Navi = .text:0x8023F3F0; // type:function size:0x138 scope:global align:4 +setCameraParms__Q24Game10PlayCameraFPQ24Game11CameraParms = .text:0x8023F528; // type:function size:0x8 scope:global align:4 +setVibrationParms__Q24Game10PlayCameraFPQ24Game14VibrationParms = .text:0x8023F530; // type:function size:0x8 scope:global align:4 +init__Q24Game10PlayCameraFv = .text:0x8023F538; // type:function size:0x16C scope:global align:4 +setCameraAngle__Q24Game10PlayCameraFf = .text:0x8023F6A4; // type:function size:0x34 scope:global align:4 +getCameraData__Q24Game10PlayCameraFRQ24Game10CameraData = .text:0x8023F6D8; // type:function size:0x5C scope:global align:4 +setCameraData__Q24Game10PlayCameraFRQ24Game10CameraData = .text:0x8023F734; // type:function size:0x5C scope:global align:4 +changePlayerMode__Q24Game10PlayCameraFb = .text:0x8023F790; // type:function size:0x80 scope:global align:4 +isSpecialCamera__Q24Game10PlayCameraFv = .text:0x8023F810; // type:function size:0x4C scope:global align:4 +doUpdate__Q24Game10PlayCameraFv = .text:0x8023F85C; // type:function size:0xE8 scope:global align:4 +updateMatrix__Q24Game10PlayCameraFv = .text:0x8023F944; // type:function size:0xE0 scope:global align:4 +noUpdate__Q24Game10PlayCameraFv = .text:0x8023FA24; // type:function size:0x7C scope:global align:4 +isVibration__Q24Game10PlayCameraFv = .text:0x8023FAA0; // type:function size:0x44 scope:global align:4 +startVibration__Q24Game10PlayCameraFif = .text:0x8023FAE4; // type:function size:0x208 scope:global align:4 +startDemoCamera__Q24Game10PlayCameraFi = .text:0x8023FCEC; // type:function size:0xD0 scope:global align:4 +finishDemoCamera__Q24Game10PlayCameraFv = .text:0x8023FDBC; // type:function size:0x20 scope:global align:4 +updateCameraMode__Q24Game10PlayCameraFv = .text:0x8023FDDC; // type:function size:0xEC scope:global align:4 +startZoomCamera__Q24Game10PlayCameraFv = .text:0x8023FEC8; // type:function size:0x80 scope:global align:4 +startGameCamera__Q24Game10PlayCameraFi = .text:0x8023FF48; // type:function size:0x84 scope:global align:4 +setTargetParms__Q24Game10PlayCameraFv = .text:0x8023FFCC; // type:function size:0x2F8 scope:global align:4 +setTargetThetaToWhistle__Q24Game10PlayCameraFv = .text:0x802402C4; // type:function size:0x70 scope:global align:4 +setFollowTime__Q24Game10PlayCameraFv = .text:0x80240334; // type:function size:0x10 scope:global align:4 +setSmoothThetaSpeed__Q24Game10PlayCameraFv = .text:0x80240344; // type:function size:0x68 scope:global align:4 +changeTargetTheta__Q24Game10PlayCameraFv = .text:0x802403AC; // type:function size:0xE0 scope:global align:4 +changeTargetAtPosition__Q24Game10PlayCameraFv = .text:0x8024048C; // type:function size:0x384 scope:global align:4 +updateParms__Q24Game10PlayCameraFi = .text:0x80240810; // type:function size:0x164 scope:global align:4 +updateVibration__Q24Game10PlayCameraFi = .text:0x80240974; // type:function size:0x12C scope:global align:4 +otherVibFinished__Q24Game10PlayCameraFi = .text:0x80240AA0; // type:function size:0x74 scope:global align:4 +isModCameraFinished__Q24Game10PlayCameraFv = .text:0x80240B14; // type:function size:0x174 scope:global align:4 +setCollisionCameraTargetPhi__Q24Game10PlayCameraFi = .text:0x80240C88; // type:function size:0x158 scope:global align:4 +getCollisionCameraTargetPhi__Q24Game10PlayCameraFff = .text:0x80240DE0; // type:function size:0x384 scope:global align:4 +__dt__Q24Game10PlayCameraFv = .text:0x80241164; // type:function size:0xD0 scope:weak align:4 +startVibration__Q24Game10PlayCameraFi = .text:0x80241234; // type:function size:0x4 scope:weak align:4 +getLookAtPosition___Q24Game10PlayCameraFv = .text:0x80241238; // type:function size:0x1C scope:weak align:4 +__sinit_playCamera_cpp = .text:0x80241254; // type:function size:0x28 scope:local align:4 +__ct__Q24Game19JointShadowRootNodeFPQ24Game8Creature = .text:0x8024127C; // type:function size:0x60 scope:global align:4 +__ct__Q24Game15JointShadowNodeFi = .text:0x802412DC; // type:function size:0x74 scope:global align:4 +init__Q24Game15JointShadowNodeFi = .text:0x80241350; // type:function size:0x74 scope:global align:4 +__ct__Q24Game9ShadowMgrFi = .text:0x802413C4; // type:function size:0x80 scope:global align:4 +loadResource__Q24Game9ShadowMgrFv = .text:0x80241444; // type:function size:0x210 scope:global align:4 +init__Q24Game9ShadowMgrFv = .text:0x80241654; // type:function size:0x4 scope:global align:4 +setViewport__Q24Game9ShadowMgrFP8Viewporti = .text:0x80241658; // type:function size:0x10 scope:global align:4 +setShadowColor__Q24Game9ShadowMgrFP6Color4 = .text:0x80241668; // type:function size:0x48 scope:global align:4 +update__Q24Game9ShadowMgrFv = .text:0x802416B0; // type:function size:0x260 scope:global align:4 +draw__Q24Game9ShadowMgrFR8Graphicsi = .text:0x80241910; // type:function size:0x210 scope:global align:4 +createShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241B20; // type:function size:0xF0 scope:global align:4 +killAll__Q24Game9ShadowMgrFv = .text:0x80241C10; // type:function size:0x58 scope:global align:4 +killShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241C68; // type:function size:0x44 scope:global align:4 +addShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241CAC; // type:function size:0x44 scope:global align:4 +delShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241CF0; // type:function size:0x44 scope:global align:4 +addNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241D34; // type:function size:0xAC scope:global align:4 +addJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241DE0; // type:function size:0xB8 scope:global align:4 +delNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241E98; // type:function size:0x6C scope:global align:4 +delJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241F04; // type:function size:0x80 scope:global align:4 +killNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241F84; // type:function size:0xAC scope:global align:4 +killJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80242030; // type:function size:0xAC scope:global align:4 +setJointShadowRootNode__Q24Game9ShadowMgrFPQ24Game19JointShadowRootNode = .text:0x802420DC; // type:function size:0x24 scope:global align:4 +setForceVisible__Q24Game9ShadowMgrFPQ24Game8Creatureb = .text:0x80242100; // type:function size:0xF0 scope:global align:4 +getSize__Q24Game9ShadowMgrFv = .text:0x802421F0; // type:function size:0x30 scope:global align:4 +getMax__Q24Game9ShadowMgrFv = .text:0x80242220; // type:function size:0x8 scope:global align:4 +getCreature__Q24Game9ShadowMgrFi = .text:0x80242228; // type:function size:0x38 scope:global align:4 +getFirst__Q24Game9ShadowMgrFv = .text:0x80242260; // type:function size:0x8 scope:global align:4 +getNext__Q24Game9ShadowMgrFi = .text:0x80242268; // type:function size:0x8 scope:global align:4 +isDone__Q24Game9ShadowMgrFi = .text:0x80242270; // type:function size:0x4C scope:global align:4 +getShadowMaskType__Q24Game9ShadowMgrFii = .text:0x802422BC; // type:function size:0x4C scope:global align:4 +getShadowType__Q24Game9ShadowMgrFii = .text:0x80242308; // type:function size:0x4C scope:global align:4 +isDrawNormalShadow__Q24Game9ShadowMgrFPQ24Game10ShadowNodei = .text:0x80242354; // type:function size:0x80 scope:global align:4 +isDrawJointShadow__Q24Game9ShadowMgrFPQ24Game19JointShadowRootNodei = .text:0x802423D4; // type:function size:0x80 scope:global align:4 +readShadowParms__Q24Game9ShadowMgrFPc = .text:0x80242454; // type:function size:0xAC scope:global align:4 +write__Q24Game9ShadowMgrFR6Stream = .text:0x80242500; // type:function size:0x84 scope:global align:4 +read__Q24Game9ShadowMgrFR6Stream = .text:0x80242584; // type:function size:0x7C scope:global align:4 +__dt__Q24Game9ShadowMgrFv = .text:0x80242600; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game10ShadowNodeFv = .text:0x80242660; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game15JointShadowNodeFv = .text:0x802426C0; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game19JointShadowRootNodeFv = .text:0x80242720; // type:function size:0x60 scope:weak align:4 +__sinit_shadowMgr_cpp = .text:0x80242780; // type:function size:0x28 scope:local align:4 +__ct__Q34Game4Cave8MapUnitsFP10JUTTexture = .text:0x802427A8; // type:function size:0xA4 scope:global align:4 +setDoorNum__Q34Game4Cave8MapUnitsFi = .text:0x8024284C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Cave10AdjustNodeFv = .text:0x802428AC; // type:function size:0x60 scope:weak align:4 +setUnitName__Q34Game4Cave8MapUnitsFPc = .text:0x8024290C; // type:function size:0x8 scope:global align:4 +setUnitIndex__Q34Game4Cave8MapUnitsFi = .text:0x80242914; // type:function size:0x8 scope:global align:4 +setUnitKind__Q34Game4Cave8MapUnitsFi = .text:0x8024291C; // type:function size:0x8 scope:global align:4 +setUnitSize__Q34Game4Cave8MapUnitsFii = .text:0x80242924; // type:function size:0xC scope:global align:4 +setBaseGenPtr__Q34Game4Cave8MapUnitsFPQ34Game4Cave7BaseGen = .text:0x80242930; // type:function size:0x8 scope:global align:4 +__ct__Q34Game4Cave8UnitInfoFPQ34Game4Cave8MapUnits = .text:0x80242938; // type:function size:0x64 scope:global align:4 +setUnitTexture__Q34Game4Cave8UnitInfoFP10JUTTexture = .text:0x8024299C; // type:function size:0xC scope:global align:4 +setUnitRotation__Q34Game4Cave8UnitInfoFi = .text:0x802429A8; // type:function size:0x8 scope:global align:4 +create__Q34Game4Cave8UnitInfoFv = .text:0x802429B0; // type:function size:0x1BC scope:global align:4 +getUnitName__Q34Game4Cave8UnitInfoFv = .text:0x80242B6C; // type:function size:0xC scope:global align:4 +getUnitKind__Q34Game4Cave8UnitInfoFv = .text:0x80242B78; // type:function size:0xC scope:global align:4 +getUnitSizeX__Q34Game4Cave8UnitInfoFv = .text:0x80242B84; // type:function size:0x8 scope:global align:4 +getUnitSizeY__Q34Game4Cave8UnitInfoFv = .text:0x80242B8C; // type:function size:0x8 scope:global align:4 +getUnitRotation__Q34Game4Cave8UnitInfoFv = .text:0x80242B94; // type:function size:0x8 scope:global align:4 +getDoorNode__Q34Game4Cave8UnitInfoFi = .text:0x80242B9C; // type:function size:0x24 scope:global align:4 +getBaseGen__Q34Game4Cave8UnitInfoFv = .text:0x80242BC0; // type:function size:0xC scope:global align:4 +draw__Q34Game4Cave8UnitInfoFffff = .text:0x80242BCC; // type:function size:0x18C scope:global align:4 +__ct__Q34Game4Cave10AdjustInfoFv = .text:0x80242D58; // type:function size:0x18 scope:global align:4 +__ct__Q34Game4Cave7MapNodeFPQ34Game4Cave8UnitInfo = .text:0x80242D70; // type:function size:0x2AC scope:global align:4 +setOffset__Q34Game4Cave7MapNodeFii = .text:0x8024301C; // type:function size:0xC scope:global align:4 +getDoorDirect__Q34Game4Cave7MapNodeFi = .text:0x80243028; // type:function size:0x24 scope:global align:4 +getDoorOffset__Q34Game4Cave7MapNodeFiRiRi = .text:0x8024304C; // type:function size:0x100 scope:global align:4 +isDoorSet__Q34Game4Cave7MapNodeFPQ34Game4Cave8DoorNodeiii = .text:0x8024314C; // type:function size:0xFC scope:global align:4 +setDoorClose__Q34Game4Cave7MapNodeFiPQ34Game4Cave7MapNodei = .text:0x80243248; // type:function size:0x34 scope:global align:4 +detachDoorClose__Q34Game4Cave7MapNodeFv = .text:0x8024327C; // type:function size:0x9C scope:global align:4 +isDoorClose__Q34Game4Cave7MapNodeFi = .text:0x80243318; // type:function size:0x1C scope:global align:4 +resetDoorScore__Q34Game4Cave7MapNodeFv = .text:0x80243334; // type:function size:0x100 scope:global align:4 +setDoorScore__Q34Game4Cave7MapNodeFii = .text:0x80243434; // type:function size:0x34 scope:global align:4 +isDoorScoreSetDone__Q34Game4Cave7MapNodeFi = .text:0x80243468; // type:function size:0x1C scope:global align:4 +getDoorNode__Q34Game4Cave7MapNodeFi = .text:0x80243484; // type:function size:0x24 scope:global align:4 +getAdjustNode__Q34Game4Cave7MapNodeFi = .text:0x802434A8; // type:function size:0x14 scope:global align:4 +isGateSetDoor__Q34Game4Cave7MapNodeFi = .text:0x802434BC; // type:function size:0x164 scope:global align:4 +getGateScore__Q34Game4Cave7MapNodeFi = .text:0x80243620; // type:function size:0x198 scope:global align:4 +setEnemyScore__Q34Game4Cave7MapNodeFv = .text:0x802437B8; // type:function size:0xAC scope:global align:4 +setNodeScore__Q34Game4Cave7MapNodeFi = .text:0x80243864; // type:function size:0x8 scope:global align:4 +copyNodeScoreToVersusScore__Q34Game4Cave7MapNodeFv = .text:0x8024386C; // type:function size:0xC scope:global align:4 +subNodeScoreToVersusScore__Q34Game4Cave7MapNodeFv = .text:0x80243878; // type:function size:0x14 scope:global align:4 +draw__Q34Game4Cave7MapNodeFfff = .text:0x8024388C; // type:function size:0x110 scope:global align:4 +getNodeOffsetX__Q34Game4Cave7MapNodeFv = .text:0x8024399C; // type:function size:0x8 scope:global align:4 +getNodeOffsetY__Q34Game4Cave7MapNodeFv = .text:0x802439A4; // type:function size:0x8 scope:global align:4 +getEnemyScore__Q34Game4Cave7MapNodeFv = .text:0x802439AC; // type:function size:0x8 scope:global align:4 +getNodeScore__Q34Game4Cave7MapNodeFv = .text:0x802439B4; // type:function size:0x8 scope:global align:4 +getVersusScore__Q34Game4Cave7MapNodeFv = .text:0x802439BC; // type:function size:0x8 scope:global align:4 +getUnitName__Q34Game4Cave7MapNodeFv = .text:0x802439C4; // type:function size:0x24 scope:global align:4 +getNodeCentreOffset__Q34Game4Cave7MapNodeFRfRf = .text:0x802439E8; // type:function size:0xD0 scope:global align:4 +getDirection__Q34Game4Cave7MapNodeFv = .text:0x80243AB8; // type:function size:0x24 scope:global align:4 +getBaseGenGlobalPosition__Q34Game4Cave7MapNodeFPQ34Game4Cave7BaseGen = .text:0x80243ADC; // type:function size:0x1C4 scope:global align:4 +getDoorGlobalPosition__Q34Game4Cave7MapNodeFi = .text:0x80243CA0; // type:function size:0x25C scope:global align:4 +getBaseGenGlobalDirection__Q34Game4Cave7MapNodeFPQ34Game4Cave7BaseGen = .text:0x80243EFC; // type:function size:0xEC scope:global align:4 +getDoorGlobalDirection__Q34Game4Cave7MapNodeFi = .text:0x80243FE8; // type:function size:0x78 scope:global align:4 +getNumDoors__Q34Game4Cave7MapNodeFv = .text:0x80244060; // type:function size:0x34 scope:global align:4 +__dt__Q34Game4Cave7MapNodeFv = .text:0x80244094; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave9EnemyNodeFv = .text:0x802440F4; // type:function size:0x74 scope:global align:4 +__dt__Q24Game16ObjectLayoutNodeFv = .text:0x80244168; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave9EnemyNodeFPQ34Game4Cave9EnemyUnitPQ34Game4Cave7BaseGeni = .text:0x802441C8; // type:function size:0x94 scope:global align:4 +makeGlobalData__Q34Game4Cave9EnemyNodeFPQ34Game4Cave7MapNode = .text:0x8024425C; // type:function size:0x1A8 scope:global align:4 +setGlobalData__Q34Game4Cave9EnemyNodeFR10Vector3f = .text:0x80244404; // type:function size:0x20 scope:global align:4 +setBirthDoorIndex__Q34Game4Cave9EnemyNodeFi = .text:0x80244424; // type:function size:0x8 scope:global align:4 +getObjectId__Q34Game4Cave9EnemyNodeFv = .text:0x8024442C; // type:function size:0x20 scope:global align:4 +getExtraCode__Q34Game4Cave9EnemyNodeFv = .text:0x8024444C; // type:function size:0x20 scope:global align:4 +getObjectType__Q34Game4Cave9EnemyNodeFv = .text:0x8024446C; // type:function size:0x20 scope:global align:4 +getBirthCount__Q34Game4Cave9EnemyNodeFv = .text:0x8024448C; // type:function size:0x8 scope:global align:4 +getBirthPosition__Q34Game4Cave9EnemyNodeFRfRf = .text:0x80244494; // type:function size:0x14 scope:global align:4 +getDirection__Q34Game4Cave9EnemyNodeFv = .text:0x802444A8; // type:function size:0x8 scope:global align:4 +getBirthDoorIndex__Q34Game4Cave9EnemyNodeFv = .text:0x802444B0; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Cave9EnemyNodeFv = .text:0x802444B8; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Cave10RandMapMgrFb = .text:0x80244528; // type:function size:0x88 scope:global align:4 +loadResource__Q34Game4Cave10RandMapMgrFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit = .text:0x802445B0; // type:function size:0x1A4 scope:global align:4 +create__Q34Game4Cave10RandMapMgrFv = .text:0x80244754; // type:function size:0x104 scope:global align:4 +getNumRooms__Q34Game4Cave10RandMapMgrFv = .text:0x80244858; // type:function size:0x34 scope:global align:4 +getUseUnitName__Q34Game4Cave10RandMapMgrFi = .text:0x8024488C; // type:function size:0x3C scope:global align:4 +getRoomData__Q34Game4Cave10RandMapMgrFiRfRfRi = .text:0x802448C8; // type:function size:0x84 scope:global align:4 +makeRoomLink__Q34Game4Cave10RandMapMgrFi = .text:0x8024494C; // type:function size:0xE4 scope:global align:4 +makeObjectLayoutInfo__Q34Game4Cave10RandMapMgrFi = .text:0x80244A30; // type:function size:0x84 scope:global align:4 +getStartPosition__Q34Game4Cave10RandMapMgrFR10Vector3i = .text:0x80244AB4; // type:function size:0x88 scope:global align:4 +getItemDropPosition__Q34Game4Cave10RandMapMgrFR10Vector3ff = .text:0x80244B3C; // type:function size:0xA0 scope:global align:4 +getItemDropPosition__Q34Game4Cave10RandMapMgrFP10Vector3iff = .text:0x80244BDC; // type:function size:0x188 scope:global align:4 +setUnitTexture__Q34Game4Cave10RandMapMgrFiP10JUTTexture = .text:0x80244D64; // type:function size:0x48 scope:global align:4 +setCaptureOn__Q34Game4Cave10RandMapMgrFv = .text:0x80244DAC; // type:function size:0xC scope:global align:4 +captureRadarMap__Q34Game4Cave10RandMapMgrFR8Graphics = .text:0x80244DB8; // type:function size:0xDC scope:global align:4 +isLastFloor__Q34Game4Cave10RandMapMgrFv = .text:0x80244E94; // type:function size:0x1C scope:global align:4 +isVersusHiba__Q34Game4Cave10RandMapMgrFv = .text:0x80244EB0; // type:function size:0x8 scope:global align:4 +getRadarMapTexture__Q34Game4Cave10RandMapMgrFv = .text:0x80244EB8; // type:function size:0x8 scope:global align:4 +radarMapPartsOpen__Q34Game4Cave10RandMapMgrFR10Vector3 = .text:0x80244EC0; // type:function size:0x24 scope:global align:4 +getPositionOnTex__Q34Game4Cave10RandMapMgrFR10Vector3RfRf = .text:0x80244EE4; // type:function size:0x20 scope:global align:4 +getBaseGenData__Q34Game4Cave10RandMapMgrFP10Vector3Pf = .text:0x80244F04; // type:function size:0x254 scope:global align:4 +drawFrameBuffer__Q34Game4Cave10RandMapMgrFR8Graphics = .text:0x80245158; // type:function size:0x200 scope:global align:4 +__dt__Q24Game8RoomLinkFv = .text:0x80245358; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave10RandMapMgrFv = .text:0x802453B8; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave11RandMapDrawFPQ34Game4Cave16MapUnitGenerator = .text:0x80245418; // type:function size:0x8 scope:global align:4 +radarMapPartsOpen__Q34Game4Cave11RandMapDrawFR10Vector3 = .text:0x80245420; // type:function size:0x1CC scope:global align:4 +draw__Q34Game4Cave11RandMapDrawFR8Graphicsfff = .text:0x802455EC; // type:function size:0x78 scope:global align:4 +__ct__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x80245664; // type:function size:0x8 scope:global align:4 +isPutOnMap__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x8024566C; // type:function size:0x7C scope:global align:4 +isPartsOnParts__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x802456E8; // type:function size:0xF0 scope:global align:4 +isDoorOnParts__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x802457D8; // type:function size:0x220 scope:global align:4 +isPartsOnDoor__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x802459F8; // type:function size:0x1E8 scope:global align:4 +isInnerBox__Q34Game4Cave14RandMapCheckerFiiiiiiii = .text:0x80245BE0; // type:function size:0x7C scope:global align:4 +__ct__Q34Game4Cave11EditMapUnitFv = .text:0x80245C5C; // type:function size:0x30 scope:global align:4 +read__Q34Game4Cave11EditMapUnitFPc = .text:0x80245C8C; // type:function size:0xB8 scope:global align:4 +read__Q34Game4Cave11EditMapUnitFP6Stream = .text:0x80245D44; // type:function size:0x1E8 scope:global align:4 +setEditNumber__Q34Game4Cave11EditMapUnitFi = .text:0x80245F2C; // type:function size:0x54 scope:global align:4 +__ct__Q34Game4Cave11RandMapUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x80245F80; // type:function size:0x19C scope:global align:4 +setMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x8024611C; // type:function size:0xF4 scope:global align:4 +getAliveMapIndex__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNode = .text:0x80246210; // type:function size:0x34 scope:global align:4 +getTextureSize__Q34Game4Cave11RandMapUnitFRiRi = .text:0x80246244; // type:function size:0xA0 scope:global align:4 +getRandMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x802462E4; // type:function size:0x6C scope:global align:4 +changeCapToRootLoopMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246350; // type:function size:0x284 scope:global align:4 +changeTwoToOneMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x802465D4; // type:function size:0x360 scope:global align:4 +setEditorMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246934; // type:function size:0x144 scope:global align:4 +setFirstMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246A78; // type:function size:0x6C scope:global align:4 +getFirstMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246AE4; // type:function size:0x8C scope:global align:4 +getNormalRandMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246B70; // type:function size:0x188 scope:global align:4 +setUnitKindOrder__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodePi = .text:0x80246CF8; // type:function size:0xC8 scope:global align:4 +setUnitDoorSorting__Q34Game4Cave11RandMapUnitFi = .text:0x80246DC0; // type:function size:0x314 scope:global align:4 +setRandomDoorIndex__Q34Game4Cave11RandMapUnitFPii = .text:0x802470D4; // type:function size:0x164 scope:global align:4 +getLoopRandMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80247238; // type:function size:0x208 scope:global align:4 +getCalcDoorIndex__Q34Game4Cave11RandMapUnitFRiRiRii = .text:0x80247440; // type:function size:0xC8 scope:global align:4 +getLinkDoorNodeFirst__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodeiiiRi = .text:0x80247508; // type:function size:0x12C scope:global align:4 +isInLinkArea__Q34Game4Cave11RandMapUnitFiiiii = .text:0x80247634; // type:function size:0xD0 scope:global align:4 +getLoopMapNode__Q34Game4Cave11RandMapUnitFPPQ34Game4Cave7MapNode = .text:0x80247704; // type:function size:0x130 scope:global align:4 +getLinkDoorDirection__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodeiPQ34Game4Cave7MapNodei = .text:0x80247834; // type:function size:0xEC scope:global align:4 +getUpToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x80247920; // type:function size:0xBC scope:global align:4 +getRightToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x802479DC; // type:function size:0xC4 scope:global align:4 +getDownToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x80247AA0; // type:function size:0xBC scope:global align:4 +getLeftToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x80247B5C; // type:function size:0xC0 scope:global align:4 +getLoopEndMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80247C1C; // type:function size:0x2F0 scope:global align:4 +getPartsKindNum__Q34Game4Cave11RandMapUnitFi = .text:0x80247F0C; // type:function size:0x70 scope:global align:4 +getOpenDoorNum__Q34Game4Cave11RandMapUnitFv = .text:0x80247F7C; // type:function size:0x8C scope:global align:4 +addMap__Q34Game4Cave11RandMapUnitFPQ34Game4Cave8UnitInfoiib = .text:0x80248008; // type:function size:0xB4 scope:global align:4 +changeMapPriority__Q34Game4Cave11RandMapUnitFPQ34Game4Cave8UnitInfo = .text:0x802480BC; // type:function size:0x3DC scope:global align:4 +moveCentre__Q34Game4Cave11RandMapUnitFv = .text:0x80248498; // type:function size:0x12C scope:global align:4 +closeDoorCheck__Q34Game4Cave11RandMapUnitFv = .text:0x802485C4; // type:function size:0x134 scope:global align:4 +deleteMapNode__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNode = .text:0x802486F8; // type:function size:0x38 scope:global align:4 +createLoopMapNodeCheck__Q34Game4Cave11RandMapUnitFv = .text:0x80248730; // type:function size:0x198 scope:global align:4 +isLoopMapNodeCheck__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodei = .text:0x802488C8; // type:function size:0x4C scope:global align:4 +__ct__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave16MapUnitGeneratorb = .text:0x80248914; // type:function size:0xA8 scope:global align:4 +setManageClassPtr__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave12RandMapScore = .text:0x802489BC; // type:function size:0x8 scope:global align:4 +setEnemySlot__Q34Game4Cave13RandEnemyUnitFv = .text:0x802489C4; // type:function size:0x54 scope:global align:4 +setEnemyTypeWeight__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248A18; // type:function size:0x278 scope:global align:4 +setEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248C90; // type:function size:0xF0 scope:global align:4 +setEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248D80; // type:function size:0xCC scope:global align:4 +setEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248E4C; // type:function size:0xCC scope:global align:4 +setEnemyTypeA__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248F18; // type:function size:0x104 scope:global align:4 +setVersusHibaTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024901C; // type:function size:0x190 scope:global align:4 +setVersusEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x802491AC; // type:function size:0x1A4 scope:global align:4 +setSlotEnemyTypeC__Q34Game4Cave13RandEnemyUnitFRii = .text:0x80249350; // type:function size:0x2F8 scope:global align:4 +setUnitRandEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x80249648; // type:function size:0x1A0 scope:global align:4 +makeSetEnemyTypeC__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodeiPQ34Game4Cave9EnemyUnit = .text:0x802497E8; // type:function size:0xD8 scope:global align:4 +setVersusEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv = .text:0x802498C0; // type:function size:0x17C scope:global align:4 +setSlotEnemyTypeF__Q34Game4Cave13RandEnemyUnitFi = .text:0x80249A3C; // type:function size:0x3E0 scope:global align:4 +setUnitRandEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv = .text:0x80249E1C; // type:function size:0x1A0 scope:global align:4 +makeSetEnemyTypeF__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUnit = .text:0x80249FBC; // type:function size:0x88 scope:global align:4 +setVersusEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024A044; // type:function size:0x17C scope:global align:4 +setSlotEnemyTypeB__Q34Game4Cave13RandEnemyUnitFi = .text:0x8024A1C0; // type:function size:0x3E0 scope:global align:4 +setUnitRandEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024A5A0; // type:function size:0x1A0 scope:global align:4 +makeSetEnemyTypeB__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUnit = .text:0x8024A740; // type:function size:0x88 scope:global align:4 +setVersusEasyEnemy__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024A7C8; // type:function size:0x2CC scope:global align:4 +getVersusEasyEnemyBaseGen__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024AA94; // type:function size:0x144 scope:global align:4 +setVersusEnemyTypeA__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024ABD8; // type:function size:0x1D4 scope:global align:4 +setSlotEnemyTypeA__Q34Game4Cave13RandEnemyUnitFRiRii = .text:0x8024ADAC; // type:function size:0x3D4 scope:global align:4 +setUnitRandEnemyTypeA__Q34Game4Cave13RandEnemyUnitFRiii = .text:0x8024B180; // type:function size:0x298 scope:global align:4 +makeSetEnemyTypeA__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUniti = .text:0x8024B418; // type:function size:0x420 scope:global align:4 +isEnemySetGen__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024B838; // type:function size:0x3C scope:global align:4 +__ct__Q34Game4Cave6AdjustFv = .text:0x8024B874; // type:function size:0x14 scope:global align:4 +__ct__Q34Game4Cave10AdjustNodeFv = .text:0x8024B888; // type:function size:0x44 scope:global align:4 +__ct__Q34Game4Cave10AdjustNodeFPQ34Game4Cave6Adjust = .text:0x8024B8CC; // type:function size:0x4C scope:global align:4 +__ct__Q34Game4Cave4DoorFv = .text:0x8024B918; // type:function size:0x10 scope:global align:4 +__ct__Q34Game4Cave8DoorNodeFv = .text:0x8024B928; // type:function size:0x50 scope:global align:4 +__ct__Q34Game4Cave8DoorNodeFRQ34Game4Cave4Door = .text:0x8024B978; // type:function size:0x64 scope:global align:4 +isDoorAdjust__Q34Game4Cave8DoorNodeFPQ34Game4Cave8DoorNode = .text:0x8024B9DC; // type:function size:0x70 scope:global align:4 +__dt__Q34Game4Cave8DoorNodeFv = .text:0x8024BA4C; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit = .text:0x8024BAAC; // type:function size:0x200 scope:global align:4 +__defctor__Q34Game4Cave7MapNodeFv = .text:0x8024BCAC; // type:function size:0x24 scope:weak align:4 +createEditMapInfo__Q34Game4Cave16MapUnitGeneratorFPQ34Game4Cave11EditMapUnit = .text:0x8024BCD0; // type:function size:0xAC scope:global align:4 +createMemList__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterfacei = .text:0x8024BD7C; // type:function size:0x24C scope:global align:4 +isCreateList__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterface = .text:0x8024BFC8; // type:function size:0x78 scope:global align:4 +memMapListSorting__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C040; // type:function size:0xCC scope:global align:4 +createMapPartsList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C10C; // type:function size:0x14C scope:global align:4 +createEnemyList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C258; // type:function size:0xB4 scope:global align:4 +createCapEnemyList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C30C; // type:function size:0xEC scope:global align:4 +isPomGroup__Q34Game4Cave16MapUnitGeneratorFPQ34Game4Cave8TekiInfo = .text:0x8024C3F8; // type:function size:0x30 scope:global align:4 +createGateList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C428; // type:function size:0xB4 scope:global align:4 +createItemList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C4DC; // type:function size:0xB4 scope:global align:4 +createCaveLevel__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C590; // type:function size:0x2C scope:global align:4 +__sinit_MapUnitGenerator_cpp = .text:0x8024C5BC; // type:function size:0x28 scope:local align:4 +nishimuraCreateRandomMap__Q24Game10RoomMapMgrFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit = .text:0x8024C5E4; // type:function size:0xF0 scope:global align:4 +nishimuraPlaceRooms__Q24Game10RoomMapMgrFv = .text:0x8024C6D4; // type:function size:0x11C scope:global align:4 +nishimuraSetTexture__Q24Game10RoomMapMgrFv = .text:0x8024C7F0; // type:function size:0x88 scope:global align:4 +__ct__Q34Game4Cave12RandMapScoreFPQ34Game4Cave16MapUnitGenerator = .text:0x8024C878; // type:function size:0xA8 scope:global align:4 +setMapUnitScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024C920; // type:function size:0x6C scope:global align:4 +setStartSlot__Q34Game4Cave12RandMapScoreFv = .text:0x8024C98C; // type:function size:0x38 scope:global align:4 +setGoalSlot__Q34Game4Cave12RandMapScoreFv = .text:0x8024C9C4; // type:function size:0x58 scope:global align:4 +makeObjectLayout__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePQ34Game4Cave12ObjectLayout = .text:0x8024CA1C; // type:function size:0x18C scope:global align:4 +getFixObjNode__Q34Game4Cave12RandMapScoreFi = .text:0x8024CBA8; // type:function size:0x10 scope:global align:4 +getFixObjGen__Q34Game4Cave12RandMapScoreFi = .text:0x8024CBB8; // type:function size:0x10 scope:global align:4 +getGlobalPosition__Q34Game4Cave12RandMapScoreFiR10Vector3 = .text:0x8024CBC8; // type:function size:0x64 scope:global align:4 +getVersusHighScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CC2C; // type:function size:0x8 scope:global align:4 +getVersusLowScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CC34; // type:function size:0x8 scope:global align:4 +isScoreSetDone__Q34Game4Cave12RandMapScoreFv = .text:0x8024CC3C; // type:function size:0x84 scope:global align:4 +clearRoomAndDoorScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CCC0; // type:function size:0xC4 scope:global align:4 +setUnitAndDoorScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CD84; // type:function size:0x154 scope:global align:4 +setStartMapNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNode = .text:0x8024CED8; // type:function size:0xB0 scope:global align:4 +setChallengePod__Q34Game4Cave12RandMapScoreFv = .text:0x8024CF88; // type:function size:0x13C scope:global align:4 +setVersusOnyon__Q34Game4Cave12RandMapScoreFv = .text:0x8024D0C4; // type:function size:0x1B8 scope:global align:4 +getMaxScoreRoomMapNode__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGen = .text:0x8024D27C; // type:function size:0xFC scope:global align:4 +calcNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNode = .text:0x8024D378; // type:function size:0x3B0 scope:global align:4 +copyNodeScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024D728; // type:function size:0x48 scope:global align:4 +subNodeScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024D770; // type:function size:0x8C scope:global align:4 +setMapNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodei = .text:0x8024D7FC; // type:function size:0x64 scope:global align:4 +setChallengeFixObjNormal__Q34Game4Cave12RandMapScoreFv = .text:0x8024D860; // type:function size:0x3BC scope:global align:4 +setChallengeFixObjHard__Q34Game4Cave12RandMapScoreFv = .text:0x8024DC1C; // type:function size:0x324 scope:global align:4 +isGoalSetHard__Q34Game4Cave12RandMapScoreFv = .text:0x8024DF40; // type:function size:0x64 scope:global align:4 +isFixObjSet__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024DFA4; // type:function size:0x128 scope:global align:4 +__dt__Q34Game4Cave10FixObjNodeFv = .text:0x8024E0CC; // type:function size:0x70 scope:weak align:4 +getObjectId__Q34Game4Cave10FixObjNodeFv = .text:0x8024E13C; // type:function size:0x8 scope:weak align:4 +getObjectType__Q34Game4Cave10FixObjNodeFv = .text:0x8024E144; // type:function size:0x8 scope:weak align:4 +getBirthCount__Q34Game4Cave10FixObjNodeFv = .text:0x8024E14C; // type:function size:0x8 scope:weak align:4 +getDirection__Q34Game4Cave10FixObjNodeFv = .text:0x8024E154; // type:function size:0x8 scope:weak align:4 +getBirthPosition__Q34Game4Cave10FixObjNodeFRfRf = .text:0x8024E15C; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game4Cave8ItemNodeFv = .text:0x8024E170; // type:function size:0x6C scope:global align:4 +__ct__Q34Game4Cave8ItemNodeFPQ34Game4Cave8ItemUnitPQ34Game4Cave7BaseGeni = .text:0x8024E1DC; // type:function size:0x8C scope:global align:4 +makeGlobalData__Q34Game4Cave8ItemNodeFPQ34Game4Cave7MapNode = .text:0x8024E268; // type:function size:0x68 scope:global align:4 +getObjectId__Q34Game4Cave8ItemNodeFv = .text:0x8024E2D0; // type:function size:0x20 scope:global align:4 +getObjectType__Q34Game4Cave8ItemNodeFv = .text:0x8024E2F0; // type:function size:0x8 scope:global align:4 +getBirthCount__Q34Game4Cave8ItemNodeFv = .text:0x8024E2F8; // type:function size:0x8 scope:global align:4 +getBirthPosition__Q34Game4Cave8ItemNodeFRfRf = .text:0x8024E300; // type:function size:0x14 scope:global align:4 +getDirection__Q34Game4Cave8ItemNodeFv = .text:0x8024E314; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Cave8ItemNodeFv = .text:0x8024E31C; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Cave12RandItemUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x8024E38C; // type:function size:0x64 scope:global align:4 +setManageClassPtr__Q34Game4Cave12RandItemUnitFPQ34Game4Cave12RandMapScore = .text:0x8024E3F0; // type:function size:0x8 scope:global align:4 +setItemSlot__Q34Game4Cave12RandItemUnitFv = .text:0x8024E3F8; // type:function size:0x104 scope:global align:4 +isItemSetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024E4FC; // type:function size:0x110 scope:global align:4 +isGroundCapEnemySetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode = .text:0x8024E60C; // type:function size:0xE8 scope:global align:4 +isFallCapEnemySetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode = .text:0x8024E6F4; // type:function size:0xD0 scope:global align:4 +setItemDropPositionList__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGen = .text:0x8024E7C4; // type:function size:0xC scope:global align:4 +getItemDropPosition__Q34Game4Cave12RandItemUnitFR10Vector3fi = .text:0x8024E7D0; // type:function size:0x228 scope:global align:4 +getItemNormalSetMapNode__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7BaseGen = .text:0x8024E9F8; // type:function size:0x38C scope:global align:4 +getItemHardSetMapNode__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7BaseGen = .text:0x8024ED84; // type:function size:0x340 scope:global align:4 +getItemUnit__Q34Game4Cave12RandItemUnitFv = .text:0x8024F0C4; // type:function size:0x180 scope:global align:4 +getItemSlotNum__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode = .text:0x8024F244; // type:function size:0x60 scope:global align:4 +isItemSetHard__Q34Game4Cave12RandItemUnitFv = .text:0x8024F2A4; // type:function size:0x5C scope:global align:4 +getItemDropMapNode__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePPQ34Game4Cave7MapNodeiRi = .text:0x8024F300; // type:function size:0x148 scope:global align:4 +getItemBaseGenPosition__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodei = .text:0x8024F448; // type:function size:0x314 scope:global align:4 +getItemDropList__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGenRi = .text:0x8024F75C; // type:function size:0x18C scope:global align:4 +getItemBaseGenPosition__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGeniii = .text:0x8024F8E8; // type:function size:0x2CC scope:global align:4 +getItemDropSortingList__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGenPii = .text:0x8024FBB4; // type:function size:0x114 scope:global align:4 +__ct__Q34Game4Cave8GateNodeFv = .text:0x8024FCC8; // type:function size:0x5C scope:global align:4 +__ct__Q34Game4Cave8GateNodeFPQ34Game4Cave8GateUnitii = .text:0x8024FD24; // type:function size:0x9C scope:global align:4 +getObjectId__Q34Game4Cave8GateNodeFv = .text:0x8024FDC0; // type:function size:0x20 scope:global align:4 +getObjectType__Q34Game4Cave8GateNodeFv = .text:0x8024FDE0; // type:function size:0x8 scope:global align:4 +getBirthCount__Q34Game4Cave8GateNodeFv = .text:0x8024FDE8; // type:function size:0x8 scope:global align:4 +getDirection__Q34Game4Cave8GateNodeFv = .text:0x8024FDF0; // type:function size:0x8 scope:global align:4 +getBirthDoorIndex__Q34Game4Cave8GateNodeFv = .text:0x8024FDF8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Cave8GateNodeFv = .text:0x8024FE00; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Cave12RandGateUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x8024FE70; // type:function size:0x74 scope:global align:4 +setManageClassPtr__Q34Game4Cave12RandGateUnitFPQ34Game4Cave12RandMapScorePQ34Game4Cave12RandItemUnit = .text:0x8024FEE4; // type:function size:0xC scope:global align:4 +setGateDoor__Q34Game4Cave12RandGateUnitFv = .text:0x8024FEF0; // type:function size:0xD8 scope:global align:4 +getGateUnit__Q34Game4Cave12RandGateUnitFv = .text:0x8024FFC8; // type:function size:0xD4 scope:global align:4 +getRoomNodePtr__Q34Game4Cave12RandGateUnitFRi = .text:0x8025009C; // type:function size:0xBC scope:global align:4 +getItemSetCapDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x80250158; // type:function size:0x160 scope:global align:4 +getRoomMinScoreDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x802502B8; // type:function size:0xE4 scope:global align:4 +getRoomLowScoreDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x8025039C; // type:function size:0x218 scope:global align:4 +getRandomScoreDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x802505B4; // type:function size:0x270 scope:global align:4 +__ct__Q34Game4Cave12ObjectLayoutFPQ34Game4Cave7MapNode = .text:0x80250824; // type:function size:0xCC scope:global align:4 +setNode__Q34Game4Cave12ObjectLayoutFiPQ24Game16ObjectLayoutNode = .text:0x802508F0; // type:function size:0x10 scope:global align:4 +getCount__Q34Game4Cave12ObjectLayoutFi = .text:0x80250900; // type:function size:0x48 scope:global align:4 +getNode__Q34Game4Cave12ObjectLayoutFii = .text:0x80250948; // type:function size:0x40 scope:global align:4 +__ct__Q24Game9CameraMgrFv = .text:0x80250988; // type:function size:0x48 scope:global align:4 +loadResource__Q24Game9CameraMgrFv = .text:0x802509D0; // type:function size:0x12C scope:global align:4 +__ct__Q24Game14VibrationParmsFv = .text:0x80250AFC; // type:function size:0x4D0 scope:weak align:4 +__ct__Q24Game11CameraParmsFv = .text:0x80250FCC; // type:function size:0xE78 scope:weak align:4 +setViewport__Q24Game9CameraMgrFP8Viewporti = .text:0x80251E44; // type:function size:0xA8 scope:global align:4 +init__Q24Game9CameraMgrFi = .text:0x80251EEC; // type:function size:0x14C scope:global align:4 +setCameraAngle__Q24Game9CameraMgrFfi = .text:0x80252038; // type:function size:0x94 scope:global align:4 +update__Q24Game9CameraMgrFv = .text:0x802520CC; // type:function size:0x170 scope:global align:4 +startVibration__Q24Game9CameraMgrFiR10Vector3i = .text:0x8025223C; // type:function size:0x154 scope:global align:4 +startVibration__Q24Game9CameraMgrFii = .text:0x80252390; // type:function size:0xDC scope:global align:4 +controllerLock__Q24Game9CameraMgrFi = .text:0x8025246C; // type:function size:0x70 scope:global align:4 +controllerUnLock__Q24Game9CameraMgrFi = .text:0x802524DC; // type:function size:0x70 scope:global align:4 +startDemoCamera__Q24Game9CameraMgrFii = .text:0x8025254C; // type:function size:0x90 scope:global align:4 +finishDemoCamera__Q24Game9CameraMgrFi = .text:0x802525DC; // type:function size:0x7C scope:global align:4 +changePlayerMode__Q24Game9CameraMgrFiP30IDelegate1 = .text:0x80252658; // type:function size:0x160 scope:global align:4 +isChangePlayer__Q24Game9CameraMgrFv = .text:0x802527B8; // type:function size:0x58 scope:global align:4 +setZukanCamera__Q24Game9CameraMgrFP12LookAtCamera = .text:0x80252810; // type:function size:0x58 scope:global align:4 +isCameraUpdateOn__Q24Game9CameraMgrFv = .text:0x80252868; // type:function size:0x28 scope:global align:4 +isStartAndEnd__Q24Game9CameraMgrFPii = .text:0x80252890; // type:function size:0x68 scope:global align:4 +isVibrationStart__Q24Game9CameraMgrFii = .text:0x802528F8; // type:function size:0x84 scope:global align:4 +readCameraParms__Q24Game9CameraMgrFPc = .text:0x8025297C; // type:function size:0xA8 scope:global align:4 +readParameter__Q24Game9CameraMgrFR6Stream = .text:0x80252A24; // type:function size:0x74 scope:global align:4 +__dt__Q24Game9CameraMgrFv = .text:0x80252A98; // type:function size:0x60 scope:weak align:4 +__sinit_CameraMgr_cpp = .text:0x80252AF8; // type:function size:0x28 scope:local align:4 +__ct__Q24Game10ContRumbleFii = .text:0x80252B20; // type:function size:0x158 scope:global align:4 +init__Q24Game10ContRumbleFv = .text:0x80252C78; // type:function size:0x8C scope:global align:4 +update__Q24Game10ContRumbleFv = .text:0x80252D04; // type:function size:0x290 scope:global align:4 +setController__Q24Game10ContRumbleFb = .text:0x80252F94; // type:function size:0x58 scope:global align:4 +startRumble__Q24Game10ContRumbleFif = .text:0x80252FEC; // type:function size:0x104 scope:global align:4 +rumbleStop__Q24Game10ContRumbleFv = .text:0x802530F0; // type:function size:0x88 scope:global align:4 +rumbleStop__Q24Game10ContRumbleFi = .text:0x80253178; // type:function size:0x90 scope:global align:4 +getRumbleParameter__Q24Game10ContRumbleFiRfRf = .text:0x80253208; // type:function size:0x9C scope:global align:4 +__dt__Q24Game10RumbleNodeFv = .text:0x802532A4; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game9RumbleMgrFv = .text:0x80253304; // type:function size:0x48 scope:global align:4 +loadResource__Q24Game9RumbleMgrFv = .text:0x8025334C; // type:function size:0x158 scope:global align:4 +init__Q24Game9RumbleMgrFv = .text:0x802534A4; // type:function size:0x108 scope:global align:4 +update__Q24Game9RumbleMgrFv = .text:0x802535AC; // type:function size:0x1D4 scope:global align:4 +startRumble__Q24Game9RumbleMgrFiR10Vector3i = .text:0x80253780; // type:function size:0x1A4 scope:global align:4 +startRumble__Q24Game9RumbleMgrFii = .text:0x80253924; // type:function size:0xB8 scope:global align:4 +stopRumble__Q24Game9RumbleMgrFii = .text:0x802539DC; // type:function size:0x94 scope:global align:4 +stopRumble__Q24Game9RumbleMgrFi = .text:0x80253A70; // type:function size:0x88 scope:global align:4 +isRumbleUpdateOn__Q24Game9RumbleMgrFv = .text:0x80253AF8; // type:function size:0x7C scope:global align:4 +setZukanRumble__Q24Game9RumbleMgrFP10ControllerP10Vector3 = .text:0x80253B74; // type:function size:0x5C scope:global align:4 +isStartAndEnd__Q24Game9RumbleMgrFPii = .text:0x80253BD0; // type:function size:0x68 scope:global align:4 +readRumbleParms__Q24Game9RumbleMgrFPc = .text:0x80253C38; // type:function size:0xC0 scope:global align:4 +readRumbleData__Q24Game9RumbleMgrFPc = .text:0x80253CF8; // type:function size:0xC0 scope:global align:4 +__dt__Q24Game9RumbleMgrFv = .text:0x80253DB8; // type:function size:0x60 scope:weak align:4 +setAnimMgr__Q34Game3Pom14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80253E18; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game3Pom14ProperAnimatorFi = .text:0x80253E20; // type:function size:0x8 scope:global align:4 +__dt__Q34Game3Pom14ProperAnimatorFv = .text:0x80253E28; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game3Pom14ProperAnimatorFv = .text:0x80253E84; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Pom3MgrFiUc = .text:0x80253E8C; // type:function size:0x50 scope:global align:4 +birth__Q34Game3Pom3MgrFRQ24Game13EnemyBirthArg = .text:0x80253EDC; // type:function size:0x1F4 scope:global align:4 +doAlloc__Q34Game3Pom3MgrFv = .text:0x802540D0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game3Pom5ParmsFv = .text:0x80254118; // type:function size:0x1C8 scope:weak align:4 +createObj__Q34Game3Pom3MgrFi = .text:0x802542E0; // type:function size:0x188 scope:global align:4 +__dt__Q34Game3Pom3ObjFv = .text:0x80254468; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game3Pom3MgrFi = .text:0x80254524; // type:function size:0x10 scope:global align:4 +createModel__Q34Game3Pom3MgrFv = .text:0x80254534; // type:function size:0x138 scope:global align:4 +read__Q34Game3Pom5ParmsFR6Stream = .text:0x8025466C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game3Pom3MgrFv = .text:0x802546BC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game3Pom3MgrFv = .text:0x8025476C; // type:function size:0x8 scope:weak align:4 +__sinit_PomMgr_cpp = .text:0x80254774; // type:function size:0x28 scope:local align:4 +@4@__dt__Q34Game3Pom3MgrFv = .text:0x8025479C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Pom3ObjFv = .text:0x802547A4; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game3Pom3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802548DC; // type:function size:0x4 scope:global align:4 +onInit__Q34Game3Pom3ObjFPQ24Game15CreatureInitArg = .text:0x802548E0; // type:function size:0x114 scope:global align:4 +doUpdate__Q34Game3Pom3ObjFv = .text:0x802549F4; // type:function size:0x88 scope:global align:4 +changeMaterial__Q34Game3Pom3ObjFv = .text:0x80254A7C; // type:function size:0x110 scope:global align:4 +doDirectDraw__Q34Game3Pom3ObjFR8Graphics = .text:0x80254B8C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game3Pom3ObjFR8Graphics = .text:0x80254B90; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game3Pom3ObjFPQ34Game3Pom3FSM = .text:0x80254BB0; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game3Pom3ObjFRQ24Game11ShadowParam = .text:0x80254BFC; // type:function size:0x44 scope:global align:4 +pressCallBack__Q34Game3Pom3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80254C40; // type:function size:0x12C scope:global align:4 +hipdropCallBack__Q34Game3Pom3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80254D6C; // type:function size:0x2C scope:global align:4 +collisionCallback__Q34Game3Pom3ObjFRQ24Game9CollEvent = .text:0x80254D98; // type:function size:0xA8 scope:global align:4 +initMouthSlots__Q34Game3Pom3ObjFv = .text:0x80254E40; // type:function size:0x4C scope:global align:4 +setPomParms__Q34Game3Pom3ObjFv = .text:0x80254E8C; // type:function size:0x510 scope:global align:4 +getEnemyTypeID__Q34Game3Pom3ObjFv = .text:0x8025539C; // type:function size:0x8 scope:weak align:4 +shotPikmin__Q34Game3Pom3ObjFv = .text:0x802553A4; // type:function size:0x4AC scope:global align:4 +changePomColor__Q34Game3Pom3ObjFv = .text:0x80255850; // type:function size:0x19C scope:global align:4 +createSwingSmokeEffect__Q34Game3Pom3ObjFv = .text:0x802559EC; // type:function size:0x184 scope:global align:4 +createShotEffect__Q34Game3Pom3ObjFv = .text:0x80255B70; // type:function size:0x94 scope:global align:4 +createPomDeadEffect__Q34Game3Pom3ObjFv = .text:0x80255C04; // type:function size:0x80 scope:global align:4 +inWaterCallback__Q34Game3Pom3ObjFPQ24Game8WaterBox = .text:0x80255C84; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game3Pom3ObjFv = .text:0x80255C88; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game3Pom3ObjFv = .text:0x80255C8C; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game3Pom3ObjFv = .text:0x80255C94; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game3Pom3ObjFv = .text:0x80255C9C; // type:function size:0x8 scope:weak align:4 +init__Q34Game3Pom3FSMFPQ24Game9EnemyBase = .text:0x80255CA4; // type:function size:0x224 scope:global align:4 +init__Q34Game3Pom9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80255EC8; // type:function size:0x2C scope:global align:4 +exec__Q34Game3Pom9StateWaitFPQ24Game9EnemyBase = .text:0x80255EF4; // type:function size:0x5C scope:global align:4 +cleanup__Q34Game3Pom9StateWaitFPQ24Game9EnemyBase = .text:0x80255F50; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80255F54; // type:function size:0x60 scope:global align:4 +exec__Q34Game3Pom9StateDeadFPQ24Game9EnemyBase = .text:0x80255FB4; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game3Pom9StateDeadFPQ24Game9EnemyBase = .text:0x80255FF8; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom9StateOpenFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80255FFC; // type:function size:0x40 scope:global align:4 +exec__Q34Game3Pom9StateOpenFPQ24Game9EnemyBase = .text:0x8025603C; // type:function size:0xA0 scope:global align:4 +cleanup__Q34Game3Pom9StateOpenFPQ24Game9EnemyBase = .text:0x802560DC; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom10StateCloseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802560E0; // type:function size:0x40 scope:global align:4 +exec__Q34Game3Pom10StateCloseFPQ24Game9EnemyBase = .text:0x80256120; // type:function size:0x78 scope:global align:4 +cleanup__Q34Game3Pom10StateCloseFPQ24Game9EnemyBase = .text:0x80256198; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom9StateShotFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025619C; // type:function size:0x4C scope:global align:4 +exec__Q34Game3Pom9StateShotFPQ24Game9EnemyBase = .text:0x802561E8; // type:function size:0x94 scope:global align:4 +cleanup__Q34Game3Pom9StateShotFPQ24Game9EnemyBase = .text:0x8025627C; // type:function size:0x10 scope:global align:4 +init__Q34Game3Pom10StateSwingFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025628C; // type:function size:0x3C scope:global align:4 +exec__Q34Game3Pom10StateSwingFPQ24Game9EnemyBase = .text:0x802562C8; // type:function size:0xF8 scope:global align:4 +cleanup__Q34Game3Pom10StateSwingFPQ24Game9EnemyBase = .text:0x802563C0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Frog3FSMFPQ24Game9EnemyBase = .text:0x802563C4; // type:function size:0x37C scope:global align:4 +init__Q34Game4Frog9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80256740; // type:function size:0x68 scope:global align:4 +exec__Q34Game4Frog9StateDeadFPQ24Game9EnemyBase = .text:0x802567A8; // type:function size:0x78 scope:global align:4 +getDownSmokeScale__Q34Game4Frog3ObjFv = .text:0x80256820; // type:function size:0x8 scope:weak align:4 +cleanup__Q34Game4Frog9StateDeadFPQ24Game9EnemyBase = .text:0x80256828; // type:function size:0x4 scope:global align:4 +init__Q34Game4Frog9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025682C; // type:function size:0xA0 scope:global align:4 +exec__Q34Game4Frog9StateWaitFPQ24Game9EnemyBase = .text:0x802568CC; // type:function size:0x440 scope:global align:4 +attackNaviPosition__Q34Game4Frog3ObjFv = .text:0x80256D0C; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game4Frog9StateWaitFPQ24Game9EnemyBase = .text:0x80256D10; // type:function size:0x4 scope:global align:4 +init__Q34Game4Frog9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80256D14; // type:function size:0x60 scope:global align:4 +exec__Q34Game4Frog9StateTurnFPQ24Game9EnemyBase = .text:0x80256D74; // type:function size:0x3AC scope:global align:4 +cleanup__Q34Game4Frog9StateTurnFPQ24Game9EnemyBase = .text:0x80257120; // type:function size:0xAC scope:global align:4 +init__Q34Game4Frog9StateJumpFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802571CC; // type:function size:0xE8 scope:global align:4 +exec__Q34Game4Frog9StateJumpFPQ24Game9EnemyBase = .text:0x802572B4; // type:function size:0x118 scope:global align:4 +cleanup__Q34Game4Frog9StateJumpFPQ24Game9EnemyBase = .text:0x802573CC; // type:function size:0x48 scope:global align:4 +init__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257414; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBase = .text:0x8025746C; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBase = .text:0x802574F8; // type:function size:0x3C scope:global align:4 +init__Q34Game4Frog9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257534; // type:function size:0x8C scope:global align:4 +exec__Q34Game4Frog9StateFallFPQ24Game9EnemyBase = .text:0x802575C0; // type:function size:0x40 scope:global align:4 +cleanup__Q34Game4Frog9StateFallFPQ24Game9EnemyBase = .text:0x80257600; // type:function size:0x38 scope:global align:4 +init__Q34Game4Frog11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257638; // type:function size:0x74 scope:global align:4 +exec__Q34Game4Frog11StateAttackFPQ24Game9EnemyBase = .text:0x802576AC; // type:function size:0x16C scope:global align:4 +cleanup__Q34Game4Frog11StateAttackFPQ24Game9EnemyBase = .text:0x80257818; // type:function size:0x44 scope:global align:4 +init__Q34Game4Frog9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025785C; // type:function size:0x54 scope:global align:4 +exec__Q34Game4Frog9StateFailFPQ24Game9EnemyBase = .text:0x802578B0; // type:function size:0x1A8 scope:global align:4 +cleanup__Q34Game4Frog9StateFailFPQ24Game9EnemyBase = .text:0x80257A58; // type:function size:0x24 scope:global align:4 +init__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257A7C; // type:function size:0x44 scope:global align:4 +exec__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80257AC0; // type:function size:0x224 scope:global align:4 +cleanup__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80257CE4; // type:function size:0x60 scope:global align:4 +init__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257D44; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBase = .text:0x80257DA0; // type:function size:0x200 scope:global align:4 +cleanup__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBase = .text:0x80257FA0; // type:function size:0x10C scope:global align:4 +setAnimMgr__Q34Game4Frog14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802580AC; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Frog14ProperAnimatorFi = .text:0x802580B4; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Frog14ProperAnimatorFv = .text:0x802580BC; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Frog14ProperAnimatorFv = .text:0x80258118; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Frog3MgrFiUc = .text:0x80258120; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Frog3MgrFv = .text:0x80258170; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Frog5ParmsFv = .text:0x802581B8; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game4Frog3MgrFi = .text:0x8025830C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Frog3ObjFv = .text:0x8025836C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Frog3MgrFi = .text:0x80258428; // type:function size:0x10 scope:global align:4 +read__Q34Game4Frog5ParmsFR6Stream = .text:0x80258438; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Frog3MgrFv = .text:0x80258488; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Frog3MgrFv = .text:0x80258538; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Frog3MgrFv = .text:0x80258540; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Frog3ObjFv = .text:0x80258548; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Frog3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80258680; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Frog3ObjFPQ24Game15CreatureInitArg = .text:0x80258684; // type:function size:0x78 scope:global align:4 +onKill__Q34Game4Frog3ObjFPQ24Game15CreatureKillArg = .text:0x802586FC; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game4Frog3ObjFv = .text:0x80258740; // type:function size:0x44 scope:global align:4 +doSimulationFlying__Q34Game4Frog3ObjFf = .text:0x80258784; // type:function size:0x280 scope:global align:4 +doDirectDraw__Q34Game4Frog3ObjFR8Graphics = .text:0x80258A04; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Frog3ObjFR8Graphics = .text:0x80258A08; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Frog3ObjFPQ34Game4Frog3FSM = .text:0x80258A28; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Frog3ObjFRQ24Game11ShadowParam = .text:0x80258A74; // type:function size:0x110 scope:global align:4 +collisionCallback__Q34Game4Frog3ObjFRQ24Game9CollEvent = .text:0x80258B84; // type:function size:0x104 scope:global align:4 +doStartStoneState__Q34Game4Frog3ObjFv = .text:0x80258C88; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game4Frog3ObjFv = .text:0x80258CBC; // type:function size:0x64 scope:global align:4 +doStartEarthquakeFitState__Q34Game4Frog3ObjFv = .text:0x80258D20; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeFitState__Q34Game4Frog3ObjFv = .text:0x80258D54; // type:function size:0x5C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game4Frog3ObjFv = .text:0x80258DB0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game4Frog3ObjFv = .text:0x80258DE4; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game4Frog3ObjFv = .text:0x80258E18; // type:function size:0x28 scope:global align:4 +viewGetCollTreeOffset__Q34Game4Frog3ObjFv = .text:0x80258E40; // type:function size:0x1C scope:global align:4 +doStartMovie__Q34Game4Frog3ObjFv = .text:0x80258E5C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game4Frog3ObjFv = .text:0x80258E7C; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game4Frog3ObjFv = .text:0x80258E9C; // type:function size:0x88 scope:global align:4 +getCommonEffectPos__Q34Game4Frog3ObjFR10Vector3 = .text:0x80258F24; // type:function size:0x54 scope:global align:4 +updateCaution__Q34Game4Frog3ObjFv = .text:0x80258F78; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game4Frog3ObjFv = .text:0x80258FC8; // type:function size:0x24 scope:global align:4 +startJumpAttack__Q34Game4Frog3ObjFv = .text:0x80258FEC; // type:function size:0xD8 scope:global align:4 +resetHomePosition__Q34Game4Frog3ObjFv = .text:0x802590C4; // type:function size:0xD8 scope:global align:4 +pressOnGround__Q34Game4Frog3ObjFv = .text:0x8025919C; // type:function size:0x24C scope:global align:4 +createEffect__Q34Game4Frog3ObjFv = .text:0x802593E8; // type:function size:0xB0 scope:global align:4 +setupEffect__Q34Game4Frog3ObjFv = .text:0x80259498; // type:function size:0x10 scope:global align:4 +startJumpEffect__Q34Game4Frog3ObjFv = .text:0x802594A8; // type:function size:0x34 scope:global align:4 +finishJumpEffect__Q34Game4Frog3ObjFv = .text:0x802594DC; // type:function size:0x30 scope:global align:4 +createDownEffect__Q34Game4Frog3ObjFf = .text:0x8025950C; // type:function size:0xC0 scope:global align:4 +effectDrawOn__Q34Game4Frog3ObjFv = .text:0x802595CC; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game4Frog3ObjFv = .text:0x802595FC; // type:function size:0x30 scope:global align:4 +__dt__Q23efx9TFrogPotaFv = .text:0x8025962C; // type:function size:0x9C scope:weak align:4 +forceKill__Q23efx8TSimple4Fv = .text:0x802596C8; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple4Fv = .text:0x802596CC; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game4Frog3ObjFPQ24Game8WaterBox = .text:0x802596D0; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game4Frog3ObjFv = .text:0x802596D4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game4Frog3ObjFv = .text:0x802596D8; // type:function size:0x8 scope:weak align:4 +__sinit_Frog_cpp = .text:0x802596E0; // type:function size:0x28 scope:local align:4 +@736@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80259708; // type:function size:0x14 scope:weak align:4 +@736@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8025971C; // type:function size:0x14 scope:weak align:4 +@736@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80259730; // type:function size:0x14 scope:weak align:4 +@736@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80259744; // type:function size:0x14 scope:weak align:4 +@736@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80259758; // type:function size:0x14 scope:weak align:4 +@736@12@viewGetCollTreeOffset__Q34Game4Frog3ObjFv = .text:0x8025976C; // type:function size:0x14 scope:weak align:4 +@736@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80259780; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TFrogPotaFv = .text:0x80259794; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujib3MgrFiUc = .text:0x8025979C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Ujib3MgrFv = .text:0x802597EC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Ujib5ParmsFv = .text:0x80259834; // type:function size:0xDC scope:weak align:4 +createObj__Q34Game4Ujib3MgrFi = .text:0x80259910; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Ujib3ObjFv = .text:0x80259970; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Ujib3MgrFi = .text:0x80259A2C; // type:function size:0x10 scope:global align:4 +read__Q34Game4Ujib5ParmsFR6Stream = .text:0x80259A3C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Ujib3MgrFv = .text:0x80259A8C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujib3MgrFv = .text:0x80259B3C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Ujib3MgrFv = .text:0x80259B44; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujib3ObjFv = .text:0x80259B4C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Ujib3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80259C84; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Ujib3ObjFPQ24Game15CreatureInitArg = .text:0x80259C88; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game4Ujib3ObjFv = .text:0x80259D20; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game4Ujib3ObjFR8Graphics = .text:0x80259D68; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Ujib3ObjFR8Graphics = .text:0x80259D6C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Ujib3ObjFPQ34Game4Ujib3FSM = .text:0x80259D8C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Ujib3ObjFRQ24Game11ShadowParam = .text:0x80259DD8; // type:function size:0xA8 scope:global align:4 +pressCallBack__Q34Game4Ujib3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80259E80; // type:function size:0x94 scope:global align:4 +hipdropCallBack__Q34Game4Ujib3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80259F14; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game4Ujib3ObjFv = .text:0x80259F40; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game4Ujib3ObjFv = .text:0x80259F68; // type:function size:0x8C scope:global align:4 +lifeIncrement__Q34Game4Ujib3ObjFv = .text:0x80259FF4; // type:function size:0x30 scope:global align:4 +setInWaterDamage__Q34Game4Ujib3ObjFv = .text:0x8025A024; // type:function size:0x34 scope:global align:4 +resetAppearCheck__Q34Game4Ujib3ObjFv = .text:0x8025A058; // type:function size:0xB4 scope:global align:4 +isAppearCheck__Q34Game4Ujib3ObjFv = .text:0x8025A10C; // type:function size:0x48 scope:global align:4 +resetBridgeSearch__Q34Game4Ujib3ObjFv = .text:0x8025A154; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game4Ujib3ObjFv = .text:0x8025A174; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game4Ujib3ObjFv = .text:0x8025A1BC; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game4Ujib3ObjFv = .text:0x8025A47C; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game4Ujib3ObjFv = .text:0x8025A480; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game4Ujib3ObjFv = .text:0x8025A634; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game4Ujib3ObjFv = .text:0x8025A65C; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game4Ujib3ObjFv = .text:0x8025A904; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game4Ujib3ObjFv = .text:0x8025AB8C; // type:function size:0x2F0 scope:global align:4 +breakTargetBridge__Q34Game4Ujib3ObjFv = .text:0x8025AE7C; // type:function size:0x5C scope:global align:4 +createAppearEffect__Q34Game4Ujib3ObjFv = .text:0x8025AED8; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game4Ujib3ObjFv = .text:0x8025AF64; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game4Ujib3ObjFv = .text:0x8025AFF0; // type:function size:0x90 scope:global align:4 +createEatEffect__Q34Game4Ujib3ObjFv = .text:0x8025B080; // type:function size:0x90 scope:global align:4 +isUnderground__Q34Game4Ujib3ObjFv = .text:0x8025B110; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game4Ujib3ObjFv = .text:0x8025B118; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Ujib3ObjFv = .text:0x8025B120; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujib3ObjFv = .text:0x8025B128; // type:function size:0x8 scope:weak align:4 +@732@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8025B130; // type:function size:0x14 scope:weak align:4 +@732@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8025B144; // type:function size:0x14 scope:weak align:4 +@732@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8025B158; // type:function size:0x14 scope:weak align:4 +@732@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8025B16C; // type:function size:0x14 scope:weak align:4 +@732@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8025B180; // type:function size:0x14 scope:weak align:4 +@732@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8025B194; // type:function size:0x14 scope:weak align:4 +init__Q34Game4Ujib3FSMFPQ24Game9EnemyBase = .text:0x8025B1A8; // type:function size:0x478 scope:global align:4 +init__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B620; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBase = .text:0x8025B67C; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBase = .text:0x8025B6C0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B6C4; // type:function size:0x64 scope:global align:4 +exec__Q34Game4Ujib10StatePressFPQ24Game9EnemyBase = .text:0x8025B728; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujib10StatePressFPQ24Game9EnemyBase = .text:0x8025B76C; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B770; // type:function size:0xBC scope:global align:4 +exec__Q34Game4Ujib9StateStayFPQ24Game9EnemyBase = .text:0x8025B82C; // type:function size:0xB0 scope:global align:4 +cleanup__Q34Game4Ujib9StateStayFPQ24Game9EnemyBase = .text:0x8025B8DC; // type:function size:0x84 scope:global align:4 +init__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B960; // type:function size:0x80 scope:global align:4 +exec__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBase = .text:0x8025B9E0; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBase = .text:0x8025BA60; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025BA9C; // type:function size:0x6C scope:global align:4 +exec__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBase = .text:0x8025BB08; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBase = .text:0x8025BB58; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025BB94; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBase = .text:0x8025BBC8; // type:function size:0x4C8 scope:global align:4 +cleanup__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBase = .text:0x8025C090; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C094; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBase = .text:0x8025C0C8; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBase = .text:0x8025C1F8; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C1FC; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBase = .text:0x8025C230; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBase = .text:0x8025C360; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C364; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBase = .text:0x8025C398; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBase = .text:0x8025C4C8; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C4CC; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBase = .text:0x8025C500; // type:function size:0x1DC scope:global align:4 +cleanup__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBase = .text:0x8025C6DC; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C6E0; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBase = .text:0x8025C738; // type:function size:0x140 scope:global align:4 +cleanup__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBase = .text:0x8025C878; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C87C; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBase = .text:0x8025C8C4; // type:function size:0x218 scope:global align:4 +cleanup__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBase = .text:0x8025CADC; // type:function size:0x10 scope:global align:4 +init__Q34Game4Ujib8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025CAEC; // type:function size:0x3C scope:global align:4 +exec__Q34Game4Ujib8StateEatFPQ24Game9EnemyBase = .text:0x8025CB28; // type:function size:0x1A8 scope:global align:4 +cleanup__Q34Game4Ujib8StateEatFPQ24Game9EnemyBase = .text:0x8025CCD0; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game4Ujib14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8025CCD4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Ujib14ProperAnimatorFi = .text:0x8025CCDC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Ujib14ProperAnimatorFv = .text:0x8025CCE4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Ujib14ProperAnimatorFv = .text:0x8025CD40; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Kogane3FSMFPQ24Game9EnemyBase = .text:0x8025CD48; // type:function size:0x1D4 scope:global align:4 +init__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025CF1C; // type:function size:0x98 scope:global align:4 +exec__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBase = .text:0x8025CFB4; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBase = .text:0x8025D018; // type:function size:0x1A0 scope:global align:4 +startBodyEffect__Q34Game6Kogane3ObjFv = .text:0x8025D1B8; // type:function size:0x4 scope:weak align:4 +init__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D1BC; // type:function size:0x138 scope:global align:4 +finishBodyEffect__Q34Game6Kogane3ObjFv = .text:0x8025D2F4; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBase = .text:0x8025D2F8; // type:function size:0x6C scope:global align:4 +cleanup__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBase = .text:0x8025D364; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D368; // type:function size:0x6C scope:global align:4 +createFartEffect__Q34Game6Kogane3ObjFv = .text:0x8025D3D4; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBase = .text:0x8025D3D8; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBase = .text:0x8025D510; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D514; // type:function size:0x5C scope:global align:4 +exec__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBase = .text:0x8025D570; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBase = .text:0x8025D62C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kogane10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D630; // type:function size:0x11C scope:global align:4 +createPressSENormal__Q34Game6Kogane3ObjFv = .text:0x8025D74C; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kogane10StatePressFPQ24Game9EnemyBase = .text:0x8025D750; // type:function size:0x130 scope:global align:4 +createItem__Q34Game6Kogane3ObjFv = .text:0x8025D880; // type:function size:0x4 scope:weak align:4 +createPressSESpecial__Q34Game6Kogane3ObjFv = .text:0x8025D884; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game6Kogane10StatePressFPQ24Game9EnemyBase = .text:0x8025D888; // type:function size:0x10 scope:global align:4 +__ct__Q34Game6Kogane3MgrFiUc = .text:0x8025D898; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game6Kogane3MgrFv = .text:0x8025D8E8; // type:function size:0xE8 scope:global align:4 +loadAnimData__Q34Game6Kogane3MgrFv = .text:0x8025D9D0; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game6Kogane3MgrFv = .text:0x8025DA70; // type:function size:0x130 scope:global align:4 +__dt__Q34Game6Kogane3MgrFv = .text:0x8025DBA0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Kogane3MgrFv = .text:0x8025DC50; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Kogane3MgrFPv = .text:0x8025DC58; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game6Kogane3MgrFv = .text:0x8025DC84; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kogane3ObjFv = .text:0x8025DC8C; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game6Kogane3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8025DDBC; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Kogane3ObjFPQ24Game15CreatureInitArg = .text:0x8025DDC0; // type:function size:0x130 scope:global align:4 +resetFartTimer__Q34Game6Kogane3ObjFv = .text:0x8025DEF0; // type:function size:0x4 scope:weak align:4 +onKill__Q34Game6Kogane3ObjFPQ24Game15CreatureKillArg = .text:0x8025DEF4; // type:function size:0x50 scope:global align:4 +doUpdate__Q34Game6Kogane3ObjFv = .text:0x8025DF44; // type:function size:0x34 scope:global align:4 +doUpdateCommon__Q34Game6Kogane3ObjFv = .text:0x8025DF78; // type:function size:0x20 scope:global align:4 +doDirectDraw__Q34Game6Kogane3ObjFR8Graphics = .text:0x8025DF98; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Kogane3ObjFR8Graphics = .text:0x8025DF9C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Kogane3ObjFPQ34Game6Kogane3FSM = .text:0x8025DFBC; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Kogane3ObjFRQ24Game11ShadowParam = .text:0x8025E008; // type:function size:0xA0 scope:global align:4 +pressCallBack__Q34Game6Kogane3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8025E0A8; // type:function size:0x6C scope:global align:4 +wallCallback__Q34Game6Kogane3ObjFRCQ24Game8MoveInfo = .text:0x8025E114; // type:function size:0x3C scope:global align:4 +earthquakeCallBack__Q34Game6Kogane3ObjFPQ24Game8Creaturef = .text:0x8025E150; // type:function size:0x60 scope:global align:4 +hipdropCallBack__Q34Game6Kogane3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8025E1B0; // type:function size:0x6C scope:global align:4 +doStartStoneState__Q34Game6Kogane3ObjFv = .text:0x8025E21C; // type:function size:0x50 scope:global align:4 +doFinishStoneState__Q34Game6Kogane3ObjFv = .text:0x8025E26C; // type:function size:0x50 scope:global align:4 +doStartMovie__Q34Game6Kogane3ObjFv = .text:0x8025E2BC; // type:function size:0x2C scope:global align:4 +effectDrawOff__Q34Game6Kogane3ObjFv = .text:0x8025E2E8; // type:function size:0x4 scope:weak align:4 +doEndMovie__Q34Game6Kogane3ObjFv = .text:0x8025E2EC; // type:function size:0x2C scope:global align:4 +effectDrawOn__Q34Game6Kogane3ObjFv = .text:0x8025E318; // type:function size:0x4 scope:weak align:4 +transitDamageState__Q34Game6Kogane3ObjFf = .text:0x8025E31C; // type:function size:0x84 scope:global align:4 +transitDisappear__Q34Game6Kogane3ObjFv = .text:0x8025E3A0; // type:function size:0x108 scope:global align:4 +getBodyJointPos__Q34Game6Kogane3ObjFv = .text:0x8025E4A8; // type:function size:0x50 scope:global align:4 +koganeScaleUp__Q34Game6Kogane3ObjFv = .text:0x8025E4F8; // type:function size:0xA4 scope:global align:4 +koganeScaleDown__Q34Game6Kogane3ObjFv = .text:0x8025E59C; // type:function size:0x8C scope:global align:4 +setTargetPosition__Q34Game6Kogane3ObjFP10Vector3 = .text:0x8025E628; // type:function size:0x1AC scope:global align:4 +resetAppearTimer__Q34Game6Kogane3ObjFv = .text:0x8025E7D4; // type:function size:0x78 scope:global align:4 +isAppear__Q34Game6Kogane3ObjFv = .text:0x8025E84C; // type:function size:0x80 scope:global align:4 +resetMoveTimer__Q34Game6Kogane3ObjFff = .text:0x8025E8CC; // type:function size:0x84 scope:global align:4 +createTreasureItem__Q34Game6Kogane3ObjFv = .text:0x8025E950; // type:function size:0x194 scope:global align:4 +createPellet__Q34Game6Kogane3ObjFii = .text:0x8025EAE4; // type:function size:0x294 scope:global align:4 +createDoping__Q34Game6Kogane3ObjFUci = .text:0x8025ED78; // type:function size:0x1DC scope:global align:4 +__dt__Q34Game6Kogane3ObjFv = .text:0x8025EF54; // type:function size:0xBC scope:weak align:4 +inWaterCallback__Q34Game6Kogane3ObjFPQ24Game8WaterBox = .text:0x8025F010; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game6Kogane3ObjFv = .text:0x8025F014; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Kogane3ObjFv = .text:0x8025F018; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game6Kogane14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8025F020; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Kogane14ProperAnimatorFi = .text:0x8025F028; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Kogane14ProperAnimatorFv = .text:0x8025F030; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Kogane14ProperAnimatorFv = .text:0x8025F08C; // type:function size:0x8 scope:weak align:4 +init__Q34Game7Qurione3FSMFPQ24Game9EnemyBase = .text:0x8025F094; // type:function size:0x228 scope:global align:4 +init__Q34Game7Qurione9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F2BC; // type:function size:0xD0 scope:global align:4 +exec__Q34Game7Qurione9StateStayFPQ24Game9EnemyBase = .text:0x8025F38C; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game7Qurione9StateStayFPQ24Game9EnemyBase = .text:0x8025F414; // type:function size:0x5C scope:global align:4 +init__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F470; // type:function size:0x74 scope:global align:4 +exec__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBase = .text:0x8025F4E4; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBase = .text:0x8025F564; // type:function size:0x54 scope:global align:4 +init__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F5B8; // type:function size:0x6C scope:global align:4 +exec__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBase = .text:0x8025F624; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBase = .text:0x8025F6A4; // type:function size:0x90 scope:global align:4 +init__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F734; // type:function size:0x3C scope:global align:4 +exec__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBase = .text:0x8025F770; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBase = .text:0x8025F8A0; // type:function size:0x4 scope:global align:4 +init__Q34Game7Qurione9StateDropFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F8A4; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Qurione9StateDropFPQ24Game9EnemyBase = .text:0x8025F900; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game7Qurione9StateDropFPQ24Game9EnemyBase = .text:0x8025F968; // type:function size:0x10 scope:global align:4 +init__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F978; // type:function size:0xB0 scope:global align:4 +exec__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBase = .text:0x8025FA28; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBase = .text:0x8025FA88; // type:function size:0x4 scope:global align:4 +__ct__Q34Game7Qurione9GeneratorFv = .text:0x8025FA8C; // type:function size:0x94 scope:global align:4 +getLatestVersion__Q34Game7Qurione9GeneratorFv = .text:0x8025FB20; // type:function size:0xC scope:global align:4 +doRead__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FB2C; // type:function size:0x74 scope:global align:4 +doWrite__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FBA0; // type:function size:0x80 scope:global align:4 +doReadLatestVersion__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FC20; // type:function size:0x4C scope:global align:4 +doReadOldVersion__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FC6C; // type:function size:0x4 scope:global align:4 +__ct__Q34Game7Qurione3MgrFiUc = .text:0x8025FC70; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Qurione3MgrFv = .text:0x8025FCC0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Qurione5ParmsFv = .text:0x8025FD08; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game7Qurione3MgrFi = .text:0x8025FE98; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Qurione3ObjFv = .text:0x8025FEF8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Qurione3MgrFi = .text:0x8025FFB4; // type:function size:0x10 scope:global align:4 +read__Q34Game7Qurione5ParmsFR6Stream = .text:0x8025FFC4; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Qurione3MgrFv = .text:0x80260014; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Qurione3MgrFv = .text:0x802600C4; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Qurione3MgrFPv = .text:0x802600CC; // type:function size:0x2C scope:weak align:4 +__dt__Q34Game7Qurione9GeneratorFv = .text:0x802600F8; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game7Qurione9GeneratorFv = .text:0x80260168; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Qurione3MgrFv = .text:0x80260170; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Qurione3ObjFv = .text:0x80260178; // type:function size:0x154 scope:global align:4 +birth__Q34Game7Qurione3ObjFR10Vector3f = .text:0x802602CC; // type:function size:0x5C scope:global align:4 +setInitialSetting__Q34Game7Qurione3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80260328; // type:function size:0x2C scope:global align:4 +onInit__Q34Game7Qurione3ObjFPQ24Game15CreatureInitArg = .text:0x80260354; // type:function size:0xEC scope:global align:4 +onKill__Q34Game7Qurione3ObjFPQ24Game15CreatureKillArg = .text:0x80260440; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game7Qurione3ObjFv = .text:0x80260484; // type:function size:0x34 scope:global align:4 +setFSM__Q34Game7Qurione3ObjFPQ34Game7Qurione3FSM = .text:0x802604B8; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game7Qurione3ObjFR8Graphics = .text:0x80260504; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Qurione3ObjFR8Graphics = .text:0x80260508; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game7Qurione3ObjFRQ24Game11ShadowParam = .text:0x80260528; // type:function size:0x5C scope:global align:4 +flyCollisionCallBack__Q34Game7Qurione3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80260584; // type:function size:0x88 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game7Qurione3ObjFv = .text:0x8026060C; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game7Qurione3ObjFv = .text:0x80260640; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game7Qurione3ObjFv = .text:0x80260674; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7Qurione3ObjFv = .text:0x80260694; // type:function size:0x20 scope:global align:4 +setQurioneStartPos__Q34Game7Qurione3ObjFf = .text:0x802606B4; // type:function size:0x188 scope:global align:4 +moveFaceDir__Q34Game7Qurione3ObjFv = .text:0x8026083C; // type:function size:0x16C scope:global align:4 +addPitchRatio__Q34Game7Qurione3ObjFv = .text:0x802609A8; // type:function size:0x38 scope:global align:4 +resetUtilityTimer__Q34Game7Qurione3ObjFv = .text:0x802609E0; // type:function size:0x88 scope:global align:4 +isAppear__Q34Game7Qurione3ObjFv = .text:0x80260A68; // type:function size:0x6C scope:global align:4 +isFlyKill__Q34Game7Qurione3ObjFv = .text:0x80260AD4; // type:function size:0x30 scope:global align:4 +attachItem__Q34Game7Qurione3ObjFv = .text:0x80260B04; // type:function size:0xA4 scope:global align:4 +dropItem__Q34Game7Qurione3ObjFv = .text:0x80260BA8; // type:function size:0x4C scope:global align:4 +addQurioneScale__Q34Game7Qurione3ObjFv = .text:0x80260BF4; // type:function size:0x2C scope:global align:4 +subQurioneScale__Q34Game7Qurione3ObjFv = .text:0x80260C20; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game7Qurione3ObjFv = .text:0x80260C4C; // type:function size:0x1C0 scope:global align:4 +setupEffect__Q34Game7Qurione3ObjFv = .text:0x80260E0C; // type:function size:0x54 scope:global align:4 +createHitEffect__Q34Game7Qurione3ObjFv = .text:0x80260E60; // type:function size:0xA0 scope:global align:4 +startGlowEffect__Q34Game7Qurione3ObjFv = .text:0x80260F00; // type:function size:0x4C scope:global align:4 +setGlowEffectScale__Q34Game7Qurione3ObjFv = .text:0x80260F4C; // type:function size:0x2C scope:global align:4 +finishGlowEffect__Q34Game7Qurione3ObjFv = .text:0x80260F78; // type:function size:0x30 scope:global align:4 +createAppearEffect__Q34Game7Qurione3ObjFv = .text:0x80260FA8; // type:function size:0x34 scope:global align:4 +createDisppearEffect__Q34Game7Qurione3ObjFv = .text:0x80260FDC; // type:function size:0x34 scope:global align:4 +effectDrawOn__Q34Game7Qurione3ObjFv = .text:0x80261010; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game7Qurione3ObjFv = .text:0x80261074; // type:function size:0x64 scope:global align:4 +__dt__Q23efx10TQuriDisapFv = .text:0x802610D8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TQuriAppFv = .text:0x80261174; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TQuriGlowFv = .text:0x80261210; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game7Qurione3ObjFPQ24Game8WaterBox = .text:0x802612AC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Qurione3ObjFv = .text:0x802612B0; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Qurione3ObjFv = .text:0x802612B4; // type:function size:0x8 scope:weak align:4 +@764@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802612BC; // type:function size:0x14 scope:weak align:4 +@764@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802612D0; // type:function size:0x14 scope:weak align:4 +@764@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802612E4; // type:function size:0x14 scope:weak align:4 +@764@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802612F8; // type:function size:0x14 scope:weak align:4 +@764@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8026130C; // type:function size:0x14 scope:weak align:4 +@764@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80261320; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TQuriGlowFv = .text:0x80261334; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TQuriAppFv = .text:0x8026133C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TQuriDisapFv = .text:0x80261344; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game7Qurione14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026134C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Qurione14ProperAnimatorFi = .text:0x80261354; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Qurione14ProperAnimatorFv = .text:0x8026135C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Qurione14ProperAnimatorFv = .text:0x802613B8; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game10RumbleDataFv = .text:0x802613C0; // type:function size:0xC scope:global align:4 +__ct__Q24Game13RumbleDataMgrFv = .text:0x802613CC; // type:function size:0xC scope:global align:4 +getRumbleData__Q24Game13RumbleDataMgrFi = .text:0x802613D8; // type:function size:0x2C scope:global align:4 +read__Q24Game13RumbleDataMgrFR6Stream = .text:0x80261404; // type:function size:0x128 scope:global align:4 +__ct__Q34Game8MaroFrog3MgrFiUc = .text:0x8026152C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8MaroFrog3MgrFv = .text:0x8026157C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game8MaroFrog3MgrFi = .text:0x802615C4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8MaroFrog3ObjFv = .text:0x80261624; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game8MaroFrog3MgrFi = .text:0x80261710; // type:function size:0x10 scope:global align:4 +__dt__Q34Game8MaroFrog3MgrFv = .text:0x80261720; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8MaroFrog3MgrFv = .text:0x802617D0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8MaroFrog3MgrFv = .text:0x802617D8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8MaroFrog3ObjFv = .text:0x802617E0; // type:function size:0x98 scope:global align:4 +attackNaviPosition__Q34Game8MaroFrog3ObjFv = .text:0x80261878; // type:function size:0x45C scope:global align:4 +createEffect__Q34Game8MaroFrog3ObjFv = .text:0x80261CD4; // type:function size:0xB0 scope:global align:4 +getEnemyTypeID__Q34Game8MaroFrog3ObjFv = .text:0x80261D84; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Rock3FSMFPQ24Game9EnemyBase = .text:0x80261D8C; // type:function size:0x228 scope:global align:4 +init__Q34Game4Rock9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80261FB4; // type:function size:0x98 scope:global align:4 +exec__Q34Game4Rock9StateWaitFPQ24Game9EnemyBase = .text:0x8026204C; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game4Rock9StateWaitFPQ24Game9EnemyBase = .text:0x80262154; // type:function size:0x48 scope:global align:4 +init__Q34Game4Rock11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026219C; // type:function size:0x104 scope:global align:4 +exec__Q34Game4Rock11StateAppearFPQ24Game9EnemyBase = .text:0x802622A0; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game4Rock11StateAppearFPQ24Game9EnemyBase = .text:0x80262304; // type:function size:0x5C scope:global align:4 +init__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80262360; // type:function size:0x2C scope:global align:4 +exec__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBase = .text:0x8026238C; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBase = .text:0x802623C0; // type:function size:0x58 scope:global align:4 +init__Q34Game4Rock9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80262418; // type:function size:0x60 scope:global align:4 +exec__Q34Game4Rock9StateFallFPQ24Game9EnemyBase = .text:0x80262478; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game4Rock9StateFallFPQ24Game9EnemyBase = .text:0x802624E0; // type:function size:0x94 scope:global align:4 +init__Q34Game4Rock9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80262574; // type:function size:0x7C scope:global align:4 +exec__Q34Game4Rock9StateMoveFPQ24Game9EnemyBase = .text:0x802625F0; // type:function size:0xD0 scope:global align:4 +cleanup__Q34Game4Rock9StateMoveFPQ24Game9EnemyBase = .text:0x802626C0; // type:function size:0x7C scope:global align:4 +init__Q34Game4Rock9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026273C; // type:function size:0x88 scope:global align:4 +exec__Q34Game4Rock9StateDeadFPQ24Game9EnemyBase = .text:0x802627C4; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game4Rock9StateDeadFPQ24Game9EnemyBase = .text:0x80262850; // type:function size:0x4 scope:global align:4 +__sinit_RockState_cpp = .text:0x80262854; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game4Rock14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026287C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Rock14ProperAnimatorFi = .text:0x80262884; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Rock14ProperAnimatorFv = .text:0x8026288C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Rock14ProperAnimatorFv = .text:0x802628E8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Rock9GeneratorFv = .text:0x802628F0; // type:function size:0x9C scope:global align:4 +getLatestVersion__Q34Game4Rock9GeneratorFv = .text:0x8026298C; // type:function size:0xC scope:global align:4 +doRead__Q34Game4Rock9GeneratorFR6Stream = .text:0x80262998; // type:function size:0x74 scope:global align:4 +doWrite__Q34Game4Rock9GeneratorFR6Stream = .text:0x80262A0C; // type:function size:0xA4 scope:global align:4 +doReadLatestVersion__Q34Game4Rock9GeneratorFR6Stream = .text:0x80262AB0; // type:function size:0x58 scope:global align:4 +doReadOldVersion__Q34Game4Rock9GeneratorFR6Stream = .text:0x80262B08; // type:function size:0x4 scope:global align:4 +__ct__Q34Game4Rock3MgrFiUc = .text:0x80262B0C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Rock3MgrFv = .text:0x80262B5C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Rock5ParmsFv = .text:0x80262BA4; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game4Rock3MgrFi = .text:0x80262C3C; // type:function size:0x160 scope:global align:4 +__dt__Q34Game4Rock3ObjFv = .text:0x80262D9C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Rock3MgrFi = .text:0x80262E58; // type:function size:0x10 scope:global align:4 +read__Q34Game4Rock5ParmsFR6Stream = .text:0x80262E68; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Rock3MgrFv = .text:0x80262EB8; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Rock3MgrFv = .text:0x80262F68; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game4Rock9GeneratorFv = .text:0x80262F70; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game4Rock9GeneratorFv = .text:0x80262FE0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Rock3MgrFv = .text:0x80262FE8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Rock3ObjFv = .text:0x80262FF0; // type:function size:0x138 scope:global align:4 +birth__Q34Game4Rock3ObjFR10Vector3f = .text:0x80263128; // type:function size:0x5C scope:global align:4 +setInitialSetting__Q34Game4Rock3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80263184; // type:function size:0x28 scope:global align:4 +onInit__Q34Game4Rock3ObjFPQ24Game15CreatureInitArg = .text:0x802631AC; // type:function size:0x1E0 scope:global align:4 +getEnemyTypeID__Q34Game4Rock3ObjFv = .text:0x8026338C; // type:function size:0x8 scope:weak align:4 +onKill__Q34Game4Rock3ObjFPQ24Game15CreatureKillArg = .text:0x80263394; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game4Rock3ObjFv = .text:0x802633E8; // type:function size:0x34 scope:global align:4 +setFSM__Q34Game4Rock3ObjFPQ34Game4Rock3FSM = .text:0x8026341C; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game4Rock3ObjFR8Graphics = .text:0x80263468; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Rock3ObjFR8Graphics = .text:0x8026346C; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game4Rock3ObjFRQ24Game11ShadowParam = .text:0x8026348C; // type:function size:0xE4 scope:global align:4 +needShadow__Q34Game4Rock3ObjFv = .text:0x80263570; // type:function size:0x60 scope:global align:4 +hipdropCallBack__Q34Game4Rock3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802635D0; // type:function size:0x88 scope:global align:4 +collisionCallback__Q34Game4Rock3ObjFRQ24Game9CollEvent = .text:0x80263658; // type:function size:0x1A4 scope:global align:4 +wallCallback__Q34Game4Rock3ObjFRCQ24Game8MoveInfo = .text:0x802637FC; // type:function size:0x54 scope:global align:4 +inWaterCallback__Q34Game4Rock3ObjFPQ24Game8WaterBox = .text:0x80263850; // type:function size:0x6C scope:global align:4 +outWaterCallback__Q34Game4Rock3ObjFv = .text:0x802638BC; // type:function size:0x60 scope:global align:4 +doStartMovie__Q34Game4Rock3ObjFv = .text:0x8026391C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game4Rock3ObjFv = .text:0x8026393C; // type:function size:0x20 scope:global align:4 +ignoreAtari__Q34Game4Rock3ObjFPQ24Game8Creature = .text:0x8026395C; // type:function size:0x2C scope:global align:4 +fallRockScaleUp__Q34Game4Rock3ObjFv = .text:0x80263988; // type:function size:0x7C scope:global align:4 +moveRockScaleUp__Q34Game4Rock3ObjFv = .text:0x80263A04; // type:function size:0x7C scope:global align:4 +initMoveVelocity__Q34Game4Rock3ObjFv = .text:0x80263A80; // type:function size:0x100 scope:global align:4 +updateMoveVelocity__Q34Game4Rock3ObjFv = .text:0x80263B80; // type:function size:0x3A0 scope:global align:4 +createEffect__Q34Game4Rock3ObjFv = .text:0x80263F20; // type:function size:0x1A4 scope:global align:4 +setupEffect__Q34Game4Rock3ObjFv = .text:0x802640C4; // type:function size:0x18 scope:global align:4 +startFallEffect__Q34Game4Rock3ObjFv = .text:0x802640DC; // type:function size:0x34 scope:global align:4 +finishFallEffect__Q34Game4Rock3ObjFv = .text:0x80264110; // type:function size:0x30 scope:global align:4 +startRollingGroundEffect__Q34Game4Rock3ObjFv = .text:0x80264140; // type:function size:0x34 scope:global align:4 +finishRollingGroundEffect__Q34Game4Rock3ObjFv = .text:0x80264174; // type:function size:0x30 scope:global align:4 +startRollingWaterEffect__Q34Game4Rock3ObjFv = .text:0x802641A4; // type:function size:0xE8 scope:global align:4 +create__Q23efx9TRockWRunFPQ23efx3Arg = .text:0x8026428C; // type:function size:0x10 scope:weak align:4 +finishRollingWaterEffect__Q34Game4Rock3ObjFv = .text:0x8026429C; // type:function size:0x30 scope:global align:4 +fade__Q23efx9TRockWRunFv = .text:0x802642CC; // type:function size:0x44 scope:weak align:4 +updateWaterEffectPosition__Q34Game4Rock3ObjFv = .text:0x80264310; // type:function size:0xA4 scope:global align:4 +createRockDeadEffect__Q34Game4Rock3ObjFv = .text:0x802643B4; // type:function size:0x98 scope:global align:4 +effectDrawOn__Q34Game4Rock3ObjFv = .text:0x8026444C; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game4Rock3ObjFv = .text:0x802644B0; // type:function size:0x64 scope:global align:4 +forceKill__Q23efx9TRockWRunFv = .text:0x80264514; // type:function size:0x44 scope:weak align:4 +__dt__Q23efx10TRockGrRunFv = .text:0x80264558; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TRockRunFv = .text:0x802645F4; // type:function size:0x9C scope:weak align:4 +isLivingThing__Q34Game4Rock3ObjFv = .text:0x80264690; // type:function size:0x8 scope:weak align:4 +@744@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80264698; // type:function size:0x14 scope:weak align:4 +@744@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802646AC; // type:function size:0x14 scope:weak align:4 +@744@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802646C0; // type:function size:0x14 scope:weak align:4 +@744@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802646D4; // type:function size:0x14 scope:weak align:4 +@744@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802646E8; // type:function size:0x14 scope:weak align:4 +@744@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802646FC; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx8TRockRunFv = .text:0x80264710; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TRockGrRunFv = .text:0x80264718; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Ujia3FSMFPQ24Game9EnemyBase = .text:0x80264720; // type:function size:0x3D0 scope:global align:4 +init__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264AF0; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBase = .text:0x80264B4C; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBase = .text:0x80264B90; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264B94; // type:function size:0x64 scope:global align:4 +exec__Q34Game4Ujia10StatePressFPQ24Game9EnemyBase = .text:0x80264BF8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujia10StatePressFPQ24Game9EnemyBase = .text:0x80264C3C; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264C40; // type:function size:0xBC scope:global align:4 +exec__Q34Game4Ujia9StateStayFPQ24Game9EnemyBase = .text:0x80264CFC; // type:function size:0xD4 scope:global align:4 +cleanup__Q34Game4Ujia9StateStayFPQ24Game9EnemyBase = .text:0x80264DD0; // type:function size:0x84 scope:global align:4 +init__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264E54; // type:function size:0x80 scope:global align:4 +exec__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBase = .text:0x80264ED4; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBase = .text:0x80264FB0; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264FEC; // type:function size:0x6C scope:global align:4 +exec__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBase = .text:0x80265058; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBase = .text:0x802650A8; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802650E4; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBase = .text:0x80265118; // type:function size:0x4C8 scope:global align:4 +cleanup__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBase = .text:0x802655E0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802655E4; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBase = .text:0x80265618; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBase = .text:0x8026570C; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80265710; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80265744; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80265838; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026583C; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBase = .text:0x80265870; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBase = .text:0x80265964; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80265968; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBase = .text:0x8026599C; // type:function size:0x198 scope:global align:4 +cleanup__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBase = .text:0x80265B34; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80265B38; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBase = .text:0x80265B90; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBase = .text:0x80265C9C; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game4Ujia14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80265CA0; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Ujia14ProperAnimatorFi = .text:0x80265CA8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Ujia14ProperAnimatorFv = .text:0x80265CB0; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Ujia14ProperAnimatorFv = .text:0x80265D0C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujia3MgrFiUc = .text:0x80265D14; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Ujia3MgrFv = .text:0x80265D64; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Ujia5ParmsFv = .text:0x80265DAC; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game4Ujia3MgrFi = .text:0x80265E44; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Ujia3ObjFv = .text:0x80265EA4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Ujia3MgrFi = .text:0x80265F60; // type:function size:0x10 scope:global align:4 +read__Q34Game4Ujia5ParmsFR6Stream = .text:0x80265F70; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Ujia3MgrFv = .text:0x80265FC0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujia3MgrFv = .text:0x80266070; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Ujia3MgrFv = .text:0x80266078; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujia3ObjFv = .text:0x80266080; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game4Ujia3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802661B0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Ujia3ObjFPQ24Game15CreatureInitArg = .text:0x802661B4; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game4Ujia3ObjFv = .text:0x8026624C; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game4Ujia3ObjFR8Graphics = .text:0x80266280; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Ujia3ObjFR8Graphics = .text:0x80266284; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Ujia3ObjFPQ34Game4Ujia3FSM = .text:0x802662A4; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Ujia3ObjFRQ24Game11ShadowParam = .text:0x802662F0; // type:function size:0xA8 scope:global align:4 +pressCallBack__Q34Game4Ujia3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80266398; // type:function size:0x94 scope:global align:4 +hipdropCallBack__Q34Game4Ujia3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026642C; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game4Ujia3ObjFv = .text:0x80266458; // type:function size:0x28 scope:global align:4 +lifeIncrement__Q34Game4Ujia3ObjFv = .text:0x80266480; // type:function size:0x30 scope:global align:4 +setInWaterDamage__Q34Game4Ujia3ObjFv = .text:0x802664B0; // type:function size:0x34 scope:global align:4 +resetAppearCheck__Q34Game4Ujia3ObjFv = .text:0x802664E4; // type:function size:0xB4 scope:global align:4 +isAppearCheck__Q34Game4Ujia3ObjFv = .text:0x80266598; // type:function size:0x48 scope:global align:4 +resetBridgeSearch__Q34Game4Ujia3ObjFv = .text:0x802665E0; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game4Ujia3ObjFv = .text:0x80266600; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game4Ujia3ObjFv = .text:0x80266648; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game4Ujia3ObjFv = .text:0x80266908; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game4Ujia3ObjFv = .text:0x8026690C; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game4Ujia3ObjFv = .text:0x80266AC0; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game4Ujia3ObjFv = .text:0x80266AE8; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game4Ujia3ObjFv = .text:0x80266D90; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game4Ujia3ObjFv = .text:0x80267018; // type:function size:0x2F0 scope:global align:4 +breakTargetBridge__Q34Game4Ujia3ObjFv = .text:0x80267308; // type:function size:0x5C scope:global align:4 +createAppearEffect__Q34Game4Ujia3ObjFv = .text:0x80267364; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game4Ujia3ObjFv = .text:0x802673F0; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game4Ujia3ObjFv = .text:0x8026747C; // type:function size:0x90 scope:global align:4 +isUnderground__Q34Game4Ujia3ObjFv = .text:0x8026750C; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Ujia3ObjFv = .text:0x80267514; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujia3ObjFv = .text:0x8026751C; // type:function size:0x8 scope:weak align:4 +@724@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80267524; // type:function size:0x14 scope:weak align:4 +@724@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80267538; // type:function size:0x14 scope:weak align:4 +@724@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8026754C; // type:function size:0x14 scope:weak align:4 +@724@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80267560; // type:function size:0x14 scope:weak align:4 +@724@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80267574; // type:function size:0x14 scope:weak align:4 +@724@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80267588; // type:function size:0x14 scope:weak align:4 +init__Q34Game4Tobi3FSMFPQ24Game9EnemyBase = .text:0x8026759C; // type:function size:0x4CC scope:global align:4 +init__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267A68; // type:function size:0x70 scope:global align:4 +exec__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBase = .text:0x80267AD8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBase = .text:0x80267B1C; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267B20; // type:function size:0x70 scope:global align:4 +exec__Q34Game4Tobi10StatePressFPQ24Game9EnemyBase = .text:0x80267B90; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Tobi10StatePressFPQ24Game9EnemyBase = .text:0x80267BD4; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267BD8; // type:function size:0xBC scope:global align:4 +exec__Q34Game4Tobi9StateStayFPQ24Game9EnemyBase = .text:0x80267C94; // type:function size:0xB0 scope:global align:4 +cleanup__Q34Game4Tobi9StateStayFPQ24Game9EnemyBase = .text:0x80267D44; // type:function size:0x84 scope:global align:4 +init__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267DC8; // type:function size:0x80 scope:global align:4 +exec__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBase = .text:0x80267E48; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBase = .text:0x80267EC8; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267F04; // type:function size:0x6C scope:global align:4 +exec__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBase = .text:0x80267F70; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBase = .text:0x80267FC0; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267FFC; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBase = .text:0x80268030; // type:function size:0x4E8 scope:global align:4 +cleanup__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBase = .text:0x80268518; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026851C; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBase = .text:0x80268550; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBase = .text:0x802686A0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802686A4; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBase = .text:0x802686D8; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80268828; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026882C; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBase = .text:0x80268860; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBase = .text:0x802689B0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802689B4; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBase = .text:0x802689E8; // type:function size:0x1FC scope:global align:4 +cleanup__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBase = .text:0x80268BE4; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268BE8; // type:function size:0x94 scope:global align:4 +exec__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBase = .text:0x80268C7C; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBase = .text:0x80268DAC; // type:function size:0x1C scope:global align:4 +init__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268DC8; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBase = .text:0x80268E20; // type:function size:0x158 scope:global align:4 +cleanup__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBase = .text:0x80268F78; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268F7C; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBase = .text:0x80268FC4; // type:function size:0x218 scope:global align:4 +cleanup__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBase = .text:0x802691DC; // type:function size:0x10 scope:global align:4 +init__Q34Game4Tobi8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802691EC; // type:function size:0x3C scope:global align:4 +exec__Q34Game4Tobi8StateEatFPQ24Game9EnemyBase = .text:0x80269228; // type:function size:0x1A8 scope:global align:4 +cleanup__Q34Game4Tobi8StateEatFPQ24Game9EnemyBase = .text:0x802693D0; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game4Tobi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802693D4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Tobi14ProperAnimatorFi = .text:0x802693DC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Tobi14ProperAnimatorFv = .text:0x802693E4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Tobi14ProperAnimatorFv = .text:0x80269440; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tobi3MgrFiUc = .text:0x80269448; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Tobi3MgrFv = .text:0x80269498; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Tobi5ParmsFv = .text:0x802694E0; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game4Tobi3MgrFi = .text:0x80269670; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Tobi3ObjFv = .text:0x802696D0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Tobi3MgrFi = .text:0x8026978C; // type:function size:0x10 scope:global align:4 +read__Q34Game4Tobi5ParmsFR6Stream = .text:0x8026979C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Tobi3MgrFv = .text:0x802697EC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Tobi3MgrFv = .text:0x8026989C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Tobi3MgrFv = .text:0x802698A4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tobi3ObjFv = .text:0x802698AC; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Tobi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802699E4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Tobi3ObjFPQ24Game15CreatureInitArg = .text:0x802699E8; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game4Tobi3ObjFv = .text:0x80269A80; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game4Tobi3ObjFR8Graphics = .text:0x80269AC8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Tobi3ObjFR8Graphics = .text:0x80269ACC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Tobi3ObjFPQ34Game4Tobi3FSM = .text:0x80269AEC; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Tobi3ObjFRQ24Game11ShadowParam = .text:0x80269B38; // type:function size:0xE0 scope:global align:4 +pressCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80269C18; // type:function size:0xA4 scope:global align:4 +hipdropCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80269CBC; // type:function size:0x2C scope:global align:4 +flyCollisionCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80269CE8; // type:function size:0x94 scope:global align:4 +doStartStoneState__Q34Game4Tobi3ObjFv = .text:0x80269D7C; // type:function size:0x38 scope:global align:4 +doFinishStoneState__Q34Game4Tobi3ObjFv = .text:0x80269DB4; // type:function size:0x5C scope:global align:4 +doStartEarthquakeFitState__Q34Game4Tobi3ObjFv = .text:0x80269E10; // type:function size:0x38 scope:global align:4 +doFinishEarthquakeFitState__Q34Game4Tobi3ObjFv = .text:0x80269E48; // type:function size:0x5C scope:global align:4 +startCarcassMotion__Q34Game4Tobi3ObjFv = .text:0x80269EA4; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game4Tobi3ObjFv = .text:0x80269ECC; // type:function size:0x8C scope:global align:4 +lifeRecover__Q34Game4Tobi3ObjFv = .text:0x80269F58; // type:function size:0x7C scope:global align:4 +lifeIncrement__Q34Game4Tobi3ObjFv = .text:0x80269FD4; // type:function size:0x30 scope:global align:4 +randomFlyingTarget__Q34Game4Tobi3ObjFv = .text:0x8026A004; // type:function size:0x220 scope:global align:4 +isFlyingLife__Q34Game4Tobi3ObjFv = .text:0x8026A224; // type:function size:0x24 scope:global align:4 +setInWaterDamage__Q34Game4Tobi3ObjFv = .text:0x8026A248; // type:function size:0x34 scope:global align:4 +resetAppearCheck__Q34Game4Tobi3ObjFv = .text:0x8026A27C; // type:function size:0xB4 scope:global align:4 +isAppearCheck__Q34Game4Tobi3ObjFv = .text:0x8026A330; // type:function size:0x48 scope:global align:4 +resetBridgeSearch__Q34Game4Tobi3ObjFv = .text:0x8026A378; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game4Tobi3ObjFv = .text:0x8026A398; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game4Tobi3ObjFv = .text:0x8026A3E0; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game4Tobi3ObjFv = .text:0x8026A6A0; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game4Tobi3ObjFv = .text:0x8026A6A4; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game4Tobi3ObjFv = .text:0x8026A858; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game4Tobi3ObjFv = .text:0x8026A880; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game4Tobi3ObjFv = .text:0x8026AB28; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game4Tobi3ObjFv = .text:0x8026ADB0; // type:function size:0x2F0 scope:global align:4 +breakTargetBridge__Q34Game4Tobi3ObjFv = .text:0x8026B0A0; // type:function size:0x5C scope:global align:4 +createAppearEffect__Q34Game4Tobi3ObjFv = .text:0x8026B0FC; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game4Tobi3ObjFv = .text:0x8026B188; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game4Tobi3ObjFv = .text:0x8026B214; // type:function size:0x90 scope:global align:4 +createEatEffect__Q34Game4Tobi3ObjFv = .text:0x8026B2A4; // type:function size:0x90 scope:global align:4 +isUnderground__Q34Game4Tobi3ObjFv = .text:0x8026B334; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game4Tobi3ObjFv = .text:0x8026B33C; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Tobi3ObjFv = .text:0x8026B344; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Tobi3ObjFv = .text:0x8026B34C; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Hiba3FSMFPQ24Game9EnemyBase = .text:0x8026B354; // type:function size:0x128 scope:global align:4 +init__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026B47C; // type:function size:0x17C scope:global align:4 +getEnemyTypeID__Q34Game4Hiba3ObjFv = .text:0x8026B5F8; // type:function size:0x8 scope:weak align:4 +exec__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026B600; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026B604; // type:function size:0x4 scope:global align:4 +init__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026B608; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026B650; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026B6DC; // type:function size:0x4 scope:global align:4 +init__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026B6E0; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026B728; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026B824; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game4Hiba14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026B848; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Hiba14ProperAnimatorFi = .text:0x8026B850; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Hiba14ProperAnimatorFv = .text:0x8026B858; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Hiba14ProperAnimatorFv = .text:0x8026B8B4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Hiba3MgrFiUc = .text:0x8026B8BC; // type:function size:0x64 scope:global align:4 +__dt__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026B920; // type:function size:0xB0 scope:weak align:4 +doAlloc__Q34Game4Hiba3MgrFv = .text:0x8026B9D0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Hiba5ParmsFv = .text:0x8026BA18; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game4Hiba3MgrFi = .text:0x8026BBA8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Hiba3ObjFv = .text:0x8026BC08; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Hiba3MgrFi = .text:0x8026BCC4; // type:function size:0x10 scope:global align:4 +read__Q34Game4Hiba5ParmsFR6Stream = .text:0x8026BCD4; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Hiba3MgrFv = .text:0x8026BD24; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game4Hiba3MgrFv = .text:0x8026BDEC; // type:function size:0x8 scope:weak align:4 +isAlwaysMovieActor__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BDF4; // type:function size:0x8 scope:weak align:4 +doAnimation__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BDFC; // type:function size:0x20 scope:weak align:4 +doEntry__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BE1C; // type:function size:0x20 scope:weak align:4 +doSimulation__Q24Game28EnemyMgrBaseAlwaysMovieActorFf = .text:0x8026BE3C; // type:function size:0x20 scope:weak align:4 +doDirectDraw__Q24Game28EnemyMgrBaseAlwaysMovieActorFR8Graphics = .text:0x8026BE5C; // type:function size:0x20 scope:weak align:4 +@4@__dt__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BE7C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Hiba3MgrFv = .text:0x8026BE84; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Hiba3ObjFv = .text:0x8026BE8C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Hiba3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8026BFC4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Hiba3ObjFPQ24Game15CreatureInitArg = .text:0x8026BFC8; // type:function size:0xF8 scope:global align:4 +doUpdate__Q34Game4Hiba3ObjFv = .text:0x8026C0C0; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game4Hiba3ObjFR8Graphics = .text:0x8026C0F4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Hiba3ObjFR8Graphics = .text:0x8026C0F8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Hiba3ObjFPQ34Game4Hiba3FSM = .text:0x8026C118; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Hiba3ObjFRQ24Game11ShadowParam = .text:0x8026C164; // type:function size:0x38 scope:global align:4 +damageCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026C19C; // type:function size:0x7C scope:global align:4 +pressCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026C218; // type:function size:0x30 scope:global align:4 +hipdropCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026C248; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game4Hiba3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8026C278; // type:function size:0x34 scope:global align:4 +interactFireAttack__Q34Game4Hiba3ObjFv = .text:0x8026C2AC; // type:function size:0x1D0 scope:global align:4 +setupLodParms__Q34Game4Hiba3ObjFv = .text:0x8026C47C; // type:function size:0x24 scope:global align:4 +updateEfxLod__Q34Game4Hiba3ObjFv = .text:0x8026C4A0; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game4Hiba3ObjFv = .text:0x8026C4CC; // type:function size:0x64 scope:global align:4 +startFireEffect__Q34Game4Hiba3ObjFv = .text:0x8026C530; // type:function size:0x58 scope:global align:4 +finishFireEffect__Q34Game4Hiba3ObjFv = .text:0x8026C588; // type:function size:0x30 scope:global align:4 +generatorKill__Q34Game4Hiba3ObjFv = .text:0x8026C5B8; // type:function size:0x44 scope:global align:4 +doSimulation__Q34Game4Hiba3ObjFf = .text:0x8026C5FC; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game4Hiba3ObjFPQ24Game8WaterBox = .text:0x8026C600; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game4Hiba3ObjFv = .text:0x8026C604; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game4Hiba3ObjFv = .text:0x8026C608; // type:function size:0x8 scope:weak align:4 +lifeRecover__Q34Game4Hiba3ObjFv = .text:0x8026C610; // type:function size:0x4 scope:weak align:4 +@716@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8026C614; // type:function size:0x14 scope:weak align:4 +@716@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8026C628; // type:function size:0x14 scope:weak align:4 +@716@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8026C63C; // type:function size:0x14 scope:weak align:4 +@716@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8026C650; // type:function size:0x14 scope:weak align:4 +@716@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8026C664; // type:function size:0x14 scope:weak align:4 +@716@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8026C678; // type:function size:0x14 scope:weak align:4 +init__Q34Game7GasHiba3FSMFPQ24Game9EnemyBase = .text:0x8026C68C; // type:function size:0x128 scope:global align:4 +init__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026C7B4; // type:function size:0x17C scope:global align:4 +getEnemyTypeID__Q34Game7GasHiba3ObjFv = .text:0x8026C930; // type:function size:0x8 scope:weak align:4 +exec__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026C938; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026C93C; // type:function size:0x4 scope:global align:4 +init__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026C940; // type:function size:0x48 scope:global align:4 +exec__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026C988; // type:function size:0xC4 scope:global align:4 +cleanup__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026CA4C; // type:function size:0x4 scope:global align:4 +init__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026CA50; // type:function size:0x48 scope:global align:4 +exec__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026CA98; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026CBE8; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game7GasHiba14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026CC0C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7GasHiba14ProperAnimatorFi = .text:0x8026CC14; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7GasHiba14ProperAnimatorFv = .text:0x8026CC1C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7GasHiba14ProperAnimatorFv = .text:0x8026CC78; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7GasHiba3MgrFiUc = .text:0x8026CC80; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7GasHiba3MgrFv = .text:0x8026CCE4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7GasHiba5ParmsFv = .text:0x8026CD2C; // type:function size:0x1CC scope:weak align:4 +createObj__Q34Game7GasHiba3MgrFi = .text:0x8026CEF8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7GasHiba3ObjFv = .text:0x8026CF58; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7GasHiba3MgrFi = .text:0x8026D014; // type:function size:0x10 scope:global align:4 +read__Q34Game7GasHiba5ParmsFR6Stream = .text:0x8026D024; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7GasHiba3MgrFv = .text:0x8026D074; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7GasHiba3MgrFv = .text:0x8026D13C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7GasHiba3MgrFv = .text:0x8026D144; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7GasHiba3ObjFv = .text:0x8026D14C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game7GasHiba3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8026D284; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7GasHiba3ObjFPQ24Game15CreatureInitArg = .text:0x8026D288; // type:function size:0x100 scope:global align:4 +doUpdate__Q34Game7GasHiba3ObjFv = .text:0x8026D388; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game7GasHiba3ObjFR8Graphics = .text:0x8026D3BC; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7GasHiba3ObjFR8Graphics = .text:0x8026D3C0; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7GasHiba3ObjFPQ34Game7GasHiba3FSM = .text:0x8026D3E0; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7GasHiba3ObjFRQ24Game11ShadowParam = .text:0x8026D42C; // type:function size:0x38 scope:global align:4 +damageCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026D464; // type:function size:0xC8 scope:global align:4 +pressCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026D52C; // type:function size:0x30 scope:global align:4 +hipdropCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026D55C; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8026D58C; // type:function size:0x34 scope:global align:4 +interactGasAttack__Q34Game7GasHiba3ObjFv = .text:0x8026D5C0; // type:function size:0x1D0 scope:global align:4 +resetBridgeGateCheck__Q34Game7GasHiba3ObjFv = .text:0x8026D790; // type:function size:0x18 scope:global align:4 +setInitLivingThing__Q34Game7GasHiba3ObjFv = .text:0x8026D7A8; // type:function size:0x5B0 scope:global align:4 +updateLivingThing__Q34Game7GasHiba3ObjFv = .text:0x8026DD58; // type:function size:0x9C scope:global align:4 +isLivingThing__Q34Game7GasHiba3ObjFv = .text:0x8026DDF4; // type:function size:0x8 scope:weak align:4 +setupLodParms__Q34Game7GasHiba3ObjFv = .text:0x8026DDFC; // type:function size:0x24 scope:global align:4 +updateEfxLod__Q34Game7GasHiba3ObjFv = .text:0x8026DE20; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game7GasHiba3ObjFv = .text:0x8026DE4C; // type:function size:0x5C scope:global align:4 +startGasEffect__Q34Game7GasHiba3ObjFv = .text:0x8026DEA8; // type:function size:0xA0 scope:global align:4 +finishGasEffect__Q34Game7GasHiba3ObjFv = .text:0x8026DF48; // type:function size:0x30 scope:global align:4 +generatorKill__Q34Game7GasHiba3ObjFv = .text:0x8026DF78; // type:function size:0x44 scope:global align:4 +getName__Q23efx11ArgGasuHibaFv = .text:0x8026DFBC; // type:function size:0xC scope:weak align:4 +doSimulation__Q34Game7GasHiba3ObjFf = .text:0x8026DFC8; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game7GasHiba3ObjFPQ24Game8WaterBox = .text:0x8026DFCC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7GasHiba3ObjFv = .text:0x8026DFD0; // type:function size:0x4 scope:weak align:4 +lifeRecover__Q34Game7GasHiba3ObjFv = .text:0x8026DFD4; // type:function size:0x4 scope:weak align:4 +init__Q34Game8ElecHiba3FSMFPQ24Game9EnemyBase = .text:0x8026DFD8; // type:function size:0x17C scope:global align:4 +init__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E154; // type:function size:0x2CC scope:global align:4 +getEnemyTypeID__Q34Game8ElecHiba3ObjFv = .text:0x8026E420; // type:function size:0x8 scope:weak align:4 +exec__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026E428; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026E42C; // type:function size:0x4 scope:global align:4 +init__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E430; // type:function size:0x70 scope:global align:4 +exec__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026E4A0; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026E584; // type:function size:0x4 scope:global align:4 +init__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E588; // type:function size:0x88 scope:global align:4 +exec__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBase = .text:0x8026E610; // type:function size:0xF8 scope:global align:4 +cleanup__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBase = .text:0x8026E708; // type:function size:0x44 scope:global align:4 +init__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E74C; // type:function size:0x84 scope:global align:4 +exec__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026E7D0; // type:function size:0x164 scope:global align:4 +cleanup__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026E934; // type:function size:0x60 scope:global align:4 +setAnimMgr__Q34Game8ElecHiba14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026E994; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8ElecHiba14ProperAnimatorFi = .text:0x8026E99C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8ElecHiba14ProperAnimatorFv = .text:0x8026E9A4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8ElecHiba14ProperAnimatorFv = .text:0x8026EA00; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8ElecHiba9GeneratorFv = .text:0x8026EA08; // type:function size:0x8C scope:global align:4 +getLatestVersion__Q34Game8ElecHiba9GeneratorFv = .text:0x8026EA94; // type:function size:0xC scope:global align:4 +doRead__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EAA0; // type:function size:0x74 scope:global align:4 +doWrite__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EB14; // type:function size:0x60 scope:global align:4 +doReadLatestVersion__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EB74; // type:function size:0x34 scope:global align:4 +doReadOldVersion__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EBA8; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8ElecHiba3MgrFiUc = .text:0x8026EBAC; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8ElecHiba3MgrFv = .text:0x8026EC10; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8ElecHiba5ParmsFv = .text:0x8026EC58; // type:function size:0x1CC scope:weak align:4 +createObj__Q34Game8ElecHiba3MgrFi = .text:0x8026EE24; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8ElecHiba3ObjFv = .text:0x8026EE84; // type:function size:0xE0 scope:weak align:4 +getEnemy__Q34Game8ElecHiba3MgrFi = .text:0x8026EF64; // type:function size:0x10 scope:global align:4 +birth__Q34Game8ElecHiba3MgrFRQ24Game13EnemyBirthArg = .text:0x8026EF74; // type:function size:0xE4 scope:global align:4 +__dt__Q34Game8ElecHiba3MgrFv = .text:0x8026F058; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8ElecHiba3MgrFv = .text:0x8026F120; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8ElecHiba8TeamListFv = .text:0x8026F128; // type:function size:0x60 scope:weak align:4 +read__Q34Game8ElecHiba5ParmsFR6Stream = .text:0x8026F188; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game8ElecHiba9GeneratorFv = .text:0x8026F1D8; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game8ElecHiba9GeneratorFv = .text:0x8026F248; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8ElecHiba3MgrFv = .text:0x8026F250; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8ElecHiba3ObjFv = .text:0x8026F258; // type:function size:0x150 scope:global align:4 +birth__Q34Game8ElecHiba3ObjFR10Vector3f = .text:0x8026F3A8; // type:function size:0x38 scope:global align:4 +setInitialSetting__Q34Game8ElecHiba3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8026F3E0; // type:function size:0x80 scope:global align:4 +onInit__Q34Game8ElecHiba3ObjFPQ24Game15CreatureInitArg = .text:0x8026F460; // type:function size:0x144 scope:global align:4 +doUpdate__Q34Game8ElecHiba3ObjFv = .text:0x8026F5A4; // type:function size:0x40 scope:global align:4 +doDirectDraw__Q34Game8ElecHiba3ObjFR8Graphics = .text:0x8026F5E4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8ElecHiba3ObjFR8Graphics = .text:0x8026F5E8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game8ElecHiba3ObjFPQ34Game8ElecHiba3FSM = .text:0x8026F608; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game8ElecHiba3ObjFRQ24Game11ShadowParam = .text:0x8026F654; // type:function size:0x38 scope:global align:4 +damageCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026F68C; // type:function size:0xCC scope:global align:4 +pressCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026F758; // type:function size:0x30 scope:global align:4 +hipdropCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026F788; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8026F7B8; // type:function size:0x34 scope:global align:4 +doGetLifeGaugeParam__Q34Game8ElecHiba3ObjFRQ24Game14LifeGaugeParam = .text:0x8026F7EC; // type:function size:0x100 scope:global align:4 +injure__Q34Game8ElecHiba3ObjFv = .text:0x8026F8EC; // type:function size:0x4C scope:global align:4 +getChildObjPtr__Q34Game8ElecHiba3ObjFv = .text:0x8026F938; // type:function size:0x1C scope:global align:4 +setElecHibaPosition__Q34Game8ElecHiba3ObjFPQ34Game8ElecHiba12InitialParamf = .text:0x8026F954; // type:function size:0x170 scope:global align:4 +interactDenkiAttack__Q34Game8ElecHiba3ObjFR10Vector3 = .text:0x8026FAC4; // type:function size:0x5C8 scope:global align:4 +addDamageMyself__Q34Game8ElecHiba3ObjFf = .text:0x8027008C; // type:function size:0x4C scope:global align:4 +damageIncrement__Q34Game8ElecHiba3ObjFf = .text:0x802700D8; // type:function size:0x2C scope:global align:4 +setupLodParms__Q34Game8ElecHiba3ObjFv = .text:0x80270104; // type:function size:0x24 scope:global align:4 +updateEfxLod__Q34Game8ElecHiba3ObjFv = .text:0x80270128; // type:function size:0x38 scope:global align:4 +createEffect__Q34Game8ElecHiba3ObjFb = .text:0x80270160; // type:function size:0xDC scope:global align:4 +__dt__Q23efx14TDenkipoleSignFv = .text:0x8027023C; // type:function size:0x9C scope:weak align:4 +__ct__Q23efx14TDenkipoleSignFv = .text:0x802702D8; // type:function size:0x6C scope:weak align:4 +__dt__Q23efx10TDenkiPoleFv = .text:0x80270344; // type:function size:0x90 scope:weak align:4 +__ct__Q23efx10TDenkiPoleFv = .text:0x802703D4; // type:function size:0x44 scope:weak align:4 +startChargeEffect__Q34Game8ElecHiba3ObjFPQ24Game8Creature = .text:0x80270418; // type:function size:0x110 scope:global align:4 +finishChargeEffect__Q34Game8ElecHiba3ObjFv = .text:0x80270528; // type:function size:0x38 scope:global align:4 +startDisChargeEffect__Q34Game8ElecHiba3ObjFv = .text:0x80270560; // type:function size:0x70 scope:global align:4 +finishDisChargeEffect__Q34Game8ElecHiba3ObjFv = .text:0x802705D0; // type:function size:0x38 scope:global align:4 +generatorKill__Q34Game8ElecHiba3ObjFv = .text:0x80270608; // type:function size:0x44 scope:global align:4 +setVersusHibaOnOff__Q34Game8ElecHiba3ObjFv = .text:0x8027064C; // type:function size:0x6C scope:global align:4 +setVersusHibaType__Q34Game8ElecHiba3ObjFv = .text:0x802706B8; // type:function size:0x2C scope:global align:4 +resetAttrHitCount__Q34Game8ElecHiba3ObjFv = .text:0x802706E4; // type:function size:0x10 scope:global align:4 +addAttrAttackCount__Q34Game8ElecHiba3ObjFPQ24Game4Piki = .text:0x802706F4; // type:function size:0x70 scope:global align:4 +isWaitFinish__Q34Game8ElecHiba3ObjFv = .text:0x80270764; // type:function size:0x40 scope:global align:4 +isAttackFinish__Q34Game8ElecHiba3ObjFv = .text:0x802707A4; // type:function size:0x58 scope:global align:4 +getName__Q23efx12ArgDenkiHibaFv = .text:0x802707FC; // type:function size:0xC scope:weak align:4 +doSimulation__Q34Game8ElecHiba3ObjFf = .text:0x80270808; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game8ElecHiba3ObjFPQ24Game8WaterBox = .text:0x8027080C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game8ElecHiba3ObjFv = .text:0x80270810; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game8ElecHiba3ObjFv = .text:0x80270814; // type:function size:0x8 scope:weak align:4 +lifeRecover__Q34Game8ElecHiba3ObjFv = .text:0x8027081C; // type:function size:0x4 scope:weak align:4 +@772@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80270820; // type:function size:0x14 scope:weak align:4 +@772@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80270834; // type:function size:0x14 scope:weak align:4 +@772@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80270848; // type:function size:0x14 scope:weak align:4 +@772@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8027085C; // type:function size:0x14 scope:weak align:4 +@772@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80270870; // type:function size:0x14 scope:weak align:4 +@772@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80270884; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14TDenkipoleSignFv = .text:0x80270898; // type:function size:0x8 scope:weak align:4 +init__Q34Game5Sarai3FSMFPQ24Game9EnemyBase = .text:0x802708A0; // type:function size:0x3D0 scope:global align:4 +init__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80270C70; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBase = .text:0x80270CE0; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBase = .text:0x80270D24; // type:function size:0x4 scope:global align:4 +init__Q34Game5Sarai9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80270D28; // type:function size:0x68 scope:global align:4 +exec__Q34Game5Sarai9StateFallFPQ24Game9EnemyBase = .text:0x80270D90; // type:function size:0x1B8 scope:global align:4 +cleanup__Q34Game5Sarai9StateFallFPQ24Game9EnemyBase = .text:0x80270F48; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80270F6C; // type:function size:0x68 scope:global align:4 +exec__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBase = .text:0x80270FD4; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBase = .text:0x802710DC; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271100; // type:function size:0x4C scope:global align:4 +exec__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBase = .text:0x8027114C; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBase = .text:0x80271254; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271278; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBase = .text:0x802712D0; // type:function size:0x118 scope:global align:4 +cleanup__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBase = .text:0x802713E8; // type:function size:0x30 scope:global align:4 +init__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271418; // type:function size:0xB0 scope:global align:4 +exec__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBase = .text:0x802714C8; // type:function size:0x160 scope:global align:4 +cleanup__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBase = .text:0x80271628; // type:function size:0x4 scope:global align:4 +init__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027162C; // type:function size:0x5C scope:global align:4 +exec__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBase = .text:0x80271688; // type:function size:0x208 scope:global align:4 +cleanup__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBase = .text:0x80271890; // type:function size:0x4 scope:global align:4 +init__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271894; // type:function size:0x78 scope:global align:4 +exec__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBase = .text:0x8027190C; // type:function size:0x614 scope:global align:4 +cleanup__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBase = .text:0x80271F20; // type:function size:0x44 scope:global align:4 +init__Q34Game5Sarai9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271F64; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Sarai9StateFailFPQ24Game9EnemyBase = .text:0x80271FBC; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game5Sarai9StateFailFPQ24Game9EnemyBase = .text:0x80272094; // type:function size:0x30 scope:global align:4 +init__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802720C4; // type:function size:0x64 scope:global align:4 +exec__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBase = .text:0x80272128; // type:function size:0x1C0 scope:global align:4 +cleanup__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBase = .text:0x802722E8; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027230C; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBase = .text:0x8027237C; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBase = .text:0x80272438; // type:function size:0x54 scope:global align:4 +resetAttackableTimer__Q34Game5Sarai3ObjFf = .text:0x8027248C; // type:function size:0x4 scope:weak align:4 +setAnimMgr__Q34Game5Sarai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80272490; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game5Sarai14ProperAnimatorFi = .text:0x80272498; // type:function size:0x8 scope:global align:4 +__dt__Q34Game5Sarai14ProperAnimatorFv = .text:0x802724A0; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game5Sarai14ProperAnimatorFv = .text:0x802724FC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Sarai3MgrFiUc = .text:0x80272504; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Sarai3MgrFv = .text:0x80272554; // type:function size:0x48 scope:global align:4 +__ct__Q34Game5Sarai5ParmsFv = .text:0x8027259C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game5Sarai5Parms11ProperParmsFv = .text:0x802725E4; // type:function size:0x3A4 scope:weak align:4 +createObj__Q34Game5Sarai3MgrFi = .text:0x80272988; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Sarai3ObjFv = .text:0x802729E8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game5Sarai3MgrFi = .text:0x80272AA4; // type:function size:0x10 scope:global align:4 +read__Q34Game5Sarai5ParmsFR6Stream = .text:0x80272AB4; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game5Sarai3MgrFv = .text:0x80272B04; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Sarai3MgrFv = .text:0x80272BB4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game5Sarai3MgrFv = .text:0x80272BBC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Sarai3ObjFv = .text:0x80272BC4; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game5Sarai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80272CFC; // type:function size:0x4 scope:global align:4 +onInit__Q34Game5Sarai3ObjFPQ24Game15CreatureInitArg = .text:0x80272D00; // type:function size:0x78 scope:global align:4 +doUpdate__Q34Game5Sarai3ObjFv = .text:0x80272D78; // type:function size:0x48 scope:global align:4 +setFSM__Q34Game5Sarai3ObjFPQ34Game5Sarai3FSM = .text:0x80272DC0; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game5Sarai3ObjFR8Graphics = .text:0x80272E0C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game5Sarai3ObjFR8Graphics = .text:0x80272E10; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game5Sarai3ObjFRQ24Game11ShadowParam = .text:0x80272E30; // type:function size:0x140 scope:global align:4 +doStartStoneState__Q34Game5Sarai3ObjFv = .text:0x80272F70; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game5Sarai3ObjFv = .text:0x80272FA4; // type:function size:0x5C scope:global align:4 +startCarcassMotion__Q34Game5Sarai3ObjFv = .text:0x80273000; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game5Sarai3ObjFv = .text:0x80273028; // type:function size:0xA8 scope:global align:4 +setHeightVelocity__Q34Game5Sarai3ObjFv = .text:0x802730D0; // type:function size:0x108 scope:global align:4 +setRandTarget__Q34Game5Sarai3ObjFv = .text:0x802731D8; // type:function size:0x230 scope:global align:4 +fallMeckGround__Q34Game5Sarai3ObjFv = .text:0x80273408; // type:function size:0x294 scope:global align:4 +getCatchTargetNum__Q34Game5Sarai3ObjFv = .text:0x8027369C; // type:function size:0x7C scope:global align:4 +getNextStateOnHeight__Q34Game5Sarai3ObjFv = .text:0x80273718; // type:function size:0x144 scope:global align:4 +flickStickTarget__Q34Game5Sarai3ObjFv = .text:0x8027385C; // type:function size:0xB0 scope:global align:4 +getStickPikminNum__Q34Game5Sarai3ObjFv = .text:0x8027390C; // type:function size:0x80 scope:global align:4 +getAttackableTarget__Q34Game5Sarai3ObjFv = .text:0x8027398C; // type:function size:0x3D0 scope:global align:4 +catchTarget__Q34Game5Sarai3ObjFv = .text:0x80273D5C; // type:function size:0x24 scope:global align:4 +createDownEffect__Q34Game5Sarai3ObjFv = .text:0x80273D80; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game5Sarai3ObjFv = .text:0x80273DC4; // type:function size:0x8 scope:weak align:4 +inWaterCallback__Q34Game5Sarai3ObjFPQ24Game8WaterBox = .text:0x80273DCC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game5Sarai3ObjFv = .text:0x80273DD0; // type:function size:0x4 scope:weak align:4 +getMouthSlots__Q34Game5Sarai3ObjFv = .text:0x80273DD4; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game5Sarai3ObjFv = .text:0x80273DDC; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Tank3FSMFPQ24Game9EnemyBase = .text:0x80273DE4; // type:function size:0x280 scope:global align:4 +init__Q34Game4Tank9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80274064; // type:function size:0x70 scope:global align:4 +finishEffect__Q34Game4Tank3ObjFv = .text:0x802740D4; // type:function size:0x4 scope:weak align:4 +exec__Q34Game4Tank9StateDeadFPQ24Game9EnemyBase = .text:0x802740D8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Tank9StateDeadFPQ24Game9EnemyBase = .text:0x8027411C; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tank9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80274120; // type:function size:0x44 scope:global align:4 +exec__Q34Game4Tank9StateWaitFPQ24Game9EnemyBase = .text:0x80274164; // type:function size:0x258 scope:global align:4 +cleanup__Q34Game4Tank9StateWaitFPQ24Game9EnemyBase = .text:0x802743BC; // type:function size:0x28 scope:global align:4 +init__Q34Game4Tank9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802743E4; // type:function size:0x54 scope:global align:4 +exec__Q34Game4Tank9StateMoveFPQ24Game9EnemyBase = .text:0x80274438; // type:function size:0x56C scope:global align:4 +cleanup__Q34Game4Tank9StateMoveFPQ24Game9EnemyBase = .text:0x802749A4; // type:function size:0x28 scope:global align:4 +init__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802749CC; // type:function size:0x104 scope:global align:4 +exec__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBase = .text:0x80274AD0; // type:function size:0x364 scope:global align:4 +cleanup__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBase = .text:0x80274E34; // type:function size:0x28 scope:global align:4 +init__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80274E5C; // type:function size:0x50 scope:global align:4 +exec__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBase = .text:0x80274EAC; // type:function size:0x5F4 scope:global align:4 +cleanup__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBase = .text:0x802754A0; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tank11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802754DC; // type:function size:0x84 scope:global align:4 +createChargeSE__Q34Game4Tank3ObjFv = .text:0x80275560; // type:function size:0x4 scope:weak align:4 +exec__Q34Game4Tank11StateAttackFPQ24Game9EnemyBase = .text:0x80275564; // type:function size:0x1E0 scope:global align:4 +startEffect__Q34Game4Tank3ObjFv = .text:0x80275744; // type:function size:0x4 scope:weak align:4 +createDisChargeSE__Q34Game4Tank3ObjFv = .text:0x80275748; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game4Tank11StateAttackFPQ24Game9EnemyBase = .text:0x8027574C; // type:function size:0x58 scope:global align:4 +startYodare__Q34Game4Tank3ObjFv = .text:0x802757A4; // type:function size:0x4 scope:weak align:4 +init__Q34Game4Tank10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802757A8; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Tank10StateFlickFPQ24Game9EnemyBase = .text:0x80275800; // type:function size:0x180 scope:global align:4 +cleanup__Q34Game4Tank10StateFlickFPQ24Game9EnemyBase = .text:0x80275980; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game4Tank14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802759A4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Tank14ProperAnimatorFi = .text:0x802759AC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Tank14ProperAnimatorFv = .text:0x802759B4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Tank14ProperAnimatorFv = .text:0x80275A10; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tank3MgrFiUc = .text:0x80275A18; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game4Tank3MgrFv = .text:0x80275A68; // type:function size:0x9C scope:global align:4 +loadAnimData__Q34Game4Tank3MgrFv = .text:0x80275B04; // type:function size:0x90 scope:global align:4 +createModel__Q34Game4Tank3MgrFv = .text:0x80275B94; // type:function size:0x138 scope:global align:4 +__dt__Q34Game4Tank3MgrFv = .text:0x80275CCC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Tank3MgrFv = .text:0x80275D7C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Tank3MgrFv = .text:0x80275D84; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tank3ObjFv = .text:0x80275D8C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Tank3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80275EC4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Tank3ObjFPQ24Game15CreatureInitArg = .text:0x80275EC8; // type:function size:0x9C scope:global align:4 +setupEffect__Q34Game4Tank3ObjFv = .text:0x80275F64; // type:function size:0x4 scope:weak align:4 +onKill__Q34Game4Tank3ObjFPQ24Game15CreatureKillArg = .text:0x80275F68; // type:function size:0x50 scope:global align:4 +doUpdate__Q34Game4Tank3ObjFv = .text:0x80275FB8; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game4Tank3ObjFR8Graphics = .text:0x80276004; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Tank3ObjFR8Graphics = .text:0x80276008; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Tank3ObjFPQ34Game4Tank3FSM = .text:0x80276028; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Tank3ObjFRQ24Game11ShadowParam = .text:0x80276074; // type:function size:0x90 scope:global align:4 +doStartStoneState__Q34Game4Tank3ObjFv = .text:0x80276104; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game4Tank3ObjFv = .text:0x80276158; // type:function size:0x4C scope:global align:4 +doStartEarthquakeFitState__Q34Game4Tank3ObjFv = .text:0x802761A4; // type:function size:0x54 scope:global align:4 +doFinishEarthquakeFitState__Q34Game4Tank3ObjFv = .text:0x802761F8; // type:function size:0x4C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game4Tank3ObjFv = .text:0x80276244; // type:function size:0x40 scope:global align:4 +effectDrawOff__Q34Game4Tank3ObjFv = .text:0x80276284; // type:function size:0x4 scope:weak align:4 +doFinishWaitingBirthTypeDrop__Q34Game4Tank3ObjFv = .text:0x80276288; // type:function size:0x40 scope:global align:4 +effectDrawOn__Q34Game4Tank3ObjFv = .text:0x802762C8; // type:function size:0x4 scope:weak align:4 +startCarcassMotion__Q34Game4Tank3ObjFv = .text:0x802762CC; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game4Tank3ObjFv = .text:0x802762F4; // type:function size:0x2C scope:global align:4 +doEndMovie__Q34Game4Tank3ObjFv = .text:0x80276320; // type:function size:0x2C scope:global align:4 +getOffsetForMapCollision__Q34Game4Tank3ObjFv = .text:0x8027634C; // type:function size:0xC4 scope:global align:4 +initWalkSmokeEffect__Q34Game4Tank3ObjFv = .text:0x80276410; // type:function size:0x94 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game4Tank3ObjFv = .text:0x802764A4; // type:function size:0x8 scope:global align:4 +getCommonEffectPos__Q34Game4Tank3ObjFR10Vector3 = .text:0x802764AC; // type:function size:0x54 scope:global align:4 +isAttackable__Q34Game4Tank3ObjFb = .text:0x80276500; // type:function size:0x338 scope:global align:4 +interactCreature__Q34Game4Tank3ObjFPQ24Game8Creature = .text:0x80276838; // type:function size:0x4 scope:weak align:4 +emitCollideRatio__Q34Game4Tank3ObjFR10Vector3R10Vector3f = .text:0x8027683C; // type:function size:0x228 scope:global align:4 +stopEffectRadius__Q34Game4Tank3ObjFf = .text:0x80276A64; // type:function size:0x4 scope:weak align:4 +updateEmit__Q34Game4Tank3ObjFv = .text:0x80276A68; // type:function size:0x130 scope:global align:4 +updateCaution__Q34Game4Tank3ObjFv = .text:0x80276B98; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game4Tank3ObjFv = .text:0x80276BE8; // type:function size:0x24 scope:global align:4 +__dt__Q34Game4Tank3ObjFv = .text:0x80276C0C; // type:function size:0xBC scope:weak align:4 +getDownSmokeScale__Q34Game4Tank3ObjFv = .text:0x80276CC8; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Tank3ObjFv = .text:0x80276CD0; // type:function size:0x8 scope:weak align:4 +createEffect__Q34Game4Tank3ObjFv = .text:0x80276CD8; // type:function size:0x4 scope:weak align:4 +@776@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80276CDC; // type:function size:0x14 scope:weak align:4 +@776@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80276CF0; // type:function size:0x14 scope:weak align:4 +@776@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80276D04; // type:function size:0x14 scope:weak align:4 +@776@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80276D18; // type:function size:0x14 scope:weak align:4 +@776@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80276D2C; // type:function size:0x14 scope:weak align:4 +@776@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80276D40; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game7Catfish3MgrFiUc = .text:0x80276D54; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Catfish3MgrFv = .text:0x80276DA4; // type:function size:0x48 scope:global align:4 +createObj__Q34Game7Catfish3MgrFi = .text:0x80276DEC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Catfish3ObjFv = .text:0x80276E4C; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game7Catfish3MgrFi = .text:0x80276F38; // type:function size:0x10 scope:global align:4 +__dt__Q34Game7Catfish3MgrFv = .text:0x80276F48; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Catfish3MgrFv = .text:0x80276FF8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Catfish3MgrFv = .text:0x80277000; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Catfish3ObjFv = .text:0x80277008; // type:function size:0x90 scope:global align:4 +onInit__Q34Game7Catfish3ObjFPQ24Game15CreatureInitArg = .text:0x80277098; // type:function size:0x3C scope:global align:4 +getShadowParam__Q34Game7Catfish3ObjFRQ24Game11ShadowParam = .text:0x802770D4; // type:function size:0xC0 scope:global align:4 +pressCallBack__Q34Game7Catfish3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80277194; // type:function size:0x28 scope:global align:4 +hipdropCallBack__Q34Game7Catfish3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802771BC; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game7Catfish3ObjFv = .text:0x802771DC; // type:function size:0xA0 scope:global align:4 +resetEnemyNonStone__Q34Game7Catfish3ObjFv = .text:0x8027727C; // type:function size:0x44 scope:global align:4 +createDownEffect__Q34Game7Catfish3ObjFv = .text:0x802772C0; // type:function size:0x28 scope:global align:4 +changeMaterial__Q34Game7Catfish3ObjFv = .text:0x802772E8; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game7Catfish3ObjFPQ24Game8WaterBox = .text:0x802772EC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Catfish3ObjFv = .text:0x802772F0; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Catfish3ObjFv = .text:0x802772F4; // type:function size:0x8 scope:weak align:4 +setEnemyNonStone__Q34Game7Catfish3ObjFv = .text:0x802772FC; // type:function size:0x10 scope:weak align:4 +init__Q34Game7Tadpole3FSMFPQ24Game9EnemyBase = .text:0x8027730C; // type:function size:0x224 scope:global align:4 +init__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277530; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBase = .text:0x8027758C; // type:function size:0x58 scope:global align:4 +cleanup__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBase = .text:0x802775E4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802775E8; // type:function size:0x48 scope:global align:4 +exec__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBase = .text:0x80277630; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBase = .text:0x8027778C; // type:function size:0x4 scope:global align:4 +init__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277790; // type:function size:0x54 scope:global align:4 +exec__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBase = .text:0x802777E4; // type:function size:0x210 scope:global align:4 +cleanup__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBase = .text:0x802779F4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802779F8; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBase = .text:0x80277A54; // type:function size:0xB4 scope:global align:4 +cleanup__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBase = .text:0x80277B08; // type:function size:0x30 scope:global align:4 +init__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277B38; // type:function size:0x40 scope:global align:4 +exec__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBase = .text:0x80277B78; // type:function size:0x168 scope:global align:4 +cleanup__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBase = .text:0x80277CE0; // type:function size:0x24 scope:global align:4 +init__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277D04; // type:function size:0xE0 scope:global align:4 +exec__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBase = .text:0x80277DE4; // type:function size:0x3FC scope:global align:4 +cleanup__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBase = .text:0x802781E0; // type:function size:0x10 scope:global align:4 +setAnimMgr__Q34Game7Tadpole14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802781F0; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Tadpole14ProperAnimatorFi = .text:0x802781F8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Tadpole14ProperAnimatorFv = .text:0x80278200; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Tadpole14ProperAnimatorFv = .text:0x8027825C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Tadpole3MgrFiUc = .text:0x80278264; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Tadpole3MgrFv = .text:0x802782B4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Tadpole5ParmsFv = .text:0x802782FC; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game7Tadpole3MgrFi = .text:0x80278394; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Tadpole3ObjFv = .text:0x802783F4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Tadpole3MgrFi = .text:0x802784B0; // type:function size:0x10 scope:global align:4 +read__Q34Game7Tadpole5ParmsFR6Stream = .text:0x802784C0; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Tadpole3MgrFv = .text:0x80278510; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Tadpole3MgrFv = .text:0x802785C0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Tadpole3MgrFv = .text:0x802785C8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Tadpole3ObjFv = .text:0x802785D0; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game7Tadpole3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80278700; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7Tadpole3ObjFPQ24Game15CreatureInitArg = .text:0x80278704; // type:function size:0x64 scope:global align:4 +doUpdate__Q34Game7Tadpole3ObjFv = .text:0x80278768; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game7Tadpole3ObjFR8Graphics = .text:0x8027879C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Tadpole3ObjFR8Graphics = .text:0x802787A0; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7Tadpole3ObjFPQ34Game7Tadpole3FSM = .text:0x802787C0; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7Tadpole3ObjFRQ24Game11ShadowParam = .text:0x8027880C; // type:function size:0xB0 scope:global align:4 +hipdropCallBack__Q34Game7Tadpole3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802788BC; // type:function size:0x68 scope:global align:4 +startCarcassMotion__Q34Game7Tadpole3ObjFv = .text:0x80278924; // type:function size:0x28 scope:global align:4 +setRandTarget__Q34Game7Tadpole3ObjFb = .text:0x8027894C; // type:function size:0x1E4 scope:global align:4 +getTargetPosition__Q34Game7Tadpole3ObjFPQ24Game8Creature = .text:0x80278B30; // type:function size:0x1C8 scope:global align:4 +createLeapEffect__Q34Game7Tadpole3ObjFv = .text:0x80278CF8; // type:function size:0x188 scope:global align:4 +inWaterCallback__Q34Game7Tadpole3ObjFPQ24Game8WaterBox = .text:0x80278E80; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Tadpole3ObjFv = .text:0x80278E84; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Tadpole3ObjFv = .text:0x80278E88; // type:function size:0x8 scope:weak align:4 +init__Q34Game7ElecBug3FSMFPQ24Game9EnemyBase = .text:0x80278E90; // type:function size:0x384 scope:global align:4 +init__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279214; // type:function size:0x5C scope:global align:4 +exec__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBase = .text:0x80279270; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBase = .text:0x802792B4; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802792B8; // type:function size:0x4C scope:global align:4 +exec__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBase = .text:0x80279304; // type:function size:0xA0 scope:global align:4 +cleanup__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBase = .text:0x802793A4; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802793A8; // type:function size:0x5C scope:global align:4 +exec__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBase = .text:0x80279404; // type:function size:0x200 scope:global align:4 +cleanup__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBase = .text:0x80279604; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279608; // type:function size:0x3C scope:global align:4 +exec__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBase = .text:0x80279644; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBase = .text:0x80279780; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279784; // type:function size:0x7C scope:global align:4 +exec__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBase = .text:0x80279800; // type:function size:0x554 scope:global align:4 +isDone__Q24Game34EnemyIteratorFv = .text:0x80279D54; // type:function size:0x4C scope:weak align:4 +cleanup__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBase = .text:0x80279DA0; // type:function size:0x64 scope:global align:4 +init__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279E04; // type:function size:0x60 scope:global align:4 +exec__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBase = .text:0x80279E64; // type:function size:0xE8 scope:global align:4 +cleanup__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBase = .text:0x80279F4C; // type:function size:0x6C scope:global align:4 +init__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279FB8; // type:function size:0x6C scope:global align:4 +exec__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBase = .text:0x8027A024; // type:function size:0x228 scope:global align:4 +cleanup__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBase = .text:0x8027A24C; // type:function size:0x64 scope:global align:4 +init__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027A2B0; // type:function size:0x60 scope:global align:4 +exec__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBase = .text:0x8027A310; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBase = .text:0x8027A3D0; // type:function size:0x6C scope:global align:4 +init__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027A43C; // type:function size:0x70 scope:global align:4 +exec__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBase = .text:0x8027A4AC; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBase = .text:0x8027A584; // type:function size:0x10 scope:global align:4 +init__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027A594; // type:function size:0x48 scope:global align:4 +exec__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBase = .text:0x8027A5DC; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBase = .text:0x8027A62C; // type:function size:0x4 scope:global align:4 +__ml__Q24Game34EnemyIteratorFv = .text:0x8027A630; // type:function size:0x38 scope:weak align:4 +next__Q24Game34EnemyIteratorFv = .text:0x8027A668; // type:function size:0xE4 scope:weak align:4 +first__Q24Game34EnemyIteratorFv = .text:0x8027A74C; // type:function size:0xDC scope:weak align:4 +setAnimMgr__Q34Game7ElecBug14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8027A828; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7ElecBug14ProperAnimatorFi = .text:0x8027A830; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7ElecBug14ProperAnimatorFv = .text:0x8027A838; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7ElecBug14ProperAnimatorFv = .text:0x8027A894; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7ElecBug3MgrFiUc = .text:0x8027A89C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7ElecBug3MgrFv = .text:0x8027A8EC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7ElecBug5ParmsFv = .text:0x8027A934; // type:function size:0x118 scope:weak align:4 +createObj__Q34Game7ElecBug3MgrFi = .text:0x8027AA4C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7ElecBug3ObjFv = .text:0x8027AAAC; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7ElecBug3MgrFi = .text:0x8027AB68; // type:function size:0x10 scope:global align:4 +read__Q34Game7ElecBug5ParmsFR6Stream = .text:0x8027AB78; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7ElecBug3MgrFv = .text:0x8027ABC8; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7ElecBug3MgrFv = .text:0x8027AC78; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7ElecBug3MgrFv = .text:0x8027AC80; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7ElecBug3ObjFv = .text:0x8027AC88; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game7ElecBug3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8027ADC0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7ElecBug3ObjFPQ24Game15CreatureInitArg = .text:0x8027ADC4; // type:function size:0xA4 scope:global align:4 +onKill__Q34Game7ElecBug3ObjFPQ24Game15CreatureKillArg = .text:0x8027AE68; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game7ElecBug3ObjFv = .text:0x8027AEAC; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game7ElecBug3ObjFR8Graphics = .text:0x8027AEF4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7ElecBug3ObjFR8Graphics = .text:0x8027AEF8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3FSM = .text:0x8027AF18; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7ElecBug3ObjFRQ24Game11ShadowParam = .text:0x8027AF64; // type:function size:0x80 scope:global align:4 +collisionCallback__Q34Game7ElecBug3ObjFRQ24Game9CollEvent = .text:0x8027AFE4; // type:function size:0x1E4 scope:global align:4 +pressCallBack__Q34Game7ElecBug3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027B1C8; // type:function size:0x1BC scope:global align:4 +hipdropCallBack__Q34Game7ElecBug3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027B384; // type:function size:0x2C scope:global align:4 +earthquakeCallBack__Q34Game7ElecBug3ObjFPQ24Game8Creaturef = .text:0x8027B3B0; // type:function size:0xC0 scope:global align:4 +doStartStoneState__Q34Game7ElecBug3ObjFv = .text:0x8027B470; // type:function size:0x40 scope:global align:4 +doFinishStoneState__Q34Game7ElecBug3ObjFv = .text:0x8027B4B0; // type:function size:0x40 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game7ElecBug3ObjFv = .text:0x8027B4F0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game7ElecBug3ObjFv = .text:0x8027B524; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game7ElecBug3ObjFv = .text:0x8027B558; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game7ElecBug3ObjFv = .text:0x8027B580; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7ElecBug3ObjFv = .text:0x8027B5A0; // type:function size:0x20 scope:global align:4 +setTargetPosition__Q34Game7ElecBug3ObjFv = .text:0x8027B5C0; // type:function size:0x1A4 scope:global align:4 +resetPartnerPtr__Q34Game7ElecBug3ObjFv = .text:0x8027B764; // type:function size:0x1C scope:global align:4 +isBecomeChargeState__Q34Game7ElecBug3ObjFv = .text:0x8027B780; // type:function size:0x70 scope:global align:4 +startChargeState__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027B7F0; // type:function size:0x30 scope:global align:4 +startChildChargeState__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027B820; // type:function size:0x44 scope:global align:4 +createEffect__Q34Game7ElecBug3ObjFv = .text:0x8027B864; // type:function size:0x44 scope:global align:4 +__ct__Q23efx12TDnkmsEffectFv = .text:0x8027B8A8; // type:function size:0x168 scope:weak align:4 +__dt__Q23efx14TDnkmsThunderBFv = .text:0x8027BA10; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx14TDnkmsThunderAFv = .text:0x8027BA94; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx13TDnkmsHoudenBFv = .text:0x8027BB18; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TDnkmsHoudenAFv = .text:0x8027BBB4; // type:function size:0x9C scope:weak align:4 +setupEffect__Q34Game7ElecBug3ObjFv = .text:0x8027BC50; // type:function size:0x10 scope:global align:4 +startChargeEffect__Q34Game7ElecBug3ObjFv = .text:0x8027BC60; // type:function size:0x40 scope:global align:4 +startDischargeEffect__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027BCA0; // type:function size:0xC0 scope:global align:4 +finishPartnerAndEffect__Q34Game7ElecBug3ObjFv = .text:0x8027BD60; // type:function size:0xA4 scope:global align:4 +effectDrawOn__Q34Game7ElecBug3ObjFv = .text:0x8027BE04; // type:function size:0x8C scope:global align:4 +effectDrawOff__Q34Game7ElecBug3ObjFv = .text:0x8027BE90; // type:function size:0x8C scope:global align:4 +checkInteract__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027BF1C; // type:function size:0x4D0 scope:global align:4 +getDownSmokeScale__Q34Game7ElecBug3ObjFv = .text:0x8027C3EC; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game7ElecBug3ObjFv = .text:0x8027C3F4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TDnkmsHoudenAFv = .text:0x8027C3FC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TDnkmsHoudenBFv = .text:0x8027C404; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Wtank3MgrFiUc = .text:0x8027C40C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Wtank3MgrFv = .text:0x8027C45C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Tank5ParmsFv = .text:0x8027C4A4; // type:function size:0x58 scope:weak align:4 +createObj__Q34Game5Wtank3MgrFi = .text:0x8027C4FC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Wtank3ObjFv = .text:0x8027C55C; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game5Wtank3MgrFi = .text:0x8027C64C; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game5Wtank3MgrFv = .text:0x8027C65C; // type:function size:0x80 scope:global align:4 +__dt__Q34Game5Wtank3MgrFv = .text:0x8027C6DC; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game5Wtank3MgrFv = .text:0x8027C7A4; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game5Wtank3MgrFv = .text:0x8027C7AC; // type:function size:0x8 scope:weak align:4 +read__Q34Game4Tank5ParmsFR6Stream = .text:0x8027C7B4; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game5Wtank3MgrFv = .text:0x8027C804; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Wtank3ObjFv = .text:0x8027C80C; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game5Wtank3ObjFv = .text:0x8027C8B0; // type:function size:0x1A4 scope:global align:4 +createEffect__Q34Game5Wtank3ObjFv = .text:0x8027CA54; // type:function size:0x19C scope:global align:4 +__dt__Q23efx14TTankWatYodareFv = .text:0x8027CBF0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TTankWatHitFv = .text:0x8027CC8C; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx17TOneEmitterSimpleFv = .text:0x8027CD10; // type:function size:0x6C scope:weak align:4 +__dt__Q23efx26TParticleCallBack_TankFireFv = .text:0x8027CD7C; // type:function size:0x60 scope:weak align:4 +setupEffect__Q34Game5Wtank3ObjFv = .text:0x8027CDDC; // type:function size:0x50 scope:global align:4 +startEffect__Q34Game5Wtank3ObjFv = .text:0x8027CE2C; // type:function size:0x34 scope:global align:4 +startYodare__Q34Game5Wtank3ObjFv = .text:0x8027CE60; // type:function size:0x54 scope:global align:4 +fade__Q23efx8TTankWatFv = .text:0x8027CEB4; // type:function size:0x48 scope:weak align:4 +fade__Q23efx17TOneEmitterSimpleFv = .text:0x8027CEFC; // type:function size:0x44 scope:weak align:4 +finishEffect__Q34Game5Wtank3ObjFv = .text:0x8027CF40; // type:function size:0x50 scope:global align:4 +effectDrawOn__Q34Game5Wtank3ObjFv = .text:0x8027CF90; // type:function size:0x50 scope:global align:4 +endDemoDrawOn__Q23efx8TTankWatFv = .text:0x8027CFE0; // type:function size:0x40 scope:weak align:4 +endDemoDrawOn__Q23efx17TOneEmitterSimpleFv = .text:0x8027D020; // type:function size:0x1C scope:weak align:4 +effectDrawOff__Q34Game5Wtank3ObjFv = .text:0x8027D03C; // type:function size:0x50 scope:global align:4 +startDemoDrawOff__Q23efx8TTankWatFv = .text:0x8027D08C; // type:function size:0x40 scope:weak align:4 +startDemoDrawOff__Q23efx17TOneEmitterSimpleFv = .text:0x8027D0CC; // type:function size:0x1C scope:weak align:4 +interactCreature__Q34Game5Wtank3ObjFPQ24Game8Creature = .text:0x8027D0E8; // type:function size:0x60 scope:global align:4 +stopEffectRadius__Q34Game5Wtank3ObjFf = .text:0x8027D148; // type:function size:0xC scope:global align:4 +createChargeSE__Q34Game5Wtank3ObjFv = .text:0x8027D154; // type:function size:0x44 scope:global align:4 +createDisChargeSE__Q34Game5Wtank3ObjFv = .text:0x8027D198; // type:function size:0x44 scope:global align:4 +forceKill__Q23efx17TOneEmitterSimpleFv = .text:0x8027D1DC; // type:function size:0x44 scope:weak align:4 +getEnemyTypeID__Q34Game5Wtank3ObjFv = .text:0x8027D220; // type:function size:0x8 scope:weak align:4 +@780@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8027D228; // type:function size:0x14 scope:weak align:4 +@780@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8027D23C; // type:function size:0x14 scope:weak align:4 +@780@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8027D250; // type:function size:0x14 scope:weak align:4 +@780@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8027D264; // type:function size:0x14 scope:weak align:4 +@780@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8027D278; // type:function size:0x14 scope:weak align:4 +@780@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8027D28C; // type:function size:0x14 scope:weak align:4 +@4@executeAfter__Q23efx17TOneEmitterSimpleFP14JPABaseEmitter = .text:0x8027D2A0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TTankWatHitFv = .text:0x8027D2A8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TTankWatYodareFv = .text:0x8027D2B0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Armor3MgrFiUc = .text:0x8027D2B8; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Armor3MgrFv = .text:0x8027D308; // type:function size:0x48 scope:global align:4 +__ct__Q34Game5Armor5ParmsFv = .text:0x8027D350; // type:function size:0x110 scope:weak align:4 +createObj__Q34Game5Armor3MgrFi = .text:0x8027D460; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Armor3ObjFv = .text:0x8027D4C0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game5Armor3MgrFi = .text:0x8027D57C; // type:function size:0x10 scope:global align:4 +read__Q34Game5Armor5ParmsFR6Stream = .text:0x8027D58C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game5Armor3MgrFv = .text:0x8027D5DC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Armor3MgrFv = .text:0x8027D68C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game5Armor3MgrFv = .text:0x8027D694; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Armor3ObjFv = .text:0x8027D69C; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game5Armor3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8027D7DC; // type:function size:0x4 scope:global align:4 +onInit__Q34Game5Armor3ObjFPQ24Game15CreatureInitArg = .text:0x8027D7E0; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game5Armor3ObjFv = .text:0x8027D878; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game5Armor3ObjFR8Graphics = .text:0x8027D8C0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game5Armor3ObjFR8Graphics = .text:0x8027D8C4; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game5Armor3ObjFPQ34Game5Armor3FSM = .text:0x8027D8E4; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game5Armor3ObjFRQ24Game11ShadowParam = .text:0x8027D930; // type:function size:0xEC scope:global align:4 +damageCallBack__Q34Game5Armor3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027DA1C; // type:function size:0x94 scope:global align:4 +hipdropCallBack__Q34Game5Armor3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027DAB0; // type:function size:0x68 scope:global align:4 +doStartStoneState__Q34Game5Armor3ObjFv = .text:0x8027DB18; // type:function size:0x260 scope:global align:4 +doFinishStoneState__Q34Game5Armor3ObjFv = .text:0x8027DD78; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game5Armor3ObjFv = .text:0x8027DDAC; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game5Armor3ObjFv = .text:0x8027DDD4; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game5Armor3ObjFv = .text:0x8027DDF4; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game5Armor3ObjFv = .text:0x8027DE14; // type:function size:0x8C scope:global align:4 +lifeIncrement__Q34Game5Armor3ObjFv = .text:0x8027DEA0; // type:function size:0x30 scope:global align:4 +attackPikmin__Q34Game5Armor3ObjFv = .text:0x8027DED0; // type:function size:0x3EC scope:global align:4 +getSlotPikiNum__Q34Game5Armor3ObjFv = .text:0x8027E2BC; // type:function size:0x8C scope:global align:4 +getMouthSlots__Q34Game5Armor3ObjFv = .text:0x8027E348; // type:function size:0x8 scope:weak align:4 +killSlotPiki__Q34Game5Armor3ObjFv = .text:0x8027E350; // type:function size:0x2C scope:global align:4 +resetBridgeSearch__Q34Game5Armor3ObjFv = .text:0x8027E37C; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game5Armor3ObjFv = .text:0x8027E39C; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game5Armor3ObjFv = .text:0x8027E3E4; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game5Armor3ObjFv = .text:0x8027E6A4; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game5Armor3ObjFv = .text:0x8027E6A8; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game5Armor3ObjFv = .text:0x8027E85C; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game5Armor3ObjFv = .text:0x8027E884; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game5Armor3ObjFv = .text:0x8027EB2C; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game5Armor3ObjFv = .text:0x8027EDB4; // type:function size:0x31C scope:global align:4 +breakTargetBridge__Q34Game5Armor3ObjFv = .text:0x8027F0D0; // type:function size:0x5C scope:global align:4 +createEffect__Q34Game5Armor3ObjFv = .text:0x8027F12C; // type:function size:0xB0 scope:global align:4 +setupEffect__Q34Game5Armor3ObjFv = .text:0x8027F1DC; // type:function size:0x40 scope:global align:4 +createAttackEffect__Q34Game5Armor3ObjFv = .text:0x8027F21C; // type:function size:0x34 scope:global align:4 +createAppearEffect__Q34Game5Armor3ObjFv = .text:0x8027F250; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game5Armor3ObjFv = .text:0x8027F2DC; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game5Armor3ObjFv = .text:0x8027F368; // type:function size:0x90 scope:global align:4 +effectDrawOn__Q34Game5Armor3ObjFv = .text:0x8027F3F8; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game5Armor3ObjFv = .text:0x8027F428; // type:function size:0x30 scope:global align:4 +__dt__Q23efx12TYoroiAttackFv = .text:0x8027F458; // type:function size:0x9C scope:weak align:4 +getDownSmokeScale__Q34Game5Armor3ObjFv = .text:0x8027F4F4; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game5Armor3ObjFv = .text:0x8027F4FC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TYoroiAttackFv = .text:0x8027F504; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Mar3ObjFv = .text:0x8027F50C; // type:function size:0x15C scope:global align:4 +setInitialSetting__Q34Game3Mar3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8027F668; // type:function size:0x4 scope:global align:4 +onInit__Q34Game3Mar3ObjFPQ24Game15CreatureInitArg = .text:0x8027F66C; // type:function size:0xEC scope:global align:4 +onKill__Q34Game3Mar3ObjFPQ24Game15CreatureKillArg = .text:0x8027F758; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game3Mar3ObjFv = .text:0x8027F79C; // type:function size:0x50 scope:global align:4 +changeMaterial__Q34Game3Mar3ObjFv = .text:0x8027F7EC; // type:function size:0xD4 scope:global align:4 +setFSM__Q34Game3Mar3ObjFPQ34Game3Mar3FSM = .text:0x8027F8C0; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game3Mar3ObjFR8Graphics = .text:0x8027F90C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game3Mar3ObjFR8Graphics = .text:0x8027F910; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game3Mar3ObjFRQ24Game11ShadowParam = .text:0x8027F930; // type:function size:0xD0 scope:global align:4 +doStartStoneState__Q34Game3Mar3ObjFv = .text:0x8027FA00; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game3Mar3ObjFv = .text:0x8027FA3C; // type:function size:0x74 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game3Mar3ObjFv = .text:0x8027FAB0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game3Mar3ObjFv = .text:0x8027FAE4; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game3Mar3ObjFv = .text:0x8027FB18; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game3Mar3ObjFv = .text:0x8027FB38; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game3Mar3ObjFv = .text:0x8027FB58; // type:function size:0x64 scope:global align:4 +getThrowupItemPosition__Q34Game3Mar3ObjFP10Vector3 = .text:0x8027FBBC; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game3Mar3ObjFP10Vector3 = .text:0x8027FC0C; // type:function size:0x40 scope:global align:4 +getHeadJointPos__Q34Game3Mar3ObjFv = .text:0x8027FC4C; // type:function size:0x50 scope:global align:4 +setHeightVelocity__Q34Game3Mar3ObjFv = .text:0x8027FC9C; // type:function size:0x11C scope:global align:4 +setRandTarget__Q34Game3Mar3ObjFv = .text:0x8027FDB8; // type:function size:0x1D8 scope:global align:4 +resetShadowOffset__Q34Game3Mar3ObjFv = .text:0x8027FF90; // type:function size:0xC scope:global align:4 +setShadowOffsetMax__Q34Game3Mar3ObjFv = .text:0x8027FF9C; // type:function size:0xC scope:global align:4 +addShadowOffset__Q34Game3Mar3ObjFv = .text:0x8027FFA8; // type:function size:0x28 scope:global align:4 +subShadowOffset__Q34Game3Mar3ObjFv = .text:0x8027FFD0; // type:function size:0x28 scope:global align:4 +resetShadowRadius__Q34Game3Mar3ObjFv = .text:0x8027FFF8; // type:function size:0xC scope:global align:4 +subShadowRadius__Q34Game3Mar3ObjFv = .text:0x80280004; // type:function size:0x30 scope:global align:4 +updateFallTimer__Q34Game3Mar3ObjFv = .text:0x80280034; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game3Mar3ObjFv = .text:0x80280064; // type:function size:0xA4 scope:global align:4 +addPitchRatio__Q34Game3Mar3ObjFv = .text:0x80280108; // type:function size:0x38 scope:global align:4 +getSearchedPikmin__Q34Game3Mar3ObjFv = .text:0x80280140; // type:function size:0x3AC scope:global align:4 +isTargetLost__Q34Game3Mar3ObjFv = .text:0x802804EC; // type:function size:0x2F0 scope:global align:4 +isAttackable__Q34Game3Mar3ObjFv = .text:0x802807DC; // type:function size:0x38C scope:global align:4 +updateEmit__Q34Game3Mar3ObjFv = .text:0x80280B68; // type:function size:0x1AC scope:global align:4 +getAttackPosition__Q34Game3Mar3ObjFv = .text:0x80280D14; // type:function size:0x1E8 scope:global align:4 +windTarget__Q34Game3Mar3ObjFv = .text:0x80280EFC; // type:function size:0x8F4 scope:global align:4 +createEffect__Q34Game3Mar3ObjFv = .text:0x802817F0; // type:function size:0x150 scope:global align:4 +setupEffect__Q34Game3Mar3ObjFv = .text:0x80281940; // type:function size:0x4C scope:global align:4 +startDeadEffect__Q34Game3Mar3ObjFv = .text:0x8028198C; // type:function size:0x7C scope:global align:4 +createSuckEffect__Q34Game3Mar3ObjFv = .text:0x80281A08; // type:function size:0x34 scope:global align:4 +startWindEffect__Q34Game3Mar3ObjFv = .text:0x80281A3C; // type:function size:0x90 scope:global align:4 +finishWindEffect__Q34Game3Mar3ObjFv = .text:0x80281ACC; // type:function size:0x78 scope:global align:4 +createDownEffect__Q34Game3Mar3ObjFv = .text:0x80281B44; // type:function size:0x74 scope:global align:4 +getDownSmokeScale__Q34Game3Mar3ObjFv = .text:0x80281BB8; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game3Mar3ObjFv = .text:0x80281BC0; // type:function size:0x78 scope:global align:4 +effectDrawOff__Q34Game3Mar3ObjFv = .text:0x80281C38; // type:function size:0x78 scope:global align:4 +__dt__Q23efx9TFusenSuiFv = .text:0x80281CB0; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game3Mar3ObjFv = .text:0x80281D4C; // type:function size:0xBC scope:weak align:4 +inWaterCallback__Q34Game3Mar3ObjFPQ24Game8WaterBox = .text:0x80281E08; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game3Mar3ObjFv = .text:0x80281E0C; // type:function size:0x4 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game3Mar3ObjFv = .text:0x80281E10; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game3Mar3ObjFv = .text:0x80281E14; // type:function size:0x8 scope:weak align:4 +@804@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80281E1C; // type:function size:0x14 scope:weak align:4 +@804@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80281E30; // type:function size:0x14 scope:weak align:4 +@804@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80281E44; // type:function size:0x14 scope:weak align:4 +@804@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80281E58; // type:function size:0x14 scope:weak align:4 +@804@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80281E6C; // type:function size:0x14 scope:weak align:4 +@804@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80281E80; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TFusenSuiFv = .text:0x80281E94; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game3Mar14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80281E9C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game3Mar14ProperAnimatorFi = .text:0x80281EA4; // type:function size:0x8 scope:global align:4 +__dt__Q34Game3Mar14ProperAnimatorFv = .text:0x80281EAC; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game3Mar14ProperAnimatorFv = .text:0x80281F08; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Mar3MgrFiUc = .text:0x80281F10; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game3Mar3MgrFv = .text:0x80281F60; // type:function size:0x48 scope:global align:4 +__ct__Q34Game3Mar5ParmsFv = .text:0x80281FA8; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game3Mar5Parms11ProperParmsFv = .text:0x80281FF0; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game3Mar3MgrFi = .text:0x8028222C; // type:function size:0x60 scope:global align:4 +getEnemy__Q34Game3Mar3MgrFi = .text:0x8028228C; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game3Mar3MgrFv = .text:0x8028229C; // type:function size:0x12C scope:global align:4 +createModel__Q34Game3Mar3MgrFv = .text:0x802823C8; // type:function size:0x13C scope:global align:4 +__dt__Q34Game3Mar3MgrFv = .text:0x80282504; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game3Mar3MgrFv = .text:0x802825B4; // type:function size:0x8 scope:weak align:4 +read__Q34Game3Mar5ParmsFR6Stream = .text:0x802825BC; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game3Mar3MgrFv = .text:0x8028260C; // type:function size:0x8 scope:weak align:4 +init__Q34Game3Mar3FSMFPQ24Game9EnemyBase = .text:0x80282614; // type:function size:0x42C scope:global align:4 +init__Q34Game3Mar9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282A40; // type:function size:0xAC scope:global align:4 +exec__Q34Game3Mar9StateDeadFPQ24Game9EnemyBase = .text:0x80282AEC; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game3Mar9StateDeadFPQ24Game9EnemyBase = .text:0x80282B74; // type:function size:0x4 scope:global align:4 +init__Q34Game3Mar9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282B78; // type:function size:0x54 scope:global align:4 +exec__Q34Game3Mar9StateWaitFPQ24Game9EnemyBase = .text:0x80282BCC; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game3Mar9StateWaitFPQ24Game9EnemyBase = .text:0x80282D04; // type:function size:0x4 scope:global align:4 +init__Q34Game3Mar9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282D08; // type:function size:0x4C scope:global align:4 +exec__Q34Game3Mar9StateMoveFPQ24Game9EnemyBase = .text:0x80282D54; // type:function size:0x1A0 scope:global align:4 +cleanup__Q34Game3Mar9StateMoveFPQ24Game9EnemyBase = .text:0x80282EF4; // type:function size:0x4 scope:global align:4 +init__Q34Game3Mar10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282EF8; // type:function size:0x30 scope:global align:4 +exec__Q34Game3Mar10StateChaseFPQ24Game9EnemyBase = .text:0x80282F28; // type:function size:0x530 scope:global align:4 +cleanup__Q34Game3Mar10StateChaseFPQ24Game9EnemyBase = .text:0x80283458; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028347C; // type:function size:0x124 scope:global align:4 +exec__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBase = .text:0x802835A0; // type:function size:0x37C scope:global align:4 +cleanup__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBase = .text:0x8028391C; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283940; // type:function size:0x88 scope:global align:4 +exec__Q34Game3Mar11StateAttackFPQ24Game9EnemyBase = .text:0x802839C8; // type:function size:0xE0 scope:global align:4 +cleanup__Q34Game3Mar11StateAttackFPQ24Game9EnemyBase = .text:0x80283AA8; // type:function size:0x54 scope:global align:4 +init__Q34Game3Mar9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283AFC; // type:function size:0x68 scope:global align:4 +exec__Q34Game3Mar9StateFallFPQ24Game9EnemyBase = .text:0x80283B64; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game3Mar9StateFallFPQ24Game9EnemyBase = .text:0x80283D08; // type:function size:0x38 scope:global align:4 +init__Q34Game3Mar9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283D40; // type:function size:0x70 scope:global align:4 +exec__Q34Game3Mar9StateLandFPQ24Game9EnemyBase = .text:0x80283DB0; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game3Mar9StateLandFPQ24Game9EnemyBase = .text:0x80283E30; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283E54; // type:function size:0x68 scope:global align:4 +exec__Q34Game3Mar11StateGroundFPQ24Game9EnemyBase = .text:0x80283EBC; // type:function size:0x114 scope:global align:4 +cleanup__Q34Game3Mar11StateGroundFPQ24Game9EnemyBase = .text:0x80283FD0; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283FF4; // type:function size:0x64 scope:global align:4 +exec__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBase = .text:0x80284058; // type:function size:0xEC scope:global align:4 +cleanup__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBase = .text:0x80284144; // type:function size:0x38 scope:global align:4 +init__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028417C; // type:function size:0x64 scope:global align:4 +exec__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802841E0; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802842C4; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802842E8; // type:function size:0x64 scope:global align:4 +exec__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBase = .text:0x8028434C; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBase = .text:0x8028444C; // type:function size:0x24 scope:global align:4 +__ct__Q34Game7Wealthy3MgrFiUc = .text:0x80284470; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Wealthy3MgrFv = .text:0x802844C0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Kogane5ParmsFv = .text:0x80284508; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game6Kogane5Parms11ProperParmsFv = .text:0x80284550; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game7Wealthy3MgrFi = .text:0x8028478C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Wealthy3ObjFv = .text:0x802847EC; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game7Wealthy3MgrFi = .text:0x802848DC; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game7Wealthy3MgrFv = .text:0x802848EC; // type:function size:0x80 scope:global align:4 +read__Q34Game6Kogane5ParmsFR6Stream = .text:0x8028496C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Wealthy3MgrFv = .text:0x802849BC; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Wealthy3MgrFv = .text:0x80284A84; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game7Wealthy3MgrFv = .text:0x80284A8C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Wealthy3MgrFv = .text:0x80284A94; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Wealthy3ObjFv = .text:0x80284A9C; // type:function size:0x98 scope:global align:4 +changeMaterial__Q34Game7Wealthy3ObjFv = .text:0x80284B34; // type:function size:0x1F0 scope:global align:4 +createItem__Q34Game7Wealthy3ObjFv = .text:0x80284D24; // type:function size:0x144 scope:global align:4 +createEffect__Q34Game7Wealthy3ObjFv = .text:0x80284E68; // type:function size:0xB0 scope:global align:4 +startBodyEffect__Q34Game7Wealthy3ObjFv = .text:0x80284F18; // type:function size:0x58 scope:global align:4 +finishBodyEffect__Q34Game7Wealthy3ObjFv = .text:0x80284F70; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game7Wealthy3ObjFv = .text:0x80284FA0; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game7Wealthy3ObjFv = .text:0x80284FD0; // type:function size:0x30 scope:global align:4 +createPressSENormal__Q34Game7Wealthy3ObjFv = .text:0x80285000; // type:function size:0x44 scope:global align:4 +__dt__Q23efx11TOoganeKiraFv = .text:0x80285044; // type:function size:0x9C scope:weak align:4 +getEnemyTypeID__Q34Game7Wealthy3ObjFv = .text:0x802850E0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TOoganeKiraFv = .text:0x802850E8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Fart3MgrFiUc = .text:0x802850F0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Fart3MgrFv = .text:0x80285140; // type:function size:0x48 scope:global align:4 +createObj__Q34Game4Fart3MgrFi = .text:0x80285188; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Fart3ObjFv = .text:0x802851E8; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game4Fart3MgrFi = .text:0x802852D8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game4Fart3MgrFv = .text:0x802852E8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game4Fart3MgrFv = .text:0x80285368; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game4Fart3MgrFv = .text:0x80285430; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game4Fart3MgrFv = .text:0x80285438; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Fart3MgrFv = .text:0x80285440; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Fart3ObjFv = .text:0x80285448; // type:function size:0x98 scope:global align:4 +doUpdateCommon__Q34Game4Fart3ObjFv = .text:0x802854E0; // type:function size:0x70 scope:global align:4 +changeMaterial__Q34Game4Fart3ObjFv = .text:0x80285550; // type:function size:0x1F0 scope:global align:4 +doDebugDraw__Q34Game4Fart3ObjFR8Graphics = .text:0x80285740; // type:function size:0x20 scope:global align:4 +interactFartGasAttack__Q34Game4Fart3ObjFv = .text:0x80285760; // type:function size:0x1F4 scope:global align:4 +createItem__Q34Game4Fart3ObjFv = .text:0x80285954; // type:function size:0x120 scope:global align:4 +createEffect__Q34Game4Fart3ObjFv = .text:0x80285A74; // type:function size:0xB8 scope:global align:4 +resetFartTimer__Q34Game4Fart3ObjFv = .text:0x80285B2C; // type:function size:0x24 scope:global align:4 +startBodyEffect__Q34Game4Fart3ObjFv = .text:0x80285B50; // type:function size:0xA8 scope:global align:4 +finishBodyEffect__Q34Game4Fart3ObjFv = .text:0x80285BF8; // type:function size:0x30 scope:global align:4 +createFartEffect__Q34Game4Fart3ObjFv = .text:0x80285C28; // type:function size:0x204 scope:global align:4 +effectDrawOn__Q34Game4Fart3ObjFv = .text:0x80285E2C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game4Fart3ObjFv = .text:0x80285E5C; // type:function size:0x30 scope:global align:4 +createPressSESpecial__Q34Game4Fart3ObjFv = .text:0x80285E8C; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game4Fart3ObjFv = .text:0x80285ED0; // type:function size:0x8 scope:weak align:4 +init__Q34Game5Armor3FSMFPQ24Game9EnemyBase = .text:0x80285ED8; // type:function size:0x4CC scope:global align:4 +init__Q34Game5Armor9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802863A4; // type:function size:0x5C scope:global align:4 +exec__Q34Game5Armor9StateDeadFPQ24Game9EnemyBase = .text:0x80286400; // type:function size:0x90 scope:global align:4 +cleanup__Q34Game5Armor9StateDeadFPQ24Game9EnemyBase = .text:0x80286490; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286494; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Armor9StateStayFPQ24Game9EnemyBase = .text:0x80286504; // type:function size:0xA0 scope:global align:4 +cleanup__Q34Game5Armor9StateStayFPQ24Game9EnemyBase = .text:0x802865A4; // type:function size:0x3C scope:global align:4 +init__Q34Game5Armor11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802865E0; // type:function size:0xB8 scope:global align:4 +exec__Q34Game5Armor11StateAppearFPQ24Game9EnemyBase = .text:0x80286698; // type:function size:0xCC scope:global align:4 +cleanup__Q34Game5Armor11StateAppearFPQ24Game9EnemyBase = .text:0x80286764; // type:function size:0x24 scope:global align:4 +init__Q34Game5Armor9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286788; // type:function size:0x60 scope:global align:4 +exec__Q34Game5Armor9StateDiveFPQ24Game9EnemyBase = .text:0x802867E8; // type:function size:0x9C scope:global align:4 +cleanup__Q34Game5Armor9StateDiveFPQ24Game9EnemyBase = .text:0x80286884; // type:function size:0x24 scope:global align:4 +init__Q34Game5Armor9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802868A8; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor9StateMoveFPQ24Game9EnemyBase = .text:0x802868DC; // type:function size:0x4F8 scope:global align:4 +cleanup__Q34Game5Armor9StateMoveFPQ24Game9EnemyBase = .text:0x80286DD4; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286DD8; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBase = .text:0x80286E0C; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBase = .text:0x80286F34; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286F38; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80286F6C; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80287094; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287098; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBase = .text:0x802870CC; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBase = .text:0x802871F4; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802871F8; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBase = .text:0x8028722C; // type:function size:0x21C scope:global align:4 +cleanup__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBase = .text:0x80287448; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028744C; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBase = .text:0x802874A4; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBase = .text:0x802875E0; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802875E4; // type:function size:0x40 scope:global align:4 +exec__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBase = .text:0x80287624; // type:function size:0x1B8 scope:global align:4 +cleanup__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBase = .text:0x802877DC; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802877E0; // type:function size:0x3C scope:global align:4 +exec__Q34Game5Armor8StateEatFPQ24Game9EnemyBase = .text:0x8028781C; // type:function size:0x98 scope:global align:4 +cleanup__Q34Game5Armor8StateEatFPQ24Game9EnemyBase = .text:0x802878B4; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802878B8; // type:function size:0x3C scope:global align:4 +exec__Q34Game5Armor10StateFlickFPQ24Game9EnemyBase = .text:0x802878F4; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game5Armor10StateFlickFPQ24Game9EnemyBase = .text:0x80287A38; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287A3C; // type:function size:0x3C scope:global align:4 +exec__Q34Game5Armor9StateFailFPQ24Game9EnemyBase = .text:0x80287A78; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game5Armor9StateFailFPQ24Game9EnemyBase = .text:0x80287AF8; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game5Armor14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80287AFC; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game5Armor14ProperAnimatorFi = .text:0x80287B04; // type:function size:0x8 scope:global align:4 +__dt__Q34Game5Armor14ProperAnimatorFv = .text:0x80287B0C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game5Armor14ProperAnimatorFv = .text:0x80287B68; // type:function size:0x8 scope:weak align:4 +init__Q34Game5Queen3FSMFPQ24Game9EnemyBase = .text:0x80287B70; // type:function size:0x278 scope:global align:4 +init__Q34Game5Queen9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287DE8; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Queen9StateDeadFPQ24Game9EnemyBase = .text:0x80287E40; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game5Queen9StateDeadFPQ24Game9EnemyBase = .text:0x80287EF8; // type:function size:0x4 scope:global align:4 +init__Q34Game5Queen10StateSleepFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287EFC; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Queen10StateSleepFPQ24Game9EnemyBase = .text:0x80287F6C; // type:function size:0x154 scope:global align:4 +cleanup__Q34Game5Queen10StateSleepFPQ24Game9EnemyBase = .text:0x802880C0; // type:function size:0x40 scope:global align:4 +init__Q34Game5Queen9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80288100; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Queen9StateWaitFPQ24Game9EnemyBase = .text:0x80288170; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game5Queen9StateWaitFPQ24Game9EnemyBase = .text:0x802882AC; // type:function size:0x24 scope:global align:4 +init__Q34Game5Queen11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802882D0; // type:function size:0x78 scope:global align:4 +exec__Q34Game5Queen11StateDamageFPQ24Game9EnemyBase = .text:0x80288348; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game5Queen11StateDamageFPQ24Game9EnemyBase = .text:0x8028843C; // type:function size:0x40 scope:global align:4 +init__Q34Game5Queen10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028847C; // type:function size:0x80 scope:global align:4 +exec__Q34Game5Queen10StateFlickFPQ24Game9EnemyBase = .text:0x802884FC; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game5Queen10StateFlickFPQ24Game9EnemyBase = .text:0x802885F8; // type:function size:0x38 scope:global align:4 +init__Q34Game5Queen12StateRollingFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80288630; // type:function size:0x88 scope:global align:4 +exec__Q34Game5Queen12StateRollingFPQ24Game9EnemyBase = .text:0x802886B8; // type:function size:0x5BC scope:global align:4 +cleanup__Q34Game5Queen12StateRollingFPQ24Game9EnemyBase = .text:0x80288C74; // type:function size:0x4C scope:global align:4 +init__Q34Game5Queen9StateBornFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80288CC0; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Queen9StateBornFPQ24Game9EnemyBase = .text:0x80288D30; // type:function size:0xA8 scope:global align:4 +cleanup__Q34Game5Queen9StateBornFPQ24Game9EnemyBase = .text:0x80288DD8; // type:function size:0x40 scope:global align:4 +__sinit_QueenState_cpp = .text:0x80288E18; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game5Queen14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80288E40; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game5Queen14ProperAnimatorFi = .text:0x80288E48; // type:function size:0x8 scope:global align:4 +__dt__Q34Game5Queen14ProperAnimatorFv = .text:0x80288E50; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game5Queen14ProperAnimatorFv = .text:0x80288EAC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Queen3MgrFiUc = .text:0x80288EB4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Queen3MgrFv = .text:0x80288F04; // type:function size:0x48 scope:global align:4 +__ct__Q34Game5Queen5ParmsFv = .text:0x80288F4C; // type:function size:0x188 scope:weak align:4 +createObj__Q34Game5Queen3MgrFi = .text:0x802890D4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Queen3ObjFv = .text:0x80289134; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game5Queen3MgrFi = .text:0x802891F0; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game5Queen3MgrFv = .text:0x80289200; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game5Queen3MgrFv = .text:0x80289268; // type:function size:0xB4 scope:global align:4 +createModel__Q34Game5Queen3MgrFv = .text:0x8028931C; // type:function size:0x7C scope:global align:4 +__dt__Q34Game5Queen3MgrFv = .text:0x80289398; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Queen3MgrFv = .text:0x80289448; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game5Queen3MgrFPv = .text:0x80289450; // type:function size:0x2C scope:weak align:4 +read__Q34Game5Queen5ParmsFR6Stream = .text:0x8028947C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game5Queen3MgrFv = .text:0x802894CC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Queen3ObjFv = .text:0x802894D4; // type:function size:0x17C scope:global align:4 +setInitialSetting__Q34Game5Queen3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80289650; // type:function size:0x4 scope:global align:4 +onInit__Q34Game5Queen3ObjFPQ24Game15CreatureInitArg = .text:0x80289654; // type:function size:0x100 scope:global align:4 +onKill__Q34Game5Queen3ObjFPQ24Game15CreatureKillArg = .text:0x80289754; // type:function size:0x58 scope:global align:4 +setParameters__Q34Game5Queen3ObjFv = .text:0x802897AC; // type:function size:0xB8 scope:global align:4 +doUpdate__Q34Game5Queen3ObjFv = .text:0x80289864; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game5Queen3ObjFv = .text:0x802898B4; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game5Queen3ObjFv = .text:0x802898E8; // type:function size:0x54 scope:global align:4 +doDirectDraw__Q34Game5Queen3ObjFR8Graphics = .text:0x8028993C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game5Queen3ObjFR8Graphics = .text:0x80289940; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game5Queen3ObjFPQ34Game5Queen3FSM = .text:0x80289960; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game5Queen3ObjFRQ24Game11ShadowParam = .text:0x802899AC; // type:function size:0x8C scope:global align:4 +damageCallBack__Q34Game5Queen3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80289A38; // type:function size:0xB0 scope:global align:4 +earthquakeCallBack__Q34Game5Queen3ObjFPQ24Game8Creaturef = .text:0x80289AE8; // type:function size:0x8 scope:global align:4 +doStartStoneState__Q34Game5Queen3ObjFv = .text:0x80289AF0; // type:function size:0x4C scope:global align:4 +doFinishStoneState__Q34Game5Queen3ObjFv = .text:0x80289B3C; // type:function size:0x88 scope:global align:4 +ignoreAtari__Q34Game5Queen3ObjFPQ24Game8Creature = .text:0x80289BC4; // type:function size:0x84 scope:global align:4 +startCarcassMotion__Q34Game5Queen3ObjFv = .text:0x80289C48; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game5Queen3ObjFv = .text:0x80289C70; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game5Queen3ObjFv = .text:0x80289C90; // type:function size:0x20 scope:global align:4 +rollingAttack__Q34Game5Queen3ObjFv = .text:0x80289CB0; // type:function size:0x2EC scope:global align:4 +flickPikmin__Q34Game5Queen3ObjFf = .text:0x80289F9C; // type:function size:0x3A8 scope:global align:4 +isRollingAttackLeft__Q34Game5Queen3ObjFv = .text:0x8028A344; // type:function size:0x1A8 scope:global align:4 +createCrashFallRock__Q34Game5Queen3ObjFv = .text:0x8028A4EC; // type:function size:0x2D4 scope:global align:4 +createBabyChappy__Q34Game5Queen3ObjFv = .text:0x8028A7C0; // type:function size:0x19C scope:global align:4 +isDone__Q24Game31EnemyIteratorFv = .text:0x8028A95C; // type:function size:0x4C scope:weak align:4 +updateCreateBaby__Q34Game5Queen3ObjFv = .text:0x8028A9A8; // type:function size:0x274 scope:global align:4 +isCreateBaby__Q34Game5Queen3ObjFv = .text:0x8028AC1C; // type:function size:0x3C scope:global align:4 +isHitCounterUp__Q34Game5Queen3ObjFv = .text:0x8028AC58; // type:function size:0x18 scope:global align:4 +resetJointShadow__Q34Game5Queen3ObjFv = .text:0x8028AC70; // type:function size:0x28 scope:global align:4 +releaseJointShadow__Q34Game5Queen3ObjFv = .text:0x8028AC98; // type:function size:0x40 scope:global align:4 +startBossChargeBGM__Q34Game5Queen3ObjFv = .text:0x8028ACD8; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028ADA0; // type:function size:0xDC scope:global align:4 +finishBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028AE7C; // type:function size:0xD8 scope:global align:4 +startStoneStateBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028AF54; // type:function size:0xD4 scope:global align:4 +finishStoneStateBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028B028; // type:function size:0xD4 scope:global align:4 +updateBossBGM__Q34Game5Queen3ObjFv = .text:0x8028B0FC; // type:function size:0xFC scope:global align:4 +resetMidBossAppearBGM__Q34Game5Queen3ObjFv = .text:0x8028B1F8; // type:function size:0xA8 scope:global align:4 +setMidBossAppearBGM__Q34Game5Queen3ObjFv = .text:0x8028B2A0; // type:function size:0x80 scope:global align:4 +createEffect__Q34Game5Queen3ObjFv = .text:0x8028B320; // type:function size:0x534 scope:global align:4 +setupEffect__Q34Game5Queen3ObjFv = .text:0x8028B854; // type:function size:0x78 scope:global align:4 +createBornEffect__Q34Game5Queen3ObjFv = .text:0x8028B8CC; // type:function size:0x34 scope:global align:4 +startRollingEffect__Q34Game5Queen3ObjFv = .text:0x8028B900; // type:function size:0x80 scope:global align:4 +finishRollingEffect__Q34Game5Queen3ObjFb = .text:0x8028B980; // type:function size:0xE0 scope:global align:4 +forceFinishRollingEffect__Q34Game5Queen3ObjFv = .text:0x8028BA60; // type:function size:0x64 scope:global align:4 +startDamageEffect__Q34Game5Queen3ObjFv = .text:0x8028BAC4; // type:function size:0x34 scope:global align:4 +finishDamageEffect__Q34Game5Queen3ObjFv = .text:0x8028BAF8; // type:function size:0x30 scope:global align:4 +createFlickEffect__Q34Game5Queen3ObjFv = .text:0x8028BB28; // type:function size:0x34 scope:global align:4 +createDeadEffect__Q34Game5Queen3ObjFv = .text:0x8028BB5C; // type:function size:0x34 scope:global align:4 +createWakeUpEffect__Q34Game5Queen3ObjFv = .text:0x8028BB90; // type:function size:0x34 scope:global align:4 +startSleepEffect__Q34Game5Queen3ObjFv = .text:0x8028BBC4; // type:function size:0x34 scope:global align:4 +finishSleepEffect__Q34Game5Queen3ObjFv = .text:0x8028BBF8; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game5Queen3ObjFv = .text:0x8028BC28; // type:function size:0x118 scope:global align:4 +effectDrawOff__Q34Game5Queen3ObjFv = .text:0x8028BD40; // type:function size:0x118 scope:global align:4 +__dt__Q23efx13TQueenHanachoFv = .text:0x8028BE58; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenWakeupFv = .text:0x8028BEF4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenDamageFv = .text:0x8028BF90; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TQueenCrashRockFv = .text:0x8028C02C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenCrashLFv = .text:0x8028C0C8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenCrashRFv = .text:0x8028C164; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TQueenLayFv = .text:0x8028C200; // type:function size:0x9C scope:weak align:4 +__ml__Q24Game31EnemyIteratorFv = .text:0x8028C29C; // type:function size:0x38 scope:weak align:4 +next__Q24Game31EnemyIteratorFv = .text:0x8028C2D4; // type:function size:0xE4 scope:weak align:4 +first__Q24Game31EnemyIteratorFv = .text:0x8028C3B8; // type:function size:0xDC scope:weak align:4 +inWaterCallback__Q34Game5Queen3ObjFPQ24Game8WaterBox = .text:0x8028C494; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game5Queen3ObjFv = .text:0x8028C498; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game5Queen3ObjFv = .text:0x8028C49C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game5Queen3ObjFv = .text:0x8028C4A4; // type:function size:0x8 scope:weak align:4 +__sinit_Queen_cpp = .text:0x8028C4AC; // type:function size:0x28 scope:local align:4 +@784@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8028C4D4; // type:function size:0x14 scope:weak align:4 +@784@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8028C4E8; // type:function size:0x14 scope:weak align:4 +@784@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8028C4FC; // type:function size:0x14 scope:weak align:4 +@784@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8028C510; // type:function size:0x14 scope:weak align:4 +@784@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8028C524; // type:function size:0x14 scope:weak align:4 +@784@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8028C538; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TQueenLayFv = .text:0x8028C54C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenCrashRFv = .text:0x8028C554; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenCrashLFv = .text:0x8028C55C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TQueenCrashRockFv = .text:0x8028C564; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenDamageFv = .text:0x8028C56C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenWakeupFv = .text:0x8028C574; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TQueenHanachoFv = .text:0x8028C57C; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Baby3FSMFPQ24Game9EnemyBase = .text:0x8028C584; // type:function size:0x1D0 scope:global align:4 +init__Q34Game4Baby9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028C754; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Baby9StateDeadFPQ24Game9EnemyBase = .text:0x8028C7AC; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Baby9StateDeadFPQ24Game9EnemyBase = .text:0x8028C7F0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028C7F4; // type:function size:0xDC scope:global align:4 +exec__Q34Game4Baby10StatePressFPQ24Game9EnemyBase = .text:0x8028C8D0; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Baby10StatePressFPQ24Game9EnemyBase = .text:0x8028C914; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby9StateBornFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028C918; // type:function size:0x40 scope:global align:4 +exec__Q34Game4Baby9StateBornFPQ24Game9EnemyBase = .text:0x8028C958; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game4Baby9StateBornFPQ24Game9EnemyBase = .text:0x8028CA30; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028CA34; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Baby9StateMoveFPQ24Game9EnemyBase = .text:0x8028CA68; // type:function size:0x468 scope:global align:4 +cleanup__Q34Game4Baby9StateMoveFPQ24Game9EnemyBase = .text:0x8028CED0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028CED4; // type:function size:0x50 scope:global align:4 +exec__Q34Game4Baby11StateAttackFPQ24Game9EnemyBase = .text:0x8028CF24; // type:function size:0x104 scope:global align:4 +cleanup__Q34Game4Baby11StateAttackFPQ24Game9EnemyBase = .text:0x8028D028; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game4Baby14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8028D04C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Baby14ProperAnimatorFi = .text:0x8028D054; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Baby14ProperAnimatorFv = .text:0x8028D05C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Baby14ProperAnimatorFv = .text:0x8028D0B8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Baby3MgrFiUc = .text:0x8028D0C0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Baby3MgrFv = .text:0x8028D110; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Baby5ParmsFv = .text:0x8028D158; // type:function size:0xDC scope:weak align:4 +createObj__Q34Game4Baby3MgrFi = .text:0x8028D234; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Baby3ObjFv = .text:0x8028D294; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Baby3MgrFi = .text:0x8028D350; // type:function size:0x10 scope:global align:4 +read__Q34Game4Baby5ParmsFR6Stream = .text:0x8028D360; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Baby3MgrFv = .text:0x8028D3B0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Baby3MgrFv = .text:0x8028D460; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Baby3MgrFv = .text:0x8028D468; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Baby3ObjFv = .text:0x8028D470; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game4Baby3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8028D5B0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Baby3ObjFPQ24Game15CreatureInitArg = .text:0x8028D5B4; // type:function size:0xB8 scope:global align:4 +doUpdate__Q34Game4Baby3ObjFv = .text:0x8028D66C; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game4Baby3ObjFR8Graphics = .text:0x8028D6B4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Baby3ObjFR8Graphics = .text:0x8028D6B8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Baby3ObjFPQ34Game4Baby3FSM = .text:0x8028D6D8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Baby3ObjFRQ24Game11ShadowParam = .text:0x8028D724; // type:function size:0x68 scope:global align:4 +pressCallBack__Q34Game4Baby3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8028D78C; // type:function size:0x74 scope:global align:4 +hipdropCallBack__Q34Game4Baby3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8028D800; // type:function size:0x74 scope:global align:4 +doStartStoneState__Q34Game4Baby3ObjFv = .text:0x8028D874; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game4Baby3ObjFv = .text:0x8028D894; // type:function size:0x5C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game4Baby3ObjFv = .text:0x8028D8F0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game4Baby3ObjFv = .text:0x8028D924; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game4Baby3ObjFv = .text:0x8028D958; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game4Baby3ObjFv = .text:0x8028D978; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game4Baby3ObjFv = .text:0x8028D998; // type:function size:0x8C scope:global align:4 +getSlotPikiNum__Q34Game4Baby3ObjFv = .text:0x8028DA24; // type:function size:0x8C scope:global align:4 +getMouthSlots__Q34Game4Baby3ObjFv = .text:0x8028DAB0; // type:function size:0x8 scope:weak align:4 +resetRandTargetPosition__Q34Game4Baby3ObjFv = .text:0x8028DAB8; // type:function size:0x1C scope:global align:4 +resetZukanAnimationFrame__Q34Game4Baby3ObjFv = .text:0x8028DAD4; // type:function size:0x74 scope:global align:4 +moveNoTarget__Q34Game4Baby3ObjFv = .text:0x8028DB48; // type:function size:0x20C scope:global align:4 +createHoney__Q34Game4Baby3ObjFv = .text:0x8028DD54; // type:function size:0xF4 scope:global align:4 +createEffect__Q34Game4Baby3ObjFv = .text:0x8028DE48; // type:function size:0xB4 scope:global align:4 +setupEffect__Q34Game4Baby3ObjFv = .text:0x8028DEFC; // type:function size:0x4 scope:global align:4 +createBornEffect__Q34Game4Baby3ObjFv = .text:0x8028DF00; // type:function size:0x34 scope:global align:4 +effectDrawOn__Q34Game4Baby3ObjFv = .text:0x8028DF34; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game4Baby3ObjFv = .text:0x8028DF64; // type:function size:0x30 scope:global align:4 +__dt__Q23efx9TBabyBornFv = .text:0x8028DF94; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game4Baby3ObjFPQ24Game8WaterBox = .text:0x8028E030; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game4Baby3ObjFv = .text:0x8028E034; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game4Baby3ObjFv = .text:0x8028E038; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TBabyBornFv = .text:0x8028E040; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Demon3MgrFiUc = .text:0x8028E048; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Demon3MgrFv = .text:0x8028E098; // type:function size:0x48 scope:global align:4 +createObj__Q34Game5Demon3MgrFi = .text:0x8028E0E0; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Demon3ObjFv = .text:0x8028E140; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game5Demon3MgrFi = .text:0x8028E230; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game5Demon3MgrFv = .text:0x8028E240; // type:function size:0x68 scope:global align:4 +__dt__Q34Game5Demon3MgrFv = .text:0x8028E2A8; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Demon3MgrFv = .text:0x8028E358; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game5Demon3MgrFPv = .text:0x8028E360; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game5Demon3MgrFv = .text:0x8028E38C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Demon3ObjFv = .text:0x8028E394; // type:function size:0x90 scope:global align:4 +getAttackableTarget__Q34Game5Demon3ObjFv = .text:0x8028E424; // type:function size:0x3F0 scope:global align:4 +catchTarget__Q34Game5Demon3ObjFv = .text:0x8028E814; // type:function size:0x33C scope:global align:4 +getEnemyTypeID__Q34Game5Demon3ObjFv = .text:0x8028EB50; // type:function size:0x8 scope:weak align:4 +getStickPikminNum__Q34Game5Demon3ObjFv = .text:0x8028EB58; // type:function size:0x8 scope:weak align:4 +resetAttackableTimer__Q34Game5Demon3ObjFf = .text:0x8028EB60; // type:function size:0x8 scope:weak align:4 +makeShadowSRT__Q34Game5Queen15QueenShadowNodeFv = .text:0x8028EB68; // type:function size:0x1AC scope:global align:4 +__ct__Q34Game5Queen14QueenShadowMgrFPQ34Game5Queen3Obj = .text:0x8028ED14; // type:function size:0xB4 scope:global align:4 +init__Q34Game5Queen14QueenShadowMgrFv = .text:0x8028EDC8; // type:function size:0x2A4 scope:global align:4 +update__Q34Game5Queen14QueenShadowMgrFv = .text:0x8028F06C; // type:function size:0x5C scope:global align:4 +__dt__Q34Game5Queen15QueenShadowNodeFv = .text:0x8028F0C8; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game10FireChappy3MgrFiUc = .text:0x8028F138; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10FireChappy3MgrFv = .text:0x8028F188; // type:function size:0x48 scope:global align:4 +createObj__Q34Game10FireChappy3MgrFi = .text:0x8028F1D0; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10FireChappy3ObjFv = .text:0x8028F230; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game10FireChappy3MgrFi = .text:0x8028F320; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game10FireChappy3MgrFv = .text:0x8028F330; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game10FireChappy3MgrFv = .text:0x8028F398; // type:function size:0x12C scope:global align:4 +createModel__Q34Game10FireChappy3MgrFv = .text:0x8028F4C4; // type:function size:0x7C scope:global align:4 +__dt__Q34Game10FireChappy3MgrFv = .text:0x8028F540; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10FireChappy3MgrFv = .text:0x8028F5F0; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10FireChappy3MgrFPv = .text:0x8028F5F8; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game10FireChappy3MgrFv = .text:0x8028F624; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10FireChappy3ObjFv = .text:0x8028F62C; // type:function size:0xAC scope:global align:4 +onInit__Q34Game10FireChappy3ObjFPQ24Game15CreatureInitArg = .text:0x8028F6D8; // type:function size:0x58 scope:global align:4 +onKill__Q34Game10FireChappy3ObjFPQ24Game15CreatureKillArg = .text:0x8028F730; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game10FireChappy3ObjFR8Graphics = .text:0x8028F778; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10FireChappy3ObjFR8Graphics = .text:0x8028F77C; // type:function size:0x20 scope:global align:4 +changeMaterial__Q34Game10FireChappy3ObjFv = .text:0x8028F79C; // type:function size:0xC0 scope:global align:4 +doUpdateCommon__Q34Game10FireChappy3ObjFv = .text:0x8028F85C; // type:function size:0x34 scope:global align:4 +getShadowParam__Q34Game10FireChappy3ObjFRQ24Game11ShadowParam = .text:0x8028F890; // type:function size:0xA0 scope:global align:4 +collisionCallback__Q34Game10FireChappy3ObjFRQ24Game9CollEvent = .text:0x8028F930; // type:function size:0xE0 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game10FireChappy3ObjFv = .text:0x8028FA10; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game10FireChappy3ObjFv = .text:0x8028FA44; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game10FireChappy3ObjFv = .text:0x8028FA78; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10FireChappy3ObjFv = .text:0x8028FA98; // type:function size:0x20 scope:global align:4 +startFireState__Q34Game10FireChappy3ObjFv = .text:0x8028FAB8; // type:function size:0x48 scope:global align:4 +finishFireState__Q34Game10FireChappy3ObjFb = .text:0x8028FB00; // type:function size:0x94 scope:global align:4 +updateFireState__Q34Game10FireChappy3ObjFv = .text:0x8028FB94; // type:function size:0x10C scope:global align:4 +createMaterialAnimation__Q34Game10FireChappy3ObjFv = .text:0x8028FCA0; // type:function size:0x4C scope:global align:4 +startMaterialAnimation__Q34Game10FireChappy3ObjFv = .text:0x8028FCEC; // type:function size:0x60 scope:global align:4 +updateMaterialAnimation__Q34Game10FireChappy3ObjFv = .text:0x8028FD4C; // type:function size:0x108 scope:global align:4 +updateEfxLod__Q34Game10FireChappy3ObjFv = .text:0x8028FE54; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game10FireChappy3ObjFv = .text:0x8028FE80; // type:function size:0x288 scope:global align:4 +setupEffect__Q34Game10FireChappy3ObjFv = .text:0x80290108; // type:function size:0x84 scope:global align:4 +startSleepEffect__Q34Game10FireChappy3ObjFv = .text:0x8029018C; // type:function size:0x34 scope:global align:4 +finishSleepEffect__Q34Game10FireChappy3ObjFv = .text:0x802901C0; // type:function size:0x30 scope:global align:4 +startBodyEffect__Q34Game10FireChappy3ObjFv = .text:0x802901F0; // type:function size:0x34 scope:global align:4 +finishBodyEffect__Q34Game10FireChappy3ObjFv = .text:0x80290224; // type:function size:0x30 scope:global align:4 +createFlickEffect__Q34Game10FireChappy3ObjFv = .text:0x80290254; // type:function size:0x40 scope:global align:4 +createDeadSmokeEffect__Q34Game10FireChappy3ObjFv = .text:0x80290294; // type:function size:0x34 scope:global align:4 +createDeadSteamEffect__Q34Game10FireChappy3ObjFv = .text:0x802902C8; // type:function size:0x34 scope:global align:4 +effectDrawOn__Q34Game10FireChappy3ObjFv = .text:0x802902FC; // type:function size:0x8C scope:global align:4 +effectDrawOff__Q34Game10FireChappy3ObjFv = .text:0x80290388; // type:function size:0x8C scope:global align:4 +__dt__Q23efx10TYakiSteamFv = .text:0x80290414; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TYakiDeadsmokeFv = .text:0x802904B0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TYakiFlickFv = .text:0x8029054C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9THanachoYFv = .text:0x802905E8; // type:function size:0x9C scope:weak align:4 +getEnemyTypeID__Q34Game10FireChappy3ObjFv = .text:0x80290684; // type:function size:0x8 scope:weak align:4 +@768@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8029068C; // type:function size:0x14 scope:weak align:4 +@768@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802906A0; // type:function size:0x14 scope:weak align:4 +@768@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802906B4; // type:function size:0x14 scope:weak align:4 +@768@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802906C8; // type:function size:0x14 scope:weak align:4 +@768@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802906DC; // type:function size:0x14 scope:weak align:4 +@768@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802906F0; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9THanachoYFv = .text:0x80290704; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TYakiFlickFv = .text:0x8029070C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TYakiDeadsmokeFv = .text:0x80290714; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TYakiSteamFv = .text:0x8029071C; // type:function size:0x8 scope:weak align:4 +init__Q34Game9SnakeCrow3FSMFPQ24Game9EnemyBase = .text:0x80290724; // type:function size:0x328 scope:global align:4 +init__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80290A4C; // type:function size:0xC4 scope:global align:4 +exec__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBase = .text:0x80290B10; // type:function size:0x170 scope:global align:4 +cleanup__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBase = .text:0x80290C80; // type:function size:0x4 scope:global align:4 +init__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80290C84; // type:function size:0x124 scope:global align:4 +exec__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBase = .text:0x80290DA8; // type:function size:0x618 scope:global align:4 +cleanup__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBase = .text:0x802913C0; // type:function size:0x90 scope:global align:4 +init__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80291450; // type:function size:0xCC scope:global align:4 +exec__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBase = .text:0x8029151C; // type:function size:0x158 scope:global align:4 +cleanup__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBase = .text:0x80291674; // type:function size:0x68 scope:global align:4 +init__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802916DC; // type:function size:0xCC scope:global align:4 +exec__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBase = .text:0x802917A8; // type:function size:0x234 scope:global align:4 +cleanup__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBase = .text:0x802919DC; // type:function size:0x68 scope:global align:4 +init__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80291A44; // type:function size:0x140 scope:global align:4 +exec__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBase = .text:0x80291B84; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBase = .text:0x80291C8C; // type:function size:0x64 scope:global align:4 +init__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80291CF0; // type:function size:0x48 scope:global align:4 +exec__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBase = .text:0x80291D38; // type:function size:0x6C0 scope:global align:4 +cleanup__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBase = .text:0x802923F8; // type:function size:0x24 scope:global align:4 +init__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029241C; // type:function size:0x4C scope:global align:4 +exec__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBase = .text:0x80292468; // type:function size:0x334 scope:global align:4 +cleanup__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBase = .text:0x8029279C; // type:function size:0x10 scope:global align:4 +init__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802927AC; // type:function size:0x3C scope:global align:4 +exec__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBase = .text:0x802927E8; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBase = .text:0x80292960; // type:function size:0x4 scope:global align:4 +init__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80292964; // type:function size:0x40 scope:global align:4 +exec__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBase = .text:0x802929A4; // type:function size:0x158 scope:global align:4 +cleanup__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBase = .text:0x80292AFC; // type:function size:0x4 scope:global align:4 +__sinit_SnakeCrowState_cpp = .text:0x80292B00; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game9SnakeCrow14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80292B28; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game9SnakeCrow14ProperAnimatorFi = .text:0x80292B30; // type:function size:0x8 scope:global align:4 +__dt__Q34Game9SnakeCrow14ProperAnimatorFv = .text:0x80292B38; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game9SnakeCrow14ProperAnimatorFv = .text:0x80292B94; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9SnakeCrow3MgrFiUc = .text:0x80292B9C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9SnakeCrow3MgrFv = .text:0x80292BEC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game9SnakeCrow5ParmsFv = .text:0x80292C34; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game9SnakeCrow3MgrFi = .text:0x80292DC4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9SnakeCrow3ObjFv = .text:0x80292E24; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9SnakeCrow3MgrFi = .text:0x80292EE0; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game9SnakeCrow3MgrFv = .text:0x80292EF0; // type:function size:0x68 scope:global align:4 +__dt__Q34Game9SnakeCrow3MgrFv = .text:0x80292F58; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9SnakeCrow3MgrFv = .text:0x80293008; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9SnakeCrow3MgrFPv = .text:0x80293010; // type:function size:0x2C scope:weak align:4 +read__Q34Game9SnakeCrow5ParmsFR6Stream = .text:0x8029303C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game9SnakeCrow3MgrFv = .text:0x8029308C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9SnakeCrow3ObjFv = .text:0x80293094; // type:function size:0x16C scope:global align:4 +constructor__Q34Game9SnakeCrow3ObjFv = .text:0x80293200; // type:function size:0x44 scope:global align:4 +setInitialSetting__Q34Game9SnakeCrow3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80293244; // type:function size:0x4 scope:global align:4 +onInit__Q34Game9SnakeCrow3ObjFPQ24Game15CreatureInitArg = .text:0x80293248; // type:function size:0xE0 scope:global align:4 +onKill__Q34Game9SnakeCrow3ObjFPQ24Game15CreatureKillArg = .text:0x80293328; // type:function size:0x4C scope:global align:4 +setParameters__Q34Game9SnakeCrow3ObjFv = .text:0x80293374; // type:function size:0x88 scope:global align:4 +doUpdate__Q34Game9SnakeCrow3ObjFv = .text:0x802933FC; // type:function size:0x48 scope:global align:4 +doUpdateCommon__Q34Game9SnakeCrow3ObjFv = .text:0x80293444; // type:function size:0x34 scope:global align:4 +doAnimationUpdateAnimator__Q34Game9SnakeCrow3ObjFv = .text:0x80293478; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game9SnakeCrow3ObjFv = .text:0x802934AC; // type:function size:0x3C scope:global align:4 +doDirectDraw__Q34Game9SnakeCrow3ObjFR8Graphics = .text:0x802934E8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game9SnakeCrow3ObjFR8Graphics = .text:0x802934EC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game9SnakeCrow3ObjFPQ34Game9SnakeCrow3FSM = .text:0x8029350C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game9SnakeCrow3ObjFRQ24Game11ShadowParam = .text:0x80293558; // type:function size:0x98 scope:global align:4 +damageCallBack__Q34Game9SnakeCrow3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802935F0; // type:function size:0x98 scope:global align:4 +doStartStoneState__Q34Game9SnakeCrow3ObjFv = .text:0x80293688; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game9SnakeCrow3ObjFv = .text:0x802936C4; // type:function size:0x60 scope:global align:4 +startCarcassMotion__Q34Game9SnakeCrow3ObjFv = .text:0x80293724; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game9SnakeCrow3ObjFv = .text:0x8029374C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game9SnakeCrow3ObjFv = .text:0x8029376C; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game9SnakeCrow3ObjFv = .text:0x8029378C; // type:function size:0xBC scope:global align:4 +getThrowupItemPosition__Q34Game9SnakeCrow3ObjFP10Vector3 = .text:0x80293848; // type:function size:0x58 scope:global align:4 +getCommonEffectPos__Q34Game9SnakeCrow3ObjFR10Vector3 = .text:0x802938A0; // type:function size:0x58 scope:global align:4 +appearNearByTarget__Q34Game9SnakeCrow3ObjFPQ24Game8Creature = .text:0x802938F8; // type:function size:0x338 scope:global align:4 +setAttackPosition__Q34Game9SnakeCrow3ObjFv = .text:0x80293C30; // type:function size:0x20C scope:global align:4 +getAttackPiki__Q34Game9SnakeCrow3ObjFi = .text:0x80293E3C; // type:function size:0x5F4 scope:global align:4 +getAttackNavi__Q34Game9SnakeCrow3ObjFi = .text:0x80294430; // type:function size:0x5C8 scope:global align:4 +getSwallowSlot__Q34Game9SnakeCrow3ObjFv = .text:0x802949F8; // type:function size:0x68 scope:global align:4 +isSwallowPikmin__Q34Game9SnakeCrow3ObjFv = .text:0x80294A60; // type:function size:0x6C scope:global align:4 +getStickHeadPikmin__Q34Game9SnakeCrow3ObjFv = .text:0x80294ACC; // type:function size:0x24C scope:global align:4 +createJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294D18; // type:function size:0x48 scope:global align:4 +setupJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294D60; // type:function size:0x24 scope:global align:4 +doAnimationJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294D84; // type:function size:0x24 scope:global align:4 +finishAnimationJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294DA8; // type:function size:0x24 scope:global align:4 +startJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294DCC; // type:function size:0xB8 scope:global align:4 +returnJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294E84; // type:function size:0x88 scope:global align:4 +finishJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294F0C; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game9SnakeCrow3ObjFv = .text:0x80294F30; // type:function size:0x38 scope:global align:4 +lifeIncrement__Q34Game9SnakeCrow3ObjFv = .text:0x80294F68; // type:function size:0x40 scope:global align:4 +createShadowSystem__Q34Game9SnakeCrow3ObjFv = .text:0x80294FA8; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game9SnakeCrow3ObjFv = .text:0x80294FF0; // type:function size:0x24 scope:global align:4 +doAnimationShadowSystem__Q34Game9SnakeCrow3ObjFv = .text:0x80295014; // type:function size:0x24 scope:global align:4 +startJointShadow__Q34Game9SnakeCrow3ObjFv = .text:0x80295038; // type:function size:0x24 scope:global align:4 +finishJointShadow__Q34Game9SnakeCrow3ObjFv = .text:0x8029505C; // type:function size:0x24 scope:global align:4 +deleteJointShadow__Q34Game9SnakeCrow3ObjFv = .text:0x80295080; // type:function size:0x40 scope:global align:4 +startBossAttackBGM__Q34Game9SnakeCrow3ObjFv = .text:0x802950C0; // type:function size:0xE0 scope:global align:4 +startBossFlickBGM__Q34Game9SnakeCrow3ObjFv = .text:0x802951A0; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game9SnakeCrow3ObjFv = .text:0x80295268; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game9SnakeCrow3ObjFv = .text:0x80295364; // type:function size:0xD0 scope:global align:4 +setBossAppearBGM__Q34Game9SnakeCrow3ObjFv = .text:0x80295434; // type:function size:0xCC scope:global align:4 +createEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295500; // type:function size:0x160 scope:global align:4 +setupEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295660; // type:function size:0x4C scope:global align:4 +createAppearEffect__Q34Game9SnakeCrow3ObjFi = .text:0x802956AC; // type:function size:0x1D4 scope:global align:4 +startRotateEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295880; // type:function size:0x58 scope:global align:4 +finishRotateEffect__Q34Game9SnakeCrow3ObjFv = .text:0x802958D8; // type:function size:0x30 scope:global align:4 +startWaitEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295908; // type:function size:0x58 scope:global align:4 +finishWaitEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295960; // type:function size:0x30 scope:global align:4 +createDeadStartEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295990; // type:function size:0x34 scope:global align:4 +createDeadFinishEffect__Q34Game9SnakeCrow3ObjFv = .text:0x802959C4; // type:function size:0x94 scope:global align:4 +createDownHeadEffect__Q34Game9SnakeCrow3ObjFf = .text:0x80295A58; // type:function size:0xAC scope:global align:4 +effectDrawOn__Q34Game9SnakeCrow3ObjFv = .text:0x80295B04; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game9SnakeCrow3ObjFv = .text:0x80295B68; // type:function size:0x64 scope:global align:4 +createEfxHamon__Q34Game9SnakeCrow3ObjFv = .text:0x80295BCC; // type:function size:0x48 scope:global align:4 +isUnderground__Q34Game9SnakeCrow3ObjFv = .text:0x80295C14; // type:function size:0x8 scope:weak align:4 +__dt__Q23efx9THebiWaitFv = .text:0x80295C1C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8THebiRotFv = .text:0x80295CB8; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game9SnakeCrow3ObjFPQ24Game8WaterBox = .text:0x80295D54; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game9SnakeCrow3ObjFv = .text:0x80295D58; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game9SnakeCrow3ObjFv = .text:0x80295D5C; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game9SnakeCrow3ObjFv = .text:0x80295D64; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game9SnakeCrow3ObjFv = .text:0x80295D6C; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game9SnakeCrow3ObjFv = .text:0x80295D70; // type:function size:0x8 scope:weak align:4 +__sinit_SnakeCrow_cpp = .text:0x80295D78; // type:function size:0x28 scope:local align:4 +@808@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80295DA0; // type:function size:0x14 scope:weak align:4 +@808@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80295DB4; // type:function size:0x14 scope:weak align:4 +@808@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80295DC8; // type:function size:0x14 scope:weak align:4 +@808@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80295DDC; // type:function size:0x14 scope:weak align:4 +@808@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80295DF0; // type:function size:0x14 scope:weak align:4 +@808@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80295E04; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx8THebiRotFv = .text:0x80295E18; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9THebiWaitFv = .text:0x80295E20; // type:function size:0x8 scope:weak align:4 +init__Q34Game10KumaChappy3FSMFPQ24Game9EnemyBase = .text:0x80295E28; // type:function size:0x328 scope:global align:4 +init__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80296150; // type:function size:0x50 scope:global align:4 +exec__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBase = .text:0x802961A0; // type:function size:0x98 scope:global align:4 +getEnemyTypeID__Q34Game10KumaChappy3ObjFv = .text:0x80296238; // type:function size:0x8 scope:weak align:4 +cleanup__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBase = .text:0x80296240; // type:function size:0x4 scope:global align:4 +init__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80296244; // type:function size:0x58 scope:global align:4 +exec__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBase = .text:0x8029629C; // type:function size:0x5B0 scope:global align:4 +cleanup__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBase = .text:0x8029684C; // type:function size:0x10 scope:global align:4 +init__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029685C; // type:function size:0x4C scope:global align:4 +exec__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBase = .text:0x802968A8; // type:function size:0x45C scope:global align:4 +cleanup__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBase = .text:0x80296D04; // type:function size:0x4 scope:global align:4 +init__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80296D08; // type:function size:0x58 scope:global align:4 +exec__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBase = .text:0x80296D60; // type:function size:0x550 scope:global align:4 +cleanup__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBase = .text:0x802972B0; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802972EC; // type:function size:0x64 scope:global align:4 +exec__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBase = .text:0x80297350; // type:function size:0x4D4 scope:global align:4 +cleanup__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBase = .text:0x80297824; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80297860; // type:function size:0x60 scope:global align:4 +exec__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBase = .text:0x802978C0; // type:function size:0x670 scope:global align:4 +cleanup__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBase = .text:0x80297F30; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80297F6C; // type:function size:0x44 scope:global align:4 +exec__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBase = .text:0x80297FB0; // type:function size:0x4E0 scope:global align:4 +cleanup__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBase = .text:0x80298490; // type:function size:0x28 scope:global align:4 +init__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802984B8; // type:function size:0x50 scope:global align:4 +exec__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBase = .text:0x80298508; // type:function size:0x70C scope:global align:4 +cleanup__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBase = .text:0x80298C14; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80298C50; // type:function size:0x34 scope:global align:4 +exec__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x80298C84; // type:function size:0x594 scope:global align:4 +cleanup__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x80299218; // type:function size:0x28 scope:global align:4 +setAnimMgr__Q34Game10KumaChappy14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80299240; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10KumaChappy14ProperAnimatorFi = .text:0x80299248; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10KumaChappy14ProperAnimatorFv = .text:0x80299250; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10KumaChappy14ProperAnimatorFv = .text:0x802992AC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10KumaChappy3MgrFiUc = .text:0x802992B4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10KumaChappy3MgrFv = .text:0x80299304; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10KumaChappy5ParmsFv = .text:0x8029934C; // type:function size:0x118 scope:weak align:4 +createObj__Q34Game10KumaChappy3MgrFi = .text:0x80299464; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10KumaChappy3ObjFv = .text:0x802994C4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game10KumaChappy3MgrFi = .text:0x80299580; // type:function size:0x10 scope:global align:4 +read__Q34Game10KumaChappy5ParmsFR6Stream = .text:0x80299590; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game10KumaChappy3MgrFv = .text:0x802995E0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10KumaChappy3MgrFv = .text:0x80299690; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10KumaChappy3MgrFv = .text:0x80299698; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10KumaChappy3ObjFv = .text:0x802996A0; // type:function size:0x154 scope:global align:4 +setInitialSetting__Q34Game10KumaChappy3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802997F4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10KumaChappy3ObjFPQ24Game15CreatureInitArg = .text:0x802997F8; // type:function size:0x7C scope:global align:4 +doUpdate__Q34Game10KumaChappy3ObjFv = .text:0x80299874; // type:function size:0x60 scope:global align:4 +doDirectDraw__Q34Game10KumaChappy3ObjFR8Graphics = .text:0x802998D4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10KumaChappy3ObjFR8Graphics = .text:0x802998D8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10KumaChappy3ObjFPQ34Game10KumaChappy3FSM = .text:0x802998F8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10KumaChappy3ObjFRQ24Game11ShadowParam = .text:0x80299944; // type:function size:0xC4 scope:global align:4 +damageCallBack__Q34Game10KumaChappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80299A08; // type:function size:0x38 scope:global align:4 +startCarcassMotion__Q34Game10KumaChappy3ObjFv = .text:0x80299A40; // type:function size:0x28 scope:global align:4 +getOffsetForMapCollision__Q34Game10KumaChappy3ObjFv = .text:0x80299A68; // type:function size:0xA8 scope:global align:4 +initMouthSlots__Q34Game10KumaChappy3ObjFv = .text:0x80299B10; // type:function size:0xDC scope:global align:4 +initWalkSmokeEffect__Q34Game10KumaChappy3ObjFv = .text:0x80299BEC; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10KumaChappy3ObjFv = .text:0x80299C50; // type:function size:0x8 scope:global align:4 +doBecomeCarcass__Q34Game10KumaChappy3ObjFv = .text:0x80299C58; // type:function size:0x14 scope:global align:4 +doUpdateCarcass__Q34Game10KumaChappy3ObjFv = .text:0x80299C6C; // type:function size:0x1FC scope:global align:4 +doGetLifeGaugeParam__Q34Game10KumaChappy3ObjFRQ24Game14LifeGaugeParam = .text:0x80299E68; // type:function size:0x64 scope:global align:4 +getViewAngle__Q34Game10KumaChappy3ObjFv = .text:0x80299ECC; // type:function size:0x24 scope:global align:4 +resetWayPoint__Q34Game10KumaChappy3ObjFv = .text:0x80299EF0; // type:function size:0x10 scope:global align:4 +setNearestWayPoint__Q34Game10KumaChappy3ObjFv = .text:0x80299F00; // type:function size:0xB0 scope:global align:4 +setLinkWayPoint__Q34Game10KumaChappy3ObjFv = .text:0x80299FB0; // type:function size:0x260 scope:global align:4 +getSearchedTarget__Q34Game10KumaChappy3ObjFv = .text:0x8029A210; // type:function size:0x6C scope:global align:4 +updateTargetDistance__Q34Game10KumaChappy3ObjFv = .text:0x8029A27C; // type:function size:0x128 scope:global align:4 +updateHomePosition__Q34Game10KumaChappy3ObjFv = .text:0x8029A3A4; // type:function size:0xBC scope:global align:4 +createChappyRelation__Q34Game10KumaChappy3ObjFv = .text:0x8029A460; // type:function size:0x70 scope:global align:4 +startEnemyRumble__Q34Game10KumaChappy3ObjFv = .text:0x8029A4D0; // type:function size:0x7C scope:global align:4 +__dt__Q24Game14ChappyRelationFv = .text:0x8029A54C; // type:function size:0x60 scope:weak align:4 +getMouthSlots__Q34Game10KumaChappy3ObjFv = .text:0x8029A5AC; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game10KumaChappy3ObjFv = .text:0x8029A5B4; // type:function size:0x8 scope:weak align:4 +getChappyRelation__Q34Game10KumaChappy3ObjFv = .text:0x8029A5BC; // type:function size:0x8 scope:weak align:4 +@760@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8029A5C4; // type:function size:0x14 scope:weak align:4 +@760@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029A5D8; // type:function size:0x14 scope:weak align:4 +@760@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029A5EC; // type:function size:0x14 scope:weak align:4 +@760@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029A600; // type:function size:0x14 scope:weak align:4 +@760@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029A614; // type:function size:0x14 scope:weak align:4 +@760@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8029A628; // type:function size:0x14 scope:weak align:4 +init__Q34Game7Fuefuki3FSMFPQ24Game9EnemyBase = .text:0x8029A63C; // type:function size:0x324 scope:global align:4 +init__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029A960; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBase = .text:0x8029A9BC; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBase = .text:0x8029AA00; // type:function size:0x4 scope:global align:4 +init__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029AA04; // type:function size:0xA0 scope:global align:4 +exec__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBase = .text:0x8029AAA4; // type:function size:0x5C scope:global align:4 +cleanup__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBase = .text:0x8029AB00; // type:function size:0x4 scope:global align:4 +init__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029AB04; // type:function size:0x18C scope:global align:4 +exec__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBase = .text:0x8029AC90; // type:function size:0x124 scope:global align:4 +cleanup__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBase = .text:0x8029ADB4; // type:function size:0x50 scope:global align:4 +init__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029AE04; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBase = .text:0x8029AE60; // type:function size:0x30C scope:global align:4 +cleanup__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBase = .text:0x8029B16C; // type:function size:0x10 scope:global align:4 +init__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B17C; // type:function size:0x60 scope:global align:4 +exec__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBase = .text:0x8029B1DC; // type:function size:0x11C scope:global align:4 +cleanup__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBase = .text:0x8029B2F8; // type:function size:0x24 scope:global align:4 +init__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B31C; // type:function size:0x60 scope:global align:4 +exec__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBase = .text:0x8029B37C; // type:function size:0x248 scope:global align:4 +cleanup__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBase = .text:0x8029B5C4; // type:function size:0x24 scope:global align:4 +init__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B5E8; // type:function size:0x50 scope:global align:4 +exec__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBase = .text:0x8029B638; // type:function size:0x1CC scope:global align:4 +cleanup__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBase = .text:0x8029B804; // type:function size:0x3C scope:global align:4 +init__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B840; // type:function size:0x68 scope:global align:4 +exec__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBase = .text:0x8029B8A8; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBase = .text:0x8029B9B4; // type:function size:0x64 scope:global align:4 +init__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029BA18; // type:function size:0x68 scope:global align:4 +exec__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBase = .text:0x8029BA80; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBase = .text:0x8029BB8C; // type:function size:0x38 scope:global align:4 +setAnimMgr__Q34Game7Fuefuki14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8029BBC4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Fuefuki14ProperAnimatorFi = .text:0x8029BBCC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Fuefuki14ProperAnimatorFv = .text:0x8029BBD4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Fuefuki14ProperAnimatorFv = .text:0x8029BC30; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Fuefuki3MgrFiUc = .text:0x8029BC38; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Fuefuki3MgrFv = .text:0x8029BC88; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Fuefuki5ParmsFv = .text:0x8029BCD0; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game7Fuefuki5Parms11ProperParmsFv = .text:0x8029BD18; // type:function size:0x270 scope:weak align:4 +createObj__Q34Game7Fuefuki3MgrFi = .text:0x8029BF88; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Fuefuki3ObjFv = .text:0x8029BFE8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Fuefuki3MgrFi = .text:0x8029C0A4; // type:function size:0x10 scope:global align:4 +read__Q34Game7Fuefuki5ParmsFR6Stream = .text:0x8029C0B4; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Fuefuki3MgrFv = .text:0x8029C104; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Fuefuki3MgrFv = .text:0x8029C1B4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Fuefuki3MgrFv = .text:0x8029C1BC; // type:function size:0x8 scope:weak align:4 +actEnemy__Q24Game25InteractFuefukiTimerResetFPQ24Game9EnemyBase = .text:0x8029C1C4; // type:function size:0x58 scope:global align:4 +__ct__Q34Game7Fuefuki3ObjFv = .text:0x8029C21C; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game7Fuefuki3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8029C35C; // type:function size:0x4 scope:global align:4 +birth__Q34Game7Fuefuki3ObjFR10Vector3f = .text:0x8029C360; // type:function size:0x30 scope:global align:4 +onInit__Q34Game7Fuefuki3ObjFPQ24Game15CreatureInitArg = .text:0x8029C390; // type:function size:0x88 scope:global align:4 +onKill__Q34Game7Fuefuki3ObjFPQ24Game15CreatureKillArg = .text:0x8029C418; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game7Fuefuki3ObjFv = .text:0x8029C46C; // type:function size:0x78 scope:global align:4 +doDirectDraw__Q34Game7Fuefuki3ObjFR8Graphics = .text:0x8029C4E4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Fuefuki3ObjFR8Graphics = .text:0x8029C4E8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7Fuefuki3ObjFPQ34Game7Fuefuki3FSM = .text:0x8029C508; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7Fuefuki3ObjFRQ24Game11ShadowParam = .text:0x8029C554; // type:function size:0xA4 scope:global align:4 +pressCallBack__Q34Game7Fuefuki3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8029C5F8; // type:function size:0x68 scope:global align:4 +hipdropCallBack__Q34Game7Fuefuki3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8029C660; // type:function size:0x68 scope:global align:4 +doStartStoneState__Q34Game7Fuefuki3ObjFv = .text:0x8029C6C8; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game7Fuefuki3ObjFv = .text:0x8029C70C; // type:function size:0x44 scope:global align:4 +doStartEarthquakeFitState__Q34Game7Fuefuki3ObjFv = .text:0x8029C750; // type:function size:0x44 scope:global align:4 +doFinishEarthquakeFitState__Q34Game7Fuefuki3ObjFv = .text:0x8029C794; // type:function size:0x44 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game7Fuefuki3ObjFv = .text:0x8029C7D8; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game7Fuefuki3ObjFv = .text:0x8029C80C; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game7Fuefuki3ObjFv = .text:0x8029C840; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game7Fuefuki3ObjFv = .text:0x8029C868; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7Fuefuki3ObjFv = .text:0x8029C888; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game7Fuefuki3ObjFv = .text:0x8029C8A8; // type:function size:0xC0 scope:global align:4 +resetAppearTimer__Q34Game7Fuefuki3ObjFv = .text:0x8029C968; // type:function size:0x78 scope:global align:4 +resetWhisleTimer__Q34Game7Fuefuki3ObjFb = .text:0x8029C9E0; // type:function size:0x2C scope:global align:4 +isWhisleTimeMax__Q34Game7Fuefuki3ObjFv = .text:0x8029CA0C; // type:function size:0x78 scope:global align:4 +startWhisle__Q34Game7Fuefuki3ObjFv = .text:0x8029CA84; // type:function size:0x38 scope:global align:4 +updateWhisle__Q34Game7Fuefuki3ObjFv = .text:0x8029CABC; // type:function size:0x324 scope:global align:4 +finishWhisle__Q34Game7Fuefuki3ObjFv = .text:0x8029CDE0; // type:function size:0x38 scope:global align:4 +setTargetPosition__Q34Game7Fuefuki3ObjFb = .text:0x8029CE18; // type:function size:0x2A0 scope:global align:4 +isJumpAway__Q34Game7Fuefuki3ObjFv = .text:0x8029D0B8; // type:function size:0x1E0 scope:global align:4 +isArriveTarget__Q34Game7Fuefuki3ObjFv = .text:0x8029D298; // type:function size:0x48 scope:global align:4 +createFootmarks__Q34Game7Fuefuki3ObjFv = .text:0x8029D2E0; // type:function size:0x50 scope:global align:4 +updateFootmarks__Q34Game7Fuefuki3ObjFv = .text:0x8029D330; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game7Fuefuki3ObjFv = .text:0x8029D3EC; // type:function size:0x19C scope:global align:4 +startWhisleEffect__Q34Game7Fuefuki3ObjFv = .text:0x8029D588; // type:function size:0x9C scope:global align:4 +updateWhisleEffect__Q34Game7Fuefuki3ObjFf = .text:0x8029D624; // type:function size:0x78 scope:global align:4 +finishWhisleEffect__Q34Game7Fuefuki3ObjFv = .text:0x8029D69C; // type:function size:0x50 scope:global align:4 +fade__Q23efx7TCursorFv = .text:0x8029D6EC; // type:function size:0x2C scope:weak align:4 +createDownEffect__Q34Game7Fuefuki3ObjFf = .text:0x8029D718; // type:function size:0x78 scope:global align:4 +createEfxHamon__Q34Game7Fuefuki3ObjFv = .text:0x8029D790; // type:function size:0x48 scope:global align:4 +effectDrawOn__Q34Game7Fuefuki3ObjFv = .text:0x8029D7D8; // type:function size:0x50 scope:global align:4 +endDemoDrawOn__Q23efx11TOneEmitterFv = .text:0x8029D828; // type:function size:0x1C scope:weak align:4 +effectDrawOff__Q34Game7Fuefuki3ObjFv = .text:0x8029D844; // type:function size:0x50 scope:global align:4 +startDemoDrawOff__Q23efx11TOneEmitterFv = .text:0x8029D894; // type:function size:0x1C scope:weak align:4 +getName__Q23efx9ArgCursorFv = .text:0x8029D8B0; // type:function size:0xC scope:weak align:4 +__dt__Q23efx11TFuebugOnpaFv = .text:0x8029D8BC; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game7Fuefuki3ObjFPQ24Game8WaterBox = .text:0x8029D958; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Fuefuki3ObjFv = .text:0x8029D95C; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Fuefuki3ObjFv = .text:0x8029D960; // type:function size:0x8 scope:weak align:4 +getFootmarks__Q34Game7Fuefuki3ObjFv = .text:0x8029D968; // type:function size:0x8 scope:weak align:4 +@756@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8029D970; // type:function size:0x14 scope:weak align:4 +@756@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029D984; // type:function size:0x14 scope:weak align:4 +@756@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029D998; // type:function size:0x14 scope:weak align:4 +@756@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029D9AC; // type:function size:0x14 scope:weak align:4 +@756@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029D9C0; // type:function size:0x14 scope:weak align:4 +@756@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8029D9D4; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx11TFuebugOnpaFv = .text:0x8029D9E8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11Koganemushi3MgrFiUc = .text:0x8029D9F0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11Koganemushi3MgrFv = .text:0x8029DA40; // type:function size:0x48 scope:global align:4 +createObj__Q34Game11Koganemushi3MgrFi = .text:0x8029DA88; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11Koganemushi3ObjFv = .text:0x8029DAE8; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11Koganemushi3MgrFi = .text:0x8029DBD4; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11Koganemushi3MgrFv = .text:0x8029DBE4; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11Koganemushi3MgrFv = .text:0x8029DC64; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11Koganemushi3MgrFv = .text:0x8029DD2C; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11Koganemushi3MgrFv = .text:0x8029DD34; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11Koganemushi3MgrFv = .text:0x8029DD3C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11Koganemushi3ObjFv = .text:0x8029DD44; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game11Koganemushi3ObjFv = .text:0x8029DDD4; // type:function size:0x1F0 scope:global align:4 +createItem__Q34Game11Koganemushi3ObjFv = .text:0x8029DFC4; // type:function size:0x11C scope:global align:4 +createPressSENormal__Q34Game11Koganemushi3ObjFv = .text:0x8029E0E0; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game11Koganemushi3ObjFv = .text:0x8029E124; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Ftank3MgrFiUc = .text:0x8029E12C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Ftank3MgrFv = .text:0x8029E17C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game5Ftank3MgrFi = .text:0x8029E1C4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Ftank3ObjFv = .text:0x8029E224; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game5Ftank3MgrFi = .text:0x8029E314; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game5Ftank3MgrFv = .text:0x8029E324; // type:function size:0x80 scope:global align:4 +__dt__Q34Game5Ftank3MgrFv = .text:0x8029E3A4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game5Ftank3MgrFv = .text:0x8029E46C; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game5Ftank3MgrFv = .text:0x8029E474; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game5Ftank3MgrFv = .text:0x8029E47C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Ftank3ObjFv = .text:0x8029E484; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game5Ftank3ObjFv = .text:0x8029E528; // type:function size:0x1A4 scope:global align:4 +createEffect__Q34Game5Ftank3ObjFv = .text:0x8029E6CC; // type:function size:0x48 scope:global align:4 +__ct__Q23efx11TTankEffectFPA4_f = .text:0x8029E714; // type:function size:0x1FC scope:weak align:4 +__dt__Q23efx15TTankFireYodareFv = .text:0x8029E910; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TTankFireINDFv = .text:0x8029E9AC; // type:function size:0xC0 scope:weak align:4 +__dt__Q23efx12TTankFireHitFv = .text:0x8029EA6C; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game5Ftank3ObjFv = .text:0x8029EAF0; // type:function size:0x54 scope:global align:4 +startEffect__Q34Game5Ftank3ObjFv = .text:0x8029EB44; // type:function size:0x34 scope:global align:4 +startYodare__Q34Game5Ftank3ObjFv = .text:0x8029EB78; // type:function size:0x54 scope:global align:4 +fade__Q23efx9TTankFireFv = .text:0x8029EBCC; // type:function size:0x50 scope:weak align:4 +fade__Q23efx12TTankFireABCFv = .text:0x8029EC1C; // type:function size:0x48 scope:weak align:4 +finishEffect__Q34Game5Ftank3ObjFv = .text:0x8029EC64; // type:function size:0x50 scope:global align:4 +effectDrawOn__Q34Game5Ftank3ObjFv = .text:0x8029ECB4; // type:function size:0x64 scope:global align:4 +endDemoDrawOn__Q23efx12TTankFireABCFv = .text:0x8029ED18; // type:function size:0x40 scope:weak align:4 +effectDrawOff__Q34Game5Ftank3ObjFv = .text:0x8029ED58; // type:function size:0x64 scope:global align:4 +startDemoDrawOff__Q23efx12TTankFireABCFv = .text:0x8029EDBC; // type:function size:0x40 scope:weak align:4 +interactCreature__Q34Game5Ftank3ObjFPQ24Game8Creature = .text:0x8029EDFC; // type:function size:0x60 scope:global align:4 +stopEffectRadius__Q34Game5Ftank3ObjFf = .text:0x8029EE5C; // type:function size:0x10 scope:global align:4 +createChargeSE__Q34Game5Ftank3ObjFv = .text:0x8029EE6C; // type:function size:0x44 scope:global align:4 +createDisChargeSE__Q34Game5Ftank3ObjFv = .text:0x8029EEB0; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game5Ftank3ObjFv = .text:0x8029EEF4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TTankFireHitFv = .text:0x8029EEFC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TTankFireYodareFv = .text:0x8029EF04; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x8029EF0C; // type:function size:0x5C scope:global align:4 +setPlantSlot__Q34Game4Cave13RandPlantUnitFv = .text:0x8029EF68; // type:function size:0xDC scope:global align:4 +getPlantSetMapNode__Q34Game4Cave13RandPlantUnitFPPQ34Game4Cave7BaseGen = .text:0x8029F044; // type:function size:0x134 scope:global align:4 +getPlantUnit__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave7BaseGen = .text:0x8029F178; // type:function size:0x68 scope:global align:4 +isPlantSet__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8029F1E0; // type:function size:0x48 scope:global align:4 +init__Q34Game12Hanachirashi3FSMFPQ24Game9EnemyBase = .text:0x8029F228; // type:function size:0x480 scope:global align:4 +init__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029F6A8; // type:function size:0xAC scope:global align:4 +exec__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBase = .text:0x8029F754; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBase = .text:0x8029F80C; // type:function size:0x4 scope:global align:4 +init__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029F810; // type:function size:0x54 scope:global align:4 +exec__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBase = .text:0x8029F864; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBase = .text:0x8029F99C; // type:function size:0x4 scope:global align:4 +init__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029F9A0; // type:function size:0x4C scope:global align:4 +exec__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBase = .text:0x8029F9EC; // type:function size:0x1A0 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBase = .text:0x8029FB8C; // type:function size:0x4 scope:global align:4 +init__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029FB90; // type:function size:0x30 scope:global align:4 +exec__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBase = .text:0x8029FBC0; // type:function size:0x530 scope:global align:4 +cleanup__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBase = .text:0x802A00F0; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0114; // type:function size:0x124 scope:global align:4 +exec__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBase = .text:0x802A0238; // type:function size:0x37C scope:global align:4 +cleanup__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBase = .text:0x802A05B4; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A05D8; // type:function size:0x90 scope:global align:4 +exec__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBase = .text:0x802A0668; // type:function size:0x11C scope:global align:4 +cleanup__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBase = .text:0x802A0784; // type:function size:0x54 scope:global align:4 +init__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A07D8; // type:function size:0x68 scope:global align:4 +exec__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBase = .text:0x802A0840; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBase = .text:0x802A09E4; // type:function size:0x38 scope:global align:4 +init__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0A1C; // type:function size:0x70 scope:global align:4 +exec__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBase = .text:0x802A0A8C; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBase = .text:0x802A0B0C; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0B30; // type:function size:0x68 scope:global align:4 +exec__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBase = .text:0x802A0B98; // type:function size:0x114 scope:global align:4 +cleanup__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBase = .text:0x802A0CAC; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0CD0; // type:function size:0x64 scope:global align:4 +exec__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBase = .text:0x802A0D34; // type:function size:0xEC scope:global align:4 +cleanup__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBase = .text:0x802A0E20; // type:function size:0x38 scope:global align:4 +init__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0E58; // type:function size:0x64 scope:global align:4 +exec__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802A0EBC; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802A0FA0; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0FC4; // type:function size:0x64 scope:global align:4 +exec__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802A1028; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802A1128; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A114C; // type:function size:0x68 scope:global align:4 +exec__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBase = .text:0x802A11B4; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBase = .text:0x802A1290; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game12Hanachirashi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802A12B4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game12Hanachirashi14ProperAnimatorFi = .text:0x802A12BC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game12Hanachirashi14ProperAnimatorFv = .text:0x802A12C4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game12Hanachirashi14ProperAnimatorFv = .text:0x802A1320; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12Hanachirashi3MgrFiUc = .text:0x802A1328; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12Hanachirashi3MgrFv = .text:0x802A1378; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12Hanachirashi5ParmsFv = .text:0x802A13C0; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game12Hanachirashi5Parms11ProperParmsFv = .text:0x802A1408; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game12Hanachirashi3MgrFi = .text:0x802A1644; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12Hanachirashi3ObjFv = .text:0x802A16A4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game12Hanachirashi3MgrFi = .text:0x802A1760; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game12Hanachirashi3MgrFv = .text:0x802A1770; // type:function size:0x12C scope:global align:4 +createModel__Q34Game12Hanachirashi3MgrFv = .text:0x802A189C; // type:function size:0x13C scope:global align:4 +__dt__Q34Game12Hanachirashi3MgrFv = .text:0x802A19D8; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game12Hanachirashi3MgrFv = .text:0x802A1A88; // type:function size:0x8 scope:weak align:4 +read__Q34Game12Hanachirashi5ParmsFR6Stream = .text:0x802A1A90; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game12Hanachirashi3MgrFv = .text:0x802A1AE0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12Hanachirashi3ObjFv = .text:0x802A1AE8; // type:function size:0x15C scope:global align:4 +setInitialSetting__Q34Game12Hanachirashi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802A1C44; // type:function size:0x4 scope:global align:4 +onInit__Q34Game12Hanachirashi3ObjFPQ24Game15CreatureInitArg = .text:0x802A1C48; // type:function size:0xF4 scope:global align:4 +onKill__Q34Game12Hanachirashi3ObjFPQ24Game15CreatureKillArg = .text:0x802A1D3C; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game12Hanachirashi3ObjFv = .text:0x802A1D80; // type:function size:0x50 scope:global align:4 +changeMaterial__Q34Game12Hanachirashi3ObjFv = .text:0x802A1DD0; // type:function size:0xD4 scope:global align:4 +setFSM__Q34Game12Hanachirashi3ObjFPQ34Game12Hanachirashi3FSM = .text:0x802A1EA4; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game12Hanachirashi3ObjFR8Graphics = .text:0x802A1EF0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game12Hanachirashi3ObjFR8Graphics = .text:0x802A1EF4; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game12Hanachirashi3ObjFRQ24Game11ShadowParam = .text:0x802A1F14; // type:function size:0x168 scope:global align:4 +doStartStoneState__Q34Game12Hanachirashi3ObjFv = .text:0x802A207C; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game12Hanachirashi3ObjFv = .text:0x802A20B8; // type:function size:0x7C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game12Hanachirashi3ObjFv = .text:0x802A2134; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game12Hanachirashi3ObjFv = .text:0x802A2168; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game12Hanachirashi3ObjFv = .text:0x802A219C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game12Hanachirashi3ObjFv = .text:0x802A21BC; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game12Hanachirashi3ObjFv = .text:0x802A21DC; // type:function size:0x64 scope:global align:4 +getThrowupItemPosition__Q34Game12Hanachirashi3ObjFP10Vector3 = .text:0x802A2240; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game12Hanachirashi3ObjFP10Vector3 = .text:0x802A2290; // type:function size:0x40 scope:global align:4 +getHeadJointPos__Q34Game12Hanachirashi3ObjFv = .text:0x802A22D0; // type:function size:0x50 scope:global align:4 +setHeightVelocity__Q34Game12Hanachirashi3ObjFv = .text:0x802A2320; // type:function size:0x11C scope:global align:4 +setRandTarget__Q34Game12Hanachirashi3ObjFv = .text:0x802A243C; // type:function size:0x1D8 scope:global align:4 +resetShadowOffset__Q34Game12Hanachirashi3ObjFv = .text:0x802A2614; // type:function size:0xC scope:global align:4 +setShadowOffsetMax__Q34Game12Hanachirashi3ObjFv = .text:0x802A2620; // type:function size:0xC scope:global align:4 +addShadowOffset__Q34Game12Hanachirashi3ObjFv = .text:0x802A262C; // type:function size:0x28 scope:global align:4 +subShadowOffset__Q34Game12Hanachirashi3ObjFv = .text:0x802A2654; // type:function size:0x28 scope:global align:4 +resetShadowRadius__Q34Game12Hanachirashi3ObjFv = .text:0x802A267C; // type:function size:0xC scope:global align:4 +subShadowRadius__Q34Game12Hanachirashi3ObjFv = .text:0x802A2688; // type:function size:0x2C scope:global align:4 +updateFallTimer__Q34Game12Hanachirashi3ObjFv = .text:0x802A26B4; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game12Hanachirashi3ObjFv = .text:0x802A26E4; // type:function size:0xA4 scope:global align:4 +addPitchRatio__Q34Game12Hanachirashi3ObjFv = .text:0x802A2788; // type:function size:0x38 scope:global align:4 +getSearchedPikmin__Q34Game12Hanachirashi3ObjFv = .text:0x802A27C0; // type:function size:0x3D4 scope:global align:4 +isTargetLost__Q34Game12Hanachirashi3ObjFv = .text:0x802A2B94; // type:function size:0x2F0 scope:global align:4 +isAttackable__Q34Game12Hanachirashi3ObjFv = .text:0x802A2E84; // type:function size:0x38C scope:global align:4 +updateEmit__Q34Game12Hanachirashi3ObjFv = .text:0x802A3210; // type:function size:0x1AC scope:global align:4 +getAttackPosition__Q34Game12Hanachirashi3ObjFv = .text:0x802A33BC; // type:function size:0x1E8 scope:global align:4 +windTarget__Q34Game12Hanachirashi3ObjFv = .text:0x802A35A4; // type:function size:0x90C scope:global align:4 +createEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A3EB0; // type:function size:0x150 scope:global align:4 +setupEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A4000; // type:function size:0x4C scope:global align:4 +startDeadEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A404C; // type:function size:0x7C scope:global align:4 +createSuckEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A40C8; // type:function size:0x34 scope:global align:4 +startWindEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A40FC; // type:function size:0x90 scope:global align:4 +finishWindEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A418C; // type:function size:0x78 scope:global align:4 +createDownEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A4204; // type:function size:0x74 scope:global align:4 +getDownSmokeScale__Q34Game12Hanachirashi3ObjFv = .text:0x802A4278; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game12Hanachirashi3ObjFv = .text:0x802A4280; // type:function size:0x78 scope:global align:4 +effectDrawOff__Q34Game12Hanachirashi3ObjFv = .text:0x802A42F8; // type:function size:0x78 scope:global align:4 +inWaterCallback__Q34Game12Hanachirashi3ObjFPQ24Game8WaterBox = .text:0x802A4370; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game12Hanachirashi3ObjFv = .text:0x802A4374; // type:function size:0x4 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game12Hanachirashi3ObjFv = .text:0x802A4378; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game12Hanachirashi3ObjFv = .text:0x802A437C; // type:function size:0x8 scope:weak align:4 +@812@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802A4384; // type:function size:0x14 scope:weak align:4 +@812@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A4398; // type:function size:0x14 scope:weak align:4 +@812@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A43AC; // type:function size:0x14 scope:weak align:4 +@812@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A43C0; // type:function size:0x14 scope:weak align:4 +@812@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A43D4; // type:function size:0x14 scope:weak align:4 +@812@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802A43E8; // type:function size:0x14 scope:weak align:4 +init__Q34Game8Damagumo3FSMFPQ24Game9EnemyBase = .text:0x802A43FC; // type:function size:0x224 scope:global align:4 +init__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4620; // type:function size:0xCC scope:global align:4 +exec__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBase = .text:0x802A46EC; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBase = .text:0x802A4778; // type:function size:0x4 scope:global align:4 +init__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A477C; // type:function size:0x84 scope:global align:4 +exec__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBase = .text:0x802A4800; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBase = .text:0x802A48B8; // type:function size:0x4 scope:global align:4 +init__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A48BC; // type:function size:0xB4 scope:global align:4 +exec__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBase = .text:0x802A4970; // type:function size:0x1E8 scope:global align:4 +cleanup__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBase = .text:0x802A4B58; // type:function size:0x5C scope:global align:4 +init__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4BB4; // type:function size:0x98 scope:global align:4 +exec__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBase = .text:0x802A4C4C; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBase = .text:0x802A4D40; // type:function size:0x4 scope:global align:4 +init__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4D44; // type:function size:0x64 scope:global align:4 +exec__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBase = .text:0x802A4DA8; // type:function size:0xC8 scope:global align:4 +cleanup__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBase = .text:0x802A4E70; // type:function size:0x24 scope:global align:4 +init__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4E94; // type:function size:0x98 scope:global align:4 +exec__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBase = .text:0x802A4F2C; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBase = .text:0x802A502C; // type:function size:0x4 scope:global align:4 +__sinit_DamagumoState_cpp = .text:0x802A5030; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game8Damagumo14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802A5058; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8Damagumo14ProperAnimatorFi = .text:0x802A5060; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8Damagumo14ProperAnimatorFv = .text:0x802A5068; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8Damagumo14ProperAnimatorFv = .text:0x802A50C4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Damagumo3MgrFiUc = .text:0x802A50CC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8Damagumo3MgrFv = .text:0x802A511C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8Damagumo5ParmsFv = .text:0x802A5164; // type:function size:0x1C8 scope:weak align:4 +createObj__Q34Game8Damagumo3MgrFi = .text:0x802A532C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8Damagumo3ObjFv = .text:0x802A538C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8Damagumo3MgrFi = .text:0x802A5448; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game8Damagumo3MgrFv = .text:0x802A5458; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game8Damagumo3MgrFv = .text:0x802A54C0; // type:function size:0x12C scope:global align:4 +createModel__Q34Game8Damagumo3MgrFv = .text:0x802A55EC; // type:function size:0x7C scope:global align:4 +__dt__Q34Game8Damagumo3MgrFv = .text:0x802A5668; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8Damagumo3MgrFv = .text:0x802A5718; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Damagumo3MgrFPv = .text:0x802A5720; // type:function size:0x2C scope:weak align:4 +read__Q34Game8Damagumo5ParmsFR6Stream = .text:0x802A574C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8Damagumo3MgrFv = .text:0x802A579C; // type:function size:0x8 scope:weak align:4 +invokeOnGround__Q34Game8Damagumo22DamagumoGroundCallBackFiPQ24Game8WaterBox = .text:0x802A57A4; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game8Damagumo22DamagumoGroundCallBackFiPQ24Game8WaterBox = .text:0x802A57C8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8Damagumo3ObjFv = .text:0x802A57EC; // type:function size:0x16C scope:global align:4 +constructor__Q34Game8Damagumo3ObjFv = .text:0x802A5958; // type:function size:0x34 scope:global align:4 +setInitialSetting__Q34Game8Damagumo3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802A598C; // type:function size:0x4 scope:global align:4 +onInit__Q34Game8Damagumo3ObjFPQ24Game15CreatureInitArg = .text:0x802A5990; // type:function size:0x134 scope:global align:4 +doUpdate__Q34Game8Damagumo3ObjFv = .text:0x802A5AC4; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game8Damagumo3ObjFv = .text:0x802A5B14; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game8Damagumo3ObjFv = .text:0x802A5B48; // type:function size:0x98 scope:global align:4 +doDirectDraw__Q34Game8Damagumo3ObjFR8Graphics = .text:0x802A5BE0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8Damagumo3ObjFR8Graphics = .text:0x802A5BE4; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game8Damagumo3ObjFPQ34Game8Damagumo3FSM = .text:0x802A5C04; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game8Damagumo3ObjFRQ24Game11ShadowParam = .text:0x802A5C50; // type:function size:0x3C scope:global align:4 +needShadow__Q34Game8Damagumo3ObjFv = .text:0x802A5C8C; // type:function size:0x50 scope:global align:4 +damageCallBack__Q34Game8Damagumo3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802A5CDC; // type:function size:0x9C scope:global align:4 +collisionCallback__Q34Game8Damagumo3ObjFRQ24Game9CollEvent = .text:0x802A5D78; // type:function size:0x1AC scope:global align:4 +doStartStoneState__Q34Game8Damagumo3ObjFv = .text:0x802A5F24; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game8Damagumo3ObjFv = .text:0x802A5F58; // type:function size:0x5C scope:global align:4 +doStartMovie__Q34Game8Damagumo3ObjFv = .text:0x802A5FB4; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game8Damagumo3ObjFv = .text:0x802A5FD4; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game8Damagumo3ObjFP10Vector3 = .text:0x802A5FF4; // type:function size:0x60 scope:global align:4 +getThrowupItemVelocity__Q34Game8Damagumo3ObjFP10Vector3 = .text:0x802A6054; // type:function size:0x14 scope:global align:4 +getTargetPosition__Q34Game8Damagumo3ObjFv = .text:0x802A6068; // type:function size:0x298 scope:global align:4 +createIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A6300; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A640C; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game8Damagumo3ObjFv = .text:0x802A6530; // type:function size:0x90 scope:global align:4 +setIKSystemTargetPosition__Q34Game8Damagumo3ObjFR10Vector3 = .text:0x802A65C0; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A65E0; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A6640; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A66A0; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game8Damagumo3ObjFv = .text:0x802A66C4; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A66E8; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A670C; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A6730; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A6754; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game8Damagumo3ObjFv = .text:0x802A6778; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game8Damagumo3ObjFv = .text:0x802A679C; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game8Damagumo3ObjFv = .text:0x802A67C0; // type:function size:0x20 scope:global align:4 +isCollisionCheck__Q34Game8Damagumo3ObjFP8CollPart = .text:0x802A67E0; // type:function size:0x24 scope:global align:4 +createShadowSystem__Q34Game8Damagumo3ObjFv = .text:0x802A6804; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game8Damagumo3ObjFv = .text:0x802A684C; // type:function size:0x74 scope:global align:4 +doAnimationShadowSystem__Q34Game8Damagumo3ObjFv = .text:0x802A68C0; // type:function size:0x24 scope:global align:4 +createMaterialAnimation__Q34Game8Damagumo3ObjFv = .text:0x802A68E4; // type:function size:0x4C scope:global align:4 +startMaterialAnimation__Q34Game8Damagumo3ObjFv = .text:0x802A6930; // type:function size:0x60 scope:global align:4 +updateMaterialAnimation__Q34Game8Damagumo3ObjFv = .text:0x802A6990; // type:function size:0x13C scope:global align:4 +setupCollision__Q34Game8Damagumo3ObjFv = .text:0x802A6ACC; // type:function size:0x90 scope:global align:4 +createItemAndEnemy__Q34Game8Damagumo3ObjFv = .text:0x802A6B5C; // type:function size:0x8C scope:global align:4 +startBossFlickBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6BE8; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6CB0; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6DAC; // type:function size:0xC4 scope:global align:4 +setBossAppearBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6E70; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game8Damagumo3ObjFv = .text:0x802A6F2C; // type:function size:0x5BC scope:global align:4 +__dt__Q23efx12TChasePosPosFv = .text:0x802A74E8; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game8Damagumo3ObjFv = .text:0x802A756C; // type:function size:0x184 scope:global align:4 +createOnGroundEffect__Q34Game8Damagumo3ObjFiPQ24Game8WaterBox = .text:0x802A76F0; // type:function size:0x1F0 scope:global align:4 +createOffGroundEffect__Q34Game8Damagumo3ObjFiPQ24Game8WaterBox = .text:0x802A78E0; // type:function size:0x128 scope:global align:4 +startPinchJointEffect__Q34Game8Damagumo3ObjFv = .text:0x802A7A08; // type:function size:0x1A0 scope:global align:4 +finishPinchJointEffect__Q34Game8Damagumo3ObjFv = .text:0x802A7BA8; // type:function size:0x58 scope:global align:4 +startDeadEffect__Q34Game8Damagumo3ObjFv = .text:0x802A7C00; // type:function size:0x1C0 scope:global align:4 +updatePinchLife__Q34Game8Damagumo3ObjFv = .text:0x802A7DC0; // type:function size:0x250 scope:global align:4 +effectDrawOn__Q34Game8Damagumo3ObjFv = .text:0x802A8010; // type:function size:0x198 scope:global align:4 +effectDrawOff__Q34Game8Damagumo3ObjFv = .text:0x802A81A8; // type:function size:0x198 scope:global align:4 +addShadowScale__Q34Game8Damagumo3ObjFv = .text:0x802A8340; // type:function size:0x38 scope:global align:4 +__dt__Q23efx16TDamaDeadHahenC2Fv = .text:0x802A8378; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TDamaDeadHahenC1Fv = .text:0x802A8414; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TDamaSmokeFv = .text:0x802A84B0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TDamaDeadHahenBFv = .text:0x802A854C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TDamaDeadHahenAFv = .text:0x802A85E8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TDamaDeadElecBFv = .text:0x802A8684; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TDamaDeadElecAFv = .text:0x802A8720; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TDamaHahenFv = .text:0x802A87BC; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TDamaFootwFv = .text:0x802A8858; // type:function size:0x9C scope:weak align:4 +satisfy__Q24Game23ConditionNotStickClientFPQ24Game4Piki = .text:0x802A88F4; // type:function size:0x88 scope:weak align:4 +inWaterCallback__Q34Game8Damagumo3ObjFPQ24Game8WaterBox = .text:0x802A897C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game8Damagumo3ObjFv = .text:0x802A8980; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game8Damagumo3ObjFv = .text:0x802A8984; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game8Damagumo3ObjFv = .text:0x802A898C; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game8Damagumo3ObjFv = .text:0x802A8990; // type:function size:0x8 scope:weak align:4 +__sinit_Damagumo_cpp = .text:0x802A8998; // type:function size:0x28 scope:local align:4 +@1176@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802A89C0; // type:function size:0x14 scope:weak align:4 +@1176@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A89D4; // type:function size:0x14 scope:weak align:4 +@1176@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A89E8; // type:function size:0x14 scope:weak align:4 +@1176@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A89FC; // type:function size:0x14 scope:weak align:4 +@1176@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A8A10; // type:function size:0x14 scope:weak align:4 +@1176@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802A8A24; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx10TDamaFootwFv = .text:0x802A8A38; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TDamaHahenFv = .text:0x802A8A40; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDamaDeadElecAFv = .text:0x802A8A48; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDamaDeadElecBFv = .text:0x802A8A50; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TDamaDeadHahenAFv = .text:0x802A8A58; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TDamaDeadHahenBFv = .text:0x802A8A60; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TDamaSmokeFv = .text:0x802A8A68; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TDamaDeadHahenC1Fv = .text:0x802A8A70; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TDamaDeadHahenC2Fv = .text:0x802A8A78; // type:function size:0x8 scope:weak align:4 +IKJointCallBack__4GameFP8J3DJointi = .text:0x802A8A80; // type:function size:0x38 scope:local align:4 +__ct__Q24Game11IKSystemMgrFv = .text:0x802A8AB8; // type:function size:0x7C scope:global align:4 +init__Q24Game11IKSystemMgrFPQ24Game9EnemyBasePQ24Game19JointGroundCallBack = .text:0x802A8B34; // type:function size:0x144 scope:global align:4 +setupJoint__Q24Game11IKSystemMgrFPQ28SysShape5ModeliPPc = .text:0x802A8C78; // type:function size:0x6C scope:global align:4 +setupCallBack__Q24Game11IKSystemMgrFPQ28SysShape5ModelPc = .text:0x802A8CE4; // type:function size:0x38 scope:global align:4 +setParameters__Q24Game11IKSystemMgrFPQ24Game13IKSystemParms = .text:0x802A8D1C; // type:function size:0x64 scope:global align:4 +startProgramedIK__Q24Game11IKSystemMgrFv = .text:0x802A8D80; // type:function size:0x188 scope:global align:4 +startIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F08; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F2C; // type:function size:0xC scope:global align:4 +forceFinishIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F38; // type:function size:0x14 scope:global align:4 +startBlendMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F4C; // type:function size:0x5C scope:global align:4 +finishBlendMotion__Q24Game11IKSystemMgrFv = .text:0x802A8FA8; // type:function size:0x5C scope:global align:4 +checkJointScaleOn__Q24Game11IKSystemMgrFv = .text:0x802A9004; // type:function size:0x5C scope:global align:4 +isFinishIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A9060; // type:function size:0x70 scope:global align:4 +resetAnimationCallBack__Q24Game11IKSystemMgrFv = .text:0x802A90D0; // type:function size:0xC scope:global align:4 +setAnimationCallBack__Q24Game11IKSystemMgrFv = .text:0x802A90DC; // type:function size:0x8 scope:global align:4 +doUpdate__Q24Game11IKSystemMgrFv = .text:0x802A90E4; // type:function size:0x7C scope:global align:4 +makeMatrix__Q24Game11IKSystemMgrFv = .text:0x802A9160; // type:function size:0x5C scope:global align:4 +getCollisionCentre__Q24Game11IKSystemMgrFi = .text:0x802A91BC; // type:function size:0x38 scope:global align:4 +isCollisionCheck__Q24Game11IKSystemMgrFP8CollPart = .text:0x802A91F4; // type:function size:0x10C scope:global align:4 +updateController__Q24Game11IKSystemMgrFv = .text:0x802A9300; // type:function size:0x308 scope:global align:4 +setNextCentrePosition__Q24Game11IKSystemMgrFv = .text:0x802A9608; // type:function size:0x3DC scope:global align:4 +calcFaceDir__Q24Game11IKSystemMgrFv = .text:0x802A99E4; // type:function size:0xFC scope:global align:4 +calcCentrePosition__Q24Game11IKSystemMgrFv = .text:0x802A9AE0; // type:function size:0x298 scope:global align:4 +calcTraceCentrePosition__Q24Game11IKSystemMgrFv = .text:0x802A9D78; // type:function size:0xE4 scope:global align:4 +__ct__Q24Game12IKSystemBaseFv = .text:0x802A9E5C; // type:function size:0x70 scope:global align:4 +init__Q24Game12IKSystemBaseFv = .text:0x802A9ECC; // type:function size:0x30 scope:global align:4 +setLegJointMatrix__Q24Game12IKSystemBaseFiP7Matrixf = .text:0x802A9EFC; // type:function size:0x10 scope:global align:4 +setParameters__Q24Game12IKSystemBaseFPQ24Game13IKSystemParms = .text:0x802A9F0C; // type:function size:0x8 scope:global align:4 +startProgramedIK__Q24Game12IKSystemBaseFv = .text:0x802A9F14; // type:function size:0xF0 scope:global align:4 +startMovePosition__Q24Game12IKSystemBaseFR10Vector3 = .text:0x802AA004; // type:function size:0xF4 scope:global align:4 +startBlendMotion__Q24Game12IKSystemBaseFv = .text:0x802AA0F8; // type:function size:0xC scope:global align:4 +finishBlendMotion__Q24Game12IKSystemBaseFv = .text:0x802AA104; // type:function size:0xC scope:global align:4 +checkJointScaleOn__Q24Game12IKSystemBaseFv = .text:0x802AA110; // type:function size:0xC scope:global align:4 +update__Q24Game12IKSystemBaseFv = .text:0x802AA11C; // type:function size:0x7C scope:global align:4 +makeMatrix__Q24Game12IKSystemBaseFv = .text:0x802AA198; // type:function size:0xF8 scope:global align:4 +moveBottomJointPosition__Q24Game12IKSystemBaseFv = .text:0x802AA290; // type:function size:0xC4 scope:global align:4 +onGround__Q24Game12IKSystemBaseFv = .text:0x802AA354; // type:function size:0x8 scope:global align:4 +getBottomJointPosition__Q24Game12IKSystemBaseFv = .text:0x802AA35C; // type:function size:0x1C scope:global align:4 +getCollisionCentre__Q24Game12IKSystemBaseFv = .text:0x802AA378; // type:function size:0x4C scope:global align:4 +getMoveRatio__Q24Game12IKSystemBaseFv = .text:0x802AA3C4; // type:function size:0x8 scope:global align:4 +onGroundPosition__Q24Game12IKSystemBaseFv = .text:0x802AA3CC; // type:function size:0x280 scope:global align:4 +makeBendRatio__Q24Game12IKSystemBaseFv = .text:0x802AA64C; // type:function size:0x84 scope:global align:4 +getMiddleDirection__Q24Game12IKSystemBaseFR10Vector3 = .text:0x802AA6D0; // type:function size:0x9C scope:global align:4 +setTopJointRotation__Q24Game12IKSystemBaseFR10Vector3R10Vector3 = .text:0x802AA76C; // type:function size:0x294 scope:global align:4 +setMiddleJointRotation__Q24Game12IKSystemBaseFR10Vector3R10Vector3 = .text:0x802AAA00; // type:function size:0x294 scope:global align:4 +makeBottomMatrix__Q24Game12IKSystemBaseFR10Vector3 = .text:0x802AAC94; // type:function size:0x100 scope:global align:4 +__ct__Q34Game8Damagumo17DamagumoShadowMgrFPQ34Game8Damagumo3Obj = .text:0x802AAD94; // type:function size:0x20C scope:global align:4 +init__Q34Game8Damagumo17DamagumoShadowMgrFv = .text:0x802AAFA0; // type:function size:0x14C scope:global align:4 +setJointPosPtr__Q34Game8Damagumo17DamagumoShadowMgrFiiP10Vector3 = .text:0x802AB0EC; // type:function size:0x18 scope:global align:4 +update__Q34Game8Damagumo17DamagumoShadowMgrFv = .text:0x802AB104; // type:function size:0x39C scope:global align:4 +__dt__Q24Game17TubeShadowSetNodeFv = .text:0x802AB4A0; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game19TubeShadowTransNodeFv = .text:0x802AB510; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game16SphereShadowNodeFv = .text:0x802AB580; // type:function size:0x70 scope:weak align:4 +init__Q34Game6Kurage3FSMFPQ24Game9EnemyBase = .text:0x802AB5F0; // type:function size:0x3D0 scope:global align:4 +init__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AB9C0; // type:function size:0xCC scope:global align:4 +exec__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBase = .text:0x802ABA8C; // type:function size:0x14C scope:global align:4 +cleanup__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBase = .text:0x802ABBD8; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ABBDC; // type:function size:0x5C scope:global align:4 +exec__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBase = .text:0x802ABC38; // type:function size:0x174 scope:global align:4 +cleanup__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBase = .text:0x802ABDAC; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ABDB0; // type:function size:0x74 scope:global align:4 +exec__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBase = .text:0x802ABE24; // type:function size:0x208 scope:global align:4 +cleanup__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBase = .text:0x802AC02C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC030; // type:function size:0x6C scope:global align:4 +exec__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBase = .text:0x802AC09C; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBase = .text:0x802AC1F8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC21C; // type:function size:0x80 scope:global align:4 +exec__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBase = .text:0x802AC29C; // type:function size:0x244 scope:global align:4 +cleanup__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBase = .text:0x802AC4E0; // type:function size:0x38 scope:global align:4 +init__Q34Game6Kurage9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC518; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kurage9StateFallFPQ24Game9EnemyBase = .text:0x802AC580; // type:function size:0x180 scope:global align:4 +cleanup__Q34Game6Kurage9StateFallFPQ24Game9EnemyBase = .text:0x802AC700; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC724; // type:function size:0xC0 scope:global align:4 +exec__Q34Game6Kurage9StateLandFPQ24Game9EnemyBase = .text:0x802AC7E4; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game6Kurage9StateLandFPQ24Game9EnemyBase = .text:0x802AC864; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC888; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802AC8F0; // type:function size:0xF0 scope:global align:4 +cleanup__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802AC9E0; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ACA04; // type:function size:0x60 scope:global align:4 +exec__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBase = .text:0x802ACA64; // type:function size:0x114 scope:global align:4 +cleanup__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBase = .text:0x802ACB78; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ACB9C; // type:function size:0xE0 scope:global align:4 +exec__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802ACC7C; // type:function size:0x17C scope:global align:4 +cleanup__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802ACDF8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ACE1C; // type:function size:0xDC scope:global align:4 +exec__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802ACEF8; // type:function size:0x14C scope:global align:4 +cleanup__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802AD044; // type:function size:0x24 scope:global align:4 +__sinit_KurageState_cpp = .text:0x802AD068; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game6Kurage14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802AD090; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Kurage14ProperAnimatorFi = .text:0x802AD098; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Kurage14ProperAnimatorFv = .text:0x802AD0A0; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Kurage14ProperAnimatorFv = .text:0x802AD0FC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kurage3MgrFiUc = .text:0x802AD104; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Kurage3MgrFv = .text:0x802AD154; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Kurage5ParmsFv = .text:0x802AD19C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game6Kurage5Parms11ProperParmsFv = .text:0x802AD1E4; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game6Kurage3MgrFi = .text:0x802AD420; // type:function size:0x60 scope:global align:4 +__dt__Q34Game6Kurage3ObjFv = .text:0x802AD480; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Kurage3MgrFi = .text:0x802AD53C; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game6Kurage3MgrFv = .text:0x802AD54C; // type:function size:0x68 scope:global align:4 +__dt__Q34Game6Kurage3MgrFv = .text:0x802AD5B4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Kurage3MgrFv = .text:0x802AD664; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Kurage3MgrFPv = .text:0x802AD66C; // type:function size:0x2C scope:weak align:4 +read__Q34Game6Kurage5ParmsFR6Stream = .text:0x802AD698; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Kurage3MgrFv = .text:0x802AD6E8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kurage3ObjFv = .text:0x802AD6F0; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game6Kurage3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802AD828; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Kurage3ObjFPQ24Game15CreatureInitArg = .text:0x802AD82C; // type:function size:0xA8 scope:global align:4 +onKill__Q34Game6Kurage3ObjFPQ24Game15CreatureKillArg = .text:0x802AD8D4; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game6Kurage3ObjFv = .text:0x802AD928; // type:function size:0x100 scope:global align:4 +doDirectDraw__Q34Game6Kurage3ObjFR8Graphics = .text:0x802ADA28; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Kurage3ObjFR8Graphics = .text:0x802ADA2C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Kurage3ObjFPQ34Game6Kurage3FSM = .text:0x802ADA4C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Kurage3ObjFRQ24Game11ShadowParam = .text:0x802ADA98; // type:function size:0x118 scope:global align:4 +damageCallBack__Q34Game6Kurage3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802ADBB0; // type:function size:0x38 scope:global align:4 +doStartStoneState__Q34Game6Kurage3ObjFv = .text:0x802ADBE8; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game6Kurage3ObjFv = .text:0x802ADC2C; // type:function size:0x7C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game6Kurage3ObjFv = .text:0x802ADCA8; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game6Kurage3ObjFv = .text:0x802ADCDC; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game6Kurage3ObjFv = .text:0x802ADD10; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game6Kurage3ObjFv = .text:0x802ADD30; // type:function size:0x20 scope:global align:4 +setHeightVelocity__Q34Game6Kurage3ObjFff = .text:0x802ADD50; // type:function size:0x98 scope:global align:4 +setRandTarget__Q34Game6Kurage3ObjFv = .text:0x802ADDE8; // type:function size:0x1D8 scope:global align:4 +getMovePitchOffset__Q34Game6Kurage3ObjFv = .text:0x802ADFC0; // type:function size:0xA4 scope:global align:4 +getAttackPitchOffset__Q34Game6Kurage3ObjFv = .text:0x802AE064; // type:function size:0x1A8 scope:global align:4 +getFlickPitchOffset__Q34Game6Kurage3ObjFv = .text:0x802AE20C; // type:function size:0x1A8 scope:global align:4 +getTakeOffPitchOffset__Q34Game6Kurage3ObjFv = .text:0x802AE3B4; // type:function size:0x144 scope:global align:4 +getFallPitchOffset__Q34Game6Kurage3ObjFf = .text:0x802AE4F8; // type:function size:0x168 scope:global align:4 +updateFallTimer__Q34Game6Kurage3ObjFv = .text:0x802AE660; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game6Kurage3ObjFv = .text:0x802AE690; // type:function size:0xA4 scope:global align:4 +getSearchedTarget__Q34Game6Kurage3ObjFf = .text:0x802AE734; // type:function size:0x448 scope:global align:4 +isSuck__Q34Game6Kurage3ObjFfPQ24Game8Creature = .text:0x802AEB7C; // type:function size:0x33C scope:global align:4 +suckPikmin__Q34Game6Kurage3ObjFf = .text:0x802AEEB8; // type:function size:0x434 scope:global align:4 +createEffect__Q34Game6Kurage3ObjFv = .text:0x802AF2EC; // type:function size:0x2B4 scope:global align:4 +setupEffect__Q34Game6Kurage3ObjFv = .text:0x802AF5A0; // type:function size:0x8C scope:global align:4 +startEyeHireBodyEffect__Q34Game6Kurage3ObjFv = .text:0x802AF62C; // type:function size:0x88 scope:global align:4 +finishEyeBodyEffect__Q34Game6Kurage3ObjFv = .text:0x802AF6B4; // type:function size:0x7C scope:global align:4 +setHireEffectLife__Q34Game6Kurage3ObjFs = .text:0x802AF730; // type:function size:0x24 scope:global align:4 +finishHireEffect__Q34Game6Kurage3ObjFv = .text:0x802AF754; // type:function size:0x50 scope:global align:4 +startSuckEffect__Q34Game6Kurage3ObjFR10Vector3 = .text:0x802AF7A4; // type:function size:0x58 scope:global align:4 +updateSuckEffect__Q34Game6Kurage3ObjFR10Vector3 = .text:0x802AF7FC; // type:function size:0x24 scope:global align:4 +finishSuckEffect__Q34Game6Kurage3ObjFv = .text:0x802AF820; // type:function size:0x30 scope:global align:4 +createBodyBombEffect__Q34Game6Kurage3ObjFv = .text:0x802AF850; // type:function size:0x9C scope:global align:4 +createDownEffect__Q34Game6Kurage3ObjFv = .text:0x802AF8EC; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game6Kurage3ObjFv = .text:0x802AF930; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game6Kurage3ObjFv = .text:0x802AF938; // type:function size:0xA0 scope:global align:4 +effectDrawOff__Q34Game6Kurage3ObjFv = .text:0x802AF9D8; // type:function size:0xA0 scope:global align:4 +__dt__Q23efx17TNewkurageDeadrunFv = .text:0x802AFA78; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TNewkurageKiraFv = .text:0x802AFB14; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TNewkurageEyeFv = .text:0x802AFBB0; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game6Kurage3ObjFPQ24Game8WaterBox = .text:0x802AFC4C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game6Kurage3ObjFv = .text:0x802AFC50; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Kurage3ObjFv = .text:0x802AFC54; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TNewkurageEyeFv = .text:0x802AFC5C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TNewkurageKiraFv = .text:0x802AFC64; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TNewkurageDeadrunFv = .text:0x802AFC6C; // type:function size:0x8 scope:weak align:4 +init__Q34Game9BombSarai3FSMFPQ24Game9EnemyBase = .text:0x802AFC74; // type:function size:0x480 scope:global align:4 +init__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B00F4; // type:function size:0x94 scope:global align:4 +exec__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBase = .text:0x802B0188; // type:function size:0x134 scope:global align:4 +cleanup__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBase = .text:0x802B02BC; // type:function size:0x4 scope:global align:4 +init__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B02C0; // type:function size:0xB0 scope:global align:4 +exec__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBase = .text:0x802B0370; // type:function size:0x1B4 scope:global align:4 +cleanup__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBase = .text:0x802B0524; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B0554; // type:function size:0x54 scope:global align:4 +exec__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBase = .text:0x802B05A8; // type:function size:0x148 scope:global align:4 +cleanup__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBase = .text:0x802B06F0; // type:function size:0x4 scope:global align:4 +init__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B06F4; // type:function size:0x74 scope:global align:4 +exec__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B0768; // type:function size:0x454 scope:global align:4 +cleanup__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B0BBC; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B0BEC; // type:function size:0x6C scope:global align:4 +exec__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBase = .text:0x802B0C58; // type:function size:0x1CC scope:global align:4 +cleanup__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBase = .text:0x802B0E24; // type:function size:0x4 scope:global align:4 +init__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B0E28; // type:function size:0x80 scope:global align:4 +exec__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B0EA8; // type:function size:0x4E4 scope:global align:4 +cleanup__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B138C; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B13BC; // type:function size:0x80 scope:global align:4 +exec__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBase = .text:0x802B143C; // type:function size:0xAC scope:global align:4 +cleanup__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBase = .text:0x802B14E8; // type:function size:0x38 scope:global align:4 +init__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1520; // type:function size:0x70 scope:global align:4 +exec__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBase = .text:0x802B1590; // type:function size:0x184 scope:global align:4 +cleanup__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBase = .text:0x802B1714; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1744; // type:function size:0xC4 scope:global align:4 +exec__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBase = .text:0x802B1808; // type:function size:0x2D8 scope:global align:4 +cleanup__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBase = .text:0x802B1AE0; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1B10; // type:function size:0x54 scope:global align:4 +exec__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBase = .text:0x802B1B64; // type:function size:0x110 scope:global align:4 +cleanup__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBase = .text:0x802B1C74; // type:function size:0x24 scope:global align:4 +init__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1C98; // type:function size:0x54 scope:global align:4 +exec__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBase = .text:0x802B1CEC; // type:function size:0x110 scope:global align:4 +cleanup__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBase = .text:0x802B1DFC; // type:function size:0x24 scope:global align:4 +init__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1E20; // type:function size:0x4C scope:global align:4 +exec__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBase = .text:0x802B1E6C; // type:function size:0xE0 scope:global align:4 +cleanup__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBase = .text:0x802B1F4C; // type:function size:0x24 scope:global align:4 +init__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1F70; // type:function size:0x58 scope:global align:4 +exec__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBase = .text:0x802B1FC8; // type:function size:0x110 scope:global align:4 +cleanup__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBase = .text:0x802B20D8; // type:function size:0x30 scope:global align:4 +__sinit_BombSaraiState_cpp = .text:0x802B2108; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game9BombSarai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802B2130; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game9BombSarai14ProperAnimatorFi = .text:0x802B2138; // type:function size:0x8 scope:global align:4 +__dt__Q34Game9BombSarai14ProperAnimatorFv = .text:0x802B2140; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game9BombSarai14ProperAnimatorFv = .text:0x802B219C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9BombSarai3MgrFiUc = .text:0x802B21A4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9BombSarai3MgrFv = .text:0x802B21F4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game9BombSarai5ParmsFv = .text:0x802B223C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game9BombSarai5Parms11ProperParmsFv = .text:0x802B2284; // type:function size:0x278 scope:weak align:4 +createObj__Q34Game9BombSarai3MgrFi = .text:0x802B24FC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9BombSarai3ObjFv = .text:0x802B255C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9BombSarai3MgrFi = .text:0x802B2618; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game9BombSarai3MgrFv = .text:0x802B2628; // type:function size:0x68 scope:global align:4 +__dt__Q34Game9BombSarai3MgrFv = .text:0x802B2690; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9BombSarai3MgrFv = .text:0x802B2740; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9BombSarai3MgrFPv = .text:0x802B2748; // type:function size:0x2C scope:weak align:4 +read__Q34Game9BombSarai5ParmsFR6Stream = .text:0x802B2774; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game9BombSarai3MgrFv = .text:0x802B27C4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9BombSarai3ObjFv = .text:0x802B27CC; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game9BombSarai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802B2904; // type:function size:0x4 scope:global align:4 +onInit__Q34Game9BombSarai3ObjFPQ24Game15CreatureInitArg = .text:0x802B2908; // type:function size:0x98 scope:global align:4 +onKill__Q34Game9BombSarai3ObjFPQ24Game15CreatureKillArg = .text:0x802B29A0; // type:function size:0x50 scope:global align:4 +doUpdate__Q34Game9BombSarai3ObjFv = .text:0x802B29F0; // type:function size:0xA4 scope:global align:4 +doDirectDraw__Q34Game9BombSarai3ObjFR8Graphics = .text:0x802B2A94; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game9BombSarai3ObjFR8Graphics = .text:0x802B2A98; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game9BombSarai3ObjFPQ34Game9BombSarai3FSM = .text:0x802B2AB8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game9BombSarai3ObjFRQ24Game11ShadowParam = .text:0x802B2B04; // type:function size:0xD4 scope:global align:4 +bombCallBack__Q34Game9BombSarai3ObjFPQ24Game8CreatureR10Vector3f = .text:0x802B2BD8; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game9BombSarai3ObjFv = .text:0x802B2C14; // type:function size:0x8C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game9BombSarai3ObjFv = .text:0x802B2CA0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game9BombSarai3ObjFv = .text:0x802B2CD4; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game9BombSarai3ObjFv = .text:0x802B2D08; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game9BombSarai3ObjFv = .text:0x802B2D30; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game9BombSarai3ObjFv = .text:0x802B2D50; // type:function size:0x20 scope:global align:4 +setHeightVelocity__Q34Game9BombSarai3ObjFb = .text:0x802B2D70; // type:function size:0x1A0 scope:global align:4 +setRandTarget__Q34Game9BombSarai3ObjFv = .text:0x802B2F10; // type:function size:0x1E8 scope:global align:4 +addPitchRatio__Q34Game9BombSarai3ObjFv = .text:0x802B30F8; // type:function size:0x38 scope:global align:4 +supplyBomb__Q34Game9BombSarai3ObjFv = .text:0x802B3130; // type:function size:0xC8 scope:global align:4 +throwBomb__Q34Game9BombSarai3ObjFR10Vector3 = .text:0x802B31F8; // type:function size:0x78 scope:global align:4 +getAttackablePikmin__Q34Game9BombSarai3ObjFv = .text:0x802B3270; // type:function size:0x70 scope:global align:4 +getNextStateOnHeight__Q34Game9BombSarai3ObjFv = .text:0x802B32E0; // type:function size:0x144 scope:global align:4 +createEffect__Q34Game9BombSarai3ObjFv = .text:0x802B3424; // type:function size:0xB0 scope:global align:4 +setupEffect__Q34Game9BombSarai3ObjFv = .text:0x802B34D4; // type:function size:0x44 scope:global align:4 +createSupliEffect__Q34Game9BombSarai3ObjFv = .text:0x802B3518; // type:function size:0x34 scope:global align:4 +createBalloonEffect__Q34Game9BombSarai3ObjFi = .text:0x802B354C; // type:function size:0x11C scope:global align:4 +createDownEffect__Q34Game9BombSarai3ObjFf = .text:0x802B3668; // type:function size:0x24 scope:global align:4 +effectDrawOn__Q34Game9BombSarai3ObjFv = .text:0x802B368C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game9BombSarai3ObjFv = .text:0x802B36BC; // type:function size:0x30 scope:global align:4 +__dt__Q23efx12TBsaraiSupliFv = .text:0x802B36EC; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game9BombSarai3ObjFPQ24Game8WaterBox = .text:0x802B3788; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game9BombSarai3ObjFv = .text:0x802B378C; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game9BombSarai3ObjFv = .text:0x802B3790; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game9BombSarai3ObjFv = .text:0x802B3798; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TBsaraiSupliFv = .text:0x802B37A0; // type:function size:0x8 scope:weak align:4 +init__Q34Game11OtakaraBase3FSMFPQ24Game9EnemyBase = .text:0x802B37A8; // type:function size:0x4D4 scope:global align:4 +init__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B3C7C; // type:function size:0x5C scope:global align:4 +exec__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBase = .text:0x802B3CD8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBase = .text:0x802B3D1C; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B3D20; // type:function size:0x7C scope:global align:4 +startChargeEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B3D9C; // type:function size:0x4 scope:weak align:4 +exec__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBase = .text:0x802B3DA0; // type:function size:0x290 scope:global align:4 +createDisChargeEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B4030; // type:function size:0x4 scope:weak align:4 +finishChargeEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B4034; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBase = .text:0x802B4038; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B405C; // type:function size:0x50 scope:global align:4 +exec__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBase = .text:0x802B40AC; // type:function size:0x1CC scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBase = .text:0x802B4278; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B427C; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBase = .text:0x802B42C4; // type:function size:0x244 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBase = .text:0x802B4508; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B452C; // type:function size:0x58 scope:global align:4 +exec__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBase = .text:0x802B4584; // type:function size:0x264 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBase = .text:0x802B47E8; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B480C; // type:function size:0x50 scope:global align:4 +exec__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBase = .text:0x802B485C; // type:function size:0x154 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBase = .text:0x802B49B0; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B49D4; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBase = .text:0x802B4A1C; // type:function size:0x1D8 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBase = .text:0x802B4BF4; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B4BF8; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBase = .text:0x802B4C40; // type:function size:0x260 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBase = .text:0x802B4EA0; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B4EC4; // type:function size:0x58 scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBase = .text:0x802B4F1C; // type:function size:0x270 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBase = .text:0x802B518C; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B51B0; // type:function size:0x7C scope:global align:4 +exec__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBase = .text:0x802B522C; // type:function size:0x254 scope:global align:4 +cleanup__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBase = .text:0x802B5480; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B54A4; // type:function size:0x5C scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBase = .text:0x802B5500; // type:function size:0x1F8 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBase = .text:0x802B56F8; // type:function size:0x2C scope:global align:4 +init__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5724; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B576C; // type:function size:0x1C0 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B592C; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5930; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B5978; // type:function size:0x1E8 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B5B60; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5B84; // type:function size:0x58 scope:global align:4 +exec__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBase = .text:0x802B5BDC; // type:function size:0x224 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBase = .text:0x802B5E00; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game11OtakaraBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802B5E24; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game11OtakaraBase14ProperAnimatorFi = .text:0x802B5E2C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game11OtakaraBase14ProperAnimatorFv = .text:0x802B5E34; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game11OtakaraBase14ProperAnimatorFv = .text:0x802B5E90; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11OtakaraBase3MgrFiUc = .text:0x802B5E98; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game11OtakaraBase3MgrFv = .text:0x802B5EE8; // type:function size:0xBC scope:global align:4 +loadAnimData__Q34Game11OtakaraBase3MgrFv = .text:0x802B5FA4; // type:function size:0xB0 scope:global align:4 +createModel__Q34Game11OtakaraBase3MgrFv = .text:0x802B6054; // type:function size:0x138 scope:global align:4 +__dt__Q34Game11OtakaraBase3MgrFv = .text:0x802B618C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11OtakaraBase3MgrFv = .text:0x802B623C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11OtakaraBase3MgrFv = .text:0x802B6244; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11OtakaraBase3ObjFv = .text:0x802B624C; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game11OtakaraBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802B637C; // type:function size:0x4 scope:global align:4 +onInit__Q34Game11OtakaraBase3ObjFPQ24Game15CreatureInitArg = .text:0x802B6380; // type:function size:0x104 scope:global align:4 +getEnemyTypeID__Q34Game11OtakaraBase3ObjFv = .text:0x802B6484; // type:function size:0x8 scope:weak align:4 +setupEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B648C; // type:function size:0x4 scope:weak align:4 +onKill__Q34Game11OtakaraBase3ObjFPQ24Game15CreatureKillArg = .text:0x802B6490; // type:function size:0x5C scope:global align:4 +doUpdate__Q34Game11OtakaraBase3ObjFv = .text:0x802B64EC; // type:function size:0x34 scope:global align:4 +doUpdateCommon__Q34Game11OtakaraBase3ObjFv = .text:0x802B6520; // type:function size:0xF0 scope:global align:4 +startDisChargeSE__Q34Game11OtakaraBase3ObjFv = .text:0x802B6610; // type:function size:0x4 scope:weak align:4 +doAnimationCullingOff__Q34Game11OtakaraBase3ObjFv = .text:0x802B6614; // type:function size:0x7C scope:global align:4 +doDirectDraw__Q34Game11OtakaraBase3ObjFR8Graphics = .text:0x802B6690; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11OtakaraBase3ObjFR8Graphics = .text:0x802B6694; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game11OtakaraBase3ObjFPQ34Game11OtakaraBase3FSM = .text:0x802B66B4; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game11OtakaraBase3ObjFRQ24Game11ShadowParam = .text:0x802B6700; // type:function size:0xEC scope:global align:4 +damageCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802B67EC; // type:function size:0x34 scope:global align:4 +hipdropCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802B6820; // type:function size:0x78 scope:global align:4 +earthquakeCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8Creaturef = .text:0x802B6898; // type:function size:0x70 scope:global align:4 +bombCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreatureR10Vector3f = .text:0x802B6908; // type:function size:0x24 scope:global align:4 +doStartStoneState__Q34Game11OtakaraBase3ObjFv = .text:0x802B692C; // type:function size:0x4C scope:global align:4 +doFinishStoneState__Q34Game11OtakaraBase3ObjFv = .text:0x802B6978; // type:function size:0x4C scope:global align:4 +doStartEarthquakeState__Q34Game11OtakaraBase3ObjFf = .text:0x802B69C4; // type:function size:0x4C scope:global align:4 +doFinishEarthquakeState__Q34Game11OtakaraBase3ObjFv = .text:0x802B6A10; // type:function size:0x4C scope:global align:4 +doStartEarthquakeFitState__Q34Game11OtakaraBase3ObjFv = .text:0x802B6A5C; // type:function size:0x4C scope:global align:4 +doFinishEarthquakeFitState__Q34Game11OtakaraBase3ObjFv = .text:0x802B6AA8; // type:function size:0x4C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game11OtakaraBase3ObjFv = .text:0x802B6AF4; // type:function size:0x40 scope:global align:4 +effectDrawOff__Q34Game11OtakaraBase3ObjFv = .text:0x802B6B34; // type:function size:0x4 scope:weak align:4 +doFinishWaitingBirthTypeDrop__Q34Game11OtakaraBase3ObjFv = .text:0x802B6B38; // type:function size:0x64 scope:global align:4 +effectDrawOn__Q34Game11OtakaraBase3ObjFv = .text:0x802B6B9C; // type:function size:0x4 scope:weak align:4 +startCarcassMotion__Q34Game11OtakaraBase3ObjFv = .text:0x802B6BA0; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game11OtakaraBase3ObjFv = .text:0x802B6BC8; // type:function size:0x2C scope:global align:4 +doEndMovie__Q34Game11OtakaraBase3ObjFv = .text:0x802B6BF4; // type:function size:0x2C scope:global align:4 +isMovePositionSet__Q34Game11OtakaraBase3ObjFb = .text:0x802B6C20; // type:function size:0x140 scope:global align:4 +getNearestTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B6D60; // type:function size:0x148 scope:global align:4 +getTargetPosition__Q34Game11OtakaraBase3ObjFPQ24Game8Creature = .text:0x802B6EA8; // type:function size:0x1C8 scope:global align:4 +resetTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B7070; // type:function size:0x94 scope:global align:4 +isTakeTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B7104; // type:function size:0x10C scope:global align:4 +takeTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B7210; // type:function size:0x24C scope:global align:4 +fallTreasure__Q34Game11OtakaraBase3ObjFb = .text:0x802B745C; // type:function size:0xF8 scope:global align:4 +isDropTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B7554; // type:function size:0x28 scope:global align:4 +damageTreasure__Q34Game11OtakaraBase3ObjFf = .text:0x802B757C; // type:function size:0x54 scope:global align:4 +attackTarget__Q34Game11OtakaraBase3ObjFv = .text:0x802B75D0; // type:function size:0x1A8 scope:global align:4 +interactCreature__Q34Game11OtakaraBase3ObjFPQ24Game8Creature = .text:0x802B7778; // type:function size:0x4 scope:weak align:4 +createTreasureFallEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B777C; // type:function size:0x134 scope:global align:4 +startEscapeSE__Q34Game11OtakaraBase3ObjFv = .text:0x802B78B0; // type:function size:0x88 scope:global align:4 +initBombOtakara__Q34Game11OtakaraBase3ObjFv = .text:0x802B7938; // type:function size:0xFC scope:global align:4 +isTransitChaseState__Q34Game11OtakaraBase3ObjFv = .text:0x802B7A34; // type:function size:0x68 scope:global align:4 +stimulateBomb__Q34Game11OtakaraBase3ObjFv = .text:0x802B7A9C; // type:function size:0x8C scope:global align:4 +getChaseTargetCreature__Q34Game11OtakaraBase3ObjFv = .text:0x802B7B28; // type:function size:0x38 scope:global align:4 +satisfy__Q24Game30ConditionNotStickClientAndItemFPQ24Game4Piki = .text:0x802B7B60; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game11OtakaraBase3ObjFv = .text:0x802B7BFC; // type:function size:0xBC scope:weak align:4 +getDownSmokeScale__Q34Game11OtakaraBase3ObjFv = .text:0x802B7CB8; // type:function size:0x8 scope:weak align:4 +getCellRadius__Q34Game11OtakaraBase3ObjFv = .text:0x802B7CC0; // type:function size:0x8 scope:weak align:4 +createEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B7CC8; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game11FireOtakara3MgrFiUc = .text:0x802B7CCC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11FireOtakara3MgrFv = .text:0x802B7D1C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game11OtakaraBase5ParmsFv = .text:0x802B7D64; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game11FireOtakara3MgrFi = .text:0x802B7EB8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11FireOtakara3ObjFv = .text:0x802B7F18; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game11FireOtakara3MgrFi = .text:0x802B8008; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11FireOtakara3MgrFv = .text:0x802B8018; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11FireOtakara3MgrFv = .text:0x802B8098; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11FireOtakara3MgrFv = .text:0x802B8160; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11FireOtakara3MgrFv = .text:0x802B8168; // type:function size:0x8 scope:weak align:4 +read__Q34Game11OtakaraBase5ParmsFR6Stream = .text:0x802B8170; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11FireOtakara3MgrFv = .text:0x802B81C0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11FireOtakara3ObjFv = .text:0x802B81C8; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game11FireOtakara3ObjFv = .text:0x802B826C; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game11FireOtakara3ObjFPQ24Game8Creature = .text:0x802B8410; // type:function size:0x60 scope:global align:4 +createEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B8470; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B84D0; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B8518; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B854C; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B857C; // type:function size:0xB0 scope:global align:4 +effectDrawOn__Q34Game11FireOtakara3ObjFv = .text:0x802B862C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game11FireOtakara3ObjFv = .text:0x802B865C; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game11FireOtakara3ObjFv = .text:0x802B868C; // type:function size:0x44 scope:global align:4 +forceKill__Q23efx8TSimple5Fv = .text:0x802B86D0; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple5Fv = .text:0x802B86D4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game11FireOtakara3ObjFv = .text:0x802B86D8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12WaterOtakara3MgrFiUc = .text:0x802B86E0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12WaterOtakara3MgrFv = .text:0x802B8730; // type:function size:0x48 scope:global align:4 +createObj__Q34Game12WaterOtakara3MgrFi = .text:0x802B8778; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12WaterOtakara3ObjFv = .text:0x802B87D8; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game12WaterOtakara3MgrFi = .text:0x802B88C8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game12WaterOtakara3MgrFv = .text:0x802B88D8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game12WaterOtakara3MgrFv = .text:0x802B8958; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game12WaterOtakara3MgrFv = .text:0x802B8A20; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game12WaterOtakara3MgrFv = .text:0x802B8A28; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12WaterOtakara3MgrFv = .text:0x802B8A30; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12WaterOtakara3ObjFv = .text:0x802B8A38; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game12WaterOtakara3ObjFv = .text:0x802B8ADC; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game12WaterOtakara3ObjFPQ24Game8Creature = .text:0x802B8C80; // type:function size:0x60 scope:global align:4 +createEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8CE0; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8D40; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8D88; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8DBC; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8DEC; // type:function size:0xA4 scope:global align:4 +effectDrawOn__Q34Game12WaterOtakara3ObjFv = .text:0x802B8E90; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game12WaterOtakara3ObjFv = .text:0x802B8EC0; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game12WaterOtakara3ObjFv = .text:0x802B8EF0; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game12WaterOtakara3ObjFv = .text:0x802B8F34; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10GasOtakara3MgrFiUc = .text:0x802B8F3C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10GasOtakara3MgrFv = .text:0x802B8F8C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game10GasOtakara3MgrFi = .text:0x802B8FD4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10GasOtakara3ObjFv = .text:0x802B9034; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game10GasOtakara3MgrFi = .text:0x802B9124; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game10GasOtakara3MgrFv = .text:0x802B9134; // type:function size:0x80 scope:global align:4 +__dt__Q34Game10GasOtakara3MgrFv = .text:0x802B91B4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game10GasOtakara3MgrFv = .text:0x802B927C; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game10GasOtakara3MgrFv = .text:0x802B9284; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10GasOtakara3MgrFv = .text:0x802B928C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10GasOtakara3ObjFv = .text:0x802B9294; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game10GasOtakara3ObjFv = .text:0x802B9338; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game10GasOtakara3ObjFPQ24Game8Creature = .text:0x802B94DC; // type:function size:0x60 scope:global align:4 +createEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B953C; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B959C; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B95E4; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B9618; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B9648; // type:function size:0x8C scope:global align:4 +effectDrawOn__Q34Game10GasOtakara3ObjFv = .text:0x802B96D4; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game10GasOtakara3ObjFv = .text:0x802B9704; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game10GasOtakara3ObjFv = .text:0x802B9734; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game10GasOtakara3ObjFv = .text:0x802B9778; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11ElecOtakara3MgrFiUc = .text:0x802B9780; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11ElecOtakara3MgrFv = .text:0x802B97D0; // type:function size:0x48 scope:global align:4 +createObj__Q34Game11ElecOtakara3MgrFi = .text:0x802B9818; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11ElecOtakara3ObjFv = .text:0x802B9878; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game11ElecOtakara3MgrFi = .text:0x802B9968; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11ElecOtakara3MgrFv = .text:0x802B9978; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11ElecOtakara3MgrFv = .text:0x802B99F8; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11ElecOtakara3MgrFv = .text:0x802B9AC0; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11ElecOtakara3MgrFv = .text:0x802B9AC8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11ElecOtakara3MgrFv = .text:0x802B9AD0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11ElecOtakara3ObjFv = .text:0x802B9AD8; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game11ElecOtakara3ObjFv = .text:0x802B9B7C; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game11ElecOtakara3ObjFPQ24Game8Creature = .text:0x802B9D20; // type:function size:0x168 scope:global align:4 +createEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9E88; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9EE8; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9F30; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9F64; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9F94; // type:function size:0x98 scope:global align:4 +effectDrawOn__Q34Game11ElecOtakara3ObjFv = .text:0x802BA02C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game11ElecOtakara3ObjFv = .text:0x802BA05C; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game11ElecOtakara3ObjFv = .text:0x802BA08C; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game11ElecOtakara3ObjFv = .text:0x802BA0D0; // type:function size:0x8 scope:weak align:4 +init__Q34Game8Imomushi3FSMFPQ24Game9EnemyBase = .text:0x802BA0D8; // type:function size:0x4D4 scope:global align:4 +init__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA5AC; // type:function size:0x50 scope:global align:4 +exec__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBase = .text:0x802BA5FC; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBase = .text:0x802BA640; // type:function size:0x4 scope:global align:4 +init__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA644; // type:function size:0x4C scope:global align:4 +exec__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBase = .text:0x802BA690; // type:function size:0x140 scope:global align:4 +cleanup__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBase = .text:0x802BA7D0; // type:function size:0x4 scope:global align:4 +init__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA7D4; // type:function size:0x4C scope:global align:4 +exec__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBase = .text:0x802BA820; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBase = .text:0x802BA998; // type:function size:0x4 scope:global align:4 +init__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA99C; // type:function size:0xC8 scope:global align:4 +exec__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBase = .text:0x802BAA64; // type:function size:0xA8 scope:global align:4 +cleanup__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBase = .text:0x802BAB0C; // type:function size:0x90 scope:global align:4 +init__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BAB9C; // type:function size:0x80 scope:global align:4 +exec__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBase = .text:0x802BAC1C; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBase = .text:0x802BACF4; // type:function size:0x3C scope:global align:4 +init__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BAD30; // type:function size:0x74 scope:global align:4 +exec__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBase = .text:0x802BADA4; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBase = .text:0x802BADF4; // type:function size:0x3C scope:global align:4 +init__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BAE30; // type:function size:0x48 scope:global align:4 +exec__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBase = .text:0x802BAE78; // type:function size:0x238 scope:global align:4 +cleanup__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBase = .text:0x802BB0B0; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB0D4; // type:function size:0x48 scope:global align:4 +exec__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBase = .text:0x802BB11C; // type:function size:0x14C scope:global align:4 +cleanup__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBase = .text:0x802BB268; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB28C; // type:function size:0x14C scope:global align:4 +exec__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBase = .text:0x802BB3D8; // type:function size:0x170 scope:global align:4 +cleanup__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBase = .text:0x802BB548; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB56C; // type:function size:0x9C scope:global align:4 +exec__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBase = .text:0x802BB608; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBase = .text:0x802BB764; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB788; // type:function size:0x94 scope:global align:4 +exec__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBase = .text:0x802BB81C; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBase = .text:0x802BB954; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB978; // type:function size:0x6C scope:global align:4 +exec__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBase = .text:0x802BB9E4; // type:function size:0x58 scope:global align:4 +cleanup__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBase = .text:0x802BBA3C; // type:function size:0x30 scope:global align:4 +init__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BBA6C; // type:function size:0x5C scope:global align:4 +exec__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBase = .text:0x802BBAC8; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBase = .text:0x802BBB18; // type:function size:0x10 scope:global align:4 +init__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BBB28; // type:function size:0x58 scope:global align:4 +exec__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBase = .text:0x802BBB80; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBase = .text:0x802BBC3C; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game8Imomushi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802BBC60; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8Imomushi14ProperAnimatorFi = .text:0x802BBC68; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8Imomushi14ProperAnimatorFv = .text:0x802BBC70; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8Imomushi14ProperAnimatorFv = .text:0x802BBCCC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Imomushi3MgrFiUc = .text:0x802BBCD4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8Imomushi3MgrFv = .text:0x802BBD24; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8Imomushi5ParmsFv = .text:0x802BBD6C; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game8Imomushi3MgrFi = .text:0x802BBEFC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8Imomushi3ObjFv = .text:0x802BBF5C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8Imomushi3MgrFi = .text:0x802BC018; // type:function size:0x10 scope:global align:4 +read__Q34Game8Imomushi5ParmsFR6Stream = .text:0x802BC028; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game8Imomushi3MgrFv = .text:0x802BC078; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8Imomushi3MgrFv = .text:0x802BC128; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Imomushi3MgrFv = .text:0x802BC130; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Imomushi3ObjFv = .text:0x802BC138; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game8Imomushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802BC270; // type:function size:0x4 scope:global align:4 +onInit__Q34Game8Imomushi3ObjFPQ24Game15CreatureInitArg = .text:0x802BC274; // type:function size:0xE8 scope:global align:4 +onKill__Q34Game8Imomushi3ObjFPQ24Game15CreatureKillArg = .text:0x802BC35C; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game8Imomushi3ObjFv = .text:0x802BC3A0; // type:function size:0x34 scope:global align:4 +doAnimationStick__Q34Game8Imomushi3ObjFv = .text:0x802BC3D4; // type:function size:0x4D0 scope:global align:4 +doDirectDraw__Q34Game8Imomushi3ObjFR8Graphics = .text:0x802BC8A4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8Imomushi3ObjFR8Graphics = .text:0x802BC8A8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game8Imomushi3ObjFPQ34Game8Imomushi3FSM = .text:0x802BC8C8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game8Imomushi3ObjFRQ24Game11ShadowParam = .text:0x802BC914; // type:function size:0xD0 scope:global align:4 +earthquakeCallBack__Q34Game8Imomushi3ObjFPQ24Game8Creaturef = .text:0x802BC9E4; // type:function size:0x64 scope:global align:4 +dropCallBack__Q34Game8Imomushi3ObjFPQ24Game8Creature = .text:0x802BCA48; // type:function size:0x80 scope:global align:4 +doStartStoneState__Q34Game8Imomushi3ObjFv = .text:0x802BCAC8; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game8Imomushi3ObjFv = .text:0x802BCAFC; // type:function size:0x4C scope:global align:4 +doStartEarthquakeState__Q34Game8Imomushi3ObjFf = .text:0x802BCB48; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeState__Q34Game8Imomushi3ObjFv = .text:0x802BCB7C; // type:function size:0x4C scope:global align:4 +doStartEarthquakeFitState__Q34Game8Imomushi3ObjFv = .text:0x802BCBC8; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeFitState__Q34Game8Imomushi3ObjFv = .text:0x802BCBFC; // type:function size:0x4C scope:global align:4 +startCarcassMotion__Q34Game8Imomushi3ObjFv = .text:0x802BCC48; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game8Imomushi3ObjFv = .text:0x802BCC70; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game8Imomushi3ObjFv = .text:0x802BCC90; // type:function size:0x20 scope:global align:4 +lifeIncrement__Q34Game8Imomushi3ObjFv = .text:0x802BCCB0; // type:function size:0x24 scope:global align:4 +resetZukanStateTimer__Q34Game8Imomushi3ObjFv = .text:0x802BCCD4; // type:function size:0xAC scope:global align:4 +resetStickDiff__Q34Game8Imomushi3ObjFv = .text:0x802BCD80; // type:function size:0x10 scope:global align:4 +setStickDiff__Q34Game8Imomushi3ObjFff = .text:0x802BCD90; // type:function size:0x1C scope:global align:4 +getRandFruitsPlant__Q34Game8Imomushi3ObjFv = .text:0x802BCDAC; // type:function size:0x31C scope:global align:4 +startClimbPlant__Q34Game8Imomushi3ObjFP8CollPart = .text:0x802BD0C8; // type:function size:0xC8 scope:global align:4 +moveStickTube__Q34Game8Imomushi3ObjFv = .text:0x802BD190; // type:function size:0x30 scope:global align:4 +moveStickSphere__Q34Game8Imomushi3ObjFv = .text:0x802BD1C0; // type:function size:0xCC scope:global align:4 +eatTsuyukusa__Q34Game8Imomushi3ObjFv = .text:0x802BD28C; // type:function size:0x19C scope:global align:4 +isAttackable__Q34Game8Imomushi3ObjFv = .text:0x802BD428; // type:function size:0x74 scope:global align:4 +isStickToFall__Q34Game8Imomushi3ObjFv = .text:0x802BD49C; // type:function size:0x4C scope:global align:4 +setZukanTargetPosition__Q34Game8Imomushi3ObjFv = .text:0x802BD4E8; // type:function size:0x188 scope:global align:4 +isInZukanTargetArea__Q34Game8Imomushi3ObjFv = .text:0x802BD670; // type:function size:0x34 scope:global align:4 +createEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD6A4; // type:function size:0x13C scope:global align:4 +setupEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD7E0; // type:function size:0x40 scope:global align:4 +createAppearEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD820; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD8AC; // type:function size:0x8C scope:global align:4 +startMoveTraceEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD938; // type:function size:0x84 scope:global align:4 +finishMoveTraceEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD9BC; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game8Imomushi3ObjFv = .text:0x802BD9EC; // type:function size:0x50 scope:global align:4 +effectDrawOff__Q34Game8Imomushi3ObjFv = .text:0x802BDA3C; // type:function size:0x50 scope:global align:4 +getName__Q23efx9ArgImoEatFv = .text:0x802BDA8C; // type:function size:0xC scope:weak align:4 +isUnderground__Q34Game8Imomushi3ObjFv = .text:0x802BDA98; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game8Imomushi3ObjFv = .text:0x802BDAA0; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game8Imomushi3ObjFv = .text:0x802BDAA8; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Houdai3FSMFPQ24Game9EnemyBase = .text:0x802BDAB0; // type:function size:0x278 scope:global align:4 +init__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BDD28; // type:function size:0xBC scope:global align:4 +exec__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBase = .text:0x802BDDE4; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBase = .text:0x802BDE9C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BDEA0; // type:function size:0x78 scope:global align:4 +exec__Q34Game6Houdai9StateStayFPQ24Game9EnemyBase = .text:0x802BDF18; // type:function size:0xC4 scope:global align:4 +cleanup__Q34Game6Houdai9StateStayFPQ24Game9EnemyBase = .text:0x802BDFDC; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BDFE0; // type:function size:0xE4 scope:global align:4 +exec__Q34Game6Houdai9StateLandFPQ24Game9EnemyBase = .text:0x802BE0C4; // type:function size:0x2F0 scope:global align:4 +cleanup__Q34Game6Houdai9StateLandFPQ24Game9EnemyBase = .text:0x802BE3B4; // type:function size:0x50 scope:global align:4 +init__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE404; // type:function size:0x98 scope:global align:4 +exec__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBase = .text:0x802BE49C; // type:function size:0x118 scope:global align:4 +cleanup__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBase = .text:0x802BE5B4; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE5B8; // type:function size:0x64 scope:global align:4 +exec__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBase = .text:0x802BE61C; // type:function size:0xF0 scope:global align:4 +cleanup__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBase = .text:0x802BE70C; // type:function size:0x24 scope:global align:4 +init__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE730; // type:function size:0x98 scope:global align:4 +exec__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBase = .text:0x802BE7C8; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBase = .text:0x802BE8C8; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai9StateShotFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE8CC; // type:function size:0x90 scope:global align:4 +exec__Q34Game6Houdai9StateShotFPQ24Game9EnemyBase = .text:0x802BE95C; // type:function size:0x3B0 scope:global align:4 +cleanup__Q34Game6Houdai9StateShotFPQ24Game9EnemyBase = .text:0x802BED0C; // type:function size:0x38 scope:global align:4 +__sinit_HoudaiState_cpp = .text:0x802BED44; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game6Houdai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802BED6C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Houdai14ProperAnimatorFi = .text:0x802BED74; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Houdai14ProperAnimatorFv = .text:0x802BED7C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Houdai14ProperAnimatorFv = .text:0x802BEDD8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Houdai3MgrFiUc = .text:0x802BEDE0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Houdai3MgrFv = .text:0x802BEE30; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Houdai5ParmsFv = .text:0x802BEE78; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game6Houdai5Parms11ProperParmsFv = .text:0x802BEEC0; // type:function size:0x2EC scope:weak align:4 +createObj__Q34Game6Houdai3MgrFi = .text:0x802BF1AC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game6Houdai3ObjFv = .text:0x802BF20C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Houdai3MgrFi = .text:0x802BF2C8; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game6Houdai3MgrFv = .text:0x802BF2D8; // type:function size:0x68 scope:global align:4 +__dt__Q34Game6Houdai3MgrFv = .text:0x802BF340; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Houdai3MgrFv = .text:0x802BF3F0; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Houdai3MgrFPv = .text:0x802BF3F8; // type:function size:0x2C scope:weak align:4 +read__Q34Game6Houdai5ParmsFR6Stream = .text:0x802BF424; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Houdai3MgrFv = .text:0x802BF474; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Houdai15HoudaiShadowMgrFPQ34Game6Houdai3Obj = .text:0x802BF47C; // type:function size:0x27C scope:global align:4 +init__Q34Game6Houdai15HoudaiShadowMgrFv = .text:0x802BF6F8; // type:function size:0x1B0 scope:global align:4 +setJointPosPtr__Q34Game6Houdai15HoudaiShadowMgrFiiP10Vector3 = .text:0x802BF8A8; // type:function size:0x18 scope:global align:4 +update__Q34Game6Houdai15HoudaiShadowMgrFv = .text:0x802BF8C0; // type:function size:0x3F0 scope:global align:4 +invokeOnGround__Q34Game6Houdai20HoudaiGroundCallBackFiPQ24Game8WaterBox = .text:0x802BFCB0; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game6Houdai20HoudaiGroundCallBackFiPQ24Game8WaterBox = .text:0x802BFCD4; // type:function size:0x24 scope:global align:4 +__ct__Q34Game6Houdai3ObjFv = .text:0x802BFCF8; // type:function size:0x16C scope:global align:4 +setInitialSetting__Q34Game6Houdai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802BFE64; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Houdai3ObjFPQ24Game15CreatureInitArg = .text:0x802BFE68; // type:function size:0x144 scope:global align:4 +onKill__Q34Game6Houdai3ObjFPQ24Game15CreatureKillArg = .text:0x802BFFAC; // type:function size:0x54 scope:global align:4 +setParameters__Q34Game6Houdai3ObjFv = .text:0x802C0000; // type:function size:0x88 scope:global align:4 +doUpdate__Q34Game6Houdai3ObjFv = .text:0x802C0088; // type:function size:0xB4 scope:global align:4 +doUpdateCommon__Q34Game6Houdai3ObjFv = .text:0x802C013C; // type:function size:0x3C scope:global align:4 +doAnimationCullingOff__Q34Game6Houdai3ObjFv = .text:0x802C0178; // type:function size:0xA0 scope:global align:4 +doDirectDraw__Q34Game6Houdai3ObjFR8Graphics = .text:0x802C0218; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Houdai3ObjFR8Graphics = .text:0x802C021C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Houdai3ObjFPQ34Game6Houdai3FSM = .text:0x802C023C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Houdai3ObjFRQ24Game11ShadowParam = .text:0x802C0288; // type:function size:0x3C scope:global align:4 +damageCallBack__Q34Game6Houdai3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802C02C4; // type:function size:0xB4 scope:global align:4 +doStartStoneState__Q34Game6Houdai3ObjFv = .text:0x802C0378; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game6Houdai3ObjFv = .text:0x802C03CC; // type:function size:0x78 scope:global align:4 +doStartMovie__Q34Game6Houdai3ObjFv = .text:0x802C0444; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game6Houdai3ObjFv = .text:0x802C0464; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game6Houdai3ObjFP10Vector3 = .text:0x802C0484; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game6Houdai3ObjFP10Vector3 = .text:0x802C04D4; // type:function size:0x14 scope:global align:4 +setTargetPattern__Q34Game6Houdai3ObjFv = .text:0x802C04E8; // type:function size:0xC8 scope:global align:4 +getTargetPosition__Q34Game6Houdai3ObjFv = .text:0x802C05B0; // type:function size:0x298 scope:global align:4 +setShotGunTargetPosition__Q34Game6Houdai3ObjFv = .text:0x802C0848; // type:function size:0x234 scope:global align:4 +createIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0A7C; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0B88; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game6Houdai3ObjFv = .text:0x802C0CAC; // type:function size:0x90 scope:global align:4 +setIKSystemTargetPosition__Q34Game6Houdai3ObjFR10Vector3 = .text:0x802C0D3C; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0D5C; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0DBC; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0E1C; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game6Houdai3ObjFv = .text:0x802C0E40; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0E64; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0E88; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0EAC; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0ED0; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game6Houdai3ObjFv = .text:0x802C0EF4; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game6Houdai3ObjFv = .text:0x802C0F18; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game6Houdai3ObjFv = .text:0x802C0F3C; // type:function size:0x20 scope:global align:4 +createShadowSystem__Q34Game6Houdai3ObjFv = .text:0x802C0F5C; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game6Houdai3ObjFv = .text:0x802C0FA4; // type:function size:0x74 scope:global align:4 +doAnimationShadowSystem__Q34Game6Houdai3ObjFv = .text:0x802C1018; // type:function size:0x24 scope:global align:4 +setShotGunEmitKeepTimerOn__Q34Game6Houdai3ObjFv = .text:0x802C103C; // type:function size:0x78 scope:global align:4 +setShotGunEmitKeepTimerOff__Q34Game6Houdai3ObjFv = .text:0x802C10B4; // type:function size:0x78 scope:global align:4 +updateShotGunTimer__Q34Game6Houdai3ObjFv = .text:0x802C112C; // type:function size:0x30 scope:global align:4 +isTransitShotGunState__Q34Game6Houdai3ObjFv = .text:0x802C115C; // type:function size:0x1C scope:global align:4 +createShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1178; // type:function size:0x48 scope:global align:4 +setupShotGun__Q34Game6Houdai3ObjFv = .text:0x802C11C0; // type:function size:0x24 scope:global align:4 +setShotGunTarget__Q34Game6Houdai3ObjFR10Vector3 = .text:0x802C11E4; // type:function size:0x24 scope:global align:4 +resetShotGunCallBack__Q34Game6Houdai3ObjFv = .text:0x802C1208; // type:function size:0x24 scope:global align:4 +setShotGunCallBack__Q34Game6Houdai3ObjFv = .text:0x802C122C; // type:function size:0x24 scope:global align:4 +doUpdateShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1250; // type:function size:0x24 scope:global align:4 +doUpdateCommonShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1274; // type:function size:0x24 scope:global align:4 +startShotGunRotation__Q34Game6Houdai3ObjFv = .text:0x802C1298; // type:function size:0x24 scope:global align:4 +finishShotGunRotation__Q34Game6Houdai3ObjFv = .text:0x802C12BC; // type:function size:0x24 scope:global align:4 +isShotGunRotation__Q34Game6Houdai3ObjFv = .text:0x802C12E0; // type:function size:0x24 scope:global align:4 +isShotGunLockOn__Q34Game6Houdai3ObjFv = .text:0x802C1304; // type:function size:0x24 scope:global align:4 +isFinishShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1328; // type:function size:0x24 scope:global align:4 +emitShotGun__Q34Game6Houdai3ObjFv = .text:0x802C134C; // type:function size:0x5C scope:global align:4 +forceFinishShotGun__Q34Game6Houdai3ObjFv = .text:0x802C13A8; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game6Houdai3ObjFv = .text:0x802C13CC; // type:function size:0x38 scope:global align:4 +startBossChargeBGM__Q34Game6Houdai3ObjFv = .text:0x802C1404; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C14CC; // type:function size:0xDC scope:global align:4 +finishBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C15A8; // type:function size:0xD8 scope:global align:4 +startStoneStateBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C1680; // type:function size:0xD4 scope:global align:4 +finishStoneStateBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C1754; // type:function size:0xD4 scope:global align:4 +startBossFlickBGM__Q34Game6Houdai3ObjFv = .text:0x802C1828; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game6Houdai3ObjFv = .text:0x802C18F0; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game6Houdai3ObjFv = .text:0x802C19EC; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game6Houdai3ObjFv = .text:0x802C1AA8; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game6Houdai3ObjFv = .text:0x802C1B64; // type:function size:0x5CC scope:global align:4 +setupEffect__Q34Game6Houdai3ObjFv = .text:0x802C2130; // type:function size:0x1A8 scope:global align:4 +createOnGroundEffect__Q34Game6Houdai3ObjFiPQ24Game8WaterBox = .text:0x802C22D8; // type:function size:0x384 scope:global align:4 +createOffGroundEffect__Q34Game6Houdai3ObjFiPQ24Game8WaterBox = .text:0x802C265C; // type:function size:0x168 scope:global align:4 +startPinchJointEffect__Q34Game6Houdai3ObjFv = .text:0x802C27C4; // type:function size:0x5C scope:global align:4 +finishPinchJointEffect__Q34Game6Houdai3ObjFv = .text:0x802C2820; // type:function size:0x58 scope:global align:4 +createHoudaiDeadEffect__Q34Game6Houdai3ObjFv = .text:0x802C2878; // type:function size:0x194 scope:global align:4 +updatePinchLife__Q34Game6Houdai3ObjFv = .text:0x802C2A0C; // type:function size:0x120 scope:global align:4 +createAppearEffect__Q34Game6Houdai3ObjFv = .text:0x802C2B2C; // type:function size:0xF0 scope:global align:4 +createAppearHahenEffect__Q34Game6Houdai3ObjFv = .text:0x802C2C1C; // type:function size:0x34 scope:global align:4 +createAppearFootEffect__Q34Game6Houdai3ObjFi = .text:0x802C2C50; // type:function size:0x3C scope:global align:4 +startSteamEffect__Q34Game6Houdai3ObjFb = .text:0x802C2C8C; // type:function size:0x7C scope:global align:4 +finishSteamEffect__Q34Game6Houdai3ObjFv = .text:0x802C2D08; // type:function size:0x6C scope:global align:4 +startChimneyEffect__Q34Game6Houdai3ObjFv = .text:0x802C2D74; // type:function size:0x5C scope:global align:4 +finishChimneyEffect__Q34Game6Houdai3ObjFv = .text:0x802C2DD0; // type:function size:0x58 scope:global align:4 +createShotGunOpenEffect__Q34Game6Houdai3ObjFv = .text:0x802C2E28; // type:function size:0x90 scope:global align:4 +createDeadBombEffect__Q34Game6Houdai3ObjFv = .text:0x802C2EB8; // type:function size:0x258 scope:global align:4 +effectDrawOn__Q34Game6Houdai3ObjFv = .text:0x802C3110; // type:function size:0x17C scope:global align:4 +effectDrawOff__Q34Game6Houdai3ObjFv = .text:0x802C328C; // type:function size:0x17C scope:global align:4 +getName__Q23efx9ArgPosPosFv = .text:0x802C3408; // type:function size:0xC scope:weak align:4 +__dt__Q23efx13THdamaSteamBdFv = .text:0x802C3414; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14THdamaOnSteam1Fv = .text:0x802C34B0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14THdamaOnHahen1Fv = .text:0x802C354C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11THdamaHahenFv = .text:0x802C35E8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13THdamaSteamStFv = .text:0x802C3684; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11THdamaSteamFv = .text:0x802C3720; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14THdamaOnHahen2Fv = .text:0x802C37BC; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game6Houdai3ObjFPQ24Game8WaterBox = .text:0x802C3858; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game6Houdai3ObjFv = .text:0x802C385C; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game6Houdai3ObjFv = .text:0x802C3860; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game6Houdai3ObjFv = .text:0x802C3868; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Houdai3ObjFv = .text:0x802C386C; // type:function size:0x8 scope:weak align:4 +__sinit_Houdai_cpp = .text:0x802C3874; // type:function size:0x28 scope:local align:4 +@1056@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802C389C; // type:function size:0x14 scope:weak align:4 +@1056@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802C38B0; // type:function size:0x14 scope:weak align:4 +@1056@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802C38C4; // type:function size:0x14 scope:weak align:4 +@1056@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802C38D8; // type:function size:0x14 scope:weak align:4 +@1056@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802C38EC; // type:function size:0x14 scope:weak align:4 +@1056@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802C3900; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14THdamaOnHahen2Fv = .text:0x802C3914; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11THdamaSteamFv = .text:0x802C391C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13THdamaSteamStFv = .text:0x802C3924; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11THdamaHahenFv = .text:0x802C392C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14THdamaOnHahen1Fv = .text:0x802C3934; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14THdamaOnSteam1Fv = .text:0x802C393C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13THdamaSteamBdFv = .text:0x802C3944; // type:function size:0x8 scope:weak align:4 +levelRotationCallBack__Q24Game6HoudaiFP8J3DJointi = .text:0x802C394C; // type:function size:0x3C scope:local align:4 +verticalRotationCallBack__Q24Game6HoudaiFP8J3DJointi = .text:0x802C3988; // type:function size:0x3C scope:local align:4 +update__Q34Game6Houdai17HoudaiShotGunNodeFv = .text:0x802C39C4; // type:function size:0xB10 scope:global align:4 +__ct__Q34Game6Houdai16HoudaiShotGunMgrFPQ34Game6Houdai3Obj = .text:0x802C44D4; // type:function size:0x240 scope:global align:4 +setupShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4714; // type:function size:0xB4 scope:global align:4 +resetCallBack__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47C8; // type:function size:0xC scope:global align:4 +setCallBack__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47D4; // type:function size:0x8 scope:global align:4 +startRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47DC; // type:function size:0x24 scope:global align:4 +finishRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4800; // type:function size:0x14 scope:global align:4 +isShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4814; // type:function size:0x8 scope:global align:4 +isShotGunLockOn__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C481C; // type:function size:0x8 scope:global align:4 +isFinishShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4824; // type:function size:0x8 scope:global align:4 +setShotGunTarget__Q34Game6Houdai16HoudaiShotGunMgrFR10Vector3 = .text:0x802C482C; // type:function size:0x1C scope:global align:4 +emitShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4848; // type:function size:0x3C0 scope:global align:4 +doUpdate__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4C08; // type:function size:0x84 scope:global align:4 +doUpdateCommon__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4C8C; // type:function size:0x78 scope:global align:4 +forceFinishShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4D04; // type:function size:0x84 scope:global align:4 +searchShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4D88; // type:function size:0x234 scope:global align:4 +returnShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4FBC; // type:function size:0x178 scope:global align:4 +rotateLevel__Q34Game6Houdai16HoudaiShotGunMgrFP8J3DJoint = .text:0x802C5134; // type:function size:0x68 scope:global align:4 +rotateVertical__Q34Game6Houdai16HoudaiShotGunMgrFP8J3DJoint = .text:0x802C519C; // type:function size:0x258 scope:global align:4 +finishLockOnEffect__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C53F4; // type:function size:0x30 scope:global align:4 +setShotGunLockOnPosition__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C5424; // type:function size:0x250 scope:global align:4 +effectDrawOn__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C5674; // type:function size:0x9C scope:global align:4 +effectDrawOff__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C5710; // type:function size:0x9C scope:global align:4 +startStoneStateEffectOff__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C57AC; // type:function size:0x30 scope:global align:4 +finishStoneStateEffectOn__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C57DC; // type:function size:0x30 scope:global align:4 +__dt__Q23efx11THdamaSightFv = .text:0x802C580C; // type:function size:0x9C scope:weak align:4 +getName__Q23efx6ArgDirFv = .text:0x802C58A8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game6Houdai17HoudaiShotGunNodeFv = .text:0x802C58B0; // type:function size:0x60 scope:weak align:4 +@4@__dt__Q23efx11THdamaSightFv = .text:0x802C5910; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10LeafChappy3MgrFiUc = .text:0x802C5918; // type:function size:0x50 scope:global align:4 +birth__Q34Game10LeafChappy3MgrFRQ24Game13EnemyBirthArg = .text:0x802C5968; // type:function size:0x48 scope:global align:4 +doAlloc__Q34Game10LeafChappy3MgrFv = .text:0x802C59B0; // type:function size:0x48 scope:global align:4 +createObj__Q34Game10LeafChappy3MgrFi = .text:0x802C59F8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10LeafChappy3ObjFv = .text:0x802C5A58; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game10LeafChappy3MgrFi = .text:0x802C5B48; // type:function size:0x10 scope:global align:4 +__dt__Q34Game10LeafChappy3MgrFv = .text:0x802C5B58; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10LeafChappy3MgrFv = .text:0x802C5C08; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10LeafChappy3MgrFv = .text:0x802C5C10; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10LeafChappy3ObjFv = .text:0x802C5C18; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game10LeafChappy3ObjFv = .text:0x802C5CB0; // type:function size:0xC0 scope:global align:4 +doDirectDraw__Q34Game10LeafChappy3ObjFR8Graphics = .text:0x802C5D70; // type:function size:0x4 scope:global align:4 +getShadowParam__Q34Game10LeafChappy3ObjFRQ24Game11ShadowParam = .text:0x802C5D74; // type:function size:0xC4 scope:global align:4 +initMouthSlots__Q34Game10LeafChappy3ObjFv = .text:0x802C5E38; // type:function size:0xB4 scope:global align:4 +initWalkSmokeEffect__Q34Game10LeafChappy3ObjFv = .text:0x802C5EEC; // type:function size:0x64 scope:global align:4 +doBecomeCarcass__Q34Game10LeafChappy3ObjFv = .text:0x802C5F50; // type:function size:0x20 scope:global align:4 +doUpdateCarcass__Q34Game10LeafChappy3ObjFv = .text:0x802C5F70; // type:function size:0x20 scope:global align:4 +doGetLifeGaugeParam__Q34Game10LeafChappy3ObjFRQ24Game14LifeGaugeParam = .text:0x802C5F90; // type:function size:0x20 scope:global align:4 +birthChildren__Q34Game10LeafChappy3ObjFRQ24Game13EnemyBirthArg = .text:0x802C5FB0; // type:function size:0x244 scope:global align:4 +startEnemyRumble__Q34Game10LeafChappy3ObjFv = .text:0x802C61F4; // type:function size:0x7C scope:global align:4 +createFootmarks__Q34Game10LeafChappy3ObjFv = .text:0x802C6270; // type:function size:0x50 scope:global align:4 +getDownSmokeScale__Q34Game10LeafChappy3ObjFv = .text:0x802C62C0; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game10LeafChappy3ObjFv = .text:0x802C62C8; // type:function size:0x8 scope:weak align:4 +createChappyRelation__Q34Game10LeafChappy3ObjFv = .text:0x802C62D0; // type:function size:0x4 scope:weak align:4 +resetChappyRelation__Q34Game10LeafChappy3ObjFv = .text:0x802C62D4; // type:function size:0x4 scope:weak align:4 +getChappyRelation__Q34Game10LeafChappy3ObjFv = .text:0x802C62D8; // type:function size:0x8 scope:weak align:4 +getFootmarks__Q34Game10LeafChappy3ObjFv = .text:0x802C62E0; // type:function size:0x8 scope:weak align:4 +init__Q34Game7BigFoot3FSMFPQ24Game9EnemyBase = .text:0x802C62E8; // type:function size:0x224 scope:global align:4 +init__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C650C; // type:function size:0xCC scope:global align:4 +exec__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBase = .text:0x802C65D8; // type:function size:0x94 scope:global align:4 +cleanup__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBase = .text:0x802C666C; // type:function size:0x4 scope:global align:4 +init__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6670; // type:function size:0x84 scope:global align:4 +exec__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBase = .text:0x802C66F4; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBase = .text:0x802C67AC; // type:function size:0x4 scope:global align:4 +init__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C67B0; // type:function size:0xB4 scope:global align:4 +exec__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBase = .text:0x802C6864; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBase = .text:0x802C69DC; // type:function size:0x5C scope:global align:4 +init__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6A38; // type:function size:0x70 scope:global align:4 +exec__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBase = .text:0x802C6AA8; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBase = .text:0x802C6B9C; // type:function size:0x4 scope:global align:4 +init__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6BA0; // type:function size:0x6C scope:global align:4 +exec__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBase = .text:0x802C6C0C; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBase = .text:0x802C6CCC; // type:function size:0x48 scope:global align:4 +init__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6D14; // type:function size:0x70 scope:global align:4 +exec__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBase = .text:0x802C6D84; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBase = .text:0x802C6E84; // type:function size:0x38 scope:global align:4 +__sinit_BigFootState_cpp = .text:0x802C6EBC; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game7BigFoot14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802C6EE4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7BigFoot14ProperAnimatorFi = .text:0x802C6EEC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7BigFoot14ProperAnimatorFv = .text:0x802C6EF4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7BigFoot14ProperAnimatorFv = .text:0x802C6F50; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7BigFoot3MgrFiUc = .text:0x802C6F58; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7BigFoot3MgrFv = .text:0x802C6FA8; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7BigFoot5ParmsFv = .text:0x802C6FF0; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game7BigFoot5Parms11ProperParmsFv = .text:0x802C7038; // type:function size:0x3D8 scope:weak align:4 +createObj__Q34Game7BigFoot3MgrFi = .text:0x802C7410; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7BigFoot3ObjFv = .text:0x802C7470; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7BigFoot3MgrFi = .text:0x802C752C; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game7BigFoot3MgrFv = .text:0x802C753C; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game7BigFoot3MgrFv = .text:0x802C75A4; // type:function size:0xB4 scope:global align:4 +createModel__Q34Game7BigFoot3MgrFv = .text:0x802C7658; // type:function size:0x7C scope:global align:4 +__dt__Q34Game7BigFoot3MgrFv = .text:0x802C76D4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7BigFoot3MgrFv = .text:0x802C7784; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7BigFoot3MgrFPv = .text:0x802C778C; // type:function size:0x2C scope:weak align:4 +read__Q34Game7BigFoot5ParmsFR6Stream = .text:0x802C77B8; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game7BigFoot3MgrFv = .text:0x802C7808; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7BigFoot16BigFootShadowMgrFPQ34Game7BigFoot3Obj = .text:0x802C7810; // type:function size:0x20C scope:global align:4 +init__Q34Game7BigFoot16BigFootShadowMgrFv = .text:0x802C7A1C; // type:function size:0x14C scope:global align:4 +setJointPosPtr__Q34Game7BigFoot16BigFootShadowMgrFiiP10Vector3 = .text:0x802C7B68; // type:function size:0x18 scope:global align:4 +update__Q34Game7BigFoot16BigFootShadowMgrFv = .text:0x802C7B80; // type:function size:0x370 scope:global align:4 +invokeOnGround__Q34Game7BigFoot21BigFootGroundCallBackFiPQ24Game8WaterBox = .text:0x802C7EF0; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game7BigFoot21BigFootGroundCallBackFiPQ24Game8WaterBox = .text:0x802C7F14; // type:function size:0x24 scope:global align:4 +__ct__Q34Game7BigFoot3ObjFv = .text:0x802C7F38; // type:function size:0x16C scope:global align:4 +setInitialSetting__Q34Game7BigFoot3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802C80A4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7BigFoot3ObjFPQ24Game15CreatureInitArg = .text:0x802C80A8; // type:function size:0x148 scope:global align:4 +onKill__Q34Game7BigFoot3ObjFPQ24Game15CreatureKillArg = .text:0x802C81F0; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game7BigFoot3ObjFv = .text:0x802C8234; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game7BigFoot3ObjFv = .text:0x802C8284; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game7BigFoot3ObjFv = .text:0x802C82B8; // type:function size:0x98 scope:global align:4 +doDirectDraw__Q34Game7BigFoot3ObjFR8Graphics = .text:0x802C8350; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7BigFoot3ObjFR8Graphics = .text:0x802C8354; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7BigFoot3ObjFPQ34Game7BigFoot3FSM = .text:0x802C8374; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7BigFoot3ObjFRQ24Game11ShadowParam = .text:0x802C83C0; // type:function size:0x3C scope:global align:4 +needShadow__Q34Game7BigFoot3ObjFv = .text:0x802C83FC; // type:function size:0x50 scope:global align:4 +damageCallBack__Q34Game7BigFoot3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802C844C; // type:function size:0x9C scope:global align:4 +collisionCallback__Q34Game7BigFoot3ObjFRQ24Game9CollEvent = .text:0x802C84E8; // type:function size:0x1AC scope:global align:4 +doStartStoneState__Q34Game7BigFoot3ObjFv = .text:0x802C8694; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game7BigFoot3ObjFv = .text:0x802C86D8; // type:function size:0x6C scope:global align:4 +doStartMovie__Q34Game7BigFoot3ObjFv = .text:0x802C8744; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7BigFoot3ObjFv = .text:0x802C8764; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game7BigFoot3ObjFP10Vector3 = .text:0x802C8784; // type:function size:0x60 scope:global align:4 +getThrowupItemVelocity__Q34Game7BigFoot3ObjFP10Vector3 = .text:0x802C87E4; // type:function size:0x14 scope:global align:4 +resetFlickWalkTimeMax__Q34Game7BigFoot3ObjFv = .text:0x802C87F8; // type:function size:0x8C scope:global align:4 +setFlickWalkTimeMax__Q34Game7BigFoot3ObjFv = .text:0x802C8884; // type:function size:0x8C scope:global align:4 +getTargetPosition__Q34Game7BigFoot3ObjFv = .text:0x802C8910; // type:function size:0x3F0 scope:global align:4 +createIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C8D00; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C8E0C; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game7BigFoot3ObjFv = .text:0x802C8F30; // type:function size:0x124 scope:global align:4 +setIKSystemTargetPosition__Q34Game7BigFoot3ObjFR10Vector3 = .text:0x802C9054; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9074; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C90D4; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9134; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game7BigFoot3ObjFv = .text:0x802C9158; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C917C; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C91A0; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C91C4; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C91E8; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game7BigFoot3ObjFv = .text:0x802C920C; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game7BigFoot3ObjFv = .text:0x802C9230; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game7BigFoot3ObjFv = .text:0x802C9254; // type:function size:0x20 scope:global align:4 +isCollisionCheck__Q34Game7BigFoot3ObjFP8CollPart = .text:0x802C9274; // type:function size:0x24 scope:global align:4 +createShadowSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9298; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game7BigFoot3ObjFv = .text:0x802C92E0; // type:function size:0x74 scope:global align:4 +doAnimationShadowSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9354; // type:function size:0x24 scope:global align:4 +createMaterialAnimation__Q34Game7BigFoot3ObjFv = .text:0x802C9378; // type:function size:0x54 scope:global align:4 +startMaterialAnimation__Q34Game7BigFoot3ObjFv = .text:0x802C93CC; // type:function size:0x3C scope:global align:4 +updateMaterialAnimation__Q34Game7BigFoot3ObjFv = .text:0x802C9408; // type:function size:0xF0 scope:global align:4 +setupCollision__Q34Game7BigFoot3ObjFv = .text:0x802C94F8; // type:function size:0x90 scope:global align:4 +createItemAndEnemy__Q34Game7BigFoot3ObjFv = .text:0x802C9588; // type:function size:0xA4 scope:global align:4 +startBossChargeBGM__Q34Game7BigFoot3ObjFv = .text:0x802C962C; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C96F4; // type:function size:0xC8 scope:global align:4 +finishBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C97BC; // type:function size:0xC8 scope:global align:4 +startStoneStateBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9884; // type:function size:0xD4 scope:global align:4 +finishStoneStateBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9958; // type:function size:0xD4 scope:global align:4 +updateBossBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9A2C; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9B28; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9BE4; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game7BigFoot3ObjFv = .text:0x802C9CA0; // type:function size:0x6C8 scope:global align:4 +setupEffect__Q34Game7BigFoot3ObjFv = .text:0x802CA368; // type:function size:0x1E4 scope:global align:4 +createOnGroundEffect__Q34Game7BigFoot3ObjFiPQ24Game8WaterBox = .text:0x802CA54C; // type:function size:0x228 scope:global align:4 +createOffGroundEffect__Q34Game7BigFoot3ObjFiPQ24Game8WaterBox = .text:0x802CA774; // type:function size:0x164 scope:global align:4 +startPinchJointEffect__Q34Game7BigFoot3ObjFv = .text:0x802CA8D8; // type:function size:0x1A0 scope:global align:4 +finishPinchJointEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAA78; // type:function size:0x58 scope:global align:4 +startDeadEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAAD0; // type:function size:0x1C0 scope:global align:4 +updatePinchLife__Q34Game7BigFoot3ObjFv = .text:0x802CAC90; // type:function size:0x254 scope:global align:4 +startFurEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAEE4; // type:function size:0x74 scope:global align:4 +finishFurEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAF58; // type:function size:0x6C scope:global align:4 +updateDeadFurEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAFC4; // type:function size:0x68 scope:global align:4 +effectDrawOn__Q34Game7BigFoot3ObjFv = .text:0x802CB02C; // type:function size:0x1D8 scope:global align:4 +effectDrawOff__Q34Game7BigFoot3ObjFv = .text:0x802CB204; // type:function size:0x1D8 scope:global align:4 +addShadowScale__Q34Game7BigFoot3ObjFv = .text:0x802CB3DC; // type:function size:0x38 scope:global align:4 +__dt__Q23efx10TOdamaFur1Fv = .text:0x802CB414; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx17TOdamaDeadHahenC2Fv = .text:0x802CB4B0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx17TOdamaDeadHahenC1Fv = .text:0x802CB54C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TOdamaFur2Fv = .text:0x802CB5E8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TOdamaDeadHahenBFv = .text:0x802CB684; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TOdamaDeadHahenAFv = .text:0x802CB720; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TOdamaHahenFv = .text:0x802CB7BC; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game7BigFoot3ObjFPQ24Game8WaterBox = .text:0x802CB858; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7BigFoot3ObjFv = .text:0x802CB85C; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game7BigFoot3ObjFv = .text:0x802CB860; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game7BigFoot3ObjFv = .text:0x802CB868; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7BigFoot3ObjFv = .text:0x802CB86C; // type:function size:0x8 scope:weak align:4 +__sinit_BigFoot_cpp = .text:0x802CB874; // type:function size:0x28 scope:local align:4 +@1196@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802CB89C; // type:function size:0x14 scope:weak align:4 +@1196@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802CB8B0; // type:function size:0x14 scope:weak align:4 +@1196@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802CB8C4; // type:function size:0x14 scope:weak align:4 +@1196@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802CB8D8; // type:function size:0x14 scope:weak align:4 +@1196@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802CB8EC; // type:function size:0x14 scope:weak align:4 +@1196@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802CB900; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx11TOdamaHahenFv = .text:0x802CB914; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TOdamaDeadHahenAFv = .text:0x802CB91C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TOdamaDeadHahenBFv = .text:0x802CB924; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TOdamaFur2Fv = .text:0x802CB92C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOdamaDeadHahenC1Fv = .text:0x802CB934; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOdamaDeadHahenC2Fv = .text:0x802CB93C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TOdamaFur1Fv = .text:0x802CB944; // type:function size:0x8 scope:weak align:4 +init__Q34Game10SnakeWhole3FSMFPQ24Game9EnemyBase = .text:0x802CB94C; // type:function size:0x3D0 scope:global align:4 +init__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CBD1C; // type:function size:0xC4 scope:global align:4 +exec__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBase = .text:0x802CBDE0; // type:function size:0x1C0 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBase = .text:0x802CBFA0; // type:function size:0x4 scope:global align:4 +init__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CBFA4; // type:function size:0x12C scope:global align:4 +exec__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBase = .text:0x802CC0D0; // type:function size:0x618 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBase = .text:0x802CC6E8; // type:function size:0x98 scope:global align:4 +init__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CC780; // type:function size:0xD4 scope:global align:4 +exec__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBase = .text:0x802CC854; // type:function size:0x2F8 scope:global align:4 +cleanup__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBase = .text:0x802CCB4C; // type:function size:0x68 scope:global align:4 +init__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CCBB4; // type:function size:0xD4 scope:global align:4 +exec__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBase = .text:0x802CCC88; // type:function size:0x318 scope:global align:4 +cleanup__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBase = .text:0x802CCFA0; // type:function size:0x68 scope:global align:4 +init__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD008; // type:function size:0x64 scope:global align:4 +exec__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBase = .text:0x802CD06C; // type:function size:0x214 scope:global align:4 +cleanup__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBase = .text:0x802CD280; // type:function size:0x78 scope:global align:4 +init__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD2F8; // type:function size:0x68 scope:global align:4 +exec__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBase = .text:0x802CD360; // type:function size:0x198 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBase = .text:0x802CD4F8; // type:function size:0x4 scope:global align:4 +init__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD4FC; // type:function size:0x48 scope:global align:4 +exec__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBase = .text:0x802CD544; // type:function size:0x288 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBase = .text:0x802CD7CC; // type:function size:0x10 scope:global align:4 +init__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD7DC; // type:function size:0x48 scope:global align:4 +exec__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBase = .text:0x802CD824; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBase = .text:0x802CD9C8; // type:function size:0x10 scope:global align:4 +init__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD9D8; // type:function size:0x4C scope:global align:4 +exec__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBase = .text:0x802CDA24; // type:function size:0x3D0 scope:global align:4 +cleanup__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBase = .text:0x802CDDF4; // type:function size:0x10 scope:global align:4 +init__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CDE04; // type:function size:0x3C scope:global align:4 +exec__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBase = .text:0x802CDE40; // type:function size:0x1F0 scope:global align:4 +cleanup__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBase = .text:0x802CE030; // type:function size:0x4 scope:global align:4 +init__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CE034; // type:function size:0x40 scope:global align:4 +exec__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBase = .text:0x802CE074; // type:function size:0x1C8 scope:global align:4 +cleanup__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBase = .text:0x802CE23C; // type:function size:0x4 scope:global align:4 +__sinit_SnakeWholeState_cpp = .text:0x802CE240; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game10SnakeWhole14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802CE268; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10SnakeWhole14ProperAnimatorFi = .text:0x802CE270; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10SnakeWhole14ProperAnimatorFv = .text:0x802CE278; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10SnakeWhole14ProperAnimatorFv = .text:0x802CE2D4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10SnakeWhole3MgrFiUc = .text:0x802CE2DC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10SnakeWhole3MgrFv = .text:0x802CE32C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10SnakeWhole5ParmsFv = .text:0x802CE374; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game10SnakeWhole3MgrFi = .text:0x802CE4C8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10SnakeWhole3ObjFv = .text:0x802CE528; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game10SnakeWhole3MgrFi = .text:0x802CE5E4; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game10SnakeWhole3MgrFv = .text:0x802CE5F4; // type:function size:0x68 scope:global align:4 +__dt__Q34Game10SnakeWhole3MgrFv = .text:0x802CE65C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10SnakeWhole3MgrFv = .text:0x802CE70C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10SnakeWhole3MgrFPv = .text:0x802CE714; // type:function size:0x2C scope:weak align:4 +read__Q34Game10SnakeWhole5ParmsFR6Stream = .text:0x802CE740; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game10SnakeWhole3MgrFv = .text:0x802CE790; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10SnakeWhole3ObjFv = .text:0x802CE798; // type:function size:0x16C scope:global align:4 +setInitialSetting__Q34Game10SnakeWhole3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802CE904; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10SnakeWhole3ObjFPQ24Game15CreatureInitArg = .text:0x802CE908; // type:function size:0xCC scope:global align:4 +doUpdate__Q34Game10SnakeWhole3ObjFv = .text:0x802CE9D4; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game10SnakeWhole3ObjFv = .text:0x802CEA24; // type:function size:0x34 scope:global align:4 +doAnimationUpdateAnimator__Q34Game10SnakeWhole3ObjFv = .text:0x802CEA58; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game10SnakeWhole3ObjFv = .text:0x802CEA8C; // type:function size:0x3C scope:global align:4 +doDirectDraw__Q34Game10SnakeWhole3ObjFR8Graphics = .text:0x802CEAC8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10SnakeWhole3ObjFR8Graphics = .text:0x802CEACC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10SnakeWhole3ObjFPQ34Game10SnakeWhole3FSM = .text:0x802CEAEC; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10SnakeWhole3ObjFRQ24Game11ShadowParam = .text:0x802CEB38; // type:function size:0xB0 scope:global align:4 +damageCallBack__Q34Game10SnakeWhole3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802CEBE8; // type:function size:0x98 scope:global align:4 +doStartStoneState__Q34Game10SnakeWhole3ObjFv = .text:0x802CEC80; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game10SnakeWhole3ObjFv = .text:0x802CECA0; // type:function size:0x48 scope:global align:4 +startCarcassMotion__Q34Game10SnakeWhole3ObjFv = .text:0x802CECE8; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game10SnakeWhole3ObjFv = .text:0x802CED10; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10SnakeWhole3ObjFv = .text:0x802CED30; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game10SnakeWhole3ObjFv = .text:0x802CED50; // type:function size:0xBC scope:global align:4 +getThrowupItemPosition__Q34Game10SnakeWhole3ObjFP10Vector3 = .text:0x802CEE0C; // type:function size:0x58 scope:global align:4 +isOutTerritory__Q34Game10SnakeWhole3ObjFv = .text:0x802CEE64; // type:function size:0x3C scope:global align:4 +isInHomeRange__Q34Game10SnakeWhole3ObjFv = .text:0x802CEEA0; // type:function size:0x3C scope:global align:4 +setJumpMove__Q34Game10SnakeWhole3ObjFR10Vector3 = .text:0x802CEEDC; // type:function size:0x2AC scope:global align:4 +updateFace__Q34Game10SnakeWhole3ObjFv = .text:0x802CF188; // type:function size:0x78 scope:global align:4 +updateConstraint__Q34Game10SnakeWhole3ObjFv = .text:0x802CF200; // type:function size:0x80 scope:global align:4 +appearNearByTarget__Q34Game10SnakeWhole3ObjFPQ24Game8Creature = .text:0x802CF280; // type:function size:0x530 scope:global align:4 +setAttackPosition__Q34Game10SnakeWhole3ObjFv = .text:0x802CF7B0; // type:function size:0x20C scope:global align:4 +getAttackPiki__Q34Game10SnakeWhole3ObjFi = .text:0x802CF9BC; // type:function size:0x5F4 scope:global align:4 +getAttackNavi__Q34Game10SnakeWhole3ObjFi = .text:0x802CFFB0; // type:function size:0x5C8 scope:global align:4 +getSearchedTarget__Q34Game10SnakeWhole3ObjFv = .text:0x802D0578; // type:function size:0x50 scope:global align:4 +getSwallowSlot__Q34Game10SnakeWhole3ObjFv = .text:0x802D05C8; // type:function size:0x68 scope:global align:4 +isSwallowPikmin__Q34Game10SnakeWhole3ObjFv = .text:0x802D0630; // type:function size:0x6C scope:global align:4 +getStickHeadPikmin__Q34Game10SnakeWhole3ObjFv = .text:0x802D069C; // type:function size:0x24C scope:global align:4 +createJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D08E8; // type:function size:0x48 scope:global align:4 +setupJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0930; // type:function size:0x24 scope:global align:4 +doAnimationJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0954; // type:function size:0x24 scope:global align:4 +finishAnimationJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0978; // type:function size:0x24 scope:global align:4 +startJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D099C; // type:function size:0xB8 scope:global align:4 +returnJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0A54; // type:function size:0x88 scope:global align:4 +finishJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0ADC; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game10SnakeWhole3ObjFv = .text:0x802D0B00; // type:function size:0x38 scope:global align:4 +lifeIncrement__Q34Game10SnakeWhole3ObjFv = .text:0x802D0B38; // type:function size:0x40 scope:global align:4 +createShadowSystem__Q34Game10SnakeWhole3ObjFv = .text:0x802D0B78; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game10SnakeWhole3ObjFv = .text:0x802D0BC0; // type:function size:0x24 scope:global align:4 +doAnimationShadowSystem__Q34Game10SnakeWhole3ObjFv = .text:0x802D0BE4; // type:function size:0x24 scope:global align:4 +startJointShadow__Q34Game10SnakeWhole3ObjFv = .text:0x802D0C08; // type:function size:0x24 scope:global align:4 +finishJointShadow__Q34Game10SnakeWhole3ObjFv = .text:0x802D0C2C; // type:function size:0x24 scope:global align:4 +deleteJointShadow__Q34Game10SnakeWhole3ObjFv = .text:0x802D0C50; // type:function size:0x40 scope:global align:4 +startBossAttackBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0C90; // type:function size:0xE0 scope:global align:4 +startBossFlickBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0D70; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0E38; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0F34; // type:function size:0xD0 scope:global align:4 +setBossAppearBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D1004; // type:function size:0xCC scope:global align:4 +createEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D10D0; // type:function size:0x68 scope:global align:4 +setupEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D1138; // type:function size:0x78 scope:global align:4 +createAppearEffect__Q34Game10SnakeWhole3ObjFi = .text:0x802D11B0; // type:function size:0x1D4 scope:global align:4 +createDeadStartEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D1384; // type:function size:0x34 scope:global align:4 +createDeadFinishEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D13B8; // type:function size:0x94 scope:global align:4 +createWalkSmokeEffect__Q34Game10SnakeWhole3ObjFf = .text:0x802D144C; // type:function size:0x3C scope:global align:4 +effectDrawOn__Q34Game10SnakeWhole3ObjFv = .text:0x802D1488; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game10SnakeWhole3ObjFv = .text:0x802D14B8; // type:function size:0x30 scope:global align:4 +createEfxHamon__Q34Game10SnakeWhole3ObjFv = .text:0x802D14E8; // type:function size:0x48 scope:global align:4 +isUnderground__Q34Game10SnakeWhole3ObjFv = .text:0x802D1530; // type:function size:0x8 scope:weak align:4 +getFitEffectPos__Q34Game10SnakeWhole3ObjFv = .text:0x802D1538; // type:function size:0x58 scope:global align:4 +inWaterCallback__Q34Game10SnakeWhole3ObjFPQ24Game8WaterBox = .text:0x802D1590; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game10SnakeWhole3ObjFv = .text:0x802D1594; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game10SnakeWhole3ObjFv = .text:0x802D1598; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game10SnakeWhole3ObjFv = .text:0x802D15A0; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game10SnakeWhole3ObjFv = .text:0x802D15A8; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game10SnakeWhole3ObjFv = .text:0x802D15AC; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game10SnakeWhole3ObjFv = .text:0x802D15B4; // type:function size:0x8 scope:weak align:4 +@816@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802D15BC; // type:function size:0x14 scope:weak align:4 +@816@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802D15D0; // type:function size:0x14 scope:weak align:4 +@816@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802D15E4; // type:function size:0x14 scope:weak align:4 +@816@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802D15F8; // type:function size:0x14 scope:weak align:4 +@816@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802D160C; // type:function size:0x14 scope:weak align:4 +@816@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802D1620; // type:function size:0x14 scope:weak align:4 +SnakeJointCallBack__4GameFP8J3DJointi = .text:0x802D1634; // type:function size:0x38 scope:local align:4 +__ct__Q24Game13SnakeJointMgrFPQ24Game9EnemyBase = .text:0x802D166C; // type:function size:0x3C scope:global align:4 +setupCallBackJoint__Q24Game13SnakeJointMgrFv = .text:0x802D16A8; // type:function size:0xB8 scope:global align:4 +startModify__Q24Game13SnakeJointMgrFff = .text:0x802D1760; // type:function size:0x20 scope:global align:4 +returnModify__Q24Game13SnakeJointMgrFf = .text:0x802D1780; // type:function size:0x1C scope:global align:4 +finishModify__Q24Game13SnakeJointMgrFv = .text:0x802D179C; // type:function size:0xC scope:global align:4 +doAnimation__Q24Game13SnakeJointMgrFv = .text:0x802D17A8; // type:function size:0x80 scope:global align:4 +finishAnimation__Q24Game13SnakeJointMgrFv = .text:0x802D1828; // type:function size:0xC scope:global align:4 +makeMatrix__Q24Game13SnakeJointMgrFv = .text:0x802D1834; // type:function size:0x2AC scope:global align:4 +init__Q34Game9OniKurage3FSMFPQ24Game9EnemyBase = .text:0x802D1AE0; // type:function size:0x424 scope:global align:4 +init__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D1F04; // type:function size:0xCC scope:global align:4 +exec__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBase = .text:0x802D1FD0; // type:function size:0x18C scope:global align:4 +cleanup__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBase = .text:0x802D215C; // type:function size:0x4 scope:global align:4 +init__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2160; // type:function size:0x5C scope:global align:4 +exec__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBase = .text:0x802D21BC; // type:function size:0x148 scope:global align:4 +cleanup__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBase = .text:0x802D2304; // type:function size:0x4 scope:global align:4 +init__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2308; // type:function size:0x74 scope:global align:4 +exec__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBase = .text:0x802D237C; // type:function size:0x1DC scope:global align:4 +cleanup__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBase = .text:0x802D2558; // type:function size:0x4 scope:global align:4 +init__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D255C; // type:function size:0x6C scope:global align:4 +exec__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBase = .text:0x802D25C8; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBase = .text:0x802D2724; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2748; // type:function size:0x80 scope:global align:4 +exec__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBase = .text:0x802D27C8; // type:function size:0x320 scope:global align:4 +cleanup__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBase = .text:0x802D2AE8; // type:function size:0x44 scope:global align:4 +init__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2B2C; // type:function size:0x68 scope:global align:4 +exec__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBase = .text:0x802D2B94; // type:function size:0x180 scope:global align:4 +cleanup__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBase = .text:0x802D2D14; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2D38; // type:function size:0x94 scope:global align:4 +exec__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBase = .text:0x802D2DCC; // type:function size:0x164 scope:global align:4 +cleanup__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBase = .text:0x802D2F30; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2F54; // type:function size:0xC0 scope:global align:4 +exec__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBase = .text:0x802D3014; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBase = .text:0x802D3094; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D30B8; // type:function size:0x68 scope:global align:4 +exec__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802D3120; // type:function size:0xF0 scope:global align:4 +cleanup__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802D3210; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D3234; // type:function size:0x60 scope:global align:4 +exec__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBase = .text:0x802D3294; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBase = .text:0x802D33CC; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D33F0; // type:function size:0xE0 scope:global align:4 +exec__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802D34D0; // type:function size:0x17C scope:global align:4 +cleanup__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802D364C; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D3670; // type:function size:0xDC scope:global align:4 +exec__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802D374C; // type:function size:0x18C scope:global align:4 +cleanup__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802D38D8; // type:function size:0x24 scope:global align:4 +__sinit_OniKurageState_cpp = .text:0x802D38FC; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game9OniKurage14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802D3924; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game9OniKurage14ProperAnimatorFi = .text:0x802D392C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game9OniKurage14ProperAnimatorFv = .text:0x802D3934; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game9OniKurage14ProperAnimatorFv = .text:0x802D3990; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9OniKurage3MgrFiUc = .text:0x802D3998; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9OniKurage3MgrFv = .text:0x802D39E8; // type:function size:0x48 scope:global align:4 +__ct__Q34Game9OniKurage5ParmsFv = .text:0x802D3A30; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game9OniKurage5Parms11ProperParmsFv = .text:0x802D3A78; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game9OniKurage3MgrFi = .text:0x802D3CB4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9OniKurage3ObjFv = .text:0x802D3D14; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9OniKurage3MgrFi = .text:0x802D3DD0; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game9OniKurage3MgrFv = .text:0x802D3DE0; // type:function size:0x68 scope:global align:4 +__dt__Q34Game9OniKurage3MgrFv = .text:0x802D3E48; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9OniKurage3MgrFv = .text:0x802D3EF8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9OniKurage3MgrFPv = .text:0x802D3F00; // type:function size:0x2C scope:weak align:4 +read__Q34Game9OniKurage5ParmsFR6Stream = .text:0x802D3F2C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game9OniKurage3MgrFv = .text:0x802D3F7C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9OniKurage3ObjFv = .text:0x802D3F84; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game9OniKurage3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802D40C4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game9OniKurage3ObjFPQ24Game15CreatureInitArg = .text:0x802D40C8; // type:function size:0xB0 scope:global align:4 +onKill__Q34Game9OniKurage3ObjFPQ24Game15CreatureKillArg = .text:0x802D4178; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game9OniKurage3ObjFv = .text:0x802D41CC; // type:function size:0x108 scope:global align:4 +doUpdateCommon__Q34Game9OniKurage3ObjFv = .text:0x802D42D4; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game9OniKurage3ObjFR8Graphics = .text:0x802D4308; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game9OniKurage3ObjFR8Graphics = .text:0x802D430C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game9OniKurage3ObjFPQ34Game9OniKurage3FSM = .text:0x802D432C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game9OniKurage3ObjFRQ24Game11ShadowParam = .text:0x802D4378; // type:function size:0x10C scope:global align:4 +damageCallBack__Q34Game9OniKurage3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802D4484; // type:function size:0x38 scope:global align:4 +doStartStoneState__Q34Game9OniKurage3ObjFv = .text:0x802D44BC; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game9OniKurage3ObjFv = .text:0x802D4500; // type:function size:0xB8 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game9OniKurage3ObjFv = .text:0x802D45B8; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game9OniKurage3ObjFv = .text:0x802D45EC; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game9OniKurage3ObjFv = .text:0x802D4620; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game9OniKurage3ObjFv = .text:0x802D4640; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game9OniKurage3ObjFv = .text:0x802D4660; // type:function size:0xC8 scope:global align:4 +setHeightVelocity__Q34Game9OniKurage3ObjFff = .text:0x802D4728; // type:function size:0x98 scope:global align:4 +setRandTarget__Q34Game9OniKurage3ObjFv = .text:0x802D47C0; // type:function size:0x1D8 scope:global align:4 +getMovePitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4998; // type:function size:0xA4 scope:global align:4 +getAttackPitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4A3C; // type:function size:0x1A8 scope:global align:4 +getFlickPitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4BE4; // type:function size:0x1A8 scope:global align:4 +getTakeOffPitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4D8C; // type:function size:0x144 scope:global align:4 +getFallPitchOffset__Q34Game9OniKurage3ObjFf = .text:0x802D4ED0; // type:function size:0x168 scope:global align:4 +updateFallTimer__Q34Game9OniKurage3ObjFv = .text:0x802D5038; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game9OniKurage3ObjFv = .text:0x802D5068; // type:function size:0xA4 scope:global align:4 +getSearchedTarget__Q34Game9OniKurage3ObjFf = .text:0x802D510C; // type:function size:0x340 scope:global align:4 +isSuck__Q34Game9OniKurage3ObjFfPQ24Game8Creature = .text:0x802D544C; // type:function size:0x238 scope:global align:4 +suckPikmin__Q34Game9OniKurage3ObjFf = .text:0x802D5684; // type:function size:0x434 scope:global align:4 +suckNavi__Q34Game9OniKurage3ObjFf = .text:0x802D5AB8; // type:function size:0x570 scope:global align:4 +updateCollPartOffset__Q34Game9OniKurage3ObjFv = .text:0x802D6028; // type:function size:0x26C scope:global align:4 +isFinishNaviSuck__Q34Game9OniKurage3ObjFv = .text:0x802D6294; // type:function size:0x100 scope:global align:4 +isNaviSucked__Q34Game9OniKurage3ObjFv = .text:0x802D6394; // type:function size:0x28 scope:global align:4 +flickStickNavi__Q34Game9OniKurage3ObjFb = .text:0x802D63BC; // type:function size:0x29C scope:global align:4 +escapeCheckNavi__Q34Game9OniKurage3ObjFv = .text:0x802D6658; // type:function size:0x130 scope:global align:4 +createEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6788; // type:function size:0x340 scope:global align:4 +setupEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6AC8; // type:function size:0x8C scope:global align:4 +startEyeHireBodyEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6B54; // type:function size:0x88 scope:global align:4 +finishEyeBodyEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6BDC; // type:function size:0x7C scope:global align:4 +setHireEffectLife__Q34Game9OniKurage3ObjFs = .text:0x802D6C58; // type:function size:0x24 scope:global align:4 +finishHireEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6C7C; // type:function size:0x50 scope:global align:4 +startSuckEffect__Q34Game9OniKurage3ObjFR10Vector3 = .text:0x802D6CCC; // type:function size:0x58 scope:global align:4 +updateSuckEffect__Q34Game9OniKurage3ObjFR10Vector3 = .text:0x802D6D24; // type:function size:0x24 scope:global align:4 +finishSuckEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6D48; // type:function size:0x30 scope:global align:4 +createFlickNaviEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6D78; // type:function size:0x34 scope:global align:4 +createBodyBombEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6DAC; // type:function size:0x9C scope:global align:4 +createDownEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6E48; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game9OniKurage3ObjFv = .text:0x802D6E8C; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game9OniKurage3ObjFv = .text:0x802D6E94; // type:function size:0xB4 scope:global align:4 +effectDrawOff__Q34Game9OniKurage3ObjFv = .text:0x802D6F48; // type:function size:0xB4 scope:global align:4 +__dt__Q23efx14TKurageDeadrunFv = .text:0x802D6FFC; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKurageGepuFv = .text:0x802D7098; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKurageKiraFv = .text:0x802D7134; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TKurageEyeFv = .text:0x802D71D0; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game9OniKurage3ObjFPQ24Game8WaterBox = .text:0x802D726C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game9OniKurage3ObjFv = .text:0x802D7270; // type:function size:0x4 scope:weak align:4 +getMouthSlots__Q34Game9OniKurage3ObjFv = .text:0x802D7274; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game9OniKurage3ObjFv = .text:0x802D727C; // type:function size:0x8 scope:weak align:4 +__sinit_OniKurage_cpp = .text:0x802D7284; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx10TKurageEyeFv = .text:0x802D72AC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TKurageKiraFv = .text:0x802D72B4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TKurageGepuFv = .text:0x802D72BC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TKurageDeadrunFv = .text:0x802D72C4; // type:function size:0x8 scope:weak align:4 +init__Q34Game11BigTreasure3FSMFPQ24Game9EnemyBase = .text:0x802D72CC; // type:function size:0x42C scope:global align:4 +init__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D76F8; // type:function size:0x80 scope:global align:4 +exec__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBase = .text:0x802D7778; // type:function size:0x230 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBase = .text:0x802D79A8; // type:function size:0x4 scope:global align:4 +init__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D79AC; // type:function size:0x80 scope:global align:4 +exec__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBase = .text:0x802D7A2C; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBase = .text:0x802D7B28; // type:function size:0x4 scope:global align:4 +init__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D7B2C; // type:function size:0xAC scope:global align:4 +exec__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBase = .text:0x802D7BD8; // type:function size:0x324 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBase = .text:0x802D7EFC; // type:function size:0x30 scope:global align:4 +init__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D7F2C; // type:function size:0xA0 scope:global align:4 +exec__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBase = .text:0x802D7FCC; // type:function size:0x140 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBase = .text:0x802D810C; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8130; // type:function size:0xA0 scope:global align:4 +exec__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBase = .text:0x802D81D0; // type:function size:0x124 scope:global align:4 +cleanup__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBase = .text:0x802D82F4; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8318; // type:function size:0x74 scope:global align:4 +exec__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBase = .text:0x802D838C; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBase = .text:0x802D8468; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D848C; // type:function size:0x98 scope:global align:4 +exec__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBase = .text:0x802D8524; // type:function size:0x19C scope:global align:4 +cleanup__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBase = .text:0x802D86C0; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D86E4; // type:function size:0x78 scope:global align:4 +exec__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBase = .text:0x802D875C; // type:function size:0x148 scope:global align:4 +cleanup__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBase = .text:0x802D88A4; // type:function size:0x40 scope:global align:4 +init__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D88E4; // type:function size:0x80 scope:global align:4 +exec__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBase = .text:0x802D8964; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBase = .text:0x802D8A8C; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8AB0; // type:function size:0x74 scope:global align:4 +exec__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBase = .text:0x802D8B24; // type:function size:0xEC scope:global align:4 +cleanup__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBase = .text:0x802D8C10; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8C34; // type:function size:0xA8 scope:global align:4 +exec__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBase = .text:0x802D8CDC; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBase = .text:0x802D8E20; // type:function size:0x4 scope:global align:4 +init__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8E24; // type:function size:0xA8 scope:global align:4 +exec__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBase = .text:0x802D8ECC; // type:function size:0x1EC scope:global align:4 +cleanup__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBase = .text:0x802D90B8; // type:function size:0x4 scope:global align:4 +__sinit_BigTreasureState_cpp = .text:0x802D90BC; // type:function size:0x28 scope:local align:4 +__ct__Q34Game11BigTreasure3MgrFiUc = .text:0x802D90E4; // type:function size:0x110 scope:global align:4 +doAlloc__Q34Game11BigTreasure3MgrFv = .text:0x802D91F4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game11BigTreasure5ParmsFv = .text:0x802D923C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game11BigTreasure5Parms11ProperParmsFv = .text:0x802D9284; // type:function size:0xFF8 scope:weak align:4 +createObj__Q34Game11BigTreasure3MgrFi = .text:0x802DA27C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11BigTreasure3ObjFv = .text:0x802DA2DC; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game11BigTreasure3MgrFi = .text:0x802DA398; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game11BigTreasure3MgrFv = .text:0x802DA3A8; // type:function size:0x68 scope:global align:4 +createModel__Q34Game11BigTreasure3MgrFv = .text:0x802DA410; // type:function size:0x7C scope:global align:4 +__dt__Q34Game11BigTreasure3MgrFv = .text:0x802DA48C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11BigTreasure3MgrFv = .text:0x802DA53C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11BigTreasure3MgrFPv = .text:0x802DA544; // type:function size:0x2C scope:weak align:4 +read__Q34Game11BigTreasure5ParmsFR6Stream = .text:0x802DA570; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11BigTreasure3MgrFv = .text:0x802DA5C0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11BigTreasure20BigTreasureShadowMgrFPQ34Game11BigTreasure3Obj = .text:0x802DA5C8; // type:function size:0x418 scope:global align:4 +init__Q34Game11BigTreasure20BigTreasureShadowMgrFv = .text:0x802DA9E0; // type:function size:0x2B4 scope:global align:4 +setKosiJointPosPtr__Q34Game11BigTreasure20BigTreasureShadowMgrFP10Vector3 = .text:0x802DAC94; // type:function size:0x8 scope:global align:4 +setJointPosPtr__Q34Game11BigTreasure20BigTreasureShadowMgrFiiP10Vector3 = .text:0x802DAC9C; // type:function size:0x18 scope:global align:4 +update__Q34Game11BigTreasure20BigTreasureShadowMgrFv = .text:0x802DACB4; // type:function size:0x510 scope:global align:4 +updateTreasureShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm = .text:0x802DB1C4; // type:function size:0xF4 scope:global align:4 +updateHandShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm = .text:0x802DB2B8; // type:function size:0x348 scope:global align:4 +updateAntennaShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm = .text:0x802DB600; // type:function size:0x544 scope:global align:4 +__dt__Q24Game17TubeShadowPosNodeFv = .text:0x802DBB44; // type:function size:0x70 scope:weak align:4 +invokeOnGround__Q34Game11BigTreasure25BigTreasureGroundCallBackFiPQ24Game8WaterBox = .text:0x802DBBB4; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game11BigTreasure25BigTreasureGroundCallBackFiPQ24Game8WaterBox = .text:0x802DBBD8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game11BigTreasure3ObjFv = .text:0x802DBBFC; // type:function size:0x13C scope:global align:4 +setInitialSetting__Q34Game11BigTreasure3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802DBD38; // type:function size:0x4 scope:global align:4 +onInit__Q34Game11BigTreasure3ObjFPQ24Game15CreatureInitArg = .text:0x802DBD3C; // type:function size:0x160 scope:global align:4 +onKill__Q34Game11BigTreasure3ObjFPQ24Game15CreatureKillArg = .text:0x802DBE9C; // type:function size:0x4C scope:global align:4 +doUpdate__Q34Game11BigTreasure3ObjFv = .text:0x802DBEE8; // type:function size:0x4C scope:global align:4 +doUpdateCommon__Q34Game11BigTreasure3ObjFv = .text:0x802DBF34; // type:function size:0x3C scope:global align:4 +doAnimationUpdateAnimator__Q34Game11BigTreasure3ObjFv = .text:0x802DBF70; // type:function size:0x94 scope:global align:4 +doAnimationCullingOff__Q34Game11BigTreasure3ObjFv = .text:0x802DC004; // type:function size:0x98 scope:global align:4 +changeMaterial__Q34Game11BigTreasure3ObjFv = .text:0x802DC09C; // type:function size:0x194 scope:global align:4 +doDirectDraw__Q34Game11BigTreasure3ObjFR8Graphics = .text:0x802DC230; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11BigTreasure3ObjFR8Graphics = .text:0x802DC234; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game11BigTreasure3ObjFPQ34Game11BigTreasure3FSM = .text:0x802DC254; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game11BigTreasure3ObjFRQ24Game11ShadowParam = .text:0x802DC2A0; // type:function size:0x3C scope:global align:4 +damageCallBack__Q34Game11BigTreasure3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802DC2DC; // type:function size:0x100 scope:global align:4 +hipdropCallBack__Q34Game11BigTreasure3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802DC3DC; // type:function size:0x38 scope:global align:4 +doStartStoneState__Q34Game11BigTreasure3ObjFv = .text:0x802DC414; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game11BigTreasure3ObjFv = .text:0x802DC434; // type:function size:0x48 scope:global align:4 +doStartMovie__Q34Game11BigTreasure3ObjFv = .text:0x802DC47C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game11BigTreasure3ObjFv = .text:0x802DC49C; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game11BigTreasure3ObjFP10Vector3 = .text:0x802DC4BC; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game11BigTreasure3ObjFP10Vector3 = .text:0x802DC50C; // type:function size:0x14 scope:global align:4 +resetAttackLimitTimer__Q34Game11BigTreasure3ObjFv = .text:0x802DC520; // type:function size:0x5C scope:global align:4 +isAttackLimitTime__Q34Game11BigTreasure3ObjFv = .text:0x802DC57C; // type:function size:0x228 scope:global align:4 +getTargetPosition__Q34Game11BigTreasure3ObjFv = .text:0x802DC7A4; // type:function size:0x298 scope:global align:4 +createIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCA3C; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCB48; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game11BigTreasure3ObjFv = .text:0x802DCC6C; // type:function size:0x84 scope:global align:4 +setIKSystemTargetPosition__Q34Game11BigTreasure3ObjFR10Vector3 = .text:0x802DCCF0; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCD10; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCD70; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCDD0; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game11BigTreasure3ObjFv = .text:0x802DCDF4; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE18; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE3C; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE60; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE84; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCEA8; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCECC; // type:function size:0x24 scope:global align:4 +checkJointScaleOn__Q34Game11BigTreasure3ObjFv = .text:0x802DCEF0; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game11BigTreasure3ObjFv = .text:0x802DCF14; // type:function size:0x20 scope:global align:4 +getJointPositionPtr__Q34Game11BigTreasure3ObjFii = .text:0x802DCF34; // type:function size:0x1C scope:global align:4 +createShadowSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCF50; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCF98; // type:function size:0x80 scope:global align:4 +doAnimationShadowSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DD018; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game11BigTreasure3ObjFv = .text:0x802DD03C; // type:function size:0x90 scope:global align:4 +setupTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD0CC; // type:function size:0x35C scope:global align:4 +updateTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD428; // type:function size:0x168 scope:global align:4 +dropTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD590; // type:function size:0x1C0 scope:global align:4 +dropTreasure__Q34Game11BigTreasure3ObjFi = .text:0x802DD750; // type:function size:0x88 scope:global align:4 +isCapturedTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD7D8; // type:function size:0x5C scope:global align:4 +isCapturedTreasure__Q34Game11BigTreasure3ObjFi = .text:0x802DD834; // type:function size:0x1C scope:global align:4 +getCapturedTreasureNum__Q34Game11BigTreasure3ObjFv = .text:0x802DD850; // type:function size:0x4C scope:global align:4 +addTreasureDamage__Q34Game11BigTreasure3ObjFif = .text:0x802DD89C; // type:function size:0xA0 scope:global align:4 +flickStickCollPartPikmin__Q34Game11BigTreasure3ObjFP8CollPart = .text:0x802DD93C; // type:function size:0x284 scope:global align:4 +releaseItemLoozy__Q34Game11BigTreasure3ObjFv = .text:0x802DDBC0; // type:function size:0x6C scope:global align:4 +createAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDC2C; // type:function size:0x48 scope:global align:4 +setupAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDC74; // type:function size:0x24 scope:global align:4 +updateAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDC98; // type:function size:0x24 scope:global align:4 +startAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDCBC; // type:function size:0x74 scope:global align:4 +finishAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDD30; // type:function size:0x24 scope:global align:4 +setTreasureAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDD54; // type:function size:0x1A8 scope:global align:4 +getPreAttackAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DDEFC; // type:function size:0x48 scope:global align:4 +getAttackAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DDF44; // type:function size:0x90 scope:global align:4 +getPutItemAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DDFD4; // type:function size:0x90 scope:global align:4 +getFireAttackAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DE064; // type:function size:0x184 scope:global align:4 +getPreAttackTimeMax__Q34Game11BigTreasure3ObjFv = .text:0x802DE1E8; // type:function size:0x98 scope:global align:4 +getAttackTimeMax__Q34Game11BigTreasure3ObjFv = .text:0x802DE280; // type:function size:0x5C scope:global align:4 +isNormalAttack__Q34Game11BigTreasure3ObjFi = .text:0x802DE2DC; // type:function size:0x20 scope:global align:4 +resetMaterialColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE2FC; // type:function size:0xB0 scope:global align:4 +resetTargetMatBodyColor__Q34Game11BigTreasure3ObjFb = .text:0x802DE3AC; // type:function size:0x38 scope:global align:4 +resetCurrentMatBodyColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE3E4; // type:function size:0x24 scope:global align:4 +resetTargetEyeMatColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE408; // type:function size:0x58 scope:global align:4 +resetCurrentMatEyeColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE460; // type:function size:0x34 scope:global align:4 +setMatEyeAnimSpeed__Q34Game11BigTreasure3ObjFv = .text:0x802DE494; // type:function size:0x12C scope:global align:4 +setAttackMaterialColor__Q34Game11BigTreasure3ObjFb = .text:0x802DE5C0; // type:function size:0x4D0 scope:global align:4 +updateMaterialColor__Q34Game11BigTreasure3ObjFv = .text:0x802DEA90; // type:function size:0x4C0 scope:global align:4 +startBlendAnimation__Q34Game11BigTreasure3ObjFib = .text:0x802DEF50; // type:function size:0x11C scope:global align:4 +endBlendAnimation__Q34Game11BigTreasure3ObjFv = .text:0x802DF06C; // type:function size:0x98 scope:global align:4 +getCurrAnimationIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DF104; // type:function size:0x4C scope:global align:4 +startBossChargeBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF150; // type:function size:0xC8 scope:global align:4 +startBossAttackBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF218; // type:function size:0x120 scope:global align:4 +finishBossAttackBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF338; // type:function size:0x16C scope:global align:4 +startBossFlickBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF4A4; // type:function size:0xC8 scope:global align:4 +startBossItemDropBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF56C; // type:function size:0x1B0 scope:global align:4 +updateBossBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF71C; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF818; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF8D4; // type:function size:0x164 scope:global align:4 +createEffect__Q34Game11BigTreasure3ObjFv = .text:0x802DFA38; // type:function size:0x61C scope:global align:4 +__dt__Q23efx23TChasePosPosLocalYScaleFv = .text:0x802E0054; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E00D8; // type:function size:0x220 scope:global align:4 +createOnGroundEffect__Q34Game11BigTreasure3ObjFiPQ24Game8WaterBox = .text:0x802E02F8; // type:function size:0x1C0 scope:global align:4 +createOffGroundEffect__Q34Game11BigTreasure3ObjFiPQ24Game8WaterBox = .text:0x802E04B8; // type:function size:0xA0 scope:global align:4 +startTreasurePinchSmoke__Q34Game11BigTreasure3ObjFi = .text:0x802E0558; // type:function size:0x3C scope:global align:4 +finishTreasurePinchSmoke__Q34Game11BigTreasure3ObjFi = .text:0x802E0594; // type:function size:0x38 scope:global align:4 +createDropTreasureEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E05CC; // type:function size:0xD8 scope:global align:4 +createAppearBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E06A4; // type:function size:0xF0 scope:global align:4 +createAppearLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E0794; // type:function size:0x60 scope:global align:4 +createDeadBombLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E07F4; // type:function size:0x21C scope:global align:4 +createDeadBombBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0A10; // type:function size:0x90 scope:global align:4 +startDeadBubbleLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E0AA0; // type:function size:0x60 scope:global align:4 +finishDeadBubbleLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E0B00; // type:function size:0x5C scope:global align:4 +startDeadBubbleBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0B5C; // type:function size:0x34 scope:global align:4 +finishDeadBubbleBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0B90; // type:function size:0x30 scope:global align:4 +startDeadBubbleMouthEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0BC0; // type:function size:0x34 scope:global align:4 +finishDeadBubbleMouthEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0BF4; // type:function size:0x30 scope:global align:4 +createChangeMaterialEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0C24; // type:function size:0xA0 scope:global align:4 +createDeadBombFootEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0CC4; // type:function size:0xB8 scope:global align:4 +startShineParticleEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0D7C; // type:function size:0x34 scope:global align:4 +finishShineParticleEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0DB0; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game11BigTreasure3ObjFv = .text:0x802E0DE0; // type:function size:0x1C4 scope:global align:4 +effectDrawOff__Q34Game11BigTreasure3ObjFv = .text:0x802E0FA4; // type:function size:0x1C4 scope:global align:4 +subShadowScale__Q34Game11BigTreasure3ObjFv = .text:0x802E1168; // type:function size:0x2C scope:global align:4 +startBigTreasureBootUpDemo__Q34Game11BigTreasure3ObjFv = .text:0x802E1194; // type:function size:0xFC scope:global align:4 +__dt__Q23efx14TOootaParticleFv = .text:0x802E1290; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TOootaChangeBodyFv = .text:0x802E132C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TOootaDeadAwaFv = .text:0x802E13C8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TOootaStartBodyFv = .text:0x802E1464; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TOootaChangeLegFv = .text:0x802E1500; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TOootaStartLegFv = .text:0x802E159C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TOootaStartOtaFv = .text:0x802E1638; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game11BigTreasure3ObjFPQ24Game8WaterBox = .text:0x802E16D4; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game11BigTreasure3ObjFv = .text:0x802E16D8; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game11BigTreasure3ObjFv = .text:0x802E16DC; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game11BigTreasure3ObjFv = .text:0x802E16E4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game11BigTreasure3ObjFv = .text:0x802E16E8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11BigTreasure14ProperAnimatorFv = .text:0x802E16F0; // type:function size:0x6C scope:weak align:4 +__sinit_BigTreasure_cpp = .text:0x802E175C; // type:function size:0x28 scope:local align:4 +@1412@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802E1784; // type:function size:0x14 scope:weak align:4 +@1412@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802E1798; // type:function size:0x14 scope:weak align:4 +@1412@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802E17AC; // type:function size:0x14 scope:weak align:4 +@1412@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802E17C0; // type:function size:0x14 scope:weak align:4 +@1412@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802E17D4; // type:function size:0x14 scope:weak align:4 +@1412@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802E17E8; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14TOootaStartOtaFv = .text:0x802E17FC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TOootaStartLegFv = .text:0x802E1804; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TOootaChangeLegFv = .text:0x802E180C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TOootaStartBodyFv = .text:0x802E1814; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TOootaDeadAwaFv = .text:0x802E181C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TOootaChangeBodyFv = .text:0x802E1824; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TOootaParticleFv = .text:0x802E182C; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Kabuto3FSMFPQ24Game9EnemyBase = .text:0x802E1834; // type:function size:0x480 scope:global align:4 +init__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E1CB4; // type:function size:0xA0 scope:global align:4 +finishWaitEffect__Q34Game6Kabuto3ObjFv = .text:0x802E1D54; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Kabuto3ObjFv = .text:0x802E1D58; // type:function size:0x8 scope:weak align:4 +exec__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBase = .text:0x802E1D60; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBase = .text:0x802E1DA4; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E1DA8; // type:function size:0x6C scope:global align:4 +exec__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBase = .text:0x802E1E14; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBase = .text:0x802E1F20; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E1F44; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBase = .text:0x802E1F98; // type:function size:0x340 scope:global align:4 +cleanup__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBase = .text:0x802E22D8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E22FC; // type:function size:0x50 scope:global align:4 +exec__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBase = .text:0x802E234C; // type:function size:0x38C scope:global align:4 +cleanup__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBase = .text:0x802E26D8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E26FC; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBase = .text:0x802E2764; // type:function size:0x16C scope:global align:4 +cleanup__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBase = .text:0x802E28D0; // type:function size:0x38 scope:global align:4 +init__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E2908; // type:function size:0x7C scope:global align:4 +exec__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBase = .text:0x802E2984; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBase = .text:0x802E2AAC; // type:function size:0x44 scope:global align:4 +init__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E2AF0; // type:function size:0xB8 scope:global align:4 +exec__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBase = .text:0x802E2BA8; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBase = .text:0x802E2C8C; // type:function size:0x84 scope:global align:4 +init__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E2D10; // type:function size:0x18C scope:global align:4 +exec__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBase = .text:0x802E2E9C; // type:function size:0x244 scope:global align:4 +cleanup__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBase = .text:0x802E30E0; // type:function size:0x10 scope:global align:4 +init__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E30F0; // type:function size:0x130 scope:global align:4 +exec__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBase = .text:0x802E3220; // type:function size:0x90 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBase = .text:0x802E32B0; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E32D4; // type:function size:0x54 scope:global align:4 +startWaitEffect__Q34Game6Kabuto3ObjFv = .text:0x802E3328; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBase = .text:0x802E332C; // type:function size:0x204 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBase = .text:0x802E3530; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E3534; // type:function size:0x68 scope:global align:4 +startRotateEffect__Q34Game6Kabuto3ObjFv = .text:0x802E359C; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBase = .text:0x802E35A0; // type:function size:0x290 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBase = .text:0x802E3830; // type:function size:0x30 scope:global align:4 +finishRotateEffect__Q34Game6Kabuto3ObjFv = .text:0x802E3860; // type:function size:0x4 scope:weak align:4 +init__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E3864; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBase = .text:0x802E38CC; // type:function size:0x260 scope:global align:4 +cleanup__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBase = .text:0x802E3B2C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E3B30; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBase = .text:0x802E3B84; // type:function size:0x16C scope:global align:4 +cleanup__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBase = .text:0x802E3CF0; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game6Kabuto14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802E3CF4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Kabuto14ProperAnimatorFi = .text:0x802E3CFC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Kabuto14ProperAnimatorFv = .text:0x802E3D04; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Kabuto14ProperAnimatorFv = .text:0x802E3D60; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kabuto3MgrFiUc = .text:0x802E3D68; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game6Kabuto3MgrFv = .text:0x802E3DB8; // type:function size:0xE8 scope:global align:4 +loadAnimData__Q34Game6Kabuto3MgrFv = .text:0x802E3EA0; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game6Kabuto3MgrFv = .text:0x802E3F40; // type:function size:0x14C scope:global align:4 +__dt__Q34Game6Kabuto3MgrFv = .text:0x802E408C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Kabuto3MgrFv = .text:0x802E413C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Kabuto3MgrFPv = .text:0x802E4144; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game6Kabuto3MgrFv = .text:0x802E4170; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kabuto3ObjFv = .text:0x802E4178; // type:function size:0x14C scope:global align:4 +createEffect__Q34Game6Kabuto3ObjFv = .text:0x802E42C4; // type:function size:0x4 scope:weak align:4 +setInitialSetting__Q34Game6Kabuto3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802E42C8; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Kabuto3ObjFPQ24Game15CreatureInitArg = .text:0x802E42CC; // type:function size:0x108 scope:global align:4 +setupEffect__Q34Game6Kabuto3ObjFv = .text:0x802E43D4; // type:function size:0x4 scope:weak align:4 +doUpdate__Q34Game6Kabuto3ObjFv = .text:0x802E43D8; // type:function size:0x44 scope:global align:4 +doDirectDraw__Q34Game6Kabuto3ObjFR8Graphics = .text:0x802E441C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Kabuto3ObjFR8Graphics = .text:0x802E4420; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Kabuto3ObjFPQ34Game6Kabuto3FSM = .text:0x802E4440; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Kabuto3ObjFRQ24Game11ShadowParam = .text:0x802E448C; // type:function size:0xA8 scope:global align:4 +doStartStoneState__Q34Game6Kabuto3ObjFv = .text:0x802E4534; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game6Kabuto3ObjFv = .text:0x802E4588; // type:function size:0xB0 scope:global align:4 +startCarcassMotion__Q34Game6Kabuto3ObjFv = .text:0x802E4638; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game6Kabuto3ObjFv = .text:0x802E4660; // type:function size:0x2C scope:global align:4 +effectDrawOff__Q34Game6Kabuto3ObjFv = .text:0x802E468C; // type:function size:0x4 scope:weak align:4 +doEndMovie__Q34Game6Kabuto3ObjFv = .text:0x802E4690; // type:function size:0x2C scope:global align:4 +effectDrawOn__Q34Game6Kabuto3ObjFv = .text:0x802E46BC; // type:function size:0x4 scope:weak align:4 +initWalkSmokeEffect__Q34Game6Kabuto3ObjFv = .text:0x802E46C0; // type:function size:0x94 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game6Kabuto3ObjFv = .text:0x802E4754; // type:function size:0x8 scope:global align:4 +setRandTarget__Q34Game6Kabuto3ObjFv = .text:0x802E475C; // type:function size:0x198 scope:global align:4 +getSearchedTarget__Q34Game6Kabuto3ObjFv = .text:0x802E48F4; // type:function size:0x58 scope:global align:4 +isAttackableTarget__Q34Game6Kabuto3ObjFv = .text:0x802E494C; // type:function size:0x2BC scope:global align:4 +createStoneAttack__Q34Game6Kabuto3ObjFv = .text:0x802E4C08; // type:function size:0xE4 scope:global align:4 +updateCaution__Q34Game6Kabuto3ObjFv = .text:0x802E4CEC; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game6Kabuto3ObjFv = .text:0x802E4D3C; // type:function size:0x24 scope:global align:4 +lifeIncrement__Q34Game6Kabuto3ObjFv = .text:0x802E4D60; // type:function size:0x40 scope:global align:4 +createRockEmitEffect__Q34Game6Kabuto3ObjFv = .text:0x802E4DA0; // type:function size:0x7C scope:global align:4 +__dt__Q34Game6Kabuto3ObjFv = .text:0x802E4E1C; // type:function size:0xBC scope:weak align:4 +isUnderground__Q34Game6Kabuto3ObjFv = .text:0x802E4ED8; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game6Kabuto3ObjFv = .text:0x802E4EE0; // type:function size:0x8 scope:weak align:4 +init__Q34Game12KumaKochappy3FSMFPQ24Game9EnemyBase = .text:0x802E4EE8; // type:function size:0x27C scope:global align:4 +init__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E5164; // type:function size:0x50 scope:global align:4 +exec__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBase = .text:0x802E51B4; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBase = .text:0x802E51F8; // type:function size:0x4 scope:global align:4 +init__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E51FC; // type:function size:0x58 scope:global align:4 +exec__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBase = .text:0x802E5254; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBase = .text:0x802E5298; // type:function size:0x4 scope:global align:4 +init__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E529C; // type:function size:0x54 scope:global align:4 +exec__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBase = .text:0x802E52F0; // type:function size:0x3A8 scope:global align:4 +cleanup__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBase = .text:0x802E5698; // type:function size:0x3C scope:global align:4 +init__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E56D4; // type:function size:0x58 scope:global align:4 +exec__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBase = .text:0x802E572C; // type:function size:0x4CC scope:global align:4 +cleanup__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBase = .text:0x802E5BF8; // type:function size:0x24 scope:global align:4 +init__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E5C1C; // type:function size:0x44 scope:global align:4 +exec__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBase = .text:0x802E5C60; // type:function size:0x4D0 scope:global align:4 +cleanup__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBase = .text:0x802E6130; // type:function size:0x4 scope:global align:4 +init__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E6134; // type:function size:0x34 scope:global align:4 +exec__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBase = .text:0x802E6168; // type:function size:0x538 scope:global align:4 +cleanup__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBase = .text:0x802E66A0; // type:function size:0x28 scope:global align:4 +init__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E66C8; // type:function size:0x4C scope:global align:4 +exec__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x802E6714; // type:function size:0x534 scope:global align:4 +cleanup__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x802E6C48; // type:function size:0x28 scope:global align:4 +setAnimMgr__Q34Game12KumaKochappy14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802E6C70; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game12KumaKochappy14ProperAnimatorFi = .text:0x802E6C78; // type:function size:0x8 scope:global align:4 +__dt__Q34Game12KumaKochappy14ProperAnimatorFv = .text:0x802E6C80; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game12KumaKochappy14ProperAnimatorFv = .text:0x802E6CDC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KumaKochappy3MgrFiUc = .text:0x802E6CE4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12KumaKochappy3MgrFv = .text:0x802E6D34; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12KumaKochappy5ParmsFv = .text:0x802E6D7C; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game12KumaKochappy3MgrFi = .text:0x802E6E14; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12KumaKochappy3ObjFv = .text:0x802E6E74; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game12KumaKochappy3MgrFi = .text:0x802E6F30; // type:function size:0x10 scope:global align:4 +read__Q34Game12KumaKochappy5ParmsFR6Stream = .text:0x802E6F40; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game12KumaKochappy3MgrFv = .text:0x802E6F90; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game12KumaKochappy3MgrFv = .text:0x802E7040; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12KumaKochappy3MgrFv = .text:0x802E7048; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KumaKochappy3ObjFv = .text:0x802E7050; // type:function size:0x148 scope:global align:4 +setInitialSetting__Q34Game12KumaKochappy3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802E7198; // type:function size:0x4 scope:global align:4 +onInit__Q34Game12KumaKochappy3ObjFPQ24Game15CreatureInitArg = .text:0x802E719C; // type:function size:0x68 scope:global align:4 +onKill__Q34Game12KumaKochappy3ObjFPQ24Game15CreatureKillArg = .text:0x802E7204; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game12KumaKochappy3ObjFv = .text:0x802E7248; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game12KumaKochappy3ObjFR8Graphics = .text:0x802E7294; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game12KumaKochappy3ObjFR8Graphics = .text:0x802E7298; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game12KumaKochappy3ObjFPQ34Game12KumaKochappy3FSM = .text:0x802E72B8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game12KumaKochappy3ObjFRQ24Game11ShadowParam = .text:0x802E7304; // type:function size:0xA8 scope:global align:4 +pressCallBack__Q34Game12KumaKochappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802E73AC; // type:function size:0x88 scope:global align:4 +hipdropCallBack__Q34Game12KumaKochappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802E7434; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game12KumaKochappy3ObjFv = .text:0x802E7460; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game12KumaKochappy3ObjFv = .text:0x802E7488; // type:function size:0x8C scope:global align:4 +initWalkSmokeEffect__Q34Game12KumaKochappy3ObjFv = .text:0x802E7514; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game12KumaKochappy3ObjFv = .text:0x802E7578; // type:function size:0x8 scope:global align:4 +resetZukanAnimationFrame__Q34Game12KumaKochappy3ObjFv = .text:0x802E7580; // type:function size:0x78 scope:global align:4 +setNearestParent__Q34Game12KumaKochappy3ObjFv = .text:0x802E75F8; // type:function size:0x380 scope:global align:4 +isDone__Q24Game38EnemyIteratorFv = .text:0x802E7978; // type:function size:0x4C scope:weak align:4 +setTargetParentPosition__Q34Game12KumaKochappy3ObjFv = .text:0x802E79C4; // type:function size:0x1A8 scope:global align:4 +updateHomePosition__Q34Game12KumaKochappy3ObjFv = .text:0x802E7B6C; // type:function size:0x1C scope:global align:4 +getSearchedTarget__Q34Game12KumaKochappy3ObjFv = .text:0x802E7B88; // type:function size:0x38 scope:global align:4 +createChappyRelation__Q34Game12KumaKochappy3ObjFv = .text:0x802E7BC0; // type:function size:0x70 scope:global align:4 +releaseParent__Q34Game12KumaKochappy3ObjFv = .text:0x802E7C30; // type:function size:0x24 scope:global align:4 +getParentRelation__Q34Game12KumaKochappy3ObjFv = .text:0x802E7C54; // type:function size:0xC scope:global align:4 +getEnemyIndex__Q34Game12KumaKochappy3ObjFRi = .text:0x802E7C60; // type:function size:0x3C scope:global align:4 +addParentEnemy__Q34Game12KumaKochappy3ObjFPQ34Game10KumaChappy3Obj = .text:0x802E7C9C; // type:function size:0xA0 scope:global align:4 +__ml__Q24Game38EnemyIteratorFv = .text:0x802E7D3C; // type:function size:0x38 scope:weak align:4 +next__Q24Game38EnemyIteratorFv = .text:0x802E7D74; // type:function size:0xE4 scope:weak align:4 +first__Q24Game38EnemyIteratorFv = .text:0x802E7E58; // type:function size:0xDC scope:weak align:4 +getMouthSlots__Q34Game12KumaKochappy3ObjFv = .text:0x802E7F34; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game12KumaKochappy3ObjFv = .text:0x802E7F3C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game12KumaKochappy3ObjFv = .text:0x802E7F44; // type:function size:0x8 scope:weak align:4 +init__Q34Game10MiniHoudai3FSMFPQ24Game9EnemyBase = .text:0x802E7F4C; // type:function size:0x3D8 scope:global align:4 +init__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E8324; // type:function size:0x58 scope:global align:4 +exec__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBase = .text:0x802E837C; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBase = .text:0x802E8488; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E848C; // type:function size:0x58 scope:global align:4 +exec__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBase = .text:0x802E84E4; // type:function size:0x3A8 scope:global align:4 +cleanup__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBase = .text:0x802E888C; // type:function size:0x10 scope:global align:4 +init__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E889C; // type:function size:0x4C scope:global align:4 +exec__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBase = .text:0x802E88E8; // type:function size:0x50C scope:global align:4 +cleanup__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBase = .text:0x802E8DF4; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E8DF8; // type:function size:0x60 scope:global align:4 +exec__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBase = .text:0x802E8E58; // type:function size:0x6CC scope:global align:4 +cleanup__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBase = .text:0x802E9524; // type:function size:0x24 scope:global align:4 +init__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E9548; // type:function size:0x68 scope:global align:4 +exec__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBase = .text:0x802E95B0; // type:function size:0x544 scope:global align:4 +cleanup__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBase = .text:0x802E9AF4; // type:function size:0x3C scope:global align:4 +init__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E9B30; // type:function size:0x5C scope:global align:4 +exec__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBase = .text:0x802E9B8C; // type:function size:0x6AC scope:global align:4 +cleanup__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBase = .text:0x802EA238; // type:function size:0x24 scope:global align:4 +init__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EA25C; // type:function size:0x44 scope:global align:4 +exec__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBase = .text:0x802EA2A0; // type:function size:0x368 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBase = .text:0x802EA608; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EA60C; // type:function size:0x44 scope:global align:4 +exec__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBase = .text:0x802EA650; // type:function size:0x390 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBase = .text:0x802EA9E0; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EA9E4; // type:function size:0x50 scope:global align:4 +exec__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBase = .text:0x802EAA34; // type:function size:0x7CC scope:global align:4 +getEnemyTypeID__Q34Game10MiniHoudai3ObjFv = .text:0x802EB200; // type:function size:0x8 scope:weak align:4 +cleanup__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBase = .text:0x802EB208; // type:function size:0x24 scope:global align:4 +init__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EB22C; // type:function size:0x34 scope:global align:4 +exec__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBase = .text:0x802EB260; // type:function size:0x578 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBase = .text:0x802EB7D8; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EB7DC; // type:function size:0x34 scope:global align:4 +exec__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBase = .text:0x802EB810; // type:function size:0x4A4 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBase = .text:0x802EBCB4; // type:function size:0x4 scope:global align:4 +__sinit_MiniHoudaiState_cpp = .text:0x802EBCB8; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game10MiniHoudai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802EBCE0; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10MiniHoudai14ProperAnimatorFi = .text:0x802EBCE8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10MiniHoudai14ProperAnimatorFv = .text:0x802EBCF0; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10MiniHoudai14ProperAnimatorFv = .text:0x802EBD4C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10MiniHoudai3MgrFiUc = .text:0x802EBD54; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game10MiniHoudai3MgrFv = .text:0x802EBDA4; // type:function size:0xD8 scope:global align:4 +loadAnimData__Q34Game10MiniHoudai3MgrFv = .text:0x802EBE7C; // type:function size:0x90 scope:global align:4 +__dt__Q34Game10MiniHoudai3MgrFv = .text:0x802EBF0C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10MiniHoudai3MgrFv = .text:0x802EBFBC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10MiniHoudai3MgrFPv = .text:0x802EBFC4; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game10MiniHoudai3MgrFv = .text:0x802EBFF0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10MiniHoudai3ObjFv = .text:0x802EBFF8; // type:function size:0x148 scope:global align:4 +setInitialSetting__Q34Game10MiniHoudai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802EC140; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10MiniHoudai3ObjFPQ24Game15CreatureInitArg = .text:0x802EC144; // type:function size:0xC8 scope:global align:4 +onKill__Q34Game10MiniHoudai3ObjFPQ24Game15CreatureKillArg = .text:0x802EC20C; // type:function size:0x4C scope:global align:4 +doUpdate__Q34Game10MiniHoudai3ObjFv = .text:0x802EC258; // type:function size:0x54 scope:global align:4 +doUpdateCommon__Q34Game10MiniHoudai3ObjFv = .text:0x802EC2AC; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game10MiniHoudai3ObjFv = .text:0x802EC2E0; // type:function size:0x3C scope:global align:4 +doDirectDraw__Q34Game10MiniHoudai3ObjFR8Graphics = .text:0x802EC31C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10MiniHoudai3ObjFR8Graphics = .text:0x802EC320; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10MiniHoudai3ObjFPQ34Game10MiniHoudai3FSM = .text:0x802EC340; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10MiniHoudai3ObjFRQ24Game11ShadowParam = .text:0x802EC38C; // type:function size:0xE0 scope:global align:4 +damageCallBack__Q34Game10MiniHoudai3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802EC46C; // type:function size:0x44 scope:global align:4 +doStartStoneState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC4B0; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC4E4; // type:function size:0x20 scope:global align:4 +doStartEarthquakeFitState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC504; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeFitState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC538; // type:function size:0x20 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game10MiniHoudai3ObjFv = .text:0x802EC558; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game10MiniHoudai3ObjFv = .text:0x802EC58C; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game10MiniHoudai3ObjFv = .text:0x802EC5C0; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game10MiniHoudai3ObjFv = .text:0x802EC5E8; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10MiniHoudai3ObjFv = .text:0x802EC608; // type:function size:0x20 scope:global align:4 +initWalkSmokeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802EC628; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10MiniHoudai3ObjFv = .text:0x802EC68C; // type:function size:0x8 scope:global align:4 +doBecomeCarcass__Q34Game10MiniHoudai3ObjFv = .text:0x802EC694; // type:function size:0x14 scope:global align:4 +doUpdateCarcass__Q34Game10MiniHoudai3ObjFv = .text:0x802EC6A8; // type:function size:0x1FC scope:global align:4 +doGetLifeGaugeParam__Q34Game10MiniHoudai3ObjFRQ24Game14LifeGaugeParam = .text:0x802EC8A4; // type:function size:0x64 scope:global align:4 +updateCaution__Q34Game10MiniHoudai3ObjFv = .text:0x802EC908; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game10MiniHoudai3ObjFv = .text:0x802EC958; // type:function size:0x24 scope:global align:4 +resetWayPoint__Q34Game10MiniHoudai3ObjFv = .text:0x802EC97C; // type:function size:0x10 scope:global align:4 +setNearestWayPoint__Q34Game10MiniHoudai3ObjFv = .text:0x802EC98C; // type:function size:0xB0 scope:global align:4 +setLinkWayPoint__Q34Game10MiniHoudai3ObjFv = .text:0x802ECA3C; // type:function size:0x260 scope:global align:4 +getSearchedTarget__Q34Game10MiniHoudai3ObjFv = .text:0x802ECC9C; // type:function size:0x6C scope:global align:4 +updateTargetDistance__Q34Game10MiniHoudai3ObjFv = .text:0x802ECD08; // type:function size:0x128 scope:global align:4 +updateHomePosition__Q34Game10MiniHoudai3ObjFv = .text:0x802ECE30; // type:function size:0xBC scope:global align:4 +isAttackableTarget__Q34Game10MiniHoudai3ObjFv = .text:0x802ECEEC; // type:function size:0x32C scope:global align:4 +createShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED218; // type:function size:0x48 scope:global align:4 +setupShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED260; // type:function size:0x24 scope:global align:4 +resetShotGunCallBack__Q34Game10MiniHoudai3ObjFv = .text:0x802ED284; // type:function size:0x24 scope:global align:4 +setShotGunCallBack__Q34Game10MiniHoudai3ObjFv = .text:0x802ED2A8; // type:function size:0x24 scope:global align:4 +doUpdateShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED2CC; // type:function size:0x24 scope:global align:4 +doUpdateCommonShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED2F0; // type:function size:0x24 scope:global align:4 +startShotGunRotation__Q34Game10MiniHoudai3ObjFv = .text:0x802ED314; // type:function size:0x24 scope:global align:4 +finishShotGunRotation__Q34Game10MiniHoudai3ObjFv = .text:0x802ED338; // type:function size:0x24 scope:global align:4 +isShotGunRotation__Q34Game10MiniHoudai3ObjFv = .text:0x802ED35C; // type:function size:0x24 scope:global align:4 +isShotGunLockOn__Q34Game10MiniHoudai3ObjFv = .text:0x802ED380; // type:function size:0x24 scope:global align:4 +isFinishShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED3A4; // type:function size:0x24 scope:global align:4 +emitShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED3C8; // type:function size:0x24 scope:global align:4 +setShotGunTargetPosition__Q34Game10MiniHoudai3ObjFv = .text:0x802ED3EC; // type:function size:0x2C scope:global align:4 +forceFinishShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED418; // type:function size:0x24 scope:global align:4 +createEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED43C; // type:function size:0x138 scope:global align:4 +setupEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED574; // type:function size:0x58 scope:global align:4 +createSmokeSmallEffect__Q34Game10MiniHoudai3ObjFb = .text:0x802ED5CC; // type:function size:0xA0 scope:global align:4 +createSmokeLargeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED66C; // type:function size:0xE8 scope:global align:4 +createDownEffect__Q34Game10MiniHoudai3ObjFf = .text:0x802ED754; // type:function size:0x24 scope:global align:4 +startChargeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED778; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED7AC; // type:function size:0x30 scope:global align:4 +createDeadLightEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED7DC; // type:function size:0x34 scope:global align:4 +createDeadBombEmitEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED810; // type:function size:0x1D4 scope:global align:4 +effectDrawOn__Q34Game10MiniHoudai3ObjFv = .text:0x802ED9E4; // type:function size:0x58 scope:global align:4 +effectDrawOff__Q34Game10MiniHoudai3ObjFv = .text:0x802EDA3C; // type:function size:0x58 scope:global align:4 +__dt__Q23efx15TChibiDeadLightFv = .text:0x802EDA94; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TChibiChargeFv = .text:0x802EDB30; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game10MiniHoudai3ObjFv = .text:0x802EDBCC; // type:function size:0xBC scope:weak align:4 +getDownSmokeScale__Q34Game10MiniHoudai3ObjFv = .text:0x802EDC88; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TChibiChargeFv = .text:0x802EDC90; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TChibiDeadLightFv = .text:0x802EDC98; // type:function size:0x8 scope:weak align:4 +verticalRotationCallBack__Q24Game10MiniHoudaiFP8J3DJointi = .text:0x802EDCA0; // type:function size:0x3C scope:local align:4 +update__Q34Game10MiniHoudai21MiniHoudaiShotGunNodeFv = .text:0x802EDCDC; // type:function size:0xD14 scope:global align:4 +__ct__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFPQ34Game10MiniHoudai3Obj = .text:0x802EE9F0; // type:function size:0x1E0 scope:global align:4 +setupShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEBD0; // type:function size:0x6C scope:global align:4 +resetCallBack__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC3C; // type:function size:0xC scope:global align:4 +setCallBack__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC48; // type:function size:0x8 scope:global align:4 +startRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC50; // type:function size:0x24 scope:global align:4 +finishRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC74; // type:function size:0x14 scope:global align:4 +isShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC88; // type:function size:0x8 scope:global align:4 +isShotGunLockOn__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC90; // type:function size:0x8 scope:global align:4 +isFinishShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC98; // type:function size:0x8 scope:global align:4 +setShotGunTarget__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFR10Vector3 = .text:0x802EECA0; // type:function size:0x1C scope:global align:4 +emitShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EECBC; // type:function size:0x4C4 scope:global align:4 +doUpdate__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF180; // type:function size:0x74 scope:global align:4 +doUpdateCommon__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF1F4; // type:function size:0x78 scope:global align:4 +forceFinishShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF26C; // type:function size:0x7C scope:global align:4 +getShotGunPosition__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF2E8; // type:function size:0x20 scope:global align:4 +searchShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF308; // type:function size:0x1C4 scope:global align:4 +returnShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF4CC; // type:function size:0xC4 scope:global align:4 +rotateVertical__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFP8J3DJoint = .text:0x802EF590; // type:function size:0x258 scope:global align:4 +effectDrawOn__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF7E8; // type:function size:0x88 scope:global align:4 +effectDrawOff__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF870; // type:function size:0x88 scope:global align:4 +__dt__Q23efx11TChibiShellFv = .text:0x802EF8F8; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game10MiniHoudai21MiniHoudaiShotGunNodeFv = .text:0x802EF994; // type:function size:0x60 scope:weak align:4 +__sinit_MiniHoudaiShotGun_cpp = .text:0x802EF9F4; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx11TChibiShellFv = .text:0x802EFA1C; // type:function size:0x8 scope:weak align:4 +init__Q34Game7Sokkuri3FSMFPQ24Game9EnemyBase = .text:0x802EFA24; // type:function size:0x330 scope:global align:4 +init__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EFD54; // type:function size:0x64 scope:global align:4 +exec__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBase = .text:0x802EFDB8; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBase = .text:0x802EFE18; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EFE1C; // type:function size:0x70 scope:global align:4 +exec__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBase = .text:0x802EFE8C; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBase = .text:0x802EFEEC; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EFEF0; // type:function size:0xC4 scope:global align:4 +exec__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBase = .text:0x802EFFB4; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBase = .text:0x802F0018; // type:function size:0x7C scope:global align:4 +init__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F0094; // type:function size:0x78 scope:global align:4 +exec__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBase = .text:0x802F010C; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBase = .text:0x802F01E4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F01E8; // type:function size:0x70 scope:global align:4 +exec__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBase = .text:0x802F0258; // type:function size:0x9C scope:global align:4 +cleanup__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBase = .text:0x802F02F4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F02F8; // type:function size:0x68 scope:global align:4 +exec__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBase = .text:0x802F0360; // type:function size:0x154 scope:global align:4 +cleanup__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBase = .text:0x802F04B4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F04B8; // type:function size:0x60 scope:global align:4 +exec__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBase = .text:0x802F0518; // type:function size:0x234 scope:global align:4 +cleanup__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBase = .text:0x802F074C; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F0750; // type:function size:0x50 scope:global align:4 +exec__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBase = .text:0x802F07A0; // type:function size:0x1D8 scope:global align:4 +cleanup__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBase = .text:0x802F0978; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F097C; // type:function size:0x6C scope:global align:4 +exec__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBase = .text:0x802F09E8; // type:function size:0x198 scope:global align:4 +cleanup__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBase = .text:0x802F0B80; // type:function size:0x10 scope:global align:4 +setAnimMgr__Q34Game7Sokkuri14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802F0B90; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Sokkuri14ProperAnimatorFi = .text:0x802F0B98; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Sokkuri14ProperAnimatorFv = .text:0x802F0BA0; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Sokkuri14ProperAnimatorFv = .text:0x802F0BFC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Sokkuri3MgrFiUc = .text:0x802F0C04; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Sokkuri3MgrFv = .text:0x802F0C54; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Sokkuri5ParmsFv = .text:0x802F0C9C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game7Sokkuri5Parms11ProperParmsFv = .text:0x802F0CE4; // type:function size:0x2B0 scope:weak align:4 +createObj__Q34Game7Sokkuri3MgrFi = .text:0x802F0F94; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Sokkuri3ObjFv = .text:0x802F0FF4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Sokkuri3MgrFi = .text:0x802F10B0; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game7Sokkuri3MgrFv = .text:0x802F10C0; // type:function size:0x68 scope:global align:4 +__dt__Q34Game7Sokkuri3MgrFv = .text:0x802F1128; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Sokkuri3MgrFv = .text:0x802F11D8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Sokkuri3MgrFPv = .text:0x802F11E0; // type:function size:0x2C scope:weak align:4 +read__Q34Game7Sokkuri5ParmsFR6Stream = .text:0x802F120C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game7Sokkuri3MgrFv = .text:0x802F125C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Sokkuri3ObjFv = .text:0x802F1264; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game7Sokkuri3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802F1394; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7Sokkuri3ObjFPQ24Game15CreatureInitArg = .text:0x802F1398; // type:function size:0x8C scope:global align:4 +doUpdate__Q34Game7Sokkuri3ObjFv = .text:0x802F1424; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game7Sokkuri3ObjFR8Graphics = .text:0x802F1458; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Sokkuri3ObjFR8Graphics = .text:0x802F145C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7Sokkuri3ObjFPQ34Game7Sokkuri3FSM = .text:0x802F147C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7Sokkuri3ObjFRQ24Game11ShadowParam = .text:0x802F14C8; // type:function size:0x118 scope:global align:4 +isUnderground__Q34Game7Sokkuri3ObjFv = .text:0x802F15E0; // type:function size:0x8 scope:weak align:4 +pressCallBack__Q34Game7Sokkuri3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F15E8; // type:function size:0x9C scope:global align:4 +hipdropCallBack__Q34Game7Sokkuri3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F1684; // type:function size:0x9C scope:global align:4 +wallCallback__Q34Game7Sokkuri3ObjFRCQ24Game8MoveInfo = .text:0x802F1720; // type:function size:0xFC scope:global align:4 +doStartStoneState__Q34Game7Sokkuri3ObjFv = .text:0x802F181C; // type:function size:0x40 scope:global align:4 +doFinishStoneState__Q34Game7Sokkuri3ObjFv = .text:0x802F185C; // type:function size:0x20 scope:global align:4 +startCarcassMotion__Q34Game7Sokkuri3ObjFv = .text:0x802F187C; // type:function size:0x28 scope:global align:4 +getOffsetForMapCollision__Q34Game7Sokkuri3ObjFv = .text:0x802F18A4; // type:function size:0xAC scope:global align:4 +isAppear__Q34Game7Sokkuri3ObjFv = .text:0x802F1950; // type:function size:0x7C scope:global align:4 +isDisappear__Q34Game7Sokkuri3ObjFv = .text:0x802F19CC; // type:function size:0xA8 scope:global align:4 +setNextMoveInfo__Q34Game7Sokkuri3ObjFv = .text:0x802F1A74; // type:function size:0x1E0 scope:global align:4 +updateMoveState__Q34Game7Sokkuri3ObjFv = .text:0x802F1C54; // type:function size:0x16C scope:global align:4 +resetMoveVelocity__Q34Game7Sokkuri3ObjFv = .text:0x802F1DC0; // type:function size:0x2C scope:global align:4 +setNextWaitInfo__Q34Game7Sokkuri3ObjFv = .text:0x802F1DEC; // type:function size:0x78 scope:global align:4 +createDownEffect__Q34Game7Sokkuri3ObjFff = .text:0x802F1E64; // type:function size:0xC4 scope:global align:4 +createBubbleEffect__Q34Game7Sokkuri3ObjFv = .text:0x802F1F28; // type:function size:0xC0 scope:global align:4 +createEfxHamon__Q34Game7Sokkuri3ObjFv = .text:0x802F1FE8; // type:function size:0x48 scope:global align:4 +getDownSmokeScale__Q34Game7Sokkuri3ObjFv = .text:0x802F2030; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game7Sokkuri3ObjFv = .text:0x802F2038; // type:function size:0x8 scope:weak align:4 +makeShadowSRT__Q24Game19TubeShadowTransNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F2040; // type:function size:0x278 scope:global align:4 +makeShadowSRT__Q24Game17TubeShadowSetNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F22B8; // type:function size:0x278 scope:global align:4 +makeShadowSRT__Q24Game17TubeShadowPosNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F2530; // type:function size:0x1AC scope:global align:4 +makeShadowSRT__Q24Game16SphereShadowNodeFRQ24Game15JointShadowParmR10Vector3 = .text:0x802F26DC; // type:function size:0x100 scope:global align:4 +makeShadowSRT__Q24Game22UmimushiTubeShadowNodeFRQ24Game15JointShadowParmP7MatrixfR10Vector3R10Vector3 = .text:0x802F27DC; // type:function size:0x1DC scope:global align:4 +makeShadowSRT__Q24Game24UmimushiSphereShadowNodeFRQ24Game15JointShadowParmP7MatrixfR10Vector3b = .text:0x802F29B8; // type:function size:0xCC scope:global align:4 +__ct__Q34Game8UmiMushi17UmimushiShadowMgrFPQ34Game8UmiMushi3Obj = .text:0x802F2A84; // type:function size:0xC4 scope:global align:4 +init__Q34Game8UmiMushi17UmimushiShadowMgrFv = .text:0x802F2B48; // type:function size:0x68 scope:global align:4 +update__Q34Game8UmiMushi17UmimushiShadowMgrFv = .text:0x802F2BB0; // type:function size:0x15C scope:global align:4 +__dt__Q24Game24UmimushiSphereShadowNodeFv = .text:0x802F2D0C; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game22UmimushiTubeShadowNodeFv = .text:0x802F2D7C; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Hana3MgrFiUc = .text:0x802F2DEC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Hana3MgrFv = .text:0x802F2E3C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game4Hana3MgrFi = .text:0x802F2E84; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Hana3ObjFv = .text:0x802F2EE4; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game4Hana3MgrFi = .text:0x802F2FD4; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game4Hana3MgrFv = .text:0x802F2FE4; // type:function size:0x68 scope:global align:4 +__dt__Q34Game4Hana3MgrFv = .text:0x802F304C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Hana3MgrFv = .text:0x802F30FC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game4Hana3MgrFPv = .text:0x802F3104; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game4Hana3MgrFv = .text:0x802F3130; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Hana3ObjFv = .text:0x802F3138; // type:function size:0xA4 scope:global align:4 +createEffect__Q34Game4Hana3ObjFv = .text:0x802F31DC; // type:function size:0x4 scope:weak align:4 +onInit__Q34Game4Hana3ObjFPQ24Game15CreatureInitArg = .text:0x802F31E0; // type:function size:0x64 scope:global align:4 +setupEffect__Q34Game4Hana3ObjFv = .text:0x802F3244; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q34Game4Hana3ObjFR8Graphics = .text:0x802F3248; // type:function size:0x4 scope:global align:4 +getShadowParam__Q34Game4Hana3ObjFRQ24Game11ShadowParam = .text:0x802F324C; // type:function size:0xE8 scope:global align:4 +initMouthSlots__Q34Game4Hana3ObjFv = .text:0x802F3334; // type:function size:0xB4 scope:global align:4 +isWakeup__Q34Game4Hana3ObjFv = .text:0x802F33E8; // type:function size:0x80 scope:global align:4 +flickStatePikmin__Q34Game4Hana3ObjFv = .text:0x802F3468; // type:function size:0x84 scope:global align:4 +flickAttackBomb__Q34Game4Hana3ObjFv = .text:0x802F34EC; // type:function size:0xF0 scope:global align:4 +eatAttackPikmin__Q34Game4Hana3ObjFv = .text:0x802F35DC; // type:function size:0x3C scope:global align:4 +resetUnderGround__Q34Game4Hana3ObjFv = .text:0x802F3618; // type:function size:0x70 scope:global align:4 +setUnderGround__Q34Game4Hana3ObjFv = .text:0x802F3688; // type:function size:0x84 scope:global align:4 +createSmokeEffect__Q34Game4Hana3ObjFv = .text:0x802F370C; // type:function size:0x1C0 scope:global align:4 +satisfy__Q24Game21ConditionNotStickSlotFPQ24Game4Piki = .text:0x802F38CC; // type:function size:0x7C scope:weak align:4 +changeMaterial__Q34Game4Hana3ObjFv = .text:0x802F3948; // type:function size:0x4 scope:weak align:4 +isUnderground__Q34Game4Hana3ObjFv = .text:0x802F394C; // type:function size:0x8 scope:weak align:4 +initWalkSmokeEffect__Q34Game4Hana3ObjFv = .text:0x802F3954; // type:function size:0x4 scope:weak align:4 +getWalkSmokeEffectMgr__Q34Game4Hana3ObjFv = .text:0x802F3958; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Hana3ObjFv = .text:0x802F3960; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Hana3ObjFv = .text:0x802F3968; // type:function size:0x8 scope:weak align:4 +setAnimationSpeed__Q34Game4Hana3ObjFf = .text:0x802F3970; // type:function size:0x4 scope:weak align:4 +flickAttackFail__Q34Game4Hana3ObjFv = .text:0x802F3974; // type:function size:0x4 scope:weak align:4 +startSleepEffect__Q34Game4Hana3ObjFv = .text:0x802F3978; // type:function size:0x4 scope:weak align:4 +finishSleepEffect__Q34Game4Hana3ObjFv = .text:0x802F397C; // type:function size:0x4 scope:weak align:4 +__sinit_Hana_cpp = .text:0x802F3980; // type:function size:0x28 scope:local align:4 +makeShadowSRT__Q34Game11BigTreasure16AttackShadowNodeFv = .text:0x802F39A8; // type:function size:0x108 scope:global align:4 +update__Q34Game11BigTreasure21BigTreasureFireAttackFv = .text:0x802F3AB0; // type:function size:0x374 scope:global align:4 +update__Q34Game11BigTreasure20BigTreasureGasAttackFv = .text:0x802F3E24; // type:function size:0x364 scope:global align:4 +update__Q34Game11BigTreasure22BigTreasureWaterAttackFv = .text:0x802F4188; // type:function size:0x324 scope:global align:4 +__dt__Q23efx23TChasePosPosLocalZScaleFv = .text:0x802F44AC; // type:function size:0x84 scope:weak align:4 +update__Q34Game11BigTreasure21BigTreasureElecAttackFv = .text:0x802F4530; // type:function size:0x738 scope:global align:4 +__ct__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure3Obj = .text:0x802F4C68; // type:function size:0x7B4 scope:global align:4 +init__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F541C; // type:function size:0x1C8 scope:global align:4 +update__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F55E4; // type:function size:0xE8 scope:global align:4 +startFireAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F56CC; // type:function size:0x130 scope:global align:4 +startNewFireList__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F57FC; // type:function size:0x9C scope:global align:4 +updateFireAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5898; // type:function size:0x18C scope:global align:4 +updateFireEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5A24; // type:function size:0x70 scope:global align:4 +updateFireSePosition__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureFireAttacki = .text:0x802F5A94; // type:function size:0xA0 scope:global align:4 +startGasAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5B34; // type:function size:0x2C4 scope:global align:4 +startNewGasList__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5DF8; // type:function size:0x14C scope:global align:4 +updateGasAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5F44; // type:function size:0x344 scope:global align:4 +updateGasEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6288; // type:function size:0x58 scope:global align:4 +updateGasSePosition__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure20BigTreasureGasAttacki = .text:0x802F62E0; // type:function size:0xA0 scope:global align:4 +startWaterAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6380; // type:function size:0x10C scope:global align:4 +startNewWaterList__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F648C; // type:function size:0x47C scope:global align:4 +updateWaterAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6908; // type:function size:0x164 scope:global align:4 +updateWaterEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6A6C; // type:function size:0x58 scope:global align:4 +getWaterTargetCreature__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6AC4; // type:function size:0x2D8 scope:global align:4 +setElecAttackParameter__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6D9C; // type:function size:0x3FC scope:global align:4 +startElecAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F7198; // type:function size:0x494 scope:global align:4 +updateElecAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F762C; // type:function size:0x288 scope:global align:4 +finishAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F78B4; // type:function size:0x1E4 scope:global align:4 +addAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure22BigTreasureWaterAttack = .text:0x802F7A98; // type:function size:0x80 scope:global align:4 +addAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureElecAttack = .text:0x802F7B18; // type:function size:0x80 scope:global align:4 +delAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure22BigTreasureWaterAttack = .text:0x802F7B98; // type:function size:0x6C scope:global align:4 +delAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureElecAttack = .text:0x802F7C04; // type:function size:0x6C scope:global align:4 +updateAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F7C70; // type:function size:0x44 scope:global align:4 +__dt__Q23efx17TOootaElecAttack1Fv = .text:0x802F7CB4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TOootaElecLegFv = .text:0x802F7D50; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TOootaElecpartsFv = .text:0x802F7DEC; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game11BigTreasure21BigTreasureElecAttackFv = .text:0x802F7E88; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure22BigTreasureWaterAttackFv = .text:0x802F7EE8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure20BigTreasureGasAttackFv = .text:0x802F7F48; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure21BigTreasureFireAttackFv = .text:0x802F7FA8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure16AttackShadowNodeFv = .text:0x802F8008; // type:function size:0x70 scope:weak align:4 +@4@__dt__Q23efx15TOootaElecpartsFv = .text:0x802F8078; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TOootaElecLegFv = .text:0x802F8080; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOootaElecAttack1Fv = .text:0x802F8088; // type:function size:0x8 scope:weak align:4 +makeShadowSRT__Q24Game23SnakeCrowTubeShadowNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F8090; // type:function size:0x22C scope:global align:4 +makeShadowSRT__Q24Game25SnakeCrowSphereShadowNodeFRQ24Game15JointShadowParmR10Vector3 = .text:0x802F82BC; // type:function size:0x12C scope:global align:4 +__ct__Q34Game9SnakeCrow18SnakeCrowShadowMgrFPQ34Game9SnakeCrow3Obj = .text:0x802F83E8; // type:function size:0xEC scope:global align:4 +init__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F84D4; // type:function size:0xC0 scope:global align:4 +startJointShadow__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F8594; // type:function size:0x78 scope:global align:4 +finishJointShadow__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F860C; // type:function size:0x64 scope:global align:4 +update__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F8670; // type:function size:0x25C scope:global align:4 +__dt__Q24Game25SnakeCrowSphereShadowNodeFv = .text:0x802F88CC; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game23SnakeCrowTubeShadowNodeFv = .text:0x802F893C; // type:function size:0x70 scope:weak align:4 +makeShadowSRT__Q24Game24SnakeWholeTubeShadowNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F89AC; // type:function size:0x22C scope:global align:4 +makeShadowSRT__Q24Game26SnakeWholeSphereShadowNodeFRQ24Game15JointShadowParmR10Vector3 = .text:0x802F8BD8; // type:function size:0x12C scope:global align:4 +__ct__Q34Game10SnakeWhole19SnakeWholeShadowMgrFPQ34Game10SnakeWhole3Obj = .text:0x802F8D04; // type:function size:0xEC scope:global align:4 +init__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8DF0; // type:function size:0xC8 scope:global align:4 +startJointShadow__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8EB8; // type:function size:0x78 scope:global align:4 +finishJointShadow__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8F30; // type:function size:0x64 scope:global align:4 +update__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8F94; // type:function size:0x25C scope:global align:4 +__dt__Q24Game26SnakeWholeSphereShadowNodeFv = .text:0x802F91F0; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game24SnakeWholeTubeShadowNodeFv = .text:0x802F9260; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game11BombOtakara3MgrFiUc = .text:0x802F92D0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11BombOtakara3MgrFv = .text:0x802F9320; // type:function size:0x48 scope:global align:4 +createObj__Q34Game11BombOtakara3MgrFi = .text:0x802F9368; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11BombOtakara3ObjFv = .text:0x802F93C8; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11BombOtakara3MgrFi = .text:0x802F94B4; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11BombOtakara3MgrFv = .text:0x802F94C4; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11BombOtakara3MgrFv = .text:0x802F9544; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11BombOtakara3MgrFv = .text:0x802F960C; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11BombOtakara3MgrFv = .text:0x802F9614; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11BombOtakara3MgrFv = .text:0x802F961C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11BombOtakara3ObjFv = .text:0x802F9624; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game11BombOtakara3ObjFv = .text:0x802F96B4; // type:function size:0x1A4 scope:global align:4 +damageCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F9858; // type:function size:0xB4 scope:global align:4 +hipdropCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F990C; // type:function size:0x2C scope:global align:4 +earthquakeCallBack__Q34Game11BombOtakara3ObjFPQ24Game8Creaturef = .text:0x802F9938; // type:function size:0x7C scope:global align:4 +bombCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreatureR10Vector3f = .text:0x802F99B4; // type:function size:0x30 scope:global align:4 +startEscapeSE__Q34Game11BombOtakara3ObjFv = .text:0x802F99E4; // type:function size:0x7C scope:global align:4 +getEnemyTypeID__Q34Game11BombOtakara3ObjFv = .text:0x802F9A60; // type:function size:0x8 scope:weak align:4 +interactCreature__Q34Game11BombOtakara3ObjFPQ24Game8Creature = .text:0x802F9A68; // type:function size:0x4 scope:weak align:4 +createEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A6C; // type:function size:0x4 scope:weak align:4 +setupEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A70; // type:function size:0x4 scope:weak align:4 +startChargeEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A74; // type:function size:0x4 scope:weak align:4 +finishChargeEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A78; // type:function size:0x4 scope:weak align:4 +createDisChargeEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A7C; // type:function size:0x4 scope:weak align:4 +effectDrawOn__Q34Game11BombOtakara3ObjFv = .text:0x802F9A80; // type:function size:0x4 scope:weak align:4 +effectDrawOff__Q34Game11BombOtakara3ObjFv = .text:0x802F9A84; // type:function size:0x4 scope:weak align:4 +startDisChargeSE__Q34Game11BombOtakara3ObjFv = .text:0x802F9A88; // type:function size:0x4 scope:weak align:4 +init__Q34Game10DangoMushi3FSMFPQ24Game9EnemyBase = .text:0x802F9A8C; // type:function size:0x320 scope:global align:4 +init__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F9DAC; // type:function size:0x88 scope:global align:4 +exec__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBase = .text:0x802F9E34; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBase = .text:0x802F9F70; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F9F74; // type:function size:0x94 scope:global align:4 +exec__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBase = .text:0x802FA008; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBase = .text:0x802FA14C; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FA150; // type:function size:0x8C scope:global align:4 +exec__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBase = .text:0x802FA1DC; // type:function size:0x400 scope:global align:4 +cleanup__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBase = .text:0x802FA5DC; // type:function size:0x30 scope:global align:4 +init__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FA60C; // type:function size:0x9C scope:global align:4 +exec__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBase = .text:0x802FA6A8; // type:function size:0x364 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBase = .text:0x802FAA0C; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FAA10; // type:function size:0x5C scope:global align:4 +exec__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBase = .text:0x802FAA6C; // type:function size:0x7A8 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBase = .text:0x802FB214; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FB218; // type:function size:0x88 scope:global align:4 +exec__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBase = .text:0x802FB2A0; // type:function size:0x288 scope:global align:4 +cleanup__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBase = .text:0x802FB528; // type:function size:0x58 scope:global align:4 +init__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FB580; // type:function size:0xD4 scope:global align:4 +exec__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBase = .text:0x802FB654; // type:function size:0x270 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBase = .text:0x802FB8C4; // type:function size:0x68 scope:global align:4 +init__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FB92C; // type:function size:0x50 scope:global align:4 +exec__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBase = .text:0x802FB97C; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBase = .text:0x802FBA78; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FBA7C; // type:function size:0x6C scope:global align:4 +exec__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBase = .text:0x802FBAE8; // type:function size:0x1E0 scope:global align:4 +cleanup__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBase = .text:0x802FBCC8; // type:function size:0x2C scope:global align:4 +__sinit_DangoMushiState_cpp = .text:0x802FBCF4; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10DangoMushi3MgrFiUc = .text:0x802FBD1C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10DangoMushi3MgrFv = .text:0x802FBD6C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10DangoMushi5ParmsFv = .text:0x802FBDB4; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game10DangoMushi3MgrFi = .text:0x802FBF08; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10DangoMushi3ObjFv = .text:0x802FBF68; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game10DangoMushi3MgrFi = .text:0x802FC024; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game10DangoMushi3MgrFv = .text:0x802FC034; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game10DangoMushi3MgrFv = .text:0x802FC09C; // type:function size:0xB4 scope:global align:4 +createModel__Q34Game10DangoMushi3MgrFv = .text:0x802FC150; // type:function size:0x130 scope:global align:4 +__dt__Q34Game10DangoMushi3MgrFv = .text:0x802FC280; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10DangoMushi3MgrFv = .text:0x802FC330; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10DangoMushi3MgrFPv = .text:0x802FC338; // type:function size:0x2C scope:weak align:4 +read__Q34Game10DangoMushi5ParmsFR6Stream = .text:0x802FC364; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game10DangoMushi3MgrFv = .text:0x802FC3B4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10DangoMushi3ObjFv = .text:0x802FC3BC; // type:function size:0x134 scope:global align:4 +setInitialSetting__Q34Game10DangoMushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802FC4F0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10DangoMushi3ObjFPQ24Game15CreatureInitArg = .text:0x802FC4F4; // type:function size:0x130 scope:global align:4 +onKill__Q34Game10DangoMushi3ObjFPQ24Game15CreatureKillArg = .text:0x802FC624; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game10DangoMushi3ObjFv = .text:0x802FC668; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game10DangoMushi3ObjFv = .text:0x802FC6B8; // type:function size:0x44 scope:global align:4 +doAnimationUpdateAnimator__Q34Game10DangoMushi3ObjFv = .text:0x802FC6FC; // type:function size:0x94 scope:global align:4 +changeMaterial__Q34Game10DangoMushi3ObjFv = .text:0x802FC790; // type:function size:0xC4 scope:global align:4 +doDirectDraw__Q34Game10DangoMushi3ObjFR8Graphics = .text:0x802FC854; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10DangoMushi3ObjFR8Graphics = .text:0x802FC858; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10DangoMushi3ObjFPQ34Game10DangoMushi3FSM = .text:0x802FC878; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10DangoMushi3ObjFRQ24Game11ShadowParam = .text:0x802FC8C4; // type:function size:0xB8 scope:global align:4 +needShadow__Q34Game10DangoMushi3ObjFv = .text:0x802FC97C; // type:function size:0x70 scope:global align:4 +damageCallBack__Q34Game10DangoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802FC9EC; // type:function size:0xEC scope:global align:4 +earthquakeCallBack__Q34Game10DangoMushi3ObjFPQ24Game8Creaturef = .text:0x802FCAD8; // type:function size:0x8 scope:global align:4 +collisionCallback__Q34Game10DangoMushi3ObjFRQ24Game9CollEvent = .text:0x802FCAE0; // type:function size:0x104 scope:global align:4 +wallCallback__Q34Game10DangoMushi3ObjFRCQ24Game8MoveInfo = .text:0x802FCBE4; // type:function size:0x10C scope:global align:4 +doStartStoneState__Q34Game10DangoMushi3ObjFv = .text:0x802FCCF0; // type:function size:0x38 scope:global align:4 +doFinishStoneState__Q34Game10DangoMushi3ObjFv = .text:0x802FCD28; // type:function size:0x74 scope:global align:4 +startCarcassMotion__Q34Game10DangoMushi3ObjFv = .text:0x802FCD9C; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game10DangoMushi3ObjFv = .text:0x802FCDC4; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10DangoMushi3ObjFv = .text:0x802FCDE4; // type:function size:0x20 scope:global align:4 +initWalkSmokeEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FCE04; // type:function size:0x4C scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10DangoMushi3ObjFv = .text:0x802FCE50; // type:function size:0x8 scope:global align:4 +getCommonEffectPos__Q34Game10DangoMushi3ObjFR10Vector3 = .text:0x802FCE58; // type:function size:0x24 scope:global align:4 +addShadowScale__Q34Game10DangoMushi3ObjFv = .text:0x802FCE7C; // type:function size:0x50 scope:global align:4 +setRandTarget__Q34Game10DangoMushi3ObjFv = .text:0x802FCECC; // type:function size:0x198 scope:global align:4 +isReachedTarget__Q34Game10DangoMushi3ObjFv = .text:0x802FD064; // type:function size:0x34 scope:global align:4 +getSearchedTarget__Q34Game10DangoMushi3ObjFv = .text:0x802FD098; // type:function size:0x38 scope:global align:4 +rollingMove__Q34Game10DangoMushi3ObjFv = .text:0x802FD0D0; // type:function size:0x2BC scope:global align:4 +createCrashEnemy__Q34Game10DangoMushi3ObjFv = .text:0x802FD38C; // type:function size:0x4E8 scope:global align:4 +getFallEggNum__Q34Game10DangoMushi3ObjFv = .text:0x802FD874; // type:function size:0xEC scope:global align:4 +getFallPosition__Q34Game10DangoMushi3ObjFi = .text:0x802FD960; // type:function size:0x104 scope:global align:4 +setupCollision__Q34Game10DangoMushi3ObjFv = .text:0x802FDA64; // type:function size:0x38 scope:global align:4 +setBodyCollision__Q34Game10DangoMushi3ObjFb = .text:0x802FDA9C; // type:function size:0x444 scope:global align:4 +flickHandCollision__Q34Game10DangoMushi3ObjFPQ24Game8Creature = .text:0x802FDEE0; // type:function size:0x2AC scope:global align:4 +isNoDamageCollision__Q34Game10DangoMushi3ObjFv = .text:0x802FE18C; // type:function size:0x58 scope:global align:4 +resetMapCollisionSize__Q34Game10DangoMushi3ObjFb = .text:0x802FE1E4; // type:function size:0x2C scope:global align:4 +updateMapCollisionSize__Q34Game10DangoMushi3ObjFv = .text:0x802FE210; // type:function size:0x8C scope:global align:4 +flickHandCollision__Q34Game10DangoMushi3ObjFv = .text:0x802FE29C; // type:function size:0x3AC scope:global align:4 +startBlendAnimation__Q34Game10DangoMushi3ObjFib = .text:0x802FE648; // type:function size:0x11C scope:global align:4 +endBlendAnimation__Q34Game10DangoMushi3ObjFv = .text:0x802FE764; // type:function size:0x98 scope:global align:4 +startBossFlickBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FE7FC; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FE8C4; // type:function size:0xC8 scope:global align:4 +finishBossAttackLoopBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FE98C; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FEA54; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FEB50; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FEC0C; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FECC8; // type:function size:0x170 scope:global align:4 +setupEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEE38; // type:function size:0x64 scope:global align:4 +createDeadSmokeEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEE9C; // type:function size:0x7C scope:global align:4 +createDeadBombEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEF18; // type:function size:0x88 scope:global align:4 +createBodyTurnEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEFA0; // type:function size:0xA0 scope:global align:4 +createWallBreakEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF040; // type:function size:0x54 scope:global align:4 +createFlickAttackEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF094; // type:function size:0x34 scope:global align:4 +createBodyDamageEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF0C8; // type:function size:0x7C scope:global align:4 +createBodyWallCrashEffect__Q34Game10DangoMushi3ObjF10Vector3 = .text:0x802FF144; // type:function size:0xCC scope:global align:4 +startRollingMoveEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF210; // type:function size:0x34 scope:global align:4 +finishRollingMoveEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF244; // type:function size:0x30 scope:global align:4 +createEnemyBounceEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF274; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game10DangoMushi3ObjFv = .text:0x802FF2B8; // type:function size:0x8 scope:weak align:4 +createMoveHandEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF2C0; // type:function size:0x1E8 scope:global align:4 +createAppearSmokeEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF4A8; // type:function size:0x98 scope:global align:4 +effectDrawOn__Q34Game10DangoMushi3ObjFv = .text:0x802FF540; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game10DangoMushi3ObjFv = .text:0x802FF5A4; // type:function size:0x64 scope:global align:4 +__dt__Q23efx13TDangoAttack2Fv = .text:0x802FF608; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TDangoWallBreakFv = .text:0x802FF6A4; // type:function size:0x9C scope:weak align:4 +getDamageCoeStoneState__Q34Game10DangoMushi3ObjFv = .text:0x802FF740; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game10DangoMushi3ObjFv = .text:0x802FF748; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game10DangoMushi14ProperAnimatorFv = .text:0x802FF750; // type:function size:0x6C scope:weak align:4 +@4@__dt__Q23efx15TDangoWallBreakFv = .text:0x802FF7BC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TDangoAttack2Fv = .text:0x802FF7C4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11GreenKabuto3MgrFiUc = .text:0x802FF7CC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11GreenKabuto3MgrFv = .text:0x802FF81C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Kabuto5ParmsFv = .text:0x802FF864; // type:function size:0x58 scope:weak align:4 +createObj__Q34Game11GreenKabuto3MgrFi = .text:0x802FF8BC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11GreenKabuto3ObjFv = .text:0x802FF91C; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11GreenKabuto3MgrFi = .text:0x802FFA08; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11GreenKabuto3MgrFv = .text:0x802FFA18; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11GreenKabuto3MgrFv = .text:0x802FFA98; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11GreenKabuto3MgrFv = .text:0x802FFB60; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11GreenKabuto3MgrFv = .text:0x802FFB68; // type:function size:0x8 scope:weak align:4 +read__Q34Game6Kabuto5ParmsFR6Stream = .text:0x802FFB70; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11GreenKabuto3MgrFv = .text:0x802FFBC0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11GreenKabuto3ObjFv = .text:0x802FFBC8; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game11GreenKabuto3ObjFv = .text:0x802FFC58; // type:function size:0x1A4 scope:global align:4 +getEnemyTypeID__Q34Game11GreenKabuto3ObjFv = .text:0x802FFDFC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9RedKabuto3MgrFiUc = .text:0x802FFE04; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9RedKabuto3MgrFv = .text:0x802FFE54; // type:function size:0x48 scope:global align:4 +createObj__Q34Game9RedKabuto3MgrFi = .text:0x802FFE9C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9RedKabuto3ObjFv = .text:0x802FFEFC; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game9RedKabuto3MgrFi = .text:0x802FFFE8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game9RedKabuto3MgrFv = .text:0x802FFFF8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game9RedKabuto3MgrFv = .text:0x80300078; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game9RedKabuto3MgrFv = .text:0x80300140; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game9RedKabuto3MgrFv = .text:0x80300148; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game9RedKabuto3MgrFv = .text:0x80300150; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9RedKabuto3ObjFv = .text:0x80300158; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game9RedKabuto3ObjFv = .text:0x803001E8; // type:function size:0x1A4 scope:global align:4 +getEnemyTypeID__Q34Game9RedKabuto3ObjFv = .text:0x8030038C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9FixKabuto3MgrFiUc = .text:0x80300394; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9FixKabuto3MgrFv = .text:0x803003E4; // type:function size:0x48 scope:global align:4 +createObj__Q34Game9FixKabuto3MgrFi = .text:0x8030042C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9FixKabuto3ObjFv = .text:0x8030048C; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game9FixKabuto3MgrFi = .text:0x8030057C; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game9FixKabuto3MgrFv = .text:0x8030058C; // type:function size:0x80 scope:global align:4 +__dt__Q34Game9FixKabuto3MgrFv = .text:0x8030060C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game9FixKabuto3MgrFv = .text:0x803006D4; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game9FixKabuto3MgrFv = .text:0x803006DC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game9FixKabuto3MgrFv = .text:0x803006E4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9FixKabuto3ObjFv = .text:0x803006EC; // type:function size:0xA4 scope:global align:4 +onKill__Q34Game9FixKabuto3ObjFPQ24Game15CreatureKillArg = .text:0x80300790; // type:function size:0x64 scope:global align:4 +changeMaterial__Q34Game9FixKabuto3ObjFv = .text:0x803007F4; // type:function size:0x1A4 scope:global align:4 +createEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300998; // type:function size:0x140 scope:global align:4 +setupEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300AD8; // type:function size:0x18 scope:global align:4 +startRotateEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300AF0; // type:function size:0x58 scope:global align:4 +finishRotateEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300B48; // type:function size:0x30 scope:global align:4 +startWaitEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300B78; // type:function size:0x58 scope:global align:4 +finishWaitEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300BD0; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game9FixKabuto3ObjFv = .text:0x80300C00; // type:function size:0x50 scope:global align:4 +effectDrawOff__Q34Game9FixKabuto3ObjFv = .text:0x80300C50; // type:function size:0x50 scope:global align:4 +__dt__Q23efx12TKkabutoWaitFv = .text:0x80300CA0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKkabutoRotFv = .text:0x80300D3C; // type:function size:0x9C scope:weak align:4 +getEnemyTypeID__Q34Game9FixKabuto3ObjFv = .text:0x80300DD8; // type:function size:0x8 scope:weak align:4 +@748@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80300DE0; // type:function size:0x14 scope:weak align:4 +@748@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80300DF4; // type:function size:0x14 scope:weak align:4 +@748@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80300E08; // type:function size:0x14 scope:weak align:4 +@748@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80300E1C; // type:function size:0x14 scope:weak align:4 +@748@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80300E30; // type:function size:0x14 scope:weak align:4 +@748@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80300E44; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx11TKkabutoRotFv = .text:0x80300E58; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TKkabutoWaitFv = .text:0x80300E60; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x80300E68; // type:function size:0x2C scope:global align:4 +setManageClassPtr__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave12RandItemUnit = .text:0x80300E94; // type:function size:0x8 scope:global align:4 +setCapEnemySlot__Q34Game4Cave16RandCapEnemyUnitFv = .text:0x80300E9C; // type:function size:0x108 scope:global align:4 +setCapCommonEnemySlot__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave7MapNodei = .text:0x80300FA4; // type:function size:0x1BC scope:global align:4 +setCapEnemy__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave9EnemyUnitii = .text:0x80301160; // type:function size:0x98 scope:global align:4 +__ct__Q34Game14NormMiniHoudai3MgrFiUc = .text:0x803011F8; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game14NormMiniHoudai3MgrFv = .text:0x80301248; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10MiniHoudai5ParmsFv = .text:0x80301290; // type:function size:0xDC scope:weak align:4 +createObj__Q34Game14NormMiniHoudai3MgrFi = .text:0x8030136C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game14NormMiniHoudai3ObjFv = .text:0x803013CC; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game14NormMiniHoudai3MgrFi = .text:0x803014B8; // type:function size:0x10 scope:global align:4 +getEnemyTypeID__Q34Game14NormMiniHoudai3ObjFv = .text:0x803014C8; // type:function size:0x8 scope:weak align:4 +read__Q34Game10MiniHoudai5ParmsFR6Stream = .text:0x803014D0; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game14NormMiniHoudai3MgrFv = .text:0x80301520; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game14NormMiniHoudai3MgrFv = .text:0x803015E8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game14NormMiniHoudai3MgrFv = .text:0x803015F0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14NormMiniHoudai3ObjFv = .text:0x803015F8; // type:function size:0x90 scope:global align:4 +__ct__Q34Game13FixMiniHoudai3MgrFiUc = .text:0x80301688; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game13FixMiniHoudai3MgrFv = .text:0x803016D8; // type:function size:0x48 scope:global align:4 +createObj__Q34Game13FixMiniHoudai3MgrFi = .text:0x80301720; // type:function size:0x60 scope:global align:4 +__dt__Q34Game13FixMiniHoudai3ObjFv = .text:0x80301780; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game13FixMiniHoudai3MgrFi = .text:0x8030186C; // type:function size:0x10 scope:global align:4 +getEnemyTypeID__Q34Game13FixMiniHoudai3ObjFv = .text:0x8030187C; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game13FixMiniHoudai3MgrFv = .text:0x80301884; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game13FixMiniHoudai3MgrFv = .text:0x8030194C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game13FixMiniHoudai3MgrFv = .text:0x80301954; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game13FixMiniHoudai3ObjFv = .text:0x8030195C; // type:function size:0x90 scope:global align:4 +makeShadowSRT__Q24Game18TyreTubeShadowNodeFRQ24Game15JointShadowParmP7Matrixf = .text:0x803019EC; // type:function size:0x25C scope:global align:4 +__ct__Q34Game4Tyre13TyreShadowMgrFPQ34Game4Tyre3Obj = .text:0x80301C48; // type:function size:0xE4 scope:global align:4 +init__Q34Game4Tyre13TyreShadowMgrFv = .text:0x80301D2C; // type:function size:0x68 scope:global align:4 +update__Q34Game4Tyre13TyreShadowMgrFv = .text:0x80301D94; // type:function size:0xB4 scope:global align:4 +__dt__Q24Game18TyreTubeShadowNodeFv = .text:0x80301E48; // type:function size:0x70 scope:weak align:4 +setSpeed__Q32og6Screen15ArrowAlphaBlinkFf = .text:0x80301EB8; // type:function size:0x8 scope:global align:4 +calc__Q32og6Screen15ArrowAlphaBlinkFv = .text:0x80301EC0; // type:function size:0xC0 scope:global align:4 +capturePictureTreeColor__Q22og6ScreenFP7J2DPanei = .text:0x80301F80; // type:function size:0x21C scope:global align:4 +__ct__Q32og6Screen20PictureTreeColorInfoFv = .text:0x8030219C; // type:function size:0x3C scope:weak align:4 +blendColor__Q22og6ScreenFRQ28JUtility6TColorRQ28JUtility6TColorfPQ28JUtility6TColor = .text:0x803021D8; // type:function size:0x154 scope:global align:4 +blendPictureTreeColor__Q22og6ScreenFPQ32og6Screen27PictureTreeColorCaptureInfoRQ28JUtility6TColorRQ28JUtility6TColorf = .text:0x8030232C; // type:function size:0x370 scope:global align:4 +calcSmooth0to1__Q22og6ScreenFff = .text:0x8030269C; // type:function size:0xC8 scope:global align:4 +calcGlbCenter__Q22og6ScreenFP7J2DPaneP10Vector2 = .text:0x80302764; // type:function size:0xB0 scope:global align:4 +maskTag2__Q22og6ScreenFUxUs = .text:0x80302814; // type:function size:0x10C scope:global align:4 +maskTag__Q22og6ScreenFUxUsUs = .text:0x80302920; // type:function size:0xA0 scope:global align:4 +CalcKeta__Q22og6ScreenFUl = .text:0x803029C0; // type:function size:0xB4 scope:global align:4 +MojiToNum__Q22og6ScreenFUxi = .text:0x80302A74; // type:function size:0x158 scope:global align:4 +TagToName__Q22og6ScreenFUxPc = .text:0x80302BCC; // type:function size:0x158 scope:global align:4 +CharCodeToTag__Q22og6ScreenFPc = .text:0x80302D24; // type:function size:0xF4 scope:global align:4 +TagToHex__Q22og6ScreenFUxPc = .text:0x80302E18; // type:function size:0x94 scope:global align:4 +TagSearch__Q22og6ScreenFP9J2DScreenUx = .text:0x80302EAC; // type:function size:0x18C scope:global align:4 +__ct__Q32og6Screen8AlphaMgrFv = .text:0x80303038; // type:function size:0x28 scope:global align:4 +setBlinkArea__Q32og6Screen8AlphaMgrFff = .text:0x80303060; // type:function size:0xC scope:global align:4 +in__Q32og6Screen8AlphaMgrFf = .text:0x8030306C; // type:function size:0x64 scope:global align:4 +out__Q32og6Screen8AlphaMgrFf = .text:0x803030D0; // type:function size:0x64 scope:global align:4 +blink__Q32og6Screen8AlphaMgrFf = .text:0x80303134; // type:function size:0x50 scope:global align:4 +calc__Q32og6Screen8AlphaMgrFv = .text:0x80303184; // type:function size:0x190 scope:global align:4 +setAlphaScreen__Q22og6ScreenFP7J2DPane = .text:0x80303314; // type:function size:0x1D4 scope:global align:4 +getObject__25JSUTreeIterator<7J2DPane>CFv = .text:0x803034E8; // type:function size:0xC scope:weak align:4 +getPaneTree__7J2DPaneFv = .text:0x803034F4; // type:function size:0x8 scope:weak align:4 +getTagName__7J2DPaneCFv = .text:0x803034FC; // type:function size:0x10 scope:weak align:4 +__dt__Q29P2DScreen10Mgr_tuningFv = .text:0x8030350C; // type:function size:0x94 scope:weak align:4 +update__Q29P2DScreen4NodeFv = .text:0x803035A0; // type:function size:0x4 scope:weak align:4 +draw__Q29P2DScreen4NodeFR8GraphicsR14J2DGrafContext = .text:0x803035A4; // type:function size:0x4 scope:weak align:4 +doInit__Q29P2DScreen4NodeFv = .text:0x803035A8; // type:function size:0x4 scope:weak align:4 +__dt__Q29P2DScreen4NodeFv = .text:0x803035AC; // type:function size:0x60 scope:weak align:4 +__ct__Q32og6Screen12DopingScreenFv = .text:0x8030360C; // type:function size:0xF4 scope:global align:4 +setCallBack__Q32og6Screen12DopingScreenFP10JKRArchive = .text:0x80303700; // type:function size:0x2CC scope:global align:4 +setParam__Q32og6Screen12DopingScreenFRQ32og6Screen8DataNavi = .text:0x803039CC; // type:function size:0x38 scope:global align:4 +update__Q32og6Screen12DopingScreenFv = .text:0x80303A04; // type:function size:0x284 scope:global align:4 +adjPos__Q32og6Screen12DopingScreenFff = .text:0x80303C88; // type:function size:0xC scope:global align:4 +setDopingEnable__Q32og6Screen12DopingScreenFbb = .text:0x80303C94; // type:function size:0x44 scope:global align:4 +openDopingUp__Q32og6Screen12DopingScreenFv = .text:0x80303CD8; // type:function size:0x10 scope:global align:4 +openDopingDown__Q32og6Screen12DopingScreenFv = .text:0x80303CE8; // type:function size:0x10 scope:global align:4 +openDopingKey__Q32og6Screen12DopingScreenFv = .text:0x80303CF8; // type:function size:0xC scope:global align:4 +__ct__Q32og6Screen11DopingCheckFv = .text:0x80303D04; // type:function size:0x100 scope:global align:4 +init__Q32og6Screen11DopingCheckFP7J2DPaneP7J2DPanePQ32og6Screen8ScaleMgrPQ32og6Screen8ScaleMgr = .text:0x80303E04; // type:function size:0x44 scope:global align:4 +update__Q32og6Screen11DopingCheckFv = .text:0x80303E48; // type:function size:0x100 scope:global align:4 +effStart__Q32og6Screen11DopingCheckFP7J2DPane = .text:0x80303F48; // type:function size:0x80 scope:global align:4 +startGetEff_Up__Q32og6Screen11DopingCheckFv = .text:0x80303FC8; // type:function size:0xD0 scope:global align:4 +startGetEff_Down__Q32og6Screen11DopingCheckFv = .text:0x80304098; // type:function size:0xD0 scope:global align:4 +kill__Q25efx2d8TSimple2Fv = .text:0x80304168; // type:function size:0x4 scope:weak align:4 +fade__Q25efx2d8TSimple2Fv = .text:0x8030416C; // type:function size:0x4 scope:weak align:4 +kill__Q25efx2d8TSimple1Fv = .text:0x80304170; // type:function size:0x4 scope:weak align:4 +fade__Q25efx2d8TSimple1Fv = .text:0x80304174; // type:function size:0x4 scope:weak align:4 +__dt__Q32og6Screen12DopingScreenFv = .text:0x80304178; // type:function size:0xA4 scope:weak align:4 +__ct__Q32og6Screen13PikminCounterFv = .text:0x8030421C; // type:function size:0xBC scope:global align:4 +setParam__Q32og6Screen13PikminCounterFRQ32og6Screen8DataGameRQ32og6Screen8DataNavi = .text:0x803042D8; // type:function size:0x6C scope:global align:4 +update__Q32og6Screen13PikminCounterFv = .text:0x80304344; // type:function size:0xF8 scope:global align:4 +setCallBack__Q32og6Screen13PikminCounterFP10JKRArchive = .text:0x8030443C; // type:function size:0x230 scope:global align:4 +setCallBack__Q32og6Screen17PikminCounterCaveFP10JKRArchive = .text:0x8030466C; // type:function size:0x240 scope:global align:4 +setCallBack__Q32og6Screen24PikminCounterChallenge1PFP10JKRArchive = .text:0x803048AC; // type:function size:0x1F8 scope:global align:4 +__dt__Q32og6Screen24PikminCounterChallenge1PFv = .text:0x80304AA4; // type:function size:0xB4 scope:weak align:4 +__dt__Q32og6Screen17PikminCounterCaveFv = .text:0x80304B58; // type:function size:0xB4 scope:weak align:4 +__dt__Q32og6Screen13PikminCounterFv = .text:0x80304C0C; // type:function size:0xA4 scope:weak align:4 +start__Q32og6Screen12AnimBaseBaseFf = .text:0x80304CB0; // type:function size:0x10 scope:global align:4 +updateSub__Q32og6Screen12AnimBaseBaseFv = .text:0x80304CC0; // type:function size:0x150 scope:global align:4 +update__Q32og6Screen12AnimBaseBaseFv = .text:0x80304E10; // type:function size:0x78 scope:global align:4 +__ct__Q32og6Screen10AnimScreenFv = .text:0x80304E88; // type:function size:0x9C scope:global align:4 +init__Q32og6Screen10AnimScreenFP10JKRArchiveP9J2DScreenPc = .text:0x80304F24; // type:function size:0x164 scope:global align:4 +start__Q32og6Screen10AnimScreenFv = .text:0x80305088; // type:function size:0x90 scope:global align:4 +moveAnim__Q32og6Screen10AnimScreenFv = .text:0x80305118; // type:function size:0x60 scope:global align:4 +__ct__Q32og6Screen8AnimPaneFv = .text:0x80305178; // type:function size:0xA0 scope:global align:4 +init__Q32og6Screen8AnimPaneFP10JKRArchiveP9J2DScreenUxPc = .text:0x80305218; // type:function size:0x150 scope:global align:4 +start__Q32og6Screen8AnimPaneFv = .text:0x80305368; // type:function size:0x90 scope:global align:4 +moveAnim__Q32og6Screen8AnimPaneFv = .text:0x803053F8; // type:function size:0x60 scope:global align:4 +__ct__Q32og6Screen9AnimGroupFi = .text:0x80305458; // type:function size:0x90 scope:global align:4 +update__Q32og6Screen9AnimGroupFv = .text:0x803054E8; // type:function size:0x1C0 scope:global align:4 +setSpeed__Q32og6Screen9AnimGroupFf = .text:0x803056A8; // type:function size:0x5C scope:global align:4 +setRepeat__Q32og6Screen9AnimGroupFb = .text:0x80305704; // type:function size:0x5C scope:global align:4 +setFrame__Q32og6Screen9AnimGroupFf = .text:0x80305760; // type:function size:0x5C scope:global align:4 +setAllArea__Q32og6Screen9AnimGroupFv = .text:0x803057BC; // type:function size:0x54 scope:global align:4 +getFrame__Q32og6Screen9AnimGroupFv = .text:0x80305810; // type:function size:0x20 scope:global align:4 +setArea__Q32og6Screen9AnimGroupFff = .text:0x80305830; // type:function size:0x88 scope:global align:4 +start__Q32og6Screen9AnimGroupFv = .text:0x803058B8; // type:function size:0xA8 scope:global align:4 +reservAnim__Q32og6Screen9AnimGroupFfff = .text:0x80305960; // type:function size:0x18 scope:global align:4 +getLastFrame__Q32og6Screen9AnimGroupFv = .text:0x80305978; // type:function size:0x20 scope:global align:4 +registAnimGroupScreen__Q22og6ScreenFPQ32og6Screen9AnimGroupP10JKRArchiveP9J2DScreenPcf = .text:0x80305998; // type:function size:0x254 scope:global align:4 +registAnimGroupPane__Q22og6ScreenFPQ32og6Screen9AnimGroupP10JKRArchiveP9J2DScreenUxPcf = .text:0x80305BEC; // type:function size:0x25C scope:global align:4 +makeSujiFontTable__Q22og6ScreenFPPcP10JKRArchive = .text:0x80305E48; // type:function size:0x118 scope:global align:4 +setSuji__Q32og6Screen11CounterKetaFPP7ResTIMGUl = .text:0x80305F60; // type:function size:0x50 scope:global align:4 +calcScale__Q32og6Screen11CounterKetaFv = .text:0x80305FB0; // type:function size:0x88 scope:global align:4 +__ct__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x80306038; // type:function size:0x158 scope:global align:4 +__dt__Q29P2DScreen12CallBackNodeFv = .text:0x80306190; // type:function size:0x70 scope:weak align:4 +init__Q32og6Screen18CallBack_LifeGaugeFPQ29P2DScreen3MgrPQ32og6Screen8DataNaviQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x80306200; // type:function size:0x2C4 scope:global align:4 +setType__Q32og6Screen18CallBack_LifeGaugeFQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x803064C4; // type:function size:0x434 scope:global align:4 +setOffset__Q32og6Screen18CallBack_LifeGaugeFff = .text:0x803068F8; // type:function size:0x78 scope:global align:4 +moveIcon__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x80306970; // type:function size:0x318 scope:global align:4 +update__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x80306C88; // type:function size:0x26C scope:global align:4 +draw__Q32og6Screen18CallBack_LifeGaugeFR8GraphicsR14J2DGrafContext = .text:0x80306EF4; // type:function size:0xB4 scope:global align:4 +setCallBack__Q32og6Screen13NaviLifeGaugeFPQ32og6Screen8DataNaviQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x80306FA8; // type:function size:0x118 scope:global align:4 +setType__Q32og6Screen13NaviLifeGaugeFQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x803070C0; // type:function size:0x2C scope:global align:4 +update__Q32og6Screen13NaviLifeGaugeFv = .text:0x803070EC; // type:function size:0x5C scope:global align:4 +__dt__Q32og6Screen13NaviLifeGaugeFv = .text:0x80307148; // type:function size:0xA4 scope:weak align:4 +__dt__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x803071EC; // type:function size:0x80 scope:weak align:4 +update__Q29P2DScreen12CallBackNodeFv = .text:0x8030726C; // type:function size:0x4 scope:weak align:4 +__sinit_ogLifeGauge_cpp = .text:0x80307270; // type:function size:0x24 scope:local align:4 +update__Q32og6Screen17CallBack_SunMeterFv = .text:0x80307294; // type:function size:0x23C scope:global align:4 +startEffectChime__Q32og6Screen17CallBack_SunMeterFv = .text:0x803074D0; // type:function size:0x34 scope:global align:4 +__ct__Q32og6Screen8SunMeterFv = .text:0x80307504; // type:function size:0x44 scope:global align:4 +setCallBack__Q32og6Screen8SunMeterFv = .text:0x80307548; // type:function size:0x1B4 scope:global align:4 +__dt__Q32og6Screen8SunMeterFv = .text:0x803076FC; // type:function size:0xA4 scope:weak align:4 +__dt__Q32og6Screen17CallBack_SunMeterFv = .text:0x803077A0; // type:function size:0x80 scope:weak align:4 +__ct__Q32og6Screen18CallBack_CatchPikiFv = .text:0x80307820; // type:function size:0x80 scope:global align:4 +__dt__Q32og6Screen8ScaleMgrFv = .text:0x803078A0; // type:function size:0x3C scope:weak align:4 +init__Q32og6Screen18CallBack_CatchPikiFP9J2DScreenUxPUlP10JKRArchive = .text:0x803078DC; // type:function size:0xC0 scope:global align:4 +update__Q32og6Screen18CallBack_CatchPikiFv = .text:0x8030799C; // type:function size:0xF0 scope:global align:4 +setPikiIcon__Q32og6Screen18CallBack_CatchPikiFi = .text:0x80307A8C; // type:function size:0x4C scope:global align:4 +__dt__Q32og6Screen18CallBack_CatchPikiFv = .text:0x80307AD8; // type:function size:0x80 scope:weak align:4 +__ct__Q32og6Screen14ContenaCounterFPQ32og6Screen17DispMemberContena = .text:0x80307B58; // type:function size:0x90 scope:global align:4 +setblo__Q32og6Screen14ContenaCounterFPcP10JKRArchive = .text:0x80307BE8; // type:function size:0x140 scope:global align:4 +__dt__Q32og6Screen14ContenaCounterFv = .text:0x80307D28; // type:function size:0xA4 scope:weak align:4 +__ct__Q32og6Screen10MapCounterFPQ32og6Screen7DataMap = .text:0x80307DCC; // type:function size:0xE4 scope:global align:4 +dispRed__Q32og6Screen10MapCounterFb = .text:0x80307EB0; // type:function size:0x38 scope:global align:4 +dispYellow__Q32og6Screen10MapCounterFb = .text:0x80307EE8; // type:function size:0x38 scope:global align:4 +dispBlue__Q32og6Screen10MapCounterFb = .text:0x80307F20; // type:function size:0x38 scope:global align:4 +dispWhite__Q32og6Screen10MapCounterFb = .text:0x80307F58; // type:function size:0x38 scope:global align:4 +dispBlack__Q32og6Screen10MapCounterFb = .text:0x80307F90; // type:function size:0x38 scope:global align:4 +dispFree__Q32og6Screen10MapCounterFb = .text:0x80307FC8; // type:function size:0x28 scope:global align:4 +setCallBack__Q32og6Screen10MapCounterFP10JKRArchive = .text:0x80307FF0; // type:function size:0x724 scope:global align:4 +__dt__Q32og6Screen10MapCounterFv = .text:0x80308714; // type:function size:0xA4 scope:weak align:4 +setAnimTextScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x803087B8; // type:function size:0x134 scope:global align:4 +setMenuScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x803088EC; // type:function size:0x13C scope:global align:4 +setMenuTitleScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x80308A28; // type:function size:0x13C scope:global align:4 +__ct__Q32og6Screen15AnimText_ScreenFPQ29P2DScreen3MgrUx = .text:0x80308B64; // type:function size:0x228 scope:global align:4 +__dt__Q32og6Screen15CallBack_ScreenFv = .text:0x80308D8C; // type:function size:0x80 scope:weak align:4 +update__Q32og6Screen15AnimText_ScreenFv = .text:0x80308E0C; // type:function size:0x60C scope:global align:4 +setAnimScreen__Q32og6Screen15AnimText_ScreenFPQ32og6Screen10AnimScreen = .text:0x80309418; // type:function size:0x8 scope:global align:4 +setText__Q32og6Screen15AnimText_ScreenFUx = .text:0x80309420; // type:function size:0x1C scope:global align:4 +stop__Q32og6Screen15AnimText_ScreenFv = .text:0x8030943C; // type:function size:0x18 scope:global align:4 +open__Q32og6Screen15AnimText_ScreenFf = .text:0x80309454; // type:function size:0x3C scope:global align:4 +close__Q32og6Screen15AnimText_ScreenFv = .text:0x80309490; // type:function size:0x48 scope:global align:4 +blink__Q32og6Screen15AnimText_ScreenFff = .text:0x803094D8; // type:function size:0xAC scope:global align:4 +__dt__Q32og6Screen15AnimText_ScreenFv = .text:0x80309584; // type:function size:0x90 scope:weak align:4 +__ct__Q32og6Screen16CallBack_MessageFv = .text:0x80309614; // type:function size:0x98 scope:global align:4 +draw__Q32og6Screen16CallBack_MessageFR8GraphicsR14J2DGrafContext = .text:0x803096AC; // type:function size:0x1B4 scope:global align:4 +__dt__Q32og6Screen16CallBack_MessageFv = .text:0x80309860; // type:function size:0x80 scope:weak align:4 +checkVisibleGlb__Q22og6ScreenFP7J2DPane = .text:0x803098E0; // type:function size:0x194 scope:local align:4 +isVisible__7J2DPaneCFv = .text:0x80309A74; // type:function size:0x8 scope:weak align:4 +setCallBackMessageSub__Q22og6ScreenFPQ29P2DScreen3MgrP7J2DPane = .text:0x80309A7C; // type:function size:0x31C scope:local align:4 +getUserInfo__7J2DPaneCFv = .text:0x80309D98; // type:function size:0x10 scope:weak align:4 +getMsgPtr__Q22og5Lib2DFv = .text:0x80309DA8; // type:function size:0x8 scope:weak align:4 +__ct__Q29P2DScreen12CallBackNodeFv = .text:0x80309DB0; // type:function size:0x50 scope:weak align:4 +setCallBackMessage__Q22og6ScreenFPQ29P2DScreen3Mgr = .text:0x80309E00; // type:function size:0x24 scope:global align:4 +update__Q32og6Screen16CallBack_MessageFv = .text:0x80309E24; // type:function size:0x4 scope:weak align:4 +__ct__Q32og6Screen7MenuMgrFv = .text:0x80309E28; // type:function size:0x1E8 scope:global align:4 +__dt__Q25efx2d9TChasePosFv = .text:0x8030A010; // type:function size:0x84 scope:weak align:4 +__dt__Q25efx2d8TForeverFv = .text:0x8030A094; // type:function size:0x6C scope:weak align:4 +startCursor__Q32og6Screen7MenuMgrFf = .text:0x8030A100; // type:function size:0x94 scope:global align:4 +killCursor__Q32og6Screen7MenuMgrFv = .text:0x8030A194; // type:function size:0x70 scope:global align:4 +init2taku__Q32og6Screen7MenuMgrFP9J2DScreenUxUxUxUxUxUxUxUx = .text:0x8030A204; // type:function size:0x21C scope:global align:4 +init2takuTitle__Q32og6Screen7MenuMgrFP9J2DScreenUxUxUxUxUxUxUxUx = .text:0x8030A420; // type:function size:0x21C scope:global align:4 +init__Q32og6Screen7MenuMgrFP9J2DScreenUsUxUxUxUxUx = .text:0x8030A63C; // type:function size:0x494 scope:global align:4 +selectSub__Q32og6Screen7MenuMgrFUs = .text:0x8030AAD0; // type:function size:0x90 scope:global align:4 +select__Q32og6Screen7MenuMgrFUs = .text:0x8030AB60; // type:function size:0x98 scope:global align:4 +initSelNum__Q32og6Screen7MenuMgrFUs = .text:0x8030ABF8; // type:function size:0x14 scope:global align:4 +update__Q32og6Screen7MenuMgrFv = .text:0x8030AC0C; // type:function size:0x580 scope:global align:4 +draw__Q32og6Screen7MenuMgrFP14J2DGrafContext = .text:0x8030B18C; // type:function size:0xEC scope:global align:4 +MenuOnOff__Q32og6Screen7MenuMgrFv = .text:0x8030B278; // type:function size:0xF8 scope:global align:4 +__ct__Q32og6Screen15CallBack_ScreenFPQ29P2DScreen3MgrUx = .text:0x8030B370; // type:function size:0xA4 scope:global align:4 +getPartsScreen__Q32og6Screen15CallBack_ScreenFv = .text:0x8030B414; // type:function size:0x8 scope:global align:4 +update__Q32og6Screen15CallBack_ScreenFv = .text:0x8030B41C; // type:function size:0x38 scope:global align:4 +draw__Q32og6Screen15CallBack_ScreenFR8GraphicsR14J2DGrafContext = .text:0x8030B454; // type:function size:0xD0 scope:global align:4 +__ct__Q32og6Screen18CallBack_CounterRVFPPcUsUsP10JKRArchive = .text:0x8030B524; // type:function size:0x1E0 scope:global align:4 +show__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B704; // type:function size:0x40 scope:global align:4 +setValue__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B744; // type:function size:0x34 scope:weak align:4 +hide__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B778; // type:function size:0x48 scope:global align:4 +getMotherPane__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B7C0; // type:function size:0x18 scope:global align:4 +setPuyoAnim__Q32og6Screen18CallBack_CounterRVFb = .text:0x8030B7D8; // type:function size:0x8 scope:global align:4 +setPuyoAnimZero__Q32og6Screen18CallBack_CounterRVFb = .text:0x8030B7E0; // type:function size:0x8 scope:global align:4 +setBlind__Q32og6Screen18CallBack_CounterRVFb = .text:0x8030B7E8; // type:function size:0x8 scope:global align:4 +setZeroAlpha__Q32og6Screen18CallBack_CounterRVFUc = .text:0x8030B7F0; // type:function size:0x8 scope:global align:4 +startPuyoUp__Q32og6Screen18CallBack_CounterRVFf = .text:0x8030B7F8; // type:function size:0xE4 scope:global align:4 +setCenteringMode__Q32og6Screen18CallBack_CounterRVFQ42og6Screen18CallBack_CounterRV17EnumCenteringMode = .text:0x8030B8DC; // type:function size:0x8 scope:global align:4 +init__Q32og6Screen18CallBack_CounterRVFP9J2DScreenUxUxUxPUlb = .text:0x8030B8E4; // type:function size:0x4D0 scope:global align:4 +setKetaSub__Q32og6Screen18CallBack_CounterRVFibb = .text:0x8030BDB4; // type:function size:0x220 scope:global align:4 +setCounterUpDown__Q32og6Screen18CallBack_CounterRVFibb = .text:0x8030BFD4; // type:function size:0xB0 scope:global align:4 +setValue__Q32og6Screen18CallBack_CounterRVFbb = .text:0x8030C084; // type:function size:0x3F8 scope:global align:4 +update__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030C47C; // type:function size:0xB0 scope:global align:4 +draw__Q32og6Screen18CallBack_CounterRVFR8GraphicsR14J2DGrafContext = .text:0x8030C52C; // type:function size:0x4 scope:global align:4 +setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxUxUxPUlUsUsbP10JKRArchive = .text:0x8030C530; // type:function size:0xD8 scope:global align:4 +setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxPUlUsbbP10JKRArchive = .text:0x8030C608; // type:function size:0x17C scope:global align:4 +setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxUlUsbbP10JKRArchive = .text:0x8030C784; // type:function size:0x18C scope:global align:4 +__dt__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030C910; // type:function size:0x80 scope:weak align:4 +__sinit_ogCounterRV_cpp = .text:0x8030C990; // type:function size:0x20 scope:local align:4 +setSE__Q22og5SoundFUl = .text:0x8030C9B0; // type:function size:0x28 scope:global align:4 +setLifeDanger__Q22og5SoundFv = .text:0x8030C9D8; // type:function size:0x2C scope:global align:4 +setChimeNoon__Q22og5SoundFv = .text:0x8030CA04; // type:function size:0xF4 scope:global align:4 +setChime__Q22og5SoundFv = .text:0x8030CAF8; // type:function size:0x2C scope:global align:4 +setDecide__Q22og5SoundFv = .text:0x8030CB24; // type:function size:0x2C scope:global align:4 +setCancel__Q22og5SoundFv = .text:0x8030CB50; // type:function size:0x2C scope:global align:4 +setCursor__Q22og5SoundFv = .text:0x8030CB7C; // type:function size:0x2C scope:global align:4 +setOpen__Q22og5SoundFv = .text:0x8030CBA8; // type:function size:0x2C scope:global align:4 +setClose__Q22og5SoundFv = .text:0x8030CBD4; // type:function size:0x2C scope:global align:4 +setPlusMinus__Q22og5SoundFb = .text:0x8030CC00; // type:function size:0x48 scope:global align:4 +setSMenuLR__Q22og5SoundFv = .text:0x8030CC48; // type:function size:0x2C scope:global align:4 +setError__Q22og5SoundFv = .text:0x8030CC74; // type:function size:0x2C scope:global align:4 +setZoomIn__Q22og5SoundFv = .text:0x8030CCA0; // type:function size:0x2C scope:global align:4 +setZoomOut__Q22og5SoundFv = .text:0x8030CCCC; // type:function size:0x2C scope:global align:4 +setScroll__Q22og5SoundFv = .text:0x8030CCF8; // type:function size:0x2C scope:global align:4 +setOpenDoukutu__Q22og5SoundFv = .text:0x8030CD24; // type:function size:0x2C scope:global align:4 +setSaveCave__Q22og5SoundFv = .text:0x8030CD50; // type:function size:0x2C scope:global align:4 +setOpenWMapMenu__Q22og5SoundFv = .text:0x8030CD7C; // type:function size:0x2C scope:global align:4 +setOpenTotalPoko__Q22og5SoundFv = .text:0x8030CDA8; // type:function size:0x2C scope:global align:4 +setCloseTotalPoko__Q22og5SoundFv = .text:0x8030CDD4; // type:function size:0x2C scope:global align:4 +setPlusTotalPoko__Q22og5SoundFv = .text:0x8030CE00; // type:function size:0x2C scope:global align:4 +setOpenFinalMsg__Q22og5SoundFv = .text:0x8030CE2C; // type:function size:0x2C scope:global align:4 +setSprayAdd__Q22og5SoundFv = .text:0x8030CE58; // type:function size:0x2C scope:global align:4 +setTimeCarry__Q22og5SoundFv = .text:0x8030CE84; // type:function size:0x2C scope:global align:4 +setGetSensor__Q22og5SoundFv = .text:0x8030CEB0; // type:function size:0x2C scope:global align:4 +setFloorComplete__Q22og5SoundFv = .text:0x8030CEDC; // type:function size:0x2C scope:global align:4 +setGraySensor__Q22og5SoundFv = .text:0x8030CF08; // type:function size:0x2C scope:global align:4 +setGetSpray__Q22og5SoundFv = .text:0x8030CF34; // type:function size:0x2C scope:global align:4 +setKanteiExit__Q22og5SoundFv = .text:0x8030CF60; // type:function size:0x2C scope:global align:4 +setFloorTitle__Q22og5SoundFv = .text:0x8030CF8C; // type:function size:0x4 scope:global align:4 +setVsTitle__Q22og5SoundFv = .text:0x8030CF90; // type:function size:0x2C scope:global align:4 +setBdamaGet__Q22og5SoundFv = .text:0x8030CFBC; // type:function size:0x2C scope:global align:4 +setNaviChange__Q22og5SoundFi = .text:0x8030CFE8; // type:function size:0x4 scope:global align:4 +setVsWin1P__Q22og5SoundFv = .text:0x8030CFEC; // type:function size:0xE0 scope:global align:4 +setVsWin2P__Q22og5SoundFv = .text:0x8030D0CC; // type:function size:0xE0 scope:global align:4 +setVsDraw__Q22og5SoundFv = .text:0x8030D1AC; // type:function size:0xE0 scope:global align:4 +setWarning__Q22og5SoundFv = .text:0x8030D28C; // type:function size:0x2C scope:global align:4 +__ct__Q32og6Screen19CallBack_CounterDayFPPcUsP10JKRArchive = .text:0x8030D2B8; // type:function size:0x4C scope:global align:4 +init__Q32og6Screen19CallBack_CounterDayFP9J2DScreenUxUxUxPUlb = .text:0x8030D304; // type:function size:0xEC scope:global align:4 +setValue__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D3F0; // type:function size:0x168 scope:global align:4 +show__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D558; // type:function size:0x40 scope:global align:4 +hide__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D598; // type:function size:0x4C scope:global align:4 +update__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D5E4; // type:function size:0x40 scope:global align:4 +setCallBack_CounterDay__Q22og6ScreenFPQ29P2DScreen3MgrUxUxUxPUlUsP10JKRArchive = .text:0x8030D624; // type:function size:0xDC scope:global align:4 +__dt__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D700; // type:function size:0x90 scope:weak align:4 +isUseBackupSceneInfo__Q26Screen9SceneBaseFv = .text:0x8030D790; // type:function size:0x8 scope:weak align:4 +isDrawInDemo__Q26Screen9SceneBaseCFv = .text:0x8030D798; // type:function size:0x8 scope:weak align:4 +setPort__Q26Screen9SceneBaseFR8Graphics = .text:0x8030D7A0; // type:function size:0x30 scope:weak align:4 +doConfirmSetScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x8030D7D0; // type:function size:0x8 scope:weak align:4 +doConfirmStartScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x8030D7D8; // type:function size:0x8 scope:weak align:4 +doConfirmEndScene__Q26Screen9SceneBaseFRPQ26Screen11EndSceneArg = .text:0x8030D7E0; // type:function size:0x8 scope:weak align:4 +setDefaultDispMember__Q26Screen9SceneBaseFv = .text:0x8030D7E8; // type:function size:0x50 scope:weak align:4 +doSetBackupScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x8030D838; // type:function size:0x4 scope:weak align:4 +doGetFinishState__Q26Screen9SceneBaseFv = .text:0x8030D83C; // type:function size:0x8 scope:weak align:4 +getSize__Q32og6Screen15DispMemberDummyFv = .text:0x8030D844; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen15DispMemberDummyFv = .text:0x8030D84C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen15DispMemberDummyFv = .text:0x8030D858; // type:function size:0x10 scope:weak align:4 +__dt__Q26Screen7ObjBaseFv = .text:0x8030D868; // type:function size:0x94 scope:weak align:4 +setOwner__Q26Screen7ObjBaseFPQ26Screen9SceneBase = .text:0x8030D8FC; // type:function size:0x60 scope:weak align:4 +getOwner__Q26Screen7ObjBaseCFv = .text:0x8030D95C; // type:function size:0x8 scope:weak align:4 +doConfirmSetScene__Q26Screen7ObjBaseFRQ26Screen11SetSceneArg = .text:0x8030D964; // type:function size:0x8 scope:weak align:4 +doConfirmStartScene__Q26Screen7ObjBaseFPQ26Screen13StartSceneArg = .text:0x8030D96C; // type:function size:0x8 scope:weak align:4 +doConfirmEndScene__Q26Screen7ObjBaseFRPQ26Screen11EndSceneArg = .text:0x8030D974; // type:function size:0x8 scope:weak align:4 +__dt__Q26Screen8IObjBaseFv = .text:0x8030D97C; // type:function size:0x7C scope:weak align:4 +@24@__dt__Q26Screen8IObjBaseFv = .text:0x8030D9F8; // type:function size:0x8 scope:weak align:4 +initGround__Q22og9newScreenFv = .text:0x8030DA00; // type:function size:0xC scope:global align:4 +__ct__Q32og9newScreen6GroundFv = .text:0x8030DA0C; // type:function size:0x54 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen6GroundFPQ28Resource10MgrCommand = .text:0x8030DA60; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen6GroundFP10JKRArchive = .text:0x8030DA64; // type:function size:0xC0 scope:global align:4 +doStart__Q32og9newScreen6GroundFPQ26Screen13StartSceneArg = .text:0x8030DB24; // type:function size:0x4C scope:global align:4 +doUpdateActive__Q32og9newScreen6GroundFv = .text:0x8030DB70; // type:function size:0x310 scope:global align:4 +getResName__Q32og9newScreen6GroundCFv = .text:0x8030DE80; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen6GroundFv = .text:0x8030DE8C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen6GroundFv = .text:0x8030DE94; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen6GroundFv = .text:0x8030DEA0; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen6GroundCFv = .text:0x8030DEB0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen9ObjGroundFPCc = .text:0x8030DEB8; // type:function size:0x94 scope:global align:4 +__dt__Q32og9newScreen9ObjGroundFv = .text:0x8030DF4C; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen9ObjGroundFP10JKRArchive = .text:0x8030DFF8; // type:function size:0x464 scope:global align:4 +commonUpdate__Q32og9newScreen9ObjGroundFv = .text:0x8030E45C; // type:function size:0x29C scope:global align:4 +doUpdate__Q32og9newScreen9ObjGroundFv = .text:0x8030E6F8; // type:function size:0x24 scope:global align:4 +doDraw__Q32og9newScreen9ObjGroundFR8Graphics = .text:0x8030E71C; // type:function size:0x90 scope:global align:4 +doStart__Q32og9newScreen9ObjGroundFPCQ26Screen13StartSceneArg = .text:0x8030E7AC; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen9ObjGroundFPCQ26Screen11EndSceneArg = .text:0x8030E7C0; // type:function size:0x10 scope:global align:4 +doUpdateFadein__Q32og9newScreen9ObjGroundFv = .text:0x8030E7D0; // type:function size:0x74 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen9ObjGroundFv = .text:0x8030E844; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen9ObjGroundFv = .text:0x8030E848; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q32og9newScreen9ObjGroundFv = .text:0x8030E854; // type:function size:0x7C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen9ObjGroundFv = .text:0x8030E8D0; // type:function size:0x4 scope:global align:4 +__sinit_ogObjGround_cpp = .text:0x8030E8D4; // type:function size:0x7C scope:local align:4 +@24@__dt__Q32og9newScreen9ObjGroundFv = .text:0x8030E950; // type:function size:0x8 scope:weak align:4 +CopyPicture__Q22og6ScreenFP12J2DPictureExUx = .text:0x8030E958; // type:function size:0x2F8 scope:global align:4 +CopyPictureToPane__Q22og6ScreenFP12J2DPictureExP7J2DPaneffUx = .text:0x8030EC50; // type:function size:0x338 scope:global align:4 +__ct__Q32og6Screen8BloGroupFUs = .text:0x8030EF88; // type:function size:0x98 scope:global align:4 +addBlo__Q32og6Screen8BloGroupFPcPQ29P2DScreen10Mgr_tuningUlP10JKRArchive = .text:0x8030F020; // type:function size:0xA0 scope:global align:4 +scale__Q32og6Screen8BloGroupFf = .text:0x8030F0C0; // type:function size:0x44 scope:global align:4 +rotate__Q32og6Screen8BloGroupFff13J2DRotateAxisf = .text:0x8030F104; // type:function size:0xA4 scope:global align:4 +update__Q32og6Screen8BloGroupFv = .text:0x8030F1A8; // type:function size:0x70 scope:global align:4 +draw__Q32og6Screen8BloGroupFP13J2DPerspGraph = .text:0x8030F218; // type:function size:0xE8 scope:global align:4 +doJ3DDrawInit__8GraphicsFv = .text:0x8030F300; // type:function size:0x4 scope:weak align:4 +doJ3DDraw__8GraphicsFi = .text:0x8030F304; // type:function size:0x4 scope:weak align:4 +doJ3DFrameInit__8GraphicsFv = .text:0x8030F308; // type:function size:0x4 scope:weak align:4 +doJ3DAnimation__8GraphicsFv = .text:0x8030F30C; // type:function size:0x4 scope:weak align:4 +doJ3DUpdateInit__8GraphicsFv = .text:0x8030F310; // type:function size:0x4 scope:weak align:4 +doJ3DSetView__8GraphicsFi = .text:0x8030F314; // type:function size:0x4 scope:weak align:4 +doJ3DViewCalc__8GraphicsFv = .text:0x8030F318; // type:function size:0x4 scope:weak align:4 +isID__Q32og6Screen14DispMemberBaseFUlUx = .text:0x8030F31C; // type:function size:0x80 scope:global align:4 +getMemberName__Q32og6Screen14DispMemberBaseFPc = .text:0x8030F39C; // type:function size:0x40 scope:global align:4 +setSubMember__Q32og6Screen14DispMemberBaseFPQ32og6Screen14DispMemberBase = .text:0x8030F3DC; // type:function size:0xE4 scope:global align:4 +getSubMember__Q32og6Screen14DispMemberBaseFUlUx = .text:0x8030F4C0; // type:function size:0x10C scope:global align:4 +setSubMemberAll__Q32og6Screen14DispMemberBaseFv = .text:0x8030F5CC; // type:function size:0x34 scope:global align:4 +__dt__Q22og5Lib2DFv = .text:0x8030F600; // type:function size:0x68 scope:global align:4 +create__Q22og5Lib2DFv = .text:0x8030F668; // type:function size:0x88 scope:global align:4 +__ct__Q32og9newScreen11ObjSMenuMapFPCc = .text:0x8030F6F0; // type:function size:0x114 scope:global align:4 +__dt__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8030F804; // type:function size:0xAC scope:weak align:4 +__dt__Q32og9newScreen11ObjSMenuMapFv = .text:0x8030F8B0; // type:function size:0xC4 scope:global align:4 +setMapTexture__Q32og9newScreen11ObjSMenuMapFv = .text:0x8030F974; // type:function size:0x26C scope:global align:4 +tuningIcon__Q32og9newScreen11ObjSMenuMapFv = .text:0x8030FBE0; // type:function size:0x1B8 scope:global align:4 +initMapIcon__Q32og9newScreen11ObjSMenuMapFP10JKRArchive = .text:0x8030FD98; // type:function size:0xC74 scope:global align:4 +appendCaveName__Q32og9newScreen11ObjSMenuMapFP7J2DPaneUsUx = .text:0x80310A0C; // type:function size:0x1E4 scope:global align:4 +transMap__Q32og9newScreen11ObjSMenuMapFv = .text:0x80310BF0; // type:function size:0x2E8 scope:global align:4 +doCreate__Q32og9newScreen11ObjSMenuMapFP10JKRArchive = .text:0x80310ED8; // type:function size:0x960 scope:global align:4 +updateMap__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311838; // type:function size:0x598 scope:global align:4 +commonUpdate__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311DD0; // type:function size:0xA8 scope:global align:4 +doUpdateLAction__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311E78; // type:function size:0x6C scope:global align:4 +doUpdateRAction__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311EE4; // type:function size:0xC4 scope:global align:4 +doUpdate__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311FA8; // type:function size:0x10C scope:global align:4 +doDraw__Q32og9newScreen11ObjSMenuMapFR8Graphics = .text:0x803120B4; // type:function size:0x138 scope:global align:4 +drawMap__Q32og9newScreen11ObjSMenuMapFR8Graphics = .text:0x803121EC; // type:function size:0x32C scope:global align:4 +drawRectZ__Q32og9newScreen11ObjSMenuMapFR8GraphicsR7RectR6Color4f = .text:0x80312518; // type:function size:0x1E0 scope:global align:4 +drawVecZ__Q32og9newScreen11ObjSMenuMapFR8GraphicsR3VecR3VecR3VecR3VecR6Color4f = .text:0x803126F8; // type:function size:0x214 scope:global align:4 +doStart__Q32og9newScreen11ObjSMenuMapFPCQ26Screen13StartSceneArg = .text:0x8031290C; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen11ObjSMenuMapFPCQ26Screen11EndSceneArg = .text:0x803129B0; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen11ObjSMenuMapFv = .text:0x803129B8; // type:function size:0x20 scope:global align:4 +doUpdateFadeout__Q32og9newScreen11ObjSMenuMapFv = .text:0x803129D8; // type:function size:0x4C scope:global align:4 +in_L__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A24; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A38; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A4C; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A58; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A84; // type:function size:0x2C scope:global align:4 +getClassSize__Q26Screen11SetSceneArgFv = .text:0x80312AB0; // type:function size:0x8 scope:weak align:4 +getSceneType__Q26Screen11SetSceneArgCFv = .text:0x80312AB8; // type:function size:0x8 scope:weak align:4 +getSceneType__Q26Screen12SceneArgBaseCFv = .text:0x80312AC0; // type:function size:0x8 scope:weak align:4 +doUpdateCancelAction__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312AC8; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjSMenuMap_cpp = .text:0x80312ACC; // type:function size:0x128 scope:local align:4 +@24@__dt__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312BF4; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen8SMenuMapFv = .text:0x80312BFC; // type:function size:0x50 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen8SMenuMapFPQ28Resource10MgrCommand = .text:0x80312C4C; // type:function size:0x148 scope:global align:4 +doCreateObj__Q32og9newScreen8SMenuMapFP10JKRArchive = .text:0x80312D94; // type:function size:0x80 scope:global align:4 +doUpdateActive__Q32og9newScreen8SMenuMapFv = .text:0x80312E14; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen8SMenuMapFRQ26Screen11SetSceneArg = .text:0x80312E18; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen8SMenuMapFRQ26Screen11SetSceneArg = .text:0x80312E80; // type:function size:0xC scope:global align:4 +getResName__Q32og9newScreen8SMenuMapCFv = .text:0x80312E8C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen8SMenuMapFv = .text:0x80312E98; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen8SMenuMapFv = .text:0x80312EA0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen8SMenuMapFv = .text:0x80312EAC; // type:function size:0x10 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen8SMenuMapFv = .text:0x80312EBC; // type:function size:0x8 scope:weak align:4 +doGetFinishState__Q32og9newScreen14SceneSMenuBaseFv = .text:0x80312EC4; // type:function size:0x8 scope:weak align:4 +doUserCallBackFunc__Q26Screen9SceneBaseFPQ28Resource10MgrCommand = .text:0x80312ECC; // type:function size:0x4 scope:weak align:4 +__sinit_ogSceneSMenuMap_cpp = .text:0x80312ED0; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen12ObjSMenuItemFPCc = .text:0x80312EF8; // type:function size:0x7C scope:global align:4 +__dt__Q32og9newScreen12ObjSMenuItemFv = .text:0x80312F74; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen12ObjSMenuItemFP10JKRArchive = .text:0x80313038; // type:function size:0x924 scope:global align:4 +doUpdateLAction__Q32og9newScreen12ObjSMenuItemFv = .text:0x8031395C; // type:function size:0x128 scope:global align:4 +doUpdateRAction__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313A84; // type:function size:0x6C scope:global align:4 +commonUpdate__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313AF0; // type:function size:0xE8 scope:global align:4 +doUpdate__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313BD8; // type:function size:0x54 scope:global align:4 +doDraw__Q32og9newScreen12ObjSMenuItemFR8Graphics = .text:0x80313C2C; // type:function size:0xD4 scope:global align:4 +in_L__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D00; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D14; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D28; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D34; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D60; // type:function size:0x2C scope:global align:4 +doStart__Q32og9newScreen12ObjSMenuItemFPCQ26Screen13StartSceneArg = .text:0x80313D8C; // type:function size:0xD0 scope:global align:4 +doEnd__Q32og9newScreen12ObjSMenuItemFPCQ26Screen11EndSceneArg = .text:0x80313E5C; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313E64; // type:function size:0x20 scope:global align:4 +doUpdateFadeout__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313E84; // type:function size:0x4C scope:global align:4 +doUpdateCancelAction__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313ED0; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjSMenuItem_cpp = .text:0x80313ED4; // type:function size:0x70 scope:local align:4 +@24@__dt__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313F44; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen9SMenuItemFv = .text:0x80313F4C; // type:function size:0x50 scope:global align:4 +doConfirmSetScene__Q32og9newScreen9SMenuItemFRQ26Screen11SetSceneArg = .text:0x80313F9C; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen9SMenuItemFRQ26Screen11SetSceneArg = .text:0x80314004; // type:function size:0xC scope:global align:4 +doUserCallBackFunc__Q32og9newScreen9SMenuItemFPQ28Resource10MgrCommand = .text:0x80314010; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen9SMenuItemFP10JKRArchive = .text:0x80314014; // type:function size:0x60 scope:global align:4 +doUpdateActive__Q32og9newScreen9SMenuItemFv = .text:0x80314074; // type:function size:0x4 scope:global align:4 +getResName__Q32og9newScreen9SMenuItemCFv = .text:0x80314078; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen9SMenuItemFv = .text:0x80314084; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen9SMenuItemFv = .text:0x8031408C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen9SMenuItemFv = .text:0x80314098; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen9SMenuItemFv = .text:0x803140AC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen10SMenuPauseFv = .text:0x803140B4; // type:function size:0x50 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen10SMenuPauseFPQ28Resource10MgrCommand = .text:0x80314104; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen10SMenuPauseFP10JKRArchive = .text:0x80314108; // type:function size:0x60 scope:global align:4 +doUpdateActive__Q32og9newScreen10SMenuPauseFv = .text:0x80314168; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen10SMenuPauseFRQ26Screen11SetSceneArg = .text:0x8031416C; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen10SMenuPauseCFv = .text:0x803141D4; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen10SMenuPauseFv = .text:0x803141E0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen10SMenuPauseFv = .text:0x803141E8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen10SMenuPauseFv = .text:0x803141F4; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen10SMenuPauseFv = .text:0x80314208; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneSMenuPause_cpp = .text:0x80314210; // type:function size:0x28 scope:local align:4 +getMenuColor__Q42og9newScreen13ObjSMenuPause9ObjHIOValFPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80314238; // type:function size:0x1F4 scope:global align:4 +__ct__Q32og9newScreen13ObjSMenuPauseFPCc = .text:0x8031442C; // type:function size:0xD0 scope:global align:4 +__dt__Q32og9newScreen13ObjSMenuPauseFv = .text:0x803144FC; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen13ObjSMenuPauseFP10JKRArchive = .text:0x803145C0; // type:function size:0x54C scope:global align:4 +blink_TopMenu__Q32og9newScreen13ObjSMenuPauseFi = .text:0x80314B0C; // type:function size:0xDC scope:global align:4 +doUpdateLAction__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314BE8; // type:function size:0x6C scope:global align:4 +doUpdateRAction__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314C54; // type:function size:0xC8 scope:global align:4 +doUpdateCancelAction__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314D1C; // type:function size:0x10 scope:global align:4 +commonUpdate__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314D2C; // type:function size:0x84 scope:global align:4 +doUpdate__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314DB0; // type:function size:0xB0 scope:global align:4 +doDraw__Q32og9newScreen13ObjSMenuPauseFR8Graphics = .text:0x80314E60; // type:function size:0x98 scope:global align:4 +doStart__Q32og9newScreen13ObjSMenuPauseFPCQ26Screen13StartSceneArg = .text:0x80314EF8; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen13ObjSMenuPauseFPCQ26Screen11EndSceneArg = .text:0x80314F9C; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314FA4; // type:function size:0x34 scope:global align:4 +doUpdateFadeout__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314FD8; // type:function size:0x4C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315024; // type:function size:0x12C scope:global align:4 +menu_pause__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315150; // type:function size:0x4C0 scope:global align:4 +menu_yuugata__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315610; // type:function size:0x478 scope:global align:4 +menu_zenkai__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315A88; // type:function size:0x478 scope:global align:4 +killCursorAll__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315F00; // type:function size:0x40 scope:global align:4 +menu__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315F40; // type:function size:0x6C scope:global align:4 +in_L__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315FAC; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315FC0; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315FD4; // type:function size:0x30 scope:global align:4 +out_L__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80316004; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80316030; // type:function size:0x2C scope:global align:4 +__sinit_ogObjSMenuPause_cpp = .text:0x8031605C; // type:function size:0x28 scope:local align:4 +__ct__Q42og9newScreen13ObjSMenuPause9ObjHIOValFv = .text:0x80316084; // type:function size:0x184 scope:weak align:4 +@24@__dt__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80316208; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316210; // type:function size:0xEC scope:global align:4 +setFinishState__Q32og9newScreen12ObjSMenuBaseFl = .text:0x803162FC; // type:function size:0x3C scope:global align:4 +setSMenuScale__Q32og9newScreen12ObjSMenuBaseFff = .text:0x80316338; // type:function size:0x40 scope:global align:4 +doCreateAfter__Q32og9newScreen12ObjSMenuBaseFP10JKRArchivePQ29P2DScreen3Mgr = .text:0x80316378; // type:function size:0x1C4 scope:global align:4 +commonUpdateBase__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8031653C; // type:function size:0x20 scope:global align:4 +doUpdate__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8031655C; // type:function size:0x12C scope:global align:4 +doUpdateFinish__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316688; // type:function size:0xD0 scope:global align:4 +startBackupScene__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316758; // type:function size:0x74 scope:global align:4 +close_L__Q32og9newScreen12ObjSMenuBaseFv = .text:0x803167CC; // type:function size:0x2C scope:global align:4 +jump_L__Q32og9newScreen12ObjSMenuBaseFRQ26Screen11SetSceneArg = .text:0x803167F8; // type:function size:0xE4 scope:global align:4 +jump_R__Q32og9newScreen12ObjSMenuBaseFRQ26Screen11SetSceneArg = .text:0x803168DC; // type:function size:0xE4 scope:global align:4 +start_LR__Q32og9newScreen12ObjSMenuBaseFPCQ26Screen13StartSceneArg = .text:0x803169C0; // type:function size:0x150 scope:global align:4 +setYajiName__Q32og9newScreen12ObjSMenuBaseFUxUxUx = .text:0x80316B10; // type:function size:0x68 scope:global align:4 +loop__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316B78; // type:function size:0x4 scope:global align:4 +stopYaji__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316B7C; // type:function size:0xC scope:global align:4 +updateYaji__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316B88; // type:function size:0x304 scope:global align:4 +drawYaji__Q32og9newScreen12ObjSMenuBaseFR8Graphics = .text:0x80316E8C; // type:function size:0x34 scope:global align:4 +updateFadeIn__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316EC0; // type:function size:0x170 scope:global align:4 +doUpdateFadein__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80317030; // type:function size:0xA8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen12ObjSMenuBaseFv = .text:0x803170D8; // type:function size:0x54 scope:global align:4 +updateFadeOut__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8031712C; // type:function size:0x104 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80317230; // type:function size:0x164 scope:global align:4 +doStart__Q26Screen7ObjBaseFPCQ26Screen13StartSceneArg = .text:0x80317394; // type:function size:0x8 scope:weak align:4 +doEnd__Q26Screen7ObjBaseFPCQ26Screen11EndSceneArg = .text:0x8031739C; // type:function size:0x8 scope:weak align:4 +doCreate__Q26Screen7ObjBaseFP10JKRArchive = .text:0x803173A4; // type:function size:0x4 scope:weak align:4 +doUpdateFadeout__Q26Screen7ObjBaseFv = .text:0x803173A8; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen18StartSceneArgSMenuCFv = .text:0x803173B0; // type:function size:0x8 scope:weak align:4 +getClassSize__Q26Screen58StartSceneArgTemplateFv = .text:0x803173B8; // type:function size:0x8 scope:weak align:4 +__sinit_ogObjSMenuBase_cpp = .text:0x803173C0; // type:function size:0x54 scope:local align:4 +@24@__dt__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80317414; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen13ObjCourseNameFPCc = .text:0x8031741C; // type:function size:0xA8 scope:global align:4 +__dt__Q32og9newScreen13ObjCourseNameFv = .text:0x803174C4; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen13ObjCourseNameFP10JKRArchive = .text:0x80317570; // type:function size:0x334 scope:global align:4 +doUpdate__Q32og9newScreen13ObjCourseNameFv = .text:0x803178A4; // type:function size:0xF0 scope:global align:4 +doDraw__Q32og9newScreen13ObjCourseNameFR8Graphics = .text:0x80317994; // type:function size:0x170 scope:global align:4 +doStart__Q32og9newScreen13ObjCourseNameFPCQ26Screen13StartSceneArg = .text:0x80317B04; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen13ObjCourseNameFPCQ26Screen11EndSceneArg = .text:0x80317B18; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B28; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B2C; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B38; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B3C; // type:function size:0x120 scope:global align:4 +doUpdateFadeout__Q32og9newScreen13ObjCourseNameFv = .text:0x80317C5C; // type:function size:0x134 scope:global align:4 +drawBG__Q32og9newScreen13ObjCourseNameFR8Graphics = .text:0x80317D90; // type:function size:0x168 scope:global align:4 +__sinit_ogObjCourseName_cpp = .text:0x80317EF8; // type:function size:0x28 scope:local align:4 +@24@__dt__Q32og9newScreen13ObjCourseNameFv = .text:0x80317F20; // type:function size:0x8 scope:weak align:4 +checkMovieActive__Q22og9newScreenFv = .text:0x80317F28; // type:function size:0x24 scope:global align:4 +makeLanguageResName__Q22og9newScreenFPcPCc = .text:0x80317F4C; // type:function size:0xDC scope:global align:4 +__sinit_ogUtil_cpp = .text:0x80318028; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen10CourseNameFv = .text:0x80318050; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen10CourseNameFPQ28Resource10MgrCommand = .text:0x8031808C; // type:function size:0x128 scope:global align:4 +doCreateObj__Q32og9newScreen10CourseNameFP10JKRArchive = .text:0x803181B4; // type:function size:0x4 scope:global align:4 +doCreateObjUserCallBackFunc__Q32og9newScreen10CourseNameFP10JKRArchive = .text:0x803181B8; // type:function size:0x60 scope:global align:4 +getResName__Q32og9newScreen10CourseNameCFv = .text:0x80318218; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen10CourseNameFv = .text:0x80318220; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen10CourseNameFv = .text:0x80318228; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen10CourseNameFv = .text:0x80318234; // type:function size:0x10 scope:weak align:4 +__ct__Q32og9newScreen9ObjKanteiFPCc = .text:0x80318244; // type:function size:0x120 scope:global align:4 +__dt__Q32og9newScreen9ObjKanteiFv = .text:0x80318364; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen9ObjKanteiFP10JKRArchive = .text:0x80318410; // type:function size:0x7CC scope:global align:4 +scaleAnimItemName__Q32og9newScreen9ObjKanteiFv = .text:0x80318BDC; // type:function size:0x258 scope:global align:4 +commonUpdate__Q32og9newScreen9ObjKanteiFv = .text:0x80318E34; // type:function size:0x154 scope:global align:4 +doUpdate__Q32og9newScreen9ObjKanteiFv = .text:0x80318F88; // type:function size:0x40C scope:global align:4 +finishKantei__Q32og9newScreen9ObjKanteiFv = .text:0x80319394; // type:function size:0x40 scope:global align:4 +doDraw__Q32og9newScreen9ObjKanteiFR8Graphics = .text:0x803193D4; // type:function size:0x290 scope:global align:4 +doDrawMsg__Q32og9newScreen9ObjKanteiFR8Graphics = .text:0x80319664; // type:function size:0x3C scope:global align:4 +doStart__Q32og9newScreen9ObjKanteiFPCQ26Screen13StartSceneArg = .text:0x803196A0; // type:function size:0x10C scope:global align:4 +doEnd__Q32og9newScreen9ObjKanteiFPCQ26Screen11EndSceneArg = .text:0x803197AC; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen9ObjKanteiFv = .text:0x803197BC; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen9ObjKanteiFv = .text:0x803197C0; // type:function size:0x40 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen9ObjKanteiFv = .text:0x80319800; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen9ObjKanteiFv = .text:0x80319804; // type:function size:0x1A4 scope:global align:4 +doUpdateFadeout__Q32og9newScreen9ObjKanteiFv = .text:0x803199A8; // type:function size:0x1AC scope:global align:4 +__sinit_ogObjKantei_cpp = .text:0x80319B54; // type:function size:0x80 scope:local align:4 +@24@__dt__Q32og9newScreen9ObjKanteiFv = .text:0x80319BD4; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen10KanteiDemoFv = .text:0x80319BDC; // type:function size:0x44 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen10KanteiDemoFPQ28Resource10MgrCommand = .text:0x80319C20; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen10KanteiDemoFP10JKRArchive = .text:0x80319C24; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen10KanteiDemoCFv = .text:0x80319C8C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen10KanteiDemoFv = .text:0x80319C98; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen10KanteiDemoFv = .text:0x80319CA0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen10KanteiDemoFv = .text:0x80319CAC; // type:function size:0x10 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen10KanteiDemoFv = .text:0x80319CBC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen14ObjSpecialItemFPCc = .text:0x80319CC4; // type:function size:0x88 scope:global align:4 +__dt__Q32og9newScreen14ObjSpecialItemFv = .text:0x80319D4C; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen14ObjSpecialItemFP10JKRArchive = .text:0x80319DF8; // type:function size:0x194 scope:global align:4 +doUpdate__Q32og9newScreen14ObjSpecialItemFv = .text:0x80319F8C; // type:function size:0x40 scope:global align:4 +doDraw__Q32og9newScreen14ObjSpecialItemFR8Graphics = .text:0x80319FCC; // type:function size:0x104 scope:global align:4 +doStart__Q32og9newScreen14ObjSpecialItemFPCQ26Screen13StartSceneArg = .text:0x8031A0D0; // type:function size:0x10C scope:global align:4 +doEnd__Q32og9newScreen14ObjSpecialItemFPCQ26Screen11EndSceneArg = .text:0x8031A1DC; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A1EC; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A1F0; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A1FC; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A200; // type:function size:0x48 scope:global align:4 +doUpdateFadeout__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A248; // type:function size:0x50 scope:global align:4 +@24@__dt__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A298; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen11SpecialItemFv = .text:0x8031A2A0; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen11SpecialItemFPQ28Resource10MgrCommand = .text:0x8031A2DC; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen11SpecialItemFP10JKRArchive = .text:0x8031A2E0; // type:function size:0x60 scope:global align:4 +doConfirmSetScene__Q32og9newScreen11SpecialItemFRQ26Screen11SetSceneArg = .text:0x8031A340; // type:function size:0x4C scope:global align:4 +getResName__Q32og9newScreen11SpecialItemCFv = .text:0x8031A38C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen11SpecialItemFv = .text:0x8031A398; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen11SpecialItemFv = .text:0x8031A3A0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen11SpecialItemFv = .text:0x8031A3AC; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen11SpecialItemFv = .text:0x8031A3C0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen8ObjFloorFPCc = .text:0x8031A3C8; // type:function size:0xE8 scope:global align:4 +__dt__Q32og9newScreen8ObjFloorFv = .text:0x8031A4B0; // type:function size:0xAC scope:global align:4 +setCaveMsgID__Q32og9newScreen8ObjFloorFUlPc = .text:0x8031A55C; // type:function size:0x460 scope:global align:4 +doCreate__Q32og9newScreen8ObjFloorFP10JKRArchive = .text:0x8031A9BC; // type:function size:0x8C0 scope:global align:4 +init__Q32og9newScreen8TitleMsgFv = .text:0x8031B27C; // type:function size:0x4 scope:weak align:4 +commonUpdate__Q32og9newScreen8ObjFloorFv = .text:0x8031B280; // type:function size:0x598 scope:global align:4 +end__Q32og9newScreen8TitleMsgFv = .text:0x8031B818; // type:function size:0x4 scope:weak align:4 +update__Q32og9newScreen8TitleMsgFv = .text:0x8031B81C; // type:function size:0x4 scope:weak align:4 +doUpdate__Q32og9newScreen8ObjFloorFv = .text:0x8031B820; // type:function size:0x20 scope:global align:4 +doDraw__Q32og9newScreen8ObjFloorFR8Graphics = .text:0x8031B840; // type:function size:0x19C scope:global align:4 +doStart__Q32og9newScreen8ObjFloorFPCQ26Screen13StartSceneArg = .text:0x8031B9DC; // type:function size:0x34 scope:global align:4 +doEnd__Q32og9newScreen8ObjFloorFPCQ26Screen11EndSceneArg = .text:0x8031BA10; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen8ObjFloorFv = .text:0x8031BA20; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen8ObjFloorFv = .text:0x8031BA24; // type:function size:0x30 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen8ObjFloorFv = .text:0x8031BA54; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen8ObjFloorFv = .text:0x8031BA58; // type:function size:0x74 scope:global align:4 +doUpdateFadeout__Q32og9newScreen8ObjFloorFv = .text:0x8031BACC; // type:function size:0x88 scope:global align:4 +drawBG__Q32og9newScreen8ObjFloorFR8Graphics = .text:0x8031BB54; // type:function size:0x168 scope:global align:4 +__sinit_ogObjFloor_cpp = .text:0x8031BCBC; // type:function size:0x19C scope:local align:4 +@24@__dt__Q32og9newScreen8ObjFloorFv = .text:0x8031BE58; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen5FloorFv = .text:0x8031BE60; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen5FloorFPQ28Resource10MgrCommand = .text:0x8031BE9C; // type:function size:0x13C scope:global align:4 +doCreateObj__Q32og9newScreen5FloorFP10JKRArchive = .text:0x8031BFD8; // type:function size:0x4 scope:global align:4 +getResName__Q32og9newScreen5FloorCFv = .text:0x8031BFDC; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen5FloorFv = .text:0x8031BFE4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen5FloorFv = .text:0x8031BFEC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen5FloorFv = .text:0x8031BFF8; // type:function size:0x10 scope:weak align:4 +__ct__Q32og9newScreen7ObjCaveFPCc = .text:0x8031C008; // type:function size:0x9C scope:global align:4 +__dt__Q32og9newScreen7ObjCaveFv = .text:0x8031C0A4; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen7ObjCaveFP10JKRArchive = .text:0x8031C150; // type:function size:0x518 scope:global align:4 +commonUpdate__Q32og9newScreen7ObjCaveFv = .text:0x8031C668; // type:function size:0x3A4 scope:global align:4 +doUpdate__Q32og9newScreen7ObjCaveFv = .text:0x8031CA0C; // type:function size:0x24 scope:global align:4 +doDraw__Q32og9newScreen7ObjCaveFR8Graphics = .text:0x8031CA30; // type:function size:0x64 scope:global align:4 +doStart__Q32og9newScreen7ObjCaveFPCQ26Screen13StartSceneArg = .text:0x8031CA94; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen7ObjCaveFPCQ26Screen11EndSceneArg = .text:0x8031CAA8; // type:function size:0x10 scope:global align:4 +doUpdateFadein__Q32og9newScreen7ObjCaveFv = .text:0x8031CAB8; // type:function size:0x74 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen7ObjCaveFv = .text:0x8031CB2C; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen7ObjCaveFv = .text:0x8031CB30; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q32og9newScreen7ObjCaveFv = .text:0x8031CB3C; // type:function size:0x7C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen7ObjCaveFv = .text:0x8031CBB8; // type:function size:0x4 scope:global align:4 +__sinit_ogObjCave_cpp = .text:0x8031CBBC; // type:function size:0xCC scope:local align:4 +@24@__dt__Q32og9newScreen7ObjCaveFv = .text:0x8031CC88; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen4CaveFv = .text:0x8031CC90; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen4CaveFPQ28Resource10MgrCommand = .text:0x8031CCCC; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen4CaveFP10JKRArchive = .text:0x8031CCD0; // type:function size:0x78 scope:global align:4 +getResName__Q32og9newScreen4CaveCFv = .text:0x8031CD48; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen4CaveFv = .text:0x8031CD54; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen4CaveFv = .text:0x8031CD5C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen4CaveFv = .text:0x8031CD68; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen4CaveCFv = .text:0x8031CD78; // type:function size:0x8 scope:weak align:4 +caveIDtoMsgID__Q22og9newScreenFUl = .text:0x8031CD80; // type:function size:0x9C scope:global align:4 +__ct__Q32og9newScreen10ObjAnaDemoFPCc = .text:0x8031CE1C; // type:function size:0xBC scope:global align:4 +__dt__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031CED8; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen10ObjAnaDemoFP10JKRArchive = .text:0x8031CF84; // type:function size:0x1120 scope:global align:4 +setBlinkMenu__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E0A4; // type:function size:0x94 scope:global align:4 +doUpdate__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E138; // type:function size:0x5D4 scope:global align:4 +commonUpdate__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E70C; // type:function size:0x80 scope:global align:4 +doDraw__Q32og9newScreen10ObjAnaDemoFR8Graphics = .text:0x8031E78C; // type:function size:0x74 scope:global align:4 +doStart__Q32og9newScreen10ObjAnaDemoFPCQ26Screen13StartSceneArg = .text:0x8031E800; // type:function size:0x18 scope:global align:4 +doEnd__Q32og9newScreen10ObjAnaDemoFPCQ26Screen11EndSceneArg = .text:0x8031E818; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E820; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E824; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E830; // type:function size:0x94 scope:global align:4 +doUpdateFadein__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E8C4; // type:function size:0xE4 scope:global align:4 +doUpdateFadeout__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E9A8; // type:function size:0x84 scope:global align:4 +__sinit_ogObjAnaDemo_cpp = .text:0x8031EA2C; // type:function size:0x24 scope:local align:4 +@24@__dt__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031EA50; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7AnaDemoFl = .text:0x8031EA58; // type:function size:0x80 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen7AnaDemoFPQ28Resource10MgrCommand = .text:0x8031EAD8; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen7AnaDemoFP10JKRArchive = .text:0x8031EADC; // type:function size:0x78 scope:global align:4 +getResName__Q32og9newScreen7AnaDemoCFv = .text:0x8031EB54; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen7AnaDemoFv = .text:0x8031EB60; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen7AnaDemoFv = .text:0x8031EB68; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen7AnaDemoFv = .text:0x8031EB74; // type:function size:0x6C scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen7AnaDemoFv = .text:0x8031EBE0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen14ObjChallenge2PFPCc = .text:0x8031EBE8; // type:function size:0x64 scope:global align:4 +__dt__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031EC4C; // type:function size:0x68 scope:global align:4 +doCreate__Q32og9newScreen14ObjChallenge2PFP10JKRArchive = .text:0x8031ECB4; // type:function size:0x6C4 scope:global align:4 +init__Q42og9newScreen14ObjChallenge2P9ScreenSetFPQ32og6Screen8DataNaviP10JKRArchivePQ32og6Screen21DispMemberChallenge2P = .text:0x8031F378; // type:function size:0x2BC scope:global align:4 +commonUpdate__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031F634; // type:function size:0x260 scope:global align:4 +doUpdate__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031F894; // type:function size:0x24 scope:global align:4 +doDraw__Q32og9newScreen14ObjChallenge2PFR8Graphics = .text:0x8031F8B8; // type:function size:0x1F8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FAB0; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FAB4; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FAC0; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FAC4; // type:function size:0x74 scope:global align:4 +doUpdateFadeout__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FB38; // type:function size:0x7C scope:global align:4 +doStart__Q32og9newScreen14ObjChallenge2PFPCQ26Screen13StartSceneArg = .text:0x8031FBB4; // type:function size:0x74 scope:global align:4 +__sinit_ogObjChallenge2P_cpp = .text:0x8031FC28; // type:function size:0xD4 scope:local align:4 +@24@__dt__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FCFC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen11Challenge2PFv = .text:0x8031FD04; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen11Challenge2PFPQ28Resource10MgrCommand = .text:0x8031FD40; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen11Challenge2PFP10JKRArchive = .text:0x8031FD44; // type:function size:0xC0 scope:global align:4 +doStart__Q32og9newScreen11Challenge2PFPQ26Screen13StartSceneArg = .text:0x8031FE04; // type:function size:0x4C scope:global align:4 +doUpdateActive__Q32og9newScreen11Challenge2PFv = .text:0x8031FE50; // type:function size:0x38 scope:global align:4 +startCountDown__Q32og9newScreen11Challenge2PFv = .text:0x8031FE88; // type:function size:0x84 scope:global align:4 +getResName__Q32og9newScreen11Challenge2PCFv = .text:0x8031FF0C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen11Challenge2PFv = .text:0x8031FF18; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen11Challenge2PFv = .text:0x8031FF20; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen11Challenge2PFv = .text:0x8031FF2C; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen11Challenge2PCFv = .text:0x8031FF3C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen10ObjContenaFPCc = .text:0x8031FF44; // type:function size:0x1C0 scope:global align:4 +__dt__Q32og9newScreen10ObjContenaFv = .text:0x80320104; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen10ObjContenaFP10JKRArchive = .text:0x803201B0; // type:function size:0x934 scope:global align:4 +putinPiki__Q32og9newScreen10ObjContenaFb = .text:0x80320AE4; // type:function size:0x284 scope:global align:4 +takeoutPiki__Q32og9newScreen10ObjContenaFb = .text:0x80320D68; // type:function size:0x320 scope:global align:4 +moveContena__Q32og9newScreen10ObjContenaFv = .text:0x80321088; // type:function size:0x33C scope:global align:4 +commonUpdate__Q32og9newScreen10ObjContenaFv = .text:0x803213C4; // type:function size:0x5FC scope:global align:4 +doUpdate__Q32og9newScreen10ObjContenaFv = .text:0x803219C0; // type:function size:0x40 scope:global align:4 +doDraw__Q32og9newScreen10ObjContenaFR8Graphics = .text:0x80321A00; // type:function size:0x174 scope:global align:4 +doStart__Q32og9newScreen10ObjContenaFPCQ26Screen13StartSceneArg = .text:0x80321B74; // type:function size:0x44 scope:global align:4 +doEnd__Q32og9newScreen10ObjContenaFPCQ26Screen11EndSceneArg = .text:0x80321BB8; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen10ObjContenaFv = .text:0x80321BC0; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen10ObjContenaFv = .text:0x80321BC4; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen10ObjContenaFv = .text:0x80321BD0; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen10ObjContenaFv = .text:0x80321BD4; // type:function size:0xA8 scope:global align:4 +doUpdateFadeout__Q32og9newScreen10ObjContenaFv = .text:0x80321C7C; // type:function size:0x1DC scope:global align:4 +__sinit_ogObjContena_cpp = .text:0x80321E58; // type:function size:0xA8 scope:local align:4 +@24@__dt__Q32og9newScreen10ObjContenaFv = .text:0x80321F00; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7ContenaFv = .text:0x80321F08; // type:function size:0x44 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen7ContenaFPQ28Resource10MgrCommand = .text:0x80321F4C; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen7ContenaFP10JKRArchive = .text:0x80321F50; // type:function size:0x100 scope:global align:4 +getResName__Q32og9newScreen7ContenaCFv = .text:0x80322050; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen7ContenaFv = .text:0x8032205C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen7ContenaFv = .text:0x80322064; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen7ContenaFv = .text:0x80322070; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen7ContenaFv = .text:0x80322084; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen20ObjSMenuPauseDoukutuFPCc = .text:0x8032208C; // type:function size:0xB0 scope:global align:4 +__dt__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x8032213C; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen20ObjSMenuPauseDoukutuFP10JKRArchive = .text:0x80322200; // type:function size:0x574 scope:global align:4 +commonUpdate__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322774; // type:function size:0x94 scope:global align:4 +doUpdate__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322808; // type:function size:0xB0 scope:global align:4 +doDraw__Q32og9newScreen20ObjSMenuPauseDoukutuFR8Graphics = .text:0x803228B8; // type:function size:0x8C scope:global align:4 +doStart__Q32og9newScreen20ObjSMenuPauseDoukutuFPCQ26Screen13StartSceneArg = .text:0x80322944; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen20ObjSMenuPauseDoukutuFPCQ26Screen11EndSceneArg = .text:0x803229E8; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803229F0; // type:function size:0x3C scope:global align:4 +doUpdateFadeout__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322A2C; // type:function size:0x4C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322A78; // type:function size:0x158 scope:global align:4 +menu_pause__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322BD0; // type:function size:0x1D8 scope:global align:4 +doUpdateCancelAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322DA8; // type:function size:0x10 scope:global align:4 +doUpdateLAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322DB8; // type:function size:0x6C scope:global align:4 +doUpdateRAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322E24; // type:function size:0xC8 scope:global align:4 +menu_giveup__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322EEC; // type:function size:0x1E8 scope:global align:4 +finishPause__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803230D4; // type:function size:0x38 scope:global align:4 +menu__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x8032310C; // type:function size:0xA8 scope:global align:4 +in_L__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231B4; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231C8; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231DC; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231E8; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80323214; // type:function size:0x2C scope:global align:4 +set_Blink_Normal__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80323240; // type:function size:0xC4 scope:global align:4 +set_Blink_YesNo__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80323304; // type:function size:0x78 scope:global align:4 +set_Menu_Normal__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x8032337C; // type:function size:0x10C scope:global align:4 +set_Menu_YesNo__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80323488; // type:function size:0xD4 scope:global align:4 +__sinit_ogObjSMenuPauseDoukutu_cpp = .text:0x8032355C; // type:function size:0x20 scope:local align:4 +@24@__dt__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x8032357C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323584; // type:function size:0x50 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen17SMenuPauseDoukutuFPQ28Resource10MgrCommand = .text:0x803235D4; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen17SMenuPauseDoukutuFP10JKRArchive = .text:0x803235D8; // type:function size:0x60 scope:global align:4 +doGetFinishState__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323638; // type:function size:0x90 scope:global align:4 +doUpdateActive__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x803236C8; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen17SMenuPauseDoukutuFRQ26Screen11SetSceneArg = .text:0x803236CC; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen17SMenuPauseDoukutuCFv = .text:0x80323734; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323740; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323748; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323754; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323768; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneSMenuPauseDoukutu_cpp = .text:0x80323770; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen10ObjUfoMenuFPCc = .text:0x80323798; // type:function size:0xB0 scope:global align:4 +__dt__Q32og9newScreen10ObjUfoMenuFv = .text:0x80323848; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen10ObjUfoMenuFP10JKRArchive = .text:0x803238F4; // type:function size:0x490 scope:global align:4 +setSelectPikmin__Q32og9newScreen10ObjUfoMenuFi = .text:0x80323D84; // type:function size:0xF4 scope:global align:4 +doUpdate__Q32og9newScreen10ObjUfoMenuFv = .text:0x80323E78; // type:function size:0x524 scope:global align:4 +setBackupScene__Q32og9newScreen10ObjUfoMenuFv = .text:0x8032439C; // type:function size:0x94 scope:global align:4 +doDraw__Q32og9newScreen10ObjUfoMenuFR8Graphics = .text:0x80324430; // type:function size:0xB4 scope:global align:4 +doStart__Q32og9newScreen10ObjUfoMenuFPCQ26Screen13StartSceneArg = .text:0x803244E4; // type:function size:0x20 scope:global align:4 +doEnd__Q32og9newScreen10ObjUfoMenuFPCQ26Screen11EndSceneArg = .text:0x80324504; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen10ObjUfoMenuFv = .text:0x8032450C; // type:function size:0x44 scope:global align:4 +doUpdateFinish__Q32og9newScreen10ObjUfoMenuFv = .text:0x80324550; // type:function size:0x2C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen10ObjUfoMenuFv = .text:0x8032457C; // type:function size:0x24 scope:global align:4 +doUpdateFadein__Q32og9newScreen10ObjUfoMenuFv = .text:0x803245A0; // type:function size:0x188 scope:global align:4 +doUpdateFadeout__Q32og9newScreen10ObjUfoMenuFv = .text:0x80324728; // type:function size:0x17C scope:global align:4 +__sinit_ogObjUfo_cpp = .text:0x803248A4; // type:function size:0x48 scope:local align:4 +@24@__dt__Q32og9newScreen10ObjUfoMenuFv = .text:0x803248EC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7UfoMenuFv = .text:0x803248F4; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen7UfoMenuFPQ28Resource10MgrCommand = .text:0x80324930; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen7UfoMenuFP10JKRArchive = .text:0x80324934; // type:function size:0x78 scope:global align:4 +doConfirmSetScene__Q32og9newScreen7UfoMenuFRQ26Screen11SetSceneArg = .text:0x803249AC; // type:function size:0x60 scope:global align:4 +doSetBackupScene__Q32og9newScreen7UfoMenuFRQ26Screen11SetSceneArg = .text:0x80324A0C; // type:function size:0xC scope:global align:4 +getResName__Q32og9newScreen7UfoMenuCFv = .text:0x80324A18; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen7UfoMenuFv = .text:0x80324A24; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen7UfoMenuFv = .text:0x80324A2C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen7UfoMenuFv = .text:0x80324A38; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen7UfoMenuFv = .text:0x80324A4C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7ObjSaveFPCc = .text:0x80324A54; // type:function size:0x60 scope:global align:4 +__dt__Q32og9newScreen7ObjSaveFv = .text:0x80324AB4; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen7ObjSaveFP10JKRArchive = .text:0x80324B60; // type:function size:0x8C scope:global align:4 +doUpdate__Q32og9newScreen7ObjSaveFv = .text:0x80324BEC; // type:function size:0x134 scope:global align:4 +doDraw__Q32og9newScreen7ObjSaveFR8Graphics = .text:0x80324D20; // type:function size:0x30 scope:global align:4 +doStart__Q32og9newScreen7ObjSaveFPCQ26Screen13StartSceneArg = .text:0x80324D50; // type:function size:0x8 scope:global align:4 +doEnd__Q32og9newScreen7ObjSaveFPCQ26Screen11EndSceneArg = .text:0x80324D58; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen7ObjSaveFv = .text:0x80324D60; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen7ObjSaveFv = .text:0x80324D64; // type:function size:0x4 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen7ObjSaveFv = .text:0x80324D68; // type:function size:0x34 scope:global align:4 +doUpdateFadein__Q32og9newScreen7ObjSaveFv = .text:0x80324D9C; // type:function size:0x8 scope:global align:4 +doUpdateFadeout__Q32og9newScreen7ObjSaveFv = .text:0x80324DA4; // type:function size:0x8 scope:global align:4 +@24@__dt__Q32og9newScreen7ObjSaveFv = .text:0x80324DAC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen4SaveFv = .text:0x80324DB4; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen4SaveFPQ28Resource10MgrCommand = .text:0x80324DF0; // type:function size:0x78 scope:global align:4 +doCreateObj__Q32og9newScreen4SaveFP10JKRArchive = .text:0x80324E68; // type:function size:0x30 scope:global align:4 +doCreateObjUserCallBackFunc__Q32og9newScreen4SaveFP10JKRArchive = .text:0x80324E98; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen4SaveCFv = .text:0x80324F00; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen4SaveFv = .text:0x80324F08; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen4SaveFv = .text:0x80324F10; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen4SaveFv = .text:0x80324F1C; // type:function size:0x10 scope:weak align:4 +__ct__Q32og9newScreen11ObjFinalMsgFPCc = .text:0x80324F2C; // type:function size:0x80 scope:global align:4 +__dt__Q32og9newScreen11ObjFinalMsgFv = .text:0x80324FAC; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen11ObjFinalMsgFP10JKRArchive = .text:0x80325058; // type:function size:0x2CC scope:global align:4 +blink_Menu__Q32og9newScreen11ObjFinalMsgFi = .text:0x80325324; // type:function size:0x70 scope:global align:4 +doUpdate__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325394; // type:function size:0x68 scope:global align:4 +menu__Q32og9newScreen11ObjFinalMsgFv = .text:0x803253FC; // type:function size:0x1C0 scope:global align:4 +doDraw__Q32og9newScreen11ObjFinalMsgFR8Graphics = .text:0x803255BC; // type:function size:0x60 scope:global align:4 +doStart__Q32og9newScreen11ObjFinalMsgFPCQ26Screen13StartSceneArg = .text:0x8032561C; // type:function size:0x60 scope:global align:4 +doEnd__Q32og9newScreen11ObjFinalMsgFPCQ26Screen11EndSceneArg = .text:0x8032567C; // type:function size:0x8 scope:global align:4 +doUpdateFadein__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325684; // type:function size:0xB8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen11ObjFinalMsgFv = .text:0x8032573C; // type:function size:0x3C scope:global align:4 +doUpdateFinish__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325778; // type:function size:0x38 scope:global align:4 +doUpdateFadeout__Q32og9newScreen11ObjFinalMsgFv = .text:0x803257B0; // type:function size:0xB0 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325860; // type:function size:0x34 scope:global align:4 +wait__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325894; // type:function size:0x4C scope:global align:4 +@24@__dt__Q32og9newScreen11ObjFinalMsgFv = .text:0x803258E0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen8FinalMsgFv = .text:0x803258E8; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen8FinalMsgFPQ28Resource10MgrCommand = .text:0x80325924; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen8FinalMsgFP10JKRArchive = .text:0x80325928; // type:function size:0x78 scope:global align:4 +doGetFinishState__Q32og9newScreen8FinalMsgFv = .text:0x803259A0; // type:function size:0x64 scope:global align:4 +getResName__Q32og9newScreen8FinalMsgCFv = .text:0x80325A04; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen8FinalMsgFv = .text:0x80325A10; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen8FinalMsgFv = .text:0x80325A18; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen8FinalMsgFv = .text:0x80325A24; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen8FinalMsgFv = .text:0x80325A38; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen5ObjVsFPCc = .text:0x80325A40; // type:function size:0x15C scope:global align:4 +__dt__Q32og9newScreen5ObjVsFv = .text:0x80325B9C; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen5ObjVsFP10JKRArchive = .text:0x80325C48; // type:function size:0x800 scope:global align:4 +setOnOffBdama__Q32og9newScreen5ObjVsFb = .text:0x80326448; // type:function size:0xA28 scope:global align:4 +init__Q42og9newScreen5ObjVs9ScreenSetFPQ32og6Screen8DataNaviP10JKRArchivePUl = .text:0x80326E70; // type:function size:0x2B8 scope:global align:4 +checkObake__Q32og9newScreen5ObjVsFv = .text:0x80327128; // type:function size:0x56C scope:global align:4 +doUpdateCommon__Q32og9newScreen5ObjVsFv = .text:0x80327694; // type:function size:0x2AC scope:global align:4 +doUpdate__Q32og9newScreen5ObjVsFv = .text:0x80327940; // type:function size:0x44 scope:global align:4 +doDraw__Q32og9newScreen5ObjVsFR8Graphics = .text:0x80327984; // type:function size:0x130 scope:global align:4 +doStart__Q32og9newScreen5ObjVsFPCQ26Screen13StartSceneArg = .text:0x80327AB4; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen5ObjVsFPCQ26Screen11EndSceneArg = .text:0x80327AC8; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen5ObjVsFv = .text:0x80327AD8; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen5ObjVsFv = .text:0x80327ADC; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen5ObjVsFv = .text:0x80327AE8; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen5ObjVsFv = .text:0x80327AEC; // type:function size:0x74 scope:global align:4 +doUpdateFadeout__Q32og9newScreen5ObjVsFv = .text:0x80327B60; // type:function size:0x7C scope:global align:4 +getName__Q25efx2d8ArgScaleFv = .text:0x80327BDC; // type:function size:0xC scope:weak align:4 +__sinit_ogObjVs_cpp = .text:0x80327BE8; // type:function size:0x6C scope:local align:4 +@24@__dt__Q32og9newScreen5ObjVsFv = .text:0x80327C54; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen2VsFv = .text:0x80327C5C; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen2VsFPQ28Resource10MgrCommand = .text:0x80327C98; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen2VsFP10JKRArchive = .text:0x80327C9C; // type:function size:0x78 scope:global align:4 +getResName__Q32og9newScreen2VsCFv = .text:0x80327D14; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen2VsFv = .text:0x80327D20; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen2VsFv = .text:0x80327D28; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen2VsFv = .text:0x80327D34; // type:function size:0xC scope:weak align:4 +isDrawInDemo__Q32og9newScreen2VsCFv = .text:0x80327D40; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen14ObjChallenge1PFPCc = .text:0x80327D48; // type:function size:0x74 scope:global align:4 +__dt__Q32og9newScreen14ObjChallenge1PFv = .text:0x80327DBC; // type:function size:0x68 scope:global align:4 +doCreate__Q32og9newScreen14ObjChallenge1PFP10JKRArchive = .text:0x80327E24; // type:function size:0x678 scope:global align:4 +doUpdate__Q32og9newScreen14ObjChallenge1PFv = .text:0x8032849C; // type:function size:0x1D4 scope:global align:4 +doDraw__Q32og9newScreen14ObjChallenge1PFR8Graphics = .text:0x80328670; // type:function size:0x30 scope:global align:4 +doUpdateFadein__Q32og9newScreen14ObjChallenge1PFv = .text:0x803286A0; // type:function size:0x228 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen14ObjChallenge1PFv = .text:0x803288C8; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen14ObjChallenge1PFv = .text:0x803288CC; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q32og9newScreen14ObjChallenge1PFv = .text:0x803288D8; // type:function size:0x230 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen14ObjChallenge1PFv = .text:0x80328B08; // type:function size:0x4 scope:global align:4 +doStart__Q32og9newScreen14ObjChallenge1PFPCQ26Screen13StartSceneArg = .text:0x80328B0C; // type:function size:0x74 scope:global align:4 +__sinit_ogObjChallenge1P_cpp = .text:0x80328B80; // type:function size:0xA8 scope:local align:4 +@24@__dt__Q32og9newScreen14ObjChallenge1PFv = .text:0x80328C28; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen11Challenge1PFv = .text:0x80328C30; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen11Challenge1PFPQ28Resource10MgrCommand = .text:0x80328C6C; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen11Challenge1PFP10JKRArchive = .text:0x80328C70; // type:function size:0x9C scope:global align:4 +doStart__Q32og9newScreen11Challenge1PFPQ26Screen13StartSceneArg = .text:0x80328D0C; // type:function size:0x4C scope:global align:4 +doUpdateActive__Q32og9newScreen11Challenge1PFv = .text:0x80328D58; // type:function size:0x38 scope:global align:4 +startCountDown__Q32og9newScreen11Challenge1PFv = .text:0x80328D90; // type:function size:0x3C scope:global align:4 +getResName__Q32og9newScreen11Challenge1PCFv = .text:0x80328DCC; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen11Challenge1PFv = .text:0x80328DD8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen11Challenge1PFv = .text:0x80328DE0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen11Challenge1PFv = .text:0x80328DEC; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen11Challenge1PCFv = .text:0x80328DFC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og6Screen8ScaleMgrFv = .text:0x80328E04; // type:function size:0x44 scope:global align:4 +up__Q32og6Screen8ScaleMgrFv = .text:0x80328E48; // type:function size:0x48 scope:global align:4 +down__Q32og6Screen8ScaleMgrFv = .text:0x80328E90; // type:function size:0x48 scope:global align:4 +up__Q32og6Screen8ScaleMgrFffff = .text:0x80328ED8; // type:function size:0x64 scope:global align:4 +down__Q32og6Screen8ScaleMgrFfff = .text:0x80328F3C; // type:function size:0x28 scope:global align:4 +setParam__Q32og6Screen8ScaleMgrFfff = .text:0x80328F64; // type:function size:0x20 scope:global align:4 +calc__Q32og6Screen8ScaleMgrFv = .text:0x80328F84; // type:function size:0x20C scope:global align:4 +__ct__Q32og9newScreen15ObjSMenuPauseVSFPCc = .text:0x80329190; // type:function size:0x80 scope:global align:4 +__dt__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329210; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen15ObjSMenuPauseVSFP10JKRArchive = .text:0x803292D4; // type:function size:0x334 scope:global align:4 +blink_Menu__Q32og9newScreen15ObjSMenuPauseVSFi = .text:0x80329608; // type:function size:0x74 scope:global align:4 +commonUpdate__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x8032967C; // type:function size:0x68 scope:global align:4 +doUpdate__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x803296E4; // type:function size:0x60 scope:global align:4 +menu__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329744; // type:function size:0x230 scope:global align:4 +out_cancel__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329974; // type:function size:0x38 scope:global align:4 +out_menu_0__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x803299AC; // type:function size:0x38 scope:global align:4 +out_menu_1__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x803299E4; // type:function size:0x38 scope:global align:4 +doUpdateCancelAction__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329A1C; // type:function size:0x10 scope:global align:4 +doDraw__Q32og9newScreen15ObjSMenuPauseVSFR8Graphics = .text:0x80329A2C; // type:function size:0x60 scope:global align:4 +doStart__Q32og9newScreen15ObjSMenuPauseVSFPCQ26Screen13StartSceneArg = .text:0x80329A8C; // type:function size:0x44 scope:global align:4 +doEnd__Q32og9newScreen15ObjSMenuPauseVSFPCQ26Screen11EndSceneArg = .text:0x80329AD0; // type:function size:0x8 scope:global align:4 +doUpdateFadein__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329AD8; // type:function size:0x4C scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329B24; // type:function size:0x48 scope:global align:4 +doUpdateFinish__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329B6C; // type:function size:0x48 scope:global align:4 +doUpdateFadeout__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329BB4; // type:function size:0x4C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329C00; // type:function size:0xAC scope:global align:4 +getResult__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CAC; // type:function size:0xC scope:weak align:4 +in_L__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CB8; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CCC; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CD8; // type:function size:0xC scope:global align:4 +doUpdateRAction__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CE4; // type:function size:0x4 scope:weak align:4 +doUpdateLAction__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CE8; // type:function size:0x4 scope:weak align:4 +in_R__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CEC; // type:function size:0x4 scope:weak align:4 +out_R__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CF0; // type:function size:0x4 scope:weak align:4 +@24@__dt__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CF4; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329CFC; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen12SMenuPauseVSFPQ28Resource10MgrCommand = .text:0x80329D38; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen12SMenuPauseVSFP10JKRArchive = .text:0x80329D3C; // type:function size:0x78 scope:global align:4 +doGetFinishState__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329DB4; // type:function size:0x88 scope:global align:4 +doUpdateActive__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329E3C; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen12SMenuPauseVSFRQ26Screen11SetSceneArg = .text:0x80329E40; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen12SMenuPauseVSFRQ26Screen11SetSceneArg = .text:0x80329EA8; // type:function size:0xC scope:global align:4 +getResName__Q32og9newScreen12SMenuPauseVSCFv = .text:0x80329EB4; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329EC0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329EC8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329ED4; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329EE8; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneSMenuPauseVs_cpp = .text:0x80329EF0; // type:function size:0x28 scope:local align:4 +stop__Q32og6Screen15CallBack_FurikoFv = .text:0x80329F18; // type:function size:0x40 scope:global align:4 +setParam__Q32og6Screen15CallBack_FurikoFfff = .text:0x80329F58; // type:function size:0x10 scope:global align:4 +update__Q32og6Screen15CallBack_FurikoFv = .text:0x80329F68; // type:function size:0x168 scope:global align:4 +draw__Q32og6Screen15CallBack_FurikoFR8GraphicsR14J2DGrafContext = .text:0x8032A0D0; // type:function size:0x1A0 scope:global align:4 +setCallBack_Furiko__Q22og6ScreenFPQ29P2DScreen3MgrUx = .text:0x8032A270; // type:function size:0x1D0 scope:global align:4 +setFurikoScreen__Q22og6ScreenFPQ29P2DScreen3Mgr = .text:0x8032A440; // type:function size:0x270 scope:global align:4 +getFurikoPtr__Q22og6ScreenFPQ29P2DScreen3MgrUx = .text:0x8032A6B0; // type:function size:0x24 scope:global align:4 +__dt__Q32og6Screen15CallBack_FurikoFv = .text:0x8032A6D4; // type:function size:0x80 scope:weak align:4 +init__Q32og6Screen20CallBack_CounterSlotFP9J2DScreenUxUxUxPUlb = .text:0x8032A754; // type:function size:0x30 scope:global align:4 +setPuyoParam__Q32og6Screen20CallBack_CounterSlotFfff = .text:0x8032A784; // type:function size:0x10 scope:global align:4 +update__Q32og6Screen20CallBack_CounterSlotFv = .text:0x8032A794; // type:function size:0x270 scope:global align:4 +slot_up__Q32og6Screen20CallBack_CounterSlotFi = .text:0x8032AA04; // type:function size:0x94 scope:global align:4 +startSlot__Q32og6Screen20CallBack_CounterSlotFf = .text:0x8032AA98; // type:function size:0xC0 scope:global align:4 +setValue__Q32og6Screen20CallBack_CounterSlotFbb = .text:0x8032AB58; // type:function size:0x554 scope:global align:4 +setCallBack_CounterSlot__Q22og6ScreenFPQ29P2DScreen3MgrUxPUlUsbbP10JKRArchive = .text:0x8032B0AC; // type:function size:0x1D0 scope:global align:4 +__dt__Q32og6Screen20CallBack_CounterSlotFv = .text:0x8032B27C; // type:function size:0x90 scope:weak align:4 +setValue__Q32og6Screen20CallBack_CounterSlotFv = .text:0x8032B30C; // type:function size:0x34 scope:weak align:4 +__ct__Q32og9newScreen22ObjWorldMapInfoWindow0FPCc = .text:0x8032B340; // type:function size:0x84 scope:global align:4 +doCreate__Q32og9newScreen22ObjWorldMapInfoWindow0FP10JKRArchive = .text:0x8032B3C4; // type:function size:0x3C4 scope:global align:4 +doStart__Q32og9newScreen22ObjWorldMapInfoWindow0FPCQ26Screen13StartSceneArg = .text:0x8032B788; // type:function size:0x8C scope:global align:4 +doUpdateFadein__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B814; // type:function size:0x90 scope:global align:4 +commonUpdate__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B8A4; // type:function size:0x20 scope:global align:4 +out_cancel__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B8C4; // type:function size:0x38 scope:global align:4 +out_menu_0__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B8FC; // type:function size:0x38 scope:global align:4 +out_menu_1__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B934; // type:function size:0x38 scope:global align:4 +out_L__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B96C; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B978; // type:function size:0x88 scope:global align:4 +getResult__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032BA00; // type:function size:0xC scope:weak align:4 +__dt__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032BA0C; // type:function size:0x68 scope:weak align:4 +getSize__Q32og6Screen26DispMemberWorldMapInfoWin0Fv = .text:0x8032BA74; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen26DispMemberWorldMapInfoWin0Fv = .text:0x8032BA7C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen26DispMemberWorldMapInfoWin0Fv = .text:0x8032BA88; // type:function size:0x14 scope:weak align:4 +@24@__dt__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032BA9C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BAA4; // type:function size:0x3C scope:global align:4 +doCreateObj__Q32og9newScreen19WorldMapInfoWindow0FP10JKRArchive = .text:0x8032BAE0; // type:function size:0xA4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen19WorldMapInfoWindow0FRQ26Screen11SetSceneArg = .text:0x8032BB84; // type:function size:0x8 scope:global align:4 +doGetFinishState__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BB8C; // type:function size:0x64 scope:global align:4 +getResName__Q32og9newScreen19WorldMapInfoWindow0CFv = .text:0x8032BBF0; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BBFC; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BC04; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BC18; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneWorldMapInfoWindow0_cpp = .text:0x8032BC20; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen22ObjWorldMapInfoWindow1FPCc = .text:0x8032BC48; // type:function size:0x80 scope:global align:4 +doCreate__Q32og9newScreen22ObjWorldMapInfoWindow1FP10JKRArchive = .text:0x8032BCC8; // type:function size:0x300 scope:global align:4 +doStart__Q32og9newScreen22ObjWorldMapInfoWindow1FPCQ26Screen13StartSceneArg = .text:0x8032BFC8; // type:function size:0x5C scope:global align:4 +commonUpdate__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C024; // type:function size:0x20 scope:global align:4 +out_cancel__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C044; // type:function size:0x38 scope:global align:4 +out_menu_0__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C07C; // type:function size:0x38 scope:global align:4 +out_menu_1__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C0B4; // type:function size:0x38 scope:global align:4 +out_L__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C0EC; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C0F8; // type:function size:0x6C scope:global align:4 +getResult__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C164; // type:function size:0xC scope:weak align:4 +__dt__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C170; // type:function size:0x68 scope:weak align:4 +getSize__Q32og6Screen26DispMemberWorldMapInfoWin1Fv = .text:0x8032C1D8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen26DispMemberWorldMapInfoWin1Fv = .text:0x8032C1E0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen26DispMemberWorldMapInfoWin1Fv = .text:0x8032C1EC; // type:function size:0x14 scope:weak align:4 +@24@__dt__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C200; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C208; // type:function size:0x3C scope:global align:4 +doCreateObj__Q32og9newScreen19WorldMapInfoWindow1FP10JKRArchive = .text:0x8032C244; // type:function size:0xA4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen19WorldMapInfoWindow1FRQ26Screen11SetSceneArg = .text:0x8032C2E8; // type:function size:0x8 scope:global align:4 +doGetFinishState__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C2F0; // type:function size:0x64 scope:global align:4 +getResName__Q32og9newScreen19WorldMapInfoWindow1CFv = .text:0x8032C354; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C360; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C368; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C37C; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneWorldMapInfoWindow1_cpp = .text:0x8032C384; // type:function size:0x28 scope:local align:4 +__ct__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C3AC; // type:function size:0xA0 scope:global align:4 +showTotalPoko__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C44C; // type:function size:0x70 scope:global align:4 +setTotalPoko__Q32og6Screen15TotalPokoScreenFUl = .text:0x8032C4BC; // type:function size:0x70 scope:global align:4 +closeTotalPoko__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C52C; // type:function size:0x44 scope:global align:4 +hideTotalPoko__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C570; // type:function size:0x10 scope:global align:4 +setCallBack__Q32og6Screen15TotalPokoScreenFP10JKRArchiveffff = .text:0x8032C580; // type:function size:0x138 scope:global align:4 +update__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C6B8; // type:function size:0x144 scope:global align:4 +__dt__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C7FC; // type:function size:0xA4 scope:weak align:4 +__ct__Q32og9newScreen16ObjChallengeBaseFv = .text:0x8032C8A0; // type:function size:0x98 scope:global align:4 +__dt__Q32og9newScreen16ObjChallengeBaseFv = .text:0x8032C938; // type:function size:0xAC scope:global align:4 +doCreateAfter__Q32og9newScreen16ObjChallengeBaseFP10JKRArchivePQ32og6Screen18CallBack_CounterRV = .text:0x8032C9E4; // type:function size:0xA0 scope:global align:4 +doStart__Q32og9newScreen16ObjChallengeBaseFPCQ26Screen13StartSceneArg = .text:0x8032CA84; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen16ObjChallengeBaseFPCQ26Screen11EndSceneArg = .text:0x8032CA98; // type:function size:0x10 scope:global align:4 +updateTimer__Q32og9newScreen16ObjChallengeBaseFff = .text:0x8032CAA8; // type:function size:0x1D0 scope:global align:4 +setSubLevel__Q32og9newScreen16ObjChallengeBaseFUl = .text:0x8032CC78; // type:function size:0x8 scope:global align:4 +doUpdateFadein__Q26Screen7ObjBaseFv = .text:0x8032CC80; // type:function size:0x8 scope:weak align:4 +doUpdateFadeinFinish__Q26Screen7ObjBaseFv = .text:0x8032CC88; // type:function size:0x4 scope:weak align:4 +doUpdate__Q26Screen7ObjBaseFv = .text:0x8032CC8C; // type:function size:0x8 scope:weak align:4 +doUpdateFinish__Q26Screen7ObjBaseFv = .text:0x8032CC94; // type:function size:0x4 scope:weak align:4 +doUpdateFadeoutFinish__Q26Screen7ObjBaseFv = .text:0x8032CC98; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjChallengeBase_cpp = .text:0x8032CC9C; // type:function size:0x8C scope:local align:4 +@24@__dt__Q32og9newScreen16ObjChallengeBaseFv = .text:0x8032CD28; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen13ChallengeBaseFv = .text:0x8032CD30; // type:function size:0x44 scope:global align:4 +updateCountDown__Q32og9newScreen13ChallengeBaseFfPQ32og6Screen21DispMemberDayEndCount = .text:0x8032CD74; // type:function size:0xA4 scope:global align:4 +update__Q32og6Screen16CallBack_PictureFv = .text:0x8032CE18; // type:function size:0x60 scope:global align:4 +draw__Q32og6Screen16CallBack_PictureFR8GraphicsR14J2DGrafContext = .text:0x8032CE78; // type:function size:0x2BC scope:global align:4 +setCallBack_3DStick__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x8032D134; // type:function size:0x11C scope:global align:4 +setCallBack_3DStickSmall__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x8032D250; // type:function size:0x11C scope:global align:4 +__ct__Q32og6Screen12StickAnimMgrFPQ32og6Screen16CallBack_Picture = .text:0x8032D36C; // type:function size:0x10 scope:global align:4 +stickUp__Q32og6Screen12StickAnimMgrFv = .text:0x8032D37C; // type:function size:0xD4 scope:global align:4 +stickDown__Q32og6Screen12StickAnimMgrFv = .text:0x8032D450; // type:function size:0xE8 scope:global align:4 +stickUpDown__Q32og6Screen12StickAnimMgrFv = .text:0x8032D538; // type:function size:0xBC scope:global align:4 +__dt__Q32og6Screen16CallBack_PictureFv = .text:0x8032D5F4; // type:function size:0x90 scope:weak align:4 +update__Q32og6Screen18CallBack_DrawAfterFv = .text:0x8032D684; // type:function size:0x4 scope:global align:4 +draw__Q32og6Screen18CallBack_DrawAfterFR8GraphicsR14J2DGrafContext = .text:0x8032D688; // type:function size:0xFC scope:global align:4 +setCallBack_DrawAfter__Q22og6ScreenFPQ29P2DScreen3MgrUx = .text:0x8032D784; // type:function size:0xE4 scope:global align:4 +__dt__Q32og6Screen18CallBack_DrawAfterFv = .text:0x8032D868; // type:function size:0x80 scope:weak align:4 +__ct__Q32og6Screen13OtakaraSensorFv = .text:0x8032D8E8; // type:function size:0x140 scope:global align:4 +init__Q32og6Screen13OtakaraSensorFP7J2DPaneP7J2DPanei = .text:0x8032DA28; // type:function size:0xA8 scope:global align:4 +setParam__Q32og6Screen13OtakaraSensorFfibb = .text:0x8032DAD0; // type:function size:0x150 scope:global align:4 +calcLevel__Q32og6Screen13OtakaraSensorFf = .text:0x8032DC20; // type:function size:0x5C scope:global align:4 +show__Q32og6Screen13OtakaraSensorFv = .text:0x8032DC7C; // type:function size:0x10 scope:global align:4 +hide__Q32og6Screen13OtakaraSensorFv = .text:0x8032DC8C; // type:function size:0x10 scope:global align:4 +startSensorEff__Q32og6Screen13OtakaraSensorFv = .text:0x8032DC9C; // type:function size:0x14 scope:global align:4 +adjPos__Q32og6Screen13OtakaraSensorFff = .text:0x8032DCB0; // type:function size:0xD8 scope:global align:4 +adjScale__Q32og6Screen13OtakaraSensorFf = .text:0x8032DD88; // type:function size:0x8 scope:global align:4 +update__Q32og6Screen13OtakaraSensorFv = .text:0x8032DD90; // type:function size:0x88 scope:global align:4 +updateInit__Q32og6Screen13OtakaraSensorFv = .text:0x8032DE18; // type:function size:0x160 scope:global align:4 +calcGrayColor__Q32og6Screen13OtakaraSensorFv = .text:0x8032DF78; // type:function size:0x370 scope:global align:4 +calcAppear__Q32og6Screen13OtakaraSensorFv = .text:0x8032E2E8; // type:function size:0x1FC scope:global align:4 +startGraySensor__Q32og6Screen13OtakaraSensorFv = .text:0x8032E4E4; // type:function size:0x138 scope:global align:4 +calcAngle__Q32og6Screen13OtakaraSensorFv = .text:0x8032E61C; // type:function size:0x22C scope:global align:4 +calcReaction__Q32og6Screen13OtakaraSensorFv = .text:0x8032E848; // type:function size:0x204 scope:global align:4 +draw__Q32og6Screen13OtakaraSensorFR14J2DGrafContext = .text:0x8032EA4C; // type:function size:0x4 scope:global align:4 +kill__Q25efx2d8TSimple3Fv = .text:0x8032EA50; // type:function size:0x4 scope:weak align:4 +fade__Q25efx2d8TSimple3Fv = .text:0x8032EA54; // type:function size:0x4 scope:weak align:4 +__dt__Q25P2JME8AnalyzerFv = .text:0x8032EA58; // type:function size:0x70 scope:weak align:4 +do_character__Q32og9newScreen20TitleMessageAnalyzerFi = .text:0x8032EAC8; // type:function size:0x228 scope:global align:4 +__ct__Q32og9newScreen8TitleMsgFP9J2DScreenP7J2DPanePc = .text:0x8032ECF0; // type:function size:0x28C scope:global align:4 +__dt__Q32og9newScreen20TitleMessageAnalyzerFv = .text:0x8032EF7C; // type:function size:0x80 scope:weak align:4 +setFontPane__Q32og9newScreen8TitleMsgFP12J2DPictureExi = .text:0x8032EFFC; // type:function size:0x154 scope:global align:4 +setCentering__Q32og9newScreen8TitleMsgFQ42og9newScreen8TitleMsg13EnumCentering = .text:0x8032F150; // type:function size:0x164 scope:global align:4 +setColor__Q32og9newScreen8TitleMsgFRQ28JUtility6TColorRQ28JUtility6TColor = .text:0x8032F2B4; // type:function size:0xD0 scope:global align:4 +__ct__Q32og9newScreen12TitleMsgDropFP9J2DScreenP7J2DPanePc = .text:0x8032F384; // type:function size:0xF0 scope:global align:4 +__dt__Q42og9newScreen12TitleMsgDrop6MotionFv = .text:0x8032F474; // type:function size:0x3C scope:weak align:4 +__ct__Q42og9newScreen12TitleMsgDrop6MotionFv = .text:0x8032F4B0; // type:function size:0x1C scope:weak align:4 +init__Q32og9newScreen12TitleMsgDropFv = .text:0x8032F4CC; // type:function size:0x128 scope:global align:4 +update__Q32og9newScreen12TitleMsgDropFv = .text:0x8032F5F4; // type:function size:0x230 scope:global align:4 +end__Q32og9newScreen12TitleMsgDropFv = .text:0x8032F824; // type:function size:0x6C scope:global align:4 +__ct__Q32og9newScreen12TitleMsgWaveFP9J2DScreenP7J2DPanePc = .text:0x8032F890; // type:function size:0x18C scope:global align:4 +init__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FA1C; // type:function size:0x4 scope:global align:4 +start__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FA20; // type:function size:0xB0 scope:global align:4 +update__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FAD0; // type:function size:0x2E0 scope:global align:4 +end__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FDB0; // type:function size:0x6C scope:global align:4 +setParam__Q32og9newScreen12TitleMsgWaveFffff = .text:0x8032FE1C; // type:function size:0x14 scope:global align:4 +__ct__Q32og9newScreen13TitleMsgClashFP9J2DScreenP7J2DPanePc = .text:0x8032FE30; // type:function size:0xF8 scope:global align:4 +init__Q32og9newScreen13TitleMsgClashFv = .text:0x8032FF28; // type:function size:0x14 scope:global align:4 +update__Q32og9newScreen13TitleMsgClashFv = .text:0x8032FF3C; // type:function size:0x214 scope:global align:4 +end__Q32og9newScreen13TitleMsgClashFv = .text:0x80330150; // type:function size:0x6C scope:global align:4 +start__Q32og9newScreen8TitleMsgFv = .text:0x803301BC; // type:function size:0x4 scope:weak align:4 +__dt__Q25efx2d13T2DCvnameChalFv = .text:0x803301C0; // type:function size:0x84 scope:weak align:4 +tagColor__Q25P2JME8AnalyzerFPCvUl = .text:0x80330244; // type:function size:0x8 scope:weak align:4 +tagSize__Q25P2JME8AnalyzerFPCvUl = .text:0x8033024C; // type:function size:0x8 scope:weak align:4 +tagRuby__Q25P2JME8AnalyzerFPCvUl = .text:0x80330254; // type:function size:0x8 scope:weak align:4 +tagFont__Q25P2JME8AnalyzerFPCvUl = .text:0x8033025C; // type:function size:0x8 scope:weak align:4 +tagImage__Q25P2JME8AnalyzerFUsPCvUl = .text:0x80330264; // type:function size:0x8 scope:weak align:4 +tagColorEX__Q25P2JME8AnalyzerFUsPCvUl = .text:0x8033026C; // type:function size:0x8 scope:weak align:4 +tagControl__Q25P2JME8AnalyzerFUsPCvUl = .text:0x80330274; // type:function size:0x8 scope:weak align:4 +tagPosition__Q25P2JME8AnalyzerFUsPCvUl = .text:0x8033027C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d13T2DCvnameChalFv = .text:0x80330284; // type:function size:0x8 scope:weak align:4 +__ct__Q32og6Screen8AngleMgrFv = .text:0x8033028C; // type:function size:0x2C scope:global align:4 +init__Q32og6Screen8AngleMgrFfff = .text:0x803302B8; // type:function size:0x10 scope:global align:4 +chase__Q32og6Screen8AngleMgrFff = .text:0x803302C8; // type:function size:0x80 scope:global align:4 +calc__Q32og6Screen8AngleMgrFv = .text:0x80330348; // type:function size:0x1A8 scope:global align:4 +__ct__Q32og9newScreen9SMenuContFv = .text:0x803304F0; // type:function size:0x50 scope:global align:4 +doConfirmSetScene__Q32og9newScreen9SMenuContFRQ26Screen11SetSceneArg = .text:0x80330540; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen9SMenuContFRQ26Screen11SetSceneArg = .text:0x803305A8; // type:function size:0xC scope:global align:4 +doUserCallBackFunc__Q32og9newScreen9SMenuContFPQ28Resource10MgrCommand = .text:0x803305B4; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen9SMenuContFP10JKRArchive = .text:0x803305B8; // type:function size:0x60 scope:global align:4 +doUpdateActive__Q32og9newScreen9SMenuContFv = .text:0x80330618; // type:function size:0x4 scope:global align:4 +getResName__Q32og9newScreen9SMenuContCFv = .text:0x8033061C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen9SMenuContFv = .text:0x80330628; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen9SMenuContFv = .text:0x80330630; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen9SMenuContFv = .text:0x8033063C; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen9SMenuContFv = .text:0x80330650; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen12ObjSMenuContFPCc = .text:0x80330658; // type:function size:0x64 scope:global align:4 +__dt__Q32og9newScreen12ObjSMenuContFv = .text:0x803306BC; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen12ObjSMenuContFP10JKRArchive = .text:0x80330780; // type:function size:0x14C scope:global align:4 +doUpdateLAction__Q32og9newScreen12ObjSMenuContFv = .text:0x803308CC; // type:function size:0xCC scope:global align:4 +doUpdateRAction__Q32og9newScreen12ObjSMenuContFv = .text:0x80330998; // type:function size:0x6C scope:global align:4 +commonUpdate__Q32og9newScreen12ObjSMenuContFv = .text:0x80330A04; // type:function size:0x80 scope:global align:4 +doUpdate__Q32og9newScreen12ObjSMenuContFv = .text:0x80330A84; // type:function size:0x54 scope:global align:4 +doDraw__Q32og9newScreen12ObjSMenuContFR8Graphics = .text:0x80330AD8; // type:function size:0x84 scope:global align:4 +in_L__Q32og9newScreen12ObjSMenuContFv = .text:0x80330B5C; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen12ObjSMenuContFv = .text:0x80330B70; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen12ObjSMenuContFv = .text:0x80330B84; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen12ObjSMenuContFv = .text:0x80330B90; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen12ObjSMenuContFv = .text:0x80330BBC; // type:function size:0x2C scope:global align:4 +doStart__Q32og9newScreen12ObjSMenuContFPCQ26Screen13StartSceneArg = .text:0x80330BE8; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen12ObjSMenuContFPCQ26Screen11EndSceneArg = .text:0x80330C8C; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen12ObjSMenuContFv = .text:0x80330C94; // type:function size:0x20 scope:global align:4 +doUpdateFadeout__Q32og9newScreen12ObjSMenuContFv = .text:0x80330CB4; // type:function size:0x4C scope:global align:4 +doUpdateCancelAction__Q32og9newScreen12ObjSMenuContFv = .text:0x80330D00; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjSMenuCont_cpp = .text:0x80330D04; // type:function size:0x14 scope:local align:4 +@24@__dt__Q32og9newScreen12ObjSMenuContFv = .text:0x80330D18; // type:function size:0x8 scope:weak align:4 +__ct__Q28PSSystem11SeqDataListFv = .text:0x80330D20; // type:function size:0x60 scope:global align:4 +__dt__Q28PSSystem11SeqDataListFv = .text:0x80330D80; // type:function size:0x88 scope:global align:4 +getSeqVolume__Q28PSSystem11SeqDataListFPCc = .text:0x80330E08; // type:function size:0x108 scope:global align:4 +__ct__Q28PSSystem14StreamDataListFv = .text:0x80330F10; // type:function size:0x60 scope:global align:4 +__dt__Q28PSSystem14StreamDataListFv = .text:0x80330F70; // type:function size:0x88 scope:global align:4 +getStreamVolume__Q28PSSystem14StreamDataListFUl = .text:0x80330FF8; // type:function size:0x110 scope:global align:4 +stop__Q28PSSystem12SeqSoundBaseFUl = .text:0x80331108; // type:function size:0x94 scope:global align:4 +stopInner__Q28PSSystem8SeqSoundFUl = .text:0x8033119C; // type:function size:0x20 scope:global align:4 +stopInner__Q28PSSystem11StreamSoundFUl = .text:0x803311BC; // type:function size:0x20 scope:global align:4 +__dt__Q28PSSystem7SeqHeapFv = .text:0x803311DC; // type:function size:0x60 scope:global align:4 +requestCallback__Q28PSSystem7SeqHeapFUlUsP11JAISequence = .text:0x8033123C; // type:function size:0x200 scope:global align:4 +loadSeqAsync__Q28PSSystem7SeqHeapFPQ28PSSystem11TaskChecker = .text:0x8033143C; // type:function size:0xD4 scope:global align:4 +loadedCallback__Q28PSSystem7SeqHeapFUlUl = .text:0x80331510; // type:function size:0x98 scope:global align:4 +reservatorTask__Q28PSSystem17SeqPlayReservatorFv = .text:0x803315A8; // type:function size:0x30 scope:global align:4 +reservatorTask__Q28PSSystem21SeqPauseOffReservatorFv = .text:0x803315D8; // type:function size:0x30 scope:global align:4 +__ct__Q28PSSystem7SeqBaseFPCcRCQ27JAInter9SoundInfo = .text:0x80331608; // type:function size:0x100 scope:global align:4 +init__Q28PSSystem7SeqBaseFv = .text:0x80331708; // type:function size:0x134 scope:global align:4 +__dt__Q28PSSystem7SeqBaseFv = .text:0x8033183C; // type:function size:0x98 scope:global align:4 +isPlaying__Q28PSSystem7SeqBaseFv = .text:0x803318D4; // type:function size:0x3C scope:global align:4 +getFileEntry__Q28PSSystem7SeqBaseFv = .text:0x80331910; // type:function size:0x90 scope:global align:4 +pauseOn__Q28PSSystem7SeqBaseFQ38PSSystem7SeqBase9PauseMode = .text:0x803319A0; // type:function size:0x1D4 scope:global align:4 +pauseOff__Q28PSSystem7SeqBaseFv = .text:0x80331B74; // type:function size:0x13C scope:global align:4 +exec__Q28PSSystem7SeqBaseFv = .text:0x80331CB0; // type:function size:0xD4 scope:global align:4 +onPlayingFrame__Q28PSSystem7SeqBaseFv = .text:0x80331D84; // type:function size:0x4 scope:global align:4 +startSeq__Q28PSSystem7SeqBaseFv = .text:0x80331D88; // type:function size:0x154 scope:global align:4 +setConfigVolume__Q28PSSystem7SeqBaseFv = .text:0x80331EDC; // type:function size:0xD0 scope:global align:4 +scene1st__Q28PSSystem7SeqBaseFPQ28PSSystem11TaskChecker = .text:0x80331FAC; // type:function size:0x38 scope:global align:4 +stopSeq__Q28PSSystem7SeqBaseFUl = .text:0x80331FE4; // type:function size:0x60 scope:global align:4 +__ct__Q28PSSystem6BgmSeqFPCcRCQ27JAInter9SoundInfo = .text:0x80332044; // type:function size:0x114 scope:global align:4 +__dt__Q28PSSystem6BgmSeqFv = .text:0x80332158; // type:function size:0xC0 scope:global align:4 +__ct__Q28PSSystem9StreamBgmFUlRCQ27JAInter9SoundInfo = .text:0x80332218; // type:function size:0x100 scope:global align:4 +init__Q28PSSystem9StreamBgmFv = .text:0x80332318; // type:function size:0x4 scope:global align:4 +__dt__Q28PSSystem9StreamBgmFv = .text:0x8033231C; // type:function size:0xEC scope:global align:4 +setId__Q28PSSystem9StreamBgmFUl = .text:0x80332408; // type:function size:0x8 scope:global align:4 +startSeq__Q28PSSystem9StreamBgmFv = .text:0x80332410; // type:function size:0x15C scope:global align:4 +setConfigVolume__Q28PSSystem9StreamBgmFv = .text:0x8033256C; // type:function size:0xD0 scope:global align:4 +isPlaying__Q28PSSystem9StreamBgmFv = .text:0x8033263C; // type:function size:0x14 scope:global align:4 +__dt__Q28PSSystem5SeSeqFv = .text:0x80332650; // type:function size:0xC0 scope:global align:4 +seqLoadAfter__Q28PSSystem5SeSeqFv = .text:0x80332710; // type:function size:0x2C scope:global align:4 +setConfigVolume__Q28PSSystem5SeSeqFv = .text:0x8033273C; // type:function size:0xD0 scope:global align:4 +stopSeq__Q28PSSystem5SeSeqFUl = .text:0x8033280C; // type:function size:0xA4 scope:global align:4 +__ct__Q28PSSystem11DirectedBgmFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x803328B0; // type:function size:0x138 scope:global align:4 +initRootTrack_onPlaying__Q28PSSystem11DirectedBgmFP8JASTrack = .text:0x803329E8; // type:function size:0xC0 scope:global align:4 +initChildTrack_onPlaying__Q28PSSystem11DirectedBgmFP8JASTrackUc = .text:0x80332AA8; // type:function size:0xD4 scope:global align:4 +getDirectorP__Q28PSSystem11DirectedBgmFUc = .text:0x80332B7C; // type:function size:0x98 scope:global align:4 +newSeqTrackRoot__Q28PSSystem11DirectedBgmFv = .text:0x80332C14; // type:function size:0x64 scope:global align:4 +newSeqTrackChild__Q28PSSystem11DirectedBgmFUcRQ28PSSystem12SeqTrackRoot = .text:0x80332C78; // type:function size:0x74 scope:global align:4 +init__Q28PSSystem11DirectedBgmFv = .text:0x80332CEC; // type:function size:0x1F0 scope:global align:4 +startSeq__Q28PSSystem11DirectedBgmFv = .text:0x80332EDC; // type:function size:0x154 scope:global align:4 +stopSeq__Q28PSSystem11DirectedBgmFUl = .text:0x80333030; // type:function size:0xF0 scope:global align:4 +onPlayingFrame__Q28PSSystem11DirectedBgmFv = .text:0x80333120; // type:function size:0x2C scope:global align:4 +onBeatTop__Q28PSSystem20SeqTrackRoot_JumpBgmFv = .text:0x8033314C; // type:function size:0x2C scope:global align:4 +onBeatTop__Q28PSSystem11JumpBgmPortFRQ28PSSystem7BeatMgr = .text:0x80333178; // type:function size:0xB8 scope:global align:4 +__ct__Q28PSSystem10JumpBgmSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x80333230; // type:function size:0x190 scope:global align:4 +newSeqTrackRoot__Q28PSSystem10JumpBgmSeqFv = .text:0x803333C0; // type:function size:0x80 scope:global align:4 +startSeq__Q28PSSystem10JumpBgmSeqFv = .text:0x80333440; // type:function size:0x170 scope:global align:4 +startSeq__Q28PSSystem10JumpBgmSeqFUs = .text:0x803335B0; // type:function size:0x178 scope:global align:4 +requestJumpBgmQuickly__Q28PSSystem10JumpBgmSeqFUs = .text:0x80333728; // type:function size:0x60 scope:global align:4 +requestJumpBgmOnBeat__Q28PSSystem10JumpBgmSeqFUs = .text:0x80333788; // type:function size:0x60 scope:global align:4 +requestJumpBgmEveryBeat__Q28PSSystem10JumpBgmSeqFUs = .text:0x803337E8; // type:function size:0x54 scope:global align:4 +onPlayingFrame__Q28PSSystem10JumpBgmSeqFv = .text:0x8033383C; // type:function size:0x4C scope:global align:4 +outputJumpRequest__Q28PSSystem10JumpBgmSeqFv = .text:0x80333888; // type:function size:0xC8 scope:global align:4 +getSeqStartPoint__Q28PSSystem10JumpBgmSeqFv = .text:0x80333950; // type:function size:0x40 scope:global align:4 +setAvoidJumpTimer_Checked__Q28PSSystem10JumpBgmSeqFUl = .text:0x80333990; // type:function size:0x14 scope:global align:4 +isPlaying__Q28PSSystem6SeqMgrFv = .text:0x803339A4; // type:function size:0x60 scope:global align:4 +__dt__Q28PSSystem6SeqMgrFv = .text:0x80333A04; // type:function size:0xC8 scope:global align:4 +pauseOnAllSeq__Q28PSSystem6SeqMgrFQ38PSSystem7SeqBase9PauseMode = .text:0x80333ACC; // type:function size:0x5C scope:global align:4 +pauseOffAllSeq__Q28PSSystem6SeqMgrFv = .text:0x80333B28; // type:function size:0x4C scope:global align:4 +reservePauseOffAllSeq__Q28PSSystem6SeqMgrFv = .text:0x80333B74; // type:function size:0x24 scope:global align:4 +cancelPauseOffAllSeq__Q28PSSystem6SeqMgrFv = .text:0x80333B98; // type:function size:0x24 scope:global align:4 +exec__Q28PSSystem6SeqMgrFv = .text:0x80333BBC; // type:function size:0x80 scope:global align:4 +stopAllSound__Q28PSSystem6SeqMgrFUl = .text:0x80333C3C; // type:function size:0x5C scope:global align:4 +scene1st__Q28PSSystem6SeqMgrFPQ28PSSystem11TaskChecker = .text:0x80333C98; // type:function size:0x5C scope:global align:4 +findSeq__Q28PSSystem6SeqMgrFP8JASTrack = .text:0x80333CF4; // type:function size:0xE8 scope:global align:4 +getPlayingSeq__Q28PSSystem6SeqMgrFP8JASTrack = .text:0x80333DDC; // type:function size:0x80 scope:global align:4 +getFirstSeq__Q28PSSystem6SeqMgrFv = .text:0x80333E5C; // type:function size:0x1C scope:global align:4 +getFirstSeqA__Q28PSSystem6SeqMgrFv = .text:0x80333E78; // type:function size:0x24 scope:global align:4 +getSeq__Q28PSSystem6SeqMgrFUl = .text:0x80333E9C; // type:function size:0x34 scope:global align:4 +__dt__Q28PSSystem10JumpBgmSeqFv = .text:0x80333ED0; // type:function size:0xE0 scope:weak align:4 +__dt__Q28PSSystem39SingletonBaseFv = .text:0x80333FB0; // type:function size:0x50 scope:weak align:4 +__dt__Q28PSSystem42SingletonBaseFv = .text:0x80334000; // type:function size:0x50 scope:weak align:4 +@28@__dt__Q28PSSystem11SeqDataListFv = .text:0x80334050; // type:function size:0x8 scope:weak align:4 +@28@__dt__Q28PSSystem14StreamDataListFv = .text:0x80334058; // type:function size:0x8 scope:weak align:4 +@1696@stopInner__Q28PSSystem8SeqSoundFUl = .text:0x80334060; // type:function size:0x8 scope:weak align:4 +@472@stopInner__Q28PSSystem11StreamSoundFUl = .text:0x80334068; // type:function size:0x8 scope:weak align:4 +seqLoadAfter__Q28PSSystem7SeqBaseFv = .text:0x80334070; // type:function size:0x4 scope:weak align:4 +getHandleP__Q28PSSystem6BgmSeqFv = .text:0x80334074; // type:function size:0x8 scope:weak align:4 +__dt__Q28PSSystem11DirectedBgmFv = .text:0x8033407C; // type:function size:0xD0 scope:weak align:4 +onJump__Q28PSSystem10JumpBgmSeqFUs = .text:0x8033414C; // type:function size:0x4 scope:weak align:4 +getCastType__Q28PSSystem10JumpBgmSeqFv = .text:0x80334150; // type:function size:0x8 scope:weak align:4 +getSeqType__Q28PSSystem6BgmSeqFv = .text:0x80334158; // type:function size:0x8 scope:weak align:4 +getCastType__Q28PSSystem11DirectedBgmFv = .text:0x80334160; // type:function size:0x8 scope:weak align:4 +getSeqType__Q28PSSystem5SeSeqFv = .text:0x80334168; // type:function size:0xC scope:weak align:4 +getCastType__Q28PSSystem5SeSeqFv = .text:0x80334174; // type:function size:0x8 scope:weak align:4 +getHandleP__Q28PSSystem5SeSeqFv = .text:0x8033417C; // type:function size:0x8 scope:weak align:4 +getHandleP__Q28PSSystem9StreamBgmFv = .text:0x80334184; // type:function size:0x8 scope:weak align:4 +scene1st__Q28PSSystem9StreamBgmFPQ28PSSystem11TaskChecker = .text:0x8033418C; // type:function size:0x4 scope:weak align:4 +getSeqType__Q28PSSystem9StreamBgmFv = .text:0x80334190; // type:function size:0x8 scope:weak align:4 +getCastType__Q28PSSystem9StreamBgmFv = .text:0x80334198; // type:function size:0x8 scope:weak align:4 +getCastType__Q28PSSystem6BgmSeqFv = .text:0x803341A0; // type:function size:0x8 scope:weak align:4 +read__Q28PSSystem14StreamDataListFR6Stream = .text:0x803341A8; // type:function size:0x8 scope:weak align:4 +read__Q28PSSystem11SeqDataListFR6Stream = .text:0x803341B0; // type:function size:0x8 scope:weak align:4 +getTgtWithTable__Q28PSSystem20TriangleTableModTaskFUc = .text:0x803341B8; // type:function size:0x1C scope:weak align:4 +getTableIdxNum__Q28PSSystem20TriangleTableModTaskFv = .text:0x803341D4; // type:function size:0x8 scope:weak align:4 +task__Q28PSSystem14PitchResetTaskFR8JASTrack = .text:0x803341DC; // type:function size:0x34 scope:weak align:4 +task__Q28PSSystem12FlagWaitTaskFR8JASTrack = .text:0x80334210; // type:function size:0x8 scope:weak align:4 +timeTask__Q28PSSystem12BankRandTaskFR8JASTrackf = .text:0x80334218; // type:function size:0xC scope:weak align:4 +getPreParam__Q28PSSystem12BankRandTaskFR8JASTrack = .text:0x80334224; // type:function size:0xC scope:weak align:4 +update__Q28PSSystem12SeqTrackRootFv = .text:0x80334230; // type:function size:0x38 scope:weak align:4 +getCaveNoFromID__Q26PSGame13CaveFloorInfoFv = .text:0x80334268; // type:function size:0x28 scope:global align:4 +__dt__Q26PSGame13ConductorListFv = .text:0x80334290; // type:function size:0xD4 scope:global align:4 +read__Q26PSGame13ConductorListFR6Stream = .text:0x80334364; // type:function size:0x1AC scope:global align:4 +__ct__Q36PSGame13ConductorList8CaveInfoFv = .text:0x80334510; // type:function size:0x14 scope:weak align:4 +getSeqAndWaveFromConductor__Q26PSGame13ConductorListFPCcPUcPPc = .text:0x80334524; // type:function size:0x3D4 scope:global align:4 +__ct__Q36PSGame10SoundTable11CategoryMgrFv = .text:0x803348F8; // type:function size:0xE0 scope:global align:4 +initiate__Q36PSGame10SoundTable11CategoryMgrFUc = .text:0x803349D8; // type:function size:0x174 scope:global align:4 +set__Q36PSGame10SoundTable11SePerspInfoFfffff = .text:0x80334B4C; // type:function size:0x18 scope:global align:4 +getDistVol__Q36PSGame10SoundTable11SePerspInfoFfUc = .text:0x80334B64; // type:function size:0x164 scope:global align:4 +__ct__Q26PSGame9CameraMgrFv = .text:0x80334CC8; // type:function size:0xA8 scope:global align:4 +__dt__Q26PSGame9CameraMgrFv = .text:0x80334D70; // type:function size:0x60 scope:global align:4 +getBgmCamVol__Q26PSGame9CameraMgrFUc = .text:0x80334DD0; // type:function size:0x24 scope:global align:4 +update__Q26PSGame9CameraMgrFUcf = .text:0x80334DF4; // type:function size:0x4C scope:global align:4 +getCurrentCamDistVol__Q26PSGame9CameraMgrFUc = .text:0x80334E40; // type:function size:0x10 scope:global align:4 +getVol_DistBetweenCamAndLookat__Q26PSGame9CameraMgrFf = .text:0x80334E50; // type:function size:0x88 scope:global align:4 +__ct__Q26PSGame10SysFactoryFv = .text:0x80334ED8; // type:function size:0x34 scope:global align:4 +newSoundSystem__Q26PSGame10SysFactoryFv = .text:0x80334F0C; // type:function size:0x404 scope:global align:4 +preInitJAI__Q26PSGame10SysFactoryFv = .text:0x80335310; // type:function size:0x80 scope:global align:4 +postInitJAI__Q26PSGame10SysFactoryFv = .text:0x80335390; // type:function size:0x120 scope:global align:4 +__ct__Q26PSGame9SceneInfoFv = .text:0x803354B0; // type:function size:0x38 scope:global align:4 +setStageFlag__Q26PSGame9SceneInfoFQ36PSGame9SceneInfo7FlagDefQ36PSGame9SceneInfo12FlagBitShift = .text:0x803354E8; // type:function size:0x78 scope:global align:4 +getFlag__Q26PSGame9SceneInfoCFQ36PSGame9SceneInfo12FlagBitShift = .text:0x80335560; // type:function size:0x10 scope:global align:4 +setStageCamera__Q26PSGame9SceneInfoCFv = .text:0x80335570; // type:function size:0x74 scope:global align:4 +__ct__Q26PSGame8PikSceneFUc = .text:0x803355E4; // type:function size:0x3C scope:global align:4 +__dt__Q26PSGame8PikSceneFv = .text:0x80335620; // type:function size:0x60 scope:global align:4 +getMiddleBossBgm__Q26PSGame8PikSceneFv = .text:0x80335680; // type:function size:0xA8 scope:global align:4 +newAndSetGlobalScene__Q26PSGame11PikSceneMgrFv = .text:0x80335728; // type:function size:0x378 scope:global align:4 +newAndSetCurrentScene__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfo = .text:0x80335AA0; // type:function size:0x4AC scope:global align:4 +newBgmSeq__Q26PSGame11PikSceneMgrFPCcRQ27JAInter9SoundInfo = .text:0x80335F4C; // type:function size:0x98 scope:global align:4 +newStreamBgm__Q26PSGame11PikSceneMgrFUlRQ27JAInter9SoundInfo = .text:0x80335FE4; // type:function size:0x88 scope:global align:4 +initBossBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPUc = .text:0x8033606C; // type:function size:0x150 scope:global align:4 +initAdditionalBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPQ28PSSystem5Scene = .text:0x803361BC; // type:function size:0x400 scope:global align:4 +initMainBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPUc = .text:0x803365BC; // type:function size:0xD24 scope:global align:4 +seqCpuSync__6PSGameFP8JASTrackUs = .text:0x803372E0; // type:function size:0x94C scope:global align:4 +PSPlayerChangeToOrimer__Fv = .text:0x80337C2C; // type:function size:0x7C scope:global align:4 +PSGetDirectedMainBgm__Fv = .text:0x80337CA8; // type:function size:0x124 scope:global align:4 +PSPlayerChangeToLugie__Fv = .text:0x80337DCC; // type:function size:0x170 scope:global align:4 +PSGetDirectedMainBgmA__Fv = .text:0x80337F3C; // type:function size:0x170 scope:global align:4 +__dt__Q28PSSystem39SingletonBaseFv = .text:0x803380AC; // type:function size:0x50 scope:weak align:4 +__dt__Q28PSSystem49SingletonBaseFv = .text:0x803380FC; // type:function size:0x50 scope:weak align:4 +newInstance__Q28PSSystem49SingletonBaseFv = .text:0x8033814C; // type:function size:0x98 scope:weak align:4 +@28@__dt__Q26PSGame13ConductorListFv = .text:0x803381E4; // type:function size:0x8 scope:weak align:4 +isCaveFloor__Q26PSGame9SceneInfoFv = .text:0x803381EC; // type:function size:0x8 scope:weak align:4 +curSceneIsBigBossFloor__Q26PSGame11PikSceneMgrFv = .text:0x803381F4; // type:function size:0x8 scope:weak align:4 +exec__Q28PSSystem8SceneMgrFv = .text:0x803381FC; // type:function size:0x38 scope:weak align:4 +init__Q28PSSystem5SceneFv = .text:0x80338234; // type:function size:0x4 scope:weak align:4 +__dt__Q29PSAutoBgm15ConductorArcMgrFv = .text:0x80338238; // type:function size:0x50 scope:weak align:4 +__dt__Q36PSGame10SoundTable11CategoryMgrFv = .text:0x80338288; // type:function size:0x64 scope:weak align:4 +__dt__Q28PSSystem24ArcMgrFv = .text:0x803382EC; // type:function size:0x80 scope:weak align:4 +getObject__8PSSystemFP8JASTrackUc = .text:0x8033836C; // type:function size:0x50 scope:global align:4 +setObject__8PSSystemFP8JASTrackPvUc = .text:0x803383BC; // type:function size:0x60 scope:global align:4 +__ct__Q28PSSystem5SysIFFRCQ28PSSystem8SetupArg = .text:0x8033841C; // type:function size:0x134 scope:global align:4 +stopSoundSystem__Q28PSSystem5SysIFFv = .text:0x80338550; // type:function size:0xE0 scope:global align:4 +playSystemSe__Q28PSSystem5SysIFFUlUl = .text:0x80338630; // type:function size:0x40 scope:global align:4 +playSystemSe__Q28PSSystem5SysIFFUlPP8JAISoundUl = .text:0x80338670; // type:function size:0x2C scope:global align:4 +initIF__Q28PSSystem5SysIFFRCQ28PSSystem8SetupArg = .text:0x8033869C; // type:function size:0x78 scope:global align:4 +makeSe__Q28PSSystem5SysIFFv = .text:0x80338714; // type:function size:0x38 scope:global align:4 +mainLoop__Q28PSSystem5SysIFFv = .text:0x8033874C; // type:function size:0xDC scope:global align:4 +setConfigVol_Se__Q28PSSystem5SysIFFf = .text:0x80338828; // type:function size:0x8C scope:global align:4 +setConfigVol_Bgm__Q28PSSystem5SysIFFf = .text:0x803388B4; // type:function size:0xC8 scope:global align:4 +__ct__Q28PSSystem5FxMgrFv = .text:0x8033897C; // type:function size:0x4 scope:global align:4 +__ct__Q28PSSystem12TextDataBaseFv = .text:0x80338980; // type:function size:0x44 scope:global align:4 +__dt__Q28PSSystem12TextDataBaseFv = .text:0x803389C4; // type:function size:0x70 scope:global align:4 +load__Q28PSSystem12TextDataBaseFPCcQ212JKRDvdRipper15EAllocDirection = .text:0x80338A34; // type:function size:0x7C scope:global align:4 +onlyLoad__Q28PSSystem12TextDataBaseFPCcQ212JKRDvdRipper15EAllocDirection = .text:0x80338AB0; // type:function size:0x68 scope:global align:4 +start1stSeq__Q28PSSystem5SysIFFv = .text:0x80338B18; // type:function size:0xC scope:weak align:4 +makeSequence__Q28PSSystem5SysIFFv = .text:0x80338B24; // type:function size:0x70 scope:weak align:4 +__ct__Q28PSSystem8SeqSoundFv = .text:0x80338B94; // type:function size:0x58 scope:weak align:4 +makeStream__Q28PSSystem5SysIFFv = .text:0x80338BEC; // type:function size:0x70 scope:weak align:4 +__ct__Q28PSSystem11StreamSoundFv = .text:0x80338C5C; // type:function size:0x58 scope:weak align:4 +startSoundActorReturnHandleT<5JAISe>__8JAIBasicFPP5JAISeUlPQ27JAInter5ActorUlUc = .text:0x80338CB4; // type:function size:0x70 scope:weak align:4 +startSoundActorT<5JAISe>__8JAIBasicFUlPP5JAISePQ27JAInter5ActorUlUc = .text:0x80338D24; // type:function size:0x68 scope:weak align:4 +__sinit_PSSystemIF_cpp = .text:0x80338D8C; // type:function size:0x28 scope:local align:4 +__dt__Q210JADUtility18PrmRadioButtonFv = .text:0x80338DB4; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility13PrmSliderFv = .text:0x80338E5C; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility10PrmHioFv = .text:0x80338F04; // type:function size:0x98 scope:weak align:4 +__dt__Q210JADUtility7PrmFv = .text:0x80338F9C; // type:function size:0x88 scope:weak align:4 +__dt__Q29PSAutoBgm9ConductorFv = .text:0x80339024; // type:function size:0x290 scope:global align:4 +removeCallback__Q29PSAutoBgm9ConductorFUcPv = .text:0x803392B4; // type:function size:0x34 scope:global align:4 +seqCpuSync_AutoBgm__Q29PSAutoBgm9ConductorFP8JASTrackUsUlP8JASTrack = .text:0x803392E8; // type:function size:0x11C scope:global align:4 +createTables__Q29PSAutoBgm9ConductorFP8JASTrack = .text:0x80339404; // type:function size:0xF4 scope:global align:4 +__ct__Q29PSAutoBgm5TrackFv = .text:0x803394F8; // type:function size:0x2A4 scope:global align:4 +afterGetFromFree__Q29PSAutoBgm5TrackFv = .text:0x8033979C; // type:function size:0x3C scope:global align:4 +__dt__Q29PSAutoBgm5TrackFv = .text:0x803397D8; // type:function size:0x3DC scope:global align:4 +removeCallback__Q29PSAutoBgm5TrackFUcPv = .text:0x80339BB4; // type:function size:0x3C scope:global align:4 +seqCpuSync_AutoBgm_Track__Q29PSAutoBgm5TrackFP8JASTrackUsUlP8JASTrack = .text:0x80339BF0; // type:function size:0x1B8 scope:global align:4 +incCurModule__Q29PSAutoBgm5TrackFv = .text:0x80339DA8; // type:function size:0x60 scope:global align:4 +afterGetFromFree__Q29PSAutoBgm6ModuleFv = .text:0x80339E08; // type:function size:0x54 scope:global align:4 +__ct__Q29PSAutoBgm6ModuleFv = .text:0x80339E5C; // type:function size:0x554 scope:global align:4 +__dt__Q29PSAutoBgm6ModuleFv = .text:0x8033A3B0; // type:function size:0x72C scope:global align:4 +removeCallback__Q29PSAutoBgm6ModuleFUcPv = .text:0x8033AADC; // type:function size:0x44 scope:global align:4 +seqCpuSync_AutoBgm_Module__Q29PSAutoBgm6ModuleFP8JASTrackUsUlP8JASTrack = .text:0x8033AB20; // type:function size:0x218 scope:global align:4 +setTableAddress__Q29PSAutoBgm6ModuleFP8JASTrack = .text:0x8033AD38; // type:function size:0x1BC scope:global align:4 +cycleLoop__Q29PSAutoBgm6ModuleFP8JASTrack = .text:0x8033AEF4; // type:function size:0x154 scope:global align:4 +cycleTop__Q29PSAutoBgm9CycleBaseFP8JASTrack = .text:0x8033B048; // type:function size:0x10 scope:global align:4 +play__Q29PSAutoBgm9CycleBaseFP8JASTrack = .text:0x8033B058; // type:function size:0x1BC scope:global align:4 +checkCloser__Q29PSAutoBgm9CycleBaseFP8JASTrack = .text:0x8033B214; // type:function size:0x78 scope:global align:4 +__ct__Q29PSAutoBgm7OnCycleFPQ29PSAutoBgm6Module = .text:0x8033B28C; // type:function size:0x184 scope:global align:4 +__dt__Q29PSAutoBgm11PrmLinkFv = .text:0x8033B410; // type:function size:0x58 scope:weak align:4 +play__Q29PSAutoBgm7OnCycleFP8JASTrack = .text:0x8033B468; // type:function size:0x360 scope:global align:4 +setTip__Q29PSAutoBgm7OnCycleFP8JASTrack = .text:0x8033B7C8; // type:function size:0x274 scope:global align:4 +historiesAreSameAll__Q29PSAutoBgm7OnCycleFv = .text:0x8033BA3C; // type:function size:0x5C scope:global align:4 +avoidCheck__Q29PSAutoBgm7OnCycleFv = .text:0x8033BA98; // type:function size:0xBC scope:global align:4 +__ct__Q29PSAutoBgm8OffCycleFPQ29PSAutoBgm6Module = .text:0x8033BB54; // type:function size:0xB0 scope:global align:4 +__ct__Q29PSAutoBgm7AutoBgmFPCcPCcRCQ27JAInter9SoundInfoQ210JADUtility10AccessModePQ28PSSystem15DirectorMgrBase = .text:0x8033BC04; // type:function size:0x15C scope:global align:4 +__dt__Q29PSAutoBgm10MeloArrMgrFv = .text:0x8033BD60; // type:function size:0x78 scope:weak align:4 +__dt__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033BDD8; // type:function size:0x154 scope:weak align:4 +__dt__Q210JADUtility59PrmDataMgrNodeFv = .text:0x8033BF2C; // type:function size:0x12C scope:weak align:4 +startSeq__Q29PSAutoBgm7AutoBgmFv = .text:0x8033C058; // type:function size:0x150 scope:global align:4 +scene1st__Q29PSAutoBgm7AutoBgmFPQ28PSSystem11TaskChecker = .text:0x8033C1A8; // type:function size:0x44 scope:global align:4 +loadConductor__Q29PSAutoBgm7AutoBgmFPQ28PSSystem11TaskChecker = .text:0x8033C1EC; // type:function size:0x180 scope:global align:4 +loadedCallback__Q29PSAutoBgm7AutoBgmFUlUl = .text:0x8033C36C; // type:function size:0x74 scope:global align:4 +pauseOn__Q29PSAutoBgm7AutoBgmFQ38PSSystem7SeqBase9PauseMode = .text:0x8033C3E0; // type:function size:0x168 scope:global align:4 +pauseOff__Q29PSAutoBgm7AutoBgmFv = .text:0x8033C548; // type:function size:0x20 scope:global align:4 +__dt__Q210JADUtility28PrmSetRcFv = .text:0x8033C568; // type:function size:0x190 scope:weak align:4 +__dt__Q210JADUtility10StrEditBoxFv = .text:0x8033C6F8; // type:function size:0xC4 scope:weak align:4 +__dt__Q210JADUtility12PrmSliderFv = .text:0x8033C7BC; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility9PrmHioFv = .text:0x8033C864; // type:function size:0x98 scope:weak align:4 +__dt__Q210JADUtility6PrmFv = .text:0x8033C8FC; // type:function size:0x88 scope:weak align:4 +__dt__Q210JADUtility29PrmSetRcFv = .text:0x8033C984; // type:function size:0x190 scope:weak align:4 +getChildNum__Q210JADUtility28PrmSetRcFv = .text:0x8033CB14; // type:function size:0x8 scope:weak align:4 +getPrmObjHeap__Q210JADUtility28PrmSetRcFv = .text:0x8033CB1C; // type:function size:0x8 scope:weak align:4 +getChildNum__Q210JADUtility29PrmSetRcFv = .text:0x8033CB24; // type:function size:0x8 scope:weak align:4 +getPrmObjHeap__Q210JADUtility29PrmSetRcFv = .text:0x8033CB2C; // type:function size:0x8 scope:weak align:4 +save__Q210JADUtility6PrmFR21JSUMemoryOutputStream = .text:0x8033CB34; // type:function size:0x90 scope:weak align:4 +load__Q210JADUtility6PrmFR20JSUMemoryInputStream = .text:0x8033CBC4; // type:function size:0x64 scope:weak align:4 +save__Q210JADUtility7PrmFR21JSUMemoryOutputStream = .text:0x8033CC28; // type:function size:0x90 scope:weak align:4 +load__Q210JADUtility7PrmFR20JSUMemoryInputStream = .text:0x8033CCB8; // type:function size:0x64 scope:weak align:4 +getChild__Q210JADUtility29PrmSetRcFUc = .text:0x8033CD1C; // type:function size:0x3C scope:weak align:4 +load__Q210JADUtility29PrmSetRcFR20JSUMemoryInputStream = .text:0x8033CD58; // type:function size:0x114 scope:weak align:4 +__ct__Q210JADUtility29PrmSetRcFv = .text:0x8033CE6C; // type:function size:0x90 scope:weak align:4 +getChild__Q210JADUtility28PrmSetRcFUc = .text:0x8033CEFC; // type:function size:0x3C scope:weak align:4 +load__Q210JADUtility28PrmSetRcFR20JSUMemoryInputStream = .text:0x8033CF38; // type:function size:0x114 scope:weak align:4 +__ct__Q210JADUtility28PrmSetRcFv = .text:0x8033D04C; // type:function size:0x90 scope:weak align:4 +avoidCheck__Q29PSAutoBgm9CycleBaseFv = .text:0x8033D0DC; // type:function size:0x8 scope:weak align:4 +getCycleType__Q29PSAutoBgm9CycleBaseFv = .text:0x8033D0E4; // type:function size:0x8 scope:weak align:4 +__ct__Q29PSAutoBgm11PrmLinkFv = .text:0x8033D0EC; // type:function size:0x34 scope:weak align:4 +__dt__Q29PSAutoBgm7AutoBgmFv = .text:0x8033D120; // type:function size:0x1C4 scope:weak align:4 +getCastType__Q29PSAutoBgm7AutoBgmFv = .text:0x8033D2E4; // type:function size:0x8 scope:weak align:4 +newSeqTrackRoot__Q29PSAutoBgm7AutoBgmFv = .text:0x8033D2EC; // type:function size:0x88 scope:weak align:4 +beatUpdate__Q29PSAutoBgm19AutoBgmSeqTrackRootFv = .text:0x8033D374; // type:function size:0xD0 scope:weak align:4 +getSaveTempHeap__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D444; // type:function size:0x8 scope:weak align:4 +getObjHeap__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D44C; // type:function size:0x8 scope:weak align:4 +getDataHeap__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D454; // type:function size:0x8 scope:weak align:4 +getCycleType__Q29PSAutoBgm7OnCycleFv = .text:0x8033D45C; // type:function size:0x8 scope:weak align:4 +getEraseLink__Q29PSAutoBgm9ConductorFv = .text:0x8033D464; // type:function size:0x8 scope:weak align:4 +onBeatTop__Q28PSSystem12SeqTrackRootFv = .text:0x8033D46C; // type:function size:0x4 scope:weak align:4 +initInstance__Q210JADUtility59PrmDataMgrNodeFv = .text:0x8033D470; // type:function size:0x1A4 scope:weak align:4 +initInstance__Q210JADUtility59PrmDataMgrNodeFPvl = .text:0x8033D614; // type:function size:0xE8 scope:weak align:4 +@600@28@__dt__Q210JADUtility59PrmDataMgrNodeFv = .text:0x8033D6FC; // type:function size:0x14 scope:weak align:4 +@600@28@init__Q210JADUtility11DataMgrNodeFv = .text:0x8033D710; // type:function size:0x14 scope:weak align:4 +@600@28@__dt__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D724; // type:function size:0x14 scope:weak align:4 +createInstance__Q28PSSystem7BankMgrFv = .text:0x8033D738; // type:function size:0x64 scope:global align:4 +__ct__Q28PSSystem7BankMgrFv = .text:0x8033D79C; // type:function size:0x58 scope:global align:4 +preInit__Q28PSSystem7BankMgrFv = .text:0x8033D7F4; // type:function size:0x94 scope:global align:4 +init__Q28PSSystem7BankMgrFv = .text:0x8033D888; // type:function size:0x178 scope:global align:4 +load__Q28PSSystem9WaveSceneFUsUsQ38PSSystem9WaveScene7AreaArgPQ28PSSystem11TaskChecker = .text:0x8033DA00; // type:function size:0x78 scope:global align:4 +__ct__Q38PSSystem9WaveScene8WaveAreaFv = .text:0x8033DA78; // type:function size:0x28 scope:global align:4 +loadWave__Q38PSSystem9WaveScene8WaveAreaFUsUsPQ28PSSystem11TaskChecker = .text:0x8033DAA0; // type:function size:0x114 scope:global align:4 +deleteWave__Q38PSSystem9WaveScene8WaveAreaFv = .text:0x8033DBB4; // type:function size:0xB0 scope:global align:4 +waveLoadCallback__Q38PSSystem9WaveScene8WaveAreaFUl = .text:0x8033DC64; // type:function size:0x7C scope:global align:4 +__dt__Q28PSSystem7BankMgrFv = .text:0x8033DCE0; // type:function size:0x90 scope:weak align:4 +secondLoadS__Q28PSSystem7BankMgrFv = .text:0x8033DD70; // type:function size:0x4 scope:weak align:4 +firstLoadS__Q28PSSystem7BankMgrFv = .text:0x8033DD74; // type:function size:0x4 scope:weak align:4 +initS__Q28PSSystem7BankMgrFv = .text:0x8033DD78; // type:function size:0x24 scope:weak align:4 +setWsDataS__Q28PSSystem7BankMgrFPUl = .text:0x8033DD9C; // type:function size:0x1C8 scope:weak align:4 +setBankDataS__Q28PSSystem7BankMgrFPUl = .text:0x8033DF64; // type:function size:0x1C8 scope:weak align:4 +__dt__Q38PSSystem9WaveScene8WaveAreaFv = .text:0x8033E12C; // type:function size:0xCC scope:weak align:4 +__ct__Q28PSSystem8TaskBaseFv = .text:0x8033E1F8; // type:function size:0x54 scope:global align:4 +append__Q28PSSystem9TaskEntryFPQ28PSSystem8TaskBase = .text:0x8033E24C; // type:function size:0x24 scope:global align:4 +isUnderTask_byDirector__Q28PSSystem12TaskEntryMgrFPQ28PSSystem12DirectorBase = .text:0x8033E270; // type:function size:0x34 scope:global align:4 +update__Q28PSSystem12TaskEntryMgrFv = .text:0x8033E2A4; // type:function size:0x150 scope:global align:4 +appendEntry__Q28PSSystem12TaskEntryMgrFPQ28PSSystem9TaskEntryPQ28PSSystem12DirectorBase = .text:0x8033E3F4; // type:function size:0xA0 scope:global align:4 +removeEntry__Q28PSSystem12TaskEntryMgrFPQ28PSSystem9TaskEntry = .text:0x8033E494; // type:function size:0x74 scope:global align:4 +removeAllEntry__Q28PSSystem12TaskEntryMgrFv = .text:0x8033E508; // type:function size:0xA4 scope:global align:4 +remove_Lock__Q28PSSystem32MutexListFP30JSULink = .text:0x8033E5AC; // type:function size:0x58 scope:weak align:4 +append_Lock__Q28PSSystem31MutexListFP29JSULink = .text:0x8033E604; // type:function size:0x58 scope:weak align:4 +append_Lock__Q28PSSystem32MutexListFP30JSULink = .text:0x8033E65C; // type:function size:0x58 scope:weak align:4 +task__Q28PSSystem16ModParamWithFadeFR8JASTrack = .text:0x8033E6B4; // type:function size:0x124 scope:global align:4 +task__Q28PSSystem21ModParamWithTableTaskFR8JASTrack = .text:0x8033E7D8; // type:function size:0xF4 scope:global align:4 +tableTask__Q28PSSystem12PitchModTaskFR8JASTrackf = .text:0x8033E8CC; // type:function size:0x30 scope:global align:4 +getPreParam__Q28PSSystem14OuterParamTaskFR8JASTrack = .text:0x8033E8FC; // type:function size:0xD4 scope:global align:4 +timeTask__Q28PSSystem14OuterParamTaskFR8JASTrackf = .text:0x8033E9D0; // type:function size:0x98 scope:global align:4 +task__Q28PSSystem14SimpleWaitTaskFR8JASTrack = .text:0x8033EA68; // type:function size:0x28 scope:global align:4 +__ct__Q28PSSystem11BankRandPrmFv = .text:0x8033EA90; // type:function size:0x74 scope:global align:4 +makeEntry__Q28PSSystem20TaskEntry_OuterParamFfUl = .text:0x8033EB04; // type:function size:0x80 scope:global align:4 +makeEntry__Q28PSSystem16TaskEntry_IdMaskFUc = .text:0x8033EB84; // type:function size:0x54 scope:global align:4 +makeEntry__Q28PSSystem16TaskEntry_PitModFffUl = .text:0x8033EBD8; // type:function size:0x110 scope:global align:4 +makeEntry__Q28PSSystem20TaskEntry_MuteVolumeFfUl = .text:0x8033ECE8; // type:function size:0xA4 scope:global align:4 +makeEntry__Q28PSSystem22TaskEntry_MuteOnVolumeFUl = .text:0x8033ED8C; // type:function size:0x8C scope:global align:4 +makeEntry__Q28PSSystem15TaskEntry_TempoFfUl = .text:0x8033EE18; // type:function size:0x80 scope:global align:4 +registerAnime__Q26PSGame16SoundCreatureMgrFP10J3DAnmBasePCc = .text:0x8033EE98; // type:function size:0x4 scope:global align:4 +avoidChk__Q29PSAutoBgm19MeloArr_RandomAvoidFRQ29PSAutoBgm10MeloArrArg = .text:0x8033EE9C; // type:function size:0x3C scope:global align:4 +isToAvoid__Q29PSAutoBgm10MeloArrMgrFRQ29PSAutoBgm10MeloArrArg = .text:0x8033EED8; // type:function size:0x138 scope:global align:4 +post__Q29PSAutoBgm11MeloArrBaseFRQ29PSAutoBgm10MeloArrArg = .text:0x8033F010; // type:function size:0x4 scope:weak align:4 +pre__Q29PSAutoBgm11MeloArrBaseFRQ29PSAutoBgm10MeloArrArg = .text:0x8033F014; // type:function size:0x4 scope:weak align:4 +directOn__Q29PSAutoBgm11MeloArrBaseFPQ29PSAutoBgm5Track = .text:0x8033F018; // type:function size:0xC scope:weak align:4 +directOff__Q29PSAutoBgm11MeloArrBaseFPQ29PSAutoBgm5Track = .text:0x8033F024; // type:function size:0xC scope:weak align:4 +__dt__Q29PSAutoBgm11MeloArrBaseFv = .text:0x8033F030; // type:function size:0x80 scope:weak align:4 +__dt__Q29PSAutoBgm19MeloArr_RandomAvoidFv = .text:0x8033F0B0; // type:function size:0x98 scope:weak align:4 +@16@__dt__Q29PSAutoBgm19MeloArr_RandomAvoidFv = .text:0x8033F148; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q29PSAutoBgm11MeloArrBaseFv = .text:0x8033F150; // type:function size:0x8 scope:weak align:4 +__ct__Q26PSGame5SeMgrFv = .text:0x8033F158; // type:function size:0x210 scope:global align:4 +playMessageVoice__Q26PSGame5SeMgrFUlb = .text:0x8033F368; // type:function size:0x120 scope:global align:4 +stopMessageVoice__Q26PSGame5SeMgrFv = .text:0x8033F488; // type:function size:0x3C scope:global align:4 +__ct__Q26PSGame5RappaFv = .text:0x8033F4C4; // type:function size:0x50 scope:global align:4 +init__Q26PSGame5RappaFUs = .text:0x8033F514; // type:function size:0xA0 scope:global align:4 +setId__Q26PSGame5RappaFUl = .text:0x8033F5B4; // type:function size:0x8 scope:global align:4 +__dt__Q26PSGame5RappaFv = .text:0x8033F5BC; // type:function size:0x98 scope:global align:4 +playRappa__Q26PSGame5RappaFbffPQ27JAInter6Object = .text:0x8033F654; // type:function size:0x170 scope:global align:4 +syncCpu_WaitChk__Q26PSGame5RappaFP8JASTrack = .text:0x8033F7C4; // type:function size:0x3C scope:global align:4 +syncCpu_TblNo__Q26PSGame5RappaFP8JASTrack = .text:0x8033F800; // type:function size:0x8 scope:global align:4 +__ct__Q26PSGame5SetSeFPCcss = .text:0x8033F808; // type:function size:0x78 scope:global align:4 +exec__Q26PSGame5SetSeFv = .text:0x8033F880; // type:function size:0x38 scope:global align:4 +startSound__Q26PSGame5SetSeFPQ27JAInter6ObjectUlUl = .text:0x8033F8B8; // type:function size:0xB8 scope:global align:4 +playSystemSe__Q26PSGame5SetSeFUlUl = .text:0x8033F970; // type:function size:0xA0 scope:global align:4 +startCounter__Q26PSGame5SetSeFUl = .text:0x8033FA10; // type:function size:0x84 scope:global align:4 +__ct__Q26PSGame6RandIdFv = .text:0x8033FA94; // type:function size:0xC scope:global align:4 +startSound__Q26PSGame6RandIdFPQ27JAInter6ObjectUlUlUl = .text:0x8033FAA0; // type:function size:0x1E8 scope:global align:4 +playSystemSe__Q26PSGame6RandIdFUlPP8JAISoundUlUl = .text:0x8033FC88; // type:function size:0x1B8 scope:global align:4 +setPanAndDolby__Q26PSGame9EnvSe_PanFP8JAISound = .text:0x8033FE40; // type:function size:0x74 scope:global align:4 +__ct__Q26PSGame17EnvSe_PerspectiveFUlf3Vec = .text:0x8033FEB4; // type:function size:0x60 scope:global align:4 +play__Q26PSGame17EnvSe_PerspectiveFv = .text:0x8033FF14; // type:function size:0x4C scope:global align:4 +__ct__Q26PSGame13EnvSe_AutoPanFUlfffff = .text:0x8033FF60; // type:function size:0x88 scope:global align:4 +setDirection__Q26PSGame13EnvSe_AutoPanFbb = .text:0x8033FFE8; // type:function size:0xC scope:global align:4 +setPanAndDolby__Q26PSGame13EnvSe_AutoPanFP8JAISound = .text:0x8033FFF4; // type:function size:0x11C scope:global align:4 +__ct__Q26PSGame25Builder_EvnSe_PerspectiveFQ29JGeometry8TBox3 = .text:0x80340110; // type:function size:0x21C scope:global align:4 +build__Q26PSGame25Builder_EvnSe_PerspectiveFfPQ28PSSystem8EnvSeMgr = .text:0x8034032C; // type:function size:0x2D0 scope:global align:4 +newSeObj__Q26PSGame25Builder_EvnSe_PerspectiveFUlf3Vec = .text:0x803405FC; // type:function size:0xAC scope:global align:4 +__dt__Q26PSGame25Builder_EvnSe_PerspectiveFv = .text:0x803406A8; // type:function size:0xC8 scope:global align:4 +__dt__Q28PSSystem30SingletonBaseFv = .text:0x80340770; // type:function size:0x50 scope:weak align:4 +onBuild__Q26PSGame25Builder_EvnSe_PerspectiveFPQ28PSSystem9EnvSeBase = .text:0x803407C0; // type:function size:0x4 scope:weak align:4 +getCastType__Q28PSSystem9EnvSeBaseFv = .text:0x803407C4; // type:function size:0xC scope:weak align:4 +setPanAndDolby__Q28PSSystem9EnvSeBaseFP8JAISound = .text:0x803407D0; // type:function size:0x4 scope:weak align:4 +__dt__Q26PSGame5SeMgrFv = .text:0x803407D4; // type:function size:0x64 scope:weak align:4 +__ct__Q28PSSystem9EnvSeBaseFUlf = .text:0x80340838; // type:function size:0xA4 scope:global align:4 +exec__Q28PSSystem9EnvSeBaseFv = .text:0x803408DC; // type:function size:0x35C scope:global align:4 +play__Q28PSSystem9EnvSeBaseFv = .text:0x80340C38; // type:function size:0x40 scope:global align:4 +setAllPauseFlag__Q28PSSystem8EnvSeMgrFUc = .text:0x80340C78; // type:function size:0x34 scope:global align:4 +on__Q28PSSystem8EnvSeMgrFv = .text:0x80340CAC; // type:function size:0x24 scope:global align:4 +on__Q28PSSystem8EnvSeMgrFUlb = .text:0x80340CD0; // type:function size:0x50 scope:global align:4 +off__Q28PSSystem8EnvSeMgrFv = .text:0x80340D20; // type:function size:0x24 scope:global align:4 +off__Q28PSSystem8EnvSeMgrFUlb = .text:0x80340D44; // type:function size:0x50 scope:global align:4 +reservePauseOff__Q28PSSystem8EnvSeMgrFv = .text:0x80340D94; // type:function size:0xC scope:global align:4 +setVolumeRequest__Q28PSSystem8EnvSeMgrFfUlUc = .text:0x80340DA0; // type:function size:0x70 scope:global align:4 +exec__Q28PSSystem8EnvSeMgrFv = .text:0x80340E10; // type:function size:0x80 scope:global align:4 +reservatorTask__Q28PSSystem24EnvSe_PauseOffReservatorFv = .text:0x80340E90; // type:function size:0x38 scope:global align:4 +__ct__Q38PSSystem9ClusterSe11PartInitArgFv = .text:0x80340EC8; // type:function size:0x20 scope:global align:4 +__ct__Q38PSSystem9ClusterSe4PartFv = .text:0x80340EE8; // type:function size:0x2C scope:global align:4 +callSe__Q38PSSystem9ClusterSe4PartFPQ27JAInter6Object = .text:0x80340F14; // type:function size:0x3C scope:global align:4 +__ct__Q38PSSystem9ClusterSe7FactoryFUc = .text:0x80340F50; // type:function size:0x60 scope:global align:4 +constructPart__Q38PSSystem9ClusterSe7FactoryFv = .text:0x80340FB0; // type:function size:0x74 scope:global align:4 +constructParts__Q38PSSystem9ClusterSe3MgrFRQ38PSSystem9ClusterSe7Factory = .text:0x80341024; // type:function size:0x2B4 scope:global align:4 +play__Q38PSSystem9ClusterSe3MgrFUcPQ27JAInter6Object = .text:0x803412D8; // type:function size:0x1A4 scope:global align:4 +__dt__Q28PSSystem9WaveSceneFv = .text:0x8034147C; // type:function size:0x7C scope:weak align:4 +loadWave__Q28PSSystem10WaveLoaderFPQ28PSSystem11TaskCheckerQ38PSSystem9WaveScene7AreaArg = .text:0x803414F8; // type:function size:0x40 scope:global align:4 +__ct__Q28PSSystem5SceneFUc = .text:0x80341538; // type:function size:0x118 scope:global align:4 +__dt__Q28PSSystem5SceneFv = .text:0x80341650; // type:function size:0xC4 scope:global align:4 +adaptChildScene__Q28PSSystem5SceneFPQ28PSSystem5Scene = .text:0x80341714; // type:function size:0xBC scope:global align:4 +adaptTo__Q28PSSystem5SceneFPPQ28PSSystem5Scene = .text:0x803417D0; // type:function size:0x70 scope:global align:4 +detach__Q28PSSystem5SceneFv = .text:0x80341840; // type:function size:0x58 scope:global align:4 +appendSeq__Q28PSSystem5SceneFPQ28PSSystem7SeqBase = .text:0x80341898; // type:function size:0x60 scope:global align:4 +startMainSeq__Q28PSSystem5SceneFv = .text:0x803418F8; // type:function size:0x3C scope:global align:4 +stopMainSeq__Q28PSSystem5SceneFUl = .text:0x80341934; // type:function size:0x3C scope:global align:4 +stopAllSound__Q28PSSystem5SceneFUl = .text:0x80341970; // type:function size:0x24 scope:global align:4 +scene1st__Q28PSSystem5SceneFPQ28PSSystem11TaskChecker = .text:0x80341994; // type:function size:0x88 scope:global align:4 +scene1stLoadSync__Q28PSSystem5SceneFv = .text:0x80341A1C; // type:function size:0x5C scope:global align:4 +exec__Q28PSSystem5SceneFv = .text:0x80341A78; // type:function size:0x4C scope:global align:4 +refreshCurEndScene__Q28PSSystem8SceneMgrFv = .text:0x80341AC4; // type:function size:0x34 scope:global align:4 +findSeq__Q28PSSystem8SceneMgrFP8JASTrack = .text:0x80341AF8; // type:function size:0x154 scope:global align:4 +getPlayingSeq__Q28PSSystem8SceneMgrFP8JASTrack = .text:0x80341C4C; // type:function size:0x154 scope:global align:4 +deleteScene__Q28PSSystem8SceneMgrFPQ28PSSystem5Scene = .text:0x80341DA0; // type:function size:0x440 scope:global align:4 +deleteCurrentScene__Q28PSSystem8SceneMgrFv = .text:0x803421E0; // type:function size:0x68 scope:global align:4 +getSeqMgr__Q28PSSystem5SceneFv = .text:0x80342248; // type:function size:0x8 scope:weak align:4 +getChildScene__Q28PSSystem5SceneFv = .text:0x80342250; // type:function size:0x8 scope:weak align:4 +PSGetSystemIFA__Fv = .text:0x80342258; // type:function size:0x48 scope:weak align:4 +PSGetSystemIF__Fv = .text:0x803422A0; // type:function size:0x8 scope:weak align:4 +proc__Q28PSSystem7BeatMgrFv = .text:0x803422A8; // type:function size:0x2C scope:global align:4 +update__Q28PSSystem12SeqTrackBaseFv = .text:0x803422D4; // type:function size:0x28 scope:global align:4 +init__Q28PSSystem12SeqTrackBaseFP8JASTrack = .text:0x803422FC; // type:function size:0x8 scope:global align:4 +getTaskEntryList__Q28PSSystem12SeqTrackBaseFv = .text:0x80342304; // type:function size:0x8 scope:global align:4 +__ct__Q28PSSystem12SeqTrackRootFv = .text:0x8034230C; // type:function size:0x3A4 scope:global align:4 +init__Q28PSSystem12SeqTrackRootFP8JASTrack = .text:0x803426B0; // type:function size:0x78 scope:global align:4 +initSwingRatio__Q28PSSystem12SeqTrackRootFv = .text:0x80342728; // type:function size:0x7C scope:global align:4 +pitchModulation__Q28PSSystem12SeqTrackRootFffUlPQ28PSSystem12DirectorBase = .text:0x803427A4; // type:function size:0x88 scope:global align:4 +tempoChange__Q28PSSystem12SeqTrackRootFfUlPQ28PSSystem12DirectorBase = .text:0x8034282C; // type:function size:0x78 scope:global align:4 +onStopSeq__Q28PSSystem12SeqTrackRootFv = .text:0x803428A4; // type:function size:0x24 scope:global align:4 +beatUpdate__Q28PSSystem12SeqTrackRootFv = .text:0x803428C8; // type:function size:0x9C scope:global align:4 +__ct__Q28PSSystem13SeqTrackChildFRCQ28PSSystem12SeqTrackRoot = .text:0x80342964; // type:function size:0x2EC scope:global align:4 +muteOffAndFadeIn__Q28PSSystem13SeqTrackChildFfUlPQ28PSSystem12DirectorBase = .text:0x80342C50; // type:function size:0x84 scope:global align:4 +fadeoutAndMute__Q28PSSystem13SeqTrackChildFUlPQ28PSSystem12DirectorBase = .text:0x80342CD4; // type:function size:0x74 scope:global align:4 +fade__Q28PSSystem13SeqTrackChildFfUlPQ28PSSystem12DirectorBase = .text:0x80342D48; // type:function size:0x78 scope:global align:4 +setIdMask__Q28PSSystem13SeqTrackChildFUcPQ28PSSystem12DirectorBase = .text:0x80342DC0; // type:function size:0x68 scope:global align:4 +onStopSeq__Q28PSSystem13SeqTrackChildFv = .text:0x80342E28; // type:function size:0x24 scope:global align:4 +task__Q28PSSystem10IdMaskTaskFR8JASTrack = .text:0x80342E4C; // type:function size:0x30 scope:weak align:4 +task__Q28PSSystem8MuteTaskFR8JASTrack = .text:0x80342E7C; // type:function size:0x38 scope:weak align:4 +__ct__Q28PSSystem12DirectorBaseFiPCc = .text:0x80342EB4; // type:function size:0x214 scope:global align:4 +isUnderDirection__Q28PSSystem12DirectorBaseFv = .text:0x803430C8; // type:function size:0x10 scope:global align:4 +setTrack__Q28PSSystem12DirectorBaseFUcPQ28PSSystem12SeqTrackBase = .text:0x803430D8; // type:function size:0xA4 scope:global align:4 +exec__Q28PSSystem12DirectorBaseFv = .text:0x8034317C; // type:function size:0x14C scope:global align:4 +directOn__Q28PSSystem12DirectorBaseFv = .text:0x803432C8; // type:function size:0x74 scope:global align:4 +directOnInner__Q28PSSystem12DirectorBaseFv = .text:0x8034333C; // type:function size:0xB0 scope:global align:4 +directOff__Q28PSSystem12DirectorBaseFv = .text:0x803433EC; // type:function size:0x80 scope:global align:4 +directOffInner__Q28PSSystem12DirectorBaseFv = .text:0x8034346C; // type:function size:0xB0 scope:global align:4 +doUpdateRequest__Q28PSSystem12DirectorBaseFv = .text:0x8034351C; // type:function size:0x4 scope:global align:4 +powerOn__Q28PSSystem12DirectorBaseFv = .text:0x80343520; // type:function size:0x40 scope:global align:4 +exec__Q28PSSystem15OneShotDirectorFv = .text:0x80343560; // type:function size:0x150 scope:global align:4 +doUpdateRequest__Q28PSSystem16SwitcherDirectorFv = .text:0x803436B0; // type:function size:0x198 scope:global align:4 +__ct__Q28PSSystem15DirectorMgrBaseFUc = .text:0x80343848; // type:function size:0x88 scope:global align:4 +initAndAdaptToBgm__Q28PSSystem15DirectorMgrBaseFRQ28PSSystem11DirectedBgm = .text:0x803438D0; // type:function size:0x12C scope:global align:4 +playInit__Q28PSSystem15DirectorMgrBaseFP8JASTrack = .text:0x803439FC; // type:function size:0x164 scope:global align:4 +exec__Q28PSSystem15DirectorMgrBaseFv = .text:0x80343B60; // type:function size:0x68 scope:global align:4 +off__Q28PSSystem15DirectorMgrBaseFPQ28PSSystem11DirectedBgm = .text:0x80343BC8; // type:function size:0x1BC scope:global align:4 +__ct__Q28PSSystem17DirectorCopyActorFPQ28PSSystem12DirectorBasePQ28PSSystem12DirectorBase = .text:0x80343D84; // type:function size:0x24 scope:global align:4 +exec__Q28PSSystem17DirectorCopyActorFPQ28PSSystem12DirectorBase = .text:0x80343DA8; // type:function size:0x120 scope:global align:4 +underDirection__Q28PSSystem12DirectorBaseFv = .text:0x80343EC8; // type:function size:0x4 scope:weak align:4 +execInner__Q28PSSystem12DirectorBaseFv = .text:0x80343ECC; // type:function size:0x4 scope:weak align:4 +onPlayInit__Q28PSSystem12DirectorBaseFP8JASTrack = .text:0x80343ED0; // type:function size:0x4 scope:weak align:4 +onDirectOn__Q28PSSystem12DirectorBaseFv = .text:0x80343ED4; // type:function size:0x4 scope:weak align:4 +onDirectOff__Q28PSSystem12DirectorBaseFv = .text:0x80343ED8; // type:function size:0x4 scope:weak align:4 +onUpdateFromSlaveD__Q28PSSystem17DirectorCopyActorFv = .text:0x80343EDC; // type:function size:0x4 scope:weak align:4 +onUpdateFromMasterD__Q28PSSystem17DirectorCopyActorFv = .text:0x80343EE0; // type:function size:0x4 scope:weak align:4 +__dt__Q28PSSystem15DirectorMgrBaseFv = .text:0x80343EE4; // type:function size:0x60 scope:weak align:4 +__dt__Q28PSSystem16SwitcherDirectorFv = .text:0x80343F44; // type:function size:0x70 scope:weak align:4 +__dt__Q28PSSystem15OneShotDirectorFv = .text:0x80343FB4; // type:function size:0x70 scope:weak align:4 +directOffTrack__Q28PSSystem15OneShotDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80344024; // type:function size:0x4 scope:weak align:4 +__dt__Q28PSSystem12DirectorBaseFv = .text:0x80344028; // type:function size:0x60 scope:weak align:4 +__ct__Q28Morimura12TDayEndCountFv = .text:0x80344088; // type:function size:0xE0 scope:global align:4 +__dt__Q28Morimura9TTestBaseFv = .text:0x80344168; // type:function size:0xAC scope:weak align:4 +doCreate__Q28Morimura12TDayEndCountFP10JKRArchive = .text:0x80344214; // type:function size:0x2EC scope:global align:4 +doUpdate__Q28Morimura12TDayEndCountFv = .text:0x80344500; // type:function size:0xA88 scope:global align:4 +doDraw__Q28Morimura12TDayEndCountFR8Graphics = .text:0x80344F88; // type:function size:0x78 scope:global align:4 +reset__Q28Morimura12TDayEndCountFv = .text:0x80345000; // type:function size:0x414 scope:global align:4 +__ct__Q28Morimura18TChallengeEndCountFv = .text:0x80345414; // type:function size:0x104 scope:global align:4 +__dt__Q28Morimura12TDayEndCountFv = .text:0x80345518; // type:function size:0xC4 scope:weak align:4 +doCreate__Q28Morimura18TChallengeEndCountFP10JKRArchive = .text:0x803455DC; // type:function size:0x40 scope:global align:4 +__ct__Q28Morimura20TChallengeEndCount1pFv = .text:0x8034561C; // type:function size:0x13C scope:global align:4 +__dt__Q28Morimura18TChallengeEndCountFv = .text:0x80345758; // type:function size:0xDC scope:weak align:4 +doUpdate__Q28Morimura20TChallengeEndCount1pFv = .text:0x80345834; // type:function size:0x34 scope:global align:4 +__ct__Q28Morimura20TChallengeEndCount2pFv = .text:0x80345868; // type:function size:0x13C scope:global align:4 +doUpdate__Q28Morimura20TChallengeEndCount2pFv = .text:0x803459A4; // type:function size:0x30 scope:global align:4 +doCreateObj__Q28Morimura15TCountDownSceneFP10JKRArchive = .text:0x803459D4; // type:function size:0x48C scope:global align:4 +doStart__Q28Morimura15TCountDownSceneFPQ26Screen13StartSceneArg = .text:0x80345E60; // type:function size:0x64 scope:global align:4 +getResName__Q28Morimura15TCountDownSceneCFv = .text:0x80345EC4; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura15TCountDownSceneFv = .text:0x80345ED0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura15TCountDownSceneFv = .text:0x80345ED8; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura15TCountDownSceneFv = .text:0x80345EE4; // type:function size:0x14 scope:weak align:4 +doStart__Q28Morimura12TDayEndCountFPCQ26Screen13StartSceneArg = .text:0x80345EF8; // type:function size:0x38 scope:weak align:4 +getDispMemberBase__Q28Morimura12TDayEndCountFv = .text:0x80345F30; // type:function size:0x34 scope:weak align:4 +doUpdateFadeinFinish__Q28Morimura9TTestBaseFv = .text:0x80345F64; // type:function size:0xC scope:weak align:4 +__dt__Q28Morimura20TChallengeEndCount2pFv = .text:0x80345F70; // type:function size:0xF4 scope:weak align:4 +__dt__Q28Morimura20TChallengeEndCount1pFv = .text:0x80346064; // type:function size:0xF4 scope:weak align:4 +@24@__dt__Q28Morimura12TDayEndCountFv = .text:0x80346158; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura18TChallengeEndCountFv = .text:0x80346160; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura20TChallengeEndCount1pFv = .text:0x80346168; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura20TChallengeEndCount2pFv = .text:0x80346170; // type:function size:0x8 scope:weak align:4 +drawSelf__Q28Morimura15THuWhitePaneSetFffPA3_A4_f = .text:0x80346178; // type:function size:0x224 scope:global align:4 +gxSet__Q28Morimura15THuWhitePaneSetFv = .text:0x8034639C; // type:function size:0x94 scope:global align:4 +__ct__Q28Morimura10THurryUp2DFv = .text:0x80346430; // type:function size:0xB0 scope:global align:4 +__ct__Q38Morimura10THurryUp2D11TStateParamFv = .text:0x803464E0; // type:function size:0x24 scope:weak align:4 +doCreate__Q28Morimura10THurryUp2DFP10JKRArchive = .text:0x80346504; // type:function size:0x390 scope:global align:4 +doUpdate__Q28Morimura10THurryUp2DFv = .text:0x80346894; // type:function size:0x18C scope:global align:4 +doDraw__Q28Morimura10THurryUp2DFR8Graphics = .text:0x80346A20; // type:function size:0x40C scope:global align:4 +doStart__Q28Morimura10THurryUp2DFPCQ26Screen13StartSceneArg = .text:0x80346E2C; // type:function size:0x5C scope:global align:4 +init__Q28Morimura10THurryUp2DFv = .text:0x80346E88; // type:function size:0x4C0 scope:global align:4 +move__Q28Morimura10THurryUp2DFv = .text:0x80347348; // type:function size:0x2CC scope:global align:4 +scaleUp1__Q28Morimura10THurryUp2DFv = .text:0x80347614; // type:function size:0x168 scope:global align:4 +colorUp__Q28Morimura10THurryUp2DFv = .text:0x8034777C; // type:function size:0x1B0 scope:global align:4 +scaleUp2__Q28Morimura10THurryUp2DFv = .text:0x8034792C; // type:function size:0x240 scope:global align:4 +changeState__Q28Morimura10THurryUp2DFif = .text:0x80347B6C; // type:function size:0x254 scope:global align:4 +getDispMemberBase__Q28Morimura10THurryUp2DFv = .text:0x80347DC0; // type:function size:0x34 scope:weak align:4 +__dt__Q28Morimura10THurryUp2DFv = .text:0x80347DF4; // type:function size:0xC4 scope:weak align:4 +__dt__Q28Morimura15THuWhitePaneSetFv = .text:0x80347EB8; // type:function size:0x60 scope:weak align:4 +__sinit_hurryUp2D_cpp = .text:0x80347F18; // type:function size:0x28 scope:local align:4 +@24@__dt__Q28Morimura10THurryUp2DFv = .text:0x80347F40; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura13TGameOverBaseFPc = .text:0x80347F48; // type:function size:0x6C scope:global align:4 +doUpdate__Q28Morimura13TGameOverBaseFv = .text:0x80347FB4; // type:function size:0xF0 scope:global align:4 +doDraw__Q28Morimura13TGameOverBaseFR8Graphics = .text:0x803480A4; // type:function size:0x240 scope:global align:4 +doCreate__Q28Morimura11TGameOver2DFP10JKRArchive = .text:0x803482E4; // type:function size:0xAC scope:global align:4 +doCreate__Q28Morimura12TOrimaDown2DFP10JKRArchive = .text:0x80348390; // type:function size:0xA0 scope:global align:4 +doCreate__Q28Morimura11TLujiDown2DFP10JKRArchive = .text:0x80348430; // type:function size:0xA0 scope:global align:4 +doCreate__Q28Morimura16TPresidentDown2DFP10JKRArchive = .text:0x803484D0; // type:function size:0xA0 scope:global align:4 +doCreate__Q28Morimura13TPikminDown2DFP10JKRArchive = .text:0x80348570; // type:function size:0xA0 scope:global align:4 +__ct__Q28Morimura15TGameOverScreenFP10JKRArchivei = .text:0x80348610; // type:function size:0x24 scope:global align:4 +init__Q28Morimura15TGameOverScreenFPCcUl = .text:0x80348634; // type:function size:0x218 scope:global align:4 +addAnim__Q28Morimura15TGameOverScreenFPc = .text:0x8034884C; // type:function size:0xD0 scope:global align:4 +update__Q28Morimura15TGameOverScreenFv = .text:0x8034891C; // type:function size:0x8C scope:global align:4 +setPosY__Q28Morimura15TGameOverScreenFf = .text:0x803489A8; // type:function size:0x24 scope:global align:4 +draw__Q28Morimura15TGameOverScreenFR8GraphicsP13J2DPerspGraph = .text:0x803489CC; // type:function size:0x38 scope:global align:4 +orgdraw__Q28Morimura15TGameOverScreenFR8GraphicsP13J2DPerspGraph = .text:0x80348A04; // type:function size:0x38 scope:global align:4 +setFadeAlpha__Q28Morimura15TGameOverScreenFUc = .text:0x80348A3C; // type:function size:0x184 scope:global align:4 +__dt__Q28Morimura10TGXSetPaneFv = .text:0x80348BC0; // type:function size:0x60 scope:weak align:4 +drawSelf__Q28Morimura10TGXSetPaneFffPA3_A4_f = .text:0x80348C20; // type:function size:0x2C scope:weak align:4 +__dt__Q28Morimura13TPikminDown2DFv = .text:0x80348C4C; // type:function size:0xDC scope:weak align:4 +getDispMemberBase__Q28Morimura13TGameOverBaseFv = .text:0x80348D28; // type:function size:0x8 scope:weak align:4 +doUpdateFadeout__Q28Morimura13TGameOverBaseFv = .text:0x80348D30; // type:function size:0x34 scope:weak align:4 +__dt__Q28Morimura16TPresidentDown2DFv = .text:0x80348D64; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura11TLujiDown2DFv = .text:0x80348E40; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura12TOrimaDown2DFv = .text:0x80348F1C; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura11TGameOver2DFv = .text:0x80348FF8; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura13TGameOverBaseFv = .text:0x803490D4; // type:function size:0xC4 scope:weak align:4 +@24@__dt__Q28Morimura13TGameOverBaseFv = .text:0x80349198; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura11TGameOver2DFv = .text:0x803491A0; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura12TOrimaDown2DFv = .text:0x803491A8; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura11TLujiDown2DFv = .text:0x803491B0; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura16TPresidentDown2DFv = .text:0x803491B8; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura13TPikminDown2DFv = .text:0x803491C0; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura9TTestBaseFPc = .text:0x803491C8; // type:function size:0x84 scope:global align:4 +doStart__Q28Morimura9TTestBaseFPCQ26Screen13StartSceneArg = .text:0x8034924C; // type:function size:0x20 scope:global align:4 +doEnd__Q28Morimura9TTestBaseFPCQ26Screen11EndSceneArg = .text:0x8034926C; // type:function size:0x10 scope:global align:4 +doUpdateFadein__Q28Morimura9TTestBaseFv = .text:0x8034927C; // type:function size:0xB0 scope:global align:4 +doUpdateFinish__Q28Morimura9TTestBaseFv = .text:0x8034932C; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q28Morimura9TTestBaseFv = .text:0x80349338; // type:function size:0xB8 scope:global align:4 +@24@__dt__Q28Morimura9TTestBaseFv = .text:0x803493F0; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Bomb3FSMFPQ24Game9EnemyBase = .text:0x803493F8; // type:function size:0x78 scope:global align:4 +__ct__Q34Game4Bomb9StateWaitFi = .text:0x80349470; // type:function size:0x3C scope:global align:4 +init__Q34Game4Bomb9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803494AC; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Bomb9StateWaitFPQ24Game9EnemyBase = .text:0x80349508; // type:function size:0x148 scope:global align:4 +__ct__Q34Game4Bomb9StateBombFi = .text:0x80349650; // type:function size:0x3C scope:global align:4 +init__Q34Game4Bomb9StateBombFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034968C; // type:function size:0x60 scope:global align:4 +exec__Q34Game4Bomb9StateBombFPQ24Game9EnemyBase = .text:0x803496EC; // type:function size:0x5C4 scope:global align:4 +create__Q23efx9TBombrockFPQ23efx3Arg = .text:0x80349CB0; // type:function size:0x84 scope:weak align:4 +forceKill__Q23efx9TBombrockFv = .text:0x80349D34; // type:function size:0x4 scope:weak align:4 +fade__Q23efx9TBombrockFv = .text:0x80349D38; // type:function size:0x4 scope:weak align:4 +__sinit_bombState_cpp = .text:0x80349D3C; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game4Bomb14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80349D64; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Bomb14ProperAnimatorFi = .text:0x80349D6C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Bomb14ProperAnimatorFv = .text:0x80349D74; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Bomb14ProperAnimatorFv = .text:0x80349DD0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Bomb3MgrFiUc = .text:0x80349DD8; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Bomb3MgrFv = .text:0x80349E28; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Bomb5ParmsFv = .text:0x80349E70; // type:function size:0x150 scope:weak align:4 +birth__Q34Game4Bomb3MgrFRQ24Game13EnemyBirthArg = .text:0x80349FC0; // type:function size:0x20 scope:global align:4 +__dt__Q34Game4Bomb3MgrFv = .text:0x80349FE0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Bomb3MgrFv = .text:0x8034A090; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game4Bomb3MgrFi = .text:0x8034A098; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Bomb3ObjFv = .text:0x8034A0F8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Bomb3MgrFi = .text:0x8034A1B4; // type:function size:0x10 scope:weak align:4 +read__Q34Game4Bomb5ParmsFR6Stream = .text:0x8034A1C4; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game4Bomb3MgrFv = .text:0x8034A214; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game4Bomb3ObjFv = .text:0x8034A21C; // type:function size:0x20 scope:global align:4 +onStartCapture__Q34Game4Bomb3ObjFv = .text:0x8034A23C; // type:function size:0xEC scope:global align:4 +onEndCapture__Q34Game4Bomb3ObjFv = .text:0x8034A328; // type:function size:0x48 scope:global align:4 +birth__Q34Game4Bomb3ObjFR10Vector3f = .text:0x8034A370; // type:function size:0x20 scope:global align:4 +onInit__Q34Game4Bomb3ObjFPQ24Game15CreatureInitArg = .text:0x8034A390; // type:function size:0x168 scope:global align:4 +__ct__Q34Game4Bomb3ObjFv = .text:0x8034A4F8; // type:function size:0x1DC scope:global align:4 +setFSM__Q34Game4Bomb3ObjFPQ34Game4Bomb3FSM = .text:0x8034A6D4; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game4Bomb3ObjFv = .text:0x8034A720; // type:function size:0xD4 scope:global align:4 +doDirectDraw__Q34Game4Bomb3ObjFR8Graphics = .text:0x8034A7F4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Bomb3ObjFR8Graphics = .text:0x8034A7F8; // type:function size:0x4 scope:global align:4 +doEntry__Q34Game4Bomb3ObjFv = .text:0x8034A7FC; // type:function size:0x2C scope:global align:4 +doAnimationCullingOff__Q34Game4Bomb3ObjFv = .text:0x8034A828; // type:function size:0x1F4 scope:global align:4 +doAnimationCullingOn__Q34Game4Bomb3ObjFv = .text:0x8034AA1C; // type:function size:0x4C scope:global align:4 +doSimulation__Q34Game4Bomb3ObjFf = .text:0x8034AA68; // type:function size:0x134 scope:global align:4 +getShadowParam__Q34Game4Bomb3ObjFRQ24Game11ShadowParam = .text:0x8034AB9C; // type:function size:0x50 scope:global align:4 +needShadow__Q34Game4Bomb3ObjFv = .text:0x8034ABEC; // type:function size:0x48 scope:global align:4 +doFinishStoneState__Q34Game4Bomb3ObjFv = .text:0x8034AC34; // type:function size:0x80 scope:global align:4 +doStartStoneState__Q34Game4Bomb3ObjFv = .text:0x8034ACB4; // type:function size:0x48 scope:global align:4 +onKill__Q34Game4Bomb3ObjFPQ24Game15CreatureKillArg = .text:0x8034ACFC; // type:function size:0x84 scope:global align:4 +doStartMovie__Q34Game4Bomb3ObjFv = .text:0x8034AD80; // type:function size:0x30 scope:global align:4 +doEndMovie__Q34Game4Bomb3ObjFv = .text:0x8034ADB0; // type:function size:0x30 scope:global align:4 +damageCallBack__Q34Game4Bomb3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8034ADE0; // type:function size:0x74 scope:global align:4 +bombCallBack__Q34Game4Bomb3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8034AE54; // type:function size:0x160 scope:global align:4 +pressCallBack__Q34Game4Bomb3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8034AFB4; // type:function size:0x8 scope:global align:4 +bounceCallback__Q34Game4Bomb3ObjFPQ23Sys8Triangle = .text:0x8034AFBC; // type:function size:0x78 scope:global align:4 +collisionCallback__Q34Game4Bomb3ObjFRQ24Game9CollEvent = .text:0x8034B034; // type:function size:0x9C scope:global align:4 +forceBomb__Q34Game4Bomb3ObjFv = .text:0x8034B0D0; // type:function size:0x60 scope:global align:4 +bombEffInWater__Q34Game4Bomb3ObjFv = .text:0x8034B130; // type:function size:0x28 scope:global align:4 +canEat__Q34Game4Bomb3ObjFv = .text:0x8034B158; // type:function size:0x5C scope:global align:4 +isAnimStart__Q34Game4Bomb3ObjFv = .text:0x8034B1B4; // type:function size:0xD8 scope:global align:4 +__dt__Q23efx14TBombrockLightFv = .text:0x8034B28C; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game4Bomb3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8034B328; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game4Bomb3ObjFv = .text:0x8034B32C; // type:function size:0x40 scope:weak align:4 +isUnderground__Q34Game4Bomb3ObjFv = .text:0x8034B36C; // type:function size:0x48 scope:weak align:4 +getEnemyTypeID__Q34Game4Bomb3ObjFv = .text:0x8034B3B4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TBombrockLightFv = .text:0x8034B3BC; // type:function size:0x8 scope:weak align:4 +init__Q34Game3Egg3FSMFPQ24Game9EnemyBase = .text:0x8034B3C4; // type:function size:0x54 scope:global align:4 +__ct__Q34Game3Egg9StateWaitFi = .text:0x8034B418; // type:function size:0x3C scope:global align:4 +init__Q34Game3Egg9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034B454; // type:function size:0x40 scope:global align:4 +exec__Q34Game3Egg9StateWaitFPQ24Game9EnemyBase = .text:0x8034B494; // type:function size:0x1A8 scope:global align:4 +setAnimMgr__Q34Game3Egg14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8034B63C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game3Egg14ProperAnimatorFi = .text:0x8034B644; // type:function size:0x8 scope:global align:4 +__dt__Q34Game3Egg14ProperAnimatorFv = .text:0x8034B64C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game3Egg14ProperAnimatorFv = .text:0x8034B6A8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Egg3MgrFiUc = .text:0x8034B6B0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game3Egg3MgrFv = .text:0x8034B700; // type:function size:0x48 scope:global align:4 +__ct__Q34Game3Egg5ParmsFv = .text:0x8034B748; // type:function size:0x18C scope:weak align:4 +birth__Q34Game3Egg3MgrFRQ24Game13EnemyBirthArg = .text:0x8034B8D4; // type:function size:0x20 scope:global align:4 +__dt__Q34Game3Egg3MgrFv = .text:0x8034B8F4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game3Egg3MgrFv = .text:0x8034B9A4; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game3Egg3MgrFi = .text:0x8034B9AC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game3Egg3ObjFv = .text:0x8034BA0C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game3Egg3MgrFi = .text:0x8034BAC8; // type:function size:0x10 scope:weak align:4 +read__Q34Game3Egg5ParmsFR6Stream = .text:0x8034BAD8; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game3Egg3MgrFv = .text:0x8034BB28; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game3Egg3ObjFv = .text:0x8034BB30; // type:function size:0x20 scope:global align:4 +birth__Q34Game3Egg3ObjFR10Vector3f = .text:0x8034BB50; // type:function size:0x20 scope:global align:4 +onInit__Q34Game3Egg3ObjFPQ24Game15CreatureInitArg = .text:0x8034BB70; // type:function size:0x150 scope:global align:4 +__ct__Q34Game3Egg3ObjFv = .text:0x8034BCC0; // type:function size:0x138 scope:global align:4 +setFSM__Q34Game3Egg3ObjFPQ34Game3Egg3FSM = .text:0x8034BDF8; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game3Egg3ObjFv = .text:0x8034BE44; // type:function size:0x6C scope:global align:4 +doDirectDraw__Q34Game3Egg3ObjFR8Graphics = .text:0x8034BEB0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game3Egg3ObjFR8Graphics = .text:0x8034BEB4; // type:function size:0x20 scope:global align:4 +doSimulation__Q34Game3Egg3ObjFf = .text:0x8034BED4; // type:function size:0x4C scope:global align:4 +doAnimationCullingOff__Q34Game3Egg3ObjFv = .text:0x8034BF20; // type:function size:0x128 scope:global align:4 +pressCallBack__Q34Game3Egg3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8034C048; // type:function size:0x8 scope:global align:4 +bounceCallback__Q34Game3Egg3ObjFPQ23Sys8Triangle = .text:0x8034C050; // type:function size:0x54 scope:global align:4 +collisionCallback__Q34Game3Egg3ObjFRQ24Game9CollEvent = .text:0x8034C0A4; // type:function size:0x90 scope:global align:4 +getShadowParam__Q34Game3Egg3ObjFRQ24Game11ShadowParam = .text:0x8034C134; // type:function size:0x50 scope:global align:4 +needShadow__Q34Game3Egg3ObjFv = .text:0x8034C184; // type:function size:0x48 scope:global align:4 +onStartCapture__Q34Game3Egg3ObjFv = .text:0x8034C1CC; // type:function size:0xA0 scope:global align:4 +onEndCapture__Q34Game3Egg3ObjFv = .text:0x8034C26C; // type:function size:0x40 scope:global align:4 +genItem__Q34Game3Egg3ObjFv = .text:0x8034C2AC; // type:function size:0x5F4 scope:global align:4 +setInitialSetting__Q34Game3Egg3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8034C8A0; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game3Egg3ObjFv = .text:0x8034C8A4; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game3Egg3ObjFv = .text:0x8034C8B4; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game3Egg3ObjFv = .text:0x8034C8BC; // type:function size:0x8 scope:weak align:4 +@708@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8034C8C4; // type:function size:0x14 scope:weak align:4 +@708@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034C8D8; // type:function size:0x14 scope:weak align:4 +@708@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034C8EC; // type:function size:0x14 scope:weak align:4 +@708@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034C900; // type:function size:0x14 scope:weak align:4 +@708@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034C914; // type:function size:0x14 scope:weak align:4 +@708@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8034C928; // type:function size:0x14 scope:weak align:4 +init__Q34Game13PanModokiBase3FSMFPQ24Game9EnemyBase = .text:0x8034C93C; // type:function size:0x1BC scope:global align:4 +__ct__Q34Game13PanModokiBase9StateDeadFi = .text:0x8034CAF8; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034CB34; // type:function size:0x90 scope:global align:4 +exec__Q34Game13PanModokiBase9StateDeadFPQ24Game9EnemyBase = .text:0x8034CBC4; // type:function size:0x58 scope:global align:4 +__ct__Q34Game13PanModokiBase9StateWalkFi = .text:0x8034CC1C; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034CC58; // type:function size:0x70 scope:global align:4 +exec__Q34Game13PanModokiBase9StateWalkFPQ24Game9EnemyBase = .text:0x8034CCC8; // type:function size:0x10C scope:global align:4 +__ct__Q34Game13PanModokiBase9StateBackFi = .text:0x8034CDD4; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateBackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034CE10; // type:function size:0x104 scope:global align:4 +exec__Q34Game13PanModokiBase9StateBackFPQ24Game9EnemyBase = .text:0x8034CF14; // type:function size:0x4D0 scope:global align:4 +__ct__Q34Game13PanModokiBase11StatePulledFi = .text:0x8034D3E4; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034D420; // type:function size:0xB0 scope:global align:4 +exec__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBase = .text:0x8034D4D0; // type:function size:0x4CC scope:global align:4 +cleanup__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBase = .text:0x8034D99C; // type:function size:0x24 scope:global align:4 +__ct__Q34Game13PanModokiBase11StateAppearFi = .text:0x8034D9C0; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034D9FC; // type:function size:0x70 scope:global align:4 +appearRumble__Q34Game13PanModokiBase3ObjFv = .text:0x8034DA6C; // type:function size:0x4 scope:weak align:4 +exec__Q34Game13PanModokiBase11StateAppearFPQ24Game9EnemyBase = .text:0x8034DA70; // type:function size:0x64 scope:global align:4 +__ct__Q34Game13PanModokiBase9StateHideFi = .text:0x8034DAD4; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034DB10; // type:function size:0x68 scope:global align:4 +exec__Q34Game13PanModokiBase9StateHideFPQ24Game9EnemyBase = .text:0x8034DB78; // type:function size:0x118 scope:global align:4 +hideRumble__Q34Game13PanModokiBase3ObjFv = .text:0x8034DC90; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game13PanModokiBase11StateDamageFi = .text:0x8034DC94; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034DCD0; // type:function size:0x10C scope:global align:4 +exec__Q34Game13PanModokiBase11StateDamageFPQ24Game9EnemyBase = .text:0x8034DDDC; // type:function size:0x80 scope:global align:4 +__ct__Q34Game13PanModokiBase9StateWaitFi = .text:0x8034DE5C; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034DE98; // type:function size:0x70 scope:global align:4 +exec__Q34Game13PanModokiBase9StateWaitFPQ24Game9EnemyBase = .text:0x8034DF08; // type:function size:0xF4 scope:global align:4 +__ct__Q34Game13PanModokiBase10StateStickFi = .text:0x8034DFFC; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase10StateStickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034E038; // type:function size:0x108 scope:global align:4 +exec__Q34Game13PanModokiBase10StateStickFPQ24Game9EnemyBase = .text:0x8034E140; // type:function size:0x3BC scope:global align:4 +__ct__Q34Game13PanModokiBase11StateSuckedFi = .text:0x8034E4FC; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StateSuckedFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034E538; // type:function size:0x6C scope:global align:4 +exec__Q34Game13PanModokiBase11StateSuckedFPQ24Game9EnemyBase = .text:0x8034E5A4; // type:function size:0xC scope:global align:4 +__ct__Q34Game13PanModokiBase13StateCarryEndFi = .text:0x8034E5B0; // type:function size:0x40 scope:global align:4 +init__Q34Game13PanModokiBase13StateCarryEndFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034E5F0; // type:function size:0x6C scope:global align:4 +exec__Q34Game13PanModokiBase13StateCarryEndFPQ24Game9EnemyBase = .text:0x8034E65C; // type:function size:0x2F0 scope:global align:4 +setAnimMgr__Q34Game13PanModokiBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8034E94C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game13PanModokiBase14ProperAnimatorFi = .text:0x8034E954; // type:function size:0x8 scope:global align:4 +__dt__Q34Game13PanModokiBase14ProperAnimatorFv = .text:0x8034E95C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game13PanModokiBase14ProperAnimatorFv = .text:0x8034E9B8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9PanModoki3MgrFiUc = .text:0x8034E9C0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9PanModoki3MgrFv = .text:0x8034EA10; // type:function size:0x48 scope:global align:4 +__ct__Q34Game13PanModokiBase5ParmsFv = .text:0x8034EA58; // type:function size:0x64 scope:weak align:4 +__ct__Q44Game13PanModokiBase5Parms11ProperParmsFv = .text:0x8034EABC; // type:function size:0x2B4 scope:weak align:4 +birth__Q34Game9PanModoki3MgrFRQ24Game13EnemyBirthArg = .text:0x8034ED70; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11OoPanModoki3MgrFiUc = .text:0x8034ED90; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11OoPanModoki3MgrFv = .text:0x8034EDE0; // type:function size:0x48 scope:global align:4 +birth__Q34Game11OoPanModoki3MgrFRQ24Game13EnemyBirthArg = .text:0x8034EE28; // type:function size:0x20 scope:global align:4 +doLoadBmd__Q34Game11OoPanModoki3MgrFPv = .text:0x8034EE48; // type:function size:0x2C scope:global align:4 +loadModelData__Q34Game11OoPanModoki3MgrFv = .text:0x8034EE74; // type:function size:0x68 scope:global align:4 +__dt__Q34Game11OoPanModoki3MgrFv = .text:0x8034EEDC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11OoPanModoki3MgrFv = .text:0x8034EF8C; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game11OoPanModoki3MgrFi = .text:0x8034EF94; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11OoPanModoki3ObjFv = .text:0x8034EFF4; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11OoPanModoki3MgrFi = .text:0x8034F0E0; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game9PanModoki3MgrFv = .text:0x8034F0F0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9PanModoki3MgrFv = .text:0x8034F1A0; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game9PanModoki3MgrFi = .text:0x8034F1A8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game9PanModoki3ObjFv = .text:0x8034F208; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game9PanModoki3ObjFv = .text:0x8034F2F4; // type:function size:0x90 scope:weak align:4 +__dt__Q34Game13PanModokiBase3ObjFv = .text:0x8034F384; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9PanModoki3MgrFi = .text:0x8034F440; // type:function size:0x10 scope:weak align:4 +canTarget__Q34Game9PanModoki3ObjFii = .text:0x8034F450; // type:function size:0x18 scope:weak align:4 +getDownSmokeScale__Q34Game9PanModoki3ObjFv = .text:0x8034F468; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game9PanModoki3ObjFv = .text:0x8034F470; // type:function size:0x8 scope:weak align:4 +setInitialSetting__Q34Game13PanModokiBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8034F478; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game13PanModokiBase3ObjFR10Vector3R10Vector3 = .text:0x8034F47C; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game13PanModokiBase3ObjFv = .text:0x8034F480; // type:function size:0xC scope:weak align:4 +isUnderground__Q34Game13PanModokiBase3ObjFv = .text:0x8034F48C; // type:function size:0x14 scope:weak align:4 +ignoreAtari__Q34Game13PanModokiBase3ObjFPQ24Game8Creature = .text:0x8034F4A0; // type:function size:0x14 scope:weak align:4 +getMouthSlots__Q34Game13PanModokiBase3ObjFv = .text:0x8034F4B4; // type:function size:0x8 scope:weak align:4 +setFSM__Q34Game13PanModokiBase3ObjFPQ34Game13PanModokiBase3FSM = .text:0x8034F4BC; // type:function size:0x4C scope:weak align:4 +read__Q34Game13PanModokiBase5ParmsFR6Stream = .text:0x8034F508; // type:function size:0x50 scope:weak align:4 +@968@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8034F558; // type:function size:0x14 scope:weak align:4 +@968@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034F56C; // type:function size:0x14 scope:weak align:4 +@968@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034F580; // type:function size:0x14 scope:weak align:4 +@968@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034F594; // type:function size:0x14 scope:weak align:4 +@968@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034F5A8; // type:function size:0x14 scope:weak align:4 +@968@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8034F5BC; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q34Game9PanModoki3MgrFv = .text:0x8034F5D0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11OoPanModoki3MgrFv = .text:0x8034F5D8; // type:function size:0x8 scope:weak align:4 +actEnemy__Q24Game18InteractSuckFinishFPQ24Game9EnemyBase = .text:0x8034F5E0; // type:function size:0x70 scope:global align:4 +setParameters__Q34Game13PanModokiBase3ObjFv = .text:0x8034F650; // type:function size:0x68 scope:global align:4 +birth__Q34Game13PanModokiBase3ObjFR10Vector3f = .text:0x8034F6B8; // type:function size:0x120 scope:global align:4 +onInit__Q34Game13PanModokiBase3ObjFPQ24Game15CreatureInitArg = .text:0x8034F7D8; // type:function size:0x1DC scope:global align:4 +__ct__Q34Game13PanModokiBase3ObjFv = .text:0x8034F9B4; // type:function size:0x2A0 scope:global align:4 +doUpdate__Q34Game13PanModokiBase3ObjFv = .text:0x8034FC54; // type:function size:0x34 scope:global align:4 +doAnimation__Q34Game13PanModokiBase3ObjFv = .text:0x8034FC88; // type:function size:0xB4 scope:global align:4 +doAnimationStick__Q34Game13PanModokiBase3ObjFv = .text:0x8034FD3C; // type:function size:0x318 scope:global align:4 +updateCaptureMatrix__Q34Game13PanModokiBase3ObjFv = .text:0x80350054; // type:function size:0x27C scope:global align:4 +doDirectDraw__Q34Game13PanModokiBase3ObjFR8Graphics = .text:0x803502D0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game13PanModokiBase3ObjFR8Graphics = .text:0x803502D4; // type:function size:0x20 scope:global align:4 +damageCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803502F4; // type:function size:0x30 scope:global align:4 +pressCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80350324; // type:function size:0x1BC scope:global align:4 +hipdropCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803504E0; // type:function size:0x2C scope:global align:4 +collisionCallback__Q34Game13PanModokiBase3ObjFRQ24Game9CollEvent = .text:0x8035050C; // type:function size:0xAC scope:global align:4 +outWaterCallback__Q34Game13PanModokiBase3ObjFv = .text:0x803505B8; // type:function size:0x44 scope:global align:4 +inWaterCallback__Q34Game13PanModokiBase3ObjFPQ24Game8WaterBox = .text:0x803505FC; // type:function size:0x34 scope:global align:4 +bounceCallback__Q34Game13PanModokiBase3ObjFPQ23Sys8Triangle = .text:0x80350630; // type:function size:0x54 scope:global align:4 +damageRumble__Q34Game13PanModokiBase3ObjFv = .text:0x80350684; // type:function size:0x50 scope:global align:4 +doSimulation__Q34Game13PanModokiBase3ObjFf = .text:0x803506D4; // type:function size:0x21C scope:global align:4 +getShadowParam__Q34Game13PanModokiBase3ObjFRQ24Game11ShadowParam = .text:0x803508F0; // type:function size:0x88 scope:global align:4 +needShadow__Q34Game13PanModokiBase3ObjFv = .text:0x80350978; // type:function size:0x58 scope:global align:4 +startCarcassMotion__Q34Game13PanModokiBase3ObjFv = .text:0x803509D0; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game13PanModokiBase3ObjFv = .text:0x803509F8; // type:function size:0x8C scope:global align:4 +onKill__Q34Game13PanModokiBase3ObjFPQ24Game15CreatureKillArg = .text:0x80350A84; // type:function size:0x44 scope:global align:4 +doStartMovie__Q34Game13PanModokiBase3ObjFv = .text:0x80350AC8; // type:function size:0x50 scope:global align:4 +doEndMovie__Q34Game13PanModokiBase3ObjFv = .text:0x80350B18; // type:function size:0x50 scope:global align:4 +doStartStoneState__Q34Game13PanModokiBase3ObjFv = .text:0x80350B68; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game13PanModokiBase3ObjFv = .text:0x80350BBC; // type:function size:0xAC scope:global align:4 +initWalkSmokeEffect__Q34Game13PanModokiBase3ObjFv = .text:0x80350C68; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game13PanModokiBase3ObjFv = .text:0x80350CCC; // type:function size:0x8 scope:global align:4 +findNextRoutePoint__Q34Game13PanModokiBase3ObjFb = .text:0x80350CD4; // type:function size:0x4B4 scope:global align:4 +isCarryToGoal__Q34Game13PanModokiBase3ObjFv = .text:0x80351188; // type:function size:0x274 scope:global align:4 +walkFunc__Q34Game13PanModokiBase3ObjFv = .text:0x803513FC; // type:function size:0x2CC scope:global align:4 +isReachToGoal__Q34Game13PanModokiBase3ObjFf = .text:0x803516C8; // type:function size:0x184 scope:global align:4 +canBack__Q34Game13PanModokiBase3ObjFv = .text:0x8035184C; // type:function size:0x74 scope:global align:4 +findNearestPellet__Q34Game13PanModokiBase3ObjFv = .text:0x803518C0; // type:function size:0x344 scope:global align:4 +getCarryTarget__Q34Game13PanModokiBase3ObjFv = .text:0x80351C04; // type:function size:0x68 scope:global align:4 +releaseCarryTarget__Q34Game13PanModokiBase3ObjFv = .text:0x80351C6C; // type:function size:0x1E4 scope:global align:4 +checkNearHomeGraphIndex__Q34Game13PanModokiBase3ObjFv = .text:0x80351E50; // type:function size:0x284 scope:global align:4 +carryTarget__Q34Game13PanModokiBase3ObjFf = .text:0x803520D4; // type:function size:0x518 scope:global align:4 +changeCarryDir__Q34Game13PanModokiBase3ObjFb = .text:0x803525EC; // type:function size:0x50 scope:global align:4 +setCarryDir__Q34Game13PanModokiBase3ObjFb = .text:0x8035263C; // type:function size:0x1B4 scope:global align:4 +endCarry__Q34Game13PanModokiBase3ObjFv = .text:0x803527F0; // type:function size:0x384 scope:global align:4 +checkSucked__Q34Game13PanModokiBase3ObjFv = .text:0x80352B74; // type:function size:0xA0 scope:global align:4 +suckFinish__Q34Game13PanModokiBase3ObjFv = .text:0x80352C14; // type:function size:0xBC scope:global align:4 +isEndPathFinder__Q34Game13PanModokiBase3ObjFv = .text:0x80352CD0; // type:function size:0x118 scope:global align:4 +setPathFinder__Q34Game13PanModokiBase3ObjFb = .text:0x80352DE8; // type:function size:0x2BC scope:global align:4 +releasePathFinder__Q34Game13PanModokiBase3ObjFv = .text:0x803530A4; // type:function size:0x44 scope:global align:4 +killNest__Q34Game13PanModokiBase3ObjFv = .text:0x803530E8; // type:function size:0x20 scope:global align:4 +isTargetable__Q34Game13PanModokiBase3ObjFPQ24Game6Pellet = .text:0x80353108; // type:function size:0x324 scope:global align:4 +calcSlotGlobalPos__Q34Game13PanModokiBase3ObjFR10Vector3 = .text:0x8035342C; // type:function size:0x17C scope:global align:4 +boundEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803535A8; // type:function size:0x28 scope:global align:4 +createAppearEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803535D0; // type:function size:0xE8 scope:global align:4 +createHideEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803536B8; // type:function size:0xE0 scope:global align:4 +fadeHideEffect__Q34Game13PanModokiBase3ObjFv = .text:0x80353798; // type:function size:0x30 scope:global align:4 +createPulledSmokeEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803537C8; // type:function size:0x84 scope:global align:4 +fadePulledSmokeEffect__Q34Game13PanModokiBase3ObjFv = .text:0x8035384C; // type:function size:0x30 scope:global align:4 +throwUpEatItem__Q34Game13PanModokiBase3ObjFv = .text:0x8035387C; // type:function size:0x2CC scope:global align:4 +__ct__Q34Game11OoPanModoki3ObjFv = .text:0x80353B48; // type:function size:0xB8 scope:global align:4 +appearRumble__Q34Game11OoPanModoki3ObjFv = .text:0x80353C00; // type:function size:0x34 scope:global align:4 +hideRumble__Q34Game11OoPanModoki3ObjFv = .text:0x80353C34; // type:function size:0x34 scope:global align:4 +pressCallBack__Q34Game11OoPanModoki3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80353C68; // type:function size:0x94 scope:global align:4 +canTarget__Q34Game11OoPanModoki3ObjFii = .text:0x80353CFC; // type:function size:0x18 scope:weak align:4 +getDownSmokeScale__Q34Game11OoPanModoki3ObjFv = .text:0x80353D14; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game11OoPanModoki3ObjFv = .text:0x80353D1C; // type:function size:0x8 scope:weak align:4 +__sinit_panModoki_cpp = .text:0x80353D24; // type:function size:0x28 scope:local align:4 +__ct__Q34Game7Tanpopo3MgrFiUc = .text:0x80353D4C; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Tanpopo3MgrFv = .text:0x80353DB0; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Tanpopo3MgrFRQ24Game13EnemyBirthArg = .text:0x80353DF8; // type:function size:0x20 scope:global align:4 +__ct__Q34Game6Clover3MgrFiUc = .text:0x80353E18; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game6Clover3MgrFv = .text:0x80353E7C; // type:function size:0x48 scope:global align:4 +birth__Q34Game6Clover3MgrFRQ24Game13EnemyBirthArg = .text:0x80353EC4; // type:function size:0x20 scope:global align:4 +__ct__Q34Game12HikariKinoko3MgrFiUc = .text:0x80353EE4; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game12HikariKinoko3MgrFv = .text:0x80353F48; // type:function size:0x48 scope:global align:4 +birth__Q34Game12HikariKinoko3MgrFRQ24Game13EnemyBirthArg = .text:0x80353F90; // type:function size:0x20 scope:global align:4 +__ct__Q34Game7Ooinu_s3MgrFiUc = .text:0x80353FB0; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Ooinu_s3MgrFv = .text:0x80354014; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Ooinu_s3MgrFRQ24Game13EnemyBirthArg = .text:0x8035405C; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11KareOoinu_s3MgrFiUc = .text:0x8035407C; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game11KareOoinu_s3MgrFv = .text:0x803540E0; // type:function size:0x48 scope:global align:4 +birth__Q34Game11KareOoinu_s3MgrFRQ24Game13EnemyBirthArg = .text:0x80354128; // type:function size:0x20 scope:global align:4 +__ct__Q34Game7Ooinu_l3MgrFiUc = .text:0x80354148; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Ooinu_l3MgrFv = .text:0x803541AC; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Ooinu_l3MgrFRQ24Game13EnemyBirthArg = .text:0x803541F4; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11KareOoinu_l3MgrFiUc = .text:0x80354214; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game11KareOoinu_l3MgrFv = .text:0x80354278; // type:function size:0x48 scope:global align:4 +birth__Q34Game11KareOoinu_l3MgrFRQ24Game13EnemyBirthArg = .text:0x803542C0; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8Wakame_s3MgrFiUc = .text:0x803542E0; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8Wakame_s3MgrFv = .text:0x80354344; // type:function size:0x48 scope:global align:4 +birth__Q34Game8Wakame_s3MgrFRQ24Game13EnemyBirthArg = .text:0x8035438C; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8Wakame_l3MgrFiUc = .text:0x803543AC; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8Wakame_l3MgrFv = .text:0x80354410; // type:function size:0x48 scope:global align:4 +birth__Q34Game8Wakame_l3MgrFRQ24Game13EnemyBirthArg = .text:0x80354458; // type:function size:0x20 scope:global align:4 +__ct__Q34Game7Tukushi3MgrFiUc = .text:0x80354478; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Tukushi3MgrFv = .text:0x803544DC; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Tukushi3MgrFRQ24Game13EnemyBirthArg = .text:0x80354524; // type:function size:0x20 scope:global align:4 +__ct__Q34Game6Watage3MgrFiUc = .text:0x80354544; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game6Watage3MgrFv = .text:0x803545A8; // type:function size:0x48 scope:global align:4 +birth__Q34Game6Watage3MgrFRQ24Game13EnemyBirthArg = .text:0x803545F0; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8DiodeRed3MgrFiUc = .text:0x80354610; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8DiodeRed3MgrFv = .text:0x80354674; // type:function size:0x48 scope:global align:4 +birth__Q34Game8DiodeRed3MgrFRQ24Game13EnemyBirthArg = .text:0x803546BC; // type:function size:0x20 scope:global align:4 +__ct__Q34Game10DiodeGreen3MgrFiUc = .text:0x803546DC; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game10DiodeGreen3MgrFv = .text:0x80354740; // type:function size:0x48 scope:global align:4 +birth__Q34Game10DiodeGreen3MgrFRQ24Game13EnemyBirthArg = .text:0x80354788; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8Margaret3MgrFiUc = .text:0x803547A8; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8Margaret3MgrFv = .text:0x8035480C; // type:function size:0x48 scope:global align:4 +birth__Q34Game8Margaret3MgrFRQ24Game13EnemyBirthArg = .text:0x80354854; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11Nekojarashi3MgrFiUc = .text:0x80354874; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game11Nekojarashi3MgrFv = .text:0x803548D8; // type:function size:0x48 scope:global align:4 +birth__Q34Game11Nekojarashi3MgrFRQ24Game13EnemyBirthArg = .text:0x80354920; // type:function size:0x20 scope:global align:4 +__ct__Q34Game9Chiyogami3MgrFiUc = .text:0x80354940; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game9Chiyogami3MgrFv = .text:0x803549A4; // type:function size:0x48 scope:global align:4 +birth__Q34Game9Chiyogami3MgrFRQ24Game13EnemyBirthArg = .text:0x803549EC; // type:function size:0x20 scope:global align:4 +__ct__Q34Game6Zenmai3MgrFiUc = .text:0x80354A0C; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game6Zenmai3MgrFv = .text:0x80354A70; // type:function size:0x48 scope:global align:4 +birth__Q34Game6Zenmai3MgrFRQ24Game13EnemyBirthArg = .text:0x80354AB8; // type:function size:0x20 scope:global align:4 +__dt__Q34Game6Zenmai3MgrFv = .text:0x80354AD8; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Zenmai3MgrFv = .text:0x80354BA0; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Zenmai3MgrFPv = .text:0x80354BA8; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game6Zenmai3MgrFi = .text:0x80354BD4; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Zenmai3ObjFv = .text:0x80354C34; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game6Zenmai3ObjFv = .text:0x80354D20; // type:function size:0x90 scope:weak align:4 +__dt__Q34Game6Plants3ObjFv = .text:0x80354DB0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Zenmai3MgrFi = .text:0x80354E6C; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game6Zenmai3ObjFv = .text:0x80354E7C; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game6Zenmai3ObjFRQ23Sys8Cylinder = .text:0x80354EB0; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game6Zenmai3ObjFv = .text:0x80354F1C; // type:function size:0x8 scope:weak align:4 +setInitialSetting__Q34Game6Plants3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80354F24; // type:function size:0x4 scope:weak align:4 +doUpdate__Q34Game6Plants3ObjFv = .text:0x80354F28; // type:function size:0x4 scope:weak align:4 +doSimulation__Q34Game6Plants3ObjFf = .text:0x80354F2C; // type:function size:0x4 scope:weak align:4 +doUpdateCommon__Q34Game6Plants3ObjFv = .text:0x80354F30; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game6Plants3ObjFv = .text:0x80354F34; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q34Game6Plants3ObjFPQ24Game8Creature = .text:0x80354F3C; // type:function size:0x4C scope:weak align:4 +__dt__Q34Game9Chiyogami3MgrFv = .text:0x80354F88; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game9Chiyogami3MgrFv = .text:0x80355050; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9Chiyogami3MgrFPv = .text:0x80355058; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game9Chiyogami3MgrFi = .text:0x80355084; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game9Chiyogami3ObjFv = .text:0x803550E4; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game9Chiyogami3ObjFv = .text:0x803551D0; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game9Chiyogami3MgrFi = .text:0x80355260; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game9Chiyogami3ObjFv = .text:0x80355270; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game9Chiyogami3ObjFRQ23Sys8Cylinder = .text:0x803552A4; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game9Chiyogami3ObjFv = .text:0x80355310; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11Nekojarashi3MgrFv = .text:0x80355318; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11Nekojarashi3MgrFv = .text:0x803553E0; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11Nekojarashi3MgrFPv = .text:0x803553E8; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game11Nekojarashi3MgrFi = .text:0x80355414; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11Nekojarashi3ObjFv = .text:0x80355474; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game11Nekojarashi3ObjFv = .text:0x80355560; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game11Nekojarashi3MgrFi = .text:0x803555F0; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game8Margaret3MgrFv = .text:0x80355600; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Margaret3MgrFv = .text:0x803556C8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Margaret3MgrFPv = .text:0x803556D0; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8Margaret3MgrFi = .text:0x803556FC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Margaret3ObjFv = .text:0x8035575C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8Margaret3ObjFv = .text:0x80355848; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8Margaret3MgrFi = .text:0x803558D8; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game8Margaret3ObjFv = .text:0x803558E8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game10DiodeGreen3MgrFv = .text:0x803558F0; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game10DiodeGreen3MgrFv = .text:0x803559B8; // type:function size:0x8 scope:weak align:4 +loadModelData__Q34Game10DiodeGreen3MgrFv = .text:0x803559C0; // type:function size:0xBC scope:weak align:4 +doLoadBmd__Q34Game10DiodeGreen3MgrFPv = .text:0x80355A7C; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game10DiodeGreen3MgrFi = .text:0x80355AA8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game10DiodeGreen3ObjFv = .text:0x80355B08; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game10DiodeGreen3ObjFv = .text:0x80355BF4; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game10DiodeGreen3MgrFi = .text:0x80355C84; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game8DiodeRed3MgrFv = .text:0x80355C94; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8DiodeRed3MgrFv = .text:0x80355D5C; // type:function size:0x8 scope:weak align:4 +loadModelData__Q34Game8DiodeRed3MgrFv = .text:0x80355D64; // type:function size:0xBC scope:weak align:4 +doLoadBmd__Q34Game8DiodeRed3MgrFPv = .text:0x80355E20; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8DiodeRed3MgrFi = .text:0x80355E4C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8DiodeRed3ObjFv = .text:0x80355EAC; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8DiodeRed3ObjFv = .text:0x80355F98; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8DiodeRed3MgrFi = .text:0x80356028; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game6Watage3MgrFv = .text:0x80356038; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Watage3MgrFv = .text:0x80356100; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Watage3MgrFPv = .text:0x80356108; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game6Watage3MgrFi = .text:0x80356134; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Watage3ObjFv = .text:0x80356194; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game6Watage3ObjFv = .text:0x80356280; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game6Watage3MgrFi = .text:0x80356310; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game7Tukushi3MgrFv = .text:0x80356320; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Tukushi3MgrFv = .text:0x803563E8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Tukushi3MgrFPv = .text:0x803563F0; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Tukushi3MgrFi = .text:0x8035641C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Tukushi3ObjFv = .text:0x8035647C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Tukushi3ObjFv = .text:0x80356568; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Tukushi3MgrFi = .text:0x803565F8; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game7Tukushi3ObjFv = .text:0x80356608; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game7Tukushi3ObjFRQ23Sys8Cylinder = .text:0x8035663C; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game7Tukushi3ObjFv = .text:0x803566A8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8Wakame_l3MgrFv = .text:0x803566B0; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_l3MgrFv = .text:0x80356778; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Wakame_l3MgrFPv = .text:0x80356780; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8Wakame_l3MgrFi = .text:0x803567AC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Wakame_l3ObjFv = .text:0x8035680C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8Wakame_l3ObjFv = .text:0x803568F8; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8Wakame_l3MgrFi = .text:0x80356988; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game8Wakame_l3ObjFv = .text:0x80356998; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game8Wakame_l3ObjFRQ23Sys8Cylinder = .text:0x803569CC; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_l3ObjFv = .text:0x80356A38; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8Wakame_s3MgrFv = .text:0x80356A40; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_s3MgrFv = .text:0x80356B08; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Wakame_s3MgrFPv = .text:0x80356B10; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8Wakame_s3MgrFi = .text:0x80356B3C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Wakame_s3ObjFv = .text:0x80356B9C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8Wakame_s3ObjFv = .text:0x80356C88; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8Wakame_s3MgrFi = .text:0x80356D18; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game8Wakame_s3ObjFv = .text:0x80356D28; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game8Wakame_s3ObjFRQ23Sys8Cylinder = .text:0x80356D5C; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_s3ObjFv = .text:0x80356DC8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11KareOoinu_l3MgrFv = .text:0x80356DD0; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_l3MgrFv = .text:0x80356E98; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11KareOoinu_l3MgrFPv = .text:0x80356EA0; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game11KareOoinu_l3MgrFi = .text:0x80356ECC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11KareOoinu_l3ObjFv = .text:0x80356F2C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game11KareOoinu_l3ObjFv = .text:0x80357018; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game11KareOoinu_l3MgrFi = .text:0x803570A8; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_l3ObjFv = .text:0x803570B8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game7Ooinu_l3MgrFv = .text:0x803570C0; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_l3MgrFv = .text:0x80357188; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Ooinu_l3MgrFPv = .text:0x80357190; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Ooinu_l3MgrFi = .text:0x803571BC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Ooinu_l3ObjFv = .text:0x8035721C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Ooinu_l3ObjFv = .text:0x80357308; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Ooinu_l3MgrFi = .text:0x80357398; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_l3ObjFv = .text:0x803573A8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11KareOoinu_s3MgrFv = .text:0x803573B0; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_s3MgrFv = .text:0x80357478; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11KareOoinu_s3MgrFPv = .text:0x80357480; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game11KareOoinu_s3MgrFi = .text:0x803574AC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11KareOoinu_s3ObjFv = .text:0x8035750C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game11KareOoinu_s3ObjFv = .text:0x803575F8; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game11KareOoinu_s3MgrFi = .text:0x80357688; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_s3ObjFv = .text:0x80357698; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game7Ooinu_s3MgrFv = .text:0x803576A0; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_s3MgrFv = .text:0x80357768; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Ooinu_s3MgrFPv = .text:0x80357770; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Ooinu_s3MgrFi = .text:0x8035779C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Ooinu_s3ObjFv = .text:0x803577FC; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Ooinu_s3ObjFv = .text:0x803578E8; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Ooinu_s3MgrFi = .text:0x80357978; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_s3ObjFv = .text:0x80357988; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game12HikariKinoko3MgrFv = .text:0x80357990; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game12HikariKinoko3MgrFv = .text:0x80357A58; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game12HikariKinoko3MgrFPv = .text:0x80357A60; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game12HikariKinoko3MgrFi = .text:0x80357A8C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game12HikariKinoko3ObjFv = .text:0x80357AEC; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game12HikariKinoko3ObjFv = .text:0x80357BD8; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game12HikariKinoko3MgrFi = .text:0x80357C68; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game6Clover3MgrFv = .text:0x80357C78; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Clover3MgrFv = .text:0x80357D40; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Clover3MgrFPv = .text:0x80357D48; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game6Clover3MgrFi = .text:0x80357D74; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Clover3ObjFv = .text:0x80357DD4; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game6Clover3ObjFv = .text:0x80357EC0; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game6Clover3MgrFi = .text:0x80357F50; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game6Clover3ObjFv = .text:0x80357F60; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game7Tanpopo3MgrFv = .text:0x80357F68; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Tanpopo3MgrFv = .text:0x80358030; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Tanpopo3MgrFPv = .text:0x80358038; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Tanpopo3MgrFi = .text:0x80358064; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Tanpopo3ObjFv = .text:0x803580C4; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Tanpopo3ObjFv = .text:0x803581B0; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Tanpopo3MgrFi = .text:0x80358240; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game7Tanpopo3ObjFv = .text:0x80358250; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Tanpopo3MgrFv = .text:0x80358258; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game6Clover3MgrFv = .text:0x80358260; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12HikariKinoko3MgrFv = .text:0x80358268; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Ooinu_s3MgrFv = .text:0x80358270; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11KareOoinu_s3MgrFv = .text:0x80358278; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Ooinu_l3MgrFv = .text:0x80358280; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11KareOoinu_l3MgrFv = .text:0x80358288; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Wakame_s3MgrFv = .text:0x80358290; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Wakame_l3MgrFv = .text:0x80358298; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Tukushi3MgrFv = .text:0x803582A0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game6Watage3MgrFv = .text:0x803582A8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8DiodeRed3MgrFv = .text:0x803582B0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10DiodeGreen3MgrFv = .text:0x803582B8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Margaret3MgrFv = .text:0x803582C0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11Nekojarashi3MgrFv = .text:0x803582C8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game9Chiyogami3MgrFv = .text:0x803582D0; // type:function size:0x8 scope:weak align:4 +@704@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x803582D8; // type:function size:0x14 scope:weak align:4 +@704@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803582EC; // type:function size:0x14 scope:weak align:4 +@704@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80358300; // type:function size:0x14 scope:weak align:4 +@704@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80358314; // type:function size:0x14 scope:weak align:4 +@704@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80358328; // type:function size:0x14 scope:weak align:4 +@704@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8035833C; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q34Game6Zenmai3MgrFv = .text:0x80358350; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game6Plants14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80358358; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Plants14ProperAnimatorFi = .text:0x80358360; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Plants14ProperAnimatorFv = .text:0x80358368; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Plants14ProperAnimatorFv = .text:0x803583C4; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game6Plants3ObjFv = .text:0x803583CC; // type:function size:0x50 scope:global align:4 +birth__Q34Game6Plants3ObjFR10Vector3f = .text:0x8035841C; // type:function size:0x20 scope:global align:4 +onInit__Q34Game6Plants3ObjFPQ24Game15CreatureInitArg = .text:0x8035843C; // type:function size:0x1A8 scope:global align:4 +__ct__Q34Game6Plants3ObjFv = .text:0x803585E4; // type:function size:0xEC scope:global align:4 +update__Q34Game6Plants3ObjFv = .text:0x803586D0; // type:function size:0x48 scope:global align:4 +doAnimation__Q34Game6Plants3ObjFv = .text:0x80358718; // type:function size:0x6C scope:global align:4 +doAnimationCullingOff__Q34Game6Plants3ObjFv = .text:0x80358784; // type:function size:0x9C scope:global align:4 +doDebugDraw__Q34Game6Plants3ObjFR8Graphics = .text:0x80358820; // type:function size:0x20 scope:global align:4 +collisionCallback__Q34Game6Plants3ObjFRQ24Game9CollEvent = .text:0x80358840; // type:function size:0x150 scope:global align:4 +earthquakeCallBack__Q34Game6Plants3ObjFPQ24Game8Creaturef = .text:0x80358990; // type:function size:0x60 scope:global align:4 +touched__Q34Game6Plants3ObjFv = .text:0x803589F0; // type:function size:0xA0 scope:global align:4 +touchedSE__Q34Game6Plants3ObjFPQ24Game4Navi = .text:0x80358A90; // type:function size:0x40 scope:global align:4 +touchedSE__Q34Game12HikariKinoko3ObjFPQ24Game4Navi = .text:0x80358AD0; // type:function size:0x40 scope:global align:4 +doEntry__Q34Game6Watage3ObjFv = .text:0x80358B10; // type:function size:0x48 scope:global align:4 +touched__Q34Game6Watage3ObjFv = .text:0x80358B58; // type:function size:0x104 scope:global align:4 +doEntry__Q34Game11Nekojarashi3ObjFv = .text:0x80358C5C; // type:function size:0x48 scope:global align:4 +touchedSE__Q34Game8DiodeRed3ObjFPQ24Game4Navi = .text:0x80358CA4; // type:function size:0x40 scope:global align:4 +doEntry__Q34Game8DiodeRed3ObjFv = .text:0x80358CE4; // type:function size:0x48 scope:global align:4 +touchedSE__Q34Game10DiodeGreen3ObjFPQ24Game4Navi = .text:0x80358D2C; // type:function size:0x40 scope:global align:4 +doEntry__Q34Game10DiodeGreen3ObjFv = .text:0x80358D6C; // type:function size:0x48 scope:global align:4 +setParameters__Q34Game10DiodeGreen3ObjFv = .text:0x80358DB4; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game10DiodeGreen3ObjFRQ23Sys8Cylinder = .text:0x80358E0C; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game10DiodeGreen3ObjFv = .text:0x80358E78; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game8DiodeRed3ObjFv = .text:0x80358E80; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game8DiodeRed3ObjFRQ23Sys8Cylinder = .text:0x80358ED8; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game8DiodeRed3ObjFv = .text:0x80358F44; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game11Nekojarashi3ObjFv = .text:0x80358F4C; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game11Nekojarashi3ObjFRQ23Sys8Cylinder = .text:0x80358FA4; // type:function size:0x114 scope:weak align:4 +getEnemyTypeID__Q34Game11Nekojarashi3ObjFv = .text:0x803590B8; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game6Watage3ObjFv = .text:0x803590C0; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game12HikariKinoko3ObjFv = .text:0x803590C8; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game12HikariKinoko3ObjFRQ23Sys8Cylinder = .text:0x80359120; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game12HikariKinoko3ObjFv = .text:0x8035918C; // type:function size:0x8 scope:weak align:4 +__sinit_plants_cpp = .text:0x80359194; // type:function size:0x28 scope:local align:4 +init__Q34Game10KingChappy3FSMFPQ24Game9EnemyBase = .text:0x803591BC; // type:function size:0x204 scope:global align:4 +__ct__Q34Game10KingChappy9StateWalkFi = .text:0x803593C0; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803593FC; // type:function size:0x80 scope:global align:4 +exec__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBase = .text:0x8035947C; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBase = .text:0x80359620; // type:function size:0x28 scope:global align:4 +__ct__Q34Game10KingChappy11StateAttackFi = .text:0x80359648; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80359684; // type:function size:0x6C scope:global align:4 +exec__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBase = .text:0x803596F0; // type:function size:0x6AC scope:global align:4 +cleanup__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBase = .text:0x80359D9C; // type:function size:0x3C scope:global align:4 +__ct__Q34Game10KingChappy9StateDeadFi = .text:0x80359DD8; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80359E14; // type:function size:0xCC scope:global align:4 +exec__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBase = .text:0x80359EE0; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBase = .text:0x80359FBC; // type:function size:0x28 scope:global align:4 +__ct__Q34Game10KingChappy10StateFlickFi = .text:0x80359FE4; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035A020; // type:function size:0x60 scope:global align:4 +exec__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBase = .text:0x8035A080; // type:function size:0x8EC scope:global align:4 +cleanup__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBase = .text:0x8035A96C; // type:function size:0x10 scope:global align:4 +__ct__Q34Game10KingChappy11StateWarCryFi = .text:0x8035A97C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035A9B8; // type:function size:0x54 scope:global align:4 +exec__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBase = .text:0x8035AA0C; // type:function size:0x6D0 scope:global align:4 +cleanup__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBase = .text:0x8035B0DC; // type:function size:0x40 scope:global align:4 +__ct__Q34Game10KingChappy11StateDamageFi = .text:0x8035B11C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B158; // type:function size:0x40 scope:global align:4 +exec__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBase = .text:0x8035B198; // type:function size:0x1B4 scope:global align:4 +cleanup__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBase = .text:0x8035B34C; // type:function size:0x40 scope:global align:4 +__ct__Q34Game10KingChappy9StateTurnFi = .text:0x8035B38C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B3C8; // type:function size:0x48 scope:global align:4 +exec__Q34Game10KingChappy9StateTurnFPQ24Game9EnemyBase = .text:0x8035B410; // type:function size:0xF8 scope:global align:4 +__ct__Q34Game10KingChappy8StateEatFi = .text:0x8035B508; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B544; // type:function size:0x50 scope:global align:4 +exec__Q34Game10KingChappy8StateEatFPQ24Game9EnemyBase = .text:0x8035B594; // type:function size:0xA4 scope:global align:4 +__ct__Q34Game10KingChappy9StateHideFi = .text:0x8035B638; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B674; // type:function size:0xBC scope:global align:4 +exec__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBase = .text:0x8035B730; // type:function size:0x1B8 scope:global align:4 +cleanup__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBase = .text:0x8035B8E8; // type:function size:0x54 scope:global align:4 +__ct__Q34Game10KingChappy13StateHideWaitFi = .text:0x8035B93C; // type:function size:0x40 scope:global align:4 +init__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B97C; // type:function size:0x80 scope:global align:4 +exec__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBase = .text:0x8035B9FC; // type:function size:0x18C scope:global align:4 +cleanup__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBase = .text:0x8035BB88; // type:function size:0x40 scope:global align:4 +__ct__Q34Game10KingChappy11StateAppearFi = .text:0x8035BBC8; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035BC04; // type:function size:0x2EC scope:global align:4 +exec__Q34Game10KingChappy11StateAppearFPQ24Game9EnemyBase = .text:0x8035BEF0; // type:function size:0x19C scope:global align:4 +__ct__Q34Game10KingChappy12StateCautionFi = .text:0x8035C08C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy12StateCautionFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035C0C8; // type:function size:0x2C scope:global align:4 +exec__Q34Game10KingChappy12StateCautionFPQ24Game9EnemyBase = .text:0x8035C0F4; // type:function size:0x64 scope:global align:4 +__ct__Q34Game10KingChappy12StateSwallowFi = .text:0x8035C158; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy12StateSwallowFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035C194; // type:function size:0x2C scope:global align:4 +exec__Q34Game10KingChappy12StateSwallowFPQ24Game9EnemyBase = .text:0x8035C1C0; // type:function size:0x94 scope:global align:4 +getName__Q23efx12ArgRotYScaleFv = .text:0x8035C254; // type:function size:0xC scope:weak align:4 +__sinit_kingChappyState_cpp = .text:0x8035C260; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10KingChappy3MgrFiUc = .text:0x8035C288; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10KingChappy3MgrFv = .text:0x8035C2D8; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10KingChappy5ParmsFv = .text:0x8035C320; // type:function size:0x6C scope:weak align:4 +__ct__Q44Game10KingChappy5Parms11ProperParmsFv = .text:0x8035C38C; // type:function size:0x5F4 scope:weak align:4 +birth__Q34Game10KingChappy3MgrFRQ24Game13EnemyBirthArg = .text:0x8035C980; // type:function size:0x20 scope:global align:4 +createModel__Q34Game10KingChappy3MgrFv = .text:0x8035C9A0; // type:function size:0x20 scope:global align:4 +requestState__Q34Game10KingChappy3MgrFPQ34Game10KingChappy3Obji = .text:0x8035C9C0; // type:function size:0xEC scope:global align:4 +getEnemy__Q34Game10KingChappy3MgrFi = .text:0x8035CAAC; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game10KingChappy3MgrFv = .text:0x8035CABC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10KingChappy3MgrFv = .text:0x8035CB6C; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game10KingChappy3MgrFi = .text:0x8035CB74; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game10KingChappy3ObjFv = .text:0x8035CBD4; // type:function size:0xBC scope:weak align:4 +read__Q34Game10KingChappy5ParmsFR6Stream = .text:0x8035CC90; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game10KingChappy3MgrFv = .text:0x8035CCE0; // type:function size:0x8 scope:weak align:4 +lFootCallBack__Q24Game10KingChappyFP8J3DJointi = .text:0x8035CCE8; // type:function size:0x38 scope:local align:4 +rFootCallBack__Q24Game10KingChappyFP8J3DJointi = .text:0x8035CD20; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game10KingChappy3ObjFv = .text:0x8035CD58; // type:function size:0xA4 scope:global align:4 +birth__Q34Game10KingChappy3ObjFR10Vector3f = .text:0x8035CDFC; // type:function size:0x20 scope:global align:4 +onInit__Q34Game10KingChappy3ObjFPQ24Game15CreatureInitArg = .text:0x8035CE1C; // type:function size:0x448 scope:global align:4 +__ct__Q34Game10KingChappy3ObjFv = .text:0x8035D264; // type:function size:0x5AC scope:global align:4 +__ct__Q23efx14TKchDeadYodareFPA4_f = .text:0x8035D810; // type:function size:0x1D8 scope:weak align:4 +__dt__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x8035D9E8; // type:function size:0x148 scope:weak align:4 +__dt__Q23efx27TParticleCallBack_KchYodareFv = .text:0x8035DB30; // type:function size:0xEC scope:weak align:4 +__dt__Q23efx16TKchYodareHitWatFv = .text:0x8035DC1C; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx15TKchYodareHitGrFv = .text:0x8035DCA0; // type:function size:0x84 scope:weak align:4 +__ct__Q23efx16TKchAttackYodareFPA4_f = .text:0x8035DD24; // type:function size:0x1D8 scope:weak align:4 +__ct__Q23efx10TKchYodareFPA4_f = .text:0x8035DEFC; // type:function size:0x1D8 scope:weak align:4 +setFSM__Q34Game10KingChappy3ObjFPQ34Game10KingChappy3FSM = .text:0x8035E0D4; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game10KingChappy3ObjFv = .text:0x8035E120; // type:function size:0x1A0 scope:global align:4 +doDirectDraw__Q34Game10KingChappy3ObjFR8Graphics = .text:0x8035E2C0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10KingChappy3ObjFR8Graphics = .text:0x8035E2C4; // type:function size:0x20 scope:global align:4 +doAnimationUpdateAnimator__Q34Game10KingChappy3ObjFv = .text:0x8035E2E4; // type:function size:0xB8 scope:global align:4 +onKill__Q34Game10KingChappy3ObjFPQ24Game15CreatureKillArg = .text:0x8035E39C; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game10KingChappy3ObjFv = .text:0x8035E3D0; // type:function size:0x588 scope:global align:4 +doSimulation__Q34Game10KingChappy3ObjFf = .text:0x8035E958; // type:function size:0x40 scope:global align:4 +getShadowParam__Q34Game10KingChappy3ObjFRQ24Game11ShadowParam = .text:0x8035E998; // type:function size:0x98 scope:global align:4 +damageCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8035EA30; // type:function size:0x158 scope:global align:4 +collisionCallback__Q34Game10KingChappy3ObjFRQ24Game9CollEvent = .text:0x8035EB88; // type:function size:0x30 scope:global align:4 +wallCallback__Q34Game10KingChappy3ObjFRCQ24Game8MoveInfo = .text:0x8035EBB8; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8035EBE8; // type:function size:0x28 scope:global align:4 +inWaterCallback__Q34Game10KingChappy3ObjFPQ24Game8WaterBox = .text:0x8035EC10; // type:function size:0x4C scope:global align:4 +startCarcassMotion__Q34Game10KingChappy3ObjFv = .text:0x8035EC5C; // type:function size:0x28 scope:global align:4 +initWalkSmokeEffect__Q34Game10KingChappy3ObjFv = .text:0x8035EC84; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10KingChappy3ObjFv = .text:0x8035ECE8; // type:function size:0x8 scope:global align:4 +doStartStoneState__Q34Game10KingChappy3ObjFv = .text:0x8035ECF0; // type:function size:0x74 scope:global align:4 +doFinishStoneState__Q34Game10KingChappy3ObjFv = .text:0x8035ED64; // type:function size:0xA0 scope:global align:4 +doStartMovie__Q34Game10KingChappy3ObjFv = .text:0x8035EE04; // type:function size:0x13C scope:global align:4 +startDemoDrawOff__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x8035EF40; // type:function size:0x5C scope:weak align:4 +doEndMovie__Q34Game10KingChappy3ObjFv = .text:0x8035EF9C; // type:function size:0x13C scope:global align:4 +endDemoDrawOn__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x8035F0D8; // type:function size:0x5C scope:weak align:4 +initMouthSlots__Q34Game10KingChappy3ObjFv = .text:0x8035F134; // type:function size:0x134 scope:global align:4 +eatBomb__Q34Game10KingChappy3ObjFv = .text:0x8035F268; // type:function size:0x1A4 scope:global align:4 +getMouthSlots__Q34Game10KingChappy3ObjFv = .text:0x8035F40C; // type:function size:0x8 scope:weak align:4 +getPikminInMouth__Q34Game10KingChappy3ObjFb = .text:0x8035F414; // type:function size:0x2C8 scope:global align:4 +getTonguePosVel__Q34Game10KingChappy3ObjFR10Vector3R10Vector3 = .text:0x8035F6DC; // type:function size:0x11C scope:global align:4 +setNextGoal__Q34Game10KingChappy3ObjFv = .text:0x8035F7F8; // type:function size:0x1F0 scope:global align:4 +searchTarget__Q34Game10KingChappy3ObjFv = .text:0x8035F9E8; // type:function size:0x500 scope:global align:4 +isOutOfTerritory__Q34Game10KingChappy3ObjFf = .text:0x8035FEE8; // type:function size:0x40 scope:global align:4 +forceTransit__Q34Game10KingChappy3ObjFi = .text:0x8035FF28; // type:function size:0xDC scope:global align:4 +requestTransit__Q34Game10KingChappy3ObjFi = .text:0x80360004; // type:function size:0x30 scope:global align:4 +walkFunc__Q34Game10KingChappy3ObjFv = .text:0x80360034; // type:function size:0x12C scope:global align:4 +turnFunc__Q34Game10KingChappy3ObjFf = .text:0x80360160; // type:function size:0x1AC scope:global align:4 +isReachToGoal__Q34Game10KingChappy3ObjFf = .text:0x8036030C; // type:function size:0x34 scope:global align:4 +checkAttack__Q34Game10KingChappy3ObjFb = .text:0x80360340; // type:function size:0x844 scope:global align:4 +checkFlick__Q34Game10KingChappy3ObjFb = .text:0x80360B84; // type:function size:0x42C scope:global align:4 +checkDead__Q34Game10KingChappy3ObjFb = .text:0x80360FB0; // type:function size:0xEC scope:global align:4 +checkTurn__Q34Game10KingChappy3ObjFb = .text:0x8036109C; // type:function size:0x128 scope:global align:4 +startMotionSelf__Q34Game10KingChappy3ObjFiPQ28SysShape14MotionListener = .text:0x803611C4; // type:function size:0x13C scope:global align:4 +endBlendAnimation__Q34Game10KingChappy3ObjFv = .text:0x80361300; // type:function size:0x98 scope:global align:4 +leftFootMtxCalc__Q34Game10KingChappy3ObjFv = .text:0x80361398; // type:function size:0x44 scope:global align:4 +rightFootMtxCalc__Q34Game10KingChappy3ObjFv = .text:0x803613DC; // type:function size:0x44 scope:global align:4 +footMtxCalc__Q34Game10KingChappy3ObjFPA4_fP10Vector3Pf = .text:0x80361420; // type:function size:0x190 scope:global align:4 +resetFootPos__Q34Game10KingChappy3ObjFv = .text:0x803615B0; // type:function size:0x78 scope:global align:4 +fadeAllEffect__Q34Game10KingChappy3ObjFv = .text:0x80361628; // type:function size:0xDC scope:global align:4 +fade__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x80361704; // type:function size:0x54 scope:weak align:4 +createEffect__Q34Game10KingChappy3ObjFi = .text:0x80361758; // type:function size:0x474 scope:global align:4 +fadeEffect__Q34Game10KingChappy3ObjFi = .text:0x80361BCC; // type:function size:0x140 scope:global align:4 +createBounceEffect__Q34Game10KingChappy3ObjFv = .text:0x80361D0C; // type:function size:0xC8 scope:global align:4 +getName__Q23efx12ArgKchYodareFv = .text:0x80361DD4; // type:function size:0xC scope:weak align:4 +__dt__Q23efx10TKchYodareFv = .text:0x80361DE0; // type:function size:0x160 scope:weak align:4 +forceKill__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x80361F40; // type:function size:0x54 scope:weak align:4 +__dt__Q23efx16TKchAttackYodareFv = .text:0x80361F94; // type:function size:0x160 scope:weak align:4 +__dt__Q23efx14TKchDeadYodareFv = .text:0x803620F4; // type:function size:0x160 scope:weak align:4 +__dt__Q23efx13TKchSmokeHanaFv = .text:0x80362254; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TKchCryIndFv = .text:0x803622F0; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game10KingChappy14ProperAnimatorFv = .text:0x8036238C; // type:function size:0x6C scope:weak align:4 +setInitialSetting__Q34Game10KingChappy3ObjFPQ24Game21EnemyInitialParamBase = .text:0x803623F8; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game10KingChappy3ObjFR10Vector3R10Vector3 = .text:0x803623FC; // type:function size:0x4 scope:weak align:4 +createEfxHamon__Q34Game10KingChappy3ObjFv = .text:0x80362400; // type:function size:0x3C scope:weak align:4 +updateEfxHamon__Q34Game10KingChappy3ObjFv = .text:0x8036243C; // type:function size:0x54 scope:weak align:4 +isUnderground__Q34Game10KingChappy3ObjFv = .text:0x80362490; // type:function size:0x20 scope:weak align:4 +getCellRadius__Q34Game10KingChappy3ObjFv = .text:0x803624B0; // type:function size:0x14 scope:weak align:4 +getBodyRadius__Q34Game10KingChappy3ObjFv = .text:0x803624C4; // type:function size:0x14 scope:weak align:4 +pressCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803624D8; // type:function size:0x30 scope:weak align:4 +eatWhitePikminCallBack__Q34Game10KingChappy3ObjFPQ24Game8Creaturef = .text:0x80362508; // type:function size:0x28 scope:weak align:4 +getEnemyTypeID__Q34Game10KingChappy3ObjFv = .text:0x80362530; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game10KingChappy3ObjFv = .text:0x80362538; // type:function size:0x8 scope:weak align:4 +__sinit_kingChappy_cpp = .text:0x80362540; // type:function size:0x28 scope:local align:4 +@920@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80362568; // type:function size:0x14 scope:weak align:4 +@920@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8036257C; // type:function size:0x14 scope:weak align:4 +@920@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80362590; // type:function size:0x14 scope:weak align:4 +@920@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x803625A4; // type:function size:0x14 scope:weak align:4 +@920@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x803625B8; // type:function size:0x14 scope:weak align:4 +@920@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x803625CC; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx10TKchCryIndFv = .text:0x803625E0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TKchSmokeHanaFv = .text:0x803625E8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TKchYodareHitGrFv = .text:0x803625F0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TKchYodareHitWatFv = .text:0x803625F8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TKchDeadYodareFv = .text:0x80362600; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TKchAttackYodareFv = .text:0x80362608; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TKchYodareFv = .text:0x80362610; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Miulin3FSMFPQ24Game9EnemyBase = .text:0x80362618; // type:function size:0x150 scope:global align:4 +__ct__Q34Game6Miulin9StateWaitFi = .text:0x80362768; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803627A4; // type:function size:0x8C scope:global align:4 +exec__Q34Game6Miulin9StateWaitFPQ24Game9EnemyBase = .text:0x80362830; // type:function size:0x118 scope:global align:4 +__ct__Q34Game6Miulin9StateWalkFi = .text:0x80362948; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80362984; // type:function size:0x16C scope:global align:4 +exec__Q34Game6Miulin9StateWalkFPQ24Game9EnemyBase = .text:0x80362AF0; // type:function size:0x364 scope:global align:4 +__ct__Q34Game6Miulin16StateAttackStartFi = .text:0x80362E54; // type:function size:0x40 scope:global align:4 +init__Q34Game6Miulin16StateAttackStartFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80362E94; // type:function size:0x4C scope:global align:4 +exec__Q34Game6Miulin16StateAttackStartFPQ24Game9EnemyBase = .text:0x80362EE0; // type:function size:0x50 scope:global align:4 +__ct__Q34Game6Miulin14StateAttackingFi = .text:0x80362F30; // type:function size:0x40 scope:global align:4 +init__Q34Game6Miulin14StateAttackingFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80362F70; // type:function size:0x58 scope:global align:4 +exec__Q34Game6Miulin14StateAttackingFPQ24Game9EnemyBase = .text:0x80362FC8; // type:function size:0x82C scope:global align:4 +__ct__Q34Game6Miulin14StateAttackEndFi = .text:0x803637F4; // type:function size:0x40 scope:global align:4 +init__Q34Game6Miulin14StateAttackEndFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80363834; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Miulin14StateAttackEndFPQ24Game9EnemyBase = .text:0x80363888; // type:function size:0xAC scope:global align:4 +__ct__Q34Game6Miulin9StateTurnFi = .text:0x80363934; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80363970; // type:function size:0xF4 scope:global align:4 +exec__Q34Game6Miulin9StateTurnFPQ24Game9EnemyBase = .text:0x80363A64; // type:function size:0x178 scope:global align:4 +__ct__Q34Game6Miulin10StateFlickFi = .text:0x80363BDC; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80363C18; // type:function size:0x4C scope:global align:4 +exec__Q34Game6Miulin10StateFlickFPQ24Game9EnemyBase = .text:0x80363C64; // type:function size:0x190 scope:global align:4 +__ct__Q34Game6Miulin9StateDeadFi = .text:0x80363DF4; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80363E30; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Miulin9StateDeadFPQ24Game9EnemyBase = .text:0x80363E84; // type:function size:0x60 scope:global align:4 +setAnimMgr__Q34Game6Miulin14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80363EE4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Miulin14ProperAnimatorFi = .text:0x80363EEC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Miulin14ProperAnimatorFv = .text:0x80363EF4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Miulin14ProperAnimatorFv = .text:0x80363F50; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Miulin3MgrFiUc = .text:0x80363F58; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Miulin3MgrFv = .text:0x80363FA8; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Miulin5ParmsFv = .text:0x80363FF0; // type:function size:0x208 scope:weak align:4 +birth__Q34Game6Miulin3MgrFRQ24Game13EnemyBirthArg = .text:0x803641F8; // type:function size:0x20 scope:global align:4 +__dt__Q34Game6Miulin3MgrFv = .text:0x80364218; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Miulin3MgrFv = .text:0x803642C8; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game6Miulin3MgrFi = .text:0x803642D0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Miulin3ObjFv = .text:0x80364330; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Miulin3MgrFi = .text:0x803643EC; // type:function size:0x10 scope:weak align:4 +read__Q34Game6Miulin5ParmsFR6Stream = .text:0x803643FC; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Miulin3MgrFv = .text:0x8036444C; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game6Miulin3ObjFv = .text:0x80364454; // type:function size:0x20 scope:global align:4 +birth__Q34Game6Miulin3ObjFR10Vector3f = .text:0x80364474; // type:function size:0xB0 scope:global align:4 +onInit__Q34Game6Miulin3ObjFPQ24Game15CreatureInitArg = .text:0x80364524; // type:function size:0xB4 scope:global align:4 +__ct__Q34Game6Miulin3ObjFv = .text:0x803645D8; // type:function size:0x140 scope:global align:4 +setFSM__Q34Game6Miulin3ObjFPQ34Game6Miulin3FSM = .text:0x80364718; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game6Miulin3ObjFv = .text:0x80364764; // type:function size:0x80 scope:global align:4 +doDirectDraw__Q34Game6Miulin3ObjFR8Graphics = .text:0x803647E4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Miulin3ObjFR8Graphics = .text:0x803647E8; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game6Miulin3ObjFRQ24Game11ShadowParam = .text:0x80364808; // type:function size:0x88 scope:global align:4 +doSimulation__Q34Game6Miulin3ObjFf = .text:0x80364890; // type:function size:0x40 scope:global align:4 +wallCallback__Q34Game6Miulin3ObjFRCQ24Game8MoveInfo = .text:0x803648D0; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game6Miulin3ObjFv = .text:0x803648FC; // type:function size:0x28 scope:global align:4 +initWalkSmokeEffect__Q34Game6Miulin3ObjFv = .text:0x80364924; // type:function size:0x6C scope:global align:4 +getWalkSmokeEffectMgr__Q34Game6Miulin3ObjFv = .text:0x80364990; // type:function size:0x8 scope:global align:4 +isAttackStart__Q34Game6Miulin3ObjFv = .text:0x80364998; // type:function size:0x534 scope:global align:4 +isFindTarget__Q34Game6Miulin3ObjFv = .text:0x80364ECC; // type:function size:0x4A4 scope:global align:4 +isOutOfTerritory__Q34Game6Miulin3ObjFv = .text:0x80365370; // type:function size:0x3C scope:global align:4 +isProhibitedSearch__Q34Game6Miulin3ObjFv = .text:0x803653AC; // type:function size:0x88 scope:global align:4 +isStartWalk__Q34Game6Miulin3ObjFv = .text:0x80365434; // type:function size:0xAC scope:global align:4 +setReturnState__Q34Game6Miulin3ObjFv = .text:0x803654E0; // type:function size:0x2C scope:global align:4 +walkFunc__Q34Game6Miulin3ObjFv = .text:0x8036550C; // type:function size:0x270 scope:global align:4 +turnFunc__Q34Game6Miulin3ObjFf = .text:0x8036577C; // type:function size:0x17C scope:global align:4 +isReachToGoal__Q34Game6Miulin3ObjFf = .text:0x803658F8; // type:function size:0x50 scope:global align:4 +setNextGoal__Q34Game6Miulin3ObjFv = .text:0x80365948; // type:function size:0x15C scope:global align:4 +nextTargetTurnCheck__Q34Game6Miulin3ObjFv = .text:0x80365AA4; // type:function size:0x2E0 scope:global align:4 +isNowCaution__Q34Game6Miulin3ObjFv = .text:0x80365D84; // type:function size:0xD0 scope:global align:4 +landEffect__Q34Game6Miulin3ObjFv = .text:0x80365E54; // type:function size:0x28 scope:global align:4 +attackEffect__Q34Game6Miulin3ObjFR10Vector3 = .text:0x80365E7C; // type:function size:0x144 scope:global align:4 +setInitialSetting__Q34Game6Miulin3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80365FC0; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game6Miulin3ObjFR10Vector3R10Vector3 = .text:0x80365FC4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Miulin3ObjFv = .text:0x80365FC8; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game6Miulin3ObjFv = .text:0x80365FD0; // type:function size:0x8 scope:weak align:4 +getGoalPos__Q34Game6Miulin3ObjFv = .text:0x80365FD8; // type:function size:0x1C scope:weak align:4 +init__Q34Game6Jigumo3FSMFPQ24Game9EnemyBase = .text:0x80365FF4; // type:function size:0x204 scope:global align:4 +__ct__Q34Game6Jigumo9StateWaitFi = .text:0x803661F8; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366234; // type:function size:0x60 scope:global align:4 +exec__Q34Game6Jigumo9StateWaitFPQ24Game9EnemyBase = .text:0x80366294; // type:function size:0x100 scope:global align:4 +__ct__Q34Game6Jigumo11StateAppearFi = .text:0x80366394; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803663D0; // type:function size:0x138 scope:global align:4 +exec__Q34Game6Jigumo11StateAppearFPQ24Game9EnemyBase = .text:0x80366508; // type:function size:0x324 scope:global align:4 +__ct__Q34Game6Jigumo9StateHideFi = .text:0x8036682C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366868; // type:function size:0x128 scope:global align:4 +exec__Q34Game6Jigumo9StateHideFPQ24Game9EnemyBase = .text:0x80366990; // type:function size:0x170 scope:global align:4 +__ct__Q34Game6Jigumo9StateDeadFi = .text:0x80366B00; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366B3C; // type:function size:0x5C scope:global align:4 +exec__Q34Game6Jigumo9StateDeadFPQ24Game9EnemyBase = .text:0x80366B98; // type:function size:0xC0 scope:global align:4 +__ct__Q34Game6Jigumo11StateAttackFi = .text:0x80366C58; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366C94; // type:function size:0xBC scope:global align:4 +exec__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBase = .text:0x80366D50; // type:function size:0x488 scope:global align:4 +getGoalPos__Q34Game6Jigumo3ObjFv = .text:0x803671D8; // type:function size:0x1C scope:weak align:4 +cleanup__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBase = .text:0x803671F4; // type:function size:0x38 scope:global align:4 +__ct__Q34Game6Jigumo9StateMissFi = .text:0x8036722C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateMissFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367268; // type:function size:0x4C scope:global align:4 +exec__Q34Game6Jigumo9StateMissFPQ24Game9EnemyBase = .text:0x803672B4; // type:function size:0x200 scope:global align:4 +__ct__Q34Game6Jigumo11StateReturnFi = .text:0x803674B4; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803674F0; // type:function size:0x40 scope:global align:4 +exec__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBase = .text:0x80367530; // type:function size:0x174 scope:global align:4 +cleanup__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBase = .text:0x803676A4; // type:function size:0x2C scope:global align:4 +__ct__Q34Game6Jigumo10StateCarryFi = .text:0x803676D0; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036770C; // type:function size:0x40 scope:global align:4 +exec__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBase = .text:0x8036774C; // type:function size:0x190 scope:global align:4 +cleanup__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBase = .text:0x803678DC; // type:function size:0x2C scope:global align:4 +__ct__Q34Game6Jigumo10StateFlickFi = .text:0x80367908; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367944; // type:function size:0xCC scope:global align:4 +exec__Q34Game6Jigumo10StateFlickFPQ24Game9EnemyBase = .text:0x80367A10; // type:function size:0xFC scope:global align:4 +__ct__Q34Game6Jigumo8StateEatFi = .text:0x80367B0C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367B48; // type:function size:0x58 scope:global align:4 +exec__Q34Game6Jigumo8StateEatFPQ24Game9EnemyBase = .text:0x80367BA0; // type:function size:0x120 scope:global align:4 +__ct__Q34Game6Jigumo11StateSearchFi = .text:0x80367CC0; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateSearchFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367CFC; // type:function size:0x88 scope:global align:4 +exec__Q34Game6Jigumo11StateSearchFPQ24Game9EnemyBase = .text:0x80367D84; // type:function size:0x614 scope:global align:4 +__ct__Q34Game6Jigumo12StateSAttackFi = .text:0x80368398; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803683D4; // type:function size:0x58 scope:global align:4 +exec__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBase = .text:0x8036842C; // type:function size:0x238 scope:global align:4 +cleanup__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBase = .text:0x80368664; // type:function size:0x24 scope:global align:4 +__ct__Q34Game6Jigumo10StateSMissFi = .text:0x80368688; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo10StateSMissFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803686C4; // type:function size:0x2C scope:global align:4 +exec__Q34Game6Jigumo10StateSMissFPQ24Game9EnemyBase = .text:0x803686F0; // type:function size:0x50 scope:global align:4 +satisfy__Q34Game6Jigumo24ConditionHeightCheckPikiFPQ24Game4Piki = .text:0x80368740; // type:function size:0xF0 scope:weak align:4 +__sinit_jigumoState_cpp = .text:0x80368830; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game6Jigumo14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80368858; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Jigumo14ProperAnimatorFi = .text:0x80368860; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Jigumo14ProperAnimatorFv = .text:0x80368868; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Jigumo14ProperAnimatorFv = .text:0x803688C4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Jigumo3MgrFiUc = .text:0x803688CC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Jigumo3MgrFv = .text:0x8036891C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Jigumo5ParmsFv = .text:0x80368964; // type:function size:0x24C scope:weak align:4 +birth__Q34Game6Jigumo3MgrFRQ24Game13EnemyBirthArg = .text:0x80368BB0; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game6Jigumo3MgrFv = .text:0x80368BD0; // type:function size:0x68 scope:global align:4 +__dt__Q34Game6Jigumo3MgrFv = .text:0x80368C38; // type:function size:0xB0 scope:weak align:4 +doLoadBmd__Q34Game6Jigumo3MgrFPv = .text:0x80368CE8; // type:function size:0x2C scope:weak align:4 +getEnemyTypeID__Q34Game6Jigumo3MgrFv = .text:0x80368D14; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game6Jigumo3MgrFi = .text:0x80368D1C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Jigumo3ObjFv = .text:0x80368D7C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Jigumo3MgrFi = .text:0x80368E38; // type:function size:0x10 scope:weak align:4 +read__Q34Game6Jigumo5ParmsFR6Stream = .text:0x80368E48; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Jigumo3MgrFv = .text:0x80368E98; // type:function size:0x8 scope:weak align:4 +mouthScaleCallBack__Q24Game6JigumoFP8J3DJointi = .text:0x80368EA0; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game6Jigumo3ObjFv = .text:0x80368ED8; // type:function size:0x16C scope:global align:4 +birth__Q34Game6Jigumo3ObjFR10Vector3f = .text:0x80369044; // type:function size:0x17C scope:global align:4 +getEnemyTypeID__Q34Game6Jigumo3ObjFv = .text:0x803691C0; // type:function size:0x8 scope:weak align:4 +onInit__Q34Game6Jigumo3ObjFPQ24Game15CreatureInitArg = .text:0x803691C8; // type:function size:0x23C scope:global align:4 +__ct__Q34Game6Jigumo3ObjFv = .text:0x80369404; // type:function size:0x3E4 scope:global align:4 +setFSM__Q34Game6Jigumo3ObjFPQ34Game6Jigumo3FSM = .text:0x803697E8; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game6Jigumo3ObjFv = .text:0x80369834; // type:function size:0x40 scope:global align:4 +doDirectDraw__Q34Game6Jigumo3ObjFR8Graphics = .text:0x80369874; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Jigumo3ObjFR8Graphics = .text:0x80369878; // type:function size:0x20 scope:global align:4 +doAnimationCullingOff__Q34Game6Jigumo3ObjFv = .text:0x80369898; // type:function size:0x14C scope:global align:4 +startCarcassMotion__Q34Game6Jigumo3ObjFv = .text:0x803699E4; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game6Jigumo3ObjFv = .text:0x80369A0C; // type:function size:0xBC scope:global align:4 +doGetLifeGaugeParam__Q34Game6Jigumo3ObjFRQ24Game14LifeGaugeParam = .text:0x80369AC8; // type:function size:0x9C scope:global align:4 +pressCallBack__Q34Game6Jigumo3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80369B64; // type:function size:0x108 scope:global align:4 +damageCallBack__Q34Game6Jigumo3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80369C6C; // type:function size:0x1B4 scope:global align:4 +collisionCallback__Q34Game6Jigumo3ObjFRQ24Game9CollEvent = .text:0x80369E20; // type:function size:0xD0 scope:global align:4 +outWaterCallback__Q34Game6Jigumo3ObjFv = .text:0x80369EF0; // type:function size:0x120 scope:global align:4 +inWaterCallback__Q34Game6Jigumo3ObjFPQ24Game8WaterBox = .text:0x8036A010; // type:function size:0x150 scope:global align:4 +earthquakeCallBack__Q34Game6Jigumo3ObjFPQ24Game8Creaturef = .text:0x8036A160; // type:function size:0x7C scope:global align:4 +getShadowParam__Q34Game6Jigumo3ObjFRQ24Game11ShadowParam = .text:0x8036A1DC; // type:function size:0x9C scope:global align:4 +needShadow__Q34Game6Jigumo3ObjFv = .text:0x8036A278; // type:function size:0x7C scope:global align:4 +doSimulationGround__Q34Game6Jigumo3ObjFf = .text:0x8036A2F4; // type:function size:0x174 scope:global align:4 +onKill__Q34Game6Jigumo3ObjFPQ24Game15CreatureKillArg = .text:0x8036A468; // type:function size:0x34 scope:global align:4 +isLivingThing__Q34Game6Jigumo3ObjFv = .text:0x8036A49C; // type:function size:0x8 scope:global align:4 +doStartMovie__Q34Game6Jigumo3ObjFv = .text:0x8036A4A4; // type:function size:0x8C scope:global align:4 +doEndMovie__Q34Game6Jigumo3ObjFv = .text:0x8036A530; // type:function size:0x8C scope:global align:4 +doStartStoneState__Q34Game6Jigumo3ObjFv = .text:0x8036A5BC; // type:function size:0xD8 scope:global align:4 +doFinishStoneState__Q34Game6Jigumo3ObjFv = .text:0x8036A694; // type:function size:0xE8 scope:global align:4 +getGoalDist__Q34Game6Jigumo3ObjFv = .text:0x8036A77C; // type:function size:0x34 scope:global align:4 +walkFunc__Q34Game6Jigumo3ObjFv = .text:0x8036A7B0; // type:function size:0x7DC scope:global align:4 +getOffsetForMapCollision__Q34Game6Jigumo3ObjFv = .text:0x8036AF8C; // type:function size:0x19C scope:global align:4 +calcBaseTrMatrix__Q34Game6Jigumo3ObjFv = .text:0x8036B128; // type:function size:0x820 scope:global align:4 +revisionAnimPos__Q34Game6Jigumo3ObjFf = .text:0x8036B948; // type:function size:0x58 scope:global align:4 +getWalkSpeed__Q34Game6Jigumo3ObjFv = .text:0x8036B9A0; // type:function size:0x80 scope:global align:4 +velocityControl__Q34Game6Jigumo3ObjFv = .text:0x8036BA20; // type:function size:0x74 scope:global align:4 +getNearestPikiOrNavi__Q34Game6Jigumo3ObjFff = .text:0x8036BA94; // type:function size:0xA8 scope:global align:4 +effectStart__Q34Game6Jigumo3ObjFv = .text:0x8036BB3C; // type:function size:0x1C0 scope:global align:4 +effectStop__Q34Game6Jigumo3ObjFv = .text:0x8036BCFC; // type:function size:0x8C scope:global align:4 +boundEffect__Q34Game6Jigumo3ObjFv = .text:0x8036BD88; // type:function size:0x28 scope:global align:4 +eatWaterEffect__Q34Game6Jigumo3ObjFv = .text:0x8036BDB0; // type:function size:0x124 scope:global align:4 +killNest__Q34Game6Jigumo3ObjFv = .text:0x8036BED4; // type:function size:0x20 scope:global align:4 +mouthScaleMtxCalc__Q34Game6Jigumo3ObjFv = .text:0x8036BEF4; // type:function size:0x194 scope:global align:4 +setInitialSetting__Q34Game6Jigumo3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8036C088; // type:function size:0x4 scope:weak align:4 +getCellRadius__Q34Game6Jigumo3ObjFv = .text:0x8036C08C; // type:function size:0x14 scope:weak align:4 +getBodyRadius__Q34Game6Jigumo3ObjFv = .text:0x8036C0A0; // type:function size:0x8 scope:weak align:4 +eatWhitePikminCallBack__Q34Game6Jigumo3ObjFPQ24Game8Creaturef = .text:0x8036C0A8; // type:function size:0x28 scope:weak align:4 +getDownSmokeScale__Q34Game6Jigumo3ObjFv = .text:0x8036C0D0; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game6Jigumo3ObjFv = .text:0x8036C0D8; // type:function size:0x8 scope:weak align:4 +createEfxHamon__Q34Game6Jigumo3ObjFv = .text:0x8036C0E0; // type:function size:0x3C scope:weak align:4 +@908@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8036C11C; // type:function size:0x14 scope:weak align:4 +@908@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8036C130; // type:function size:0x14 scope:weak align:4 +@908@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8036C144; // type:function size:0x14 scope:weak align:4 +@908@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8036C158; // type:function size:0x14 scope:weak align:4 +@908@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8036C16C; // type:function size:0x14 scope:weak align:4 +@908@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8036C180; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game4Nest3MgrFiUc = .text:0x8036C194; // type:function size:0x70 scope:global align:4 +doAlloc__Q34Game4Nest3MgrFv = .text:0x8036C204; // type:function size:0x48 scope:global align:4 +birth__Q34Game4Nest3MgrFRQ24Game13EnemyBirthArg = .text:0x8036C24C; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game4Nest3MgrFP10JKRArchive = .text:0x8036C26C; // type:function size:0x12C scope:global align:4 +doSimpleDraw__Q34Game4Nest3MgrFP8Viewport = .text:0x8036C398; // type:function size:0x320 scope:global align:4 +getEnemy__Q34Game4Nest3MgrFi = .text:0x8036C6B8; // type:function size:0x10 scope:weak align:4 +initObjects__Q34Game4Nest3MgrFv = .text:0x8036C6C8; // type:function size:0x1E8 scope:global align:4 +getEnemyTypeID__Q34Game4Nest3MgrFv = .text:0x8036C8B0; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game4Nest3MgrFv = .text:0x8036C8B8; // type:function size:0xB0 scope:weak align:4 +loadAnimData__Q34Game4Nest3MgrFv = .text:0x8036C968; // type:function size:0x4 scope:weak align:4 +createObj__Q34Game4Nest3MgrFi = .text:0x8036C96C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Nest3ObjFv = .text:0x8036C9CC; // type:function size:0xBC scope:weak align:4 +__sinit_enemyNestMgr_cpp = .text:0x8036CA88; // type:function size:0x4 scope:local align:4 +@4@__dt__Q34Game4Nest3MgrFv = .text:0x8036CA8C; // type:function size:0x8 scope:weak align:4 +birth__Q34Game4Nest3ObjFR10Vector3f = .text:0x8036CA94; // type:function size:0x34 scope:global align:4 +onInit__Q34Game4Nest3ObjFPQ24Game15CreatureInitArg = .text:0x8036CAC8; // type:function size:0x11C scope:global align:4 +__ct__Q34Game4Nest3ObjFv = .text:0x8036CBE4; // type:function size:0x98 scope:global align:4 +setHouseType__Q34Game4Nest3ObjFi = .text:0x8036CC7C; // type:function size:0x20 scope:global align:4 +setInitialSetting__Q34Game4Nest3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8036CC9C; // type:function size:0x4 scope:weak align:4 +update__Q34Game4Nest3ObjFv = .text:0x8036CCA0; // type:function size:0x4 scope:weak align:4 +doUpdate__Q34Game4Nest3ObjFv = .text:0x8036CCA4; // type:function size:0x4 scope:weak align:4 +doSimulation__Q34Game4Nest3ObjFf = .text:0x8036CCA8; // type:function size:0x4 scope:weak align:4 +doAnimationCullingOn__Q34Game4Nest3ObjFv = .text:0x8036CCAC; // type:function size:0x4 scope:weak align:4 +doAnimationCullingOff__Q34Game4Nest3ObjFv = .text:0x8036CCB0; // type:function size:0x4 scope:weak align:4 +doUpdateCommon__Q34Game4Nest3ObjFv = .text:0x8036CCB4; // type:function size:0x4 scope:weak align:4 +doEntry__Q34Game4Nest3ObjFv = .text:0x8036CCB8; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q34Game4Nest3ObjFv = .text:0x8036CCBC; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game4Nest3ObjFv = .text:0x8036CCC0; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q34Game4Nest3ObjFPQ24Game8Creature = .text:0x8036CCC8; // type:function size:0x8 scope:weak align:4 +needShadow__Q34Game4Nest3ObjFv = .text:0x8036CCD0; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Nest3ObjFv = .text:0x8036CCD8; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimFrame__Q34Game4Nest3ObjFv = .text:0x8036CCE0; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimSpeed__Q34Game4Nest3ObjFv = .text:0x8036CCE8; // type:function size:0x8 scope:weak align:4 +init__Q34Game11TamagoMushi3FSMFPQ24Game9EnemyBase = .text:0x8036CCF0; // type:function size:0x108 scope:global align:4 +__ct__Q34Game11TamagoMushi9StateWalkFi = .text:0x8036CDF8; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036CE34; // type:function size:0x108 scope:global align:4 +exec__Q34Game11TamagoMushi9StateWalkFPQ24Game9EnemyBase = .text:0x8036CF3C; // type:function size:0xEC scope:global align:4 +__ct__Q34Game11TamagoMushi9StateTurnFi = .text:0x8036D028; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D064; // type:function size:0x54 scope:global align:4 +exec__Q34Game11TamagoMushi9StateTurnFPQ24Game9EnemyBase = .text:0x8036D0B8; // type:function size:0x88 scope:global align:4 +__ct__Q34Game11TamagoMushi11StateAppearFi = .text:0x8036D140; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D17C; // type:function size:0x160 scope:global align:4 +exec__Q34Game11TamagoMushi11StateAppearFPQ24Game9EnemyBase = .text:0x8036D2DC; // type:function size:0x1AC scope:global align:4 +__ct__Q34Game11TamagoMushi9StateHideFi = .text:0x8036D488; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D4C4; // type:function size:0x6C scope:global align:4 +exec__Q34Game11TamagoMushi9StateHideFPQ24Game9EnemyBase = .text:0x8036D530; // type:function size:0x44 scope:global align:4 +__ct__Q34Game11TamagoMushi9StateDeadFi = .text:0x8036D574; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D5B0; // type:function size:0x108 scope:global align:4 +exec__Q34Game11TamagoMushi9StateDeadFPQ24Game9EnemyBase = .text:0x8036D6B8; // type:function size:0x114 scope:global align:4 +__ct__Q34Game11TamagoMushi9StateWaitFi = .text:0x8036D7CC; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D808; // type:function size:0x74 scope:global align:4 +exec__Q34Game11TamagoMushi9StateWaitFPQ24Game9EnemyBase = .text:0x8036D87C; // type:function size:0x98 scope:global align:4 +setAnimMgr__Q34Game11TamagoMushi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8036D914; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game11TamagoMushi14ProperAnimatorFi = .text:0x8036D91C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game11TamagoMushi14ProperAnimatorFv = .text:0x8036D924; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game11TamagoMushi14ProperAnimatorFv = .text:0x8036D980; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11TamagoMushi3MgrFiUc = .text:0x8036D988; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11TamagoMushi3MgrFv = .text:0x8036D9D8; // type:function size:0x100 scope:global align:4 +__dt__16J3DUMtxCacheBaseFv = .text:0x8036DAD8; // type:function size:0x48 scope:weak align:4 +getEnemy__Q34Game11TamagoMushi3MgrFi = .text:0x8036DB20; // type:function size:0x10 scope:weak align:4 +__ct__Q34Game11TamagoMushi5ParmsFv = .text:0x8036DB30; // type:function size:0x260 scope:weak align:4 +birth__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArg = .text:0x8036DD90; // type:function size:0x48 scope:global align:4 +fetch__Q34Game11TamagoMushi3MgrFP8J3DModelf = .text:0x8036DDD8; // type:function size:0x58 scope:global align:4 +createGroup__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArgiR10Vector3 = .text:0x8036DE30; // type:function size:0xF8 scope:global align:4 +createGroupByBigFoot__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArgiR10Vector3f = .text:0x8036DF28; // type:function size:0xB0 scope:global align:4 +createGroup__Q34Game11TamagoMushi3MgrFPQ34Game11TamagoMushi3Objib = .text:0x8036DFD8; // type:function size:0x3AC scope:global align:4 +createGroupByBigFoot__Q34Game11TamagoMushi3MgrFPQ34Game11TamagoMushi3Objibf = .text:0x8036E384; // type:function size:0x484 scope:global align:4 +__dt__Q34Game11TamagoMushi3MgrFv = .text:0x8036E808; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11TamagoMushi3MgrFv = .text:0x8036E8B8; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game11TamagoMushi3MgrFi = .text:0x8036E8C0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11TamagoMushi3ObjFv = .text:0x8036E920; // type:function size:0xBC scope:weak align:4 +read__Q34Game11TamagoMushi5ParmsFR6Stream = .text:0x8036E9DC; // type:function size:0x50 scope:weak align:4 +fetch__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable>CFP8J3DModel = .text:0x8036EA2C; // type:function size:0xDC scope:weak align:4 +__dt__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable>Fv = .text:0x8036EB08; // type:function size:0x98 scope:weak align:4 +@4@__dt__Q34Game11TamagoMushi3MgrFv = .text:0x8036EBA0; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game11TamagoMushi3ObjFv = .text:0x8036EBA8; // type:function size:0x20 scope:global align:4 +birth__Q34Game11TamagoMushi3ObjFR10Vector3f = .text:0x8036EBC8; // type:function size:0x20 scope:global align:4 +onInit__Q34Game11TamagoMushi3ObjFPQ24Game15CreatureInitArg = .text:0x8036EBE8; // type:function size:0x2D0 scope:global align:4 +__ct__Q34Game11TamagoMushi3ObjFv = .text:0x8036EEB8; // type:function size:0x13C scope:global align:4 +setFSM__Q34Game11TamagoMushi3ObjFPQ34Game11TamagoMushi3FSM = .text:0x8036EFF4; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game11TamagoMushi3ObjFv = .text:0x8036F040; // type:function size:0xA0 scope:global align:4 +doAnimationCullingOff__Q34Game11TamagoMushi3ObjFv = .text:0x8036F0E0; // type:function size:0x158 scope:global align:4 +doDirectDraw__Q34Game11TamagoMushi3ObjFR8Graphics = .text:0x8036F238; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11TamagoMushi3ObjFR8Graphics = .text:0x8036F23C; // type:function size:0x20 scope:global align:4 +pressCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8036F25C; // type:function size:0xDC scope:global align:4 +bombCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8036F338; // type:function size:0xBC scope:global align:4 +damageCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8036F3F4; // type:function size:0x134 scope:global align:4 +collisionCallback__Q34Game11TamagoMushi3ObjFRQ24Game9CollEvent = .text:0x8036F528; // type:function size:0xF8 scope:global align:4 +bounceCallback__Q34Game11TamagoMushi3ObjFPQ23Sys8Triangle = .text:0x8036F620; // type:function size:0x178 scope:global align:4 +hipdropCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8036F798; // type:function size:0x2C scope:global align:4 +earthquakeCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8Creaturef = .text:0x8036F7C4; // type:function size:0x30 scope:global align:4 +getShadowParam__Q34Game11TamagoMushi3ObjFRQ24Game11ShadowParam = .text:0x8036F7F4; // type:function size:0xA8 scope:global align:4 +needShadow__Q34Game11TamagoMushi3ObjFv = .text:0x8036F89C; // type:function size:0x30 scope:global align:4 +genItem__Q34Game11TamagoMushi3ObjFv = .text:0x8036F8CC; // type:function size:0x208 scope:global align:4 +walkFunc__Q34Game11TamagoMushi3ObjFv = .text:0x8036FAD4; // type:function size:0x310 scope:global align:4 +setGoalRandom__Q34Game11TamagoMushi3ObjFv = .text:0x8036FDE4; // type:function size:0x168 scope:global align:4 +setGoalDirect__Q34Game11TamagoMushi3ObjFR10Vector3 = .text:0x8036FF4C; // type:function size:0xB8 scope:global align:4 +turnFunc__Q34Game11TamagoMushi3ObjFv = .text:0x80370004; // type:function size:0x15C scope:global align:4 +isReachToGoal__Q34Game11TamagoMushi3ObjFf = .text:0x80370160; // type:function size:0x34 scope:global align:4 +resetWalkParm__Q34Game11TamagoMushi3ObjFv = .text:0x80370194; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game11TamagoMushi3ObjFv = .text:0x803701C0; // type:function size:0x28 scope:global align:4 +setLeader__Q34Game11TamagoMushi3ObjFPQ34Game11TamagoMushi3Obj = .text:0x803701E8; // type:function size:0x58 scope:global align:4 +setTypeBall__Q34Game11TamagoMushi3ObjFv = .text:0x80370240; // type:function size:0x54 scope:global align:4 +appearPanic__Q34Game11TamagoMushi3ObjFv = .text:0x80370294; // type:function size:0x344 scope:global align:4 +isFound__Q34Game11TamagoMushi3ObjFv = .text:0x803705D8; // type:function size:0x3BC scope:global align:4 +__cl__7ParmFv = .text:0x80370994; // type:function size:0x8 scope:weak align:4 +isZukanMode__Q24Game10GameSystemFv = .text:0x8037099C; // type:function size:0x14 scope:weak align:4 +createFellow__Q34Game11TamagoMushi3ObjFv = .text:0x803709B0; // type:function size:0x44 scope:global align:4 +ballMove__Q34Game11TamagoMushi3ObjFv = .text:0x803709F4; // type:function size:0x9C scope:global align:4 +createHideEffect__Q34Game11TamagoMushi3ObjFv = .text:0x80370A90; // type:function size:0xA8 scope:global align:4 +createAppearEffect__Q34Game11TamagoMushi3ObjFv = .text:0x80370B38; // type:function size:0xA8 scope:global align:4 +setInitialSetting__Q34Game11TamagoMushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80370BE0; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game11TamagoMushi3ObjFv = .text:0x80370BE4; // type:function size:0x14 scope:weak align:4 +getDownSmokeScale__Q34Game11TamagoMushi3ObjFv = .text:0x80370BF8; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game11TamagoMushi3ObjFv = .text:0x80370C00; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura10TZukanBaseFPc = .text:0x80370C08; // type:function size:0x204 scope:global align:4 +__dt__Q28Morimura11TScrollListFv = .text:0x80370E0C; // type:function size:0xC4 scope:weak align:4 +__dt__Q28Morimura10TZukanBaseFv = .text:0x80370ED0; // type:function size:0xFC scope:global align:4 +doCreate__Q28Morimura10TZukanBaseFP10JKRArchive = .text:0x80370FCC; // type:function size:0x90C scope:global align:4 +doUpdate__Q28Morimura10TZukanBaseFv = .text:0x803718D8; // type:function size:0xFC8 scope:global align:4 +isListShow__Q28Morimura11TScrollListFi = .text:0x803728A0; // type:function size:0x8 scope:weak align:4 +updateButtonAlpha__Q28Morimura10TZukanBaseFUc = .text:0x803728A8; // type:function size:0x2B8 scope:global align:4 +isComplete__Q28Morimura10TZukanBaseFv = .text:0x80372B60; // type:function size:0x8 scope:weak align:4 +doDraw__Q28Morimura10TZukanBaseFR8Graphics = .text:0x80372B68; // type:function size:0x714 scope:global align:4 +doDemoDraw__Q28Morimura10TZukanBaseFR8Graphics = .text:0x8037327C; // type:function size:0x4 scope:weak align:4 +doUpdateFadeoutFinish__Q28Morimura10TZukanBaseFv = .text:0x80373280; // type:function size:0x18 scope:global align:4 +indexPaneInit__Q28Morimura10TZukanBaseFP9J2DScreen = .text:0x80373298; // type:function size:0x578 scope:global align:4 +paneInit__Q28Morimura10TZukanBaseFv = .text:0x80373810; // type:function size:0x258 scope:global align:4 +changePaneInfo__Q28Morimura10TZukanBaseFv = .text:0x80373A68; // type:function size:0xC8 scope:global align:4 +changeName__Q28Morimura10TZukanBaseFv = .text:0x80373B30; // type:function size:0xA8 scope:global align:4 +doUpdateIn__Q28Morimura10TZukanBaseFv = .text:0x80373BD8; // type:function size:0x5C scope:global align:4 +doUpdateOut__Q28Morimura10TZukanBaseFv = .text:0x80373C34; // type:function size:0x630 scope:global align:4 +doPushXButton__Q28Morimura10TZukanBaseFv = .text:0x80374264; // type:function size:0x114 scope:global align:4 +doPushYButton__Q28Morimura10TZukanBaseFv = .text:0x80374378; // type:function size:0x130 scope:global align:4 +doPushBButton__Q28Morimura10TZukanBaseFv = .text:0x803744A8; // type:function size:0xB0 scope:global align:4 +setShortenIndex__Q28Morimura10TZukanBaseFiib = .text:0x80374558; // type:function size:0x244 scope:global align:4 +windowOpenClose__Q28Morimura10TZukanBaseFUx = .text:0x8037479C; // type:function size:0x88 scope:global align:4 +isPanelExist__Q28Morimura10TZukanBaseFv = .text:0x80374824; // type:function size:0x74 scope:global align:4 +requireRequest__Q28Morimura10TZukanBaseFv = .text:0x80374898; // type:function size:0x18 scope:global align:4 +requireEffectOff__Q28Morimura10TZukanBaseFv = .text:0x803748B0; // type:function size:0xC scope:global align:4 +isEnlargedWindow__Q28Morimura10TZukanBaseFv = .text:0x803748BC; // type:function size:0x1C scope:global align:4 +isMemoWindow__Q28Morimura10TZukanBaseFv = .text:0x803748D8; // type:function size:0x20 scope:global align:4 +checkRequest__Q28Morimura10TZukanBaseFRi = .text:0x803748F8; // type:function size:0x10 scope:global align:4 +getCurrSelectId__Q28Morimura10TZukanBaseFv = .text:0x80374908; // type:function size:0x68 scope:global align:4 +getTexInfo__Q28Morimura10TZukanBaseFi = .text:0x80374970; // type:function size:0x124 scope:global align:4 +__dt__Q28Morimura11TEnemyZukanFv = .text:0x80374A94; // type:function size:0x124 scope:global align:4 +doCreate__Q28Morimura11TEnemyZukanFP10JKRArchive = .text:0x80374BB8; // type:function size:0x1734 scope:global align:4 +init__Q28Morimura15TScaleUpCounterFP9J2DScreenUxUxUxPUlb = .text:0x803762EC; // type:function size:0x44 scope:weak align:4 +getIdMax__Q28Morimura11TEnemyZukanFv = .text:0x80376330; // type:function size:0x8 scope:weak align:4 +setDetail__Q28Morimura11TEnemyZukanFv = .text:0x80376338; // type:function size:0x1D8 scope:global align:4 +setShortenIndex__Q28Morimura11TEnemyZukanFiib = .text:0x80376510; // type:function size:0x48 scope:global align:4 +isListShow__Q28Morimura11TEnemyZukanFi = .text:0x80376558; // type:function size:0xD8 scope:global align:4 +indexPaneInit__Q28Morimura11TEnemyZukanFP9J2DScreen = .text:0x80376630; // type:function size:0x718 scope:global align:4 +getUpdateIndex__Q28Morimura11TEnemyZukanFRib = .text:0x80376D48; // type:function size:0x970 scope:global align:4 +getNameID__Q28Morimura11TEnemyZukanFi = .text:0x803776B8; // type:function size:0x24 scope:global align:4 +getXMsgID__Q28Morimura11TEnemyZukanFi = .text:0x803776DC; // type:function size:0x24 scope:global align:4 +getYMsgID__Q28Morimura11TEnemyZukanFi = .text:0x80377700; // type:function size:0x24 scope:global align:4 +getModelIndex__Q28Morimura11TEnemyZukanFi = .text:0x80377724; // type:function size:0x50 scope:global align:4 +setXWindow__Q28Morimura11TEnemyZukanFv = .text:0x80377774; // type:function size:0x60 scope:global align:4 +setYWindow__Q28Morimura11TEnemyZukanFv = .text:0x803777D4; // type:function size:0x60 scope:global align:4 +isOpenConfirmWindow__Q28Morimura11TEnemyZukanFv = .text:0x80377834; // type:function size:0x34 scope:global align:4 +isNewSupply__Q28Morimura11TEnemyZukanFib = .text:0x80377868; // type:function size:0xFC scope:global align:4 +isPanelExist__Q28Morimura11TEnemyZukanFv = .text:0x80377964; // type:function size:0xE4 scope:global align:4 +openConfirmWindow__Q28Morimura11TEnemyZukanFv = .text:0x80377A48; // type:function size:0x4C scope:global align:4 +getPrice__Q28Morimura11TEnemyZukanFi = .text:0x80377A94; // type:function size:0x134 scope:global align:4 +getDefeatNum__Q28Morimura11TEnemyZukanFi = .text:0x80377BC8; // type:function size:0xF8 scope:global align:4 +getKilledNum__Q28Morimura11TEnemyZukanFi = .text:0x80377CC0; // type:function size:0x12C scope:global align:4 +__ct__Q28Morimura12TDEnemySceneFv = .text:0x80377DEC; // type:function size:0x54 scope:global align:4 +doCreateObj__Q28Morimura12TDEnemySceneFP10JKRArchive = .text:0x80377E40; // type:function size:0xDC scope:global align:4 +doStart__Q28Morimura12TDEnemySceneFPQ26Screen13StartSceneArg = .text:0x80377F1C; // type:function size:0x34 scope:global align:4 +isAppearConfirmWindow__Q28Morimura12TDEnemySceneFv = .text:0x80377F50; // type:function size:0x28 scope:global align:4 +__dt__Q28Morimura10TItemZukanFv = .text:0x80377F78; // type:function size:0x124 scope:global align:4 +doUpdate__Q28Morimura10TItemZukanFv = .text:0x8037809C; // type:function size:0x424 scope:global align:4 +demoSet__Q28Morimura10TItemZukanFv = .text:0x803784C0; // type:function size:0xA8 scope:global align:4 +setShortenIndex__Q28Morimura10TItemZukanFiib = .text:0x80378568; // type:function size:0x45C scope:global align:4 +getCategoryColorId__Q28Morimura10TItemZukanFi = .text:0x803789C4; // type:function size:0x10 scope:weak align:4 +doUpdateOut__Q28Morimura10TItemZukanFv = .text:0x803789D4; // type:function size:0x2D4 scope:global align:4 +getUpdateIndex__Q28Morimura10TItemZukanFRib = .text:0x80378CA8; // type:function size:0xC0 scope:global align:4 +getNameID__Q28Morimura10TItemZukanFi = .text:0x80378D68; // type:function size:0x3C scope:global align:4 +getXMsgID__Q28Morimura10TItemZukanFi = .text:0x80378DA4; // type:function size:0x3C scope:global align:4 +getYMsgID__Q28Morimura10TItemZukanFi = .text:0x80378DE0; // type:function size:0x3C scope:global align:4 +getModelIndex__Q28Morimura10TItemZukanFi = .text:0x80378E1C; // type:function size:0x34 scope:global align:4 +getIdMax__Q28Morimura10TItemZukanFv = .text:0x80378E50; // type:function size:0x20 scope:global align:4 +doCreate__Q28Morimura10TItemZukanFP10JKRArchive = .text:0x80378E70; // type:function size:0x1690 scope:global align:4 +doDemoDraw__Q28Morimura10TItemZukanFR8Graphics = .text:0x8037A500; // type:function size:0x7B4 scope:global align:4 +setDetail__Q28Morimura10TItemZukanFv = .text:0x8037ACB4; // type:function size:0x170 scope:global align:4 +isComplete__Q28Morimura10TItemZukanFv = .text:0x8037AE24; // type:function size:0x90 scope:global align:4 +isListShow__Q28Morimura10TItemZukanFi = .text:0x8037AEB4; // type:function size:0x80 scope:global align:4 +setXWindow__Q28Morimura10TItemZukanFv = .text:0x8037AF34; // type:function size:0x6C scope:global align:4 +setYWindow__Q28Morimura10TItemZukanFv = .text:0x8037AFA0; // type:function size:0xA8 scope:global align:4 +getPrice__Q28Morimura10TItemZukanFi = .text:0x8037B048; // type:function size:0xC0 scope:global align:4 +getWeight__Q28Morimura10TItemZukanFi = .text:0x8037B108; // type:function size:0xC8 scope:global align:4 +isNewSupply__Q28Morimura10TItemZukanFib = .text:0x8037B1D0; // type:function size:0x98 scope:global align:4 +isPanelExist__Q28Morimura10TItemZukanFv = .text:0x8037B268; // type:function size:0xC4 scope:global align:4 +isOpenConfirmWindow__Q28Morimura10TItemZukanFv = .text:0x8037B32C; // type:function size:0x34 scope:global align:4 +openConfirmWindow__Q28Morimura10TItemZukanFv = .text:0x8037B360; // type:function size:0x4C scope:global align:4 +__ct__Q28Morimura11TDItemSceneFv = .text:0x8037B3AC; // type:function size:0x54 scope:global align:4 +doCreateObj__Q28Morimura11TDItemSceneFP10JKRArchive = .text:0x8037B400; // type:function size:0x1C8 scope:global align:4 +doStart__Q28Morimura11TDItemSceneFPQ26Screen13StartSceneArg = .text:0x8037B5C8; // type:function size:0x34 scope:global align:4 +isAppearConfirmWindow__Q28Morimura11TDItemSceneFv = .text:0x8037B5FC; // type:function size:0x28 scope:global align:4 +__ct__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B624; // type:function size:0x80 scope:global align:4 +doInit__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B6A4; // type:function size:0x70 scope:global align:4 +update__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B714; // type:function size:0x38 scope:global align:4 +reset__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B74C; // type:function size:0xC8 scope:global align:4 +scroll__Q28Morimura18TCallbackScrollMsgFf = .text:0x8037B814; // type:function size:0x34 scope:global align:4 +draw__Q28Morimura18TCallbackScrollMsgFR8GraphicsR14J2DGrafContext = .text:0x8037B848; // type:function size:0x48 scope:global align:4 +getPosRate__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B890; // type:function size:0x24 scope:global align:4 +__ct__Q28Morimura12TZukanWindowFP10JKRArchivei = .text:0x8037B8B4; // type:function size:0x80 scope:global align:4 +create__Q28Morimura12TZukanWindowFPCcUl = .text:0x8037B934; // type:function size:0x538 scope:global align:4 +update__Q28Morimura12TZukanWindowFv = .text:0x8037BE6C; // type:function size:0x390 scope:global align:4 +draw__Q28Morimura12TZukanWindowFR8GraphicsP13J2DPerspGraph = .text:0x8037C1FC; // type:function size:0x2C scope:global align:4 +windowOpen__Q28Morimura12TZukanWindowFv = .text:0x8037C228; // type:function size:0xF0 scope:global align:4 +windowClose__Q28Morimura12TZukanWindowFv = .text:0x8037C318; // type:function size:0x30 scope:global align:4 +msgScroll__Q28Morimura12TZukanWindowFf = .text:0x8037C348; // type:function size:0x38 scope:global align:4 +getPosRate__Q28Morimura12TZukanWindowFv = .text:0x8037C380; // type:function size:0x30 scope:global align:4 +setWindowColor__Q28Morimura12TZukanWindowFR13J2DGXColorS10 = .text:0x8037C3B0; // type:function size:0x6C scope:global align:4 +setIconColor__Q28Morimura12TZukanWindowFR13J2DGXColorS10R13J2DGXColorS10 = .text:0x8037C41C; // type:function size:0xF0 scope:global align:4 +onIcon__Q28Morimura12TZukanWindowFi = .text:0x8037C50C; // type:function size:0x8C scope:global align:4 +moveIcon__Q28Morimura12TZukanWindowFf = .text:0x8037C598; // type:function size:0xD4 scope:global align:4 +changeIconTexture__Q28Morimura12TZukanWindowFiP7ResTIMG = .text:0x8037C66C; // type:function size:0x40 scope:global align:4 +__dt__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037C6AC; // type:function size:0x90 scope:weak align:4 +getResName__Q28Morimura11TDItemSceneCFv = .text:0x8037C73C; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura11TDItemSceneFv = .text:0x8037C748; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura11TDItemSceneFv = .text:0x8037C750; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura11TDItemSceneFv = .text:0x8037C75C; // type:function size:0x10 scope:weak align:4 +getDispMemberBase__Q28Morimura10TItemZukanFv = .text:0x8037C76C; // type:function size:0x34 scope:weak align:4 +getDispDataZukan__Q28Morimura10TItemZukanFv = .text:0x8037C7A0; // type:function size:0x8 scope:weak align:4 +doUpdateFadeinFinish__Q28Morimura10TZukanBaseFv = .text:0x8037C7A8; // type:function size:0x14 scope:weak align:4 +doUpdateFadeout__Q28Morimura10TZukanBaseFv = .text:0x8037C7BC; // type:function size:0x28 scope:weak align:4 +changeTextTevBlock__Q28Morimura11TScrollListFi = .text:0x8037C7E4; // type:function size:0x4 scope:weak align:4 +setPaneCharacter__Q28Morimura11TScrollListFi = .text:0x8037C7E8; // type:function size:0x4 scope:weak align:4 +getResName__Q28Morimura12TDEnemySceneCFv = .text:0x8037C7EC; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura12TDEnemySceneFv = .text:0x8037C7F8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura12TDEnemySceneFv = .text:0x8037C800; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura12TDEnemySceneFv = .text:0x8037C80C; // type:function size:0x10 scope:weak align:4 +getDispMemberBase__Q28Morimura11TEnemyZukanFv = .text:0x8037C81C; // type:function size:0x34 scope:weak align:4 +getDispDataZukan__Q28Morimura11TEnemyZukanFv = .text:0x8037C850; // type:function size:0x8 scope:weak align:4 +getCategoryColorId__Q28Morimura10TZukanBaseFi = .text:0x8037C858; // type:function size:0x8 scope:weak align:4 +__sinit_zukan2D_cpp = .text:0x8037C860; // type:function size:0x134 scope:local align:4 +@24@__dt__Q28Morimura10TZukanBaseFv = .text:0x8037C994; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura11TEnemyZukanFv = .text:0x8037C99C; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura10TItemZukanFv = .text:0x8037C9A4; // type:function size:0x8 scope:weak align:4 +draw__Q28Morimura15THiScoreIndPaneFv = .text:0x8037C9AC; // type:function size:0x214 scope:global align:4 +create__Q28Morimura18THiScoreListScreenFPCcUl = .text:0x8037CBC0; // type:function size:0x32C scope:global align:4 +__ct__Q28Morimura8THiScoreFv = .text:0x8037CEEC; // type:function size:0x1CC scope:global align:4 +__ct__10Vector2Fv = .text:0x8037D0B8; // type:function size:0x4 scope:weak align:4 +doCreate__Q28Morimura8THiScoreFP10JKRArchive = .text:0x8037D0BC; // type:function size:0x105C scope:global align:4 +__dt__Q28Morimura8TIndPaneFv = .text:0x8037E118; // type:function size:0x60 scope:weak align:4 +getNameID__Q28Morimura8THiScoreFi = .text:0x8037E178; // type:function size:0x1C scope:weak align:4 +doUpdate__Q28Morimura8THiScoreFv = .text:0x8037E194; // type:function size:0x9F0 scope:global align:4 +update__Q28Morimura18THiScoreListScreenFv = .text:0x8037EB84; // type:function size:0x30 scope:weak align:4 +doDraw__Q28Morimura8THiScoreFR8Graphics = .text:0x8037EBB4; // type:function size:0x1A8 scope:global align:4 +paneInit__Q28Morimura8THiScoreFv = .text:0x8037ED5C; // type:function size:0x358 scope:global align:4 +doUpdateFadeinFinish__Q28Morimura8THiScoreFv = .text:0x8037F0B4; // type:function size:0x5C scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura8THiScoreFv = .text:0x8037F110; // type:function size:0x1C scope:global align:4 +changePaneInfo__Q28Morimura8THiScoreFv = .text:0x8037F12C; // type:function size:0x5C4 scope:global align:4 +setPaneCharacter__Q28Morimura8THiScoreFi = .text:0x8037F6F0; // type:function size:0x124 scope:global align:4 +getRecord__Q28Morimura8THiScoreFii = .text:0x8037F814; // type:function size:0x44C scope:global align:4 +changeTextTevBlock__Q28Morimura8THiScoreFi = .text:0x8037FC60; // type:function size:0x43C scope:global align:4 +copyTevBlock__Q28Morimura8THiScoreFP11J2DTevBlockP11J2DTevBlock = .text:0x8038009C; // type:function size:0x21C scope:global align:4 +changeTevBlock__Q28Morimura8THiScoreFP11J2DTevBlockP11J2DTevBlock = .text:0x803802B8; // type:function size:0x21C scope:global align:4 +copyColorBlock__Q28Morimura8THiScoreFP13J2DColorBlockP13J2DColorBlock = .text:0x803804D4; // type:function size:0x80 scope:global align:4 +changeColorBlock__Q28Morimura8THiScoreFP13J2DColorBlockP13J2DColorBlock = .text:0x80380554; // type:function size:0x80 scope:global align:4 +updateLayout__Q28Morimura8THiScoreFv = .text:0x803805D4; // type:function size:0x180 scope:global align:4 +__ct__Q28Morimura13THiScoreSceneFv = .text:0x80380754; // type:function size:0x50 scope:global align:4 +getResName__Q28Morimura13THiScoreSceneCFv = .text:0x803807A4; // type:function size:0xC scope:global align:4 +doCreateObj__Q28Morimura13THiScoreSceneFP10JKRArchive = .text:0x803807B0; // type:function size:0x68 scope:weak align:4 +getSceneType__Q28Morimura13THiScoreSceneFv = .text:0x80380818; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura13THiScoreSceneFv = .text:0x80380820; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura13THiScoreSceneFv = .text:0x8038082C; // type:function size:0x10 scope:weak align:4 +getSize__Q28Morimura19DispMemberHighScoreFv = .text:0x8038083C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura19DispMemberHighScoreFv = .text:0x80380844; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura19DispMemberHighScoreFv = .text:0x80380850; // type:function size:0x10 scope:weak align:4 +getDispMemberBase__Q28Morimura8THiScoreFv = .text:0x80380860; // type:function size:0x34 scope:weak align:4 +getIdMax__Q28Morimura8THiScoreFv = .text:0x80380894; // type:function size:0x8 scope:weak align:4 +setShortenIndex__Q28Morimura11TScrollListFiib = .text:0x8038089C; // type:function size:0x4 scope:weak align:4 +doUpdateIn__Q28Morimura11TScrollListFv = .text:0x803808A0; // type:function size:0x4 scope:weak align:4 +doUpdateOut__Q28Morimura11TScrollListFv = .text:0x803808A4; // type:function size:0x4 scope:weak align:4 +__dt__Q28Morimura8THiScoreFv = .text:0x803808A8; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura15THiScoreIndPaneFv = .text:0x80380984; // type:function size:0x70 scope:weak align:4 +__sinit_hiScore2D_cpp = .text:0x803809F4; // type:function size:0x30 scope:local align:4 +@24@__dt__Q28Morimura8THiScoreFv = .text:0x80380A24; // type:function size:0x8 scope:weak align:4 +init__Q34Game8UmiMushi3FSMFPQ24Game9EnemyBase = .text:0x80380A2C; // type:function size:0x198 scope:global align:4 +__ct__Q34Game8UmiMushi9StateWaitFi = .text:0x80380BC4; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80380C00; // type:function size:0x54 scope:global align:4 +exec__Q34Game8UmiMushi9StateWaitFPQ24Game9EnemyBase = .text:0x80380C54; // type:function size:0x214 scope:global align:4 +__ct__Q34Game8UmiMushi9StateWalkFi = .text:0x80380E68; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80380EA4; // type:function size:0x60 scope:global align:4 +exec__Q34Game8UmiMushi9StateWalkFPQ24Game9EnemyBase = .text:0x80380F04; // type:function size:0x2C0 scope:global align:4 +__ct__Q34Game8UmiMushi9StateFindFi = .text:0x803811C4; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateFindFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80381200; // type:function size:0x8C scope:global align:4 +exec__Q34Game8UmiMushi9StateFindFPQ24Game9EnemyBase = .text:0x8038128C; // type:function size:0x12C scope:global align:4 +__ct__Q34Game8UmiMushi11StateSearchFi = .text:0x803813B8; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi11StateSearchFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803813F4; // type:function size:0x40 scope:global align:4 +exec__Q34Game8UmiMushi11StateSearchFPQ24Game9EnemyBase = .text:0x80381434; // type:function size:0x294 scope:global align:4 +__ct__Q34Game8UmiMushi9StateTurnFi = .text:0x803816C8; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80381704; // type:function size:0x40 scope:global align:4 +exec__Q34Game8UmiMushi9StateTurnFPQ24Game9EnemyBase = .text:0x80381744; // type:function size:0x1EC scope:global align:4 +__ct__Q34Game8UmiMushi10StateFlickFi = .text:0x80381930; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8038196C; // type:function size:0x160 scope:global align:4 +exec__Q34Game8UmiMushi10StateFlickFPQ24Game9EnemyBase = .text:0x80381ACC; // type:function size:0x190 scope:global align:4 +__ct__Q34Game8UmiMushi11StateAttackFi = .text:0x80381C5C; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80381C98; // type:function size:0x118 scope:global align:4 +exec__Q34Game8UmiMushi11StateAttackFPQ24Game9EnemyBase = .text:0x80381DB0; // type:function size:0x520 scope:global align:4 +__ct__Q34Game8UmiMushi8StateEatFi = .text:0x803822D0; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8038230C; // type:function size:0x40 scope:global align:4 +exec__Q34Game8UmiMushi8StateEatFPQ24Game9EnemyBase = .text:0x8038234C; // type:function size:0xB8 scope:global align:4 +__ct__Q34Game8UmiMushi9StateDeadFi = .text:0x80382404; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80382440; // type:function size:0x88 scope:global align:4 +exec__Q34Game8UmiMushi9StateDeadFPQ24Game9EnemyBase = .text:0x803824C8; // type:function size:0xB8 scope:global align:4 +__ct__Q34Game8UmiMushi9StateLostFi = .text:0x80382580; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803825BC; // type:function size:0x54 scope:global align:4 +exec__Q34Game8UmiMushi9StateLostFPQ24Game9EnemyBase = .text:0x80382610; // type:function size:0x90 scope:global align:4 +__sinit_umiMushiState_cpp = .text:0x803826A0; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game8UmiMushi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x803826C8; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8UmiMushi14ProperAnimatorFi = .text:0x803826D0; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8UmiMushi14ProperAnimatorFv = .text:0x803826D8; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8UmiMushi14ProperAnimatorFv = .text:0x80382734; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8UmiMushi3MgrFiUc = .text:0x8038273C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8UmiMushi3MgrFv = .text:0x8038278C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8UmiMushi5ParmsFv = .text:0x803827D4; // type:function size:0xA4 scope:weak align:4 +__ct__Q44Game8UmiMushi5Parms11ProperParmsFv = .text:0x80382878; // type:function size:0x360 scope:weak align:4 +birth__Q34Game8UmiMushi3MgrFRQ24Game13EnemyBirthArg = .text:0x80382BD8; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game8UmiMushi3MgrFv = .text:0x80382BF8; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game8UmiMushi3MgrFv = .text:0x80382C60; // type:function size:0xBC scope:global align:4 +createModel__Q34Game8UmiMushi3MgrFv = .text:0x80382D1C; // type:function size:0x7C scope:global align:4 +createObj__Q34Game8UmiMushi3MgrFi = .text:0x80382D98; // type:function size:0x160 scope:global align:4 +__dt__Q34Game8UmiMushi3ObjFv = .text:0x80382EF8; // type:function size:0xBC scope:weak align:4 +__dt__Q34Game8UmiMushi3MgrFv = .text:0x80382FB4; // type:function size:0xB0 scope:weak align:4 +doLoadBmd__Q34Game8UmiMushi3MgrFPv = .text:0x80383064; // type:function size:0x2C scope:weak align:4 +getEnemyTypeID__Q34Game8UmiMushi3MgrFv = .text:0x80383090; // type:function size:0x8 scope:weak align:4 +getEnemy__Q34Game8UmiMushi3MgrFi = .text:0x80383098; // type:function size:0x10 scope:weak align:4 +read__Q34Game8UmiMushi5ParmsFR6Stream = .text:0x803830A8; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8UmiMushi3MgrFv = .text:0x803830F8; // type:function size:0x8 scope:weak align:4 +eyeScaleCallBack__Q24Game8UmiMushiFP8J3DJointi = .text:0x80383100; // type:function size:0x38 scope:local align:4 +weakScaleCallBack__Q24Game8UmiMushiFP8J3DJointi = .text:0x80383138; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game8UmiMushi3ObjFv = .text:0x80383170; // type:function size:0xB4 scope:global align:4 +getBodyRadius__Q34Game8UmiMushi3ObjFv = .text:0x80383224; // type:function size:0x30 scope:global align:4 +birth__Q34Game8UmiMushi3ObjFR10Vector3f = .text:0x80383254; // type:function size:0x20 scope:global align:4 +onInit__Q34Game8UmiMushi3ObjFPQ24Game15CreatureInitArg = .text:0x80383274; // type:function size:0x5A8 scope:global align:4 +__ct__Q34Game8UmiMushi3ObjFv = .text:0x8038381C; // type:function size:0x428 scope:global align:4 +setFSM__Q34Game8UmiMushi3ObjFPQ34Game8UmiMushi3FSM = .text:0x80383C44; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game8UmiMushi3ObjFv = .text:0x80383C90; // type:function size:0x90 scope:global align:4 +doAnimationCullingOff__Q34Game8UmiMushi3ObjFv = .text:0x80383D20; // type:function size:0x4B0 scope:global align:4 +doAnimationCullingOn__Q34Game8UmiMushi3ObjFv = .text:0x803841D0; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game8UmiMushi3ObjFR8Graphics = .text:0x80384204; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8UmiMushi3ObjFR8Graphics = .text:0x80384208; // type:function size:0x20 scope:global align:4 +changeMaterial__Q34Game8UmiMushi3ObjFv = .text:0x80384228; // type:function size:0x98 scope:global align:4 +doStartMovie__Q34Game8UmiMushi3ObjFv = .text:0x803842C0; // type:function size:0xDC scope:global align:4 +doEndMovie__Q34Game8UmiMushi3ObjFv = .text:0x8038439C; // type:function size:0xDC scope:global align:4 +getShadowParam__Q34Game8UmiMushi3ObjFRQ24Game11ShadowParam = .text:0x80384478; // type:function size:0x90 scope:global align:4 +doSimulation__Q34Game8UmiMushi3ObjFf = .text:0x80384508; // type:function size:0x40 scope:global align:4 +damageCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80384548; // type:function size:0x164 scope:global align:4 +pressCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803846AC; // type:function size:0xBC scope:global align:4 +hipdropCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80384768; // type:function size:0xBC scope:global align:4 +earthquakeCallBack__Q34Game8UmiMushi3ObjFPQ24Game8Creaturef = .text:0x80384824; // type:function size:0xAC scope:global align:4 +collisionCallback__Q34Game8UmiMushi3ObjFRQ24Game9CollEvent = .text:0x803848D0; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game8UmiMushi3ObjFv = .text:0x803848F0; // type:function size:0x130 scope:global align:4 +doStartStoneState__Q34Game8UmiMushi3ObjFv = .text:0x80384A20; // type:function size:0x94 scope:global align:4 +doFinishStoneState__Q34Game8UmiMushi3ObjFv = .text:0x80384AB4; // type:function size:0xBC scope:global align:4 +startCarcassMotion__Q34Game8UmiMushi3ObjFv = .text:0x80384B70; // type:function size:0x28 scope:global align:4 +doGetLifeGaugeParam__Q34Game8UmiMushi3ObjFRQ24Game14LifeGaugeParam = .text:0x80384B98; // type:function size:0x4C scope:global align:4 +isReachToGoal__Q34Game8UmiMushi3ObjFf = .text:0x80384BE4; // type:function size:0x5C scope:global align:4 +walkFunc__Q34Game8UmiMushi3ObjFv = .text:0x80384C40; // type:function size:0x358 scope:global align:4 +setNextGoal__Q34Game8UmiMushi3ObjFv = .text:0x80384F98; // type:function size:0x150 scope:global align:4 +changeColor__Q34Game8UmiMushi3ObjFv = .text:0x803850E8; // type:function size:0x810 scope:global align:4 +resetColor__Q34Game8UmiMushi3ObjFv = .text:0x803858F8; // type:function size:0x1C0 scope:global align:4 +turnFunc__Q34Game8UmiMushi3ObjFv = .text:0x80385AB8; // type:function size:0x1BC scope:global align:4 +resetWalkParm__Q34Game8UmiMushi3ObjFv = .text:0x80385C74; // type:function size:0x14 scope:global align:4 +isChangeNavi__Q34Game8UmiMushi3ObjFv = .text:0x80385C88; // type:function size:0x248 scope:global align:4 +isFindTarget__Q34Game8UmiMushi3ObjFv = .text:0x80385ED0; // type:function size:0x1D8 scope:global align:4 +isAttackStart__Q34Game8UmiMushi3ObjFv = .text:0x803860A8; // type:function size:0x240 scope:global align:4 +isNeedTurn__Q34Game8UmiMushi3ObjFv = .text:0x803862E8; // type:function size:0x1B4 scope:global align:4 +isOutOfTerritory__Q34Game8UmiMushi3ObjFf = .text:0x8038649C; // type:function size:0x5C scope:global align:4 +canMove__Q34Game8UmiMushi3ObjFv = .text:0x803864F8; // type:function size:0x12C scope:global align:4 +outMove__Q34Game8UmiMushi3ObjFv = .text:0x80386624; // type:function size:0x490 scope:global align:4 +setFindAnim__Q34Game8UmiMushi3ObjFv = .text:0x80386AB4; // type:function size:0x80 scope:global align:4 +fadeAllEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386B34; // type:function size:0x44 scope:global align:4 +fadeColorEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386B78; // type:function size:0xA8 scope:global align:4 +createColorEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386C20; // type:function size:0x10C scope:global align:4 +attackEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386D2C; // type:function size:0xC0 scope:global align:4 +meltEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386DEC; // type:function size:0xC0 scope:global align:4 +flickEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386EAC; // type:function size:0x10C scope:global align:4 +eatEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386FB8; // type:function size:0x70 scope:global align:4 +bubbleEffect__Q34Game8UmiMushi3ObjFv = .text:0x80387028; // type:function size:0x70 scope:global align:4 +delShadow__Q34Game8UmiMushi3ObjFv = .text:0x80387098; // type:function size:0x28 scope:global align:4 +eyeScaleMtxCalc__Q34Game8UmiMushi3ObjFv = .text:0x803870C0; // type:function size:0x2C8 scope:global align:4 +weakScaleMtxCalc__Q34Game8UmiMushi3ObjFv = .text:0x80387388; // type:function size:0x184 scope:global align:4 +__dt__Q23efx11TUmiDeadawaFv = .text:0x8038750C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx7TUmiEatFv = .text:0x803875A8; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game8UmiMushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80387644; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game8UmiMushi3ObjFR10Vector3R10Vector3 = .text:0x80387648; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game8UmiMushi3ObjFv = .text:0x8038764C; // type:function size:0xC scope:weak align:4 +eatWhitePikminCallBack__Q34Game8UmiMushi3ObjFPQ24Game8Creaturef = .text:0x80387658; // type:function size:0x28 scope:weak align:4 +getEnemyTypeID__Q34Game8UmiMushi3ObjFv = .text:0x80387680; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game8UmiMushi3ObjFv = .text:0x80387688; // type:function size:0x8 scope:weak align:4 +@932@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80387690; // type:function size:0x14 scope:weak align:4 +@932@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803876A4; // type:function size:0x14 scope:weak align:4 +@932@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x803876B8; // type:function size:0x14 scope:weak align:4 +@932@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x803876CC; // type:function size:0x14 scope:weak align:4 +@932@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x803876E0; // type:function size:0x14 scope:weak align:4 +@932@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x803876F4; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx7TUmiEatFv = .text:0x80387708; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TUmiDeadawaFv = .text:0x80387710; // type:function size:0x8 scope:weak align:4 +init__Q34Game11ShijimiChou3FSMFPQ24Game9EnemyBase = .text:0x80387718; // type:function size:0x108 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateWaitFi = .text:0x80387820; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8038785C; // type:function size:0xC0 scope:global align:4 +exec__Q34Game11ShijimiChou9StateWaitFPQ24Game9EnemyBase = .text:0x8038791C; // type:function size:0x140 scope:global align:4 +__ct__Q34Game11ShijimiChou8StateFlyFi = .text:0x80387A5C; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou8StateFlyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387A98; // type:function size:0x54 scope:global align:4 +exec__Q34Game11ShijimiChou8StateFlyFPQ24Game9EnemyBase = .text:0x80387AEC; // type:function size:0xE8 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateFallFi = .text:0x80387BD4; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387C10; // type:function size:0xD0 scope:global align:4 +exec__Q34Game11ShijimiChou9StateFallFPQ24Game9EnemyBase = .text:0x80387CE0; // type:function size:0x94 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateDeadFi = .text:0x80387D74; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387DB0; // type:function size:0xA0 scope:global align:4 +exec__Q34Game11ShijimiChou9StateDeadFPQ24Game9EnemyBase = .text:0x80387E50; // type:function size:0x114 scope:global align:4 +__ct__Q34Game11ShijimiChou10StateLeaveFi = .text:0x80387F64; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou10StateLeaveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387FA0; // type:function size:0x44 scope:global align:4 +exec__Q34Game11ShijimiChou10StateLeaveFPQ24Game9EnemyBase = .text:0x80387FE4; // type:function size:0x24 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateRestFi = .text:0x80388008; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateRestFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80388044; // type:function size:0xBC scope:global align:4 +exec__Q34Game11ShijimiChou9StateRestFPQ24Game9EnemyBase = .text:0x80388100; // type:function size:0x34C scope:global align:4 +setAnimMgr__Q34Game11ShijimiChou14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8038844C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game11ShijimiChou14ProperAnimatorFi = .text:0x80388454; // type:function size:0x8 scope:global align:4 +__dt__Q34Game11ShijimiChou14ProperAnimatorFv = .text:0x8038845C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game11ShijimiChou14ProperAnimatorFv = .text:0x803884B8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11ShijimiChou3MgrFiUc = .text:0x803884C0; // type:function size:0x5C scope:global align:4 +doAlloc__Q34Game11ShijimiChou3MgrFv = .text:0x8038851C; // type:function size:0x150 scope:global align:4 +getEnemy__Q34Game11ShijimiChou3MgrFi = .text:0x8038866C; // type:function size:0x10 scope:weak align:4 +__ct__Q34Game11ShijimiChou5ParmsFv = .text:0x8038867C; // type:function size:0xB0 scope:weak align:4 +__ct__Q44Game11ShijimiChou5Parms11ProperParmsFv = .text:0x8038872C; // type:function size:0x238 scope:weak align:4 +loadModelData__Q34Game11ShijimiChou3MgrFv = .text:0x80388964; // type:function size:0x38 scope:global align:4 +createModel__Q34Game11ShijimiChou3MgrFv = .text:0x8038899C; // type:function size:0x138 scope:global align:4 +birth__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArg = .text:0x80388AD4; // type:function size:0xC8 scope:global align:4 +doAnimation__Q34Game11ShijimiChou3MgrFv = .text:0x80388B9C; // type:function size:0x50 scope:global align:4 +fetch__Q34Game11ShijimiChou3MgrFP8J3DModelf = .text:0x80388BEC; // type:function size:0x58 scope:global align:4 +createGroup__Q34Game11ShijimiChou3MgrFPQ34Game11ShijimiChou3Obji = .text:0x80388C44; // type:function size:0x4BC scope:global align:4 +createGroupByBigFoot__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgi = .text:0x80389100; // type:function size:0xB8 scope:global align:4 +createGroupByPlants__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgi = .text:0x803891B8; // type:function size:0xB8 scope:global align:4 +createGroupByEnemy__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgPQ24Game9EnemyBaseib = .text:0x80389270; // type:function size:0x198 scope:global align:4 +__dt__Q34Game11ShijimiChou3MgrFv = .text:0x80389408; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11ShijimiChou3MgrFv = .text:0x803894B8; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game11ShijimiChou3MgrFi = .text:0x803894C0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11ShijimiChou3ObjFv = .text:0x80389520; // type:function size:0xBC scope:weak align:4 +read__Q34Game11ShijimiChou5ParmsFR6Stream = .text:0x803895DC; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11ShijimiChou3MgrFv = .text:0x8038962C; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game11ShijimiChou3ObjFv = .text:0x80389634; // type:function size:0xA4 scope:global align:4 +birth__Q34Game11ShijimiChou3ObjFR10Vector3f = .text:0x803896D8; // type:function size:0x20 scope:global align:4 +onInit__Q34Game11ShijimiChou3ObjFPQ24Game15CreatureInitArg = .text:0x803896F8; // type:function size:0x24C scope:global align:4 +__ct__Q34Game11ShijimiChou3ObjFv = .text:0x80389944; // type:function size:0x250 scope:global align:4 +setFSM__Q34Game11ShijimiChou3ObjFPQ34Game11ShijimiChou3FSM = .text:0x80389B94; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game11ShijimiChou3ObjFv = .text:0x80389BE0; // type:function size:0xAC scope:global align:4 +doDirectDraw__Q34Game11ShijimiChou3ObjFR8Graphics = .text:0x80389C8C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11ShijimiChou3ObjFR8Graphics = .text:0x80389C90; // type:function size:0x20 scope:global align:4 +doAnimation__Q34Game11ShijimiChou3ObjFv = .text:0x80389CB0; // type:function size:0x20 scope:global align:4 +doEntry__Q34Game11ShijimiChou3ObjFv = .text:0x80389CD0; // type:function size:0x4C scope:global align:4 +doAnimationCullingOff__Q34Game11ShijimiChou3ObjFv = .text:0x80389D1C; // type:function size:0x1A0 scope:global align:4 +doAnimationCullingOn__Q34Game11ShijimiChou3ObjFv = .text:0x80389EBC; // type:function size:0xB8 scope:global align:4 +onKill__Q34Game11ShijimiChou3ObjFPQ24Game15CreatureKillArg = .text:0x80389F74; // type:function size:0x84 scope:global align:4 +doSimulation__Q34Game11ShijimiChou3ObjFf = .text:0x80389FF8; // type:function size:0x438 scope:global align:4 +changeMaterial__Q34Game11ShijimiChou3ObjFv = .text:0x8038A430; // type:function size:0x26C scope:global align:4 +doStartMovie__Q34Game11ShijimiChou3ObjFv = .text:0x8038A69C; // type:function size:0x30 scope:global align:4 +doEndMovie__Q34Game11ShijimiChou3ObjFv = .text:0x8038A6CC; // type:function size:0x30 scope:global align:4 +doStartStoneState__Q34Game11ShijimiChou3ObjFv = .text:0x8038A6FC; // type:function size:0x34 scope:global align:4 +damageCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038A730; // type:function size:0x8 scope:global align:4 +wallCallback__Q34Game11ShijimiChou3ObjFRCQ24Game8MoveInfo = .text:0x8038A738; // type:function size:0x94 scope:global align:4 +collisionCallback__Q34Game11ShijimiChou3ObjFRQ24Game9CollEvent = .text:0x8038A7CC; // type:function size:0x64 scope:global align:4 +startCarcassMotion__Q34Game11ShijimiChou3ObjFv = .text:0x8038A830; // type:function size:0x28 scope:global align:4 +getShadowParam__Q34Game11ShijimiChou3ObjFRQ24Game11ShadowParam = .text:0x8038A858; // type:function size:0x124 scope:global align:4 +genItem__Q34Game11ShijimiChou3ObjFv = .text:0x8038A97C; // type:function size:0x23C scope:global align:4 +checkFlyStart__Q34Game11ShijimiChou3ObjFv = .text:0x8038ABB8; // type:function size:0x80 scope:global align:4 +fly__Q34Game11ShijimiChou3ObjFv = .text:0x8038AC38; // type:function size:0x3BC scope:global align:4 +restFly__Q34Game11ShijimiChou3ObjFv = .text:0x8038AFF4; // type:function size:0x108 scope:global align:4 +restCheck__Q34Game11ShijimiChou3ObjFv = .text:0x8038B0FC; // type:function size:0xB4 scope:global align:4 +checkRestOn__Q34Game11ShijimiChou3ObjFv = .text:0x8038B1B0; // type:function size:0x370 scope:global align:4 +checkRestOff__Q34Game11ShijimiChou3ObjFv = .text:0x8038B520; // type:function size:0x2AC scope:global align:4 +resetRestPos__Q34Game11ShijimiChou3ObjFv = .text:0x8038B7CC; // type:function size:0xFC scope:global align:4 +leave__Q34Game11ShijimiChou3ObjFv = .text:0x8038B8C8; // type:function size:0x174 scope:global align:4 +leaveInit__Q34Game11ShijimiChou3ObjFv = .text:0x8038BA3C; // type:function size:0x1AC scope:global align:4 +setNextGoal__Q34Game11ShijimiChou3ObjFv = .text:0x8038BBE8; // type:function size:0x210 scope:global align:4 +setTraceGoal__Q34Game11ShijimiChou3ObjFv = .text:0x8038BDF8; // type:function size:0x100 scope:global align:4 +isFallEnd__Q34Game11ShijimiChou3ObjFv = .text:0x8038BEF8; // type:function size:0x60 scope:global align:4 +deadEffect__Q34Game11ShijimiChou3ObjFv = .text:0x8038BF58; // type:function size:0x28 scope:global align:4 +fallBehavior__Q34Game11ShijimiChou3ObjFv = .text:0x8038BF80; // type:function size:0x1C4 scope:global align:4 +updateCluster__Q34Game11ShijimiChou3ObjFv = .text:0x8038C144; // type:function size:0xB0 scope:global align:4 +getFlyType__Q34Game11ShijimiChou3ObjFv = .text:0x8038C1F4; // type:function size:0x20 scope:global align:4 +leaderInit__Q34Game11ShijimiChou3ObjFv = .text:0x8038C214; // type:function size:0x6C scope:global align:4 +createAppearEffect__Q34Game11ShijimiChou3ObjFv = .text:0x8038C280; // type:function size:0xA8 scope:global align:4 +fadeAppearEffect__Q34Game11ShijimiChou3ObjFv = .text:0x8038C328; // type:function size:0x30 scope:global align:4 +getName__Q23efx7ArgChouFv = .text:0x8038C358; // type:function size:0x8 scope:weak align:4 +setInitialSetting__Q34Game11ShijimiChou3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8038C360; // type:function size:0x4 scope:weak align:4 +ignoreAtari__Q34Game11ShijimiChou3ObjFPQ24Game8Creature = .text:0x8038C364; // type:function size:0x88 scope:weak align:4 +pressCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038C3EC; // type:function size:0x8 scope:weak align:4 +hipdropCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038C3F4; // type:function size:0x8 scope:weak align:4 +earthquakeCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8Creaturef = .text:0x8038C3FC; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game11ShijimiChou3ObjFv = .text:0x8038C404; // type:function size:0x8 scope:weak align:4 +__sinit_shijimiChou_cpp = .text:0x8038C40C; // type:function size:0x4 scope:local align:4 +@828@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8038C410; // type:function size:0x14 scope:weak align:4 +@828@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8038C424; // type:function size:0x14 scope:weak align:4 +@828@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8038C438; // type:function size:0x14 scope:weak align:4 +@828@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8038C44C; // type:function size:0x14 scope:weak align:4 +@828@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8038C460; // type:function size:0x14 scope:weak align:4 +@828@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8038C474; // type:function size:0x14 scope:weak align:4 +__ct__Q38Morimura14TChallengePiki7posInfoFv = .text:0x8038C488; // type:function size:0x4 scope:weak align:4 +update__Q28Morimura14TChallengePikiFv = .text:0x8038C48C; // type:function size:0x46C scope:global align:4 +update__Q28Morimura15TChallengePanelFib = .text:0x8038C8F8; // type:function size:0x3D0 scope:global align:4 +__ct__Q28Morimura16TChallengeScreenFP10JKRArchivei = .text:0x8038CCC8; // type:function size:0xA0 scope:global align:4 +create__Q28Morimura16TChallengeScreenFPCcUl = .text:0x8038CD68; // type:function size:0x3C0 scope:global align:4 +createAnimPane__Q28Morimura16TChallengeScreenFPc = .text:0x8038D128; // type:function size:0xD8 scope:global align:4 +update__Q28Morimura16TChallengeScreenFv = .text:0x8038D200; // type:function size:0x18C scope:global align:4 +updateBckPane__Q28Morimura16TChallengeScreenFv = .text:0x8038D38C; // type:function size:0xB0 scope:global align:4 +isRandAnimStart__Q28Morimura16TChallengeScreenFv = .text:0x8038D43C; // type:function size:0x20 scope:global align:4 +__ct__Q28Morimura24TChallengePlayModeScreenFP10JKRArchivei = .text:0x8038D45C; // type:function size:0x128 scope:global align:4 +create__Q28Morimura24TChallengePlayModeScreenFPCcUl = .text:0x8038D584; // type:function size:0x598 scope:global align:4 +update__Q28Morimura24TChallengePlayModeScreenFv = .text:0x8038DB1C; // type:function size:0x7FC scope:global align:4 +draw__Q28Morimura24TChallengePlayModeScreenFR8GraphicsP13J2DPerspGraph = .text:0x8038E318; // type:function size:0x660 scope:global align:4 +create__Q28Morimura33TChallengeSelectExplanationWindowFPCcUl = .text:0x8038E978; // type:function size:0x3C scope:global align:4 +screenScaleUp__Q28Morimura33TChallengeSelectExplanationWindowFv = .text:0x8038E9B4; // type:function size:0x4 scope:global align:4 +__ct__Q28Morimura16TChallengeSelectFv = .text:0x8038E9B8; // type:function size:0x13C scope:global align:4 +__dt__Q28Morimura16TChallengeSelectFv = .text:0x8038EAF4; // type:function size:0xF4 scope:global align:4 +doCreate__Q28Morimura16TChallengeSelectFP10JKRArchive = .text:0x8038EBE8; // type:function size:0x1B98 scope:global align:4 +doUpdate__Q28Morimura16TChallengeSelectFv = .text:0x80390780; // type:function size:0x14CC scope:global align:4 +doDraw__Q28Morimura16TChallengeSelectFR8Graphics = .text:0x80391C4C; // type:function size:0x514 scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura16TChallengeSelectFv = .text:0x80392160; // type:function size:0x78 scope:global align:4 +setInfo__Q28Morimura16TChallengeSelectFi = .text:0x803921D8; // type:function size:0x3F8 scope:global align:4 +setStageName__Q28Morimura16TChallengeSelectFi = .text:0x803925D0; // type:function size:0xD0 scope:global align:4 +getState__Q28Morimura16TChallengeSelectFi = .text:0x803926A0; // type:function size:0x12C scope:global align:4 +getAfterState__Q28Morimura16TChallengeSelectFi = .text:0x803927CC; // type:function size:0xA4 scope:global align:4 +isChangeState__Q28Morimura16TChallengeSelectFi = .text:0x80392870; // type:function size:0xE4 scope:global align:4 +getIndexMax__Q28Morimura16TChallengeSelectFv = .text:0x80392954; // type:function size:0x1CC scope:global align:4 +openWindow__Q28Morimura16TChallengeSelectFv = .text:0x80392B20; // type:function size:0x24 scope:global align:4 +closeWindow__Q28Morimura16TChallengeSelectFv = .text:0x80392B44; // type:function size:0x24 scope:global align:4 +reset__Q28Morimura16TChallengeSelectFv = .text:0x80392B68; // type:function size:0x140 scope:global align:4 +demoStart__Q28Morimura16TChallengeSelectFv = .text:0x80392CA8; // type:function size:0x4C0 scope:global align:4 +doCreateObj__Q28Morimura21TChallengeSelectSceneFP10JKRArchive = .text:0x80393168; // type:function size:0x9C scope:global align:4 +doStart__Q28Morimura21TChallengeSelectSceneFPQ26Screen13StartSceneArg = .text:0x80393204; // type:function size:0x34 scope:global align:4 +getResName__Q28Morimura21TChallengeSelectSceneCFv = .text:0x80393238; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura21TChallengeSelectSceneFv = .text:0x80393244; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura21TChallengeSelectSceneFv = .text:0x8039324C; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura21TChallengeSelectSceneFv = .text:0x80393258; // type:function size:0x14 scope:weak align:4 +__dt__Q25efx2d11T2DChalDiveFv = .text:0x8039326C; // type:function size:0x84 scope:weak align:4 +getDispMemberBase__Q28Morimura16TChallengeSelectFv = .text:0x803932F0; // type:function size:0x34 scope:weak align:4 +__sinit_challengeSelect2D_cpp = .text:0x80393324; // type:function size:0x14 scope:local align:4 +@24@__dt__Q28Morimura16TChallengeSelectFv = .text:0x80393338; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d11T2DChalDiveFv = .text:0x80393340; // type:function size:0x8 scope:weak align:4 +create__Q28Morimura22TChallengeResultScreenFPCcUl = .text:0x80393348; // type:function size:0x20 scope:global align:4 +createAnimPane__Q28Morimura22TChallengeResultScreenFPc = .text:0x80393368; // type:function size:0x118 scope:global align:4 +updateBckPane__Q28Morimura22TChallengeResultScreenFv = .text:0x80393480; // type:function size:0x54 scope:global align:4 +create__Q28Morimura26TChallengeResultDemoScreenFPCcUl = .text:0x803934D4; // type:function size:0xF8 scope:global align:4 +update__Q28Morimura26TChallengeResultDemoScreenFv = .text:0x803935CC; // type:function size:0xE4 scope:global align:4 +draw__Q28Morimura26TChallengeResultDemoScreenFR8GraphicsP13J2DPerspGraph = .text:0x803936B0; // type:function size:0x2C scope:global align:4 +setPane__Q28Morimura9TMovePaneFP7J2DPane = .text:0x803936DC; // type:function size:0x7C scope:global align:4 +update__Q28Morimura9TMovePaneFv = .text:0x80393758; // type:function size:0xFC scope:global align:4 +move__Q28Morimura9TMovePaneFv = .text:0x80393854; // type:function size:0x16C scope:global align:4 +turn__Q28Morimura9TMovePaneFv = .text:0x803939C0; // type:function size:0x8C scope:global align:4 +getAngDist__Q28Morimura9TMovePaneFv = .text:0x80393A4C; // type:function size:0x7C scope:global align:4 +hosei__Q28Morimura9TMovePaneFv = .text:0x80393AC8; // type:function size:0x204 scope:global align:4 +rolling__Q28Morimura9TMovePaneFv = .text:0x80393CCC; // type:function size:0x30 scope:global align:4 +stick__Q28Morimura9TMovePaneFv = .text:0x80393CFC; // type:function size:0x12C scope:global align:4 +isReachToGoal__Q28Morimura9TMovePaneFv = .text:0x80393E28; // type:function size:0x34 scope:global align:4 +reset__Q28Morimura9TMovePaneFv = .text:0x80393E5C; // type:function size:0xD0 scope:global align:4 +setTCounterRV__8MorimuraFPQ29P2DScreen3MgrUxUxUxPUlUsUsP10JKRArchive = .text:0x80393F2C; // type:function size:0x100 scope:global align:4 +__ct__Q28Morimura10TCounterRVFPPcUsUsP10JKRArchive = .text:0x8039402C; // type:function size:0x130 scope:global align:4 +update__Q28Morimura10TCounterRVFv = .text:0x8039415C; // type:function size:0xDC scope:global align:4 +setValue__Q28Morimura10TCounterRVFbb = .text:0x80394238; // type:function size:0xD8 scope:global align:4 +__ct__Q28Morimura16TChallengeResultFv = .text:0x80394310; // type:function size:0x2F0 scope:global align:4 +__ct__Q38Morimura16TChallengeResult10VectorUnitFv = .text:0x80394600; // type:function size:0x4 scope:weak align:4 +__dt__Q28Morimura16TChallengeResultFv = .text:0x80394604; // type:function size:0xF4 scope:global align:4 +doCreate__Q28Morimura16TChallengeResultFP10JKRArchive = .text:0x803946F8; // type:function size:0x1854 scope:global align:4 +doUpdate__Q28Morimura16TChallengeResultFv = .text:0x80395F4C; // type:function size:0x9C0 scope:global align:4 +doDraw__Q28Morimura16TChallengeResultFR8Graphics = .text:0x8039690C; // type:function size:0x160 scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura16TChallengeResultFv = .text:0x80396A6C; // type:function size:0x5C scope:global align:4 +setInfo__Q28Morimura16TChallengeResultFv = .text:0x80396AC8; // type:function size:0xEDC scope:global align:4 +updateDemo__Q28Morimura16TChallengeResultFv = .text:0x803979A4; // type:function size:0x1250 scope:global align:4 +changeAnimDemo__Q28Morimura16TChallengeResultFv = .text:0x80398BF4; // type:function size:0x540 scope:global align:4 +startRankInDemo__Q28Morimura16TChallengeResultFv = .text:0x80399134; // type:function size:0x220 scope:global align:4 +startDemo__Q28Morimura16TChallengeResultFv = .text:0x80399354; // type:function size:0x17C scope:global align:4 +fadeEffect__Q28Morimura16TChallengeResultFv = .text:0x803994D0; // type:function size:0x120 scope:global align:4 +doUserCallBackFunc__Q28Morimura21TChallengeResultSceneFPQ28Resource10MgrCommand = .text:0x803995F0; // type:function size:0xB0 scope:global align:4 +getResName__Q28Morimura21TChallengeResultSceneCFv = .text:0x803996A0; // type:function size:0x8 scope:weak align:4 +doCreateObj__Q28Morimura21TChallengeResultSceneFP10JKRArchive = .text:0x803996A8; // type:function size:0x4 scope:weak align:4 +getSceneType__Q28Morimura21TChallengeResultSceneFv = .text:0x803996AC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura21TChallengeResultSceneFv = .text:0x803996B4; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura21TChallengeResultSceneFv = .text:0x803996C0; // type:function size:0x14 scope:weak align:4 +getDispMemberBase__Q28Morimura16TChallengeResultFv = .text:0x803996D4; // type:function size:0x34 scope:weak align:4 +__dt__Q25efx2d15T2DCavecompLoopFv = .text:0x80399708; // type:function size:0x84 scope:weak align:4 +__dt__Q28Morimura10TCounterRVFv = .text:0x8039978C; // type:function size:0x90 scope:weak align:4 +@8@__dt__Q25efx2d15T2DCavecompLoopFv = .text:0x8039981C; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura16TChallengeResultFv = .text:0x80399824; // type:function size:0x8 scope:weak align:4 +draw__Q28Morimura16TVsSelectIndPaneFv = .text:0x8039982C; // type:function size:0x314 scope:global align:4 +create__Q28Morimura26TVsSelectExplanationWindowFPCcUl = .text:0x80399B40; // type:function size:0x3C scope:global align:4 +screenScaleUp__Q28Morimura26TVsSelectExplanationWindowFv = .text:0x80399B7C; // type:function size:0x4 scope:global align:4 +__ct__Q38Morimura7TVsPiki7posInfoFv = .text:0x80399B80; // type:function size:0x4 scope:weak align:4 +update__Q28Morimura7TVsPikiFi = .text:0x80399B84; // type:function size:0x2C8 scope:global align:4 +draw__Q28Morimura7TVsPikiFv = .text:0x80399E4C; // type:function size:0x280 scope:global align:4 +posUpdate__Q28Morimura14TVsSelectOnyonFf = .text:0x8039A0CC; // type:function size:0x308 scope:global align:4 +getAngDist__Q28Morimura14TVsSelectOnyonFv = .text:0x8039A3D4; // type:function size:0x7C scope:global align:4 +create__Q28Morimura15TVsSelectScreenFPCcUl = .text:0x8039A450; // type:function size:0x2B0 scope:global align:4 +update__Q28Morimura17TVsSelectCBWinNumFv = .text:0x8039A700; // type:function size:0x58 scope:global align:4 +setValue__Q28Morimura17TVsSelectCBWinNumFbb = .text:0x8039A758; // type:function size:0x68 scope:global align:4 +__ct__Q28Morimura9TVsSelectFv = .text:0x8039A7C0; // type:function size:0x3A0 scope:global align:4 +__dt__Q28Morimura9TVsSelectFv = .text:0x8039AB60; // type:function size:0x10C scope:global align:4 +doCreate__Q28Morimura9TVsSelectFP10JKRArchive = .text:0x8039AC6C; // type:function size:0x2554 scope:global align:4 +create__Q28Morimura19TVsSelectListScreenFPCcUl = .text:0x8039D1C0; // type:function size:0x20 scope:weak align:4 +doUpdate__Q28Morimura9TVsSelectFv = .text:0x8039D1E0; // type:function size:0x1244 scope:global align:4 +update__Q28Morimura19TVsSelectListScreenFv = .text:0x8039E424; // type:function size:0x30 scope:weak align:4 +doDraw__Q28Morimura9TVsSelectFR8Graphics = .text:0x8039E454; // type:function size:0xAF0 scope:global align:4 +__as__10J2DPictureFRC10J2DPicture = .text:0x8039EF44; // type:function size:0x1D4 scope:weak align:4 +__as__7J2DPaneFRC7J2DPane = .text:0x8039F118; // type:function size:0x21C scope:weak align:4 +doUpdateFadeinFinish__Q28Morimura9TVsSelectFv = .text:0x8039F334; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura9TVsSelectFv = .text:0x8039F340; // type:function size:0xAC scope:global align:4 +paneInit__Q28Morimura9TVsSelectFv = .text:0x8039F3EC; // type:function size:0x3CC scope:global align:4 +changePaneInfo__Q28Morimura9TVsSelectFv = .text:0x8039F7B8; // type:function size:0x240 scope:global align:4 +getNameID__Q28Morimura9TVsSelectFi = .text:0x8039F9F8; // type:function size:0x84 scope:global align:4 +getIdMax__Q28Morimura9TVsSelectFv = .text:0x8039FA7C; // type:function size:0x8 scope:weak align:4 +getCourseID__Q28Morimura9TVsSelectFi = .text:0x8039FA84; // type:function size:0x3C scope:global align:4 +doZoom__Q28Morimura9TVsSelectFv = .text:0x8039FAC0; // type:function size:0x1F4 scope:global align:4 +doMoveOnyon__Q28Morimura9TVsSelectFv = .text:0x8039FCB4; // type:function size:0x6C scope:global align:4 +doScreenEffect__Q28Morimura9TVsSelectFv = .text:0x8039FD20; // type:function size:0x214 scope:global align:4 +onyonDemoInit__Q28Morimura9TVsSelectFv = .text:0x8039FF34; // type:function size:0x4FC scope:global align:4 +demoStart__Q28Morimura9TVsSelectFv = .text:0x803A0430; // type:function size:0x1C0 scope:global align:4 +changeCourseTexture__Q28Morimura9TVsSelectFv = .text:0x803A05F0; // type:function size:0x9C scope:global align:4 +changeIndirectTexture__Q28Morimura9TVsSelectFv = .text:0x803A068C; // type:function size:0xD0 scope:global align:4 +setShortenIndex__Q28Morimura9TVsSelectFiib = .text:0x803A075C; // type:function size:0xB8 scope:global align:4 +updateFacePicture__Q28Morimura9TVsSelectFv = .text:0x803A0814; // type:function size:0x140 scope:global align:4 +changeFaceTexture__Q28Morimura9TVsSelectFv = .text:0x803A0954; // type:function size:0x1F4 scope:global align:4 +changeOrimaTexture__Q28Morimura9TVsSelectFi = .text:0x803A0B48; // type:function size:0x9C scope:global align:4 +changeLouieTexture__Q28Morimura9TVsSelectFi = .text:0x803A0BE4; // type:function size:0x9C scope:global align:4 +changeSlotPage__Q28Morimura9TVsSelectFv = .text:0x803A0C80; // type:function size:0x118 scope:global align:4 +doCreateObj__Q28Morimura14TVsSelectSceneFP10JKRArchive = .text:0x803A0D98; // type:function size:0x9C scope:global align:4 +doStart__Q28Morimura14TVsSelectSceneFPQ26Screen13StartSceneArg = .text:0x803A0E34; // type:function size:0x34 scope:global align:4 +getResName__Q28Morimura14TVsSelectSceneCFv = .text:0x803A0E68; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura14TVsSelectSceneFv = .text:0x803A0E74; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura14TVsSelectSceneFv = .text:0x803A0E7C; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura14TVsSelectSceneFv = .text:0x803A0E88; // type:function size:0x14 scope:weak align:4 +getDispMemberBase__Q28Morimura9TVsSelectFv = .text:0x803A0E9C; // type:function size:0x34 scope:weak align:4 +__dt__Q28Morimura17TVsSelectCBWinNumFv = .text:0x803A0ED0; // type:function size:0xA0 scope:weak align:4 +__dt__Q28Morimura16TVsSelectIndPaneFv = .text:0x803A0F70; // type:function size:0x70 scope:weak align:4 +__sinit_vsSelect2D_cpp = .text:0x803A0FE0; // type:function size:0x44 scope:local align:4 +@24@__dt__Q28Morimura9TVsSelectFv = .text:0x803A1024; // type:function size:0x8 scope:weak align:4 +draw__Q28Morimura16TCallbackScissorFR8GraphicsR14J2DGrafContext = .text:0x803A102C; // type:function size:0xB8 scope:global align:4 +__ct__Q28Morimura13TOffsetMsgSetFPUxUxi = .text:0x803A10E4; // type:function size:0xC0 scope:global align:4 +__ct__Q28Morimura13TOffsetMsgSetFPUxUxiPUxPi = .text:0x803A11A4; // type:function size:0x68 scope:global align:4 +getMsgID__Q28Morimura13TOffsetMsgSetFi = .text:0x803A120C; // type:function size:0x19C scope:global align:4 +__ct__Q28Morimura11TScreenBaseFP10JKRArchivei = .text:0x803A13A8; // type:function size:0x28 scope:global align:4 +create__Q28Morimura11TScreenBaseFPCcUl = .text:0x803A13D0; // type:function size:0x90 scope:global align:4 +addAnim__Q28Morimura11TScreenBaseFPc = .text:0x803A1460; // type:function size:0xB0 scope:global align:4 +update__Q28Morimura11TScreenBaseFv = .text:0x803A1510; // type:function size:0x88 scope:global align:4 +draw__Q28Morimura11TScreenBaseFR8GraphicsP13J2DPerspGraph = .text:0x803A1598; // type:function size:0x38 scope:global align:4 +__ct__Q28Morimura8TIndPaneFPCcff = .text:0x803A15D0; // type:function size:0x124 scope:global align:4 +createIndTexture__Q28Morimura8TIndPaneFPCc = .text:0x803A16F4; // type:function size:0xA4 scope:global align:4 +createCaptureTexture__Q28Morimura8TIndPaneF9_GXTexFmt = .text:0x803A1798; // type:function size:0x74 scope:global align:4 +draw__Q28Morimura8TIndPaneFv = .text:0x803A180C; // type:function size:0x308 scope:global align:4 +setValue__Q28Morimura15TScaleUpCounterFbb = .text:0x803A1B14; // type:function size:0xA8 scope:global align:4 +forceScaleUp__Q28Morimura15TScaleUpCounterFb = .text:0x803A1BBC; // type:function size:0x60 scope:global align:4 +setScale__Q28Morimura15TScaleUpCounterFff = .text:0x803A1C1C; // type:function size:0x40 scope:global align:4 +setScaleUpCounter__8MorimuraFPQ29P2DScreen3MgrUxPUlUsP10JKRArchive = .text:0x803A1C5C; // type:function size:0x1A4 scope:global align:4 +setScaleUpCounter2__8MorimuraFPQ29P2DScreen3MgrUxUxPUlUsP10JKRArchive = .text:0x803A1E00; // type:function size:0x12C scope:global align:4 +drawSelf__Q28Morimura12TScissorPaneFffPA3_A4_f = .text:0x803A1F2C; // type:function size:0xB8 scope:global align:4 +__dt__Q28Morimura12TScissorPaneFv = .text:0x803A1FE4; // type:function size:0x60 scope:weak align:4 +__dt__Q28Morimura15TScaleUpCounterFv = .text:0x803A2044; // type:function size:0x90 scope:weak align:4 +__dt__Q28Morimura16TCallbackScissorFv = .text:0x803A20D4; // type:function size:0x80 scope:weak align:4 +__ct__Q28Morimura11TIndexGroupFv = .text:0x803A2154; // type:function size:0x4C scope:global align:4 +upIndex__Q28Morimura11TIndexGroupFv = .text:0x803A21A0; // type:function size:0x6C scope:global align:4 +downIndex__Q28Morimura11TIndexGroupFv = .text:0x803A220C; // type:function size:0x6C scope:global align:4 +rollSpUp__Q28Morimura11TIndexGroupFv = .text:0x803A2278; // type:function size:0x30 scope:global align:4 +update__Q28Morimura10TIndexPaneFv = .text:0x803A22A8; // type:function size:0x9C scope:global align:4 +createIconInfo__Q28Morimura10TIndexPaneFii = .text:0x803A2344; // type:function size:0x94 scope:global align:4 +setIndex__Q28Morimura10TIndexPaneFi = .text:0x803A23D8; // type:function size:0x1E4 scope:global align:4 +getIndex__Q28Morimura10TIndexPaneFv = .text:0x803A25BC; // type:function size:0x58 scope:global align:4 +getListIndex__Q28Morimura10TIndexPaneFv = .text:0x803A2614; // type:function size:0x8 scope:global align:4 +doIconOffsetY__Q28Morimura10TIndexPaneFv = .text:0x803A261C; // type:function size:0xF4 scope:global align:4 +__ct__Q28Morimura9TIconInfoFv = .text:0x803A2710; // type:function size:0x68 scope:global align:4 +init__Q28Morimura9TIconInfoFPQ28Morimura15TScaleUpCounterP7J2DPaneP7J2DPane = .text:0x803A2778; // type:function size:0xD0 scope:global align:4 +update__Q28Morimura9TIconInfoFf = .text:0x803A2848; // type:function size:0x198 scope:global align:4 +setInfo__Q28Morimura9TIconInfoFiPC7ResTIMG = .text:0x803A29E0; // type:function size:0x1B4 scope:global align:4 +startScaleUp__Q28Morimura9TIconInfoFf = .text:0x803A2B94; // type:function size:0x40 scope:global align:4 +create__Q28Morimura11TListScreenFPCcUl = .text:0x803A2BD4; // type:function size:0xE4 scope:global align:4 +__ct__Q28Morimura11TScrollListFPc = .text:0x803A2CB8; // type:function size:0x90 scope:global align:4 +updateIndex__Q28Morimura11TScrollListFb = .text:0x803A2D48; // type:function size:0x428 scope:global align:4 +getUpdateIndex__Q28Morimura11TScrollListFRib = .text:0x803A3170; // type:function size:0xDC scope:global align:4 +updateList__Q28Morimura11TScrollListFv = .text:0x803A324C; // type:function size:0x390 scope:global align:4 +changeIndex__Q28Morimura11TScrollListFv = .text:0x803A35DC; // type:function size:0x60 scope:global align:4 +@24@__dt__Q28Morimura11TScrollListFv = .text:0x803A363C; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura17TConfirmEndWindowFPCc = .text:0x803A3644; // type:function size:0x50 scope:global align:4 +doStart__Q28Morimura17TConfirmEndWindowFPCQ26Screen13StartSceneArg = .text:0x803A3694; // type:function size:0x40 scope:global align:4 +doUpdateFadeinFinish__Q28Morimura17TConfirmEndWindowFv = .text:0x803A36D4; // type:function size:0x54 scope:global align:4 +doUpdateFadein__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3728; // type:function size:0x20 scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3748; // type:function size:0x40 scope:global align:4 +doUpdateFadeout__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3788; // type:function size:0x28 scope:global align:4 +doDraw__Q28Morimura17TConfirmEndWindowFR8Graphics = .text:0x803A37B0; // type:function size:0x38 scope:global align:4 +setRetireMsg__Q28Morimura17TConfirmEndWindowFUx = .text:0x803A37E8; // type:function size:0x24 scope:global align:4 +__ct__Q28Morimura24TSelectExplanationWindowFP10JKRArchivei = .text:0x803A380C; // type:function size:0x74 scope:global align:4 +update__Q28Morimura24TSelectExplanationWindowFv = .text:0x803A3880; // type:function size:0x194 scope:global align:4 +draw__Q28Morimura24TSelectExplanationWindowFR8GraphicsP13J2DPerspGraph = .text:0x803A3A14; // type:function size:0x2C scope:global align:4 +openWindow__Q28Morimura24TSelectExplanationWindowFv = .text:0x803A3A40; // type:function size:0x14 scope:global align:4 +closeWindow__Q28Morimura24TSelectExplanationWindowFv = .text:0x803A3A54; // type:function size:0x14 scope:global align:4 +__dt__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3A68; // type:function size:0x80 scope:weak align:4 +@24@__dt__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3AE8; // type:function size:0x8 scope:weak align:4 +init__Q34Game8BlackMan3FSMFPQ24Game9EnemyBase = .text:0x803A3AF0; // type:function size:0x174 scope:global align:4 +__ct__Q34Game8BlackMan9StateWalkFi = .text:0x803A3C64; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A3CA0; // type:function size:0x80 scope:global align:4 +exec__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBase = .text:0x803A3D20; // type:function size:0x1D4 scope:global align:4 +cleanup__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBase = .text:0x803A3EF4; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan9StateDeadFi = .text:0x803A3F18; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A3F54; // type:function size:0x64 scope:global align:4 +exec__Q34Game8BlackMan9StateDeadFPQ24Game9EnemyBase = .text:0x803A3FB8; // type:function size:0xFC scope:global align:4 +__ct__Q34Game8BlackMan11StateFreezeFi = .text:0x803A40B4; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A40F0; // type:function size:0x90 scope:global align:4 +exec__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBase = .text:0x803A4180; // type:function size:0x2F4 scope:global align:4 +cleanup__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBase = .text:0x803A4474; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan9StateBendFi = .text:0x803A4498; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A44D4; // type:function size:0x74 scope:global align:4 +exec__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBase = .text:0x803A4548; // type:function size:0x1E8 scope:global align:4 +cleanup__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBase = .text:0x803A4730; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan11StateEscapeFi = .text:0x803A4754; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan11StateEscapeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4790; // type:function size:0xB0 scope:global align:4 +exec__Q34Game8BlackMan11StateEscapeFPQ24Game9EnemyBase = .text:0x803A4840; // type:function size:0x2B4 scope:global align:4 +__ct__Q34Game8BlackMan9StateFallFi = .text:0x803A4AF4; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4B30; // type:function size:0x4C scope:global align:4 +exec__Q34Game8BlackMan9StateFallFPQ24Game9EnemyBase = .text:0x803A4B7C; // type:function size:0x178 scope:global align:4 +__ct__Q34Game8BlackMan12StateRecoverFi = .text:0x803A4CF4; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan12StateRecoverFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4D30; // type:function size:0xC8 scope:global align:4 +exec__Q34Game8BlackMan12StateRecoverFPQ24Game9EnemyBase = .text:0x803A4DF8; // type:function size:0x16C scope:global align:4 +__ct__Q34Game8BlackMan10StateFlickFi = .text:0x803A4F64; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4FA0; // type:function size:0x158 scope:global align:4 +exec__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBase = .text:0x803A50F8; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBase = .text:0x803A51B0; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan10StateTiredFi = .text:0x803A51D4; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan10StateTiredFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A5210; // type:function size:0x5C scope:global align:4 +exec__Q34Game8BlackMan10StateTiredFPQ24Game9EnemyBase = .text:0x803A526C; // type:function size:0xC0 scope:global align:4 +__sinit_blackManState_cpp = .text:0x803A532C; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game8BlackMan14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x803A5354; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8BlackMan14ProperAnimatorFi = .text:0x803A535C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8BlackMan14ProperAnimatorFv = .text:0x803A5364; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8BlackMan14ProperAnimatorFv = .text:0x803A53C0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8BlackMan3MgrFiUc = .text:0x803A53C8; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8BlackMan3MgrFv = .text:0x803A5418; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8BlackMan5ParmsFv = .text:0x803A5460; // type:function size:0xEC scope:weak align:4 +__ct__Q44Game8BlackMan5Parms11ProperParmsFv = .text:0x803A554C; // type:function size:0x368 scope:weak align:4 +birth__Q34Game8BlackMan3MgrFRQ24Game13EnemyBirthArg = .text:0x803A58B4; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game8BlackMan3MgrFv = .text:0x803A58D4; // type:function size:0x94 scope:global align:4 +loadTexData__Q34Game8BlackMan3MgrFv = .text:0x803A5968; // type:function size:0xBC scope:global align:4 +doLoadBmd__Q34Game8BlackMan3MgrFPv = .text:0x803A5A24; // type:function size:0x2C scope:global align:4 +createModel__Q34Game8BlackMan3MgrFv = .text:0x803A5A50; // type:function size:0x124 scope:global align:4 +__dt__Q34Game8BlackMan3MgrFv = .text:0x803A5B74; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8BlackMan3MgrFv = .text:0x803A5C24; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game8BlackMan3MgrFi = .text:0x803A5C2C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8BlackMan3ObjFv = .text:0x803A5C8C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8BlackMan3MgrFi = .text:0x803A5D48; // type:function size:0x10 scope:weak align:4 +read__Q34Game8BlackMan5ParmsFR6Stream = .text:0x803A5D58; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8BlackMan3MgrFv = .text:0x803A5DA8; // type:function size:0x8 scope:weak align:4 +lHandCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5DB0; // type:function size:0x3C scope:local align:4 +rHandCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5DEC; // type:function size:0x3C scope:local align:4 +lFootCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5E28; // type:function size:0x3C scope:local align:4 +rFootCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5E64; // type:function size:0x3C scope:local align:4 +bodyCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5EA0; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game8BlackMan3ObjFv = .text:0x803A5ED8; // type:function size:0xF0 scope:global align:4 +birth__Q34Game8BlackMan3ObjFR10Vector3f = .text:0x803A5FC8; // type:function size:0x20 scope:global align:4 +onInit__Q34Game8BlackMan3ObjFPQ24Game15CreatureInitArg = .text:0x803A5FE8; // type:function size:0x6B4 scope:global align:4 +__ct__Q34Game8BlackMan3ObjFv = .text:0x803A669C; // type:function size:0x560 scope:global align:4 +setFSM__Q34Game8BlackMan3ObjFPQ34Game8BlackMan3FSM = .text:0x803A6BFC; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game8BlackMan3ObjFv = .text:0x803A6C48; // type:function size:0x6C4 scope:global align:4 +doDirectDraw__Q34Game8BlackMan3ObjFR8Graphics = .text:0x803A730C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8BlackMan3ObjFR8Graphics = .text:0x803A7310; // type:function size:0x20 scope:global align:4 +doSimulation__Q34Game8BlackMan3ObjFf = .text:0x803A7330; // type:function size:0x174 scope:global align:4 +doAnimationCullingOff__Q34Game8BlackMan3ObjFv = .text:0x803A74A4; // type:function size:0x238 scope:global align:4 +onKill__Q34Game8BlackMan3ObjFPQ24Game15CreatureKillArg = .text:0x803A76DC; // type:function size:0x3C scope:global align:4 +doStartStoneState__Q34Game8BlackMan3ObjFv = .text:0x803A7718; // type:function size:0xDC scope:global align:4 +doFinishStoneState__Q34Game8BlackMan3ObjFv = .text:0x803A77F4; // type:function size:0xBC scope:global align:4 +isUnderground__Q34Game8BlackMan3ObjFv = .text:0x803A78B0; // type:function size:0x58 scope:global align:4 +doGetLifeGaugeParam__Q34Game8BlackMan3ObjFRQ24Game14LifeGaugeParam = .text:0x803A7908; // type:function size:0xA4 scope:global align:4 +collisionCallback__Q34Game8BlackMan3ObjFRQ24Game9CollEvent = .text:0x803A79AC; // type:function size:0x1B8 scope:global align:4 +damageCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803A7B64; // type:function size:0x16C scope:global align:4 +hipdropCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803A7CD0; // type:function size:0x134 scope:global align:4 +earthquakeCallBack__Q34Game8BlackMan3ObjFPQ24Game8Creaturef = .text:0x803A7E04; // type:function size:0xDC scope:global align:4 +doEntry__Q34Game8BlackMan3ObjFv = .text:0x803A7EE0; // type:function size:0x68 scope:global align:4 +changeMaterial__Q34Game8BlackMan3ObjFv = .text:0x803A7F48; // type:function size:0x31C scope:global align:4 +getShadowParam__Q34Game8BlackMan3ObjFRQ24Game11ShadowParam = .text:0x803A8264; // type:function size:0x50 scope:global align:4 +initWalkSmokeEffect__Q34Game8BlackMan3ObjFv = .text:0x803A82B4; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game8BlackMan3ObjFv = .text:0x803A8318; // type:function size:0x1C scope:global align:4 +walkFunc__Q34Game8BlackMan3ObjFv = .text:0x803A8334; // type:function size:0x848 scope:global align:4 +isReachToGoal__Q34Game8BlackMan3ObjFf = .text:0x803A8B7C; // type:function size:0x34 scope:global align:4 +findNextRoutePoint__Q34Game8BlackMan3ObjFv = .text:0x803A8BB0; // type:function size:0xED0 scope:global align:4 +findNextTraceRoutePoint__Q34Game8BlackMan3ObjFv = .text:0x803A9A80; // type:function size:0xD0 scope:global align:4 +isEndPathFinder__Q34Game8BlackMan3ObjFv = .text:0x803A9B50; // type:function size:0x114 scope:global align:4 +setPathFinder__Q34Game8BlackMan3ObjFb = .text:0x803A9C64; // type:function size:0x1D8 scope:global align:4 +releasePathFinder__Q34Game8BlackMan3ObjFv = .text:0x803A9E3C; // type:function size:0x44 scope:global align:4 +jointMtxCalc__Q34Game8BlackMan3ObjFi = .text:0x803A9E80; // type:function size:0x590 scope:global align:4 +bodyMtxCalc__Q34Game8BlackMan3ObjFv = .text:0x803AA410; // type:function size:0x28C scope:global align:4 +isTyreFreeze__Q34Game8BlackMan3ObjFv = .text:0x803AA69C; // type:function size:0x40 scope:global align:4 +isTyreDead__Q34Game8BlackMan3ObjFv = .text:0x803AA6DC; // type:function size:0x9C scope:global align:4 +isFallEnd__Q34Game8BlackMan3ObjFv = .text:0x803AA778; // type:function size:0x74 scope:global align:4 +moveRestart__Q34Game8BlackMan3ObjFv = .text:0x803AA7EC; // type:function size:0x1D4 scope:global align:4 +escape__Q34Game8BlackMan3ObjFv = .text:0x803AA9C0; // type:function size:0x4 scope:global align:4 +setTimer__Q34Game8BlackMan3ObjFf = .text:0x803AA9C4; // type:function size:0x8 scope:global align:4 +getTimer__Q34Game8BlackMan3ObjFv = .text:0x803AA9CC; // type:function size:0x8 scope:global align:4 +collisionStOn__Q34Game8BlackMan3ObjFv = .text:0x803AA9D4; // type:function size:0xA0 scope:global align:4 +collisionStOff__Q34Game8BlackMan3ObjFv = .text:0x803AAA74; // type:function size:0x98 scope:global align:4 +flick__Q34Game8BlackMan3ObjFv = .text:0x803AAB0C; // type:function size:0x4C scope:global align:4 +recover__Q34Game8BlackMan3ObjFv = .text:0x803AAB58; // type:function size:0x150 scope:global align:4 +recoverFlick__Q34Game8BlackMan3ObjFv = .text:0x803AACA8; // type:function size:0xF8 scope:global align:4 +tyreFlick__Q34Game8BlackMan3ObjFv = .text:0x803AADA0; // type:function size:0x2C scope:global align:4 +deadEffect__Q34Game8BlackMan3ObjFv = .text:0x803AADCC; // type:function size:0xD0 scope:global align:4 +deadTraceEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAE9C; // type:function size:0x34 scope:global align:4 +tyreUpEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAED0; // type:function size:0x74 scope:global align:4 +tyreDownEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAF44; // type:function size:0x50 scope:global align:4 +bendEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAF94; // type:function size:0x94 scope:global align:4 +createTraceEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB028; // type:function size:0x5C scope:global align:4 +fadeTraceEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB084; // type:function size:0x50 scope:global align:4 +createFlickEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB0D4; // type:function size:0x58 scope:global align:4 +fadeFlickEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB12C; // type:function size:0x50 scope:global align:4 +isFinalFloor__Q34Game8BlackMan3ObjFv = .text:0x803AB17C; // type:function size:0xC4 scope:global align:4 +appearFanfare__Q34Game8BlackMan3ObjFv = .text:0x803AB240; // type:function size:0x1C0 scope:global align:4 +getName__Q23efx11ArgPrmColorFv = .text:0x803AB400; // type:function size:0xC scope:weak align:4 +__dt__Q23efx10TKageFlickFv = .text:0x803AB40C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKageTyreupFv = .text:0x803AB4A8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TKageDead1Fv = .text:0x803AB544; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TKageRunFv = .text:0x803AB5E0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TKageMoveFv = .text:0x803AB67C; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game8BlackMan3ObjFPQ24Game21EnemyInitialParamBase = .text:0x803AB718; // type:function size:0x4 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game8BlackMan3ObjFv = .text:0x803AB71C; // type:function size:0x4 scope:weak align:4 +createEfxHamon__Q34Game8BlackMan3ObjFv = .text:0x803AB720; // type:function size:0x2C scope:weak align:4 +updateEfxHamon__Q34Game8BlackMan3ObjFv = .text:0x803AB74C; // type:function size:0x40 scope:weak align:4 +bombCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreatureR10Vector3f = .text:0x803AB78C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game8BlackMan3ObjFv = .text:0x803AB794; // type:function size:0x8 scope:weak align:4 +__sinit_blackMan_cpp = .text:0x803AB79C; // type:function size:0x28 scope:local align:4 +@940@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x803AB7C4; // type:function size:0x14 scope:weak align:4 +@940@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AB7D8; // type:function size:0x14 scope:weak align:4 +@940@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AB7EC; // type:function size:0x14 scope:weak align:4 +@940@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AB800; // type:function size:0x14 scope:weak align:4 +@940@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AB814; // type:function size:0x14 scope:weak align:4 +@940@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x803AB828; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TKageMoveFv = .text:0x803AB83C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TKageRunFv = .text:0x803AB844; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TKageDead1Fv = .text:0x803AB84C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TKageTyreupFv = .text:0x803AB854; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TKageFlickFv = .text:0x803AB85C; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Tyre3FSMFPQ24Game9EnemyBase = .text:0x803AB864; // type:function size:0xC0 scope:global align:4 +__ct__Q34Game4Tyre9StateMoveFi = .text:0x803AB924; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803AB960; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBase = .text:0x803AB9A8; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBase = .text:0x803ABA64; // type:function size:0x24 scope:global align:4 +__ct__Q34Game4Tyre9StateLandFi = .text:0x803ABA88; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803ABAC4; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tyre9StateLandFPQ24Game9EnemyBase = .text:0x803ABB0C; // type:function size:0xB4 scope:global align:4 +__ct__Q34Game4Tyre11StateFreezeFi = .text:0x803ABBC0; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre11StateFreezeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803ABBFC; // type:function size:0x74 scope:global align:4 +exec__Q34Game4Tyre11StateFreezeFPQ24Game9EnemyBase = .text:0x803ABC70; // type:function size:0xB4 scope:global align:4 +__ct__Q34Game4Tyre9StateDeadFi = .text:0x803ABD24; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803ABD60; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tyre9StateDeadFPQ24Game9EnemyBase = .text:0x803ABDA8; // type:function size:0x44 scope:global align:4 +setAnimMgr__Q34Game4Tyre14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x803ABDEC; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Tyre14ProperAnimatorFi = .text:0x803ABDF4; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Tyre14ProperAnimatorFv = .text:0x803ABDFC; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Tyre14ProperAnimatorFv = .text:0x803ABE58; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tyre3MgrFiUc = .text:0x803ABE60; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Tyre3MgrFv = .text:0x803ABEB0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Tyre5ParmsFv = .text:0x803ABEF8; // type:function size:0xDC scope:weak align:4 +birth__Q34Game4Tyre3MgrFRQ24Game13EnemyBirthArg = .text:0x803ABFD4; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game4Tyre3MgrFv = .text:0x803ABFF4; // type:function size:0x94 scope:global align:4 +doLoadBmd__Q34Game4Tyre3MgrFPv = .text:0x803AC088; // type:function size:0x2C scope:global align:4 +__dt__Q34Game4Tyre3MgrFv = .text:0x803AC0B4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Tyre3MgrFv = .text:0x803AC164; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game4Tyre3MgrFi = .text:0x803AC16C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Tyre3ObjFv = .text:0x803AC1CC; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Tyre3MgrFi = .text:0x803AC288; // type:function size:0x10 scope:weak align:4 +read__Q34Game4Tyre5ParmsFR6Stream = .text:0x803AC298; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game4Tyre3MgrFv = .text:0x803AC2E8; // type:function size:0x8 scope:weak align:4 +frontTyreCallBack__Q24Game4TyreFP8J3DJointi = .text:0x803AC2F0; // type:function size:0x38 scope:local align:4 +rearTyreCallBack__Q24Game4TyreFP8J3DJointi = .text:0x803AC328; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game4Tyre3ObjFv = .text:0x803AC360; // type:function size:0x20 scope:global align:4 +birth__Q34Game4Tyre3ObjFR10Vector3f = .text:0x803AC380; // type:function size:0x20 scope:global align:4 +onInit__Q34Game4Tyre3ObjFPQ24Game15CreatureInitArg = .text:0x803AC3A0; // type:function size:0x18C scope:global align:4 +__ct__Q34Game4Tyre3ObjFv = .text:0x803AC52C; // type:function size:0x3C0 scope:global align:4 +setFSM__Q34Game4Tyre3ObjFPQ34Game4Tyre3FSM = .text:0x803AC8EC; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game4Tyre3ObjFv = .text:0x803AC938; // type:function size:0x4C scope:global align:4 +doAnimationCullingOff__Q34Game4Tyre3ObjFv = .text:0x803AC984; // type:function size:0xB8 scope:global align:4 +doDirectDraw__Q34Game4Tyre3ObjFR8Graphics = .text:0x803ACA3C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Tyre3ObjFR8Graphics = .text:0x803ACA40; // type:function size:0x20 scope:global align:4 +doSimulation__Q34Game4Tyre3ObjFf = .text:0x803ACA60; // type:function size:0x20 scope:global align:4 +doGetLifeGaugeParam__Q34Game4Tyre3ObjFRQ24Game14LifeGaugeParam = .text:0x803ACA80; // type:function size:0x80 scope:global align:4 +doStartStoneState__Q34Game4Tyre3ObjFv = .text:0x803ACB00; // type:function size:0x12C scope:global align:4 +doFinishStoneState__Q34Game4Tyre3ObjFv = .text:0x803ACC2C; // type:function size:0x124 scope:global align:4 +collisionCallback__Q34Game4Tyre3ObjFRQ24Game9CollEvent = .text:0x803ACD50; // type:function size:0x538 scope:global align:4 +damageCallBack__Q34Game4Tyre3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803AD288; // type:function size:0xA0 scope:global align:4 +hipdropCallBack__Q34Game4Tyre3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803AD328; // type:function size:0x3C scope:global align:4 +earthquakeCallBack__Q34Game4Tyre3ObjFPQ24Game8Creaturef = .text:0x803AD364; // type:function size:0x58 scope:global align:4 +inWaterCallback__Q34Game4Tyre3ObjFPQ24Game8WaterBox = .text:0x803AD3BC; // type:function size:0x34 scope:global align:4 +outWaterCallback__Q34Game4Tyre3ObjFv = .text:0x803AD3F0; // type:function size:0x44 scope:global align:4 +getShadowParam__Q34Game4Tyre3ObjFRQ24Game11ShadowParam = .text:0x803AD434; // type:function size:0x50 scope:global align:4 +needShadow__Q34Game4Tyre3ObjFv = .text:0x803AD484; // type:function size:0x4C scope:global align:4 +isFreeze__Q34Game4Tyre3ObjFv = .text:0x803AD4D0; // type:function size:0x50 scope:global align:4 +frontRollMtxCalc__Q34Game4Tyre3ObjFv = .text:0x803AD520; // type:function size:0x298 scope:global align:4 +rearRollMtxCalc__Q34Game4Tyre3ObjFv = .text:0x803AD7B8; // type:function size:0x38C scope:global align:4 +getEnemyTypeID__Q34Game4Tyre3ObjFv = .text:0x803ADB44; // type:function size:0x8 scope:weak align:4 +moveStart__Q34Game4Tyre3ObjFv = .text:0x803ADB4C; // type:function size:0x88 scope:global align:4 +collisionStOn__Q34Game4Tyre3ObjFv = .text:0x803ADBD4; // type:function size:0xE8 scope:global align:4 +collisionStOff__Q34Game4Tyre3ObjFv = .text:0x803ADCBC; // type:function size:0x108 scope:global align:4 +flick__Q34Game4Tyre3ObjFv = .text:0x803ADDC4; // type:function size:0x5CC scope:global align:4 +deadEffect__Q34Game4Tyre3ObjFv = .text:0x803AE390; // type:function size:0x100 scope:global align:4 +createSmokeEffect__Q34Game4Tyre3ObjFv = .text:0x803AE490; // type:function size:0x64 scope:global align:4 +fadeSmokeEffect__Q34Game4Tyre3ObjFv = .text:0x803AE4F4; // type:function size:0x50 scope:global align:4 +landEffect__Q34Game4Tyre3ObjFR10Vector3 = .text:0x803AE544; // type:function size:0x1E8 scope:global align:4 +scaleUpShadow__Q34Game4Tyre3ObjFv = .text:0x803AE72C; // type:function size:0x2C scope:global align:4 +__dt__Q23efx14TKageTyresmokeFv = .text:0x803AE758; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game4Tyre3ObjFPQ24Game21EnemyInitialParamBase = .text:0x803AE7F4; // type:function size:0x4 scope:weak align:4 +isUnderground__Q34Game4Tyre3ObjFv = .text:0x803AE7F8; // type:function size:0x8 scope:weak align:4 +bombCallBack__Q34Game4Tyre3ObjFPQ24Game8CreatureR10Vector3f = .text:0x803AE800; // type:function size:0x8 scope:weak align:4 +__sinit_tyre_cpp = .text:0x803AE808; // type:function size:0x28 scope:local align:4 +@836@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x803AE830; // type:function size:0x14 scope:weak align:4 +@836@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AE844; // type:function size:0x14 scope:weak align:4 +@836@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AE858; // type:function size:0x14 scope:weak align:4 +@836@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AE86C; // type:function size:0x14 scope:weak align:4 +@836@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AE880; // type:function size:0x14 scope:weak align:4 +@836@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x803AE894; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14TKageTyresmokeFv = .text:0x803AE8A8; // type:function size:0x8 scope:weak align:4 +executeAfter__Q23efx24TCallBack_StaticClippingFP14JPABaseEmitter = .text:0x803AE8B0; // type:function size:0x3C scope:global align:4 +add__Q23efx11TOneEmitterFPQ23efx7Context = .text:0x803AE8EC; // type:function size:0x48 scope:global align:4 +executeAfter__Q23efx11TOneEmitterFP14JPABaseEmitter = .text:0x803AE934; // type:function size:0xC0 scope:global align:4 +create__Q23efx11TOneEmitterFPQ23efx3Arg = .text:0x803AE9F4; // type:function size:0xA8 scope:global align:4 +fade__Q23efx11TOneEmitterFv = .text:0x803AEA9C; // type:function size:0x58 scope:global align:4 +forceKill__Q23efx11TOneEmitterFv = .text:0x803AEAF4; // type:function size:0x58 scope:global align:4 +add__Q23efx19TOneEmitterChasePosFPQ23efx15ContextChasePos = .text:0x803AEB4C; // type:function size:0x48 scope:global align:4 +del__Q23efx19TOneEmitterChasePosFPQ23efx15ContextChasePos = .text:0x803AEB94; // type:function size:0x24 scope:global align:4 +create__Q23efx19TOneEmitterChasePosFPQ23efx3Arg = .text:0x803AEBB8; // type:function size:0xA8 scope:global align:4 +executeAfter__Q23efx19TOneEmitterChasePosFP14JPABaseEmitter = .text:0x803AEC60; // type:function size:0xAC scope:global align:4 +fade__Q23efx19TOneEmitterChasePosFv = .text:0x803AED0C; // type:function size:0x58 scope:global align:4 +forceKill__Q23efx19TOneEmitterChasePosFv = .text:0x803AED64; // type:function size:0x58 scope:global align:4 +create__Q23efx17TOneEmitterSimpleFPQ23efx3Arg = .text:0x803AEDBC; // type:function size:0xBC scope:global align:4 +executeAfter__Q23efx17TOneEmitterSimpleFP14JPABaseEmitter = .text:0x803AEE78; // type:function size:0x10C scope:global align:4 +create__Q23efx8TSimple1FPQ23efx3Arg = .text:0x803AEF84; // type:function size:0x90 scope:global align:4 +create__Q23efx8TSimple2FPQ23efx3Arg = .text:0x803AF014; // type:function size:0xA8 scope:global align:4 +create__Q23efx8TSimple3FPQ23efx3Arg = .text:0x803AF0BC; // type:function size:0xA8 scope:global align:4 +create__Q23efx8TSimple4FPQ23efx3Arg = .text:0x803AF164; // type:function size:0xA8 scope:global align:4 +create__Q23efx8TSimple5FPQ23efx3Arg = .text:0x803AF20C; // type:function size:0xA8 scope:global align:4 +create__Q23efx11TSimpleMtx1FPQ23efx3Arg = .text:0x803AF2B4; // type:function size:0xE4 scope:global align:4 +create__Q23efx11TSimpleMtx2FPQ23efx3Arg = .text:0x803AF398; // type:function size:0x11C scope:global align:4 +create__Q23efx11TSimpleMtx3FPQ23efx3Arg = .text:0x803AF4B4; // type:function size:0x11C scope:global align:4 +create__Q23efx11TSimpleMtx4FPQ23efx3Arg = .text:0x803AF5D0; // type:function size:0x11C scope:global align:4 +create__Q23efx5TSyncFPQ23efx3Arg = .text:0x803AF6EC; // type:function size:0xDC scope:global align:4 +execute__Q23efx5TSyncFP14JPABaseEmitter = .text:0x803AF7C8; // type:function size:0x6C scope:global align:4 +executeAfter__Q23efx5TSyncFP14JPABaseEmitter = .text:0x803AF834; // type:function size:0x90 scope:global align:4 +forceKill__Q23efx5TSyncFv = .text:0x803AF8C4; // type:function size:0x3C scope:global align:4 +fade__Q23efx5TSyncFv = .text:0x803AF900; // type:function size:0x70 scope:global align:4 +doExecuteEmitterOperation__Q23efx9TChasePosFP14JPABaseEmitter = .text:0x803AF970; // type:function size:0x78 scope:global align:4 +doExecuteEmitterOperation__Q23efx13TChasePosYRotFP14JPABaseEmitter = .text:0x803AF9E8; // type:function size:0xD8 scope:global align:4 +doExecuteEmitterOperation__Q23efx9TChaseMtxFP14JPABaseEmitter = .text:0x803AFAC0; // type:function size:0x6C scope:global align:4 +doExecuteEmitterOperation__Q23efx10TChaseMtxTFP14JPABaseEmitter = .text:0x803AFB2C; // type:function size:0x78 scope:global align:4 +doExecuteEmitterOperation__Q23efx12TChasePosPosFP14JPABaseEmitter = .text:0x803AFBA4; // type:function size:0xDC scope:global align:4 +makeMtxZAxisAlongPosPos__3efxFPA4_fR10Vector3R10Vector3 = .text:0x803AFC80; // type:function size:0xF8 scope:weak align:4 +doExecuteEmitterOperation__Q23efx23TChasePosPosLocalZScaleFP14JPABaseEmitter = .text:0x803AFD78; // type:function size:0x14C scope:global align:4 +doExecuteEmitterOperation__Q23efx23TChasePosPosLocalYScaleFP14JPABaseEmitter = .text:0x803AFEC4; // type:function size:0x14C scope:global align:4 +__ct__Q23efx9TForever2FUsUs = .text:0x803B0010; // type:function size:0x98 scope:global align:4 +__ct__Q23efx8TForeverFv = .text:0x803B00A8; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx9TForever3FUsUsUs = .text:0x803B0100; // type:function size:0xA8 scope:global align:4 +__ct__Q23efx9TForever4FUsUsUsUs = .text:0x803B01A8; // type:function size:0x98 scope:global align:4 +__ct__Q23efx10TChasePos2FP10Vector3UsUs = .text:0x803B0240; // type:function size:0xAC scope:global align:4 +__ct__Q23efx9TChasePosFv = .text:0x803B02EC; // type:function size:0x58 scope:weak align:4 +setPosptr__Q23efx10TChasePos2FP10Vector3 = .text:0x803B0344; // type:function size:0xC scope:global align:4 +__ct__Q23efx10TChasePos3FP10Vector3UsUsUs = .text:0x803B0350; // type:function size:0xA0 scope:global align:4 +__ct__Q23efx10TChasePos4FP10Vector3UsUsUsUs = .text:0x803B03F0; // type:function size:0xAC scope:global align:4 +__ct__Q23efx10TChaseMtx2FPA4_fUsUs = .text:0x803B049C; // type:function size:0xAC scope:global align:4 +__ct__Q23efx9TChaseMtxFv = .text:0x803B0548; // type:function size:0x58 scope:weak align:4 +setMtxptr__Q23efx10TChaseMtx2FPA4_f = .text:0x803B05A0; // type:function size:0xC scope:global align:4 +__ct__Q23efx10TChaseMtx3FPA4_fUsUsUs = .text:0x803B05AC; // type:function size:0xA0 scope:global align:4 +setMtxptr__Q23efx10TChaseMtx3FPA4_f = .text:0x803B064C; // type:function size:0x10 scope:global align:4 +__ct__Q23efx10TChaseMtx4FPA4_fUsUsUsUs = .text:0x803B065C; // type:function size:0xAC scope:global align:4 +setMtxptr__Q23efx10TChaseMtx4FPA4_f = .text:0x803B0708; // type:function size:0x14 scope:global align:4 +__ct__Q23efx10TChaseMtx6FPA4_fUsUsUsUsUsUs = .text:0x803B071C; // type:function size:0xC4 scope:global align:4 +setMtxptr__Q23efx10TChaseMtx6FPA4_f = .text:0x803B07E0; // type:function size:0x1C scope:global align:4 +__ct__Q23efx11TChaseMtxT2FPA4_fUsUs = .text:0x803B07FC; // type:function size:0xAC scope:global align:4 +__ct__Q23efx10TChaseMtxTFv = .text:0x803B08A8; // type:function size:0x58 scope:weak align:4 +setMtxptr__Q23efx11TChaseMtxT2FPA4_f = .text:0x803B0900; // type:function size:0xC scope:global align:4 +__ct__Q23efx11TChaseMtxT4FPA4_fUsUsUsUs = .text:0x803B090C; // type:function size:0xAC scope:global align:4 +setMtxptr__Q23efx11TChaseMtxT4FPA4_f = .text:0x803B09B8; // type:function size:0x14 scope:global align:4 +__ct__Q23efx14TChasePosYRot2FP10Vector3PfUsUs = .text:0x803B09CC; // type:function size:0xA0 scope:global align:4 +__ct__Q23efx13TChasePosYRotFv = .text:0x803B0A6C; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx14TChasePosYRot3FP10Vector3PfUsUsUs = .text:0x803B0AC4; // type:function size:0xB0 scope:global align:4 +__ct__Q23efx23TChasePosPosLocalYScaleFv = .text:0x803B0B74; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx24TChasePosPosLocalYScale3FP10Vector3P10Vector3fUsUsUs = .text:0x803B0BCC; // type:function size:0xC8 scope:global align:4 +setPosptr__Q23efx24TChasePosPosLocalYScale3FP10Vector3P10Vector3 = .text:0x803B0C94; // type:function size:0x1C scope:global align:4 +__ct__Q23efx23TChasePosPosLocalZScaleFv = .text:0x803B0CB0; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx24TChasePosPosLocalZScale3FP10Vector3P10Vector3fUsUsUs = .text:0x803B0D08; // type:function size:0xC8 scope:global align:4 +setPosptr__Q23efx24TChasePosPosLocalZScale3FP10Vector3P10Vector3 = .text:0x803B0DD0; // type:function size:0x1C scope:global align:4 +__dt__Q23efx19TOneEmitterChasePosFv = .text:0x803B0DEC; // type:function size:0x8C scope:weak align:4 +startDemoDrawOff__Q23efx19TOneEmitterChasePosFv = .text:0x803B0E78; // type:function size:0x1C scope:weak align:4 +endDemoDrawOn__Q23efx19TOneEmitterChasePosFv = .text:0x803B0E94; // type:function size:0x1C scope:weak align:4 +__dt__Q23efx24TCallBack_StaticClippingFv = .text:0x803B0EB0; // type:function size:0x60 scope:weak align:4 +create__Q23efx29TSyncGroup6FPQ23efx3Arg = .text:0x803B0F10; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup6Fv = .text:0x803B0F8C; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup6Fv = .text:0x803B0FE4; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup6Fv = .text:0x803B103C; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup6Fv = .text:0x803B1094; // type:function size:0x58 scope:weak align:4 +create__Q23efx31TSyncGroup4FPQ23efx3Arg = .text:0x803B10EC; // type:function size:0x7C scope:weak align:4 +fade__Q23efx31TSyncGroup4Fv = .text:0x803B1168; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx31TSyncGroup4Fv = .text:0x803B11C0; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx31TSyncGroup4Fv = .text:0x803B1218; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx31TSyncGroup4Fv = .text:0x803B1270; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup4FPQ23efx3Arg = .text:0x803B12C8; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup4Fv = .text:0x803B1344; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup4Fv = .text:0x803B139C; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup4Fv = .text:0x803B13F4; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup4Fv = .text:0x803B144C; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup4FPQ23efx3Arg = .text:0x803B14A4; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup4Fv = .text:0x803B1520; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup4Fv = .text:0x803B1578; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup4Fv = .text:0x803B15D0; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup4Fv = .text:0x803B1628; // type:function size:0x58 scope:weak align:4 +create__Q23efx28TSyncGroup4FPQ23efx3Arg = .text:0x803B1680; // type:function size:0x7C scope:weak align:4 +fade__Q23efx28TSyncGroup4Fv = .text:0x803B16FC; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx28TSyncGroup4Fv = .text:0x803B1754; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx28TSyncGroup4Fv = .text:0x803B17AC; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx28TSyncGroup4Fv = .text:0x803B1804; // type:function size:0x58 scope:weak align:4 +create__Q23efx44TSyncGroup3FPQ23efx3Arg = .text:0x803B185C; // type:function size:0x7C scope:weak align:4 +fade__Q23efx44TSyncGroup3Fv = .text:0x803B18D8; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx44TSyncGroup3Fv = .text:0x803B1930; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx44TSyncGroup3Fv = .text:0x803B1988; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx44TSyncGroup3Fv = .text:0x803B19E0; // type:function size:0x58 scope:weak align:4 +create__Q23efx44TSyncGroup3FPQ23efx3Arg = .text:0x803B1A38; // type:function size:0x7C scope:weak align:4 +fade__Q23efx44TSyncGroup3Fv = .text:0x803B1AB4; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx44TSyncGroup3Fv = .text:0x803B1B0C; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx44TSyncGroup3Fv = .text:0x803B1B64; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx44TSyncGroup3Fv = .text:0x803B1BBC; // type:function size:0x58 scope:weak align:4 +create__Q23efx34TSyncGroup3FPQ23efx3Arg = .text:0x803B1C14; // type:function size:0x7C scope:weak align:4 +fade__Q23efx34TSyncGroup3Fv = .text:0x803B1C90; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx34TSyncGroup3Fv = .text:0x803B1CE8; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx34TSyncGroup3Fv = .text:0x803B1D40; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx34TSyncGroup3Fv = .text:0x803B1D98; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup3FPQ23efx3Arg = .text:0x803B1DF0; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup3Fv = .text:0x803B1E6C; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup3Fv = .text:0x803B1EC4; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup3Fv = .text:0x803B1F1C; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup3Fv = .text:0x803B1F74; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup3FPQ23efx3Arg = .text:0x803B1FCC; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup3Fv = .text:0x803B2048; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup3Fv = .text:0x803B20A0; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup3Fv = .text:0x803B20F8; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup3Fv = .text:0x803B2150; // type:function size:0x58 scope:weak align:4 +create__Q23efx28TSyncGroup3FPQ23efx3Arg = .text:0x803B21A8; // type:function size:0x7C scope:weak align:4 +fade__Q23efx28TSyncGroup3Fv = .text:0x803B2224; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx28TSyncGroup3Fv = .text:0x803B227C; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx28TSyncGroup3Fv = .text:0x803B22D4; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx28TSyncGroup3Fv = .text:0x803B232C; // type:function size:0x58 scope:weak align:4 +create__Q23efx34TSyncGroup2FPQ23efx3Arg = .text:0x803B2384; // type:function size:0x7C scope:weak align:4 +fade__Q23efx34TSyncGroup2Fv = .text:0x803B2400; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx34TSyncGroup2Fv = .text:0x803B2458; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx34TSyncGroup2Fv = .text:0x803B24B0; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx34TSyncGroup2Fv = .text:0x803B2508; // type:function size:0x58 scope:weak align:4 +create__Q23efx31TSyncGroup2FPQ23efx3Arg = .text:0x803B2560; // type:function size:0x7C scope:weak align:4 +fade__Q23efx31TSyncGroup2Fv = .text:0x803B25DC; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx31TSyncGroup2Fv = .text:0x803B2634; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx31TSyncGroup2Fv = .text:0x803B268C; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx31TSyncGroup2Fv = .text:0x803B26E4; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup2FPQ23efx3Arg = .text:0x803B273C; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup2Fv = .text:0x803B27B8; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup2Fv = .text:0x803B2810; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup2Fv = .text:0x803B2868; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup2Fv = .text:0x803B28C0; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup2FPQ23efx3Arg = .text:0x803B2918; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup2Fv = .text:0x803B2994; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup2Fv = .text:0x803B29EC; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup2Fv = .text:0x803B2A44; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup2Fv = .text:0x803B2A9C; // type:function size:0x58 scope:weak align:4 +create__Q23efx28TSyncGroup2FPQ23efx3Arg = .text:0x803B2AF4; // type:function size:0x7C scope:weak align:4 +fade__Q23efx28TSyncGroup2Fv = .text:0x803B2B70; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx28TSyncGroup2Fv = .text:0x803B2BC8; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx28TSyncGroup2Fv = .text:0x803B2C20; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx28TSyncGroup2Fv = .text:0x803B2C78; // type:function size:0x58 scope:weak align:4 +__sinit_efxBase_cpp = .text:0x803B2CD0; // type:function size:0x4C scope:local align:4 +@4@executeAfter__Q23efx11TOneEmitterFP14JPABaseEmitter = .text:0x803B2D1C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TOneEmitterFv = .text:0x803B2D24; // type:function size:0x8 scope:weak align:4 +@4@executeAfter__Q23efx19TOneEmitterChasePosFP14JPABaseEmitter = .text:0x803B2D2C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx19TOneEmitterChasePosFv = .text:0x803B2D34; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOneEmitterSimpleFv = .text:0x803B2D3C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx5TSyncFv = .text:0x803B2D44; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TChasePosFv = .text:0x803B2D4C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TChasePosYRotFv = .text:0x803B2D54; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TChaseMtxFv = .text:0x803B2D5C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TChaseMtxTFv = .text:0x803B2D64; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TChasePosPosFv = .text:0x803B2D6C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx23TChasePosPosLocalZScaleFv = .text:0x803B2D74; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx23TChasePosPosLocalYScaleFv = .text:0x803B2D7C; // type:function size:0x8 scope:weak align:4 +create__Q23efx9TChibiHitFPQ23efx3Arg = .text:0x803B2D84; // type:function size:0x124 scope:global align:4 +create__Q23efx9TChouDownFPQ23efx3Arg = .text:0x803B2EA8; // type:function size:0xE0 scope:global align:4 +setGlobalScale__Q23efx9TUmiHamonFf = .text:0x803B2F88; // type:function size:0x44 scope:global align:4 +create__Q23efx9TUmiFlickFPQ23efx3Arg = .text:0x803B2FCC; // type:function size:0x100 scope:global align:4 +create__Q23efx10TUmiAttackFPQ23efx3Arg = .text:0x803B30CC; // type:function size:0xD0 scope:global align:4 +setGlobalScale__Q23efx7TUmiEatFf = .text:0x803B319C; // type:function size:0x24 scope:global align:4 +setGlobalScale__Q23efx11TUmiDeadawaFf = .text:0x803B31C0; // type:function size:0x24 scope:global align:4 +create__Q23efx12TUmiDeadmeltFPQ23efx3Arg = .text:0x803B31E4; // type:function size:0xD0 scope:global align:4 +create__Q23efx10TJgmAttackFPQ23efx3Arg = .text:0x803B32B4; // type:function size:0xE8 scope:global align:4 +create__Q23efx11TJgmAttackWFPQ23efx3Arg = .text:0x803B339C; // type:function size:0x100 scope:global align:4 +create__Q23efx8TJgmBackFPQ23efx3Arg = .text:0x803B349C; // type:function size:0xD0 scope:global align:4 +create__Q23efx9TJgmBackWFPQ23efx3Arg = .text:0x803B356C; // type:function size:0xE8 scope:global align:4 +create__Q23efx7TImoEatFPQ23efx3Arg = .text:0x803B3654; // type:function size:0xC0 scope:global align:4 +create__Q23efx13TUjinkoHd_ImoFPQ23efx3Arg = .text:0x803B3714; // type:function size:0x74 scope:global align:4 +create__Q23efx13TUjinkoAp_ImoFPQ23efx3Arg = .text:0x803B3788; // type:function size:0x74 scope:global align:4 +create__Q23efx9TImoSmokeFPQ23efx3Arg = .text:0x803B37FC; // type:function size:0xD0 scope:global align:4 +create__Q23efx12TOtaPartsoffFPQ23efx3Arg = .text:0x803B38CC; // type:function size:0xD0 scope:global align:4 +setGlobalTranslation__Q23efx13TNewkurageSuiFR10Vector3 = .text:0x803B399C; // type:function size:0x40 scope:global align:4 +setLifeTime__Q23efx14TNewkurageHireFs = .text:0x803B39DC; // type:function size:0x34 scope:global align:4 +setGlobalTranslation__Q23efx10TKurageSuiFR10Vector3 = .text:0x803B3A10; // type:function size:0x40 scope:global align:4 +setLifeTime__Q23efx11TKurageHireFs = .text:0x803B3A50; // type:function size:0x34 scope:global align:4 +setGlobalScale__Q23efx9TQuriGlowFf = .text:0x803B3A84; // type:function size:0x24 scope:global align:4 +create__Q23efx14THebiAphd_baseFPQ23efx3Arg = .text:0x803B3AA8; // type:function size:0xA4 scope:global align:4 +setGlobalAlpha__Q23efx13TKechappyTestFUc = .text:0x803B3B4C; // type:function size:0x34 scope:global align:4 +setGlobalParticleScale__Q23efx13TKechappyTestFf = .text:0x803B3B80; // type:function size:0x24 scope:global align:4 +setAwayFromCenterSpeed__Q23efx13TKechappyTestFf = .text:0x803B3BA4; // type:function size:0x24 scope:global align:4 +setSpread__Q23efx13TKechappyTestFf = .text:0x803B3BC8; // type:function size:0x24 scope:global align:4 +setGlobalDynamicsScale__Q23efx13TKechappyTestFR10Vector3 = .text:0x803B3BEC; // type:function size:0x4C scope:global align:4 +setRateLOD__Q23efx9TYakiBodyFi = .text:0x803B3C38; // type:function size:0xDC scope:global align:4 +create__Q23efx7TPanAppFPQ23efx3Arg = .text:0x803B3D14; // type:function size:0xD0 scope:global align:4 +create__Q23efx8TPanHideFPQ23efx3Arg = .text:0x803B3DE4; // type:function size:0xD0 scope:global align:4 +create__Q23efx9TPanSmokeFPQ23efx3Arg = .text:0x803B3EB4; // type:function size:0xD0 scope:global align:4 +create__Q23efx14TBabaFly_ver01FPQ23efx3Arg = .text:0x803B3F84; // type:function size:0xD0 scope:global align:4 +create__Q23efx7TBabaHeFPQ23efx3Arg = .text:0x803B4054; // type:function size:0x184 scope:global align:4 +create__Q23efx10TKoganeHitFPQ23efx3Arg = .text:0x803B41D8; // type:function size:0xE8 scope:global align:4 +create__Q23efx11TKoganeDiveFPQ23efx3Arg = .text:0x803B42C0; // type:function size:0xE8 scope:global align:4 +init__Q23efx26TParticleCallBack_TankFireFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B43A8; // type:function size:0x4 scope:global align:4 +execute__Q23efx26TParticleCallBack_TankFireFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B43AC; // type:function size:0x144 scope:global align:4 +create__Q23efx12TTankFireABCFPQ23efx3Arg = .text:0x803B44F0; // type:function size:0x90 scope:global align:4 +create__Q23efx12TTankFireINDFPQ23efx3Arg = .text:0x803B4580; // type:function size:0x44 scope:global align:4 +create__Q23efx9TTankFireFPQ23efx3Arg = .text:0x803B45C4; // type:function size:0x84 scope:global align:4 +create__Q23efx8TTankWatFPQ23efx3Arg = .text:0x803B4648; // type:function size:0x98 scope:global align:4 +doExecuteEmitterOperation__Q23efx14TDnkmsThunderAFP14JPABaseEmitter = .text:0x803B46E0; // type:function size:0x168 scope:global align:4 +doExecuteEmitterOperation__Q23efx14TDnkmsThunderBFP14JPABaseEmitter = .text:0x803B4848; // type:function size:0x168 scope:global align:4 +setRateLOD__Q23efx9THibaFireFi = .text:0x803B49B0; // type:function size:0xDC scope:global align:4 +create__Q23efx9TGasuHibaFPQ23efx3Arg = .text:0x803B4A8C; // type:function size:0xC0 scope:global align:4 +setRateLOD__Q23efx9TGasuHibaFi = .text:0x803B4B4C; // type:function size:0x78 scope:global align:4 +create__Q23efx10TDenkiHibaFPQ23efx3Arg = .text:0x803B4BC4; // type:function size:0x218 scope:global align:4 +create__Q23efx13TDenkiHibaMgrFPQ23efx3Arg = .text:0x803B4DDC; // type:function size:0x128 scope:global align:4 +createHiba__Q23efx13TDenkiHibaMgrFi = .text:0x803B4F04; // type:function size:0x178 scope:global align:4 +forceKill__Q23efx13TDenkiHibaMgrFv = .text:0x803B507C; // type:function size:0x8C scope:global align:4 +fade__Q23efx13TDenkiHibaMgrFv = .text:0x803B5108; // type:function size:0x8C scope:global align:4 +setRateLOD__Q23efx13TDenkiHibaMgrFi = .text:0x803B5194; // type:function size:0xB4 scope:global align:4 +forceKill__Q23efx8TTankWatFv = .text:0x803B5248; // type:function size:0x48 scope:weak align:4 +forceKill__Q23efx9TTankFireFv = .text:0x803B5290; // type:function size:0x50 scope:weak align:4 +forceKill__Q23efx12TTankFireABCFv = .text:0x803B52E0; // type:function size:0x48 scope:weak align:4 +__dt__Q23efx14TBabaFly_ver01Fv = .text:0x803B5328; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TPanSmokeFv = .text:0x803B53C4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TPanHideFv = .text:0x803B5460; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TImoSmokeFv = .text:0x803B54FC; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx7TImoEatFv = .text:0x803B5598; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TJgmBackFv = .text:0x803B5634; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TChouDownFv = .text:0x803B56D0; // type:function size:0x9C scope:weak align:4 +@4@__dt__Q23efx9TChouDownFv = .text:0x803B576C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TJgmBackFv = .text:0x803B5774; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx7TImoEatFv = .text:0x803B577C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TImoSmokeFv = .text:0x803B5784; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TPanHideFv = .text:0x803B578C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TPanSmokeFv = .text:0x803B5794; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TBabaFly_ver01Fv = .text:0x803B579C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TTankFireINDFv = .text:0x803B57A4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDnkmsThunderAFv = .text:0x803B57AC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDnkmsThunderBFv = .text:0x803B57B4; // type:function size:0x8 scope:weak align:4 +create__Q23efx12TOtakaraDiveFPQ23efx3Arg = .text:0x803B57BC; // type:function size:0x108 scope:global align:4 +create__Q23efx11TTsuyuGrow0FPQ23efx3Arg = .text:0x803B58C4; // type:function size:0x108 scope:global align:4 +create__Q23efx11TOtakaraApLFPQ23efx3Arg = .text:0x803B59CC; // type:function size:0x100 scope:global align:4 +create__Q23efx11TOtakaraApSFPQ23efx3Arg = .text:0x803B5ACC; // type:function size:0xE8 scope:global align:4 +create__Q23efx10TOtakaraApFPQ23efx3Arg = .text:0x803B5BB4; // type:function size:0x314 scope:global align:4 +create__Q23efx8TEgateBCFPQ23efx3Arg = .text:0x803B5EC8; // type:function size:0x124 scope:global align:4 +create__Q23efx13TKouhaiDamageFPQ23efx3Arg = .text:0x803B5FEC; // type:function size:0x124 scope:global align:4 +create__Q23efx14TPelkira_ver01FPQ23efx3Arg = .text:0x803B6110; // type:function size:0xE8 scope:global align:4 +create__Q23efx9ContainerFPQ23efx3Arg = .text:0x803B61F8; // type:function size:0xD0 scope:global align:4 +create__Q23efx12ContainerActFPQ23efx3Arg = .text:0x803B62C8; // type:function size:0xE8 scope:global align:4 +setRateLOD__Q23efx8WarpZoneFib = .text:0x803B63B0; // type:function size:0x1B0 scope:global align:4 +__dt__Q23efx9ContainerFv = .text:0x803B6560; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TPelkira_ver01Fv = .text:0x803B65FC; // type:function size:0x9C scope:weak align:4 +forceKill__Q23efx10TOtakaraApFv = .text:0x803B6698; // type:function size:0x4 scope:weak align:4 +fade__Q23efx10TOtakaraApFv = .text:0x803B669C; // type:function size:0x4 scope:weak align:4 +@4@__dt__Q23efx14TPelkira_ver01Fv = .text:0x803B66A0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9ContainerFv = .text:0x803B66A8; // type:function size:0x8 scope:weak align:4 +create__Q23efx11TPkNageBlurFPQ23efx3Arg = .text:0x803B66B0; // type:function size:0xF0 scope:global align:4 +create__Q23efx12TDopingSmokeFPQ23efx3Arg = .text:0x803B67A0; // type:function size:0x1E0 scope:global align:4 +create__Q23efx11TOrimaLightFPQ23efx3Arg = .text:0x803B6980; // type:function size:0x60 scope:global align:4 +create__Q23efx14TOrimaLightActFPQ23efx3Arg = .text:0x803B69E0; // type:function size:0x60 scope:global align:4 +init__Q23efx7TCursorFll = .text:0x803B6A40; // type:function size:0x78 scope:global align:4 +create__Q23efx7TCursorFPQ23efx3Arg = .text:0x803B6AB8; // type:function size:0x154 scope:global align:4 +update__Q23efx7TCursorFPQ23efx3Arg = .text:0x803B6C0C; // type:function size:0x100 scope:global align:4 +calcPos___Q23efx7TCursorFP10Vector3fl = .text:0x803B6D0C; // type:function size:0x148 scope:global align:4 +create__Q23efx13TFueactCircleFPQ23efx3Arg = .text:0x803B6E54; // type:function size:0xAC scope:global align:4 +execute__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B6F00; // type:function size:0x124 scope:global align:4 +execute__Q23efx13TFueactCircleFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B7024; // type:function size:0x2CC scope:global align:4 +doExecuteEmitterOperation__Q23efx15TFueactBiriBaseFP14JPABaseEmitter = .text:0x803B72F0; // type:function size:0x1D4 scope:global align:4 +createSimpleDead__3efxFR10Vector3l = .text:0x803B74C4; // type:function size:0x10C scope:global align:4 +createSimpleChinka__3efxFR10Vector3 = .text:0x803B75D0; // type:function size:0x5C scope:global align:4 +createSimpleGedoku__3efxFR10Vector3 = .text:0x803B762C; // type:function size:0x5C scope:global align:4 +createSimpleBlackDrop__3efxFR10Vector3 = .text:0x803B7688; // type:function size:0x98 scope:global align:4 +createSimpleGate1Attack__3efxFR10Vector3 = .text:0x803B7720; // type:function size:0x8C scope:global align:4 +createSimplePkAp__3efxFR10Vector3 = .text:0x803B77AC; // type:function size:0x8C scope:global align:4 +createSimpleWaterOff__3efxFR10Vector3 = .text:0x803B7838; // type:function size:0x5C scope:global align:4 +createSimpleDive__3efxFR10Vector3 = .text:0x803B7894; // type:function size:0x5C scope:global align:4 +createSimpleChiru__3efxFR10Vector3l = .text:0x803B78F0; // type:function size:0x98 scope:global align:4 +createSimpleInattack__3efxFR10Vector3 = .text:0x803B7988; // type:function size:0x5C scope:global align:4 +createSimpleInstick__3efxFR10Vector3 = .text:0x803B79E4; // type:function size:0x80 scope:global align:4 +createSimpleGate2Attack__3efxFR10Vector3 = .text:0x803B7A64; // type:function size:0x8C scope:global align:4 +createSimpleBridgeAttack__3efxFR10Vector3 = .text:0x803B7AF0; // type:function size:0x80 scope:global align:4 +createSimpleWalksmoke__3efxFR10Vector3 = .text:0x803B7B70; // type:function size:0x5C scope:global align:4 +createSimpleGlow2__3efxFR10Vector3 = .text:0x803B7BCC; // type:function size:0x8C scope:global align:4 +createSimpleStoneAttack__3efxFR10Vector3 = .text:0x803B7C58; // type:function size:0x80 scope:global align:4 +createSimpleDig__3efxFR10Vector3 = .text:0x803B7CD8; // type:function size:0x5C scope:global align:4 +createSimpleGate3Attack__3efxFR10Vector3 = .text:0x803B7D34; // type:function size:0x5C scope:global align:4 +createSimpleWalkwater__3efxFR10Vector3 = .text:0x803B7D90; // type:function size:0x5C scope:global align:4 +init__Q23efx11TNaviEffectFP10Vector3PA4_fP10Vector3Q33efx11TNaviEffect12enumNaviType = .text:0x803B7DEC; // type:function size:0x38 scope:global align:4 +setNaviType__Q23efx11TNaviEffectFQ33efx11TNaviEffect12enumNaviType = .text:0x803B7E24; // type:function size:0xD8 scope:global align:4 +update__Q23efx11TNaviEffectFv = .text:0x803B7EFC; // type:function size:0x20 scope:global align:4 +updateHamon___Q23efx11TNaviEffectFv = .text:0x803B7F1C; // type:function size:0xD8 scope:global align:4 +createHamonA___Q23efx11TNaviEffectFP10Vector3 = .text:0x803B7FF4; // type:function size:0x60 scope:global align:4 +killHamonA___Q23efx11TNaviEffectFv = .text:0x803B8054; // type:function size:0x24 scope:global align:4 +createHamonB___Q23efx11TNaviEffectFP10Vector3 = .text:0x803B8078; // type:function size:0x60 scope:global align:4 +killHamonB___Q23efx11TNaviEffectFv = .text:0x803B80D8; // type:function size:0x24 scope:global align:4 +createLight___Q23efx11TNaviEffectFPA4_f = .text:0x803B80FC; // type:function size:0x78 scope:global align:4 +killLight___Q23efx11TNaviEffectFv = .text:0x803B8174; // type:function size:0x2C scope:global align:4 +createLightAct___Q23efx11TNaviEffectFPA4_f = .text:0x803B81A0; // type:function size:0x78 scope:global align:4 +killLightAct___Q23efx11TNaviEffectFv = .text:0x803B8218; // type:function size:0x2C scope:global align:4 +createCursor___Q23efx11TNaviEffectF10Vector3f = .text:0x803B8244; // type:function size:0x64 scope:global align:4 +killCursor___Q23efx11TNaviEffectFv = .text:0x803B82A8; // type:function size:0x2C scope:global align:4 +updateCursor___Q23efx11TNaviEffectF10Vector3f = .text:0x803B82D4; // type:function size:0x284 scope:global align:4 +createFueact___Q23efx11TNaviEffectFPA4_fP10Vector3 = .text:0x803B8558; // type:function size:0xB4 scope:global align:4 +killFueact___Q23efx11TNaviEffectFv = .text:0x803B860C; // type:function size:0x2C scope:global align:4 +createOrimadamage___Q23efx11TNaviEffectFPA4_f = .text:0x803B8638; // type:function size:0x78 scope:global align:4 +init__Q23efx9TPkEffectFv = .text:0x803B86B0; // type:function size:0x3C scope:global align:4 +update__Q23efx9TPkEffectFv = .text:0x803B86EC; // type:function size:0x34 scope:global align:4 +updateMoeSmoke___Q23efx9TPkEffectFv = .text:0x803B8720; // type:function size:0x38 scope:global align:4 +updateHamon___Q23efx9TPkEffectFv = .text:0x803B8758; // type:function size:0xD0 scope:global align:4 +createKourin___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8828; // type:function size:0x64 scope:global align:4 +killKourin___Q23efx9TPkEffectFv = .text:0x803B888C; // type:function size:0x24 scope:global align:4 +createDoping___Q23efx9TPkEffectFP10Vector3 = .text:0x803B88B0; // type:function size:0x60 scope:global align:4 +killDoping___Q23efx9TPkEffectFv = .text:0x803B8910; // type:function size:0x24 scope:global align:4 +createNage___Q23efx9TPkEffectFP10Vector3PA4_f = .text:0x803B8934; // type:function size:0xF8 scope:global align:4 +killNage___Q23efx9TPkEffectFv = .text:0x803B8A2C; // type:function size:0x44 scope:global align:4 +createMoe___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8A70; // type:function size:0x7C scope:global align:4 +killMoe___Q23efx9TPkEffectFv = .text:0x803B8AEC; // type:function size:0x44 scope:global align:4 +createChudoku___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8B30; // type:function size:0x60 scope:global align:4 +killChudoku___Q23efx9TPkEffectFv = .text:0x803B8B90; // type:function size:0x24 scope:global align:4 +createMoeSmoke___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8BB4; // type:function size:0x60 scope:global align:4 +killMoeSmoke___Q23efx9TPkEffectFv = .text:0x803B8C14; // type:function size:0x24 scope:global align:4 +createBlackDown___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8C38; // type:function size:0x70 scope:global align:4 +killBlackDown___Q23efx9TPkEffectFv = .text:0x803B8CA8; // type:function size:0x2C scope:global align:4 +createWater___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8CD4; // type:function size:0x60 scope:global align:4 +killWater___Q23efx9TPkEffectFv = .text:0x803B8D34; // type:function size:0x24 scope:global align:4 +createHamonA___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8D58; // type:function size:0x60 scope:global align:4 +killHamonA___Q23efx9TPkEffectFv = .text:0x803B8DB8; // type:function size:0x24 scope:global align:4 +createHamonB___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8DDC; // type:function size:0x60 scope:global align:4 +killHamonB___Q23efx9TPkEffectFv = .text:0x803B8E3C; // type:function size:0x24 scope:global align:4 +init__Q23efx13TPkEffectTaneFv = .text:0x803B8E60; // type:function size:0x20 scope:global align:4 +createTanekira___Q23efx13TPkEffectTaneFP10Vector3 = .text:0x803B8E80; // type:function size:0x60 scope:global align:4 +killTanekira___Q23efx13TPkEffectTaneFv = .text:0x803B8EE0; // type:function size:0x24 scope:global align:4 +createKourin___Q23efx13TPkEffectTaneFP10Vector3 = .text:0x803B8F04; // type:function size:0x64 scope:global align:4 +killKourin___Q23efx13TPkEffectTaneFv = .text:0x803B8F68; // type:function size:0x24 scope:global align:4 +createGlow1___Q23efx13TPkEffectTaneFP10Vector3 = .text:0x803B8F8C; // type:function size:0x70 scope:global align:4 +executeAfter__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B8FFC; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx7TCursorFv = .text:0x803B9000; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q23efx11TPkNageBlurFv = .text:0x803B902C; // type:function size:0x8 scope:weak align:4 +@4@executeAfter__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B9034; // type:function size:0x8 scope:weak align:4 +@4@execute__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B903C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TFueactCircleFv = .text:0x803B9044; // type:function size:0x8 scope:weak align:4 +@8@execute__Q23efx13TFueactCircleFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B904C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q23efx13TFueactCircleFv = .text:0x803B9054; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TFueactBiriBaseFv = .text:0x803B905C; // type:function size:0x8 scope:weak align:4 +__dt__14TParticle2dMgrFv = .text:0x803B9064; // type:function size:0x84 scope:global align:4 +globalInstance__14TParticle2dMgrFv = .text:0x803B90E8; // type:function size:0x24 scope:global align:4 +Instance__14TParticle2dMgrFv = .text:0x803B910C; // type:function size:0x48 scope:global align:4 +deleteInstance__14TParticle2dMgrFv = .text:0x803B9154; // type:function size:0x50 scope:global align:4 +__ct__14TParticle2dMgrFv = .text:0x803B91A4; // type:function size:0x88 scope:global align:4 +createHeap__14TParticle2dMgrFUl = .text:0x803B922C; // type:function size:0x94 scope:global align:4 +createMgr__14TParticle2dMgrFPcUlUlUl = .text:0x803B92C0; // type:function size:0x154 scope:global align:4 +setSceneEmitterAndResourceManager__14TParticle2dMgrFP17JPAEmitterManagerP18JPAResourceManager = .text:0x803B9414; // type:function size:0xAC scope:global align:4 +clearSceneEmitterAndResourceManager__14TParticle2dMgrFv = .text:0x803B94C0; // type:function size:0x78 scope:global align:4 +setSceneResourceManager__14TParticle2dMgrFP18JPAResourceManager = .text:0x803B9538; // type:function size:0x50 scope:global align:4 +clearSceneResourceManager__14TParticle2dMgrFv = .text:0x803B9588; // type:function size:0x28 scope:global align:4 +update__14TParticle2dMgrFv = .text:0x803B95B0; // type:function size:0x24 scope:global align:4 +draw__14TParticle2dMgrFUcUs = .text:0x803B95D4; // type:function size:0x148 scope:global align:4 +create__14TParticle2dMgrFUsR10Vector2UcUc = .text:0x803B971C; // type:function size:0x4C scope:global align:4 +kill__14TParticle2dMgrFP14JPABaseEmitter = .text:0x803B9768; // type:function size:0x2C scope:global align:4 +fade__14TParticle2dMgrFP14JPABaseEmitter = .text:0x803B9794; // type:function size:0x20 scope:global align:4 +killAll__14TParticle2dMgrFv = .text:0x803B97B4; // type:function size:0x24 scope:global align:4 +killGroup__14TParticle2dMgrFUc = .text:0x803B97D8; // type:function size:0x28 scope:global align:4 +__sinit_particle2dMgr_cpp = .text:0x803B9800; // type:function size:0x28 scope:local align:4 +@24@__dt__14TParticle2dMgrFv = .text:0x803B9828; // type:function size:0x8 scope:weak align:4 +create__Q25efx2d8TSimple1FPQ25efx2d3Arg = .text:0x803B9830; // type:function size:0x98 scope:global align:4 +create__Q25efx2d8TSimple2FPQ25efx2d3Arg = .text:0x803B98C8; // type:function size:0xB0 scope:global align:4 +create__Q25efx2d8TSimple3FPQ25efx2d3Arg = .text:0x803B9978; // type:function size:0xB0 scope:global align:4 +create__Q25efx2d8TForeverFPQ25efx2d3Arg = .text:0x803B9A28; // type:function size:0xA4 scope:global align:4 +kill__Q25efx2d8TForeverFv = .text:0x803B9ACC; // type:function size:0x3C scope:global align:4 +fade__Q25efx2d8TForeverFv = .text:0x803B9B08; // type:function size:0x3C scope:global align:4 +setGlobalScale__Q25efx2d8TForeverFf = .text:0x803B9B44; // type:function size:0x24 scope:global align:4 +setGlobalEnvColor__Q25efx2d8TForeverFRQ28JUtility6TColor = .text:0x803B9B68; // type:function size:0x28 scope:global align:4 +setGlobalAlpha__Q25efx2d8TForeverFUc = .text:0x803B9B90; // type:function size:0x14 scope:global align:4 +__ct__Q25efx2d9TForeverNFUc = .text:0x803B9BA4; // type:function size:0x80 scope:global align:4 +__ct__Q25efx2d8TForeverFv = .text:0x803B9C24; // type:function size:0x50 scope:weak align:4 +create__Q25efx2d9TForeverNFPQ25efx2d3Arg = .text:0x803B9C74; // type:function size:0x98 scope:global align:4 +kill__Q25efx2d9TForeverNFv = .text:0x803B9D0C; // type:function size:0x6C scope:global align:4 +fade__Q25efx2d9TForeverNFv = .text:0x803B9D78; // type:function size:0x6C scope:global align:4 +setGroup__Q25efx2d9TForeverNFUc = .text:0x803B9DE4; // type:function size:0x7C scope:global align:4 +setGlobalAlpha__Q25efx2d9TForeverNFUc = .text:0x803B9E60; // type:function size:0x40 scope:global align:4 +create__Q25efx2d9TChasePosFPQ25efx2d3Arg = .text:0x803B9EA0; // type:function size:0x88 scope:global align:4 +execute__Q25efx2d9TChasePosFP14JPABaseEmitter = .text:0x803B9F28; // type:function size:0x78 scope:global align:4 +create__Q25efx2d12TChasePosDirFPQ25efx2d3Arg = .text:0x803B9FA0; // type:function size:0x88 scope:global align:4 +execute__Q25efx2d12TChasePosDirFP14JPABaseEmitter = .text:0x803BA028; // type:function size:0xB8 scope:global align:4 +__dt__Q25efx2d12TChasePosDirFv = .text:0x803BA0E0; // type:function size:0x84 scope:weak align:4 +@8@__dt__Q25efx2d8TForeverFv = .text:0x803BA164; // type:function size:0x8 scope:weak align:4 +@8@execute__Q25efx2d9TChasePosFP14JPABaseEmitter = .text:0x803BA16C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d9TChasePosFv = .text:0x803BA174; // type:function size:0x8 scope:weak align:4 +@8@execute__Q25efx2d12TChasePosDirFP14JPABaseEmitter = .text:0x803BA17C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d12TChasePosDirFv = .text:0x803BA184; // type:function size:0x8 scope:weak align:4 +create__Q25efx2d9T2DCursorFPQ25efx2d3Arg = .text:0x803BA18C; // type:function size:0x7C scope:global align:4 +create__Q25efx2d12T2DCountKiraFPQ25efx2d3Arg = .text:0x803BA208; // type:function size:0x5C scope:global align:4 +create__Q25efx2d18T2DSensorGet_forVSFPQ25efx2d3Arg = .text:0x803BA264; // type:function size:0xD8 scope:global align:4 +create__Q25efx2d17T2DSprayset_forVSFPQ25efx2d3Arg = .text:0x803BA33C; // type:function size:0x140 scope:global align:4 +create__Q35efx2d10FileSelect13T2DFilecopiedFPQ25efx2d3Arg = .text:0x803BA47C; // type:function size:0xC8 scope:global align:4 +create__Q35efx2d10FileSelect13T2DFiledeleteFPQ25efx2d3Arg = .text:0x803BA544; // type:function size:0xC8 scope:global align:4 +create__Q35efx2d10FileSelect14T2DFiledeleteMFPQ25efx2d3Arg = .text:0x803BA60C; // type:function size:0xC8 scope:global align:4 +create__Q35efx2d10FileSelect15T2DFilecopyBaseFPQ25efx2d3Arg = .text:0x803BA6D4; // type:function size:0x1CC scope:global align:4 +create__Q35efx2d8WorldMap10T2DShstar2FPQ25efx2d3Arg = .text:0x803BA8A0; // type:function size:0xDC scope:global align:4 +create__Q35efx2d8WorldMap9T2DNewmapFPQ25efx2d3Arg = .text:0x803BA97C; // type:function size:0xF4 scope:global align:4 +create__Q35efx2d8WorldMap19TSimple_ArgDirScaleFPQ25efx2d3Arg = .text:0x803BAA70; // type:function size:0xAC scope:global align:4 +create__Q35efx2d8WorldMap12T2DOnyonKiraFPQ25efx2d3Arg = .text:0x803BAB1C; // type:function size:0x5C scope:global align:4 +setGlobalParticleScale__Q35efx2d8WorldMap12T2DOnyonKiraFf = .text:0x803BAB78; // type:function size:0x40 scope:global align:4 +setGlobalParticleScale__Q35efx2d8WorldMap13T2DRocketGlowFf = .text:0x803BABB8; // type:function size:0x18 scope:global align:4 +create__Q35efx2d8WorldMap10T2DRocketBFPQ25efx2d3Arg = .text:0x803BABD0; // type:function size:0x5C scope:global align:4 +setGlobalParticleScale__Q35efx2d8WorldMap10T2DRocketBFf = .text:0x803BAC2C; // type:function size:0x40 scope:global align:4 +__dt__Q35efx2d8WorldMap10T2DRocketBFv = .text:0x803BAC6C; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d8WorldMap12T2DOnyonKiraFv = .text:0x803BAD08; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d10FileSelect15T2DFilecopyBaseFv = .text:0x803BADA4; // type:function size:0x84 scope:weak align:4 +__dt__Q25efx2d12T2DCountKiraFv = .text:0x803BAE28; // type:function size:0x84 scope:weak align:4 +__dt__Q25efx2d9T2DCursorFv = .text:0x803BAEAC; // type:function size:0x9C scope:weak align:4 +@8@__dt__Q25efx2d9T2DCursorFv = .text:0x803BAF48; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d12T2DCountKiraFv = .text:0x803BAF50; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect15T2DFilecopyBaseFv = .text:0x803BAF58; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap12T2DOnyonKiraFv = .text:0x803BAF60; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap10T2DRocketBFv = .text:0x803BAF68; // type:function size:0x8 scope:weak align:4 +globalInstance__11ParticleMgrFv = .text:0x803BAF70; // type:function size:0x44 scope:global align:4 +deleteInstance__11ParticleMgrFv = .text:0x803BAFB4; // type:function size:0x48 scope:global align:4 +__ct__11ParticleMgrFv = .text:0x803BAFFC; // type:function size:0x114 scope:global align:4 +__dt__19ModelEffectDataRootFv = .text:0x803BB110; // type:function size:0x70 scope:weak align:4 +__dt__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BB180; // type:function size:0xC8 scope:weak align:4 +__dt__26TObjectNode<11ModelEffect>Fv = .text:0x803BB248; // type:function size:0x60 scope:weak align:4 +__dt__24ObjectMgr<11ModelEffect>Fv = .text:0x803BB2A8; // type:function size:0x88 scope:weak align:4 +__dt__24Container<11ModelEffect>Fv = .text:0x803BB330; // type:function size:0x70 scope:weak align:4 +__dt__11ParticleMgrFv = .text:0x803BB3A0; // type:function size:0x12C scope:global align:4 +createHeap__11ParticleMgrFUl = .text:0x803BB4CC; // type:function size:0x70 scope:global align:4 +createMgr__11ParticleMgrFPcUlUlUl = .text:0x803BB53C; // type:function size:0x14C scope:global align:4 +Instance_TPkEffectMgr__11ParticleMgrFv = .text:0x803BB688; // type:function size:0x20 scope:global align:4 +deleteInstance_TPkEffectMgr__11ParticleMgrFv = .text:0x803BB6A8; // type:function size:0x20 scope:global align:4 +beginEntryModelEffect__11ParticleMgrFv = .text:0x803BB6C8; // type:function size:0x2C scope:global align:4 +endEntryModelEffect__11ParticleMgrFv = .text:0x803BB6F4; // type:function size:0x24 scope:global align:4 +start__11ParticleMgrFv = .text:0x803BB718; // type:function size:0x24 scope:global align:4 +reset__11ParticleMgrFv = .text:0x803BB73C; // type:function size:0x58 scope:global align:4 +killAll__11ParticleMgrFv = .text:0x803BB794; // type:function size:0x24 scope:global align:4 +update__11ParticleMgrFv = .text:0x803BB7B8; // type:function size:0x2C scope:global align:4 +setXfb__11ParticleMgrFPC7ResTIMG = .text:0x803BB7E4; // type:function size:0x2C scope:global align:4 +draw__11ParticleMgrFP8ViewportUc = .text:0x803BB810; // type:function size:0xA4 scope:global align:4 +create__11ParticleMgrFUsR10Vector3Uc = .text:0x803BB8B4; // type:function size:0xC8 scope:global align:4 +createDemo__11ParticleMgrFUsR10Vector3UcUc = .text:0x803BB97C; // type:function size:0x5C scope:global align:4 +setGlobalColor__11ParticleMgrFP14JPABaseEmitter = .text:0x803BB9D8; // type:function size:0xA8 scope:global align:4 +forceKill__11ParticleMgrFP14JPABaseEmitter = .text:0x803BBA80; // type:function size:0x2C scope:global align:4 +fade__11ParticleMgrFP14JPABaseEmitter = .text:0x803BBAAC; // type:function size:0x2C scope:global align:4 +setDemoResourceManager__11ParticleMgrFP18JPAResourceManager = .text:0x803BBAD8; // type:function size:0x28 scope:global align:4 +clearDemoResourceManager__11ParticleMgrFv = .text:0x803BBB00; // type:function size:0x28 scope:global align:4 +setViewport__11ParticleMgrFR8Graphics = .text:0x803BBB28; // type:function size:0xA8 scope:global align:4 +cullByResFlg__11ParticleMgrFR10Vector3Us = .text:0x803BBBD0; // type:function size:0x114 scope:global align:4 +cullByResFlg__11ParticleMgrFP14JPABaseEmitter = .text:0x803BBCE4; // type:function size:0x178 scope:global align:4 +loadResources__19ModelEffectDataRootFv = .text:0x803BBE5C; // type:function size:0x4 scope:weak align:4 +getID__19ModelEffectDataRootFv = .text:0x803BBE60; // type:function size:0x10 scope:weak align:4 +onCreate__19ModelEffectDataRootFP20ModelEffectCreateArg = .text:0x803BBE70; // type:function size:0x8 scope:weak align:4 +get__28NodeObjectMgr<11ModelEffect>FPv = .text:0x803BBE78; // type:function size:0x8 scope:weak align:4 +getNext__28NodeObjectMgr<11ModelEffect>FPv = .text:0x803BBE80; // type:function size:0x8 scope:weak align:4 +getStart__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BBE88; // type:function size:0x8 scope:weak align:4 +getEnd__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BBE90; // type:function size:0x8 scope:weak align:4 +resetMgr__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BBE98; // type:function size:0x18 scope:weak align:4 +getObject__24Container<11ModelEffect>FPv = .text:0x803BBEB0; // type:function size:0x2C scope:weak align:4 +getAt__24Container<11ModelEffect>Fi = .text:0x803BBEDC; // type:function size:0x8 scope:weak align:4 +getTo__24Container<11ModelEffect>Fv = .text:0x803BBEE4; // type:function size:0x8 scope:weak align:4 +doDirectDraw__24ObjectMgr<11ModelEffect>FR8Graphics = .text:0x803BBEEC; // type:function size:0x1F4 scope:weak align:4 +isDone__23Iterator<11ModelEffect>Fv = .text:0x803BC0E0; // type:function size:0x4C scope:weak align:4 +doSimulation__24ObjectMgr<11ModelEffect>Ff = .text:0x803BC12C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__24ObjectMgr<11ModelEffect>Fv = .text:0x803BC320; // type:function size:0x1E4 scope:weak align:4 +doSetView__24ObjectMgr<11ModelEffect>Fi = .text:0x803BC504; // type:function size:0x1F4 scope:weak align:4 +doEntry__24ObjectMgr<11ModelEffect>Fv = .text:0x803BC6F8; // type:function size:0x1E4 scope:weak align:4 +doAnimation__24ObjectMgr<11ModelEffect>Fv = .text:0x803BC8DC; // type:function size:0x1E4 scope:weak align:4 +__ml__23Iterator<11ModelEffect>Fv = .text:0x803BCAC0; // type:function size:0x38 scope:weak align:4 +next__23Iterator<11ModelEffect>Fv = .text:0x803BCAF8; // type:function size:0xE4 scope:weak align:4 +first__23Iterator<11ModelEffect>Fv = .text:0x803BCBDC; // type:function size:0xDC scope:weak align:4 +__sinit_particleMgr_cpp = .text:0x803BCCB8; // type:function size:0x28 scope:local align:4 +@28@resetMgr__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BCCE0; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__24ObjectMgr<11ModelEffect>FR8Graphics = .text:0x803BCCE8; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__24ObjectMgr<11ModelEffect>Ff = .text:0x803BCCF0; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__24ObjectMgr<11ModelEffect>Fv = .text:0x803BCCF8; // type:function size:0x8 scope:weak align:4 +@28@doSetView__24ObjectMgr<11ModelEffect>Fi = .text:0x803BCD00; // type:function size:0x8 scope:weak align:4 +@28@doEntry__24ObjectMgr<11ModelEffect>Fv = .text:0x803BCD08; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__24ObjectMgr<11ModelEffect>Fv = .text:0x803BCD10; // type:function size:0x8 scope:weak align:4 +__ct__Q33ebi5title9TTitleMgrFv = .text:0x803BCD18; // type:function size:0x5EC scope:global align:4 +__ct__Q33ebi5title16TTitleParametersFv = .text:0x803BD304; // type:function size:0x458 scope:weak align:4 +__dt__Q33ebi5title12TTitleFogMgrFv = .text:0x803BD75C; // type:function size:0x70 scope:weak align:4 +__dt__6FogMgrFv = .text:0x803BD7CC; // type:function size:0x60 scope:weak align:4 +__dt__Q33ebi5title14TTitleLightMgrFv = .text:0x803BD82C; // type:function size:0xE4 scope:weak align:4 +__ct__Q33ebi5title14TTitleLightMgrFv = .text:0x803BD910; // type:function size:0xD8 scope:weak align:4 +__ct__Q33ebi5title18TTitleLightSettingFv = .text:0x803BD9E8; // type:function size:0x14C scope:weak align:4 +__ct__Q43ebi5title18TTitleLightSetting10TSpecParmsFv = .text:0x803BDB34; // type:function size:0x228 scope:weak align:4 +__ct__Q43ebi5title18TTitleLightSetting10TMainParmsFv = .text:0x803BDD5C; // type:function size:0x350 scope:weak align:4 +__dt__8LightObjFv = .text:0x803BE0AC; // type:function size:0x60 scope:weak align:4 +__dt__Q33ebi5title15TTitleCameraMgrFv = .text:0x803BE10C; // type:function size:0xD0 scope:weak align:4 +__dt__8ViewportFv = .text:0x803BE1DC; // type:function size:0x60 scope:weak align:4 +__dt__Q33ebi5title9TCoordMgrFv = .text:0x803BE23C; // type:function size:0x60 scope:weak align:4 +__dt__Q43ebi5title6Chappy4TMgrFv = .text:0x803BE29C; // type:function size:0x60 scope:weak align:4 +__dt__Q43ebi5title6Kogane4TMgrFv = .text:0x803BE2FC; // type:function size:0x60 scope:weak align:4 +__dt__Q43ebi5title6Pikmin4TMgrFv = .text:0x803BE35C; // type:function size:0x84 scope:weak align:4 +__dt__12J3DFrameCtrlFv = .text:0x803BE3E0; // type:function size:0x48 scope:weak align:4 +__dt__Q33ebi5title9TTitleMgrFv = .text:0x803BE428; // type:function size:0x34C scope:global align:4 +globalInstance__Q33ebi5title9TTitleMgrFv = .text:0x803BE774; // type:function size:0x24 scope:global align:4 +Instance__Q33ebi5title9TTitleMgrFv = .text:0x803BE798; // type:function size:0x48 scope:global align:4 +deleteInstance__Q33ebi5title9TTitleMgrFv = .text:0x803BE7E0; // type:function size:0x50 scope:global align:4 +init__Q33ebi5title9TTitleMgrFv = .text:0x803BE830; // type:function size:0x228 scope:global align:4 +setLogo__Q33ebi5title9TTitleMgrFv = .text:0x803BEA58; // type:function size:0x50 scope:global align:4 +loadResource__Q33ebi5title9TTitleMgrFv = .text:0x803BEAA8; // type:function size:0x300 scope:global align:4 +initAfterLoadRes__Q33ebi5title9TTitleMgrFv = .text:0x803BEDA8; // type:function size:0x40 scope:global align:4 +setController__Q33ebi5title9TTitleMgrFP10Controller = .text:0x803BEDE8; // type:function size:0x44 scope:global align:4 +inField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BEE2C; // type:function size:0x70 scope:global align:4 +isCalc__Q33ebi5title8TObjBaseFv = .text:0x803BEE9C; // type:function size:0x8 scope:weak align:4 +inViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BEEA4; // type:function size:0x80 scope:global align:4 +isInViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BEF24; // type:function size:0x88 scope:global align:4 +isOutViewField__Q33ebi5title9TTitleMgrFR10Vector2f = .text:0x803BEFAC; // type:function size:0x44 scope:global align:4 +isOutViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BEFF0; // type:function size:0x88 scope:global align:4 +getPosOutOfViewField__Q33ebi5title9TTitleMgrFv = .text:0x803BF078; // type:function size:0x20 scope:global align:4 +start__Q33ebi5title9TTitleMgrFv = .text:0x803BF098; // type:function size:0x408 scope:global align:4 +breakup__Q33ebi5title9TTitleMgrFv = .text:0x803BF4A0; // type:function size:0x20C scope:global align:4 +startKogane__Q33ebi5title9TTitleMgrFv = .text:0x803BF6AC; // type:function size:0x1A0 scope:global align:4 +startChappy__Q33ebi5title9TTitleMgrFv = .text:0x803BF84C; // type:function size:0x1A0 scope:global align:4 +boidToAssemble__Q33ebi5title9TTitleMgrFl = .text:0x803BF9EC; // type:function size:0x23C scope:global align:4 +isControllerOK__Q33ebi5title9TTitleMgrFv = .text:0x803BFC28; // type:function size:0x1C scope:global align:4 +isPressStart__Q33ebi5title9TTitleMgrFv = .text:0x803BFC44; // type:function size:0x1C scope:global align:4 +startState__Q33ebi5title9TTitleMgrFQ43ebi5title9TTitleMgr9enumState = .text:0x803BFC60; // type:function size:0x124 scope:global align:4 +update__Q33ebi5title9TTitleMgrFv = .text:0x803BFD84; // type:function size:0x458 scope:global align:4 +updateState__Q33ebi5title9TTitleMgrFv = .text:0x803C01DC; // type:function size:0x34C scope:global align:4 +checkEncounter___Q33ebi5title9TTitleMgrFv = .text:0x803C0528; // type:function size:0x22C scope:global align:4 +draw__Q33ebi5title9TTitleMgrFv = .text:0x803C0754; // type:function size:0x268 scope:global align:4 +readTitleParam__Q33ebi5title9TTitleMgrFP10JKRArchivePc = .text:0x803C09BC; // type:function size:0x7C scope:global align:4 +__dt__Q43ebi5title6Pikmin13TBoidParamMgrFv = .text:0x803C0A38; // type:function size:0x60 scope:weak align:4 +read__Q33ebi5title15TTitleCameraMgrFR6Stream = .text:0x803C0A98; // type:function size:0x24 scope:weak align:4 +doUpdate__6CameraFv = .text:0x803C0ABC; // type:function size:0x4 scope:weak align:4 +getCreatureType__Q33ebi5title8TObjBaseFv = .text:0x803C0AC0; // type:function size:0x8 scope:weak align:4 +__sinit_ebiP2Title_cpp = .text:0x803C0AC8; // type:function size:0x28 scope:local align:4 +@24@__dt__Q33ebi5title9TTitleMgrFv = .text:0x803C0AF0; // type:function size:0x8 scope:weak align:4 +loadSettingFile__Q33ebi5title10TParamBaseFP10JKRArchivePc = .text:0x803C0AF8; // type:function size:0x88 scope:global align:4 +calcModelBaseMtx___Q33ebi5title8TObjBaseFv = .text:0x803C0B80; // type:function size:0xB0 scope:global align:4 +pushOut__Q33ebi5title8TObjBaseFPQ33ebi5title8TObjBase = .text:0x803C0C30; // type:function size:0x94 scope:global align:4 +setArchive__Q33ebi5title8TMapBaseFP10JKRArchive = .text:0x803C0CC4; // type:function size:0x220 scope:global align:4 +startWind__Q33ebi5title8TMapBaseFf = .text:0x803C0EE4; // type:function size:0x48 scope:global align:4 +update__Q33ebi5title8TMapBaseFv = .text:0x803C0F2C; // type:function size:0x27C scope:global align:4 +setArchive__Q33ebi5title12TBGEnemyBaseFP10JKRArchive = .text:0x803C11A8; // type:function size:0x150 scope:global align:4 +start__Q33ebi5title12TBGEnemyBaseFv = .text:0x803C12F8; // type:function size:0x5C scope:global align:4 +update__Q33ebi5title12TBGEnemyBaseFv = .text:0x803C1354; // type:function size:0x124 scope:global align:4 +setArchive__Q33ebi5title11TBlackPlaneFP10JKRArchive = .text:0x803C1478; // type:function size:0x2D8 scope:global align:4 +start__Q33ebi5title11TBlackPlaneFv = .text:0x803C1750; // type:function size:0xA0 scope:global align:4 +updateBeforeCamera__Q33ebi5title11TBlackPlaneFv = .text:0x803C17F0; // type:function size:0x110 scope:global align:4 +updateAfterCamera__Q33ebi5title11TBlackPlaneFv = .text:0x803C1900; // type:function size:0x50 scope:global align:4 +setLogo__Q33ebi5title11TBlackPlaneFv = .text:0x803C1950; // type:function size:0x4C scope:global align:4 +getCameraPos__Q33ebi5title11TBlackPlaneFv = .text:0x803C199C; // type:function size:0x78 scope:global align:4 +__sinit_ebiP2TitleUnit_cpp = .text:0x803C1A14; // type:function size:0x28 scope:local align:4 +init__Q23ebi24EUTPadInterface_countNumFP10ControllerllPlQ33ebi24EUTPadInterface_countNum8enumModeff = .text:0x803C1A3C; // type:function size:0x60 scope:global align:4 +update__Q23ebi24EUTPadInterface_countNumFv = .text:0x803C1A9C; // type:function size:0x304 scope:global align:4 +EUTColor_complement__3ebiFRQ28JUtility6TColorRQ28JUtility6TColorffPQ28JUtility6TColor = .text:0x803C1DA0; // type:function size:0x114 scope:global align:4 +EUTDebug_Tag64ToName__3ebiFUxPc = .text:0x803C1EB4; // type:function size:0x4 scope:global align:4 +EUTDebug_Tag32ToName__3ebiFUlPc = .text:0x803C1EB8; // type:function size:0x4 scope:global align:4 +update__Q33ebi5title15TTitleCameraMgrFv = .text:0x803C1EBC; // type:function size:0x74 scope:global align:4 +__sinit_ebiP2TitleCamera_cpp = .text:0x803C1F30; // type:function size:0x28 scope:local align:4 +loadSettingFile__Q33ebi5title14TTitleLightMgrFP10JKRArchivePc = .text:0x803C1F58; // type:function size:0x94 scope:global align:4 +setParam___Q33ebi5title14TTitleLightMgrFv = .text:0x803C1FEC; // type:function size:0x17C scope:global align:4 +update__Q33ebi5title14TTitleLightMgrFv = .text:0x803C2168; // type:function size:0x20 scope:global align:4 +setCameraMtx__Q33ebi5title14TTitleLightMgrFPA4_f = .text:0x803C2188; // type:function size:0x94 scope:global align:4 +__sinit_ebiP2TitleLight_cpp = .text:0x803C221C; // type:function size:0x28 scope:local align:4 +__dt__Q33ebi6Screen17TResourceObserverFv = .text:0x803C2244; // type:function size:0x6C scope:global align:4 +loadResource__Q33ebi6Screen11TMemoryCardFP7JKRHeap = .text:0x803C22B0; // type:function size:0xD8 scope:global align:4 +setArchive__Q33ebi6Screen11TMemoryCardFP10JKRArchive = .text:0x803C2388; // type:function size:0x39C scope:global align:4 +set__Q23ebi26E2DCallBack_BlinkFontColorFP10J2DTextBoxP10J2DTextBox = .text:0x803C2724; // type:function size:0x1BC scope:weak align:4 +destroyResource__Q33ebi6Screen11TMemoryCardFv = .text:0x803C28E0; // type:function size:0x18 scope:global align:4 +open__Q33ebi6Screen11TMemoryCardFl = .text:0x803C28F8; // type:function size:0x1208 scope:global align:4 +close__Q33ebi6Screen11TMemoryCardFv = .text:0x803C3B00; // type:function size:0x30 scope:global align:4 +killScreen__Q33ebi6Screen11TMemoryCardFv = .text:0x803C3B30; // type:function size:0x24 scope:global align:4 +setSelect___Q33ebi6Screen11TMemoryCardFb = .text:0x803C3B54; // type:function size:0x334 scope:global align:4 +update__Q23ebi12TYesNoCursorFv = .text:0x803C3E88; // type:function size:0x128 scope:weak align:4 +isFinish__Q33ebi6Screen11TMemoryCardFv = .text:0x803C3FB0; // type:function size:0x28 scope:global align:4 +startState__Q33ebi6Screen11TMemoryCardFQ43ebi6Screen11TMemoryCard9enumState = .text:0x803C3FD8; // type:function size:0x4EC scope:global align:4 +update__Q33ebi6Screen11TMemoryCardFv = .text:0x803C44C4; // type:function size:0x8C8 scope:global align:4 +draw__Q33ebi6Screen11TMemoryCardFv = .text:0x803C4D8C; // type:function size:0x80 scope:global align:4 +create__Q23efx19TPkOneEmitterSimpleFPQ23efx3Arg = .text:0x803C4E0C; // type:function size:0xB4 scope:global align:4 +executeAfter__Q23efx19TPkOneEmitterSimpleFP14JPABaseEmitter = .text:0x803C4EC0; // type:function size:0xD4 scope:global align:4 +globalInstance__Q23efx12TPkEffectMgrFv = .text:0x803C4F94; // type:function size:0x24 scope:global align:4 +deleteInstance__Q23efx12TPkEffectMgrFv = .text:0x803C4FB8; // type:function size:0x50 scope:global align:4 +Instance__Q23efx12TPkEffectMgrFv = .text:0x803C5008; // type:function size:0x48 scope:global align:4 +__ct__Q23efx12TPkEffectMgrFv = .text:0x803C5050; // type:function size:0x13BC scope:global align:4 +__dt__Q23efx11TOEContextSFv = .text:0x803C640C; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx11TOEContextSFv = .text:0x803C6464; // type:function size:0x34 scope:weak align:4 +__dt__Q23efx12TPkEffectMgrFv = .text:0x803C6498; // type:function size:0x108 scope:global align:4 +__dt__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C65A0; // type:function size:0x80 scope:weak align:4 +startMgr__Q23efx12TPkEffectMgrFv = .text:0x803C6620; // type:function size:0x98 scope:global align:4 +exitMgr__Q23efx12TPkEffectMgrFv = .text:0x803C66B8; // type:function size:0x90 scope:global align:4 +forceKill__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C6748; // type:function size:0x44 scope:weak align:4 +resetContextS__Q23efx12TPkEffectMgrFv = .text:0x803C678C; // type:function size:0xC scope:global align:4 +createS_Dead__Q23efx12TPkEffectMgrFR10Vector3l = .text:0x803C6798; // type:function size:0x21C scope:global align:4 +createS_Chinka__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C69B4; // type:function size:0xC8 scope:global align:4 +createS_Gedoku__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6A7C; // type:function size:0xC8 scope:global align:4 +createS_WaterOff__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6B44; // type:function size:0xC8 scope:global align:4 +createS_Dive__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6C0C; // type:function size:0xC8 scope:global align:4 +createS_Chiru__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6CD4; // type:function size:0x74 scope:global align:4 +createS_Inattack__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6D48; // type:function size:0x74 scope:global align:4 +createS_Walksmoke__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6DBC; // type:function size:0x74 scope:global align:4 +createS_Dig__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6E30; // type:function size:0x74 scope:global align:4 +createS_ChiruRed__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6EA4; // type:function size:0x74 scope:global align:4 +createS_Gate3Attack__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6F18; // type:function size:0x74 scope:global align:4 +createS_Walkwater__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6F8C; // type:function size:0xC8 scope:global align:4 +create__Q23efx9ToeKourinFP10Vector3l = .text:0x803C7054; // type:function size:0x128 scope:global align:4 +kill__Q23efx9ToeKourinFv = .text:0x803C717C; // type:function size:0xB8 scope:global align:4 +create__Q23efx9ToeDopingFP10Vector3 = .text:0x803C7234; // type:function size:0x68 scope:global align:4 +kill__Q23efx9ToeDopingFv = .text:0x803C729C; // type:function size:0x2C scope:global align:4 +create__Q23efx11ToeNagekiraFP10Vector3 = .text:0x803C72C8; // type:function size:0x68 scope:global align:4 +kill__Q23efx11ToeNagekiraFv = .text:0x803C7330; // type:function size:0x2C scope:global align:4 +create__Q23efx8ToeMoeBCFP10Vector3 = .text:0x803C735C; // type:function size:0x7C scope:global align:4 +kill__Q23efx8ToeMoeBCFv = .text:0x803C73D8; // type:function size:0x48 scope:global align:4 +create__Q23efx10ToeChudokuFP10Vector3 = .text:0x803C7420; // type:function size:0x68 scope:global align:4 +kill__Q23efx10ToeChudokuFv = .text:0x803C7488; // type:function size:0x2C scope:global align:4 +create__Q23efx8ToeWaterFP10Vector3 = .text:0x803C74B4; // type:function size:0x7C scope:global align:4 +kill__Q23efx8ToeWaterFv = .text:0x803C7530; // type:function size:0x48 scope:global align:4 +create__Q23efx9ToeHamonAFP10Vector3 = .text:0x803C7578; // type:function size:0x74 scope:global align:4 +kill__Q23efx9ToeHamonAFv = .text:0x803C75EC; // type:function size:0x2C scope:global align:4 +create__Q23efx9ToeHamonBFP10Vector3 = .text:0x803C7618; // type:function size:0x74 scope:global align:4 +kill__Q23efx9ToeHamonBFv = .text:0x803C768C; // type:function size:0x2C scope:global align:4 +create__Q23efx11ToeMoeSmokeFP10Vector3 = .text:0x803C76B8; // type:function size:0x68 scope:global align:4 +kill__Q23efx11ToeMoeSmokeFv = .text:0x803C7720; // type:function size:0x2C scope:global align:4 +create__Q23efx11ToeTanekiraFP10Vector3 = .text:0x803C774C; // type:function size:0x68 scope:global align:4 +kill__Q23efx11ToeTanekiraFv = .text:0x803C77B4; // type:function size:0x2C scope:global align:4 +fade__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C77E0; // type:function size:0x44 scope:weak align:4 +@4@executeAfter__Q23efx19TPkOneEmitterSimpleFP14JPABaseEmitter = .text:0x803C7824; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C782C; // type:function size:0x8 scope:weak align:4 +create__Q23efx10TEnemyPiyoFPQ23efx3Arg = .text:0x803C7834; // type:function size:0x274 scope:global align:4 +create__Q23efx13TEnemyPoisonLFPQ23efx3Arg = .text:0x803C7AA8; // type:function size:0xDC scope:global align:4 +create__Q23efx13TEnemyPoisonSFPQ23efx3Arg = .text:0x803C7B84; // type:function size:0xDC scope:global align:4 +create__Q23efx11TSekikaLOffFPQ23efx3Arg = .text:0x803C7C60; // type:function size:0xDC scope:global align:4 +create__Q23efx10TSekikaLOnFPQ23efx3Arg = .text:0x803C7D3C; // type:function size:0xDC scope:global align:4 +create__Q23efx11TSekikaSOffFPQ23efx3Arg = .text:0x803C7E18; // type:function size:0xDC scope:global align:4 +create__Q23efx10TSekikaSOnFPQ23efx3Arg = .text:0x803C7EF4; // type:function size:0xDC scope:global align:4 +create__Q23efx19TEnemyDead_ArgScaleFPQ23efx3Arg = .text:0x803C7FD0; // type:function size:0xDC scope:global align:4 +create__Q23efx10TEnemyDeadFPQ23efx3Arg = .text:0x803C80AC; // type:function size:0x24C scope:global align:4 +create__Q23efx15TEnemyWalkSmokeFPQ23efx3Arg = .text:0x803C82F8; // type:function size:0x318 scope:global align:4 +create__Q23efx16TEnemyWalkSmokeMFPQ23efx3Arg = .text:0x803C8610; // type:function size:0xDC scope:global align:4 +create__Q23efx16TEnemyWalkSmokeSFPQ23efx3Arg = .text:0x803C86EC; // type:function size:0x78 scope:global align:4 +create__Q23efx15TEnemyDownSmokeFPQ23efx3Arg = .text:0x803C8764; // type:function size:0x68 scope:global align:4 +create__Q23efx13TEnemyDownWatFPQ23efx3Arg = .text:0x803C87CC; // type:function size:0x10C scope:global align:4 +create__Q23efx10TEnemyDiveFPQ23efx3Arg = .text:0x803C88D8; // type:function size:0xF4 scope:global align:4 +__ct__Q23efx20TEnemyBombScaleTableFQ34Game11EnemyTypeID12EEnemyTypeID = .text:0x803C89CC; // type:function size:0x3B8 scope:global align:4 +create__Q23efx10TEnemyBombFPQ23efx3Arg = .text:0x803C8D84; // type:function size:0x1EC scope:global align:4 +create__Q23efx11TEnemyBombMFPQ23efx3Arg = .text:0x803C8F70; // type:function size:0x124 scope:global align:4 +create__Q23efx11TEnemyBombSFPQ23efx3Arg = .text:0x803C9094; // type:function size:0x124 scope:global align:4 +create__Q23efx13TEnemyApsmokeFPQ23efx3Arg = .text:0x803C91B8; // type:function size:0x1A4 scope:global align:4 +create__Q23efx14TEnemyApsmokeMFPQ23efx3Arg = .text:0x803C935C; // type:function size:0xDC scope:global align:4 +create__Q23efx14TEnemyApsmokeSFPQ23efx3Arg = .text:0x803C9438; // type:function size:0xDC scope:global align:4 +create__Q23efx12TEnemyHamonMFPQ23efx3Arg = .text:0x803C9514; // type:function size:0xDC scope:global align:4 +create__Q23efx15TEnemyHamonMIndFPQ23efx3Arg = .text:0x803C95F0; // type:function size:0xDC scope:global align:4 +create__Q23efx19TEnemyHamonChasePosFPQ23efx3Arg = .text:0x803C96CC; // type:function size:0x2FC scope:global align:4 +update__Q23efx11TEnemyHamonFR10Vector3 = .text:0x803C99C8; // type:function size:0x138 scope:global align:4 +create__Q23efx11TEnemyHamonFPQ23efx3Arg = .text:0x803C9B00; // type:function size:0xA0 scope:global align:4 +getLimitDepth___Q23efx11TEnemyHamonFv = .text:0x803C9BA0; // type:function size:0x140 scope:global align:4 +forceKill__Q23efx13TEnemyApsmokeFv = .text:0x803C9CE0; // type:function size:0x4 scope:weak align:4 +fade__Q23efx13TEnemyApsmokeFv = .text:0x803C9CE4; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx10TEnemyBombFv = .text:0x803C9CE8; // type:function size:0x4 scope:weak align:4 +fade__Q23efx10TEnemyBombFv = .text:0x803C9CEC; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx15TEnemyWalkSmokeFv = .text:0x803C9CF0; // type:function size:0x4 scope:weak align:4 +fade__Q23efx15TEnemyWalkSmokeFv = .text:0x803C9CF4; // type:function size:0x4 scope:weak align:4 +@4@__dt__Q23efx10TEnemyPiyoFv = .text:0x803C9CF8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TEnemyHamonMFv = .text:0x803C9D00; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TEnemyHamonMIndFv = .text:0x803C9D08; // type:function size:0x8 scope:weak align:4 +load__Q23ebi10E3DAnimResFP12J3DModelDataP10JKRArchivePc = .text:0x803C9D10; // type:function size:0x104 scope:global align:4 +setAnimFolder__Q23ebi11E3DAnimCtrlFPQ23ebi17E3DAnimFolderBase = .text:0x803C9E14; // type:function size:0x58 scope:global align:4 +init__Q23ebi11E3DAnimCtrlFlf = .text:0x803C9E6C; // type:function size:0xA4 scope:global align:4 +play__Q23ebi11E3DAnimCtrlFv = .text:0x803C9F10; // type:function size:0x80 scope:global align:4 +playStopEnd__Q23ebi11E3DAnimCtrlFv = .text:0x803C9F90; // type:function size:0x64 scope:global align:4 +isOut__Q23ebi8EGEBox2fFR10Vector2 = .text:0x803C9FF4; // type:function size:0x58 scope:global align:4 +isIn__Q23ebi8EGEBox2fFR10Vector2f = .text:0x803CA04C; // type:function size:0x70 scope:global align:4 +isOut__Q23ebi8EGEBox2fFR10Vector2f = .text:0x803CA0BC; // type:function size:0x68 scope:global align:4 +in__Q23ebi8EGEBox2fFP10Vector2f = .text:0x803CA124; // type:function size:0x64 scope:global align:4 +isOut__Q23ebi11EGECircle2fFR10Vector2 = .text:0x803CA188; // type:function size:0x5C scope:global align:4 +in__Q23ebi11EGECircle2fFP10Vector2 = .text:0x803CA1E4; // type:function size:0xB8 scope:global align:4 +out__Q23ebi11EGECircle2fFP10Vector2 = .text:0x803CA29C; // type:function size:0xBC scope:global align:4 +E2DScreen_searchAssert__3ebiFP9J2DScreenUx = .text:0x803CA358; // type:function size:0x8C scope:global align:4 +E2DPane_setTreeInfluencedAlpha__3ebiFP7J2DPaneb = .text:0x803CA3E4; // type:function size:0x1D8 scope:global align:4 +E2DPane_setTreeShow__3ebiFP7J2DPane = .text:0x803CA5BC; // type:function size:0x1A4 scope:global align:4 +show__7J2DPaneFv = .text:0x803CA760; // type:function size:0xC scope:weak align:4 +E2DPane_setTreeHide__3ebiFP7J2DPane = .text:0x803CA76C; // type:function size:0x1A4 scope:global align:4 +hide__7J2DPaneFv = .text:0x803CA910; // type:function size:0xC scope:weak align:4 +E2DPane_setTreeCallBackMessage__3ebiFPQ29P2DScreen3MgrP7J2DPane = .text:0x803CA91C; // type:function size:0x3DC scope:global align:4 +E2DPane_getGlbCenter__3ebiFP7J2DPane = .text:0x803CACF8; // type:function size:0xD0 scope:global align:4 +loadRam__Q33ebi6Screen16TOptionParameterFv = .text:0x803CADC8; // type:function size:0x100 scope:global align:4 +saveRam__Q33ebi6Screen16TOptionParameterFv = .text:0x803CAEC8; // type:function size:0xFC scope:global align:4 +initParamForTest__Q33ebi6Screen16TOptionParameterFv = .text:0x803CAFC4; // type:function size:0x24 scope:global align:4 +doSetArchive__Q33ebi6Screen7TOptionFP10JKRArchive = .text:0x803CAFE8; // type:function size:0x8D4 scope:global align:4 +doOpenScreen__Q33ebi6Screen7TOptionFPQ33ebi6Screen7ArgOpen = .text:0x803CB8BC; // type:function size:0x134 scope:global align:4 +doCloseScreen__Q33ebi6Screen7TOptionFPQ33ebi6Screen8ArgClose = .text:0x803CB9F0; // type:function size:0x4C scope:global align:4 +doInitWaitState__Q33ebi6Screen7TOptionFv = .text:0x803CBA3C; // type:function size:0x24 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen7TOptionFv = .text:0x803CBA60; // type:function size:0x84 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen7TOptionFv = .text:0x803CBAE4; // type:function size:0x9B4 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen7TOptionFv = .text:0x803CC498; // type:function size:0x74 scope:global align:4 +doDraw__Q33ebi6Screen7TOptionFv = .text:0x803CC50C; // type:function size:0x244 scope:global align:4 +loadResource__Q33ebi6Screen7TOptionFv = .text:0x803CC750; // type:function size:0xB0 scope:global align:4 +setController__Q33ebi6Screen7TOptionFP10Controller = .text:0x803CC800; // type:function size:0xBC scope:global align:4 +initScreen___Q33ebi6Screen7TOptionFv = .text:0x803CC8BC; // type:function size:0x174 scope:global align:4 +setOptionParamToScreen___Q33ebi6Screen7TOptionFv = .text:0x803CCA30; // type:function size:0xC9C scope:global align:4 +getName__Q33ebi6Screen7TOptionFv = .text:0x803CD6CC; // type:function size:0x8 scope:weak align:4 +doKillScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803CD6D4; // type:function size:0x4 scope:weak align:4 +loadResource__Q23ebi13TScreenProgreFv = .text:0x803CD6D8; // type:function size:0xB0 scope:global align:4 +setArchive__Q23ebi13TScreenProgreFP10JKRArchive = .text:0x803CD788; // type:function size:0x318 scope:global align:4 +startScreen__Q23ebi13TScreenProgreFlUl = .text:0x803CDAA0; // type:function size:0x3E4 scope:global align:4 +fadeout__Q23ebi13TScreenProgreFUl = .text:0x803CDE84; // type:function size:0x54 scope:global align:4 +isFinish__Q23ebi13TScreenProgreFv = .text:0x803CDED8; // type:function size:0x28 scope:global align:4 +startState__Q23ebi13TScreenProgreFQ33ebi13TScreenProgre9enumStateUl = .text:0x803CDF00; // type:function size:0xC0 scope:global align:4 +update__Q23ebi13TScreenProgreFv = .text:0x803CDFC0; // type:function size:0x554 scope:global align:4 +draw__Q23ebi13TScreenProgreFv = .text:0x803CE514; // type:function size:0xDC scope:global align:4 +setDecide__Q23ebi13TScreenProgreFv = .text:0x803CE5F0; // type:function size:0x308 scope:global align:4 +init__Q33ebi6Option15FSMStateMachineFPQ33ebi6Option4TMgr = .text:0x803CE8F8; // type:function size:0x2D8 scope:global align:4 +init__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEBD0; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEBFC; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgr = .text:0x803CEC00; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgr = .text:0x803CEC2C; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi6Option19FSMState_ScreenOpenFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEC30; // type:function size:0x50 scope:global align:4 +do_exec__Q33ebi6Option19FSMState_ScreenOpenFPQ33ebi6Option4TMgr = .text:0x803CEC80; // type:function size:0x64 scope:global align:4 +transit__Q24Game28FSMStateFPQ33ebi6Option4TMgriPQ24Game8StateArg = .text:0x803CECE4; // type:function size:0x30 scope:weak align:4 +do_init__Q33ebi6Option19FSMState_ScreenWaitFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CED14; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi6Option19FSMState_ScreenWaitFPQ33ebi6Option4TMgr = .text:0x803CED20; // type:function size:0x144 scope:global align:4 +do_init__Q33ebi6Option20FSMState_ScreenCloseFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEE64; // type:function size:0x3C scope:global align:4 +do_exec__Q33ebi6Option20FSMState_ScreenCloseFPQ33ebi6Option4TMgr = .text:0x803CEEA0; // type:function size:0x4C scope:global align:4 +do_init__Q33ebi6Option27FSMState_WaitCloseForNoCardFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEEEC; // type:function size:0x44 scope:global align:4 +do_exec__Q33ebi6Option27FSMState_WaitCloseForNoCardFPQ33ebi6Option4TMgr = .text:0x803CEF30; // type:function size:0x84 scope:global align:4 +do_init__Q33ebi6Option27FSMState_WorldMapInfoWindowFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEFB4; // type:function size:0xB8 scope:global align:4 +do_exec__Q33ebi6Option27FSMState_WorldMapInfoWindowFPQ33ebi6Option4TMgr = .text:0x803CF06C; // type:function size:0xA0 scope:global align:4 +do_init__Q33ebi6Option19FSMState_LoadOptionFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CF10C; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi6Option19FSMState_LoadOptionFPQ33ebi6Option4TMgr = .text:0x803CF118; // type:function size:0x1A0 scope:global align:4 +do_init__Q33ebi6Option16FSMState_SaveMgrFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CF2B8; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi6Option16FSMState_SaveMgrFPQ33ebi6Option4TMgr = .text:0x803CF2E4; // type:function size:0x100 scope:global align:4 +__ct__Q33ebi6Option4TMgrFv = .text:0x803CF3E4; // type:function size:0xC0 scope:global align:4 +start__Q24Game32StateMachineFPQ33ebi6Option4TMgriPQ24Game8StateArg = .text:0x803CF4A4; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi6Screen7TOptionFv = .text:0x803CF4D8; // type:function size:0x30C scope:weak align:4 +__dt__Q23ebi20E2DCallBack_PurupuruFv = .text:0x803CF7E4; // type:function size:0x90 scope:weak align:4 +__ct__Q33ebi6Screen7TOptionFv = .text:0x803CF874; // type:function size:0x43C scope:weak align:4 +__dt__Q23ebi24E2DCallBack_WindowCursorFv = .text:0x803CFCB0; // type:function size:0x90 scope:weak align:4 +__ct__Q23ebi20E2DCallBack_PurupuruFv = .text:0x803CFD40; // type:function size:0x8C scope:weak align:4 +__dt__Q23ebi22E2DCallBack_BlinkAlphaFv = .text:0x803CFDCC; // type:function size:0x90 scope:weak align:4 +__dt__Q23ebi26E2DCallBack_BlinkFontColorFv = .text:0x803CFE5C; // type:function size:0x90 scope:weak align:4 +__ct__Q23ebi16E2DFullFontColorFv = .text:0x803CFEEC; // type:function size:0x18 scope:weak align:4 +__dt__Q23ebi25E2DCallBack_CalcAnimationFv = .text:0x803CFF04; // type:function size:0x90 scope:weak align:4 +__dt__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803CFF94; // type:function size:0xAC scope:weak align:4 +__dt__Q23ebi16E2DCallBack_BaseFv = .text:0x803D0040; // type:function size:0x80 scope:weak align:4 +loadResource__Q33ebi6Option4TMgrFv = .text:0x803D00C0; // type:function size:0x88 scope:global align:4 +setController__Q33ebi6Option4TMgrFP10Controller = .text:0x803D0148; // type:function size:0x4C scope:global align:4 +start__Q33ebi6Option4TMgrFv = .text:0x803D0194; // type:function size:0x3C scope:global align:4 +isFinish__Q33ebi6Option4TMgrFv = .text:0x803D01D0; // type:function size:0x28 scope:global align:4 +goEnd___Q33ebi6Option4TMgrFv = .text:0x803D01F8; // type:function size:0x7C scope:global align:4 +update__Q33ebi6Option4TMgrFv = .text:0x803D0274; // type:function size:0x94 scope:global align:4 +draw__Q33ebi6Option4TMgrFv = .text:0x803D0308; // type:function size:0x90 scope:global align:4 +getStateID__Q33ebi6Option4TMgrFv = .text:0x803D0398; // type:function size:0x58 scope:global align:4 +do_update__Q23ebi25E2DCallBack_CalcAnimationFv = .text:0x803D03F0; // type:function size:0x50 scope:weak align:4 +update__Q23ebi16E2DCallBack_BaseFv = .text:0x803D0440; // type:function size:0x38 scope:weak align:4 +do_update__Q23ebi16E2DCallBack_BaseFv = .text:0x803D0478; // type:function size:0x4 scope:weak align:4 +draw__Q23ebi16E2DCallBack_BaseFR8GraphicsR14J2DGrafContext = .text:0x803D047C; // type:function size:0x38 scope:weak align:4 +do_draw__Q23ebi16E2DCallBack_BaseFR8GraphicsR14J2DGrafContext = .text:0x803D04B4; // type:function size:0x4 scope:weak align:4 +init__Q24Game28FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803D04B8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D04BC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D04C0; // type:function size:0x4 scope:weak align:4 +resume__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D04C4; // type:function size:0x4 scope:weak align:4 +restart__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D04C8; // type:function size:0x4 scope:weak align:4 +init__Q24Game32StateMachineFPQ33ebi6Option4TMgr = .text:0x803D04CC; // type:function size:0x4 scope:weak align:4 +exec__Q24Game32StateMachineFPQ33ebi6Option4TMgr = .text:0x803D04D0; // type:function size:0x38 scope:weak align:4 +create__Q24Game32StateMachineFi = .text:0x803D0508; // type:function size:0x64 scope:weak align:4 +transit__Q24Game32StateMachineFPQ33ebi6Option4TMgriPQ24Game8StateArg = .text:0x803D056C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game32StateMachineFPQ24Game28FSMState = .text:0x803D0608; // type:function size:0x84 scope:weak align:4 +do_update__Q23ebi20E2DCallBack_PurupuruFv = .text:0x803D068C; // type:function size:0x60 scope:global align:4 +do_update__Q23ebi26E2DCallBack_BlinkFontColorFv = .text:0x803D06EC; // type:function size:0x2CC scope:global align:4 +do_update__Q23ebi22E2DCallBack_BlinkAlphaFv = .text:0x803D09B8; // type:function size:0x118 scope:global align:4 +loadAnm__Q23ebi19E2DCallBack_AnmBaseFPcP10JKRArchivell = .text:0x803D0AD0; // type:function size:0xC8 scope:global align:4 +play__Q23ebi19E2DCallBack_AnmBaseFf10J3DAnmAttrb = .text:0x803D0B98; // type:function size:0x10C scope:global align:4 +playBack__Q23ebi19E2DCallBack_AnmBaseFfb = .text:0x803D0CA4; // type:function size:0x110 scope:global align:4 +stop__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0DB4; // type:function size:0x14 scope:global align:4 +setStartFrame__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0DC8; // type:function size:0x3C scope:global align:4 +setEndFrame__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0E04; // type:function size:0x3C scope:global align:4 +setRandFrame__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0E40; // type:function size:0xC0 scope:global align:4 +getPlayFinRate__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0F00; // type:function size:0x54 scope:global align:4 +do_update__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0F54; // type:function size:0x5C scope:global align:4 +isFinish__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0FB0; // type:function size:0x8 scope:global align:4 +do_update__Q23ebi24E2DCallBack_WindowCursorFv = .text:0x803D0FB8; // type:function size:0x14C scope:global align:4 +init__Q33ebi9CardError15FSMStateMachineFPQ33ebi9CardError4TMgr = .text:0x803D1104; // type:function size:0xA2C scope:global align:4 +init__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1B30; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1B5C; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D1B60; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D1B8C; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi9CardError16FSMState_WarningFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1B90; // type:function size:0x84 scope:global align:4 +do_exec__Q33ebi9CardError16FSMState_WarningFPQ33ebi9CardError4TMgr = .text:0x803D1C14; // type:function size:0xA4 scope:global align:4 +do_init__Q33ebi9CardError17FSMState_QuestionFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1CB8; // type:function size:0x3C scope:global align:4 +do_exec__Q33ebi9CardError17FSMState_QuestionFPQ33ebi9CardError4TMgr = .text:0x803D1CF4; // type:function size:0x98 scope:global align:4 +do_init__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1D8C; // type:function size:0x74 scope:global align:4 +do_exec__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D1E00; // type:function size:0x350 scope:global align:4 +do_transitCardNoCard__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2150; // type:function size:0x64 scope:global align:4 +transit__Q24Game31FSMStateFPQ33ebi9CardError4TMgriPQ24Game8StateArg = .text:0x803D21B4; // type:function size:0x30 scope:weak align:4 +do_transitCardIOError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D21E4; // type:function size:0x64 scope:global align:4 +do_transitCardWrongDevice__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2248; // type:function size:0x64 scope:global align:4 +do_transitCardWrongSector__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D22AC; // type:function size:0x64 scope:global align:4 +do_transitCardBroken__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2310; // type:function size:0x64 scope:global align:4 +do_transitCardEncoding__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2374; // type:function size:0x64 scope:global align:4 +do_transitCardNoFileSpace__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D23D8; // type:function size:0x64 scope:global align:4 +do_transitCardNoFileEntry__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D243C; // type:function size:0x64 scope:global align:4 +do_transitCardFileOpenError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D24A0; // type:function size:0x64 scope:global align:4 +do_transitCardSerialNoError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2504; // type:function size:0x68 scope:global align:4 +do_init__Q33ebi9CardError15FSMState_NoCardFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D256C; // type:function size:0x34 scope:global align:4 +do_exec__Q33ebi9CardError15FSMState_NoCardFPQ33ebi9CardError4TMgr = .text:0x803D25A0; // type:function size:0xB0 scope:global align:4 +__ct__Q33ebi9CardError4TMgrFv = .text:0x803D2650; // type:function size:0x94 scope:global align:4 +start__Q24Game35StateMachineFPQ33ebi9CardError4TMgriPQ24Game8StateArg = .text:0x803D26E4; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi6Screen11TMemoryCardFv = .text:0x803D2718; // type:function size:0x460 scope:weak align:4 +__ct__Q33ebi6Screen11TMemoryCardFv = .text:0x803D2B78; // type:function size:0x4C8 scope:weak align:4 +startSeq__Q33ebi9CardError4TMgrFQ43ebi9CardError4TMgr9enumStart = .text:0x803D3040; // type:function size:0x378 scope:global align:4 +forceQuitSeq__Q33ebi9CardError4TMgrFv = .text:0x803D33B8; // type:function size:0x50 scope:global align:4 +goEnd___Q33ebi9CardError4TMgrFQ43ebi9CardError4TMgr7enumEnd = .text:0x803D3408; // type:function size:0x44 scope:global align:4 +checkAndTransitNoCard___Q33ebi9CardError4TMgrFv = .text:0x803D344C; // type:function size:0xE0 scope:global align:4 +update__Q33ebi9CardError4TMgrFv = .text:0x803D352C; // type:function size:0x6C scope:global align:4 +draw__Q33ebi9CardError4TMgrFv = .text:0x803D3598; // type:function size:0x3C scope:global align:4 +isGetEnd__Q33ebi9CardError4TMgrFv = .text:0x803D35D4; // type:function size:0x50 scope:global align:4 +getStateID__Q33ebi9CardError4TMgrFv = .text:0x803D3624; // type:function size:0x58 scope:global align:4 +init__Q24Game31FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D367C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D3680; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D3684; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D3688; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D368C; // type:function size:0x4 scope:weak align:4 +init__Q24Game35StateMachineFPQ33ebi9CardError4TMgr = .text:0x803D3690; // type:function size:0x4 scope:weak align:4 +exec__Q24Game35StateMachineFPQ33ebi9CardError4TMgr = .text:0x803D3694; // type:function size:0x38 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x803D36CC; // type:function size:0x64 scope:weak align:4 +transit__Q24Game35StateMachineFPQ33ebi9CardError4TMgriPQ24Game8StateArg = .text:0x803D3730; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x803D37CC; // type:function size:0x84 scope:weak align:4 +setArchive__Q33ebi6Screen11TScreenBaseFP10JKRArchive = .text:0x803D3850; // type:function size:0x3C scope:global align:4 +doSetArchive__Q33ebi6Screen11TScreenBaseFP10JKRArchive = .text:0x803D388C; // type:function size:0x4 scope:weak align:4 +openScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen7ArgOpen = .text:0x803D3890; // type:function size:0x58 scope:global align:4 +doOpenScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen7ArgOpen = .text:0x803D38E8; // type:function size:0x4 scope:weak align:4 +closeScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen8ArgClose = .text:0x803D38EC; // type:function size:0x58 scope:global align:4 +doCloseScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen8ArgClose = .text:0x803D3944; // type:function size:0x4 scope:weak align:4 +killScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3948; // type:function size:0x40 scope:global align:4 +isFinishScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3988; // type:function size:0x10 scope:global align:4 +isWaitScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3998; // type:function size:0x14 scope:global align:4 +isCloseScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D39AC; // type:function size:0x14 scope:global align:4 +update__Q33ebi6Screen11TScreenBaseFv = .text:0x803D39C0; // type:function size:0xEC scope:global align:4 +doUpdateStateClose__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3AAC; // type:function size:0x8 scope:weak align:4 +doUpdateStateWait__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3AB4; // type:function size:0x8 scope:weak align:4 +doInitWaitState__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3ABC; // type:function size:0x4 scope:weak align:4 +doUpdateStateOpen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3AC0; // type:function size:0x8 scope:weak align:4 +draw__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3AC8; // type:function size:0x38 scope:global align:4 +doDraw__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B00; // type:function size:0x4 scope:weak align:4 +getName__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B04; // type:function size:0xC scope:weak align:4 +doSetArchive__Q33ebi6Screen11TPressStartFP10JKRArchive = .text:0x803D3B10; // type:function size:0x324 scope:global align:4 +doOpenScreen__Q33ebi6Screen11TPressStartFPQ33ebi6Screen7ArgOpen = .text:0x803D3E34; // type:function size:0x28 scope:global align:4 +doCloseScreen__Q33ebi6Screen11TPressStartFPQ33ebi6Screen8ArgClose = .text:0x803D3E5C; // type:function size:0x44 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen11TPressStartFv = .text:0x803D3EA0; // type:function size:0xA4 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen11TPressStartFv = .text:0x803D3F44; // type:function size:0x108 scope:global align:4 +doDraw__Q33ebi6Screen11TPressStartFv = .text:0x803D404C; // type:function size:0x80 scope:global align:4 +startLoop___Q33ebi6Screen11TPressStartFv = .text:0x803D40CC; // type:function size:0x16C scope:global align:4 +getName__Q33ebi6Screen11TPressStartFv = .text:0x803D4238; // type:function size:0xC scope:weak align:4 +setData__Q43ebi6Screen10FileSelect22TScreenDataWindow_dataFlUlUlUlUlUlUl = .text:0x803D4244; // type:function size:0x254 scope:global align:4 +__ct__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D4498; // type:function size:0xEB0 scope:global align:4 +loadResource__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D5348; // type:function size:0xB0 scope:global align:4 +doSetArchive__Q43ebi6Screen10FileSelect11TMainScreenFP10JKRArchive = .text:0x803D53F8; // type:function size:0x12E4 scope:global align:4 +doKillScreen__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D66DC; // type:function size:0x100 scope:global align:4 +doOpenScreen__Q43ebi6Screen10FileSelect11TMainScreenFPQ33ebi6Screen7ArgOpen = .text:0x803D67DC; // type:function size:0x284 scope:global align:4 +doInitWaitState__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D6A60; // type:function size:0x1B0 scope:global align:4 +doCloseScreen__Q43ebi6Screen10FileSelect11TMainScreenFPQ33ebi6Screen8ArgClose = .text:0x803D6C10; // type:function size:0x98 scope:global align:4 +doUpdateStateOpen__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D6CA8; // type:function size:0x88 scope:global align:4 +doUpdateStateWait__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D6D30; // type:function size:0x31C scope:global align:4 +doUpdateStateClose__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D704C; // type:function size:0xCC scope:global align:4 +doDraw__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7118; // type:function size:0x374 scope:global align:4 +inDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D748C; // type:function size:0x1B0 scope:global align:4 +outDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D763C; // type:function size:0xA4 scope:global align:4 +decideDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D76E0; // type:function size:0xA4 scope:global align:4 +createFiledecide__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7784; // type:function size:0x124 scope:global align:4 +isFinishOutDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D78A8; // type:function size:0x30 scope:global align:4 +isFinishDecideDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D78D8; // type:function size:0x30 scope:global align:4 +createCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7908; // type:function size:0xF4 scope:global align:4 +fadeCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D79FC; // type:function size:0x50 scope:global align:4 +moveLeftCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7A4C; // type:function size:0x10 scope:global align:4 +moveRightCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7A5C; // type:function size:0x10 scope:global align:4 +createFilecopyEffect__Q43ebi6Screen10FileSelect11TMainScreenFll = .text:0x803D7A6C; // type:function size:0x1E0 scope:global align:4 +fadeFilecopyEffect__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7C4C; // type:function size:0x58 scope:global align:4 +createFiledeletingEffect__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7CA4; // type:function size:0x118 scope:global align:4 +fadeFiledeletingEffect__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7DBC; // type:function size:0x58 scope:global align:4 +openDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7E14; // type:function size:0x318 scope:global align:4 +closeDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D812C; // type:function size:0x6C scope:global align:4 +decideDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8198; // type:function size:0x6C scope:global align:4 +isFinishCloseDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8204; // type:function size:0x24 scope:global align:4 +openMSG__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D8228; // type:function size:0x2A0 scope:global align:4 +closeMSG__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D84C8; // type:function size:0x60 scope:global align:4 +isFinishCloseMSG__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8528; // type:function size:0x28 scope:global align:4 +setYesNo__Q43ebi6Screen10FileSelect11TMainScreenFb = .text:0x803D8550; // type:function size:0xC4 scope:global align:4 +updateMsg___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8614; // type:function size:0x144 scope:global align:4 +setMsgID___Q43ebi6Screen10FileSelect11TMainScreenFUxUxUx = .text:0x803D8758; // type:function size:0x4C scope:global align:4 +inCopyErase__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D87A4; // type:function size:0x8C scope:global align:4 +outCopyErase__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8830; // type:function size:0x8C scope:global align:4 +inYesNo___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D88BC; // type:function size:0x8C scope:global align:4 +outYesNo___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8948; // type:function size:0x8C scope:global align:4 +setDataBallCopyResult__Q43ebi6Screen10FileSelect11TMainScreenFll = .text:0x803D89D4; // type:function size:0x1C0 scope:global align:4 +setDataBallNew__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D8B94; // type:function size:0x250 scope:global align:4 +setDataBallBroken__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D8DE4; // type:function size:0x98 scope:global align:4 +initDataBalls___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8E7C; // type:function size:0x4C scope:global align:4 +setColorTimgDataBall___Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D8EC8; // type:function size:0x550 scope:global align:4 +getDataBallColor___Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D9418; // type:function size:0xCC scope:global align:4 +calcDataBallColor___Q43ebi6Screen10FileSelect11TMainScreenFUlUlUlUlUl = .text:0x803D94E4; // type:function size:0x1C0 scope:global align:4 +setIconColorAlpha___Q43ebi6Screen10FileSelect11TMainScreenFUc = .text:0x803D96A4; // type:function size:0x80 scope:global align:4 +__ct__Q43ebi6Screen10FileSelect9TFileDataFv = .text:0x803D9724; // type:function size:0x58 scope:weak align:4 +getName__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D977C; // type:function size:0xC scope:weak align:4 +__dt__Q35efx2d10FileSelect11T2DFileselMFv = .text:0x803D9788; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d10FileSelect16T2DFiledeletingMFv = .text:0x803D9824; // type:function size:0x84 scope:weak align:4 +__dt__Q35efx2d10FileSelect15T2DFiledeletingFv = .text:0x803D98A8; // type:function size:0x84 scope:weak align:4 +__dt__Q35efx2d10FileSelect12T2DFilecopyMFv = .text:0x803D992C; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d10FileSelect11T2DFilecopyFv = .text:0x803D99C8; // type:function size:0x9C scope:weak align:4 +__ct__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D9A64; // type:function size:0x94 scope:weak align:4 +set__Q23ebi26E2DCallBack_BlinkFontColorFRQ23ebi16E2DFullFontColorRQ23ebi16E2DFullFontColor = .text:0x803D9AF8; // type:function size:0x104 scope:weak align:4 +getName__Q25efx2d8ArgColorFv = .text:0x803D9BFC; // type:function size:0xC scope:weak align:4 +getName__Q35efx2d10FileSelect11ArgFilecopyFv = .text:0x803D9C08; // type:function size:0xC scope:weak align:4 +__dt__Q35efx2d10FileSelect10T2DFileselFv = .text:0x803D9C14; // type:function size:0x9C scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect11T2DFilecopyFv = .text:0x803D9CB0; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect12T2DFilecopyMFv = .text:0x803D9CB8; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect15T2DFiledeletingFv = .text:0x803D9CC0; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect16T2DFiledeletingMFv = .text:0x803D9CC8; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect10T2DFileselFv = .text:0x803D9CD0; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect11T2DFileselMFv = .text:0x803D9CD8; // type:function size:0x8 scope:weak align:4 +doSetArchive__Q33ebi6Screen10TTitleMenuFP10JKRArchive = .text:0x803D9CE0; // type:function size:0x928 scope:global align:4 +doOpenScreen__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen7ArgOpen = .text:0x803DA608; // type:function size:0x21C scope:global align:4 +doInitWaitState__Q33ebi6Screen10TTitleMenuFv = .text:0x803DA824; // type:function size:0x1C4 scope:global align:4 +doCloseScreen__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen8ArgClose = .text:0x803DA9E8; // type:function size:0x70 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen10TTitleMenuFv = .text:0x803DAA58; // type:function size:0x84 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen10TTitleMenuFv = .text:0x803DAADC; // type:function size:0x470 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen10TTitleMenuFv = .text:0x803DAF4C; // type:function size:0xD4 scope:global align:4 +doDraw__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB020; // type:function size:0x74 scope:global align:4 +setController__Q33ebi6Screen10TTitleMenuFP10Controller = .text:0x803DB094; // type:function size:0x8 scope:global align:4 +openMenuSet__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen7ArgOpen = .text:0x803DB09C; // type:function size:0x60 scope:global align:4 +isDecide__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB0FC; // type:function size:0x8 scope:global align:4 +isCancel__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB104; // type:function size:0x8 scope:global align:4 +showPika___Q33ebi6Screen10TTitleMenuFl = .text:0x803DB10C; // type:function size:0x3C scope:global align:4 +hidePika___Q33ebi6Screen10TTitleMenuFl = .text:0x803DB148; // type:function size:0x3C scope:global align:4 +getName__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB184; // type:function size:0xC scope:weak align:4 +init__Q33ebi4Save15FSMStateMachineFPQ33ebi4Save4TMgr = .text:0x803DB190; // type:function size:0x34C scope:global align:4 +init__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB4DC; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB508; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgr = .text:0x803DB50C; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgr = .text:0x803DB538; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi4Save18FSMState_DoYouSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB53C; // type:function size:0x4C scope:global align:4 +do_exec__Q33ebi4Save18FSMState_DoYouSaveFPQ33ebi4Save4TMgr = .text:0x803DB588; // type:function size:0x144 scope:global align:4 +transit__Q24Game26FSMStateFPQ33ebi4Save4TMgriPQ24Game8StateArg = .text:0x803DB6CC; // type:function size:0x30 scope:weak align:4 +do_init__Q33ebi4Save22FSMState_DoYouContinueFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB6FC; // type:function size:0x28 scope:global align:4 +do_exec__Q33ebi4Save22FSMState_DoYouContinueFPQ33ebi4Save4TMgr = .text:0x803DB724; // type:function size:0x114 scope:global align:4 +do_init__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB838; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DB844; // type:function size:0x264 scope:global align:4 +do_transitCardNoCard__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBAA8; // type:function size:0x3C scope:global align:4 +do_transitCardIOError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBAE4; // type:function size:0x3C scope:global align:4 +do_transitCardWrongDevice__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBB20; // type:function size:0x3C scope:global align:4 +do_transitCardWrongSector__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBB5C; // type:function size:0x3C scope:global align:4 +do_transitCardBroken__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBB98; // type:function size:0x3C scope:global align:4 +do_transitCardEncoding__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBBD4; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileSpace__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBC10; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileEntry__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBC4C; // type:function size:0x3C scope:global align:4 +do_transitCardFileOpenError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBC88; // type:function size:0x3C scope:global align:4 +do_transitCardSerialNoError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBCC4; // type:function size:0x3C scope:global align:4 +do_transitCardPlayerDataBroken__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBD00; // type:function size:0x2C scope:global align:4 +do_cardRequest__Q33ebi4Save19FSMState_MountCheckFPQ33ebi4Save4TMgr = .text:0x803DBD2C; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi4Save19FSMState_MountCheckFPQ33ebi4Save4TMgr = .text:0x803DBD54; // type:function size:0x34 scope:global align:4 +do_cardRequest__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr = .text:0x803DBD88; // type:function size:0x2C scope:global align:4 +do_transitCardReady__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr = .text:0x803DBDB4; // type:function size:0xF8 scope:global align:4 +do_transitCardSerialNoError__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr = .text:0x803DBEAC; // type:function size:0x38 scope:global align:4 +do_cardRequest__Q33ebi4Save24FSMState_CheckBeforeSaveFPQ33ebi4Save4TMgr = .text:0x803DBEE4; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi4Save24FSMState_CheckBeforeSaveFPQ33ebi4Save4TMgr = .text:0x803DBF0C; // type:function size:0x3C scope:global align:4 +do_init__Q33ebi4Save16FSMState_NowSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DBF48; // type:function size:0xD0 scope:global align:4 +do_exec__Q33ebi4Save16FSMState_NowSaveFPQ33ebi4Save4TMgr = .text:0x803DC018; // type:function size:0x424 scope:global align:4 +do_init__Q33ebi4Save18FSMState_AfterSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DC43C; // type:function size:0x50 scope:global align:4 +do_exec__Q33ebi4Save18FSMState_AfterSaveFPQ33ebi4Save4TMgr = .text:0x803DC48C; // type:function size:0xD8 scope:global align:4 +do_init__Q33ebi4Save18FSMState_CardErrorFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DC564; // type:function size:0x68 scope:global align:4 +do_exec__Q33ebi4Save18FSMState_CardErrorFPQ33ebi4Save4TMgr = .text:0x803DC5CC; // type:function size:0x104 scope:global align:4 +__dt__Q33ebi4Save4TMgrFv = .text:0x803DC6D0; // type:function size:0x14C scope:global align:4 +__dt__Q33ebi9CardError4TMgrFv = .text:0x803DC81C; // type:function size:0x54 scope:weak align:4 +createInstance__Q33ebi4Save4TMgrFv = .text:0x803DC870; // type:function size:0x48 scope:global align:4 +onDvdErrorOccured__Q33ebi4Save4TMgrFv = .text:0x803DC8B8; // type:function size:0x58 scope:global align:4 +onDvdErrorRecovered__Q33ebi4Save4TMgrFv = .text:0x803DC910; // type:function size:0x44 scope:global align:4 +__ct__Q33ebi4Save4TMgrFv = .text:0x803DC954; // type:function size:0xD4 scope:global align:4 +start__Q24Game30StateMachineFPQ33ebi4Save4TMgriPQ24Game8StateArg = .text:0x803DCA28; // type:function size:0x34 scope:weak align:4 +__ct__Q33ebi6Screen9TSaveMenuFv = .text:0x803DCA5C; // type:function size:0x1A0 scope:weak align:4 +start__Q33ebi4Save4TMgrFv = .text:0x803DCBFC; // type:function size:0x80 scope:global align:4 +forceQuit__Q33ebi4Save4TMgrFv = .text:0x803DCC7C; // type:function size:0x64 scope:global align:4 +isFinish__Q33ebi4Save4TMgrFv = .text:0x803DCCE0; // type:function size:0x4C scope:global align:4 +goEnd___Q33ebi4Save4TMgrFQ43ebi4Save4TMgr7enumEnd = .text:0x803DCD2C; // type:function size:0x68 scope:global align:4 +update__Q33ebi4Save4TMgrFv = .text:0x803DCD94; // type:function size:0x98 scope:global align:4 +draw__Q33ebi4Save4TMgrFv = .text:0x803DCE2C; // type:function size:0x50 scope:global align:4 +getStateID__Q33ebi4Save4TMgrFv = .text:0x803DCE7C; // type:function size:0x58 scope:global align:4 +init__Q24Game26FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DCED4; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCED8; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCEDC; // type:function size:0x4 scope:weak align:4 +resume__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCEE0; // type:function size:0x4 scope:weak align:4 +restart__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCEE4; // type:function size:0x4 scope:weak align:4 +init__Q24Game30StateMachineFPQ33ebi4Save4TMgr = .text:0x803DCEE8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game30StateMachineFPQ33ebi4Save4TMgr = .text:0x803DCEEC; // type:function size:0x38 scope:weak align:4 +create__Q24Game30StateMachineFi = .text:0x803DCF24; // type:function size:0x64 scope:weak align:4 +transit__Q24Game30StateMachineFPQ33ebi4Save4TMgriPQ24Game8StateArg = .text:0x803DCF88; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game30StateMachineFPQ24Game26FSMState = .text:0x803DD024; // type:function size:0x84 scope:weak align:4 +doSetArchive__Q33ebi6Screen9TSaveMenuFP10JKRArchive = .text:0x803DD0A8; // type:function size:0x350 scope:global align:4 +doOpenScreen__Q33ebi6Screen9TSaveMenuFPQ33ebi6Screen7ArgOpen = .text:0x803DD3F8; // type:function size:0x7C scope:global align:4 +doCloseScreen__Q33ebi6Screen9TSaveMenuFPQ33ebi6Screen8ArgClose = .text:0x803DD474; // type:function size:0x64 scope:global align:4 +doKillScreen__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD4D8; // type:function size:0x84 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD55C; // type:function size:0xDC scope:global align:4 +doUpdateStateWait__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD638; // type:function size:0x74 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD6AC; // type:function size:0xD4 scope:global align:4 +doDraw__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD780; // type:function size:0x234 scope:global align:4 +loadResource__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD9B4; // type:function size:0xB0 scope:global align:4 +openMsg__Q33ebi6Screen9TSaveMenuFl = .text:0x803DDA64; // type:function size:0x94 scope:global align:4 +closeMsg__Q33ebi6Screen9TSaveMenuFv = .text:0x803DDAF8; // type:function size:0x3C scope:global align:4 +noMsg__Q33ebi6Screen9TSaveMenuFv = .text:0x803DDB34; // type:function size:0x54 scope:global align:4 +isFinishMsg__Q33ebi6Screen9TSaveMenuFv = .text:0x803DDB88; // type:function size:0x10 scope:global align:4 +startMsgState___Q33ebi6Screen9TSaveMenuFQ43ebi6Screen9TSaveMenu12enumMsgState = .text:0x803DDB98; // type:function size:0x3B4 scope:global align:4 +updateMsg___Q33ebi6Screen9TSaveMenuFv = .text:0x803DDF4C; // type:function size:0x368 scope:global align:4 +getName__Q33ebi6Screen9TSaveMenuFv = .text:0x803DE2B4; // type:function size:0xC scope:weak align:4 +init__Q33ebi2FS15FSMStateMachineFPQ33ebi2FS4TMgr = .text:0x803DE2C0; // type:function size:0x5B0 scope:global align:4 +init__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DE870; // type:function size:0x2C scope:global align:4 +exec__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgr = .text:0x803DE89C; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DE8C8; // type:function size:0x70 scope:global align:4 +do_exec__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgr = .text:0x803DE938; // type:function size:0x204 scope:global align:4 +do_set__Q33ebi2FS21FSMState01_DataBrokenFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEB3C; // type:function size:0x60 scope:global align:4 +do_set__Q33ebi2FS22FSMState03_DoYouDeleteFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEB9C; // type:function size:0x24 scope:global align:4 +do_decide__Q33ebi2FS22FSMState03_DoYouDeleteFPQ33ebi2FS4TMgr = .text:0x803DEBC0; // type:function size:0x24 scope:global align:4 +do_set__Q33ebi2FS25FSMState07_DoYouOverwriteFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEBE4; // type:function size:0x24 scope:global align:4 +do_decide__Q33ebi2FS25FSMState07_DoYouOverwriteFPQ33ebi2FS4TMgr = .text:0x803DEC08; // type:function size:0x38 scope:global align:4 +do_init__Q33ebi2FS16FSMState_WarningFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEC40; // type:function size:0x60 scope:global align:4 +do_exec__Q33ebi2FS16FSMState_WarningFPQ33ebi2FS4TMgr = .text:0x803DECA0; // type:function size:0xC4 scope:global align:4 +do_open__Q33ebi2FS23FSMState05_FailToDeleteFPQ33ebi2FS4TMgr = .text:0x803DED64; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS23FSMState05_FailToDeleteFPQ33ebi2FS4TMgr = .text:0x803DED8C; // type:function size:0x44 scope:global align:4 +do_open__Q33ebi2FS23FSMState06_FinishDeleteFPQ33ebi2FS4TMgr = .text:0x803DEDD0; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS23FSMState06_FinishDeleteFPQ33ebi2FS4TMgr = .text:0x803DEDF8; // type:function size:0x34 scope:global align:4 +do_open__Q33ebi2FS21FSMState08_FailToCopyFPQ33ebi2FS4TMgr = .text:0x803DEE2C; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS21FSMState08_FailToCopyFPQ33ebi2FS4TMgr = .text:0x803DEE54; // type:function size:0x44 scope:global align:4 +do_open__Q33ebi2FS21FSMState10_FinishCopyFPQ33ebi2FS4TMgr = .text:0x803DEE98; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS21FSMState10_FinishCopyFPQ33ebi2FS4TMgr = .text:0x803DEEC0; // type:function size:0x34 scope:global align:4 +init__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEEF4; // type:function size:0x6C scope:global align:4 +exec__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr = .text:0x803DEF60; // type:function size:0x2C0 scope:global align:4 +do_transitCardPlayerDataBroken__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr = .text:0x803DF220; // type:function size:0x34 scope:global align:4 +do_init__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF254; // type:function size:0x40 scope:global align:4 +do_close__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF294; // type:function size:0x24 scope:global align:4 +do_cardRequest__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF2B8; // type:function size:0x2C scope:global align:4 +do_transitCardReady__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF2E4; // type:function size:0x60 scope:global align:4 +do_transitCardNoCard__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF344; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF378; // type:function size:0x34 scope:global align:4 +cleanup__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF3AC; // type:function size:0x24 scope:global align:4 +do_init__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF3D0; // type:function size:0x44 scope:global align:4 +do_close__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF414; // type:function size:0x24 scope:global align:4 +do_cardRequest__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF438; // type:function size:0x34 scope:global align:4 +do_transitCardReady__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF46C; // type:function size:0x64 scope:global align:4 +do_transitCardNoCard__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF4D0; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF504; // type:function size:0x34 scope:global align:4 +cleanup__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF538; // type:function size:0x24 scope:global align:4 +do_init__Q33ebi2FS21FSMState00a_OpenSceneFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF55C; // type:function size:0x4C scope:global align:4 +do_exec__Q33ebi2FS21FSMState00a_OpenSceneFPQ33ebi2FS4TMgr = .text:0x803DF5A8; // type:function size:0x64 scope:global align:4 +do_init__Q33ebi2FS21FSMState00_SelectDataFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF60C; // type:function size:0xAC scope:global align:4 +do_exec__Q33ebi2FS21FSMState00_SelectDataFPQ33ebi2FS4TMgr = .text:0x803DF6B8; // type:function size:0x254 scope:global align:4 +do_init__Q33ebi2FS21FSMState00b_CheckDataFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF90C; // type:function size:0x64 scope:global align:4 +do_exec__Q33ebi2FS21FSMState00b_CheckDataFPQ33ebi2FS4TMgr = .text:0x803DF970; // type:function size:0x1E0 scope:global align:4 +do_init__Q33ebi2FS22FSMState00c_DecideDataFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DFB50; // type:function size:0x3C scope:global align:4 +do_exec__Q33ebi2FS22FSMState00c_DecideDataFPQ33ebi2FS4TMgr = .text:0x803DFB8C; // type:function size:0xB4 scope:global align:4 +do_init__Q33ebi2FS31FSMState04_WhichDataDoYouCopyToFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DFC40; // type:function size:0xB0 scope:global align:4 +do_exec__Q33ebi2FS31FSMState04_WhichDataDoYouCopyToFPQ33ebi2FS4TMgr = .text:0x803DFCF0; // type:function size:0x29C scope:global align:4 +__ct__Q33ebi2FS4TMgrFv = .text:0x803DFF8C; // type:function size:0xA4 scope:global align:4 +setController__Q33ebi2FS4TMgrFP10Controller = .text:0x803E0030; // type:function size:0x48 scope:global align:4 +perseInfo__Q33ebi2FS4TMgrFRQ34Game10MemoryCard14PlayerFileInfo = .text:0x803E0078; // type:function size:0xFC scope:global align:4 +update__Q33ebi2FS4TMgrFv = .text:0x803E0174; // type:function size:0x98 scope:global align:4 +draw__Q33ebi2FS4TMgrFv = .text:0x803E020C; // type:function size:0x48 scope:global align:4 +startSeq__Q33ebi2FS4TMgrFv = .text:0x803E0254; // type:function size:0x44 scope:global align:4 +forceQuitSeq__Q33ebi2FS4TMgrFv = .text:0x803E0298; // type:function size:0x58 scope:global align:4 +isFinish__Q33ebi2FS4TMgrFv = .text:0x803E02F0; // type:function size:0x28 scope:global align:4 +goEnd___Q33ebi2FS4TMgrFQ43ebi2FS4TMgr7enumEnd = .text:0x803E0318; // type:function size:0x60 scope:global align:4 +checkAndTransitNoCard___Q33ebi2FS4TMgrFv = .text:0x803E0378; // type:function size:0xD0 scope:global align:4 +getStateID__Q33ebi2FS4TMgrFv = .text:0x803E0448; // type:function size:0x58 scope:global align:4 +do_init__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803E04A0; // type:function size:0x4 scope:weak align:4 +do_exec__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgr = .text:0x803E04A4; // type:function size:0x4 scope:weak align:4 +do_decide__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgr = .text:0x803E04A8; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803E04AC; // type:function size:0x4 scope:weak align:4 +do_close__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr = .text:0x803E04B0; // type:function size:0x4 scope:weak align:4 +transit__Q24Game24FSMStateFPQ33ebi2FS4TMgriPQ24Game8StateArg = .text:0x803E04B4; // type:function size:0x30 scope:weak align:4 +start__Q24Game28StateMachineFPQ33ebi2FS4TMgriPQ24Game8StateArg = .text:0x803E04E4; // type:function size:0x34 scope:weak align:4 +__dt__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803E0518; // type:function size:0xBF4 scope:weak align:4 +init__Q24Game24FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803E110C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E1110; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E1114; // type:function size:0x4 scope:weak align:4 +resume__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E1118; // type:function size:0x4 scope:weak align:4 +restart__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E111C; // type:function size:0x4 scope:weak align:4 +init__Q24Game28StateMachineFPQ33ebi2FS4TMgr = .text:0x803E1120; // type:function size:0x4 scope:weak align:4 +exec__Q24Game28StateMachineFPQ33ebi2FS4TMgr = .text:0x803E1124; // type:function size:0x38 scope:weak align:4 +create__Q24Game28StateMachineFi = .text:0x803E115C; // type:function size:0x64 scope:weak align:4 +transit__Q24Game28StateMachineFPQ33ebi2FS4TMgriPQ24Game8StateArg = .text:0x803E11C0; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game28StateMachineFPQ24Game24FSMState = .text:0x803E125C; // type:function size:0x84 scope:weak align:4 +init__Q33ebi10FileSelect15FSMStateMachineFPQ33ebi10FileSelect4TMgr = .text:0x803E12E0; // type:function size:0x248 scope:global align:4 +init__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1528; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1554; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E1558; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E1584; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi10FileSelect20FSMState_EmptyUpdateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1588; // type:function size:0x10 scope:global align:4 +do_exec__Q33ebi10FileSelect20FSMState_EmptyUpdateFPQ33ebi10FileSelect4TMgr = .text:0x803E1598; // type:function size:0x54 scope:global align:4 +transit__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg = .text:0x803E15EC; // type:function size:0x30 scope:weak align:4 +do_init__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E161C; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1628; // type:function size:0x278 scope:global align:4 +do_transitCardNoCard__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E18A0; // type:function size:0x3C scope:global align:4 +do_transitCardIOError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E18DC; // type:function size:0x3C scope:global align:4 +do_transitCardWrongDevice__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1918; // type:function size:0x3C scope:global align:4 +do_transitCardWrongSector__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1954; // type:function size:0x3C scope:global align:4 +do_transitCardBroken__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1990; // type:function size:0x3C scope:global align:4 +do_transitCardEncoding__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E19CC; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileSpace__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1A08; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileEntry__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1A44; // type:function size:0x3C scope:global align:4 +do_transitCardFileOpenError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1A80; // type:function size:0x3C scope:global align:4 +do_transitCardPlayerDataBroken__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1ABC; // type:function size:0x2C scope:global align:4 +do_transitCardSerialNoError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1AE8; // type:function size:0x54 scope:global align:4 +do_cardRequest__Q33ebi10FileSelect19FSMState_MountCheckFPQ33ebi10FileSelect4TMgr = .text:0x803E1B3C; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi10FileSelect19FSMState_MountCheckFPQ33ebi10FileSelect4TMgr = .text:0x803E1B64; // type:function size:0x34 scope:global align:4 +do_cardRequest__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr = .text:0x803E1B98; // type:function size:0x2C scope:global align:4 +do_transitCardReady__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr = .text:0x803E1BC4; // type:function size:0x34 scope:global align:4 +do_transitCardSerialNoError__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr = .text:0x803E1BF8; // type:function size:0x38 scope:global align:4 +do_init__Q33ebi10FileSelect25FSMState_ScreenFileSelectFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1C30; // type:function size:0x44 scope:global align:4 +do_exec__Q33ebi10FileSelect25FSMState_ScreenFileSelectFPQ33ebi10FileSelect4TMgr = .text:0x803E1C74; // type:function size:0xC4 scope:global align:4 +do_init__Q33ebi10FileSelect18FSMState_CardErrorFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1D38; // type:function size:0x60 scope:global align:4 +do_exec__Q33ebi10FileSelect18FSMState_CardErrorFPQ33ebi10FileSelect4TMgr = .text:0x803E1D98; // type:function size:0xB8 scope:global align:4 +start__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg = .text:0x803E1E50; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi2FS4TMgrFv = .text:0x803E1E84; // type:function size:0x54 scope:weak align:4 +__dt__Q33ebi10FileSelect4TMgrFv = .text:0x803E1ED8; // type:function size:0x84 scope:global align:4 +createInstance__Q33ebi10FileSelect4TMgrFv = .text:0x803E1F5C; // type:function size:0xDC scope:global align:4 +onDvdErrorOccured__Q33ebi10FileSelect4TMgrFv = .text:0x803E2038; // type:function size:0x58 scope:global align:4 +onDvdErrorRecovered__Q33ebi10FileSelect4TMgrFv = .text:0x803E2090; // type:function size:0x44 scope:global align:4 +start__Q33ebi10FileSelect4TMgrFv = .text:0x803E20D4; // type:function size:0x4C scope:global align:4 +forceQuit__Q33ebi10FileSelect4TMgrFv = .text:0x803E2120; // type:function size:0x58 scope:global align:4 +update__Q33ebi10FileSelect4TMgrFv = .text:0x803E2178; // type:function size:0x8C scope:global align:4 +draw__Q33ebi10FileSelect4TMgrFv = .text:0x803E2204; // type:function size:0x44 scope:global align:4 +showInfo__Q33ebi10FileSelect4TMgrFv = .text:0x803E2248; // type:function size:0x4 scope:global align:4 +isFinish__Q33ebi10FileSelect4TMgrFv = .text:0x803E224C; // type:function size:0x4C scope:global align:4 +goEnd___Q33ebi10FileSelect4TMgrFQ43ebi10FileSelect4TMgr7enumEnd = .text:0x803E2298; // type:function size:0x5C scope:global align:4 +getStateID__Q33ebi10FileSelect4TMgrFv = .text:0x803E22F4; // type:function size:0x58 scope:global align:4 +init__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E234C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E2350; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E2354; // type:function size:0x4 scope:weak align:4 +resume__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E2358; // type:function size:0x4 scope:weak align:4 +restart__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E235C; // type:function size:0x4 scope:weak align:4 +init__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgr = .text:0x803E2360; // type:function size:0x4 scope:weak align:4 +exec__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgr = .text:0x803E2364; // type:function size:0x38 scope:weak align:4 +create__Q24Game37StateMachineFi = .text:0x803E239C; // type:function size:0x64 scope:weak align:4 +transit__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg = .text:0x803E2400; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game37StateMachineFPQ24Game33FSMState = .text:0x803E249C; // type:function size:0x84 scope:weak align:4 +do_open__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2520; // type:function size:0x4C scope:global align:4 +do_transit__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E256C; // type:function size:0x58 scope:global align:4 +do_transitOnCard__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E25C4; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError20FSMState_W01_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2610; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError20FSMState_W01_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2664; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError24FSMState_W02_WrongDeviceFPQ33ebi9CardError4TMgr = .text:0x803E26BC; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError24FSMState_W02_WrongDeviceFPQ33ebi9CardError4TMgr = .text:0x803E2710; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError24FSMState_W03_WrongSectorFPQ33ebi9CardError4TMgr = .text:0x803E2768; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError24FSMState_W03_WrongSectorFPQ33ebi9CardError4TMgr = .text:0x803E27BC; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError25FSMState_W04_OverCapacityFPQ33ebi9CardError4TMgr = .text:0x803E2814; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError25FSMState_W04_OverCapacityFPQ33ebi9CardError4TMgr = .text:0x803E2868; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W05_InitCardOnIPLFPQ33ebi9CardError4TMgr = .text:0x803E28CC; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W05_InitCardOnIPLFPQ33ebi9CardError4TMgr = .text:0x803E2920; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W06_CardNotUsableFPQ33ebi9CardError4TMgr = .text:0x803E2984; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W06_CardNotUsableFPQ33ebi9CardError4TMgr = .text:0x803E29D8; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W07_NoFileForSaveFPQ33ebi9CardError4TMgr = .text:0x803E2A30; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W07_NoFileForSaveFPQ33ebi9CardError4TMgr = .text:0x803E2A84; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError25FSMState_W08_FinishFormatFPQ33ebi9CardError4TMgr = .text:0x803E2ADC; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError25FSMState_W08_FinishFormatFPQ33ebi9CardError4TMgr = .text:0x803E2B30; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError32FSMState_W09_FinishCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E2B7C; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError32FSMState_W09_FinishCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E2BD0; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W10_SerialNoErrorFPQ33ebi9CardError4TMgr = .text:0x803E2C1C; // type:function size:0x64 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W10_SerialNoErrorFPQ33ebi9CardError4TMgr = .text:0x803E2C80; // type:function size:0x5C scope:global align:4 +do_open__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2CDC; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2D30; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2D7C; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2DD0; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2E1C; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2E70; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2EBC; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2F10; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2F5C; // type:function size:0x64 scope:global align:4 +do_transit__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2FC0; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError31FSMState_WF5_FailToSave_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E300C; // type:function size:0x64 scope:global align:4 +do_transit__Q33ebi9CardError31FSMState_WF5_FailToSave_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E3070; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E30BC; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E3110; // type:function size:0x64 scope:global align:4 +do_transitNo__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E3174; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr = .text:0x803E31D8; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr = .text:0x803E322C; // type:function size:0x58 scope:global align:4 +do_transitNo__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr = .text:0x803E3284; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E32DC; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E3330; // type:function size:0x64 scope:global align:4 +do_transitNo__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E3394; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E33F8; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E344C; // type:function size:0x64 scope:global align:4 +do_transitNo__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E34B0; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr = .text:0x803E3514; // type:function size:0x64 scope:global align:4 +do_transitYes__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr = .text:0x803E3578; // type:function size:0x5C scope:global align:4 +do_transitNo__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr = .text:0x803E35D4; // type:function size:0x5C scope:global align:4 +do_open__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr = .text:0x803E3630; // type:function size:0x64 scope:global align:4 +do_transitYes__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr = .text:0x803E3694; // type:function size:0x5C scope:global align:4 +do_transitNo__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr = .text:0x803E36F0; // type:function size:0x5C scope:global align:4 +do_cardRequest__Q33ebi9CardError22FSMState_WN0_NowFormatFv = .text:0x803E374C; // type:function size:0x28 scope:global align:4 +do_open__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E3774; // type:function size:0x4C scope:global align:4 +do_transitCardReady__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E37C0; // type:function size:0x34 scope:global align:4 +do_transitCardNoCard__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E37F4; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E3828; // type:function size:0x34 scope:global align:4 +do_open__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E385C; // type:function size:0x4C scope:global align:4 +do_cardRequest__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFv = .text:0x803E38A8; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E38D0; // type:function size:0x34 scope:global align:4 +do_transitCardNoCard__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E3904; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E3938; // type:function size:0x34 scope:global align:4 +__ct__Q33ebi5title9TCoordMgrFv = .text:0x803E396C; // type:function size:0x1A4 scope:global align:4 +copyCoordinate__Q33ebi5title9TCoordMgrFP10Vector2 = .text:0x803E3B10; // type:function size:0x118 scope:global align:4 +readCoordinate__Q33ebi5title9TCoordMgrFP10JKRArchivePc = .text:0x803E3C28; // type:function size:0x7C scope:global align:4 +readCoordinate__Q33ebi5title9TCoordMgrFR6Stream = .text:0x803E3CA4; // type:function size:0x144 scope:global align:4 +setArchive__Q43ebi5title6Pikmin9TAnimatorFP10JKRArchive = .text:0x803E3DE8; // type:function size:0x2D8 scope:global align:4 +__ct__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E40C0; // type:function size:0x198 scope:global align:4 +__dt__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E4258; // type:function size:0x74 scope:weak align:4 +setArchive__Q43ebi5title6Pikmin4TMgrFP10JKRArchive = .text:0x803E42CC; // type:function size:0xD8 scope:global align:4 +initUnit__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E43A4; // type:function size:0x11C scope:global align:4 +update__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E44C0; // type:function size:0x1A8 scope:global align:4 +setStartPos__Q43ebi5title6Pikmin4TMgrFP10Vector2 = .text:0x803E4668; // type:function size:0x164 scope:global align:4 +setDestPos__Q43ebi5title6Pikmin4TMgrFP10Vector2 = .text:0x803E47CC; // type:function size:0x164 scope:global align:4 +forceArriveDest__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4930; // type:function size:0xC0 scope:global align:4 +assemble__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E49F0; // type:function size:0x88 scope:global align:4 +quickAssemble__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4A78; // type:function size:0x88 scope:global align:4 +startBoid1__Q43ebi5title6Pikmin4TMgrFf = .text:0x803E4B00; // type:function size:0x90 scope:global align:4 +startBoid2__Q43ebi5title6Pikmin4TMgrFf = .text:0x803E4B90; // type:function size:0x90 scope:global align:4 +startBoid3__Q43ebi5title6Pikmin4TMgrFf = .text:0x803E4C20; // type:function size:0x90 scope:global align:4 +startWindBlow__Q43ebi5title6Pikmin4TMgrFRQ23ebi8EGEBox2f = .text:0x803E4CB0; // type:function size:0x9C scope:global align:4 +startDemo__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4D4C; // type:function size:0xAC scope:global align:4 +enemyPushOut__Q43ebi5title6Pikmin4TMgrFPQ33ebi5title8TObjBase = .text:0x803E4DF8; // type:function size:0x6C scope:global align:4 +updateCalcBoid___Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4E64; // type:function size:0x3B8 scope:global align:4 +isAssemble__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E521C; // type:function size:0x70 scope:global align:4 +getUnit__Q43ebi5title6Pikmin4TMgrFl = .text:0x803E528C; // type:function size:0x10 scope:global align:4 +init__Q43ebi5title6Pikmin5TUnitFPQ43ebi5title6Pikmin4TMgrl = .text:0x803E529C; // type:function size:0x360 scope:global align:4 +goDestination__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E55FC; // type:function size:0x98 scope:global align:4 +beAttacked__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5694; // type:function size:0x6C scope:global align:4 +alive__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5700; // type:function size:0xC scope:global align:4 +isCalc__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E570C; // type:function size:0x14 scope:global align:4 +isAssemble__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5720; // type:function size:0x24 scope:global align:4 +isWalk__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5744; // type:function size:0x24 scope:global align:4 +startState__Q43ebi5title6Pikmin5TUnitFQ53ebi5title6Pikmin5TUnit9enumState = .text:0x803E5768; // type:function size:0x150 scope:global align:4 +update__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E58B8; // type:function size:0xDD4 scope:global align:4 +updateSmoothWalk___Q43ebi5title6Pikmin5TUnitFR10Vector2 = .text:0x803E668C; // type:function size:0x200 scope:global align:4 +updateEnemyReaction___Q43ebi5title6Pikmin5TUnitFv = .text:0x803E688C; // type:function size:0x350 scope:global align:4 +__ct__Q43ebi5title6Pikmin10TBoidParamFv = .text:0x803E6BDC; // type:function size:0x238 scope:weak align:4 +__ct__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E6E14; // type:function size:0xFC scope:weak align:4 +__ct__Q43ebi5title6Pikmin6TParamFv = .text:0x803E6F10; // type:function size:0x418 scope:weak align:4 +getCreatureType__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E7328; // type:function size:0x8 scope:weak align:4 +__sinit_ebiP2TitlePikmin_cpp = .text:0x803E7330; // type:function size:0x28 scope:local align:4 +__ct__Q43ebi5title6Kogane4TMgrFv = .text:0x803E7358; // type:function size:0x148 scope:global align:4 +setArchive__Q43ebi5title6Kogane4TMgrFP10JKRArchive = .text:0x803E74A0; // type:function size:0x50 scope:global align:4 +initUnit__Q43ebi5title6Kogane4TMgrFv = .text:0x803E74F0; // type:function size:0x28 scope:global align:4 +__ct__Q43ebi5title6Kogane9TAnimatorFv = .text:0x803E7518; // type:function size:0x68 scope:global align:4 +setArchive__Q43ebi5title6Kogane9TAnimatorFP10JKRArchive = .text:0x803E7580; // type:function size:0x11C scope:global align:4 +setController__Q43ebi5title6Kogane5TUnitFP10Controller = .text:0x803E769C; // type:function size:0x8 scope:global align:4 +init__Q43ebi5title6Kogane5TUnitFPQ43ebi5title6Kogane4TMgr = .text:0x803E76A4; // type:function size:0xF4 scope:global align:4 +startZigzagWalk__Q43ebi5title6Kogane5TUnitFR10Vector2R10Vector2 = .text:0x803E7798; // type:function size:0x4C scope:global align:4 +goHome__Q43ebi5title6Kogane5TUnitFv = .text:0x803E77E4; // type:function size:0x30 scope:global align:4 +outOfCalc__Q43ebi5title6Kogane5TUnitFv = .text:0x803E7814; // type:function size:0x24 scope:global align:4 +isCalc__Q43ebi5title6Kogane5TUnitFv = .text:0x803E7838; // type:function size:0x14 scope:global align:4 +isController__Q43ebi5title6Kogane5TUnitFv = .text:0x803E784C; // type:function size:0x14 scope:global align:4 +startState__Q43ebi5title6Kogane5TUnitFQ53ebi5title6Kogane5TUnit9enumState = .text:0x803E7860; // type:function size:0x2D0 scope:global align:4 +update__Q43ebi5title6Kogane5TUnitFv = .text:0x803E7B30; // type:function size:0x734 scope:global align:4 +__ct__Q43ebi5title6Kogane6TParamFv = .text:0x803E8264; // type:function size:0x32C scope:weak align:4 +getCreatureType__Q43ebi5title6Kogane5TUnitFv = .text:0x803E8590; // type:function size:0x8 scope:weak align:4 +getAnimRes__Q43ebi5title6Kogane11TAnimFolderFl = .text:0x803E8598; // type:function size:0x14 scope:weak align:4 +__ct__Q23ebi10E3DAnimResFv = .text:0x803E85AC; // type:function size:0x4 scope:weak align:4 +__sinit_ebiP2TitleKogane_cpp = .text:0x803E85B0; // type:function size:0x28 scope:local align:4 +__ct__Q43ebi5title6Chappy4TMgrFv = .text:0x803E85D8; // type:function size:0x150 scope:global align:4 +setArchive__Q43ebi5title6Chappy4TMgrFP10JKRArchive = .text:0x803E8728; // type:function size:0x50 scope:global align:4 +initUnit__Q43ebi5title6Chappy4TMgrFv = .text:0x803E8778; // type:function size:0x28 scope:global align:4 +__ct__Q43ebi5title6Chappy9TAnimatorFv = .text:0x803E87A0; // type:function size:0x68 scope:global align:4 +setArchive__Q43ebi5title6Chappy9TAnimatorFP10JKRArchive = .text:0x803E8808; // type:function size:0x128 scope:global align:4 +setController__Q43ebi5title6Chappy5TUnitFP10Controller = .text:0x803E8930; // type:function size:0x8 scope:global align:4 +init__Q43ebi5title6Chappy5TUnitFPQ43ebi5title6Chappy4TMgr = .text:0x803E8938; // type:function size:0xF4 scope:global align:4 +startZigzagWalk__Q43ebi5title6Chappy5TUnitFR10Vector2R10Vector2 = .text:0x803E8A2C; // type:function size:0x54 scope:global align:4 +goHome__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8A80; // type:function size:0x30 scope:global align:4 +outOfCalc__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8AB0; // type:function size:0x24 scope:global align:4 +isCalc__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8AD4; // type:function size:0x14 scope:global align:4 +isController__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8AE8; // type:function size:0x14 scope:global align:4 +startAIState___Q43ebi5title6Chappy5TUnitFQ53ebi5title6Chappy5TUnit11enumAIState = .text:0x803E8AFC; // type:function size:0x318 scope:global align:4 +update__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8E14; // type:function size:0xA64 scope:global align:4 +__ct__Q43ebi5title6Chappy6TParamFv = .text:0x803E9878; // type:function size:0x3A4 scope:weak align:4 +getCreatureType__Q43ebi5title6Chappy5TUnitFv = .text:0x803E9C1C; // type:function size:0x8 scope:weak align:4 +getAnimRes__Q43ebi5title6Chappy11TAnimFolderFl = .text:0x803E9C24; // type:function size:0x14 scope:weak align:4 +__sinit_ebiP2TitleChappy_cpp = .text:0x803E9C38; // type:function size:0x28 scope:local align:4 +doSetArchive__Q33ebi6Screen7TTMBackFP10JKRArchive = .text:0x803E9C60; // type:function size:0xB4 scope:global align:4 +doOpenScreen__Q33ebi6Screen7TTMBackFPQ33ebi6Screen7ArgOpen = .text:0x803E9D14; // type:function size:0x70 scope:global align:4 +doCloseScreen__Q33ebi6Screen7TTMBackFPQ33ebi6Screen8ArgClose = .text:0x803E9D84; // type:function size:0x44 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen7TTMBackFv = .text:0x803E9DC8; // type:function size:0xDC scope:global align:4 +doUpdateStateWait__Q33ebi6Screen7TTMBackFv = .text:0x803E9EA4; // type:function size:0x34 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen7TTMBackFv = .text:0x803E9ED8; // type:function size:0xD4 scope:global align:4 +doDraw__Q33ebi6Screen7TTMBackFv = .text:0x803E9FAC; // type:function size:0x74 scope:global align:4 +doSetArchive__Q33ebi6Screen13TNintendoLogoFP10JKRArchive = .text:0x803EA020; // type:function size:0x90 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen13TNintendoLogoFv = .text:0x803EA0B0; // type:function size:0x34 scope:global align:4 +doDraw__Q33ebi6Screen13TNintendoLogoFv = .text:0x803EA0E4; // type:function size:0x74 scope:global align:4 +getName__Q33ebi6Screen13TNintendoLogoFv = .text:0x803EA158; // type:function size:0xC scope:weak align:4 +getName__Q33ebi6Screen7TTMBackFv = .text:0x803EA164; // type:function size:0xC scope:weak align:4 +__ct__Q23ebi13TMainTitleMgrFv = .text:0x803EA170; // type:function size:0x3B4 scope:global align:4 +setMode__Q23ebi13TMainTitleMgrFl = .text:0x803EA524; // type:function size:0x68 scope:global align:4 +loadResource__Q23ebi13TMainTitleMgrFv = .text:0x803EA58C; // type:function size:0x124 scope:global align:4 +setController__Q23ebi13TMainTitleMgrFP10Controller = .text:0x803EA6B0; // type:function size:0x4C scope:global align:4 +start__Q23ebi13TMainTitleMgrFv = .text:0x803EA6FC; // type:function size:0xC0 scope:global align:4 +startMenuSet__Q23ebi13TMainTitleMgrFll = .text:0x803EA7BC; // type:function size:0x1F0 scope:global align:4 +forceQuit__Q23ebi13TMainTitleMgrFv = .text:0x803EA9AC; // type:function size:0xC scope:global align:4 +isFinish__Q23ebi13TMainTitleMgrFv = .text:0x803EA9B8; // type:function size:0x10 scope:global align:4 +getSelectedMenu__Q23ebi13TMainTitleMgrFv = .text:0x803EA9C8; // type:function size:0x8 scope:global align:4 +update__Q23ebi13TMainTitleMgrFv = .text:0x803EA9D0; // type:function size:0x4B0 scope:global align:4 +draw__Q23ebi13TMainTitleMgrFv = .text:0x803EAE80; // type:function size:0x274 scope:global align:4 +__ct__Q23ebi25E2DCallBack_CalcAnimationFv = .text:0x803EB0F4; // type:function size:0x70 scope:weak align:4 +__ct__Q33ebi6Screen22TTitleMenu_Object_IconFv = .text:0x803EB164; // type:function size:0x4 scope:weak align:4 +getName__Q33ebi6Screen8ArgCloseFv = .text:0x803EB168; // type:function size:0xC scope:weak align:4 +getName__Q33ebi6Screen7ArgOpenFv = .text:0x803EB174; // type:function size:0x8 scope:weak align:4 +__sinit_ebiMainTitleMgr_cpp = .text:0x803EB17C; // type:function size:0x28 scope:local align:4 +setGX__Q33ebi5title12TTitleFogMgrFR6Camera = .text:0x803EB1A4; // type:function size:0x118 scope:global align:4 +loadSettingFile__Q33ebi5title12TTitleFogMgrFP10JKRArchivePc = .text:0x803EB2BC; // type:function size:0x7C scope:global align:4 +__sinit_ebiP2TitleFog_cpp = .text:0x803EB338; // type:function size:0x28 scope:local align:4 +create__Q23efx11TDangoCrashFPQ23efx3Arg = .text:0x803EB360; // type:function size:0x1A8 scope:global align:4 +create__Q23efx10TDangoTurnFPQ23efx3Arg = .text:0x803EB508; // type:function size:0x11C scope:global align:4 +setGlobalPrmColor__Q23efx9TKageMoveFR6Color4 = .text:0x803EB624; // type:function size:0x30 scope:global align:4 +setGlobalPrmColor__Q23efx8TKageRunFR6Color4 = .text:0x803EB654; // type:function size:0x30 scope:global align:4 +setGlobalPrmColor__Q23efx10TKageDead1FR6Color4 = .text:0x803EB684; // type:function size:0x30 scope:global align:4 +create__Q23efx10TKageDead2FPQ23efx3Arg = .text:0x803EB6B4; // type:function size:0xCC scope:global align:4 +create__Q23efx13TOootaBombLegFPQ23efx3Arg = .text:0x803EB780; // type:function size:0x174 scope:global align:4 +create__Q23efx10TOootaFireFPQ23efx3Arg = .text:0x803EB8F4; // type:function size:0x150 scope:global align:4 +create__Q23efx13TKchFlickSandFPQ23efx3Arg = .text:0x803EBA44; // type:function size:0x154 scope:global align:4 +create__Q23efx10TKchApSandFPQ23efx3Arg = .text:0x803EBB98; // type:function size:0x154 scope:global align:4 +create__Q23efx9TKchApWatFPQ23efx3Arg = .text:0x803EBCEC; // type:function size:0x154 scope:global align:4 +setGlobalScale__Q23efx12TKchDiveSandFf = .text:0x803EBE40; // type:function size:0x40 scope:global align:4 +setGlobalScale__Q23efx11TKchDiveWatFf = .text:0x803EBE80; // type:function size:0x40 scope:global align:4 +setGlobalScale__Q23efx9TKchCryABFf = .text:0x803EBEC0; // type:function size:0x2C scope:global align:4 +setGlobalScale__Q23efx10TKchCryIndFf = .text:0x803EBEEC; // type:function size:0x18 scope:global align:4 +create__Q23efx10TKchDamageFPQ23efx3Arg = .text:0x803EBF04; // type:function size:0x118 scope:global align:4 +setGlobalScale__Q23efx13TKchSmokeHanaFf = .text:0x803EC01C; // type:function size:0x18 scope:global align:4 +create__Q23efx13TKchDownsmokeFPQ23efx3Arg = .text:0x803EC034; // type:function size:0xD0 scope:global align:4 +setGlobalScale__Q23efx12TKchDeadHanaFf = .text:0x803EC104; // type:function size:0x2C scope:global align:4 +init__Q23efx27TParticleCallBack_KchYodareFP14JPABaseEmitterP15JPABaseParticle = .text:0x803EC130; // type:function size:0x4 scope:global align:4 +execute__Q23efx27TParticleCallBack_KchYodareFP14JPABaseEmitterP15JPABaseParticle = .text:0x803EC134; // type:function size:0x17C scope:global align:4 +create__Q23efx22TKchYodareBaseChaseMtxFPQ23efx3Arg = .text:0x803EC2B0; // type:function size:0x108 scope:global align:4 +setGlobalScale__Q23efx22TKchYodareBaseChaseMtxFf = .text:0x803EC3B8; // type:function size:0x18 scope:global align:4 +setPosNrm__Q23efx11THdamaSightFR10Vector3R10Vector3 = .text:0x803EC3D0; // type:function size:0x108 scope:global align:4 +create__Q23efx11THdamaShellFPQ23efx3Arg = .text:0x803EC4D8; // type:function size:0xD0 scope:global align:4 +create__Q23efx11THdamaHit2WFPQ23efx3Arg = .text:0x803EC5A8; // type:function size:0x1BC scope:global align:4 +create__Q23efx16THdamaDeadHahen1FPQ23efx3Arg = .text:0x803EC764; // type:function size:0x174 scope:global align:4 +create__Q23efx16THdamaDeadHahen2FPQ23efx3Arg = .text:0x803EC8D8; // type:function size:0x18C scope:global align:4 +setGlobalScale__Q23efx10TOdamaFur1Ff = .text:0x803ECA64; // type:function size:0x18 scope:global align:4 +setGlobalScale__Q23efx10TOdamaFur2Ff = .text:0x803ECA7C; // type:function size:0x18 scope:global align:4 +__dt__Q23efx11THdamaShellFv = .text:0x803ECA94; // type:function size:0x9C scope:weak align:4 +@4@__dt__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x803ECB30; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11THdamaShellFv = .text:0x803ECB38; // type:function size:0x8 scope:weak align:4 +gCardEMgr_ThreadFunc__3ebiFPv = .text:0x803ECB40; // type:function size:0x5C scope:global align:4 +CardE_uploadToGBA__Q23ebi11CardEReaderFlPUcUl = .text:0x803ECB9C; // type:function size:0x274 scope:global align:4 +__dt__Q33ebi11CardEReader4TMgrFv = .text:0x803ECE10; // type:function size:0x68 scope:global align:4 +globalInstance__Q33ebi11CardEReader4TMgrFv = .text:0x803ECE78; // type:function size:0x6C scope:global align:4 +loadResource__Q33ebi11CardEReader4TMgrFv = .text:0x803ECEE4; // type:function size:0x11C scope:global align:4 +init__Q33ebi11CardEReader4TMgrFv = .text:0x803ED000; // type:function size:0x3C scope:global align:4 +uploadToGBA__Q33ebi11CardEReader4TMgrFl = .text:0x803ED03C; // type:function size:0x1C scope:global align:4 +probeAGB__Q33ebi11CardEReader4TMgrFv = .text:0x803ED058; // type:function size:0x18 scope:global align:4 +update__Q33ebi11CardEReader4TMgrFv = .text:0x803ED070; // type:function size:0x150 scope:global align:4 +isFinish__Q33ebi11CardEReader4TMgrFv = .text:0x803ED1C0; // type:function size:0x10 scope:global align:4 +threadProc__Q33ebi11CardEReader4TMgrFPv = .text:0x803ED1D0; // type:function size:0x74 scope:global align:4 +tryUploadToGBA___Q33ebi11CardEReader4TMgrFv = .text:0x803ED244; // type:function size:0x54 scope:global align:4 +goEnd___Q33ebi11CardEReader4TMgrFQ43ebi11CardEReader4TMgr7enumErr = .text:0x803ED298; // type:function size:0x10 scope:global align:4 +__ct__Q33ebi6Screen6TOmakeFv = .text:0x803ED2A8; // type:function size:0x274 scope:global align:4 +doSetArchive__Q33ebi6Screen6TOmakeFP10JKRArchive = .text:0x803ED51C; // type:function size:0x5F0 scope:global align:4 +doOpenScreen__Q33ebi6Screen6TOmakeFPQ33ebi6Screen7ArgOpen = .text:0x803EDB0C; // type:function size:0x5F0 scope:global align:4 +doCloseScreen__Q33ebi6Screen6TOmakeFPQ33ebi6Screen8ArgClose = .text:0x803EE0FC; // type:function size:0x4C scope:global align:4 +doInitWaitState__Q33ebi6Screen6TOmakeFv = .text:0x803EE148; // type:function size:0x48 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen6TOmakeFv = .text:0x803EE190; // type:function size:0x84 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen6TOmakeFv = .text:0x803EE214; // type:function size:0x484 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen6TOmakeFv = .text:0x803EE698; // type:function size:0x74 scope:global align:4 +doDraw__Q33ebi6Screen6TOmakeFv = .text:0x803EE70C; // type:function size:0x244 scope:global align:4 +setController__Q33ebi6Screen6TOmakeFP10Controller = .text:0x803EE950; // type:function size:0x44 scope:global align:4 +showPanes___Q33ebi6Screen6TOmakeFv = .text:0x803EE994; // type:function size:0x64 scope:global align:4 +hidePanes___Q33ebi6Screen6TOmakeFv = .text:0x803EE9F8; // type:function size:0x28 scope:global align:4 +openFromMovie___Q33ebi6Screen6TOmakeFv = .text:0x803EEA20; // type:function size:0x54 scope:global align:4 +openFromCardE___Q33ebi6Screen6TOmakeFv = .text:0x803EEA74; // type:function size:0xB0 scope:global align:4 +__ct__Q23ebi26E2DCallBack_BlinkFontColorFv = .text:0x803EEB24; // type:function size:0xBC scope:weak align:4 +getName__Q33ebi6Screen6TOmakeFv = .text:0x803EEBE0; // type:function size:0x8 scope:weak align:4 +init__Q33ebi5Omake15FSMStateMachineFPQ33ebi5Omake4TMgr = .text:0x803EEBE8; // type:function size:0x1D0 scope:global align:4 +init__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EEDB8; // type:function size:0x2C scope:global align:4 +exec__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgr = .text:0x803EEDE4; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi5Omake20FSMState_OmakeScreenFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EEE10; // type:function size:0xDC scope:global align:4 +do_exec__Q33ebi5Omake20FSMState_OmakeScreenFPQ33ebi5Omake4TMgr = .text:0x803EEEEC; // type:function size:0xA8 scope:global align:4 +do_init__Q33ebi5Omake20FSMState_CardEScreenFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EEF94; // type:function size:0x34 scope:global align:4 +do_exec__Q33ebi5Omake20FSMState_CardEScreenFPQ33ebi5Omake4TMgr = .text:0x803EEFC8; // type:function size:0xA0 scope:global align:4 +do_init__Q33ebi5Omake19FSMState_SelectGameFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EF068; // type:function size:0x48 scope:global align:4 +do_exec__Q33ebi5Omake19FSMState_SelectGameFPQ33ebi5Omake4TMgr = .text:0x803EF0B0; // type:function size:0x378 scope:global align:4 +__ct__Q33ebi5Omake4TMgrFv = .text:0x803EF428; // type:function size:0xB4 scope:global align:4 +loadResource__Q33ebi5Omake4TMgrFv = .text:0x803EF4DC; // type:function size:0xE8 scope:global align:4 +newCardEMgrAndTask__Q33ebi5Omake4TMgrFv = .text:0x803EF5C4; // type:function size:0x50 scope:global align:4 +start__Q33ebi5Omake4TMgrFv = .text:0x803EF614; // type:function size:0x3C scope:global align:4 +goEnd___Q33ebi5Omake4TMgrFv = .text:0x803EF650; // type:function size:0x3C scope:global align:4 +isFinish__Q33ebi5Omake4TMgrFv = .text:0x803EF68C; // type:function size:0x28 scope:global align:4 +update__Q33ebi5Omake4TMgrFv = .text:0x803EF6B4; // type:function size:0xE0 scope:global align:4 +draw__Q33ebi5Omake4TMgrFv = .text:0x803EF794; // type:function size:0x80 scope:global align:4 +isMovieState__Q33ebi5Omake4TMgrFv = .text:0x803EF814; // type:function size:0x2C scope:global align:4 +restartFromMovieState__Q33ebi5Omake4TMgrFv = .text:0x803EF840; // type:function size:0x54 scope:global align:4 +getMovieID__Q33ebi5Omake4TMgrFv = .text:0x803EF894; // type:function size:0x8 scope:global align:4 +getStateID__Q33ebi5Omake4TMgrFv = .text:0x803EF89C; // type:function size:0x58 scope:global align:4 +do_init__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EF8F4; // type:function size:0x4 scope:weak align:4 +do_exec__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgr = .text:0x803EF8F8; // type:function size:0x4 scope:weak align:4 +transit__Q24Game27FSMStateFPQ33ebi5Omake4TMgriPQ24Game8StateArg = .text:0x803EF8FC; // type:function size:0x30 scope:weak align:4 +start__Q24Game31StateMachineFPQ33ebi5Omake4TMgriPQ24Game8StateArg = .text:0x803EF92C; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi6Screen10TOmakeGameFv = .text:0x803EF960; // type:function size:0x278 scope:weak align:4 +__dt__Q33ebi6Screen11TOmakeCardEFv = .text:0x803EFBD8; // type:function size:0x2E4 scope:weak align:4 +__dt__Q33ebi6Screen6TOmakeFv = .text:0x803EFEBC; // type:function size:0x208 scope:weak align:4 +init__Q24Game27FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803F00C4; // type:function size:0x4 scope:weak align:4 +exec__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F00C8; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F00CC; // type:function size:0x4 scope:weak align:4 +resume__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F00D0; // type:function size:0x4 scope:weak align:4 +restart__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F00D4; // type:function size:0x4 scope:weak align:4 +init__Q24Game31StateMachineFPQ33ebi5Omake4TMgr = .text:0x803F00D8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31StateMachineFPQ33ebi5Omake4TMgr = .text:0x803F00DC; // type:function size:0x38 scope:weak align:4 +create__Q24Game31StateMachineFi = .text:0x803F0114; // type:function size:0x64 scope:weak align:4 +transit__Q24Game31StateMachineFPQ33ebi5Omake4TMgriPQ24Game8StateArg = .text:0x803F0178; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game31StateMachineFPQ24Game27FSMState = .text:0x803F0214; // type:function size:0x84 scope:weak align:4 +getName__Q33ebi6Screen12ArgOpenOmakeFv = .text:0x803F0298; // type:function size:0xC scope:weak align:4 +__ct__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F02A4; // type:function size:0x2B4 scope:global align:4 +doSetArchive__Q33ebi6Screen11TOmakeCardEFP10JKRArchive = .text:0x803F0558; // type:function size:0x290 scope:global align:4 +doOpenScreen__Q33ebi6Screen11TOmakeCardEFPQ33ebi6Screen7ArgOpen = .text:0x803F07E8; // type:function size:0xBC scope:global align:4 +doCloseScreen__Q33ebi6Screen11TOmakeCardEFPQ33ebi6Screen8ArgClose = .text:0x803F08A4; // type:function size:0x50 scope:global align:4 +doInitWaitState__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F08F4; // type:function size:0x3C scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0930; // type:function size:0x54 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0984; // type:function size:0x29C scope:global align:4 +doUpdateStateClose__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0C20; // type:function size:0x54 scope:global align:4 +doDraw__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0C74; // type:function size:0x74 scope:global align:4 +getName__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0CE8; // type:function size:0xC scope:weak align:4 +__ct__Q33ebi6Screen10TOmakeGameFv = .text:0x803F0CF4; // type:function size:0x278 scope:global align:4 +doSetArchive__Q33ebi6Screen10TOmakeGameFP10JKRArchive = .text:0x803F0F6C; // type:function size:0x2F4 scope:global align:4 +doOpenScreen__Q33ebi6Screen10TOmakeGameFPQ33ebi6Screen7ArgOpen = .text:0x803F1260; // type:function size:0x294 scope:global align:4 +doCloseScreen__Q33ebi6Screen10TOmakeGameFPQ33ebi6Screen8ArgClose = .text:0x803F14F4; // type:function size:0x3C scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1530; // type:function size:0x54 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1584; // type:function size:0x258 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen10TOmakeGameFv = .text:0x803F17DC; // type:function size:0x54 scope:global align:4 +doDraw__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1830; // type:function size:0x74 scope:global align:4 +setController__Q33ebi6Screen10TOmakeGameFP10Controller = .text:0x803F18A4; // type:function size:0x44 scope:global align:4 +isDelegateControl__Q33ebi6Screen10TOmakeGameFv = .text:0x803F18E8; // type:function size:0x48 scope:global align:4 +setSelfControl__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1930; // type:function size:0x3C scope:global align:4 +openMsg__Q33ebi6Screen10TOmakeGameFl = .text:0x803F196C; // type:function size:0x108 scope:global align:4 +getName__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1A74; // type:function size:0xC scope:weak align:4 +__dt__Q29P2DScreen3MgrFv = .text:0x803F1A80; // type:function size:0x84 scope:weak align:4 +__dt__Q32kh6Screen14khUtilFadePaneFv = .text:0x803F1B04; // type:function size:0x9C scope:weak align:4 +fadeout_finish__Q32kh6Screen16khUtilFadePaneWMFv = .text:0x803F1BA0; // type:function size:0x58 scope:global align:4 +__dt__Q32kh6Screen14khUtilColorAnmFv = .text:0x803F1BF8; // type:function size:0x80 scope:weak align:4 +do_update__Q32kh6Screen16khUtilColorAnmWMFv = .text:0x803F1C78; // type:function size:0x7C scope:global align:4 +__ct__Q32kh6Screen8WorldMapFv = .text:0x803F1CF4; // type:function size:0x1E8 scope:global align:4 +__dt__Q34Game8WorldMap4BaseFv = .text:0x803F1EDC; // type:function size:0x60 scope:weak align:4 +init__Q32kh6Screen8WorldMapFRQ34Game8WorldMap7InitArg = .text:0x803F1F3C; // type:function size:0xCC scope:global align:4 +loadResource__Q32kh6Screen8WorldMapFv = .text:0x803F2008; // type:function size:0x1790 scope:global align:4 +__dt__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F3798; // type:function size:0x3C scope:weak align:4 +update__Q32kh6Screen8WorldMapFRQ34Game8WorldMap9UpdateArg = .text:0x803F37D4; // type:function size:0x1C20 scope:global align:4 +draw1st__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F53F4; // type:function size:0x198 scope:global align:4 +draw2nd__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F558C; // type:function size:0x64 scope:global align:4 +draw3rd__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F55F0; // type:function size:0x2A0 scope:global align:4 +draw4th__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F5890; // type:function size:0x110 scope:global align:4 +rocketMove__Q32kh6Screen8WorldMapFP7J2DPaneb = .text:0x803F59A0; // type:function size:0x330 scope:global align:4 +rocketUpdate__Q32kh6Screen8WorldMapFP7J2DPane = .text:0x803F5CD0; // type:function size:0x404 scope:global align:4 +onyonMove__Q32kh6Screen8WorldMapFv = .text:0x803F60D4; // type:function size:0x90 scope:global align:4 +onyonUpdate__Q32kh6Screen8WorldMapFv = .text:0x803F6164; // type:function size:0x68 scope:global align:4 +postureControl__Q32kh6Screen8WorldMapFP7J2DPane = .text:0x803F61CC; // type:function size:0x1F4 scope:global align:4 +changeState__Q32kh6Screen8WorldMapFv = .text:0x803F63C0; // type:function size:0x230 scope:global align:4 +tag2num__Q32kh6Screen8WorldMapFUx = .text:0x803F65F0; // type:function size:0xC0 scope:global align:4 +finish__Q32kh6Screen8WorldMapFv = .text:0x803F66B0; // type:function size:0x8C scope:global align:4 +newMapOpen__Q32kh6Screen8WorldMapFv = .text:0x803F673C; // type:function size:0x7C scope:global align:4 +getTarget__Q32kh6Screen8WorldMapFv = .text:0x803F67B8; // type:function size:0x13C scope:global align:4 +getRotDir__Q32kh6Screen8WorldMapFRCQ29JGeometry8TVec2f = .text:0x803F68F4; // type:function size:0x174 scope:global align:4 +changeInfo__Q32kh6Screen8WorldMapFv = .text:0x803F6A68; // type:function size:0xA4C scope:global align:4 +effectFirstTime__Q32kh6Screen8WorldMapFv = .text:0x803F74B4; // type:function size:0x550 scope:global align:4 +__ct__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F7A04; // type:function size:0x44 scope:global align:4 +initPtcl__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F7A48; // type:function size:0xF8 scope:global align:4 +move__Q42kh6Screen8WorldMap13OnyonDynamicsFPQ32kh6Screen8WorldMapRCQ29JGeometry8TVec2 = .text:0x803F7B40; // type:function size:0x458 scope:global align:4 +update__Q42kh6Screen8WorldMap13OnyonDynamicsFPQ32kh6Screen8WorldMap = .text:0x803F7F98; // type:function size:0x12C scope:global align:4 +kill__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F80C4; // type:function size:0x30 scope:global align:4 +getName__Q35efx2d8WorldMap11ArgDirScaleFv = .text:0x803F80F4; // type:function size:0xC scope:weak align:4 +__dt__Q35efx2d8WorldMap10T2DShstar1Fv = .text:0x803F8100; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d8WorldMap11T2DMapFlareFv = .text:0x803F819C; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d8WorldMap13T2DRocketGlowFv = .text:0x803F8238; // type:function size:0x9C scope:weak align:4 +__dt__Q32kh6Screen8WorldMapFv = .text:0x803F82D4; // type:function size:0x70 scope:weak align:4 +draw__Q34Game8WorldMap4BaseFR8Graphics = .text:0x803F8344; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen16khUtilColorAnmWMFv = .text:0x803F8348; // type:function size:0x90 scope:weak align:4 +__dt__Q32kh6Screen16khUtilFadePaneWMFv = .text:0x803F83D8; // type:function size:0xAC scope:weak align:4 +fadein_finish__Q32kh6Screen14khUtilFadePaneFv = .text:0x803F8484; // type:function size:0x4 scope:weak align:4 +__dt__Q42kh6Screen14khUtilFadePane10khPaneNodeFv = .text:0x803F8488; // type:function size:0x48 scope:weak align:4 +__sinit_khWorldMap_cpp = .text:0x803F84D0; // type:function size:0x1A8 scope:local align:4 +__ct__Q29JGeometry8TVec2Fv = .text:0x803F8678; // type:function size:0x4 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap13T2DRocketGlowFv = .text:0x803F867C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap11T2DMapFlareFv = .text:0x803F8684; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap10T2DShstar1Fv = .text:0x803F868C; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen14DispCaveResultFPQ34Game6Result5TNodeUlUlUlUlbP7JKRHeapb = .text:0x803F8694; // type:function size:0x7C scope:global align:4 +init__Q32kh6Screen14DispCaveResultFPQ34Game6Result5TNodeUlb = .text:0x803F8710; // type:function size:0xAC scope:global align:4 +__ct__Q32kh6Screen13ObjCaveResultFv = .text:0x803F87BC; // type:function size:0x134 scope:global align:4 +doCreate__Q32kh6Screen13ObjCaveResultFP10JKRArchive = .text:0x803F88F0; // type:function size:0xB08 scope:global align:4 +doUpdate__Q32kh6Screen13ObjCaveResultFv = .text:0x803F93F8; // type:function size:0x34C scope:global align:4 +doDraw__Q32kh6Screen13ObjCaveResultFR8Graphics = .text:0x803F9744; // type:function size:0x760 scope:global align:4 +doUpdateFadein__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9EA4; // type:function size:0x68 scope:global align:4 +doUpdateFadeinFinish__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9F0C; // type:function size:0x14 scope:global align:4 +doUpdateFadeout__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9F20; // type:function size:0x6C scope:global align:4 +statusNormal__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9F8C; // type:function size:0x1DC scope:global align:4 +statusScrollUp__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA168; // type:function size:0xF4 scope:global align:4 +statusScrollDown__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA25C; // type:function size:0xF4 scope:global align:4 +statusForceScroll__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA350; // type:function size:0x2F0 scope:global align:4 +statusDrumRoll__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA640; // type:function size:0x1C scope:global align:4 +statusAllMoney__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA65C; // type:function size:0xC0 scope:global align:4 +statusDecP__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA71C; // type:function size:0xE8 scope:global align:4 +statusLost__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA804; // type:function size:0x110 scope:global align:4 +statusEffect__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA914; // type:function size:0x1D4 scope:global align:4 +updateAnimation__Q32kh6Screen13ObjCaveResultFv = .text:0x803FAAE8; // type:function size:0x564 scope:global align:4 +setAlpha__Q32kh6Screen13ObjCaveResultFiUc = .text:0x803FB04C; // type:function size:0x78 scope:global align:4 +pikminSE__Q32kh6Screen13ObjCaveResultFv = .text:0x803FB0C4; // type:function size:0xC4 scope:global align:4 +__ct__Q32kh6Screen8LostItemFv = .text:0x803FB188; // type:function size:0x38 scope:global align:4 +__ct__Q32kh6Screen11LostItemMgrFi = .text:0x803FB1C0; // type:function size:0x80 scope:global align:4 +init__Q32kh6Screen11LostItemMgrFRCQ29JGeometry8TVec2b = .text:0x803FB240; // type:function size:0x3EC scope:global align:4 +update__Q32kh6Screen11LostItemMgrFv = .text:0x803FB62C; // type:function size:0x108 scope:global align:4 +draw__Q32kh6Screen11LostItemMgrFPQ29P2DScreen10Mgr_tuningUxPC7ResTIMGR8Graphics = .text:0x803FB734; // type:function size:0x170 scope:global align:4 +doUserCallBackFunc__Q32kh6Screen15SceneCaveResultFPQ28Resource10MgrCommand = .text:0x803FB8A4; // type:function size:0xA4 scope:global align:4 +getResName__Q32kh6Screen15SceneCaveResultCFv = .text:0x803FB948; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen15SceneCaveResultFv = .text:0x803FB950; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen15SceneCaveResultFv = .text:0x803FB958; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen15SceneCaveResultFv = .text:0x803FB960; // type:function size:0x10 scope:weak align:4 +doCreateObj__Q32kh6Screen15SceneCaveResultFP10JKRArchive = .text:0x803FB970; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen13ObjCaveResultFv = .text:0x803FB974; // type:function size:0xAC scope:weak align:4 +getSize__Q32kh6Screen14DispCaveResultFv = .text:0x803FBA20; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen14DispCaveResultFv = .text:0x803FBA28; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen14DispCaveResultFv = .text:0x803FBA30; // type:function size:0x10 scope:weak align:4 +__sinit_khCaveResult_cpp = .text:0x803FBA40; // type:function size:0x8C scope:local align:4 +@24@__dt__Q32kh6Screen13ObjCaveResultFv = .text:0x803FBACC; // type:function size:0x8 scope:weak align:4 +createScene_Koono__Q22kh6ScreenFl = .text:0x803FBAD4; // type:function size:0x1F8 scope:global align:4 +getResName__Q32kh6Screen21SceneDayEndResultTitlCFv = .text:0x803FBCCC; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultTitlFv = .text:0x803FBCD8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultTitlFv = .text:0x803FBCE0; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultTitlFv = .text:0x803FBCE8; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultTitlFP10JKRArchive = .text:0x803FBCFC; // type:function size:0x58 scope:weak align:4 +getResName__Q32kh6Screen12SceneWinLoseCFv = .text:0x803FBD54; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen12SceneWinLoseFv = .text:0x803FBD60; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen12SceneWinLoseFv = .text:0x803FBD68; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen12SceneWinLoseFv = .text:0x803FBD70; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen12SceneWinLoseFP10JKRArchive = .text:0x803FBD84; // type:function size:0x58 scope:weak align:4 +getResName__Q32kh6Screen21SceneDayEndResultIncPCFv = .text:0x803FBDDC; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultIncPFv = .text:0x803FBDE8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultIncPFv = .text:0x803FBDF0; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultIncPFv = .text:0x803FBDF8; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultIncPFP10JKRArchive = .text:0x803FBE0C; // type:function size:0x58 scope:weak align:4 +getResName__Q32kh6Screen21SceneDayEndResultItemCFv = .text:0x803FBE64; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultItemFv = .text:0x803FBE70; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultItemFv = .text:0x803FBE78; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultItemFv = .text:0x803FBE80; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultItemFP10JKRArchive = .text:0x803FBE94; // type:function size:0x58 scope:weak align:4 +create__Q26Screen9Game2DMgrFv = .text:0x803FBEEC; // type:function size:0x60 scope:global align:4 +__ct__Q26Screen9Game2DMgrFv = .text:0x803FBF4C; // type:function size:0x58 scope:global align:4 +__dt__Q26Screen9Game2DMgrFv = .text:0x803FBFA4; // type:function size:0x68 scope:global align:4 +initInCourse__Q26Screen9Game2DMgrFv = .text:0x803FC00C; // type:function size:0x20 scope:global align:4 +update__Q26Screen9Game2DMgrFv = .text:0x803FC02C; // type:function size:0x24 scope:global align:4 +draw__Q26Screen9Game2DMgrFR8Graphics = .text:0x803FC050; // type:function size:0x24 scope:global align:4 +drawIndirect__Q26Screen9Game2DMgrFR8Graphics = .text:0x803FC074; // type:function size:0x4 scope:global align:4 +setGamePad__Q26Screen9Game2DMgrFP10Controller = .text:0x803FC078; // type:function size:0x24 scope:global align:4 +setDispMember__Q26Screen9Game2DMgrFPQ32og6Screen14DispMemberBase = .text:0x803FC09C; // type:function size:0x34 scope:global align:4 +setToumeiBG__Q26Screen9Game2DMgrFv = .text:0x803FC0D0; // type:function size:0x38 scope:global align:4 +open_GameGround__Q26Screen9Game2DMgrFRQ32og6Screen16DispMemberGround = .text:0x803FC108; // type:function size:0xBC scope:global align:4 +is_GameGround__Q26Screen9Game2DMgrFv = .text:0x803FC1C4; // type:function size:0x60 scope:global align:4 +open_GameCave__Q26Screen9Game2DMgrFRQ32og6Screen14DispMemberCavei = .text:0x803FC224; // type:function size:0x1B4 scope:global align:4 +is_GameCave__Q26Screen9Game2DMgrFv = .text:0x803FC3D8; // type:function size:0x60 scope:global align:4 +open_GameVs__Q26Screen9Game2DMgrFRQ32og6Screen12DispMemberVsi = .text:0x803FC438; // type:function size:0x1A0 scope:global align:4 +check_VsStatus__Q26Screen9Game2DMgrFv = .text:0x803FC5D8; // type:function size:0x9C scope:global align:4 +open_GameChallenge2P__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberChallenge2Pi = .text:0x803FC674; // type:function size:0x334 scope:global align:4 +open_GameChallenge1P__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberChallenge1Pi = .text:0x803FC9A8; // type:function size:0x328 scope:global align:4 +open_SMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberSMenuAll = .text:0x803FCCD0; // type:function size:0xB0 scope:global align:4 +open_SMenu_Sub__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberSMenuAll = .text:0x803FCD80; // type:function size:0x1B0 scope:global align:4 +check_SMenu__Q26Screen9Game2DMgrFv = .text:0x803FCF30; // type:function size:0x128 scope:global align:4 +open_WorldMapInfoWin0__Q26Screen9Game2DMgrFRQ32og6Screen26DispMemberWorldMapInfoWin0 = .text:0x803FD058; // type:function size:0xA8 scope:global align:4 +check_WorldMapInfoWin0__Q26Screen9Game2DMgrCFv = .text:0x803FD100; // type:function size:0x7C scope:global align:4 +open_WorldMapInfoWin1__Q26Screen9Game2DMgrFRQ32og6Screen26DispMemberWorldMapInfoWin1 = .text:0x803FD17C; // type:function size:0xA8 scope:global align:4 +check_WorldMapInfoWin1__Q26Screen9Game2DMgrCFv = .text:0x803FD224; // type:function size:0x7C scope:global align:4 +open_Kantei__Q26Screen9Game2DMgrFRQ32og6Screen16DispMemberKantei = .text:0x803FD2A0; // type:function size:0x124 scope:global align:4 +close_Kantei__Q26Screen9Game2DMgrFv = .text:0x803FD3C4; // type:function size:0x84 scope:global align:4 +update_Kantei__Q26Screen9Game2DMgrFv = .text:0x803FD448; // type:function size:0x74 scope:global align:4 +open_SpecialItem__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberSpecialItem = .text:0x803FD4BC; // type:function size:0x90 scope:global align:4 +close_SpecialItem__Q26Screen9Game2DMgrFv = .text:0x803FD54C; // type:function size:0x84 scope:global align:4 +open_Floor__Q26Screen9Game2DMgrFRQ32og6Screen15DispMemberFloor = .text:0x803FD5D0; // type:function size:0x90 scope:global align:4 +close_Floor__Q26Screen9Game2DMgrFv = .text:0x803FD660; // type:function size:0x70 scope:global align:4 +set_FloorVS_LoadEnd__Q26Screen9Game2DMgrFv = .text:0x803FD6D0; // type:function size:0x5C scope:global align:4 +startCount_Floor__Q26Screen9Game2DMgrFv = .text:0x803FD72C; // type:function size:0x48 scope:global align:4 +startFadeBG_Floor__Q26Screen9Game2DMgrFv = .text:0x803FD774; // type:function size:0x48 scope:global align:4 +open_CourseName__Q26Screen9Game2DMgrFRQ32og6Screen20DispMemberCourseName = .text:0x803FD7BC; // type:function size:0x90 scope:global align:4 +startFadeBG_CourseName__Q26Screen9Game2DMgrFv = .text:0x803FD84C; // type:function size:0x48 scope:global align:4 +close_CourseName__Q26Screen9Game2DMgrFv = .text:0x803FD894; // type:function size:0x70 scope:global align:4 +startCount_CourseName__Q26Screen9Game2DMgrFv = .text:0x803FD904; // type:function size:0x48 scope:global align:4 +open_GameOver__Q26Screen9Game2DMgrFQ36Screen9Game2DMgr13GameOverTitle = .text:0x803FD94C; // type:function size:0x258 scope:global align:4 +close_GameOver__Q26Screen9Game2DMgrFv = .text:0x803FDBA4; // type:function size:0xAC scope:global align:4 +open_CaveInMenu__Q26Screen9Game2DMgrFRQ32og6Screen17DispMemberAnaDemo = .text:0x803FDC50; // type:function size:0xE0 scope:global align:4 +check_CaveInMenu__Q26Screen9Game2DMgrFv = .text:0x803FDD30; // type:function size:0x9C scope:global align:4 +open_KanketuMenu__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberKanketuMenu = .text:0x803FDDCC; // type:function size:0xE0 scope:global align:4 +open_ChallengeKanketuMenu__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberKanketuMenu = .text:0x803FDEAC; // type:function size:0xF4 scope:global align:4 +check_KanketuMenu__Q26Screen9Game2DMgrFv = .text:0x803FDFA0; // type:function size:0x9C scope:global align:4 +open_CaveMoreMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberCaveMore = .text:0x803FE03C; // type:function size:0x100 scope:global align:4 +check_CaveMoreMenu__Q26Screen9Game2DMgrFv = .text:0x803FE13C; // type:function size:0x9C scope:global align:4 +open_FinalResult__Q26Screen9Game2DMgrFRQ32kh6Screen15DispFinalResult = .text:0x803FE1D8; // type:function size:0xAC scope:global align:4 +check_FinalResult__Q26Screen9Game2DMgrCFv = .text:0x803FE284; // type:function size:0x8C scope:global align:4 +open_CaveResult__Q26Screen9Game2DMgrFRQ32kh6Screen14DispCaveResult = .text:0x803FE310; // type:function size:0xA8 scope:global align:4 +check_CaveResult__Q26Screen9Game2DMgrCFv = .text:0x803FE3B8; // type:function size:0x8C scope:global align:4 +open_DayEndResult__Q26Screen9Game2DMgrFRQ32kh6Screen16DispDayEndResult = .text:0x803FE444; // type:function size:0xAC scope:global align:4 +check_DayEndResult__Q26Screen9Game2DMgrCFv = .text:0x803FE4F0; // type:function size:0xB0 scope:global align:4 +open_PayDept__Q26Screen9Game2DMgrFRQ32kh6Screen11DispPayDept = .text:0x803FE5A0; // type:function size:0xA8 scope:global align:4 +check_PayDept__Q26Screen9Game2DMgrCFv = .text:0x803FE648; // type:function size:0x5C scope:global align:4 +open_Save__Q26Screen9Game2DMgrFRQ32og6Screen14DispMemberSave = .text:0x803FE6A4; // type:function size:0xA8 scope:global align:4 +check_Save__Q26Screen9Game2DMgrCFv = .text:0x803FE74C; // type:function size:0x5C scope:global align:4 +open_FinalMessage__Q26Screen9Game2DMgrFRQ32og6Screen22DispMemberFinalMessage = .text:0x803FE7A8; // type:function size:0xA8 scope:global align:4 +check_FinalMessage__Q26Screen9Game2DMgrCFv = .text:0x803FE850; // type:function size:0x48 scope:global align:4 +stopFinalFloorSound__Q26Screen9Game2DMgrFv = .text:0x803FE898; // type:function size:0x70 scope:global align:4 +restartFinalFloorSound__Q26Screen9Game2DMgrFv = .text:0x803FE908; // type:function size:0x70 scope:global align:4 +check_ReadyGo__Q26Screen9Game2DMgrCFv = .text:0x803FE978; // type:function size:0x90 scope:global align:4 +open_WinLoseReason__Q26Screen9Game2DMgrFRQ32kh6Screen17DispWinLoseReason = .text:0x803FEA08; // type:function size:0xA8 scope:global align:4 +check_WinLoseReason__Q26Screen9Game2DMgrCFv = .text:0x803FEAB0; // type:function size:0x68 scope:global align:4 +open_WinLose__Q26Screen9Game2DMgrFRQ32kh6Screen11DispWinLose = .text:0x803FEB18; // type:function size:0xA8 scope:global align:4 +check_WinLose__Q26Screen9Game2DMgrCFv = .text:0x803FEBC0; // type:function size:0x90 scope:global align:4 +open_TimeUp1P__Q26Screen9Game2DMgrFv = .text:0x803FEC50; // type:function size:0xD4 scope:global align:4 +open_TimeUp2P__Q26Screen9Game2DMgrFv = .text:0x803FED24; // type:function size:0xD4 scope:global align:4 +open_Contena__Q26Screen9Game2DMgrFRQ32og6Screen17DispMemberContena = .text:0x803FEDF8; // type:function size:0x158 scope:global align:4 +check_Contena__Q26Screen9Game2DMgrFv = .text:0x803FEF50; // type:function size:0xC8 scope:global align:4 +result_Contena__Q26Screen9Game2DMgrFv = .text:0x803FF018; // type:function size:0xA8 scope:global align:4 +open_UfoMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberUfoGroup = .text:0x803FF0C0; // type:function size:0x244 scope:global align:4 +check_UfoMenu__Q26Screen9Game2DMgrFv = .text:0x803FF304; // type:function size:0x130 scope:global align:4 +result_UfoMenu__Q26Screen9Game2DMgrFPiPi = .text:0x803FF434; // type:function size:0x98 scope:global align:4 +open_ZukanEnemy__Q26Screen9Game2DMgrFRQ28Morimura20DispMemberZukanEnemy = .text:0x803FF4CC; // type:function size:0x9C scope:global align:4 +open_ZukanItem__Q26Screen9Game2DMgrFRQ28Morimura19DispMemberZukanItem = .text:0x803FF568; // type:function size:0x9C scope:global align:4 +isZukanEnemy__Q26Screen9Game2DMgrFv = .text:0x803FF604; // type:function size:0x30 scope:global align:4 +isZukanItem__Q26Screen9Game2DMgrFv = .text:0x803FF634; // type:function size:0x30 scope:global align:4 +check_ZukanItemRequest__Q26Screen9Game2DMgrFRi = .text:0x803FF664; // type:function size:0x84 scope:global align:4 +check_ZukanEnemyRequest__Q26Screen9Game2DMgrFRi = .text:0x803FF6E8; // type:function size:0x84 scope:global align:4 +getZukanEnemyCurrSelectId__Q26Screen9Game2DMgrFv = .text:0x803FF76C; // type:function size:0x90 scope:global align:4 +getZukanItemCurrSelectId__Q26Screen9Game2DMgrFv = .text:0x803FF7FC; // type:function size:0x90 scope:global align:4 +requireZukanRequest__Q26Screen9Game2DMgrFv = .text:0x803FF88C; // type:function size:0xBC scope:global align:4 +requireZukanEffectOff__Q26Screen9Game2DMgrFv = .text:0x803FF948; // type:function size:0xBC scope:global align:4 +isZukanEnlargedWindow__Q26Screen9Game2DMgrFv = .text:0x803FFA04; // type:function size:0xE4 scope:global align:4 +isZukanMemoWindow__Q26Screen9Game2DMgrFv = .text:0x803FFAE8; // type:function size:0xE4 scope:global align:4 +isAppearConfirmWindow__Q26Screen9Game2DMgrFv = .text:0x803FFBCC; // type:function size:0xC4 scope:global align:4 +open_ChallengeSelect__Q26Screen9Game2DMgrFRQ28Morimura25DispMemberChallengeSelect = .text:0x803FFC90; // type:function size:0x9C scope:global align:4 +check_ChallengeSelect__Q26Screen9Game2DMgrFRiRi = .text:0x803FFD2C; // type:function size:0x6C scope:global align:4 +open_ChallengeResult__Q26Screen9Game2DMgrFRQ28Morimura25DispMemberChallengeResult = .text:0x803FFD98; // type:function size:0x9C scope:global align:4 +isEndChallengeResult__Q26Screen9Game2DMgrFv = .text:0x803FFE34; // type:function size:0x34 scope:global align:4 +open_VsSelect__Q26Screen9Game2DMgrFRQ28Morimura18DispMemberVsSelect = .text:0x803FFE68; // type:function size:0x9C scope:global align:4 +check_VsSelect__Q26Screen9Game2DMgrFRiRiRi = .text:0x803FFF04; // type:function size:0x78 scope:global align:4 +open_HighScore__Q26Screen9Game2DMgrFRQ28Morimura19DispMemberHighScore = .text:0x803FFF7C; // type:function size:0x9C scope:global align:4 +isEndHighScore__Q26Screen9Game2DMgrFv = .text:0x80400018; // type:function size:0x58 scope:global align:4 +drawKanteiMsg__Q26Screen9Game2DMgrFR8Graphics = .text:0x80400070; // type:function size:0x6C scope:global align:4 +checkDayEnd__Q26Screen9Game2DMgrCFf = .text:0x804000DC; // type:function size:0x8C scope:global align:4 +getClassSize__Q26Screen11EndSceneArgFv = .text:0x80400168; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen15SArgChallenge1PCFv = .text:0x80400170; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32og9newScreen15SArgChallenge1PFv = .text:0x80400178; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen15SArgChallenge2PCFv = .text:0x80400180; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32og9newScreen15SArgChallenge2PFv = .text:0x80400188; // type:function size:0x8 scope:weak align:4 +getSize__Q32kh6Screen11DispReadyGoFv = .text:0x80400190; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen11DispReadyGoFv = .text:0x80400198; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen11DispReadyGoFv = .text:0x804001A0; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen14DispFinalFloorFv = .text:0x804001B4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen14DispFinalFloorFv = .text:0x804001BC; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen14DispFinalFloorFv = .text:0x804001C4; // type:function size:0x14 scope:weak align:4 +createScene_Ogawa__9newScreenFl = .text:0x804001D8; // type:function size:0x3CC scope:global align:4 +createScene_Morimura__9newScreenFl = .text:0x804005A4; // type:function size:0x348 scope:global align:4 +doGetSceneBase__Q29newScreen3MgrFl = .text:0x804008EC; // type:function size:0x50 scope:global align:4 +create__Q29newScreen3MgrFv = .text:0x8040093C; // type:function size:0xAC scope:global align:4 +__dt__Q26Screen3MgrFv = .text:0x804009E8; // type:function size:0xB0 scope:weak align:4 +drawBG__Q29newScreen3MgrFR8Graphics = .text:0x80400A98; // type:function size:0x1A0 scope:global align:4 +reset__Q29newScreen3MgrFv = .text:0x80400C38; // type:function size:0x64 scope:global align:4 +__dt__Q29newScreen3MgrFv = .text:0x80400C9C; // type:function size:0xC0 scope:weak align:4 +setColorBG__Q29newScreen3MgrFRQ28JUtility6TColor = .text:0x80400D5C; // type:function size:0x24 scope:weak align:4 +setBGMode__Q29newScreen3MgrFi = .text:0x80400D80; // type:function size:0x8 scope:weak align:4 +drawWipe__Q26Screen3MgrFR8Graphics = .text:0x80400D88; // type:function size:0x4 scope:weak align:4 +__dt__Q26Screen7MgrBaseFv = .text:0x80400D8C; // type:function size:0x60 scope:weak align:4 +getResName__Q28Morimura16TPikminDownSceneCFv = .text:0x80400DEC; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura16TPikminDownSceneFP10JKRArchive = .text:0x80400DF8; // type:function size:0x80 scope:weak align:4 +isUseBackupSceneInfo__Q28Morimura16TPikminDownSceneFv = .text:0x80400E78; // type:function size:0x8 scope:weak align:4 +getSceneType__Q28Morimura16TPikminDownSceneFv = .text:0x80400E80; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura16TPikminDownSceneFv = .text:0x80400E88; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura16TPikminDownSceneFv = .text:0x80400E94; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura19TPresidentDownSceneCFv = .text:0x80400EA8; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura19TPresidentDownSceneFP10JKRArchive = .text:0x80400EB4; // type:function size:0x80 scope:weak align:4 +getSceneType__Q28Morimura19TPresidentDownSceneFv = .text:0x80400F34; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura19TPresidentDownSceneFv = .text:0x80400F3C; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura19TPresidentDownSceneFv = .text:0x80400F48; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q28Morimura18TGameOverSceneBaseFv = .text:0x80400F5C; // type:function size:0x4C scope:weak align:4 +getResName__Q28Morimura14TLujiDownSceneCFv = .text:0x80400FA8; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura14TLujiDownSceneFP10JKRArchive = .text:0x80400FB4; // type:function size:0x80 scope:weak align:4 +getSceneType__Q28Morimura14TLujiDownSceneFv = .text:0x80401034; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura14TLujiDownSceneFv = .text:0x8040103C; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura14TLujiDownSceneFv = .text:0x80401048; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura15TOrimaDownSceneCFv = .text:0x8040105C; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura15TOrimaDownSceneFP10JKRArchive = .text:0x80401068; // type:function size:0x80 scope:weak align:4 +getSceneType__Q28Morimura15TOrimaDownSceneFv = .text:0x804010E8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura15TOrimaDownSceneFv = .text:0x804010F0; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura15TOrimaDownSceneFv = .text:0x804010FC; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura14TGameOverSceneCFv = .text:0x80401110; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura14TGameOverSceneFP10JKRArchive = .text:0x8040111C; // type:function size:0x80 scope:weak align:4 +isUseBackupSceneInfo__Q28Morimura14TGameOverSceneFv = .text:0x8040119C; // type:function size:0x8 scope:weak align:4 +getSceneType__Q28Morimura14TGameOverSceneFv = .text:0x804011A4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura14TGameOverSceneFv = .text:0x804011AC; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura14TGameOverSceneFv = .text:0x804011B8; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura13THurryUpSceneCFv = .text:0x804011CC; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura13THurryUpSceneFP10JKRArchive = .text:0x804011D8; // type:function size:0x68 scope:weak align:4 +getSceneType__Q28Morimura13THurryUpSceneFv = .text:0x80401240; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura13THurryUpSceneFv = .text:0x80401248; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura13THurryUpSceneFv = .text:0x80401254; // type:function size:0x14 scope:weak align:4 +doUpdateFadein__Q32kh6Screen10ObjReadyGoFv = .text:0x80401268; // type:function size:0xA4 scope:global align:4 +doCreate__Q32kh6Screen10ObjReadyGoFP10JKRArchive = .text:0x8040130C; // type:function size:0x1D4 scope:global align:4 +doUpdate__Q32kh6Screen10ObjReadyGoFv = .text:0x804014E0; // type:function size:0x20 scope:global align:4 +doDraw__Q32kh6Screen10ObjReadyGoFR8Graphics = .text:0x80401500; // type:function size:0xDC scope:global align:4 +doUpdateFadeout__Q32kh6Screen10ObjReadyGoFv = .text:0x804015DC; // type:function size:0x18C scope:global align:4 +updateAnimation__Q32kh6Screen10ObjReadyGoFv = .text:0x80401768; // type:function size:0x384 scope:global align:4 +doConfirmSetScene__Q32kh6Screen12SceneReadyGoFRQ26Screen11SetSceneArg = .text:0x80401AEC; // type:function size:0x40 scope:global align:4 +getResName__Q32kh6Screen12SceneReadyGoCFv = .text:0x80401B2C; // type:function size:0xC scope:weak align:4 +isUseBackupSceneInfo__Q32kh6Screen12SceneReadyGoFv = .text:0x80401B38; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen12SceneReadyGoFv = .text:0x80401B40; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen12SceneReadyGoFv = .text:0x80401B48; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen12SceneReadyGoFv = .text:0x80401B50; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen12SceneReadyGoFP10JKRArchive = .text:0x80401B64; // type:function size:0xC4 scope:weak align:4 +__dt__Q32kh6Screen10ObjReadyGoFv = .text:0x80401C28; // type:function size:0xAC scope:weak align:4 +__sinit_khReadyGo_cpp = .text:0x80401CD4; // type:function size:0x5C scope:local align:4 +@24@__dt__Q32kh6Screen10ObjReadyGoFv = .text:0x80401D30; // type:function size:0x8 scope:weak align:4 +doCreate__Q32kh6Screen13ObjFinalFloorFP10JKRArchive = .text:0x80401D38; // type:function size:0x21C scope:global align:4 +doUpdate__Q32kh6Screen13ObjFinalFloorFv = .text:0x80401F54; // type:function size:0x20 scope:global align:4 +doDraw__Q32kh6Screen13ObjFinalFloorFR8Graphics = .text:0x80401F74; // type:function size:0xDC scope:global align:4 +doUpdateFadein__Q32kh6Screen13ObjFinalFloorFv = .text:0x80402050; // type:function size:0x38 scope:global align:4 +doUpdateFadeout__Q32kh6Screen13ObjFinalFloorFv = .text:0x80402088; // type:function size:0x1F8 scope:global align:4 +doUpdateFadeoutFinish__Q32kh6Screen13ObjFinalFloorFv = .text:0x80402280; // type:function size:0x34 scope:global align:4 +updateAnimation__Q32kh6Screen13ObjFinalFloorFv = .text:0x804022B4; // type:function size:0x1C8 scope:global align:4 +stopSound__Q32kh6Screen13ObjFinalFloorFv = .text:0x8040247C; // type:function size:0x40 scope:global align:4 +restartSound__Q32kh6Screen13ObjFinalFloorFv = .text:0x804024BC; // type:function size:0x15C scope:global align:4 +doConfirmSetScene__Q32kh6Screen15SceneFinalFloorFRQ26Screen11SetSceneArg = .text:0x80402618; // type:function size:0x40 scope:global align:4 +getResName__Q32kh6Screen15SceneFinalFloorCFv = .text:0x80402658; // type:function size:0xC scope:weak align:4 +isUseBackupSceneInfo__Q32kh6Screen15SceneFinalFloorFv = .text:0x80402664; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen15SceneFinalFloorFv = .text:0x8040266C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen15SceneFinalFloorFv = .text:0x80402674; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen15SceneFinalFloorFv = .text:0x8040267C; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen15SceneFinalFloorFP10JKRArchive = .text:0x80402690; // type:function size:0xBC scope:weak align:4 +__dt__Q32kh6Screen13ObjFinalFloorFv = .text:0x8040274C; // type:function size:0xAC scope:weak align:4 +__sinit_khFinalFloor_cpp = .text:0x804027F8; // type:function size:0x4C scope:local align:4 +@24@__dt__Q32kh6Screen13ObjFinalFloorFv = .text:0x80402844; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen20DispDayEndResultItemFPQ34Game6Result5TNodeiib = .text:0x8040284C; // type:function size:0x8C scope:global align:4 +__ct__Q32kh6Screen4IncPFv = .text:0x804028D8; // type:function size:0x294 scope:global align:4 +__ct__Q32kh6Screen20DispDayEndResultIncPFPCQ32kh6Screen4IncP = .text:0x80402B6C; // type:function size:0x30 scope:global align:4 +__ct__Q32kh6Screen20DispDayEndResultMailFP7JKRHeapQ32kh6Screen12MailCategory = .text:0x80402B9C; // type:function size:0x50 scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultBaseFP10JKRArchive = .text:0x80402BEC; // type:function size:0xFC scope:global align:4 +doStart__Q32kh6Screen19ObjDayEndResultBaseFPCQ26Screen13StartSceneArg = .text:0x80402CE8; // type:function size:0x98 scope:global align:4 +doUpdateFinish__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402D80; // type:function size:0x44 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402DC4; // type:function size:0xF4 scope:global align:4 +doUpdateFadeinFinish__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402EB8; // type:function size:0x10 scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402EC8; // type:function size:0xFC scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultBaseFR8Graphics = .text:0x80402FC4; // type:function size:0x118 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x804030DC; // type:function size:0x280 scope:global align:4 +setFadeinFrm__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x8040335C; // type:function size:0x98 scope:global align:4 +setFadeoutFrm__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x804033F4; // type:function size:0x98 scope:global align:4 +__ct__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x8040348C; // type:function size:0x144 scope:global align:4 +__dt__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x804035D0; // type:function size:0xAC scope:weak align:4 +doCreate__Q32kh6Screen19ObjDayEndResultItemFP10JKRArchive = .text:0x8040367C; // type:function size:0x7AC scope:global align:4 +doStart__Q32kh6Screen19ObjDayEndResultItemFPCQ26Screen13StartSceneArg = .text:0x80403E28; // type:function size:0x108 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80403F30; // type:function size:0x11C scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x8040404C; // type:function size:0x2CC scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404318; // type:function size:0x124 scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultItemFR8Graphics = .text:0x8040443C; // type:function size:0x6C4 scope:global align:4 +statusNormal__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404B00; // type:function size:0x1D4 scope:global align:4 +statusScrollUp__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404CD4; // type:function size:0xF4 scope:global align:4 +statusScrollDown__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404DC8; // type:function size:0xF4 scope:global align:4 +statusForceScroll__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404EBC; // type:function size:0x1D4 scope:global align:4 +statusDrumRoll__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80405090; // type:function size:0x1C scope:global align:4 +statusTotalValue__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x804050AC; // type:function size:0xC8 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80405174; // type:function size:0x3C8 scope:global align:4 +__ct__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x8040553C; // type:function size:0x19C scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultIncPFP10JKRArchive = .text:0x804056D8; // type:function size:0x1374 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80406A4C; // type:function size:0x17C scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80406BC8; // type:function size:0x47C scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407044; // type:function size:0x184 scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultIncPFR8Graphics = .text:0x804071C8; // type:function size:0x148 scope:global align:4 +statusNormal__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407310; // type:function size:0x50 scope:global align:4 +statusFadeout__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407360; // type:function size:0x100 scope:global align:4 +statusDecP__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407460; // type:function size:0x50 scope:global align:4 +statusFadein__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x804074B0; // type:function size:0x64 scope:global align:4 +statusSlot__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407514; // type:function size:0x140 scope:global align:4 +statusDecPSlot__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407654; // type:function size:0x19C scope:global align:4 +callIncPSE__Q32kh6Screen19ObjDayEndResultIncPFi = .text:0x804077F0; // type:function size:0x88 scope:global align:4 +callDecPSE__Q32kh6Screen19ObjDayEndResultIncPFi = .text:0x80407878; // type:function size:0x4C scope:global align:4 +effectCommon__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x804078C4; // type:function size:0x188 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407A4C; // type:function size:0x36C scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultMailFP10JKRArchive = .text:0x80407DB8; // type:function size:0x8B4 scope:global align:4 +__ct__Q42kh6Screen19ObjDayEndResultMail11MailIconAnmFv = .text:0x8040866C; // type:function size:0x10 scope:weak align:4 +doStart__Q32kh6Screen19ObjDayEndResultMailFPCQ26Screen13StartSceneArg = .text:0x8040867C; // type:function size:0x170 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x804087EC; // type:function size:0x1B8 scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x804089A4; // type:function size:0x280 scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80408C24; // type:function size:0x1B4 scope:global align:4 +statusNormal__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80408DD8; // type:function size:0x214 scope:global align:4 +statusFadeoutToLeft__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80408FEC; // type:function size:0xA8 scope:global align:4 +statusFadeinFromLeft__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409094; // type:function size:0x38 scope:global align:4 +statusFadeoutToRight__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x804090CC; // type:function size:0xB8 scope:global align:4 +statusFadeinFromRight__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409184; // type:function size:0x38 scope:global align:4 +statusWaitOpen__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x804091BC; // type:function size:0x12C scope:global align:4 +statusOpenW__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x804092E8; // type:function size:0xD4 scope:global align:4 +statusOpenH__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x804093BC; // type:function size:0xCC scope:global align:4 +changeMail__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409488; // type:function size:0x480 scope:global align:4 +changeAlpha__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409908; // type:function size:0x64 scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultMailFR8Graphics = .text:0x8040996C; // type:function size:0x1C4 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409B30; // type:function size:0x288 scope:global align:4 +setCallBackMessage__Q32kh6Screen19ObjDayEndResultMailFPQ29P2DScreen3MgrP7J2DPane = .text:0x80409DB8; // type:function size:0x3BC scope:global align:4 +setCallBackMessage__Q32kh6Screen19ObjDayEndResultMailFPQ29P2DScreen3Mgr = .text:0x8040A174; // type:function size:0x24 scope:global align:4 +skipped__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040A198; // type:function size:0x5C scope:global align:4 +__ct__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A1F4; // type:function size:0x68 scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultTitlFP10JKRArchive = .text:0x8040A25C; // type:function size:0x1BC scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A418; // type:function size:0x78 scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A490; // type:function size:0x64 scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A4F4; // type:function size:0x74 scope:global align:4 +doUpdateFadeoutFinish__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A568; // type:function size:0xCC scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultTitlFR8Graphics = .text:0x8040A634; // type:function size:0x144 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A778; // type:function size:0xE0 scope:global align:4 +__ct__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040A858; // type:function size:0x48 scope:global align:4 +doUserCallBackFunc__Q32kh6Screen21SceneDayEndResultMailFPQ28Resource10MgrCommand = .text:0x8040A8A0; // type:function size:0x58C scope:global align:4 +getResName__Q32kh6Screen21SceneDayEndResultMailCFv = .text:0x8040AE2C; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040AE34; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040AE3C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040AE44; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultMailFP10JKRArchive = .text:0x8040AE58; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040AE5C; // type:function size:0xAC scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x8040AF08; // type:function size:0xC4 scope:weak align:4 +getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040AFCC; // type:function size:0x8 scope:weak align:4 +getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040AFD4; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040AFDC; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040AFE4; // type:function size:0x8 scope:weak align:4 +getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040AFEC; // type:function size:0x8 scope:weak align:4 +getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040AFF4; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040AFFC; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B004; // type:function size:0x8 scope:weak align:4 +getStarWTagNum__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B00C; // type:function size:0x8 scope:weak align:4 +getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B014; // type:function size:0x8 scope:weak align:4 +getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B01C; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultItemFv = .text:0x8040B024; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen20SArgDayEndResultItemCFv = .text:0x8040B02C; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultMailFv = .text:0x8040B034; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen20SArgDayEndResultMailCFv = .text:0x8040B03C; // type:function size:0x8 scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x8040B044; // type:function size:0xC4 scope:weak align:4 +getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B108; // type:function size:0x8 scope:weak align:4 +getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B110; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B118; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B120; // type:function size:0x8 scope:weak align:4 +getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B128; // type:function size:0x8 scope:weak align:4 +getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B130; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B138; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B140; // type:function size:0x8 scope:weak align:4 +getStarWTagNum__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B148; // type:function size:0x8 scope:weak align:4 +getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B150; // type:function size:0x8 scope:weak align:4 +getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B158; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultIncPFv = .text:0x8040B160; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen20SArgDayEndResultIncPCFv = .text:0x8040B168; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultBaseFv = .text:0x8040B170; // type:function size:0x8 scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x8040B178; // type:function size:0xC4 scope:weak align:4 +getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B23C; // type:function size:0x8 scope:weak align:4 +getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B244; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B24C; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B254; // type:function size:0x8 scope:weak align:4 +getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B25C; // type:function size:0x8 scope:weak align:4 +getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B264; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B26C; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B274; // type:function size:0x8 scope:weak align:4 +getStarWTagNum__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B27C; // type:function size:0x8 scope:weak align:4 +getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B284; // type:function size:0x8 scope:weak align:4 +getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B28C; // type:function size:0x8 scope:weak align:4 +getSize__Q32kh6Screen20DispDayEndResultMailFv = .text:0x8040B294; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultMailFv = .text:0x8040B29C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultMailFv = .text:0x8040B2A4; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen20DispDayEndResultIncPFv = .text:0x8040B2B8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultIncPFv = .text:0x8040B2C0; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultIncPFv = .text:0x8040B2C8; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen20DispDayEndResultItemFv = .text:0x8040B2DC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultItemFv = .text:0x8040B2E4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultItemFv = .text:0x8040B2EC; // type:function size:0x14 scope:weak align:4 +__sinit_khDayEndResult_cpp = .text:0x8040B300; // type:function size:0xCC scope:local align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x8040B3CC; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x8040B3D4; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x8040B3DC; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x8040B3E4; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040B3EC; // type:function size:0x8 scope:weak align:4 +getSerialTagName__Q22kh6ScreenFUxi = .text:0x8040B3F4; // type:function size:0x4C scope:global align:4 +setTex__Q22kh6ScreenFP9J2DScreenUxPC7ResTIMG = .text:0x8040B440; // type:function size:0x50 scope:global align:4 +setTex__Q22kh6ScreenFP9J2DScreenUxPCc = .text:0x8040B490; // type:function size:0x50 scope:global align:4 +setMatAnm__Q22kh6ScreenFP7J2DPaneP10J2DAnmBase = .text:0x8040B4E0; // type:function size:0x210 scope:global align:4 +setInfAlpha__Q22kh6ScreenFP7J2DPane = .text:0x8040B6F0; // type:function size:0x21C scope:global align:4 +getPaneCenterX__Q22kh6ScreenFP7J2DPane = .text:0x8040B90C; // type:function size:0xEC scope:global align:4 +getPaneCenterY__Q22kh6ScreenFP7J2DPane = .text:0x8040B9F8; // type:function size:0xEC scope:global align:4 +create__Q32kh6Screen14khUtilFadePaneFPQ29P2DScreen3MgrUxUc = .text:0x8040BAE4; // type:function size:0xA4 scope:global align:4 +__ct__Q32kh6Screen14khUtilFadePaneFUc = .text:0x8040BB88; // type:function size:0x88 scope:global align:4 +update__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BC10; // type:function size:0x104 scope:global align:4 +fadeout_finish__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BD14; // type:function size:0x4 scope:weak align:4 +add__Q32kh6Screen14khUtilFadePaneFP7J2DPane = .text:0x8040BD18; // type:function size:0xB8 scope:global align:4 +fadein__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BDD0; // type:function size:0x20 scope:global align:4 +fadeout__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BDF0; // type:function size:0x20 scope:global align:4 +set_init_alpha__Q32kh6Screen14khUtilFadePaneFUc = .text:0x8040BE10; // type:function size:0x60 scope:global align:4 +__ct__Q32kh6Screen14khUtilColorAnmFPQ29P2DScreen3MgrUxii = .text:0x8040BE70; // type:function size:0x158 scope:global align:4 +update__Q32kh6Screen14khUtilColorAnmFv = .text:0x8040BFC8; // type:function size:0x21C scope:global align:4 +do_update__Q32kh6Screen14khUtilColorAnmFv = .text:0x8040C1E4; // type:function size:0x4 scope:weak align:4 +__ct__Q32kh6Screen15DispFinalResultFPQ32kh6Screen15TotalResultDataQ42kh6Screen15DispFinalResult10ResultTypeP7JKRHeap = .text:0x8040C1E8; // type:function size:0x34 scope:global align:4 +__ct__Q32kh6Screen14ObjFinalResultFv = .text:0x8040C21C; // type:function size:0x1A0 scope:global align:4 +doCreate__Q32kh6Screen14ObjFinalResultFP10JKRArchive = .text:0x8040C3BC; // type:function size:0xB8C scope:global align:4 +doUpdate__Q32kh6Screen14ObjFinalResultFv = .text:0x8040CF48; // type:function size:0x1BC scope:global align:4 +doUpdateFadein__Q32kh6Screen14ObjFinalResultFv = .text:0x8040D104; // type:function size:0x7C scope:global align:4 +doUpdateFadeout__Q32kh6Screen14ObjFinalResultFv = .text:0x8040D180; // type:function size:0x6C scope:global align:4 +doDraw__Q32kh6Screen14ObjFinalResultFR8Graphics = .text:0x8040D1EC; // type:function size:0x3F0 scope:global align:4 +updateCommon__Q32kh6Screen14ObjFinalResultFv = .text:0x8040D5DC; // type:function size:0x5F4 scope:global align:4 +statusNormal__Q32kh6Screen14ObjFinalResultFv = .text:0x8040DBD0; // type:function size:0x3A4 scope:global align:4 +statusScrollUp__Q32kh6Screen14ObjFinalResultFv = .text:0x8040DF74; // type:function size:0x8C scope:global align:4 +statusScrollDown__Q32kh6Screen14ObjFinalResultFv = .text:0x8040E000; // type:function size:0x90 scope:global align:4 +statusForceScroll__Q32kh6Screen14ObjFinalResultFv = .text:0x8040E090; // type:function size:0x1B8 scope:global align:4 +drawReplace__Q32kh6Screen14ObjFinalResultFR8Graphicsi = .text:0x8040E248; // type:function size:0x8C0 scope:global align:4 +getClr__Q32kh6Screen14ObjFinalResultFRCQ28JUtility6TColorRCQ28JUtility6TColorf = .text:0x8040EB08; // type:function size:0x128 scope:global align:4 +doUserCallBackFunc__Q32kh6Screen16SceneFinalResultFPQ28Resource10MgrCommand = .text:0x8040EC30; // type:function size:0xD8 scope:global align:4 +createDispMember__Q32kh6Screen16SceneFinalResultFPCiPCiPPQ24Game9Highscore = .text:0x8040ED08; // type:function size:0x2E4 scope:global align:4 +getResName__Q32kh6Screen16SceneFinalResultCFv = .text:0x8040EFEC; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen16SceneFinalResultFv = .text:0x8040EFF4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen16SceneFinalResultFv = .text:0x8040EFFC; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen16SceneFinalResultFv = .text:0x8040F004; // type:function size:0x10 scope:weak align:4 +doCreateObj__Q32kh6Screen16SceneFinalResultFP10JKRArchive = .text:0x8040F014; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen14ObjFinalResultFv = .text:0x8040F018; // type:function size:0xAC scope:weak align:4 +getSize__Q32kh6Screen15DispFinalResultFv = .text:0x8040F0C4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen15DispFinalResultFv = .text:0x8040F0CC; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen15DispFinalResultFv = .text:0x8040F0D4; // type:function size:0x10 scope:weak align:4 +__sinit_khFinalResult_cpp = .text:0x8040F0E4; // type:function size:0xF4 scope:local align:4 +@24@__dt__Q32kh6Screen14ObjFinalResultFv = .text:0x8040F1D8; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen11DispPayDeptFQ42kh6Screen11DispPayDept11PayDeptTypei = .text:0x8040F1E0; // type:function size:0x2C scope:global align:4 +doCreate__Q32kh6Screen10ObjPayDeptFP10JKRArchive = .text:0x8040F20C; // type:function size:0x25C scope:global align:4 +doUpdateFadein__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F468; // type:function size:0xCC scope:global align:4 +doUpdate__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F534; // type:function size:0x20 scope:global align:4 +doUpdateFadeoutFinish__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F554; // type:function size:0xC0 scope:global align:4 +doDraw__Q32kh6Screen10ObjPayDeptFR8Graphics = .text:0x8040F614; // type:function size:0x64 scope:global align:4 +updateAnimation__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F678; // type:function size:0xDC scope:global align:4 +searchNumPane__Q32kh6Screen10ObjPayDeptFP7J2DPaneii = .text:0x8040F754; // type:function size:0x31C scope:global align:4 +doUserCallBackFunc__Q32kh6Screen12ScenePayDeptFPQ28Resource10MgrCommand = .text:0x8040FA70; // type:function size:0x15C scope:global align:4 +getResName__Q32kh6Screen12ScenePayDeptCFv = .text:0x8040FBCC; // type:function size:0x8 scope:weak align:4 +isUseBackupSceneInfo__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FBD4; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FBDC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FBE4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FBEC; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen12ScenePayDeptFP10JKRArchive = .text:0x8040FC00; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen10ObjPayDeptFv = .text:0x8040FC04; // type:function size:0xAC scope:weak align:4 +getSize__Q32kh6Screen11DispPayDeptFv = .text:0x8040FCB0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen11DispPayDeptFv = .text:0x8040FCB8; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen11DispPayDeptFv = .text:0x8040FCC0; // type:function size:0x14 scope:weak align:4 +__sinit_khPayDept_cpp = .text:0x8040FCD4; // type:function size:0xC scope:local align:4 +@24@__dt__Q32kh6Screen10ObjPayDeptFv = .text:0x8040FCE0; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen10ObjWinLoseFv = .text:0x8040FCE8; // type:function size:0xB8 scope:global align:4 +doCreate__Q32kh6Screen10ObjWinLoseFP10JKRArchive = .text:0x8040FDA0; // type:function size:0x418 scope:global align:4 +doUpdate__Q32kh6Screen10ObjWinLoseFv = .text:0x804101B8; // type:function size:0x20 scope:global align:4 +doDraw__Q32kh6Screen10ObjWinLoseFR8Graphics = .text:0x804101D8; // type:function size:0xB8 scope:global align:4 +updateAnimation__Q32kh6Screen10ObjWinLoseFv = .text:0x80410290; // type:function size:0x38C scope:global align:4 +__dt__Q32kh6Screen10ObjWinLoseFv = .text:0x8041061C; // type:function size:0xAC scope:weak align:4 +__sinit_khWinLose_cpp = .text:0x804106C8; // type:function size:0x44 scope:local align:4 +@24@__dt__Q32kh6Screen10ObjWinLoseFv = .text:0x8041070C; // type:function size:0x8 scope:weak align:4 +doCreate__Q32kh6Screen16ObjWinLoseReasonFP10JKRArchive = .text:0x80410714; // type:function size:0xCC scope:global align:4 +doUpdate__Q32kh6Screen16ObjWinLoseReasonFv = .text:0x804107E0; // type:function size:0x8 scope:global align:4 +doDraw__Q32kh6Screen16ObjWinLoseReasonFR8Graphics = .text:0x804107E8; // type:function size:0x4 scope:global align:4 +__ct__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x804107EC; // type:function size:0x60 scope:global align:4 +doCreateObj__Q32kh6Screen18SceneWinLoseReasonFP10JKRArchive = .text:0x8041084C; // type:function size:0x588 scope:global align:4 +doUpdateActive__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410DD4; // type:function size:0xCC scope:global align:4 +doEnd__Q32kh6Screen18SceneWinLoseReasonFPQ26Screen11EndSceneArg = .text:0x80410EA0; // type:function size:0x20 scope:global align:4 +getResName__Q32kh6Screen18SceneWinLoseReasonCFv = .text:0x80410EC0; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410ECC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410ED4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410EDC; // type:function size:0x10 scope:weak align:4 +__dt__Q32kh6Screen16ObjWinLoseReasonFv = .text:0x80410EEC; // type:function size:0xAC scope:weak align:4 +__sinit_khWinLoseReason_cpp = .text:0x80410F98; // type:function size:0x40 scope:local align:4 +@24@__dt__Q32kh6Screen16ObjWinLoseReasonFv = .text:0x80410FD8; // type:function size:0x8 scope:weak align:4 +clear__Q32kh6Screen12MailSaveDataFv = .text:0x80410FE0; // type:function size:0x9C scope:global align:4 +read__Q32kh6Screen12MailSaveDataFR6Stream = .text:0x8041107C; // type:function size:0x88 scope:global align:4 +write__Q32kh6Screen12MailSaveDataFR6Stream = .text:0x80411104; // type:function size:0x88 scope:global align:4 +set_history__Q32kh6Screen12MailSaveDataFSc = .text:0x8041118C; // type:function size:0x28 scope:global align:4 +main = .text:0x804111B4; // type:function size:0x50 scope:global align:4 +init__4NodeFv = .text:0x80411204; // type:function size:0x4 scope:global align:4 +displayInfo__4NodeFi = .text:0x80411208; // type:function size:0xB0 scope:global align:4 +update__4NodeFv = .text:0x804112B8; // type:function size:0x64 scope:global align:4 +draw__4NodeFR8Graphics = .text:0x8041131C; // type:function size:0x74 scope:global align:4 +__ct__5CNodeFv = .text:0x80411390; // type:function size:0x30 scope:global align:4 +addHead__5CNodeFP5CNode = .text:0x804113C0; // type:function size:0x48 scope:global align:4 +add__5CNodeFP5CNode = .text:0x80411408; // type:function size:0xB0 scope:global align:4 +calcNextCount__5CNodeFv = .text:0x804114B8; // type:function size:0x20 scope:global align:4 +concat__5CNodeFP5CNode = .text:0x804114D8; // type:function size:0xB0 scope:global align:4 +__dt__5CNodeFv = .text:0x80411588; // type:function size:0x48 scope:global align:4 +del__5CNodeFv = .text:0x804115D0; // type:function size:0x98 scope:global align:4 +getChildCount__5CNodeFv = .text:0x80411668; // type:function size:0x34 scope:global align:4 +getChildAt__5CNodeFi = .text:0x8041169C; // type:function size:0x94 scope:global align:4 +pikmin2_sinf__Ff = .text:0x80411730; // type:function size:0x68 scope:global align:4 +pikmin2_cosf__Ff = .text:0x80411798; // type:function size:0x44 scope:global align:4 +pikmin2_atan2f__Fff = .text:0x804117DC; // type:function size:0x28 scope:global align:4 +pikmin2_sqrtf__Ff = .text:0x80411804; // type:function size:0x18 scope:global align:4 +qdist2__Fffff = .text:0x8041181C; // type:function size:0x3C scope:global align:4 +CRSplineTangent__FfP10Vector3 = .text:0x80411858; // type:function size:0xF4 scope:global align:4 +read__8BoundBoxFR6Stream = .text:0x8041194C; // type:function size:0x44 scope:global align:4 +read__10Vector3FR6Stream = .text:0x80411990; // type:function size:0x58 scope:global align:4 +write__10Vector3FR6Stream = .text:0x804119E8; // type:function size:0x58 scope:global align:4 +write__5PlaneFR6Stream = .text:0x80411A40; // type:function size:0x64 scope:global align:4 +read__5PlaneFR6Stream = .text:0x80411AA4; // type:function size:0x64 scope:global align:4 +write__6Color4FR6Stream = .text:0x80411B08; // type:function size:0x64 scope:global align:4 +read__6Color4FR6Stream = .text:0x80411B6C; // type:function size:0x64 scope:global align:4 +roundAng__Ff = .text:0x80411BD0; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x80411BFC; // type:function size:0x74 scope:global align:4 +makeIdentity__8Matrix3fFv = .text:0x80411C70; // type:function size:0x30 scope:global align:4 +calcEigenMatrix__8Matrix3fFR8Matrix3fR8Matrix3f = .text:0x80411CA0; // type:function size:0x728 scope:global align:4 +__ct__4QuatFv = .text:0x804123C8; // type:function size:0x18 scope:global align:4 +__ct__4QuatFf10Vector3 = .text:0x804123E0; // type:function size:0x20 scope:global align:4 +__ml__FR4QuatR4Quat = .text:0x80412400; // type:function size:0xFC scope:weak align:4 +set__4QuatFR10Vector3 = .text:0x804124FC; // type:function size:0x264 scope:global align:4 +__ct__4QuatFR4Quat = .text:0x80412760; // type:function size:0x24 scope:global align:4 +set__4QuatFffff = .text:0x80412784; // type:function size:0x14 scope:global align:4 +inverse__4QuatFv = .text:0x80412798; // type:function size:0xB4 scope:global align:4 +normalise__4QuatFv = .text:0x8041284C; // type:function size:0xA4 scope:global align:4 +slerp__4QuatFR4QuatfR4Quat = .text:0x804128F0; // type:function size:0x348 scope:global align:4 +fromMatrixf__4QuatFR7Matrixf = .text:0x80412C38; // type:function size:0x33C scope:global align:4 +makeBoundSphere__8BoundBoxFRQ23Sys6Sphere = .text:0x80412F74; // type:function size:0xC8 scope:global align:4 +transform__8BoundBoxFR7Matrixf = .text:0x8041303C; // type:function size:0x1EC scope:global align:4 +__sinit_sysMath_cpp = .text:0x80413228; // type:function size:0x2C scope:local align:4 +isEof__4ID32Fv = .text:0x80413254; // type:function size:0x1C scope:global align:4 +__ct__4ID32Fv = .text:0x80413270; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x804132A8; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x804132D8; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x804132FC; // type:function size:0xB8 scope:global align:4 +updateID__4ID32Fv = .text:0x804133B4; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x804133D8; // type:function size:0x2C scope:global align:4 +__as__4ID32FUl = .text:0x80413404; // type:function size:0x30 scope:global align:4 +__eq__4ID32FUl = .text:0x80413434; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x80413448; // type:function size:0x18 scope:global align:4 +write__4ID32FR6Stream = .text:0x80413460; // type:function size:0x90 scope:global align:4 +read__4ID32FR6Stream = .text:0x804134F0; // type:function size:0xEC scope:global align:4 +print__4ID32Fv = .text:0x804135DC; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x804135E0; // type:function size:0x38 scope:global align:4 +__sinit_id32_cpp = .text:0x80413618; // type:function size:0x40 scope:local align:4 +__ct__8BaseParmFP10ParametersUlPc = .text:0x80413658; // type:function size:0xAC scope:global align:4 +write__10ParametersFR6Stream = .text:0x80413704; // type:function size:0xEC scope:global align:4 +write__8BaseParmFR6Stream = .text:0x804137F0; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR6Stream = .text:0x804137F4; // type:function size:0xC8 scope:global align:4 +read__8BaseParmFR6Stream = .text:0x804138BC; // type:function size:0x4 scope:weak align:4 +findParm__10ParametersFUl = .text:0x804138C0; // type:function size:0x64 scope:global align:4 +read__7ParmFR6Stream = .text:0x80413924; // type:function size:0x34 scope:global align:4 +write__7ParmFR6Stream = .text:0x80413958; // type:function size:0x2C scope:global align:4 +read__8ParmFR6Stream = .text:0x80413984; // type:function size:0x34 scope:global align:4 +write__8ParmFR6Stream = .text:0x804139B8; // type:function size:0x2C scope:global align:4 +read__7ParmFR6Stream = .text:0x804139E4; // type:function size:0x44 scope:global align:4 +write__7ParmFR6Stream = .text:0x80413A28; // type:function size:0x34 scope:global align:4 +read__7ParmFR6Stream = .text:0x80413A5C; // type:function size:0x34 scope:global align:4 +write__7ParmFR6Stream = .text:0x80413A90; // type:function size:0x28 scope:global align:4 +__ct__10ParmStringFP10ParametersPciUlPc = .text:0x80413AB8; // type:function size:0x1B0 scope:global align:4 +write__10ParmStringFR6Stream = .text:0x80413C68; // type:function size:0x2C scope:global align:4 +read__10ParmStringFR6Stream = .text:0x80413C94; // type:function size:0x30 scope:global align:4 +__ct__8ParmEnumFP10ParametersPPcUlilPc = .text:0x80413CC4; // type:function size:0xB8 scope:global align:4 +write__8ParmEnumFR6Stream = .text:0x80413D7C; // type:function size:0x2C scope:global align:4 +read__8ParmEnumFR6Stream = .text:0x80413DA8; // type:function size:0x34 scope:global align:4 +size__8ParmEnumFv = .text:0x80413DDC; // type:function size:0x8 scope:weak align:4 +size__10ParmStringFv = .text:0x80413DE4; // type:function size:0x8 scope:weak align:4 +eof__6StreamFv = .text:0x80413DEC; // type:function size:0x8 scope:weak align:4 +getNextToken__6StreamFv = .text:0x80413DF4; // type:function size:0x228 scope:global align:4 +textBeginGroup__6StreamFPc = .text:0x8041401C; // type:function size:0x84 scope:global align:4 +textEndGroup__6StreamFv = .text:0x804140A0; // type:function size:0x58 scope:global align:4 +printf__6StreamFPce = .text:0x804140F8; // type:function size:0xE4 scope:global align:4 +textWriteText__6StreamFPce = .text:0x804141DC; // type:function size:0xEC scope:global align:4 +skipReading__6StreamFUl = .text:0x804142C8; // type:function size:0xC4 scope:global align:4 +skipReadingText__6StreamFv = .text:0x8041438C; // type:function size:0xA8 scope:global align:4 +textWriteTab__6StreamFi = .text:0x80414434; // type:function size:0x68 scope:global align:4 +readByte__6StreamFv = .text:0x8041449C; // type:function size:0x278 scope:global align:4 +_readByte__6StreamFv = .text:0x80414714; // type:function size:0x50 scope:global align:4 +readShort__6StreamFv = .text:0x80414764; // type:function size:0x32C scope:global align:4 +readInt__6StreamFv = .text:0x80414A90; // type:function size:0x31C scope:global align:4 +readFloat__6StreamFv = .text:0x80414DAC; // type:function size:0x328 scope:global align:4 +readString__6StreamFPci = .text:0x804150D4; // type:function size:0x4F8 scope:global align:4 +writeString__6StreamFPc = .text:0x804155CC; // type:function size:0xA4 scope:global align:4 +writeByte__6StreamFUc = .text:0x80415670; // type:function size:0x70 scope:global align:4 +_writeByte__6StreamFUc = .text:0x804156E0; // type:function size:0x50 scope:global align:4 +writeShort__6StreamFs = .text:0x80415730; // type:function size:0x90 scope:global align:4 +writeInt__6StreamFi = .text:0x804157C0; // type:function size:0x88 scope:global align:4 +writeFloat__6StreamFf = .text:0x80415848; // type:function size:0xB0 scope:global align:4 +__ct__9RamStreamFPvi = .text:0x804158F8; // type:function size:0x50 scope:global align:4 +read__9RamStreamFPvi = .text:0x80415948; // type:function size:0x94 scope:global align:4 +write__9RamStreamFPvi = .text:0x804159DC; // type:function size:0x94 scope:global align:4 +eof__9RamStreamFv = .text:0x80415A70; // type:function size:0x2C scope:global align:4 +getPending__6StreamFv = .text:0x80415A9C; // type:function size:0x8 scope:weak align:4 +getAxisVector__Q23Sys4TubeFR10Vector3 = .text:0x80415AA4; // type:function size:0xB4 scope:global align:4 +collide__Q23Sys4TubeFRQ23Sys6SphereR10Vector3Rf = .text:0x80415B58; // type:function size:0x27C scope:global align:4 +getPosRatio__Q23Sys4TubeFRC10Vector3 = .text:0x80415DD4; // type:function size:0xF4 scope:global align:4 +setPos__Q23Sys4TubeFf = .text:0x80415EC8; // type:function size:0x4C scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys6Sphere = .text:0x80415F14; // type:function size:0x58 scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys6SphereR10Vector3 = .text:0x80415F6C; // type:function size:0x120 scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys4EdgeRf = .text:0x8041608C; // type:function size:0x204 scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys4EdgeRfR10Vector3 = .text:0x80416290; // type:function size:0x28C scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys4EdgeRfR10Vector3Rf = .text:0x8041651C; // type:function size:0x3D4 scope:global align:4 +__ct__Q23Sys8TriangleFv = .text:0x804168F0; // type:function size:0x68 scope:global align:4 +createSphere__Q23Sys8TriangleFRQ23Sys11VertexTable = .text:0x80416958; // type:function size:0x168 scope:global align:4 +fastIntersect__Q23Sys8TriangleFRQ23Sys6Sphere = .text:0x80416AC0; // type:function size:0x84 scope:global align:4 +calcDist__Q23Sys8TriangleFR5PlaneRQ23Sys11VertexTable = .text:0x80416B44; // type:function size:0x104 scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys4EdgefR10Vector3 = .text:0x80416C48; // type:function size:0x334 scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys4EdgefR10Vector3Rf = .text:0x80416F7C; // type:function size:0x370 scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6Sphere = .text:0x804172EC; // type:function size:0x2AC scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6SphereR10Vector3 = .text:0x80417598; // type:function size:0x2F8 scope:global align:4 +intersectHard__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6SphereR10Vector3 = .text:0x80417890; // type:function size:0x2F8 scope:global align:4 +insideXZ__Q23Sys8TriangleFR10Vector3 = .text:0x80417B88; // type:function size:0xEC scope:global align:4 +makePlanes__Q23Sys8TriangleFRQ23Sys11VertexTable = .text:0x80417C74; // type:function size:0x4C8 scope:global align:4 +condition__Q23Sys16RayIntersectInfoFRQ23Sys8Triangle = .text:0x8041813C; // type:function size:0x40 scope:global align:4 +createTriangles__Q23Sys11GridDividerFRQ23Sys17CreateTriangleArg = .text:0x8041817C; // type:function size:0x428 scope:global align:4 +getMinY__Q23Sys11GridDividerFR10Vector3 = .text:0x804185A4; // type:function size:0x1D8 scope:global align:4 +getCurrTri__Q23Sys11GridDividerFRQ24Game11CurrTriInfo = .text:0x8041877C; // type:function size:0x234 scope:global align:4 +findTriLists__Q23Sys11GridDividerFRQ23Sys6Sphere = .text:0x804189B0; // type:function size:0x230 scope:global align:4 +create__Q23Sys11GridDividerFR8BoundBoxiiPQ23Sys11VertexTablePQ23Sys13TriangleTable = .text:0x80418BE0; // type:function size:0x45C scope:global align:4 +__ct__Q23Sys12TriIndexListFv = .text:0x8041903C; // type:function size:0x88 scope:weak align:4 +write__31ArrayContainerFR6Stream = .text:0x804190C4; // type:function size:0xD4 scope:weak align:4 +writeObject__31ArrayContainerFR6StreamRQ23Sys8Triangle = .text:0x80419198; // type:function size:0x4 scope:weak align:4 +read__Q23Sys11GridDividerFR6Stream = .text:0x8041919C; // type:function size:0x248 scope:global align:4 +read__31ArrayContainerFR6Stream = .text:0x804193E4; // type:function size:0xB0 scope:weak align:4 +readObject__31ArrayContainerFR6StreamRQ23Sys8Triangle = .text:0x80419494; // type:function size:0x4 scope:weak align:4 +createTriangleSphere__Q23Sys13TriangleTableFRQ23Sys11VertexTable = .text:0x80419498; // type:function size:0x74 scope:global align:4 +constructClone__Q23Sys12TriIndexListFRQ23Sys13TriangleTable = .text:0x8041950C; // type:function size:0x88 scope:global align:4 +getMinMax__Q23Sys12TriIndexListFRQ23Sys11VertexTableRQ23Sys13TriangleTableR10Vector3R10Vector3RfRf = .text:0x80419594; // type:function size:0x150 scope:global align:4 +makeCovarianceMatrix__Q23Sys12TriIndexListFRQ23Sys11VertexTableRQ23Sys13TriangleTableR8Matrix3fR10Vector3 = .text:0x804196E4; // type:function size:0x294 scope:global align:4 +draw__Q23Sys12TriIndexListFR8GraphicsRQ23Sys11VertexTableRQ23Sys13TriangleTableb = .text:0x80419978; // type:function size:0x4 scope:global align:4 +__ct__Q23Sys13TriangleTableFv = .text:0x8041997C; // type:function size:0x7C scope:global align:4 +__dt__31ArrayContainerFv = .text:0x804199F8; // type:function size:0x80 scope:weak align:4 +__dt__26ContainerFv = .text:0x80419A78; // type:function size:0x70 scope:weak align:4 +transform__Q23Sys11VertexTableFR7Matrixf = .text:0x80419AE8; // type:function size:0x13C scope:global align:4 +write__Q23Sys11VertexTableFR6Stream = .text:0x80419C24; // type:function size:0xD4 scope:global align:4 +writeObject__Q23Sys11VertexTableFR6StreamR10Vector3 = .text:0x80419CF8; // type:function size:0x24 scope:global align:4 +__dt__Q23Sys11VertexTableFv = .text:0x80419D1C; // type:function size:0x90 scope:weak align:4 +readObject__Q23Sys11VertexTableFR6StreamR10Vector3 = .text:0x80419DAC; // type:function size:0x24 scope:weak align:4 +__dt__Q23Sys13TriangleTableFv = .text:0x80419DD0; // type:function size:0x90 scope:weak align:4 +readObject__Q23Sys13TriangleTableFR6StreamRQ23Sys8Triangle = .text:0x80419E60; // type:function size:0x88 scope:weak align:4 +writeObject__Q23Sys13TriangleTableFR6StreamRQ23Sys8Triangle = .text:0x80419EE8; // type:function size:0x88 scope:weak align:4 +getBoundBox__Q23Sys11GridDividerFR8BoundBox = .text:0x80419F70; // type:function size:0x34 scope:weak align:4 +setArray__31ArrayContainerFPQ23Sys8Trianglei = .text:0x80419FA4; // type:function size:0x10 scope:weak align:4 +get__31ArrayContainerFPv = .text:0x80419FB4; // type:function size:0x10 scope:weak align:4 +getNext__31ArrayContainerFPv = .text:0x80419FC4; // type:function size:0x8 scope:weak align:4 +getStart__31ArrayContainerFv = .text:0x80419FCC; // type:function size:0x8 scope:weak align:4 +getEnd__31ArrayContainerFv = .text:0x80419FD4; // type:function size:0x8 scope:weak align:4 +getAt__31ArrayContainerFi = .text:0x80419FDC; // type:function size:0x10 scope:weak align:4 +getTo__31ArrayContainerFv = .text:0x80419FEC; // type:function size:0x8 scope:weak align:4 +getObject__26ContainerFPv = .text:0x80419FF4; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x8041A020; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x8041A028; // type:function size:0x8 scope:weak align:4 +getCurrTri__12MapCollisionFRQ24Game11CurrTriInfo = .text:0x8041A030; // type:function size:0x30 scope:global align:4 +read__12MapCollisionFR6Stream = .text:0x8041A060; // type:function size:0xB4 scope:global align:4 +clone__12MapCollisionFR7Matrixf = .text:0x8041A114; // type:function size:0x7C scope:global align:4 +isVisible__9CullPlaneFRQ23Sys6Sphere = .text:0x8041A190; // type:function size:0x70 scope:global align:4 +isCylinderVisible__9CullPlaneFRQ23Sys8Cylinder = .text:0x8041A200; // type:function size:0x88 scope:global align:4 +getUpVector__11CullFrustumFv = .text:0x8041A288; // type:function size:0x20 scope:global align:4 +getSideVector__11CullFrustumFv = .text:0x8041A2A8; // type:function size:0x2C scope:global align:4 +getViewVector__11CullFrustumFv = .text:0x8041A2D4; // type:function size:0x2C scope:global align:4 +getPosition__11CullFrustumFv = .text:0x8041A300; // type:function size:0x74 scope:global align:4 +updatePlanes__11CullFrustumFv = .text:0x8041A374; // type:function size:0x2D4 scope:global align:4 +__ct__6CameraFv = .text:0x8041A648; // type:function size:0x158 scope:global align:4 +__dt__11CullFrustumFv = .text:0x8041A7A0; // type:function size:0xA0 scope:weak align:4 +setFixNearFar__6CameraFbff = .text:0x8041A840; // type:function size:0x18 scope:global align:4 +copyFrom__6CameraFP6Camera = .text:0x8041A858; // type:function size:0xA8 scope:global align:4 +updatePlanes__6CameraFv = .text:0x8041A900; // type:function size:0x198 scope:global align:4 +getLookAtPosition__6CameraFv = .text:0x8041AA98; // type:function size:0xB0 scope:global align:4 +getLookAtPosition___6CameraFv = .text:0x8041AB48; // type:function size:0x20 scope:weak align:4 +isRunning__Q34Game5P2JST12ObjectCameraFv = .text:0x8041AB68; // type:function size:0x8 scope:weak align:4 +getPosition__6CameraFv = .text:0x8041AB70; // type:function size:0x108 scope:global align:4 +getPositionPtr__6CameraFv = .text:0x8041AC78; // type:function size:0x8C scope:global align:4 +on_getPositionPtr__6CameraFv = .text:0x8041AD04; // type:function size:0x8 scope:weak align:4 +getNear__6CameraFv = .text:0x8041AD0C; // type:function size:0x1C scope:global align:4 +getFar__6CameraFv = .text:0x8041AD28; // type:function size:0x1C scope:global align:4 +setProjection__6CameraFv = .text:0x8041AD44; // type:function size:0x70 scope:global align:4 +update__6CameraFv = .text:0x8041ADB4; // type:function size:0x128 scope:global align:4 +updateMatrix__6CameraFv = .text:0x8041AEDC; // type:function size:0x4 scope:weak align:4 +getViewMatrix__6CameraFb = .text:0x8041AEE0; // type:function size:0x18 scope:global align:4 +calcProperDistance__6CameraFff = .text:0x8041AEF8; // type:function size:0x120 scope:global align:4 +updateScreenConstants__6CameraFv = .text:0x8041B018; // type:function size:0xE0 scope:global align:4 +calcScreenSize__6CameraFRQ23Sys6Sphere = .text:0x8041B0F8; // type:function size:0xB8 scope:global align:4 +updateSoundCamera__6CameraFf = .text:0x8041B1B0; // type:function size:0x2E8 scope:global align:4 +__ct__12LookAtCameraFv = .text:0x8041B498; // type:function size:0x1AC scope:global align:4 +__dt__6CameraFv = .text:0x8041B644; // type:function size:0xB0 scope:weak align:4 +updateMatrix__12LookAtCameraFv = .text:0x8041B6F4; // type:function size:0x34 scope:global align:4 +__ct__11BlendCameraFiPP6Camera = .text:0x8041B728; // type:function size:0x180 scope:global align:4 +setCameras__11BlendCameraFPP6Camera = .text:0x8041B8A8; // type:function size:0x8C scope:global align:4 +setBlendFactor__11BlendCameraFf = .text:0x8041B934; // type:function size:0x60 scope:global align:4 +doUpdate__11BlendCameraFv = .text:0x8041B994; // type:function size:0x2A8 scope:global align:4 +__dt__11BlendCameraFv = .text:0x8041BC3C; // type:function size:0xC0 scope:weak align:4 +getViewMatrix__11CullFrustumFb = .text:0x8041BCFC; // type:function size:0x8 scope:weak align:4 +__sinit_camera_cpp = .text:0x8041BD04; // type:function size:0x28 scope:local align:4 +doRead__7TagParmFR6Stream = .text:0x8041BD2C; // type:function size:0x4 scope:weak align:4 +doWrite__7TagParmFR6Stream = .text:0x8041BD30; // type:function size:0x4 scope:weak align:4 +doDump__7TagParmFv = .text:0x8041BD34; // type:function size:0x4 scope:weak align:4 +doRead__14PrimTagParmFR6Stream = .text:0x8041BD38; // type:function size:0x34 scope:global align:4 +doWrite__14PrimTagParmFR6Stream = .text:0x8041BD6C; // type:function size:0x2C scope:global align:4 +doDump__14PrimTagParmFv = .text:0x8041BD98; // type:function size:0x4 scope:global align:4 +doRead__15PrimTagParmFR6Stream = .text:0x8041BD9C; // type:function size:0x34 scope:global align:4 +doWrite__15PrimTagParmFR6Stream = .text:0x8041BDD0; // type:function size:0x2C scope:global align:4 +doDump__15PrimTagParmFv = .text:0x8041BDFC; // type:function size:0x4 scope:global align:4 +doRead__15PrimTagParmFR6Stream = .text:0x8041BE00; // type:function size:0x78 scope:global align:4 +doWrite__15PrimTagParmFR6Stream = .text:0x8041BE78; // type:function size:0x6C scope:global align:4 +doDump__15PrimTagParmFv = .text:0x8041BEE4; // type:function size:0x4 scope:global align:4 +doRead__14PrimTagParmFR6Stream = .text:0x8041BEE8; // type:function size:0x34 scope:global align:4 +doWrite__14PrimTagParmFR6Stream = .text:0x8041BF1C; // type:function size:0x28 scope:global align:4 +doDump__14PrimTagParmFv = .text:0x8041BF44; // type:function size:0x4 scope:global align:4 +doRead__25PrimTagParm<10Vector3>FR6Stream = .text:0x8041BF48; // type:function size:0x24 scope:global align:4 +doWrite__25PrimTagParm<10Vector3>FR6Stream = .text:0x8041BF6C; // type:function size:0x24 scope:global align:4 +doDump__25PrimTagParm<10Vector3>Fv = .text:0x8041BF90; // type:function size:0x4 scope:global align:4 +__ct__13StringTagParmFP13TagParametersPc = .text:0x8041BF94; // type:function size:0x44 scope:global align:4 +flushValue__13StringTagParmFv = .text:0x8041BFD8; // type:function size:0x4 scope:global align:4 +doRead__13StringTagParmFR6Stream = .text:0x8041BFDC; // type:function size:0x3C scope:global align:4 +doWrite__13StringTagParmFR6Stream = .text:0x8041C018; // type:function size:0x2C scope:global align:4 +doDump__13StringTagParmFv = .text:0x8041C044; // type:function size:0x4 scope:global align:4 +__ct__13TagParametersFPc = .text:0x8041C048; // type:function size:0x54 scope:global align:4 +__ct__7TagParmFP13TagParametersPc = .text:0x8041C09C; // type:function size:0x38 scope:global align:4 +read__13TagParametersFR6Stream = .text:0x8041C0D4; // type:function size:0xD4 scope:global align:4 +__ct__8BitFlagsFv = .text:0x8041C1A8; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x8041C1B8; // type:function size:0x50 scope:global align:4 +read__8BitFlagsFR6Stream = .text:0x8041C208; // type:function size:0x64 scope:global align:4 +write__8BitFlagsFR6Stream = .text:0x8041C26C; // type:function size:0x64 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x8041C2D0; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x8041C324; // type:function size:0x28 scope:global align:4 +all_zero__8BitFlagsFv = .text:0x8041C34C; // type:function size:0x28 scope:global align:4 +all_one__8BitFlagsFv = .text:0x8041C374; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x8041C39C; // type:function size:0x30 scope:global align:4 +resetFlag__8BitFlagsFUs = .text:0x8041C3CC; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x8041C3FC; // type:function size:0x38 scope:global align:4 +getAttribute__Q27MapCode4CodeFv = .text:0x8041C434; // type:function size:0xC scope:global align:4 +getSlipCode__Q27MapCode4CodeFv = .text:0x8041C440; // type:function size:0xC scope:global align:4 +isBald__Q27MapCode4CodeFv = .text:0x8041C44C; // type:function size:0xC scope:global align:4 +setCode__Q27MapCode4CodeFiib = .text:0x8041C458; // type:function size:0x24 scope:global align:4 +__ct__Q27MapCode3MgrFv = .text:0x8041C47C; // type:function size:0x7C scope:global align:4 +__dt__Q37MapCode3Mgr9CodeArrayFv = .text:0x8041C4F8; // type:function size:0x90 scope:weak align:4 +__dt__31ArrayContainerFv = .text:0x8041C588; // type:function size:0x80 scope:weak align:4 +__dt__26ContainerFv = .text:0x8041C608; // type:function size:0x70 scope:weak align:4 +write__31ArrayContainerFR6Stream = .text:0x8041C678; // type:function size:0xE4 scope:weak align:4 +writeObject__31ArrayContainerFR6StreamRQ27MapCode4Code = .text:0x8041C75C; // type:function size:0x4 scope:weak align:4 +read__Q27MapCode3MgrFR6Stream = .text:0x8041C760; // type:function size:0x2C scope:global align:4 +read__31ArrayContainerFR6Stream = .text:0x8041C78C; // type:function size:0xA0 scope:weak align:4 +readObject__31ArrayContainerFR6StreamRQ27MapCode4Code = .text:0x8041C82C; // type:function size:0x4 scope:weak align:4 +alloc__31ArrayContainerFi = .text:0x8041C830; // type:function size:0x4C scope:weak align:4 +attachCodes__Q27MapCode3MgrFPQ23Sys13TriangleTable = .text:0x8041C87C; // type:function size:0x44 scope:global align:4 +writeObject__Q37MapCode3Mgr9CodeArrayFR6StreamRQ27MapCode4Code = .text:0x8041C8C0; // type:function size:0x2C scope:global align:4 +readObject__Q37MapCode3Mgr9CodeArrayFR6StreamRQ27MapCode4Code = .text:0x8041C8EC; // type:function size:0x34 scope:global align:4 +addOne__31ArrayContainerFRQ27MapCode4Code = .text:0x8041C920; // type:function size:0x28 scope:weak align:4 +setArray__31ArrayContainerFPQ27MapCode4Codei = .text:0x8041C948; // type:function size:0x10 scope:weak align:4 +get__31ArrayContainerFPv = .text:0x8041C958; // type:function size:0xC scope:weak align:4 +getNext__31ArrayContainerFPv = .text:0x8041C964; // type:function size:0x8 scope:weak align:4 +getStart__31ArrayContainerFv = .text:0x8041C96C; // type:function size:0x8 scope:weak align:4 +getEnd__31ArrayContainerFv = .text:0x8041C974; // type:function size:0x8 scope:weak align:4 +getAt__31ArrayContainerFi = .text:0x8041C97C; // type:function size:0xC scope:weak align:4 +getTo__31ArrayContainerFv = .text:0x8041C988; // type:function size:0x8 scope:weak align:4 +getObject__26ContainerFPv = .text:0x8041C990; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x8041C9BC; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x8041C9C4; // type:function size:0x8 scope:weak align:4 +intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ33Sys8Triangle11SphereSweep = .text:0x8041C9CC; // type:function size:0x4F0 scope:global align:4 +clone__Q23Sys7OBBTreeFR7Matrixf = .text:0x8041CEBC; // type:function size:0x170 scope:global align:4 +create2__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTableR8Matrix3fR8Matrix3fR10Vector3 = .text:0x8041D02C; // type:function size:0x704 scope:global align:4 +autoDivide__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTableii = .text:0x8041D730; // type:function size:0x2D8 scope:global align:4 +getNum__17ArrayContainerFv = .text:0x8041DA08; // type:function size:0x8 scope:weak align:4 +determineDivPlane__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTable = .text:0x8041DA10; // type:function size:0x1C4 scope:global align:4 +divide__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTable = .text:0x8041DBD4; // type:function size:0x480 scope:global align:4 +__ct__Q23Sys7OBBTreeFv = .text:0x8041E054; // type:function size:0x144 scope:global align:4 +getCurrTri__Q23Sys7OBBTreeFRQ24Game11CurrTriInfo = .text:0x8041E198; // type:function size:0x2C scope:global align:4 +getCurrTri__Q23Sys3OBBFRQ24Game11CurrTriInfo = .text:0x8041E1C4; // type:function size:0x498 scope:global align:4 +calcDist__5PlaneCFRC10Vector3 = .text:0x8041E65C; // type:function size:0x30 scope:weak align:4 +isLeaf__Q23Sys3OBBFv = .text:0x8041E68C; // type:function size:0x28 scope:weak align:4 +getCurrTriTriList__Q23Sys3OBBFRQ24Game11CurrTriInfo = .text:0x8041E6B4; // type:function size:0x118 scope:global align:4 +construct__Q23Sys7OBBTreeFPQ23Sys11VertexTablePQ23Sys13TriangleTableii = .text:0x8041E7CC; // type:function size:0xB4 scope:global align:4 +read__Q23Sys7OBBTreeFR6Stream = .text:0x8041E880; // type:function size:0x118 scope:global align:4 +readWithoutVerts__Q23Sys7OBBTreeFR6StreamRQ23Sys11VertexTable = .text:0x8041E998; // type:function size:0x78 scope:global align:4 +traceMove__Q23Sys7OBBTreeFR7MatrixfR7MatrixfRQ24Game8MoveInfof = .text:0x8041EA10; // type:function size:0x24 scope:global align:4 +traceMove_global__Q23Sys7OBBTreeFRQ24Game8MoveInfof = .text:0x8041EA34; // type:function size:0x24 scope:global align:4 +findRayIntersection__Q23Sys7OBBTreeFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf = .text:0x8041EA58; // type:function size:0x214 scope:global align:4 +findRayIntersection__Q23Sys3OBBFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf = .text:0x8041EC6C; // type:function size:0x5C0 scope:global align:4 +findRayIntersectionTriList__Q23Sys3OBBFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf = .text:0x8041F22C; // type:function size:0x114 scope:global align:4 +findTriLists__Q23Sys3OBBFRQ23Sys6Sphere = .text:0x8041F340; // type:function size:0x178 scope:global align:4 +getMinY__Q23Sys7OBBTreeFR10Vector3 = .text:0x8041F4B8; // type:function size:0x2C scope:global align:4 +getMinY__Q23Sys3OBBFR10Vector3RQ23Sys13TriangleTablef = .text:0x8041F4E4; // type:function size:0x6C0 scope:global align:4 +getMinYTriList__Q23Sys3OBBFR10Vector3RQ23Sys13TriangleTable = .text:0x8041FBA4; // type:function size:0xB4 scope:global align:4 +read__Q23Sys3OBBFR6Stream = .text:0x8041FC58; // type:function size:0x320 scope:global align:4 +findTriLists__Q23Sys7OBBTreeFRQ23Sys6Sphere = .text:0x8041FF78; // type:function size:0x24 scope:weak align:4 +getBoundBox__Q23Sys7OBBTreeFR8BoundBox = .text:0x8041FF9C; // type:function size:0x4 scope:weak align:4 +do_clone__Q23Sys10TriDividerFR7MatrixfPQ23Sys11VertexTablePQ23Sys13TriangleTable = .text:0x8041FFA0; // type:function size:0x8 scope:weak align:4 +traceMove_new__Q23Sys7OBBTreeFR7MatrixfR7MatrixfRQ24Game8MoveInfof = .text:0x8041FFA8; // type:function size:0x1C0 scope:global align:4 +traceMoveTriList_new__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableR7MatrixfR7MatrixfRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x80420168; // type:function size:0x2FC scope:global align:4 +traceMove_new__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableR7MatrixfR7MatrixfRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x80420464; // type:function size:0x7F0 scope:global align:4 +traceMove_new_global__Q23Sys7OBBTreeFRQ24Game8MoveInfof = .text:0x80420C54; // type:function size:0x98 scope:global align:4 +traceMoveTriList_new_global__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x80420CEC; // type:function size:0x24C scope:global align:4 +traceMove_new_global__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x80420F38; // type:function size:0x6F0 scope:global align:4 +__ct__Q23Sys8CylinderFRC10Vector3RC10Vector3ff = .text:0x80421628; // type:function size:0x3C scope:global align:4 +set__Q23Sys8CylinderFRC10Vector3RC10Vector3f = .text:0x80421664; // type:function size:0x100 scope:global align:4 +culled__Q23Sys8CylinderFRC5Plane = .text:0x80421764; // type:function size:0x190 scope:global align:4 +intersect__Q23Sys8CylinderFRCQ23Sys8TriangleRf = .text:0x804218F4; // type:function size:0x1D8 scope:global align:4 +clone__Q23Sys10TriDividerFR7Matrixf = .text:0x80421ACC; // type:function size:0x120 scope:global align:4 +cloneFrom__Q23Sys11VertexTableFR7MatrixfPQ23Sys11VertexTable = .text:0x80421BEC; // type:function size:0x160 scope:global align:4 +cloneFrom__Q23Sys13TriangleTableFR7MatrixfPQ23Sys13TriangleTablePQ23Sys11VertexTable = .text:0x80421D4C; // type:function size:0xB4 scope:global align:4 +do_clone__Q23Sys11GridDividerFR7MatrixfPQ23Sys11VertexTablePQ23Sys13TriangleTable = .text:0x80421E00; // type:function size:0xC4 scope:global align:4 +Pikmin2DefaultMemoryErrorRoutine__FPvUli = .text:0x80421EC4; // type:function size:0xA0 scope:local align:4 +kando_panic_f__FbPCciPCce = .text:0x80421F64; // type:function size:0x188 scope:local align:4 +preUserCallback__FUsP9OSContextUlUl = .text:0x804220EC; // type:function size:0x118 scope:local align:4 +myTask__FPv = .text:0x80422204; // type:function size:0x2C scope:global align:4 +__ct__Q26System20FragmentationCheckerFPcb = .text:0x80422230; // type:function size:0x54 scope:global align:4 +__dt__Q26System20FragmentationCheckerFv = .text:0x80422284; // type:function size:0x5C scope:global align:4 +assert_fragmentation__6SystemFPc = .text:0x804222E0; // type:function size:0x3C scope:global align:4 +enableCPULockDetector__6SystemFi = .text:0x8042231C; // type:function size:0x10 scope:global align:4 +disableCPULockDetector__6SystemFv = .text:0x8042232C; // type:function size:0x18 scope:global align:4 +retraceCallback__FUl = .text:0x80422344; // type:function size:0xA4 scope:global align:4 +__ct__6SystemFv = .text:0x804223E8; // type:function size:0x11C scope:global align:4 +construct__6SystemFv = .text:0x80422504; // type:function size:0x214 scope:global align:4 +constructWithDvdAccessFirst__6SystemFv = .text:0x80422718; // type:function size:0xE8 scope:global align:4 +constructWithDvdAccessSecond__6SystemFv = .text:0x80422800; // type:function size:0x120 scope:global align:4 +createRomFont__6SystemFP7JKRHeap = .text:0x80422920; // type:function size:0x54 scope:global align:4 +destroyRomFont__6SystemFv = .text:0x80422974; // type:function size:0x50 scope:global align:4 +createSoundSystem__6SystemFv = .text:0x804229C4; // type:function size:0x1B8 scope:global align:4 +loadSoundResource__6SystemFv = .text:0x80422B7C; // type:function size:0xE8 scope:global align:4 +initialize__6SystemFv = .text:0x80422C64; // type:function size:0xF8 scope:global align:4 +loadResourceFirst__6SystemFv = .text:0x80422D5C; // type:function size:0x94 scope:global align:4 +loadResourceSecond__6SystemFv = .text:0x80422DF0; // type:function size:0x94 scope:global align:4 +run__6SystemFv = .text:0x80422E84; // type:function size:0x34 scope:global align:4 +getTime__6SystemFv = .text:0x80422EB8; // type:function size:0x58 scope:global align:4 +clearOptionBlockSaveFlag__6SystemFv = .text:0x80422F10; // type:function size:0x10 scope:global align:4 +setOptionBlockSaveFlag__6SystemFv = .text:0x80422F20; // type:function size:0x10 scope:global align:4 +getPlayCommonData__6SystemFv = .text:0x80422F30; // type:function size:0x8 scope:global align:4 +dvdLoadUseCallBack__6SystemFP16DvdThreadCommandP9IDelegate = .text:0x80422F38; // type:function size:0x58 scope:global align:4 +deleteThreads__6SystemFv = .text:0x80422F90; // type:function size:0x54 scope:global align:4 +__dt__9DvdThreadFv = .text:0x80422FE4; // type:function size:0x8C scope:weak align:4 +setCurrentDisplay__6SystemFP10JFWDisplay = .text:0x80423070; // type:function size:0x10 scope:global align:4 +clearCurrentDisplay__6SystemFP10JFWDisplay = .text:0x80423080; // type:function size:0x1C scope:global align:4 +beginFrame__6SystemFv = .text:0x8042309C; // type:function size:0x3C scope:global align:4 +endFrame__6SystemFv = .text:0x804230D8; // type:function size:0x5C scope:global align:4 +beginRender__6SystemFv = .text:0x80423134; // type:function size:0x48 scope:global align:4 +endRender__6SystemFv = .text:0x8042317C; // type:function size:0x98 scope:global align:4 +setRenderMode__6SystemFQ26System11ERenderMode = .text:0x80423214; // type:function size:0x10 scope:global align:4 +getRenderModeObj__6SystemFv = .text:0x80423224; // type:function size:0x18 scope:global align:4 +changeRenderMode__6SystemFQ26System11ERenderMode = .text:0x8042323C; // type:function size:0x120 scope:global align:4 +heapStatusStart__6SystemFPcP7JKRHeap = .text:0x8042335C; // type:function size:0x8 scope:global align:4 +heapStatusEnd__6SystemFPc = .text:0x80423364; // type:function size:0x4 scope:global align:4 +heapStatusDump__6SystemFb = .text:0x80423368; // type:function size:0x4 scope:global align:4 +heapStatusIndividual__6SystemFv = .text:0x8042336C; // type:function size:0x4 scope:global align:4 +heapStatusNormal__6SystemFv = .text:0x80423370; // type:function size:0x4 scope:global align:4 +resetOn__6SystemFb = .text:0x80423374; // type:function size:0x28 scope:global align:4 +resetPermissionOn__6SystemFv = .text:0x8042339C; // type:function size:0x14 scope:global align:4 +isResetActive__6SystemFv = .text:0x804233B0; // type:function size:0x18 scope:global align:4 +activeGP__6SystemFv = .text:0x804233C8; // type:function size:0x14 scope:global align:4 +inactiveGP__6SystemFv = .text:0x804233DC; // type:function size:0x14 scope:global align:4 +isDvdErrorOccured__6SystemFv = .text:0x804233F0; // type:function size:0x24 scope:global align:4 +initCurrentHeapMutex__6SystemFv = .text:0x80423414; // type:function size:0x34 scope:global align:4 +startChangeCurrentHeap__6SystemFP7JKRHeap = .text:0x80423448; // type:function size:0x70 scope:global align:4 +endChangeCurrentHeap__6SystemFv = .text:0x804234B8; // type:function size:0x68 scope:global align:4 +addGenNode__6SystemFP5CNode = .text:0x80423520; // type:function size:0x4 scope:global align:4 +initGenNode__6SystemFv = .text:0x80423524; // type:function size:0x4 scope:global align:4 +refreshGenNode__6SystemFv = .text:0x80423528; // type:function size:0x4 scope:global align:4 +setFrameRate__6SystemFi = .text:0x8042352C; // type:function size:0xA0 scope:global align:4 +getCurrentSection__11ISectionMgrFv = .text:0x804235CC; // type:function size:0x8 scope:weak align:4 +dvdLoadSyncNoBlock__6SystemFP16DvdThreadCommand = .text:0x804235D4; // type:function size:0x60 scope:global align:4 +dvdLoadSyncAllNoBlock__6SystemFv = .text:0x80423634; // type:function size:0x5C scope:global align:4 +__dt__9AppThreadFv = .text:0x80423690; // type:function size:0x60 scope:weak align:4 +newSceneMgr__Q23PSM7FactoryFv = .text:0x804236F0; // type:function size:0x38 scope:weak align:4 +invoke__17Delegate<6System>Fv = .text:0x80423728; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x80423758; // type:function size:0x18 scope:local align:4 +init__7SectionFv = .text:0x80423770; // type:function size:0x4 scope:global align:4 +__ct__7SectionFP10JFWDisplayP7JKRHeapb = .text:0x80423774; // type:function size:0x1D0 scope:global align:4 +__dt__8ISectionFv = .text:0x80423944; // type:function size:0x60 scope:weak align:4 +__dt__7SectionFv = .text:0x804239A4; // type:function size:0x120 scope:global align:4 +run__7SectionFv = .text:0x80423AC4; // type:function size:0x4B8 scope:global align:4 +exit__7SectionFv = .text:0x80423F7C; // type:function size:0x50 scope:global align:4 +beginFrame__7SectionFv = .text:0x80423FCC; // type:function size:0x24 scope:weak align:4 +endFrame__7SectionFv = .text:0x80423FF0; // type:function size:0x24 scope:weak align:4 +beginRender__7SectionFv = .text:0x80424014; // type:function size:0x24 scope:weak align:4 +endRender__7SectionFv = .text:0x80424038; // type:function size:0x40 scope:weak align:4 +update__7SectionFv = .text:0x80424078; // type:function size:0x7C scope:global align:4 +draw__7SectionFR8Graphics = .text:0x804240F4; // type:function size:0x5C scope:global align:4 +__sinit_section_cpp = .text:0x80424150; // type:function size:0x54 scope:local align:4 +__ct__8GameFlowFv = .text:0x804241A4; // type:function size:0x2C scope:global align:4 +run__8GameFlowFv = .text:0x804241D0; // type:function size:0xDC scope:global align:4 +setSection__8GameFlowFv = .text:0x804242AC; // type:function size:0xC0 scope:global align:4 +getSectionInfo__8GameFlowFi = .text:0x8042436C; // type:function size:0xB0 scope:global align:4 +createSection__8GameFlowFP7JKRHeap = .text:0x8042441C; // type:function size:0x148 scope:global align:4 +getCurrentSection__8GameFlowFv = .text:0x80424564; // type:function size:0x40 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x804245A4; // type:function size:0x28 scope:local align:4 +__ct__11MenuSectionFP10JFWDisplayP7JKRHeapb = .text:0x804245CC; // type:function size:0x48 scope:global align:4 +run__11MenuSectionFv = .text:0x80424614; // type:function size:0x54 scope:global align:4 +runChildSection__11MenuSectionFv = .text:0x80424668; // type:function size:0x148 scope:global align:4 +__dt__11MenuSectionFv = .text:0x804247B0; // type:function size:0x60 scope:weak align:4 +getCurrentSection__11MenuSectionFv = .text:0x80424810; // type:function size:0x8 scope:weak align:4 +__ct__16DvdThreadCommandFv = .text:0x80424818; // type:function size:0x80 scope:global align:4 +loadUseCallBack__16DvdThreadCommandFP9IDelegate = .text:0x80424898; // type:function size:0x20 scope:global align:4 +__ct__9DvdThreadFUlii = .text:0x804248B8; // type:function size:0x4C scope:global align:4 +run__9DvdThreadFv = .text:0x80424904; // type:function size:0x194 scope:global align:4 +loadArchive__9DvdThreadFP16DvdThreadCommand = .text:0x80424A98; // type:function size:0x9C scope:global align:4 +loadFile__9DvdThreadFP16DvdThreadCommand = .text:0x80424B34; // type:function size:0x108 scope:global align:4 +sendCommand__9DvdThreadFP16DvdThreadCommand = .text:0x80424C3C; // type:function size:0x60 scope:global align:4 +sync__9DvdThreadFP16DvdThreadCommandQ29DvdThread14ESyncBlockFlag = .text:0x80424C9C; // type:function size:0xB0 scope:global align:4 +syncAll__9DvdThreadFQ29DvdThread14ESyncBlockFlag = .text:0x80424D4C; // type:function size:0xCC scope:global align:4 +__ct__9AppThreadFUlii = .text:0x80424E18; // type:function size:0x3C scope:global align:4 +__ct__10ControllerFQ210JUTGamePad8EPadPort = .text:0x80424E54; // type:function size:0x3C scope:global align:4 +__ct__17HorizonalSplitterFP8Graphics = .text:0x80424E90; // type:function size:0x150 scope:global align:4 +split2__17HorizonalSplitterFf = .text:0x80424FE0; // type:function size:0xBC scope:global align:4 +__ct__8ViewportFv = .text:0x8042509C; // type:function size:0xC0 scope:global align:4 +getMatrix__8ViewportFb = .text:0x8042515C; // type:function size:0x44 scope:global align:4 +setProjection__8ViewportFv = .text:0x804251A0; // type:function size:0x2C scope:global align:4 +getNumActiveViewports__8GraphicsFv = .text:0x804251CC; // type:function size:0x74 scope:global align:4 +viewable__8ViewportFv = .text:0x80425240; // type:function size:0x50 scope:global align:4 +updateCameraAspect__8ViewportFv = .text:0x80425290; // type:function size:0x4C scope:global align:4 +refresh__8ViewportFv = .text:0x804252DC; // type:function size:0xA4 scope:global align:4 +setRect__8ViewportFR7Rect = .text:0x80425380; // type:function size:0xC4 scope:global align:4 +setViewport__8ViewportFv = .text:0x80425444; // type:function size:0xD4 scope:global align:4 +setJ3DViewMtx__8ViewportFb = .text:0x80425518; // type:function size:0x50 scope:global align:4 +allocateViewports__8GraphicsFi = .text:0x80425568; // type:function size:0x44 scope:global align:4 +deleteViewports__8GraphicsFv = .text:0x804255AC; // type:function size:0x14 scope:global align:4 +addViewport__8GraphicsFP8Viewport = .text:0x804255C0; // type:function size:0x30 scope:global align:4 +getViewport__8GraphicsFi = .text:0x804255F0; // type:function size:0x10 scope:global align:4 +mapViewport__8GraphicsFP22IDelegate1 = .text:0x80425600; // type:function size:0xE0 scope:global align:4 +graphicsTokenCallback__FUs = .text:0x804256E0; // type:function size:0x30 scope:local align:4 +setToken__8GraphicsFPc = .text:0x80425710; // type:function size:0x78 scope:global align:4 +getTokenName__8GraphicsFUs = .text:0x80425788; // type:function size:0x10 scope:global align:4 +findTokenIndex__8GraphicsFPc = .text:0x80425798; // type:function size:0x84 scope:global align:4 +initPrimDraw__8GraphicsFP7Matrixf = .text:0x8042581C; // type:function size:0x1CC scope:global align:4 +drawLine__8GraphicsFR10Vector3R10Vector3 = .text:0x804259E8; // type:function size:0xC4 scope:global align:4 +drawSphere__8GraphicsFR10Vector3f = .text:0x80425AAC; // type:function size:0x598 scope:global align:4 +drawSphere__8GraphicsFfP7Matrixf = .text:0x80426044; // type:function size:0x5C8 scope:global align:4 +drawAxis__8GraphicsFfP7Matrixf = .text:0x8042660C; // type:function size:0x2B8 scope:global align:4 +clearZBuffer__8GraphicsFR7Rect = .text:0x804268C4; // type:function size:0x24 scope:global align:4 +fillZBuffer__8GraphicsFR7Rectf = .text:0x804268E8; // type:function size:0x3D0 scope:global align:4 +drawCone__8GraphicsFR10Vector3R10Vector3fi = .text:0x80426CB8; // type:function size:0x70C scope:global align:4 +__ct__8GraphicsFv = .text:0x804273C4; // type:function size:0xA4 scope:global align:4 +setupJ2DOrthoGraphDefault__8GraphicsFv = .text:0x80427468; // type:function size:0x16C scope:global align:4 +setupJ2DPerspGraphDefault__8GraphicsFv = .text:0x804275D4; // type:function size:0x11C scope:global align:4 +clearVtxDesc__8GraphicsFv = .text:0x804276F0; // type:function size:0x20 scope:global align:4 +setVtxDesc__8GraphicsF7_GXAttr11_GXAttrType = .text:0x80427710; // type:function size:0x28 scope:global align:4 +setVtxAttrFmt__8GraphicsF9_GXVtxFmt7_GXAttr10_GXCompCnt11_GXCompTypeUc = .text:0x80427738; // type:function size:0x34 scope:global align:4 +disableLight__8GraphicsFv = .text:0x8042776C; // type:function size:0x3C scope:global align:4 +setTextureGX__8GraphicsFv = .text:0x804277A8; // type:function size:0x100 scope:global align:4 +initPerspPrintf__8GraphicsFP8Viewport = .text:0x804278A8; // type:function size:0x234 scope:global align:4 +perspPrintf__8GraphicsFR15PerspPrintfInfoR10Vector3Pce = .text:0x80427ADC; // type:function size:0x3C4 scope:global align:4 +initGX__8GraphicsFv = .text:0x80427EA0; // type:function size:0x60 scope:global align:4 +dirtyInitGX__8GraphicsFv = .text:0x80427F00; // type:function size:0x4 scope:global align:4 +clearInitGX__8GraphicsFv = .text:0x80427F04; // type:function size:0x60 scope:global align:4 +split4__8SplitterFff = .text:0x80427F64; // type:function size:0x4 scope:weak align:4 +__sinit_graphics_cpp = .text:0x80427F68; // type:function size:0x28 scope:local align:4 +makeNaturalPosture__7MatrixfFR10Vector3f = .text:0x80427F90; // type:function size:0x344 scope:global align:4 +print__7MatrixfFPc = .text:0x804282D4; // type:function size:0x4 scope:global align:4 +makeSRT__7MatrixfFR10Vector3R10Vector3R10Vector3 = .text:0x804282D8; // type:function size:0x288 scope:global align:4 +makeST__7MatrixfFR10Vector3R10Vector3 = .text:0x80428560; // type:function size:0x50 scope:global align:4 +makeSR__7MatrixfFR10Vector3R10Vector3 = .text:0x804285B0; // type:function size:0x290 scope:global align:4 +makeT__7MatrixfFR10Vector3 = .text:0x80428840; // type:function size:0x48 scope:global align:4 +makeTR__7MatrixfFR10Vector3R10Vector3 = .text:0x80428888; // type:function size:0x230 scope:global align:4 +makeTQ__7MatrixfFR10Vector3R4Quat = .text:0x80428AB8; // type:function size:0xD0 scope:global align:4 +makeQ__7MatrixfFR4Quat = .text:0x80428B88; // type:function size:0xC8 scope:global align:4 +clearAnimatorAll__Q28SysShape5ModelFv = .text:0x80428C50; // type:function size:0x38 scope:global align:4 +startAnim__Q28SysShape8AnimatorFiPQ28SysShape14MotionListener = .text:0x80428C88; // type:function size:0xC8 scope:global align:4 +startExAnim__Q28SysShape8AnimatorFPQ28SysShape8AnimInfo = .text:0x80428D50; // type:function size:0x68 scope:global align:4 +assertValid__Q28SysShape8AnimatorFPQ28SysShape5Model = .text:0x80428DB8; // type:function size:0x8 scope:global align:4 +setCurrFrame__Q28SysShape8AnimatorFf = .text:0x80428DC0; // type:function size:0x40 scope:global align:4 +setFrameByKeyType__Q28SysShape8AnimatorFUl = .text:0x80428E00; // type:function size:0x100 scope:global align:4 +setLastFrame__Q28SysShape8AnimatorFv = .text:0x80428F00; // type:function size:0x78 scope:global align:4 +animate__Q28SysShape8AnimatorFf = .text:0x80428F78; // type:function size:0x2AC scope:global align:4 +__ct__Q28SysShape13BlendAnimatorFv = .text:0x80429224; // type:function size:0x80 scope:global align:4 +setAnimMgr__Q28SysShape13BlendAnimatorFPQ28SysShape7AnimMgr = .text:0x804292A4; // type:function size:0x154 scope:global align:4 +startBlend__Q28SysShape13BlendAnimatorFPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener = .text:0x804293F8; // type:function size:0x15C scope:global align:4 +endBlend__Q28SysShape13BlendAnimatorFv = .text:0x80429554; // type:function size:0x18 scope:global align:4 +animate__Q28SysShape13BlendAnimatorFPQ28SysShape13BlendFunctionfff = .text:0x8042956C; // type:function size:0x278 scope:global align:4 +getCalc__Q28SysShape13BlendAnimatorFv = .text:0x804297E4; // type:function size:0x40 scope:global align:4 +init__Q28SysShape5JointFUsPQ28SysShape5ModelP8J3DJoint = .text:0x80429824; // type:function size:0x7C scope:global align:4 +getWorldMatrix__Q28SysShape5JointFv = .text:0x804298A0; // type:function size:0x20 scope:global align:4 +getLowestAnimKey__Q28SysShape8AnimInfoFf = .text:0x804298C0; // type:function size:0x6C scope:global align:4 +getLastLoopStart__Q28SysShape8AnimInfoFPQ28SysShape8KeyEvent = .text:0x8042992C; // type:function size:0x28 scope:global align:4 +getAnimKeyByType__Q28SysShape8AnimInfoFUl = .text:0x80429954; // type:function size:0x28 scope:global align:4 +read__Q28SysShape8AnimInfoFR6Stream = .text:0x8042997C; // type:function size:0x20 scope:global align:4 +readEditor__Q28SysShape8AnimInfoFR6Stream = .text:0x8042999C; // type:function size:0x10C scope:global align:4 +load__Q28SysShape7AnimMgrFPcP12J3DModelDataP13JKRFileLoader = .text:0x80429AA8; // type:function size:0x13C scope:global align:4 +__dt__Q28SysShape8AnimInfoFv = .text:0x80429BE4; // type:function size:0x84 scope:weak align:4 +dump__Q28SysShape7AnimMgrFv = .text:0x80429C68; // type:function size:0x80 scope:global align:4 +__dt__Q28SysShape7AnimMgrFv = .text:0x80429CE8; // type:function size:0xA0 scope:weak align:4 +__sinit_sysShape_cpp = .text:0x80429D88; // type:function size:0x28 scope:local align:4 +__ct__12ResetManagerFf = .text:0x80429DB0; // type:function size:0xC8 scope:global align:4 +update__12ResetManagerFv = .text:0x80429E78; // type:function size:0x2B4 scope:global align:4 +updateStatusEffects__12ResetManagerFv = .text:0x8042A12C; // type:function size:0x38 scope:global align:4 +draw__12ResetManagerFv = .text:0x8042A164; // type:function size:0x158 scope:global align:4 +isWritingMemoryCard__12ResetManagerFv = .text:0x8042A2BC; // type:function size:0x14 scope:global align:4 +isSoundSystemStopped__12ResetManagerFv = .text:0x8042A2D0; // type:function size:0x44 scope:global align:4 +__ct__9DvdStatusFv = .text:0x8042A314; // type:function size:0x14 scope:global align:4 +isErrorOccured__9DvdStatusFv = .text:0x8042A328; // type:function size:0x2C scope:global align:4 +update__9DvdStatusFv = .text:0x8042A354; // type:function size:0x1F0 scope:global align:4 +draw__9DvdStatusFv = .text:0x8042A544; // type:function size:0x2B8 scope:global align:4 +__ct__9SysTimersFv = .text:0x8042A7FC; // type:function size:0xE0 scope:global align:4 +__defctor__8TimerInfFv = .text:0x8042A8DC; // type:function size:0x6C scope:weak align:4 +__dt__9SysTimersFv = .text:0x8042A948; // type:function size:0x68 scope:global align:4 +get__9SysTimersFi = .text:0x8042A9B0; // type:function size:0x7C scope:global align:4 +__dt__8TimerInfFv = .text:0x8042AA2C; // type:function size:0x74 scope:global align:4 +reset__9SysTimersFv = .text:0x8042AAA0; // type:function size:0x38 scope:global align:4 +newFrame__9SysTimersFv = .text:0x8042AAD8; // type:function size:0x10 scope:global align:4 +remove__9SysTimersFP8TimerInf = .text:0x8042AAE8; // type:function size:0x10 scope:global align:4 +_start__9SysTimersFPcb = .text:0x8042AAF8; // type:function size:0x4 scope:global align:4 +_stop__9SysTimersFPc = .text:0x8042AAFC; // type:function size:0x4 scope:global align:4 +__ct__Q28SysShape8ModelMgrFiPP12J3DModelDataiUlUlP30IDelegate1 = .text:0x8042AB00; // type:function size:0x1D8 scope:global align:4 +calcMaximumModelSize__Q28SysShape8ModelMgrFv = .text:0x8042ACD8; // type:function size:0x84 scope:global align:4 +calcModelSize__Q28SysShape8ModelMgrFP12J3DModelData = .text:0x8042AD5C; // type:function size:0xA0 scope:global align:4 +createModel__Q28SysShape8ModelMgrFii = .text:0x8042ADFC; // type:function size:0x1C8 scope:global align:4 +__ct__10HeapStatusFv = .text:0x8042AFC4; // type:function size:0xB0 scope:global align:4 +__dt__8HeapInfoFv = .text:0x8042B074; // type:function size:0x1A0 scope:global align:4 +getNextChild__18JSUTree<8CoreNode>CFv = .text:0x8042B214; // type:function size:0x14 scope:weak align:4 +__ne__26JSUTreeIterator<8CoreNode>CFPC18JSUTree<8CoreNode> = .text:0x8042B228; // type:function size:0x18 scope:weak align:4 +getEndChild__18JSUTree<8CoreNode>CFv = .text:0x8042B240; // type:function size:0x8 scope:weak align:4 +__pp__26JSUTreeIterator<8CoreNode>Fv = .text:0x8042B248; // type:function size:0x1C scope:weak align:4 +getObject__26JSUTreeIterator<8CoreNode>CFv = .text:0x8042B264; // type:function size:0xC scope:weak align:4 +__ct__26JSUTreeIterator<8CoreNode>FP18JSUTree<8CoreNode> = .text:0x8042B270; // type:function size:0x8 scope:weak align:4 +getFirstChild__18JSUTree<8CoreNode>CFv = .text:0x8042B278; // type:function size:0x14 scope:weak align:4 +search__8HeapInfoFP8HeapInfo = .text:0x8042B28C; // type:function size:0x1D8 scope:global align:4 +@36@__dt__8HeapInfoFv = .text:0x8042B464; // type:function size:0x8 scope:weak align:4 +__ct__8LightObjFPc10_GXLightID14ELightTypeFlagQ28JUtility6TColor = .text:0x8042B46C; // type:function size:0xC4 scope:global align:4 +set__8LightObjFR7Matrixf = .text:0x8042B530; // type:function size:0x2DC scope:global align:4 +drawPos__8LightObjFR8Graphics = .text:0x8042B80C; // type:function size:0x5C scope:global align:4 +drawPos__8LightObjFR8GraphicsR6Camera = .text:0x8042B868; // type:function size:0x7C scope:global align:4 +drawPos__8LightObjFR8GraphicsR7Matrixf = .text:0x8042B8E4; // type:function size:0x1A8 scope:global align:4 +__ct__8LightMgrFPc = .text:0x8042BA8C; // type:function size:0xD8 scope:global align:4 +registLightObj__8LightMgrFP8LightObj = .text:0x8042BB64; // type:function size:0x3C scope:global align:4 +set__8LightMgrFR8Graphics = .text:0x8042BBA0; // type:function size:0x50 scope:global align:4 +set__8LightMgrFR7Matrixf = .text:0x8042BBF0; // type:function size:0x94 scope:global align:4 +drawDebugInfo__8LightMgrFR8Graphics = .text:0x8042BC84; // type:function size:0x5C scope:global align:4 +update__8LightMgrFv = .text:0x8042BCE0; // type:function size:0x4 scope:weak align:4 +__sinit_light_cpp = .text:0x8042BCE4; // type:function size:0x28 scope:local align:4 +__ct__8WipeBaseFv = .text:0x8042BD0C; // type:function size:0x5C scope:global align:4 +start__8WipeBaseFf = .text:0x8042BD68; // type:function size:0x40 scope:global align:4 +on_start__8WipeBaseFv = .text:0x8042BDA8; // type:function size:0x4 scope:weak align:4 +update__8WipeBaseFv = .text:0x8042BDAC; // type:function size:0x78 scope:global align:4 +draw__8WipeBaseFv = .text:0x8042BE24; // type:function size:0x60 scope:global align:4 +do_draw__8WipeBaseFf = .text:0x8042BE84; // type:function size:0x4 scope:weak align:4 +isWhite__11WipeInFaderFv = .text:0x8042BE88; // type:function size:0x18 scope:global align:4 +isBlack__11WipeInFaderFv = .text:0x8042BEA0; // type:function size:0x18 scope:global align:4 +__ct__11WipeInFaderFv = .text:0x8042BEB8; // type:function size:0x78 scope:global align:4 +do_draw__11WipeInFaderFf = .text:0x8042BF30; // type:function size:0x144 scope:global align:4 +__ct__12WipeOutFaderFv = .text:0x8042C074; // type:function size:0x78 scope:global align:4 +on_start__12WipeOutFaderFv = .text:0x8042C0EC; // type:function size:0x4 scope:global align:4 +isWhite__12WipeOutFaderFv = .text:0x8042C0F0; // type:function size:0x18 scope:global align:4 +isBlack__12WipeOutFaderFv = .text:0x8042C108; // type:function size:0x18 scope:global align:4 +do_draw__12WipeOutFaderFf = .text:0x8042C120; // type:function size:0x138 scope:global align:4 +on_start__14WipeOutInFaderFv = .text:0x8042C258; // type:function size:0x50 scope:global align:4 +isWhite__14WipeOutInFaderFv = .text:0x8042C2A8; // type:function size:0x3C scope:global align:4 +isBlack__14WipeOutInFaderFv = .text:0x8042C2E4; // type:function size:0x38 scope:global align:4 +do_draw__14WipeOutInFaderFf = .text:0x8042C31C; // type:function size:0xA8 scope:global align:4 +__ct__10BlackFaderFv = .text:0x8042C3C4; // type:function size:0x7C scope:global align:4 +isWhite__10BlackFaderFv = .text:0x8042C440; // type:function size:0x10 scope:global align:4 +isBlack__10BlackFaderFv = .text:0x8042C450; // type:function size:0x8 scope:global align:4 +do_draw__10BlackFaderFf = .text:0x8042C458; // type:function size:0x120 scope:global align:4 +isWhite__8WipeBaseFv = .text:0x8042C578; // type:function size:0x8 scope:weak align:4 +isBlack__8WipeBaseFv = .text:0x8042C580; // type:function size:0x8 scope:weak align:4 +__dt__10BlackFaderFv = .text:0x8042C588; // type:function size:0x70 scope:weak align:4 +__dt__14WipeOutInFaderFv = .text:0x8042C5F8; // type:function size:0xE0 scope:weak align:4 +__sinit_wipe_cpp = .text:0x8042C6D8; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11MoviePlayerFv = .text:0x8042C700; // type:function size:0x150 scope:global align:4 +__dt__Q24Game12MovieContextFv = .text:0x8042C850; // type:function size:0x60 scope:weak align:4 +reset__Q24Game11MoviePlayerFv = .text:0x8042C8B0; // type:function size:0x2C scope:global align:4 +getActiveOrima__Q24Game11MoviePlayerFv = .text:0x8042C8DC; // type:function size:0x1C scope:global align:4 +getActiveGameCamera__Q24Game11MoviePlayerFv = .text:0x8042C8F8; // type:function size:0x1C scope:global align:4 +allocMovieHeap__Q24Game11MoviePlayerFUl = .text:0x8042C914; // type:function size:0xBC scope:global align:4 +play__Q24Game11MoviePlayerFRQ24Game12MoviePlayArg = .text:0x8042C9D0; // type:function size:0x60 scope:global align:4 +play__Q24Game11MoviePlayerFPQ24Game11MovieConfigRQ24Game12MoviePlayArgb = .text:0x8042CA30; // type:function size:0x33C scope:global align:4 +findConfig__Q24Game11MoviePlayerFPcPc = .text:0x8042CD6C; // type:function size:0x24 scope:global align:4 +__ct__Q24Game12MovieContextFv = .text:0x8042CD90; // type:function size:0xB0 scope:global align:4 +allocContexts__Q24Game11MoviePlayerFv = .text:0x8042CE40; // type:function size:0x9C scope:global align:4 +clearContexts__Q24Game11MoviePlayerFv = .text:0x8042CEDC; // type:function size:0xAC scope:global align:4 +clearSuspendedDemo__Q24Game11MoviePlayerFv = .text:0x8042CF88; // type:function size:0xAC scope:global align:4 +getNewContext__Q24Game11MoviePlayerFv = .text:0x8042D034; // type:function size:0x6C scope:global align:4 +getChild__Q24Game12MovieContextFv = .text:0x8042D0A0; // type:function size:0x8 scope:weak align:4 +setContext__Q24Game11MoviePlayerFPQ24Game12MovieContextPQ24Game11MovieConfigRQ24Game12MoviePlayArg = .text:0x8042D0A8; // type:function size:0x88 scope:global align:4 +loadResource__Q24Game11MoviePlayerFv = .text:0x8042D130; // type:function size:0x478 scope:global align:4 +parse__Q24Game11MoviePlayerFb = .text:0x8042D5A8; // type:function size:0xC0 scope:global align:4 +update__Q24Game11MoviePlayerFP10ControllerP10Controller = .text:0x8042D668; // type:function size:0x7C4 scope:global align:4 +update__Q25P2JME8TControlFP10ControllerP10Controller = .text:0x8042DE2C; // type:function size:0x2C scope:weak align:4 +draw__Q24Game11MoviePlayerFR8Graphics = .text:0x8042DE58; // type:function size:0x78 scope:global align:4 +start__Q24Game11MoviePlayerFP6Camera = .text:0x8042DED0; // type:function size:0x74 scope:global align:4 +stop__Q24Game11MoviePlayerFv = .text:0x8042DF44; // type:function size:0x120 scope:global align:4 +setCamera__Q24Game11MoviePlayerFP6Camera = .text:0x8042E064; // type:function size:0x324 scope:global align:4 +unsuspend__Q24Game11MoviePlayerFlb = .text:0x8042E388; // type:function size:0xD0 scope:global align:4 +resetFrame__Q24Game11MoviePlayerFv = .text:0x8042E458; // type:function size:0xC4 scope:global align:4 +setTransform__Q24Game11MoviePlayerFR10Vector3f = .text:0x8042E51C; // type:function size:0x9C scope:global align:4 +isPlaying__Q24Game11MoviePlayerFPc = .text:0x8042E5B8; // type:function size:0x34 scope:global align:4 +drawLoading__Q24Game11MoviePlayerFR8Graphics = .text:0x8042E5EC; // type:function size:0x148 scope:global align:4 +skip__Q24Game11MoviePlayerFv = .text:0x8042E734; // type:function size:0x108 scope:global align:4 +getNext__Q24Game12MovieContextFv = .text:0x8042E83C; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game11MoviePlayerFv = .text:0x8042E844; // type:function size:0xC4 scope:weak align:4 +invoke__30DelegateFv = .text:0x8042E908; // type:function size:0x30 scope:weak align:4 +__sinit_moviePlayer_cpp = .text:0x8042E938; // type:function size:0x28 scope:local align:4 +__ct__Q34Game5P2JST11ObjectActorFPCcPQ24Game11MoviePlayer = .text:0x8042E960; // type:function size:0xD0 scope:global align:4 +__dt__Q34Game5P2JST11ObjectActorFv = .text:0x8042EA30; // type:function size:0x68 scope:global align:4 +reset__Q34Game5P2JST11ObjectActorFv = .text:0x8042EA98; // type:function size:0x70 scope:global align:4 +update__Q34Game5P2JST11ObjectActorFv = .text:0x8042EB08; // type:function size:0x390 scope:global align:4 +entry__Q34Game5P2JST11ObjectActorFv = .text:0x8042EE98; // type:function size:0x68 scope:global align:4 +setShape__Q34Game5P2JST11ObjectActorFv = .text:0x8042EF00; // type:function size:0x1A4 scope:global align:4 +setAnim__Q34Game5P2JST11ObjectActorFv = .text:0x8042F0A4; // type:function size:0x128 scope:global align:4 +mountArchive__Q34Game5P2JST11ObjectActorFv = .text:0x8042F1CC; // type:function size:0x38 scope:global align:4 +parseUserData___Q34Game5P2JST11ObjectActorFUlPCv = .text:0x8042F204; // type:function size:0x260 scope:global align:4 +JSGFindNodeID__Q34Game5P2JST11ObjectActorCFPCc = .text:0x8042F464; // type:function size:0x6C scope:global align:4 +JSGGetNodeTransformation__Q34Game5P2JST11ObjectActorCFUlPA4_f = .text:0x8042F4D0; // type:function size:0x8C scope:global align:4 +JSGGetName__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F55C; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q34Game5P2JST11ObjectActorFUl = .text:0x8042F564; // type:function size:0x8 scope:global align:4 +JSGGetFlag__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F56C; // type:function size:0x8 scope:global align:4 +JSGSetData__Q34Game5P2JST11ObjectActorFUlPCvUl = .text:0x8042F574; // type:function size:0x38 scope:global align:4 +JSGSetTranslation__Q34Game5P2JST11ObjectActorFRC3Vec = .text:0x8042F5AC; // type:function size:0x1C scope:global align:4 +JSGGetTranslation__Q34Game5P2JST11ObjectActorCFP3Vec = .text:0x8042F5C8; // type:function size:0x1C scope:global align:4 +JSGSetRotation__Q34Game5P2JST11ObjectActorFRC3Vec = .text:0x8042F5E4; // type:function size:0x1C scope:global align:4 +JSGGetRotation__Q34Game5P2JST11ObjectActorCFP3Vec = .text:0x8042F600; // type:function size:0x1C scope:global align:4 +JSGSetScaling__Q34Game5P2JST11ObjectActorFRC3Vec = .text:0x8042F61C; // type:function size:0x1C scope:global align:4 +JSGGetScaling__Q34Game5P2JST11ObjectActorCFP3Vec = .text:0x8042F638; // type:function size:0x1C scope:global align:4 +JSGSetShape__Q34Game5P2JST11ObjectActorFUl = .text:0x8042F654; // type:function size:0x8 scope:global align:4 +JSGGetShape__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F65C; // type:function size:0x8 scope:global align:4 +JSGSetAnimation__Q34Game5P2JST11ObjectActorFUl = .text:0x8042F664; // type:function size:0x8 scope:global align:4 +JSGGetAnimation__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F66C; // type:function size:0x8 scope:global align:4 +JSGGetAnimationFrameMax__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F674; // type:function size:0x8 scope:global align:4 +JSGSetAnimationFrame__Q34Game5P2JST11ObjectActorFf = .text:0x8042F67C; // type:function size:0x4 scope:global align:4 +JSGGetAnimationFrame__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F680; // type:function size:0x8 scope:global align:4 +stop__Q34Game5P2JST11ObjectActorFv = .text:0x8042F688; // type:function size:0x4 scope:weak align:4 +start__Q34Game5P2JST11ObjectActorFv = .text:0x8042F68C; // type:function size:0x4 scope:weak align:4 +parseUserData___Q34Game5P2JST10ObjectBaseFUlPCv = .text:0x8042F690; // type:function size:0x4 scope:weak align:4 +__sinit_JSTObjectActor_cpp = .text:0x8042F694; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST11ObjectActorFUlPCv = .text:0x8042F6BC; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST11ObjectActorFv = .text:0x8042F6C4; // type:function size:0x8 scope:weak align:4 +@4@start__Q34Game5P2JST11ObjectActorFv = .text:0x8042F6CC; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST11ObjectActorFv = .text:0x8042F6D4; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST11ObjectActorFv = .text:0x8042F6DC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST12ObjectCameraFPCcPQ24Game11MoviePlayer = .text:0x8042F6E4; // type:function size:0xF0 scope:global align:4 +__dt__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F7D4; // type:function size:0x68 scope:global align:4 +reset__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F83C; // type:function size:0xA8 scope:global align:4 +update__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F8E4; // type:function size:0x4 scope:global align:4 +setProjection__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F8E8; // type:function size:0x24 scope:global align:4 +setView__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F90C; // type:function size:0x7C scope:global align:4 +updateCamera__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F988; // type:function size:0x6C scope:global align:4 +JSGGetName__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042F9F4; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q34Game5P2JST12ObjectCameraFUl = .text:0x8042F9FC; // type:function size:0x8 scope:global align:4 +JSGGetFlag__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FA04; // type:function size:0x8 scope:global align:4 +JSGSetData__Q34Game5P2JST12ObjectCameraFUlPCvUl = .text:0x8042FA0C; // type:function size:0x10 scope:global align:4 +JSGSetViewPosition__Q34Game5P2JST12ObjectCameraFRC3Vec = .text:0x8042FA1C; // type:function size:0x1C scope:global align:4 +JSGGetViewPosition__Q34Game5P2JST12ObjectCameraCFP3Vec = .text:0x8042FA38; // type:function size:0x1C scope:global align:4 +JSGSetViewTargetPosition__Q34Game5P2JST12ObjectCameraFRC3Vec = .text:0x8042FA54; // type:function size:0x1C scope:global align:4 +JSGGetViewTargetPosition__Q34Game5P2JST12ObjectCameraCFP3Vec = .text:0x8042FA70; // type:function size:0x1C scope:global align:4 +JSGSetViewRoll__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FA8C; // type:function size:0x8 scope:global align:4 +JSGGetViewRoll__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FA94; // type:function size:0x8 scope:global align:4 +JSGSetProjectionNear__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FA9C; // type:function size:0x8 scope:global align:4 +JSGGetProjectionNear__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FAA4; // type:function size:0x8 scope:global align:4 +JSGSetProjectionFar__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FAAC; // type:function size:0x8 scope:global align:4 +JSGGetProjectionFar__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FAB4; // type:function size:0x8 scope:global align:4 +JSGSetProjectionFovy__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FABC; // type:function size:0x8 scope:global align:4 +JSGGetProjectionFovy__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FAC4; // type:function size:0x8 scope:global align:4 +JSGSetProjectionAspect__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FACC; // type:function size:0x64 scope:global align:4 +JSGGetProjectionAspect__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FB30; // type:function size:0x8 scope:global align:4 +setCamera__Q34Game5P2JST12ObjectCameraFP6Camera = .text:0x8042FB38; // type:function size:0x1A0 scope:global align:4 +start__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FCD8; // type:function size:0x38 scope:global align:4 +stop__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FD10; // type:function size:0x50 scope:global align:4 +__sinit_JSTObjectCamera_cpp = .text:0x8042FD60; // type:function size:0x28 scope:local align:4 +@4@stop__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FD88; // type:function size:0x8 scope:weak align:4 +@4@start__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FD90; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FD98; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FDA0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST15ObjectGameActorFPCcPQ24Game11MoviePlayerPQ24Game8Creature = .text:0x8042FDA8; // type:function size:0x94 scope:global align:4 +reset__Q34Game5P2JST15ObjectGameActorFv = .text:0x8042FE3C; // type:function size:0x54 scope:global align:4 +stop__Q34Game5P2JST15ObjectGameActorFv = .text:0x8042FE90; // type:function size:0x124 scope:global align:4 +update__Q34Game5P2JST15ObjectGameActorFv = .text:0x8042FFB4; // type:function size:0x4D8 scope:global align:4 +JSGSetAnimation__Q34Game5P2JST15ObjectGameActorFUl = .text:0x8043048C; // type:function size:0x74 scope:global align:4 +JSGSetShape__Q34Game5P2JST15ObjectGameActorFUl = .text:0x80430500; // type:function size:0x8 scope:global align:4 +JSGSetTranslation__Q34Game5P2JST15ObjectGameActorFRC3Vec = .text:0x80430508; // type:function size:0x1C scope:global align:4 +JSGGetTranslation__Q34Game5P2JST15ObjectGameActorCFP3Vec = .text:0x80430524; // type:function size:0x58 scope:global align:4 +JSGSetRotation__Q34Game5P2JST15ObjectGameActorFRC3Vec = .text:0x8043057C; // type:function size:0x1C scope:global align:4 +JSGGetRotation__Q34Game5P2JST15ObjectGameActorCFP3Vec = .text:0x80430598; // type:function size:0x1C scope:global align:4 +JSGFindNodeID__Q34Game5P2JST15ObjectGameActorCFPCc = .text:0x804305B4; // type:function size:0xE0 scope:global align:4 +JSGGetNodeTransformation__Q34Game5P2JST15ObjectGameActorCFUlPA4_f = .text:0x80430694; // type:function size:0xD8 scope:global align:4 +parseUserData___Q34Game5P2JST15ObjectGameActorFUlPCv = .text:0x8043076C; // type:function size:0x138 scope:global align:4 +__dt__Q34Game5P2JST15ObjectGameActorFv = .text:0x804308A4; // type:function size:0x68 scope:weak align:4 +__sinit_JSTObjectGameActor_cpp = .text:0x8043090C; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST15ObjectGameActorFUlPCv = .text:0x80430934; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST15ObjectGameActorFv = .text:0x8043093C; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST15ObjectGameActorFv = .text:0x80430944; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST15ObjectGameActorFv = .text:0x8043094C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST12ObjectSystemFPCcPQ24Game11MoviePlayer = .text:0x80430954; // type:function size:0xA0 scope:global align:4 +__dt__Q34Game5P2JST12ObjectSystemFv = .text:0x804309F4; // type:function size:0x84 scope:global align:4 +destroyObjectAll__Q34Game5P2JST12ObjectSystemFv = .text:0x80430A78; // type:function size:0xA8 scope:global align:4 +reset__Q34Game5P2JST12ObjectSystemFv = .text:0x80430B20; // type:function size:0xF4 scope:global align:4 +entry__Q34Game5P2JST12ObjectSystemFv = .text:0x80430C14; // type:function size:0xAC scope:global align:4 +update__Q34Game5P2JST12ObjectSystemFv = .text:0x80430CC0; // type:function size:0xD4 scope:global align:4 +start__Q34Game5P2JST12ObjectSystemFv = .text:0x80430D94; // type:function size:0xD4 scope:global align:4 +stop__Q34Game5P2JST12ObjectSystemFv = .text:0x80430E68; // type:function size:0xD4 scope:global align:4 +findObject__Q34Game5P2JST12ObjectSystemCFPCcQ26JStage8TEObject = .text:0x80430F3C; // type:function size:0xFC scope:global align:4 +JSGFindObject__Q34Game5P2JST12ObjectSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x80431038; // type:function size:0x310 scope:global align:4 +JSGGetName__Q34Game5P2JST12ObjectSystemCFv = .text:0x80431348; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q34Game5P2JST12ObjectSystemFUl = .text:0x80431350; // type:function size:0x8 scope:global align:4 +JSGGetFlag__Q34Game5P2JST12ObjectSystemCFv = .text:0x80431358; // type:function size:0x8 scope:global align:4 +JSGSetData__Q34Game5P2JST12ObjectSystemFUlPCvUl = .text:0x80431360; // type:function size:0x10 scope:global align:4 +__sinit_JSTObjectSystem_cpp = .text:0x80431370; // type:function size:0x28 scope:local align:4 +@4@stop__Q34Game5P2JST12ObjectSystemFv = .text:0x80431398; // type:function size:0x8 scope:weak align:4 +@4@start__Q34Game5P2JST12ObjectSystemFv = .text:0x804313A0; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST12ObjectSystemFv = .text:0x804313A8; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST12ObjectSystemFv = .text:0x804313B0; // type:function size:0x8 scope:weak align:4 +findCreature__Q34Game5P2JST12ObjectSystemCFPCc = .text:0x804313B8; // type:function size:0x450 scope:global align:4 +__sinit_JSTFindCreature_cpp = .text:0x80431808; // type:function size:0x28 scope:local align:4 +__dt__Q34Game11MovieConfig6TParmsFv = .text:0x80431830; // type:function size:0x70 scope:weak align:4 +dump__Q24Game11MovieConfigFv = .text:0x804318A0; // type:function size:0x4 scope:global align:4 +isSkippable__Q24Game11MovieConfigFv = .text:0x804318A4; // type:function size:0x1C scope:global align:4 +isNeverSkippable__Q24Game11MovieConfigFv = .text:0x804318C0; // type:function size:0xC scope:global align:4 +is__Q24Game11MovieConfigFPc = .text:0x804318CC; // type:function size:0x54 scope:global align:4 +read__Q24Game11MovieConfigFR6Stream = .text:0x80431920; // type:function size:0x2D4 scope:global align:4 +construct__Q24Game9MovieListFv = .text:0x80431BF4; // type:function size:0x38 scope:global align:4 +__ct__Q24Game9MovieListFv = .text:0x80431C2C; // type:function size:0x1BC scope:global align:4 +__dt__Q24Game11MovieConfigFv = .text:0x80431DE8; // type:function size:0x98 scope:weak align:4 +findConfig__Q24Game9MovieListFPcPc = .text:0x80431E80; // type:function size:0xB0 scope:global align:4 +read__Q24Game9MovieListFR6Stream = .text:0x80431F30; // type:function size:0x164 scope:global align:4 +__dt__Q24Game9MovieListFv = .text:0x80432094; // type:function size:0xB4 scope:weak align:4 +__sinit_movieConfig_cpp = .text:0x80432148; // type:function size:0x28 scope:local align:4 +__ct__Q24Game10GameConfigFv = .text:0x80432170; // type:function size:0x130 scope:global align:4 +__dt__Q34Game10GameConfig5ParmsFv = .text:0x804322A0; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game10GameConfig5ParmsFv = .text:0x80432310; // type:function size:0x460 scope:weak align:4 +load__Q24Game10GameConfigFPc = .text:0x80432770; // type:function size:0x128 scope:global align:4 +__sinit_gameConfig_cpp = .text:0x80432898; // type:function size:0x3C scope:local align:4 +__dt__Q24Game10GameConfigFv = .text:0x804328D4; // type:function size:0x74 scope:weak align:4 +__ct__6FogMgrFv = .text:0x80432948; // type:function size:0x74 scope:global align:4 +off__6FogMgrFR8Graphics = .text:0x804329BC; // type:function size:0x40 scope:global align:4 +set__6FogMgrFR8Graphics = .text:0x804329FC; // type:function size:0xAC scope:global align:4 +setColor__6FogMgrFR6Color4 = .text:0x80432AA8; // type:function size:0x24 scope:global align:4 +getColor__6FogMgrFR6Color4 = .text:0x80432ACC; // type:function size:0x24 scope:global align:4 +__sinit_fogMgr_cpp = .text:0x80432AF0; // type:function size:0x28 scope:local align:4 +init__Q24ARAM3MgrFv = .text:0x80432B18; // type:function size:0x30 scope:global align:4 +__ct__Q24ARAM3MgrFv = .text:0x80432B48; // type:function size:0x80 scope:global align:4 +dvdToAram__Q24ARAM3MgrFPCcb = .text:0x80432BC8; // type:function size:0x24C scope:global align:4 +__dt__Q24ARAM4NodeFv = .text:0x80432E14; // type:function size:0x60 scope:weak align:4 +aramToMainRam__Q24ARAM3MgrFPCcPUcUlUl15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectioniPUl = .text:0x80432E74; // type:function size:0x154 scope:global align:4 +dump__Q24ARAM3MgrFv = .text:0x80432FC8; // type:function size:0xA0 scope:global align:4 +search__Q24ARAM3MgrFPCc = .text:0x80433068; // type:function size:0x70 scope:global align:4 +__dt__Q28Resource4NodeFv = .text:0x804330D8; // type:function size:0xDC scope:global align:4 +__ct__Q28Resource10MgrCommandFPc = .text:0x804331B4; // type:function size:0x138 scope:global align:4 +__dt__Q28Resource10MgrCommandFv = .text:0x804332EC; // type:function size:0xB8 scope:global align:4 +becomeCurrentHeap__Q28Resource10MgrCommandFv = .text:0x804333A4; // type:function size:0x70 scope:global align:4 +releaseCurrentHeap__Q28Resource10MgrCommandFv = .text:0x80433414; // type:function size:0x88 scope:global align:4 +getResource__Q28Resource10MgrCommandFv = .text:0x8043349C; // type:function size:0xC scope:global align:4 +setModeInvalid__Q28Resource10MgrCommandFv = .text:0x804334A8; // type:function size:0x1C scope:global align:4 +memoryCallBackFunc__Q28Resource10MgrCommandFv = .text:0x804334C4; // type:function size:0x48 scope:global align:4 +aramLoadCallBackFunc__Q28Resource10MgrCommandFv = .text:0x8043350C; // type:function size:0x94 scope:global align:4 +dvdLoadCallBackFunc__Q28Resource10MgrCommandFv = .text:0x804335A0; // type:function size:0xBC scope:global align:4 +userCallBackInvoke__Q28Resource10MgrCommandFv = .text:0x8043365C; // type:function size:0x74 scope:global align:4 +__ct__Q28Resource3MgrFP7JKRHeapUl = .text:0x804336D0; // type:function size:0x10C scope:global align:4 +drawDump__Q28Resource3MgrFR8Graphicsii = .text:0x804337DC; // type:function size:0x4 scope:global align:4 +createNewNode__Q28Resource3MgrFPCc = .text:0x804337E0; // type:function size:0x1B4 scope:global align:4 +loadResource__Q28Resource3MgrFPQ28Resource10MgrCommandPCcb = .text:0x80433994; // type:function size:0x188 scope:global align:4 +destroy__Q28Resource3MgrFPQ28Resource10MgrCommand = .text:0x80433B1C; // type:function size:0x70 scope:global align:4 +destroyAll__Q28Resource3MgrFv = .text:0x80433B8C; // type:function size:0x64 scope:global align:4 +sync__Q28Resource3MgrFPQ28Resource10MgrCommandb = .text:0x80433BF0; // type:function size:0x1E0 scope:global align:4 +delFinishCommand__Q28Resource3MgrFv = .text:0x80433DD0; // type:function size:0x130 scope:global align:4 +searchCommand__Q28Resource3MgrFPQ28Resource10MgrCommand = .text:0x80433F00; // type:function size:0x30 scope:global align:4 +invoke__33DelegateFv = .text:0x80433F30; // type:function size:0x30 scope:weak align:4 +@24@__dt__Q28Resource4NodeFv = .text:0x80433F60; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Resource10MgrCommandFv = .text:0x80433F68; // type:function size:0x8 scope:weak align:4 +init__Q28Resource5Mgr2DFP7JKRHeap = .text:0x80433F70; // type:function size:0xB0 scope:global align:4 +attachResource__Q23Sys16MatBaseAnimationFPvP12J3DModelData = .text:0x80434020; // type:function size:0x84 scope:global align:4 +getFrameMax__Q23Sys16MatBaseAnimationFv = .text:0x804340A4; // type:function size:0x90 scope:global align:4 +__ct__Q23Sys15MatTexAnimationFv = .text:0x80434134; // type:function size:0x2C scope:global align:4 +onAttachResource__Q23Sys15MatTexAnimationFPv = .text:0x80434160; // type:function size:0x88 scope:global align:4 +set__Q23Sys15MatTexAnimationFv = .text:0x804341E8; // type:function size:0x2C scope:global align:4 +remove__Q23Sys15MatTexAnimationFv = .text:0x80434214; // type:function size:0x2C scope:global align:4 +__ct__Q23Sys18MatTevRegAnimationFv = .text:0x80434240; // type:function size:0x30 scope:global align:4 +onAttachResource__Q23Sys18MatTevRegAnimationFPv = .text:0x80434270; // type:function size:0x8C scope:global align:4 +set__Q23Sys18MatTevRegAnimationFv = .text:0x804342FC; // type:function size:0x2C scope:global align:4 +remove__Q23Sys18MatTevRegAnimationFv = .text:0x80434328; // type:function size:0x2C scope:global align:4 +__ct__Q23Sys15MatBaseAnimatorFv = .text:0x80434354; // type:function size:0x18 scope:global align:4 +start__Q23Sys15MatBaseAnimatorFPQ23Sys16MatBaseAnimation = .text:0x8043436C; // type:function size:0x70 scope:global align:4 +setCurrentFrame__Q23Sys15MatBaseAnimatorFf = .text:0x804343DC; // type:function size:0x170 scope:global align:4 +animate__Q23Sys15MatBaseAnimatorFf = .text:0x8043454C; // type:function size:0x78 scope:global align:4 +do_animate__Q23Sys15MatBaseAnimatorFf = .text:0x804345C4; // type:function size:0x4 scope:weak align:4 +do_animate__Q23Sys15MatLoopAnimatorFf = .text:0x804345C8; // type:function size:0x1B0 scope:global align:4 +onStart__Q23Sys17MatRepeatAnimatorFv = .text:0x80434778; // type:function size:0xC scope:global align:4 +do_animate__Q23Sys17MatRepeatAnimatorFf = .text:0x80434784; // type:function size:0x328 scope:global align:4 +onStart__Q23Sys15MatBaseAnimatorFv = .text:0x80434AAC; // type:function size:0x4 scope:weak align:4 +getAnmBase__Q23Sys18MatTevRegAnimationFv = .text:0x80434AB0; // type:function size:0x8 scope:weak align:4 +getAnmBase__Q23Sys15MatTexAnimationFv = .text:0x80434AB8; // type:function size:0x8 scope:weak align:4 +__ct__Q29P2DScreen3MgrFv = .text:0x80434AC0; // type:function size:0x64 scope:global align:4 +addCallBack__Q29P2DScreen3MgrFUxPQ29P2DScreen4Node = .text:0x80434B24; // type:function size:0x138 scope:global align:4 +addCallBackPane__Q29P2DScreen3MgrFP7J2DPanePQ29P2DScreen4Node = .text:0x80434C5C; // type:function size:0x84 scope:global align:4 +update__Q29P2DScreen3MgrFv = .text:0x80434CE0; // type:function size:0x4C scope:global align:4 +draw__Q29P2DScreen3MgrFR8GraphicsR14J2DGrafContext = .text:0x80434D2C; // type:function size:0x80 scope:global align:4 +__ct__Q29P2DScreen10Mgr_tuningFv = .text:0x80434DAC; // type:function size:0x88 scope:global align:4 +draw__Q29P2DScreen10Mgr_tuningFR8GraphicsR14J2DGrafContext = .text:0x80434E34; // type:function size:0x128 scope:global align:4 +doInit__Q35P2JME5Movie10WindowPaneFv = .text:0x80434F5C; // type:function size:0x20 scope:global align:4 +update__Q35P2JME5Movie10WindowPaneFv = .text:0x80434F7C; // type:function size:0x164 scope:global align:4 +moveWindow__Q35P2JME5Movie10WindowPaneFb = .text:0x804350E0; // type:function size:0x278 scope:global align:4 +open__Q35P2JME5Movie10WindowPaneFf = .text:0x80435358; // type:function size:0x48 scope:global align:4 +doInit__Q35P2JME5Movie8AbtnPaneFv = .text:0x804353A0; // type:function size:0x54 scope:global align:4 +update__Q35P2JME5Movie8AbtnPaneFv = .text:0x804353F4; // type:function size:0x170 scope:global align:4 +update__Q35P2JME5Movie13PodIconScreenFv = .text:0x80435564; // type:function size:0x438 scope:global align:4 +__ct__Q35P2JME5Movie8TControlFv = .text:0x8043599C; // type:function size:0x80 scope:global align:4 +__dt__Q35P2JME6Window8TControlFv = .text:0x80435A1C; // type:function size:0x70 scope:weak align:4 +onInit__Q35P2JME5Movie8TControlFv = .text:0x80435A8C; // type:function size:0x7B0 scope:global align:4 +reset__Q35P2JME5Movie8TControlFv = .text:0x8043623C; // type:function size:0x38 scope:global align:4 +setMode__Q35P2JME5Movie8TControlFQ45P2JME5Movie8TControl9EModeFlag = .text:0x80436274; // type:function size:0x4E0 scope:global align:4 +open__Q35P2JME5Movie19MessageWindowScreenFf = .text:0x80436754; // type:function size:0x24 scope:weak align:4 +update__Q35P2JME5Movie8TControlFP10ControllerP10Controller = .text:0x80436778; // type:function size:0x228 scope:global align:4 +draw__Q35P2JME5Movie8TControlFR8Graphics = .text:0x804369A0; // type:function size:0xCC scope:global align:4 +__dt__Q35P2JME5Movie8TControlFv = .text:0x80436A6C; // type:function size:0x80 scope:weak align:4 +draw__Q35P2JME6Window8TControlFPA4_fPA4_f = .text:0x80436AEC; // type:function size:0x20 scope:weak align:4 +createRenderingProcessor__Q35P2JME6Window8TControlFv = .text:0x80436B0C; // type:function size:0x7C scope:weak align:4 +createSequenceProcessor__Q35P2JME6Window8TControlFv = .text:0x80436B88; // type:function size:0x80 scope:weak align:4 +setMessageID__Q25P2JME8TControlFUx = .text:0x80436C08; // type:function size:0x38 scope:weak align:4 +createReference__Q25P2JME8TControlFv = .text:0x80436C40; // type:function size:0x10 scope:weak align:4 +createResourceContainer__Q25P2JME8TControlFv = .text:0x80436C50; // type:function size:0x10 scope:weak align:4 +__dt__Q35P2JME5Movie19MessageWindowScreenFv = .text:0x80436C60; // type:function size:0xA4 scope:weak align:4 +__dt__Q35P2JME5Movie13PodIconScreenFv = .text:0x80436D04; // type:function size:0xA4 scope:weak align:4 +__dt__Q35P2JME5Movie8AbtnPaneFv = .text:0x80436DA8; // type:function size:0x80 scope:weak align:4 +__dt__Q35P2JME5Movie10WindowPaneFv = .text:0x80436E28; // type:function size:0x80 scope:weak align:4 +__sinit_movieMessage_cpp = .text:0x80436EA8; // type:function size:0x28 scope:local align:4 +setPauseAndDraw__Q24Game11MoviePlayerFPQ24Game11MovieConfig = .text:0x80436ED0; // type:function size:0x70 scope:global align:4 +clearPauseAndDraw__Q24Game11MoviePlayerFv = .text:0x80436F40; // type:function size:0x498 scope:global align:4 +__sinit_moviePlayerPauseAndDraw_cpp = .text:0x804373D8; // type:function size:0x28 scope:local align:4 +__ct__Q34Game5P2JST18ObjectSpecialActorFPCcPQ24Game11MoviePlayer = .text:0x80437400; // type:function size:0x58 scope:global align:4 +reset__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x80437458; // type:function size:0x5C scope:global align:4 +stop__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x804374B4; // type:function size:0x4 scope:global align:4 +update__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x804374B8; // type:function size:0x254 scope:global align:4 +JSGSetAnimation__Q34Game5P2JST18ObjectSpecialActorFUl = .text:0x8043770C; // type:function size:0x84 scope:global align:4 +parseUserData___Q34Game5P2JST18ObjectSpecialActorFUlPCv = .text:0x80437790; // type:function size:0x4 scope:global align:4 +__dt__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x80437794; // type:function size:0x68 scope:weak align:4 +__sinit_JSTObjectSpecialActor_cpp = .text:0x804377FC; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST18ObjectSpecialActorFUlPCv = .text:0x80437824; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x8043782C; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x80437834; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x8043783C; // type:function size:0x8 scope:weak align:4 +__ct__Q25P2JME18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x80437844; // type:function size:0x84 scope:global align:4 +do_begin__Q25P2JME18TSequenceProcessorFPCvPCc = .text:0x804378C8; // type:function size:0x34 scope:global align:4 +do_end__Q25P2JME18TSequenceProcessorFv = .text:0x804378FC; // type:function size:0x4 scope:global align:4 +do_tag__Q25P2JME18TSequenceProcessorFUlPCvUl = .text:0x80437900; // type:function size:0xA4 scope:global align:4 +do_systemTagCode__Q25P2JME18TSequenceProcessorFUsPCvUl = .text:0x804379A4; // type:function size:0x8 scope:global align:4 +do_isReady__Q25P2JME18TSequenceProcessorFv = .text:0x804379AC; // type:function size:0x1D8 scope:global align:4 +doFastForwardSE__Q25P2JME18TSequenceProcessorFv = .text:0x80437B84; // type:function size:0x4 scope:weak align:4 +do_jump_isReady__Q25P2JME18TSequenceProcessorFv = .text:0x80437B88; // type:function size:0x8 scope:global align:4 +do_jump__Q25P2JME18TSequenceProcessorFPCvPCc = .text:0x80437B90; // type:function size:0xC scope:global align:4 +do_branch_query__Q25P2JME18TSequenceProcessorFUs = .text:0x80437B9C; // type:function size:0x4 scope:global align:4 +do_branch_queryResult__Q25P2JME18TSequenceProcessorFv = .text:0x80437BA0; // type:function size:0x8 scope:global align:4 +do_branch__Q25P2JME18TSequenceProcessorFPCvPCc = .text:0x80437BA8; // type:function size:0xC scope:global align:4 +do_character__Q25P2JME18TSequenceProcessorFi = .text:0x80437BB4; // type:function size:0xA8 scope:global align:4 +doCharacterSE__Q25P2JME18TSequenceProcessorFi = .text:0x80437C5C; // type:function size:0x4 scope:weak align:4 +doCharacterSEStart__Q25P2JME18TSequenceProcessorFv = .text:0x80437C60; // type:function size:0x4 scope:weak align:4 +tagControl__Q25P2JME18TSequenceProcessorFUsPCvUl = .text:0x80437C64; // type:function size:0xF4 scope:global align:4 +setAbtnWait__Q25P2JME18TSequenceProcessorFv = .text:0x80437D58; // type:function size:0x4C scope:global align:4 +doCharacterSEEnd__Q25P2JME18TSequenceProcessorFv = .text:0x80437DA4; // type:function size:0x4 scope:weak align:4 +resetAbtnWait__Q25P2JME18TSequenceProcessorFv = .text:0x80437DA8; // type:function size:0x60 scope:global align:4 +doResetAbtnWaitSE__Q25P2JME18TSequenceProcessorFv = .text:0x80437E08; // type:function size:0x2C scope:global align:4 +reset__Q25P2JME18TSequenceProcessorFv = .text:0x80437E34; // type:function size:0x18 scope:global align:4 +__dt__Q25P2JME18TSequenceProcessorFv = .text:0x80437E4C; // type:function size:0x60 scope:weak align:4 +create__Q25P2JME3MgrFP10JKRExpHeap = .text:0x80437EAC; // type:function size:0x40 scope:global align:4 +__ct__Q25P2JME3MgrFP10JKRExpHeap = .text:0x80437EEC; // type:function size:0x170 scope:global align:4 +__dt__Q25P2JME3MgrFv = .text:0x8043805C; // type:function size:0x68 scope:global align:4 +setupMessage__Q25P2JME3MgrFv = .text:0x804380C4; // type:function size:0x100 scope:global align:4 +setupTex__Q25P2JME3MgrFv = .text:0x804381C4; // type:function size:0xF8 scope:global align:4 +setupFont__Q25P2JME3MgrFPCcP10JKRExpHeap = .text:0x804382BC; // type:function size:0x248 scope:global align:4 +createImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDi = .text:0x80438504; // type:function size:0x1A8 scope:global align:4 +setImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDiP10JUTTexture = .text:0x804386AC; // type:function size:0xC4 scope:global align:4 +getImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDi = .text:0x80438770; // type:function size:0xB8 scope:global align:4 +setupMessageResource__Q25P2JME3MgrFP10JKRArchivePCc = .text:0x80438828; // type:function size:0x104 scope:global align:4 +setupColor__Q25P2JME3MgrFP10JKRArchivePCc = .text:0x8043892C; // type:function size:0xE0 scope:global align:4 +__sinit_messageMgr_cpp = .text:0x80438A0C; // type:function size:0x28 scope:local align:4 +__ct__Q25P2JME8TControlFv = .text:0x80438A34; // type:function size:0x74 scope:global align:4 +setController__Q25P2JME8TControlFP10ControllerP10Controller = .text:0x80438AA8; // type:function size:0x24 scope:global align:4 +setFont__Q25P2JME8TControlFP7JUTFont = .text:0x80438ACC; // type:function size:0x6C scope:global align:4 +setRubyFont__Q25P2JME8TControlFP7JUTFont = .text:0x80438B38; // type:function size:0x9C scope:global align:4 +init__Q25P2JME8TControlFv = .text:0x80438BD4; // type:function size:0x104 scope:global align:4 +onInit__Q25P2JME8TControlFv = .text:0x80438CD8; // type:function size:0x8 scope:weak align:4 +createRenderingProcessor__Q25P2JME8TControlFv = .text:0x80438CE0; // type:function size:0x7C scope:weak align:4 +createSequenceProcessor__Q25P2JME8TControlFv = .text:0x80438D5C; // type:function size:0x80 scope:weak align:4 +reset__Q25P2JME8TControlFv = .text:0x80438DDC; // type:function size:0x70 scope:global align:4 +update__Q25P2JME8TControlFv = .text:0x80438E4C; // type:function size:0x8C scope:global align:4 +update__Q25P2JME19TRenderingProcessorFv = .text:0x80438ED8; // type:function size:0x4 scope:weak align:4 +draw__Q25P2JME8TControlFR8Graphics = .text:0x80438EDC; // type:function size:0x20 scope:global align:4 +draw__Q25P2JME8TControlFPA4_fPA4_f = .text:0x80438EFC; // type:function size:0x80 scope:global align:4 +setLocate__Q25P2JME8TControlFii = .text:0x80438F7C; // type:function size:0x50 scope:global align:4 +setMessageID__Q25P2JME8TControlFPc = .text:0x80438FCC; // type:function size:0x54 scope:global align:4 +setMessageID__Q25P2JME8TControlFUlUl = .text:0x80439020; // type:function size:0x84 scope:global align:4 +setMessageCode__Q25P2JME8TControlFUsUs = .text:0x804390A4; // type:function size:0x7C scope:global align:4 +setMessageCode__Q25P2JME8TControlFUl = .text:0x80439120; // type:function size:0x70 scope:global align:4 +__dt__Q25P2JME8TControlFv = .text:0x80439190; // type:function size:0x60 scope:weak align:4 +__ct__Q25P2JME23TRenderingProcessorBaseFPCQ28JMessage10TReference = .text:0x804391F0; // type:function size:0x3C scope:global align:4 +do_tag__Q25P2JME23TRenderingProcessorBaseFUlPCvUl = .text:0x8043922C; // type:function size:0x174 scope:global align:4 +tagFont__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x804393A0; // type:function size:0x8 scope:weak align:4 +tagRuby__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x804393A8; // type:function size:0x8 scope:weak align:4 +tagSize__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x804393B0; // type:function size:0x8 scope:weak align:4 +tagColor__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x804393B8; // type:function size:0x8 scope:weak align:4 +tagPosition__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x804393C0; // type:function size:0x8 scope:weak align:4 +tagControl__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x804393C8; // type:function size:0x8 scope:weak align:4 +tagColorEX__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x804393D0; // type:function size:0x8 scope:weak align:4 +tagImage__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x804393D8; // type:function size:0x8 scope:weak align:4 +__ct__Q25P2JME19TRenderingProcessorFPCQ28JMessage10TReference = .text:0x804393E0; // type:function size:0x218 scope:global align:4 +__dt__Q25P2JME23TRenderingProcessorBaseFv = .text:0x804395F8; // type:function size:0x60 scope:weak align:4 +do_begin__Q25P2JME19TRenderingProcessorFPCvPCc = .text:0x80439658; // type:function size:0xE8 scope:global align:4 +setDrawLocate__Q25P2JME19TRenderingProcessorFv = .text:0x80439740; // type:function size:0x3B0 scope:weak align:4 +newParagraph__Q25P2JME19TRenderingProcessorFv = .text:0x80439AF0; // type:function size:0xDC scope:global align:4 +do_character__Q25P2JME19TRenderingProcessorFi = .text:0x80439BCC; // type:function size:0x31C scope:global align:4 +do_select_begin__Q25P2JME19TRenderingProcessorFUl = .text:0x80439EE8; // type:function size:0xB8 scope:global align:4 +do_select_end__Q25P2JME19TRenderingProcessorFv = .text:0x80439FA0; // type:function size:0x6C scope:global align:4 +do_select_separate__Q25P2JME19TRenderingProcessorFv = .text:0x8043A00C; // type:function size:0xBC scope:global align:4 +do_tag__Q25P2JME19TRenderingProcessorFUlPCvUl = .text:0x8043A0C8; // type:function size:0x174 scope:global align:4 +do_systemTagCode__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A23C; // type:function size:0x8 scope:global align:4 +tagColor__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A244; // type:function size:0x2C scope:global align:4 +tagSize__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A270; // type:function size:0x3C scope:global align:4 +tagRuby__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A2AC; // type:function size:0x164 scope:global align:4 +tagFont__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A410; // type:function size:0x8 scope:global align:4 +tagColorEX__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A418; // type:function size:0x24 scope:global align:4 +tagControl__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A43C; // type:function size:0x6C scope:global align:4 +doTagControlAbtnWait__Q25P2JME19TRenderingProcessorFv = .text:0x8043A4A8; // type:function size:0x14 scope:weak align:4 +tagPosition__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A4BC; // type:function size:0x71C scope:global align:4 +initRuby__Q25P2JME19TRenderingProcessorFv = .text:0x8043ABD8; // type:function size:0x1C scope:global align:4 +drawRuby__Q25P2JME19TRenderingProcessorFv = .text:0x8043ABF4; // type:function size:0x360 scope:global align:4 +tagImage__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043AF54; // type:function size:0x438 scope:global align:4 +doDrawLetter__Q25P2JME19TRenderingProcessorFffffib = .text:0x8043B38C; // type:function size:0x440 scope:global align:4 +doDrawRuby__Q25P2JME19TRenderingProcessorFffffib = .text:0x8043B7CC; // type:function size:0x29C scope:global align:4 +doDrawImage__Q25P2JME19TRenderingProcessorFP10JUTTextureffff = .text:0x8043BA68; // type:function size:0x74 scope:global align:4 +setImageGX__Q25P2JME19TRenderingProcessorFv = .text:0x8043BADC; // type:function size:0x334 scope:global align:4 +drawImage__Q25P2JME19TRenderingProcessorFP10JUTTextureffff = .text:0x8043BE10; // type:function size:0x4F4 scope:global align:4 +reset__Q25P2JME19TRenderingProcessorFv = .text:0x8043C304; // type:function size:0x10 scope:global align:4 +calcWidth__Q25P2JME19TRenderingProcessorFP7JUTFontifb = .text:0x8043C314; // type:function size:0x128 scope:global align:4 +setLineWidth__Q25P2JME19TRenderingProcessorFv = .text:0x8043C43C; // type:function size:0x24 scope:global align:4 +resetLineWidth__Q25P2JME19TRenderingProcessorFv = .text:0x8043C460; // type:function size:0xD8 scope:global align:4 +setOnePageLine__Q25P2JME19TRenderingProcessorFv = .text:0x8043C538; // type:function size:0x40 scope:global align:4 +resetOnePageLine__Q25P2JME19TRenderingProcessorFv = .text:0x8043C578; // type:function size:0xD8 scope:global align:4 +setPageInfo__Q25P2JME19TRenderingProcessorFv = .text:0x8043C650; // type:function size:0x8C scope:global align:4 +preProcCode__Q25P2JME19TRenderingProcessorFUi = .text:0x8043C6DC; // type:function size:0x20 scope:global align:4 +preProcID__Q25P2JME19TRenderingProcessorFUiUi = .text:0x8043C6FC; // type:function size:0x20 scope:global align:4 +preProcCenteringCode__Q25P2JME19TRenderingProcessorFUi = .text:0x8043C71C; // type:function size:0x39C scope:global align:4 +preProcCenteringID__Q25P2JME19TRenderingProcessorFUiUi = .text:0x8043CAB8; // type:function size:0x3AC scope:global align:4 +setFont__Q25P2JME19TRenderingProcessorFP7JUTFont = .text:0x8043CE64; // type:function size:0x8 scope:global align:4 +setTextBoxInfo__Q25P2JME19TRenderingProcessorFP7J2DPane = .text:0x8043CE6C; // type:function size:0x44C scope:global align:4 +__dt__Q25P2JME19TRenderingProcessorFv = .text:0x8043D2B8; // type:function size:0x70 scope:weak align:4 +do_character__Q25P2JME23TRenderingProcessorBaseFi = .text:0x8043D328; // type:function size:0x4 scope:weak align:4 +convertU64ToMessageID__5P2JMEFUxPUlPUl = .text:0x8043D32C; // type:function size:0x48 scope:global align:4 +convertCharToMessageID__5P2JMEFPcPUlPUl = .text:0x8043D374; // type:function size:0x128 scope:global align:4 +entry__15ModelEffectDataFv = .text:0x8043D49C; // type:function size:0x6C scope:global align:4 +allocModelData__15ModelEffectDataFi = .text:0x8043D508; // type:function size:0x10C scope:global align:4 +entryModelEffect__11ParticleMgrFP15ModelEffectData = .text:0x8043D614; // type:function size:0x24 scope:global align:4 +createModelEffect__11ParticleMgrFP20ModelEffectCreateArg = .text:0x8043D638; // type:function size:0x11C scope:global align:4 +doAnimation__11ModelEffectFv = .text:0x8043D754; // type:function size:0x1A8 scope:global align:4 +getLODCylinder__11ModelEffectFRQ23Sys8Cylinder = .text:0x8043D8FC; // type:function size:0x4 scope:weak align:4 +useCylinderLOD__11ModelEffectFv = .text:0x8043D900; // type:function size:0x8 scope:weak align:4 +doEntry__11ModelEffectFv = .text:0x8043D908; // type:function size:0x98 scope:global align:4 +changeMaterial__11ModelEffectFv = .text:0x8043D9A0; // type:function size:0x4 scope:weak align:4 +doSetView__11ModelEffectFi = .text:0x8043D9A4; // type:function size:0x78 scope:global align:4 +doViewCalc__11ModelEffectFv = .text:0x8043DA1C; // type:function size:0x24 scope:global align:4 +doAnimation__11ParticleMgrFv = .text:0x8043DA40; // type:function size:0x2C scope:global align:4 +doEntry__11ParticleMgrFv = .text:0x8043DA6C; // type:function size:0x2C scope:global align:4 +doSetView__11ParticleMgrFi = .text:0x8043DA98; // type:function size:0x2C scope:global align:4 +doViewCalc__11ParticleMgrFv = .text:0x8043DAC4; // type:function size:0x2C scope:global align:4 +__sinit_modelEffect_cpp = .text:0x8043DAF0; // type:function size:0x28 scope:local align:4 +do_word__Q25P2JME10TReferenceCFUl = .text:0x8043DB18; // type:function size:0x74 scope:global align:4 +__dt__Q25P2JME10TReferenceFv = .text:0x8043DB8C; // type:function size:0x60 scope:weak align:4 +__ct__Q25P2JME13SimpleMessageFv = .text:0x8043DBEC; // type:function size:0x4 scope:global align:4 +init__Q25P2JME13SimpleMessageFv = .text:0x8043DBF0; // type:function size:0x6C scope:global align:4 +drawMessageID__Q25P2JME13SimpleMessageFR8GraphicsUlUl = .text:0x8043DC5C; // type:function size:0x80 scope:global align:4 +attach__Q28SysShape8AnimInfoFP12J3DModelDataPv = .text:0x8043DCDC; // type:function size:0x80 scope:global align:4 +load__Q28SysShape7AnimMgrFP13JKRFileLoaderPcP12J3DModelDataP13JKRFileLoaderPc = .text:0x8043DD5C; // type:function size:0x120 scope:global align:4 +load__Q28SysShape7AnimMgrFR6StreamP12J3DModelDataP13JKRFileLoaderPc = .text:0x8043DE7C; // type:function size:0x110 scope:global align:4 +read__Q28SysShape7AnimMgrFR6Stream = .text:0x8043DF8C; // type:function size:0xD8 scope:global align:4 +connectBasArc__Q28SysShape7AnimMgrFPcPcP13JKRFileLoader = .text:0x8043E064; // type:function size:0xF8 scope:global align:4 +registerSoundViewer__Q28SysShape7AnimMgrFPQ26PSGame16SoundCreatureMgr = .text:0x8043E15C; // type:function size:0x54 scope:global align:4 +__sinit_sysShapeAnimation_cpp = .text:0x8043E1B0; // type:function size:0x28 scope:local align:4 +__ct__Q28SysShape5ModelFP12J3DModelDataUlUl = .text:0x8043E1D8; // type:function size:0xC4 scope:global align:4 +enableMaterialAnim__Q28SysShape5ModelFP12J3DModelDatai = .text:0x8043E29C; // type:function size:0x17C scope:global align:4 +enableMaterialAnim__Q28SysShape5ModelFi = .text:0x8043E418; // type:function size:0x174 scope:global align:4 +getMatrix__Q28SysShape5ModelFi = .text:0x8043E58C; // type:function size:0x48 scope:global align:4 +getRoughBoundingRadius__Q28SysShape5ModelFv = .text:0x8043E5D4; // type:function size:0x15C scope:global align:4 +getRoughCenter__Q28SysShape5ModelFv = .text:0x8043E730; // type:function size:0x174 scope:global align:4 +isVisible__Q28SysShape5ModelFRQ23Sys6Sphere = .text:0x8043E8A4; // type:function size:0x98 scope:global align:4 +jointVisible__Q28SysShape5ModelFbi = .text:0x8043E93C; // type:function size:0x80 scope:global align:4 +hide__Q28SysShape5ModelFv = .text:0x8043E9BC; // type:function size:0x58 scope:global align:4 +show__Q28SysShape5ModelFv = .text:0x8043EA14; // type:function size:0x58 scope:global align:4 +hidePackets__Q28SysShape5ModelFv = .text:0x8043EA6C; // type:function size:0x44 scope:global align:4 +showPackets__Q28SysShape5ModelFv = .text:0x8043EAB0; // type:function size:0x44 scope:global align:4 +initJoints__Q28SysShape5ModelFv = .text:0x8043EAF4; // type:function size:0xBC scope:global align:4 +__dt__Q28SysShape5JointFv = .text:0x8043EBB0; // type:function size:0x60 scope:weak align:4 +__ct__Q28SysShape5JointFv = .text:0x8043EC10; // type:function size:0x5C scope:weak align:4 +initJointsRec__Q28SysShape5ModelFiPQ28SysShape5Joint = .text:0x8043EC6C; // type:function size:0x330 scope:global align:4 +getJntNo__8J3DJointCFv = .text:0x8043EF9C; // type:function size:0x8 scope:weak align:4 +getYounger__8J3DJointFv = .text:0x8043EFA4; // type:function size:0x8 scope:weak align:4 +getChild__8J3DJointFv = .text:0x8043EFAC; // type:function size:0x8 scope:weak align:4 +getJointIndex__Q28SysShape5ModelFPc = .text:0x8043EFB4; // type:function size:0x30 scope:global align:4 +getJoint__Q28SysShape5ModelFPc = .text:0x8043EFE4; // type:function size:0x5C scope:global align:4 +setViewCalcModeImm__Q28SysShape5ModelFv = .text:0x8043F040; // type:function size:0xC scope:global align:4 +setViewCalcModeInd__Q28SysShape5ModelFv = .text:0x8043F04C; // type:function size:0xC scope:global align:4 +viewCalc__Q28SysShape5ModelFv = .text:0x8043F058; // type:function size:0x68 scope:global align:4 +setCurrentViewNo__Q28SysShape5ModelFUl = .text:0x8043F0C0; // type:function size:0x4C scope:global align:4 +isMtxImmediate__Q28SysShape5ModelFv = .text:0x8043F10C; // type:function size:0x14 scope:global align:4 +isModel__Q28SysShape5ModelFv = .text:0x8043F120; // type:function size:0x8 scope:weak align:4 +isVisible__Q28SysShape5ModelFv = .text:0x8043F128; // type:function size:0x8 scope:weak align:4 +jointVisible__Q28SysShape5ModelFbPQ28SysShape5Joint = .text:0x8043F130; // type:function size:0x30 scope:weak align:4 +__sinit_sysShapeModel_cpp = .text:0x8043F160; // type:function size:0x28 scope:local align:4 +__ct__Q35P2JME6Window8DrawInfoFv = .text:0x8043F188; // type:function size:0x50 scope:global align:4 +__dt__Q35P2JME6Window8DrawInfoFv = .text:0x8043F1D8; // type:function size:0x60 scope:weak align:4 +searchDrawInfo__Q35P2JME6Window11DrawInfoMgrFi = .text:0x8043F238; // type:function size:0x30 scope:global align:4 +getDrawInfo__Q35P2JME6Window11DrawInfoMgrFi = .text:0x8043F268; // type:function size:0x60 scope:global align:4 +__ct__Q35P2JME6Window18TSequenceProcessorFPQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x8043F2C8; // type:function size:0x3C scope:global align:4 +doCharacterSE__Q35P2JME6Window18TSequenceProcessorFi = .text:0x8043F304; // type:function size:0xA4 scope:global align:4 +doCharacterSEStart__Q35P2JME6Window18TSequenceProcessorFv = .text:0x8043F3A8; // type:function size:0x7C scope:global align:4 +doCharacterSEEnd__Q35P2JME6Window18TSequenceProcessorFv = .text:0x8043F424; // type:function size:0x7C scope:global align:4 +doFastForwardSE__Q35P2JME6Window18TSequenceProcessorFv = .text:0x8043F4A0; // type:function size:0x5C scope:global align:4 +__ct__Q35P2JME6Window19TRenderingProcessorFPQ28JMessage10TReference = .text:0x8043F4FC; // type:function size:0x60 scope:global align:4 +doDrawCommon__Q35P2JME6Window19TRenderingProcessorFffP7MatrixfP7Matrixf = .text:0x8043F55C; // type:function size:0x344 scope:global align:4 +doGetDrawInfo__Q35P2JME6Window19TRenderingProcessorFPQ35P2JME6Window8DrawInfo = .text:0x8043F8A0; // type:function size:0x4 scope:weak align:4 +makeMatrix__Q35P2JME6Window19TRenderingProcessorFP7MatrixfPQ35P2JME6Window8DrawInfof10Vector3 = .text:0x8043F8A4; // type:function size:0x284 scope:global align:4 +doDrawLetter__Q35P2JME6Window19TRenderingProcessorFffffib = .text:0x8043FB28; // type:function size:0x188 scope:global align:4 +doDrawRuby__Q35P2JME6Window19TRenderingProcessorFffffib = .text:0x8043FCB0; // type:function size:0x17C scope:global align:4 +doDrawImage__Q35P2JME6Window19TRenderingProcessorFP10JUTTextureffff = .text:0x8043FE2C; // type:function size:0x1DC scope:global align:4 +update__Q35P2JME6Window19TRenderingProcessorFv = .text:0x80440008; // type:function size:0x40 scope:global align:4 +reset__Q35P2JME6Window19TRenderingProcessorFv = .text:0x80440048; // type:function size:0xA4 scope:global align:4 +__ct__Q35P2JME6Window8TControlFv = .text:0x804400EC; // type:function size:0x50 scope:global align:4 +initRenderingProcessor__Q35P2JME6Window8TControlFUl = .text:0x8044013C; // type:function size:0x100 scope:global align:4 +update__Q35P2JME6Window8TControlFP10ControllerP10Controller = .text:0x8044023C; // type:function size:0x188 scope:global align:4 +reset__Q35P2JME6Window8TControlFv = .text:0x804403C4; // type:function size:0x20 scope:global align:4 +draw__Q35P2JME6Window8TControlFR8Graphics = .text:0x804403E4; // type:function size:0x7C scope:global align:4 +onInit__Q35P2JME6Window8TControlFv = .text:0x80440460; // type:function size:0x50 scope:global align:4 +__dt__Q35P2JME6Window19TRenderingProcessorFv = .text:0x804404B0; // type:function size:0xA8 scope:weak align:4 +__dt__Q35P2JME6Window18TSequenceProcessorFv = .text:0x80440558; // type:function size:0x70 scope:weak align:4 +__sinit_windowMessage_cpp = .text:0x804405C8; // type:function size:0x28 scope:local align:4 +__ct__13MemoryCardMgrFv = .text:0x804405F0; // type:function size:0x7C scope:global align:4 +__defctor__20MemoryCardMgrCommandFv = .text:0x8044066C; // type:function size:0x24 scope:weak align:4 +resetCommandFlagQueue__13MemoryCardMgrFv = .text:0x80440690; // type:function size:0x24 scope:global align:4 +setCommand__13MemoryCardMgrFi = .text:0x804406B4; // type:function size:0x40 scope:global align:4 +setCommand__13MemoryCardMgrFP24MemoryCardMgrCommandBase = .text:0x804406F4; // type:function size:0x138 scope:global align:4 +cardFormat__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x8044082C; // type:function size:0x2A0 scope:global align:4 +init__13MemoryCardMgrFv = .text:0x80440ACC; // type:function size:0x7C scope:global align:4 +doInit__13MemoryCardMgrFv = .text:0x80440B48; // type:function size:0x4 scope:weak align:4 +update__13MemoryCardMgrFv = .text:0x80440B4C; // type:function size:0x320 scope:global align:4 +cardMount__13MemoryCardMgrFv = .text:0x80440E6C; // type:function size:0x150 scope:global align:4 +checkStatus__13MemoryCardMgrFv = .text:0x80440FBC; // type:function size:0x104 scope:global align:4 +cardProc__13MemoryCardMgrFPv = .text:0x804410C0; // type:function size:0x250 scope:global align:4 +doCardProc__13MemoryCardMgrFPvP20MemoryCardMgrCommand = .text:0x80441310; // type:function size:0x8 scope:weak align:4 +isErrorOccured__13MemoryCardMgrFv = .text:0x80441318; // type:function size:0x110 scope:global align:4 +fileOpen__13MemoryCardMgrFP12CARDFileInfoQ213MemoryCardMgr9ECardSlotPCc = .text:0x80441428; // type:function size:0x1A0 scope:global align:4 +writeHeader__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCc = .text:0x804415C8; // type:function size:0x278 scope:global align:4 +getHeaderSize__13MemoryCardMgrFv = .text:0x80441840; // type:function size:0x8 scope:weak align:4 +writeCardStatus__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCc = .text:0x80441848; // type:function size:0x254 scope:global align:4 +write__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCcPUcll = .text:0x80441A9C; // type:function size:0x204 scope:global align:4 +checkCardStat__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotP12CARDFileInfo = .text:0x80441CA0; // type:function size:0xC4 scope:global align:4 +read__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCcPUcll = .text:0x80441D64; // type:function size:0x280 scope:global align:4 +format__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x80441FE4; // type:function size:0x88 scope:global align:4 +attach__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x8044206C; // type:function size:0x98 scope:global align:4 +detach__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x80442104; // type:function size:0x3C scope:global align:4 +mount__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x80442140; // type:function size:0x168 scope:global align:4 +checkSpace__13MemoryCardMgrFQ213MemoryCardMgr9ECardSloti = .text:0x804422A8; // type:function size:0xFC scope:global align:4 +doMakeHeader__13MemoryCardMgrFPUc = .text:0x804423A4; // type:function size:0x104 scope:global align:4 +doCheckCardStat__13MemoryCardMgrFP8CARDStat = .text:0x804424A8; // type:function size:0xE0 scope:global align:4 +doSetCardStat__13MemoryCardMgrFP8CARDStat = .text:0x80442588; // type:function size:0x108 scope:global align:4 +calcCheckSum__13MemoryCardMgrFPvUl = .text:0x80442690; // type:function size:0xF8 scope:global align:4 +readCardSerialNo__13MemoryCardMgrFPUxQ213MemoryCardMgr9ECardSlot = .text:0x80442788; // type:function size:0xB8 scope:global align:4 +setInsideStatusFlag__13MemoryCardMgrFQ213MemoryCardMgr17EInsideStatusFlag = .text:0x80442840; // type:function size:0x14 scope:global align:4 +resetInsideStatusFlag__13MemoryCardMgrFQ213MemoryCardMgr17EInsideStatusFlag = .text:0x80442854; // type:function size:0x8 scope:global align:4 +__dt__13MemoryCardMgrFv = .text:0x8044285C; // type:function size:0x48 scope:weak align:4 +getClassSize__20MemoryCardMgrCommandFv = .text:0x804428A4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10MemoryCard6PlayerFv = .text:0x804428AC; // type:function size:0x3C scope:global align:4 +__ct__Q34Game10MemoryCard14PlayerFileInfoFv = .text:0x804428E8; // type:function size:0x44 scope:global align:4 +getPlayer__Q34Game10MemoryCard14PlayerFileInfoFi = .text:0x8044292C; // type:function size:0x74 scope:global align:4 +isBrokenFile__Q34Game10MemoryCard14PlayerFileInfoFi = .text:0x804429A0; // type:function size:0x80 scope:global align:4 +isNewFile__Q34Game10MemoryCard14PlayerFileInfoFi = .text:0x80442A20; // type:function size:0x94 scope:global align:4 +__dt__Q34Game10MemoryCard8ResourceFv = .text:0x80442AB4; // type:function size:0x6C scope:global align:4 +__ct__Q34Game10MemoryCard3MgrFv = .text:0x80442B20; // type:function size:0x7C scope:global align:4 +isErrorOccured__Q34Game10MemoryCard3MgrFv = .text:0x80442B9C; // type:function size:0x30 scope:global align:4 +loadResource__Q34Game10MemoryCard3MgrFP7JKRHeap = .text:0x80442BCC; // type:function size:0x120 scope:global align:4 +destroyResource__Q34Game10MemoryCard3MgrFv = .text:0x80442CEC; // type:function size:0x10 scope:global align:4 +update__Q34Game10MemoryCard3MgrFv = .text:0x80442CFC; // type:function size:0x20 scope:global align:4 +format__Q34Game10MemoryCard3MgrFv = .text:0x80442D1C; // type:function size:0x6C scope:global align:4 +checkBeforeSave__Q34Game10MemoryCard3MgrFv = .text:0x80442D88; // type:function size:0x74 scope:global align:4 +checkError__Q34Game10MemoryCard3MgrFv = .text:0x80442DFC; // type:function size:0x74 scope:global align:4 +createNewFile__Q34Game10MemoryCard3MgrFv = .text:0x80442E70; // type:function size:0x74 scope:global align:4 +saveGameOption__Q34Game10MemoryCard3MgrFv = .text:0x80442EE4; // type:function size:0xB8 scope:global align:4 +loadGameOption__Q34Game10MemoryCard3MgrFv = .text:0x80442F9C; // type:function size:0xB8 scope:global align:4 +savePlayerNoCheckSerialNumber__Q34Game10MemoryCard3MgrFi = .text:0x80443054; // type:function size:0x124 scope:global align:4 +savePlayer__Q34Game10MemoryCard3MgrFi = .text:0x80443178; // type:function size:0x114 scope:global align:4 +loadPlayer__Q34Game10MemoryCard3MgrFi = .text:0x8044328C; // type:function size:0x124 scope:global align:4 +deletePlayer__Q34Game10MemoryCard3MgrFi = .text:0x804433B0; // type:function size:0x124 scope:global align:4 +copyPlayer__Q34Game10MemoryCard3MgrFii = .text:0x804434D4; // type:function size:0x150 scope:global align:4 +getPlayerHeader__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard14PlayerFileInfo = .text:0x80443624; // type:function size:0xE8 scope:global align:4 +doCardProc__Q34Game10MemoryCard3MgrFPvP20MemoryCardMgrCommand = .text:0x8044370C; // type:function size:0x354 scope:global align:4 +commandUpdatePlayerHeader__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard14PlayerFileInfo = .text:0x80443A60; // type:function size:0x390 scope:global align:4 +commandCheckBeforeSave__Q34Game10MemoryCard3MgrFv = .text:0x80443DF0; // type:function size:0x7C scope:global align:4 +commandCheckError__Q34Game10MemoryCard3MgrFv = .text:0x80443E6C; // type:function size:0x80 scope:global align:4 +checkSpace__Q34Game10MemoryCard3MgrFQ213MemoryCardMgr9ECardSlot = .text:0x80443EEC; // type:function size:0xB8 scope:global align:4 +commandSaveHeader__Q34Game10MemoryCard3MgrFv = .text:0x80443FA4; // type:function size:0x118 scope:global align:4 +commandCreateNewFile__Q34Game10MemoryCard3MgrFv = .text:0x804440BC; // type:function size:0x1A0 scope:global align:4 +dataFormat__Q34Game10MemoryCard3MgrFQ213MemoryCardMgr9ECardSlot = .text:0x8044425C; // type:function size:0x100 scope:global align:4 +varifyCardStatus__Q34Game10MemoryCard3MgrFv = .text:0x8044435C; // type:function size:0x170 scope:global align:4 +commandSaveGameOption__Q34Game10MemoryCard3MgrFbb = .text:0x804444CC; // type:function size:0x1C0 scope:global align:4 +commandLoadGameOption__Q34Game10MemoryCard3MgrFv = .text:0x8044468C; // type:function size:0x248 scope:global align:4 +writeGameOption__Q34Game10MemoryCard3MgrFR6Stream = .text:0x804448D4; // type:function size:0x28 scope:global align:4 +readGameOption__Q34Game10MemoryCard3MgrFR6Stream = .text:0x804448FC; // type:function size:0x28 scope:global align:4 +checkSerialNo__Q34Game10MemoryCard3MgrFb = .text:0x80444924; // type:function size:0x70 scope:global align:4 +commandSavePlayer__Q34Game10MemoryCard3MgrFScb = .text:0x80444994; // type:function size:0xD0 scope:global align:4 +commandSavePlayerNoCheckSerialNo__Q34Game10MemoryCard3MgrFScb = .text:0x80444A64; // type:function size:0x374 scope:global align:4 +getPlayerInfo__Q34Game10MemoryCard3MgrFScPQ34Game10MemoryCard16PlayerInfoHeaderPb = .text:0x80444DD8; // type:function size:0x70 scope:global align:4 +getIndexPlayerInfo__Q34Game10MemoryCard3MgrFScPQ34Game10MemoryCard16PlayerInfoHeaderPb = .text:0x80444E48; // type:function size:0x2B0 scope:global align:4 +commandLoadPlayer__Q34Game10MemoryCard3MgrFSc = .text:0x804450F8; // type:function size:0x19C scope:global align:4 +loadPlayerForNoCard__Q34Game10MemoryCard3MgrFSc = .text:0x80445294; // type:function size:0x9C scope:global align:4 +loadPlayerProc__Q34Game10MemoryCard3MgrFScPUc = .text:0x80445330; // type:function size:0x178 scope:global align:4 +commandDeletePlayer__Q34Game10MemoryCard3MgrFSc = .text:0x804454A8; // type:function size:0x94 scope:global align:4 +savePlayerProc__Q34Game10MemoryCard3MgrFScPUcb = .text:0x8044553C; // type:function size:0x19C scope:global align:4 +commandCheckSerialNo__Q34Game10MemoryCard3MgrFv = .text:0x804456D8; // type:function size:0x68 scope:global align:4 +commandCopyPlayer__Q34Game10MemoryCard3MgrFScSc = .text:0x80445740; // type:function size:0x1C8 scope:global align:4 +writePlayer__Q34Game10MemoryCard3MgrFR6Stream = .text:0x80445908; // type:function size:0x24 scope:global align:4 +readPlayer__Q34Game10MemoryCard3MgrFR6Stream = .text:0x8044592C; // type:function size:0x24 scope:global align:4 +checkOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo = .text:0x80445950; // type:function size:0x74 scope:global align:4 +calcCheckSumOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo = .text:0x804459C4; // type:function size:0x24 scope:global align:4 +testCheckSumOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo = .text:0x804459E8; // type:function size:0x40 scope:global align:4 +checkPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo = .text:0x80445A28; // type:function size:0x74 scope:global align:4 +calcCheckSumPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo = .text:0x80445A9C; // type:function size:0x28 scope:global align:4 +testCheckSumPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo = .text:0x80445AC4; // type:function size:0x48 scope:global align:4 +getCardStatus__Q34Game10MemoryCard3MgrFv = .text:0x80445B0C; // type:function size:0xB8 scope:global align:4 +writeInvalidGameOption__Q34Game10MemoryCard3MgrFv = .text:0x80445BC4; // type:function size:0xB8 scope:global align:4 +writeInvalidPlayerInfoAll__Q34Game10MemoryCard3MgrFv = .text:0x80445C7C; // type:function size:0x70 scope:global align:4 +writeInvalidPlayerInfo__Q34Game10MemoryCard3MgrFiSc = .text:0x80445CEC; // type:function size:0x110 scope:global align:4 +checkPlayerNoPlayerInfo__Q34Game10MemoryCard3MgrFiScPQ34Game10MemoryCard16PlayerInfoHeader = .text:0x80445DFC; // type:function size:0x1A8 scope:global align:4 +getIndexInvalidPlayerInfo__Q34Game10MemoryCard3MgrFPiPScScUlb = .text:0x80445FA4; // type:function size:0x380 scope:global align:4 +modifyPlayerInfo__Q34Game10MemoryCard3MgrFScPb = .text:0x80446324; // type:function size:0x4BC scope:global align:4 +verifyCardSerialNo__Q34Game10MemoryCard3MgrFPUxQ213MemoryCardMgr9ECardSlot = .text:0x804467E0; // type:function size:0x84 scope:global align:4 +resetError__Q34Game10MemoryCard3MgrFv = .text:0x80446864; // type:function size:0x7C scope:global align:4 +doMakeHeader__Q34Game10MemoryCard3MgrFPUc = .text:0x804468E0; // type:function size:0x12C scope:global align:4 +doSetCardStat__Q34Game10MemoryCard3MgrFP8CARDStat = .text:0x80446A0C; // type:function size:0x104 scope:global align:4 +doCheckCardStat__Q34Game10MemoryCard3MgrFP8CARDStat = .text:0x80446B10; // type:function size:0xDC scope:global align:4 +getClassSize__Q34Game10MemoryCard25MgrCommandGetPlayerHeaderFv = .text:0x80446BEC; // type:function size:0x8 scope:weak align:4 +getClassSize__Q34Game10MemoryCard20MgrCommandCopyPlayerFv = .text:0x80446BF4; // type:function size:0x8 scope:weak align:4 +getClassSize__Q34Game10MemoryCard18MgrCommandPlayerNoFv = .text:0x80446BFC; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game10MemoryCard3MgrFv = .text:0x80446C04; // type:function size:0x5C scope:weak align:4 +getHeaderSize__Q34Game10MemoryCard3MgrFv = .text:0x80446C60; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14CommonSaveData3MgrFv = .text:0x80446C68; // type:function size:0x44 scope:global align:4 +setDefault__Q34Game14CommonSaveData3MgrFv = .text:0x80446CAC; // type:function size:0x78 scope:global align:4 +setCardSerialNo__Q34Game14CommonSaveData3MgrFUx = .text:0x80446D24; // type:function size:0x18 scope:global align:4 +resetCardSerialNo__Q34Game14CommonSaveData3MgrFv = .text:0x80446D3C; // type:function size:0x20 scope:global align:4 +write__Q34Game14CommonSaveData3MgrFR6Stream = .text:0x80446D5C; // type:function size:0xAC scope:global align:4 +read__Q34Game14CommonSaveData3MgrFR6Stream = .text:0x80446E08; // type:function size:0xAC scope:global align:4 +setup__Q34Game14CommonSaveData3MgrFv = .text:0x80446EB4; // type:function size:0x100 scope:global align:4 +resetPlayer__Q34Game14CommonSaveData3MgrFSc = .text:0x80446FB4; // type:function size:0x14 scope:global align:4 +setDeflicker__Q34Game14CommonSaveData3MgrFv = .text:0x80446FC8; // type:function size:0x30 scope:global align:4 +setDeflicker__Q34Game14CommonSaveData3MgrFb = .text:0x80446FF8; // type:function size:0xD0 scope:global align:4 +setSoundModeMono__Q34Game14CommonSaveData3MgrFv = .text:0x804470C8; // type:function size:0x34 scope:global align:4 +setSoundModeStereo__Q34Game14CommonSaveData3MgrFv = .text:0x804470FC; // type:function size:0x34 scope:global align:4 +setSoundModeSurround__Q34Game14CommonSaveData3MgrFv = .text:0x80447130; // type:function size:0x34 scope:global align:4 +setBgmVolume__Q34Game14CommonSaveData3MgrFf = .text:0x80447164; // type:function size:0x12C scope:global align:4 +setSeVolume__Q34Game14CommonSaveData3MgrFf = .text:0x80447290; // type:function size:0x12C scope:global align:4 +__ct__10TinyPikminFv = .text:0x804473BC; // type:function size:0x30 scope:global align:4 +update__10TinyPikminFv = .text:0x804473EC; // type:function size:0x4B8 scope:global align:4 +init__13TinyPikminMgrFv = .text:0x804478A4; // type:function size:0x4C8 scope:global align:4 +__ct__11BootSectionFP7JKRHeap = .text:0x80447D6C; // type:function size:0x348 scope:global align:4 +__dt__11BootSectionFv = .text:0x804480B4; // type:function size:0x84 scope:global align:4 +init__11BootSectionFv = .text:0x80448138; // type:function size:0x4 scope:global align:4 +loadBootResource__11BootSectionFv = .text:0x8044813C; // type:function size:0x2B8 scope:global align:4 +load2DResource__11BootSectionFv = .text:0x804483F4; // type:function size:0x128 scope:global align:4 +__ct__Q23ebi13TScreenProgreFv = .text:0x8044851C; // type:function size:0x294 scope:weak align:4 +loadResident__11BootSectionFv = .text:0x804487B0; // type:function size:0x44 scope:global align:4 +doDraw__11BootSectionFR8Graphics = .text:0x804487F4; // type:function size:0x19C scope:global align:4 +drawProgressive__11BootSectionFR8Graphics = .text:0x80448990; // type:function size:0x20 scope:global align:4 +drawSetProgressive__11BootSectionFR8Graphics = .text:0x804489B0; // type:function size:0x20 scope:global align:4 +drawSetInterlace__11BootSectionFR8Graphics = .text:0x804489D0; // type:function size:0x20 scope:global align:4 +drawNintendoLogo__11BootSectionFR8Graphics = .text:0x804489F0; // type:function size:0x3E0 scope:global align:4 +drawDolbyLogo__11BootSectionFR8Graphics = .text:0x80448DD0; // type:function size:0xB4 scope:global align:4 +drawEpilepsy__11BootSectionFR8Graphics = .text:0x80448E84; // type:function size:0x188 scope:global align:4 +doUpdate__11BootSectionFv = .text:0x8044900C; // type:function size:0x694 scope:global align:4 +updateLoadResourceFirst__11BootSectionFv = .text:0x804496A0; // type:function size:0x9C scope:global align:4 +updateLoadMemoryCard__11BootSectionFv = .text:0x8044973C; // type:function size:0x13C scope:global align:4 +updateNintendoLogo__11BootSectionFv = .text:0x80449878; // type:function size:0x288 scope:global align:4 +updateProgressive__11BootSectionFv = .text:0x80449B00; // type:function size:0x180 scope:global align:4 +updateWaitProgressive__11BootSectionFv = .text:0x80449C80; // type:function size:0x64 scope:global align:4 +run__11BootSectionFv = .text:0x80449CE4; // type:function size:0x120 scope:global align:4 +runWait__11BootSectionFM11BootSectionFPCvPv_b = .text:0x80449E04; // type:function size:0x9C scope:global align:4 +waitLoadResource__11BootSectionFv = .text:0x80449EA0; // type:function size:0x30 scope:global align:4 +setMode__11BootSectionFi = .text:0x80449ED0; // type:function size:0x84 scope:global align:4 +setModeEpilepsy__11BootSectionFv = .text:0x80449F54; // type:function size:0x88 scope:global align:4 +forceReset__11BootSectionFv = .text:0x80449FDC; // type:function size:0x8 scope:weak align:4 +invoke__23Delegate<11BootSection>Fv = .text:0x80449FE4; // type:function size:0x30 scope:weak align:4 +__sinit_bootSection_cpp = .text:0x8044A014; // type:function size:0x28 scope:local align:4 +__ct__Q25Title7SectionFP7JKRHeap = .text:0x8044A03C; // type:function size:0xF0 scope:global align:4 +__dt__Q33ebi5Omake4TMgrFv = .text:0x8044A12C; // type:function size:0x70 scope:weak align:4 +__dt__Q33ebi6Option4TMgrFv = .text:0x8044A19C; // type:function size:0x54 scope:weak align:4 +__dt__Q23ebi13TMainTitleMgrFv = .text:0x8044A1F0; // type:function size:0x270 scope:weak align:4 +__dt__Q25Title7SectionFv = .text:0x8044A460; // type:function size:0xA4 scope:global align:4 +doExit__Q25Title7SectionFv = .text:0x8044A504; // type:function size:0xC4 scope:global align:4 +loadResident__Q25Title7SectionFv = .text:0x8044A5C8; // type:function size:0x104 scope:global align:4 +init__Q25Title7SectionFv = .text:0x8044A6CC; // type:function size:0x434 scope:global align:4 +menuCancel__Q25Title7SectionFR4Menu = .text:0x8044AB00; // type:function size:0x2C scope:global align:4 +menuSelect__Q25Title7SectionFR4Menu = .text:0x8044AB2C; // type:function size:0x54 scope:global align:4 +doDraw__Q25Title7SectionFR8Graphics = .text:0x8044AB80; // type:function size:0x110 scope:global align:4 +doUpdateMainTitle__Q25Title7SectionFv = .text:0x8044AC90; // type:function size:0x688 scope:global align:4 +doUpdateOmake__Q25Title7SectionFv = .text:0x8044B318; // type:function size:0x4C8 scope:global align:4 +run__Q25Title7SectionFv = .text:0x8044B7E0; // type:function size:0x108 scope:global align:4 +doUpdate__Q25Title7SectionFv = .text:0x8044B8E8; // type:function size:0x5B8 scope:global align:4 +isFinishable__Q25Title7SectionFv = .text:0x8044BEA0; // type:function size:0x40 scope:global align:4 +doLoadingStart__Q25Title7SectionFv = .text:0x8044BEE0; // type:function size:0x8C scope:global align:4 +doLoading__Q25Title7SectionFv = .text:0x8044BF6C; // type:function size:0xEC scope:global align:4 +loadResource__Q25Title7SectionFv = .text:0x8044C058; // type:function size:0x3C8 scope:global align:4 +forceReset__Q25Title7SectionFv = .text:0x8044C420; // type:function size:0x8 scope:weak align:4 +__dt__11HIORootNodeFv = .text:0x8044C428; // type:function size:0x70 scope:weak align:4 +invoke__34Delegate1FR4Menu = .text:0x8044C498; // type:function size:0x30 scope:weak align:4 +invoke__26DelegateFv = .text:0x8044C4C8; // type:function size:0x30 scope:weak align:4 +__sinit_titleSection_cpp = .text:0x8044C4F8; // type:function size:0x28 scope:local align:4 +__dt__Q212LoadResource4NodeFv = .text:0x8044C520; // type:function size:0xB8 scope:global align:4 +__ct__Q212LoadResource3ArgFPCc = .text:0x8044C5D8; // type:function size:0x44 scope:global align:4 +__ct__Q212LoadResource11ArgAramOnlyFPCc = .text:0x8044C61C; // type:function size:0x48 scope:global align:4 +init__Q212LoadResource3MgrFv = .text:0x8044C664; // type:function size:0xB0 scope:global align:4 +mountArchive__Q212LoadResource3MgrFRQ212LoadResource3Arg = .text:0x8044C714; // type:function size:0x8C scope:global align:4 +load__Q212LoadResource3MgrFRQ212LoadResource3Arg = .text:0x8044C7A0; // type:function size:0x324 scope:global align:4 +@24@__dt__Q212LoadResource4NodeFv = .text:0x8044CAC4; // type:function size:0x8 scope:weak align:4 +__ct__15RootMenuSectionFP7JKRHeap = .text:0x8044CACC; // type:function size:0x48 scope:global align:4 +__dt__15RootMenuSectionFv = .text:0x8044CB14; // type:function size:0x70 scope:global align:4 +setChildSection__15RootMenuSectionFP7JKRHeap = .text:0x8044CB84; // type:function size:0x24 scope:global align:4 +drawInit__15RootMenuSectionFR8Graphics = .text:0x8044CBA8; // type:function size:0x4 scope:global align:4 +doUpdate__15RootMenuSectionFv = .text:0x8044CBAC; // type:function size:0x8 scope:weak align:4 +doDraw__15RootMenuSectionFR8Graphics = .text:0x8044CBB4; // type:function size:0x4 scope:weak align:4 +__ct__Q24Demo7SectionFP7JKRHeap = .text:0x8044CBB8; // type:function size:0x54 scope:global align:4 +__dt__Q24Demo7SectionFv = .text:0x8044CC0C; // type:function size:0x88 scope:global align:4 +init__Q24Demo7SectionFv = .text:0x8044CC94; // type:function size:0x1A0 scope:global align:4 +doDraw__Q24Demo7SectionFR8Graphics = .text:0x8044CE34; // type:function size:0xE8 scope:global align:4 +doUpdate__Q24Demo7SectionFv = .text:0x8044CF1C; // type:function size:0xAC scope:global align:4 +doExit__Q24Demo7SectionFv = .text:0x8044CFC8; // type:function size:0xB0 scope:global align:4 +doLoadingStart__Q24Demo7SectionFv = .text:0x8044D078; // type:function size:0xA4 scope:global align:4 +doLoading__Q24Demo7SectionFv = .text:0x8044D11C; // type:function size:0x38 scope:global align:4 +loadResource__Q24Demo7SectionFv = .text:0x8044D154; // type:function size:0xC8 scope:global align:4 +__dt__Q24Demo11HIORootNodeFv = .text:0x8044D21C; // type:function size:0x70 scope:weak align:4 +forceReset__Q24Demo7SectionFv = .text:0x8044D28C; // type:function size:0x8 scope:weak align:4 +invoke__25DelegateFv = .text:0x8044D294; // type:function size:0x30 scope:weak align:4 +CreateAudioDecodeThread = .text:0x8044D2C4; // type:function size:0xD4 scope:global align:4 +AudioDecodeThreadStart = .text:0x8044D398; // type:function size:0x34 scope:global align:4 +AudioDecodeThreadCancel = .text:0x8044D3CC; // type:function size:0x3C scope:global align:4 +AudioDecoder__FPv = .text:0x8044D408; // type:function size:0x28 scope:local align:4 +AudioDecoderForOnMemory__FPv = .text:0x8044D430; // type:function size:0xA8 scope:local align:4 +AudioDecode__FP13THPReadBuffer = .text:0x8044D4D8; // type:function size:0xD4 scope:local align:4 +PopFreeAudioBuffer = .text:0x8044D5AC; // type:function size:0x34 scope:global align:4 +PushFreeAudioBuffer = .text:0x8044D5E0; // type:function size:0x30 scope:global align:4 +PopDecodedAudioBuffer = .text:0x8044D610; // type:function size:0x44 scope:global align:4 +PushDecodedAudioBuffer = .text:0x8044D654; // type:function size:0x30 scope:global align:4 +THPGXRestore = .text:0x8044D684; // type:function size:0x118 scope:global align:4 +THPGXYuv2RgbSetup = .text:0x8044D79C; // type:function size:0x4C0 scope:global align:4 +THPGXYuv2RgbDraw = .text:0x8044DC5C; // type:function size:0x1DC scope:global align:4 +audioCallbackWithMSound__Fl = .text:0x8044DE38; // type:function size:0xA8 scope:local align:4 +THPPlayerInit = .text:0x8044DEE0; // type:function size:0xD8 scope:global align:4 +THPPlayerQuit = .text:0x8044DFB8; // type:function size:0x34 scope:global align:4 +THPPlayerOpen = .text:0x8044DFEC; // type:function size:0x334 scope:global align:4 +THPPlayerClose = .text:0x8044E320; // type:function size:0x54 scope:global align:4 +THPPlayerCalcNeedMemory = .text:0x8044E374; // type:function size:0xB0 scope:global align:4 +THPPlayerSetBuffer = .text:0x8044E424; // type:function size:0x210 scope:global align:4 +PrepareReady__Fi = .text:0x8044E634; // type:function size:0x30 scope:global align:4 +THPPlayerPrepare = .text:0x8044E664; // type:function size:0x394 scope:global align:4 +THPPlayerPlay = .text:0x8044E9F8; // type:function size:0x60 scope:global align:4 +THPPlayerStop = .text:0x8044EA58; // type:function size:0xD0 scope:global align:4 +THPPlayerPause = .text:0x8044EB28; // type:function size:0x3C scope:global align:4 +PlayControl__FUl = .text:0x8044EB64; // type:function size:0x2B8 scope:local align:4 +ProperTimingForStart__Fv = .text:0x8044EE1C; // type:function size:0x6C scope:local align:4 +ProperTimingForGettingNextFrame__Fv = .text:0x8044EE88; // type:function size:0x140 scope:local align:4 +THPPlayerDrawCurrentFrame = .text:0x8044EFC8; // type:function size:0xD8 scope:global align:4 +THPPlayerGetVideoInfo = .text:0x8044F0A0; // type:function size:0x48 scope:global align:4 +THPPlayerGetAudioInfo = .text:0x8044F0E8; // type:function size:0x48 scope:global align:4 +PushUsedTextureSet__FPv = .text:0x8044F130; // type:function size:0x30 scope:local align:4 +PopUsedTextureSet__Fv = .text:0x8044F160; // type:function size:0x44 scope:local align:4 +THPPlayerDrawDone = .text:0x8044F1A4; // type:function size:0x70 scope:global align:4 +MixAudio__FPsPsUl = .text:0x8044F214; // type:function size:0x250 scope:local align:4 +THPPlayerSetVolume = .text:0x8044F464; // type:function size:0x128 scope:global align:4 +CreateReadThread = .text:0x8044F58C; // type:function size:0xA0 scope:global align:4 +ReadThreadStart = .text:0x8044F62C; // type:function size:0x34 scope:global align:4 +ReadThreadCancel = .text:0x8044F660; // type:function size:0x3C scope:global align:4 +Reader__FPv = .text:0x8044F69C; // type:function size:0xEC scope:local align:4 +PopReadedBuffer = .text:0x8044F788; // type:function size:0x34 scope:global align:4 +PushReadedBuffer = .text:0x8044F7BC; // type:function size:0x30 scope:global align:4 +PopFreeReadBuffer = .text:0x8044F7EC; // type:function size:0x34 scope:global align:4 +PushFreeReadBuffer = .text:0x8044F820; // type:function size:0x30 scope:global align:4 +PopReadedBuffer2 = .text:0x8044F850; // type:function size:0x34 scope:global align:4 +PushReadedBuffer2 = .text:0x8044F884; // type:function size:0x30 scope:global align:4 +CreateVideoDecodeThread = .text:0x8044F8B4; // type:function size:0xD8 scope:global align:4 +VideoDecodeThreadStart = .text:0x8044F98C; // type:function size:0x34 scope:global align:4 +VideoDecodeThreadCancel = .text:0x8044F9C0; // type:function size:0x3C scope:global align:4 +VideoDecoder__FPv = .text:0x8044F9FC; // type:function size:0xC8 scope:local align:4 +VideoDecoderForOnMemory__FPv = .text:0x8044FAC4; // type:function size:0x134 scope:local align:4 +VideoDecode__FP13THPReadBuffer = .text:0x8044FBF8; // type:function size:0x120 scope:local align:4 +PopFreeTextureSet = .text:0x8044FD18; // type:function size:0x34 scope:global align:4 +PushFreeTextureSet = .text:0x8044FD4C; // type:function size:0x30 scope:global align:4 +PopDecodedTextureSet = .text:0x8044FD7C; // type:function size:0x44 scope:global align:4 +PushDecodedTextureSet = .text:0x8044FDC0; // type:function size:0x30 scope:global align:4 +__ct__Q24Game9THPPlayerFv = .text:0x8044FDF0; // type:function size:0x118 scope:global align:4 +__dt__Q24Game9THPPlayerFv = .text:0x8044FF08; // type:function size:0x98 scope:global align:4 +load__Q24Game9THPPlayerFQ34Game9THPPlayer11EMovieIndex = .text:0x8044FFA0; // type:function size:0xCC scope:global align:4 +load__Q24Game9THPPlayerFv = .text:0x8045006C; // type:function size:0x6C scope:global align:4 +loadResource__Q24Game9THPPlayerFv = .text:0x804500D8; // type:function size:0x24 scope:global align:4 +loadResource__Q24Game9THPPlayerFRCQ24Game24THPPlayerLoadResourceArg = .text:0x804500FC; // type:function size:0x1CC scope:global align:4 +prepare__Q24Game9THPPlayerFv = .text:0x804502C8; // type:function size:0xFC scope:global align:4 +init__Q24Game9THPPlayerFP7JKRHeap = .text:0x804503C4; // type:function size:0xC0 scope:global align:4 +play__Q24Game9THPPlayerFv = .text:0x80450484; // type:function size:0xA0 scope:global align:4 +pause__Q24Game9THPPlayerFv = .text:0x80450524; // type:function size:0x38 scope:global align:4 +stop__Q24Game9THPPlayerFv = .text:0x8045055C; // type:function size:0x28 scope:global align:4 +update__Q24Game9THPPlayerFv = .text:0x80450584; // type:function size:0x94 scope:global align:4 +draw__Q24Game9THPPlayerFR8Graphics = .text:0x80450618; // type:function size:0xDC scope:global align:4 +draw__Q24Game9THPPlayerFR8Graphicsllf = .text:0x804506F4; // type:function size:0xBC scope:global align:4 +draw__Q24Game9THPPlayerFR8GraphicsllUlUl = .text:0x804507B0; // type:function size:0x88 scope:global align:4 +isFinishLoading__Q24Game9THPPlayerFv = .text:0x80450838; // type:function size:0x5C scope:global align:4 +isFinishPlaying__Q24Game9THPPlayerFv = .text:0x80450894; // type:function size:0x1C scope:global align:4 +invoke__27DelegateFv = .text:0x804508B0; // type:function size:0x30 scope:weak align:4 +@24@__dt__Q24Game9THPPlayerFv = .text:0x804508E0; // type:function size:0x8 scope:weak align:4 +read__Q27Caption4NodeFR6Stream = .text:0x804508E8; // type:function size:0x64 scope:global align:4 +__ct__Q27Caption3MgrFv = .text:0x8045094C; // type:function size:0xD4 scope:global align:4 +__dt__Q35P2JME7Caption8TControlFv = .text:0x80450A20; // type:function size:0x80 scope:weak align:4 +read__Q27Caption3MgrFR6Stream = .text:0x80450AA0; // type:function size:0x108 scope:global align:4 +reset__Q27Caption3MgrFv = .text:0x80450BA8; // type:function size:0x68 scope:global align:4 +resetMessageObjs__Q27Caption3MgrFv = .text:0x80450C10; // type:function size:0x68 scope:global align:4 +update__Q27Caption3MgrFl = .text:0x80450C78; // type:function size:0x194 scope:global align:4 +draw__Q27Caption3MgrFR8Graphics = .text:0x80450E0C; // type:function size:0x98 scope:global align:4 +getFreeMessage__Q27Caption3MgrFv = .text:0x80450EA4; // type:function size:0x5C scope:global align:4 +__dt__Q27Caption3MgrFv = .text:0x80450F00; // type:function size:0x60 scope:weak align:4 +__dt__Q27Caption4NodeFv = .text:0x80450F60; // type:function size:0x60 scope:weak align:4 +doGetDrawInfo__Q35P2JME7Caption19TRenderingProcessorFPQ35P2JME6Window8DrawInfo = .text:0x80450FC0; // type:function size:0xC scope:global align:4 +doDrawCommon__Q35P2JME7Caption19TRenderingProcessorFffP7MatrixfP7Matrixf = .text:0x80450FCC; // type:function size:0x1EC scope:global align:4 +__ct__Q35P2JME7Caption8TControlFv = .text:0x804511B8; // type:function size:0x54 scope:global align:4 +onInit__Q35P2JME7Caption8TControlFv = .text:0x8045120C; // type:function size:0xE8 scope:global align:4 +reset__Q35P2JME7Caption8TControlFv = .text:0x804512F4; // type:function size:0x34 scope:global align:4 +updateSetFrame__Q35P2JME7Caption8TControlFl = .text:0x80451328; // type:function size:0x128 scope:global align:4 +draw__Q35P2JME7Caption8TControlFR8Graphics = .text:0x80451450; // type:function size:0x84 scope:global align:4 +start__Q35P2JME7Caption8TControlFPcll = .text:0x804514D4; // type:function size:0x58 scope:global align:4 +createSequenceProcessor__Q35P2JME7Caption8TControlFv = .text:0x8045152C; // type:function size:0x88 scope:weak align:4 +createRenderingProcessor__Q35P2JME7Caption8TControlFv = .text:0x804515B4; // type:function size:0x8C scope:weak align:4 +__dt__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x80451640; // type:function size:0x80 scope:weak align:4 +do_isReady__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x804516C0; // type:function size:0x8 scope:weak align:4 +doResetAbtnWaitSE__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x804516C8; // type:function size:0x4 scope:weak align:4 +doCharacterSE__Q35P2JME7Caption18TSequenceProcessorFi = .text:0x804516CC; // type:function size:0x4 scope:weak align:4 +doCharacterSEStart__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x804516D0; // type:function size:0x4 scope:weak align:4 +doCharacterSEEnd__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x804516D4; // type:function size:0x4 scope:weak align:4 +__dt__Q35P2JME7Caption19TRenderingProcessorFv = .text:0x804516D8; // type:function size:0xB8 scope:weak align:4 +__ct__Q26Screen9SceneBaseFv = .text:0x80451790; // type:function size:0x134 scope:global align:4 +searchObj__Q26Screen9SceneBaseFPc = .text:0x804518C4; // type:function size:0x30 scope:global align:4 +destroy__Q26Screen9SceneBaseFv = .text:0x804518F4; // type:function size:0x38 scope:global align:4 +create__Q26Screen9SceneBaseFv = .text:0x8045192C; // type:function size:0xBC scope:global align:4 +update__Q26Screen9SceneBaseFv = .text:0x804519E8; // type:function size:0x15C scope:global align:4 +updateActive__Q26Screen9SceneBaseFv = .text:0x80451B44; // type:function size:0x40 scope:global align:4 +doUpdateActive__Q26Screen9SceneBaseFv = .text:0x80451B84; // type:function size:0x4 scope:global align:4 +draw__Q26Screen9SceneBaseFR8Graphics = .text:0x80451B88; // type:function size:0x90 scope:global align:4 +start__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451C18; // type:function size:0x50 scope:global align:4 +doStart__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451C68; // type:function size:0x28 scope:global align:4 +end__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451C90; // type:function size:0x68 scope:global align:4 +doEnd__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451CF8; // type:function size:0x24 scope:global align:4 +userCallBackFunc__Q26Screen9SceneBaseFPQ28Resource10MgrCommand = .text:0x80451D1C; // type:function size:0x2C scope:global align:4 +createObj__Q26Screen9SceneBaseFP10JKRArchive = .text:0x80451D48; // type:function size:0x2C scope:global align:4 +registObj__Q26Screen9SceneBaseFPQ26Screen7ObjBaseP10JKRArchive = .text:0x80451D74; // type:function size:0x5C scope:global align:4 +confirmSetScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x80451DD0; // type:function size:0x78 scope:global align:4 +confirmStartScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451E48; // type:function size:0x78 scope:global align:4 +confirmEndScene__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451EC0; // type:function size:0x70 scope:global align:4 +setScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x80451F30; // type:function size:0x30 scope:global align:4 +startScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451F60; // type:function size:0x30 scope:global align:4 +endScene__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451F90; // type:function size:0x30 scope:global align:4 +setBackupScene__Q26Screen9SceneBaseFv = .text:0x80451FC0; // type:function size:0x100 scope:global align:4 +setDispMember__Q26Screen9SceneBaseFPQ32og6Screen14DispMemberBase = .text:0x804520C0; // type:function size:0x130 scope:global align:4 +getFinishState__Q26Screen9SceneBaseFv = .text:0x804521F0; // type:function size:0x40 scope:global align:4 +getGamePad__Q26Screen9SceneBaseCFv = .text:0x80452230; // type:function size:0x54 scope:global align:4 +setColorBG__Q26Screen9SceneBaseFUcUcUcUc = .text:0x80452284; // type:function size:0x44 scope:global align:4 +setColorBG__Q26Screen3MgrFRQ28JUtility6TColor = .text:0x804522C8; // type:function size:0x4 scope:weak align:4 +setBGMode__Q26Screen3MgrFi = .text:0x804522CC; // type:function size:0x4 scope:weak align:4 +invoke__55Delegate1FPQ28Resource10MgrCommand = .text:0x804522D0; // type:function size:0x30 scope:weak align:4 +__ct__Q26Screen13SceneInfoListFv = .text:0x80452300; // type:function size:0x54 scope:global align:4 +__ct__Q26Screen3MgrFv = .text:0x80452354; // type:function size:0x1CC scope:global align:4 +__dt__Q26Screen13SceneInfoListFv = .text:0x80452520; // type:function size:0x60 scope:weak align:4 +init__Q26Screen3MgrFv = .text:0x80452580; // type:function size:0x70 scope:global align:4 +reset__Q26Screen3MgrFv = .text:0x804525F0; // type:function size:0xFC scope:global align:4 +startScene__Q26Screen3MgrFPQ26Screen13StartSceneArg = .text:0x804526EC; // type:function size:0x1E8 scope:global align:4 +endScene__Q26Screen3MgrFPQ26Screen11EndSceneArg = .text:0x804528D4; // type:function size:0x18C scope:global align:4 +getCurrentCommand__Q26Screen3MgrFv = .text:0x80452A60; // type:function size:0x8 scope:global align:4 +getNewCommand__Q26Screen3MgrFv = .text:0x80452A68; // type:function size:0xA8 scope:global align:4 +releaseCommand__Q26Screen3MgrFPQ26Screen10MgrCommand = .text:0x80452B10; // type:function size:0x58 scope:global align:4 +update__Q26Screen3MgrFv = .text:0x80452B68; // type:function size:0x2D8 scope:global align:4 +draw__Q26Screen3MgrFR8Graphics = .text:0x80452E40; // type:function size:0xB4 scope:global align:4 +drawBG__Q26Screen3MgrFR8Graphics = .text:0x80452EF4; // type:function size:0x4 scope:weak align:4 +doGetSceneBase__Q26Screen3MgrFl = .text:0x80452EF8; // type:function size:0x8 scope:global align:4 +clearBackupSceneInfo__Q26Screen3MgrFv = .text:0x80452F00; // type:function size:0x78 scope:global align:4 +changeScene__Q26Screen3MgrFRQ26Screen11SetSceneArgPUc = .text:0x80452F78; // type:function size:0x24C scope:global align:4 +setScene__Q26Screen3MgrFRQ26Screen11SetSceneArg = .text:0x804531C4; // type:function size:0x598 scope:global align:4 +isCurrentSceneLoading__Q26Screen3MgrFv = .text:0x8045375C; // type:function size:0x24 scope:global align:4 +copyDispMember__Q26Screen3MgrFPUcPUc = .text:0x80453780; // type:function size:0x160 scope:global align:4 +setDispMember__Q26Screen3MgrFPQ32og6Screen14DispMemberBase = .text:0x804538E0; // type:function size:0x34 scope:global align:4 +getDispMember__Q26Screen3MgrFv = .text:0x80453914; // type:function size:0x1C scope:global align:4 +getSceneType__Q26Screen3MgrFv = .text:0x80453930; // type:function size:0x40 scope:global align:4 +isSceneFinish__Q26Screen3MgrFv = .text:0x80453970; // type:function size:0x28 scope:global align:4 +getSceneFinishState__Q26Screen3MgrFv = .text:0x80453998; // type:function size:0x38 scope:global align:4 +setGamePad__Q26Screen3MgrFP10Controller = .text:0x804539D0; // type:function size:0x1C scope:global align:4 +setBackupScene__Q26Screen3MgrFv = .text:0x804539EC; // type:function size:0x34 scope:global align:4 +isAnyReservation__Q26Screen3MgrCFv = .text:0x80453A20; // type:function size:0x38 scope:global align:4 +__dt__Q26Screen10MgrCommandFv = .text:0x80453A58; // type:function size:0x68 scope:weak align:4 +__sinit_screenMgr_cpp = .text:0x80453AC0; // type:function size:0x28 scope:local align:4 +__ct__Q26Screen7ObjBaseFv = .text:0x80453AE8; // type:function size:0x90 scope:global align:4 +create__Q26Screen7ObjBaseFP10JKRArchive = .text:0x80453B78; // type:function size:0x2C scope:global align:4 +start__Q26Screen7ObjBaseFPCQ26Screen13StartSceneArg = .text:0x80453BA4; // type:function size:0xAC scope:global align:4 +end__Q26Screen7ObjBaseFPCQ26Screen11EndSceneArg = .text:0x80453C50; // type:function size:0x138 scope:global align:4 +update__Q26Screen7ObjBaseFv = .text:0x80453D88; // type:function size:0x110 scope:global align:4 +draw__Q26Screen7ObjBaseFR8Graphics = .text:0x80453E98; // type:function size:0x38 scope:global align:4 +doDraw__Q26Screen7ObjBaseFR8Graphics = .text:0x80453ED0; // type:function size:0xD8 scope:global align:4 +getDispMember__Q26Screen7ObjBaseFv = .text:0x80453FA8; // type:function size:0xC scope:global align:4 +confirmSetScene__Q26Screen7ObjBaseFRQ26Screen11SetSceneArg = .text:0x80453FB4; // type:function size:0x2C scope:global align:4 +confirmStartScene__Q26Screen7ObjBaseFPQ26Screen13StartSceneArg = .text:0x80453FE0; // type:function size:0x2C scope:global align:4 +confirmEndScene__Q26Screen7ObjBaseFPQ26Screen11EndSceneArg = .text:0x8045400C; // type:function size:0x34 scope:global align:4 +getGamePad__Q26Screen7ObjBaseCFv = .text:0x80454040; // type:function size:0x30 scope:global align:4 +__ct__Q26Screen10ObjMgrBaseFv = .text:0x80454070; // type:function size:0x44 scope:global align:4 +registObj__Q26Screen10ObjMgrBaseFPQ26Screen8IObjBasePQ26Screen9SceneBase = .text:0x804540B4; // type:function size:0x58 scope:global align:4 +update__Q26Screen10ObjMgrBaseFv = .text:0x8045410C; // type:function size:0x68 scope:global align:4 +draw__Q26Screen10ObjMgrBaseFR8Graphics = .text:0x80454174; // type:function size:0x5C scope:global align:4 +search__Q26Screen10ObjMgrBaseFPQ26Screen9SceneBasePc = .text:0x804541D0; // type:function size:0x98 scope:global align:4 +start__Q26Screen10ObjMgrBaseFPQ26Screen13StartSceneArg = .text:0x80454268; // type:function size:0x78 scope:global align:4 +end__Q26Screen10ObjMgrBaseFPQ26Screen11EndSceneArg = .text:0x804542E0; // type:function size:0x78 scope:global align:4 +confirmSetScene__Q26Screen10ObjMgrBaseFRQ26Screen11SetSceneArg = .text:0x80454358; // type:function size:0x7C scope:global align:4 +confirmStartScene__Q26Screen10ObjMgrBaseFPQ26Screen13StartSceneArg = .text:0x804543D4; // type:function size:0x7C scope:global align:4 +confirmEndScene__Q26Screen10ObjMgrBaseFPQ26Screen11EndSceneArg = .text:0x80454450; // type:function size:0x7C scope:global align:4 +@24@__dt__Q26Screen7ObjBaseFv = .text:0x804544CC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST19ObjectParticleActorFPCcPQ24Game11MoviePlayerPQ24Game8Creature = .text:0x804544D4; // type:function size:0x168 scope:global align:4 +reset__Q34Game5P2JST19ObjectParticleActorFv = .text:0x8045463C; // type:function size:0x28 scope:global align:4 +stop__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454664; // type:function size:0x20 scope:global align:4 +update__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454684; // type:function size:0xC0 scope:global align:4 +JSGSetShape__Q34Game5P2JST19ObjectParticleActorFUl = .text:0x80454744; // type:function size:0x3C scope:global align:4 +parseUserData___Q34Game5P2JST19ObjectParticleActorFUlPCv = .text:0x80454780; // type:function size:0x178 scope:global align:4 +JSGSetTranslation__Q34Game5P2JST19ObjectParticleActorFRC3Vec = .text:0x804548F8; // type:function size:0x1C scope:global align:4 +JSGGetTranslation__Q34Game5P2JST19ObjectParticleActorCFP3Vec = .text:0x80454914; // type:function size:0x1C scope:global align:4 +emit__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454930; // type:function size:0x1F0 scope:global align:4 +executeAfter__Q34Game5P2JST19ObjectParticleActorFP14JPABaseEmitter = .text:0x80454B20; // type:function size:0xF4 scope:global align:4 +killEmitter__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454C14; // type:function size:0x44 scope:global align:4 +__dt__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454C58; // type:function size:0x80 scope:weak align:4 +__sinit_JSTObjectParticleActor_cpp = .text:0x80454CD8; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST19ObjectParticleActorFUlPCv = .text:0x80454D00; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454D08; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454D10; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454D18; // type:function size:0x8 scope:weak align:4 +@112@executeAfter__Q34Game5P2JST19ObjectParticleActorFP14JPABaseEmitter = .text:0x80454D20; // type:function size:0x8 scope:weak align:4 +@112@__dt__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454D28; // type:function size:0x8 scope:weak align:4 +__ct__27Pikmin_TCreateObject_JAudioFP8JAIBasicPCQ26JStage7TSystem = .text:0x80454D30; // type:function size:0x3C scope:global align:4 +create__27Pikmin_TCreateObject_JAudioFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80454D6C; // type:function size:0x194 scope:global align:4 +__dt__27Pikmin_TCreateObject_JAudioFv = .text:0x80454F00; // type:function size:0x60 scope:weak align:4 +__sinit_moviePlayerAudio_cpp = .text:0x80454F60; // type:function size:0x28 scope:local align:4 +__dt__Q25P2JME13TSeqProcNoSeqFv = .text:0x80454F88; // type:function size:0x70 scope:weak align:4 +makeMatrix__Q35P2JME15IllustratedBook19TRenderingProcessorFP7MatrixfPQ35P2JME6Window8DrawInfof10Vector3 = .text:0x80454FF8; // type:function size:0x4C scope:global align:4 +__ct__Q35P2JME15IllustratedBook8TControlFv = .text:0x80455044; // type:function size:0x60 scope:global align:4 +onInit__Q35P2JME15IllustratedBook8TControlFv = .text:0x804550A4; // type:function size:0x3C scope:global align:4 +reset__Q35P2JME15IllustratedBook8TControlFv = .text:0x804550E0; // type:function size:0x3C scope:global align:4 +getScrollPosition__Q35P2JME15IllustratedBook8TControlFv = .text:0x8045511C; // type:function size:0x28 scope:global align:4 +scroll__Q35P2JME15IllustratedBook8TControlFf = .text:0x80455144; // type:function size:0xF4 scope:global align:4 +update__Q35P2JME15IllustratedBook8TControlFP10ControllerP10Controller = .text:0x80455238; // type:function size:0xD0 scope:global align:4 +setTextBoxInfo__Q35P2JME15IllustratedBook8TControlFP10J2DTextBox = .text:0x80455308; // type:function size:0x80 scope:global align:4 +draw__Q35P2JME15IllustratedBook8TControlFPA4_fPA4_f = .text:0x80455388; // type:function size:0x78 scope:global align:4 +__dt__Q35P2JME15IllustratedBook8TControlFv = .text:0x80455400; // type:function size:0x80 scope:weak align:4 +draw__Q35P2JME15IllustratedBook8TControlFR8Graphics = .text:0x80455480; // type:function size:0x20 scope:weak align:4 +createRenderingProcessor__Q35P2JME15IllustratedBook8TControlFv = .text:0x804554A0; // type:function size:0x84 scope:weak align:4 +createSequenceProcessor__Q35P2JME15IllustratedBook8TControlFv = .text:0x80455524; // type:function size:0x94 scope:weak align:4 +__dt__Q35P2JME15IllustratedBook19TRenderingProcessorFv = .text:0x804555B8; // type:function size:0xB8 scope:weak align:4 +doTagControlAbtnWait__Q35P2JME15IllustratedBook19TRenderingProcessorFv = .text:0x80455670; // type:function size:0x8 scope:weak align:4 +__dt__Q35P2JME15IllustratedBook18TSequenceProcessorFv = .text:0x80455678; // type:function size:0x80 scope:weak align:4 +do_isReady__Q25P2JME13TSeqProcNoSeqFv = .text:0x804556F8; // type:function size:0x8 scope:weak align:4 +__ct__Q23Sys10DrawBufferFv = .text:0x80455700; // type:function size:0x5C scope:global align:4 +__dt__Q23Sys10DrawBufferFv = .text:0x8045575C; // type:function size:0x60 scope:global align:4 +create__Q23Sys10DrawBufferFRQ33Sys10DrawBuffer9CreateArg = .text:0x804557BC; // type:function size:0xDC scope:global align:4 +draw__Q23Sys10DrawBufferFv = .text:0x80455898; // type:function size:0x88 scope:global align:4 +frameInit__Q23Sys10DrawBufferFv = .text:0x80455920; // type:function size:0x58 scope:global align:4 +__ct__Q23Sys11DrawBuffersFv = .text:0x80455978; // type:function size:0x54 scope:global align:4 +__dt__Q23Sys11DrawBuffersFv = .text:0x804559CC; // type:function size:0x60 scope:global align:4 +allocate__Q23Sys11DrawBuffersFi = .text:0x80455A2C; // type:function size:0x98 scope:global align:4 +get__Q23Sys11DrawBuffersFi = .text:0x80455AC4; // type:function size:0x8C scope:global align:4 +frameInitAll__Q23Sys11DrawBuffersFv = .text:0x80455B50; // type:function size:0xE0 scope:global align:4 +init__Q211Pikmin2ARAM3MgrFv = .text:0x80455C30; // type:function size:0x60 scope:global align:4 +__ct__Q211Pikmin2ARAM3MgrFv = .text:0x80455C90; // type:function size:0x18 scope:global align:4 +setLoadPermission__Q211Pikmin2ARAM3MgrFb = .text:0x80455CA8; // type:function size:0x8 scope:global align:4 +load__Q211Pikmin2ARAM3MgrFv = .text:0x80455CB0; // type:function size:0x60 scope:global align:4 +dump__Q211Pikmin2ARAM3MgrFv = .text:0x80455D10; // type:function size:0x24 scope:global align:4 +loadEnemy__Q211Pikmin2ARAM3MgrFv = .text:0x80455D34; // type:function size:0x1A4 scope:global align:4 +load2D__Q211Pikmin2ARAM3MgrFv = .text:0x80455ED8; // type:function size:0xB8 scope:global align:4 +loadDemo__Q211Pikmin2ARAM3MgrFv = .text:0x80455F90; // type:function size:0x78 scope:global align:4 +loadItem__Q211Pikmin2ARAM3MgrFv = .text:0x80456008; // type:function size:0x78 scope:global align:4 +__dt__Q211Pikmin2ARAM3MgrFv = .text:0x80456080; // type:function size:0x48 scope:weak align:4 +__ct__Q25P2JME8AnalyzerFPCQ28JMessage10TReference = .text:0x804560C8; // type:function size:0x3C scope:global align:4 +do_character__Q25P2JME8AnalyzerFi = .text:0x80456104; // type:function size:0x4 scope:global align:4 +exec__Q25P2JME8AnalyzerFPc = .text:0x80456108; // type:function size:0x7C scope:global align:4 +__ct__4MenuFP10JUTGamePadP7JUTFontb = .text:0x80456184; // type:function size:0x12C scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x804562B0; // type:function size:0xC0 scope:global align:4 +addKeyEvent__4MenuFQ34Menu8KeyEvent9cTypeFlagUlP18IDelegate1 = .text:0x80456370; // type:function size:0xC8 scope:global align:4 +doUpdate__4MenuFb = .text:0x80456438; // type:function size:0x3A0 scope:global align:4 +__ct__Q24Menu8KeyEventFQ34Menu8KeyEvent9cTypeFlagUlP18IDelegate1 = .text:0x804567D8; // type:function size:0x68 scope:global align:4 +__ct__Q24Menu8MenuItemFQ34Menu8MenuItem9cTypeFlagiPc = .text:0x80456840; // type:function size:0x80 scope:global align:4 +getNext__Q24Menu8MenuItemFv = .text:0x804568C0; // type:function size:0x1C scope:global align:4 +getPrev__Q24Menu8MenuItemFv = .text:0x804568DC; // type:function size:0x1C scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x804568F8; // type:function size:0x200 scope:global align:4 +__ct__Q23PSM14DamageDirectorFv = .text:0x80456AF8; // type:function size:0x80 scope:global align:4 +__dt__Q23PSM15OneShotDirectorFv = .text:0x80456B78; // type:function size:0x80 scope:weak align:4 +directOnTrack__Q23PSM14DamageDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80456BF8; // type:function size:0x34 scope:global align:4 +execInner__Q23PSM14DamageDirectorFv = .text:0x80456C2C; // type:function size:0x3C scope:global align:4 +__dt__Q23PSM16SwitcherDirectorFv = .text:0x80456C68; // type:function size:0x80 scope:weak align:4 +directOnTrack__Q23PSM23TempoChangeDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x80456CE8; // type:function size:0x30 scope:global align:4 +directOffTrack__Q23PSM23TempoChangeDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x80456D18; // type:function size:0x30 scope:global align:4 +__ct__Q23PSM25ActorDirector_TempoChangeFv = .text:0x80456D48; // type:function size:0x84 scope:global align:4 +__dt__Q23PSM23TempoChangeDirectorBaseFv = .text:0x80456DCC; // type:function size:0x90 scope:weak align:4 +execInner__Q23PSM25ActorDirector_TempoChangeFv = .text:0x80456E5C; // type:function size:0x3C scope:global align:4 +__ct__Q23PSM20PikminNumberDirectorFiUcRQ28PSSystem11DirectedBgm = .text:0x80456E98; // type:function size:0x78 scope:global align:4 +directOnTrack__Q23PSM20PikminNumberDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80456F10; // type:function size:0x4C scope:global align:4 +directOffTrack__Q23PSM20PikminNumberDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80456F5C; // type:function size:0x2C scope:global align:4 +execInner__Q23PSM20PikminNumberDirectorFv = .text:0x80456F88; // type:function size:0x3C scope:global align:4 +__ct__Q23PSM28PikminNumberDirector_AutoBgmFiUcRQ28PSSystem11DirectedBgm = .text:0x80456FC4; // type:function size:0x94 scope:global align:4 +__dt__Q23PSM20PikminNumberDirectorFv = .text:0x80457058; // type:function size:0x90 scope:weak align:4 +directOnTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase = .text:0x804570E8; // type:function size:0x88 scope:global align:4 +directOffTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase = .text:0x80457170; // type:function size:0x88 scope:global align:4 +getTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase = .text:0x804571F8; // type:function size:0xB8 scope:global align:4 +__ct__Q23PSM19TrackOnDirectorBaseFiPCcll = .text:0x804572B0; // type:function size:0x7C scope:global align:4 +onPlayInit__Q23PSM19TrackOnDirectorBaseFP8JASTrack = .text:0x8045732C; // type:function size:0x34 scope:global align:4 +directOnTrack__Q23PSM19TrackOnDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x80457360; // type:function size:0x50 scope:global align:4 +directOffTrack__Q23PSM19TrackOnDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x804573B0; // type:function size:0x2C scope:global align:4 +execInner__Q23PSM22TrackOnDirector_VotingFv = .text:0x804573DC; // type:function size:0x90 scope:global align:4 +__dt__Q23PSM19TrackOnDirectorBaseFv = .text:0x8045746C; // type:function size:0x90 scope:weak align:4 +underDirection__Q23PSM22TrackOnDirector_ScaledFv = .text:0x804574FC; // type:function size:0xFC scope:global align:4 +onUpdateFromMasterD__Q23PSM17ListDirectorActorFv = .text:0x804575F8; // type:function size:0x8C scope:global align:4 +__ct__Q23PSM21ActorDirector_TrackOnFPCcill = .text:0x80457684; // type:function size:0x98 scope:global align:4 +execInner__Q23PSM21ActorDirector_TrackOnFv = .text:0x8045771C; // type:function size:0x3C scope:global align:4 +__ct__Q23PSM20ActorDirector_ScaledFPCciffllUl = .text:0x80457758; // type:function size:0xF4 scope:global align:4 +__dt__Q23PSM22TrackOnDirector_ScaledFv = .text:0x8045784C; // type:function size:0xA0 scope:weak align:4 +execInner__Q23PSM20ActorDirector_ScaledFv = .text:0x804578EC; // type:function size:0x3C scope:global align:4 +getNearestDistance__Q23PSM20ActorDirector_ScaledFv = .text:0x80457928; // type:function size:0x614 scope:global align:4 +__ct__Q23PSM19ActorDirector_EnemyFPCcillUl = .text:0x80457F3C; // type:function size:0xE4 scope:global align:4 +__dt__Q23PSM20ActorDirector_ScaledFv = .text:0x80458020; // type:function size:0xB0 scope:weak align:4 +onSetMinDistObj__Q23PSM19ActorDirector_EnemyFPQ24Game8Creature = .text:0x804580D0; // type:function size:0x8 scope:global align:4 +underDirection__Q23PSM19ActorDirector_EnemyFv = .text:0x804580D8; // type:function size:0x1D0 scope:global align:4 +getVolZeroDist__Q23PSM20ActorDirector_BattleFPQ24Game9EnemyBase = .text:0x804582A8; // type:function size:0x44 scope:global align:4 +getVolMaxDist__Q23PSM20ActorDirector_BattleFPQ24Game9EnemyBase = .text:0x804582EC; // type:function size:0x44 scope:global align:4 +getVolZeroDist__Q23PSM19ActorDirector_KehaiFPQ24Game9EnemyBase = .text:0x80458330; // type:function size:0x44 scope:global align:4 +getVolMaxDist__Q23PSM19ActorDirector_KehaiFPQ24Game9EnemyBase = .text:0x80458374; // type:function size:0x44 scope:global align:4 +__ct__Q23PSM17PikAttackDirectorFi = .text:0x804583B8; // type:function size:0x7C scope:global align:4 +__ct__Q23PSM13ExiteDirectorFi = .text:0x80458434; // type:function size:0x7C scope:global align:4 +__ct__Q23PSM15DirectorUpdatorFPQ28PSSystem12DirectorBaseUcQ33PSM15DirectorUpdator4Type = .text:0x804584B0; // type:function size:0x68 scope:global align:4 +directOn__Q23PSM15DirectorUpdatorFUc = .text:0x80458518; // type:function size:0x34 scope:global align:4 +directOff__Q23PSM15DirectorUpdatorFUc = .text:0x8045854C; // type:function size:0x34 scope:global align:4 +frameEndWork__Q23PSM15DirectorUpdatorFv = .text:0x80458580; // type:function size:0x12C scope:global align:4 +PSMGetBattleDirector__FUc = .text:0x804586AC; // type:function size:0x148 scope:global align:4 +PSMGetKehaiD__Fv = .text:0x804587F4; // type:function size:0x108 scope:global align:4 +PSMGetBattleD__Fv = .text:0x804588FC; // type:function size:0x108 scope:global align:4 +PSMGetEventD__Fv = .text:0x80458A04; // type:function size:0x108 scope:global align:4 +PSMGetOtakaraEventD__Fv = .text:0x80458B0C; // type:function size:0xF0 scope:global align:4 +PSMGetGroundD__Fv = .text:0x80458BFC; // type:function size:0x194 scope:global align:4 +PSMGetPikminNumD__Fv = .text:0x80458D90; // type:function size:0xF0 scope:global align:4 +PSMGetDamageD__Fv = .text:0x80458E80; // type:function size:0xF0 scope:global align:4 +PSMGetLifeD__Fv = .text:0x80458F70; // type:function size:0xF0 scope:global align:4 +PSMGetBeedamaForOrimerD__Fv = .text:0x80459060; // type:function size:0xF0 scope:global align:4 +PSMGetBeedamaForLugieD__Fv = .text:0x80459150; // type:function size:0xF0 scope:global align:4 +PSMGetIchouForOrimerD__Fv = .text:0x80459240; // type:function size:0xF0 scope:global align:4 +PSMGetIchouForLugieD__Fv = .text:0x80459330; // type:function size:0xF0 scope:global align:4 +PSMGetPikiBattleD__Fv = .text:0x80459420; // type:function size:0xF0 scope:global align:4 +__dt__Q23PSM13ExiteDirectorFv = .text:0x80459510; // type:function size:0xA0 scope:weak align:4 +onSetMinDistObj__Q23PSM20ActorDirector_ScaledFPQ24Game8Creature = .text:0x804595B0; // type:function size:0x4 scope:weak align:4 +is1PGame__Q23PSM11ObjCalcBaseFv = .text:0x804595B4; // type:function size:0x8 scope:weak align:4 +is2PBattle__Q23PSM16OtakaraEventLinkFv = .text:0x804595BC; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM17PikAttackDirectorFv = .text:0x804595C4; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM19ActorDirector_KehaiFv = .text:0x80459664; // type:function size:0xD0 scope:weak align:4 +__dt__Q23PSM20ActorDirector_BattleFv = .text:0x80459734; // type:function size:0xD0 scope:weak align:4 +__dt__Q23PSM19ActorDirector_EnemyFv = .text:0x80459804; // type:function size:0xC0 scope:weak align:4 +__dt__Q23PSM21ActorDirector_TrackOnFv = .text:0x804598C4; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM22TrackOnDirector_VotingFv = .text:0x80459964; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM28PikminNumberDirector_AutoBgmFv = .text:0x80459A04; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM25ActorDirector_TempoChangeFv = .text:0x80459AA4; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM14DamageDirectorFv = .text:0x80459B44; // type:function size:0x90 scope:weak align:4 +play__Q23PSM12Env_PollutinFv = .text:0x80459BD4; // type:function size:0x274 scope:global align:4 +play__Q23PSM24EnvSe_Perspective_AvoidYFv = .text:0x80459E48; // type:function size:0x280 scope:global align:4 +newSeObj__Q23PSM15EnvSeObjBuilderFUlf3Vec = .text:0x8045A0C8; // type:function size:0xA0 scope:global align:4 +onBuild__Q23PSM15EnvSeObjBuilderFPQ28PSSystem9EnvSeBase = .text:0x8045A168; // type:function size:0x5C scope:global align:4 +__ct__Q23PSM8SceneMgrFv = .text:0x8045A1C4; // type:function size:0x3C scope:global align:4 +newMainBgm__Q23PSM8SceneMgrFPCcRQ27JAInter9SoundInfo = .text:0x8045A200; // type:function size:0xD8 scope:global align:4 +curSceneIsBigBossFloor__Q23PSM8SceneMgrFv = .text:0x8045A2D8; // type:function size:0x14 scope:global align:4 +newDirectedBgm__Q23PSM8SceneMgrFPCcRQ27JAInter9SoundInfo = .text:0x8045A2EC; // type:function size:0x1C0 scope:global align:4 +newGameScene__Q23PSM8SceneMgrFUcPQ26PSGame9SceneInfo = .text:0x8045A4AC; // type:function size:0x1F4 scope:global align:4 +initEnvironmentSe__Q23PSM8SceneMgrFPQ23PSM10Scene_Game = .text:0x8045A6A0; // type:function size:0x18BC scope:global align:4 +SetBossBgmMuteVol__3PSMFPQ28PSSystem8EnvSeMgrUlf = .text:0x8045BF5C; // type:function size:0x8C scope:weak align:4 +SetNoYOfset__3PSMFPQ28PSSystem8EnvSeMgr = .text:0x8045BFE8; // type:function size:0x74 scope:weak align:4 +setInfo__Q23PSM15EnvSeObjBuilderFQ23PSM11PersEnvInfo = .text:0x8045C05C; // type:function size:0x2C scope:weak align:4 +__ct__Q23PSM15EnvSeObjBuilderFQ29JGeometry8TBox3 = .text:0x8045C088; // type:function size:0x70 scope:weak align:4 +__ct__Q29JGeometry8TBox3FRCQ29JGeometry8TBox3 = .text:0x8045C0F8; // type:function size:0x34 scope:weak align:4 +newAutoBgm__Q23PSM8SceneMgrFPCcPCcRQ27JAInter9SoundInfoQ210JADUtility10AccessModeRQ26PSGame9SceneInfoPQ28PSSystem15DirectorMgrBase = .text:0x8045C12C; // type:function size:0x164 scope:global align:4 +__ct__Q23PSM13MiddleBossSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x8045C290; // type:function size:0x60 scope:global align:4 +onJump__Q23PSM13MiddleBossSeqFUs = .text:0x8045C2F0; // type:function size:0x94 scope:global align:4 +exec__Q23PSM13MiddleBossSeqFv = .text:0x8045C384; // type:function size:0x40 scope:global align:4 +requestJumpBgmQuickly__Q23PSM13MiddleBossSeqFUs = .text:0x8045C3C4; // type:function size:0x5C scope:global align:4 +requestJumpBgmOnBeat__Q23PSM13MiddleBossSeqFUs = .text:0x8045C420; // type:function size:0x5C scope:global align:4 +requestJumpBgmEveryBeat__Q23PSM13MiddleBossSeqFUs = .text:0x8045C47C; // type:function size:0x5C scope:global align:4 +jumpCheck__Q23PSM13MiddleBossSeqFUs = .text:0x8045C4D8; // type:function size:0x214 scope:global align:4 +__ct__Q23PSM10BigBossSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x8045C6EC; // type:function size:0x6C scope:global align:4 +__dt__Q23PSM13MiddleBossSeqFv = .text:0x8045C758; // type:function size:0x80 scope:weak align:4 +jumpCheck__Q23PSM10BigBossSeqFUs = .text:0x8045C7D8; // type:function size:0x1B4 scope:global align:4 +onJump__Q23PSM10BigBossSeqFUs = .text:0x8045C98C; // type:function size:0x98 scope:global align:4 +__ct__Q23PSM14PersEnvManagerFPQ28PSSystem8EnvSeMgr = .text:0x8045CA24; // type:function size:0x58 scope:global align:4 +playOk__Q23PSM14PersEnvManagerFPQ23PSM24EnvSe_Perspective_AvoidY = .text:0x8045CA7C; // type:function size:0x40 scope:global align:4 +exec__Q23PSM14PersEnvManagerFv = .text:0x8045CABC; // type:function size:0x1C4 scope:global align:4 +__dt__Q23PSM10BigBossSeqFv = .text:0x8045CC80; // type:function size:0x90 scope:weak align:4 +getCastType__Q23PSM24EnvSe_Perspective_AvoidYFv = .text:0x8045CD10; // type:function size:0xC scope:weak align:4 +getCastType__Q23PSM12Env_PollutinFv = .text:0x8045CD1C; // type:function size:0xC scope:weak align:4 +__dt__Q23PSM9SceneBaseFv = .text:0x8045CD28; // type:function size:0x60 scope:weak align:4 +__ct__Q28PSSystem8EnvSeMgrFv = .text:0x8045CD88; // type:function size:0x54 scope:weak align:4 +__dt__Q23PSM15EnvSeObjBuilderFv = .text:0x8045CDDC; // type:function size:0x60 scope:weak align:4 +__sinit_PSMainSide_Factory_cpp = .text:0x8045CE3C; // type:function size:0x28 scope:local align:4 +__dt__Q23PSM7ObjBaseFv = .text:0x8045CE64; // type:function size:0x80 scope:global align:4 +frameEnd_onPlaySe__Q23PSM6ObjMgrFv = .text:0x8045CEE4; // type:function size:0x4C scope:global align:4 +__dt__Q23PSM6ObjMgrFv = .text:0x8045CF30; // type:function size:0x104 scope:global align:4 +exec__Q23PSM8CreatureFv = .text:0x8045D034; // type:function size:0x58 scope:global align:4 +judgeNearWithPlayer__Q23PSM8CreatureFRC3VecRC3Vecff = .text:0x8045D08C; // type:function size:0x128 scope:global align:4 +isNear__Q23PSM8CreatureFPQ24Game8Creaturef = .text:0x8045D1B4; // type:function size:0xA0 scope:global align:4 +getPlayingHandleNum__Q23PSM8CreatureFv = .text:0x8045D254; // type:function size:0x70 scope:global align:4 +loopCalc__Q23PSM8CreatureFRQ23PSM12FrameCalcArg = .text:0x8045D2C4; // type:function size:0x15C scope:global align:4 +startSoundInner__Q23PSM8CreatureFRQ23PSM13StartSoundArg = .text:0x8045D420; // type:function size:0x380 scope:global align:4 +onPlayingSe__Q23PSM8CreatureFUlP8JAISound = .text:0x8045D7A0; // type:function size:0x4 scope:global align:4 +__ct__Q23PSM11CreatureObjFPQ24Game8CreatureUc = .text:0x8045D7A4; // type:function size:0x10C scope:global align:4 +__dt__Q23PSM8CreatureFv = .text:0x8045D8B0; // type:function size:0x98 scope:weak align:4 +startSound__Q23PSM11CreatureObjFUlUl = .text:0x8045D948; // type:function size:0x3C scope:global align:4 +startSound__Q23PSM11CreatureObjFUcUlUl = .text:0x8045D984; // type:function size:0x8C scope:global align:4 +startSound__Q23PSM11CreatureObjFPP8JAISoundUlUl = .text:0x8045DA10; // type:function size:0xA8 scope:global align:4 +frameEnd_onPlaySe__Q23PSM11CreatureObjFv = .text:0x8045DAB8; // type:function size:0x4C scope:global align:4 +startAnimSound__Q23PSM13CreatureAnimeFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x8045DB04; // type:function size:0x148 scope:global align:4 +startSound__Q23PSM13CreatureAnimeFUlUl = .text:0x8045DC4C; // type:function size:0x3C scope:global align:4 +startSound__Q23PSM13CreatureAnimeFUcUlUl = .text:0x8045DC88; // type:function size:0xB0 scope:global align:4 +startSound__Q23PSM13CreatureAnimeFPP8JAISoundUlUl = .text:0x8045DD38; // type:function size:0xA8 scope:global align:4 +setAnime__Q23PSM13CreatureAnimeFP17JAIAnimeSoundDataUlff = .text:0x8045DDE0; // type:function size:0x40 scope:global align:4 +playActorAnimSound__Q23PSM13CreatureAnimeFPQ27JAInter5ActorfUc = .text:0x8045DE20; // type:function size:0x304 scope:global align:4 +exec__Q23PSM13CreatureAnimeFv = .text:0x8045E124; // type:function size:0xB4 scope:global align:4 +onCalcOn__Q23PSM13CreatureAnimeFv = .text:0x8045E1D8; // type:function size:0xC8 scope:global align:4 +onCalcTurnOn__Q23PSM13CreatureAnimeFv = .text:0x8045E2A0; // type:function size:0x24 scope:global align:4 +onCalcTurnOff__Q23PSM13CreatureAnimeFv = .text:0x8045E2C4; // type:function size:0x4 scope:global align:4 +frameEnd_onPlaySe__Q23PSM13CreatureAnimeFv = .text:0x8045E2C8; // type:function size:0x4C scope:global align:4 +battleOn__Q23PSM10BattleLinkFv = .text:0x8045E314; // type:function size:0x4C scope:global align:4 +battleOff__Q23PSM10BattleLinkFv = .text:0x8045E360; // type:function size:0x4C scope:global align:4 +kehaiOn__Q23PSM9KehaiLinkFv = .text:0x8045E3AC; // type:function size:0x4C scope:global align:4 +kehaiOff__Q23PSM9KehaiLinkFv = .text:0x8045E3F8; // type:function size:0x4C scope:global align:4 +__ct__Q23PSM9EnemyBaseFPQ24Game9EnemyBaseUc = .text:0x8045E444; // type:function size:0x180 scope:global align:4 +__dt__Q23PSM13CreatureAnimeFv = .text:0x8045E5C4; // type:function size:0xDC scope:weak align:4 +startAnimSound__Q23PSM9EnemyBaseFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x8045E6A0; // type:function size:0x174 scope:global align:4 +startSoundInner__Q23PSM9EnemyBaseFRQ23PSM13StartSoundArg = .text:0x8045E814; // type:function size:0x5C scope:global align:4 +onCalcTurnOn__Q23PSM9EnemyBaseFv = .text:0x8045E870; // type:function size:0x44 scope:global align:4 +onCalcTurnOff__Q23PSM9EnemyBaseFv = .text:0x8045E8B4; // type:function size:0x4C scope:global align:4 +onCalcOn__Q23PSM9EnemyBaseFv = .text:0x8045E900; // type:function size:0xF0 scope:global align:4 +battleOff__Q23PSM9EnemyBaseFv = .text:0x8045E9F0; // type:function size:0x60 scope:global align:4 +updateKehai__Q23PSM9EnemyBaseFv = .text:0x8045EA50; // type:function size:0x88 scope:global align:4 +updateBattle__Q23PSM9EnemyBaseFv = .text:0x8045EAD8; // type:function size:0xC8 scope:global align:4 +calcKehai__Q23PSM9EnemyBaseFv = .text:0x8045EBA0; // type:function size:0x338 scope:global align:4 +judgeNearWithPlayer__Q23PSM9EnemyBaseFRC3VecRC3Vecff = .text:0x8045EED8; // type:function size:0x94 scope:global align:4 +__ct__Q23PSM18EnemyNotAggressiveFPQ24Game9EnemyBaseUc = .text:0x8045EF6C; // type:function size:0x1AC scope:global align:4 +__ct__Q23PSM9TsuyukusaFPQ24Game8Creature = .text:0x8045F118; // type:function size:0x160 scope:global align:4 +noukouFrameWork__Q23PSM9TsuyukusaFb = .text:0x8045F278; // type:function size:0xB8 scope:global align:4 +judgeNearWithPlayer__Q23PSM8EnemyBigFRC3VecRC3Vecff = .text:0x8045F330; // type:function size:0x128 scope:global align:4 +onPlayingSe__Q23PSM9EnemyBossFUlP8JAISound = .text:0x8045F458; // type:function size:0x74 scope:global align:4 +judgeNearWithPlayer__Q23PSM9EnemyBossFRC3VecRC3Vecff = .text:0x8045F4CC; // type:function size:0x14 scope:global align:4 +exec__Q23PSM9EnemyBossFv = .text:0x8045F4E0; // type:function size:0xB4 scope:global align:4 +onCalcOn__Q23PSM9EnemyBossFv = .text:0x8045F594; // type:function size:0xF8 scope:global align:4 +calcDistance__Q23PSM9EnemyBossFv = .text:0x8045F68C; // type:function size:0x364 scope:global align:4 +setAppearFlag__Q23PSM9EnemyBossFb = .text:0x8045F9F0; // type:function size:0x140 scope:global align:4 +dyingFrameWork__Q23PSM9EnemyBossFv = .text:0x8045FB30; // type:function size:0x5C scope:global align:4 +onDeathMotionTop__Q23PSM9EnemyBossFv = .text:0x8045FB8C; // type:function size:0x234 scope:global align:4 +setKilled__Q23PSM9EnemyBossFv = .text:0x8045FDC0; // type:function size:0x15C scope:global align:4 +isOnDisappearing__Q23PSM9EnemyBossFv = .text:0x8045FF1C; // type:function size:0x24 scope:global align:4 +updateDisappearing__Q23PSM9EnemyBossFv = .text:0x8045FF40; // type:function size:0x30 scope:global align:4 +__ct__Q23PSM12EnemyMidBossFPQ24Game9EnemyBase = .text:0x8045FF70; // type:function size:0x260 scope:global align:4 +__dt__Q23PSM9EnemyBossFv = .text:0x804601D0; // type:function size:0x1A8 scope:weak align:4 +onCalcOn__Q23PSM12EnemyMidBossFv = .text:0x80460378; // type:function size:0x21C scope:global align:4 +jumpRequest__Q23PSM12EnemyMidBossFUs = .text:0x80460594; // type:function size:0xEC scope:global align:4 +onAppear1st__Q23PSM12EnemyMidBossFv = .text:0x80460680; // type:function size:0x10C scope:global align:4 +postPikiAttack__Q23PSM12EnemyMidBossFb = .text:0x8046078C; // type:function size:0x60 scope:global align:4 +__ct__Q23PSM12EnemyBigBossFPQ24Game9EnemyBase = .text:0x804607EC; // type:function size:0x68 scope:global align:4 +__dt__Q23PSM12EnemyMidBossFv = .text:0x80460854; // type:function size:0x1F0 scope:weak align:4 +__dt__Q23PSM12EnemyBigBossFv = .text:0x80460A44; // type:function size:0x88 scope:global align:4 +jumpRequest__Q23PSM12EnemyBigBossFUs = .text:0x80460ACC; // type:function size:0xE8 scope:global align:4 +onDeathMotionTop__Q23PSM12EnemyBigBossFv = .text:0x80460BB4; // type:function size:0x38 scope:global align:4 +onAppear1st__Q23PSM12EnemyBigBossFv = .text:0x80460BEC; // type:function size:0x10C scope:global align:4 +onPlayingSe__Q23PSM19Enemy_SpecialChappyFUlP8JAISound = .text:0x80460CF8; // type:function size:0xBC scope:global align:4 +eventStart__Q23PSM12DirectorLinkFv = .text:0x80460DB4; // type:function size:0x2C scope:global align:4 +eventRestart__Q23PSM12DirectorLinkFv = .text:0x80460DE0; // type:function size:0x4C scope:global align:4 +eventStop__Q23PSM12DirectorLinkFv = .text:0x80460E2C; // type:function size:0x4C scope:global align:4 +eventFinish__Q23PSM12DirectorLinkFv = .text:0x80460E78; // type:function size:0x2C scope:global align:4 +getListDirectorActor__Q23PSM9EventLinkFv = .text:0x80460EA4; // type:function size:0x34 scope:global align:4 +getListDirectorActor__Q23PSM16OtakaraEventLinkFv = .text:0x80460ED8; // type:function size:0x34 scope:global align:4 +eventFinish__Q23PSM16OtakaraEventLinkFv = .text:0x80460F0C; // type:function size:0x4 scope:global align:4 +getTargetDirector__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x80460F10; // type:function size:0x250 scope:global align:4 +eventStart__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x80461160; // type:function size:0x194 scope:global align:4 +eventRestart__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x804612F4; // type:function size:0x2C scope:global align:4 +eventStop__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x80461320; // type:function size:0x194 scope:global align:4 +eventFinish__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x804614B4; // type:function size:0x2C scope:global align:4 +getListDirectorActor__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x804614E0; // type:function size:0x140 scope:global align:4 +__ct__Q23PSM8WorkItemFPQ24Game8BaseItem = .text:0x80461620; // type:function size:0x170 scope:global align:4 +eventStart__Q23PSM8WorkItemFv = .text:0x80461790; // type:function size:0x30 scope:global align:4 +eventRestart__Q23PSM8WorkItemFv = .text:0x804617C0; // type:function size:0x30 scope:global align:4 +eventStop__Q23PSM8WorkItemFv = .text:0x804617F0; // type:function size:0x30 scope:global align:4 +eventFinish__Q23PSM8WorkItemFv = .text:0x80461820; // type:function size:0x30 scope:global align:4 +setGoalOnyon__Q23PSM7OtakaraFPQ24Game8Creature = .text:0x80461850; // type:function size:0x1A0 scope:global align:4 +otakaraEventStart__Q23PSM7OtakaraFv = .text:0x804619F0; // type:function size:0xDC scope:global align:4 +otakaraEventRestart__Q23PSM7OtakaraFv = .text:0x80461ACC; // type:function size:0xDC scope:global align:4 +otakaraEventStop__Q23PSM7OtakaraFv = .text:0x80461BA8; // type:function size:0xDC scope:global align:4 +otakaraEventFinish__Q23PSM7OtakaraFv = .text:0x80461C84; // type:function size:0xDC scope:global align:4 +__ct__Q23PSM13PelletOtakaraFPQ34Game13PelletOtakara6Objectb = .text:0x80461D60; // type:function size:0x224 scope:global align:4 +__dt__Q23PSM7OtakaraFv = .text:0x80461F84; // type:function size:0x148 scope:weak align:4 +__ct__Q23PSM10PelletItemFPQ34Game10PelletItem6Object = .text:0x804620CC; // type:function size:0x1D4 scope:global align:4 +__ct__Q23PSM4PikiFPQ24Game4Piki = .text:0x804622A0; // type:function size:0x148 scope:global align:4 +onCalcOn__Q23PSM4PikiFv = .text:0x804623E8; // type:function size:0x180 scope:global align:4 +becomeFree__Q23PSM4PikiFv = .text:0x80462568; // type:function size:0xC scope:global align:4 +becomeNotFree__Q23PSM4PikiFv = .text:0x80462574; // type:function size:0xC scope:global align:4 +startFreePikiSound__Q23PSM4PikiFUlUlUl = .text:0x80462580; // type:function size:0x144 scope:global align:4 +startPikiSound__Q23PSM4PikiFPQ27JAInter6ObjectUlUl = .text:0x804626C4; // type:function size:0x70 scope:global align:4 +startPikiSetSound__Q23PSM4PikiFPQ27JAInter6ObjectUlQ36PSGame5SeMgr7SetSeIdUl = .text:0x80462734; // type:function size:0xB4 scope:global align:4 +startFreePikiSetSound__Q23PSM4PikiFUlQ36PSGame5SeMgr7SetSeIdUlUl = .text:0x804627E8; // type:function size:0x1D4 scope:global align:4 +checkHappaChappySE__Q23PSM4PikiFUl = .text:0x804629BC; // type:function size:0x104 scope:global align:4 +__ct__Q23PSM4NaviFPQ24Game4Navi = .text:0x80462AC0; // type:function size:0x138 scope:global align:4 +init__Q23PSM4NaviFUs = .text:0x80462BF8; // type:function size:0x24 scope:global align:4 +setShacho__Q23PSM4NaviFv = .text:0x80462C1C; // type:function size:0x28 scope:global align:4 +stopWaitVoice__Q23PSM4NaviFv = .text:0x80462C44; // type:function size:0x50 scope:global align:4 +startSound__Q23PSM4NaviFUlUl = .text:0x80462C94; // type:function size:0x108 scope:global align:4 +getManType__Q23PSM4NaviFv = .text:0x80462D9C; // type:function size:0x28 scope:global align:4 +playShugoSE__Q23PSM4NaviFv = .text:0x80462DC4; // type:function size:0xA0 scope:global align:4 +playKaisanSE__Q23PSM4NaviFv = .text:0x80462E64; // type:function size:0xA0 scope:global align:4 +playWalkSound__Q23PSM4NaviFQ33PSM4Navi8FootTypei = .text:0x80462F04; // type:function size:0x130 scope:global align:4 +__ct__Q23PSM7ClusterFPQ24Game8CreatureRQ38PSSystem9ClusterSe7Factory = .text:0x80463034; // type:function size:0x158 scope:global align:4 +startClusterSound__Q23PSM7ClusterFUc = .text:0x8046318C; // type:function size:0x60 scope:global align:4 +PSSetCurCameraNo__FUc = .text:0x804631EC; // type:function size:0x58 scope:global align:4 +PSMGetNoukouDist__Fv = .text:0x80463244; // type:function size:0x8 scope:global align:4 +PSSetLastBeedamaDirection__Fbb = .text:0x8046324C; // type:function size:0x70 scope:global align:4 +__dt__Q23PSM7ClusterFv = .text:0x804632BC; // type:function size:0xE8 scope:weak align:4 +getSeSceneGate__Q23PSM9SceneBaseFPQ23PSM7ObjBaseUl = .text:0x804633A4; // type:function size:0x8 scope:weak align:4 +isDemoScene__Q23PSM9SceneBaseFv = .text:0x804633AC; // type:function size:0x8 scope:weak align:4 +onDisappear__Q23PSM9EnemyBossFv = .text:0x804633B4; // type:function size:0x4 scope:weak align:4 +onAppear__Q23PSM9EnemyBossFv = .text:0x804633B8; // type:function size:0x4 scope:weak align:4 +onAppear1st__Q23PSM9EnemyBossFv = .text:0x804633BC; // type:function size:0x4 scope:weak align:4 +getCastType__Q23PSM4NaviFv = .text:0x804633C0; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM4PikiFv = .text:0x804633C8; // type:function size:0xE8 scope:weak align:4 +getCastType__Q23PSM4PikiFv = .text:0x804634B0; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM10PelletItemFv = .text:0x804634B8; // type:function size:0x168 scope:weak align:4 +getCastType__Q23PSM10PelletItemFv = .text:0x80463620; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM13PelletOtakaraFv = .text:0x80463628; // type:function size:0x168 scope:weak align:4 +getCastType__Q23PSM13PelletOtakaraFv = .text:0x80463790; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM7OtakaraFv = .text:0x80463798; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM8WorkItemFv = .text:0x804637A0; // type:function size:0x148 scope:weak align:4 +getCastType__Q23PSM8WorkItemFv = .text:0x804638E8; // type:function size:0x8 scope:weak align:4 +is2PBattle__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x804638F0; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM19Enemy_SpecialChappyFv = .text:0x804638F8; // type:function size:0x1C0 scope:weak align:4 +getCastType__Q23PSM8EnemyBigFv = .text:0x80463AB8; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM12EnemyBigBossFv = .text:0x80463AC0; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM12EnemyMidBossFv = .text:0x80463AC8; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM9EnemyBossFv = .text:0x80463AD0; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM9TsuyukusaFv = .text:0x80463AD8; // type:function size:0x100 scope:weak align:4 +__dt__Q23PSM18EnemyNotAggressiveFv = .text:0x80463BD8; // type:function size:0x190 scope:weak align:4 +getCastType__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D68; // type:function size:0x8 scope:weak align:4 +updateKehai__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D70; // type:function size:0x4 scope:weak align:4 +updateBattle__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D74; // type:function size:0x4 scope:weak align:4 +battleOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D78; // type:function size:0x4 scope:weak align:4 +battleOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D7C; // type:function size:0x4 scope:weak align:4 +kehaiOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D80; // type:function size:0x4 scope:weak align:4 +kehaiOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D84; // type:function size:0x4 scope:weak align:4 +getCastType__Q23PSM13CreatureAnimeFv = .text:0x80463D88; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM4NaviFv = .text:0x80463D90; // type:function size:0xF8 scope:weak align:4 +@16@__dt__Q23PSM7ObjBaseFv = .text:0x80463E88; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM6ObjMgrFv = .text:0x80463E90; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM6ObjMgrFv = .text:0x80463E98; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM8CreatureFv = .text:0x80463EA0; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM11CreatureObjFv = .text:0x80463EA8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM11CreatureObjFv = .text:0x80463EB0; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM13CreatureAnimeFv = .text:0x80463EB8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM13CreatureAnimeFv = .text:0x80463EC0; // type:function size:0x8 scope:weak align:4 +@48@startAnimSound__Q23PSM13CreatureAnimeFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x80463EC8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM9EnemyBaseFv = .text:0x80463ED0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9EnemyBaseFv = .text:0x80463ED8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM18EnemyNotAggressiveFv = .text:0x80463EE0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM18EnemyNotAggressiveFv = .text:0x80463EE8; // type:function size:0x8 scope:weak align:4 +@184@battleOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463EF0; // type:function size:0x8 scope:weak align:4 +@184@battleOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463EF8; // type:function size:0x8 scope:weak align:4 +@204@kehaiOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463F00; // type:function size:0x8 scope:weak align:4 +@204@kehaiOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463F08; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM9TsuyukusaFv = .text:0x80463F10; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9TsuyukusaFv = .text:0x80463F18; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM8EnemyBigFv = .text:0x80463F20; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM8EnemyBigFv = .text:0x80463F28; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM9EnemyBossFv = .text:0x80463F30; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9EnemyBossFv = .text:0x80463F38; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM12EnemyMidBossFv = .text:0x80463F40; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM12EnemyMidBossFv = .text:0x80463F48; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM12EnemyBigBossFv = .text:0x80463F50; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM12EnemyBigBossFv = .text:0x80463F58; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM19Enemy_SpecialChappyFv = .text:0x80463F60; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM19Enemy_SpecialChappyFv = .text:0x80463F68; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM8WorkItemFv = .text:0x80463F70; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM8WorkItemFv = .text:0x80463F78; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM7OtakaraFv = .text:0x80463F80; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM7OtakaraFv = .text:0x80463F88; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM13PelletOtakaraFv = .text:0x80463F90; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM13PelletOtakaraFv = .text:0x80463F98; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM10PelletItemFv = .text:0x80463FA0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM10PelletItemFv = .text:0x80463FA8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM4PikiFv = .text:0x80463FB0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM4PikiFv = .text:0x80463FB8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM4NaviFv = .text:0x80463FC0; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM4NaviFUlUl = .text:0x80463FC8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM4NaviFv = .text:0x80463FD0; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM7ClusterFv = .text:0x80463FD8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM7ClusterFv = .text:0x80463FE0; // type:function size:0x8 scope:weak align:4 +__ct__Q23PSM4DemoFv = .text:0x80463FE8; // type:function size:0x5C scope:global align:4 +init__Q23PSM4DemoFP3VecP3VecPA4_fQ23PSM7DemoArg = .text:0x80464044; // type:function size:0x20C scope:global align:4 +demo1stLoadSync__Q23PSM4DemoFv = .text:0x80464250; // type:function size:0xEC scope:global align:4 +initDemoScene__Q23PSM4DemoFRQ23PSM7DemoArgPQ23PSM10Scene_Demo = .text:0x8046433C; // type:function size:0x48 scope:global align:4 +initiate__Q23PSM4DemoFQ23PSM7DemoArgPUc = .text:0x80464384; // type:function size:0x1DA4 scope:global align:4 +__dt__Q23PSM4DemoFv = .text:0x80466128; // type:function size:0x184 scope:global align:4 +onDemoTop__Q23PSM4DemoFv = .text:0x804662AC; // type:function size:0x6C0 scope:global align:4 +becomeSceneCamera__Q23PSM4DemoFv = .text:0x8046696C; // type:function size:0x104 scope:global align:4 +onDemoFadeoutStart__Q23PSM4DemoFUl = .text:0x80466A70; // type:function size:0xFC scope:global align:4 +onDemoEnd__Q23PSM4DemoFv = .text:0x80466B6C; // type:function size:0x664 scope:global align:4 +onMessageEnd__Q23PSM4DemoFi = .text:0x804671D0; // type:function size:0x268 scope:global align:4 +PSMCancelToPauseOffMainBgm__Fv = .text:0x80467438; // type:function size:0xE4 scope:global align:4 +PSMGetGameSceneA__Fv = .text:0x8046751C; // type:function size:0xEC scope:weak align:4 +isPollutUp__Q23PSM10Scene_CaveFv = .text:0x80467608; // type:function size:0x18 scope:weak align:4 +getEnvSe__Q23PSM9SceneBaseFv = .text:0x80467620; // type:function size:0x8 scope:weak align:4 +setMode__Q23PSM11ObjCalcBaseFQ33PSM11ObjCalcBase4Mode = .text:0x80467628; // type:function size:0x8 scope:weak align:4 +__ct__Q23PSM9SceneBaseFUcPQ26PSGame9SceneInfo = .text:0x80467630; // type:function size:0x84 scope:global align:4 +getSceneFx__Q23PSM9SceneBaseFv = .text:0x804676B4; // type:function size:0x8 scope:global align:4 +becomeSceneCamera__Q23PSM9SceneBaseFv = .text:0x804676BC; // type:function size:0x58 scope:global align:4 +getSceneInfoA__Q23PSM9SceneBaseFv = .text:0x80467714; // type:function size:0x54 scope:global align:4 +pauseOn_2D__Q23PSM9SceneBaseFUcUc = .text:0x80467768; // type:function size:0x28 scope:global align:4 +pauseOff_2D__Q23PSM9SceneBaseFv = .text:0x80467790; // type:function size:0x24 scope:global align:4 +pauseOn_Demo__Q23PSM9SceneBaseFv = .text:0x804677B4; // type:function size:0x4 scope:global align:4 +pauseOff_Demo__Q23PSM9SceneBaseFv = .text:0x804677B8; // type:function size:0x4 scope:global align:4 +__ct__Q23PSM12Scene_GlobalFUcPQ26PSGame9SceneInfo = .text:0x804677BC; // type:function size:0x90 scope:global align:4 +__dt__Q23PSM12Scene_GlobalFv = .text:0x8046784C; // type:function size:0xC8 scope:global align:4 +getCamDistVol__Q23PSM12Scene_GlobalFUc = .text:0x80467914; // type:function size:0x8 scope:global align:4 +getGlobalStream__Q23PSM12Scene_GlobalFv = .text:0x8046791C; // type:function size:0x94 scope:global align:4 +startGlobalStream__Q23PSM12Scene_GlobalFUl = .text:0x804679B0; // type:function size:0xBC scope:global align:4 +__ct__Q23PSM10Scene_DemoFUcPQ26PSGame9SceneInfo = .text:0x80467A6C; // type:function size:0x98 scope:global align:4 +getSeSceneGate__Q23PSM10Scene_DemoFPQ23PSM7ObjBaseUl = .text:0x80467B04; // type:function size:0x84 scope:global align:4 +getCamDistVol__Q23PSM10Scene_DemoFUc = .text:0x80467B88; // type:function size:0x8 scope:global align:4 +__ct__Q23PSM13Scene_ObjectsFUcPQ26PSGame9SceneInfo = .text:0x80467B90; // type:function size:0x114 scope:global align:4 +__dt__Q23PSM13Scene_ObjectsFv = .text:0x80467CA4; // type:function size:0xF8 scope:global align:4 +__dt__Q23PSM11ObjCalcBaseFv = .text:0x80467D9C; // type:function size:0x64 scope:weak align:4 +adaptObjMgr__Q23PSM13Scene_ObjectsFv = .text:0x80467E00; // type:function size:0x60 scope:global align:4 +detachObjMgr__Q23PSM13Scene_ObjectsFv = .text:0x80467E60; // type:function size:0x1C scope:global align:4 +startMainSeq__Q23PSM13Scene_ObjectsFv = .text:0x80467E7C; // type:function size:0x40 scope:global align:4 +onStartMainSeq__Q23PSM13Scene_ObjectsFv = .text:0x80467EBC; // type:function size:0x24 scope:global align:4 +getSeSceneGate__Q23PSM13Scene_ObjectsFPQ23PSM7ObjBaseUl = .text:0x80467EE0; // type:function size:0x14 scope:global align:4 +getCamDistVol__Q23PSM13Scene_ObjectsFUc = .text:0x80467EF4; // type:function size:0x24 scope:global align:4 +exec__Q23PSM13Scene_ObjectsFv = .text:0x80467F18; // type:function size:0x210 scope:global align:4 +init__Q23PSM10Scene_GameFv = .text:0x80468128; // type:function size:0x114 scope:global align:4 +__dt__Q23PSM10Scene_GameFv = .text:0x8046823C; // type:function size:0x168 scope:global align:4 +__dt__Q33PSM12BossBgmFader3MgrFv = .text:0x804683A4; // type:function size:0xB0 scope:weak align:4 +attachBossFaderMgr__Q23PSM10Scene_GameFv = .text:0x80468454; // type:function size:0x58 scope:global align:4 +bossKilled__Q23PSM10Scene_GameFPQ23PSM9EnemyBoss = .text:0x804684AC; // type:function size:0x1DC scope:global align:4 +startMainSeq__Q23PSM10Scene_GameFv = .text:0x80468688; // type:function size:0x100 scope:global align:4 +stopMainSeq__Q23PSM10Scene_GameFUl = .text:0x80468788; // type:function size:0x8C scope:global align:4 +stopAllSound__Q23PSM10Scene_GameFUl = .text:0x80468814; // type:function size:0x50 scope:global align:4 +exec__Q23PSM10Scene_GameFv = .text:0x80468864; // type:function size:0x3C4 scope:global align:4 +getEnvSe__Q23PSM10Scene_GameFv = .text:0x80468C28; // type:function size:0x8 scope:global align:4 +adaptEnvSe__Q23PSM10Scene_GameFPQ28PSSystem8EnvSeMgr = .text:0x80468C30; // type:function size:0x58 scope:global align:4 +bossAppear__Q23PSM10Scene_GameFPQ23PSM9EnemyBossUs = .text:0x80468C88; // type:function size:0x100 scope:global align:4 +pauseOn_2D__Q23PSM10Scene_GameFUcUc = .text:0x80468D88; // type:function size:0x578 scope:global align:4 +pauseOff_2D__Q23PSM10Scene_GameFv = .text:0x80469300; // type:function size:0x40 scope:global align:4 +pauseOn_Demo__Q23PSM10Scene_GameFv = .text:0x80469340; // type:function size:0x548 scope:global align:4 +pauseOff_Demo__Q23PSM10Scene_GameFv = .text:0x80469888; // type:function size:0x4 scope:global align:4 +akubiOK__Q23PSM10Scene_GameFv = .text:0x8046988C; // type:function size:0xB4 scope:global align:4 +__ct__Q23PSM12Scene_GroundFUcPQ26PSGame9SceneInfo = .text:0x80469940; // type:function size:0x184 scope:global align:4 +exec__Q23PSM12Scene_GroundFv = .text:0x80469AC4; // type:function size:0x44 scope:global align:4 +setPollutUp__Q23PSM12Scene_GroundFv = .text:0x80469B08; // type:function size:0xC scope:global align:4 +fadeMainBgm__Q23PSM12Scene_GroundFfUlQ33PSM12Scene_Ground4Time = .text:0x80469B14; // type:function size:0x1AC scope:global align:4 +jumpMainBgm__Q23PSM12Scene_GroundFUc = .text:0x80469CC0; // type:function size:0x184 scope:global align:4 +changeEnvSE_Noon__Q23PSM12Scene_GroundFv = .text:0x80469E44; // type:function size:0x50 scope:global align:4 +__ct__Q23PSM10Scene_CaveFUcPQ26PSGame9SceneInfo = .text:0x80469E94; // type:function size:0x1E4 scope:global align:4 +getSceneFx__Q23PSM10Scene_CaveFv = .text:0x8046A078; // type:function size:0x8 scope:global align:4 +isBossFloor__Q23PSM10Scene_CaveFv = .text:0x8046A080; // type:function size:0x30 scope:global align:4 +exec__Q23PSM10Scene_CaveFv = .text:0x8046A0B0; // type:function size:0x44 scope:global align:4 +stopPollutionSe__Q23PSM10Scene_CaveFv = .text:0x8046A0F4; // type:function size:0x4C scope:global align:4 +startPollutUpSe__Q23PSM10Scene_CaveFv = .text:0x8046A140; // type:function size:0xF8 scope:global align:4 +startMainSeq__Q23PSM10Scene_CaveFv = .text:0x8046A238; // type:function size:0x144 scope:global align:4 +init__Q23PSM10Scene_CaveFv = .text:0x8046A37C; // type:function size:0x24C scope:global align:4 +bossAppear__Q23PSM10Scene_CaveFPQ23PSM9EnemyBossUs = .text:0x8046A5C8; // type:function size:0x1D0 scope:global align:4 +bossKilled__Q23PSM10Scene_CaveFPQ23PSM9EnemyBoss = .text:0x8046A798; // type:function size:0x318 scope:global align:4 +akubiOK__Q23PSM10Scene_CaveFv = .text:0x8046AAB0; // type:function size:0xD4 scope:global align:4 +__ct__Q23PSM15Scene_ChallengeFUcPQ26PSGame9SceneInfo = .text:0x8046AB84; // type:function size:0x1EC scope:global align:4 +__dt__Q23PSM10Scene_CaveFv = .text:0x8046AD70; // type:function size:0x178 scope:weak align:4 +init__Q23PSM15Scene_ChallengeFv = .text:0x8046AEE8; // type:function size:0x24C scope:global align:4 +startMainSeq__Q23PSM15Scene_ChallengeFv = .text:0x8046B134; // type:function size:0x1FC scope:global align:4 +akubiOK__Q23PSM15Scene_ChallengeFv = .text:0x8046B330; // type:function size:0x78 scope:global align:4 +getCamDistVol__Q23PSM11Scene_ZukanFUc = .text:0x8046B3A8; // type:function size:0x8 scope:global align:4 +getSeSceneGate__Q23PSM11Scene_ZukanFPQ23PSM7ObjBaseUl = .text:0x8046B3B0; // type:function size:0xBC scope:global align:4 +__ct__Q23PSM14Scene_WorldMapFUcPQ26PSGame9SceneInfo = .text:0x8046B46C; // type:function size:0xD4 scope:global align:4 +__dt__Q23PSM15Scene_NoObjectsFv = .text:0x8046B540; // type:function size:0x70 scope:weak align:4 +getCamDistVol__Q23PSM15Scene_NoObjectsFUc = .text:0x8046B5B0; // type:function size:0x8 scope:global align:4 +PSChangeBgm_ChallengeGame__Fv = .text:0x8046B5B8; // type:function size:0x1B8 scope:global align:4 +PSStart2DStream__FUl = .text:0x8046B770; // type:function size:0x100 scope:global align:4 +PSStop2DStream__Fv = .text:0x8046B870; // type:function size:0xEC scope:global align:4 +PSPause_StartMenuOn__Fv = .text:0x8046B95C; // type:function size:0x1EC scope:global align:4 +PSPause_StartMenuOff__Fv = .text:0x8046BB48; // type:function size:0x20 scope:global align:4 +PSPauseOn__FUcUc = .text:0x8046BB68; // type:function size:0xEC scope:global align:4 +PSPauseOff__Fv = .text:0x8046BC54; // type:function size:0xCC scope:global align:4 +PSStartChallengeTimeUpStream__Fv = .text:0x8046BD20; // type:function size:0x1C8 scope:global align:4 +PSMuteSE_on2D__Fv = .text:0x8046BEE8; // type:function size:0xB4 scope:global align:4 +PSMuteOffSE_on2D__Fv = .text:0x8046BF9C; // type:function size:0xB4 scope:global align:4 +__dt__Q23PSM10Scene_DemoFv = .text:0x8046C050; // type:function size:0x70 scope:weak align:4 +isCave__Q23PSM10Scene_CaveFv = .text:0x8046C0C0; // type:function size:0x8 scope:weak align:4 +getPollutUpTimer__Q23PSM10Scene_CaveCFv = .text:0x8046C0C8; // type:function size:0x8 scope:weak align:4 +isDemoScene__Q23PSM10Scene_GameFv = .text:0x8046C0D0; // type:function size:0x8 scope:weak align:4 +isGameScene__Q23PSM10Scene_GameFv = .text:0x8046C0D8; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM12Scene_GroundFv = .text:0x8046C0E0; // type:function size:0x178 scope:weak align:4 +isPollutUp__Q23PSM12Scene_GroundFv = .text:0x8046C258; // type:function size:0x18 scope:weak align:4 +getPollutUpTimer__Q23PSM12Scene_GroundCFv = .text:0x8046C270; // type:function size:0x8 scope:weak align:4 +isBossFloor__Q23PSM10Scene_GameFv = .text:0x8046C278; // type:function size:0x8 scope:weak align:4 +isPollutUp__Q23PSM10Scene_GameFv = .text:0x8046C280; // type:function size:0x8 scope:weak align:4 +getPollutUpTimer__Q23PSM10Scene_GameCFv = .text:0x8046C288; // type:function size:0x8 scope:weak align:4 +isDemoScene__Q23PSM10Scene_DemoFv = .text:0x8046C290; // type:function size:0x8 scope:weak align:4 +getSeSceneGate__Q23PSM12Scene_GlobalFPQ23PSM7ObjBaseUl = .text:0x8046C298; // type:function size:0x3C scope:weak align:4 +__dt__Q23PSM14Scene_WorldMapFv = .text:0x8046C2D4; // type:function size:0x80 scope:weak align:4 +__dt__Q23PSM11Scene_ZukanFv = .text:0x8046C354; // type:function size:0x114 scope:weak align:4 +__dt__Q23PSM15Scene_ChallengeFv = .text:0x8046C468; // type:function size:0x188 scope:weak align:4 +__dt__Q28PSSystem39SingletonBaseFv = .text:0x8046C5F0; // type:function size:0x50 scope:weak align:4 +__dt__Q28PSSystem34SingletonBaseFv = .text:0x8046C640; // type:function size:0x50 scope:weak align:4 +__sinit_PSMainSide_Scene_cpp = .text:0x8046C690; // type:function size:0x28 scope:local align:4 +update__Q33PSM12BossBgmFader9TypedProcFv = .text:0x8046C6B8; // type:function size:0x1D8 scope:global align:4 +update__Q33PSM12BossBgmFader17TypedProc_MidBossFv = .text:0x8046C890; // type:function size:0x3C scope:global align:4 +__ct__Q33PSM12BossBgmFader3MgrFv = .text:0x8046C8CC; // type:function size:0xEC scope:global align:4 +appendTarget__Q33PSM12BossBgmFader3MgrFP25JSULink = .text:0x8046C9B8; // type:function size:0x24 scope:global align:4 +exec__Q33PSM12BossBgmFader3MgrFv = .text:0x8046C9DC; // type:function size:0x768 scope:global align:4 +partInit__Q23PSM14ClusterFactoryFUc = .text:0x8046D144; // type:function size:0x21C scope:global align:4 +__ct__Q23PSM14WorldMapRocketFv = .text:0x8046D360; // type:function size:0x74 scope:global align:4 +__dt__Q23PSM14WorldMapRocketFv = .text:0x8046D3D4; // type:function size:0x60 scope:global align:4 +startRocketSE__Q23PSM14WorldMapRocketFff = .text:0x8046D434; // type:function size:0x490 scope:global align:4 +stateChange__Q23PSM14WorldMapRocketFQ33PSM14WorldMapRocket11rocketState = .text:0x8046D8C4; // type:function size:0x8 scope:global align:4 +__ct__Q23PSM11PikiHummingFv = .text:0x8046D8CC; // type:function size:0x4 scope:global align:4 +__ct__Q23PSM14PikiHummingMgrFv = .text:0x8046D8D0; // type:function size:0xFC scope:global align:4 +exec__Q23PSM14PikiHummingMgrFv = .text:0x8046D9CC; // type:function size:0x624 scope:global align:4 +play__Q23PSM14PikiHummingMgrFPQ23PSM4Piki = .text:0x8046DFF0; // type:function size:0xC4 scope:global align:4 +PSStartSoundVec__FUlP3Vec = .text:0x8046E0B4; // type:function size:0x15C scope:global align:4 +newPSCluster_SijimiChou__FPQ24Game8Creature = .text:0x8046E210; // type:function size:0x6C scope:global align:4 +PSStartEnemyGhostSE__FPQ24Game9EnemyBasef = .text:0x8046E27C; // type:function size:0x198 scope:global align:4 +PSStartEnemyFatalHitSE__FPQ24Game9EnemyBasef = .text:0x8046E414; // type:function size:0x27C scope:global align:4 +PSStartEnemyDownSmokeSE__FPQ24Game9EnemyBasef = .text:0x8046E690; // type:function size:0x1B0 scope:global align:4 +PSStartEnemyDownWatSE__FPQ24Game9EnemyBasef = .text:0x8046E840; // type:function size:0x200 scope:global align:4 +PSStartTreasureLaderSE__Ff = .text:0x8046EA40; // type:function size:0x260 scope:global align:4 +PSStartTresureLaderNoiseSE__FUcff = .text:0x8046ECA0; // type:function size:0x450 scope:global align:4 +PSMGetWorldMapRocket__Fv = .text:0x8046F0F0; // type:function size:0xB0 scope:global align:4 +PSPlayCaveHoleSound__FPQ23PSM8Creature = .text:0x8046F1A0; // type:function size:0x7C scope:global align:4 +identifyPart__Q23PSM14ClusterFactoryFUc = .text:0x8046F21C; // type:function size:0x30 scope:weak align:4 +startSoundVecReturnHandleT<8JAISound>__8JAIBasicFPP8JAISoundUlP3VecUlUlUc = .text:0x8046F24C; // type:function size:0x70 scope:weak align:4 +__ct__Q23PSM17DirectorMgr_SceneFPQ23PSM17DirectorMgr_SceneUc = .text:0x8046F2BC; // type:function size:0x2D8 scope:global align:4 +__dt__Q23PSM17DirectorMgr_SceneFv = .text:0x8046F594; // type:function size:0x8C scope:global align:4 +initTrackMap__Q23PSM17DirectorMgr_SceneFRQ28PSSystem11DirectedBgm = .text:0x8046F620; // type:function size:0x294 scope:global align:4 +newDirector__Q23PSM17DirectorMgr_SceneFUcRQ28PSSystem11DirectedBgm = .text:0x8046F8B4; // type:function size:0x770 scope:global align:4 +adaptDirectorActor__Q23PSM17DirectorMgr_SceneFPQ28PSSystem12DirectorBaseUc = .text:0x80470024; // type:function size:0xA8 scope:global align:4 +newPikminNumberDirector__Q23PSM17DirectorMgr_SceneFiUcRQ28PSSystem11DirectedBgm = .text:0x804700CC; // type:function size:0x94 scope:global align:4 +newPikminNumberDirector__Q23PSM25DirectorMgr_Scene_AutoBgmFiUcRQ28PSSystem11DirectedBgm = .text:0x80470160; // type:function size:0x90 scope:global align:4 +__ct__Q23PSM18DirectorMgr_BattleFv = .text:0x804701F0; // type:function size:0x50 scope:global align:4 +newDirector__Q23PSM18DirectorMgr_BattleFUcRQ28PSSystem11DirectedBgm = .text:0x80470240; // type:function size:0x244 scope:global align:4 +__ct__Q23PSM20DirectorMgr_2PBattleFv = .text:0x80470484; // type:function size:0x50 scope:global align:4 +newDirector__Q23PSM20DirectorMgr_2PBattleFUcRQ28PSSystem11DirectedBgm = .text:0x804704D4; // type:function size:0x6B8 scope:global align:4 +__dt__Q23PSM20DirectorMgr_2PBattleFv = .text:0x80470B8C; // type:function size:0x8C scope:weak align:4 +__dt__Q23PSM18DirectorMgr_BattleFv = .text:0x80470C18; // type:function size:0x8C scope:weak align:4 +__dt__Q23PSM25DirectorMgr_Scene_AutoBgmFv = .text:0x80470CA4; // type:function size:0xA4 scope:weak align:4 +isSlave__Q23PSM17DirectorMgr_SceneFv = .text:0x80470D48; // type:function size:0x14 scope:weak align:4 +__dt__Q23PSM15BgmTrackMapFileFv = .text:0x80470D5C; // type:function size:0x88 scope:weak align:4 +__dt__Q23PSM19GroundDirector_CaveFv = .text:0x80470DE4; // type:function size:0xB0 scope:weak align:4 +directOn__Q23PSM19GroundDirector_CaveFv = .text:0x80470E94; // type:function size:0x4 scope:weak align:4 +directOff__Q23PSM19GroundDirector_CaveFv = .text:0x80470E98; // type:function size:0x4 scope:weak align:4 +__dt__Q28PSSystem38SingletonBaseFv = .text:0x80470E9C; // type:function size:0x50 scope:weak align:4 +@12@__dt__Q23PSM17DirectorMgr_SceneFv = .text:0x80470EEC; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM25DirectorMgr_Scene_AutoBgmFv = .text:0x80470EF4; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM18DirectorMgr_BattleFv = .text:0x80470EFC; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM20DirectorMgr_2PBattleFv = .text:0x80470F04; // type:function size:0x8 scope:weak align:4 +makeSeSound__Q23PSM7SeSoundFv = .text:0x80470F0C; // type:function size:0x78 scope:global align:4 +onGet__Q23PSM7SeSoundFv = .text:0x80470F84; // type:function size:0x4 scope:global align:4 +onRelease__Q23PSM7SeSoundFv = .text:0x80470F88; // type:function size:0xA4 scope:global align:4 +initParameter__Q23PSM7SeSoundFPvPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x8047102C; // type:function size:0x154 scope:global align:4 +setDistanceVolumeCommon__Q23PSM7SeSoundFfUc = .text:0x80471180; // type:function size:0x2D8 scope:global align:4 +specializePerspCalc__Q23PSM7SeSoundFRCQ36PSGame10SoundTable11SePerspInfo = .text:0x80471458; // type:function size:0x44 scope:global align:4 +calcVolumeSpecialized__Q23PSM7SeSoundFf = .text:0x8047149C; // type:function size:0x6C scope:global align:4 +calcVolume__Q23PSM7SeSoundFfUcUc = .text:0x80471508; // type:function size:0x8C scope:global align:4 +setSeDistancePan__Q23PSM7SeSoundFUc = .text:0x80471594; // type:function size:0xB8 scope:global align:4 +calcPan__Q23PSM7SeSoundFRC3Vecf = .text:0x8047164C; // type:function size:0xC8 scope:global align:4 +setSeDistanceDolby__Q23PSM7SeSoundFUc = .text:0x80471714; // type:function size:0x88 scope:global align:4 +calcDolby__Q23PSM7SeSoundFRC3Vecf = .text:0x8047179C; // type:function size:0x10C scope:global align:4 +__sinit_PSMainSide_Sound_cpp = .text:0x804718A8; // type:function size:0x28 scope:local align:4 +__ct__Q23PSM15BgmTrackMapFileFb = .text:0x804718D0; // type:function size:0xA8 scope:global align:4 +readTrackMap__Q23PSM15BgmTrackMapFileFPCc = .text:0x80471978; // type:function size:0x77C scope:global align:4 +read__Q23PSM15BgmTrackMapFileFR6Stream = .text:0x804720F4; // type:function size:0x294 scope:global align:4 +__ct__Q23PSM11BgmTrackMapFv = .text:0x80472388; // type:function size:0x110 scope:weak align:4 +@28@__dt__Q23PSM15BgmTrackMapFileFv = .text:0x80472498; // type:function size:0x8 scope:weak align:4 +setSetting__Q23PSM15THPDinamicsProcFQ23PSM6THP_ID = .text:0x804724A0; // type:function size:0x70 scope:global align:4 +setSetting__Q23PSM15THPDinamicsProcFPQ23PSM15THPDemoDinamics = .text:0x80472510; // type:function size:0x110 scope:global align:4 +dinamics__Q23PSM15THPDinamicsProcFf = .text:0x80472620; // type:function size:0x130 scope:global align:4 +__dt__Q23PSM11CreaturePrmFv = .text:0x80472750; // type:function size:0x64 scope:weak align:4 +__dt__Q28PSSystem34SingletonBaseFv = .text:0x804727B4; // type:function size:0x50 scope:weak align:4 +__sinit_PSMainSide_CreaturePrm_cpp = .text:0x80472804; // type:function size:0xA0 scope:local align:4 +newInstance_SingleGame__Q23PSM18ObjCalc_SingleGameFv = .text:0x804728A4; // type:function size:0x60 scope:global align:4 +getPlayerNo__Q23PSM18ObjCalc_SingleGameFPQ23PSM8Creature = .text:0x80472904; // type:function size:0x8 scope:global align:4 +getPlayerNo__Q23PSM18ObjCalc_SingleGameFR3Vec = .text:0x8047290C; // type:function size:0x8 scope:global align:4 +newInstance_2PGame__Q23PSM14ObjCalc_2PGameFv = .text:0x80472914; // type:function size:0x5C scope:global align:4 +getPlayerNo__Q23PSM14ObjCalc_2PGameFR3Vec = .text:0x80472970; // type:function size:0x3BC scope:global align:4 +getPlayerNo__Q23PSM14ObjCalc_2PGameFPQ23PSM8Creature = .text:0x80472D2C; // type:function size:0xC8 scope:global align:4 +__dt__Q23PSM18ObjCalc_SingleGameFv = .text:0x80472DF4; // type:function size:0x74 scope:weak align:4 +__dt__Q23PSM14ObjCalc_2PGameFv = .text:0x80472E68; // type:function size:0x74 scope:weak align:4 +is1PGame__Q23PSM14ObjCalc_2PGameFv = .text:0x80472EDC; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x80472F00; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x80472F00; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x804732C0; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x804732C0; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x804732C4; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x804732C8; // type:object size:0x4 scope:local align:4 +@1581 = .rodata:0x804732E0; // type:object size:0xC scope:local align:4 data:4byte +gapfnExtrapolateParameter___Q27JStudio27@unnamed@functionvalue_cpp@ = .rodata:0x804732F0; // type:object size:0x10 scope:local align:4 data:4byte +saCompositeOperation___Q37JStudio3fvb17@unnamed@fvb_cpp@ = .rodata:0x80473300; // type:object size:0x40 scope:local align:4 +@741 = .rodata:0x80473340; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80473350; // type:label scope:local +sauVariableValue_3_TRANSLATION_XYZ__Q27JStudio14TAdaptor_actor = .rodata:0x80473350; // type:object size:0xC scope:global align:4 +sauVariableValue_3_ROTATION_XYZ__Q27JStudio14TAdaptor_actor = .rodata:0x8047335C; // type:object size:0xC scope:global align:4 +sauVariableValue_3_SCALING_XYZ__Q27JStudio14TAdaptor_actor = .rodata:0x80473368; // type:object size:0xC scope:global align:4 data:4byte +sauVariableValue_3_COLOR_RGB__Q27JStudio21TAdaptor_ambientLight = .rodata:0x80473374; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio21TAdaptor_ambientLight = .rodata:0x80473380; // type:object size:0x10 scope:global align:4 data:4byte +sauVariableValue_3_POSITION_XYZ__Q27JStudio15TAdaptor_camera = .rodata:0x80473390; // type:object size:0xC scope:global align:4 +sauVariableValue_3_TARGET_POSITION_XYZ__Q27JStudio15TAdaptor_camera = .rodata:0x8047339C; // type:object size:0xC scope:global align:4 +sauVariableValue_3_COLOR_RGB__Q27JStudio12TAdaptor_fog = .rodata:0x804733A8; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio12TAdaptor_fog = .rodata:0x804733B4; // type:object size:0x10 scope:global align:4 +sauVariableValue_3_COLOR_RGB__Q27JStudio14TAdaptor_light = .rodata:0x804733C4; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio14TAdaptor_light = .rodata:0x804733D0; // type:object size:0x10 scope:global align:4 +sauVariableValue_3_POSITION_XYZ__Q27JStudio14TAdaptor_light = .rodata:0x804733E0; // type:object size:0xC scope:global align:4 +sauVariableValue_3_TARGET_POSITION_XYZ__Q27JStudio14TAdaptor_light = .rodata:0x804733EC; // type:object size:0xC scope:global align:4 +sauVariableValue_3_TRANSLATION_XYZ__Q27JStudio17TAdaptor_particle = .rodata:0x804733F8; // type:object size:0xC scope:global align:4 +sauVariableValue_3_ROTATION_XYZ__Q27JStudio17TAdaptor_particle = .rodata:0x80473404; // type:object size:0xC scope:global align:4 +sauVariableValue_3_SCALING_XYZ__Q27JStudio17TAdaptor_particle = .rodata:0x80473410; // type:object size:0xC scope:global align:4 +sauVariableValue_3_COLOR_RGB__Q27JStudio17TAdaptor_particle = .rodata:0x8047341C; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio17TAdaptor_particle = .rodata:0x80473428; // type:object size:0x10 scope:global align:4 +sauVariableValue_3_COLOR1_RGB__Q27JStudio17TAdaptor_particle = .rodata:0x80473438; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR1_RGBA__Q27JStudio17TAdaptor_particle = .rodata:0x80473444; // type:object size:0x10 scope:global align:4 data:4byte +sauVariableValue_3_POSITION_XYZ__Q27JStudio14TAdaptor_sound = .rodata:0x80473454; // type:object size:0xC scope:global align:4 data:4byte +gauDataSize_TEParagraph_data__Q37JStudio3stb4data = .rodata:0x80473460; // type:object size:0x20 scope:global align:4 +...rodata.0 = .rodata:0x80473480; // type:label scope:local +@560 = .rodata:0x80473480; // type:object size:0xC scope:local align:4 data:string +@562 = .rodata:0x8047348C; // type:object size:0x1F scope:local align:4 data:string +@949 = .rodata:0x804734AC; // type:object size:0x1E scope:local align:4 data:string +@1067 = .rodata:0x804734CC; // type:object size:0x43 scope:local align:4 data:string +@2766 = .rodata:0x80473510; // type:object size:0x13 scope:local align:4 data:string +@2767 = .rodata:0x80473524; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80473540; // type:label scope:local +@347 = .rodata:0x80473540; // type:object size:0x10 scope:local align:4 data:string +@348 = .rodata:0x80473550; // type:object size:0xD scope:local align:4 data:string +@349 = .rodata:0x80473560; // type:object size:0x12 scope:local align:4 data:string +@350 = .rodata:0x80473574; // type:object size:0xD scope:local align:4 data:string +@351 = .rodata:0x80473584; // type:object size:0x11 scope:local align:4 data:string +@573 = .rodata:0x80473598; // type:object size:0x12 scope:local align:4 data:string +@575 = .rodata:0x804735AC; // type:object size:0x18 scope:local align:4 data:string +@2776 = .rodata:0x804735C8; // type:object size:0x13 scope:local align:4 data:string +@2778 = .rodata:0x804735DC; // type:object size:0x11 scope:local align:4 data:string +@2841 = .rodata:0x804735F0; // type:object size:0x12 scope:local align:4 data:string +@706 = .rodata:0x80473608; // type:object size:0xF scope:local align:4 data:string +@707 = .rodata:0x80473618; // type:object size:0x17 scope:local align:4 data:string +...rodata.0 = .rodata:0x80473630; // type:label scope:local +@879 = .rodata:0x80473630; // type:object size:0x12 scope:local align:4 data:string +@880 = .rodata:0x80473644; // type:object size:0x26 scope:local align:4 data:string +@881 = .rodata:0x8047366C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80473688; // type:label scope:local +@451 = .rodata:0x80473688; // type:object size:0x11 scope:local align:4 data:string +@452 = .rodata:0x8047369C; // type:object size:0x26 scope:local align:4 data:string +@453 = .rodata:0x804736C4; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x804736E8; // type:label scope:local +@584 = .rodata:0x804736E8; // type:object size:0x25 scope:local align:4 data:string +@950 = .rodata:0x80473710; // type:object size:0xF scope:local align:4 data:string +@951 = .rodata:0x80473720; // type:object size:0x1A scope:local align:4 data:string +@1043 = .rodata:0x8047373C; // type:object size:0x24 scope:local align:4 data:string +@1044 = .rodata:0x80473760; // type:object size:0x10 scope:local align:4 data:string +@1102 = .rodata:0x80473770; // type:object size:0x2A scope:local align:4 data:string +@1103 = .rodata:0x8047379C; // type:object size:0x2D scope:local align:4 data:string +@1104 = .rodata:0x804737CC; // type:object size:0x2B scope:local align:4 data:string +@1105 = .rodata:0x804737F8; // type:object size:0x29 scope:local align:4 data:string +@1106 = .rodata:0x80473824; // type:object size:0x25 scope:local align:4 data:string +@1107 = .rodata:0x8047384C; // type:object size:0x2D scope:local align:4 data:string +@1108 = .rodata:0x8047387C; // type:object size:0x26 scope:local align:4 data:string +@1142 = .rodata:0x804738A4; // type:object size:0x37 scope:local align:4 data:string +@1143 = .rodata:0x804738DC; // type:object size:0xF scope:local align:4 data:string +@1145 = .rodata:0x804738EC; // type:object size:0x3A scope:local align:4 data:string +@1146 = .rodata:0x80473928; // type:object size:0x25 scope:local align:4 data:string +@1149 = .rodata:0x80473950; // type:object size:0xF scope:local align:4 data:string +@1151 = .rodata:0x80473960; // type:object size:0x2A scope:local align:4 data:string +@1228 = .rodata:0x8047398C; // type:object size:0x1C scope:local align:4 data:string +@1229 = .rodata:0x804739A8; // type:object size:0x30 scope:local align:4 data:string +@1230 = .rodata:0x804739D8; // type:object size:0x12 scope:local align:4 data:string +@1231 = .rodata:0x804739EC; // type:object size:0x9 scope:local align:4 data:string +@1232 = .rodata:0x804739F8; // type:object size:0x1C scope:local align:4 data:string +@1233 = .rodata:0x80473A14; // type:object size:0x11 scope:local align:4 data:string +@1234 = .rodata:0x80473A28; // type:object size:0x12 scope:local align:4 data:string +@1235 = .rodata:0x80473A3C; // type:object size:0x11 scope:local align:4 data:string +@1236 = .rodata:0x80473A50; // type:object size:0x15 scope:local align:4 data:string +@912 = .rodata:0x80473A68; // type:object size:0xC scope:local align:4 data:string +@2646 = .rodata:0x80473A78; // type:object size:0x12 scope:local align:4 data:string +@2647 = .rodata:0x80473A8C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80473AA8; // type:label scope:local +@581 = .rodata:0x80473AA8; // type:object size:0x31 scope:local align:4 data:string +@596 = .rodata:0x80473ADC; // type:object size:0x31 scope:local align:4 data:string +@601 = .rodata:0x80473B10; // type:object size:0x27 scope:local align:4 data:string +@631 = .rodata:0x80473B38; // type:object size:0x2F scope:local align:4 data:string +@636 = .rodata:0x80473B68; // type:object size:0x2E scope:local align:4 data:string +@684 = .rodata:0x80473B98; // type:object size:0x31 scope:local align:4 data:string +@695 = .rodata:0x80473BCC; // type:object size:0x11 scope:local align:4 data:string +@696 = .rodata:0x80473BE0; // type:object size:0x11 scope:local align:4 data:string +@697 = .rodata:0x80473BF4; // type:object size:0x1E scope:local align:4 data:string +...rodata.0 = .rodata:0x80473C18; // type:label scope:local +@2413 = .rodata:0x80473C18; // type:object size:0xD scope:local align:4 data:string +@2414 = .rodata:0x80473C28; // type:object size:0xE scope:local align:4 data:string +@2417 = .rodata:0x80473C38; // type:object size:0x13 scope:local align:4 data:string +@2418 = .rodata:0x80473C4C; // type:object size:0xA scope:local align:4 data:string +@2420 = .rodata:0x80473C58; // type:object size:0xF scope:local align:4 data:string +@2421 = .rodata:0x80473C68; // type:object size:0xC scope:local align:4 data:string +@2422 = .rodata:0x80473C74; // type:object size:0xC scope:local align:4 data:string +@2424 = .rodata:0x80473C80; // type:object size:0x13 scope:local align:4 data:string +@2425 = .rodata:0x80473C94; // type:object size:0xC scope:local align:4 data:string +@2426 = .rodata:0x80473CA0; // type:object size:0x11 scope:local align:4 data:string +@2427 = .rodata:0x80473CB4; // type:object size:0x12 scope:local align:4 data:string +@2428 = .rodata:0x80473CC8; // type:object size:0xB scope:local align:4 data:string +@2496 = .rodata:0x80473CD4; // type:object size:0x17 scope:local align:4 data:string +@2558 = .rodata:0x80473CEC; // type:object size:0x11 scope:local align:4 data:string +@2559 = .rodata:0x80473D00; // type:object size:0x10 scope:local align:4 data:string +@2560 = .rodata:0x80473D10; // type:object size:0x10 scope:local align:4 data:string +@2562 = .rodata:0x80473D20; // type:object size:0x11 scope:local align:4 data:string +@2563 = .rodata:0x80473D34; // type:object size:0xC scope:local align:4 data:string +@2717 = .rodata:0x80473D40; // type:object size:0x26 scope:local align:4 data:string +@2791 = .rodata:0x80473D68; // type:object size:0x28 scope:local align:4 data:string +@2792 = .rodata:0x80473D90; // type:object size:0x20 scope:local align:4 data:string +@2793 = .rodata:0x80473DB0; // type:object size:0x11 scope:local align:4 data:string +@2794 = .rodata:0x80473DC4; // type:object size:0x15 scope:local align:4 data:string +@2836 = .rodata:0x80473DDC; // type:object size:0x1F scope:local align:4 data:string +@2837 = .rodata:0x80473DFC; // type:object size:0xF scope:local align:4 data:string +@2838 = .rodata:0x80473E0C; // type:object size:0x19 scope:local align:4 data:string +@2840 = .rodata:0x80473E28; // type:object size:0x16 scope:local align:4 data:string +@2841 = .rodata:0x80473E40; // type:object size:0x16 scope:local align:4 data:string +@2843 = .rodata:0x80473E58; // type:object size:0xF scope:local align:4 data:string +@2844 = .rodata:0x80473E68; // type:object size:0x12 scope:local align:4 data:string +@2845 = .rodata:0x80473E7C; // type:object size:0x13 scope:local align:4 data:string +@2846 = .rodata:0x80473E90; // type:object size:0x16 scope:local align:4 data:string +@2847 = .rodata:0x80473EA8; // type:object size:0x1A scope:local align:4 data:string +@2848 = .rodata:0x80473EC4; // type:object size:0x10 scope:local align:4 data:string +@2849 = .rodata:0x80473ED4; // type:object size:0x11 scope:local align:4 data:string +@2850 = .rodata:0x80473EE8; // type:object size:0x15 scope:local align:4 data:string +@2851 = .rodata:0x80473F00; // type:object size:0x16 scope:local align:4 data:string +@2852 = .rodata:0x80473F18; // type:object size:0x1C scope:local align:4 data:string +@2853 = .rodata:0x80473F34; // type:object size:0x1C scope:local align:4 data:string +@2867 = .rodata:0x80473F50; // type:object size:0x26 scope:local align:4 data:string +@2868 = .rodata:0x80473F78; // type:object size:0x27 scope:local align:4 data:string +@2869 = .rodata:0x80473FA0; // type:object size:0x1A scope:local align:4 data:string +@2934 = .rodata:0x80473FBC; // type:object size:0x15 scope:local align:4 data:string +@3015 = .rodata:0x80473FD4; // type:object size:0x29 scope:local align:4 data:string +@3016 = .rodata:0x80474000; // type:object size:0xD scope:local align:4 data:string +@3017 = .rodata:0x80474010; // type:object size:0x12 scope:local align:4 data:string +@3018 = .rodata:0x80474024; // type:object size:0x26 scope:local align:4 data:string +@3091 = .rodata:0x8047404C; // type:object size:0x2A scope:local align:4 data:string +@3092 = .rodata:0x80474078; // type:object size:0xC scope:local align:4 data:string +@3181 = .rodata:0x80474084; // type:object size:0x19 scope:local align:4 data:string +@3453 = .rodata:0x804740A0; // type:object size:0x37 scope:local align:4 data:string +@3454 = .rodata:0x804740D8; // type:object size:0x2D scope:local align:4 data:string +@3455 = .rodata:0x80474108; // type:object size:0x22 scope:local align:4 data:string +@3684 = .rodata:0x8047412C; // type:object size:0x20 scope:local align:4 data:string +@325 = .rodata:0x80474150; // type:object size:0xF scope:local align:4 data:string +@326 = .rodata:0x80474160; // type:object size:0x1A scope:local align:4 data:string +saoAboutEncoding___10JUTResFont = .rodata:0x80474180; // type:object size:0xC scope:global align:4 +@566 = .rodata:0x8047418C; // type:object size:0x20 scope:local align:4 data:string +@588 = .rodata:0x804741AC; // type:object size:0x14 scope:local align:4 data:string +halftofull$725 = .rodata:0x804741C0; // type:object size:0xBE scope:local align:4 +@648 = .rodata:0x80474280; // type:object size:0x15 scope:local align:4 data:string +@649 = .rodata:0x80474298; // type:object size:0x1B scope:local align:4 data:string +JUTResFONT_Ascfont_fix12 = .rodata:0x804742C0; // type:label scope:global +...rodata.0 = .rodata:0x80478420; // type:label scope:local +@570 = .rodata:0x80478420; // type:object size:0x22 scope:local align:4 data:string +@708 = .rodata:0x80478444; // type:object size:0x11 scope:local align:4 data:string +@710 = .rodata:0x80478458; // type:object size:0x26 scope:local align:4 data:string +@711 = .rodata:0x80478480; // type:object size:0x14 scope:local align:4 data:string +@2033 = .rodata:0x80478498; // type:object size:0x10 scope:local align:4 data:4byte +@2051 = .rodata:0x804784A8; // type:object size:0x10 scope:local align:4 data:4byte +@3276 = .rodata:0x804784B8; // type:object size:0x10 scope:local align:4 data:4byte +@3285 = .rodata:0x804784C8; // type:object size:0x14 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x804784E0; // type:label scope:local +@1699 = .rodata:0x804784E0; // type:object size:0x10 scope:local align:4 data:4byte +@1751 = .rodata:0x804784F0; // type:object size:0x10 scope:local align:4 +@1760 = .rodata:0x80478500; // type:object size:0x10 scope:local align:4 +@1769 = .rodata:0x80478510; // type:object size:0x10 scope:local align:4 +@1775 = .rodata:0x80478520; // type:object size:0x10 scope:local align:4 +@1781 = .rodata:0x80478530; // type:object size:0x10 scope:local align:4 +@1790 = .rodata:0x80478540; // type:object size:0x10 scope:local align:4 +@1799 = .rodata:0x80478550; // type:object size:0x10 scope:local align:4 +@1806 = .rodata:0x80478560; // type:object size:0x10 scope:local align:4 +@2720 = .rodata:0x80478570; // type:object size:0x18 scope:local align:4 +@2721 = .rodata:0x80478588; // type:object size:0x18 scope:local align:4 +@2722 = .rodata:0x804785A0; // type:object size:0x1E scope:local align:4 +@3319 = .rodata:0x804785C0; // type:object size:0x10 scope:local align:4 data:4byte +@1657 = .rodata:0x804785D0; // type:object size:0x10 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x804785E0; // type:label scope:local +@2844 = .rodata:0x804785E0; // type:object size:0x20 scope:local align:4 data:4byte +@2845 = .rodata:0x80478600; // type:object size:0x20 scope:local align:4 +@2846 = .rodata:0x80478620; // type:object size:0x28 scope:local align:4 +j2dDefaultTexCoordInfo = .rodata:0x80478648; // type:object size:0x20 scope:global align:4 data:byte +j2dDefaultTexMtxInfo = .rodata:0x80478668; // type:object size:0x24 scope:global align:4 data:byte +j2dDefaultIndTexMtxInfo = .rodata:0x8047868C; // type:object size:0x1C scope:global align:4 data:float +j2dDefaultTevStageInfo = .rodata:0x804786A8; // type:object size:0x14 scope:global align:4 +j2dDefaultIndTevStageInfo = .rodata:0x804786BC; // type:object size:0xC scope:global align:4 data:4byte +...rodata.0 = .rodata:0x804786C8; // type:label scope:local +@2141 = .rodata:0x804786C8; // type:object size:0xC scope:local align:4 data:4byte +@2142 = .rodata:0x804786D4; // type:object size:0xC scope:local align:4 +@2143 = .rodata:0x804786E0; // type:object size:0xF scope:local align:4 +@2144 = .rodata:0x804786F0; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80478700; // type:label scope:local +@1369 = .rodata:0x80478700; // type:object size:0x10 scope:local align:4 data:4byte +@1370 = .rodata:0x80478710; // type:object size:0x10 scope:local align:4 +@1413 = .rodata:0x80478720; // type:object size:0x18 scope:local align:4 +@1595 = .rodata:0x80478738; // type:object size:0x9 scope:local align:4 data:string +@1596 = .rodata:0x80478744; // type:object size:0x31 scope:local align:4 data:string +@1597 = .rodata:0x80478778; // type:object size:0x23 scope:local align:4 data:string +@1598 = .rodata:0x8047879C; // type:object size:0x26 scope:local align:4 data:string +@1599 = .rodata:0x804787C4; // type:object size:0x1C scope:local align:4 data:string +@1600 = .rodata:0x804787E0; // type:object size:0x22 scope:local align:4 data:string +@1601 = .rodata:0x80478804; // type:object size:0x1E scope:local align:4 data:string +@1602 = .rodata:0x80478824; // type:object size:0x1C scope:local align:4 +j3dDefaultTransformInfo = .rodata:0x80478840; // type:object size:0x20 scope:global align:4 data:4byte +j3dDefaultScale = .rodata:0x80478860; // type:object size:0xC scope:global align:4 +j3dDefaultMtx = .rodata:0x8047886C; // type:object size:0x30 scope:global align:4 +@1411 = .rodata:0x8047889C; // type:object size:0xC scope:local align:4 data:4byte +j3dDefaultTexCoordInfo = .rodata:0x804788A8; // type:object size:0x20 scope:global align:4 data:byte +j3dDefaultTexMtxInfo = .rodata:0x804788C8; // type:object size:0x64 scope:global align:4 data:byte +j3dDefaultIndTexMtxInfo = .rodata:0x8047892C; // type:object size:0x1C scope:global align:4 data:byte +j3dDefaultTevStageInfo = .rodata:0x80478948; // type:object size:0x14 scope:global align:4 +j3dDefaultIndTevStageInfo = .rodata:0x8047895C; // type:object size:0xC scope:global align:4 data:byte +j3dDefaultFogInfo = .rodata:0x80478968; // type:object size:0x2C scope:global align:4 data:byte +j3dDefaultNBTScaleInfo = .rodata:0x80478994; // type:object size:0x10 scope:global align:4 data:byte +@1878 = .rodata:0x804789A4; // type:object size:0xB scope:local align:4 data:4byte +@1474 = .rodata:0x804789B0; // type:object size:0xC scope:local align:4 data:4byte +@1485 = .rodata:0x804789BC; // type:object size:0xC scope:local align:4 data:4byte +@1835 = .rodata:0x804789C8; // type:object size:0xC scope:local align:4 data:4byte +@1837 = .rodata:0x804789D4; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x804789E0; // type:label scope:local +@3938 = .rodata:0x804789E0; // type:object size:0x1C scope:local align:4 data:string +@3939 = .rodata:0x804789FC; // type:object size:0x1E scope:local align:4 data:string +@3940 = .rodata:0x80478A1C; // type:object size:0x28 scope:local align:4 data:string +@3941 = .rodata:0x80478A44; // type:object size:0x25 scope:local align:4 data:string +@3942 = .rodata:0x80478A6C; // type:object size:0x30 scope:local align:4 data:string +@3943 = .rodata:0x80478A9C; // type:object size:0x19 scope:local align:4 data:string +OSC_RELEASE_TABLE__10JASBankMgr = .rodata:0x80478AB8; // type:object size:0xC scope:local align:4 +OSC_ENV__10JASBankMgr = .rodata:0x80478AC4; // type:object size:0x18 scope:local align:4 +s_key_table = .rodata:0x80478AE0; // type:object size:0x100 scope:local align:4 +sAdsrDef__9JASPlayer = .rodata:0x80478BE0; // type:object size:0x18 scope:global align:4 data:4byte +sEnvelopeDef__9JASPlayer = .rodata:0x80478BF8; // type:object size:0x18 scope:global align:4 data:4byte +sVibratoDef__9JASPlayer = .rodata:0x80478C10; // type:object size:0x18 scope:global align:4 data:4byte +sTremoroDef__9JASPlayer = .rodata:0x80478C28; // type:object size:0x18 scope:global align:4 data:4byte +Arglist = .rodata:0x80478C40; // type:object size:0x100 scope:local align:4 +...rodata.0 = .rodata:0x80478D40; // type:label scope:local +relTableSampleCell__13JASOscillator = .rodata:0x80478D40; // type:object size:0x44 scope:global align:4 +relTableSqRoot__13JASOscillator = .rodata:0x80478D84; // type:object size:0x44 scope:global align:4 +relTableSquare__13JASOscillator = .rodata:0x80478DC8; // type:object size:0x44 scope:global align:4 +oscTableForceStop__13JASOscillator = .rodata:0x80478E0C; // type:object size:0xC scope:global align:4 +calc_sw_table__10JASChannel = .rodata:0x80478E18; // type:object size:0x51 scope:global align:4 +C5BASE_PITCHTABLE__9JASDriver = .rodata:0x80478E70; // type:object size:0x200 scope:local align:4 +DSPADPCM_FILTER__6JASDsp = .rodata:0x80479080; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER__6JASDsp = .rodata:0x804790C0; // type:object size:0x500 scope:local align:32 +connect_table$774 = .rodata:0x804795C0; // type:object size:0x18 scope:local align:4 +@495 = .rodata:0x804795D8; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x804795E8; // type:label scope:local +sMixFuncs__9JASDriver = .rodata:0x804795E8; // type:object size:0x10 scope:local align:4 +@456 = .rodata:0x804795F8; // type:object size:0xB scope:local align:4 data:string +@458 = .rodata:0x80479604; // type:object size:0x11 scope:local align:4 data:string +@527 = .rodata:0x80479618; // type:object size:0x9 scope:local align:4 data:string +@577 = .rodata:0x80479624; // type:object size:0x9 scope:local align:4 data:string +@589 = .rodata:0x80479630; // type:object size:0xC scope:local align:4 data:string +OSC_RELEASE_TABLE = .rodata:0x80479640; // type:object size:0xC scope:local align:4 +OSC_ENV = .rodata:0x8047964C; // type:object size:0x18 scope:local align:4 +@85 = .rodata:0x80479668; // type:object size:0x1F scope:local align:4 data:string +@1341 = .rodata:0x80479688; // type:object size:0xC scope:local align:4 data:string +@1345 = .rodata:0x80479694; // type:object size:0xA scope:local align:4 data:string +@1346 = .rodata:0x804796A0; // type:object size:0xC scope:local align:4 data:string +@1144 = .rodata:0x804796B0; // type:object size:0x18 scope:local align:4 data:4byte +@133 = .rodata:0x804796C8; // type:object size:0x1B scope:local align:4 data:string +@154 = .rodata:0x804796E4; // type:object size:0x10 scope:local align:4 data:string +@98 = .rodata:0x804796F8; // type:object size:0x25 scope:local align:4 data:string +@618 = .rodata:0x80479720; // type:object size:0x1D scope:local align:4 data:string +...rodata.0 = .rodata:0x80479740; // type:label scope:local +@121 = .rodata:0x80479740; // type:object size:0x22 scope:local align:4 data:string +@122 = .rodata:0x80479764; // type:object size:0x22 scope:local align:4 data:string +@123 = .rodata:0x80479788; // type:object size:0x22 scope:local align:4 data:string +@124 = .rodata:0x804797AC; // type:object size:0x20 scope:local align:4 data:string +@125 = .rodata:0x804797CC; // type:object size:0x20 scope:local align:4 data:string +@126 = .rodata:0x804797EC; // type:object size:0x21 scope:local align:4 data:string +@146 = .rodata:0x80479810; // type:object size:0x24 scope:local align:4 data:string +@147 = .rodata:0x80479834; // type:object size:0x1B scope:local align:4 data:string +@148 = .rodata:0x80479850; // type:object size:0x31 scope:local align:4 data:string +@149 = .rodata:0x80479884; // type:object size:0x28 scope:local align:4 data:string +@150 = .rodata:0x804798AC; // type:object size:0x1D scope:local align:4 data:string +@126 = .rodata:0x804798D0; // type:object size:0x19 scope:local align:4 data:string +@127 = .rodata:0x804798EC; // type:object size:0x1D scope:local align:4 data:string +...rodata.0 = .rodata:0x80479910; // type:label scope:local +@321 = .rodata:0x80479910; // type:object size:0x1F scope:local align:4 data:string +@322 = .rodata:0x80479930; // type:object size:0x8 scope:local align:4 data:string +@323 = .rodata:0x80479938; // type:object size:0x9 scope:local align:4 data:string +@370 = .rodata:0x80479944; // type:object size:0xC scope:local align:4 data:string +@402 = .rodata:0x80479950; // type:object size:0x1F scope:local align:4 data:string +@403 = .rodata:0x80479970; // type:object size:0x1F scope:local align:4 data:string +@404 = .rodata:0x80479990; // type:object size:0x17 scope:local align:4 data:string +@462 = .rodata:0x804799A8; // type:object size:0x28 scope:local align:4 data:string +@463 = .rodata:0x804799D0; // type:object size:0x36 scope:local align:4 data:string +@464 = .rodata:0x80479A08; // type:object size:0x28 scope:local align:4 data:string +@465 = .rodata:0x80479A30; // type:object size:0x2F scope:local align:4 data:string +@466 = .rodata:0x80479A60; // type:object size:0x2F scope:local align:4 data:string +@498 = .rodata:0x80479A90; // type:object size:0x2D scope:local align:4 data:string +@535 = .rodata:0x80479AC0; // type:object size:0x2C scope:local align:4 data:string +@573 = .rodata:0x80479AEC; // type:object size:0x6 scope:local align:4 data:string +@574 = .rodata:0x80479AF4; // type:object size:0x2 scope:local align:4 data:string +...rodata.0 = .rodata:0x80479AF8; // type:label scope:local +@274 = .rodata:0x80479AF8; // type:object size:0x15 scope:local align:4 data:string +@275 = .rodata:0x80479B10; // type:object size:0x28 scope:local align:4 data:string +@276 = .rodata:0x80479B38; // type:object size:0x14 scope:local align:4 data:string +@277 = .rodata:0x80479B4C; // type:object size:0x51 scope:local align:4 data:string +gTRKMemMap = .rodata:0x80479BA0; // type:object size:0x10 scope:global align:4 data:4byte +@276 = .rodata:0x80479BB0; // type:object size:0x28 scope:local align:4 data:4byte +@283 = .rodata:0x80479BD8; // type:object size:0x28 scope:local align:4 data:4byte +@290 = .rodata:0x80479C00; // type:object size:0x28 scope:local align:4 data:4byte +@422 = .rodata:0x80479C28; // type:object size:0x10 scope:local align:4 data:string +@80 = .rodata:0x80479C38; // type:object size:0xB scope:local align:4 data:string +EndofProgramInstruction$162 = .rodata:0x80479C48; // type:object size:0x4 scope:local align:4 +...rodata.0 = .rodata:0x80479C48; // type:label scope:local +@165 = .rodata:0x80479C4C; // type:object size:0x4 scope:local align:4 data:string +@215 = .rodata:0x80479C50; // type:object size:0x15 scope:local align:4 data:string +@216 = .rodata:0x80479C68; // type:object size:0x17 scope:local align:4 data:string +@217 = .rodata:0x80479C80; // type:object size:0x21 scope:local align:4 data:string +@218 = .rodata:0x80479CA4; // type:object size:0x24 scope:local align:4 data:string +@219 = .rodata:0x80479CC8; // type:object size:0x2B scope:local align:4 data:string +@220 = .rodata:0x80479CF4; // type:object size:0x2F scope:local align:4 data:string +@221 = .rodata:0x80479D24; // type:object size:0x28 scope:local align:4 data:string +...rodata.0 = .rodata:0x80479D50; // type:label scope:local +@318 = .rodata:0x80479D50; // type:object size:0x14 scope:local align:4 data:string +@319 = .rodata:0x80479D64; // type:object size:0x29 scope:local align:4 data:string +@320 = .rodata:0x80479D90; // type:object size:0x1C scope:local align:4 data:string +@342 = .rodata:0x80479DAC; // type:object size:0x25 scope:local align:4 data:string +@343 = .rodata:0x80479DD4; // type:object size:0x2D scope:local align:4 data:string +@349 = .rodata:0x80479E04; // type:object size:0x13 scope:local align:4 data:string +@350 = .rodata:0x80479E18; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x80479E30; // type:label scope:local +@318 = .rodata:0x80479E30; // type:object size:0x14 scope:local align:4 data:string +@319 = .rodata:0x80479E44; // type:object size:0x29 scope:local align:4 data:string +@320 = .rodata:0x80479E70; // type:object size:0x1C scope:local align:4 data:string +@341 = .rodata:0x80479E8C; // type:object size:0x25 scope:local align:4 data:string +@342 = .rodata:0x80479EB4; // type:object size:0x2D scope:local align:4 data:string +@348 = .rodata:0x80479EE4; // type:object size:0x13 scope:local align:4 data:string +@349 = .rodata:0x80479EF8; // type:object size:0x18 scope:local align:4 data:string +__ptmf_null = .rodata:0x80479F10; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x80479F20; // type:object size:0x18 scope:local align:8 data:double +@55 = .rodata:0x80479F38; // type:object size:0x36 scope:local align:4 data:string +@56 = .rodata:0x80479F70; // type:object size:0x39 scope:local align:4 data:string +fix_pool_sizes = .rodata:0x80479FB0; // type:object size:0x18 scope:local align:4 data:4byte +@stringBase0 = .rodata:0x80479FC8; // type:object size:0xDD scope:local align:4 data:byte +@stringBase0 = .rodata:0x8047A0A8; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x8047A0B0; // type:object size:0x25 scope:local align:4 data:string_table +@47 = .rodata:0x8047A0D8; // type:object size:0x28 scope:local align:4 data:4byte +@47 = .rodata:0x8047A100; // type:object size:0x2A scope:local align:4 data:4byte +@62 = .rodata:0x8047A12C; // type:object size:0x9 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x8047A138; // type:label scope:local +halF = .rodata:0x8047A138; // type:object size:0x10 scope:local align:8 +ln2HI = .rodata:0x8047A148; // type:object size:0x10 scope:local align:8 +ln2LO = .rodata:0x8047A158; // type:object size:0x10 scope:local align:8 +Zero = .rodata:0x8047A168; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x8047A178; // type:label scope:local +bp = .rodata:0x8047A178; // type:object size:0x10 scope:local align:8 +dp_h = .rodata:0x8047A188; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x8047A198; // type:object size:0x10 scope:local align:8 +two_over_pi = .rodata:0x8047A1A8; // type:object size:0x108 scope:local align:4 +npio2_hw = .rodata:0x8047A2B0; // type:object size:0x80 scope:local align:4 +init_jk = .rodata:0x8047A330; // type:object size:0x10 scope:local align:4 +PIo2 = .rodata:0x8047A340; // type:object size:0x40 scope:local align:8 data:double +T = .rodata:0x8047A380; // type:object size:0x68 scope:local align:8 data:double +...rodata.0 = .rodata:0x8047A3E8; // type:label scope:local +atanhi = .rodata:0x8047A3E8; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x8047A408; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x8047A428; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x8047A480; // type:label scope:local +ClampRegion = .rodata:0x8047A480; // type:object size:0xA scope:local align:4 data:byte +...rodata.0 = .rodata:0x8047A490; // type:label scope:local +__THPJpegNaturalOrder = .rodata:0x8047A490; // type:object size:0x50 scope:local align:4 data:byte +__THPAANScaleFactor = .rodata:0x8047A4E0; // type:object size:0x40 scope:local align:8 +...rodata.0 = .rodata:0x8047A520; // type:label scope:local +@3958 = .rodata:0x8047A520; // type:object size:0xC scope:local align:4 +@4041 = .rodata:0x8047A52C; // type:object size:0xA scope:local align:4 data:string +@4378 = .rodata:0x8047A538; // type:object size:0x9 scope:local align:4 data:string +@4578 = .rodata:0x8047A544; // type:object size:0xE scope:local align:4 data:string +@4579 = .rodata:0x8047A554; // type:object size:0x9 scope:local align:4 data:string +@4782 = .rodata:0x8047A560; // type:object size:0xE scope:local align:4 data:string +@4783 = .rodata:0x8047A570; // type:object size:0x14 scope:local align:4 data:string +@4784 = .rodata:0x8047A584; // type:object size:0x14 scope:local align:4 data:string +@4785 = .rodata:0x8047A598; // type:object size:0x16 scope:local align:4 data:string +@4786 = .rodata:0x8047A5B0; // type:object size:0x18 scope:local align:4 data:string +@4790 = .rodata:0x8047A5C8; // type:object size:0xB scope:local align:4 data:string +@5221 = .rodata:0x8047A5D4; // type:object size:0x16 scope:local align:4 data:string +@5520 = .rodata:0x8047A5EC; // type:object size:0xD scope:local align:4 data:string +@5538 = .rodata:0x8047A5FC; // type:object size:0x10 scope:local align:4 data:string +@7572 = .rodata:0x8047A60C; // type:object size:0x10 scope:local align:4 data:string +@8011 = .rodata:0x8047A61C; // type:object size:0xE scope:local align:4 data:string +@8014 = .rodata:0x8047A62C; // type:object size:0x9 scope:local align:4 data:string +@8016 = .rodata:0x8047A638; // type:object size:0x13 scope:local align:4 data:string +@8176 = .rodata:0x8047A64C; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8047A660; // type:label scope:local +@3535 = .rodata:0x8047A660; // type:object size:0xD scope:local align:4 data:string +@3559 = .rodata:0x8047A670; // type:object size:0x15 scope:local align:4 data:string +@3560 = .rodata:0x8047A688; // type:object size:0x15 scope:local align:4 data:string +@3576 = .rodata:0x8047A6A0; // type:object size:0x9 scope:local align:4 data:string +@3648 = .rodata:0x8047A6AC; // type:object size:0x9 scope:local align:4 data:string +@3649 = .rodata:0x8047A6B8; // type:object size:0x9 scope:local align:4 data:string +@3780 = .rodata:0x8047A6C4; // type:object size:0x14 scope:local align:4 data:string +@3784 = .rodata:0x8047A6D8; // type:object size:0x9 scope:local align:4 data:string +@3910 = .rodata:0x8047A6E4; // type:object size:0x1A scope:local align:4 data:string +@3950 = .rodata:0x8047A700; // type:object size:0xC scope:local align:4 data:string +@4175 = .rodata:0x8047A70C; // type:object size:0x15 scope:local align:4 +@4199 = .rodata:0x8047A724; // type:object size:0xF scope:local align:4 data:string +@4200 = .rodata:0x8047A734; // type:object size:0xE scope:local align:4 +@4203 = .rodata:0x8047A744; // type:object size:0xE scope:local align:4 +@4204 = .rodata:0x8047A754; // type:object size:0xF scope:local align:4 +@4239 = .rodata:0x8047A764; // type:object size:0x13 scope:local align:4 data:string +@4240 = .rodata:0x8047A778; // type:object size:0x13 scope:local align:4 data:string +@4241 = .rodata:0x8047A78C; // type:object size:0xF scope:local align:4 data:string +@4242 = .rodata:0x8047A79C; // type:object size:0xE scope:local align:4 data:string +@4247 = .rodata:0x8047A7AC; // type:object size:0xD scope:local align:4 data:string +@4300 = .rodata:0x8047A7BC; // type:object size:0xD scope:local align:4 +@4302 = .rodata:0x8047A7CC; // type:object size:0xD scope:local align:4 +@4303 = .rodata:0x8047A7DC; // type:object size:0xB scope:local align:4 +@4305 = .rodata:0x8047A7E8; // type:object size:0xF scope:local align:4 +@4307 = .rodata:0x8047A7F8; // type:object size:0x1F scope:local align:4 +@4309 = .rodata:0x8047A818; // type:object size:0x13 scope:local align:4 +@4311 = .rodata:0x8047A82C; // type:object size:0x13 scope:local align:4 +@4313 = .rodata:0x8047A840; // type:object size:0x12 scope:local align:4 +@4314 = .rodata:0x8047A854; // type:object size:0x11 scope:local align:4 +@4319 = .rodata:0x8047A868; // type:object size:0xB scope:local align:4 +@4320 = .rodata:0x8047A874; // type:object size:0xD scope:local align:4 +@4323 = .rodata:0x8047A884; // type:object size:0xB scope:local align:4 +@4325 = .rodata:0x8047A890; // type:object size:0xB scope:local align:4 +@4327 = .rodata:0x8047A89C; // type:object size:0x11 scope:local align:4 +@4329 = .rodata:0x8047A8B0; // type:object size:0x9 scope:local align:4 +@4331 = .rodata:0x8047A8BC; // type:object size:0x9 scope:local align:4 +@4334 = .rodata:0x8047A8C8; // type:object size:0x9 scope:local align:4 +@4336 = .rodata:0x8047A8D4; // type:object size:0x9 scope:local align:4 +@4337 = .rodata:0x8047A8E0; // type:object size:0xB scope:local align:4 +@4338 = .rodata:0x8047A8EC; // type:object size:0x11 scope:local align:4 +@4339 = .rodata:0x8047A900; // type:object size:0xD scope:local align:4 +@4340 = .rodata:0x8047A910; // type:object size:0xB scope:local align:4 +@4341 = .rodata:0x8047A91C; // type:object size:0xD scope:local align:4 +@4342 = .rodata:0x8047A92C; // type:object size:0xD scope:local align:4 +@4343 = .rodata:0x8047A93C; // type:object size:0xF scope:local align:4 +@4344 = .rodata:0x8047A94C; // type:object size:0xF scope:local align:4 +@4346 = .rodata:0x8047A95C; // type:object size:0x9 scope:local align:4 +@4348 = .rodata:0x8047A968; // type:object size:0x9 scope:local align:4 +@4350 = .rodata:0x8047A974; // type:object size:0x17 scope:local align:4 +@4351 = .rodata:0x8047A98C; // type:object size:0xD scope:local align:4 +@4353 = .rodata:0x8047A99C; // type:object size:0xD scope:local align:4 +@4354 = .rodata:0x8047A9AC; // type:object size:0xF scope:local align:4 +@4355 = .rodata:0x8047A9BC; // type:object size:0xF scope:local align:4 +@4356 = .rodata:0x8047A9CC; // type:object size:0xF scope:local align:4 +@4357 = .rodata:0x8047A9DC; // type:object size:0xF scope:local align:4 +@4358 = .rodata:0x8047A9EC; // type:object size:0xF scope:local align:4 +@4359 = .rodata:0x8047A9FC; // type:object size:0xF scope:local align:4 +@4360 = .rodata:0x8047AA0C; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8047AA20; // type:label scope:local +@3875 = .rodata:0x8047AA20; // type:object size:0xB scope:local align:4 data:string +@3876 = .rodata:0x8047AA2C; // type:object size:0xE scope:local align:4 data:string +@3877 = .rodata:0x8047AA3C; // type:object size:0xD scope:local align:4 data:string +@3919 = .rodata:0x8047AA4C; // type:object size:0xB scope:local align:4 data:string +@3920 = .rodata:0x8047AA58; // type:object size:0xC scope:local align:4 data:string +@3921 = .rodata:0x8047AA64; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047AA70; // type:label scope:local +@4569 = .rodata:0x8047AA70; // type:object size:0xA scope:local align:4 data:string +@5161 = .rodata:0x8047AA7C; // type:object size:0x11 scope:local align:4 +@5162 = .rodata:0x8047AA90; // type:object size:0x10 scope:local align:4 data:string +@5163 = .rodata:0x8047AAA0; // type:object size:0xD scope:local align:4 +@5387 = .rodata:0x8047AAB0; // type:object size:0xA scope:local align:4 data:string +@5388 = .rodata:0x8047AABC; // type:object size:0x14 scope:local align:4 data:string +@5389 = .rodata:0x8047AAD0; // type:object size:0x9 scope:local align:4 data:string +@5390 = .rodata:0x8047AADC; // type:object size:0x1B scope:local align:4 data:string +@5391 = .rodata:0x8047AAF8; // type:object size:0xF scope:local align:4 data:string +@6234 = .rodata:0x8047AB08; // type:object size:0xD scope:local align:4 data:string +@6236 = .rodata:0x8047AB18; // type:object size:0x10 scope:local align:4 data:string +@4626 = .rodata:0x8047AB28; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047AB38; // type:label scope:local +@3523 = .rodata:0x8047AB38; // type:object size:0xC scope:local align:4 data:string +@3524 = .rodata:0x8047AB44; // type:object size:0x2E scope:local align:4 data:string +@3532 = .rodata:0x8047AB74; // type:object size:0x19 scope:local align:4 +@3558 = .rodata:0x8047AB90; // type:object size:0xF scope:local align:4 data:string +@3559 = .rodata:0x8047ABA0; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x8047ABB0; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x8047ABC0; // type:object size:0xD scope:local align:4 +@3602 = .rodata:0x8047ABD0; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x8047ABE4; // type:object size:0x13 scope:local align:4 data:string +@3606 = .rodata:0x8047ABF8; // type:object size:0xF scope:local align:4 data:string +@3607 = .rodata:0x8047AC08; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x8047AC18; // type:object size:0xD scope:local align:4 data:string +@3665 = .rodata:0x8047AC28; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x8047AC38; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x8047AC48; // type:object size:0xB scope:local align:4 +@3670 = .rodata:0x8047AC54; // type:object size:0xF scope:local align:4 +@3672 = .rodata:0x8047AC64; // type:object size:0x1F scope:local align:4 +@3674 = .rodata:0x8047AC84; // type:object size:0x13 scope:local align:4 +@3676 = .rodata:0x8047AC98; // type:object size:0x13 scope:local align:4 +@3678 = .rodata:0x8047ACAC; // type:object size:0x12 scope:local align:4 +@3679 = .rodata:0x8047ACC0; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x8047ACD4; // type:object size:0xB scope:local align:4 +@3685 = .rodata:0x8047ACE0; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x8047ACF0; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8047ACFC; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x8047AD08; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x8047AD1C; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x8047AD28; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8047AD34; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x8047AD40; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x8047AD4C; // type:object size:0xB scope:local align:4 +@3702 = .rodata:0x8047AD58; // type:object size:0x11 scope:local align:4 +@3703 = .rodata:0x8047AD6C; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x8047AD7C; // type:object size:0xB scope:local align:4 +@3705 = .rodata:0x8047AD88; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8047AD98; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x8047ADA8; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8047ADB8; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8047ADC8; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x8047ADD4; // type:object size:0x9 scope:local align:4 +@3714 = .rodata:0x8047ADE0; // type:object size:0x17 scope:local align:4 +@3715 = .rodata:0x8047ADF8; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x8047AE08; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x8047AE18; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x8047AE28; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8047AE38; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x8047AE48; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8047AE58; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x8047AE68; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8047AE78; // type:object size:0xF scope:local align:4 +@4032 = .rodata:0x8047AE88; // type:object size:0xA scope:local align:4 data:string +@4486 = .rodata:0x8047AE94; // type:object size:0x11 scope:local align:4 data:string +@3574 = .rodata:0x8047AEA8; // type:object size:0x11 scope:local align:4 data:string +@4706 = .rodata:0x8047AEBC; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047AEC8; // type:label scope:local +@3524 = .rodata:0x8047AEC8; // type:object size:0xA scope:local align:4 data:string +@3525 = .rodata:0x8047AED4; // type:object size:0x23 scope:local align:4 data:string +@3526 = .rodata:0x8047AEF8; // type:object size:0x25 scope:local align:4 data:string +@3534 = .rodata:0x8047AF20; // type:object size:0x17 scope:local align:4 +@3589 = .rodata:0x8047AF38; // type:object size:0xC scope:local align:4 data:string +@3590 = .rodata:0x8047AF44; // type:object size:0x9 scope:local align:4 +@3594 = .rodata:0x8047AF50; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x8047AF60; // type:object size:0xB scope:local align:4 +@3632 = .rodata:0x8047AF6C; // type:object size:0x13 scope:local align:4 data:string +@3633 = .rodata:0x8047AF80; // type:object size:0x13 scope:local align:4 data:string +@3636 = .rodata:0x8047AF94; // type:object size:0xF scope:local align:4 data:string +@3637 = .rodata:0x8047AFA4; // type:object size:0xE scope:local align:4 data:string +@3643 = .rodata:0x8047AFB4; // type:object size:0xD scope:local align:4 data:string +@3694 = .rodata:0x8047AFC4; // type:object size:0xF scope:local align:4 data:string +@3697 = .rodata:0x8047AFD4; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x8047AFE4; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x8047AFF4; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8047B000; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x8047B010; // type:object size:0x1F scope:local align:4 +@3705 = .rodata:0x8047B030; // type:object size:0x13 scope:local align:4 +@3707 = .rodata:0x8047B044; // type:object size:0x13 scope:local align:4 +@3709 = .rodata:0x8047B058; // type:object size:0x12 scope:local align:4 +@3710 = .rodata:0x8047B06C; // type:object size:0x11 scope:local align:4 +@3715 = .rodata:0x8047B080; // type:object size:0xB scope:local align:4 +@3716 = .rodata:0x8047B08C; // type:object size:0xD scope:local align:4 +@3719 = .rodata:0x8047B09C; // type:object size:0xB scope:local align:4 +@3721 = .rodata:0x8047B0A8; // type:object size:0xB scope:local align:4 +@3723 = .rodata:0x8047B0B4; // type:object size:0x11 scope:local align:4 +@3725 = .rodata:0x8047B0C8; // type:object size:0x9 scope:local align:4 +@3727 = .rodata:0x8047B0D4; // type:object size:0x9 scope:local align:4 +@3730 = .rodata:0x8047B0E0; // type:object size:0x9 scope:local align:4 +@3732 = .rodata:0x8047B0EC; // type:object size:0x9 scope:local align:4 +@3734 = .rodata:0x8047B0F8; // type:object size:0xB scope:local align:4 +@3735 = .rodata:0x8047B104; // type:object size:0x11 scope:local align:4 +@3736 = .rodata:0x8047B118; // type:object size:0xD scope:local align:4 +@3737 = .rodata:0x8047B128; // type:object size:0xB scope:local align:4 +@3738 = .rodata:0x8047B134; // type:object size:0xD scope:local align:4 +@3739 = .rodata:0x8047B144; // type:object size:0xD scope:local align:4 +@3740 = .rodata:0x8047B154; // type:object size:0xF scope:local align:4 +@3741 = .rodata:0x8047B164; // type:object size:0xF scope:local align:4 +@3743 = .rodata:0x8047B174; // type:object size:0x9 scope:local align:4 +@3745 = .rodata:0x8047B180; // type:object size:0x9 scope:local align:4 +@3747 = .rodata:0x8047B18C; // type:object size:0x17 scope:local align:4 +@3748 = .rodata:0x8047B1A4; // type:object size:0xD scope:local align:4 +@3750 = .rodata:0x8047B1B4; // type:object size:0xD scope:local align:4 +@3751 = .rodata:0x8047B1C4; // type:object size:0xF scope:local align:4 +@3752 = .rodata:0x8047B1D4; // type:object size:0xF scope:local align:4 +@3753 = .rodata:0x8047B1E4; // type:object size:0xF scope:local align:4 +@3754 = .rodata:0x8047B1F4; // type:object size:0xF scope:local align:4 +@3755 = .rodata:0x8047B204; // type:object size:0xF scope:local align:4 +@3756 = .rodata:0x8047B214; // type:object size:0xF scope:local align:4 +@3757 = .rodata:0x8047B224; // type:object size:0xF scope:local align:4 +@4016 = .rodata:0x8047B238; // type:object size:0x20 scope:local align:4 data:string +@4017 = .rodata:0x8047B258; // type:object size:0xE scope:local align:4 data:string +@3286 = .rodata:0x8047B268; // type:object size:0x11 scope:local align:4 data:string +@3287 = .rodata:0x8047B27C; // type:object size:0x14 scope:local align:4 data:string +@3558 = .rodata:0x8047B290; // type:object size:0x20 scope:local align:4 data:string +@3559 = .rodata:0x8047B2B0; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8047B2C0; // type:label scope:local +@2732 = .rodata:0x8047B2C0; // type:object size:0xC scope:local align:4 +@3574 = .rodata:0x8047B2CC; // type:object size:0xD scope:local align:4 data:string +@3738 = .rodata:0x8047B2DC; // type:object size:0xB scope:local align:4 data:string +@3742 = .rodata:0x8047B2E8; // type:object size:0x9 scope:local align:4 +@3759 = .rodata:0x8047B2F4; // type:object size:0xD scope:local align:4 data:string +@3802 = .rodata:0x8047B304; // type:object size:0xA scope:local align:4 data:string +@3803 = .rodata:0x8047B310; // type:object size:0xF scope:local align:4 +@3806 = .rodata:0x8047B320; // type:object size:0xB scope:local align:4 +@3809 = .rodata:0x8047B32C; // type:object size:0xB scope:local align:4 +@3947 = .rodata:0x8047B338; // type:object size:0xA scope:local align:4 data:string +@3948 = .rodata:0x8047B344; // type:object size:0xB scope:local align:4 +@3990 = .rodata:0x8047B350; // type:object size:0xF scope:local align:4 +@3991 = .rodata:0x8047B360; // type:object size:0xD scope:local align:4 +@3992 = .rodata:0x8047B370; // type:object size:0xD scope:local align:4 +@4048 = .rodata:0x8047B380; // type:object size:0x11 scope:local align:4 data:string +@4049 = .rodata:0x8047B394; // type:object size:0x17 scope:local align:4 data:string +@4458 = .rodata:0x8047B3AC; // type:object size:0xD scope:local align:4 +@4459 = .rodata:0x8047B3BC; // type:object size:0xB scope:local align:4 +@4460 = .rodata:0x8047B3C8; // type:object size:0x12 scope:local align:4 +@4589 = .rodata:0x8047B3DC; // type:object size:0x2D scope:local align:4 data:string +@5990 = .rodata:0x8047B40C; // type:object size:0x14 scope:local align:4 data:string +@2724 = .rodata:0x8047B420; // type:object size:0x11 scope:local align:4 data:string +@3121 = .rodata:0x8047B434; // type:object size:0x10 scope:local align:4 data:4byte +@2429 = .rodata:0x8047B448; // type:object size:0x9 scope:local align:4 data:string +@2430 = .rodata:0x8047B454; // type:object size:0x9 scope:local align:4 data:string +@2432 = .rodata:0x8047B460; // type:object size:0xD scope:local align:4 data:string +@2433 = .rodata:0x8047B470; // type:object size:0xF scope:local align:4 data:string +@2434 = .rodata:0x8047B480; // type:object size:0xD scope:local align:4 data:string +@2436 = .rodata:0x8047B490; // type:object size:0xB scope:local align:4 data:string +@2437 = .rodata:0x8047B49C; // type:object size:0xD scope:local align:4 data:string +@2441 = .rodata:0x8047B4AC; // type:object size:0xA scope:local align:4 data:string +@2442 = .rodata:0x8047B4B8; // type:object size:0x9 scope:local align:4 data:string +@2443 = .rodata:0x8047B4C4; // type:object size:0x9 scope:local align:4 data:string +@2449 = .rodata:0x8047B4D0; // type:object size:0x9 scope:local align:4 data:string +@2454 = .rodata:0x8047B4DC; // type:object size:0x9 scope:local align:4 data:string +@2463 = .rodata:0x8047B4E8; // type:object size:0x9 scope:local align:4 data:string +@2466 = .rodata:0x8047B4F4; // type:object size:0xA scope:local align:4 data:string +@2473 = .rodata:0x8047B500; // type:object size:0xD scope:local align:4 data:string +@2475 = .rodata:0x8047B510; // type:object size:0xA scope:local align:4 data:string +@2478 = .rodata:0x8047B51C; // type:object size:0xB scope:local align:4 data:string +@2480 = .rodata:0x8047B528; // type:object size:0xB scope:local align:4 data:string +@2481 = .rodata:0x8047B534; // type:object size:0xB scope:local align:4 data:string +@2482 = .rodata:0x8047B540; // type:object size:0xA scope:local align:4 data:string +@2483 = .rodata:0x8047B54C; // type:object size:0xB scope:local align:4 data:string +@2486 = .rodata:0x8047B558; // type:object size:0xA scope:local align:4 data:string +@2487 = .rodata:0x8047B564; // type:object size:0xC scope:local align:4 data:string +@2488 = .rodata:0x8047B570; // type:object size:0x9 scope:local align:4 data:string +@2493 = .rodata:0x8047B57C; // type:object size:0xD scope:local align:4 data:string +@2495 = .rodata:0x8047B58C; // type:object size:0xC scope:local align:4 data:string +@2497 = .rodata:0x8047B598; // type:object size:0xC scope:local align:4 data:string +@2498 = .rodata:0x8047B5A4; // type:object size:0x9 scope:local align:4 data:string +@2499 = .rodata:0x8047B5B0; // type:object size:0x9 scope:local align:4 data:string +@2501 = .rodata:0x8047B5BC; // type:object size:0xA scope:local align:4 data:string +@2502 = .rodata:0x8047B5C8; // type:object size:0xC scope:local align:4 data:string +@2504 = .rodata:0x8047B5D4; // type:object size:0xC scope:local align:4 data:string +@2505 = .rodata:0x8047B5E0; // type:object size:0xA scope:local align:4 data:string +@2507 = .rodata:0x8047B5EC; // type:object size:0xB scope:local align:4 data:string +@2509 = .rodata:0x8047B5F8; // type:object size:0x9 scope:local align:4 data:string +@2512 = .rodata:0x8047B604; // type:object size:0xC scope:local align:4 data:string +@2514 = .rodata:0x8047B610; // type:object size:0xD scope:local align:4 data:string +@2515 = .rodata:0x8047B620; // type:object size:0xB scope:local align:4 data:string +@2516 = .rodata:0x8047B62C; // type:object size:0xC scope:local align:4 data:string +@2518 = .rodata:0x8047B638; // type:object size:0xC scope:local align:4 data:string +@2519 = .rodata:0x8047B644; // type:object size:0xD scope:local align:4 data:string +@2520 = .rodata:0x8047B654; // type:object size:0x9 scope:local align:4 data:string +@2521 = .rodata:0x8047B660; // type:object size:0xE scope:local align:4 data:string +@2522 = .rodata:0x8047B670; // type:object size:0xC scope:local align:4 data:string +@2523 = .rodata:0x8047B67C; // type:object size:0xC scope:local align:4 data:string +@2524 = .rodata:0x8047B688; // type:object size:0xB scope:local align:4 data:string +@2525 = .rodata:0x8047B694; // type:object size:0xC scope:local align:4 data:string +@2527 = .rodata:0x8047B6A0; // type:object size:0xC scope:local align:4 data:string +@2528 = .rodata:0x8047B6AC; // type:object size:0x9 scope:local align:4 data:string +@2530 = .rodata:0x8047B6B8; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047B6C8; // type:label scope:local +@3333 = .rodata:0x8047B6C8; // type:object size:0xD scope:local align:4 data:string +@3334 = .rodata:0x8047B6D8; // type:object size:0xA scope:local align:4 data:string +@3387 = .rodata:0x8047B6E4; // type:object size:0xE scope:local align:4 data:string +@3391 = .rodata:0x8047B6F4; // type:object size:0xC scope:local align:4 data:string +@3392 = .rodata:0x8047B700; // type:object size:0xA scope:local align:4 data:string +@3426 = .rodata:0x8047B70C; // type:object size:0x9 scope:local align:4 data:string +@3571 = .rodata:0x8047B718; // type:object size:0xF scope:local align:4 +@3572 = .rodata:0x8047B728; // type:object size:0xD scope:local align:4 +@3679 = .rodata:0x8047B738; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047B750; // type:label scope:local +@3551 = .rodata:0x8047B750; // type:object size:0x9 scope:local align:4 data:string +@3581 = .rodata:0x8047B75C; // type:object size:0xC scope:local align:4 data:string +@3582 = .rodata:0x8047B768; // type:object size:0xB scope:local align:4 +@3599 = .rodata:0x8047B774; // type:object size:0x9 scope:local align:4 +@3855 = .rodata:0x8047B780; // type:object size:0xA scope:local align:4 data:string +@3857 = .rodata:0x8047B78C; // type:object size:0x10 scope:local align:4 data:string +@3858 = .rodata:0x8047B79C; // type:object size:0x9 scope:local align:4 data:string +@3859 = .rodata:0x8047B7A8; // type:object size:0xF scope:local align:4 data:string +@3860 = .rodata:0x8047B7B8; // type:object size:0x11 scope:local align:4 data:string +@3861 = .rodata:0x8047B7CC; // type:object size:0xE scope:local align:4 data:string +@3862 = .rodata:0x8047B7DC; // type:object size:0xB scope:local align:4 data:string +@3863 = .rodata:0x8047B7E8; // type:object size:0xF scope:local align:4 data:string +@4374 = .rodata:0x8047B7F8; // type:object size:0xF scope:local align:4 +@4375 = .rodata:0x8047B808; // type:object size:0xF scope:local align:4 +@4376 = .rodata:0x8047B818; // type:object size:0xF scope:local align:4 +@4377 = .rodata:0x8047B828; // type:object size:0xD scope:local align:4 +@4378 = .rodata:0x8047B838; // type:object size:0xD scope:local align:4 +@4379 = .rodata:0x8047B848; // type:object size:0xD scope:local align:4 +@4380 = .rodata:0x8047B858; // type:object size:0xD scope:local align:4 +@4381 = .rodata:0x8047B868; // type:object size:0xD scope:local align:4 +@4382 = .rodata:0x8047B878; // type:object size:0xD scope:local align:4 +@4383 = .rodata:0x8047B888; // type:object size:0xD scope:local align:4 +@4384 = .rodata:0x8047B898; // type:object size:0xD scope:local align:4 +@4385 = .rodata:0x8047B8A8; // type:object size:0xB scope:local align:4 +@4387 = .rodata:0x8047B8B4; // type:object size:0xD scope:local align:4 +@4388 = .rodata:0x8047B8C4; // type:object size:0xB scope:local align:4 +@4389 = .rodata:0x8047B8D0; // type:object size:0xB scope:local align:4 +@4390 = .rodata:0x8047B8DC; // type:object size:0xB scope:local align:4 +@4391 = .rodata:0x8047B8E8; // type:object size:0xB scope:local align:4 +@4392 = .rodata:0x8047B8F4; // type:object size:0x9 scope:local align:4 +@4393 = .rodata:0x8047B900; // type:object size:0xB scope:local align:4 +@4394 = .rodata:0x8047B90C; // type:object size:0xB scope:local align:4 +@4396 = .rodata:0x8047B918; // type:object size:0x9 scope:local align:4 +@4397 = .rodata:0x8047B924; // type:object size:0xB scope:local align:4 +@4398 = .rodata:0x8047B930; // type:object size:0xD scope:local align:4 +@4399 = .rodata:0x8047B940; // type:object size:0x11 scope:local align:4 +@4402 = .rodata:0x8047B954; // type:object size:0xB scope:local align:4 +@4403 = .rodata:0x8047B960; // type:object size:0x11 scope:local align:4 +@4404 = .rodata:0x8047B974; // type:object size:0x13 scope:local align:4 +@4405 = .rodata:0x8047B988; // type:object size:0x11 scope:local align:4 +@4406 = .rodata:0x8047B99C; // type:object size:0xB scope:local align:4 +@4407 = .rodata:0x8047B9A8; // type:object size:0xF scope:local align:4 +@4408 = .rodata:0x8047B9B8; // type:object size:0xB scope:local align:4 +@4409 = .rodata:0x8047B9C4; // type:object size:0xF scope:local align:4 +@4410 = .rodata:0x8047B9D4; // type:object size:0x9 scope:local align:4 +@4411 = .rodata:0x8047B9E0; // type:object size:0xD scope:local align:4 +@4412 = .rodata:0x8047B9F0; // type:object size:0xB scope:local align:4 +@4413 = .rodata:0x8047B9FC; // type:object size:0xD scope:local align:4 +@4414 = .rodata:0x8047BA0C; // type:object size:0xD scope:local align:4 +@4415 = .rodata:0x8047BA1C; // type:object size:0x9 scope:local align:4 +@4416 = .rodata:0x8047BA28; // type:object size:0x9 scope:local align:4 +@4418 = .rodata:0x8047BA34; // type:object size:0xB scope:local align:4 +@4419 = .rodata:0x8047BA40; // type:object size:0xD scope:local align:4 +@4420 = .rodata:0x8047BA50; // type:object size:0x15 scope:local align:4 +@4421 = .rodata:0x8047BA68; // type:object size:0x19 scope:local align:4 +@4422 = .rodata:0x8047BA84; // type:object size:0x15 scope:local align:4 +@4423 = .rodata:0x8047BA9C; // type:object size:0x19 scope:local align:4 +@4424 = .rodata:0x8047BAB8; // type:object size:0xB scope:local align:4 +@4425 = .rodata:0x8047BAC4; // type:object size:0xB scope:local align:4 +@4427 = .rodata:0x8047BAD0; // type:object size:0xD scope:local align:4 +@4428 = .rodata:0x8047BAE0; // type:object size:0xD scope:local align:4 +@4429 = .rodata:0x8047BAF0; // type:object size:0xD scope:local align:4 +@4430 = .rodata:0x8047BB00; // type:object size:0xD scope:local align:4 +@4432 = .rodata:0x8047BB10; // type:object size:0x9 scope:local align:4 +@4433 = .rodata:0x8047BB1C; // type:object size:0x11 scope:local align:4 +@4434 = .rodata:0x8047BB30; // type:object size:0x9 scope:local align:4 +@4435 = .rodata:0x8047BB3C; // type:object size:0x13 scope:local align:4 +@4436 = .rodata:0x8047BB50; // type:object size:0x9 scope:local align:4 +@4437 = .rodata:0x8047BB5C; // type:object size:0xF scope:local align:4 +@4438 = .rodata:0x8047BB6C; // type:object size:0xF scope:local align:4 +@4439 = .rodata:0x8047BB7C; // type:object size:0xF scope:local align:4 +@4440 = .rodata:0x8047BB8C; // type:object size:0xF scope:local align:4 +@4441 = .rodata:0x8047BB9C; // type:object size:0x11 scope:local align:4 +@4442 = .rodata:0x8047BBB0; // type:object size:0x11 scope:local align:4 +@4443 = .rodata:0x8047BBC4; // type:object size:0x11 scope:local align:4 +@4445 = .rodata:0x8047BBD8; // type:object size:0x9 scope:local align:4 +@4446 = .rodata:0x8047BBE4; // type:object size:0x9 scope:local align:4 +@4447 = .rodata:0x8047BBF0; // type:object size:0x11 scope:local align:4 +@4448 = .rodata:0x8047BC04; // type:object size:0x11 scope:local align:4 +@4449 = .rodata:0x8047BC18; // type:object size:0xB scope:local align:4 +@4450 = .rodata:0x8047BC24; // type:object size:0x11 scope:local align:4 +@4451 = .rodata:0x8047BC38; // type:object size:0xF scope:local align:4 +@4452 = .rodata:0x8047BC48; // type:object size:0x9 scope:local align:4 +@4453 = .rodata:0x8047BC54; // type:object size:0xF scope:local align:4 +@4454 = .rodata:0x8047BC64; // type:object size:0xB scope:local align:4 +@4455 = .rodata:0x8047BC70; // type:object size:0x11 scope:local align:4 +@4456 = .rodata:0x8047BC84; // type:object size:0x13 scope:local align:4 +@4457 = .rodata:0x8047BC98; // type:object size:0x11 scope:local align:4 +@4458 = .rodata:0x8047BCAC; // type:object size:0xF scope:local align:4 +@4459 = .rodata:0x8047BCBC; // type:object size:0x11 scope:local align:4 +@4460 = .rodata:0x8047BCD0; // type:object size:0x9 scope:local align:4 +@4461 = .rodata:0x8047BCDC; // type:object size:0xD scope:local align:4 +@4462 = .rodata:0x8047BCEC; // type:object size:0x11 scope:local align:4 +@4463 = .rodata:0x8047BD00; // type:object size:0x9 scope:local align:4 +@4464 = .rodata:0x8047BD0C; // type:object size:0xD scope:local align:4 +@4466 = .rodata:0x8047BD1C; // type:object size:0xD scope:local align:4 +@4467 = .rodata:0x8047BD2C; // type:object size:0xB scope:local align:4 +@4571 = .rodata:0x8047BD38; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8047BD48; // type:label scope:local +@2674 = .rodata:0x8047BD48; // type:object size:0x11 scope:local align:4 +@2693 = .rodata:0x8047BD5C; // type:object size:0xD scope:local align:4 data:string +@2694 = .rodata:0x8047BD6C; // type:object size:0xF scope:local align:4 +@2698 = .rodata:0x8047BD7C; // type:object size:0xF scope:local align:4 +@2700 = .rodata:0x8047BD8C; // type:object size:0xF scope:local align:4 +@2703 = .rodata:0x8047BD9C; // type:object size:0xB scope:local align:4 +@2705 = .rodata:0x8047BDA8; // type:object size:0xB scope:local align:4 +@2706 = .rodata:0x8047BDB4; // type:object size:0xB scope:local align:4 +@2708 = .rodata:0x8047BDC0; // type:object size:0xD scope:local align:4 +@2710 = .rodata:0x8047BDD0; // type:object size:0x11 scope:local align:4 +@2712 = .rodata:0x8047BDE4; // type:object size:0x11 scope:local align:4 +@2714 = .rodata:0x8047BDF8; // type:object size:0xD scope:local align:4 +@2715 = .rodata:0x8047BE08; // type:object size:0xB scope:local align:4 +@2717 = .rodata:0x8047BE14; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8047BE28; // type:label scope:local +@3339 = .rodata:0x8047BE28; // type:object size:0xB scope:local align:4 +@3375 = .rodata:0x8047BE34; // type:object size:0xA scope:local align:4 data:string +@3376 = .rodata:0x8047BE40; // type:object size:0xC scope:local align:4 data:string +@3377 = .rodata:0x8047BE4C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8047BE58; // type:label scope:local +@3303 = .rodata:0x8047BE58; // type:object size:0x14 scope:local align:4 data:string +@3304 = .rodata:0x8047BE6C; // type:object size:0x14 scope:local align:4 data:string +@3360 = .rodata:0x8047BE80; // type:object size:0x1E scope:local align:4 data:string +@3361 = .rodata:0x8047BEA0; // type:object size:0x1C scope:local align:4 data:string +@3362 = .rodata:0x8047BEBC; // type:object size:0x1E scope:local align:4 data:string +@3363 = .rodata:0x8047BEDC; // type:object size:0x21 scope:local align:4 data:string +@3811 = .rodata:0x8047BF00; // type:object size:0x9 scope:local align:4 data:string +@3812 = .rodata:0x8047BF0C; // type:object size:0x9 scope:local align:4 data:string +@3866 = .rodata:0x8047BF18; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047BF30; // type:label scope:local +@3588 = .rodata:0x8047BF30; // type:object size:0xA scope:local align:4 data:string +@3688 = .rodata:0x8047BF3C; // type:object size:0x14 scope:local align:4 data:string +@3689 = .rodata:0x8047BF50; // type:object size:0xD scope:local align:4 data:string +@3690 = .rodata:0x8047BF60; // type:object size:0xD scope:local align:4 data:string +@3796 = .rodata:0x8047BF70; // type:object size:0xD scope:local align:4 data:string +@3562 = .rodata:0x8047BF80; // type:object size:0x1B scope:local align:4 +@3572 = .rodata:0x8047BF9C; // type:object size:0xC scope:local align:4 data:4byte +@3589 = .rodata:0x8047BFA8; // type:object size:0xC scope:local align:4 data:4byte +@3634 = .rodata:0x8047BFB4; // type:object size:0xA scope:local align:4 data:string +@3525 = .rodata:0x8047BFC0; // type:object size:0x27 scope:local align:4 data:string +@3526 = .rodata:0x8047BFE8; // type:object size:0x29 scope:local align:4 data:string +@3534 = .rodata:0x8047C014; // type:object size:0x17 scope:local align:4 +@3793 = .rodata:0x8047C030; // type:object size:0x29 scope:local align:4 data:string +@3794 = .rodata:0x8047C05C; // type:object size:0x2B scope:local align:4 data:string +@3802 = .rodata:0x8047C088; // type:object size:0x17 scope:local align:4 +@3886 = .rodata:0x8047C0A0; // type:object size:0x11 scope:local align:4 data:string +@3887 = .rodata:0x8047C0B4; // type:object size:0x9 scope:local align:4 data:string +@3524 = .rodata:0x8047C0C0; // type:object size:0x32 scope:local align:4 data:string +@3532 = .rodata:0x8047C0F4; // type:object size:0x19 scope:local align:4 +@3524 = .rodata:0x8047C110; // type:object size:0x34 scope:local align:4 data:string +@3532 = .rodata:0x8047C144; // type:object size:0x19 scope:local align:4 +@3561 = .rodata:0x8047C160; // type:object size:0x1D scope:local align:4 +@3571 = .rodata:0x8047C180; // type:object size:0xC scope:local align:4 data:4byte +@3588 = .rodata:0x8047C18C; // type:object size:0xC scope:local align:4 data:4byte +@3632 = .rodata:0x8047C198; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C1A8; // type:label scope:local +@2437 = .rodata:0x8047C1A8; // type:object size:0xA scope:local align:4 data:string +@2438 = .rodata:0x8047C1B4; // type:object size:0xD scope:local align:4 data:string +@2439 = .rodata:0x8047C1C4; // type:object size:0xC scope:local align:4 data:string +@2440 = .rodata:0x8047C1D0; // type:object size:0xB scope:local align:4 data:string +@2441 = .rodata:0x8047C1DC; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C1E8; // type:label scope:local +@3328 = .rodata:0x8047C1E8; // type:object size:0x11 scope:local align:4 data:string +@3565 = .rodata:0x8047C1FC; // type:object size:0x21 scope:local align:4 data:string +@3566 = .rodata:0x8047C220; // type:object size:0x21 scope:local align:4 data:string +@3583 = .rodata:0x8047C244; // type:object size:0x20 scope:local align:4 data:string +@3613 = .rodata:0x8047C264; // type:object size:0xD scope:local align:4 data:string +@3614 = .rodata:0x8047C274; // type:object size:0x9 scope:local align:4 data:string +@3648 = .rodata:0x8047C280; // type:object size:0x11 scope:local align:4 data:string +@3776 = .rodata:0x8047C294; // type:object size:0x11 scope:local align:4 data:string +@3788 = .rodata:0x8047C2A8; // type:object size:0x16 scope:local align:4 data:string +@3803 = .rodata:0x8047C2C0; // type:object size:0xA scope:local align:4 data:string +@3804 = .rodata:0x8047C2CC; // type:object size:0xA scope:local align:4 data:string +@3805 = .rodata:0x8047C2D8; // type:object size:0x23 scope:local align:4 data:string +@3813 = .rodata:0x8047C2FC; // type:object size:0x19 scope:local align:4 data:string +@3829 = .rodata:0x8047C318; // type:object size:0x18 scope:local align:4 data:string +@3830 = .rodata:0x8047C330; // type:object size:0x14 scope:local align:4 data:string +@3860 = .rodata:0x8047C344; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C358; // type:label scope:local +@3273 = .rodata:0x8047C358; // type:object size:0xC scope:local align:4 +@3670 = .rodata:0x8047C364; // type:object size:0x18 scope:local align:4 data:string +@3671 = .rodata:0x8047C37C; // type:object size:0xF scope:local align:4 data:string +@3742 = .rodata:0x8047C38C; // type:object size:0xE scope:local align:4 data:string +@3743 = .rodata:0x8047C39C; // type:object size:0xD scope:local align:4 +@3747 = .rodata:0x8047C3AC; // type:object size:0xD scope:local align:4 +@3748 = .rodata:0x8047C3BC; // type:object size:0xD scope:local align:4 +@3749 = .rodata:0x8047C3CC; // type:object size:0xB scope:local align:4 +@3768 = .rodata:0x8047C3D8; // type:object size:0xF scope:local align:4 +@3804 = .rodata:0x8047C3E8; // type:object size:0xB scope:local align:4 data:string +@3808 = .rodata:0x8047C3F4; // type:object size:0x9 scope:local align:4 +@3826 = .rodata:0x8047C400; // type:object size:0xC scope:local align:4 data:string +@3830 = .rodata:0x8047C40C; // type:object size:0xD scope:local align:4 +@3832 = .rodata:0x8047C41C; // type:object size:0xD scope:local align:4 +@3833 = .rodata:0x8047C42C; // type:object size:0xD scope:local align:4 +@3835 = .rodata:0x8047C43C; // type:object size:0xF scope:local align:4 +@3837 = .rodata:0x8047C44C; // type:object size:0xF scope:local align:4 +@3838 = .rodata:0x8047C45C; // type:object size:0xF scope:local align:4 +@3839 = .rodata:0x8047C46C; // type:object size:0xD scope:local align:4 +@3842 = .rodata:0x8047C47C; // type:object size:0xD scope:local align:4 +@3844 = .rodata:0x8047C48C; // type:object size:0xD scope:local align:4 +@3845 = .rodata:0x8047C49C; // type:object size:0xD scope:local align:4 +@3906 = .rodata:0x8047C4AC; // type:object size:0xD scope:local align:4 +@3907 = .rodata:0x8047C4BC; // type:object size:0xD scope:local align:4 +@3908 = .rodata:0x8047C4CC; // type:object size:0xD scope:local align:4 +@3945 = .rodata:0x8047C4DC; // type:object size:0x9 scope:local align:4 +@4023 = .rodata:0x8047C4E8; // type:object size:0x9 scope:local align:4 +@4049 = .rodata:0x8047C4F4; // type:object size:0x9 scope:local align:4 data:string +@4050 = .rodata:0x8047C500; // type:object size:0xC scope:local align:4 data:string +@4069 = .rodata:0x8047C50C; // type:object size:0x11 scope:local align:4 data:string +@4070 = .rodata:0x8047C520; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C530; // type:label scope:local +@2732 = .rodata:0x8047C530; // type:object size:0xC scope:local align:4 +@3040 = .rodata:0x8047C53C; // type:object size:0xB scope:local align:4 +@3043 = .rodata:0x8047C548; // type:object size:0xD scope:local align:4 +@3046 = .rodata:0x8047C558; // type:object size:0x12 scope:local align:4 +@3025 = .rodata:0x8047C570; // type:object size:0xA scope:local align:4 data:string +@3070 = .rodata:0x8047C57C; // type:object size:0x13 scope:local align:4 data:string +@3071 = .rodata:0x8047C590; // type:object size:0x9 scope:local align:4 data:string +@3245 = .rodata:0x8047C5A0; // type:object size:0xD scope:local align:4 data:string +@3246 = .rodata:0x8047C5B0; // type:object size:0x19 scope:local align:4 data:string +@3443 = .rodata:0x8047C5CC; // type:object size:0x9 scope:local align:4 data:string +@3559 = .rodata:0x8047C5D8; // type:object size:0x27 scope:local align:4 data:string +@4780 = .rodata:0x8047C600; // type:object size:0x14 scope:local align:4 data:string +@5915 = .rodata:0x8047C614; // type:object size:0x19 scope:local align:4 data:string +@5989 = .rodata:0x8047C630; // type:object size:0x9 scope:local align:4 data:string +@6189 = .rodata:0x8047C63C; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C648; // type:label scope:local +@2650 = .rodata:0x8047C648; // type:object size:0x9 scope:local align:4 data:string +@2685 = .rodata:0x8047C654; // type:object size:0xF scope:local align:4 +@2686 = .rodata:0x8047C664; // type:object size:0x9 scope:local align:4 data:string +@2692 = .rodata:0x8047C670; // type:object size:0x10 scope:local align:4 data:string +@2694 = .rodata:0x8047C680; // type:object size:0x10 scope:local align:4 +@2695 = .rodata:0x8047C690; // type:object size:0xB scope:local align:4 data:string +@2699 = .rodata:0x8047C69C; // type:object size:0xC scope:local align:4 +@2700 = .rodata:0x8047C6A8; // type:object size:0x9 scope:local align:4 +@2701 = .rodata:0x8047C6B4; // type:object size:0xB scope:local align:4 +@2704 = .rodata:0x8047C6C0; // type:object size:0x13 scope:local align:4 +@2705 = .rodata:0x8047C6D4; // type:object size:0x14 scope:local align:4 +@3816 = .rodata:0x8047C6E8; // type:object size:0xD scope:local align:4 data:string +@3817 = .rodata:0x8047C6F8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C708; // type:label scope:local +@3865 = .rodata:0x8047C708; // type:object size:0xC scope:local align:4 +@3901 = .rodata:0x8047C714; // type:object size:0x9 scope:local align:4 data:string +@3974 = .rodata:0x8047C720; // type:object size:0xD scope:local align:4 data:string +@3975 = .rodata:0x8047C730; // type:object size:0x9 scope:local align:4 data:string +@4297 = .rodata:0x8047C73C; // type:object size:0xB scope:local align:4 data:string +@5415 = .rodata:0x8047C748; // type:object size:0xF scope:local align:4 data:string +@5416 = .rodata:0x8047C758; // type:object size:0xA scope:local align:4 data:string +@5607 = .rodata:0x8047C764; // type:object size:0x12 scope:local align:4 data:string +@5912 = .rodata:0x8047C778; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C788; // type:label scope:local +@2721 = .rodata:0x8047C788; // type:object size:0xC scope:local align:4 +@4412 = .rodata:0x8047C794; // type:object size:0x9 scope:local align:4 data:string +@4413 = .rodata:0x8047C7A0; // type:object size:0x1C scope:local align:4 +@4414 = .rodata:0x8047C7BC; // type:object size:0xA scope:local align:4 data:string +@5854 = .rodata:0x8047C7C8; // type:object size:0x14 scope:local align:4 data:string +@5855 = .rodata:0x8047C7DC; // type:object size:0x18 scope:local align:4 data:string +@5889 = .rodata:0x8047C7F4; // type:object size:0x9 scope:local align:4 data:string +@6901 = .rodata:0x8047C800; // type:object size:0x1E scope:local align:4 data:string +@6902 = .rodata:0x8047C820; // type:object size:0x1E scope:local align:4 data:string +@8379 = .rodata:0x8047C840; // type:object size:0xB scope:local align:4 data:string +@8381 = .rodata:0x8047C84C; // type:object size:0x12 scope:local align:4 data:string +@8383 = .rodata:0x8047C860; // type:object size:0xA scope:local align:4 data:string +@8398 = .rodata:0x8047C86C; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C880; // type:label scope:local +@2735 = .rodata:0x8047C880; // type:object size:0xC scope:local align:4 +@3999 = .rodata:0x8047C88C; // type:object size:0xA scope:local align:4 data:string +@4284 = .rodata:0x8047C898; // type:object size:0xA scope:local align:4 data:string +@4285 = .rodata:0x8047C8A4; // type:object size:0xA scope:local align:4 data:string +@4286 = .rodata:0x8047C8B0; // type:object size:0x9 scope:local align:4 data:string +@4287 = .rodata:0x8047C8BC; // type:object size:0x16 scope:local align:4 data:string +@4288 = .rodata:0x8047C8D4; // type:object size:0x16 scope:local align:4 data:string +@4289 = .rodata:0x8047C8EC; // type:object size:0xC scope:local align:4 data:string +@4290 = .rodata:0x8047C8F8; // type:object size:0x11 scope:local align:4 data:string +@5351 = .rodata:0x8047C90C; // type:object size:0x9 scope:local align:4 data:string +@5625 = .rodata:0x8047C918; // type:object size:0xF scope:local align:4 data:string +@6139 = .rodata:0x8047C928; // type:object size:0x12 scope:local align:4 data:string +@6141 = .rodata:0x8047C93C; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C948; // type:label scope:local +@2741 = .rodata:0x8047C948; // type:object size:0xC scope:local align:4 +@4422 = .rodata:0x8047C954; // type:object size:0x10 scope:local align:4 data:string +@4525 = .rodata:0x8047C964; // type:object size:0x14 scope:local align:4 data:string +@4526 = .rodata:0x8047C978; // type:object size:0xE scope:local align:4 +@4536 = .rodata:0x8047C988; // type:object size:0x21 scope:local align:4 +@4558 = .rodata:0x8047C9AC; // type:object size:0x9 scope:local align:4 data:string +@4559 = .rodata:0x8047C9B8; // type:object size:0x9 scope:local align:4 data:string +@4584 = .rodata:0x8047C9C4; // type:object size:0xD scope:local align:4 data:string +@4668 = .rodata:0x8047C9D4; // type:object size:0xA scope:local align:4 data:string +@4669 = .rodata:0x8047C9E0; // type:object size:0xB scope:local align:4 data:string +@4670 = .rodata:0x8047C9EC; // type:object size:0x16 scope:local align:4 data:string +@4671 = .rodata:0x8047CA04; // type:object size:0x19 scope:local align:4 data:string +@4672 = .rodata:0x8047CA20; // type:object size:0x1D scope:local align:4 data:string +@4673 = .rodata:0x8047CA40; // type:object size:0x19 scope:local align:4 data:string +@4674 = .rodata:0x8047CA5C; // type:object size:0x1B scope:local align:4 data:string +@4675 = .rodata:0x8047CA78; // type:object size:0x1B scope:local align:4 data:string +@4801 = .rodata:0x8047CA94; // type:object size:0x9 scope:local align:4 data:string +@4832 = .rodata:0x8047CAA0; // type:object size:0x9 scope:local align:4 data:string +@4955 = .rodata:0x8047CAAC; // type:object size:0xE scope:local align:4 data:string +@4960 = .rodata:0x8047CABC; // type:object size:0xB scope:local align:4 data:string +@4961 = .rodata:0x8047CAC8; // type:object size:0xB scope:local align:4 data:string +@5535 = .rodata:0x8047CAD4; // type:object size:0x13 scope:local align:4 data:string +@5536 = .rodata:0x8047CAE8; // type:object size:0x10 scope:local align:4 data:string +@5537 = .rodata:0x8047CAF8; // type:object size:0x11 scope:local align:4 data:string +@5538 = .rodata:0x8047CB0C; // type:object size:0x10 scope:local align:4 +@5539 = .rodata:0x8047CB1C; // type:object size:0xF scope:local align:4 data:string +@5540 = .rodata:0x8047CB2C; // type:object size:0x12 scope:local align:4 data:string +@5541 = .rodata:0x8047CB40; // type:object size:0x12 scope:local align:4 data:string +@5542 = .rodata:0x8047CB54; // type:object size:0xF scope:local align:4 data:string +@5543 = .rodata:0x8047CB64; // type:object size:0xE scope:local align:4 data:string +@5544 = .rodata:0x8047CB74; // type:object size:0xB scope:local align:4 data:string +@5545 = .rodata:0x8047CB80; // type:object size:0xE scope:local align:4 data:string +@5555 = .rodata:0x8047CB90; // type:object size:0xC scope:local align:4 data:string +@5556 = .rodata:0x8047CB9C; // type:object size:0xF scope:local align:4 data:string +@5744 = .rodata:0x8047CBAC; // type:object size:0xB scope:local align:4 data:string +@5745 = .rodata:0x8047CBB8; // type:object size:0xF scope:local align:4 data:string +@6327 = .rodata:0x8047CBC8; // type:object size:0x17 scope:local align:4 +@6467 = .rodata:0x8047CBE0; // type:object size:0x12 scope:local align:4 data:string +@6494 = .rodata:0x8047CBF4; // type:object size:0x10 scope:local align:4 +@6533 = .rodata:0x8047CC04; // type:object size:0xB scope:local align:4 data:string +@6552 = .rodata:0x8047CC10; // type:object size:0x9 scope:local align:4 data:string +@6553 = .rodata:0x8047CC1C; // type:object size:0x9 scope:local align:4 data:string +@6917 = .rodata:0x8047CC28; // type:object size:0xF scope:local align:4 data:string +@6918 = .rodata:0x8047CC38; // type:object size:0x14 scope:local align:4 data:string +@6919 = .rodata:0x8047CC4C; // type:object size:0xA scope:local align:4 data:string +@6920 = .rodata:0x8047CC58; // type:object size:0x1D scope:local align:4 data:string +@6921 = .rodata:0x8047CC78; // type:object size:0x25 scope:local align:4 data:string +@6922 = .rodata:0x8047CCA0; // type:object size:0xA scope:local align:4 data:string +@6931 = .rodata:0x8047CCAC; // type:object size:0x19 scope:local align:4 data:string +@7280 = .rodata:0x8047CCC8; // type:object size:0xB scope:local align:4 data:string +@7281 = .rodata:0x8047CCD4; // type:object size:0x11 scope:local align:4 data:string +@7283 = .rodata:0x8047CCE8; // type:object size:0x11 scope:local align:4 data:string +@7284 = .rodata:0x8047CCFC; // type:object size:0x20 scope:local align:4 data:string +@7286 = .rodata:0x8047CD1C; // type:object size:0xF scope:local align:4 data:string +@7291 = .rodata:0x8047CD2C; // type:object size:0xC scope:local align:4 data:string +@7293 = .rodata:0x8047CD38; // type:object size:0xF scope:local align:4 data:string +@7298 = .rodata:0x8047CD48; // type:object size:0xE scope:local align:4 data:string +@7305 = .rodata:0x8047CD58; // type:object size:0xD scope:local align:4 data:string +@7396 = .rodata:0x8047CD68; // type:object size:0x12 scope:local align:4 data:string +@7398 = .rodata:0x8047CD7C; // type:object size:0xA scope:local align:4 data:string +@7541 = .rodata:0x8047CD88; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047CD98; // type:label scope:local +@2741 = .rodata:0x8047CD98; // type:object size:0xC scope:local align:4 +@4396 = .rodata:0x8047CDA4; // type:object size:0x12 scope:local align:4 data:string +@4465 = .rodata:0x8047CDB8; // type:object size:0x9 scope:local align:4 data:string +@4466 = .rodata:0x8047CDC4; // type:object size:0x9 scope:local align:4 data:string +@4467 = .rodata:0x8047CDD0; // type:object size:0xA scope:local align:4 data:string +@4468 = .rodata:0x8047CDDC; // type:object size:0x24 scope:local align:4 data:string +@4469 = .rodata:0x8047CE00; // type:object size:0x13 scope:local align:4 data:string +@4688 = .rodata:0x8047CE14; // type:object size:0xB scope:local align:4 data:string +@4787 = .rodata:0x8047CE20; // type:object size:0xC scope:local align:4 data:string +@4788 = .rodata:0x8047CE2C; // type:object size:0x9 scope:local align:4 data:string +@4789 = .rodata:0x8047CE38; // type:object size:0xE scope:local align:4 data:string +@4899 = .rodata:0x8047CE48; // type:object size:0x16 scope:local align:4 data:string +@5061 = .rodata:0x8047CE60; // type:object size:0x23 scope:local align:4 data:string +@5138 = .rodata:0x8047CE84; // type:object size:0x10 scope:local align:4 data:string +@5139 = .rodata:0x8047CE94; // type:object size:0x10 scope:local align:4 data:string +@5140 = .rodata:0x8047CEA4; // type:object size:0x10 scope:local align:4 data:string +@5227 = .rodata:0x8047CEB4; // type:object size:0x13 scope:local align:4 data:string +@5228 = .rodata:0x8047CEC8; // type:object size:0xD scope:local align:4 data:string +@5229 = .rodata:0x8047CED8; // type:object size:0x16 scope:local align:4 data:string +@5230 = .rodata:0x8047CEF0; // type:object size:0x14 scope:local align:4 data:string +@5231 = .rodata:0x8047CF04; // type:object size:0x15 scope:local align:4 data:string +@5232 = .rodata:0x8047CF1C; // type:object size:0x15 scope:local align:4 data:string +@5433 = .rodata:0x8047CF34; // type:object size:0xC scope:local align:4 data:string +@5466 = .rodata:0x8047CF40; // type:object size:0xD scope:local align:4 data:string +@5507 = .rodata:0x8047CF50; // type:object size:0xC scope:local align:4 data:string +@5601 = .rodata:0x8047CF5C; // type:object size:0x9 scope:local align:4 data:string +@5603 = .rodata:0x8047CF68; // type:object size:0xC scope:local align:4 data:string +@5604 = .rodata:0x8047CF74; // type:object size:0x9 scope:local align:4 data:string +@5606 = .rodata:0x8047CF80; // type:object size:0xC scope:local align:4 data:string +@5607 = .rodata:0x8047CF8C; // type:object size:0x9 scope:local align:4 data:string +@5751 = .rodata:0x8047CF98; // type:object size:0x12 scope:local align:4 data:string +@5968 = .rodata:0x8047CFAC; // type:object size:0xB scope:local align:4 data:string +@6324 = .rodata:0x8047CFB8; // type:object size:0xC scope:local align:4 data:string +@6335 = .rodata:0x8047CFC4; // type:object size:0xC scope:local align:4 data:string +@6337 = .rodata:0x8047CFD0; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047CFE0; // type:label scope:local +@3394 = .rodata:0x8047CFE0; // type:object size:0xC scope:local align:4 data:string +@4260 = .rodata:0x8047CFEC; // type:object size:0x10 scope:local align:4 data:string +@4261 = .rodata:0x8047CFFC; // type:object size:0x9 scope:local align:4 data:string +@4392 = .rodata:0x8047D008; // type:object size:0x14 scope:local align:4 data:string +@4725 = .rodata:0x8047D01C; // type:object size:0x2D scope:local align:4 +@4726 = .rodata:0x8047D04C; // type:object size:0x1C scope:local align:4 +@4727 = .rodata:0x8047D068; // type:object size:0x1D scope:local align:4 data:string +...rodata.0 = .rodata:0x8047D088; // type:label scope:local +@3552 = .rodata:0x8047D088; // type:object size:0xC scope:local align:4 data:string +@3553 = .rodata:0x8047D094; // type:object size:0xF scope:local align:4 +@3557 = .rodata:0x8047D0A4; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x8047D0B4; // type:object size:0x12 scope:local align:4 +@3562 = .rodata:0x8047D0C8; // type:object size:0x11 scope:local align:4 +@3564 = .rodata:0x8047D0DC; // type:object size:0x11 scope:local align:4 +@3566 = .rodata:0x8047D0F0; // type:object size:0x11 scope:local align:4 +@3568 = .rodata:0x8047D104; // type:object size:0x11 scope:local align:4 +@3569 = .rodata:0x8047D118; // type:object size:0x9 scope:local align:4 +@3571 = .rodata:0x8047D124; // type:object size:0x13 scope:local align:4 +@3572 = .rodata:0x8047D138; // type:object size:0xD scope:local align:4 +@3577 = .rodata:0x8047D148; // type:object size:0x9 scope:local align:4 data:string +@3581 = .rodata:0x8047D154; // type:object size:0xB scope:local align:4 +@3584 = .rodata:0x8047D160; // type:object size:0x11 scope:local align:4 +@3586 = .rodata:0x8047D174; // type:object size:0xE scope:local align:4 +@3588 = .rodata:0x8047D184; // type:object size:0xE scope:local align:4 +@3589 = .rodata:0x8047D194; // type:object size:0xE scope:local align:4 +@3591 = .rodata:0x8047D1A4; // type:object size:0xE scope:local align:4 +@3592 = .rodata:0x8047D1B4; // type:object size:0xF scope:local align:4 +@3594 = .rodata:0x8047D1C4; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x8047D1D4; // type:object size:0xD scope:local align:4 +@3598 = .rodata:0x8047D1E4; // type:object size:0x9 scope:local align:4 +@3600 = .rodata:0x8047D1F0; // type:object size:0x15 scope:local align:4 +@3601 = .rodata:0x8047D208; // type:object size:0xF scope:local align:4 +@3602 = .rodata:0x8047D218; // type:object size:0xF scope:local align:4 +@3603 = .rodata:0x8047D228; // type:object size:0x23 scope:local align:4 +@3605 = .rodata:0x8047D24C; // type:object size:0xD scope:local align:4 +@3607 = .rodata:0x8047D25C; // type:object size:0x11 scope:local align:4 +@3609 = .rodata:0x8047D270; // type:object size:0xB scope:local align:4 +@3611 = .rodata:0x8047D27C; // type:object size:0x17 scope:local align:4 +@3613 = .rodata:0x8047D294; // type:object size:0xD scope:local align:4 +@3615 = .rodata:0x8047D2A4; // type:object size:0xF scope:local align:4 +@3616 = .rodata:0x8047D2B4; // type:object size:0xD scope:local align:4 +@3617 = .rodata:0x8047D2C4; // type:object size:0x15 scope:local align:4 +@3619 = .rodata:0x8047D2DC; // type:object size:0xF scope:local align:4 +@3620 = .rodata:0x8047D2EC; // type:object size:0x11 scope:local align:4 +@3621 = .rodata:0x8047D300; // type:object size:0x11 scope:local align:4 +@3624 = .rodata:0x8047D314; // type:object size:0x19 scope:local align:4 +@3625 = .rodata:0x8047D330; // type:object size:0x17 scope:local align:4 +@3626 = .rodata:0x8047D348; // type:object size:0x17 scope:local align:4 +@3628 = .rodata:0x8047D360; // type:object size:0x13 scope:local align:4 +@3629 = .rodata:0x8047D374; // type:object size:0x15 scope:local align:4 +@3630 = .rodata:0x8047D38C; // type:object size:0x15 scope:local align:4 +@3631 = .rodata:0x8047D3A4; // type:object size:0x15 scope:local align:4 +@3635 = .rodata:0x8047D3BC; // type:object size:0x9 scope:local align:4 +@3636 = .rodata:0x8047D3C8; // type:object size:0x11 scope:local align:4 +@3637 = .rodata:0x8047D3DC; // type:object size:0x13 scope:local align:4 data:string +@3638 = .rodata:0x8047D3F0; // type:object size:0xF scope:local align:4 data:string +@3639 = .rodata:0x8047D400; // type:object size:0x10 scope:local align:4 data:string +@3640 = .rodata:0x8047D410; // type:object size:0x1E scope:local align:4 +@3641 = .rodata:0x8047D430; // type:object size:0xD scope:local align:4 +@3642 = .rodata:0x8047D440; // type:object size:0xD scope:local align:4 +@3643 = .rodata:0x8047D450; // type:object size:0xD scope:local align:4 +@3644 = .rodata:0x8047D460; // type:object size:0xD scope:local align:4 +@3645 = .rodata:0x8047D470; // type:object size:0x13 scope:local align:4 +@3647 = .rodata:0x8047D484; // type:object size:0xF scope:local align:4 +@3648 = .rodata:0x8047D494; // type:object size:0x17 scope:local align:4 +@3649 = .rodata:0x8047D4AC; // type:object size:0x13 scope:local align:4 +@3650 = .rodata:0x8047D4C0; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8047D4D4; // type:object size:0x13 scope:local align:4 data:string +@3663 = .rodata:0x8047D4E8; // type:object size:0x13 scope:local align:4 data:string +@3664 = .rodata:0x8047D4FC; // type:object size:0xF scope:local align:4 data:string +@3665 = .rodata:0x8047D50C; // type:object size:0xE scope:local align:4 data:string +@3669 = .rodata:0x8047D51C; // type:object size:0xD scope:local align:4 data:string +@3684 = .rodata:0x8047D52C; // type:object size:0x10 scope:local align:4 data:string +@3685 = .rodata:0x8047D53C; // type:object size:0x15 scope:local align:4 +@3686 = .rodata:0x8047D554; // type:object size:0x12 scope:local align:4 +@3687 = .rodata:0x8047D568; // type:object size:0x11 scope:local align:4 +@3689 = .rodata:0x8047D57C; // type:object size:0x14 scope:local align:4 +@3691 = .rodata:0x8047D590; // type:object size:0x19 scope:local align:4 +@3692 = .rodata:0x8047D5AC; // type:object size:0x19 scope:local align:4 +@3693 = .rodata:0x8047D5C8; // type:object size:0x18 scope:local align:4 +@3694 = .rodata:0x8047D5E0; // type:object size:0x18 scope:local align:4 +@3695 = .rodata:0x8047D5F8; // type:object size:0x1B scope:local align:4 +@3696 = .rodata:0x8047D614; // type:object size:0x1B scope:local align:4 +@3825 = .rodata:0x8047D630; // type:object size:0xC scope:local align:4 data:string +@3826 = .rodata:0x8047D63C; // type:object size:0x9 scope:local align:4 data:string +@3865 = .rodata:0x8047D648; // type:object size:0x1C scope:local align:4 data:string +@3902 = .rodata:0x8047D664; // type:object size:0x1B scope:local align:4 data:string +@3903 = .rodata:0x8047D680; // type:object size:0x11 scope:local align:4 data:string +@3904 = .rodata:0x8047D694; // type:object size:0x1B scope:local align:4 data:string +@3905 = .rodata:0x8047D6B0; // type:object size:0x17 scope:local align:4 data:string +@3906 = .rodata:0x8047D6C8; // type:object size:0xC scope:local align:4 data:string +@3908 = .rodata:0x8047D6D4; // type:object size:0xD scope:local align:4 data:string +@3909 = .rodata:0x8047D6E4; // type:object size:0x12 scope:local align:4 data:string +@3910 = .rodata:0x8047D6F8; // type:object size:0x12 scope:local align:4 data:string +@3911 = .rodata:0x8047D70C; // type:object size:0x17 scope:local align:4 data:string +@3912 = .rodata:0x8047D724; // type:object size:0x16 scope:local align:4 data:string +@3913 = .rodata:0x8047D73C; // type:object size:0x17 scope:local align:4 data:string +@3914 = .rodata:0x8047D754; // type:object size:0x16 scope:local align:4 data:string +@3945 = .rodata:0x8047D76C; // type:object size:0x18 scope:local align:4 data:string +@3946 = .rodata:0x8047D784; // type:object size:0x17 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047D7A0; // type:label scope:local +@3797 = .rodata:0x8047D7A0; // type:object size:0xC scope:local align:4 +@4009 = .rodata:0x8047D7AC; // type:object size:0xC scope:local align:4 data:string +@4010 = .rodata:0x8047D7B8; // type:object size:0x9 scope:local align:4 +@4014 = .rodata:0x8047D7C4; // type:object size:0x9 scope:local align:4 +@4016 = .rodata:0x8047D7D0; // type:object size:0xF scope:local align:4 +@4018 = .rodata:0x8047D7E0; // type:object size:0xF scope:local align:4 +@4020 = .rodata:0x8047D7F0; // type:object size:0x11 scope:local align:4 +@4023 = .rodata:0x8047D804; // type:object size:0xB scope:local align:4 +@4026 = .rodata:0x8047D810; // type:object size:0xD scope:local align:4 +@4028 = .rodata:0x8047D820; // type:object size:0xB scope:local align:4 +@4030 = .rodata:0x8047D82C; // type:object size:0xA scope:local align:4 +@4031 = .rodata:0x8047D838; // type:object size:0xA scope:local align:4 +@4033 = .rodata:0x8047D844; // type:object size:0xA scope:local align:4 +@4034 = .rodata:0x8047D850; // type:object size:0xB scope:local align:4 +@4036 = .rodata:0x8047D85C; // type:object size:0xB scope:local align:4 +@4037 = .rodata:0x8047D868; // type:object size:0x1B scope:local align:4 +@4038 = .rodata:0x8047D884; // type:object size:0x17 scope:local align:4 +@4039 = .rodata:0x8047D89C; // type:object size:0x17 scope:local align:4 +@4041 = .rodata:0x8047D8B4; // type:object size:0x15 scope:local align:4 +@4043 = .rodata:0x8047D8CC; // type:object size:0x19 scope:local align:4 +@4045 = .rodata:0x8047D8E8; // type:object size:0xD scope:local align:4 +@4047 = .rodata:0x8047D8F8; // type:object size:0xF scope:local align:4 +@4050 = .rodata:0x8047D908; // type:object size:0x14 scope:local align:4 +@4052 = .rodata:0x8047D91C; // type:object size:0x15 scope:local align:4 +@4053 = .rodata:0x8047D934; // type:object size:0x12 scope:local align:4 +@4055 = .rodata:0x8047D948; // type:object size:0x11 scope:local align:4 +@4057 = .rodata:0x8047D95C; // type:object size:0x14 scope:local align:4 +@4059 = .rodata:0x8047D970; // type:object size:0x19 scope:local align:4 +@4061 = .rodata:0x8047D98C; // type:object size:0x19 scope:local align:4 +@4063 = .rodata:0x8047D9A8; // type:object size:0x18 scope:local align:4 +@4064 = .rodata:0x8047D9C0; // type:object size:0x18 scope:local align:4 +@4065 = .rodata:0x8047D9D8; // type:object size:0x1B scope:local align:4 +@4066 = .rodata:0x8047D9F4; // type:object size:0x1B scope:local align:4 +@4067 = .rodata:0x8047DA10; // type:object size:0x12 scope:local align:4 +@4069 = .rodata:0x8047DA24; // type:object size:0x12 scope:local align:4 +@4070 = .rodata:0x8047DA38; // type:object size:0xB scope:local align:4 +@4072 = .rodata:0x8047DA44; // type:object size:0x11 scope:local align:4 +@4074 = .rodata:0x8047DA58; // type:object size:0xB scope:local align:4 +@4077 = .rodata:0x8047DA64; // type:object size:0xA scope:local align:4 +@4078 = .rodata:0x8047DA70; // type:object size:0x9 scope:local align:4 +@4079 = .rodata:0x8047DA7C; // type:object size:0x11 scope:local align:4 +@4080 = .rodata:0x8047DA90; // type:object size:0x10 scope:local align:4 +@4082 = .rodata:0x8047DAA0; // type:object size:0x1C scope:local align:4 +@4084 = .rodata:0x8047DABC; // type:object size:0x1B scope:local align:4 +@4085 = .rodata:0x8047DAD8; // type:object size:0x17 scope:local align:4 +@4087 = .rodata:0x8047DAF0; // type:object size:0x11 scope:local align:4 +@4088 = .rodata:0x8047DB04; // type:object size:0x15 scope:local align:4 +@4089 = .rodata:0x8047DB1C; // type:object size:0x15 scope:local align:4 +@4090 = .rodata:0x8047DB34; // type:object size:0x11 scope:local align:4 +@4091 = .rodata:0x8047DB48; // type:object size:0x15 scope:local align:4 +@4092 = .rodata:0x8047DB60; // type:object size:0x17 scope:local align:4 +@4093 = .rodata:0x8047DB78; // type:object size:0x17 scope:local align:4 +@4094 = .rodata:0x8047DB90; // type:object size:0x1F scope:local align:4 +@4096 = .rodata:0x8047DBB0; // type:object size:0x1F scope:local align:4 +@4097 = .rodata:0x8047DBD0; // type:object size:0x1A scope:local align:4 +@4098 = .rodata:0x8047DBEC; // type:object size:0x1A scope:local align:4 +@4099 = .rodata:0x8047DC08; // type:object size:0x1A scope:local align:4 +@4100 = .rodata:0x8047DC24; // type:object size:0x1A scope:local align:4 +@4101 = .rodata:0x8047DC40; // type:object size:0xD scope:local align:4 +@4103 = .rodata:0x8047DC50; // type:object size:0x11 scope:local align:4 +@4104 = .rodata:0x8047DC64; // type:object size:0x11 scope:local align:4 +@4105 = .rodata:0x8047DC78; // type:object size:0x11 scope:local align:4 +@4107 = .rodata:0x8047DC8C; // type:object size:0xF scope:local align:4 +@4108 = .rodata:0x8047DC9C; // type:object size:0x12 scope:local align:4 +@4109 = .rodata:0x8047DCB0; // type:object size:0x1B scope:local align:4 +@4110 = .rodata:0x8047DCCC; // type:object size:0x1D scope:local align:4 +@4111 = .rodata:0x8047DCEC; // type:object size:0xF scope:local align:4 +@4112 = .rodata:0x8047DCFC; // type:object size:0xD scope:local align:4 +@4114 = .rodata:0x8047DD0C; // type:object size:0x14 scope:local align:4 +@4115 = .rodata:0x8047DD20; // type:object size:0x13 scope:local align:4 +@4116 = .rodata:0x8047DD34; // type:object size:0x12 scope:local align:4 +@4117 = .rodata:0x8047DD48; // type:object size:0x12 scope:local align:4 +@4119 = .rodata:0x8047DD5C; // type:object size:0x11 scope:local align:4 +@4121 = .rodata:0x8047DD70; // type:object size:0xD scope:local align:4 +@4123 = .rodata:0x8047DD80; // type:object size:0x11 scope:local align:4 +@4124 = .rodata:0x8047DD94; // type:object size:0x1D scope:local align:4 +@4125 = .rodata:0x8047DDB4; // type:object size:0x13 scope:local align:4 +@4126 = .rodata:0x8047DDC8; // type:object size:0x10 scope:local align:4 +@4127 = .rodata:0x8047DDD8; // type:object size:0xF scope:local align:4 data:string +@4129 = .rodata:0x8047DDE8; // type:object size:0xF scope:local align:4 data:string +@4130 = .rodata:0x8047DDF8; // type:object size:0x12 scope:local align:4 +@4131 = .rodata:0x8047DE0C; // type:object size:0x12 scope:local align:4 +@4132 = .rodata:0x8047DE20; // type:object size:0xE scope:local align:4 +@4133 = .rodata:0x8047DE30; // type:object size:0x10 scope:local align:4 +@4135 = .rodata:0x8047DE40; // type:object size:0x10 scope:local align:4 +@4136 = .rodata:0x8047DE50; // type:object size:0xF scope:local align:4 +@4138 = .rodata:0x8047DE60; // type:object size:0xF scope:local align:4 +@4139 = .rodata:0x8047DE70; // type:object size:0xF scope:local align:4 +@4140 = .rodata:0x8047DE80; // type:object size:0xD scope:local align:4 +@4141 = .rodata:0x8047DE90; // type:object size:0xD scope:local align:4 +@4142 = .rodata:0x8047DEA0; // type:object size:0x14 scope:local align:4 +@4143 = .rodata:0x8047DEB4; // type:object size:0x12 scope:local align:4 +@4144 = .rodata:0x8047DEC8; // type:object size:0x10 scope:local align:4 +@4146 = .rodata:0x8047DED8; // type:object size:0x13 scope:local align:4 +@4147 = .rodata:0x8047DEEC; // type:object size:0x14 scope:local align:4 +@4149 = .rodata:0x8047DF00; // type:object size:0x18 scope:local align:4 +@4152 = .rodata:0x8047DF18; // type:object size:0xF scope:local align:4 +@4154 = .rodata:0x8047DF28; // type:object size:0xB scope:local align:4 +@4155 = .rodata:0x8047DF34; // type:object size:0x19 scope:local align:4 +@4167 = .rodata:0x8047DF50; // type:object size:0x13 scope:local align:4 data:string +@4168 = .rodata:0x8047DF64; // type:object size:0x13 scope:local align:4 data:string +@4169 = .rodata:0x8047DF78; // type:object size:0xF scope:local align:4 data:string +@4170 = .rodata:0x8047DF88; // type:object size:0xE scope:local align:4 data:string +@4173 = .rodata:0x8047DF98; // type:object size:0xD scope:local align:4 data:string +@4189 = .rodata:0x8047DFA8; // type:object size:0x10 scope:local align:4 data:string +@4205 = .rodata:0x8047DFB8; // type:object size:0xC scope:local align:4 data:string +@4206 = .rodata:0x8047DFC4; // type:object size:0x11 scope:local align:4 data:string +@4369 = .rodata:0x8047DFD8; // type:object size:0x1C scope:local align:4 data:string +@4428 = .rodata:0x8047DFF4; // type:object size:0x1B scope:local align:4 data:string +@4429 = .rodata:0x8047E010; // type:object size:0x17 scope:local align:4 data:string +@4430 = .rodata:0x8047E028; // type:object size:0xD scope:local align:4 data:string +@4431 = .rodata:0x8047E038; // type:object size:0xC scope:local align:4 data:string +@4432 = .rodata:0x8047E044; // type:object size:0xF scope:local align:4 data:string +@4433 = .rodata:0x8047E054; // type:object size:0xE scope:local align:4 data:string +@4434 = .rodata:0x8047E064; // type:object size:0xE scope:local align:4 data:string +@4435 = .rodata:0x8047E074; // type:object size:0xE scope:local align:4 data:string +@4436 = .rodata:0x8047E084; // type:object size:0xC scope:local align:4 data:string +@4437 = .rodata:0x8047E090; // type:object size:0x15 scope:local align:4 data:string +@4438 = .rodata:0x8047E0A8; // type:object size:0x14 scope:local align:4 data:string +@4439 = .rodata:0x8047E0BC; // type:object size:0x17 scope:local align:4 data:string +@4440 = .rodata:0x8047E0D4; // type:object size:0x18 scope:local align:4 data:string +@4441 = .rodata:0x8047E0EC; // type:object size:0x1B scope:local align:4 data:string +@4442 = .rodata:0x8047E108; // type:object size:0x10 scope:local align:4 data:string +@4447 = .rodata:0x8047E118; // type:object size:0x12 scope:local align:4 data:string +@4741 = .rodata:0x8047E12C; // type:object size:0x9 scope:local align:4 data:string +@5155 = .rodata:0x8047E138; // type:object size:0xE scope:local align:4 data:string +@5272 = .rodata:0x8047E148; // type:object size:0x19 scope:local align:4 data:string +@5423 = .rodata:0x8047E164; // type:object size:0xF scope:local align:4 data:string +@5438 = .rodata:0x8047E174; // type:object size:0xC scope:local align:4 data:string +@5440 = .rodata:0x8047E180; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E190; // type:label scope:local +@3488 = .rodata:0x8047E190; // type:object size:0xC scope:local align:4 +@3895 = .rodata:0x8047E19C; // type:object size:0xB scope:local align:4 data:string +@3896 = .rodata:0x8047E1A8; // type:object size:0x9 scope:local align:4 data:string +@4281 = .rodata:0x8047E1B4; // type:object size:0xB scope:local align:4 data:string +@4282 = .rodata:0x8047E1C0; // type:object size:0xB scope:local align:4 data:string +@4283 = .rodata:0x8047E1CC; // type:object size:0xA scope:local align:4 data:string +@4284 = .rodata:0x8047E1D8; // type:object size:0xA scope:local align:4 data:string +@4285 = .rodata:0x8047E1E4; // type:object size:0xC scope:local align:4 data:string +@4286 = .rodata:0x8047E1F0; // type:object size:0xE scope:local align:4 data:string +@4287 = .rodata:0x8047E200; // type:object size:0xD scope:local align:4 data:string +@4288 = .rodata:0x8047E210; // type:object size:0xD scope:local align:4 data:string +@4289 = .rodata:0x8047E220; // type:object size:0x9 scope:local align:4 data:string +@4290 = .rodata:0x8047E22C; // type:object size:0xE scope:local align:4 data:string +@4291 = .rodata:0x8047E23C; // type:object size:0xD scope:local align:4 data:string +@4292 = .rodata:0x8047E24C; // type:object size:0x9 scope:local align:4 data:string +@4293 = .rodata:0x8047E258; // type:object size:0xC scope:local align:4 data:string +@4294 = .rodata:0x8047E264; // type:object size:0xA scope:local align:4 data:string +@4381 = .rodata:0x8047E270; // type:object size:0xE scope:local align:4 data:string +@4383 = .rodata:0x8047E280; // type:object size:0xD scope:local align:4 data:string +@4385 = .rodata:0x8047E290; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E2A0; // type:label scope:local +@3360 = .rodata:0x8047E2A0; // type:object size:0xC scope:local align:4 +@3846 = .rodata:0x8047E2AC; // type:object size:0xF scope:local align:4 data:string +@3867 = .rodata:0x8047E2BC; // type:object size:0xF scope:local align:4 data:string +@3868 = .rodata:0x8047E2CC; // type:object size:0x13 scope:local align:4 data:string +@3869 = .rodata:0x8047E2E0; // type:object size:0x26 scope:local align:4 data:string +@3956 = .rodata:0x8047E308; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E318; // type:label scope:local +@3884 = .rodata:0x8047E318; // type:object size:0xC scope:local align:4 +@3944 = .rodata:0x8047E324; // type:object size:0xA scope:local align:4 data:string +@3953 = .rodata:0x8047E330; // type:object size:0x11 scope:local align:4 data:string +@4152 = .rodata:0x8047E344; // type:object size:0xE scope:local align:4 data:string +@4153 = .rodata:0x8047E354; // type:object size:0x9 scope:local align:4 data:string +@4313 = .rodata:0x8047E360; // type:object size:0x14 scope:local align:4 +@4638 = .rodata:0x8047E374; // type:object size:0x9 scope:local align:4 data:string +@4639 = .rodata:0x8047E380; // type:object size:0x9 scope:local align:4 data:string +@5446 = .rodata:0x8047E38C; // type:object size:0xA scope:local align:4 +@6412 = .rodata:0x8047E398; // type:object size:0x9 scope:local align:4 data:string +@6413 = .rodata:0x8047E3A4; // type:object size:0xA scope:local align:4 data:string +@6414 = .rodata:0x8047E3B0; // type:object size:0x24 scope:local align:4 data:string +@6415 = .rodata:0x8047E3D4; // type:object size:0x13 scope:local align:4 data:string +@7146 = .rodata:0x8047E3E8; // type:object size:0x10 scope:local align:4 data:string +@7764 = .rodata:0x8047E3F8; // type:object size:0x15 scope:local align:4 data:string +@7768 = .rodata:0x8047E410; // type:object size:0x13 scope:local align:4 data:string +@7772 = .rodata:0x8047E424; // type:object size:0x1C scope:local align:4 data:string +@7880 = .rodata:0x8047E440; // type:object size:0x11 scope:local align:4 data:string +@7881 = .rodata:0x8047E454; // type:object size:0x13 scope:local align:4 data:string +@7882 = .rodata:0x8047E468; // type:object size:0x14 scope:local align:4 data:string +@7964 = .rodata:0x8047E47C; // type:object size:0x17 scope:local align:4 data:string +@8152 = .rodata:0x8047E494; // type:object size:0x13 scope:local align:4 +@8587 = .rodata:0x8047E4A8; // type:object size:0x13 scope:local align:4 data:string +@8588 = .rodata:0x8047E4BC; // type:object size:0x2C scope:local align:4 data:string +@8599 = .rodata:0x8047E4E8; // type:object size:0x15 scope:local align:4 data:string +@8727 = .rodata:0x8047E500; // type:object size:0x17 scope:local align:4 +@9433 = .rodata:0x8047E518; // type:object size:0x9 scope:local align:4 data:string +@9512 = .rodata:0x8047E524; // type:object size:0xE scope:local align:4 data:string +@9529 = .rodata:0x8047E534; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E548; // type:label scope:local +@3234 = .rodata:0x8047E548; // type:object size:0x9 scope:local align:4 data:string +@3357 = .rodata:0x8047E554; // type:object size:0xD scope:local align:4 data:string +@3358 = .rodata:0x8047E564; // type:object size:0x9 scope:local align:4 data:string +@3470 = .rodata:0x8047E570; // type:object size:0xC scope:local align:4 data:string +@3471 = .rodata:0x8047E57C; // type:object size:0xB scope:local align:4 data:string +@3472 = .rodata:0x8047E588; // type:object size:0xE scope:local align:4 data:string +@3473 = .rodata:0x8047E598; // type:object size:0xD scope:local align:4 data:string +@3551 = .rodata:0x8047E5A8; // type:object size:0x9 scope:local align:4 data:string +@3605 = .rodata:0x8047E5B4; // type:object size:0x25 scope:local align:4 data:string +@4325 = .rodata:0x8047E5DC; // type:object size:0x29 scope:local align:4 data:string +@4503 = .rodata:0x8047E608; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E620; // type:label scope:local +@3546 = .rodata:0x8047E620; // type:object size:0xC scope:local align:4 +@4266 = .rodata:0x8047E62C; // type:object size:0x9 scope:local align:4 data:string +@4559 = .rodata:0x8047E638; // type:object size:0xD scope:local align:4 data:string +@4560 = .rodata:0x8047E648; // type:object size:0x12 scope:local align:4 data:string +@4563 = .rodata:0x8047E65C; // type:object size:0x17 scope:local align:4 data:string +@4852 = .rodata:0x8047E674; // type:object size:0x9 scope:local align:4 data:string +@4854 = .rodata:0x8047E680; // type:object size:0x9 scope:local align:4 data:string +@4936 = .rodata:0x8047E68C; // type:object size:0x25 scope:local align:4 data:string +@5556 = .rodata:0x8047E6B4; // type:object size:0xC scope:local align:4 data:4byte +@5928 = .rodata:0x8047E6C0; // type:object size:0x9 scope:local align:4 data:string +@5929 = .rodata:0x8047E6CC; // type:object size:0xA scope:local align:4 data:string +@5930 = .rodata:0x8047E6D8; // type:object size:0x24 scope:local align:4 data:string +@5958 = .rodata:0x8047E6FC; // type:object size:0xA scope:local align:4 data:string +@5959 = .rodata:0x8047E708; // type:object size:0x11 scope:local align:4 data:string +@6246 = .rodata:0x8047E71C; // type:object size:0xE scope:local align:4 data:string +@6247 = .rodata:0x8047E72C; // type:object size:0xF scope:local align:4 data:string +@6304 = .rodata:0x8047E73C; // type:object size:0xF scope:local align:4 data:string +@6318 = .rodata:0x8047E74C; // type:object size:0xC scope:local align:4 data:string +@6327 = .rodata:0x8047E758; // type:object size:0xC scope:local align:4 data:string +@6335 = .rodata:0x8047E764; // type:object size:0x9 scope:local align:4 data:string +@6508 = .rodata:0x8047E770; // type:object size:0xA scope:local align:4 data:string +@6509 = .rodata:0x8047E77C; // type:object size:0xA scope:local align:4 data:string +@6510 = .rodata:0x8047E788; // type:object size:0xA scope:local align:4 data:string +@6511 = .rodata:0x8047E794; // type:object size:0xC scope:local align:4 data:4byte +@6751 = .rodata:0x8047E7A0; // type:object size:0x1C scope:local align:4 data:string +@6849 = .rodata:0x8047E7BC; // type:object size:0x9 scope:local align:4 data:string +@6965 = .rodata:0x8047E7C8; // type:object size:0x9 scope:local align:4 +@7050 = .rodata:0x8047E7D4; // type:object size:0x9 scope:local align:4 data:string +@7051 = .rodata:0x8047E7E0; // type:object size:0x9 scope:local align:4 data:string +@7052 = .rodata:0x8047E7EC; // type:object size:0xC scope:local align:4 +@7088 = .rodata:0x8047E7F8; // type:object size:0xF scope:local align:4 data:string +@7180 = .rodata:0x8047E808; // type:object size:0x11 scope:local align:4 data:string +@7181 = .rodata:0x8047E81C; // type:object size:0x19 scope:local align:4 data:string +@7678 = .rodata:0x8047E838; // type:object size:0x18 scope:local align:4 data:string +@7784 = .rodata:0x8047E850; // type:object size:0xA scope:local align:4 data:string +@7785 = .rodata:0x8047E85C; // type:object size:0x19 scope:local align:4 data:string +@7786 = .rodata:0x8047E878; // type:object size:0x9 scope:local align:4 data:string +@7787 = .rodata:0x8047E884; // type:object size:0x17 scope:local align:4 data:string +@7788 = .rodata:0x8047E89C; // type:object size:0x1C scope:local align:4 data:string +@7789 = .rodata:0x8047E8B8; // type:object size:0x17 scope:local align:4 data:string +@7791 = .rodata:0x8047E8D0; // type:object size:0x16 scope:local align:4 data:string +@7792 = .rodata:0x8047E8E8; // type:object size:0xF scope:local align:4 data:string +@7793 = .rodata:0x8047E8F8; // type:object size:0xE scope:local align:4 data:string +@7794 = .rodata:0x8047E908; // type:object size:0x11 scope:local align:4 data:string +@7795 = .rodata:0x8047E91C; // type:object size:0x11 scope:local align:4 data:string +@7796 = .rodata:0x8047E930; // type:object size:0xA scope:local align:4 data:string +@7797 = .rodata:0x8047E93C; // type:object size:0x11 scope:local align:4 data:string +@7798 = .rodata:0x8047E950; // type:object size:0xE scope:local align:4 data:string +@7799 = .rodata:0x8047E960; // type:object size:0x14 scope:local align:4 data:string +@7800 = .rodata:0x8047E974; // type:object size:0xF scope:local align:4 data:string +@7801 = .rodata:0x8047E984; // type:object size:0xC scope:local align:4 data:string +@7802 = .rodata:0x8047E990; // type:object size:0x9 scope:local align:4 data:string +@7803 = .rodata:0x8047E99C; // type:object size:0x1C scope:local align:4 data:string +@7804 = .rodata:0x8047E9B8; // type:object size:0x17 scope:local align:4 data:string +@7806 = .rodata:0x8047E9D0; // type:object size:0x14 scope:local align:4 data:string +@7808 = .rodata:0x8047E9E4; // type:object size:0xA scope:local align:4 data:string +@7809 = .rodata:0x8047E9F0; // type:object size:0x14 scope:local align:4 data:string +@7810 = .rodata:0x8047EA04; // type:object size:0xF scope:local align:4 data:string +@7811 = .rodata:0x8047EA14; // type:object size:0xC scope:local align:4 data:string +@7855 = .rodata:0x8047EA20; // type:object size:0x12 scope:local align:4 data:string +@7857 = .rodata:0x8047EA34; // type:object size:0xA scope:local align:4 data:string +@7859 = .rodata:0x8047EA40; // type:object size:0xC scope:local align:4 data:string +@8060 = .rodata:0x8047EA4C; // type:object size:0x10 scope:local align:4 data:string +@8075 = .rodata:0x8047EA5C; // type:object size:0x16 scope:local align:4 data:string +@8077 = .rodata:0x8047EA74; // type:object size:0xC scope:local align:4 data:string +@2636 = .rodata:0x8047EA80; // type:object size:0x9 scope:local align:4 data:string +@2640 = .rodata:0x8047EA8C; // type:object size:0x9 scope:local align:4 data:string +@2641 = .rodata:0x8047EA98; // type:object size:0xC scope:local align:4 data:string +@2643 = .rodata:0x8047EAA4; // type:object size:0x9 scope:local align:4 data:string +@2644 = .rodata:0x8047EAB0; // type:object size:0xA scope:local align:4 data:string +@2645 = .rodata:0x8047EABC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047EAC8; // type:label scope:local +@3589 = .rodata:0x8047EAC8; // type:object size:0xC scope:local align:4 +@4429 = .rodata:0x8047EAD4; // type:object size:0xA scope:local align:4 data:string +@5602 = .rodata:0x8047EAE0; // type:object size:0x20 scope:local align:4 data:4byte +@5603 = .rodata:0x8047EB00; // type:object size:0x20 scope:local align:4 data:4byte +@5960 = .rodata:0x8047EB20; // type:object size:0x20 scope:local align:4 data:4byte +@6514 = .rodata:0x8047EB40; // type:object size:0x9 scope:local align:4 data:string +@6913 = .rodata:0x8047EB4C; // type:object size:0xE scope:local align:4 data:string +@6914 = .rodata:0x8047EB5C; // type:object size:0x9 scope:local align:4 data:string +@7576 = .rodata:0x8047EB68; // type:object size:0xC scope:local align:4 data:string +@7843 = .rodata:0x8047EB74; // type:object size:0x20 scope:local align:4 data:string +@8206 = .rodata:0x8047EB94; // type:object size:0xB scope:local align:4 data:string +@8207 = .rodata:0x8047EBA0; // type:object size:0xA scope:local align:4 data:string +@10182 = .rodata:0x8047EBAC; // type:object size:0x12 scope:local align:4 data:string +@10184 = .rodata:0x8047EBC0; // type:object size:0xA scope:local align:4 data:string +@10204 = .rodata:0x8047EBCC; // type:object size:0x9 scope:local align:4 data:string +@10207 = .rodata:0x8047EBD8; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8047EBE8; // type:label scope:local +@3355 = .rodata:0x8047EBE8; // type:object size:0xC scope:local align:4 +@4111 = .rodata:0x8047EBF4; // type:object size:0xA scope:local align:4 data:string +@4491 = .rodata:0x8047EC00; // type:object size:0x9 scope:local align:4 data:string +@4495 = .rodata:0x8047EC0C; // type:object size:0xC scope:local align:4 data:string +@4497 = .rodata:0x8047EC18; // type:object size:0xB scope:local align:4 data:string +@4501 = .rodata:0x8047EC24; // type:object size:0xA scope:local align:4 data:string +@4507 = .rodata:0x8047EC30; // type:object size:0x9 scope:local align:4 data:string +@4512 = .rodata:0x8047EC3C; // type:object size:0xC scope:local align:4 data:string +@4513 = .rodata:0x8047EC48; // type:object size:0x9 scope:local align:4 data:string +@4518 = .rodata:0x8047EC54; // type:object size:0xB scope:local align:4 data:string +@4545 = .rodata:0x8047EC60; // type:object size:0xE scope:local align:4 data:string +@4546 = .rodata:0x8047EC70; // type:object size:0x1D scope:local align:4 data:string +@4547 = .rodata:0x8047EC90; // type:object size:0x17 scope:local align:4 +@4857 = .rodata:0x8047ECA8; // type:object size:0x17 scope:local align:4 data:string +@5015 = .rodata:0x8047ECC0; // type:object size:0x1B scope:local align:4 data:string +@5147 = .rodata:0x8047ECDC; // type:object size:0x9 scope:local align:4 data:string +@5226 = .rodata:0x8047ECE8; // type:object size:0x10 scope:local align:4 data:string +@5227 = .rodata:0x8047ECF8; // type:object size:0xF scope:local align:4 data:string +@5421 = .rodata:0x8047ED08; // type:object size:0x9 scope:local align:4 data:string +@5697 = .rodata:0x8047ED14; // type:object size:0xB scope:local align:4 data:string +@6762 = .rodata:0x8047ED20; // type:object size:0xF scope:local align:4 data:string +@6765 = .rodata:0x8047ED30; // type:object size:0x9 scope:local align:4 data:string +@7018 = .rodata:0x8047ED3C; // type:object size:0x12 scope:local align:4 data:string +@7062 = .rodata:0x8047ED50; // type:object size:0x12 scope:local align:4 data:string +@7147 = .rodata:0x8047ED64; // type:object size:0x1F scope:local align:4 data:string +@7826 = .rodata:0x8047ED84; // type:object size:0x18 scope:local align:4 +@7829 = .rodata:0x8047ED9C; // type:object size:0x18 scope:local align:4 +@7832 = .rodata:0x8047EDB4; // type:object size:0x10 scope:local align:4 +@7835 = .rodata:0x8047EDC4; // type:object size:0x10 scope:local align:4 +@7866 = .rodata:0x8047EDD4; // type:object size:0x2E scope:local align:4 +@8025 = .rodata:0x8047EE04; // type:object size:0x13 scope:local align:4 data:string +@8367 = .rodata:0x8047EE18; // type:object size:0xB scope:local align:4 data:string +@8371 = .rodata:0x8047EE24; // type:object size:0x16 scope:local align:4 data:string +@8373 = .rodata:0x8047EE3C; // type:object size:0xC scope:local align:4 data:string +@8395 = .rodata:0x8047EE48; // type:object size:0xC scope:local align:4 data:string +@8397 = .rodata:0x8047EE54; // type:object size:0x10 scope:local align:4 data:string +@8404 = .rodata:0x8047EE64; // type:object size:0x9 scope:local align:4 data:string +@8406 = .rodata:0x8047EE70; // type:object size:0x12 scope:local align:4 data:string +@8408 = .rodata:0x8047EE84; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047EE90; // type:label scope:local +@3880 = .rodata:0x8047EE90; // type:object size:0xC scope:local align:4 +@3961 = .rodata:0x8047EE9C; // type:object size:0xD scope:local align:4 data:string +@4028 = .rodata:0x8047EEAC; // type:object size:0x14 scope:local align:4 data:string +@4029 = .rodata:0x8047EEC0; // type:object size:0x13 scope:local align:4 data:string +@4030 = .rodata:0x8047EED4; // type:object size:0x16 scope:local align:4 data:string +@4031 = .rodata:0x8047EEEC; // type:object size:0xC scope:local align:4 +@4440 = .rodata:0x8047EEF8; // type:object size:0x13 scope:local align:4 data:string +@4441 = .rodata:0x8047EF0C; // type:object size:0x13 scope:local align:4 data:string +@4754 = .rodata:0x8047EF20; // type:object size:0x11 scope:local align:4 data:string +@4755 = .rodata:0x8047EF34; // type:object size:0x9 scope:local align:4 data:string +@4963 = .rodata:0x8047EF40; // type:object size:0xD scope:local align:4 data:string +@4965 = .rodata:0x8047EF50; // type:object size:0x10 scope:local align:4 data:string +@4967 = .rodata:0x8047EF60; // type:object size:0x16 scope:local align:4 data:string +@4969 = .rodata:0x8047EF78; // type:object size:0xC scope:local align:4 data:string +@4997 = .rodata:0x8047EF84; // type:object size:0x12 scope:local align:4 data:string +@4999 = .rodata:0x8047EF98; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047EFA8; // type:label scope:local +@3387 = .rodata:0x8047EFA8; // type:object size:0xC scope:local align:4 data:string +@3388 = .rodata:0x8047EFB4; // type:object size:0xF scope:local align:4 +@3392 = .rodata:0x8047EFC4; // type:object size:0xD scope:local align:4 +@3396 = .rodata:0x8047EFD4; // type:object size:0x19 scope:local align:4 +@3614 = .rodata:0x8047EFF0; // type:object size:0xF scope:local align:4 data:string +@3615 = .rodata:0x8047F000; // type:object size:0x9 scope:local align:4 data:string +@3641 = .rodata:0x8047F00C; // type:object size:0xC scope:local align:4 data:string +@3668 = .rodata:0x8047F018; // type:object size:0x18 scope:local align:4 data:string +@3871 = .rodata:0x8047F030; // type:object size:0x15 scope:local align:4 data:string +@2742 = .rodata:0x8047F048; // type:object size:0xE scope:local align:4 data:string +@2743 = .rodata:0x8047F058; // type:object size:0x14 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F070; // type:label scope:local +@3867 = .rodata:0x8047F070; // type:object size:0xC scope:local align:4 +@3900 = .rodata:0x8047F07C; // type:object size:0xD scope:local align:4 data:string +@3976 = .rodata:0x8047F08C; // type:object size:0x15 scope:local align:4 data:string +@3977 = .rodata:0x8047F0A4; // type:object size:0x11 scope:local align:4 data:string +@3978 = .rodata:0x8047F0B8; // type:object size:0x9 scope:local align:4 data:string +@3980 = .rodata:0x8047F0C4; // type:object size:0xA scope:local align:4 data:string +@4144 = .rodata:0x8047F0D0; // type:object size:0xC scope:local align:4 data:string +@4635 = .rodata:0x8047F0DC; // type:object size:0xC scope:local align:4 data:string +@4748 = .rodata:0x8047F0E8; // type:object size:0xA scope:local align:4 data:string +@4749 = .rodata:0x8047F0F4; // type:object size:0x9 scope:local align:4 data:string +@4750 = .rodata:0x8047F100; // type:object size:0xD scope:local align:4 data:string +@4831 = .rodata:0x8047F110; // type:object size:0x10 scope:local align:4 data:string +@4832 = .rodata:0x8047F120; // type:object size:0xE scope:local align:4 data:string +@4872 = .rodata:0x8047F130; // type:object size:0xF scope:local align:4 data:string +@6584 = .rodata:0x8047F140; // type:object size:0x15 scope:local align:4 data:string +@6884 = .rodata:0x8047F158; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F168; // type:label scope:local +@3430 = .rodata:0x8047F168; // type:object size:0xC scope:local align:4 +@3559 = .rodata:0x8047F174; // type:object size:0xD scope:local align:4 data:string +@3574 = .rodata:0x8047F184; // type:object size:0xA scope:local align:4 data:string +@3625 = .rodata:0x8047F190; // type:object size:0x10 scope:local align:4 data:string +@3626 = .rodata:0x8047F1A0; // type:object size:0x9 scope:local align:4 data:string +@3627 = .rodata:0x8047F1AC; // type:object size:0xE scope:local align:4 data:string +@3934 = .rodata:0x8047F1BC; // type:object size:0x15 scope:local align:4 data:string +@3935 = .rodata:0x8047F1D4; // type:object size:0xB scope:local align:4 data:string +@5100 = .rodata:0x8047F1E0; // type:object size:0x11 scope:local align:4 data:string +@5178 = .rodata:0x8047F1F4; // type:object size:0x12 scope:local align:4 data:string +@5180 = .rodata:0x8047F208; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F218; // type:label scope:local +@3222 = .rodata:0x8047F218; // type:object size:0xE scope:local align:4 data:string +@3282 = .rodata:0x8047F228; // type:object size:0x12 scope:local align:4 data:string +@3283 = .rodata:0x8047F23C; // type:object size:0x9 scope:local align:4 data:string +@3576 = .rodata:0x8047F248; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F260; // type:label scope:local +@3449 = .rodata:0x8047F260; // type:object size:0xB scope:local align:4 data:string +@3450 = .rodata:0x8047F26C; // type:object size:0xB scope:local align:4 data:string +@3451 = .rodata:0x8047F278; // type:object size:0x9 scope:local align:4 data:string +@3454 = .rodata:0x8047F284; // type:object size:0xA scope:local align:4 data:string +@3661 = .rodata:0x8047F290; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F2A0; // type:label scope:local +@3488 = .rodata:0x8047F2A0; // type:object size:0xA scope:local align:4 data:string +@3497 = .rodata:0x8047F2AC; // type:object size:0x14 scope:local align:4 data:4byte +@3499 = .rodata:0x8047F2C0; // type:object size:0xA scope:local align:4 data:string +@3541 = .rodata:0x8047F2CC; // type:object size:0xD scope:local align:4 data:string +@3542 = .rodata:0x8047F2DC; // type:object size:0xD scope:local align:4 data:string +@3543 = .rodata:0x8047F2EC; // type:object size:0x9 scope:local align:4 data:string +@3549 = .rodata:0x8047F2F8; // type:object size:0xA scope:local align:4 data:string +@3954 = .rodata:0x8047F304; // type:object size:0x15 scope:local align:4 data:string +@3956 = .rodata:0x8047F31C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F338; // type:label scope:local +@3445 = .rodata:0x8047F338; // type:object size:0xD scope:local align:4 data:string +@3452 = .rodata:0x8047F348; // type:object size:0xC scope:local align:4 data:4byte +@3454 = .rodata:0x8047F354; // type:object size:0x9 scope:local align:4 data:string +@3488 = .rodata:0x8047F360; // type:object size:0x10 scope:local align:4 data:string +@3489 = .rodata:0x8047F370; // type:object size:0x10 scope:local align:4 data:string +@3490 = .rodata:0x8047F380; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x8047F38C; // type:object size:0xA scope:local align:4 data:string +@3590 = .rodata:0x8047F398; // type:object size:0x9 scope:local align:4 data:string +@3816 = .rodata:0x8047F3A4; // type:object size:0xC scope:local align:4 data:string +@3818 = .rodata:0x8047F3B0; // type:object size:0xC scope:local align:4 data:string +@3497 = .rodata:0x8047F3C0; // type:object size:0xC scope:local align:4 data:string +@3498 = .rodata:0x8047F3CC; // type:object size:0x9 scope:local align:4 data:string +@3854 = .rodata:0x8047F3D8; // type:object size:0xF scope:local align:4 data:string +@3856 = .rodata:0x8047F3E8; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F400; // type:label scope:local +@2787 = .rodata:0x8047F400; // type:object size:0xB scope:local align:4 data:string +@2899 = .rodata:0x8047F40C; // type:object size:0xF scope:local align:4 data:string +@2900 = .rodata:0x8047F41C; // type:object size:0x9 scope:local align:4 data:string +@2901 = .rodata:0x8047F428; // type:object size:0x27 scope:local align:4 data:string +@2922 = .rodata:0x8047F450; // type:object size:0x15 scope:local align:4 data:string +@2923 = .rodata:0x8047F468; // type:object size:0x13 scope:local align:4 data:string +@2975 = .rodata:0x8047F47C; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F490; // type:label scope:local +@3827 = .rodata:0x8047F490; // type:object size:0xC scope:local align:4 +@4086 = .rodata:0x8047F49C; // type:object size:0xC scope:local align:4 data:string +@4211 = .rodata:0x8047F4A8; // type:object size:0x10 scope:local align:4 data:string +@4212 = .rodata:0x8047F4B8; // type:object size:0x9 scope:local align:4 data:string +@4478 = .rodata:0x8047F4C4; // type:object size:0xE scope:local align:4 data:string +@4990 = .rodata:0x8047F4D4; // type:object size:0x11 scope:local align:4 data:string +@4992 = .rodata:0x8047F4E8; // type:object size:0x14 scope:local align:4 data:string +@4993 = .rodata:0x8047F4FC; // type:object size:0x11 scope:local align:4 data:string +@4994 = .rodata:0x8047F510; // type:object size:0x14 scope:local align:4 data:string +@4995 = .rodata:0x8047F524; // type:object size:0x12 scope:local align:4 data:string +@4996 = .rodata:0x8047F538; // type:object size:0x13 scope:local align:4 data:string +@4997 = .rodata:0x8047F54C; // type:object size:0x9 scope:local align:4 data:string +@4998 = .rodata:0x8047F558; // type:object size:0x15 scope:local align:4 data:string +@4999 = .rodata:0x8047F570; // type:object size:0x16 scope:local align:4 data:string +@5000 = .rodata:0x8047F588; // type:object size:0x14 scope:local align:4 data:string +@5001 = .rodata:0x8047F59C; // type:object size:0xF scope:local align:4 data:string +@5005 = .rodata:0x8047F5AC; // type:object size:0x9 scope:local align:4 data:string +@5428 = .rodata:0x8047F5B8; // type:object size:0x9 scope:local align:4 data:string +@5429 = .rodata:0x8047F5C4; // type:object size:0xA scope:local align:4 data:string +@5430 = .rodata:0x8047F5D0; // type:object size:0x24 scope:local align:4 data:string +@5431 = .rodata:0x8047F5F4; // type:object size:0x13 scope:local align:4 data:string +@6157 = .rodata:0x8047F608; // type:object size:0x13 scope:local align:4 data:string +@6182 = .rodata:0x8047F61C; // type:object size:0x13 scope:local align:4 data:string +@3272 = .rodata:0x8047F630; // type:object size:0x10 scope:local align:4 data:string +@3273 = .rodata:0x8047F640; // type:object size:0x13 scope:local align:4 data:string +@4153 = .rodata:0x8047F654; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F668; // type:label scope:local +@3345 = .rodata:0x8047F668; // type:object size:0xC scope:local align:4 +@3430 = .rodata:0x8047F674; // type:object size:0xA scope:local align:4 data:string +@3438 = .rodata:0x8047F680; // type:object size:0x9 scope:local align:4 data:string +@3617 = .rodata:0x8047F68C; // type:object size:0x12 scope:local align:4 data:string +@3618 = .rodata:0x8047F6A0; // type:object size:0x27 scope:local align:4 data:string +@3621 = .rodata:0x8047F6C8; // type:object size:0x9 scope:local align:4 data:string +@3819 = .rodata:0x8047F6D4; // type:object size:0xD scope:local align:4 data:string +@3820 = .rodata:0x8047F6E4; // type:object size:0xE scope:local align:4 data:string +@3821 = .rodata:0x8047F6F4; // type:object size:0xE scope:local align:4 +@3822 = .rodata:0x8047F704; // type:object size:0xA scope:local align:4 data:string +@3823 = .rodata:0x8047F710; // type:object size:0x9 scope:local align:4 data:string +@3824 = .rodata:0x8047F71C; // type:object size:0xC scope:local align:4 data:string +@3858 = .rodata:0x8047F728; // type:object size:0xD scope:local align:4 data:string +@4283 = .rodata:0x8047F738; // type:object size:0x16 scope:local align:4 data:string +@4284 = .rodata:0x8047F750; // type:object size:0xE scope:local align:4 data:string +@4285 = .rodata:0x8047F760; // type:object size:0xE scope:local align:4 data:string +@4286 = .rodata:0x8047F770; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F788; // type:label scope:local +@3316 = .rodata:0x8047F788; // type:object size:0xC scope:local align:4 data:string +@3317 = .rodata:0x8047F794; // type:object size:0x10 scope:local align:4 +@3320 = .rodata:0x8047F7A4; // type:object size:0xC scope:local align:4 +@3331 = .rodata:0x8047F7B0; // type:object size:0xF scope:local align:4 +@3539 = .rodata:0x8047F7C0; // type:object size:0xC scope:local align:4 +@3655 = .rodata:0x8047F7CC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F7D8; // type:label scope:local +@3423 = .rodata:0x8047F7D8; // type:object size:0xC scope:local align:4 data:string +@3424 = .rodata:0x8047F7E4; // type:object size:0xE scope:local align:4 +@3425 = .rodata:0x8047F7F4; // type:object size:0xD scope:local align:4 +@3438 = .rodata:0x8047F804; // type:object size:0xB scope:local align:4 +...rodata.0 = .rodata:0x8047F810; // type:label scope:local +@3378 = .rodata:0x8047F810; // type:object size:0xC scope:local align:4 data:string +@3379 = .rodata:0x8047F81C; // type:object size:0xE scope:local align:4 +@3391 = .rodata:0x8047F82C; // type:object size:0xF scope:local align:4 +@3438 = .rodata:0x8047F83C; // type:object size:0xD scope:local align:4 data:string +@3439 = .rodata:0x8047F84C; // type:object size:0xE scope:local align:4 data:string +@3440 = .rodata:0x8047F85C; // type:object size:0x18 scope:local align:4 data:string +@3457 = .rodata:0x8047F874; // type:object size:0xC scope:local align:4 data:string +@3458 = .rodata:0x8047F880; // type:object size:0x17 scope:local align:4 data:string +@3523 = .rodata:0x8047F898; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8047F8A8; // type:label scope:local +@2833 = .rodata:0x8047F8A8; // type:object size:0xB scope:local align:4 data:string +@2838 = .rodata:0x8047F8B4; // type:object size:0x11 scope:local align:4 data:string +@3092 = .rodata:0x8047F8C8; // type:object size:0xB scope:local align:4 data:string +@3094 = .rodata:0x8047F8D4; // type:object size:0xA scope:local align:4 data:string +@3095 = .rodata:0x8047F8E0; // type:object size:0x9 scope:local align:4 data:string +@3100 = .rodata:0x8047F8EC; // type:object size:0xB scope:local align:4 data:string +@3159 = .rodata:0x8047F8F8; // type:object size:0xF scope:local align:4 data:string +@3160 = .rodata:0x8047F908; // type:object size:0x9 scope:local align:4 data:string +@3213 = .rodata:0x8047F914; // type:object size:0x14 scope:local align:4 data:string +@3411 = .rodata:0x8047F928; // type:object size:0xE scope:local align:4 data:string +@3412 = .rodata:0x8047F938; // type:object size:0xF scope:local align:4 data:string +@3414 = .rodata:0x8047F948; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F958; // type:label scope:local +@3311 = .rodata:0x8047F958; // type:object size:0xC scope:local align:4 +@3475 = .rodata:0x8047F964; // type:object size:0xF scope:local align:4 data:string +@3476 = .rodata:0x8047F974; // type:object size:0x11 scope:local align:4 +@3556 = .rodata:0x8047F988; // type:object size:0xC scope:local align:4 data:string +@4022 = .rodata:0x8047F994; // type:object size:0x1C scope:local align:4 data:string +@4023 = .rodata:0x8047F9B0; // type:object size:0x1E scope:local align:4 data:string +@4024 = .rodata:0x8047F9D0; // type:object size:0x9 scope:local align:4 data:string +@4025 = .rodata:0x8047F9DC; // type:object size:0x18 scope:local align:4 data:string +@4026 = .rodata:0x8047F9F4; // type:object size:0xA scope:local align:4 data:string +@4027 = .rodata:0x8047FA00; // type:object size:0x18 scope:local align:4 data:string +@4028 = .rodata:0x8047FA18; // type:object size:0xA scope:local align:4 data:string +@5420 = .rodata:0x8047FA28; // type:object size:0xB scope:local align:4 data:string +@5478 = .rodata:0x8047FA34; // type:object size:0xB scope:local align:4 data:string +@5479 = .rodata:0x8047FA40; // type:object size:0x9 scope:local align:4 data:string +@5495 = .rodata:0x8047FA4C; // type:object size:0xD scope:local align:4 data:string +@5499 = .rodata:0x8047FA5C; // type:object size:0x10 scope:local align:4 data:string +@5501 = .rodata:0x8047FA6C; // type:object size:0x10 scope:local align:4 data:string +@5503 = .rodata:0x8047FA7C; // type:object size:0x10 scope:local align:4 data:string +@5507 = .rodata:0x8047FA8C; // type:object size:0xD scope:local align:4 data:string +@5509 = .rodata:0x8047FA9C; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047FAA8; // type:label scope:local +@3271 = .rodata:0x8047FAA8; // type:object size:0xD scope:local align:4 data:string +@3351 = .rodata:0x8047FAB8; // type:object size:0xD scope:local align:4 data:string +@3354 = .rodata:0x8047FAC8; // type:object size:0xC scope:local align:4 data:string +@3357 = .rodata:0x8047FAD4; // type:object size:0x9 scope:local align:4 data:string +@3359 = .rodata:0x8047FAE0; // type:object size:0x9 scope:local align:4 data:string +@3361 = .rodata:0x8047FAEC; // type:object size:0xF scope:local align:4 data:string +@3362 = .rodata:0x8047FAFC; // type:object size:0xD scope:local align:4 data:string +@3363 = .rodata:0x8047FB0C; // type:object size:0xD scope:local align:4 data:string +@3364 = .rodata:0x8047FB1C; // type:object size:0xD scope:local align:4 data:string +@3365 = .rodata:0x8047FB2C; // type:object size:0x9 scope:local align:4 data:string +@3368 = .rodata:0x8047FB38; // type:object size:0xD scope:local align:4 data:string +@3369 = .rodata:0x8047FB48; // type:object size:0xD scope:local align:4 data:string +@3370 = .rodata:0x8047FB58; // type:object size:0x9 scope:local align:4 data:string +@3373 = .rodata:0x8047FB64; // type:object size:0x9 scope:local align:4 data:string +@3374 = .rodata:0x8047FB70; // type:object size:0xD scope:local align:4 data:string +@3376 = .rodata:0x8047FB80; // type:object size:0xA scope:local align:4 data:string +@3384 = .rodata:0x8047FB8C; // type:object size:0xB scope:local align:4 data:string +@3408 = .rodata:0x8047FB98; // type:object size:0x11 scope:local align:4 data:string +@3409 = .rodata:0x8047FBAC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047FBB8; // type:label scope:local +@3342 = .rodata:0x8047FBB8; // type:object size:0xC scope:local align:4 +@3536 = .rodata:0x8047FBC4; // type:object size:0xB scope:local align:4 data:string +@3654 = .rodata:0x8047FBD0; // type:object size:0xC scope:local align:4 data:string +@3655 = .rodata:0x8047FBDC; // type:object size:0x17 scope:local align:4 data:string +@4179 = .rodata:0x8047FBF4; // type:object size:0x9 scope:local align:4 data:string +@4180 = .rodata:0x8047FC00; // type:object size:0xB scope:local align:4 +@4181 = .rodata:0x8047FC0C; // type:object size:0x17 scope:local align:4 +...rodata.0 = .rodata:0x8047FC28; // type:label scope:local +@2645 = .rodata:0x8047FC28; // type:object size:0xC scope:local align:4 data:string +@2672 = .rodata:0x8047FC34; // type:object size:0xA scope:local align:4 data:string +@2674 = .rodata:0x8047FC40; // type:object size:0xD scope:local align:4 data:string +@2676 = .rodata:0x8047FC50; // type:object size:0x1C scope:local align:4 data:string +...rodata.0 = .rodata:0x8047FC70; // type:label scope:local +@3334 = .rodata:0x8047FC70; // type:object size:0xC scope:local align:4 +@4059 = .rodata:0x8047FC7C; // type:object size:0xD scope:local align:4 data:string +@4077 = .rodata:0x8047FC8C; // type:object size:0x1B scope:local align:4 data:string +@4096 = .rodata:0x8047FCA8; // type:object size:0xB scope:local align:4 data:string +@4097 = .rodata:0x8047FCB4; // type:object size:0x16 scope:local align:4 data:string +@4098 = .rodata:0x8047FCCC; // type:object size:0x10 scope:local align:4 data:string +@4197 = .rodata:0x8047FCDC; // type:object size:0x17 scope:local align:4 data:string +@4342 = .rodata:0x8047FCF4; // type:object size:0x11 scope:local align:4 data:string +@4343 = .rodata:0x8047FD08; // type:object size:0xE scope:local align:4 +@4350 = .rodata:0x8047FD18; // type:object size:0x12 scope:local align:4 data:string +@4424 = .rodata:0x8047FD2C; // type:object size:0xB scope:local align:4 data:string +@4425 = .rodata:0x8047FD38; // type:object size:0x9 scope:local align:4 data:string +@4426 = .rodata:0x8047FD44; // type:object size:0x9 scope:local align:4 data:string +@4427 = .rodata:0x8047FD50; // type:object size:0xC scope:local align:4 data:string +@4428 = .rodata:0x8047FD5C; // type:object size:0xA scope:local align:4 data:string +@4429 = .rodata:0x8047FD68; // type:object size:0xD scope:local align:4 data:string +@4430 = .rodata:0x8047FD78; // type:object size:0x9 scope:local align:4 data:string +@4431 = .rodata:0x8047FD84; // type:object size:0xC scope:local align:4 data:string +@4432 = .rodata:0x8047FD90; // type:object size:0xD scope:local align:4 data:string +@4433 = .rodata:0x8047FDA0; // type:object size:0xA scope:local align:4 data:string +@5187 = .rodata:0x8047FDAC; // type:object size:0x1C scope:local align:4 data:string +@5188 = .rodata:0x8047FDC8; // type:object size:0xA scope:local align:4 data:string +@5189 = .rodata:0x8047FDD4; // type:object size:0x14 scope:local align:4 data:string +@5466 = .rodata:0x8047FDE8; // type:object size:0x1D scope:local align:4 data:string +@5467 = .rodata:0x8047FE08; // type:object size:0x10 scope:local align:4 data:string +@5468 = .rodata:0x8047FE18; // type:object size:0x11 scope:local align:4 data:string +@5469 = .rodata:0x8047FE2C; // type:object size:0x14 scope:local align:4 data:string +@5470 = .rodata:0x8047FE40; // type:object size:0x25 scope:local align:4 data:string +@5471 = .rodata:0x8047FE68; // type:object size:0xE scope:local align:4 data:string +@5472 = .rodata:0x8047FE78; // type:object size:0xB scope:local align:4 data:string +@5473 = .rodata:0x8047FE84; // type:object size:0x14 scope:local align:4 data:string +@5474 = .rodata:0x8047FE98; // type:object size:0x14 scope:local align:4 data:string +@5475 = .rodata:0x8047FEAC; // type:object size:0xF scope:local align:4 data:string +@5542 = .rodata:0x8047FEBC; // type:object size:0x1B scope:local align:4 data:string +@5652 = .rodata:0x8047FED8; // type:object size:0x11 scope:local align:4 data:string +@7361 = .rodata:0x8047FEEC; // type:object size:0xD scope:local align:4 data:string +@7973 = .rodata:0x8047FEFC; // type:object size:0xC scope:local align:4 +@7975 = .rodata:0x8047FF08; // type:object size:0xC scope:local align:4 +@7977 = .rodata:0x8047FF14; // type:object size:0xC scope:local align:4 +@7979 = .rodata:0x8047FF20; // type:object size:0xC scope:local align:4 +@8587 = .rodata:0x8047FF2C; // type:object size:0x9 scope:local align:4 data:string +@8835 = .rodata:0x8047FF38; // type:object size:0x10 scope:local align:4 data:string +@8837 = .rodata:0x8047FF48; // type:object size:0x19 scope:local align:4 data:string +@8839 = .rodata:0x8047FF64; // type:object size:0x12 scope:local align:4 data:string +@8841 = .rodata:0x8047FF78; // type:object size:0xE scope:local align:4 data:string +@9555 = .rodata:0x8047FF88; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047FF98; // type:label scope:local +@2741 = .rodata:0x8047FF98; // type:object size:0xC scope:local align:4 +@4371 = .rodata:0x8047FFA4; // type:object size:0xE scope:local align:4 data:string +@4504 = .rodata:0x8047FFB4; // type:object size:0x9 scope:local align:4 data:string +@4505 = .rodata:0x8047FFC0; // type:object size:0x9 scope:local align:4 data:string +@4506 = .rodata:0x8047FFCC; // type:object size:0xA scope:local align:4 data:string +@4575 = .rodata:0x8047FFD8; // type:object size:0xD scope:local align:4 data:string +@4715 = .rodata:0x8047FFE8; // type:object size:0xC scope:local align:4 +@4747 = .rodata:0x8047FFF4; // type:object size:0x12 scope:local align:4 data:string +@4748 = .rodata:0x80480008; // type:object size:0x9 scope:local align:4 data:string +@4795 = .rodata:0x80480014; // type:object size:0x27 scope:local align:4 data:string +@4796 = .rodata:0x8048003C; // type:object size:0x22 scope:local align:4 data:string +@4809 = .rodata:0x80480060; // type:object size:0x18 scope:local align:4 data:string +@4864 = .rodata:0x80480078; // type:object size:0xA scope:local align:4 data:string +@4991 = .rodata:0x80480084; // type:object size:0x9 scope:local align:4 data:string +@4993 = .rodata:0x80480090; // type:object size:0xC scope:local align:4 data:string +@4995 = .rodata:0x8048009C; // type:object size:0xE scope:local align:4 data:string +@5022 = .rodata:0x804800AC; // type:object size:0xE scope:local align:4 data:string +@5135 = .rodata:0x804800BC; // type:object size:0x12 scope:local align:4 data:string +@5371 = .rodata:0x804800D0; // type:object size:0x19 scope:local align:4 data:string +@5391 = .rodata:0x804800EC; // type:object size:0x15 scope:local align:4 data:string +@5553 = .rodata:0x80480104; // type:object size:0x10 scope:local align:4 data:string +@5772 = .rodata:0x80480114; // type:object size:0xB scope:local align:4 data:string +@6075 = .rodata:0x80480120; // type:object size:0xD scope:local align:4 data:string +@6076 = .rodata:0x80480130; // type:object size:0xB scope:local align:4 data:string +@6090 = .rodata:0x8048013C; // type:object size:0xD scope:local align:4 data:string +@6095 = .rodata:0x8048014C; // type:object size:0xC scope:local align:4 data:string +@6107 = .rodata:0x80480158; // type:object size:0xE scope:local align:4 data:string +@3499 = .rodata:0x80480168; // type:object size:0x9 scope:local align:4 data:string +@4249 = .rodata:0x80480174; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80480188; // type:label scope:local +@3880 = .rodata:0x80480188; // type:object size:0xC scope:local align:4 +@3916 = .rodata:0x80480194; // type:object size:0x9 scope:local align:4 data:string +@4081 = .rodata:0x804801A0; // type:object size:0xD scope:local align:4 data:string +@4082 = .rodata:0x804801B0; // type:object size:0xC scope:local align:4 data:string +@4207 = .rodata:0x804801BC; // type:object size:0x9 scope:local align:4 data:string +@4675 = .rodata:0x804801C8; // type:object size:0x9 scope:local align:4 data:string +@4676 = .rodata:0x804801D4; // type:object size:0x19 scope:local align:4 data:string +@4677 = .rodata:0x804801F0; // type:object size:0xD scope:local align:4 data:string +@4678 = .rodata:0x80480200; // type:object size:0xE scope:local align:4 data:string +@4679 = .rodata:0x80480210; // type:object size:0xF scope:local align:4 data:string +@4680 = .rodata:0x80480220; // type:object size:0x10 scope:local align:4 data:string +@4681 = .rodata:0x80480230; // type:object size:0xD scope:local align:4 data:string +@4682 = .rodata:0x80480240; // type:object size:0x9 scope:local align:4 data:string +@4683 = .rodata:0x8048024C; // type:object size:0x9 scope:local align:4 data:string +@4684 = .rodata:0x80480258; // type:object size:0x1E scope:local align:4 data:string +@4685 = .rodata:0x80480278; // type:object size:0xE scope:local align:4 data:string +@4720 = .rodata:0x80480288; // type:object size:0xA scope:local align:4 data:string +@4727 = .rodata:0x80480294; // type:object size:0x9 scope:local align:4 data:string +@4728 = .rodata:0x804802A0; // type:object size:0xB scope:local align:4 data:string +@4856 = .rodata:0x804802AC; // type:object size:0xB scope:local align:4 +@4857 = .rodata:0x804802B8; // type:object size:0xA scope:local align:4 data:string +@5020 = .rodata:0x804802C4; // type:object size:0xE scope:local align:4 data:string +@5064 = .rodata:0x804802D4; // type:object size:0xB scope:local align:4 +@5065 = .rodata:0x804802E0; // type:object size:0x10 scope:local align:4 data:string +@5066 = .rodata:0x804802F0; // type:object size:0xF scope:local align:4 data:string +@5067 = .rodata:0x80480300; // type:object size:0xB scope:local align:4 data:string +@5068 = .rodata:0x8048030C; // type:object size:0x11 scope:local align:4 data:string +@5069 = .rodata:0x80480320; // type:object size:0xE scope:local align:4 data:string +@5070 = .rodata:0x80480330; // type:object size:0xB scope:local align:4 data:string +@5071 = .rodata:0x8048033C; // type:object size:0xB scope:local align:4 data:string +@5072 = .rodata:0x80480348; // type:object size:0xB scope:local align:4 data:string +@5073 = .rodata:0x80480354; // type:object size:0x20 scope:local align:4 data:string +@5074 = .rodata:0x80480374; // type:object size:0xB scope:local align:4 data:string +@5866 = .rodata:0x80480380; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480390; // type:label scope:local +@3523 = .rodata:0x80480390; // type:object size:0xC scope:local align:4 data:string +@3524 = .rodata:0x8048039C; // type:object size:0x18 scope:local align:4 data:string +@3622 = .rodata:0x804803B4; // type:object size:0x19 scope:local align:4 data:string +@3703 = .rodata:0x804803D0; // type:object size:0x9 scope:local align:4 data:string +@3831 = .rodata:0x804803DC; // type:object size:0x9 scope:local align:4 data:string +@3874 = .rodata:0x804803E8; // type:object size:0xD scope:local align:4 data:string +@3890 = .rodata:0x804803F8; // type:object size:0x1E scope:local align:4 data:string +@3979 = .rodata:0x80480418; // type:object size:0x1D scope:local align:4 data:string +@4284 = .rodata:0x80480438; // type:object size:0x13 scope:local align:4 +@4820 = .rodata:0x8048044C; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480460; // type:label scope:local +@3446 = .rodata:0x80480460; // type:object size:0xD scope:local align:4 data:string +@3468 = .rodata:0x80480470; // type:object size:0xA scope:local align:4 data:string +@3478 = .rodata:0x8048047C; // type:object size:0x10 scope:local align:4 data:string +@3479 = .rodata:0x8048048C; // type:object size:0x10 scope:local align:4 data:string +@3480 = .rodata:0x8048049C; // type:object size:0x9 scope:local align:4 data:string +@3482 = .rodata:0x804804A8; // type:object size:0xA scope:local align:4 data:string +@3716 = .rodata:0x804804B4; // type:object size:0x15 scope:local align:4 data:string +@3718 = .rodata:0x804804CC; // type:object size:0x11 scope:local align:4 data:string +@3720 = .rodata:0x804804E0; // type:object size:0x1B scope:local align:4 data:string +@3413 = .rodata:0x80480500; // type:object size:0xD scope:local align:4 data:string +@3414 = .rodata:0x80480510; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480520; // type:label scope:local +@3723 = .rodata:0x80480520; // type:object size:0xC scope:local align:4 +@3814 = .rodata:0x8048052C; // type:object size:0x9 scope:local align:4 data:string +@4028 = .rodata:0x80480538; // type:object size:0x10 scope:local align:4 data:string +@4330 = .rodata:0x80480548; // type:object size:0x20 scope:local align:4 data:string +@4353 = .rodata:0x80480568; // type:object size:0x11 scope:local align:4 data:string +@4354 = .rodata:0x8048057C; // type:object size:0xA scope:local align:4 data:string +@4355 = .rodata:0x80480588; // type:object size:0x11 scope:local align:4 data:string +@4356 = .rodata:0x8048059C; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x804805B0; // type:label scope:local +@3664 = .rodata:0x804805B0; // type:object size:0xA scope:local align:4 data:string +@4065 = .rodata:0x804805BC; // type:object size:0xE scope:local align:4 data:string +@4066 = .rodata:0x804805CC; // type:object size:0xE scope:local align:4 data:string +@4123 = .rodata:0x804805DC; // type:object size:0xC scope:local align:4 data:4byte +@4187 = .rodata:0x804805E8; // type:object size:0x19 scope:local align:4 data:string +@4231 = .rodata:0x80480604; // type:object size:0x9 scope:local align:4 data:string +@4232 = .rodata:0x80480610; // type:object size:0xA scope:local align:4 data:string +@4233 = .rodata:0x8048061C; // type:object size:0x11 scope:local align:4 data:string +@4967 = .rodata:0x80480630; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480640; // type:label scope:local +@3464 = .rodata:0x80480640; // type:object size:0x9 scope:local align:4 data:string +@3570 = .rodata:0x8048064C; // type:object size:0x11 scope:local align:4 data:string +@3571 = .rodata:0x80480660; // type:object size:0x19 scope:local align:4 +@3643 = .rodata:0x8048067C; // type:object size:0xA scope:local align:4 data:string +@3654 = .rodata:0x80480688; // type:object size:0xD scope:local align:4 +@3658 = .rodata:0x80480698; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x804806A4; // type:object size:0xA scope:local align:4 data:string +@3682 = .rodata:0x804806B0; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x804806BC; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x804806C8; // type:object size:0x9 scope:local align:4 +@3685 = .rodata:0x804806D4; // type:object size:0xF scope:local align:4 +@3686 = .rodata:0x804806E4; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x804806F4; // type:object size:0xF scope:local align:4 +@3688 = .rodata:0x80480704; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x80480710; // type:object size:0xD scope:local align:4 +@3691 = .rodata:0x80480720; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x80480734; // type:object size:0xA scope:local align:4 data:string +@3693 = .rodata:0x80480740; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80480750; // type:object size:0xA scope:local align:4 data:string +@3695 = .rodata:0x8048075C; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x80480768; // type:object size:0x22 scope:local align:4 +@3703 = .rodata:0x8048078C; // type:object size:0xE scope:local align:4 data:string +@3729 = .rodata:0x8048079C; // type:object size:0x9 scope:local align:4 data:string +@3935 = .rodata:0x804807A8; // type:object size:0x9 scope:local align:4 data:string +@4004 = .rodata:0x804807B4; // type:object size:0x10 scope:local align:4 data:string +@3480 = .rodata:0x804807C8; // type:object size:0x10 scope:local align:4 data:string +@3481 = .rodata:0x804807D8; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x804807E4; // type:object size:0xC scope:local align:4 data:4byte +@3547 = .rodata:0x804807F0; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80480800; // type:label scope:local +@3958 = .rodata:0x80480800; // type:object size:0xC scope:local align:4 +@3991 = .rodata:0x8048080C; // type:object size:0xD scope:local align:4 data:string +@4567 = .rodata:0x8048081C; // type:object size:0xA scope:local align:4 data:string +@4808 = .rodata:0x80480828; // type:object size:0x11 scope:local align:4 data:string +@4809 = .rodata:0x8048083C; // type:object size:0x10 scope:local align:4 data:string +@4953 = .rodata:0x8048084C; // type:object size:0x9 scope:local align:4 data:string +@4981 = .rodata:0x80480858; // type:object size:0x9 scope:local align:4 data:string +@4982 = .rodata:0x80480864; // type:object size:0x1C scope:local align:4 data:string +@5016 = .rodata:0x80480880; // type:object size:0xD scope:local align:4 data:string +@5017 = .rodata:0x80480890; // type:object size:0xA scope:local align:4 data:string +@5018 = .rodata:0x8048089C; // type:object size:0x14 scope:local align:4 data:string +@5205 = .rodata:0x804808B0; // type:object size:0x14 scope:local align:4 +@5263 = .rodata:0x804808C4; // type:object size:0x9 scope:local align:4 data:string +@5388 = .rodata:0x804808D0; // type:object size:0x9 scope:local align:4 data:string +@5974 = .rodata:0x804808DC; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x804808F0; // type:label scope:local +@3721 = .rodata:0x804808F0; // type:object size:0xA scope:local align:4 data:string +@3900 = .rodata:0x804808FC; // type:object size:0xE scope:local align:4 data:string +@3901 = .rodata:0x8048090C; // type:object size:0x9 scope:local align:4 data:string +@4813 = .rodata:0x80480918; // type:object size:0xF scope:local align:4 data:string +@4815 = .rodata:0x80480928; // type:object size:0xA scope:local align:4 data:string +@5034 = .rodata:0x80480934; // type:object size:0xA scope:local align:4 data:string +@5036 = .rodata:0x80480940; // type:object size:0xA scope:local align:4 data:string +@5037 = .rodata:0x8048094C; // type:object size:0xA scope:local align:4 data:string +@5038 = .rodata:0x80480958; // type:object size:0xA scope:local align:4 data:string +@5324 = .rodata:0x80480964; // type:object size:0x1A scope:local align:4 data:string +@5325 = .rodata:0x80480980; // type:object size:0x1D scope:local align:4 data:string +@5348 = .rodata:0x804809A0; // type:object size:0x13 scope:local align:4 data:string +@5349 = .rodata:0x804809B4; // type:object size:0x13 scope:local align:4 data:string +@5350 = .rodata:0x804809C8; // type:object size:0xF scope:local align:4 data:string +@5351 = .rodata:0x804809D8; // type:object size:0xE scope:local align:4 data:string +@5356 = .rodata:0x804809E8; // type:object size:0xD scope:local align:4 data:string +@5358 = .rodata:0x804809F8; // type:object size:0xD scope:local align:4 data:string +@5359 = .rodata:0x80480A08; // type:object size:0x11 scope:local align:4 +@5361 = .rodata:0x80480A1C; // type:object size:0x11 scope:local align:4 +@5362 = .rodata:0x80480A30; // type:object size:0x15 scope:local align:4 +@5365 = .rodata:0x80480A48; // type:object size:0x15 scope:local align:4 +@5366 = .rodata:0x80480A60; // type:object size:0xB scope:local align:4 +@5367 = .rodata:0x80480A6C; // type:object size:0xF scope:local align:4 +@5424 = .rodata:0x80480A7C; // type:object size:0xA scope:local align:4 data:string +@5425 = .rodata:0x80480A88; // type:object size:0xA scope:local align:4 data:string +@5426 = .rodata:0x80480A94; // type:object size:0xA scope:local align:4 data:string +@5427 = .rodata:0x80480AA0; // type:object size:0x11 scope:local align:4 data:string +@5450 = .rodata:0x80480AB4; // type:object size:0xD scope:local align:4 +@5507 = .rodata:0x80480AC4; // type:object size:0xC scope:local align:4 +@5509 = .rodata:0x80480AD0; // type:object size:0xC scope:local align:4 +@5511 = .rodata:0x80480ADC; // type:object size:0xC scope:local align:4 +@5513 = .rodata:0x80480AE8; // type:object size:0xC scope:local align:4 +@5515 = .rodata:0x80480AF4; // type:object size:0xC scope:local align:4 +@5691 = .rodata:0x80480B00; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x80480B10; // type:label scope:local +@3748 = .rodata:0x80480B10; // type:object size:0x9 scope:local align:4 data:string +@4470 = .rodata:0x80480B1C; // type:object size:0x11 scope:local align:4 +@4471 = .rodata:0x80480B30; // type:object size:0x1D scope:local align:4 data:string +@4472 = .rodata:0x80480B50; // type:object size:0x1C scope:local align:4 data:string +@4485 = .rodata:0x80480B6C; // type:object size:0x13 scope:local align:4 data:string +@4486 = .rodata:0x80480B80; // type:object size:0x13 scope:local align:4 data:string +@4488 = .rodata:0x80480B94; // type:object size:0xF scope:local align:4 data:string +@4489 = .rodata:0x80480BA4; // type:object size:0xE scope:local align:4 data:string +@4495 = .rodata:0x80480BB4; // type:object size:0xD scope:local align:4 data:string +@4512 = .rodata:0x80480BC4; // type:object size:0xD scope:local align:4 data:string +@4513 = .rodata:0x80480BD4; // type:object size:0xA scope:local align:4 +@4516 = .rodata:0x80480BE0; // type:object size:0xA scope:local align:4 +@4518 = .rodata:0x80480BEC; // type:object size:0xA scope:local align:4 +@4520 = .rodata:0x80480BF8; // type:object size:0xA scope:local align:4 +@4522 = .rodata:0x80480C04; // type:object size:0x11 scope:local align:4 +@4524 = .rodata:0x80480C18; // type:object size:0x11 scope:local align:4 +@4525 = .rodata:0x80480C2C; // type:object size:0x11 scope:local align:4 +@4526 = .rodata:0x80480C40; // type:object size:0x11 scope:local align:4 +@4527 = .rodata:0x80480C54; // type:object size:0xC scope:local align:4 +@4583 = .rodata:0x80480C60; // type:object size:0x9 scope:local align:4 data:string +@4584 = .rodata:0x80480C6C; // type:object size:0xA scope:local align:4 data:string +@4585 = .rodata:0x80480C78; // type:object size:0xC scope:local align:4 data:string +@4685 = .rodata:0x80480C84; // type:object size:0xA scope:local align:4 data:string +@4697 = .rodata:0x80480C90; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80480CA0; // type:label scope:local +@3420 = .rodata:0x80480CA0; // type:object size:0xD scope:local align:4 data:string +@3446 = .rodata:0x80480CB0; // type:object size:0xA scope:local align:4 data:string +@3456 = .rodata:0x80480CBC; // type:object size:0x10 scope:local align:4 data:string +@3457 = .rodata:0x80480CCC; // type:object size:0x10 scope:local align:4 data:string +@3458 = .rodata:0x80480CDC; // type:object size:0x9 scope:local align:4 data:string +@3460 = .rodata:0x80480CE8; // type:object size:0xA scope:local align:4 data:string +@3648 = .rodata:0x80480CF4; // type:object size:0x15 scope:local align:4 data:string +@3650 = .rodata:0x80480D0C; // type:object size:0x11 scope:local align:4 data:string +@3652 = .rodata:0x80480D20; // type:object size:0x1B scope:local align:4 data:string +...rodata.0 = .rodata:0x80480D40; // type:label scope:local +@3423 = .rodata:0x80480D40; // type:object size:0xD scope:local align:4 data:string +@3461 = .rodata:0x80480D50; // type:object size:0xB scope:local align:4 data:string +@3462 = .rodata:0x80480D5C; // type:object size:0xB scope:local align:4 data:string +@3463 = .rodata:0x80480D68; // type:object size:0x9 scope:local align:4 data:string +@3465 = .rodata:0x80480D74; // type:object size:0xA scope:local align:4 data:string +@3893 = .rodata:0x80480D80; // type:object size:0x15 scope:local align:4 data:string +@3895 = .rodata:0x80480D98; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480DB0; // type:label scope:local +@3518 = .rodata:0x80480DB0; // type:object size:0xC scope:local align:4 +@3555 = .rodata:0x80480DBC; // type:object size:0xB scope:local align:4 data:string +@3634 = .rodata:0x80480DC8; // type:object size:0x9 scope:local align:4 data:string +@3635 = .rodata:0x80480DD4; // type:object size:0xB scope:local align:4 data:string +@3637 = .rodata:0x80480DE0; // type:object size:0xC scope:local align:4 data:string +@3638 = .rodata:0x80480DEC; // type:object size:0xB scope:local align:4 data:string +@3639 = .rodata:0x80480DF8; // type:object size:0xB scope:local align:4 data:string +@3646 = .rodata:0x80480E04; // type:object size:0xE scope:local align:4 data:string +@3647 = .rodata:0x80480E14; // type:object size:0x9 scope:local align:4 data:string +@3649 = .rodata:0x80480E20; // type:object size:0xE scope:local align:4 data:string +@3717 = .rodata:0x80480E30; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480E40; // type:label scope:local +@3462 = .rodata:0x80480E40; // type:object size:0x9 scope:local align:4 data:string +@3473 = .rodata:0x80480E4C; // type:object size:0x11 scope:local align:4 data:string +@3474 = .rodata:0x80480E60; // type:object size:0x9 scope:local align:4 data:string +@3971 = .rodata:0x80480E6C; // type:object size:0x9 scope:local align:4 data:string +@4200 = .rodata:0x80480E78; // type:object size:0xF scope:local align:4 data:string +@4682 = .rodata:0x80480E88; // type:object size:0x12 scope:local align:4 data:string +@4879 = .rodata:0x80480E9C; // type:object size:0x14 scope:local align:4 data:string +@4997 = .rodata:0x80480EB0; // type:object size:0x20 scope:local align:4 data:string +@5057 = .rodata:0x80480ED0; // type:object size:0x29 scope:local align:4 data:string +@5121 = .rodata:0x80480EFC; // type:object size:0xD scope:local align:4 +@5141 = .rodata:0x80480F0C; // type:object size:0xB scope:local align:4 +@5142 = .rodata:0x80480F18; // type:object size:0x9 scope:local align:4 +@5143 = .rodata:0x80480F24; // type:object size:0x9 scope:local align:4 +@5159 = .rodata:0x80480F30; // type:object size:0x26 scope:local align:4 +repay_levs__26@unnamed@gamePlayData_cpp@ = .rodata:0x80480F58; // type:object size:0x28 scope:local align:4 data:float +@5509 = .rodata:0x80480F80; // type:object size:0x12 scope:local align:4 +...rodata.0 = .rodata:0x80480F98; // type:label scope:local +@2735 = .rodata:0x80480F98; // type:object size:0xC scope:local align:4 +@3887 = .rodata:0x80480FA4; // type:object size:0x9 scope:local align:4 data:string +@3988 = .rodata:0x80480FB0; // type:object size:0xA scope:local align:4 data:string +@3996 = .rodata:0x80480FBC; // type:object size:0x9 scope:local align:4 data:string +@3998 = .rodata:0x80480FC8; // type:object size:0xB scope:local align:4 data:string +@4000 = .rodata:0x80480FD4; // type:object size:0xB scope:local align:4 data:string +@4079 = .rodata:0x80480FE0; // type:object size:0x12 scope:local align:4 data:string +@4540 = .rodata:0x80480FF4; // type:object size:0x9 scope:local align:4 data:string +@4562 = .rodata:0x80481000; // type:object size:0x20 scope:local align:4 data:string +@4600 = .rodata:0x80481020; // type:object size:0x11 scope:local align:4 data:string +@4601 = .rodata:0x80481034; // type:object size:0xA scope:local align:4 data:string +@4602 = .rodata:0x80481040; // type:object size:0x11 scope:local align:4 data:string +@4603 = .rodata:0x80481054; // type:object size:0x12 scope:local align:4 data:string +@4642 = .rodata:0x80481068; // type:object size:0xD scope:local align:4 data:string +@4643 = .rodata:0x80481078; // type:object size:0x9 scope:local align:4 data:string +@4645 = .rodata:0x80481084; // type:object size:0x19 scope:local align:4 data:string +...rodata.0 = .rodata:0x804810A0; // type:label scope:local +@3808 = .rodata:0x804810A0; // type:object size:0xC scope:local align:4 +@3858 = .rodata:0x804810AC; // type:object size:0x10 scope:local align:4 data:string +@4021 = .rodata:0x804810BC; // type:object size:0x14 scope:local align:4 data:string +@4022 = .rodata:0x804810D0; // type:object size:0x9 scope:local align:4 data:string +@4127 = .rodata:0x804810DC; // type:object size:0x14 scope:local align:4 data:string +@4226 = .rodata:0x804810F0; // type:object size:0x1D scope:local align:4 data:string +@4266 = .rodata:0x80481110; // type:object size:0x19 scope:local align:4 data:string +@4511 = .rodata:0x8048112C; // type:object size:0x1E scope:local align:4 data:string +@4512 = .rodata:0x8048114C; // type:object size:0xB scope:local align:4 +@4513 = .rodata:0x80481158; // type:object size:0x20 scope:local align:4 data:string +@4531 = .rodata:0x80481178; // type:object size:0x13 scope:local align:4 data:string +@4532 = .rodata:0x8048118C; // type:object size:0x13 scope:local align:4 data:string +@4534 = .rodata:0x804811A0; // type:object size:0xF scope:local align:4 data:string +@4535 = .rodata:0x804811B0; // type:object size:0xE scope:local align:4 data:string +@4541 = .rodata:0x804811C0; // type:object size:0xD scope:local align:4 data:string +@4543 = .rodata:0x804811D0; // type:object size:0x10 scope:local align:4 data:string +@4569 = .rodata:0x804811E0; // type:object size:0xF scope:local align:4 data:string +@4570 = .rodata:0x804811F0; // type:object size:0xA scope:local align:4 data:string +@4571 = .rodata:0x804811FC; // type:object size:0xC scope:local align:4 data:string +@4572 = .rodata:0x80481208; // type:object size:0xD scope:local align:4 data:string +@4689 = .rodata:0x80481218; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80481228; // type:label scope:local +@3775 = .rodata:0x80481228; // type:object size:0xB scope:local align:4 data:string +@3889 = .rodata:0x80481234; // type:object size:0xF scope:local align:4 data:string +@3890 = .rodata:0x80481244; // type:object size:0x19 scope:local align:4 data:string +@4078 = .rodata:0x80481260; // type:object size:0x9 scope:local align:4 data:string +@4945 = .rodata:0x8048126C; // type:object size:0xD scope:local align:4 +@4994 = .rodata:0x8048127C; // type:object size:0x1A scope:local align:4 data:string +@4995 = .rodata:0x80481298; // type:object size:0x1F scope:local align:4 data:string +@4996 = .rodata:0x804812B8; // type:object size:0x1E scope:local align:4 data:string +@5014 = .rodata:0x804812D8; // type:object size:0x13 scope:local align:4 data:string +@5015 = .rodata:0x804812EC; // type:object size:0x13 scope:local align:4 data:string +@5017 = .rodata:0x80481300; // type:object size:0xF scope:local align:4 data:string +@5018 = .rodata:0x80481310; // type:object size:0xE scope:local align:4 data:string +@5024 = .rodata:0x80481320; // type:object size:0xD scope:local align:4 data:string +@5026 = .rodata:0x80481330; // type:object size:0xE scope:local align:4 data:string +@5115 = .rodata:0x80481340; // type:object size:0x1B scope:local align:4 data:string +@5117 = .rodata:0x8048135C; // type:object size:0xD scope:local align:4 data:string +@5118 = .rodata:0x8048136C; // type:object size:0x1A scope:local align:4 data:string +@5119 = .rodata:0x80481388; // type:object size:0xC scope:local align:4 data:string +@5120 = .rodata:0x80481394; // type:object size:0x1B scope:local align:4 data:string +@5121 = .rodata:0x804813B0; // type:object size:0xD scope:local align:4 data:string +@5122 = .rodata:0x804813C0; // type:object size:0xA scope:local align:4 data:string +@5123 = .rodata:0x804813CC; // type:object size:0xD scope:local align:4 data:string +@5186 = .rodata:0x804813DC; // type:object size:0x9 scope:local align:4 data:string +@5187 = .rodata:0x804813E8; // type:object size:0x20 scope:local align:4 data:string +@5189 = .rodata:0x80481408; // type:object size:0xE scope:local align:4 data:string +@5215 = .rodata:0x80481418; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x80481428; // type:label scope:local +@3228 = .rodata:0x80481428; // type:object size:0xE scope:local align:4 data:string +@3306 = .rodata:0x80481438; // type:object size:0x12 scope:local align:4 data:string +@3307 = .rodata:0x8048144C; // type:object size:0x9 scope:local align:4 data:string +@3417 = .rodata:0x80481458; // type:object size:0x10 scope:local align:4 data:string +@3418 = .rodata:0x80481468; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481480; // type:label scope:local +@3376 = .rodata:0x80481480; // type:object size:0xF scope:local align:4 data:string +@3608 = .rodata:0x80481490; // type:object size:0x17 scope:local align:4 data:string +@3609 = .rodata:0x804814A8; // type:object size:0x18 scope:local align:4 data:string +@3611 = .rodata:0x804814C0; // type:object size:0x13 scope:local align:4 data:string +@3612 = .rodata:0x804814D4; // type:object size:0xD scope:local align:4 data:string +@3713 = .rodata:0x804814E4; // type:object size:0x22 scope:local align:4 data:string +@3714 = .rodata:0x80481508; // type:object size:0x24 scope:local align:4 data:string +@3735 = .rodata:0x8048152C; // type:object size:0x9 scope:local align:4 data:string +@3773 = .rodata:0x80481538; // type:object size:0x1A scope:local align:4 data:string +@3943 = .rodata:0x80481554; // type:object size:0xB scope:local align:4 data:string +@3944 = .rodata:0x80481560; // type:object size:0xF scope:local align:4 data:string +@3945 = .rodata:0x80481570; // type:object size:0xA scope:local align:4 data:string +@3946 = .rodata:0x8048157C; // type:object size:0xE scope:local align:4 data:string +@3947 = .rodata:0x8048158C; // type:object size:0x10 scope:local align:4 data:string +@3948 = .rodata:0x8048159C; // type:object size:0xE scope:local align:4 data:string +@4038 = .rodata:0x804815AC; // type:object size:0x1E scope:local align:4 data:string +@4039 = .rodata:0x804815CC; // type:object size:0x18 scope:local align:4 data:string +@4053 = .rodata:0x804815E4; // type:object size:0xF scope:local align:4 data:string +@4054 = .rodata:0x804815F4; // type:object size:0x10 scope:local align:4 data:string +@4055 = .rodata:0x80481604; // type:object size:0xB scope:local align:4 data:string +@4056 = .rodata:0x80481610; // type:object size:0x9 scope:local align:4 data:string +@4057 = .rodata:0x8048161C; // type:object size:0x12 scope:local align:4 data:string +@4058 = .rodata:0x80481630; // type:object size:0x12 scope:local align:4 data:string +@4059 = .rodata:0x80481644; // type:object size:0x11 scope:local align:4 data:string +@4060 = .rodata:0x80481658; // type:object size:0x11 scope:local align:4 data:string +@4061 = .rodata:0x8048166C; // type:object size:0x11 scope:local align:4 data:string +@4062 = .rodata:0x80481680; // type:object size:0x11 scope:local align:4 data:string +@4081 = .rodata:0x80481694; // type:object size:0x16 scope:local align:4 data:string +@4083 = .rodata:0x804816AC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804816B8; // type:label scope:local +@3842 = .rodata:0x804816B8; // type:object size:0xC scope:local align:4 +@3880 = .rodata:0x804816C4; // type:object size:0xD scope:local align:4 data:string +@4066 = .rodata:0x804816D4; // type:object size:0xE scope:local align:4 data:string +@4113 = .rodata:0x804816E4; // type:object size:0x11 scope:local align:4 data:string +@4114 = .rodata:0x804816F8; // type:object size:0x9 scope:local align:4 data:string +@4454 = .rodata:0x80481704; // type:object size:0x9 scope:local align:4 data:string +@4455 = .rodata:0x80481710; // type:object size:0x1C scope:local align:4 data:string +@4456 = .rodata:0x8048172C; // type:object size:0x20 scope:local align:4 data:string +@4477 = .rodata:0x8048174C; // type:object size:0x13 scope:local align:4 data:string +@4478 = .rodata:0x80481760; // type:object size:0x13 scope:local align:4 data:string +@4479 = .rodata:0x80481774; // type:object size:0xF scope:local align:4 data:string +@4480 = .rodata:0x80481784; // type:object size:0xE scope:local align:4 data:string +@4485 = .rodata:0x80481794; // type:object size:0xD scope:local align:4 data:string +@4487 = .rodata:0x804817A4; // type:object size:0xD scope:local align:4 data:string +@4488 = .rodata:0x804817B4; // type:object size:0xA scope:local align:4 +@4491 = .rodata:0x804817C0; // type:object size:0xA scope:local align:4 +@4493 = .rodata:0x804817CC; // type:object size:0xA scope:local align:4 +@4495 = .rodata:0x804817D8; // type:object size:0xA scope:local align:4 +@4656 = .rodata:0x804817E4; // type:object size:0xE scope:local align:4 data:string +@4787 = .rodata:0x804817F4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481800; // type:label scope:local +@3856 = .rodata:0x80481800; // type:object size:0xC scope:local align:4 +@3917 = .rodata:0x8048180C; // type:object size:0xE scope:local align:4 data:string +@4039 = .rodata:0x8048181C; // type:object size:0x12 scope:local align:4 data:string +@4040 = .rodata:0x80481830; // type:object size:0xC scope:local align:4 data:string +@4142 = .rodata:0x8048183C; // type:object size:0x38 scope:local align:4 data:string +@4424 = .rodata:0x80481874; // type:object size:0x9 scope:local align:4 data:string +@4508 = .rodata:0x80481880; // type:object size:0xA scope:local align:4 data:string +@4509 = .rodata:0x8048188C; // type:object size:0xE scope:local align:4 data:string +@4510 = .rodata:0x8048189C; // type:object size:0x1D scope:local align:4 data:string +@4511 = .rodata:0x804818BC; // type:object size:0xA scope:local align:4 data:string +@4513 = .rodata:0x804818C8; // type:object size:0x11 scope:local align:4 data:string +@4514 = .rodata:0x804818DC; // type:object size:0x11 scope:local align:4 data:string +@4515 = .rodata:0x804818F0; // type:object size:0x11 scope:local align:4 data:string +@4516 = .rodata:0x80481904; // type:object size:0xC scope:local align:4 data:string +@4517 = .rodata:0x80481910; // type:object size:0xD scope:local align:4 data:string +@4518 = .rodata:0x80481920; // type:object size:0xF scope:local align:4 data:string +@4519 = .rodata:0x80481930; // type:object size:0xF scope:local align:4 data:string +@4559 = .rodata:0x80481940; // type:object size:0xA scope:local align:4 data:string +@4571 = .rodata:0x8048194C; // type:object size:0x9 scope:local align:4 data:string +@4572 = .rodata:0x80481958; // type:object size:0xE scope:local align:4 data:string +@4618 = .rodata:0x80481968; // type:object size:0xB scope:local align:4 data:string +@4619 = .rodata:0x80481974; // type:object size:0xB scope:local align:4 data:string +@4767 = .rodata:0x80481980; // type:object size:0x9 scope:local align:4 data:string +@4824 = .rodata:0x8048198C; // type:object size:0xD scope:local align:4 +@4825 = .rodata:0x8048199C; // type:object size:0x9 scope:local align:4 data:string +@4826 = .rodata:0x804819A8; // type:object size:0xE scope:local align:4 data:string +@4997 = .rodata:0x804819B8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804819C8; // type:label scope:local +@3808 = .rodata:0x804819C8; // type:object size:0xC scope:local align:4 +@3841 = .rodata:0x804819D4; // type:object size:0xB scope:local align:4 data:string +@3937 = .rodata:0x804819E0; // type:object size:0xF scope:local align:4 data:string +@3938 = .rodata:0x804819F0; // type:object size:0x9 scope:local align:4 data:string +@3981 = .rodata:0x804819FC; // type:object size:0x10 scope:local align:4 data:string +@4262 = .rodata:0x80481A0C; // type:object size:0x1A scope:local align:4 data:string +@4263 = .rodata:0x80481A28; // type:object size:0x1E scope:local align:4 data:string +@4281 = .rodata:0x80481A48; // type:object size:0x13 scope:local align:4 data:string +@4282 = .rodata:0x80481A5C; // type:object size:0x13 scope:local align:4 data:string +@4284 = .rodata:0x80481A70; // type:object size:0xF scope:local align:4 data:string +@4285 = .rodata:0x80481A80; // type:object size:0xE scope:local align:4 data:string +@4291 = .rodata:0x80481A90; // type:object size:0xD scope:local align:4 data:string +@4293 = .rodata:0x80481AA0; // type:object size:0xE scope:local align:4 data:string +@4350 = .rodata:0x80481AB0; // type:object size:0xA scope:local align:4 data:string +@4351 = .rodata:0x80481ABC; // type:object size:0xA scope:local align:4 data:string +@4352 = .rodata:0x80481AC8; // type:object size:0xC scope:local align:4 data:string +@4353 = .rodata:0x80481AD4; // type:object size:0x9 scope:local align:4 data:string +@3733 = .rodata:0x80481AE0; // type:object size:0xD scope:local align:4 data:string +@3734 = .rodata:0x80481AF0; // type:object size:0x11 scope:local align:4 data:string +@3789 = .rodata:0x80481B04; // type:object size:0x11 scope:local align:4 data:string +@3790 = .rodata:0x80481B18; // type:object size:0x1C scope:local align:4 data:string +@3871 = .rodata:0x80481B34; // type:object size:0xB scope:local align:4 data:string +@4005 = .rodata:0x80481B40; // type:object size:0xC scope:local align:4 data:string +@3620 = .rodata:0x80481B50; // type:object size:0x12 scope:local align:4 data:string +@3621 = .rodata:0x80481B64; // type:object size:0x9 scope:local align:4 data:string +@3791 = .rodata:0x80481B70; // type:object size:0xD scope:local align:4 data:string +@3970 = .rodata:0x80481B80; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481B98; // type:label scope:local +@3277 = .rodata:0x80481B98; // type:object size:0xA scope:local align:4 data:string +@3285 = .rodata:0x80481BA4; // type:object size:0xC scope:local align:4 data:string +@3286 = .rodata:0x80481BB0; // type:object size:0x10 scope:local align:4 +@3311 = .rodata:0x80481BC0; // type:object size:0xD scope:local align:4 +@3351 = .rodata:0x80481BD0; // type:object size:0xC scope:local align:4 data:string +@3352 = .rodata:0x80481BDC; // type:object size:0xE scope:local align:4 data:string +@3353 = .rodata:0x80481BEC; // type:object size:0x1A scope:local align:4 data:string +@3371 = .rodata:0x80481C08; // type:object size:0xE scope:local align:4 data:string +@3372 = .rodata:0x80481C18; // type:object size:0x19 scope:local align:4 data:string +@3417 = .rodata:0x80481C34; // type:object size:0x9 scope:local align:4 data:string +@3433 = .rodata:0x80481C40; // type:object size:0xF scope:local align:4 data:string +@3388 = .rodata:0x80481C50; // type:object size:0xF scope:local align:4 data:string +@3389 = .rodata:0x80481C60; // type:object size:0x9 scope:local align:4 data:string +@3499 = .rodata:0x80481C6C; // type:object size:0xA scope:local align:4 data:string +@3500 = .rodata:0x80481C78; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80481C88; // type:label scope:local +@3192 = .rodata:0x80481C88; // type:object size:0x10 scope:local align:4 data:string +@3263 = .rodata:0x80481C98; // type:object size:0x22 scope:local align:4 data:string +@3264 = .rodata:0x80481CBC; // type:object size:0x14 scope:local align:4 data:string +@3265 = .rodata:0x80481CD0; // type:object size:0x9 scope:local align:4 data:string +@3266 = .rodata:0x80481CDC; // type:object size:0xE scope:local align:4 data:string +@3267 = .rodata:0x80481CEC; // type:object size:0xE scope:local align:4 data:string +@3268 = .rodata:0x80481CFC; // type:object size:0x13 scope:local align:4 data:string +@3269 = .rodata:0x80481D10; // type:object size:0x12 scope:local align:4 data:string +@3270 = .rodata:0x80481D24; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481D40; // type:label scope:local +@3433 = .rodata:0x80481D40; // type:object size:0xC scope:local align:4 +@3847 = .rodata:0x80481D4C; // type:object size:0xD scope:local align:4 data:string +@3870 = .rodata:0x80481D5C; // type:object size:0xA scope:local align:4 data:string +@3871 = .rodata:0x80481D68; // type:object size:0xA scope:local align:4 data:string +@3875 = .rodata:0x80481D74; // type:object size:0xA scope:local align:4 data:string +@3877 = .rodata:0x80481D80; // type:object size:0xB scope:local align:4 data:string +@3888 = .rodata:0x80481D8C; // type:object size:0xA scope:local align:4 data:string +@3889 = .rodata:0x80481D98; // type:object size:0x9 scope:local align:4 data:string +@3894 = .rodata:0x80481DA4; // type:object size:0x9 scope:local align:4 data:string +@3897 = .rodata:0x80481DB0; // type:object size:0xB scope:local align:4 data:string +@3899 = .rodata:0x80481DBC; // type:object size:0xC scope:local align:4 data:string +@3967 = .rodata:0x80481DC8; // type:object size:0x11 scope:local align:4 data:string +@3968 = .rodata:0x80481DDC; // type:object size:0x9 scope:local align:4 data:string +@3988 = .rodata:0x80481DE8; // type:object size:0xF scope:local align:4 data:string +@4017 = .rodata:0x80481DF8; // type:object size:0x9 scope:local align:4 data:string +@4018 = .rodata:0x80481E04; // type:object size:0xD scope:local align:4 +@4020 = .rodata:0x80481E14; // type:object size:0xC scope:local align:4 +@4023 = .rodata:0x80481E20; // type:object size:0xF scope:local align:4 +@5750 = .rodata:0x80481E30; // type:object size:0xA scope:local align:4 +@5810 = .rodata:0x80481E3C; // type:object size:0xB scope:local align:4 data:string +@5926 = .rodata:0x80481E48; // type:object size:0x9 scope:local align:4 data:string +@5927 = .rodata:0x80481E54; // type:object size:0x1C scope:local align:4 data:string +@5929 = .rodata:0x80481E70; // type:object size:0x12 scope:local align:4 data:string +@5930 = .rodata:0x80481E84; // type:object size:0x12 scope:local align:4 data:string +@5932 = .rodata:0x80481E98; // type:object size:0xA scope:local align:4 data:string +@5933 = .rodata:0x80481EA4; // type:object size:0xA scope:local align:4 data:string +@6059 = .rodata:0x80481EB0; // type:object size:0x9 scope:local align:4 data:string +@6157 = .rodata:0x80481EBC; // type:object size:0xF scope:local align:4 +@6204 = .rodata:0x80481ECC; // type:object size:0x16 scope:local align:4 data:string +@7403 = .rodata:0x80481EE4; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481EF8; // type:label scope:local +@3368 = .rodata:0x80481EF8; // type:object size:0xC scope:local align:4 +@3836 = .rodata:0x80481F04; // type:object size:0xB scope:local align:4 data:string +@3837 = .rodata:0x80481F10; // type:object size:0xB scope:local align:4 data:string +@3838 = .rodata:0x80481F1C; // type:object size:0x9 scope:local align:4 data:string +@3839 = .rodata:0x80481F28; // type:object size:0xE scope:local align:4 data:string +@3840 = .rodata:0x80481F38; // type:object size:0x12 scope:local align:4 data:string +@3841 = .rodata:0x80481F4C; // type:object size:0xC scope:local align:4 data:string +@3844 = .rodata:0x80481F58; // type:object size:0xA scope:local align:4 data:string +@3872 = .rodata:0x80481F64; // type:object size:0xB scope:local align:4 data:string +@4161 = .rodata:0x80481F70; // type:object size:0x15 scope:local align:4 data:string +@4298 = .rodata:0x80481F88; // type:object size:0x15 scope:local align:4 data:string +@3220 = .rodata:0x80481FA0; // type:object size:0xD scope:local align:4 data:string +@3221 = .rodata:0x80481FB0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481FC0; // type:label scope:local +@3433 = .rodata:0x80481FC0; // type:object size:0xC scope:local align:4 +@3798 = .rodata:0x80481FCC; // type:object size:0x9 scope:local align:4 data:string +@4044 = .rodata:0x80481FD8; // type:object size:0xD scope:local align:4 data:string +@4045 = .rodata:0x80481FE8; // type:object size:0x9 scope:local align:4 data:string +@4130 = .rodata:0x80481FF4; // type:object size:0xA scope:local align:4 +@4188 = .rodata:0x80482000; // type:object size:0xB scope:local align:4 data:string +@4245 = .rodata:0x8048200C; // type:object size:0x9 scope:local align:4 +@4246 = .rodata:0x80482018; // type:object size:0x18 scope:local align:4 data:string +@4248 = .rodata:0x80482030; // type:object size:0xA scope:local align:4 data:string +@4249 = .rodata:0x8048203C; // type:object size:0xB scope:local align:4 data:string +@4250 = .rodata:0x80482048; // type:object size:0xB scope:local align:4 data:string +@4251 = .rodata:0x80482054; // type:object size:0xB scope:local align:4 data:string +@4417 = .rodata:0x80482060; // type:object size:0xF scope:local align:4 +@4418 = .rodata:0x80482070; // type:object size:0xD scope:local align:4 +@4469 = .rodata:0x80482080; // type:object size:0x12 scope:local align:4 data:string +@4581 = .rodata:0x80482094; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x804820A8; // type:label scope:local +@3426 = .rodata:0x804820A8; // type:object size:0xA scope:local align:4 data:string +@3485 = .rodata:0x804820B4; // type:object size:0xD scope:local align:4 data:string +@3486 = .rodata:0x804820C4; // type:object size:0xD scope:local align:4 data:string +@3487 = .rodata:0x804820D4; // type:object size:0x9 scope:local align:4 data:string +@3489 = .rodata:0x804820E0; // type:object size:0xA scope:local align:4 data:string +@3693 = .rodata:0x804820EC; // type:object size:0x15 scope:local align:4 data:string +@3695 = .rodata:0x80482104; // type:object size:0x11 scope:local align:4 data:string +@3697 = .rodata:0x80482118; // type:object size:0x1B scope:local align:4 data:string +@3523 = .rodata:0x80482138; // type:object size:0xB scope:local align:4 data:string +@3524 = .rodata:0x80482144; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482150; // type:label scope:local +@2741 = .rodata:0x80482150; // type:object size:0xC scope:local align:4 +@4385 = .rodata:0x8048215C; // type:object size:0xE scope:local align:4 data:string +@4415 = .rodata:0x8048216C; // type:object size:0xE scope:local align:4 data:string +@4416 = .rodata:0x8048217C; // type:object size:0x14 scope:local align:4 data:string +@4417 = .rodata:0x80482190; // type:object size:0x17 scope:local align:4 data:string +@4418 = .rodata:0x804821A8; // type:object size:0x12 scope:local align:4 data:string +@4419 = .rodata:0x804821BC; // type:object size:0x10 scope:local align:4 +@4743 = .rodata:0x804821CC; // type:object size:0x16 scope:local align:4 data:string +@4744 = .rodata:0x804821E4; // type:object size:0x9 scope:local align:4 data:string +@4746 = .rodata:0x804821F0; // type:object size:0x10 scope:local align:4 data:string +@4747 = .rodata:0x80482200; // type:object size:0xD scope:local align:4 data:string +@4748 = .rodata:0x80482210; // type:object size:0x10 scope:local align:4 data:string +@4749 = .rodata:0x80482220; // type:object size:0x1F scope:local align:4 data:string +@4752 = .rodata:0x80482240; // type:object size:0x9 scope:local align:4 data:string +@4753 = .rodata:0x8048224C; // type:object size:0xA scope:local align:4 data:string +@4754 = .rodata:0x80482258; // type:object size:0x24 scope:local align:4 data:string +@4755 = .rodata:0x8048227C; // type:object size:0x13 scope:local align:4 data:string +@4935 = .rodata:0x80482290; // type:object size:0x10 scope:local align:4 data:string +@4936 = .rodata:0x804822A0; // type:object size:0x10 scope:local align:4 data:string +@4937 = .rodata:0x804822B0; // type:object size:0xE scope:local align:4 data:string +@5277 = .rodata:0x804822C0; // type:object size:0x12 scope:local align:4 data:string +@5278 = .rodata:0x804822D4; // type:object size:0xF scope:local align:4 data:string +@5279 = .rodata:0x804822E4; // type:object size:0xA scope:local align:4 data:string +@5280 = .rodata:0x804822F0; // type:object size:0x15 scope:local align:4 data:string +@5281 = .rodata:0x80482308; // type:object size:0xA scope:local align:4 data:string +@5282 = .rodata:0x80482314; // type:object size:0xC scope:local align:4 data:string +@5283 = .rodata:0x80482320; // type:object size:0x10 scope:local align:4 data:string +@5510 = .rodata:0x80482330; // type:object size:0xB scope:local align:4 data:string +@5514 = .rodata:0x8048233C; // type:object size:0xE scope:local align:4 data:string +@5516 = .rodata:0x8048234C; // type:object size:0xF scope:local align:4 data:string +@5571 = .rodata:0x8048235C; // type:object size:0xE scope:local align:4 data:string +@5590 = .rodata:0x8048236C; // type:object size:0xB scope:local align:4 data:string +@6421 = .rodata:0x80482378; // type:object size:0x12 scope:local align:4 data:string +@6422 = .rodata:0x8048238C; // type:object size:0x13 scope:local align:4 data:string +@6423 = .rodata:0x804823A0; // type:object size:0x11 scope:local align:4 data:string +@6424 = .rodata:0x804823B4; // type:object size:0xC scope:local align:4 data:string +@6425 = .rodata:0x804823C0; // type:object size:0x12 scope:local align:4 data:string +@6426 = .rodata:0x804823D4; // type:object size:0x13 scope:local align:4 data:string +@6436 = .rodata:0x804823E8; // type:object size:0x18 scope:local align:4 data:string +@6478 = .rodata:0x80482400; // type:object size:0xC scope:local align:4 data:string +@6493 = .rodata:0x8048240C; // type:object size:0xC scope:local align:4 data:string +@6520 = .rodata:0x80482418; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482430; // type:label scope:local +@2741 = .rodata:0x80482430; // type:object size:0xC scope:local align:4 +@4450 = .rodata:0x8048243C; // type:object size:0xE scope:local align:4 data:string +@4527 = .rodata:0x8048244C; // type:object size:0x10 scope:local align:4 data:string +@4588 = .rodata:0x8048245C; // type:object size:0x9 scope:local align:4 data:string +@4589 = .rodata:0x80482468; // type:object size:0x9 scope:local align:4 data:string +@4590 = .rodata:0x80482474; // type:object size:0xA scope:local align:4 data:string +@4591 = .rodata:0x80482480; // type:object size:0x24 scope:local align:4 data:string +@4592 = .rodata:0x804824A4; // type:object size:0x13 scope:local align:4 data:string +@4697 = .rodata:0x804824B8; // type:object size:0xF scope:local align:4 data:string +@4854 = .rodata:0x804824C8; // type:object size:0xA scope:local align:4 data:string +@4855 = .rodata:0x804824D4; // type:object size:0xE scope:local align:4 data:string +@4856 = .rodata:0x804824E4; // type:object size:0x16 scope:local align:4 data:string +@4857 = .rodata:0x804824FC; // type:object size:0xF scope:local align:4 data:string +@4859 = .rodata:0x8048250C; // type:object size:0x19 scope:local align:4 data:string +@4909 = .rodata:0x80482528; // type:object size:0x12 scope:local align:4 data:string +@4930 = .rodata:0x8048253C; // type:object size:0xE scope:local align:4 data:string +@4955 = .rodata:0x8048254C; // type:object size:0xE scope:local align:4 data:string +@4986 = .rodata:0x8048255C; // type:object size:0xB scope:local align:4 data:string +@5705 = .rodata:0x80482568; // type:object size:0x11 scope:local align:4 data:string +@5725 = .rodata:0x8048257C; // type:object size:0xC scope:local align:4 data:string +@5727 = .rodata:0x80482588; // type:object size:0x10 scope:local align:4 data:string +@4482 = .rodata:0x80482598; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x804825B0; // type:label scope:local +@2741 = .rodata:0x804825B0; // type:object size:0xC scope:local align:4 +@4175 = .rodata:0x804825BC; // type:object size:0x14 scope:local align:4 data:string +@4224 = .rodata:0x804825D0; // type:object size:0xB scope:local align:4 data:string +@4225 = .rodata:0x804825DC; // type:object size:0x18 scope:local align:4 data:string +@4226 = .rodata:0x804825F4; // type:object size:0x9 scope:local align:4 data:string +@4308 = .rodata:0x80482600; // type:object size:0x9 scope:local align:4 data:string +@4309 = .rodata:0x8048260C; // type:object size:0xA scope:local align:4 data:string +@4310 = .rodata:0x80482618; // type:object size:0x24 scope:local align:4 data:string +@4331 = .rodata:0x8048263C; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482658; // type:label scope:local +@2741 = .rodata:0x80482658; // type:object size:0xC scope:local align:4 +@4193 = .rodata:0x80482664; // type:object size:0xE scope:local align:4 data:string +@4366 = .rodata:0x80482674; // type:object size:0x9 scope:local align:4 data:string +@4367 = .rodata:0x80482680; // type:object size:0x9 scope:local align:4 data:string +@4368 = .rodata:0x8048268C; // type:object size:0x16 scope:local align:4 data:string +@4369 = .rodata:0x804826A4; // type:object size:0x14 scope:local align:4 data:string +@4370 = .rodata:0x804826B8; // type:object size:0xA scope:local align:4 data:string +@4371 = .rodata:0x804826C4; // type:object size:0x16 scope:local align:4 data:string +@4372 = .rodata:0x804826DC; // type:object size:0x28 scope:local align:4 data:string +@4373 = .rodata:0x80482704; // type:object size:0xE scope:local align:4 data:string +@4374 = .rodata:0x80482714; // type:object size:0x14 scope:local align:4 data:string +@4375 = .rodata:0x80482728; // type:object size:0x10 scope:local align:4 data:string +@4503 = .rodata:0x80482738; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80482748; // type:label scope:local +@2741 = .rodata:0x80482748; // type:object size:0xC scope:local align:4 +@4364 = .rodata:0x80482754; // type:object size:0xE scope:local align:4 data:string +@4478 = .rodata:0x80482764; // type:object size:0x9 scope:local align:4 data:string +@4479 = .rodata:0x80482770; // type:object size:0x9 scope:local align:4 data:string +@4480 = .rodata:0x8048277C; // type:object size:0xA scope:local align:4 data:string +@4575 = .rodata:0x80482788; // type:object size:0x18 scope:local align:4 data:string +@4576 = .rodata:0x804827A0; // type:object size:0x17 scope:local align:4 data:string +...rodata.0 = .rodata:0x804827B8; // type:label scope:local +@3457 = .rodata:0x804827B8; // type:object size:0x10 scope:local align:4 data:string +@3607 = .rodata:0x804827C8; // type:object size:0xC scope:local align:4 data:string +@3608 = .rodata:0x804827D4; // type:object size:0xD scope:local align:4 +@3609 = .rodata:0x804827E4; // type:object size:0x11 scope:local align:4 +@3610 = .rodata:0x804827F8; // type:object size:0x11 scope:local align:4 +@3611 = .rodata:0x8048280C; // type:object size:0x20 scope:local align:4 +@3613 = .rodata:0x8048282C; // type:object size:0x17 scope:local align:4 data:string +@3614 = .rodata:0x80482844; // type:object size:0x1C scope:local align:4 data:string +@3615 = .rodata:0x80482860; // type:object size:0x15 scope:local align:4 data:string +@3616 = .rodata:0x80482878; // type:object size:0xB scope:local align:4 +@3617 = .rodata:0x80482884; // type:object size:0x1E scope:local align:4 +@3618 = .rodata:0x804828A4; // type:object size:0x1A scope:local align:4 +@3619 = .rodata:0x804828C0; // type:object size:0x18 scope:local align:4 +@3620 = .rodata:0x804828D8; // type:object size:0x1D scope:local align:4 +@3621 = .rodata:0x804828F8; // type:object size:0x1A scope:local align:4 +@3622 = .rodata:0x80482914; // type:object size:0x24 scope:local align:4 +@3623 = .rodata:0x80482938; // type:object size:0x24 scope:local align:4 +@3624 = .rodata:0x8048295C; // type:object size:0x1A scope:local align:4 +@3625 = .rodata:0x80482978; // type:object size:0xE scope:local align:4 data:string +@3626 = .rodata:0x80482988; // type:object size:0x11 scope:local align:4 +@3627 = .rodata:0x8048299C; // type:object size:0xF scope:local align:4 +@3628 = .rodata:0x804829AC; // type:object size:0xE scope:local align:4 +@3629 = .rodata:0x804829BC; // type:object size:0x18 scope:local align:4 data:string +@3630 = .rodata:0x804829D4; // type:object size:0x9 scope:local align:4 data:string +@3632 = .rodata:0x804829E0; // type:object size:0x11 scope:local align:4 +@3633 = .rodata:0x804829F4; // type:object size:0xD scope:local align:4 data:string +@3634 = .rodata:0x80482A04; // type:object size:0x24 scope:local align:4 +@3635 = .rodata:0x80482A28; // type:object size:0xB scope:local align:4 +@3636 = .rodata:0x80482A34; // type:object size:0xB scope:local align:4 +@3637 = .rodata:0x80482A40; // type:object size:0x17 scope:local align:4 +@3638 = .rodata:0x80482A58; // type:object size:0x22 scope:local align:4 +@3639 = .rodata:0x80482A7C; // type:object size:0x14 scope:local align:4 +@3640 = .rodata:0x80482A90; // type:object size:0x13 scope:local align:4 +@3641 = .rodata:0x80482AA4; // type:object size:0x2A scope:local align:4 +@3800 = .rodata:0x80482AD0; // type:object size:0x2D scope:local align:4 data:string +@3809 = .rodata:0x80482B00; // type:object size:0x9 scope:local align:4 data:string +@3826 = .rodata:0x80482B0C; // type:object size:0xC scope:local align:4 data:string +@3827 = .rodata:0x80482B18; // type:object size:0xA scope:local align:4 data:string +@3842 = .rodata:0x80482B24; // type:object size:0x2B scope:local align:4 data:string +@3880 = .rodata:0x80482B50; // type:object size:0x14 scope:local align:4 data:string +@3881 = .rodata:0x80482B64; // type:object size:0x11 scope:local align:4 data:string +@3882 = .rodata:0x80482B78; // type:object size:0x14 scope:local align:4 data:string +@3924 = .rodata:0x80482B8C; // type:object size:0xE scope:local align:4 data:string +@3954 = .rodata:0x80482B9C; // type:object size:0x14 scope:local align:4 data:string +@3955 = .rodata:0x80482BB0; // type:object size:0xA scope:local align:4 data:string +@3956 = .rodata:0x80482BBC; // type:object size:0x11 scope:local align:4 data:string +@3957 = .rodata:0x80482BD0; // type:object size:0xF scope:local align:4 data:string +@3958 = .rodata:0x80482BE0; // type:object size:0x14 scope:local align:4 data:string +@3959 = .rodata:0x80482BF4; // type:object size:0x14 scope:local align:4 data:string +@3960 = .rodata:0x80482C08; // type:object size:0x16 scope:local align:4 data:string +@4187 = .rodata:0x80482C20; // type:object size:0xE scope:local align:4 data:string +@4189 = .rodata:0x80482C30; // type:object size:0xF scope:local align:4 data:string +@4190 = .rodata:0x80482C40; // type:object size:0xF scope:local align:4 data:string +@4191 = .rodata:0x80482C50; // type:object size:0xE scope:local align:4 data:string +@4192 = .rodata:0x80482C60; // type:object size:0x16 scope:local align:4 data:string +@4193 = .rodata:0x80482C78; // type:object size:0xA scope:local align:4 data:string +@4194 = .rodata:0x80482C84; // type:object size:0xD scope:local align:4 data:string +@4195 = .rodata:0x80482C94; // type:object size:0xD scope:local align:4 data:string +@4196 = .rodata:0x80482CA4; // type:object size:0xC scope:local align:4 data:string +@4197 = .rodata:0x80482CB0; // type:object size:0x17 scope:local align:4 data:string +@4199 = .rodata:0x80482CC8; // type:object size:0xB scope:local align:4 data:string +@4200 = .rodata:0x80482CD4; // type:object size:0x11 scope:local align:4 data:string +@4201 = .rodata:0x80482CE8; // type:object size:0xA scope:local align:4 data:string +@4202 = .rodata:0x80482CF4; // type:object size:0x16 scope:local align:4 data:string +@4311 = .rodata:0x80482D0C; // type:object size:0x13 scope:local align:4 data:string +@4312 = .rodata:0x80482D20; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482D30; // type:label scope:local +@3365 = .rodata:0x80482D30; // type:object size:0xC scope:local align:4 +@3826 = .rodata:0x80482D3C; // type:object size:0xE scope:local align:4 data:string +@4753 = .rodata:0x80482D4C; // type:object size:0x12 scope:local align:4 data:string +@4754 = .rodata:0x80482D60; // type:object size:0x12 scope:local align:4 data:string +@4756 = .rodata:0x80482D74; // type:object size:0x13 scope:local align:4 data:string +@4758 = .rodata:0x80482D88; // type:object size:0x16 scope:local align:4 data:string +@4760 = .rodata:0x80482DA0; // type:object size:0x14 scope:local align:4 data:string +@4762 = .rodata:0x80482DB4; // type:object size:0x12 scope:local align:4 data:string +@4764 = .rodata:0x80482DC8; // type:object size:0x13 scope:local align:4 data:string +@4765 = .rodata:0x80482DDC; // type:object size:0xE scope:local align:4 data:string +@4767 = .rodata:0x80482DEC; // type:object size:0x11 scope:local align:4 data:string +@4769 = .rodata:0x80482E00; // type:object size:0x11 scope:local align:4 data:string +@4770 = .rodata:0x80482E14; // type:object size:0x15 scope:local align:4 data:string +@4771 = .rodata:0x80482E2C; // type:object size:0xE scope:local align:4 data:string +@4772 = .rodata:0x80482E3C; // type:object size:0x10 scope:local align:4 data:string +@4773 = .rodata:0x80482E4C; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482E60; // type:label scope:local +@2741 = .rodata:0x80482E60; // type:object size:0xC scope:local align:4 +@4422 = .rodata:0x80482E6C; // type:object size:0xF scope:local align:4 data:string +@4423 = .rodata:0x80482E7C; // type:object size:0x9 scope:local align:4 data:string +@4425 = .rodata:0x80482E88; // type:object size:0xA scope:local align:4 data:string +@4462 = .rodata:0x80482E94; // type:object size:0xD scope:local align:4 +@4490 = .rodata:0x80482EA4; // type:object size:0x21 scope:local align:4 data:string +@4491 = .rodata:0x80482EC8; // type:object size:0x14 scope:local align:4 data:string +@4492 = .rodata:0x80482EDC; // type:object size:0x13 scope:local align:4 data:string +@4493 = .rodata:0x80482EF0; // type:object size:0x9 scope:local align:4 data:string +@4494 = .rodata:0x80482EFC; // type:object size:0xF scope:local align:4 data:string +@4532 = .rodata:0x80482F0C; // type:object size:0xB scope:local align:4 +@4627 = .rodata:0x80482F18; // type:object size:0xD scope:local align:4 data:string +@4628 = .rodata:0x80482F28; // type:object size:0xD scope:local align:4 data:string +@4630 = .rodata:0x80482F38; // type:object size:0xD scope:local align:4 data:string +@4631 = .rodata:0x80482F48; // type:object size:0xD scope:local align:4 data:string +@5310 = .rodata:0x80482F58; // type:object size:0x15 scope:local align:4 data:string +@5346 = .rodata:0x80482F70; // type:object size:0xA scope:local align:4 data:string +@5347 = .rodata:0x80482F7C; // type:object size:0xC scope:local align:4 data:string +@5348 = .rodata:0x80482F88; // type:object size:0x11 scope:local align:4 data:string +@5350 = .rodata:0x80482F9C; // type:object size:0xB scope:local align:4 data:string +@5351 = .rodata:0x80482FA8; // type:object size:0x13 scope:local align:4 data:string +@5353 = .rodata:0x80482FBC; // type:object size:0xD scope:local align:4 data:string +@5355 = .rodata:0x80482FCC; // type:object size:0x24 scope:local align:4 +@5616 = .rodata:0x80482FF0; // type:object size:0x9 scope:local align:4 data:string +@5617 = .rodata:0x80482FFC; // type:object size:0xA scope:local align:4 data:string +@5618 = .rodata:0x80483008; // type:object size:0x24 scope:local align:4 data:string +@5619 = .rodata:0x8048302C; // type:object size:0x14 scope:local align:4 data:string +@5651 = .rodata:0x80483040; // type:object size:0x18 scope:local align:4 data:string +@6614 = .rodata:0x80483058; // type:object size:0x1A scope:local align:4 data:string +@6615 = .rodata:0x80483074; // type:object size:0x11 scope:local align:4 data:string +@6617 = .rodata:0x80483088; // type:object size:0x9 scope:local align:4 data:string +@6619 = .rodata:0x80483094; // type:object size:0x9 scope:local align:4 data:string +@6882 = .rodata:0x804830A0; // type:object size:0x23 scope:local align:4 data:string +@6883 = .rodata:0x804830C4; // type:object size:0xB scope:local align:4 data:string +@6886 = .rodata:0x804830D0; // type:object size:0xB scope:local align:4 data:string +@6958 = .rodata:0x804830DC; // type:object size:0x10 scope:local align:4 data:string +@7479 = .rodata:0x804830EC; // type:object size:0x31 scope:local align:4 +@7480 = .rodata:0x80483120; // type:object size:0x11 scope:local align:4 +@7481 = .rodata:0x80483134; // type:object size:0x1D scope:local align:4 +@7483 = .rodata:0x80483154; // type:object size:0x1B scope:local align:4 data:string +@7784 = .rodata:0x80483170; // type:object size:0x11 scope:local align:4 data:string +@7911 = .rodata:0x80483184; // type:object size:0xC scope:local align:4 data:string +@7913 = .rodata:0x80483190; // type:object size:0x10 scope:local align:4 data:string +@7928 = .rodata:0x804831A0; // type:object size:0xE scope:local align:4 data:string +@7937 = .rodata:0x804831B0; // type:object size:0xC scope:local align:4 data:string +@8064 = .rodata:0x804831BC; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804831C8; // type:label scope:local +@3565 = .rodata:0x804831C8; // type:object size:0xD scope:local align:4 data:string +@3634 = .rodata:0x804831D8; // type:object size:0x22 scope:local align:4 data:string +@3638 = .rodata:0x804831FC; // type:object size:0x15 scope:local align:4 data:string +@3639 = .rodata:0x80483214; // type:object size:0x25 scope:local align:4 data:string +@3640 = .rodata:0x8048323C; // type:object size:0x19 scope:local align:4 data:string +@3641 = .rodata:0x80483258; // type:object size:0x12 scope:local align:4 data:string +@3642 = .rodata:0x8048326C; // type:object size:0xF scope:local align:4 data:string +@3650 = .rodata:0x8048327C; // type:object size:0x9 scope:local align:4 data:string +@3709 = .rodata:0x80483288; // type:object size:0x12 scope:local align:4 data:string +@3726 = .rodata:0x804832A0; // type:object size:0x18 scope:local align:8 data:double +@3760 = .rodata:0x804832B8; // type:object size:0x18 scope:local align:4 data:string +@3788 = .rodata:0x804832D0; // type:object size:0x18 scope:local align:4 data:string +@3841 = .rodata:0x804832E8; // type:object size:0x36 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483320; // type:label scope:local +@3259 = .rodata:0x80483320; // type:object size:0xF scope:local align:4 data:string +@3268 = .rodata:0x80483330; // type:object size:0x13 scope:local align:4 data:string +@3269 = .rodata:0x80483344; // type:object size:0x9 scope:local align:4 data:string +@3332 = .rodata:0x80483350; // type:object size:0x18 scope:local align:4 data:string +@3333 = .rodata:0x80483368; // type:object size:0x13 scope:local align:4 data:string +@3334 = .rodata:0x8048337C; // type:object size:0x11 scope:local align:4 data:string +@3335 = .rodata:0x80483390; // type:object size:0x13 scope:local align:4 data:string +@3336 = .rodata:0x804833A4; // type:object size:0x10 scope:local align:4 data:string +@3337 = .rodata:0x804833B4; // type:object size:0x14 scope:local align:4 +@3364 = .rodata:0x804833C8; // type:object size:0x26 scope:local align:4 data:string +@3367 = .rodata:0x804833F0; // type:object size:0x12 scope:local align:4 data:string +@3368 = .rodata:0x80483404; // type:object size:0x1B scope:local align:4 data:string +@3369 = .rodata:0x80483420; // type:object size:0x13 scope:local align:4 data:string +@3370 = .rodata:0x80483434; // type:object size:0x15 scope:local align:4 data:string +@3481 = .rodata:0x8048344C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80483458; // type:label scope:local +@2741 = .rodata:0x80483458; // type:object size:0xC scope:local align:4 +@3992 = .rodata:0x80483464; // type:object size:0xB scope:local align:4 data:string +@3993 = .rodata:0x80483470; // type:object size:0xD scope:local align:4 data:string +@3994 = .rodata:0x80483480; // type:object size:0x13 scope:local align:4 data:string +@3995 = .rodata:0x80483494; // type:object size:0x12 scope:local align:4 data:string +@3996 = .rodata:0x804834A8; // type:object size:0x14 scope:local align:4 data:string +@3999 = .rodata:0x804834BC; // type:object size:0xD scope:local align:4 +@4171 = .rodata:0x804834CC; // type:object size:0x9 scope:local align:4 data:string +@4172 = .rodata:0x804834D8; // type:object size:0x9 scope:local align:4 data:string +@4173 = .rodata:0x804834E4; // type:object size:0xA scope:local align:4 data:string +@4256 = .rodata:0x804834F0; // type:object size:0x2E scope:local align:4 data:string +@4257 = .rodata:0x80483520; // type:object size:0xF scope:local align:4 data:string +@4258 = .rodata:0x80483530; // type:object size:0xE scope:local align:4 data:string +@4269 = .rodata:0x80483540; // type:object size:0x10 scope:local align:4 +...rodata.0 = .rodata:0x80483550; // type:label scope:local +@2741 = .rodata:0x80483550; // type:object size:0xC scope:local align:4 +@4310 = .rodata:0x8048355C; // type:object size:0xA scope:local align:4 data:string +@4507 = .rodata:0x80483568; // type:object size:0x10 scope:local align:4 data:string +@4508 = .rodata:0x80483578; // type:object size:0xB scope:local align:4 data:string +@4509 = .rodata:0x80483584; // type:object size:0xB scope:local align:4 data:string +@4934 = .rodata:0x80483590; // type:object size:0xA scope:local align:4 data:string +@4937 = .rodata:0x8048359C; // type:object size:0xA scope:local align:4 data:string +@4938 = .rodata:0x804835A8; // type:object size:0x9 scope:local align:4 data:string +@4939 = .rodata:0x804835B4; // type:object size:0xB scope:local align:4 data:string +@4940 = .rodata:0x804835C0; // type:object size:0xE scope:local align:4 data:string +@4941 = .rodata:0x804835D0; // type:object size:0x9 scope:local align:4 data:string +@5076 = .rodata:0x804835DC; // type:object size:0xD scope:local align:4 data:string +@5178 = .rodata:0x804835EC; // type:object size:0x10 scope:local align:4 +@5181 = .rodata:0x804835FC; // type:object size:0xE scope:local align:4 data:string +@5182 = .rodata:0x8048360C; // type:object size:0xF scope:local align:4 data:string +@5249 = .rodata:0x8048361C; // type:object size:0x10 scope:local align:4 data:string +@5304 = .rodata:0x8048362C; // type:object size:0xE scope:local align:4 data:string +@5337 = .rodata:0x8048363C; // type:object size:0xF scope:local align:4 data:string +@5480 = .rodata:0x8048364C; // type:object size:0x10 scope:local align:4 data:string +@5481 = .rodata:0x8048365C; // type:object size:0x14 scope:local align:4 data:string +@5482 = .rodata:0x80483670; // type:object size:0xE scope:local align:4 data:string +@5483 = .rodata:0x80483680; // type:object size:0xB scope:local align:4 data:string +@5484 = .rodata:0x8048368C; // type:object size:0xE scope:local align:4 data:string +@5822 = .rodata:0x8048369C; // type:object size:0x9 scope:local align:4 data:string +@5823 = .rodata:0x804836A8; // type:object size:0xA scope:local align:4 data:string +@5824 = .rodata:0x804836B4; // type:object size:0x24 scope:local align:4 data:string +@5825 = .rodata:0x804836D8; // type:object size:0x13 scope:local align:4 data:string +@5826 = .rodata:0x804836EC; // type:object size:0x11 scope:local align:4 data:string +@5828 = .rodata:0x80483700; // type:object size:0x9 scope:local align:4 data:string +@5829 = .rodata:0x8048370C; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483720; // type:label scope:local +@2741 = .rodata:0x80483720; // type:object size:0xC scope:local align:4 +@3969 = .rodata:0x8048372C; // type:object size:0xC scope:local align:4 data:string +@4035 = .rodata:0x80483738; // type:object size:0x10 scope:local align:4 data:string +@4036 = .rodata:0x80483748; // type:object size:0x9 scope:local align:4 data:string +@4100 = .rodata:0x80483754; // type:object size:0x1C scope:local align:4 +@4159 = .rodata:0x80483770; // type:object size:0x9 scope:local align:4 data:string +@4160 = .rodata:0x8048377C; // type:object size:0xA scope:local align:4 data:string +@3324 = .rodata:0x80483788; // type:object size:0xD scope:local align:4 data:string +@3400 = .rodata:0x80483798; // type:object size:0x13 scope:local align:4 +@3454 = .rodata:0x804837AC; // type:object size:0x10 scope:local align:4 data:string +@3455 = .rodata:0x804837BC; // type:object size:0x18 scope:local align:4 data:string +@3512 = .rodata:0x804837D4; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x804837E8; // type:label scope:local +@2646 = .rodata:0x804837E8; // type:object size:0xD scope:local align:4 data:string +@2666 = .rodata:0x804837F8; // type:object size:0xF scope:local align:4 +@2667 = .rodata:0x80483808; // type:object size:0x11 scope:local align:4 +@2669 = .rodata:0x8048381C; // type:object size:0xA scope:local align:4 data:string +@3400 = .rodata:0x80483828; // type:object size:0x11 scope:local align:4 data:string +@3403 = .rodata:0x8048383C; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483850; // type:label scope:local +@2741 = .rodata:0x80483850; // type:object size:0xC scope:local align:4 +@3951 = .rodata:0x8048385C; // type:object size:0xA scope:local align:4 data:string +@3977 = .rodata:0x80483868; // type:object size:0x9 scope:local align:4 data:string +@3978 = .rodata:0x80483874; // type:object size:0x9 scope:local align:4 data:string +@3979 = .rodata:0x80483880; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80483890; // type:label scope:local +@3841 = .rodata:0x80483890; // type:object size:0x9 scope:local align:4 data:string +@4035 = .rodata:0x8048389C; // type:object size:0xD scope:local align:4 data:string +@4036 = .rodata:0x804838AC; // type:object size:0xD scope:local align:4 data:string +@4037 = .rodata:0x804838BC; // type:object size:0x9 scope:local align:4 data:string +@4047 = .rodata:0x804838C8; // type:object size:0xA scope:local align:4 data:string +@4313 = .rodata:0x804838D4; // type:object size:0x15 scope:local align:4 data:string +@2728 = .rodata:0x804838F0; // type:object size:0xD scope:local align:4 data:string +@3283 = .rodata:0x80483900; // type:object size:0x13 scope:local align:4 data:string +@3284 = .rodata:0x80483914; // type:object size:0x9 scope:local align:4 data:string +@3306 = .rodata:0x80483920; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80483930; // type:label scope:local +@3411 = .rodata:0x80483930; // type:object size:0x20 scope:local align:4 data:4byte +@3421 = .rodata:0x80483950; // type:object size:0xB scope:local align:4 data:string +@3422 = .rodata:0x8048395C; // type:object size:0x9 scope:local align:4 data:string +@3747 = .rodata:0x80483968; // type:object size:0x9 scope:local align:4 data:string +@3748 = .rodata:0x80483974; // type:object size:0xA scope:local align:4 data:string +@3749 = .rodata:0x80483980; // type:object size:0x24 scope:local align:4 data:string +@3886 = .rodata:0x804839A4; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804839B0; // type:label scope:local +@2741 = .rodata:0x804839B0; // type:object size:0xC scope:local align:4 +@4180 = .rodata:0x804839BC; // type:object size:0x10 scope:local align:4 data:string +@4310 = .rodata:0x804839CC; // type:object size:0x9 scope:local align:4 data:string +@4311 = .rodata:0x804839D8; // type:object size:0x9 scope:local align:4 data:string +@4312 = .rodata:0x804839E4; // type:object size:0xA scope:local align:4 data:string +@3289 = .rodata:0x804839F0; // type:object size:0x14 scope:local align:4 data:string +@3290 = .rodata:0x80483A04; // type:object size:0x15 scope:local align:4 data:string +@3317 = .rodata:0x80483A1C; // type:object size:0x9 scope:local align:4 data:string +@3327 = .rodata:0x80483A28; // type:object size:0x1C scope:local align:4 data:string +@2741 = .rodata:0x80483A48; // type:object size:0x11 scope:local align:4 data:string +@2742 = .rodata:0x80483A5C; // type:object size:0x9 scope:local align:4 data:string +@2665 = .rodata:0x80483A68; // type:object size:0x12 scope:local align:4 data:string +@2666 = .rodata:0x80483A7C; // type:object size:0x9 scope:local align:4 data:string +@2901 = .rodata:0x80483A88; // type:object size:0x17 scope:local align:4 data:string +@2902 = .rodata:0x80483AA0; // type:object size:0x9 scope:local align:4 data:string +@2696 = .rodata:0x80483AB0; // type:object size:0x14 scope:local align:4 data:string +@2697 = .rodata:0x80483AC4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483AD0; // type:label scope:local +@3469 = .rodata:0x80483AD0; // type:object size:0xC scope:local align:4 +@3864 = .rodata:0x80483ADC; // type:object size:0xA scope:local align:4 data:string +@4006 = .rodata:0x80483AE8; // type:object size:0xD scope:local align:4 data:string +@4007 = .rodata:0x80483AF8; // type:object size:0xE scope:local align:4 data:string +@4008 = .rodata:0x80483B08; // type:object size:0xF scope:local align:4 data:string +@4009 = .rodata:0x80483B18; // type:object size:0xF scope:local align:4 data:string +@4010 = .rodata:0x80483B28; // type:object size:0xF scope:local align:4 data:string +@4011 = .rodata:0x80483B38; // type:object size:0xD scope:local align:4 data:string +@4012 = .rodata:0x80483B48; // type:object size:0x11 scope:local align:4 data:string +@4013 = .rodata:0x80483B5C; // type:object size:0x12 scope:local align:4 data:string +@4014 = .rodata:0x80483B70; // type:object size:0xF scope:local align:4 data:string +@4015 = .rodata:0x80483B80; // type:object size:0xE scope:local align:4 data:string +@4016 = .rodata:0x80483B90; // type:object size:0xE scope:local align:4 data:string +cardData__Q34Game6VsGame23@unnamed@vsCardMgr_cpp@ = .rodata:0x80483BA0; // type:object size:0x60 scope:local align:4 +@4017 = .rodata:0x80483C00; // type:object size:0x16 scope:local align:4 data:string +@4018 = .rodata:0x80483C18; // type:object size:0x15 scope:local align:4 data:string +@4079 = .rodata:0x80483C30; // type:object size:0x19 scope:local align:4 data:string +@4080 = .rodata:0x80483C4C; // type:object size:0xE scope:local align:4 data:string +@4081 = .rodata:0x80483C5C; // type:object size:0x1B scope:local align:4 data:string +@4082 = .rodata:0x80483C78; // type:object size:0x10 scope:local align:4 data:string +@4083 = .rodata:0x80483C88; // type:object size:0xC scope:local align:4 data:string +@4084 = .rodata:0x80483C94; // type:object size:0xC scope:local align:4 data:string +@4085 = .rodata:0x80483CA0; // type:object size:0xD scope:local align:4 data:string +@4210 = .rodata:0x80483CB0; // type:object size:0x9 scope:local align:4 data:string +@5872 = .rodata:0x80483CBC; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483CD0; // type:label scope:local +@3521 = .rodata:0x80483CD0; // type:object size:0xA scope:local align:4 data:string +@3558 = .rodata:0x80483CDC; // type:object size:0xD scope:local align:4 data:string +@3559 = .rodata:0x80483CEC; // type:object size:0x9 scope:local align:4 data:string +@3733 = .rodata:0x80483CF8; // type:object size:0x9 scope:local align:4 data:string +@3899 = .rodata:0x80483D04; // type:object size:0x15 scope:local align:4 data:string +@3901 = .rodata:0x80483D1C; // type:object size:0xA scope:local align:4 data:string +@3631 = .rodata:0x80483D28; // type:object size:0xA scope:local align:4 data:string +@3650 = .rodata:0x80483D34; // type:object size:0xA scope:local align:4 data:string +@3726 = .rodata:0x80483D40; // type:object size:0xA scope:local align:4 data:string +@3945 = .rodata:0x80483D50; // type:object size:0x12 scope:local align:4 data:string +@3946 = .rodata:0x80483D64; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483D70; // type:label scope:local +@3259 = .rodata:0x80483D70; // type:object size:0xC scope:local align:4 +@4283 = .rodata:0x80483D7C; // type:object size:0x10 scope:local align:4 data:string +@4408 = .rodata:0x80483D8C; // type:object size:0x14 scope:local align:4 data:string +@4409 = .rodata:0x80483DA0; // type:object size:0x9 scope:local align:4 data:string +@4548 = .rodata:0x80483DAC; // type:object size:0xB scope:local align:4 data:string +@4549 = .rodata:0x80483DB8; // type:object size:0x14 scope:local align:4 data:string +@4550 = .rodata:0x80483DCC; // type:object size:0x16 scope:local align:4 data:string +@4551 = .rodata:0x80483DE4; // type:object size:0xB scope:local align:4 data:string +@4552 = .rodata:0x80483DF0; // type:object size:0x15 scope:local align:4 data:string +@4553 = .rodata:0x80483E08; // type:object size:0xB scope:local align:4 data:string +@4554 = .rodata:0x80483E14; // type:object size:0xD scope:local align:4 data:string +@4719 = .rodata:0x80483E24; // type:object size:0xE scope:local align:4 data:string +@4720 = .rodata:0x80483E34; // type:object size:0x13 scope:local align:4 data:string +@4902 = .rodata:0x80483E48; // type:object size:0xB scope:local align:4 data:string +@4913 = .rodata:0x80483E54; // type:object size:0xC scope:local align:4 data:string +@4915 = .rodata:0x80483E60; // type:object size:0x12 scope:local align:4 data:string +@4917 = .rodata:0x80483E74; // type:object size:0xA scope:local align:4 data:string +@4919 = .rodata:0x80483E80; // type:object size:0xC scope:local align:4 data:string +@4921 = .rodata:0x80483E8C; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483EA0; // type:label scope:local +@2767 = .rodata:0x80483EA0; // type:object size:0xA scope:local align:4 data:string +@2796 = .rodata:0x80483EAC; // type:object size:0xE scope:local align:4 data:string +@2797 = .rodata:0x80483EBC; // type:object size:0x9 scope:local align:4 data:string +@2947 = .rodata:0x80483EC8; // type:object size:0x1D scope:local align:4 data:string +@2626 = .rodata:0x80483EE8; // type:object size:0xB scope:local align:4 data:string +@2627 = .rodata:0x80483EF4; // type:object size:0xF scope:local align:4 data:string +@2628 = .rodata:0x80483F04; // type:object size:0xE scope:local align:4 data:string +@2629 = .rodata:0x80483F14; // type:object size:0x11 scope:local align:4 data:string +@3284 = .rodata:0x80483F28; // type:object size:0x16 scope:local align:4 data:string +@3285 = .rodata:0x80483F40; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483F58; // type:label scope:local +@3315 = .rodata:0x80483F58; // type:object size:0xC scope:local align:4 +@3356 = .rodata:0x80483F64; // type:object size:0x13 scope:local align:4 data:string +@3371 = .rodata:0x80483F78; // type:object size:0x13 scope:local align:4 data:string +@3372 = .rodata:0x80483F8C; // type:object size:0x9 scope:local align:4 data:string +@3681 = .rodata:0x80483F98; // type:object size:0xC scope:local align:4 +@3682 = .rodata:0x80483FA4; // type:object size:0xC scope:local align:4 +@3683 = .rodata:0x80483FB0; // type:object size:0xC scope:local align:4 +@3759 = .rodata:0x80483FBC; // type:object size:0xF scope:local align:4 data:string +@3578 = .rodata:0x80483FD0; // type:object size:0xB scope:local align:4 data:string +@3617 = .rodata:0x80483FDC; // type:object size:0xF scope:local align:4 data:string +@3618 = .rodata:0x80483FEC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483FF8; // type:label scope:local +@3309 = .rodata:0x80483FF8; // type:object size:0xC scope:local align:4 +@3351 = .rodata:0x80484004; // type:object size:0xE scope:local align:4 data:string +@3420 = .rodata:0x80484014; // type:object size:0xA scope:local align:4 data:string +@3472 = .rodata:0x80484020; // type:object size:0xC scope:local align:4 data:string +@3473 = .rodata:0x8048402C; // type:object size:0xB scope:local align:4 +@3477 = .rodata:0x80484038; // type:object size:0xA scope:local align:4 +@3479 = .rodata:0x80484044; // type:object size:0x27 scope:local align:4 data:string +@3391 = .rodata:0x80484070; // type:object size:0xB scope:local align:4 data:string +@3443 = .rodata:0x8048407C; // type:object size:0x12 scope:local align:4 data:string +@3360 = .rodata:0x80484090; // type:object size:0x10 scope:local align:4 data:string +@3361 = .rodata:0x804840A0; // type:object size:0x14 scope:local align:4 data:string +@4297 = .rodata:0x804840B4; // type:object size:0xC scope:local align:4 data:4byte +@3411 = .rodata:0x804840C0; // type:object size:0x10 scope:local align:4 data:4byte +@3884 = .rodata:0x804840D0; // type:object size:0xC scope:local align:4 data:4byte +@4112 = .rodata:0x804840DC; // type:object size:0xC scope:local align:4 data:4byte +@4298 = .rodata:0x804840E8; // type:object size:0x10 scope:local align:4 data:4byte +@3437 = .rodata:0x804840F8; // type:object size:0x14 scope:local align:4 data:4byte +@3869 = .rodata:0x8048410C; // type:object size:0xC scope:local align:4 data:4byte +@3977 = .rodata:0x80484118; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80484128; // type:label scope:local +@3381 = .rodata:0x80484128; // type:object size:0x11 scope:local align:4 data:string +@3556 = .rodata:0x8048413C; // type:object size:0x11 scope:local align:4 data:string +@3557 = .rodata:0x80484150; // type:object size:0x10 scope:local align:4 data:string +@3558 = .rodata:0x80484160; // type:object size:0x16 scope:local align:4 data:string +@4077 = .rodata:0x80484178; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x80484190; // type:label scope:local +@3480 = .rodata:0x80484190; // type:object size:0xC scope:local align:4 +@3549 = .rodata:0x8048419C; // type:object size:0xE scope:local align:4 data:string +@3555 = .rodata:0x804841AC; // type:object size:0xA scope:local align:4 data:string +@3589 = .rodata:0x804841B8; // type:object size:0x2B scope:local align:4 data:string +@3590 = .rodata:0x804841E4; // type:object size:0x2D scope:local align:4 data:string +@3614 = .rodata:0x80484214; // type:object size:0xF scope:local align:4 data:string +@3615 = .rodata:0x80484224; // type:object size:0x15 scope:local align:4 data:string +@3619 = .rodata:0x8048423C; // type:object size:0x16 scope:local align:4 data:string +@3621 = .rodata:0x80484254; // type:object size:0x14 scope:local align:4 data:string +@3623 = .rodata:0x80484268; // type:object size:0x16 scope:local align:4 data:string +@3626 = .rodata:0x80484280; // type:object size:0x18 scope:local align:4 data:string +@3628 = .rodata:0x80484298; // type:object size:0x16 scope:local align:4 data:string +@3630 = .rodata:0x804842B0; // type:object size:0x16 scope:local align:4 data:string +@3632 = .rodata:0x804842C8; // type:object size:0x17 scope:local align:4 data:string +@3634 = .rodata:0x804842E0; // type:object size:0x15 scope:local align:4 data:string +@3636 = .rodata:0x804842F8; // type:object size:0x14 scope:local align:4 data:string +@3639 = .rodata:0x8048430C; // type:object size:0x16 scope:local align:4 data:string +@3640 = .rodata:0x80484324; // type:object size:0x15 scope:local align:4 data:string +@3642 = .rodata:0x8048433C; // type:object size:0x10 scope:local align:4 data:string +@3643 = .rodata:0x8048434C; // type:object size:0x12 scope:local align:4 data:string +@3644 = .rodata:0x80484360; // type:object size:0x11 scope:local align:4 data:string +@3645 = .rodata:0x80484374; // type:object size:0x13 scope:local align:4 data:string +@3647 = .rodata:0x80484388; // type:object size:0x15 scope:local align:4 data:string +@3649 = .rodata:0x804843A0; // type:object size:0x14 scope:local align:4 data:string +@3650 = .rodata:0x804843B4; // type:object size:0x11 scope:local align:4 data:string +@3718 = .rodata:0x804843C8; // type:object size:0xC scope:local align:4 data:string +@3719 = .rodata:0x804843D4; // type:object size:0xE scope:local align:4 +@3722 = .rodata:0x804843E4; // type:object size:0x12 scope:local align:4 +@3724 = .rodata:0x804843F8; // type:object size:0x10 scope:local align:4 +@3726 = .rodata:0x80484408; // type:object size:0x14 scope:local align:4 +@3728 = .rodata:0x8048441C; // type:object size:0x12 scope:local align:4 +@3729 = .rodata:0x80484430; // type:object size:0x12 scope:local align:4 data:string +@3731 = .rodata:0x80484444; // type:object size:0xE scope:local align:4 data:string +@3733 = .rodata:0x80484454; // type:object size:0xD scope:local align:4 data:string +@3734 = .rodata:0x80484464; // type:object size:0xD scope:local align:4 +@3735 = .rodata:0x80484474; // type:object size:0x11 scope:local align:4 +@3737 = .rodata:0x80484488; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x80484498; // type:object size:0x13 scope:local align:4 +@3741 = .rodata:0x804844AC; // type:object size:0x11 scope:local align:4 +@3742 = .rodata:0x804844C0; // type:object size:0x11 scope:local align:4 data:string +@3744 = .rodata:0x804844D4; // type:object size:0xD scope:local align:4 data:string +@3745 = .rodata:0x804844E4; // type:object size:0xC scope:local align:4 data:string +@3746 = .rodata:0x804844F0; // type:object size:0xD scope:local align:4 +@3748 = .rodata:0x80484500; // type:object size:0x11 scope:local align:4 +@3749 = .rodata:0x80484514; // type:object size:0xF scope:local align:4 +@3751 = .rodata:0x80484524; // type:object size:0x13 scope:local align:4 +@3753 = .rodata:0x80484538; // type:object size:0x11 scope:local align:4 +@3755 = .rodata:0x8048454C; // type:object size:0x11 scope:local align:4 data:string +@3757 = .rodata:0x80484560; // type:object size:0xD scope:local align:4 data:string +@3758 = .rodata:0x80484570; // type:object size:0xC scope:local align:4 data:string +@3759 = .rodata:0x8048457C; // type:object size:0xF scope:local align:4 +@3760 = .rodata:0x8048458C; // type:object size:0x13 scope:local align:4 +@3761 = .rodata:0x804845A0; // type:object size:0x11 scope:local align:4 +@3762 = .rodata:0x804845B4; // type:object size:0x15 scope:local align:4 +@3763 = .rodata:0x804845CC; // type:object size:0x13 scope:local align:4 +@3764 = .rodata:0x804845E0; // type:object size:0x13 scope:local align:4 data:string +@3766 = .rodata:0x804845F4; // type:object size:0xF scope:local align:4 data:string +@3767 = .rodata:0x80484604; // type:object size:0xE scope:local align:4 data:string +@3768 = .rodata:0x80484614; // type:object size:0xE scope:local align:4 +@3769 = .rodata:0x80484624; // type:object size:0x12 scope:local align:4 +@3770 = .rodata:0x80484638; // type:object size:0x10 scope:local align:4 +@3771 = .rodata:0x80484648; // type:object size:0x14 scope:local align:4 +@3773 = .rodata:0x8048465C; // type:object size:0x12 scope:local align:4 +@3774 = .rodata:0x80484670; // type:object size:0x12 scope:local align:4 data:string +@3776 = .rodata:0x80484684; // type:object size:0xE scope:local align:4 data:string +@3777 = .rodata:0x80484694; // type:object size:0xD scope:local align:4 data:string +@3778 = .rodata:0x804846A4; // type:object size:0xE scope:local align:4 +@3780 = .rodata:0x804846B4; // type:object size:0x12 scope:local align:4 +@3781 = .rodata:0x804846C8; // type:object size:0x10 scope:local align:4 +@3783 = .rodata:0x804846D8; // type:object size:0x14 scope:local align:4 +@3784 = .rodata:0x804846EC; // type:object size:0x12 scope:local align:4 +@3786 = .rodata:0x80484700; // type:object size:0x12 scope:local align:4 data:string +@3788 = .rodata:0x80484714; // type:object size:0xE scope:local align:4 data:string +@3789 = .rodata:0x80484724; // type:object size:0xD scope:local align:4 data:string +@3790 = .rodata:0x80484734; // type:object size:0xA scope:local align:4 +@3792 = .rodata:0x80484740; // type:object size:0xE scope:local align:4 +@3794 = .rodata:0x80484750; // type:object size:0xC scope:local align:4 +@3795 = .rodata:0x8048475C; // type:object size:0xF scope:local align:4 +@3797 = .rodata:0x8048476C; // type:object size:0x13 scope:local align:4 +@3800 = .rodata:0x80484780; // type:object size:0x11 scope:local align:4 +@3801 = .rodata:0x80484794; // type:object size:0x11 scope:local align:4 +@3802 = .rodata:0x804847A8; // type:object size:0xD scope:local align:4 +@3804 = .rodata:0x804847B8; // type:object size:0x9 scope:local align:4 +@3806 = .rodata:0x804847C4; // type:object size:0xD scope:local align:4 +@3808 = .rodata:0x804847D4; // type:object size:0xB scope:local align:4 +@3809 = .rodata:0x804847E0; // type:object size:0xD scope:local align:4 +@3811 = .rodata:0x804847F0; // type:object size:0xB scope:local align:4 +@3825 = .rodata:0x804847FC; // type:object size:0xE scope:local align:4 data:string +@3826 = .rodata:0x8048480C; // type:object size:0x9 scope:local align:4 data:string +@3850 = .rodata:0x80484818; // type:object size:0x10 scope:local align:4 data:string +@4132 = .rodata:0x80484828; // type:object size:0x10 scope:local align:4 data:string +@4174 = .rodata:0x80484838; // type:object size:0x17 scope:local align:4 data:string +@2886 = .rodata:0x80484850; // type:object size:0xC scope:local align:4 data:4byte +@2887 = .rodata:0x8048485C; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80484868; // type:label scope:local +@3430 = .rodata:0x80484868; // type:object size:0xE scope:local align:4 data:string +@3436 = .rodata:0x80484878; // type:object size:0xA scope:local align:4 data:string +@3465 = .rodata:0x80484884; // type:object size:0xC scope:local align:4 data:string +@3466 = .rodata:0x80484890; // type:object size:0xD scope:local align:4 data:string +@3470 = .rodata:0x804848A0; // type:object size:0x27 scope:local align:4 data:string +@3471 = .rodata:0x804848C8; // type:object size:0x26 scope:local align:4 data:string +@3729 = .rodata:0x804848F0; // type:object size:0xE scope:local align:4 data:string +@3730 = .rodata:0x80484900; // type:object size:0x10 scope:local align:4 data:string +@3756 = .rodata:0x80484910; // type:object size:0x17 scope:local align:4 data:string +@3770 = .rodata:0x80484928; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x80484940; // type:label scope:local +@3612 = .rodata:0x80484940; // type:object size:0xC scope:local align:4 +@3698 = .rodata:0x8048494C; // type:object size:0xB scope:local align:4 data:string +@3704 = .rodata:0x80484958; // type:object size:0x15 scope:local align:4 +@3784 = .rodata:0x80484970; // type:object size:0xF scope:local align:4 data:string +@3785 = .rodata:0x80484980; // type:object size:0x14 scope:local align:4 +@3786 = .rodata:0x80484994; // type:object size:0x14 scope:local align:4 +@3787 = .rodata:0x804849A8; // type:object size:0x12 scope:local align:4 +@3788 = .rodata:0x804849BC; // type:object size:0x9 scope:local align:4 +@3792 = .rodata:0x804849C8; // type:object size:0xB scope:local align:4 +@3794 = .rodata:0x804849D4; // type:object size:0xB scope:local align:4 +@3830 = .rodata:0x804849E0; // type:object size:0x13 scope:local align:4 data:string +@3831 = .rodata:0x804849F4; // type:object size:0x13 scope:local align:4 data:string +@3833 = .rodata:0x80484A08; // type:object size:0xF scope:local align:4 data:string +@3834 = .rodata:0x80484A18; // type:object size:0xE scope:local align:4 data:string +@3840 = .rodata:0x80484A28; // type:object size:0xD scope:local align:4 data:string +@3894 = .rodata:0x80484A38; // type:object size:0xD scope:local align:4 +@3897 = .rodata:0x80484A48; // type:object size:0xD scope:local align:4 +@3898 = .rodata:0x80484A58; // type:object size:0xB scope:local align:4 +@3899 = .rodata:0x80484A64; // type:object size:0xF scope:local align:4 +@3901 = .rodata:0x80484A74; // type:object size:0x1F scope:local align:4 +@3903 = .rodata:0x80484A94; // type:object size:0x13 scope:local align:4 +@3905 = .rodata:0x80484AA8; // type:object size:0x13 scope:local align:4 +@3907 = .rodata:0x80484ABC; // type:object size:0x12 scope:local align:4 +@3908 = .rodata:0x80484AD0; // type:object size:0x11 scope:local align:4 +@3913 = .rodata:0x80484AE4; // type:object size:0xB scope:local align:4 +@3914 = .rodata:0x80484AF0; // type:object size:0xD scope:local align:4 +@3917 = .rodata:0x80484B00; // type:object size:0xB scope:local align:4 +@3919 = .rodata:0x80484B0C; // type:object size:0xB scope:local align:4 +@3921 = .rodata:0x80484B18; // type:object size:0x11 scope:local align:4 +@3923 = .rodata:0x80484B2C; // type:object size:0x9 scope:local align:4 +@3925 = .rodata:0x80484B38; // type:object size:0x9 scope:local align:4 +@3928 = .rodata:0x80484B44; // type:object size:0x9 scope:local align:4 +@3930 = .rodata:0x80484B50; // type:object size:0x9 scope:local align:4 +@3932 = .rodata:0x80484B5C; // type:object size:0xB scope:local align:4 +@3934 = .rodata:0x80484B68; // type:object size:0x11 scope:local align:4 +@3935 = .rodata:0x80484B7C; // type:object size:0xD scope:local align:4 +@3936 = .rodata:0x80484B8C; // type:object size:0xB scope:local align:4 +@3937 = .rodata:0x80484B98; // type:object size:0xD scope:local align:4 +@3938 = .rodata:0x80484BA8; // type:object size:0xD scope:local align:4 +@3939 = .rodata:0x80484BB8; // type:object size:0xF scope:local align:4 +@3940 = .rodata:0x80484BC8; // type:object size:0xF scope:local align:4 +@3942 = .rodata:0x80484BD8; // type:object size:0x9 scope:local align:4 +@3944 = .rodata:0x80484BE4; // type:object size:0x9 scope:local align:4 +@3945 = .rodata:0x80484BF0; // type:object size:0x17 scope:local align:4 +@3946 = .rodata:0x80484C08; // type:object size:0xD scope:local align:4 +@3948 = .rodata:0x80484C18; // type:object size:0xD scope:local align:4 +@3949 = .rodata:0x80484C28; // type:object size:0xF scope:local align:4 +@3950 = .rodata:0x80484C38; // type:object size:0xF scope:local align:4 +@3951 = .rodata:0x80484C48; // type:object size:0xF scope:local align:4 +@3952 = .rodata:0x80484C58; // type:object size:0xF scope:local align:4 +@3953 = .rodata:0x80484C68; // type:object size:0xF scope:local align:4 +@3954 = .rodata:0x80484C78; // type:object size:0xF scope:local align:4 +@3955 = .rodata:0x80484C88; // type:object size:0xF scope:local align:4 +@3972 = .rodata:0x80484C98; // type:object size:0x18 scope:local align:4 data:4byte +@4035 = .rodata:0x80484CB0; // type:object size:0xB scope:local align:4 data:string +@4036 = .rodata:0x80484CBC; // type:object size:0x9 scope:local align:4 data:string +@4037 = .rodata:0x80484CC8; // type:object size:0xC scope:local align:4 data:string +@3991 = .rodata:0x80484CD8; // type:object size:0xC scope:local align:4 data:string +@4055 = .rodata:0x80484CE4; // type:object size:0xB scope:local align:4 data:string +@4313 = .rodata:0x80484CF0; // type:object size:0x14 scope:local align:4 data:4byte +@3651 = .rodata:0x80484D08; // type:object size:0x9 scope:local align:4 data:string +@3655 = .rodata:0x80484D14; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80484D20; // type:label scope:local +@3510 = .rodata:0x80484D20; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x80484D2C; // type:object size:0x15 scope:local align:4 +@3541 = .rodata:0x80484D44; // type:object size:0xA scope:local align:4 data:string +@3542 = .rodata:0x80484D50; // type:object size:0x9 scope:local align:4 +@3546 = .rodata:0x80484D5C; // type:object size:0xD scope:local align:4 +@3549 = .rodata:0x80484D6C; // type:object size:0x9 scope:local align:4 +@3552 = .rodata:0x80484D78; // type:object size:0xB scope:local align:4 +@3588 = .rodata:0x80484D84; // type:object size:0x13 scope:local align:4 data:string +@3589 = .rodata:0x80484D98; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x80484DAC; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x80484DBC; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x80484DCC; // type:object size:0xD scope:local align:4 data:string +@3649 = .rodata:0x80484DDC; // type:object size:0xF scope:local align:4 data:string +@3653 = .rodata:0x80484DEC; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x80484DFC; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x80484E0C; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x80484E18; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x80484E28; // type:object size:0x1F scope:local align:4 +@3661 = .rodata:0x80484E48; // type:object size:0x13 scope:local align:4 +@3663 = .rodata:0x80484E5C; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x80484E70; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x80484E84; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x80484E98; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80484EA4; // type:object size:0xD scope:local align:4 +@3674 = .rodata:0x80484EB4; // type:object size:0xB scope:local align:4 +@3676 = .rodata:0x80484EC0; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x80484ECC; // type:object size:0x11 scope:local align:4 +@3680 = .rodata:0x80484EE0; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x80484EEC; // type:object size:0x9 scope:local align:4 +@3685 = .rodata:0x80484EF8; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x80484F04; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x80484F10; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x80484F1C; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x80484F30; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x80484F40; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x80484F4C; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80484F5C; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x80484F6C; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x80484F7C; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x80484F8C; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x80484F98; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80484FA4; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x80484FBC; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80484FCC; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x80484FDC; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x80484FEC; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80484FFC; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048500C; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048501C; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048502C; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048503C; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80485050; // type:label scope:local +@3510 = .rodata:0x80485050; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x8048505C; // type:object size:0x15 scope:local align:4 +@3539 = .rodata:0x80485074; // type:object size:0xF scope:local align:4 data:string +@3540 = .rodata:0x80485084; // type:object size:0xB scope:local align:4 +@3544 = .rodata:0x80485090; // type:object size:0xD scope:local align:4 +@3580 = .rodata:0x804850A0; // type:object size:0x13 scope:local align:4 data:string +@3581 = .rodata:0x804850B4; // type:object size:0x13 scope:local align:4 data:string +@3584 = .rodata:0x804850C8; // type:object size:0xF scope:local align:4 data:string +@3585 = .rodata:0x804850D8; // type:object size:0xE scope:local align:4 data:string +@3591 = .rodata:0x804850E8; // type:object size:0xD scope:local align:4 data:string +@3644 = .rodata:0x804850F8; // type:object size:0xD scope:local align:4 +@3646 = .rodata:0x80485108; // type:object size:0xD scope:local align:4 +@3647 = .rodata:0x80485118; // type:object size:0xB scope:local align:4 +@3649 = .rodata:0x80485124; // type:object size:0xF scope:local align:4 +@3651 = .rodata:0x80485134; // type:object size:0x1F scope:local align:4 +@3653 = .rodata:0x80485154; // type:object size:0x13 scope:local align:4 +@3655 = .rodata:0x80485168; // type:object size:0x13 scope:local align:4 +@3657 = .rodata:0x8048517C; // type:object size:0x12 scope:local align:4 +@3658 = .rodata:0x80485190; // type:object size:0x11 scope:local align:4 +@3663 = .rodata:0x804851A4; // type:object size:0xB scope:local align:4 +@3664 = .rodata:0x804851B0; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x804851C0; // type:object size:0xB scope:local align:4 +@3669 = .rodata:0x804851CC; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x804851D8; // type:object size:0x11 scope:local align:4 +@3673 = .rodata:0x804851EC; // type:object size:0x9 scope:local align:4 +@3675 = .rodata:0x804851F8; // type:object size:0x9 scope:local align:4 +@3678 = .rodata:0x80485204; // type:object size:0x9 scope:local align:4 +@3680 = .rodata:0x80485210; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x8048521C; // type:object size:0xB scope:local align:4 +@3683 = .rodata:0x80485228; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x8048523C; // type:object size:0xD scope:local align:4 +@3685 = .rodata:0x8048524C; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80485258; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x80485268; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x80485278; // type:object size:0xF scope:local align:4 +@3689 = .rodata:0x80485288; // type:object size:0xF scope:local align:4 +@3691 = .rodata:0x80485298; // type:object size:0x9 scope:local align:4 +@3693 = .rodata:0x804852A4; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x804852B0; // type:object size:0x17 scope:local align:4 +@3696 = .rodata:0x804852C8; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x804852D8; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x804852E8; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x804852F8; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x80485308; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x80485318; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x80485328; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80485338; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80485348; // type:object size:0xF scope:local align:4 +@4610 = .rodata:0x80485358; // type:object size:0xA scope:local align:4 data:string +@3689 = .rodata:0x80485368; // type:object size:0x9 scope:local align:4 data:string +@3690 = .rodata:0x80485374; // type:object size:0xB scope:local align:4 data:string +@3854 = .rodata:0x80485380; // type:object size:0xA scope:local align:4 data:string +@3523 = .rodata:0x80485390; // type:object size:0x11 scope:local align:4 +@3533 = .rodata:0x804853A4; // type:object size:0xC scope:local align:4 data:4byte +@3563 = .rodata:0x804853B0; // type:object size:0xC scope:local align:4 data:4byte +@3609 = .rodata:0x804853BC; // type:object size:0xE scope:local align:4 data:string +@3610 = .rodata:0x804853CC; // type:object size:0x9 scope:local align:4 data:string +@3970 = .rodata:0x804853D8; // type:object size:0xC scope:local align:4 data:4byte +@3601 = .rodata:0x804853E8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804853F8; // type:label scope:local +@3510 = .rodata:0x804853F8; // type:object size:0xF scope:local align:4 data:string +@3523 = .rodata:0x80485408; // type:object size:0x15 scope:local align:4 +@3544 = .rodata:0x80485420; // type:object size:0xB scope:local align:4 data:string +@3545 = .rodata:0x8048542C; // type:object size:0xD scope:local align:4 data:string +@3559 = .rodata:0x8048543C; // type:object size:0x13 scope:local align:4 +@3585 = .rodata:0x80485450; // type:object size:0xF scope:local align:4 data:string +@3586 = .rodata:0x80485460; // type:object size:0x9 scope:local align:4 +@3590 = .rodata:0x8048546C; // type:object size:0xF scope:local align:4 +@3593 = .rodata:0x8048547C; // type:object size:0xD scope:local align:4 +@3596 = .rodata:0x8048548C; // type:object size:0x9 scope:local align:4 +@3599 = .rodata:0x80485498; // type:object size:0x9 scope:local align:4 +@3634 = .rodata:0x804854A4; // type:object size:0x13 scope:local align:4 data:string +@3635 = .rodata:0x804854B8; // type:object size:0x13 scope:local align:4 data:string +@3637 = .rodata:0x804854CC; // type:object size:0xF scope:local align:4 data:string +@3638 = .rodata:0x804854DC; // type:object size:0xE scope:local align:4 data:string +@3644 = .rodata:0x804854EC; // type:object size:0xD scope:local align:4 data:string +@3697 = .rodata:0x804854FC; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x8048550C; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x8048551C; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x80485528; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x80485538; // type:object size:0x1F scope:local align:4 +@3704 = .rodata:0x80485558; // type:object size:0x13 scope:local align:4 +@3706 = .rodata:0x8048556C; // type:object size:0x13 scope:local align:4 +@3708 = .rodata:0x80485580; // type:object size:0x12 scope:local align:4 +@3709 = .rodata:0x80485594; // type:object size:0x11 scope:local align:4 +@3714 = .rodata:0x804855A8; // type:object size:0xB scope:local align:4 +@3715 = .rodata:0x804855B4; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x804855C4; // type:object size:0xB scope:local align:4 +@3718 = .rodata:0x804855D0; // type:object size:0xB scope:local align:4 +@3720 = .rodata:0x804855DC; // type:object size:0x11 scope:local align:4 +@3722 = .rodata:0x804855F0; // type:object size:0x9 scope:local align:4 +@3724 = .rodata:0x804855FC; // type:object size:0x9 scope:local align:4 +@3727 = .rodata:0x80485608; // type:object size:0x9 scope:local align:4 +@3729 = .rodata:0x80485614; // type:object size:0x9 scope:local align:4 +@3731 = .rodata:0x80485620; // type:object size:0xB scope:local align:4 +@3733 = .rodata:0x8048562C; // type:object size:0x11 scope:local align:4 +@3734 = .rodata:0x80485640; // type:object size:0xD scope:local align:4 +@3735 = .rodata:0x80485650; // type:object size:0xB scope:local align:4 +@3736 = .rodata:0x8048565C; // type:object size:0xD scope:local align:4 +@3737 = .rodata:0x8048566C; // type:object size:0xD scope:local align:4 +@3738 = .rodata:0x8048567C; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x8048568C; // type:object size:0xF scope:local align:4 +@3741 = .rodata:0x8048569C; // type:object size:0x9 scope:local align:4 +@3743 = .rodata:0x804856A8; // type:object size:0x9 scope:local align:4 +@3744 = .rodata:0x804856B4; // type:object size:0x17 scope:local align:4 +@3745 = .rodata:0x804856CC; // type:object size:0xD scope:local align:4 +@3747 = .rodata:0x804856DC; // type:object size:0xD scope:local align:4 +@3748 = .rodata:0x804856EC; // type:object size:0xF scope:local align:4 +@3749 = .rodata:0x804856FC; // type:object size:0xF scope:local align:4 +@3750 = .rodata:0x8048570C; // type:object size:0xF scope:local align:4 +@3751 = .rodata:0x8048571C; // type:object size:0xF scope:local align:4 +@3752 = .rodata:0x8048572C; // type:object size:0xF scope:local align:4 +@3753 = .rodata:0x8048573C; // type:object size:0xF scope:local align:4 +@3754 = .rodata:0x8048574C; // type:object size:0xF scope:local align:4 +@4272 = .rodata:0x80485760; // type:object size:0xA scope:local align:4 data:string +@3520 = .rodata:0x80485770; // type:object size:0x15 scope:local align:4 +@3997 = .rodata:0x80485788; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80485798; // type:label scope:local +@3517 = .rodata:0x80485798; // type:object size:0xC scope:local align:4 data:string +@3530 = .rodata:0x804857A4; // type:object size:0x11 scope:local align:4 +@3552 = .rodata:0x804857B8; // type:object size:0x10 scope:local align:4 data:string +@3553 = .rodata:0x804857C8; // type:object size:0xE scope:local align:4 data:string +@3554 = .rodata:0x804857D8; // type:object size:0xD scope:local align:4 data:string +@3568 = .rodata:0x804857E8; // type:object size:0xF scope:local align:4 +@3590 = .rodata:0x804857F8; // type:object size:0xF scope:local align:4 data:string +@3591 = .rodata:0x80485808; // type:object size:0x13 scope:local align:4 +@3628 = .rodata:0x8048581C; // type:object size:0x13 scope:local align:4 data:string +@3629 = .rodata:0x80485830; // type:object size:0x13 scope:local align:4 data:string +@3632 = .rodata:0x80485844; // type:object size:0xF scope:local align:4 data:string +@3633 = .rodata:0x80485854; // type:object size:0xE scope:local align:4 data:string +@3639 = .rodata:0x80485864; // type:object size:0xD scope:local align:4 data:string +@3692 = .rodata:0x80485874; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80485884; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x80485894; // type:object size:0xB scope:local align:4 +@3697 = .rodata:0x804858A0; // type:object size:0xF scope:local align:4 +@3699 = .rodata:0x804858B0; // type:object size:0x1F scope:local align:4 +@3700 = .rodata:0x804858D0; // type:object size:0x13 scope:local align:4 +@3702 = .rodata:0x804858E4; // type:object size:0x13 scope:local align:4 +@3704 = .rodata:0x804858F8; // type:object size:0x12 scope:local align:4 +@3705 = .rodata:0x8048590C; // type:object size:0x11 scope:local align:4 +@3710 = .rodata:0x80485920; // type:object size:0xB scope:local align:4 +@3711 = .rodata:0x8048592C; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x8048593C; // type:object size:0xB scope:local align:4 +@3716 = .rodata:0x80485948; // type:object size:0xB scope:local align:4 +@3718 = .rodata:0x80485954; // type:object size:0x11 scope:local align:4 +@3720 = .rodata:0x80485968; // type:object size:0x9 scope:local align:4 +@3722 = .rodata:0x80485974; // type:object size:0x9 scope:local align:4 +@3725 = .rodata:0x80485980; // type:object size:0x9 scope:local align:4 +@3727 = .rodata:0x8048598C; // type:object size:0x9 scope:local align:4 +@3729 = .rodata:0x80485998; // type:object size:0xB scope:local align:4 +@3731 = .rodata:0x804859A4; // type:object size:0x11 scope:local align:4 +@3732 = .rodata:0x804859B8; // type:object size:0xD scope:local align:4 +@3733 = .rodata:0x804859C8; // type:object size:0xB scope:local align:4 +@3734 = .rodata:0x804859D4; // type:object size:0xD scope:local align:4 +@3735 = .rodata:0x804859E4; // type:object size:0xD scope:local align:4 +@3736 = .rodata:0x804859F4; // type:object size:0xF scope:local align:4 +@3737 = .rodata:0x80485A04; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x80485A14; // type:object size:0x9 scope:local align:4 +@3741 = .rodata:0x80485A20; // type:object size:0x9 scope:local align:4 +@3743 = .rodata:0x80485A2C; // type:object size:0x17 scope:local align:4 +@3744 = .rodata:0x80485A44; // type:object size:0xD scope:local align:4 +@3746 = .rodata:0x80485A54; // type:object size:0xD scope:local align:4 +@3747 = .rodata:0x80485A64; // type:object size:0xF scope:local align:4 +@3748 = .rodata:0x80485A74; // type:object size:0xF scope:local align:4 +@3749 = .rodata:0x80485A84; // type:object size:0xF scope:local align:4 +@3750 = .rodata:0x80485A94; // type:object size:0xF scope:local align:4 +@3751 = .rodata:0x80485AA4; // type:object size:0xF scope:local align:4 +@3752 = .rodata:0x80485AB4; // type:object size:0xF scope:local align:4 +@3753 = .rodata:0x80485AC4; // type:object size:0xF scope:local align:4 +@3665 = .rodata:0x80485AD8; // type:object size:0x9 scope:local align:4 data:string +@3666 = .rodata:0x80485AE4; // type:object size:0xB scope:local align:4 data:string +@3516 = .rodata:0x80485AF0; // type:object size:0x15 scope:local align:4 +@3538 = .rodata:0x80485B08; // type:object size:0xF scope:local align:4 data:string +@3539 = .rodata:0x80485B18; // type:object size:0xD scope:local align:4 +@4599 = .rodata:0x80485B28; // type:object size:0xA scope:local align:4 data:string +@3967 = .rodata:0x80485B38; // type:object size:0x9 scope:local align:4 data:string +@3968 = .rodata:0x80485B44; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80485B50; // type:label scope:local +@3510 = .rodata:0x80485B50; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x80485B5C; // type:object size:0x13 scope:local align:4 +@3542 = .rodata:0x80485B70; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x80485B80; // type:object size:0xB scope:local align:4 +@3547 = .rodata:0x80485B8C; // type:object size:0xB scope:local align:4 +@3549 = .rodata:0x80485B98; // type:object size:0xF scope:local align:4 +@3552 = .rodata:0x80485BA8; // type:object size:0xB scope:local align:4 +@3554 = .rodata:0x80485BB4; // type:object size:0xD scope:local align:4 +@3590 = .rodata:0x80485BC4; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x80485BD8; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x80485BEC; // type:object size:0xF scope:local align:4 data:string +@3593 = .rodata:0x80485BFC; // type:object size:0xE scope:local align:4 data:string +@3599 = .rodata:0x80485C0C; // type:object size:0xD scope:local align:4 data:string +@3652 = .rodata:0x80485C1C; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x80485C2C; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x80485C3C; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x80485C48; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x80485C58; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x80485C78; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x80485C8C; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x80485CA0; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x80485CB4; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x80485CC8; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80485CD4; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x80485CE4; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x80485CF0; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x80485CFC; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x80485D10; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x80485D1C; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x80485D28; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x80485D34; // type:object size:0x9 scope:local align:4 +@3691 = .rodata:0x80485D40; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x80485D4C; // type:object size:0x11 scope:local align:4 +@3693 = .rodata:0x80485D60; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80485D70; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x80485D7C; // type:object size:0xD scope:local align:4 +@3696 = .rodata:0x80485D8C; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x80485D9C; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x80485DAC; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x80485DBC; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80485DC8; // type:object size:0x9 scope:local align:4 +@3703 = .rodata:0x80485DD4; // type:object size:0x17 scope:local align:4 +@3704 = .rodata:0x80485DEC; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x80485DFC; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x80485E0C; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80485E1C; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80485E2C; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x80485E3C; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80485E4C; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x80485E5C; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x80485E6C; // type:object size:0xF scope:local align:4 +@4794 = .rodata:0x80485E80; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80485E90; // type:label scope:local +@3510 = .rodata:0x80485E90; // type:object size:0xC scope:local align:4 data:string +@3520 = .rodata:0x80485E9C; // type:object size:0xF scope:local align:4 +@3554 = .rodata:0x80485EAC; // type:object size:0xF scope:local align:4 data:string +@3555 = .rodata:0x80485EBC; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x80485ECC; // type:object size:0xB scope:local align:4 +@3560 = .rodata:0x80485ED8; // type:object size:0x9 scope:local align:4 +@3562 = .rodata:0x80485EE4; // type:object size:0x9 scope:local align:4 data:string +@3565 = .rodata:0x80485EF0; // type:object size:0xB scope:local align:4 data:string +@3600 = .rodata:0x80485EFC; // type:object size:0x13 scope:local align:4 data:string +@3601 = .rodata:0x80485F10; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x80485F24; // type:object size:0xF scope:local align:4 data:string +@3604 = .rodata:0x80485F34; // type:object size:0xE scope:local align:4 data:string +@3610 = .rodata:0x80485F44; // type:object size:0xD scope:local align:4 data:string +@3663 = .rodata:0x80485F54; // type:object size:0xD scope:local align:4 +@3666 = .rodata:0x80485F64; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x80485F74; // type:object size:0xB scope:local align:4 +@3669 = .rodata:0x80485F80; // type:object size:0xF scope:local align:4 +@3671 = .rodata:0x80485F90; // type:object size:0x1F scope:local align:4 +@3673 = .rodata:0x80485FB0; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x80485FC4; // type:object size:0x13 scope:local align:4 +@3677 = .rodata:0x80485FD8; // type:object size:0x12 scope:local align:4 +@3678 = .rodata:0x80485FEC; // type:object size:0x11 scope:local align:4 +@3683 = .rodata:0x80486000; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x8048600C; // type:object size:0xD scope:local align:4 +@3686 = .rodata:0x8048601C; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x80486028; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x80486034; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x80486048; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80486054; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x80486060; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x8048606C; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x80486078; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x80486084; // type:object size:0x11 scope:local align:4 +@3704 = .rodata:0x80486098; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x804860A8; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x804860B4; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x804860C4; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x804860D4; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x804860E4; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x804860F4; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x80486100; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x8048610C; // type:object size:0x17 scope:local align:4 +@3716 = .rodata:0x80486124; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x80486134; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x80486144; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80486154; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80486164; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80486174; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x80486184; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x80486194; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x804861A4; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x804861B8; // type:label scope:local +@3510 = .rodata:0x804861B8; // type:object size:0xF scope:local align:4 data:string +@3520 = .rodata:0x804861C8; // type:object size:0x13 scope:local align:4 +@3555 = .rodata:0x804861DC; // type:object size:0xF scope:local align:4 data:string +@3556 = .rodata:0x804861EC; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x804861FC; // type:object size:0xD scope:local align:4 +@3561 = .rodata:0x8048620C; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x8048621C; // type:object size:0x9 scope:local align:4 +@3565 = .rodata:0x80486228; // type:object size:0x9 scope:local align:4 data:string +@3567 = .rodata:0x80486234; // type:object size:0xB scope:local align:4 data:string +@3602 = .rodata:0x80486240; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x80486254; // type:object size:0x13 scope:local align:4 data:string +@3605 = .rodata:0x80486268; // type:object size:0xF scope:local align:4 data:string +@3606 = .rodata:0x80486278; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x80486288; // type:object size:0xD scope:local align:4 data:string +@3665 = .rodata:0x80486298; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x804862A8; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x804862B8; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x804862C4; // type:object size:0xF scope:local align:4 +@3673 = .rodata:0x804862D4; // type:object size:0x1F scope:local align:4 +@3675 = .rodata:0x804862F4; // type:object size:0x13 scope:local align:4 +@3677 = .rodata:0x80486308; // type:object size:0x13 scope:local align:4 +@3679 = .rodata:0x8048631C; // type:object size:0x12 scope:local align:4 +@3680 = .rodata:0x80486330; // type:object size:0x11 scope:local align:4 +@3685 = .rodata:0x80486344; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80486350; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x80486360; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048636C; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x80486378; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x8048638C; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80486398; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x804863A4; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x804863B0; // type:object size:0x9 scope:local align:4 +@3703 = .rodata:0x804863BC; // type:object size:0xB scope:local align:4 +@3705 = .rodata:0x804863C8; // type:object size:0x11 scope:local align:4 +@3706 = .rodata:0x804863DC; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x804863EC; // type:object size:0xB scope:local align:4 +@3708 = .rodata:0x804863F8; // type:object size:0xD scope:local align:4 +@3709 = .rodata:0x80486408; // type:object size:0xD scope:local align:4 +@3710 = .rodata:0x80486418; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80486428; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x80486438; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x80486444; // type:object size:0x9 scope:local align:4 +@3717 = .rodata:0x80486450; // type:object size:0x17 scope:local align:4 +@3718 = .rodata:0x80486468; // type:object size:0xD scope:local align:4 +@3719 = .rodata:0x80486478; // type:object size:0xD scope:local align:4 +@3720 = .rodata:0x80486488; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80486498; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x804864A8; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x804864B8; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x804864C8; // type:object size:0xF scope:local align:4 +@3725 = .rodata:0x804864D8; // type:object size:0xF scope:local align:4 +@3726 = .rodata:0x804864E8; // type:object size:0xF scope:local align:4 +@4348 = .rodata:0x804864F8; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80486508; // type:label scope:local +@3513 = .rodata:0x80486508; // type:object size:0x10 scope:local align:4 data:string +@3526 = .rodata:0x80486518; // type:object size:0x15 scope:local align:4 +@3546 = .rodata:0x80486530; // type:object size:0x10 scope:local align:4 data:string +@3564 = .rodata:0x80486540; // type:object size:0x13 scope:local align:4 +@3599 = .rodata:0x80486554; // type:object size:0xF scope:local align:4 data:string +@3600 = .rodata:0x80486564; // type:object size:0xD scope:local align:4 +@3603 = .rodata:0x80486574; // type:object size:0x9 scope:local align:4 +@3604 = .rodata:0x80486580; // type:object size:0x9 scope:local align:4 +@3605 = .rodata:0x8048658C; // type:object size:0x9 scope:local align:4 +@3607 = .rodata:0x80486598; // type:object size:0x9 scope:local align:4 data:string +@3610 = .rodata:0x804865A4; // type:object size:0xB scope:local align:4 data:string +@3645 = .rodata:0x804865B0; // type:object size:0x13 scope:local align:4 data:string +@3646 = .rodata:0x804865C4; // type:object size:0x13 scope:local align:4 data:string +@3648 = .rodata:0x804865D8; // type:object size:0xF scope:local align:4 data:string +@3649 = .rodata:0x804865E8; // type:object size:0xE scope:local align:4 data:string +@3655 = .rodata:0x804865F8; // type:object size:0xD scope:local align:4 data:string +@3708 = .rodata:0x80486608; // type:object size:0xD scope:local align:4 +@3711 = .rodata:0x80486618; // type:object size:0xD scope:local align:4 +@3712 = .rodata:0x80486628; // type:object size:0xB scope:local align:4 +@3714 = .rodata:0x80486634; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x80486644; // type:object size:0x1F scope:local align:4 +@3718 = .rodata:0x80486664; // type:object size:0x13 scope:local align:4 +@3720 = .rodata:0x80486678; // type:object size:0x13 scope:local align:4 +@3722 = .rodata:0x8048668C; // type:object size:0x12 scope:local align:4 +@3723 = .rodata:0x804866A0; // type:object size:0x11 scope:local align:4 +@3728 = .rodata:0x804866B4; // type:object size:0xB scope:local align:4 +@3729 = .rodata:0x804866C0; // type:object size:0xD scope:local align:4 +@3731 = .rodata:0x804866D0; // type:object size:0xB scope:local align:4 +@3733 = .rodata:0x804866DC; // type:object size:0xB scope:local align:4 +@3735 = .rodata:0x804866E8; // type:object size:0x11 scope:local align:4 +@3737 = .rodata:0x804866FC; // type:object size:0x9 scope:local align:4 +@3739 = .rodata:0x80486708; // type:object size:0x9 scope:local align:4 +@3742 = .rodata:0x80486714; // type:object size:0x9 scope:local align:4 +@3744 = .rodata:0x80486720; // type:object size:0x9 scope:local align:4 +@3746 = .rodata:0x8048672C; // type:object size:0xB scope:local align:4 +@3748 = .rodata:0x80486738; // type:object size:0x11 scope:local align:4 +@3749 = .rodata:0x8048674C; // type:object size:0xD scope:local align:4 +@3750 = .rodata:0x8048675C; // type:object size:0xB scope:local align:4 +@3751 = .rodata:0x80486768; // type:object size:0xD scope:local align:4 +@3752 = .rodata:0x80486778; // type:object size:0xD scope:local align:4 +@3753 = .rodata:0x80486788; // type:object size:0xF scope:local align:4 +@3754 = .rodata:0x80486798; // type:object size:0xF scope:local align:4 +@3756 = .rodata:0x804867A8; // type:object size:0x9 scope:local align:4 +@3758 = .rodata:0x804867B4; // type:object size:0x9 scope:local align:4 +@3760 = .rodata:0x804867C0; // type:object size:0x17 scope:local align:4 +@3761 = .rodata:0x804867D8; // type:object size:0xD scope:local align:4 +@3762 = .rodata:0x804867E8; // type:object size:0xD scope:local align:4 +@3763 = .rodata:0x804867F8; // type:object size:0xF scope:local align:4 +@3764 = .rodata:0x80486808; // type:object size:0xF scope:local align:4 +@3765 = .rodata:0x80486818; // type:object size:0xF scope:local align:4 +@3766 = .rodata:0x80486828; // type:object size:0xF scope:local align:4 +@3767 = .rodata:0x80486838; // type:object size:0xF scope:local align:4 +@3768 = .rodata:0x80486848; // type:object size:0xF scope:local align:4 +@3769 = .rodata:0x80486858; // type:object size:0xF scope:local align:4 +@4614 = .rodata:0x80486868; // type:object size:0xD scope:local align:4 data:string +@3936 = .rodata:0x80486878; // type:object size:0x9 scope:local align:4 data:string +@3937 = .rodata:0x80486884; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80486890; // type:label scope:local +@3510 = .rodata:0x80486890; // type:object size:0xD scope:local align:4 data:string +@3516 = .rodata:0x804868A0; // type:object size:0x15 scope:local align:4 +@3551 = .rodata:0x804868B8; // type:object size:0xF scope:local align:4 data:string +@3552 = .rodata:0x804868C8; // type:object size:0xD scope:local align:4 +@3556 = .rodata:0x804868D8; // type:object size:0xD scope:local align:4 +@3558 = .rodata:0x804868E8; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x804868F8; // type:object size:0xD scope:local align:4 +@3561 = .rodata:0x80486908; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x80486918; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x80486928; // type:object size:0xC scope:local align:4 +@3569 = .rodata:0x80486934; // type:object size:0xC scope:local align:4 +@3571 = .rodata:0x80486940; // type:object size:0xC scope:local align:4 +@3573 = .rodata:0x8048694C; // type:object size:0xC scope:local align:4 +@3575 = .rodata:0x80486958; // type:object size:0xB scope:local align:4 +@3576 = .rodata:0x80486964; // type:object size:0xF scope:local align:4 +@3578 = .rodata:0x80486974; // type:object size:0xF scope:local align:4 +@3580 = .rodata:0x80486984; // type:object size:0xF scope:local align:4 +@3616 = .rodata:0x80486994; // type:object size:0x13 scope:local align:4 data:string +@3617 = .rodata:0x804869A8; // type:object size:0x13 scope:local align:4 data:string +@3619 = .rodata:0x804869BC; // type:object size:0xF scope:local align:4 data:string +@3620 = .rodata:0x804869CC; // type:object size:0xE scope:local align:4 data:string +@3625 = .rodata:0x804869DC; // type:object size:0xD scope:local align:4 data:string +@3677 = .rodata:0x804869EC; // type:object size:0xD scope:local align:4 +@3678 = .rodata:0x804869FC; // type:object size:0xD scope:local align:4 +@3679 = .rodata:0x80486A0C; // type:object size:0xB scope:local align:4 +@3681 = .rodata:0x80486A18; // type:object size:0xF scope:local align:4 +@3683 = .rodata:0x80486A28; // type:object size:0x1F scope:local align:4 +@3685 = .rodata:0x80486A48; // type:object size:0x13 scope:local align:4 +@3687 = .rodata:0x80486A5C; // type:object size:0x13 scope:local align:4 +@3689 = .rodata:0x80486A70; // type:object size:0x12 scope:local align:4 +@3690 = .rodata:0x80486A84; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x80486A98; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x80486AA4; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x80486AB4; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x80486AC0; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x80486ACC; // type:object size:0x11 scope:local align:4 +@3702 = .rodata:0x80486AE0; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x80486AEC; // type:object size:0x9 scope:local align:4 +@3707 = .rodata:0x80486AF8; // type:object size:0x9 scope:local align:4 +@3709 = .rodata:0x80486B04; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x80486B10; // type:object size:0xB scope:local align:4 +@3712 = .rodata:0x80486B1C; // type:object size:0x11 scope:local align:4 +@3713 = .rodata:0x80486B30; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x80486B40; // type:object size:0xB scope:local align:4 +@3715 = .rodata:0x80486B4C; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x80486B5C; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x80486B6C; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80486B7C; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80486B8C; // type:object size:0x9 scope:local align:4 +@3722 = .rodata:0x80486B98; // type:object size:0x9 scope:local align:4 +@3724 = .rodata:0x80486BA4; // type:object size:0x17 scope:local align:4 +@3725 = .rodata:0x80486BBC; // type:object size:0xD scope:local align:4 +@3727 = .rodata:0x80486BCC; // type:object size:0xD scope:local align:4 +@3728 = .rodata:0x80486BDC; // type:object size:0xF scope:local align:4 +@3729 = .rodata:0x80486BEC; // type:object size:0xF scope:local align:4 +@3730 = .rodata:0x80486BFC; // type:object size:0xF scope:local align:4 +@3731 = .rodata:0x80486C0C; // type:object size:0xF scope:local align:4 +@3732 = .rodata:0x80486C1C; // type:object size:0xF scope:local align:4 +@3733 = .rodata:0x80486C2C; // type:object size:0xF scope:local align:4 +@3734 = .rodata:0x80486C3C; // type:object size:0xF scope:local align:4 +@3954 = .rodata:0x80486C50; // type:object size:0x9 scope:local align:4 data:string +@3955 = .rodata:0x80486C5C; // type:object size:0x9 scope:local align:4 data:string +@3614 = .rodata:0x80486C68; // type:object size:0x9 scope:local align:4 data:string +@3615 = .rodata:0x80486C74; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80486C80; // type:label scope:local +@3517 = .rodata:0x80486C80; // type:object size:0xC scope:local align:4 data:string +@3523 = .rodata:0x80486C8C; // type:object size:0x17 scope:local align:4 +@3596 = .rodata:0x80486CA4; // type:object size:0xC scope:local align:4 data:string +@3597 = .rodata:0x80486CB0; // type:object size:0x9 scope:local align:4 data:string +@3598 = .rodata:0x80486CBC; // type:object size:0x11 scope:local align:4 data:string +@3519 = .rodata:0x80486CD0; // type:object size:0x11 scope:local align:4 +@3516 = .rodata:0x80486CE8; // type:object size:0x11 scope:local align:4 +@3538 = .rodata:0x80486CFC; // type:object size:0xF scope:local align:4 data:string +@3539 = .rodata:0x80486D0C; // type:object size:0x11 scope:local align:4 +...rodata.0 = .rodata:0x80486D20; // type:label scope:local +@3529 = .rodata:0x80486D20; // type:object size:0x11 scope:local align:4 data:string +@3659 = .rodata:0x80486D34; // type:object size:0xA scope:local align:4 data:string +@3660 = .rodata:0x80486D40; // type:object size:0xC scope:local align:4 data:string +@3661 = .rodata:0x80486D4C; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80486D60; // type:label scope:local +@3510 = .rodata:0x80486D60; // type:object size:0xF scope:local align:4 data:string +@3516 = .rodata:0x80486D70; // type:object size:0x15 scope:local align:4 +@3540 = .rodata:0x80486D88; // type:object size:0xF scope:local align:4 data:string +@3541 = .rodata:0x80486D98; // type:object size:0x11 scope:local align:4 +@3545 = .rodata:0x80486DAC; // type:object size:0xD scope:local align:4 +@3547 = .rodata:0x80486DBC; // type:object size:0x9 scope:local align:4 +@3582 = .rodata:0x80486DC8; // type:object size:0x13 scope:local align:4 data:string +@3583 = .rodata:0x80486DDC; // type:object size:0x13 scope:local align:4 data:string +@3586 = .rodata:0x80486DF0; // type:object size:0xF scope:local align:4 data:string +@3587 = .rodata:0x80486E00; // type:object size:0xE scope:local align:4 data:string +@3593 = .rodata:0x80486E10; // type:object size:0xD scope:local align:4 data:string +@3647 = .rodata:0x80486E20; // type:object size:0xD scope:local align:4 +@3650 = .rodata:0x80486E30; // type:object size:0xD scope:local align:4 +@3651 = .rodata:0x80486E40; // type:object size:0xB scope:local align:4 +@3653 = .rodata:0x80486E4C; // type:object size:0xF scope:local align:4 +@3655 = .rodata:0x80486E5C; // type:object size:0x1F scope:local align:4 +@3657 = .rodata:0x80486E7C; // type:object size:0x13 scope:local align:4 +@3659 = .rodata:0x80486E90; // type:object size:0x13 scope:local align:4 +@3661 = .rodata:0x80486EA4; // type:object size:0x12 scope:local align:4 +@3662 = .rodata:0x80486EB8; // type:object size:0x11 scope:local align:4 +@3667 = .rodata:0x80486ECC; // type:object size:0xB scope:local align:4 +@3668 = .rodata:0x80486ED8; // type:object size:0xD scope:local align:4 +@3670 = .rodata:0x80486EE8; // type:object size:0xB scope:local align:4 +@3672 = .rodata:0x80486EF4; // type:object size:0xB scope:local align:4 +@3674 = .rodata:0x80486F00; // type:object size:0x11 scope:local align:4 +@3676 = .rodata:0x80486F14; // type:object size:0x9 scope:local align:4 +@3678 = .rodata:0x80486F20; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x80486F2C; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x80486F38; // type:object size:0x9 scope:local align:4 +@3685 = .rodata:0x80486F44; // type:object size:0xB scope:local align:4 +@3687 = .rodata:0x80486F50; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x80486F64; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x80486F74; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x80486F80; // type:object size:0xD scope:local align:4 +@3691 = .rodata:0x80486F90; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x80486FA0; // type:object size:0xF scope:local align:4 +@3693 = .rodata:0x80486FB0; // type:object size:0xF scope:local align:4 +@3695 = .rodata:0x80486FC0; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x80486FCC; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x80486FD8; // type:object size:0x17 scope:local align:4 +@3700 = .rodata:0x80486FF0; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x80487000; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x80487010; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80487020; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80487030; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80487040; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x80487050; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80487060; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80487070; // type:object size:0xF scope:local align:4 +@3515 = .rodata:0x80487080; // type:object size:0x31 scope:local align:4 data:string +@3523 = .rodata:0x804870B4; // type:object size:0x1B scope:local align:4 +@3546 = .rodata:0x804870D0; // type:object size:0xA scope:local align:4 data:string +@3751 = .rodata:0x804870DC; // type:object size:0xD scope:local align:4 data:string +@3752 = .rodata:0x804870EC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804870F8; // type:label scope:local +@3510 = .rodata:0x804870F8; // type:object size:0xD scope:local align:4 data:string +@3516 = .rodata:0x80487108; // type:object size:0x15 scope:local align:4 +@3540 = .rodata:0x80487120; // type:object size:0xF scope:local align:4 data:string +@3541 = .rodata:0x80487130; // type:object size:0xB scope:local align:4 +@3545 = .rodata:0x8048713C; // type:object size:0xF scope:local align:4 +@3547 = .rodata:0x8048714C; // type:object size:0xD scope:local align:4 +@3582 = .rodata:0x8048715C; // type:object size:0x13 scope:local align:4 data:string +@3583 = .rodata:0x80487170; // type:object size:0x13 scope:local align:4 data:string +@3586 = .rodata:0x80487184; // type:object size:0xF scope:local align:4 data:string +@3587 = .rodata:0x80487194; // type:object size:0xE scope:local align:4 data:string +@3593 = .rodata:0x804871A4; // type:object size:0xD scope:local align:4 data:string +@3646 = .rodata:0x804871B4; // type:object size:0xD scope:local align:4 +@3649 = .rodata:0x804871C4; // type:object size:0xD scope:local align:4 +@3650 = .rodata:0x804871D4; // type:object size:0xB scope:local align:4 +@3652 = .rodata:0x804871E0; // type:object size:0xF scope:local align:4 +@3654 = .rodata:0x804871F0; // type:object size:0x1F scope:local align:4 +@3656 = .rodata:0x80487210; // type:object size:0x13 scope:local align:4 +@3658 = .rodata:0x80487224; // type:object size:0x13 scope:local align:4 +@3660 = .rodata:0x80487238; // type:object size:0x12 scope:local align:4 +@3661 = .rodata:0x8048724C; // type:object size:0x11 scope:local align:4 +@3666 = .rodata:0x80487260; // type:object size:0xB scope:local align:4 +@3667 = .rodata:0x8048726C; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x8048727C; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80487288; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80487294; // type:object size:0x11 scope:local align:4 +@3675 = .rodata:0x804872A8; // type:object size:0x9 scope:local align:4 +@3677 = .rodata:0x804872B4; // type:object size:0x9 scope:local align:4 +@3680 = .rodata:0x804872C0; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x804872CC; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x804872D8; // type:object size:0xB scope:local align:4 +@3685 = .rodata:0x804872E4; // type:object size:0x11 scope:local align:4 +@3686 = .rodata:0x804872F8; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x80487308; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x80487314; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x80487324; // type:object size:0xD scope:local align:4 +@3690 = .rodata:0x80487334; // type:object size:0xF scope:local align:4 +@3691 = .rodata:0x80487344; // type:object size:0xF scope:local align:4 +@3693 = .rodata:0x80487354; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x80487360; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8048736C; // type:object size:0x17 scope:local align:4 +@3698 = .rodata:0x80487384; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x80487394; // type:object size:0xD scope:local align:4 +@3701 = .rodata:0x804873A4; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x804873B4; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x804873C4; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x804873D4; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x804873E4; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x804873F4; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x80487404; // type:object size:0xF scope:local align:4 +@4886 = .rodata:0x80487418; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80487428; // type:label scope:local +@3510 = .rodata:0x80487428; // type:object size:0xB scope:local align:4 data:string +@3511 = .rodata:0x80487434; // type:object size:0x21 scope:local align:4 data:string +@3512 = .rodata:0x80487458; // type:object size:0x21 scope:local align:4 data:string +@3518 = .rodata:0x8048747C; // type:object size:0x1B scope:local align:4 +@3547 = .rodata:0x80487498; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x804874A8; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x804874B8; // type:object size:0x9 scope:local align:4 +@3555 = .rodata:0x804874C4; // type:object size:0x11 scope:local align:4 +@3557 = .rodata:0x804874D8; // type:object size:0x11 scope:local align:4 +@3558 = .rodata:0x804874EC; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x804874FC; // type:object size:0xF scope:local align:4 +@3560 = .rodata:0x8048750C; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x8048751C; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x8048752C; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x80487540; // type:object size:0x13 scope:local align:4 data:string +@3600 = .rodata:0x80487554; // type:object size:0xF scope:local align:4 data:string +@3601 = .rodata:0x80487564; // type:object size:0xE scope:local align:4 data:string +@3607 = .rodata:0x80487574; // type:object size:0xD scope:local align:4 data:string +@3661 = .rodata:0x80487584; // type:object size:0xD scope:local align:4 +@3664 = .rodata:0x80487594; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x804875A4; // type:object size:0xB scope:local align:4 +@3667 = .rodata:0x804875B0; // type:object size:0xF scope:local align:4 +@3669 = .rodata:0x804875C0; // type:object size:0x1F scope:local align:4 +@3671 = .rodata:0x804875E0; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x804875F4; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x80487608; // type:object size:0x12 scope:local align:4 +@3676 = .rodata:0x8048761C; // type:object size:0x11 scope:local align:4 +@3681 = .rodata:0x80487630; // type:object size:0xB scope:local align:4 +@3682 = .rodata:0x8048763C; // type:object size:0xD scope:local align:4 +@3684 = .rodata:0x8048764C; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80487658; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x80487664; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x80487678; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x80487684; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80487690; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x8048769C; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x804876A8; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x804876B4; // type:object size:0x11 scope:local align:4 +@3701 = .rodata:0x804876C8; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x804876D8; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x804876E4; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x804876F4; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80487704; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80487714; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80487724; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x80487730; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x8048773C; // type:object size:0x17 scope:local align:4 +@3713 = .rodata:0x80487754; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x80487764; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x80487774; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80487784; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80487794; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x804877A4; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x804877B4; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x804877C4; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x804877D4; // type:object size:0xF scope:local align:4 +@3773 = .rodata:0x804877E4; // type:object size:0xB scope:local align:4 data:string +@3774 = .rodata:0x804877F0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80487800; // type:label scope:local +@3788 = .rodata:0x80487800; // type:object size:0xD scope:local align:4 data:string +@3941 = .rodata:0x80487810; // type:object size:0xC scope:local align:4 data:string +@3947 = .rodata:0x8048781C; // type:object size:0x9 scope:local align:4 data:string +@3948 = .rodata:0x80487828; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80487838; // type:label scope:local +@3521 = .rodata:0x80487838; // type:object size:0xF scope:local align:4 data:string +@3522 = .rodata:0x80487848; // type:object size:0x24 scope:local align:4 data:string +@3530 = .rodata:0x8048786C; // type:object size:0x17 scope:local align:4 +@3561 = .rodata:0x80487884; // type:object size:0xF scope:local align:4 data:string +@3562 = .rodata:0x80487894; // type:object size:0xE scope:local align:4 +@3566 = .rodata:0x804878A4; // type:object size:0xE scope:local align:4 +@3568 = .rodata:0x804878B4; // type:object size:0xE scope:local align:4 +@3571 = .rodata:0x804878C4; // type:object size:0xE scope:local align:4 +@3573 = .rodata:0x804878D4; // type:object size:0xE scope:local align:4 +@3574 = .rodata:0x804878E4; // type:object size:0xE scope:local align:4 +@3575 = .rodata:0x804878F4; // type:object size:0xD scope:local align:4 +@3578 = .rodata:0x80487904; // type:object size:0x9 scope:local align:4 +@3614 = .rodata:0x80487910; // type:object size:0x13 scope:local align:4 data:string +@3615 = .rodata:0x80487924; // type:object size:0x13 scope:local align:4 data:string +@3617 = .rodata:0x80487938; // type:object size:0xF scope:local align:4 data:string +@3618 = .rodata:0x80487948; // type:object size:0xE scope:local align:4 data:string +@3623 = .rodata:0x80487958; // type:object size:0xD scope:local align:4 data:string +@3676 = .rodata:0x80487968; // type:object size:0xD scope:local align:4 +@3679 = .rodata:0x80487978; // type:object size:0xD scope:local align:4 +@3680 = .rodata:0x80487988; // type:object size:0xB scope:local align:4 +@3681 = .rodata:0x80487994; // type:object size:0xF scope:local align:4 +@3683 = .rodata:0x804879A4; // type:object size:0x1F scope:local align:4 +@3685 = .rodata:0x804879C4; // type:object size:0x13 scope:local align:4 +@3687 = .rodata:0x804879D8; // type:object size:0x13 scope:local align:4 +@3689 = .rodata:0x804879EC; // type:object size:0x12 scope:local align:4 +@3690 = .rodata:0x80487A00; // type:object size:0x11 scope:local align:4 +@3695 = .rodata:0x80487A14; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x80487A20; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x80487A30; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x80487A3C; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x80487A48; // type:object size:0x11 scope:local align:4 +@3703 = .rodata:0x80487A5C; // type:object size:0x9 scope:local align:4 +@3705 = .rodata:0x80487A68; // type:object size:0x9 scope:local align:4 +@3707 = .rodata:0x80487A74; // type:object size:0x9 scope:local align:4 +@3709 = .rodata:0x80487A80; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x80487A8C; // type:object size:0xB scope:local align:4 +@3713 = .rodata:0x80487A98; // type:object size:0x11 scope:local align:4 +@3714 = .rodata:0x80487AAC; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x80487ABC; // type:object size:0xB scope:local align:4 +@3716 = .rodata:0x80487AC8; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x80487AD8; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x80487AE8; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80487AF8; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80487B08; // type:object size:0x9 scope:local align:4 +@3723 = .rodata:0x80487B14; // type:object size:0x9 scope:local align:4 +@3725 = .rodata:0x80487B20; // type:object size:0x17 scope:local align:4 +@3726 = .rodata:0x80487B38; // type:object size:0xD scope:local align:4 +@3728 = .rodata:0x80487B48; // type:object size:0xD scope:local align:4 +@3729 = .rodata:0x80487B58; // type:object size:0xF scope:local align:4 +@3730 = .rodata:0x80487B68; // type:object size:0xF scope:local align:4 +@3731 = .rodata:0x80487B78; // type:object size:0xF scope:local align:4 +@3732 = .rodata:0x80487B88; // type:object size:0xF scope:local align:4 +@3733 = .rodata:0x80487B98; // type:object size:0xF scope:local align:4 +@3734 = .rodata:0x80487BA8; // type:object size:0xF scope:local align:4 +@3735 = .rodata:0x80487BB8; // type:object size:0xF scope:local align:4 +@3776 = .rodata:0x80487BC8; // type:object size:0xF scope:local align:4 data:string +@3777 = .rodata:0x80487BD8; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x80487BE8; // type:object size:0x25 scope:local align:4 data:string +@3530 = .rodata:0x80487C10; // type:object size:0x15 scope:local align:4 +@3776 = .rodata:0x80487C28; // type:object size:0xC scope:local align:4 data:string +@3777 = .rodata:0x80487C34; // type:object size:0x9 scope:local align:4 data:string +@3968 = .rodata:0x80487C40; // type:object size:0x9 scope:local align:4 data:string +@3969 = .rodata:0x80487C4C; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80487C58; // type:label scope:local +@3510 = .rodata:0x80487C58; // type:object size:0xD scope:local align:4 data:string +@3511 = .rodata:0x80487C68; // type:object size:0x28 scope:local align:4 data:string +@3517 = .rodata:0x80487C90; // type:object size:0x1D scope:local align:4 +@3543 = .rodata:0x80487CB0; // type:object size:0xB scope:local align:4 data:string +@3544 = .rodata:0x80487CBC; // type:object size:0xF scope:local align:4 +@3548 = .rodata:0x80487CCC; // type:object size:0x11 scope:local align:4 +@3549 = .rodata:0x80487CE0; // type:object size:0xE scope:local align:4 data:string +@3552 = .rodata:0x80487CF0; // type:object size:0xF scope:local align:4 +@3553 = .rodata:0x80487D00; // type:object size:0xF scope:local align:4 +@3587 = .rodata:0x80487D10; // type:object size:0x13 scope:local align:4 data:string +@3588 = .rodata:0x80487D24; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x80487D38; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x80487D48; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x80487D58; // type:object size:0xD scope:local align:4 data:string +@3649 = .rodata:0x80487D68; // type:object size:0xF scope:local align:4 data:string +@3652 = .rodata:0x80487D78; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x80487D88; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x80487D98; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x80487DA4; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x80487DB4; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x80487DD4; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x80487DE8; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x80487DFC; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x80487E10; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x80487E24; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80487E30; // type:object size:0xD scope:local align:4 +@3675 = .rodata:0x80487E40; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x80487E4C; // type:object size:0xB scope:local align:4 +@3679 = .rodata:0x80487E58; // type:object size:0x11 scope:local align:4 +@3681 = .rodata:0x80487E6C; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x80487E78; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x80487E84; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x80487E90; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x80487E9C; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x80487EA8; // type:object size:0x11 scope:local align:4 +@3693 = .rodata:0x80487EBC; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80487ECC; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x80487ED8; // type:object size:0xD scope:local align:4 +@3696 = .rodata:0x80487EE8; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x80487EF8; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x80487F08; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x80487F18; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80487F24; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x80487F30; // type:object size:0x17 scope:local align:4 +@3705 = .rodata:0x80487F48; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x80487F58; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x80487F68; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80487F78; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x80487F88; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80487F98; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x80487FA8; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x80487FB8; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x80487FC8; // type:object size:0xF scope:local align:4 +@3773 = .rodata:0x80487FD8; // type:object size:0xD scope:local align:4 data:string +@3774 = .rodata:0x80487FE8; // type:object size:0x9 scope:local align:4 data:string +@4586 = .rodata:0x80487FF8; // type:object size:0x9 scope:local align:4 data:string +@4772 = .rodata:0x80488004; // type:object size:0x16 scope:local align:4 data:string +@4773 = .rodata:0x8048801C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80488028; // type:label scope:local +@3510 = .rodata:0x80488028; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x80488034; // type:object size:0x1B scope:local align:4 +@3539 = .rodata:0x80488050; // type:object size:0xF scope:local align:4 data:string +@3540 = .rodata:0x80488060; // type:object size:0xB scope:local align:4 +@3544 = .rodata:0x8048806C; // type:object size:0xB scope:local align:4 +@3580 = .rodata:0x80488078; // type:object size:0x13 scope:local align:4 data:string +@3581 = .rodata:0x8048808C; // type:object size:0x13 scope:local align:4 data:string +@3583 = .rodata:0x804880A0; // type:object size:0xF scope:local align:4 data:string +@3584 = .rodata:0x804880B0; // type:object size:0xE scope:local align:4 data:string +@3590 = .rodata:0x804880C0; // type:object size:0xD scope:local align:4 data:string +@3644 = .rodata:0x804880D0; // type:object size:0xD scope:local align:4 +@3647 = .rodata:0x804880E0; // type:object size:0xD scope:local align:4 +@3648 = .rodata:0x804880F0; // type:object size:0xB scope:local align:4 +@3650 = .rodata:0x804880FC; // type:object size:0xF scope:local align:4 +@3652 = .rodata:0x8048810C; // type:object size:0x1F scope:local align:4 +@3654 = .rodata:0x8048812C; // type:object size:0x13 scope:local align:4 +@3656 = .rodata:0x80488140; // type:object size:0x13 scope:local align:4 +@3657 = .rodata:0x80488154; // type:object size:0x12 scope:local align:4 +@3658 = .rodata:0x80488168; // type:object size:0x11 scope:local align:4 +@3663 = .rodata:0x8048817C; // type:object size:0xB scope:local align:4 +@3664 = .rodata:0x80488188; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x80488198; // type:object size:0xB scope:local align:4 +@3669 = .rodata:0x804881A4; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x804881B0; // type:object size:0x11 scope:local align:4 +@3673 = .rodata:0x804881C4; // type:object size:0x9 scope:local align:4 +@3675 = .rodata:0x804881D0; // type:object size:0x9 scope:local align:4 +@3678 = .rodata:0x804881DC; // type:object size:0x9 scope:local align:4 +@3680 = .rodata:0x804881E8; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x804881F4; // type:object size:0xB scope:local align:4 +@3683 = .rodata:0x80488200; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x80488214; // type:object size:0xD scope:local align:4 +@3685 = .rodata:0x80488224; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80488230; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x80488240; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x80488250; // type:object size:0xF scope:local align:4 +@3689 = .rodata:0x80488260; // type:object size:0xF scope:local align:4 +@3691 = .rodata:0x80488270; // type:object size:0x9 scope:local align:4 +@3693 = .rodata:0x8048827C; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x80488288; // type:object size:0x17 scope:local align:4 +@3696 = .rodata:0x804882A0; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x804882B0; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x804882C0; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x804882D0; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x804882E0; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x804882F0; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x80488300; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80488310; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80488320; // type:object size:0xF scope:local align:4 +@3519 = .rodata:0x80488330; // type:object size:0x15 scope:local align:4 +@3515 = .rodata:0x80488348; // type:object size:0x26 scope:local align:4 data:string +@3516 = .rodata:0x80488370; // type:object size:0x26 scope:local align:4 data:string +@3522 = .rodata:0x80488398; // type:object size:0x19 scope:local align:4 +@3807 = .rodata:0x804883B4; // type:object size:0x12 scope:local align:4 data:string +@3808 = .rodata:0x804883C8; // type:object size:0x9 scope:local align:4 data:string +@4035 = .rodata:0x804883D8; // type:object size:0xA scope:local align:4 data:string +@4039 = .rodata:0x804883E4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804883F0; // type:label scope:local +@3511 = .rodata:0x804883F0; // type:object size:0x11 scope:local align:4 data:string +@3517 = .rodata:0x80488404; // type:object size:0x15 scope:local align:4 +@3543 = .rodata:0x8048841C; // type:object size:0xF scope:local align:4 data:string +@3544 = .rodata:0x8048842C; // type:object size:0xB scope:local align:4 +@3548 = .rodata:0x80488438; // type:object size:0xD scope:local align:4 +@3551 = .rodata:0x80488448; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x80488458; // type:object size:0xB scope:local align:4 +@3555 = .rodata:0x80488464; // type:object size:0xE scope:local align:4 data:string +@3591 = .rodata:0x80488474; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x80488488; // type:object size:0x13 scope:local align:4 data:string +@3594 = .rodata:0x8048849C; // type:object size:0xF scope:local align:4 data:string +@3595 = .rodata:0x804884AC; // type:object size:0xE scope:local align:4 data:string +@3600 = .rodata:0x804884BC; // type:object size:0xD scope:local align:4 data:string +@3653 = .rodata:0x804884CC; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x804884DC; // type:object size:0xD scope:local align:4 +@3657 = .rodata:0x804884EC; // type:object size:0xB scope:local align:4 +@3659 = .rodata:0x804884F8; // type:object size:0xF scope:local align:4 +@3661 = .rodata:0x80488508; // type:object size:0x1F scope:local align:4 +@3663 = .rodata:0x80488528; // type:object size:0x13 scope:local align:4 +@3665 = .rodata:0x8048853C; // type:object size:0x13 scope:local align:4 +@3667 = .rodata:0x80488550; // type:object size:0x12 scope:local align:4 +@3668 = .rodata:0x80488564; // type:object size:0x11 scope:local align:4 +@3673 = .rodata:0x80488578; // type:object size:0xB scope:local align:4 +@3674 = .rodata:0x80488584; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x80488594; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x804885A0; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x804885AC; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x804885C0; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x804885CC; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x804885D8; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x804885E4; // type:object size:0x9 scope:local align:4 +@3691 = .rodata:0x804885F0; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x804885FC; // type:object size:0x11 scope:local align:4 +@3693 = .rodata:0x80488610; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80488620; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x8048862C; // type:object size:0xD scope:local align:4 +@3696 = .rodata:0x8048863C; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x8048864C; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x8048865C; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x8048866C; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80488678; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x80488684; // type:object size:0x17 scope:local align:4 +@3705 = .rodata:0x8048869C; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x804886AC; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x804886BC; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x804886CC; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x804886DC; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x804886EC; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x804886FC; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x8048870C; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x8048871C; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80488730; // type:label scope:local +@3605 = .rodata:0x80488730; // type:object size:0xC scope:local align:4 +@3937 = .rodata:0x8048873C; // type:object size:0xE scope:local align:4 data:string +@4102 = .rodata:0x8048874C; // type:object size:0x9 scope:local align:4 data:string +@4151 = .rodata:0x80488758; // type:object size:0x9 scope:local align:4 data:string +@4152 = .rodata:0x80488764; // type:object size:0x9 scope:local align:4 data:string +@4153 = .rodata:0x80488770; // type:object size:0x9 scope:local align:4 data:string +@4279 = .rodata:0x8048877C; // type:object size:0x14 scope:local align:4 data:4byte +@4280 = .rodata:0x80488790; // type:object size:0x14 scope:local align:4 data:4byte +@4339 = .rodata:0x804887A4; // type:object size:0x14 scope:local align:4 +@4340 = .rodata:0x804887B8; // type:object size:0x14 scope:local align:4 +@4341 = .rodata:0x804887CC; // type:object size:0x14 scope:local align:4 +@4342 = .rodata:0x804887E0; // type:object size:0x14 scope:local align:4 +@4343 = .rodata:0x804887F4; // type:object size:0x14 scope:local align:4 +@4344 = .rodata:0x80488808; // type:object size:0x14 scope:local align:4 +@4535 = .rodata:0x8048881C; // type:object size:0x14 scope:local align:4 +@4536 = .rodata:0x80488830; // type:object size:0x14 scope:local align:4 +@4537 = .rodata:0x80488844; // type:object size:0x14 scope:local align:4 +@4538 = .rodata:0x80488858; // type:object size:0x14 scope:local align:4 +@4539 = .rodata:0x8048886C; // type:object size:0x14 scope:local align:4 +@4540 = .rodata:0x80488880; // type:object size:0x14 scope:local align:4 +@4919 = .rodata:0x80488894; // type:object size:0x16 scope:local align:4 data:string +@4920 = .rodata:0x804888AC; // type:object size:0x9 scope:local align:4 data:string +@5061 = .rodata:0x804888B8; // type:object size:0x9 scope:local align:4 data:string +@3641 = .rodata:0x804888C8; // type:object size:0x9 scope:local align:4 data:string +@3643 = .rodata:0x804888D4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804888E0; // type:label scope:local +@3509 = .rodata:0x804888E0; // type:object size:0x12 scope:local align:4 data:string +@3515 = .rodata:0x804888F4; // type:object size:0x19 scope:local align:4 +@3539 = .rodata:0x80488910; // type:object size:0xF scope:local align:4 data:string +@3540 = .rodata:0x80488920; // type:object size:0xB scope:local align:4 +@3544 = .rodata:0x8048892C; // type:object size:0x13 scope:local align:4 +@3548 = .rodata:0x80488940; // type:object size:0x13 scope:local align:4 +@3583 = .rodata:0x80488954; // type:object size:0x13 scope:local align:4 data:string +@3584 = .rodata:0x80488968; // type:object size:0x13 scope:local align:4 data:string +@3586 = .rodata:0x8048897C; // type:object size:0xF scope:local align:4 data:string +@3587 = .rodata:0x8048898C; // type:object size:0xE scope:local align:4 data:string +@3593 = .rodata:0x8048899C; // type:object size:0xD scope:local align:4 data:string +@3647 = .rodata:0x804889AC; // type:object size:0xD scope:local align:4 +@3650 = .rodata:0x804889BC; // type:object size:0xD scope:local align:4 +@3651 = .rodata:0x804889CC; // type:object size:0xB scope:local align:4 +@3652 = .rodata:0x804889D8; // type:object size:0xF scope:local align:4 +@3654 = .rodata:0x804889E8; // type:object size:0x1F scope:local align:4 +@3655 = .rodata:0x80488A08; // type:object size:0x13 scope:local align:4 +@3657 = .rodata:0x80488A1C; // type:object size:0x13 scope:local align:4 +@3659 = .rodata:0x80488A30; // type:object size:0x12 scope:local align:4 +@3660 = .rodata:0x80488A44; // type:object size:0x11 scope:local align:4 +@3665 = .rodata:0x80488A58; // type:object size:0xB scope:local align:4 +@3666 = .rodata:0x80488A64; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x80488A74; // type:object size:0xB scope:local align:4 +@3670 = .rodata:0x80488A80; // type:object size:0xB scope:local align:4 +@3672 = .rodata:0x80488A8C; // type:object size:0x11 scope:local align:4 +@3674 = .rodata:0x80488AA0; // type:object size:0x9 scope:local align:4 +@3676 = .rodata:0x80488AAC; // type:object size:0x9 scope:local align:4 +@3679 = .rodata:0x80488AB8; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x80488AC4; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x80488AD0; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80488ADC; // type:object size:0x11 scope:local align:4 +@3685 = .rodata:0x80488AF0; // type:object size:0xD scope:local align:4 +@3686 = .rodata:0x80488B00; // type:object size:0xB scope:local align:4 +@3687 = .rodata:0x80488B0C; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x80488B1C; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x80488B2C; // type:object size:0xF scope:local align:4 +@3690 = .rodata:0x80488B3C; // type:object size:0xF scope:local align:4 +@3692 = .rodata:0x80488B4C; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80488B58; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80488B64; // type:object size:0x17 scope:local align:4 +@3697 = .rodata:0x80488B7C; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x80488B8C; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x80488B9C; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x80488BAC; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x80488BBC; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x80488BCC; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80488BDC; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80488BEC; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80488BFC; // type:object size:0xF scope:local align:4 +@3909 = .rodata:0x80488C10; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80488C20; // type:label scope:local +@3510 = .rodata:0x80488C20; // type:object size:0xF scope:local align:4 data:string +@3516 = .rodata:0x80488C30; // type:object size:0x17 scope:local align:4 +@3546 = .rodata:0x80488C48; // type:object size:0xF scope:local align:4 data:string +@3547 = .rodata:0x80488C58; // type:object size:0xE scope:local align:4 +@3551 = .rodata:0x80488C68; // type:object size:0xE scope:local align:4 +@3553 = .rodata:0x80488C78; // type:object size:0x9 scope:local align:4 +@3555 = .rodata:0x80488C84; // type:object size:0xC scope:local align:4 +@3557 = .rodata:0x80488C90; // type:object size:0x17 scope:local align:4 +@3559 = .rodata:0x80488CA8; // type:object size:0x17 scope:local align:4 +@3560 = .rodata:0x80488CC0; // type:object size:0xB scope:local align:4 +@3561 = .rodata:0x80488CCC; // type:object size:0x11 scope:local align:4 +@3562 = .rodata:0x80488CE0; // type:object size:0xB scope:local align:4 +@3598 = .rodata:0x80488CEC; // type:object size:0x13 scope:local align:4 data:string +@3599 = .rodata:0x80488D00; // type:object size:0x13 scope:local align:4 data:string +@3600 = .rodata:0x80488D14; // type:object size:0xF scope:local align:4 data:string +@3601 = .rodata:0x80488D24; // type:object size:0xE scope:local align:4 data:string +@3607 = .rodata:0x80488D34; // type:object size:0xD scope:local align:4 data:string +@3660 = .rodata:0x80488D44; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x80488D54; // type:object size:0xD scope:local align:4 +@3664 = .rodata:0x80488D64; // type:object size:0xB scope:local align:4 +@3665 = .rodata:0x80488D70; // type:object size:0xF scope:local align:4 +@3667 = .rodata:0x80488D80; // type:object size:0x1F scope:local align:4 +@3669 = .rodata:0x80488DA0; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x80488DB4; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x80488DC8; // type:object size:0x12 scope:local align:4 +@3674 = .rodata:0x80488DDC; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x80488DF0; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x80488DFC; // type:object size:0xD scope:local align:4 +@3682 = .rodata:0x80488E0C; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80488E18; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80488E24; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x80488E38; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x80488E44; // type:object size:0x9 scope:local align:4 +@3693 = .rodata:0x80488E50; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x80488E5C; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x80488E68; // type:object size:0xB scope:local align:4 +@3699 = .rodata:0x80488E74; // type:object size:0x11 scope:local align:4 +@3700 = .rodata:0x80488E88; // type:object size:0xD scope:local align:4 +@3701 = .rodata:0x80488E98; // type:object size:0xB scope:local align:4 +@3702 = .rodata:0x80488EA4; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x80488EB4; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x80488EC4; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80488ED4; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x80488EE4; // type:object size:0x9 scope:local align:4 +@3709 = .rodata:0x80488EF0; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x80488EFC; // type:object size:0x17 scope:local align:4 +@3712 = .rodata:0x80488F14; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x80488F24; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x80488F34; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x80488F44; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80488F54; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80488F64; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80488F74; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80488F84; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80488F94; // type:object size:0xF scope:local align:4 +@4674 = .rodata:0x80488FA8; // type:object size:0xA scope:local align:4 data:string +@3522 = .rodata:0x80488FB8; // type:object size:0x23 scope:local align:4 data:string +@3530 = .rodata:0x80488FDC; // type:object size:0x11 scope:local align:4 +@3776 = .rodata:0x80488FF0; // type:object size:0x13 scope:local align:4 data:string +@3777 = .rodata:0x80489004; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x80489010; // type:object size:0x30 scope:local align:4 data:string +@3523 = .rodata:0x80489040; // type:object size:0x17 scope:local align:4 +@3751 = .rodata:0x80489058; // type:object size:0xD scope:local align:4 data:string +@3752 = .rodata:0x80489068; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80489078; // type:label scope:local +@3788 = .rodata:0x80489078; // type:object size:0x16 scope:local align:4 data:string +@3953 = .rodata:0x80489090; // type:object size:0xC scope:local align:4 data:string +@3959 = .rodata:0x8048909C; // type:object size:0x9 scope:local align:4 data:string +@3960 = .rodata:0x804890A8; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804890B8; // type:label scope:local +@3510 = .rodata:0x804890B8; // type:object size:0x14 scope:local align:4 data:string +@3511 = .rodata:0x804890CC; // type:object size:0x30 scope:local align:4 data:string +@3512 = .rodata:0x804890FC; // type:object size:0x30 scope:local align:4 data:string +@3518 = .rodata:0x8048912C; // type:object size:0x1D scope:local align:4 +@3547 = .rodata:0x8048914C; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x8048915C; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x8048916C; // type:object size:0x9 scope:local align:4 +@3555 = .rodata:0x80489178; // type:object size:0x11 scope:local align:4 +@3557 = .rodata:0x8048918C; // type:object size:0x11 scope:local align:4 +@3558 = .rodata:0x804891A0; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x804891B0; // type:object size:0xF scope:local align:4 +@3560 = .rodata:0x804891C0; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x804891D0; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x804891E0; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x804891F4; // type:object size:0x13 scope:local align:4 data:string +@3600 = .rodata:0x80489208; // type:object size:0xF scope:local align:4 data:string +@3601 = .rodata:0x80489218; // type:object size:0xE scope:local align:4 data:string +@3607 = .rodata:0x80489228; // type:object size:0xD scope:local align:4 data:string +@3661 = .rodata:0x80489238; // type:object size:0xD scope:local align:4 +@3664 = .rodata:0x80489248; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x80489258; // type:object size:0xB scope:local align:4 +@3667 = .rodata:0x80489264; // type:object size:0xF scope:local align:4 +@3669 = .rodata:0x80489274; // type:object size:0x1F scope:local align:4 +@3671 = .rodata:0x80489294; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x804892A8; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x804892BC; // type:object size:0x12 scope:local align:4 +@3676 = .rodata:0x804892D0; // type:object size:0x11 scope:local align:4 +@3681 = .rodata:0x804892E4; // type:object size:0xB scope:local align:4 +@3682 = .rodata:0x804892F0; // type:object size:0xD scope:local align:4 +@3684 = .rodata:0x80489300; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x8048930C; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x80489318; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x8048932C; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x80489338; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80489344; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80489350; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x8048935C; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x80489368; // type:object size:0x11 scope:local align:4 +@3701 = .rodata:0x8048937C; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x8048938C; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x80489398; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x804893A8; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x804893B8; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x804893C8; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x804893D8; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x804893E4; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x804893F0; // type:object size:0x17 scope:local align:4 +@3713 = .rodata:0x80489408; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x80489418; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x80489428; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80489438; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80489448; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80489458; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80489468; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80489478; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x80489488; // type:object size:0xF scope:local align:4 +@3773 = .rodata:0x80489498; // type:object size:0x14 scope:local align:4 data:string +@3774 = .rodata:0x804894AC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804894B8; // type:label scope:local +@3512 = .rodata:0x804894B8; // type:object size:0x10 scope:local align:4 data:string +@3513 = .rodata:0x804894C8; // type:object size:0x28 scope:local align:4 data:string +@3514 = .rodata:0x804894F0; // type:object size:0x28 scope:local align:4 data:string +@3520 = .rodata:0x80489518; // type:object size:0x13 scope:local align:4 +@3547 = .rodata:0x8048952C; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x8048953C; // type:object size:0xB scope:local align:4 +@3552 = .rodata:0x80489548; // type:object size:0xD scope:local align:4 +@3556 = .rodata:0x80489558; // type:object size:0xD scope:local align:4 +@3558 = .rodata:0x80489568; // type:object size:0xF scope:local align:4 +@3561 = .rodata:0x80489578; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x80489588; // type:object size:0xD scope:local align:4 +@3598 = .rodata:0x80489598; // type:object size:0x13 scope:local align:4 data:string +@3599 = .rodata:0x804895AC; // type:object size:0x13 scope:local align:4 data:string +@3601 = .rodata:0x804895C0; // type:object size:0xF scope:local align:4 data:string +@3602 = .rodata:0x804895D0; // type:object size:0xE scope:local align:4 data:string +@3608 = .rodata:0x804895E0; // type:object size:0xD scope:local align:4 data:string +@3662 = .rodata:0x804895F0; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x80489600; // type:object size:0xD scope:local align:4 +@3666 = .rodata:0x80489610; // type:object size:0xB scope:local align:4 +@3668 = .rodata:0x8048961C; // type:object size:0xF scope:local align:4 +@3670 = .rodata:0x8048962C; // type:object size:0x1F scope:local align:4 +@3672 = .rodata:0x8048964C; // type:object size:0x13 scope:local align:4 +@3674 = .rodata:0x80489660; // type:object size:0x13 scope:local align:4 +@3676 = .rodata:0x80489674; // type:object size:0x12 scope:local align:4 +@3677 = .rodata:0x80489688; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x8048969C; // type:object size:0xB scope:local align:4 +@3683 = .rodata:0x804896A8; // type:object size:0xD scope:local align:4 +@3685 = .rodata:0x804896B8; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x804896C4; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x804896D0; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x804896E4; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x804896F0; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x804896FC; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x80489708; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x80489714; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x80489720; // type:object size:0x11 scope:local align:4 +@3701 = .rodata:0x80489734; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x80489744; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x80489750; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x80489760; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80489770; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80489780; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80489790; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x8048979C; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x804897A8; // type:object size:0x17 scope:local align:4 +@3713 = .rodata:0x804897C0; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x804897D0; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x804897E0; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x804897F0; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80489800; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80489810; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80489820; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80489830; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x80489840; // type:object size:0xF scope:local align:4 +@3790 = .rodata:0x80489850; // type:object size:0x10 scope:local align:4 data:string +@3791 = .rodata:0x80489860; // type:object size:0x9 scope:local align:4 data:string +@4376 = .rodata:0x80489870; // type:object size:0xA scope:local align:4 data:string +@4377 = .rodata:0x8048987C; // type:object size:0xA scope:local align:4 data:string +@4378 = .rodata:0x80489888; // type:object size:0xA scope:local align:4 data:string +@4379 = .rodata:0x80489894; // type:object size:0xA scope:local align:4 data:string +@4380 = .rodata:0x804898A0; // type:object size:0xA scope:local align:4 data:string +@4381 = .rodata:0x804898AC; // type:object size:0xA scope:local align:4 data:string +@4382 = .rodata:0x804898B8; // type:object size:0xA scope:local align:4 data:string +@4383 = .rodata:0x804898C4; // type:object size:0xA scope:local align:4 data:string +@4384 = .rodata:0x804898D0; // type:object size:0xA scope:local align:4 data:string +@4385 = .rodata:0x804898DC; // type:object size:0xA scope:local align:4 data:string +@4386 = .rodata:0x804898E8; // type:object size:0xA scope:local align:4 data:string +@4387 = .rodata:0x804898F4; // type:object size:0xA scope:local align:4 data:string +@4388 = .rodata:0x80489900; // type:object size:0x30 scope:local align:4 data:4byte +@4578 = .rodata:0x80489930; // type:object size:0x10 scope:local align:4 data:4byte +@4614 = .rodata:0x80489940; // type:object size:0x16 scope:local align:4 data:string +@4615 = .rodata:0x80489958; // type:object size:0x9 scope:local align:4 data:string +@4119 = .rodata:0x80489968; // type:object size:0x10 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80489978; // type:label scope:local +@3515 = .rodata:0x80489978; // type:object size:0x13 scope:local align:4 data:string +@3634 = .rodata:0x8048998C; // type:object size:0xA scope:local align:4 data:string +@3635 = .rodata:0x80489998; // type:object size:0xA scope:local align:4 data:string +@3636 = .rodata:0x804899A4; // type:object size:0xA scope:local align:4 data:string +@3637 = .rodata:0x804899B0; // type:object size:0xA scope:local align:4 data:string +@3638 = .rodata:0x804899BC; // type:object size:0xA scope:local align:4 data:string +@3639 = .rodata:0x804899C8; // type:object size:0xA scope:local align:4 data:string +@3640 = .rodata:0x804899D4; // type:object size:0xA scope:local align:4 data:string +@3641 = .rodata:0x804899E0; // type:object size:0xA scope:local align:4 data:string +@3642 = .rodata:0x804899EC; // type:object size:0xA scope:local align:4 data:string +@3643 = .rodata:0x804899F8; // type:object size:0xA scope:local align:4 data:string +@3644 = .rodata:0x80489A04; // type:object size:0xA scope:local align:4 data:string +@3645 = .rodata:0x80489A10; // type:object size:0xA scope:local align:4 data:string +@4063 = .rodata:0x80489A20; // type:object size:0x9 scope:local align:4 data:string +@4064 = .rodata:0x80489A2C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80489A38; // type:label scope:local +@3510 = .rodata:0x80489A38; // type:object size:0xE scope:local align:4 data:string +@3516 = .rodata:0x80489A48; // type:object size:0x19 scope:local align:4 +@3545 = .rodata:0x80489A64; // type:object size:0xF scope:local align:4 data:string +@3546 = .rodata:0x80489A74; // type:object size:0x9 scope:local align:4 +@3550 = .rodata:0x80489A80; // type:object size:0x9 scope:local align:4 +@3553 = .rodata:0x80489A8C; // type:object size:0x11 scope:local align:4 +@3555 = .rodata:0x80489AA0; // type:object size:0xD scope:local align:4 +@3557 = .rodata:0x80489AB0; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x80489AC0; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x80489AD0; // type:object size:0xF scope:local align:4 +@3561 = .rodata:0x80489AE0; // type:object size:0xF scope:local align:4 +@3595 = .rodata:0x80489AF0; // type:object size:0x13 scope:local align:4 data:string +@3596 = .rodata:0x80489B04; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x80489B18; // type:object size:0xF scope:local align:4 data:string +@3599 = .rodata:0x80489B28; // type:object size:0xE scope:local align:4 data:string +@3605 = .rodata:0x80489B38; // type:object size:0xD scope:local align:4 data:string +@3659 = .rodata:0x80489B48; // type:object size:0xD scope:local align:4 +@3662 = .rodata:0x80489B58; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x80489B68; // type:object size:0xB scope:local align:4 +@3665 = .rodata:0x80489B74; // type:object size:0xF scope:local align:4 +@3667 = .rodata:0x80489B84; // type:object size:0x1F scope:local align:4 +@3669 = .rodata:0x80489BA4; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x80489BB8; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x80489BCC; // type:object size:0x12 scope:local align:4 +@3674 = .rodata:0x80489BE0; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x80489BF4; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x80489C00; // type:object size:0xD scope:local align:4 +@3682 = .rodata:0x80489C10; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80489C1C; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80489C28; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x80489C3C; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x80489C48; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x80489C54; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80489C60; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80489C6C; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x80489C78; // type:object size:0x11 scope:local align:4 +@3699 = .rodata:0x80489C8C; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x80489C9C; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x80489CA8; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x80489CB8; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x80489CC8; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80489CD8; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80489CE8; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x80489CF4; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x80489D00; // type:object size:0x17 scope:local align:4 +@3711 = .rodata:0x80489D18; // type:object size:0xD scope:local align:4 +@3713 = .rodata:0x80489D28; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x80489D38; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x80489D48; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x80489D58; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80489D68; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80489D78; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80489D88; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80489D98; // type:object size:0xF scope:local align:4 +@4123 = .rodata:0x80489DA8; // type:object size:0x1C scope:local align:4 data:4byte +@4124 = .rodata:0x80489DC4; // type:object size:0x1C scope:local align:4 data:4byte +@4142 = .rodata:0x80489DE0; // type:object size:0x1C scope:local align:4 data:4byte +@4143 = .rodata:0x80489DFC; // type:object size:0x1C scope:local align:4 data:4byte +@4161 = .rodata:0x80489E18; // type:object size:0x14 scope:local align:4 data:4byte +@4162 = .rodata:0x80489E2C; // type:object size:0x14 scope:local align:4 data:4byte +@4180 = .rodata:0x80489E40; // type:object size:0x20 scope:local align:4 data:4byte +@4181 = .rodata:0x80489E60; // type:object size:0x20 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80489E80; // type:label scope:local +@3600 = .rodata:0x80489E80; // type:object size:0xC scope:local align:4 +@3917 = .rodata:0x80489E8C; // type:object size:0x13 scope:local align:4 data:string +@4081 = .rodata:0x80489EA0; // type:object size:0x9 scope:local align:4 data:string +@4083 = .rodata:0x80489EAC; // type:object size:0x9 scope:local align:4 data:string +@4087 = .rodata:0x80489EB8; // type:object size:0x9 scope:local align:4 data:string +@4088 = .rodata:0x80489EC4; // type:object size:0x9 scope:local align:4 data:string +@4090 = .rodata:0x80489ED0; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80489EE0; // type:label scope:local +@3510 = .rodata:0x80489EE0; // type:object size:0x11 scope:local align:4 data:string +@3516 = .rodata:0x80489EF4; // type:object size:0x19 scope:local align:4 +@3546 = .rodata:0x80489F10; // type:object size:0xF scope:local align:4 data:string +@3547 = .rodata:0x80489F20; // type:object size:0x9 scope:local align:4 +@3551 = .rodata:0x80489F2C; // type:object size:0xD scope:local align:4 +@3554 = .rodata:0x80489F3C; // type:object size:0xF scope:local align:4 +@3557 = .rodata:0x80489F4C; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x80489F5C; // type:object size:0xC scope:local align:4 +@3562 = .rodata:0x80489F68; // type:object size:0xC scope:local align:4 +@3564 = .rodata:0x80489F74; // type:object size:0xC scope:local align:4 +@3566 = .rodata:0x80489F80; // type:object size:0xC scope:local align:4 +@3568 = .rodata:0x80489F8C; // type:object size:0xB scope:local align:4 +@3603 = .rodata:0x80489F98; // type:object size:0x13 scope:local align:4 data:string +@3604 = .rodata:0x80489FAC; // type:object size:0x13 scope:local align:4 data:string +@3606 = .rodata:0x80489FC0; // type:object size:0xF scope:local align:4 data:string +@3607 = .rodata:0x80489FD0; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x80489FE0; // type:object size:0xD scope:local align:4 data:string +@3666 = .rodata:0x80489FF0; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x8048A000; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x8048A010; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x8048A01C; // type:object size:0xF scope:local align:4 +@3673 = .rodata:0x8048A02C; // type:object size:0x1F scope:local align:4 +@3675 = .rodata:0x8048A04C; // type:object size:0x13 scope:local align:4 +@3677 = .rodata:0x8048A060; // type:object size:0x13 scope:local align:4 +@3679 = .rodata:0x8048A074; // type:object size:0x12 scope:local align:4 +@3680 = .rodata:0x8048A088; // type:object size:0x11 scope:local align:4 +@3685 = .rodata:0x8048A09C; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x8048A0A8; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x8048A0B8; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048A0C4; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x8048A0D0; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x8048A0E4; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x8048A0F0; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x8048A0FC; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048A108; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048A114; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x8048A120; // type:object size:0x11 scope:local align:4 +@3704 = .rodata:0x8048A134; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048A144; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x8048A150; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x8048A160; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x8048A170; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048A180; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048A190; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x8048A19C; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x8048A1A8; // type:object size:0x17 scope:local align:4 +@3716 = .rodata:0x8048A1C0; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x8048A1D0; // type:object size:0xD scope:local align:4 +@3719 = .rodata:0x8048A1E0; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048A1F0; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x8048A200; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8048A210; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x8048A220; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8048A230; // type:object size:0xF scope:local align:4 +@3725 = .rodata:0x8048A240; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8048A250; // type:label scope:local +@3952 = .rodata:0x8048A250; // type:object size:0xE scope:local align:4 data:string +@4086 = .rodata:0x8048A260; // type:object size:0xC scope:local align:4 data:string +@4259 = .rodata:0x8048A26C; // type:object size:0xA scope:local align:4 data:string +@4387 = .rodata:0x8048A278; // type:object size:0xC scope:local align:4 data:string +@4435 = .rodata:0x8048A284; // type:object size:0x9 scope:local align:4 data:string +@4436 = .rodata:0x8048A290; // type:object size:0x9 scope:local align:4 data:string +@4437 = .rodata:0x8048A29C; // type:object size:0x9 scope:local align:4 data:string +@4438 = .rodata:0x8048A2A8; // type:object size:0x9 scope:local align:4 data:string +@4439 = .rodata:0x8048A2B4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A2C0; // type:label scope:local +@3525 = .rodata:0x8048A2C0; // type:object size:0x15 scope:local align:4 data:string +@3704 = .rodata:0x8048A2D8; // type:object size:0x9 scope:local align:4 data:string +@3705 = .rodata:0x8048A2E4; // type:object size:0x9 scope:local align:4 data:string +@3706 = .rodata:0x8048A2F0; // type:object size:0x9 scope:local align:4 data:string +@3707 = .rodata:0x8048A2FC; // type:object size:0xA scope:local align:4 data:string +@3708 = .rodata:0x8048A308; // type:object size:0x9 scope:local align:4 data:string +@3709 = .rodata:0x8048A314; // type:object size:0x9 scope:local align:4 data:string +@3710 = .rodata:0x8048A320; // type:object size:0xA scope:local align:4 data:string +@3711 = .rodata:0x8048A32C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A338; // type:label scope:local +@3517 = .rodata:0x8048A338; // type:object size:0x13 scope:local align:4 data:string +@3523 = .rodata:0x8048A34C; // type:object size:0x17 scope:local align:4 +@3533 = .rodata:0x8048A364; // type:object size:0x14 scope:local align:4 data:4byte +@3550 = .rodata:0x8048A378; // type:object size:0x14 scope:local align:4 data:4byte +@3596 = .rodata:0x8048A38C; // type:object size:0x13 scope:local align:4 data:string +@3597 = .rodata:0x8048A3A0; // type:object size:0x9 scope:local align:4 data:string +@3598 = .rodata:0x8048A3AC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A3B8; // type:label scope:local +@3521 = .rodata:0x8048A3B8; // type:object size:0x13 scope:local align:4 data:string +@3522 = .rodata:0x8048A3CC; // type:object size:0x2D scope:local align:4 data:string +@3530 = .rodata:0x8048A3FC; // type:object size:0x19 scope:local align:4 +@3557 = .rodata:0x8048A418; // type:object size:0x11 scope:local align:4 data:string +@3558 = .rodata:0x8048A42C; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x8048A43C; // type:object size:0x11 scope:local align:4 +@3565 = .rodata:0x8048A450; // type:object size:0x11 scope:local align:4 +@3567 = .rodata:0x8048A464; // type:object size:0x11 scope:local align:4 +@3602 = .rodata:0x8048A478; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x8048A48C; // type:object size:0x13 scope:local align:4 data:string +@3605 = .rodata:0x8048A4A0; // type:object size:0xF scope:local align:4 data:string +@3606 = .rodata:0x8048A4B0; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x8048A4C0; // type:object size:0xD scope:local align:4 data:string +@3663 = .rodata:0x8048A4D0; // type:object size:0xF scope:local align:4 data:string +@3666 = .rodata:0x8048A4E0; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x8048A4F0; // type:object size:0xD scope:local align:4 +@3670 = .rodata:0x8048A500; // type:object size:0xB scope:local align:4 +@3672 = .rodata:0x8048A50C; // type:object size:0xF scope:local align:4 +@3674 = .rodata:0x8048A51C; // type:object size:0x1F scope:local align:4 +@3676 = .rodata:0x8048A53C; // type:object size:0x13 scope:local align:4 +@3678 = .rodata:0x8048A550; // type:object size:0x13 scope:local align:4 +@3680 = .rodata:0x8048A564; // type:object size:0x12 scope:local align:4 +@3681 = .rodata:0x8048A578; // type:object size:0x11 scope:local align:4 +@3686 = .rodata:0x8048A58C; // type:object size:0xB scope:local align:4 +@3687 = .rodata:0x8048A598; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x8048A5A8; // type:object size:0xB scope:local align:4 +@3691 = .rodata:0x8048A5B4; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048A5C0; // type:object size:0x11 scope:local align:4 +@3695 = .rodata:0x8048A5D4; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8048A5E0; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048A5EC; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048A5F8; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x8048A604; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x8048A610; // type:object size:0x11 scope:local align:4 +@3707 = .rodata:0x8048A624; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x8048A634; // type:object size:0xB scope:local align:4 +@3709 = .rodata:0x8048A640; // type:object size:0xD scope:local align:4 +@3710 = .rodata:0x8048A650; // type:object size:0xD scope:local align:4 +@3711 = .rodata:0x8048A660; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048A670; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x8048A680; // type:object size:0x9 scope:local align:4 +@3716 = .rodata:0x8048A68C; // type:object size:0x9 scope:local align:4 +@3718 = .rodata:0x8048A698; // type:object size:0x17 scope:local align:4 +@3719 = .rodata:0x8048A6B0; // type:object size:0xD scope:local align:4 +@3721 = .rodata:0x8048A6C0; // type:object size:0xD scope:local align:4 +@3722 = .rodata:0x8048A6D0; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x8048A6E0; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8048A6F0; // type:object size:0xF scope:local align:4 +@3725 = .rodata:0x8048A700; // type:object size:0xF scope:local align:4 +@3726 = .rodata:0x8048A710; // type:object size:0xF scope:local align:4 +@3727 = .rodata:0x8048A720; // type:object size:0xF scope:local align:4 +@3728 = .rodata:0x8048A730; // type:object size:0xF scope:local align:4 +@3769 = .rodata:0x8048A740; // type:object size:0x13 scope:local align:4 data:string +@3770 = .rodata:0x8048A754; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x8048A760; // type:object size:0x2F scope:local align:4 data:string +@3530 = .rodata:0x8048A790; // type:object size:0x19 scope:local align:4 +@3769 = .rodata:0x8048A7AC; // type:object size:0x14 scope:local align:4 data:string +@3770 = .rodata:0x8048A7C0; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x8048A7D0; // type:object size:0x2F scope:local align:4 data:string +@3530 = .rodata:0x8048A800; // type:object size:0x1B scope:local align:4 +@3769 = .rodata:0x8048A81C; // type:object size:0x12 scope:local align:4 data:string +@3770 = .rodata:0x8048A830; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x8048A840; // type:object size:0x30 scope:local align:4 data:string +@3530 = .rodata:0x8048A870; // type:object size:0x1B scope:local align:4 +@3769 = .rodata:0x8048A88C; // type:object size:0x13 scope:local align:4 data:string +@3770 = .rodata:0x8048A8A0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A8B0; // type:label scope:local +@3801 = .rodata:0x8048A8B0; // type:object size:0x12 scope:local align:4 data:string +@3975 = .rodata:0x8048A8C4; // type:object size:0x9 scope:local align:4 data:string +@3976 = .rodata:0x8048A8D0; // type:object size:0x9 scope:local align:4 data:string +@3985 = .rodata:0x8048A8DC; // type:object size:0xA scope:local align:4 data:string +@3986 = .rodata:0x8048A8E8; // type:object size:0xC scope:local align:4 data:string +@3987 = .rodata:0x8048A8F4; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A900; // type:label scope:local +@3510 = .rodata:0x8048A900; // type:object size:0x10 scope:local align:4 data:string +@3516 = .rodata:0x8048A910; // type:object size:0x13 scope:local align:4 +@3542 = .rodata:0x8048A924; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x8048A934; // type:object size:0xB scope:local align:4 +@3547 = .rodata:0x8048A940; // type:object size:0xB scope:local align:4 +@3549 = .rodata:0x8048A94C; // type:object size:0xB scope:local align:4 +@3551 = .rodata:0x8048A958; // type:object size:0xE scope:local align:4 +@3553 = .rodata:0x8048A968; // type:object size:0xB scope:local align:4 +@3589 = .rodata:0x8048A974; // type:object size:0x13 scope:local align:4 data:string +@3590 = .rodata:0x8048A988; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x8048A99C; // type:object size:0xF scope:local align:4 data:string +@3593 = .rodata:0x8048A9AC; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x8048A9BC; // type:object size:0xD scope:local align:4 data:string +@3650 = .rodata:0x8048A9CC; // type:object size:0xD scope:local align:4 +@3653 = .rodata:0x8048A9DC; // type:object size:0xD scope:local align:4 +@3654 = .rodata:0x8048A9EC; // type:object size:0xB scope:local align:4 +@3656 = .rodata:0x8048A9F8; // type:object size:0xF scope:local align:4 +@3658 = .rodata:0x8048AA08; // type:object size:0x1F scope:local align:4 +@3660 = .rodata:0x8048AA28; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8048AA3C; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048AA50; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x8048AA64; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x8048AA78; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x8048AA84; // type:object size:0xD scope:local align:4 +@3673 = .rodata:0x8048AA94; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048AAA0; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048AAAC; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048AAC0; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048AACC; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048AAD8; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048AAE4; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048AAF0; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048AAFC; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x8048AB10; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x8048AB20; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048AB2C; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048AB3C; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048AB4C; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x8048AB5C; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x8048AB6C; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048AB78; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048AB84; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x8048AB9C; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x8048ABAC; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048ABBC; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x8048ABCC; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048ABDC; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048ABEC; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048ABFC; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048AC0C; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048AC1C; // type:object size:0xF scope:local align:4 +@4209 = .rodata:0x8048AC30; // type:object size:0xA scope:local align:4 data:string +@4695 = .rodata:0x8048AC3C; // type:object size:0x9 scope:local align:4 data:string +@4744 = .rodata:0x8048AC48; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048AC58; // type:label scope:local +@3512 = .rodata:0x8048AC58; // type:object size:0xE scope:local align:4 data:string +@3513 = .rodata:0x8048AC68; // type:object size:0x24 scope:local align:4 data:string +@3514 = .rodata:0x8048AC8C; // type:object size:0x24 scope:local align:4 data:string +@3520 = .rodata:0x8048ACB0; // type:object size:0x13 scope:local align:4 +@3552 = .rodata:0x8048ACC4; // type:object size:0xF scope:local align:4 data:string +@3553 = .rodata:0x8048ACD4; // type:object size:0xB scope:local align:4 +@3557 = .rodata:0x8048ACE0; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x8048ACF0; // type:object size:0xD scope:local align:4 +@3562 = .rodata:0x8048AD00; // type:object size:0xF scope:local align:4 +@3565 = .rodata:0x8048AD10; // type:object size:0xF scope:local align:4 +@3566 = .rodata:0x8048AD20; // type:object size:0xD scope:local align:4 +@3569 = .rodata:0x8048AD30; // type:object size:0xB scope:local align:4 +@3571 = .rodata:0x8048AD3C; // type:object size:0xB scope:local align:4 +@3573 = .rodata:0x8048AD48; // type:object size:0xC scope:local align:4 +@3574 = .rodata:0x8048AD54; // type:object size:0xC scope:local align:4 +@3575 = .rodata:0x8048AD60; // type:object size:0x11 scope:local align:4 data:string +@3611 = .rodata:0x8048AD74; // type:object size:0x13 scope:local align:4 data:string +@3612 = .rodata:0x8048AD88; // type:object size:0x13 scope:local align:4 data:string +@3613 = .rodata:0x8048AD9C; // type:object size:0xF scope:local align:4 data:string +@3614 = .rodata:0x8048ADAC; // type:object size:0xE scope:local align:4 data:string +@3619 = .rodata:0x8048ADBC; // type:object size:0xD scope:local align:4 data:string +@3673 = .rodata:0x8048ADCC; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x8048ADDC; // type:object size:0xD scope:local align:4 +@3677 = .rodata:0x8048ADEC; // type:object size:0xB scope:local align:4 +@3679 = .rodata:0x8048ADF8; // type:object size:0xF scope:local align:4 +@3681 = .rodata:0x8048AE08; // type:object size:0x1F scope:local align:4 +@3682 = .rodata:0x8048AE28; // type:object size:0x13 scope:local align:4 +@3684 = .rodata:0x8048AE3C; // type:object size:0x13 scope:local align:4 +@3686 = .rodata:0x8048AE50; // type:object size:0x12 scope:local align:4 +@3687 = .rodata:0x8048AE64; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x8048AE78; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048AE84; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048AE94; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x8048AEA0; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x8048AEAC; // type:object size:0x11 scope:local align:4 +@3700 = .rodata:0x8048AEC0; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048AECC; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x8048AED8; // type:object size:0x9 scope:local align:4 +@3706 = .rodata:0x8048AEE4; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x8048AEF0; // type:object size:0xB scope:local align:4 +@3710 = .rodata:0x8048AEFC; // type:object size:0x11 scope:local align:4 +@3711 = .rodata:0x8048AF10; // type:object size:0xD scope:local align:4 +@3712 = .rodata:0x8048AF20; // type:object size:0xB scope:local align:4 +@3713 = .rodata:0x8048AF2C; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x8048AF3C; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x8048AF4C; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x8048AF5C; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x8048AF6C; // type:object size:0x9 scope:local align:4 +@3720 = .rodata:0x8048AF78; // type:object size:0x9 scope:local align:4 +@3722 = .rodata:0x8048AF84; // type:object size:0x17 scope:local align:4 +@3723 = .rodata:0x8048AF9C; // type:object size:0xD scope:local align:4 +@3725 = .rodata:0x8048AFAC; // type:object size:0xD scope:local align:4 +@3726 = .rodata:0x8048AFBC; // type:object size:0xF scope:local align:4 +@3727 = .rodata:0x8048AFCC; // type:object size:0xF scope:local align:4 +@3728 = .rodata:0x8048AFDC; // type:object size:0xF scope:local align:4 +@3729 = .rodata:0x8048AFEC; // type:object size:0xF scope:local align:4 +@3730 = .rodata:0x8048AFFC; // type:object size:0xF scope:local align:4 +@3731 = .rodata:0x8048B00C; // type:object size:0xF scope:local align:4 +@3732 = .rodata:0x8048B01C; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8048B030; // type:label scope:local +@3515 = .rodata:0x8048B030; // type:object size:0x11 scope:local align:4 data:string +@3663 = .rodata:0x8048B044; // type:object size:0xA scope:local align:4 data:string +@3664 = .rodata:0x8048B050; // type:object size:0xA scope:local align:4 data:string +@3665 = .rodata:0x8048B05C; // type:object size:0xA scope:local align:4 data:string +@3666 = .rodata:0x8048B068; // type:object size:0xA scope:local align:4 data:string +@3667 = .rodata:0x8048B074; // type:object size:0xA scope:local align:4 data:string +@3668 = .rodata:0x8048B080; // type:object size:0xA scope:local align:4 data:string +@3669 = .rodata:0x8048B08C; // type:object size:0xA scope:local align:4 data:string +@3670 = .rodata:0x8048B098; // type:object size:0xA scope:local align:4 data:string +@3671 = .rodata:0x8048B0A4; // type:object size:0xA scope:local align:4 data:string +@3672 = .rodata:0x8048B0B0; // type:object size:0xA scope:local align:4 data:string +@3673 = .rodata:0x8048B0BC; // type:object size:0xA scope:local align:4 data:string +@3674 = .rodata:0x8048B0C8; // type:object size:0xA scope:local align:4 data:string +@4416 = .rodata:0x8048B0D8; // type:object size:0xA scope:local align:4 data:string +@4417 = .rodata:0x8048B0E4; // type:object size:0xA scope:local align:4 data:string +@4418 = .rodata:0x8048B0F0; // type:object size:0xA scope:local align:4 data:string +@4419 = .rodata:0x8048B0FC; // type:object size:0xA scope:local align:4 data:string +@4420 = .rodata:0x8048B108; // type:object size:0xA scope:local align:4 data:string +@4421 = .rodata:0x8048B114; // type:object size:0xA scope:local align:4 data:string +@4422 = .rodata:0x8048B120; // type:object size:0xA scope:local align:4 data:string +@4423 = .rodata:0x8048B12C; // type:object size:0xA scope:local align:4 data:string +@4424 = .rodata:0x8048B138; // type:object size:0xA scope:local align:4 data:string +@4425 = .rodata:0x8048B144; // type:object size:0xA scope:local align:4 data:string +@4426 = .rodata:0x8048B150; // type:object size:0xA scope:local align:4 data:string +@4427 = .rodata:0x8048B15C; // type:object size:0xA scope:local align:4 data:string +@4428 = .rodata:0x8048B168; // type:object size:0x30 scope:local align:4 data:4byte +@4694 = .rodata:0x8048B198; // type:object size:0x16 scope:local align:4 data:string +@4695 = .rodata:0x8048B1B0; // type:object size:0x9 scope:local align:4 data:string +@5149 = .rodata:0x8048B1BC; // type:object size:0xA scope:local align:4 data:string +@5150 = .rodata:0x8048B1C8; // type:object size:0xA scope:local align:4 data:string +@5151 = .rodata:0x8048B1D4; // type:object size:0xA scope:local align:4 data:string +@5152 = .rodata:0x8048B1E0; // type:object size:0xC scope:local align:4 data:4byte +@5654 = .rodata:0x8048B1EC; // type:object size:0xA scope:local align:4 data:string +@3519 = .rodata:0x8048B1F8; // type:object size:0x1B scope:local align:4 +...rodata.0 = .rodata:0x8048B218; // type:label scope:local +@3512 = .rodata:0x8048B218; // type:object size:0xF scope:local align:4 data:string +@3513 = .rodata:0x8048B228; // type:object size:0x25 scope:local align:4 data:string +@3519 = .rodata:0x8048B250; // type:object size:0x13 scope:local align:4 +@3555 = .rodata:0x8048B264; // type:object size:0xF scope:local align:4 data:string +@3556 = .rodata:0x8048B274; // type:object size:0xB scope:local align:4 +@3560 = .rodata:0x8048B280; // type:object size:0xD scope:local align:4 +@3564 = .rodata:0x8048B290; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x8048B2A0; // type:object size:0xF scope:local align:4 +@3569 = .rodata:0x8048B2B0; // type:object size:0xF scope:local align:4 +@3570 = .rodata:0x8048B2C0; // type:object size:0xD scope:local align:4 +@3573 = .rodata:0x8048B2D0; // type:object size:0xE scope:local align:4 +@3574 = .rodata:0x8048B2E0; // type:object size:0x10 scope:local align:4 +@3575 = .rodata:0x8048B2F0; // type:object size:0x10 scope:local align:4 +@3576 = .rodata:0x8048B300; // type:object size:0x12 scope:local align:4 +@3578 = .rodata:0x8048B314; // type:object size:0x12 scope:local align:4 +@3579 = .rodata:0x8048B328; // type:object size:0x10 scope:local align:4 +@3580 = .rodata:0x8048B338; // type:object size:0x12 scope:local align:4 +@3582 = .rodata:0x8048B34C; // type:object size:0xD scope:local align:4 +@3584 = .rodata:0x8048B35C; // type:object size:0xF scope:local align:4 +@3618 = .rodata:0x8048B36C; // type:object size:0x13 scope:local align:4 data:string +@3619 = .rodata:0x8048B380; // type:object size:0x13 scope:local align:4 data:string +@3621 = .rodata:0x8048B394; // type:object size:0xF scope:local align:4 data:string +@3622 = .rodata:0x8048B3A4; // type:object size:0xE scope:local align:4 data:string +@3628 = .rodata:0x8048B3B4; // type:object size:0xD scope:local align:4 data:string +@3681 = .rodata:0x8048B3C4; // type:object size:0xD scope:local align:4 +@3683 = .rodata:0x8048B3D4; // type:object size:0xD scope:local align:4 +@3684 = .rodata:0x8048B3E4; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x8048B3F0; // type:object size:0xF scope:local align:4 +@3688 = .rodata:0x8048B400; // type:object size:0x1F scope:local align:4 +@3690 = .rodata:0x8048B420; // type:object size:0x13 scope:local align:4 +@3692 = .rodata:0x8048B434; // type:object size:0x13 scope:local align:4 +@3694 = .rodata:0x8048B448; // type:object size:0x12 scope:local align:4 +@3695 = .rodata:0x8048B45C; // type:object size:0x11 scope:local align:4 +@3700 = .rodata:0x8048B470; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8048B47C; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x8048B48C; // type:object size:0xB scope:local align:4 +@3704 = .rodata:0x8048B498; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x8048B4A4; // type:object size:0x11 scope:local align:4 +@3708 = .rodata:0x8048B4B8; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x8048B4C4; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x8048B4D0; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x8048B4DC; // type:object size:0x9 scope:local align:4 +@3716 = .rodata:0x8048B4E8; // type:object size:0xB scope:local align:4 +@3718 = .rodata:0x8048B4F4; // type:object size:0x11 scope:local align:4 +@3719 = .rodata:0x8048B508; // type:object size:0xD scope:local align:4 +@3720 = .rodata:0x8048B518; // type:object size:0xB scope:local align:4 +@3721 = .rodata:0x8048B524; // type:object size:0xD scope:local align:4 +@3722 = .rodata:0x8048B534; // type:object size:0xD scope:local align:4 +@3723 = .rodata:0x8048B544; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8048B554; // type:object size:0xF scope:local align:4 +@3726 = .rodata:0x8048B564; // type:object size:0x9 scope:local align:4 +@3728 = .rodata:0x8048B570; // type:object size:0x9 scope:local align:4 +@3730 = .rodata:0x8048B57C; // type:object size:0x17 scope:local align:4 +@3731 = .rodata:0x8048B594; // type:object size:0xD scope:local align:4 +@3733 = .rodata:0x8048B5A4; // type:object size:0xD scope:local align:4 +@3734 = .rodata:0x8048B5B4; // type:object size:0xF scope:local align:4 +@3735 = .rodata:0x8048B5C4; // type:object size:0xF scope:local align:4 +@3736 = .rodata:0x8048B5D4; // type:object size:0xF scope:local align:4 +@3737 = .rodata:0x8048B5E4; // type:object size:0xF scope:local align:4 +@3738 = .rodata:0x8048B5F4; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x8048B604; // type:object size:0xF scope:local align:4 +@3740 = .rodata:0x8048B614; // type:object size:0xF scope:local align:4 +@3799 = .rodata:0x8048B624; // type:object size:0xF scope:local align:4 data:string +@3800 = .rodata:0x8048B634; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048B640; // type:label scope:local +@3515 = .rodata:0x8048B640; // type:object size:0x12 scope:local align:4 data:string +@3634 = .rodata:0x8048B654; // type:object size:0xA scope:local align:4 data:string +@3635 = .rodata:0x8048B660; // type:object size:0xA scope:local align:4 data:string +@3636 = .rodata:0x8048B66C; // type:object size:0xA scope:local align:4 data:string +@3637 = .rodata:0x8048B678; // type:object size:0xA scope:local align:4 data:string +@3638 = .rodata:0x8048B684; // type:object size:0xA scope:local align:4 data:string +@3639 = .rodata:0x8048B690; // type:object size:0xA scope:local align:4 data:string +@3640 = .rodata:0x8048B69C; // type:object size:0xA scope:local align:4 data:string +@3641 = .rodata:0x8048B6A8; // type:object size:0xA scope:local align:4 data:string +@3642 = .rodata:0x8048B6B4; // type:object size:0xA scope:local align:4 data:string +@3643 = .rodata:0x8048B6C0; // type:object size:0xA scope:local align:4 data:string +@3644 = .rodata:0x8048B6CC; // type:object size:0xA scope:local align:4 data:string +@3645 = .rodata:0x8048B6D8; // type:object size:0xA scope:local align:4 data:string +@4414 = .rodata:0x8048B6E8; // type:object size:0xA scope:local align:4 data:string +@4415 = .rodata:0x8048B6F4; // type:object size:0xA scope:local align:4 data:string +@4416 = .rodata:0x8048B700; // type:object size:0xA scope:local align:4 data:string +@4417 = .rodata:0x8048B70C; // type:object size:0xA scope:local align:4 data:string +@4418 = .rodata:0x8048B718; // type:object size:0xA scope:local align:4 data:string +@4419 = .rodata:0x8048B724; // type:object size:0xA scope:local align:4 data:string +@4420 = .rodata:0x8048B730; // type:object size:0xA scope:local align:4 data:string +@4421 = .rodata:0x8048B73C; // type:object size:0xA scope:local align:4 data:string +@4422 = .rodata:0x8048B748; // type:object size:0xA scope:local align:4 data:string +@4423 = .rodata:0x8048B754; // type:object size:0xA scope:local align:4 data:string +@4424 = .rodata:0x8048B760; // type:object size:0xA scope:local align:4 data:string +@4425 = .rodata:0x8048B76C; // type:object size:0xA scope:local align:4 data:string +@4426 = .rodata:0x8048B778; // type:object size:0x30 scope:local align:4 data:4byte +@4641 = .rodata:0x8048B7A8; // type:object size:0x10 scope:local align:4 data:4byte +@4674 = .rodata:0x8048B7B8; // type:object size:0x16 scope:local align:4 data:string +@4675 = .rodata:0x8048B7D0; // type:object size:0x9 scope:local align:4 data:string +@5160 = .rodata:0x8048B7DC; // type:object size:0x10 scope:local align:4 data:4byte +@4059 = .rodata:0x8048B7F0; // type:object size:0xA scope:local align:4 data:string +@4065 = .rodata:0x8048B7FC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048B808; // type:label scope:local +@3511 = .rodata:0x8048B808; // type:object size:0x12 scope:local align:4 data:string +@3517 = .rodata:0x8048B81C; // type:object size:0x19 scope:local align:4 +@3542 = .rodata:0x8048B838; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x8048B848; // type:object size:0xB scope:local align:4 +@3547 = .rodata:0x8048B854; // type:object size:0xD scope:local align:4 +@3550 = .rodata:0x8048B864; // type:object size:0xD scope:local align:4 +@3551 = .rodata:0x8048B874; // type:object size:0xB scope:local align:4 +@3587 = .rodata:0x8048B880; // type:object size:0x13 scope:local align:4 data:string +@3588 = .rodata:0x8048B894; // type:object size:0x13 scope:local align:4 data:string +@3590 = .rodata:0x8048B8A8; // type:object size:0xF scope:local align:4 data:string +@3591 = .rodata:0x8048B8B8; // type:object size:0xE scope:local align:4 data:string +@3596 = .rodata:0x8048B8C8; // type:object size:0xD scope:local align:4 data:string +@3650 = .rodata:0x8048B8D8; // type:object size:0xD scope:local align:4 +@3653 = .rodata:0x8048B8E8; // type:object size:0xD scope:local align:4 +@3654 = .rodata:0x8048B8F8; // type:object size:0xB scope:local align:4 +@3656 = .rodata:0x8048B904; // type:object size:0xF scope:local align:4 +@3658 = .rodata:0x8048B914; // type:object size:0x1F scope:local align:4 +@3660 = .rodata:0x8048B934; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8048B948; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048B95C; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x8048B970; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x8048B984; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x8048B990; // type:object size:0xD scope:local align:4 +@3673 = .rodata:0x8048B9A0; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048B9AC; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048B9B8; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048B9CC; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048B9D8; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048B9E4; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048B9F0; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048B9FC; // type:object size:0xB scope:local align:4 +@3689 = .rodata:0x8048BA08; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x8048BA1C; // type:object size:0xD scope:local align:4 +@3691 = .rodata:0x8048BA2C; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x8048BA38; // type:object size:0xD scope:local align:4 +@3693 = .rodata:0x8048BA48; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048BA58; // type:object size:0xF scope:local align:4 +@3695 = .rodata:0x8048BA68; // type:object size:0xF scope:local align:4 +@3697 = .rodata:0x8048BA78; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x8048BA84; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x8048BA90; // type:object size:0x17 scope:local align:4 +@3702 = .rodata:0x8048BAA8; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x8048BAB8; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048BAC8; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x8048BAD8; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048BAE8; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048BAF8; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048BB08; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048BB18; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048BB28; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8048BB38; // type:label scope:local +@3793 = .rodata:0x8048BB38; // type:object size:0xF scope:local align:4 data:string +@3923 = .rodata:0x8048BB48; // type:object size:0x9 scope:local align:4 data:string +@3971 = .rodata:0x8048BB54; // type:object size:0x9 scope:local align:4 data:string +@3972 = .rodata:0x8048BB60; // type:object size:0x9 scope:local align:4 data:string +@3973 = .rodata:0x8048BB6C; // type:object size:0x9 scope:local align:4 data:string +@4302 = .rodata:0x8048BB78; // type:object size:0x14 scope:local align:4 data:4byte +@4303 = .rodata:0x8048BB8C; // type:object size:0x14 scope:local align:4 data:4byte +@4362 = .rodata:0x8048BBA0; // type:object size:0x14 scope:local align:4 +@4363 = .rodata:0x8048BBB4; // type:object size:0x14 scope:local align:4 +@4364 = .rodata:0x8048BBC8; // type:object size:0x14 scope:local align:4 +@4365 = .rodata:0x8048BBDC; // type:object size:0x14 scope:local align:4 +@4366 = .rodata:0x8048BBF0; // type:object size:0x14 scope:local align:4 +@4367 = .rodata:0x8048BC04; // type:object size:0x14 scope:local align:4 +@4558 = .rodata:0x8048BC18; // type:object size:0x14 scope:local align:4 +@4559 = .rodata:0x8048BC2C; // type:object size:0x14 scope:local align:4 +@4560 = .rodata:0x8048BC40; // type:object size:0x14 scope:local align:4 +@4561 = .rodata:0x8048BC54; // type:object size:0x14 scope:local align:4 +@4562 = .rodata:0x8048BC68; // type:object size:0x14 scope:local align:4 +@4563 = .rodata:0x8048BC7C; // type:object size:0x14 scope:local align:4 +@4956 = .rodata:0x8048BC90; // type:object size:0x16 scope:local align:4 data:string +@4957 = .rodata:0x8048BCA8; // type:object size:0x9 scope:local align:4 data:string +@5055 = .rodata:0x8048BCB4; // type:object size:0xC scope:local align:4 data:string +cJointModRatio__Q24Game27@unnamed@SnakeJointMgr_cpp@ = .rodata:0x8048BCC0; // type:object size:0x18 scope:local align:4 data:float +@3549 = .rodata:0x8048BCD8; // type:object size:0x9 scope:local align:4 data:string +@3550 = .rodata:0x8048BCE4; // type:object size:0x9 scope:local align:4 data:string +@3551 = .rodata:0x8048BCF0; // type:object size:0x9 scope:local align:4 data:string +@3552 = .rodata:0x8048BCFC; // type:object size:0x9 scope:local align:4 data:string +@3553 = .rodata:0x8048BD08; // type:object size:0x9 scope:local align:4 data:string +@3554 = .rodata:0x8048BD14; // type:object size:0x9 scope:local align:4 data:string +@3555 = .rodata:0x8048BD20; // type:object size:0x18 scope:local align:4 data:4byte +@4076 = .rodata:0x8048BD38; // type:object size:0x9 scope:local align:4 data:string +@4077 = .rodata:0x8048BD44; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8048BD50; // type:label scope:local +@3510 = .rodata:0x8048BD50; // type:object size:0x11 scope:local align:4 data:string +@3516 = .rodata:0x8048BD64; // type:object size:0x15 scope:local align:4 +@3545 = .rodata:0x8048BD7C; // type:object size:0xF scope:local align:4 data:string +@3546 = .rodata:0x8048BD8C; // type:object size:0x9 scope:local align:4 +@3550 = .rodata:0x8048BD98; // type:object size:0x9 scope:local align:4 +@3553 = .rodata:0x8048BDA4; // type:object size:0x11 scope:local align:4 +@3555 = .rodata:0x8048BDB8; // type:object size:0xD scope:local align:4 +@3557 = .rodata:0x8048BDC8; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x8048BDD8; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x8048BDE8; // type:object size:0xF scope:local align:4 +@3561 = .rodata:0x8048BDF8; // type:object size:0xF scope:local align:4 +@3595 = .rodata:0x8048BE08; // type:object size:0x13 scope:local align:4 data:string +@3596 = .rodata:0x8048BE1C; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x8048BE30; // type:object size:0xF scope:local align:4 data:string +@3599 = .rodata:0x8048BE40; // type:object size:0xE scope:local align:4 data:string +@3605 = .rodata:0x8048BE50; // type:object size:0xD scope:local align:4 data:string +@3659 = .rodata:0x8048BE60; // type:object size:0xD scope:local align:4 +@3662 = .rodata:0x8048BE70; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x8048BE80; // type:object size:0xB scope:local align:4 +@3665 = .rodata:0x8048BE8C; // type:object size:0xF scope:local align:4 +@3667 = .rodata:0x8048BE9C; // type:object size:0x1F scope:local align:4 +@3669 = .rodata:0x8048BEBC; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x8048BED0; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x8048BEE4; // type:object size:0x12 scope:local align:4 +@3674 = .rodata:0x8048BEF8; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048BF0C; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x8048BF18; // type:object size:0xD scope:local align:4 +@3682 = .rodata:0x8048BF28; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x8048BF34; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x8048BF40; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x8048BF54; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x8048BF60; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x8048BF6C; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x8048BF78; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x8048BF84; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x8048BF90; // type:object size:0x11 scope:local align:4 +@3699 = .rodata:0x8048BFA4; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x8048BFB4; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8048BFC0; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x8048BFD0; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x8048BFE0; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x8048BFF0; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x8048C000; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x8048C00C; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x8048C018; // type:object size:0x17 scope:local align:4 +@3711 = .rodata:0x8048C030; // type:object size:0xD scope:local align:4 +@3713 = .rodata:0x8048C040; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x8048C050; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x8048C060; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x8048C070; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x8048C080; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x8048C090; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x8048C0A0; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048C0B0; // type:object size:0xF scope:local align:4 +@4272 = .rodata:0x8048C0C0; // type:object size:0x1C scope:local align:4 data:4byte +@4273 = .rodata:0x8048C0DC; // type:object size:0x1C scope:local align:4 data:4byte +@4291 = .rodata:0x8048C0F8; // type:object size:0x1C scope:local align:4 data:4byte +@4292 = .rodata:0x8048C114; // type:object size:0x1C scope:local align:4 data:4byte +@4310 = .rodata:0x8048C130; // type:object size:0x14 scope:local align:4 data:4byte +@4311 = .rodata:0x8048C144; // type:object size:0x14 scope:local align:4 data:4byte +@4329 = .rodata:0x8048C158; // type:object size:0x20 scope:local align:4 data:4byte +@4330 = .rodata:0x8048C178; // type:object size:0x20 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x8048C198; // type:label scope:local +@3606 = .rodata:0x8048C198; // type:object size:0xC scope:local align:4 +@3657 = .rodata:0x8048C1A4; // type:object size:0x15 scope:local align:4 data:string +@3810 = .rodata:0x8048C1BC; // type:object size:0x9 scope:local align:4 data:string +@3812 = .rodata:0x8048C1C8; // type:object size:0xA scope:local align:4 data:string +@3815 = .rodata:0x8048C1D4; // type:object size:0x9 scope:local align:4 data:string +@3817 = .rodata:0x8048C1E0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048C1F0; // type:label scope:local +@3515 = .rodata:0x8048C1F0; // type:object size:0x13 scope:local align:4 data:string +@3516 = .rodata:0x8048C204; // type:object size:0x2C scope:local align:4 data:string +@3517 = .rodata:0x8048C230; // type:object size:0x2C scope:local align:4 data:string +@3526 = .rodata:0x8048C25C; // type:object size:0x14 scope:local align:4 data:4byte +@3550 = .rodata:0x8048C270; // type:object size:0x17 scope:local align:4 +@3638 = .rodata:0x8048C288; // type:object size:0xF scope:local align:4 data:string +@3639 = .rodata:0x8048C298; // type:object size:0xB scope:local align:4 +@3643 = .rodata:0x8048C2A4; // type:object size:0xD scope:local align:4 +@3647 = .rodata:0x8048C2B4; // type:object size:0xD scope:local align:4 +@3649 = .rodata:0x8048C2C4; // type:object size:0xF scope:local align:4 +@3652 = .rodata:0x8048C2D4; // type:object size:0xF scope:local align:4 +@3653 = .rodata:0x8048C2E4; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x8048C2F4; // type:object size:0xF scope:local align:4 +@3658 = .rodata:0x8048C304; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x8048C314; // type:object size:0xF scope:local align:4 +@3661 = .rodata:0x8048C324; // type:object size:0xF scope:local align:4 +@3662 = .rodata:0x8048C334; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x8048C344; // type:object size:0xF scope:local align:4 +@3664 = .rodata:0x8048C354; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x8048C364; // type:object size:0xF scope:local align:4 +@3666 = .rodata:0x8048C374; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x8048C384; // type:object size:0xE scope:local align:4 +@3670 = .rodata:0x8048C394; // type:object size:0xE scope:local align:4 +@3672 = .rodata:0x8048C3A4; // type:object size:0x10 scope:local align:4 +@3675 = .rodata:0x8048C3B4; // type:object size:0x10 scope:local align:4 +@3677 = .rodata:0x8048C3C4; // type:object size:0xF scope:local align:4 +@3679 = .rodata:0x8048C3D4; // type:object size:0xF scope:local align:4 +@3680 = .rodata:0x8048C3E4; // type:object size:0xE scope:local align:4 +@3682 = .rodata:0x8048C3F4; // type:object size:0xE scope:local align:4 +@3684 = .rodata:0x8048C404; // type:object size:0xC scope:local align:4 +@3685 = .rodata:0x8048C410; // type:object size:0xE scope:local align:4 +@3687 = .rodata:0x8048C420; // type:object size:0xE scope:local align:4 +@3688 = .rodata:0x8048C430; // type:object size:0x10 scope:local align:4 +@3690 = .rodata:0x8048C440; // type:object size:0x10 scope:local align:4 +@3692 = .rodata:0x8048C450; // type:object size:0xF scope:local align:4 +@3694 = .rodata:0x8048C460; // type:object size:0xF scope:local align:4 +@3695 = .rodata:0x8048C470; // type:object size:0xE scope:local align:4 +@3697 = .rodata:0x8048C480; // type:object size:0xE scope:local align:4 +@3698 = .rodata:0x8048C490; // type:object size:0xC scope:local align:4 +@3699 = .rodata:0x8048C49C; // type:object size:0xE scope:local align:4 +@3701 = .rodata:0x8048C4AC; // type:object size:0xE scope:local align:4 +@3702 = .rodata:0x8048C4BC; // type:object size:0x10 scope:local align:4 +@3704 = .rodata:0x8048C4CC; // type:object size:0x10 scope:local align:4 +@3706 = .rodata:0x8048C4DC; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048C4EC; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048C4FC; // type:object size:0xE scope:local align:4 +@3709 = .rodata:0x8048C50C; // type:object size:0xE scope:local align:4 +@3711 = .rodata:0x8048C51C; // type:object size:0xC scope:local align:4 +@3712 = .rodata:0x8048C528; // type:object size:0xE scope:local align:4 +@3714 = .rodata:0x8048C538; // type:object size:0xE scope:local align:4 +@3716 = .rodata:0x8048C548; // type:object size:0x10 scope:local align:4 +@3717 = .rodata:0x8048C558; // type:object size:0x10 scope:local align:4 +@3719 = .rodata:0x8048C568; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048C578; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8048C588; // type:object size:0xE scope:local align:4 +@3723 = .rodata:0x8048C598; // type:object size:0xE scope:local align:4 +@3725 = .rodata:0x8048C5A8; // type:object size:0xC scope:local align:4 +@3726 = .rodata:0x8048C5B4; // type:object size:0x11 scope:local align:4 +@3727 = .rodata:0x8048C5C8; // type:object size:0x10 scope:local align:4 +@3728 = .rodata:0x8048C5D8; // type:object size:0x10 scope:local align:4 +@3730 = .rodata:0x8048C5E8; // type:object size:0x10 scope:local align:4 +@3734 = .rodata:0x8048C5F8; // type:object size:0x10 scope:local align:4 +@3735 = .rodata:0x8048C608; // type:object size:0xE scope:local align:4 +@3737 = .rodata:0x8048C618; // type:object size:0xE scope:local align:4 +@3739 = .rodata:0x8048C628; // type:object size:0xC scope:local align:4 +@3741 = .rodata:0x8048C634; // type:object size:0x10 scope:local align:4 +@3742 = .rodata:0x8048C644; // type:object size:0x10 scope:local align:4 +@3743 = .rodata:0x8048C654; // type:object size:0xC scope:local align:4 +@3744 = .rodata:0x8048C660; // type:object size:0x10 scope:local align:4 +@3746 = .rodata:0x8048C670; // type:object size:0x10 scope:local align:4 +@3781 = .rodata:0x8048C680; // type:object size:0x13 scope:local align:4 data:string +@3782 = .rodata:0x8048C694; // type:object size:0x13 scope:local align:4 data:string +@3783 = .rodata:0x8048C6A8; // type:object size:0xF scope:local align:4 data:string +@3784 = .rodata:0x8048C6B8; // type:object size:0xE scope:local align:4 data:string +@3786 = .rodata:0x8048C6C8; // type:object size:0xD scope:local align:4 data:string +@3839 = .rodata:0x8048C6D8; // type:object size:0xD scope:local align:4 +@3841 = .rodata:0x8048C6E8; // type:object size:0xD scope:local align:4 +@3842 = .rodata:0x8048C6F8; // type:object size:0xB scope:local align:4 +@3843 = .rodata:0x8048C704; // type:object size:0xF scope:local align:4 +@3845 = .rodata:0x8048C714; // type:object size:0x1F scope:local align:4 +@3846 = .rodata:0x8048C734; // type:object size:0x13 scope:local align:4 +@3848 = .rodata:0x8048C748; // type:object size:0x13 scope:local align:4 +@3849 = .rodata:0x8048C75C; // type:object size:0x12 scope:local align:4 +@3850 = .rodata:0x8048C770; // type:object size:0x11 scope:local align:4 +@3854 = .rodata:0x8048C784; // type:object size:0xB scope:local align:4 +@3855 = .rodata:0x8048C790; // type:object size:0xD scope:local align:4 +@3857 = .rodata:0x8048C7A0; // type:object size:0xB scope:local align:4 +@3858 = .rodata:0x8048C7AC; // type:object size:0xB scope:local align:4 +@3860 = .rodata:0x8048C7B8; // type:object size:0x11 scope:local align:4 +@3861 = .rodata:0x8048C7CC; // type:object size:0x9 scope:local align:4 +@3863 = .rodata:0x8048C7D8; // type:object size:0x9 scope:local align:4 +@3865 = .rodata:0x8048C7E4; // type:object size:0x9 scope:local align:4 +@3867 = .rodata:0x8048C7F0; // type:object size:0x9 scope:local align:4 +@3868 = .rodata:0x8048C7FC; // type:object size:0xB scope:local align:4 +@3870 = .rodata:0x8048C808; // type:object size:0x11 scope:local align:4 +@3871 = .rodata:0x8048C81C; // type:object size:0xD scope:local align:4 +@3872 = .rodata:0x8048C82C; // type:object size:0xB scope:local align:4 +@3873 = .rodata:0x8048C838; // type:object size:0xD scope:local align:4 +@3874 = .rodata:0x8048C848; // type:object size:0xD scope:local align:4 +@3875 = .rodata:0x8048C858; // type:object size:0xF scope:local align:4 +@3876 = .rodata:0x8048C868; // type:object size:0xF scope:local align:4 +@3878 = .rodata:0x8048C878; // type:object size:0x9 scope:local align:4 +@3880 = .rodata:0x8048C884; // type:object size:0x9 scope:local align:4 +@3881 = .rodata:0x8048C890; // type:object size:0x17 scope:local align:4 +@3882 = .rodata:0x8048C8A8; // type:object size:0xD scope:local align:4 +@3884 = .rodata:0x8048C8B8; // type:object size:0xD scope:local align:4 +@3885 = .rodata:0x8048C8C8; // type:object size:0xF scope:local align:4 +@3886 = .rodata:0x8048C8D8; // type:object size:0xF scope:local align:4 +@3887 = .rodata:0x8048C8E8; // type:object size:0xF scope:local align:4 +@3888 = .rodata:0x8048C8F8; // type:object size:0xF scope:local align:4 +@3889 = .rodata:0x8048C908; // type:object size:0xF scope:local align:4 +@3890 = .rodata:0x8048C918; // type:object size:0xF scope:local align:4 +@3891 = .rodata:0x8048C928; // type:object size:0xF scope:local align:4 +@3947 = .rodata:0x8048C938; // type:object size:0x13 scope:local align:4 data:string +@3948 = .rodata:0x8048C94C; // type:object size:0x9 scope:local align:4 data:string +@3990 = .rodata:0x8048C958; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8048C968; // type:label scope:local +@3518 = .rodata:0x8048C968; // type:object size:0x16 scope:local align:4 data:string +@3718 = .rodata:0x8048C980; // type:object size:0xA scope:local align:4 data:string +@3719 = .rodata:0x8048C98C; // type:object size:0xA scope:local align:4 data:string +@3720 = .rodata:0x8048C998; // type:object size:0xA scope:local align:4 data:string +@3721 = .rodata:0x8048C9A4; // type:object size:0xA scope:local align:4 data:string +@3722 = .rodata:0x8048C9B0; // type:object size:0xA scope:local align:4 data:string +@3723 = .rodata:0x8048C9BC; // type:object size:0xA scope:local align:4 data:string +@3724 = .rodata:0x8048C9C8; // type:object size:0xA scope:local align:4 data:string +@3725 = .rodata:0x8048C9D4; // type:object size:0xA scope:local align:4 data:string +@3726 = .rodata:0x8048C9E0; // type:object size:0xA scope:local align:4 data:string +@3727 = .rodata:0x8048C9EC; // type:object size:0xA scope:local align:4 data:string +@3728 = .rodata:0x8048C9F8; // type:object size:0xA scope:local align:4 data:string +@3729 = .rodata:0x8048CA04; // type:object size:0xA scope:local align:4 data:string +@3730 = .rodata:0x8048CA10; // type:object size:0xD scope:local align:4 data:string +@3731 = .rodata:0x8048CA20; // type:object size:0xD scope:local align:4 data:string +@3732 = .rodata:0x8048CA30; // type:object size:0xC scope:local align:4 data:string +@3733 = .rodata:0x8048CA3C; // type:object size:0xE scope:local align:4 data:string +@3740 = .rodata:0x8048CA4C; // type:object size:0xA scope:local align:4 data:string +@3741 = .rodata:0x8048CA58; // type:object size:0xA scope:local align:4 data:string +@3742 = .rodata:0x8048CA64; // type:object size:0xA scope:local align:4 data:string +@3743 = .rodata:0x8048CA70; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048CA80; // type:label scope:local +@3673 = .rodata:0x8048CA80; // type:object size:0xC scope:local align:4 +@4028 = .rodata:0x8048CA8C; // type:object size:0x10 scope:local align:4 data:string +@4207 = .rodata:0x8048CA9C; // type:object size:0x9 scope:local align:4 data:string +@4208 = .rodata:0x8048CAA8; // type:object size:0x9 scope:local align:4 data:string +@4209 = .rodata:0x8048CAB4; // type:object size:0x9 scope:local align:4 data:string +@4502 = .rodata:0x8048CAC0; // type:object size:0xA scope:local align:4 data:string +@4503 = .rodata:0x8048CACC; // type:object size:0xA scope:local align:4 data:string +@4504 = .rodata:0x8048CAD8; // type:object size:0xA scope:local align:4 data:string +@4505 = .rodata:0x8048CAE4; // type:object size:0xA scope:local align:4 data:string +@4506 = .rodata:0x8048CAF0; // type:object size:0xA scope:local align:4 data:string +@4507 = .rodata:0x8048CAFC; // type:object size:0xA scope:local align:4 data:string +@4508 = .rodata:0x8048CB08; // type:object size:0xA scope:local align:4 data:string +@4509 = .rodata:0x8048CB14; // type:object size:0xA scope:local align:4 data:string +@4510 = .rodata:0x8048CB20; // type:object size:0xA scope:local align:4 data:string +@4511 = .rodata:0x8048CB2C; // type:object size:0xA scope:local align:4 data:string +@4512 = .rodata:0x8048CB38; // type:object size:0xA scope:local align:4 data:string +@4513 = .rodata:0x8048CB44; // type:object size:0xA scope:local align:4 data:string +@4514 = .rodata:0x8048CB50; // type:object size:0x30 scope:local align:4 data:4byte +@4669 = .rodata:0x8048CB80; // type:object size:0x10 scope:local align:4 data:4byte +@4704 = .rodata:0x8048CB90; // type:object size:0x10 scope:local align:4 data:string +@4709 = .rodata:0x8048CBA0; // type:object size:0x10 scope:local align:4 +@4710 = .rodata:0x8048CBB0; // type:object size:0xD scope:local align:4 data:string +@4711 = .rodata:0x8048CBC0; // type:object size:0xD scope:local align:4 data:string +@4712 = .rodata:0x8048CBD0; // type:object size:0xC scope:local align:4 data:string +@4713 = .rodata:0x8048CBDC; // type:object size:0xE scope:local align:4 data:string +@4714 = .rodata:0x8048CBEC; // type:object size:0x10 scope:local align:4 +@4767 = .rodata:0x8048CBFC; // type:object size:0xE scope:local align:4 data:string +@5704 = .rodata:0x8048CC0C; // type:object size:0x16 scope:local align:4 data:string +@5705 = .rodata:0x8048CC24; // type:object size:0x9 scope:local align:4 data:string +@6688 = .rodata:0x8048CC30; // type:object size:0xF scope:local align:4 data:string +@6692 = .rodata:0x8048CC40; // type:object size:0xA scope:local align:4 data:string +@6788 = .rodata:0x8048CC4C; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8048CC60; // type:label scope:local +@3788 = .rodata:0x8048CC60; // type:object size:0x10 scope:local align:4 data:string +@3956 = .rodata:0x8048CC70; // type:object size:0xA scope:local align:4 data:string +@3960 = .rodata:0x8048CC7C; // type:object size:0xA scope:local align:4 data:string +@3961 = .rodata:0x8048CC88; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048CC98; // type:label scope:local +@3517 = .rodata:0x8048CC98; // type:object size:0xE scope:local align:4 data:string +@3523 = .rodata:0x8048CCA8; // type:object size:0x11 scope:local align:4 +@3533 = .rodata:0x8048CCBC; // type:object size:0xC scope:local align:4 data:4byte +@3563 = .rodata:0x8048CCC8; // type:object size:0xC scope:local align:4 data:4byte +@3611 = .rodata:0x8048CCD4; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x8048CCE4; // type:object size:0x9 scope:local align:4 data:string +@3613 = .rodata:0x8048CCF0; // type:object size:0x14 scope:local align:4 data:string +@3614 = .rodata:0x8048CD04; // type:object size:0x13 scope:local align:4 data:string +@3615 = .rodata:0x8048CD18; // type:object size:0x14 scope:local align:4 data:string +@3617 = .rodata:0x8048CD30; // type:object size:0x9 scope:local align:4 data:string +@3337 = .rodata:0x8048CD40; // type:object size:0x13 scope:local align:4 +@3359 = .rodata:0x8048CD54; // type:object size:0xF scope:local align:4 data:string +@3360 = .rodata:0x8048CD64; // type:object size:0xB scope:local align:4 +...rodata.0 = .rodata:0x8048CD70; // type:label scope:local +@3600 = .rodata:0x8048CD70; // type:object size:0xC scope:local align:4 +@3651 = .rodata:0x8048CD7C; // type:object size:0x14 scope:local align:4 data:string +@3794 = .rodata:0x8048CD90; // type:object size:0x9 scope:local align:4 data:string +@3795 = .rodata:0x8048CD9C; // type:object size:0x9 scope:local align:4 data:string +@3797 = .rodata:0x8048CDA8; // type:object size:0x9 scope:local align:4 data:string +@3798 = .rodata:0x8048CDB4; // type:object size:0x9 scope:local align:4 data:string +@3523 = .rodata:0x8048CDC0; // type:object size:0x17 scope:local align:4 +@4717 = .rodata:0x8048CDD8; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x8048CDE8; // type:label scope:local +@3522 = .rodata:0x8048CDE8; // type:object size:0x11 scope:local align:4 data:string +@3639 = .rodata:0x8048CDFC; // type:object size:0xA scope:local align:4 data:string +@3641 = .rodata:0x8048CE08; // type:object size:0xB scope:local align:4 data:string +@3642 = .rodata:0x8048CE14; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048CE20; // type:label scope:local +@3510 = .rodata:0x8048CE20; // type:object size:0xF scope:local align:4 data:string +@3516 = .rodata:0x8048CE30; // type:object size:0x13 scope:local align:4 +@3547 = .rodata:0x8048CE44; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x8048CE54; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x8048CE64; // type:object size:0xD scope:local align:4 +@3553 = .rodata:0x8048CE74; // type:object size:0xD scope:local align:4 +@3556 = .rodata:0x8048CE84; // type:object size:0xD scope:local align:4 +@3558 = .rodata:0x8048CE94; // type:object size:0x9 scope:local align:4 +@3560 = .rodata:0x8048CEA0; // type:object size:0xD scope:local align:4 +@3562 = .rodata:0x8048CEB0; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x8048CEC0; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x8048CED0; // type:object size:0xF scope:local align:4 +@3568 = .rodata:0x8048CEE0; // type:object size:0x11 scope:local align:4 +@3603 = .rodata:0x8048CEF4; // type:object size:0x13 scope:local align:4 data:string +@3604 = .rodata:0x8048CF08; // type:object size:0x13 scope:local align:4 data:string +@3606 = .rodata:0x8048CF1C; // type:object size:0xF scope:local align:4 data:string +@3607 = .rodata:0x8048CF2C; // type:object size:0xE scope:local align:4 data:string +@3611 = .rodata:0x8048CF3C; // type:object size:0xD scope:local align:4 data:string +@3665 = .rodata:0x8048CF4C; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x8048CF5C; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x8048CF6C; // type:object size:0xB scope:local align:4 +@3670 = .rodata:0x8048CF78; // type:object size:0xF scope:local align:4 +@3672 = .rodata:0x8048CF88; // type:object size:0x1F scope:local align:4 +@3674 = .rodata:0x8048CFA8; // type:object size:0x13 scope:local align:4 +@3676 = .rodata:0x8048CFBC; // type:object size:0x13 scope:local align:4 +@3678 = .rodata:0x8048CFD0; // type:object size:0x12 scope:local align:4 +@3679 = .rodata:0x8048CFE4; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x8048CFF8; // type:object size:0xB scope:local align:4 +@3685 = .rodata:0x8048D004; // type:object size:0xD scope:local align:4 +@3686 = .rodata:0x8048D014; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x8048D020; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048D02C; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x8048D040; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x8048D04C; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x8048D058; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8048D064; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x8048D070; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8048D07C; // type:object size:0x11 scope:local align:4 +@3702 = .rodata:0x8048D090; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x8048D0A0; // type:object size:0xB scope:local align:4 +@3704 = .rodata:0x8048D0AC; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048D0BC; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8048D0CC; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048D0DC; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048D0EC; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x8048D0F8; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x8048D104; // type:object size:0x17 scope:local align:4 +@3714 = .rodata:0x8048D11C; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x8048D12C; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x8048D13C; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x8048D14C; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x8048D15C; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x8048D16C; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048D17C; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x8048D18C; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8048D19C; // type:object size:0xF scope:local align:4 +@4010 = .rodata:0x8048D1B0; // type:object size:0xC scope:local align:4 data:string +@4056 = .rodata:0x8048D1C0; // type:object size:0xC scope:local align:4 data:string +@4057 = .rodata:0x8048D1CC; // type:object size:0xC scope:local align:4 data:string +@3520 = .rodata:0x8048D1D8; // type:object size:0x17 scope:local align:4 +@4704 = .rodata:0x8048D1F0; // type:object size:0x11 scope:local align:4 data:string +@5103 = .rodata:0x8048D204; // type:object size:0x11 scope:local align:4 data:string +@5471 = .rodata:0x8048D218; // type:object size:0x10 scope:local align:4 data:string +@5642 = .rodata:0x8048D228; // type:object size:0x12 scope:local align:4 data:string +cSphereShadowRadius__Q34Game9SnakeCrow29@unnamed@SnakeCrowShadow_cpp@ = .rodata:0x8048D240; // type:object size:0x20 scope:local align:4 data:float +cTubeShadowRadius__Q34Game9SnakeCrow29@unnamed@SnakeCrowShadow_cpp@ = .rodata:0x8048D260; // type:object size:0x20 scope:local align:4 data:float +@3734 = .rodata:0x8048D280; // type:object size:0x9 scope:local align:4 data:string +@3735 = .rodata:0x8048D28C; // type:object size:0x9 scope:local align:4 data:string +@3736 = .rodata:0x8048D298; // type:object size:0x9 scope:local align:4 data:string +@3737 = .rodata:0x8048D2A4; // type:object size:0x9 scope:local align:4 data:string +@3738 = .rodata:0x8048D2B0; // type:object size:0x9 scope:local align:4 data:string +@3739 = .rodata:0x8048D2BC; // type:object size:0x9 scope:local align:4 data:string +@3740 = .rodata:0x8048D2C8; // type:object size:0x9 scope:local align:4 data:string +@3741 = .rodata:0x8048D2D4; // type:object size:0x9 scope:local align:4 data:string +@3742 = .rodata:0x8048D2E0; // type:object size:0x20 scope:local align:4 data:4byte +cSphereShadowRadius__Q34Game10SnakeWhole30@unnamed@SnakeWholeShadow_cpp@ = .rodata:0x8048D300; // type:object size:0x24 scope:local align:4 data:float +cTubeShadowRadius__Q34Game10SnakeWhole30@unnamed@SnakeWholeShadow_cpp@ = .rodata:0x8048D324; // type:object size:0x24 scope:local align:4 data:float +@3734 = .rodata:0x8048D348; // type:object size:0xC scope:local align:4 data:string +@3735 = .rodata:0x8048D354; // type:object size:0xB scope:local align:4 data:string +@3736 = .rodata:0x8048D360; // type:object size:0xB scope:local align:4 data:string +@3737 = .rodata:0x8048D36C; // type:object size:0x9 scope:local align:4 data:string +@3738 = .rodata:0x8048D378; // type:object size:0x9 scope:local align:4 data:string +@3739 = .rodata:0x8048D384; // type:object size:0x9 scope:local align:4 data:string +@3740 = .rodata:0x8048D390; // type:object size:0x9 scope:local align:4 data:string +@3741 = .rodata:0x8048D39C; // type:object size:0x9 scope:local align:4 data:string +@3742 = .rodata:0x8048D3A8; // type:object size:0x9 scope:local align:4 data:string +@3743 = .rodata:0x8048D3B4; // type:object size:0x24 scope:local align:4 data:4byte +@3522 = .rodata:0x8048D3D8; // type:object size:0x2E scope:local align:4 data:string +@3530 = .rodata:0x8048D408; // type:object size:0x1F scope:local align:4 +@3769 = .rodata:0x8048D428; // type:object size:0x13 scope:local align:4 data:string +@3770 = .rodata:0x8048D43C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048D448; // type:label scope:local +@3512 = .rodata:0x8048D448; // type:object size:0x12 scope:local align:4 data:string +@3513 = .rodata:0x8048D45C; // type:object size:0x26 scope:local align:4 data:string +@3519 = .rodata:0x8048D484; // type:object size:0x15 scope:local align:4 +@3544 = .rodata:0x8048D49C; // type:object size:0xF scope:local align:4 data:string +@3545 = .rodata:0x8048D4AC; // type:object size:0x13 scope:local align:4 +@3549 = .rodata:0x8048D4C0; // type:object size:0x15 scope:local align:4 +@3552 = .rodata:0x8048D4D8; // type:object size:0x17 scope:local align:4 +@3555 = .rodata:0x8048D4F0; // type:object size:0x11 scope:local align:4 +@3591 = .rodata:0x8048D504; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x8048D518; // type:object size:0x13 scope:local align:4 data:string +@3594 = .rodata:0x8048D52C; // type:object size:0xF scope:local align:4 data:string +@3595 = .rodata:0x8048D53C; // type:object size:0xE scope:local align:4 data:string +@3600 = .rodata:0x8048D54C; // type:object size:0xD scope:local align:4 data:string +@3654 = .rodata:0x8048D55C; // type:object size:0xD scope:local align:4 +@3657 = .rodata:0x8048D56C; // type:object size:0xD scope:local align:4 +@3658 = .rodata:0x8048D57C; // type:object size:0xB scope:local align:4 +@3659 = .rodata:0x8048D588; // type:object size:0xF scope:local align:4 +@3661 = .rodata:0x8048D598; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x8048D5B8; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048D5CC; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x8048D5E0; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x8048D5F4; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x8048D608; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x8048D614; // type:object size:0xD scope:local align:4 +@3674 = .rodata:0x8048D624; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048D630; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048D63C; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048D650; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048D65C; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048D668; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048D674; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048D680; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048D68C; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x8048D6A0; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x8048D6B0; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048D6BC; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048D6CC; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048D6DC; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x8048D6EC; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x8048D6FC; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048D708; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048D714; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x8048D72C; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048D73C; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8048D74C; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048D75C; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048D76C; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048D77C; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048D78C; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048D79C; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048D7AC; // type:object size:0xF scope:local align:4 +@3771 = .rodata:0x8048D7BC; // type:object size:0x12 scope:local align:4 data:string +@3772 = .rodata:0x8048D7D0; // type:object size:0x9 scope:local align:4 data:string +@4054 = .rodata:0x8048D7E0; // type:object size:0xB scope:local align:4 data:string +@5139 = .rodata:0x8048D7EC; // type:object size:0x16 scope:local align:4 data:string +@5140 = .rodata:0x8048D804; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x8048D810; // type:object size:0x2D scope:local align:4 data:string +@3523 = .rodata:0x8048D840; // type:object size:0x19 scope:local align:4 +@3546 = .rodata:0x8048D85C; // type:object size:0xF scope:local align:4 data:string +@3750 = .rodata:0x8048D86C; // type:object size:0x13 scope:local align:4 data:string +@3751 = .rodata:0x8048D880; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x8048D890; // type:object size:0x2C scope:local align:4 data:string +@3523 = .rodata:0x8048D8BC; // type:object size:0x17 scope:local align:4 +@3750 = .rodata:0x8048D8D4; // type:object size:0x11 scope:local align:4 data:string +@3751 = .rodata:0x8048D8E8; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x8048D8F8; // type:object size:0x2D scope:local align:4 data:string +@3523 = .rodata:0x8048D928; // type:object size:0x15 scope:local align:4 +@3750 = .rodata:0x8048D940; // type:object size:0x11 scope:local align:4 data:string +@3751 = .rodata:0x8048D954; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048D960; // type:label scope:local +@3514 = .rodata:0x8048D960; // type:object size:0x16 scope:local align:4 data:string +@3522 = .rodata:0x8048D978; // type:object size:0x1F scope:local align:4 +@3547 = .rodata:0x8048D998; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x8048D9A8; // type:object size:0x13 scope:local align:4 +@3552 = .rodata:0x8048D9BC; // type:object size:0x13 scope:local align:4 +@3587 = .rodata:0x8048D9D0; // type:object size:0x13 scope:local align:4 data:string +@3588 = .rodata:0x8048D9E4; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x8048D9F8; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x8048DA08; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x8048DA18; // type:object size:0xD scope:local align:4 data:string +@3652 = .rodata:0x8048DA28; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x8048DA38; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x8048DA48; // type:object size:0xB scope:local align:4 +@3657 = .rodata:0x8048DA54; // type:object size:0xF scope:local align:4 +@3659 = .rodata:0x8048DA64; // type:object size:0x1F scope:local align:4 +@3660 = .rodata:0x8048DA84; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8048DA98; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048DAAC; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x8048DAC0; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x8048DAD4; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x8048DAE0; // type:object size:0xD scope:local align:4 +@3673 = .rodata:0x8048DAF0; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048DAFC; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048DB08; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048DB1C; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048DB28; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048DB34; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048DB40; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048DB4C; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048DB58; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x8048DB6C; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x8048DB7C; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048DB88; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048DB98; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048DBA8; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x8048DBB8; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x8048DBC8; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048DBD4; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048DBE0; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x8048DBF8; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048DC08; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8048DC18; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048DC28; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048DC38; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048DC48; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048DC58; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048DC68; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048DC78; // type:object size:0xF scope:local align:4 +@3522 = .rodata:0x8048DC88; // type:object size:0x1B scope:local align:4 +@3962 = .rodata:0x8048DCA8; // type:object size:0xA scope:local align:4 data:string +@3963 = .rodata:0x8048DCB4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048DCC0; // type:label scope:local +@3500 = .rodata:0x8048DCC0; // type:object size:0x9 scope:local align:4 data:string +@3625 = .rodata:0x8048DCCC; // type:object size:0xD scope:local align:4 data:string +@3626 = .rodata:0x8048DCDC; // type:object size:0x19 scope:local align:4 data:string +@4039 = .rodata:0x8048DCF8; // type:object size:0x12 scope:local align:4 data:string +@4050 = .rodata:0x8048DD0C; // type:object size:0x10 scope:local align:4 data:string +@4051 = .rodata:0x8048DD1C; // type:object size:0xB scope:local align:4 data:string +@4052 = .rodata:0x8048DD28; // type:object size:0xB scope:local align:4 data:string +@4053 = .rodata:0x8048DD34; // type:object size:0xB scope:local align:4 data:string +@4054 = .rodata:0x8048DD40; // type:object size:0xB scope:local align:4 data:string +@4055 = .rodata:0x8048DD4C; // type:object size:0xB scope:local align:4 data:string +@4056 = .rodata:0x8048DD58; // type:object size:0xB scope:local align:4 data:string +@4057 = .rodata:0x8048DD64; // type:object size:0xB scope:local align:4 data:string +@4058 = .rodata:0x8048DD70; // type:object size:0xB scope:local align:4 data:string +@4059 = .rodata:0x8048DD7C; // type:object size:0xB scope:local align:4 data:string +@4060 = .rodata:0x8048DD88; // type:object size:0xC scope:local align:4 data:string +@4061 = .rodata:0x8048DD94; // type:object size:0xC scope:local align:4 data:string +@4062 = .rodata:0x8048DDA0; // type:object size:0xC scope:local align:4 data:string +@4063 = .rodata:0x8048DDAC; // type:object size:0xB scope:local align:4 data:string +@4064 = .rodata:0x8048DDB8; // type:object size:0xB scope:local align:4 data:string +@4065 = .rodata:0x8048DDC4; // type:object size:0xB scope:local align:4 data:string +@4066 = .rodata:0x8048DDD0; // type:object size:0xA scope:local align:4 data:string +@4067 = .rodata:0x8048DDDC; // type:object size:0xA scope:local align:4 data:string +@4068 = .rodata:0x8048DDE8; // type:object size:0xA scope:local align:4 data:string +@4103 = .rodata:0x8048DDF4; // type:object size:0x1B scope:local align:4 data:string +@4104 = .rodata:0x8048DE10; // type:object size:0x15 scope:local align:4 data:string +@4146 = .rodata:0x8048DE28; // type:object size:0xA scope:local align:4 data:string +@4175 = .rodata:0x8048DE34; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048DE50; // type:label scope:local +@3500 = .rodata:0x8048DE50; // type:object size:0xC scope:local align:4 data:string +@3532 = .rodata:0x8048DE5C; // type:object size:0x18 scope:local align:4 data:string +@3709 = .rodata:0x8048DE74; // type:object size:0x1A scope:local align:4 data:string +@3483 = .rodata:0x8048DE90; // type:object size:0x9 scope:local align:4 data:string +@3484 = .rodata:0x8048DE9C; // type:object size:0x9 scope:local align:4 data:string +@3485 = .rodata:0x8048DEA8; // type:object size:0x9 scope:local align:4 data:string +@3486 = .rodata:0x8048DEB4; // type:object size:0x9 scope:local align:4 data:string +@3487 = .rodata:0x8048DEC0; // type:object size:0x9 scope:local align:4 data:string +@3488 = .rodata:0x8048DECC; // type:object size:0x9 scope:local align:4 data:string +@3489 = .rodata:0x8048DED8; // type:object size:0x9 scope:local align:4 data:string +@3490 = .rodata:0x8048DEE4; // type:object size:0x9 scope:local align:4 data:string +@3491 = .rodata:0x8048DEF0; // type:object size:0x9 scope:local align:4 data:string +@3492 = .rodata:0x8048DEFC; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x8048DF08; // type:object size:0x9 scope:local align:4 data:string +@3504 = .rodata:0x8048DF14; // type:object size:0x9 scope:local align:4 data:string +@3505 = .rodata:0x8048DF20; // type:object size:0x9 scope:local align:4 data:string +@3506 = .rodata:0x8048DF2C; // type:object size:0x9 scope:local align:4 data:string +@3507 = .rodata:0x8048DF38; // type:object size:0x9 scope:local align:4 data:string +@3508 = .rodata:0x8048DF44; // type:object size:0x9 scope:local align:4 data:string +@3509 = .rodata:0x8048DF50; // type:object size:0x9 scope:local align:4 data:string +@3510 = .rodata:0x8048DF5C; // type:object size:0x9 scope:local align:4 data:string +@3511 = .rodata:0x8048DF68; // type:object size:0x9 scope:local align:4 data:string +@3512 = .rodata:0x8048DF74; // type:object size:0x9 scope:local align:4 data:string +@3513 = .rodata:0x8048DF80; // type:object size:0x9 scope:local align:4 data:string +@3539 = .rodata:0x8048DF8C; // type:object size:0xE scope:local align:4 data:string +@3540 = .rodata:0x8048DF9C; // type:object size:0x1B scope:local align:4 data:string +@3793 = .rodata:0x8048DFB8; // type:object size:0x10 scope:local align:4 data:string +@3794 = .rodata:0x8048DFC8; // type:object size:0x16 scope:local align:4 data:string +@3513 = .rodata:0x8048DFE0; // type:object size:0xE scope:local align:4 data:string +@3515 = .rodata:0x8048DFF0; // type:object size:0xE scope:local align:4 data:string +@3802 = .rodata:0x8048E000; // type:object size:0x15 scope:local align:4 data:string +@3803 = .rodata:0x8048E018; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E030; // type:label scope:local +@3743 = .rodata:0x8048E030; // type:object size:0x9 scope:local align:4 data:string +@3744 = .rodata:0x8048E03C; // type:object size:0x9 scope:local align:4 data:string +@3745 = .rodata:0x8048E048; // type:object size:0xA scope:local align:4 data:string +@3746 = .rodata:0x8048E054; // type:object size:0x24 scope:local align:4 data:string +@3727 = .rodata:0x8048E078; // type:object size:0xC scope:local align:4 data:string +@3728 = .rodata:0x8048E084; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E090; // type:label scope:local +@3702 = .rodata:0x8048E090; // type:object size:0xE scope:local align:4 data:string +@3770 = .rodata:0x8048E0A0; // type:object size:0x9 scope:local align:4 data:string +@3771 = .rodata:0x8048E0AC; // type:object size:0x9 scope:local align:4 data:string +@3772 = .rodata:0x8048E0B8; // type:object size:0xA scope:local align:4 data:string +@3773 = .rodata:0x8048E0C4; // type:object size:0x24 scope:local align:4 data:string +@3774 = .rodata:0x8048E0E8; // type:object size:0xC scope:local align:4 data:string +@3778 = .rodata:0x8048E0F4; // type:object size:0xA scope:local align:4 data:string +@3783 = .rodata:0x8048E100; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E110; // type:label scope:local +@3627 = .rodata:0x8048E110; // type:object size:0xC scope:local align:4 +@3660 = .rodata:0x8048E11C; // type:object size:0x10 scope:local align:4 data:string +@3751 = .rodata:0x8048E12C; // type:object size:0x1E scope:local align:4 +@3752 = .rodata:0x8048E14C; // type:object size:0xE scope:local align:4 data:string +@3753 = .rodata:0x8048E15C; // type:object size:0xB scope:local align:4 data:string +@3754 = .rodata:0x8048E168; // type:object size:0xA scope:local align:4 data:string +@3755 = .rodata:0x8048E174; // type:object size:0xE scope:local align:4 data:string +@3756 = .rodata:0x8048E184; // type:object size:0xB scope:local align:4 data:string +@3915 = .rodata:0x8048E190; // type:object size:0xC scope:local align:4 data:string +@3916 = .rodata:0x8048E19C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E1A8; // type:label scope:local +@3782 = .rodata:0x8048E1A8; // type:object size:0xC scope:local align:4 +@3823 = .rodata:0x8048E1B4; // type:object size:0x12 scope:local align:4 data:string +@3997 = .rodata:0x8048E1C8; // type:object size:0x27 scope:local align:4 data:string +@3998 = .rodata:0x8048E1F0; // type:object size:0x11 scope:local align:4 data:string +@3999 = .rodata:0x8048E204; // type:object size:0xF scope:local align:4 data:string +@4000 = .rodata:0x8048E214; // type:object size:0x12 scope:local align:4 data:string +@4001 = .rodata:0x8048E228; // type:object size:0xD scope:local align:4 data:string +@4068 = .rodata:0x8048E238; // type:object size:0x18 scope:local align:8 data:double +@4333 = .rodata:0x8048E250; // type:object size:0xD scope:local align:4 data:string +@4334 = .rodata:0x8048E260; // type:object size:0x17 scope:local align:4 data:string +@4385 = .rodata:0x8048E278; // type:object size:0x20 scope:local align:4 data:string +@4782 = .rodata:0x8048E298; // type:object size:0x11 scope:local align:4 data:string +@4783 = .rodata:0x8048E2AC; // type:object size:0x11 scope:local align:4 data:string +@4784 = .rodata:0x8048E2C0; // type:object size:0x14 scope:local align:4 data:string +@4785 = .rodata:0x8048E2D4; // type:object size:0x14 scope:local align:4 data:string +@5269 = .rodata:0x8048E2E8; // type:object size:0xC scope:local align:4 data:string +@5270 = .rodata:0x8048E2F4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E300; // type:label scope:local +@3780 = .rodata:0x8048E300; // type:object size:0xC scope:local align:4 +@3816 = .rodata:0x8048E30C; // type:object size:0x14 scope:local align:4 data:string +@3861 = .rodata:0x8048E320; // type:object size:0x16 scope:local align:4 data:string +@3862 = .rodata:0x8048E338; // type:object size:0x2B scope:local align:4 data:string +@3863 = .rodata:0x8048E364; // type:object size:0x29 scope:local align:4 data:string +@3864 = .rodata:0x8048E390; // type:object size:0x2C scope:local align:4 data:string +@3865 = .rodata:0x8048E3BC; // type:object size:0x27 scope:local align:4 data:string +@3867 = .rodata:0x8048E3E4; // type:object size:0xF scope:local align:4 data:string +@3868 = .rodata:0x8048E3F4; // type:object size:0x10 scope:local align:4 data:string +@3877 = .rodata:0x8048E404; // type:object size:0x10 scope:local align:4 data:string +@3914 = .rodata:0x8048E414; // type:object size:0x9 scope:local align:4 +@3916 = .rodata:0x8048E420; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E438; // type:label scope:local +@3638 = .rodata:0x8048E438; // type:object size:0x13 scope:local align:4 data:string +@3771 = .rodata:0x8048E44C; // type:object size:0x12 scope:local align:4 data:string +@3772 = .rodata:0x8048E460; // type:object size:0x18 scope:local align:4 data:string +@3773 = .rodata:0x8048E478; // type:object size:0x16 scope:local align:4 data:string +@3778 = .rodata:0x8048E490; // type:object size:0x12 scope:local align:4 data:string +@3779 = .rodata:0x8048E4A4; // type:object size:0x15 scope:local align:4 data:string +@3780 = .rodata:0x8048E4BC; // type:object size:0x15 scope:local align:4 data:string +@3781 = .rodata:0x8048E4D4; // type:object size:0x15 scope:local align:4 data:string +@3782 = .rodata:0x8048E4EC; // type:object size:0x15 scope:local align:4 data:string +@3783 = .rodata:0x8048E504; // type:object size:0x16 scope:local align:4 data:string +@3785 = .rodata:0x8048E51C; // type:object size:0x17 scope:local align:4 data:string +@3953 = .rodata:0x8048E534; // type:object size:0xC scope:local align:4 data:string +@3954 = .rodata:0x8048E540; // type:object size:0x9 scope:local align:4 data:string +@3572 = .rodata:0x8048E550; // type:object size:0x11 scope:local align:4 data:string +@3578 = .rodata:0x8048E564; // type:object size:0x14 scope:local align:4 data:string +@3674 = .rodata:0x8048E578; // type:object size:0x12 scope:local align:4 data:string +@3697 = .rodata:0x8048E58C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E5A8; // type:label scope:local +@3641 = .rodata:0x8048E5A8; // type:object size:0x14 scope:local align:4 data:string +@3737 = .rodata:0x8048E5BC; // type:object size:0x13 scope:local align:4 data:string +@3740 = .rodata:0x8048E5D0; // type:object size:0x13 scope:local align:4 data:string +@3741 = .rodata:0x8048E5E4; // type:object size:0x16 scope:local align:4 data:string +@3742 = .rodata:0x8048E5FC; // type:object size:0x16 scope:local align:4 data:string +@3743 = .rodata:0x8048E614; // type:object size:0x16 scope:local align:4 data:string +@3964 = .rodata:0x8048E62C; // type:object size:0x13 scope:local align:4 data:string +@4404 = .rodata:0x8048E640; // type:object size:0xC scope:local align:4 data:string +@4405 = .rodata:0x8048E64C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E658; // type:label scope:local +@3629 = .rodata:0x8048E658; // type:object size:0x13 scope:local align:4 data:string +@3696 = .rodata:0x8048E66C; // type:object size:0x18 scope:local align:4 data:string +@3728 = .rodata:0x8048E684; // type:object size:0xD scope:local align:4 data:string +@3739 = .rodata:0x8048E694; // type:object size:0x13 scope:local align:4 data:string +@3750 = .rodata:0x8048E6A8; // type:object size:0xA scope:local align:4 +@3835 = .rodata:0x8048E6B4; // type:object size:0x13 scope:local align:4 data:string +@3965 = .rodata:0x8048E6C8; // type:object size:0xD scope:local align:4 data:string +@4013 = .rodata:0x8048E6D8; // type:object size:0xE scope:local align:4 data:string +@4051 = .rodata:0x8048E6E8; // type:object size:0xC scope:local align:4 data:string +@4052 = .rodata:0x8048E6F4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E700; // type:label scope:local +@3629 = .rodata:0x8048E700; // type:object size:0x14 scope:local align:4 data:string +@3670 = .rodata:0x8048E718; // type:object size:0x20 scope:local align:8 +@3722 = .rodata:0x8048E738; // type:object size:0x24 scope:local align:4 +@3904 = .rodata:0x8048E75C; // type:object size:0xC scope:local align:4 data:string +@3905 = .rodata:0x8048E768; // type:object size:0x9 scope:local align:4 data:string +@3129 = .rodata:0x8048E778; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E790; // type:label scope:local +@2688 = .rodata:0x8048E790; // type:object size:0x16 scope:local align:4 data:string +@2689 = .rodata:0x8048E7A8; // type:object size:0x11 scope:local align:4 data:string +@2709 = .rodata:0x8048E7BC; // type:object size:0xF scope:local align:4 data:string +@2710 = .rodata:0x8048E7CC; // type:object size:0x10 scope:local align:4 data:string +@2723 = .rodata:0x8048E7DC; // type:object size:0x13 scope:local align:4 data:string +@2724 = .rodata:0x8048E7F0; // type:object size:0x16 scope:local align:4 data:string +@2725 = .rodata:0x8048E808; // type:object size:0x16 scope:local align:4 data:string +@2726 = .rodata:0x8048E820; // type:object size:0x16 scope:local align:4 data:string +@2727 = .rodata:0x8048E838; // type:object size:0x16 scope:local align:4 data:string +@2728 = .rodata:0x8048E850; // type:object size:0x12 scope:local align:4 data:string +@2729 = .rodata:0x8048E864; // type:object size:0x12 scope:local align:4 data:string +@2730 = .rodata:0x8048E878; // type:object size:0x12 scope:local align:4 data:string +@2731 = .rodata:0x8048E88C; // type:object size:0x12 scope:local align:4 data:string +@2732 = .rodata:0x8048E8A0; // type:object size:0x12 scope:local align:4 data:string +@2733 = .rodata:0x8048E8B4; // type:object size:0x12 scope:local align:4 data:string +@2734 = .rodata:0x8048E8C8; // type:object size:0x12 scope:local align:4 data:string +@2735 = .rodata:0x8048E8DC; // type:object size:0x12 scope:local align:4 data:string +@2736 = .rodata:0x8048E8F0; // type:object size:0x12 scope:local align:4 data:string +@2737 = .rodata:0x8048E904; // type:object size:0x12 scope:local align:4 data:string +@2738 = .rodata:0x8048E918; // type:object size:0x12 scope:local align:4 data:string +@2739 = .rodata:0x8048E92C; // type:object size:0x12 scope:local align:4 data:string +@2740 = .rodata:0x8048E940; // type:object size:0x12 scope:local align:4 data:string +@2741 = .rodata:0x8048E954; // type:object size:0x12 scope:local align:4 data:string +@2742 = .rodata:0x8048E968; // type:object size:0x12 scope:local align:4 data:string +@2743 = .rodata:0x8048E97C; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E990; // type:label scope:local +@3655 = .rodata:0x8048E990; // type:object size:0x10 scope:local align:4 data:string +@3720 = .rodata:0x8048E9A0; // type:object size:0x18 scope:local align:8 +@3803 = .rodata:0x8048E9B8; // type:object size:0x20 scope:local align:4 +@3804 = .rodata:0x8048E9D8; // type:object size:0xE scope:local align:4 data:string +@3805 = .rodata:0x8048E9E8; // type:object size:0x1A scope:local align:4 data:string +@3806 = .rodata:0x8048EA04; // type:object size:0x16 scope:local align:4 data:string +@3807 = .rodata:0x8048EA1C; // type:object size:0x17 scope:local align:4 data:string +@3808 = .rodata:0x8048EA34; // type:object size:0x1B scope:local align:4 data:string +@3809 = .rodata:0x8048EA50; // type:object size:0x11 scope:local align:4 data:string +@3821 = .rodata:0x8048EA64; // type:object size:0x9 scope:local align:4 data:string +@3822 = .rodata:0x8048EA70; // type:object size:0x9 scope:local align:4 data:string +@4103 = .rodata:0x8048EA7C; // type:object size:0xA scope:local align:4 data:string +@4104 = .rodata:0x8048EA88; // type:object size:0x24 scope:local align:4 data:string +@4200 = .rodata:0x8048EAAC; // type:object size:0xC scope:local align:4 data:string +@3539 = .rodata:0x8048EAB8; // type:object size:0xE scope:local align:4 data:string +@3541 = .rodata:0x8048EAC8; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EAD8; // type:label scope:local +@3629 = .rodata:0x8048EAD8; // type:object size:0x15 scope:local align:4 data:string +@3683 = .rodata:0x8048EAF0; // type:object size:0x1E scope:local align:4 +@3684 = .rodata:0x8048EB10; // type:object size:0x12 scope:local align:4 data:string +@3756 = .rodata:0x8048EB24; // type:object size:0x9 scope:local align:4 data:string +@3757 = .rodata:0x8048EB30; // type:object size:0x9 scope:local align:4 data:string +@3758 = .rodata:0x8048EB3C; // type:object size:0xA scope:local align:4 data:string +@3759 = .rodata:0x8048EB48; // type:object size:0x24 scope:local align:4 data:string +@3804 = .rodata:0x8048EB6C; // type:object size:0xC scope:local align:4 data:string +@2679 = .rodata:0x8048EB78; // type:object size:0x14 scope:local align:4 data:string +@2690 = .rodata:0x8048EB8C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EBA8; // type:label scope:local +@3647 = .rodata:0x8048EBA8; // type:object size:0xF scope:local align:4 data:string +@4059 = .rodata:0x8048EBB8; // type:object size:0x1F scope:local align:4 +@4060 = .rodata:0x8048EBD8; // type:object size:0xF scope:local align:4 data:string +@4061 = .rodata:0x8048EBE8; // type:object size:0x17 scope:local align:4 data:string +@4062 = .rodata:0x8048EC00; // type:object size:0xE scope:local align:4 data:string +@4063 = .rodata:0x8048EC10; // type:object size:0x19 scope:local align:4 data:string +@4066 = .rodata:0x8048EC2C; // type:object size:0x19 scope:local align:4 data:string +@4067 = .rodata:0x8048EC48; // type:object size:0x1C scope:local align:4 data:string +@4382 = .rodata:0x8048EC64; // type:object size:0xC scope:local align:4 data:string +@4383 = .rodata:0x8048EC70; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EC80; // type:label scope:local +@3531 = .rodata:0x8048EC80; // type:object size:0x11 scope:local align:4 data:string +@3572 = .rodata:0x8048EC94; // type:object size:0x17 scope:local align:4 data:string +@3573 = .rodata:0x8048ECAC; // type:object size:0x1B scope:local align:4 data:string +@3574 = .rodata:0x8048ECC8; // type:object size:0xF scope:local align:4 data:string +@3575 = .rodata:0x8048ECD8; // type:object size:0x10 scope:local align:4 data:string +@3576 = .rodata:0x8048ECE8; // type:object size:0xD scope:local align:4 data:string +@3577 = .rodata:0x8048ECF8; // type:object size:0x1B scope:local align:4 data:string +...rodata.0 = .rodata:0x8048ED18; // type:label scope:local +@3620 = .rodata:0x8048ED18; // type:object size:0xC scope:local align:4 +@3653 = .rodata:0x8048ED24; // type:object size:0xE scope:local align:4 data:string +@3756 = .rodata:0x8048ED34; // type:object size:0x1E scope:local align:4 +@3757 = .rodata:0x8048ED54; // type:object size:0xB scope:local align:4 data:string +@3758 = .rodata:0x8048ED60; // type:object size:0xA scope:local align:4 data:string +@3759 = .rodata:0x8048ED6C; // type:object size:0x10 scope:local align:4 data:string +@3760 = .rodata:0x8048ED7C; // type:object size:0x14 scope:local align:4 data:string +@3761 = .rodata:0x8048ED90; // type:object size:0xB scope:local align:4 data:string +@3962 = .rodata:0x8048ED9C; // type:object size:0xC scope:local align:4 data:string +@3963 = .rodata:0x8048EDA8; // type:object size:0x9 scope:local align:4 data:string +@3539 = .rodata:0x8048EDB8; // type:object size:0xC scope:local align:4 data:string +@3541 = .rodata:0x8048EDC4; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EDD8; // type:label scope:local +@3827 = .rodata:0x8048EDD8; // type:object size:0x11 scope:local align:4 data:string +@4130 = .rodata:0x8048EDEC; // type:object size:0x21 scope:local align:4 +@4131 = .rodata:0x8048EE10; // type:object size:0xD scope:local align:4 data:string +@4132 = .rodata:0x8048EE20; // type:object size:0x14 scope:local align:4 data:string +@4133 = .rodata:0x8048EE34; // type:object size:0x10 scope:local align:4 data:string +@4137 = .rodata:0x8048EE44; // type:object size:0xD scope:local align:4 data:string +@4139 = .rodata:0x8048EE54; // type:object size:0x10 scope:local align:4 data:string +@4140 = .rodata:0x8048EE64; // type:object size:0x10 scope:local align:4 data:string +@4363 = .rodata:0x8048EE74; // type:object size:0xA scope:local align:4 +@4402 = .rodata:0x8048EE80; // type:object size:0xC scope:local align:4 data:string +@4403 = .rodata:0x8048EE8C; // type:object size:0x9 scope:local align:4 data:string +@3713 = .rodata:0x8048EE98; // type:object size:0x13 scope:local align:4 data:string +@3728 = .rodata:0x8048EEAC; // type:object size:0x1E scope:local align:4 +@3751 = .rodata:0x8048EECC; // type:object size:0x10 scope:local align:4 data:string +@3753 = .rodata:0x8048EEDC; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EEF0; // type:label scope:local +@3665 = .rodata:0x8048EEF0; // type:object size:0x15 scope:local align:4 data:string +@3844 = .rodata:0x8048EF08; // type:object size:0x25 scope:local align:4 +@3845 = .rodata:0x8048EF30; // type:object size:0x11 scope:local align:4 data:string +@3846 = .rodata:0x8048EF44; // type:object size:0x11 scope:local align:4 data:string +@3847 = .rodata:0x8048EF58; // type:object size:0x16 scope:local align:4 data:string +@4061 = .rodata:0x8048EF70; // type:object size:0xC scope:local align:4 data:string +@4062 = .rodata:0x8048EF7C; // type:object size:0x9 scope:local align:4 data:string +@3574 = .rodata:0x8048EF88; // type:object size:0x13 scope:local align:4 data:string +@3590 = .rodata:0x8048EF9C; // type:object size:0x14 scope:local align:4 data:string +@3591 = .rodata:0x8048EFB0; // type:object size:0x14 scope:local align:4 data:string +@3593 = .rodata:0x8048EFC4; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EFE0; // type:label scope:local +@3640 = .rodata:0x8048EFE0; // type:object size:0x11 scope:local align:4 data:string +@3907 = .rodata:0x8048EFF4; // type:object size:0x1A scope:local align:4 data:string +@3908 = .rodata:0x8048F010; // type:object size:0x21 scope:local align:4 +@3909 = .rodata:0x8048F034; // type:object size:0xE scope:local align:4 data:string +@3910 = .rodata:0x8048F044; // type:object size:0xE scope:local align:4 data:string +@3911 = .rodata:0x8048F054; // type:object size:0xE scope:local align:4 data:string +@3912 = .rodata:0x8048F064; // type:object size:0xF scope:local align:4 data:string +@3913 = .rodata:0x8048F074; // type:object size:0xE scope:local align:4 data:string +@3914 = .rodata:0x8048F084; // type:object size:0x1C scope:local align:4 data:string +@3915 = .rodata:0x8048F0A0; // type:object size:0xC scope:local align:4 data:string +@3916 = .rodata:0x8048F0AC; // type:object size:0x9 scope:local align:4 data:string +@4128 = .rodata:0x8048F0B8; // type:object size:0x1B scope:local align:4 data:string +@4129 = .rodata:0x8048F0D4; // type:object size:0x15 scope:local align:4 data:string +@4369 = .rodata:0x8048F0EC; // type:object size:0xA scope:local align:4 +@4370 = .rodata:0x8048F0F8; // type:object size:0x19 scope:local align:4 data:string +@4371 = .rodata:0x8048F114; // type:object size:0x14 scope:local align:4 data:string +@4385 = .rodata:0x8048F128; // type:object size:0xC scope:local align:4 data:string +@4386 = .rodata:0x8048F134; // type:object size:0x9 scope:local align:4 data:string +@3541 = .rodata:0x8048F140; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x8048F150; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F160; // type:label scope:local +@3641 = .rodata:0x8048F160; // type:object size:0x1B scope:local align:4 data:string +@3715 = .rodata:0x8048F17C; // type:object size:0x1B scope:local align:4 data:string +@3718 = .rodata:0x8048F198; // type:object size:0x1B scope:local align:4 data:string +@3719 = .rodata:0x8048F1B4; // type:object size:0x1E scope:local align:4 data:string +@3720 = .rodata:0x8048F1D4; // type:object size:0x1E scope:local align:4 data:string +@3721 = .rodata:0x8048F1F4; // type:object size:0x1E scope:local align:4 data:string +@3788 = .rodata:0x8048F214; // type:object size:0x13 scope:local align:4 data:string +@3981 = .rodata:0x8048F228; // type:object size:0xC scope:local align:4 data:string +@3982 = .rodata:0x8048F234; // type:object size:0x9 scope:local align:4 data:string +@3674 = .rodata:0x8048F240; // type:object size:0x19 scope:local align:4 data:string +@3709 = .rodata:0x8048F25C; // type:object size:0x1D scope:local align:4 data:string +@3635 = .rodata:0x8048F280; // type:object size:0xD scope:local align:4 data:string +@3707 = .rodata:0x8048F290; // type:object size:0x14 scope:local align:4 data:string +@3711 = .rodata:0x8048F2A4; // type:object size:0x14 scope:local align:4 data:string +@3811 = .rodata:0x8048F2B8; // type:object size:0xA scope:local align:4 +@3519 = .rodata:0x8048F2C8; // type:object size:0x10 scope:local align:4 data:string +@3537 = .rodata:0x8048F2D8; // type:object size:0xC scope:local align:4 data:string +@3829 = .rodata:0x8048F2E8; // type:object size:0xE scope:local align:4 data:string +@3857 = .rodata:0x8048F2F8; // type:object size:0x1E scope:local align:4 +@3754 = .rodata:0x8048F318; // type:object size:0xA scope:local align:4 data:string +@3689 = .rodata:0x8048F328; // type:object size:0x10 scope:local align:4 data:string +@3539 = .rodata:0x8048F338; // type:object size:0x17 scope:local align:4 data:string +@3548 = .rodata:0x8048F350; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F368; // type:label scope:local +@3665 = .rodata:0x8048F368; // type:object size:0xC scope:local align:4 data:string +@3825 = .rodata:0x8048F374; // type:object size:0x1C scope:local align:4 +@3826 = .rodata:0x8048F390; // type:object size:0x11 scope:local align:4 data:string +@3827 = .rodata:0x8048F3A4; // type:object size:0x11 scope:local align:4 data:string +@3828 = .rodata:0x8048F3B8; // type:object size:0xB scope:local align:4 data:string +@3829 = .rodata:0x8048F3C4; // type:object size:0xF scope:local align:4 data:string +@4696 = .rodata:0x8048F3D4; // type:object size:0x9 scope:local align:4 data:string +@4699 = .rodata:0x8048F3E0; // type:object size:0x13 scope:local align:4 data:string +@4709 = .rodata:0x8048F3F4; // type:object size:0xC scope:local align:4 data:string +@4710 = .rodata:0x8048F400; // type:object size:0x9 scope:local align:4 data:string +@3539 = .rodata:0x8048F410; // type:object size:0xA scope:local align:4 data:string +@3541 = .rodata:0x8048F41C; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F428; // type:label scope:local +@3623 = .rodata:0x8048F428; // type:object size:0xC scope:local align:4 +@3656 = .rodata:0x8048F434; // type:object size:0x15 scope:local align:4 data:string +@3806 = .rodata:0x8048F44C; // type:object size:0x25 scope:local align:4 +@3807 = .rodata:0x8048F474; // type:object size:0xB scope:local align:4 data:string +@3808 = .rodata:0x8048F480; // type:object size:0xA scope:local align:4 data:string +@3809 = .rodata:0x8048F48C; // type:object size:0x10 scope:local align:4 data:string +@3810 = .rodata:0x8048F49C; // type:object size:0x16 scope:local align:4 data:string +@4050 = .rodata:0x8048F4B4; // type:object size:0xC scope:local align:4 data:string +@4051 = .rodata:0x8048F4C0; // type:object size:0x9 scope:local align:4 data:string +@3560 = .rodata:0x8048F4D0; // type:object size:0x13 scope:local align:4 data:string +@3576 = .rodata:0x8048F4E4; // type:object size:0x12 scope:local align:4 data:string +@3578 = .rodata:0x8048F4F8; // type:object size:0x15 scope:local align:4 data:string +@3701 = .rodata:0x8048F510; // type:object size:0x10 scope:local align:4 data:string +@3662 = .rodata:0x8048F520; // type:object size:0x14 scope:local align:4 data:string +@3693 = .rodata:0x8048F534; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F550; // type:label scope:local +@3517 = .rodata:0x8048F550; // type:object size:0xD scope:local align:4 data:string +@3518 = .rodata:0x8048F560; // type:object size:0xC scope:local align:4 data:string +@3609 = .rodata:0x8048F56C; // type:object size:0x9 scope:local align:4 data:string +@3621 = .rodata:0x8048F578; // type:object size:0x12 scope:local align:4 data:string +@3728 = .rodata:0x8048F58C; // type:object size:0x1B scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F5A8; // type:label scope:local +@3635 = .rodata:0x8048F5A8; // type:object size:0x1D scope:local align:4 data:string +@3641 = .rodata:0x8048F5C8; // type:object size:0x14 scope:local align:4 data:string +@3691 = .rodata:0x8048F5DC; // type:object size:0x9 scope:local align:4 data:string +@3692 = .rodata:0x8048F5E8; // type:object size:0x10 scope:local align:4 data:string +@3748 = .rodata:0x8048F5F8; // type:object size:0xC scope:local align:4 data:string +@3657 = .rodata:0x8048F608; // type:object size:0x1B scope:local align:4 data:string +@3670 = .rodata:0x8048F624; // type:object size:0x1F scope:local align:4 data:string +@3641 = .rodata:0x8048F648; // type:object size:0x14 scope:local align:4 data:string +@3678 = .rodata:0x8048F65C; // type:object size:0x10 scope:local align:4 data:string +@3657 = .rodata:0x8048F670; // type:object size:0x1B scope:local align:4 data:string +@3670 = .rodata:0x8048F68C; // type:object size:0x1F scope:local align:4 data:string +@3615 = .rodata:0x8048F6B0; // type:object size:0x15 scope:local align:4 data:string +@3616 = .rodata:0x8048F6C8; // type:object size:0x15 scope:local align:4 data:string +@3645 = .rodata:0x8048F6E0; // type:object size:0x18 scope:local align:4 data:string +@3646 = .rodata:0x8048F6F8; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F710; // type:label scope:local +@3649 = .rodata:0x8048F710; // type:object size:0x10 scope:local align:4 data:string +@3681 = .rodata:0x8048F720; // type:object size:0x14 scope:local align:4 data:string +@3682 = .rodata:0x8048F734; // type:object size:0xC scope:local align:4 data:string +@3818 = .rodata:0x8048F740; // type:object size:0x9 scope:local align:4 data:string +@3819 = .rodata:0x8048F74C; // type:object size:0x9 scope:local align:4 data:string +@3820 = .rodata:0x8048F758; // type:object size:0xA scope:local align:4 data:string +@3821 = .rodata:0x8048F764; // type:object size:0x24 scope:local align:4 data:string +@3822 = .rodata:0x8048F788; // type:object size:0x13 scope:local align:4 data:string +@3572 = .rodata:0x8048F7A0; // type:object size:0x11 scope:local align:4 data:string +@3578 = .rodata:0x8048F7B4; // type:object size:0x1A scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F7D0; // type:label scope:local +@3637 = .rodata:0x8048F7D0; // type:object size:0x13 scope:local align:4 data:string +@3682 = .rodata:0x8048F7E4; // type:object size:0x16 scope:local align:4 data:string +@3683 = .rodata:0x8048F7FC; // type:object size:0x16 scope:local align:4 data:string +@3684 = .rodata:0x8048F814; // type:object size:0x19 scope:local align:4 data:string +@3827 = .rodata:0x8048F830; // type:object size:0xC scope:local align:4 data:string +@3828 = .rodata:0x8048F83C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F848; // type:label scope:local +@2844 = .rodata:0x8048F848; // type:object size:0xA scope:local align:4 data:string +@2845 = .rodata:0x8048F854; // type:object size:0x9 scope:local align:4 data:string +@2846 = .rodata:0x8048F860; // type:object size:0xA scope:local align:4 data:string +@2847 = .rodata:0x8048F86C; // type:object size:0x18 scope:local align:4 data:string +@2893 = .rodata:0x8048F884; // type:object size:0x1E scope:local align:4 data:string +@3024 = .rodata:0x8048F8A4; // type:object size:0x2F scope:local align:4 data:string +@3142 = .rodata:0x8048F8D4; // type:object size:0xD scope:local align:4 data:string +@3250 = .rodata:0x8048F8E4; // type:object size:0xF scope:local align:4 data:string +@3264 = .rodata:0x8048F8F4; // type:object size:0xD scope:local align:4 data:string +@3504 = .rodata:0x8048F904; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F918; // type:label scope:local +@3033 = .rodata:0x8048F918; // type:object size:0xB scope:local align:4 data:string +@3034 = .rodata:0x8048F924; // type:object size:0x9 scope:local align:4 data:string +@3035 = .rodata:0x8048F930; // type:object size:0xA scope:local align:4 data:string +@3129 = .rodata:0x8048F93C; // type:object size:0x9 scope:local align:4 data:string +@3130 = .rodata:0x8048F948; // type:object size:0xD scope:local align:4 data:string +@3131 = .rodata:0x8048F958; // type:object size:0xA scope:local align:4 data:string +@3134 = .rodata:0x8048F964; // type:object size:0xA scope:local align:4 data:string +@3135 = .rodata:0x8048F970; // type:object size:0xE scope:local align:4 data:string +@3136 = .rodata:0x8048F980; // type:object size:0xB scope:local align:4 data:string +@3137 = .rodata:0x8048F98C; // type:object size:0x9 scope:local align:4 data:string +@3138 = .rodata:0x8048F998; // type:object size:0xD scope:local align:4 data:string +@3139 = .rodata:0x8048F9A8; // type:object size:0xA scope:local align:4 data:string +@3142 = .rodata:0x8048F9B4; // type:object size:0x9 scope:local align:4 data:string +@3143 = .rodata:0x8048F9C0; // type:object size:0xD scope:local align:4 data:string +@3144 = .rodata:0x8048F9D0; // type:object size:0xA scope:local align:4 data:string +@3145 = .rodata:0x8048F9DC; // type:object size:0xE scope:local align:4 data:string +@3146 = .rodata:0x8048F9EC; // type:object size:0xC scope:local align:4 data:string +@3147 = .rodata:0x8048F9F8; // type:object size:0x10 scope:local align:4 data:string +@3148 = .rodata:0x8048FA08; // type:object size:0xA scope:local align:4 data:string +@3149 = .rodata:0x8048FA14; // type:object size:0xE scope:local align:4 data:string +@3288 = .rodata:0x8048FA24; // type:object size:0xA scope:local align:4 data:string +@3289 = .rodata:0x8048FA30; // type:object size:0x18 scope:local align:4 +@3387 = .rodata:0x8048FA48; // type:object size:0xC scope:local align:4 data:string +@3388 = .rodata:0x8048FA54; // type:object size:0x18 scope:local align:4 data:string +@3389 = .rodata:0x8048FA6C; // type:object size:0xD scope:local align:4 data:string +@3390 = .rodata:0x8048FA7C; // type:object size:0x12 scope:local align:4 data:string +@3391 = .rodata:0x8048FA90; // type:object size:0xB scope:local align:4 data:string +@3405 = .rodata:0x8048FA9C; // type:object size:0xB scope:local align:4 data:string +@3440 = .rodata:0x8048FAA8; // type:object size:0x9 scope:local align:4 data:string +@3473 = .rodata:0x8048FAB4; // type:object size:0x10 scope:local align:4 +@3514 = .rodata:0x8048FAC4; // type:object size:0xB scope:local align:4 data:string +@3515 = .rodata:0x8048FAD0; // type:object size:0xB scope:local align:4 data:string +@3527 = .rodata:0x8048FADC; // type:object size:0x10 scope:local align:4 +@3529 = .rodata:0x8048FAEC; // type:object size:0x10 scope:local align:4 +@3615 = .rodata:0x8048FAFC; // type:object size:0x28 scope:local align:4 +@3616 = .rodata:0x8048FB24; // type:object size:0x1C scope:local align:4 data:string +@3617 = .rodata:0x8048FB40; // type:object size:0x19 scope:local align:4 data:string +@3756 = .rodata:0x8048FB5C; // type:object size:0xF scope:local align:4 +@3757 = .rodata:0x8048FB6C; // type:object size:0xA scope:local align:4 data:string +@3758 = .rodata:0x8048FB78; // type:object size:0x22 scope:local align:4 +@3785 = .rodata:0x8048FB9C; // type:object size:0x10 scope:local align:4 +@3807 = .rodata:0x8048FBAC; // type:object size:0x10 scope:local align:4 +@3889 = .rodata:0x8048FBBC; // type:object size:0xC scope:local align:4 data:string +@3890 = .rodata:0x8048FBC8; // type:object size:0x16 scope:local align:4 data:string +@3891 = .rodata:0x8048FBE0; // type:object size:0xF scope:local align:4 data:string +@3892 = .rodata:0x8048FBF0; // type:object size:0xF scope:local align:4 data:string +@3893 = .rodata:0x8048FC00; // type:object size:0xE scope:local align:4 data:string +@3897 = .rodata:0x8048FC10; // type:object size:0x10 scope:local align:4 +@4232 = .rodata:0x8048FC20; // type:object size:0x22 scope:local align:4 data:string +@4233 = .rodata:0x8048FC44; // type:object size:0xD scope:local align:4 data:string +@4234 = .rodata:0x8048FC54; // type:object size:0x12 scope:local align:4 data:string +@4235 = .rodata:0x8048FC68; // type:object size:0xE scope:local align:4 data:string +@4236 = .rodata:0x8048FC78; // type:object size:0xD scope:local align:4 data:string +@4237 = .rodata:0x8048FC88; // type:object size:0x22 scope:local align:4 data:string +@4238 = .rodata:0x8048FCAC; // type:object size:0x20 scope:local align:4 data:string +@4239 = .rodata:0x8048FCCC; // type:object size:0x23 scope:local align:4 data:string +@4240 = .rodata:0x8048FCF0; // type:object size:0x1E scope:local align:4 data:string +@4241 = .rodata:0x8048FD10; // type:object size:0x21 scope:local align:4 data:string +@4242 = .rodata:0x8048FD34; // type:object size:0xC scope:local align:4 data:string +@4243 = .rodata:0x8048FD40; // type:object size:0xF scope:local align:4 data:string +@4244 = .rodata:0x8048FD50; // type:object size:0xB scope:local align:4 data:string +@4245 = .rodata:0x8048FD5C; // type:object size:0xE scope:local align:4 data:string +@4246 = .rodata:0x8048FD6C; // type:object size:0x9 scope:local align:4 data:string +@4247 = .rodata:0x8048FD78; // type:object size:0xD scope:local align:4 data:string +@4248 = .rodata:0x8048FD88; // type:object size:0x13 scope:local align:4 data:string +@4249 = .rodata:0x8048FD9C; // type:object size:0xB scope:local align:4 data:string +@4250 = .rodata:0x8048FDA8; // type:object size:0x9 scope:local align:4 data:string +@4251 = .rodata:0x8048FDB4; // type:object size:0x10 scope:local align:4 data:string +@4252 = .rodata:0x8048FDC4; // type:object size:0xD scope:local align:4 data:string +@4301 = .rodata:0x8048FDD4; // type:object size:0xE scope:local align:4 data:string +@4302 = .rodata:0x8048FDE4; // type:object size:0xF scope:local align:4 data:string +@4303 = .rodata:0x8048FDF4; // type:object size:0x10 scope:local align:4 data:string +@4617 = .rodata:0x8048FE04; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FE28; // type:label scope:local +@2929 = .rodata:0x8048FE28; // type:object size:0xF scope:local align:4 data:string +@2930 = .rodata:0x8048FE38; // type:object size:0x9 scope:local align:4 data:string +@2959 = .rodata:0x8048FE44; // type:object size:0x9 scope:local align:4 data:string +@3135 = .rodata:0x8048FE50; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FE60; // type:label scope:local +@3166 = .rodata:0x8048FE60; // type:object size:0xE scope:local align:4 data:string +@3167 = .rodata:0x8048FE70; // type:object size:0x9 scope:local align:4 data:string +@3596 = .rodata:0x8048FE7C; // type:object size:0x55 scope:local align:4 +@4979 = .rodata:0x8048FED4; // type:object size:0xC scope:local align:4 data:string +@5228 = .rodata:0x8048FEE0; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FEF0; // type:label scope:local +@2793 = .rodata:0x8048FEF0; // type:object size:0xD scope:local align:4 data:string +@2794 = .rodata:0x8048FF00; // type:object size:0x9 scope:local align:4 data:string +@3031 = .rodata:0x8048FF0C; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FF20; // type:label scope:local +@2972 = .rodata:0x8048FF20; // type:object size:0xF scope:local align:4 data:string +@2973 = .rodata:0x8048FF30; // type:object size:0x9 scope:local align:4 data:string +@2987 = .rodata:0x8048FF3C; // type:object size:0xD scope:local align:4 data:string +sTable__Q28PSSystem20TriangleTableModTask = .rodata:0x8048FF50; // type:object size:0xA0 scope:global align:4 +@2843 = .rodata:0x8048FFF0; // type:object size:0xE scope:local align:4 data:string +@2844 = .rodata:0x80490000; // type:object size:0x9 scope:local align:4 data:string +@2926 = .rodata:0x80490010; // type:object size:0x1B scope:local align:4 data:string +@2927 = .rodata:0x8049002C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80490038; // type:label scope:local +@2896 = .rodata:0x80490038; // type:object size:0x11 scope:local align:4 +@2897 = .rodata:0x8049004C; // type:object size:0xD scope:local align:4 +@2898 = .rodata:0x8049005C; // type:object size:0xF scope:local align:4 +@2899 = .rodata:0x8049006C; // type:object size:0x17 scope:local align:4 +@2900 = .rodata:0x80490084; // type:object size:0x1F scope:local align:4 +@2901 = .rodata:0x804900A4; // type:object size:0xD scope:local align:4 +@2902 = .rodata:0x804900B4; // type:object size:0x13 scope:local align:4 +@2904 = .rodata:0x804900C8; // type:object size:0x9 scope:local align:4 data:string +@2905 = .rodata:0x804900D4; // type:object size:0x9 scope:local align:4 data:string +@3433 = .rodata:0x804900E0; // type:object size:0xB scope:local align:4 data:string +@3434 = .rodata:0x804900EC; // type:object size:0x13 scope:local align:4 +@2835 = .rodata:0x80490100; // type:object size:0xD scope:local align:4 data:string +@2836 = .rodata:0x80490110; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80490120; // type:label scope:local +@2843 = .rodata:0x80490120; // type:object size:0xC scope:local align:4 data:string +@2844 = .rodata:0x8049012C; // type:object size:0x9 scope:local align:4 data:string +@3028 = .rodata:0x80490138; // type:object size:0xA scope:local align:4 data:string +@3210 = .rodata:0x80490144; // type:object size:0xD scope:local align:4 data:string +@2965 = .rodata:0x80490158; // type:object size:0xC scope:local align:4 data:string +@2966 = .rodata:0x80490164; // type:object size:0x9 scope:local align:4 data:string +@3193 = .rodata:0x80490170; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80490180; // type:label scope:local +@2811 = .rodata:0x80490180; // type:object size:0xF scope:local align:4 data:string +@2812 = .rodata:0x80490190; // type:object size:0x9 scope:local align:4 data:string +@2885 = .rodata:0x8049019C; // type:object size:0x1E scope:local align:4 data:string +@3073 = .rodata:0x804901BC; // type:object size:0x17 scope:local align:4 +@3142 = .rodata:0x804901D4; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x804901E8; // type:label scope:local +@3521 = .rodata:0x804901E8; // type:object size:0xC scope:local align:4 data:string +@3528 = .rodata:0x804901F4; // type:object size:0xC scope:local align:4 data:string +@3622 = .rodata:0x80490200; // type:object size:0xA scope:local align:4 data:string +@3623 = .rodata:0x8049020C; // type:object size:0x10 scope:local align:4 data:string +@3624 = .rodata:0x8049021C; // type:object size:0x9 scope:local align:4 data:string +@4034 = .rodata:0x80490228; // type:object size:0x12 scope:local align:4 data:string +@4061 = .rodata:0x8049023C; // type:object size:0x14 scope:local align:4 data:string +@4088 = .rodata:0x80490250; // type:object size:0x14 scope:local align:4 data:string +@4163 = .rodata:0x80490264; // type:object size:0xF scope:local align:4 data:string +@4192 = .rodata:0x80490274; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80490280; // type:label scope:local +@3608 = .rodata:0x80490280; // type:object size:0xC scope:local align:4 +@3855 = .rodata:0x8049028C; // type:object size:0xA scope:local align:4 data:string +@3893 = .rodata:0x80490298; // type:object size:0xA scope:local align:4 data:string +@3979 = .rodata:0x804902A4; // type:object size:0x9 scope:local align:4 data:string +@3980 = .rodata:0x804902B0; // type:object size:0xE scope:local align:4 data:string +@3981 = .rodata:0x804902C0; // type:object size:0x9 scope:local align:4 data:string +@3982 = .rodata:0x804902CC; // type:object size:0xB scope:local align:4 data:string +@4418 = .rodata:0x804902D8; // type:object size:0x11 scope:local align:4 data:string +@4479 = .rodata:0x804902EC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804902F8; // type:label scope:local +@3709 = .rodata:0x804902F8; // type:object size:0xB scope:local align:4 data:string +@3799 = .rodata:0x80490304; // type:object size:0x16 scope:local align:4 data:string +@3800 = .rodata:0x8049031C; // type:object size:0x16 scope:local align:4 data:string +@3801 = .rodata:0x80490334; // type:object size:0x16 scope:local align:4 data:string +@3802 = .rodata:0x8049034C; // type:object size:0x19 scope:local align:4 data:string +@3812 = .rodata:0x80490368; // type:object size:0x13 scope:local align:4 data:string +@3813 = .rodata:0x8049037C; // type:object size:0x13 scope:local align:4 data:string +@3814 = .rodata:0x80490390; // type:object size:0x16 scope:local align:4 data:string +@3824 = .rodata:0x804903A8; // type:object size:0x13 scope:local align:4 data:string +@3825 = .rodata:0x804903BC; // type:object size:0x13 scope:local align:4 data:string +@3826 = .rodata:0x804903D0; // type:object size:0x16 scope:local align:4 data:string +@3836 = .rodata:0x804903E8; // type:object size:0x17 scope:local align:4 data:string +@3837 = .rodata:0x80490400; // type:object size:0x17 scope:local align:4 data:string +@3838 = .rodata:0x80490418; // type:object size:0x1A scope:local align:4 data:string +@3848 = .rodata:0x80490434; // type:object size:0x14 scope:local align:4 data:string +@3849 = .rodata:0x80490448; // type:object size:0x14 scope:local align:4 data:string +@3850 = .rodata:0x8049045C; // type:object size:0x17 scope:local align:4 data:string +@3860 = .rodata:0x80490478; // type:object size:0x48 scope:local align:8 +@3916 = .rodata:0x804904C0; // type:object size:0xF scope:local align:4 data:string +@3917 = .rodata:0x804904D0; // type:object size:0x9 scope:local align:4 data:string +@4202 = .rodata:0x804904DC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804904E8; // type:label scope:local +@3787 = .rodata:0x804904E8; // type:object size:0xF scope:local align:4 +@3812 = .rodata:0x804904F8; // type:object size:0xF scope:local align:4 data:string +@3813 = .rodata:0x80490508; // type:object size:0xF scope:local align:4 +@3817 = .rodata:0x80490518; // type:object size:0xF scope:local align:4 +@3819 = .rodata:0x80490528; // type:object size:0x11 scope:local align:4 +@3820 = .rodata:0x8049053C; // type:object size:0xD scope:local align:4 +@3854 = .rodata:0x8049054C; // type:object size:0x13 scope:local align:4 data:string +@3855 = .rodata:0x80490560; // type:object size:0x13 scope:local align:4 data:string +@3858 = .rodata:0x80490574; // type:object size:0xF scope:local align:4 data:string +@3859 = .rodata:0x80490584; // type:object size:0xE scope:local align:4 data:string +@3865 = .rodata:0x80490594; // type:object size:0xD scope:local align:4 data:string +@3919 = .rodata:0x804905A4; // type:object size:0xD scope:local align:4 +@3921 = .rodata:0x804905B4; // type:object size:0xD scope:local align:4 +@3922 = .rodata:0x804905C4; // type:object size:0xB scope:local align:4 +@3924 = .rodata:0x804905D0; // type:object size:0xF scope:local align:4 +@3926 = .rodata:0x804905E0; // type:object size:0x1F scope:local align:4 +@3928 = .rodata:0x80490600; // type:object size:0x13 scope:local align:4 +@3930 = .rodata:0x80490614; // type:object size:0x13 scope:local align:4 +@3932 = .rodata:0x80490628; // type:object size:0x12 scope:local align:4 +@3933 = .rodata:0x8049063C; // type:object size:0x11 scope:local align:4 +@3938 = .rodata:0x80490650; // type:object size:0xB scope:local align:4 +@3939 = .rodata:0x8049065C; // type:object size:0xD scope:local align:4 +@3942 = .rodata:0x8049066C; // type:object size:0xB scope:local align:4 +@3944 = .rodata:0x80490678; // type:object size:0xB scope:local align:4 +@3946 = .rodata:0x80490684; // type:object size:0x11 scope:local align:4 +@3948 = .rodata:0x80490698; // type:object size:0x9 scope:local align:4 +@3950 = .rodata:0x804906A4; // type:object size:0x9 scope:local align:4 +@3953 = .rodata:0x804906B0; // type:object size:0x9 scope:local align:4 +@3955 = .rodata:0x804906BC; // type:object size:0x9 scope:local align:4 +@3957 = .rodata:0x804906C8; // type:object size:0xB scope:local align:4 +@3959 = .rodata:0x804906D4; // type:object size:0x11 scope:local align:4 +@3960 = .rodata:0x804906E8; // type:object size:0xD scope:local align:4 +@3961 = .rodata:0x804906F8; // type:object size:0xB scope:local align:4 +@3962 = .rodata:0x80490704; // type:object size:0xD scope:local align:4 +@3963 = .rodata:0x80490714; // type:object size:0xD scope:local align:4 +@3964 = .rodata:0x80490724; // type:object size:0xF scope:local align:4 +@3965 = .rodata:0x80490734; // type:object size:0xF scope:local align:4 +@3967 = .rodata:0x80490744; // type:object size:0x9 scope:local align:4 +@3969 = .rodata:0x80490750; // type:object size:0x9 scope:local align:4 +@3971 = .rodata:0x8049075C; // type:object size:0x17 scope:local align:4 +@3972 = .rodata:0x80490774; // type:object size:0xD scope:local align:4 +@3974 = .rodata:0x80490784; // type:object size:0xD scope:local align:4 +@3975 = .rodata:0x80490794; // type:object size:0xF scope:local align:4 +@3976 = .rodata:0x804907A4; // type:object size:0xF scope:local align:4 +@3977 = .rodata:0x804907B4; // type:object size:0xF scope:local align:4 +@3978 = .rodata:0x804907C4; // type:object size:0xF scope:local align:4 +@3979 = .rodata:0x804907D4; // type:object size:0xF scope:local align:4 +@3980 = .rodata:0x804907E4; // type:object size:0xF scope:local align:4 +@3981 = .rodata:0x804907F4; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80490808; // type:label scope:local +@3522 = .rodata:0x80490808; // type:object size:0x11 scope:local align:4 +@3547 = .rodata:0x8049081C; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x8049082C; // type:object size:0x9 scope:local align:4 +@3551 = .rodata:0x80490838; // type:object size:0xB scope:local align:4 +@3552 = .rodata:0x80490844; // type:object size:0x14 scope:local align:4 +@3553 = .rodata:0x80490858; // type:object size:0x13 scope:local align:4 +@3554 = .rodata:0x8049086C; // type:object size:0x13 scope:local align:4 +@3588 = .rodata:0x80490880; // type:object size:0x13 scope:local align:4 data:string +@3589 = .rodata:0x80490894; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x804908A8; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x804908B8; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x804908C8; // type:object size:0xD scope:local align:4 data:string +@3652 = .rodata:0x804908D8; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x804908E8; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x804908F8; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x80490904; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x80490914; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x80490934; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x80490948; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x8049095C; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x80490970; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x80490984; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80490990; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x804909A0; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x804909AC; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x804909B8; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x804909CC; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x804909D8; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x804909E4; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x804909F0; // type:object size:0x9 scope:local align:4 +@3691 = .rodata:0x804909FC; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x80490A08; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x80490A1C; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x80490A2C; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x80490A38; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x80490A48; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x80490A58; // type:object size:0xF scope:local align:4 +@3699 = .rodata:0x80490A68; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x80490A78; // type:object size:0x9 scope:local align:4 +@3703 = .rodata:0x80490A84; // type:object size:0x9 scope:local align:4 +@3705 = .rodata:0x80490A90; // type:object size:0x17 scope:local align:4 +@3706 = .rodata:0x80490AA8; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x80490AB8; // type:object size:0xD scope:local align:4 +@3709 = .rodata:0x80490AC8; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x80490AD8; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80490AE8; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x80490AF8; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x80490B08; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x80490B18; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x80490B28; // type:object size:0xF scope:local align:4 +@4603 = .rodata:0x80490B38; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80490B48; // type:label scope:local +@3812 = .rodata:0x80490B48; // type:object size:0xD scope:local align:4 data:string +@3818 = .rodata:0x80490B58; // type:object size:0x15 scope:local align:4 +@3849 = .rodata:0x80490B70; // type:object size:0xF scope:local align:4 data:string +@3850 = .rodata:0x80490B80; // type:object size:0xB scope:local align:4 +@3854 = .rodata:0x80490B8C; // type:object size:0x17 scope:local align:4 +@3855 = .rodata:0x80490BA4; // type:object size:0xD scope:local align:4 +@3857 = .rodata:0x80490BB4; // type:object size:0xF scope:local align:4 +@3859 = .rodata:0x80490BC4; // type:object size:0x9 scope:local align:4 +@3862 = .rodata:0x80490BD0; // type:object size:0x11 scope:local align:4 +@3864 = .rodata:0x80490BE4; // type:object size:0xF scope:local align:4 +@3865 = .rodata:0x80490BF4; // type:object size:0x9 scope:local align:4 +@3867 = .rodata:0x80490C00; // type:object size:0x9 scope:local align:4 +@3870 = .rodata:0x80490C0C; // type:object size:0x19 scope:local align:4 +@3904 = .rodata:0x80490C28; // type:object size:0x13 scope:local align:4 data:string +@3905 = .rodata:0x80490C3C; // type:object size:0x13 scope:local align:4 data:string +@3907 = .rodata:0x80490C50; // type:object size:0xF scope:local align:4 data:string +@3908 = .rodata:0x80490C60; // type:object size:0xE scope:local align:4 data:string +@3913 = .rodata:0x80490C70; // type:object size:0xD scope:local align:4 data:string +@3966 = .rodata:0x80490C80; // type:object size:0xD scope:local align:4 +@3967 = .rodata:0x80490C90; // type:object size:0xD scope:local align:4 +@3968 = .rodata:0x80490CA0; // type:object size:0xB scope:local align:4 +@3970 = .rodata:0x80490CAC; // type:object size:0xF scope:local align:4 +@3972 = .rodata:0x80490CBC; // type:object size:0x1F scope:local align:4 +@3973 = .rodata:0x80490CDC; // type:object size:0x13 scope:local align:4 +@3975 = .rodata:0x80490CF0; // type:object size:0x13 scope:local align:4 +@3977 = .rodata:0x80490D04; // type:object size:0x12 scope:local align:4 +@3978 = .rodata:0x80490D18; // type:object size:0x11 scope:local align:4 +@3983 = .rodata:0x80490D2C; // type:object size:0xB scope:local align:4 +@3984 = .rodata:0x80490D38; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x80490D48; // type:object size:0xB scope:local align:4 +@3988 = .rodata:0x80490D54; // type:object size:0xB scope:local align:4 +@3990 = .rodata:0x80490D60; // type:object size:0x11 scope:local align:4 +@3992 = .rodata:0x80490D74; // type:object size:0x9 scope:local align:4 +@3994 = .rodata:0x80490D80; // type:object size:0x9 scope:local align:4 +@3996 = .rodata:0x80490D8C; // type:object size:0x9 scope:local align:4 +@3998 = .rodata:0x80490D98; // type:object size:0x9 scope:local align:4 +@4000 = .rodata:0x80490DA4; // type:object size:0xB scope:local align:4 +@4001 = .rodata:0x80490DB0; // type:object size:0x11 scope:local align:4 +@4002 = .rodata:0x80490DC4; // type:object size:0xD scope:local align:4 +@4003 = .rodata:0x80490DD4; // type:object size:0xB scope:local align:4 +@4004 = .rodata:0x80490DE0; // type:object size:0xD scope:local align:4 +@4005 = .rodata:0x80490DF0; // type:object size:0xD scope:local align:4 +@4006 = .rodata:0x80490E00; // type:object size:0xF scope:local align:4 +@4007 = .rodata:0x80490E10; // type:object size:0xF scope:local align:4 +@4009 = .rodata:0x80490E20; // type:object size:0x9 scope:local align:4 +@4011 = .rodata:0x80490E2C; // type:object size:0x9 scope:local align:4 +@4013 = .rodata:0x80490E38; // type:object size:0x17 scope:local align:4 +@4014 = .rodata:0x80490E50; // type:object size:0xD scope:local align:4 +@4016 = .rodata:0x80490E60; // type:object size:0xD scope:local align:4 +@4017 = .rodata:0x80490E70; // type:object size:0xF scope:local align:4 +@4018 = .rodata:0x80490E80; // type:object size:0xF scope:local align:4 +@4019 = .rodata:0x80490E90; // type:object size:0xF scope:local align:4 +@4020 = .rodata:0x80490EA0; // type:object size:0xF scope:local align:4 +@4021 = .rodata:0x80490EB0; // type:object size:0xF scope:local align:4 +@4022 = .rodata:0x80490EC0; // type:object size:0xF scope:local align:4 +@4023 = .rodata:0x80490ED0; // type:object size:0xF scope:local align:4 +@4045 = .rodata:0x80490EE0; // type:object size:0x17 scope:local align:4 +@4042 = .rodata:0x80490EF8; // type:object size:0xE scope:local align:4 data:string +@4043 = .rodata:0x80490F08; // type:object size:0x9 scope:local align:4 data:string +@3487 = .rodata:0x80490F18; // type:object size:0x13 scope:local align:4 +@3697 = .rodata:0x80490F2C; // type:object size:0x15 scope:local align:4 +@3717 = .rodata:0x80490F44; // type:object size:0x17 scope:local align:4 +@3737 = .rodata:0x80490F5C; // type:object size:0x1F scope:local align:4 +@3757 = .rodata:0x80490F7C; // type:object size:0x23 scope:local align:4 +@3777 = .rodata:0x80490FA0; // type:object size:0x1F scope:local align:4 +@3797 = .rodata:0x80490FC0; // type:object size:0x23 scope:local align:4 +@3817 = .rodata:0x80490FE4; // type:object size:0x15 scope:local align:4 +@3837 = .rodata:0x80490FFC; // type:object size:0x15 scope:local align:4 +@3857 = .rodata:0x80491014; // type:object size:0x11 scope:local align:4 +@3877 = .rodata:0x80491028; // type:object size:0xF scope:local align:4 +@3897 = .rodata:0x80491038; // type:object size:0x17 scope:local align:4 +@3917 = .rodata:0x80491050; // type:object size:0x17 scope:local align:4 +@3937 = .rodata:0x80491068; // type:object size:0x17 scope:local align:4 +@3957 = .rodata:0x80491080; // type:object size:0x17 scope:local align:4 +@3977 = .rodata:0x80491098; // type:object size:0x11 scope:local align:4 +@3997 = .rodata:0x804910AC; // type:object size:0x13 scope:local align:4 +@4371 = .rodata:0x804910C0; // type:object size:0xC scope:local align:4 data:string +@4372 = .rodata:0x804910CC; // type:object size:0x9 scope:local align:4 data:string +@4191 = .rodata:0x804910D8; // type:object size:0xB scope:local align:4 data:string +@4192 = .rodata:0x804910E4; // type:object size:0x9 scope:local align:4 data:string +@4305 = .rodata:0x804910F0; // type:object size:0x16 scope:local align:4 data:string +@4306 = .rodata:0x80491108; // type:object size:0x9 scope:local align:4 data:string +@5045 = .rodata:0x80491114; // type:object size:0x9 scope:local align:4 data:string +@5266 = .rodata:0x80491120; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80491130; // type:label scope:local +@3786 = .rodata:0x80491130; // type:object size:0xE scope:local align:4 data:string +@3792 = .rodata:0x80491140; // type:object size:0x1D scope:local align:4 +@3837 = .rodata:0x80491160; // type:object size:0xF scope:local align:4 data:string +@3838 = .rodata:0x80491170; // type:object size:0x10 scope:local align:4 +@3842 = .rodata:0x80491180; // type:object size:0xF scope:local align:4 +@3845 = .rodata:0x80491190; // type:object size:0x16 scope:local align:4 +@3847 = .rodata:0x804911A8; // type:object size:0x11 scope:local align:4 +@3849 = .rodata:0x804911BC; // type:object size:0xD scope:local align:4 +@3852 = .rodata:0x804911CC; // type:object size:0xD scope:local align:4 +@3854 = .rodata:0x804911DC; // type:object size:0xD scope:local align:4 +@3856 = .rodata:0x804911EC; // type:object size:0xD scope:local align:4 +@3857 = .rodata:0x804911FC; // type:object size:0x11 scope:local align:4 +@3858 = .rodata:0x80491210; // type:object size:0xF scope:local align:4 +@3860 = .rodata:0x80491220; // type:object size:0x13 scope:local align:4 +@3862 = .rodata:0x80491234; // type:object size:0xD scope:local align:4 +@3863 = .rodata:0x80491244; // type:object size:0x13 scope:local align:4 +@3865 = .rodata:0x80491258; // type:object size:0xB scope:local align:4 +@3867 = .rodata:0x80491264; // type:object size:0xC scope:local align:4 +@3869 = .rodata:0x80491270; // type:object size:0xA scope:local align:4 +@3873 = .rodata:0x8049127C; // type:object size:0xE scope:local align:4 +@3875 = .rodata:0x8049128C; // type:object size:0x10 scope:local align:4 +@3877 = .rodata:0x8049129C; // type:object size:0x10 scope:local align:4 +@3879 = .rodata:0x804912AC; // type:object size:0x12 scope:local align:4 +@3880 = .rodata:0x804912C0; // type:object size:0xF scope:local align:4 +@3881 = .rodata:0x804912D0; // type:object size:0xF scope:local align:4 +@3882 = .rodata:0x804912E0; // type:object size:0x11 scope:local align:4 +@3916 = .rodata:0x804912F4; // type:object size:0x13 scope:local align:4 data:string +@3917 = .rodata:0x80491308; // type:object size:0x13 scope:local align:4 data:string +@3918 = .rodata:0x8049131C; // type:object size:0xF scope:local align:4 data:string +@3919 = .rodata:0x8049132C; // type:object size:0xE scope:local align:4 data:string +@3923 = .rodata:0x8049133C; // type:object size:0xD scope:local align:4 data:string +@3976 = .rodata:0x8049134C; // type:object size:0xD scope:local align:4 +@3978 = .rodata:0x8049135C; // type:object size:0xD scope:local align:4 +@3979 = .rodata:0x8049136C; // type:object size:0xB scope:local align:4 +@3981 = .rodata:0x80491378; // type:object size:0xF scope:local align:4 +@3983 = .rodata:0x80491388; // type:object size:0x1F scope:local align:4 +@3985 = .rodata:0x804913A8; // type:object size:0x13 scope:local align:4 +@3987 = .rodata:0x804913BC; // type:object size:0x13 scope:local align:4 +@3989 = .rodata:0x804913D0; // type:object size:0x12 scope:local align:4 +@3990 = .rodata:0x804913E4; // type:object size:0x11 scope:local align:4 +@3994 = .rodata:0x804913F8; // type:object size:0xB scope:local align:4 +@3995 = .rodata:0x80491404; // type:object size:0xD scope:local align:4 +@3996 = .rodata:0x80491414; // type:object size:0xB scope:local align:4 +@3997 = .rodata:0x80491420; // type:object size:0xB scope:local align:4 +@3998 = .rodata:0x8049142C; // type:object size:0x11 scope:local align:4 +@3999 = .rodata:0x80491440; // type:object size:0x9 scope:local align:4 +@4001 = .rodata:0x8049144C; // type:object size:0x9 scope:local align:4 +@4003 = .rodata:0x80491458; // type:object size:0x9 scope:local align:4 +@4005 = .rodata:0x80491464; // type:object size:0x9 scope:local align:4 +@4007 = .rodata:0x80491470; // type:object size:0xB scope:local align:4 +@4008 = .rodata:0x8049147C; // type:object size:0x11 scope:local align:4 +@4009 = .rodata:0x80491490; // type:object size:0xD scope:local align:4 +@4010 = .rodata:0x804914A0; // type:object size:0xB scope:local align:4 +@4011 = .rodata:0x804914AC; // type:object size:0xD scope:local align:4 +@4012 = .rodata:0x804914BC; // type:object size:0xD scope:local align:4 +@4013 = .rodata:0x804914CC; // type:object size:0xF scope:local align:4 +@4014 = .rodata:0x804914DC; // type:object size:0xF scope:local align:4 +@4016 = .rodata:0x804914EC; // type:object size:0x9 scope:local align:4 +@4018 = .rodata:0x804914F8; // type:object size:0x9 scope:local align:4 +@4020 = .rodata:0x80491504; // type:object size:0x17 scope:local align:4 +@4021 = .rodata:0x8049151C; // type:object size:0xD scope:local align:4 +@4023 = .rodata:0x8049152C; // type:object size:0xD scope:local align:4 +@4024 = .rodata:0x8049153C; // type:object size:0xF scope:local align:4 +@4025 = .rodata:0x8049154C; // type:object size:0xF scope:local align:4 +@4026 = .rodata:0x8049155C; // type:object size:0xF scope:local align:4 +@4027 = .rodata:0x8049156C; // type:object size:0xF scope:local align:4 +@4028 = .rodata:0x8049157C; // type:object size:0xF scope:local align:4 +@4029 = .rodata:0x8049158C; // type:object size:0xF scope:local align:4 +@4030 = .rodata:0x8049159C; // type:object size:0xF scope:local align:4 +@4069 = .rodata:0x804915AC; // type:object size:0x12 scope:local align:4 data:string +@4070 = .rodata:0x804915C0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804915D0; // type:label scope:local +@3897 = .rodata:0x804915D0; // type:object size:0xC scope:local align:4 +@3949 = .rodata:0x804915DC; // type:object size:0xB scope:local align:4 data:string +@4096 = .rodata:0x804915E8; // type:object size:0xF scope:local align:4 data:string +@4097 = .rodata:0x804915F8; // type:object size:0x9 scope:local align:4 data:string +@4105 = .rodata:0x80491604; // type:object size:0x16 scope:local align:4 data:string +@5062 = .rodata:0x8049161C; // type:object size:0x24 scope:local align:4 data:4byte +@6419 = .rodata:0x80491640; // type:object size:0xD scope:local align:4 data:string +@6421 = .rodata:0x80491650; // type:object size:0x9 scope:local align:4 data:string +@6423 = .rodata:0x8049165C; // type:object size:0xD scope:local align:4 data:string +@3789 = .rodata:0x80491670; // type:object size:0xC scope:local align:4 data:string +@3812 = .rodata:0x8049167C; // type:object size:0xA scope:local align:4 data:string +@4128 = .rodata:0x80491688; // type:object size:0xA scope:local align:4 data:string +@4218 = .rodata:0x80491694; // type:object size:0x10 scope:local align:4 data:string +@4219 = .rodata:0x804916A4; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804916B0; // type:label scope:local +@3512 = .rodata:0x804916B0; // type:object size:0xA scope:local align:4 data:string +@3518 = .rodata:0x804916BC; // type:object size:0x13 scope:local align:4 +@3546 = .rodata:0x804916D0; // type:object size:0xF scope:local align:4 data:string +@3547 = .rodata:0x804916E0; // type:object size:0x11 scope:local align:4 +@3548 = .rodata:0x804916F4; // type:object size:0xF scope:local align:4 +@3552 = .rodata:0x80491704; // type:object size:0x11 scope:local align:4 +@3555 = .rodata:0x80491718; // type:object size:0x13 scope:local align:4 +@3556 = .rodata:0x8049172C; // type:object size:0xD scope:local align:4 +@3557 = .rodata:0x8049173C; // type:object size:0x11 scope:local align:4 +@3559 = .rodata:0x80491750; // type:object size:0xD scope:local align:4 +@3595 = .rodata:0x80491760; // type:object size:0x13 scope:local align:4 data:string +@3596 = .rodata:0x80491774; // type:object size:0x13 scope:local align:4 data:string +@3599 = .rodata:0x80491788; // type:object size:0xF scope:local align:4 data:string +@3600 = .rodata:0x80491798; // type:object size:0xE scope:local align:4 data:string +@3605 = .rodata:0x804917A8; // type:object size:0xD scope:local align:4 data:string +@3658 = .rodata:0x804917B8; // type:object size:0xD scope:local align:4 +@3661 = .rodata:0x804917C8; // type:object size:0xD scope:local align:4 +@3662 = .rodata:0x804917D8; // type:object size:0xB scope:local align:4 +@3663 = .rodata:0x804917E4; // type:object size:0xF scope:local align:4 +@3665 = .rodata:0x804917F4; // type:object size:0x1F scope:local align:4 +@3667 = .rodata:0x80491814; // type:object size:0x13 scope:local align:4 +@3669 = .rodata:0x80491828; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x8049183C; // type:object size:0x12 scope:local align:4 +@3672 = .rodata:0x80491850; // type:object size:0x11 scope:local align:4 +@3677 = .rodata:0x80491864; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x80491870; // type:object size:0xD scope:local align:4 +@3680 = .rodata:0x80491880; // type:object size:0xB scope:local align:4 +@3682 = .rodata:0x8049188C; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80491898; // type:object size:0x11 scope:local align:4 +@3686 = .rodata:0x804918AC; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x804918B8; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x804918C4; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x804918D0; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x804918DC; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x804918E8; // type:object size:0x11 scope:local align:4 +@3697 = .rodata:0x804918FC; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x8049190C; // type:object size:0xB scope:local align:4 +@3699 = .rodata:0x80491918; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x80491928; // type:object size:0xD scope:local align:4 +@3701 = .rodata:0x80491938; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x80491948; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80491958; // type:object size:0x9 scope:local align:4 +@3706 = .rodata:0x80491964; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x80491970; // type:object size:0x17 scope:local align:4 +@3709 = .rodata:0x80491988; // type:object size:0xD scope:local align:4 +@3711 = .rodata:0x80491998; // type:object size:0xD scope:local align:4 +@3712 = .rodata:0x804919A8; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x804919B8; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x804919C8; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x804919D8; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x804919E8; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x804919F8; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80491A08; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80491A18; // type:label scope:local +@3827 = .rodata:0x80491A18; // type:object size:0xA scope:local align:4 data:string +@3828 = .rodata:0x80491A24; // type:object size:0xB scope:local align:4 data:string +@3829 = .rodata:0x80491A30; // type:object size:0x9 scope:local align:4 data:string +@3955 = .rodata:0x80491A3C; // type:object size:0xA scope:local align:4 data:string +@3957 = .rodata:0x80491A48; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80491A58; // type:label scope:local +@3792 = .rodata:0x80491A58; // type:object size:0xA scope:local align:4 data:string +@3798 = .rodata:0x80491A64; // type:object size:0x11 scope:local align:4 +@3824 = .rodata:0x80491A78; // type:object size:0xF scope:local align:4 data:string +@3825 = .rodata:0x80491A88; // type:object size:0x9 scope:local align:4 +@3829 = .rodata:0x80491A94; // type:object size:0x9 scope:local align:4 +@3830 = .rodata:0x80491AA0; // type:object size:0xD scope:local align:4 +@3833 = .rodata:0x80491AB0; // type:object size:0xD scope:local align:4 +@3835 = .rodata:0x80491AC0; // type:object size:0xB scope:local align:4 +@3837 = .rodata:0x80491ACC; // type:object size:0xF scope:local align:4 +@3880 = .rodata:0x80491ADC; // type:object size:0x13 scope:local align:4 data:string +@3881 = .rodata:0x80491AF0; // type:object size:0x13 scope:local align:4 data:string +@3883 = .rodata:0x80491B04; // type:object size:0xF scope:local align:4 data:string +@3884 = .rodata:0x80491B14; // type:object size:0xE scope:local align:4 data:string +@3890 = .rodata:0x80491B24; // type:object size:0xD scope:local align:4 data:string +@3943 = .rodata:0x80491B34; // type:object size:0xD scope:local align:4 +@3945 = .rodata:0x80491B44; // type:object size:0xD scope:local align:4 +@3946 = .rodata:0x80491B54; // type:object size:0xB scope:local align:4 +@3947 = .rodata:0x80491B60; // type:object size:0xF scope:local align:4 +@3949 = .rodata:0x80491B70; // type:object size:0x1F scope:local align:4 +@3951 = .rodata:0x80491B90; // type:object size:0x13 scope:local align:4 +@3953 = .rodata:0x80491BA4; // type:object size:0x13 scope:local align:4 +@3955 = .rodata:0x80491BB8; // type:object size:0x12 scope:local align:4 +@3956 = .rodata:0x80491BCC; // type:object size:0x11 scope:local align:4 +@3961 = .rodata:0x80491BE0; // type:object size:0xB scope:local align:4 +@3962 = .rodata:0x80491BEC; // type:object size:0xD scope:local align:4 +@3965 = .rodata:0x80491BFC; // type:object size:0xB scope:local align:4 +@3967 = .rodata:0x80491C08; // type:object size:0xB scope:local align:4 +@3969 = .rodata:0x80491C14; // type:object size:0x11 scope:local align:4 +@3971 = .rodata:0x80491C28; // type:object size:0x9 scope:local align:4 +@3973 = .rodata:0x80491C34; // type:object size:0x9 scope:local align:4 +@3976 = .rodata:0x80491C40; // type:object size:0x9 scope:local align:4 +@3978 = .rodata:0x80491C4C; // type:object size:0x9 scope:local align:4 +@3980 = .rodata:0x80491C58; // type:object size:0xB scope:local align:4 +@3981 = .rodata:0x80491C64; // type:object size:0x11 scope:local align:4 +@3982 = .rodata:0x80491C78; // type:object size:0xD scope:local align:4 +@3983 = .rodata:0x80491C88; // type:object size:0xB scope:local align:4 +@3984 = .rodata:0x80491C94; // type:object size:0xD scope:local align:4 +@3985 = .rodata:0x80491CA4; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x80491CB4; // type:object size:0xF scope:local align:4 +@3987 = .rodata:0x80491CC4; // type:object size:0xF scope:local align:4 +@3989 = .rodata:0x80491CD4; // type:object size:0x9 scope:local align:4 +@3991 = .rodata:0x80491CE0; // type:object size:0x9 scope:local align:4 +@3993 = .rodata:0x80491CEC; // type:object size:0x17 scope:local align:4 +@3994 = .rodata:0x80491D04; // type:object size:0xD scope:local align:4 +@3995 = .rodata:0x80491D14; // type:object size:0xD scope:local align:4 +@3996 = .rodata:0x80491D24; // type:object size:0xF scope:local align:4 +@3997 = .rodata:0x80491D34; // type:object size:0xF scope:local align:4 +@3998 = .rodata:0x80491D44; // type:object size:0xF scope:local align:4 +@3999 = .rodata:0x80491D54; // type:object size:0xF scope:local align:4 +@4000 = .rodata:0x80491D64; // type:object size:0xF scope:local align:4 +@4001 = .rodata:0x80491D74; // type:object size:0xF scope:local align:4 +@4002 = .rodata:0x80491D84; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80491D98; // type:label scope:local +@3881 = .rodata:0x80491D98; // type:object size:0xB scope:local align:4 data:string +@3882 = .rodata:0x80491DA4; // type:object size:0x9 scope:local align:4 data:string +@3922 = .rodata:0x80491DB0; // type:object size:0xC scope:local align:4 data:string +@3923 = .rodata:0x80491DBC; // type:object size:0xC scope:local align:4 data:string +@5459 = .rodata:0x80491DC8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80491DD8; // type:label scope:local +@3339 = .rodata:0x80491DD8; // type:object size:0xD scope:local align:4 data:string +@3345 = .rodata:0x80491DE8; // type:object size:0xD scope:local align:4 +@3393 = .rodata:0x80491DF8; // type:object size:0x13 scope:local align:4 data:string +@3394 = .rodata:0x80491E0C; // type:object size:0x13 scope:local align:4 data:string +@3398 = .rodata:0x80491E20; // type:object size:0xF scope:local align:4 data:string +@3399 = .rodata:0x80491E30; // type:object size:0xE scope:local align:4 data:string +@3405 = .rodata:0x80491E40; // type:object size:0xD scope:local align:4 data:string +@3456 = .rodata:0x80491E50; // type:object size:0xF scope:local align:4 data:string +@3460 = .rodata:0x80491E60; // type:object size:0xD scope:local align:4 +@3463 = .rodata:0x80491E70; // type:object size:0xD scope:local align:4 +@3464 = .rodata:0x80491E80; // type:object size:0xB scope:local align:4 +@3466 = .rodata:0x80491E8C; // type:object size:0xF scope:local align:4 +@3468 = .rodata:0x80491E9C; // type:object size:0x1F scope:local align:4 +@3470 = .rodata:0x80491EBC; // type:object size:0x13 scope:local align:4 +@3472 = .rodata:0x80491ED0; // type:object size:0x13 scope:local align:4 +@3474 = .rodata:0x80491EE4; // type:object size:0x12 scope:local align:4 +@3475 = .rodata:0x80491EF8; // type:object size:0x11 scope:local align:4 +@3480 = .rodata:0x80491F0C; // type:object size:0xB scope:local align:4 +@3481 = .rodata:0x80491F18; // type:object size:0xD scope:local align:4 +@3484 = .rodata:0x80491F28; // type:object size:0xB scope:local align:4 +@3486 = .rodata:0x80491F34; // type:object size:0xB scope:local align:4 +@3488 = .rodata:0x80491F40; // type:object size:0x11 scope:local align:4 +@3490 = .rodata:0x80491F54; // type:object size:0x9 scope:local align:4 +@3492 = .rodata:0x80491F60; // type:object size:0x9 scope:local align:4 +@3495 = .rodata:0x80491F6C; // type:object size:0x9 scope:local align:4 +@3497 = .rodata:0x80491F78; // type:object size:0x9 scope:local align:4 +@3499 = .rodata:0x80491F84; // type:object size:0xB scope:local align:4 +@3501 = .rodata:0x80491F90; // type:object size:0x11 scope:local align:4 +@3502 = .rodata:0x80491FA4; // type:object size:0xD scope:local align:4 +@3503 = .rodata:0x80491FB4; // type:object size:0xB scope:local align:4 +@3504 = .rodata:0x80491FC0; // type:object size:0xD scope:local align:4 +@3505 = .rodata:0x80491FD0; // type:object size:0xD scope:local align:4 +@3506 = .rodata:0x80491FE0; // type:object size:0xF scope:local align:4 +@3507 = .rodata:0x80491FF0; // type:object size:0xF scope:local align:4 +@3509 = .rodata:0x80492000; // type:object size:0x9 scope:local align:4 +@3511 = .rodata:0x8049200C; // type:object size:0x9 scope:local align:4 +@3513 = .rodata:0x80492018; // type:object size:0x17 scope:local align:4 +@3514 = .rodata:0x80492030; // type:object size:0xD scope:local align:4 +@3516 = .rodata:0x80492040; // type:object size:0xD scope:local align:4 +@3517 = .rodata:0x80492050; // type:object size:0xF scope:local align:4 +@3518 = .rodata:0x80492060; // type:object size:0xF scope:local align:4 +@3519 = .rodata:0x80492070; // type:object size:0xF scope:local align:4 +@3520 = .rodata:0x80492080; // type:object size:0xF scope:local align:4 +@3521 = .rodata:0x80492090; // type:object size:0xF scope:local align:4 +@3522 = .rodata:0x804920A0; // type:object size:0xF scope:local align:4 +@3523 = .rodata:0x804920B0; // type:object size:0xF scope:local align:4 +@3559 = .rodata:0x804920C0; // type:object size:0xA scope:local align:4 data:string +@3560 = .rodata:0x804920CC; // type:object size:0x22 scope:local align:4 data:string +@3561 = .rodata:0x804920F0; // type:object size:0x11 scope:local align:4 data:string +@3562 = .rodata:0x80492104; // type:object size:0x9 scope:local align:4 data:string +@3566 = .rodata:0x80492110; // type:object size:0x30 scope:local align:4 +@3682 = .rodata:0x80492140; // type:object size:0x11 scope:local align:4 data:string +@3683 = .rodata:0x80492154; // type:object size:0x1A scope:local align:4 data:string +...rodata.0 = .rodata:0x80492170; // type:label scope:local +@3807 = .rodata:0x80492170; // type:object size:0xF scope:local align:4 data:string +@3813 = .rodata:0x80492180; // type:object size:0x15 scope:local align:4 +@3875 = .rodata:0x80492198; // type:object size:0xF scope:local align:4 data:string +@3876 = .rodata:0x804921A8; // type:object size:0x9 scope:local align:4 +@3880 = .rodata:0x804921B4; // type:object size:0x9 scope:local align:4 +@3883 = .rodata:0x804921C0; // type:object size:0x9 scope:local align:4 +@3885 = .rodata:0x804921CC; // type:object size:0xD scope:local align:4 +@3886 = .rodata:0x804921DC; // type:object size:0xD scope:local align:4 +@3887 = .rodata:0x804921EC; // type:object size:0xD scope:local align:4 +@3888 = .rodata:0x804921FC; // type:object size:0xD scope:local align:4 +@3929 = .rodata:0x8049220C; // type:object size:0x13 scope:local align:4 data:string +@3930 = .rodata:0x80492220; // type:object size:0x13 scope:local align:4 data:string +@3932 = .rodata:0x80492234; // type:object size:0xF scope:local align:4 data:string +@3933 = .rodata:0x80492244; // type:object size:0xE scope:local align:4 data:string +@3939 = .rodata:0x80492254; // type:object size:0xD scope:local align:4 data:string +@3992 = .rodata:0x80492264; // type:object size:0xD scope:local align:4 +@3994 = .rodata:0x80492274; // type:object size:0xD scope:local align:4 +@3995 = .rodata:0x80492284; // type:object size:0xB scope:local align:4 +@3996 = .rodata:0x80492290; // type:object size:0xF scope:local align:4 +@3997 = .rodata:0x804922A0; // type:object size:0x1F scope:local align:4 +@3999 = .rodata:0x804922C0; // type:object size:0x13 scope:local align:4 +@4001 = .rodata:0x804922D4; // type:object size:0x13 scope:local align:4 +@4002 = .rodata:0x804922E8; // type:object size:0x12 scope:local align:4 +@4003 = .rodata:0x804922FC; // type:object size:0x11 scope:local align:4 +@4007 = .rodata:0x80492310; // type:object size:0xB scope:local align:4 +@4008 = .rodata:0x8049231C; // type:object size:0xD scope:local align:4 +@4010 = .rodata:0x8049232C; // type:object size:0xB scope:local align:4 +@4011 = .rodata:0x80492338; // type:object size:0xB scope:local align:4 +@4013 = .rodata:0x80492344; // type:object size:0x11 scope:local align:4 +@4015 = .rodata:0x80492358; // type:object size:0x9 scope:local align:4 +@4017 = .rodata:0x80492364; // type:object size:0x9 scope:local align:4 +@4020 = .rodata:0x80492370; // type:object size:0x9 scope:local align:4 +@4022 = .rodata:0x8049237C; // type:object size:0x9 scope:local align:4 +@4024 = .rodata:0x80492388; // type:object size:0xB scope:local align:4 +@4025 = .rodata:0x80492394; // type:object size:0x11 scope:local align:4 +@4026 = .rodata:0x804923A8; // type:object size:0xD scope:local align:4 +@4027 = .rodata:0x804923B8; // type:object size:0xB scope:local align:4 +@4028 = .rodata:0x804923C4; // type:object size:0xD scope:local align:4 +@4029 = .rodata:0x804923D4; // type:object size:0xD scope:local align:4 +@4030 = .rodata:0x804923E4; // type:object size:0xF scope:local align:4 +@4031 = .rodata:0x804923F4; // type:object size:0xF scope:local align:4 +@4033 = .rodata:0x80492404; // type:object size:0x9 scope:local align:4 +@4035 = .rodata:0x80492410; // type:object size:0x9 scope:local align:4 +@4037 = .rodata:0x8049241C; // type:object size:0x17 scope:local align:4 +@4038 = .rodata:0x80492434; // type:object size:0xD scope:local align:4 +@4040 = .rodata:0x80492444; // type:object size:0xD scope:local align:4 +@4041 = .rodata:0x80492454; // type:object size:0xF scope:local align:4 +@4042 = .rodata:0x80492464; // type:object size:0xF scope:local align:4 +@4043 = .rodata:0x80492474; // type:object size:0xF scope:local align:4 +@4044 = .rodata:0x80492484; // type:object size:0xF scope:local align:4 +@4045 = .rodata:0x80492494; // type:object size:0xF scope:local align:4 +@4046 = .rodata:0x804924A4; // type:object size:0xF scope:local align:4 +@4047 = .rodata:0x804924B4; // type:object size:0xF scope:local align:4 +@4202 = .rodata:0x804924C4; // type:object size:0x13 scope:local align:4 data:string +@4203 = .rodata:0x804924D8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804924E8; // type:label scope:local +@3813 = .rodata:0x804924E8; // type:object size:0xC scope:local align:4 data:string +@3884 = .rodata:0x804924F4; // type:object size:0x10 scope:local align:4 data:string +@3885 = .rodata:0x80492504; // type:object size:0x9 scope:local align:4 data:string +@3886 = .rodata:0x80492510; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80492520; // type:label scope:local +@3769 = .rodata:0x80492520; // type:object size:0xC scope:local align:4 +@3978 = .rodata:0x8049252C; // type:object size:0xC scope:local align:4 data:string +@3979 = .rodata:0x80492538; // type:object size:0x9 scope:local align:4 data:string +@4174 = .rodata:0x80492544; // type:object size:0xC scope:local align:4 data:string +@4181 = .rodata:0x80492550; // type:object size:0xA scope:local align:4 data:string +@4567 = .rodata:0x8049255C; // type:object size:0x9 scope:local align:4 data:string +@4861 = .rodata:0x80492568; // type:object size:0x50 scope:local align:8 +@4863 = .rodata:0x804925B8; // type:object size:0x3C0 scope:local align:8 data:string +@4968 = .rodata:0x80492978; // type:object size:0xF scope:local align:4 data:string +@5600 = .rodata:0x80492988; // type:object size:0x15 scope:local align:4 data:string +@5632 = .rodata:0x804929A0; // type:object size:0xB scope:local align:4 data:string +@5764 = .rodata:0x804929B0; // type:object size:0x10 scope:local align:8 +@5766 = .rodata:0x804929C0; // type:object size:0x10 scope:local align:8 +@5768 = .rodata:0x804929D0; // type:object size:0x10 scope:local align:8 +@6172 = .rodata:0x804929E0; // type:object size:0x27 scope:local align:4 data:string +@6174 = .rodata:0x80492A08; // type:object size:0x1A scope:local align:4 data:string +@6175 = .rodata:0x80492A24; // type:object size:0x1A scope:local align:4 data:string +@6176 = .rodata:0x80492A40; // type:object size:0x1A scope:local align:4 data:string +@6177 = .rodata:0x80492A5C; // type:object size:0x18 scope:local align:4 data:string +@6178 = .rodata:0x80492A74; // type:object size:0x1C scope:local align:4 data:string +@6179 = .rodata:0x80492A90; // type:object size:0x1C scope:local align:4 data:string +@6180 = .rodata:0x80492AAC; // type:object size:0x1A scope:local align:4 data:string +@6181 = .rodata:0x80492AC8; // type:object size:0x1A scope:local align:4 data:string +@6182 = .rodata:0x80492AE4; // type:object size:0x16 scope:local align:4 data:string +@6183 = .rodata:0x80492AFC; // type:object size:0x16 scope:local align:4 data:string +@6184 = .rodata:0x80492B14; // type:object size:0x16 scope:local align:4 data:string +@6185 = .rodata:0x80492B2C; // type:object size:0x1F scope:local align:4 data:string +@6252 = .rodata:0x80492B4C; // type:object size:0x11 scope:local align:4 data:string +@6289 = .rodata:0x80492B60; // type:object size:0x70 scope:local align:8 +@6291 = .rodata:0x80492BD0; // type:object size:0x540 scope:local align:8 data:string +@6883 = .rodata:0x80493110; // type:object size:0xA scope:local align:4 data:string +@6945 = .rodata:0x8049311C; // type:object size:0xA scope:local align:4 data:string +@7411 = .rodata:0x80493128; // type:object size:0x18 scope:local align:8 +@7413 = .rodata:0x80493140; // type:object size:0x18 scope:local align:8 +@7415 = .rodata:0x80493158; // type:object size:0x18 scope:local align:8 +@7417 = .rodata:0x80493170; // type:object size:0x10 scope:local align:8 +@7825 = .rodata:0x80493180; // type:object size:0x15 scope:local align:4 data:string +@7826 = .rodata:0x80493198; // type:object size:0x1A scope:local align:4 data:string +@7827 = .rodata:0x804931B4; // type:object size:0x1A scope:local align:4 data:string +@7828 = .rodata:0x804931D0; // type:object size:0x1A scope:local align:4 data:string +@7829 = .rodata:0x804931EC; // type:object size:0x1A scope:local align:4 data:string +@7830 = .rodata:0x80493208; // type:object size:0x18 scope:local align:4 data:string +@7831 = .rodata:0x80493220; // type:object size:0x1C scope:local align:4 data:string +@7832 = .rodata:0x8049323C; // type:object size:0x1C scope:local align:4 data:string +@7833 = .rodata:0x80493258; // type:object size:0x1E scope:local align:4 data:string +@7834 = .rodata:0x80493278; // type:object size:0x1F scope:local align:4 data:string +@8024 = .rodata:0x80493298; // type:object size:0x12 scope:local align:4 data:string +@8705 = .rodata:0x804932AC; // type:object size:0x12 scope:local align:4 data:string +@8746 = .rodata:0x804932C0; // type:object size:0xC scope:local align:4 data:string +@8751 = .rodata:0x804932CC; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x804932E0; // type:label scope:local +@3573 = .rodata:0x804932E0; // type:object size:0xA scope:local align:4 data:string +@4005 = .rodata:0x804932EC; // type:object size:0x15 scope:local align:4 data:string +@4006 = .rodata:0x80493304; // type:object size:0x15 scope:local align:4 data:string +@4007 = .rodata:0x8049331C; // type:object size:0x15 scope:local align:4 data:string +@4008 = .rodata:0x80493334; // type:object size:0x15 scope:local align:4 data:string +@4009 = .rodata:0x8049334C; // type:object size:0x15 scope:local align:4 data:string +@4010 = .rodata:0x80493364; // type:object size:0x15 scope:local align:4 data:string +@4011 = .rodata:0x8049337C; // type:object size:0x15 scope:local align:4 data:string +@4012 = .rodata:0x80493394; // type:object size:0x15 scope:local align:4 data:string +@4013 = .rodata:0x804933AC; // type:object size:0x15 scope:local align:4 data:string +@4014 = .rodata:0x804933C4; // type:object size:0x15 scope:local align:4 data:string +@4015 = .rodata:0x804933DC; // type:object size:0x15 scope:local align:4 data:string +@4016 = .rodata:0x804933F4; // type:object size:0x15 scope:local align:4 data:string +@4017 = .rodata:0x8049340C; // type:object size:0x15 scope:local align:4 data:string +@4018 = .rodata:0x80493424; // type:object size:0x15 scope:local align:4 data:string +@4019 = .rodata:0x8049343C; // type:object size:0x15 scope:local align:4 data:string +@4020 = .rodata:0x80493454; // type:object size:0x15 scope:local align:4 data:string +@4021 = .rodata:0x8049346C; // type:object size:0x40 scope:local align:4 +@4040 = .rodata:0x804934B0; // type:object size:0x28 scope:local align:8 +@4041 = .rodata:0x804934D8; // type:object size:0x28 scope:local align:8 +@4058 = .rodata:0x80493500; // type:object size:0x30 scope:local align:8 +@4059 = .rodata:0x80493530; // type:object size:0x30 scope:local align:8 +@4060 = .rodata:0x80493560; // type:object size:0x30 scope:local align:8 +@4061 = .rodata:0x80493590; // type:object size:0x30 scope:local align:8 +@4062 = .rodata:0x804935C0; // type:object size:0x30 scope:local align:8 +@4327 = .rodata:0x804935F0; // type:object size:0xE scope:local align:4 data:string +@4328 = .rodata:0x80493600; // type:object size:0x9 scope:local align:4 data:string +@4329 = .rodata:0x8049360C; // type:object size:0x12 scope:local align:4 data:string +@4330 = .rodata:0x80493620; // type:object size:0x12 scope:local align:4 data:string +@4331 = .rodata:0x80493634; // type:object size:0x12 scope:local align:4 data:string +@4332 = .rodata:0x80493648; // type:object size:0x12 scope:local align:4 data:string +@4333 = .rodata:0x8049365C; // type:object size:0x13 scope:local align:4 data:string +@4334 = .rodata:0x80493670; // type:object size:0x10 scope:local align:4 data:string +@5461 = .rodata:0x80493680; // type:object size:0x10 scope:local align:4 data:string +@5501 = .rodata:0x80493690; // type:object size:0xC scope:local align:4 data:string +@4337 = .rodata:0x804936A0; // type:object size:0x12 scope:local align:4 data:string +@4366 = .rodata:0x804936B4; // type:object size:0x16 scope:local align:4 data:string +@4367 = .rodata:0x804936CC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804936D8; // type:label scope:local +@3783 = .rodata:0x804936D8; // type:object size:0xC scope:local align:4 data:string +@3789 = .rodata:0x804936E4; // type:object size:0x13 scope:local align:4 +@3827 = .rodata:0x804936F8; // type:object size:0xF scope:local align:4 data:string +@3828 = .rodata:0x80493708; // type:object size:0xF scope:local align:4 +@3830 = .rodata:0x80493718; // type:object size:0xD scope:local align:4 +@3833 = .rodata:0x80493728; // type:object size:0xD scope:local align:4 +@3834 = .rodata:0x80493738; // type:object size:0xF scope:local align:4 +@3836 = .rodata:0x80493748; // type:object size:0x11 scope:local align:4 +@3838 = .rodata:0x8049375C; // type:object size:0x13 scope:local align:4 +@3841 = .rodata:0x80493770; // type:object size:0x19 scope:local align:4 +@3842 = .rodata:0x8049378C; // type:object size:0xF scope:local align:4 +@3845 = .rodata:0x8049379C; // type:object size:0xB scope:local align:4 +@3848 = .rodata:0x804937A8; // type:object size:0xD scope:local align:4 +@3850 = .rodata:0x804937B8; // type:object size:0xF scope:local align:4 +@3851 = .rodata:0x804937C8; // type:object size:0xF scope:local align:4 +@3852 = .rodata:0x804937D8; // type:object size:0xF scope:local align:4 +@3886 = .rodata:0x804937E8; // type:object size:0x13 scope:local align:4 data:string +@3887 = .rodata:0x804937FC; // type:object size:0x13 scope:local align:4 data:string +@3889 = .rodata:0x80493810; // type:object size:0xF scope:local align:4 data:string +@3890 = .rodata:0x80493820; // type:object size:0xE scope:local align:4 data:string +@3895 = .rodata:0x80493830; // type:object size:0xD scope:local align:4 data:string +@3947 = .rodata:0x80493840; // type:object size:0xD scope:local align:4 +@3949 = .rodata:0x80493850; // type:object size:0xD scope:local align:4 +@3950 = .rodata:0x80493860; // type:object size:0xB scope:local align:4 +@3952 = .rodata:0x8049386C; // type:object size:0xF scope:local align:4 +@3954 = .rodata:0x8049387C; // type:object size:0x1F scope:local align:4 +@3955 = .rodata:0x8049389C; // type:object size:0x13 scope:local align:4 +@3957 = .rodata:0x804938B0; // type:object size:0x13 scope:local align:4 +@3959 = .rodata:0x804938C4; // type:object size:0x12 scope:local align:4 +@3960 = .rodata:0x804938D8; // type:object size:0x11 scope:local align:4 +@3965 = .rodata:0x804938EC; // type:object size:0xB scope:local align:4 +@3966 = .rodata:0x804938F8; // type:object size:0xD scope:local align:4 +@3967 = .rodata:0x80493908; // type:object size:0xB scope:local align:4 +@3968 = .rodata:0x80493914; // type:object size:0xB scope:local align:4 +@3970 = .rodata:0x80493920; // type:object size:0x11 scope:local align:4 +@3972 = .rodata:0x80493934; // type:object size:0x9 scope:local align:4 +@3974 = .rodata:0x80493940; // type:object size:0x9 scope:local align:4 +@3976 = .rodata:0x8049394C; // type:object size:0x9 scope:local align:4 +@3978 = .rodata:0x80493958; // type:object size:0x9 scope:local align:4 +@3980 = .rodata:0x80493964; // type:object size:0xB scope:local align:4 +@3981 = .rodata:0x80493970; // type:object size:0x11 scope:local align:4 +@3982 = .rodata:0x80493984; // type:object size:0xD scope:local align:4 +@3983 = .rodata:0x80493994; // type:object size:0xB scope:local align:4 +@3984 = .rodata:0x804939A0; // type:object size:0xD scope:local align:4 +@3985 = .rodata:0x804939B0; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x804939C0; // type:object size:0xF scope:local align:4 +@3987 = .rodata:0x804939D0; // type:object size:0xF scope:local align:4 +@3989 = .rodata:0x804939E0; // type:object size:0x9 scope:local align:4 +@3991 = .rodata:0x804939EC; // type:object size:0x9 scope:local align:4 +@3992 = .rodata:0x804939F8; // type:object size:0x17 scope:local align:4 +@3993 = .rodata:0x80493A10; // type:object size:0xD scope:local align:4 +@3994 = .rodata:0x80493A20; // type:object size:0xD scope:local align:4 +@3995 = .rodata:0x80493A30; // type:object size:0xF scope:local align:4 +@3996 = .rodata:0x80493A40; // type:object size:0xF scope:local align:4 +@3997 = .rodata:0x80493A50; // type:object size:0xF scope:local align:4 +@3998 = .rodata:0x80493A60; // type:object size:0xF scope:local align:4 +@3999 = .rodata:0x80493A70; // type:object size:0xF scope:local align:4 +@4000 = .rodata:0x80493A80; // type:object size:0xF scope:local align:4 +@4001 = .rodata:0x80493A90; // type:object size:0xF scope:local align:4 +@4048 = .rodata:0x80493AA0; // type:object size:0x28 scope:local align:4 data:string +@4049 = .rodata:0x80493AC8; // type:object size:0x10 scope:local align:4 data:string +@4050 = .rodata:0x80493AD8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493AE8; // type:label scope:local +@3782 = .rodata:0x80493AE8; // type:object size:0x9 scope:local align:4 data:string +@3937 = .rodata:0x80493AF4; // type:object size:0xC scope:local align:4 data:string +@3938 = .rodata:0x80493B00; // type:object size:0xD scope:local align:4 data:string +@3939 = .rodata:0x80493B10; // type:object size:0x9 scope:local align:4 data:string +@3940 = .rodata:0x80493B1C; // type:object size:0xA scope:local align:4 data:string +@3941 = .rodata:0x80493B28; // type:object size:0x16 scope:local align:4 data:string +@3943 = .rodata:0x80493B40; // type:object size:0xC scope:local align:4 data:string +@3944 = .rodata:0x80493B4C; // type:object size:0xC scope:local align:4 data:string +@3945 = .rodata:0x80493B58; // type:object size:0x9 scope:local align:4 data:string +@3946 = .rodata:0x80493B64; // type:object size:0x9 scope:local align:4 data:string +@3947 = .rodata:0x80493B70; // type:object size:0xC scope:local align:4 data:string +@4498 = .rodata:0x80493B7C; // type:object size:0xC scope:local align:4 data:string +@4499 = .rodata:0x80493B88; // type:object size:0xC scope:local align:4 data:string +@4500 = .rodata:0x80493B94; // type:object size:0xC scope:local align:4 data:string +@4501 = .rodata:0x80493BA0; // type:object size:0xC scope:local align:4 data:string +@4502 = .rodata:0x80493BAC; // type:object size:0xC scope:local align:4 data:string +@4503 = .rodata:0x80493BB8; // type:object size:0xC scope:local align:4 data:string +@4504 = .rodata:0x80493BC4; // type:object size:0xC scope:local align:4 data:string +@4505 = .rodata:0x80493BD0; // type:object size:0x1C scope:local align:4 data:4byte +@5717 = .rodata:0x80493BEC; // type:object size:0xC scope:local align:4 data:string +@5809 = .rodata:0x80493BF8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493C08; // type:label scope:local +@3789 = .rodata:0x80493C08; // type:object size:0xF scope:local align:4 data:string +@3795 = .rodata:0x80493C18; // type:object size:0x13 scope:local align:4 +@3873 = .rodata:0x80493C2C; // type:object size:0xF scope:local align:4 data:string +@3874 = .rodata:0x80493C3C; // type:object size:0x9 scope:local align:4 +@3878 = .rodata:0x80493C48; // type:object size:0x17 scope:local align:4 +@3880 = .rodata:0x80493C60; // type:object size:0x9 scope:local align:4 +@3881 = .rodata:0x80493C6C; // type:object size:0x9 scope:local align:4 +@3883 = .rodata:0x80493C78; // type:object size:0xB scope:local align:4 +@3885 = .rodata:0x80493C84; // type:object size:0x9 scope:local align:4 +@3923 = .rodata:0x80493C90; // type:object size:0x13 scope:local align:4 data:string +@3924 = .rodata:0x80493CA4; // type:object size:0x13 scope:local align:4 data:string +@3926 = .rodata:0x80493CB8; // type:object size:0xF scope:local align:4 data:string +@3927 = .rodata:0x80493CC8; // type:object size:0xE scope:local align:4 data:string +@3932 = .rodata:0x80493CD8; // type:object size:0xD scope:local align:4 data:string +@3984 = .rodata:0x80493CE8; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x80493CF8; // type:object size:0xD scope:local align:4 +@3987 = .rodata:0x80493D08; // type:object size:0xB scope:local align:4 +@3989 = .rodata:0x80493D14; // type:object size:0xF scope:local align:4 +@3991 = .rodata:0x80493D24; // type:object size:0x1F scope:local align:4 +@3993 = .rodata:0x80493D44; // type:object size:0x13 scope:local align:4 +@3995 = .rodata:0x80493D58; // type:object size:0x13 scope:local align:4 +@3997 = .rodata:0x80493D6C; // type:object size:0x12 scope:local align:4 +@3998 = .rodata:0x80493D80; // type:object size:0x11 scope:local align:4 +@4003 = .rodata:0x80493D94; // type:object size:0xB scope:local align:4 +@4004 = .rodata:0x80493DA0; // type:object size:0xD scope:local align:4 +@4006 = .rodata:0x80493DB0; // type:object size:0xB scope:local align:4 +@4007 = .rodata:0x80493DBC; // type:object size:0xB scope:local align:4 +@4009 = .rodata:0x80493DC8; // type:object size:0x11 scope:local align:4 +@4010 = .rodata:0x80493DDC; // type:object size:0x9 scope:local align:4 +@4012 = .rodata:0x80493DE8; // type:object size:0x9 scope:local align:4 +@4015 = .rodata:0x80493DF4; // type:object size:0x9 scope:local align:4 +@4017 = .rodata:0x80493E00; // type:object size:0x9 scope:local align:4 +@4019 = .rodata:0x80493E0C; // type:object size:0xB scope:local align:4 +@4020 = .rodata:0x80493E18; // type:object size:0x11 scope:local align:4 +@4021 = .rodata:0x80493E2C; // type:object size:0xD scope:local align:4 +@4022 = .rodata:0x80493E3C; // type:object size:0xB scope:local align:4 +@4023 = .rodata:0x80493E48; // type:object size:0xD scope:local align:4 +@4024 = .rodata:0x80493E58; // type:object size:0xD scope:local align:4 +@4025 = .rodata:0x80493E68; // type:object size:0xF scope:local align:4 +@4026 = .rodata:0x80493E78; // type:object size:0xF scope:local align:4 +@4028 = .rodata:0x80493E88; // type:object size:0x9 scope:local align:4 +@4030 = .rodata:0x80493E94; // type:object size:0x9 scope:local align:4 +@4032 = .rodata:0x80493EA0; // type:object size:0x17 scope:local align:4 +@4033 = .rodata:0x80493EB8; // type:object size:0xD scope:local align:4 +@4034 = .rodata:0x80493EC8; // type:object size:0xD scope:local align:4 +@4035 = .rodata:0x80493ED8; // type:object size:0xF scope:local align:4 +@4036 = .rodata:0x80493EE8; // type:object size:0xF scope:local align:4 +@4037 = .rodata:0x80493EF8; // type:object size:0xF scope:local align:4 +@4038 = .rodata:0x80493F08; // type:object size:0xF scope:local align:4 +@4039 = .rodata:0x80493F18; // type:object size:0xF scope:local align:4 +@4040 = .rodata:0x80493F28; // type:object size:0xF scope:local align:4 +@4041 = .rodata:0x80493F38; // type:object size:0xF scope:local align:4 +@4091 = .rodata:0x80493F48; // type:object size:0x13 scope:local align:4 data:string +@4092 = .rodata:0x80493F5C; // type:object size:0x9 scope:local align:4 data:string +@4093 = .rodata:0x80493F68; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493F80; // type:label scope:local +@3837 = .rodata:0x80493F80; // type:object size:0xC scope:local align:4 data:string +@3895 = .rodata:0x80493F8C; // type:object size:0x13 scope:local align:4 data:string +@3896 = .rodata:0x80493FA0; // type:object size:0x10 scope:local align:4 data:string +@3897 = .rodata:0x80493FB0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493FC0; // type:label scope:local +@3546 = .rodata:0x80493FC0; // type:object size:0x12 scope:local align:4 data:string +@3562 = .rodata:0x80493FD4; // type:object size:0x16 scope:local align:4 data:string +@3563 = .rodata:0x80493FEC; // type:object size:0x9 scope:local align:4 data:string +@3790 = .rodata:0x80493FF8; // type:object size:0xB scope:local align:4 data:string +@4242 = .rodata:0x80494008; // type:object size:0x80 scope:local align:8 data:4byte +@4375 = .rodata:0x80494088; // type:object size:0x20 scope:local align:8 +@4929 = .rodata:0x804940A8; // type:object size:0x10 scope:local align:4 data:string +@4999 = .rodata:0x804940B8; // type:object size:0x10 scope:local align:8 +@5001 = .rodata:0x804940C8; // type:object size:0x15 scope:local align:4 data:string +@5002 = .rodata:0x804940E0; // type:object size:0x13 scope:local align:4 data:string +@5003 = .rodata:0x804940F4; // type:object size:0x15 scope:local align:4 data:string +@5004 = .rodata:0x8049410C; // type:object size:0x17 scope:local align:4 data:string +@5005 = .rodata:0x80494124; // type:object size:0x10 scope:local align:4 +@5029 = .rodata:0x80494138; // type:object size:0x28 scope:local align:8 +@5036 = .rodata:0x80494160; // type:object size:0x2D0 scope:local align:8 +@5369 = .rodata:0x80494430; // type:object size:0x27 scope:local align:4 data:string +@5370 = .rodata:0x80494458; // type:object size:0x22 scope:local align:4 data:string +@5372 = .rodata:0x8049447C; // type:object size:0x19 scope:local align:4 data:string +@5373 = .rodata:0x80494498; // type:object size:0x1A scope:local align:4 data:string +@5374 = .rodata:0x804944B4; // type:object size:0x1A scope:local align:4 data:string +@5375 = .rodata:0x804944D0; // type:object size:0x1D scope:local align:4 data:string +@5376 = .rodata:0x804944F0; // type:object size:0x1D scope:local align:4 data:string +@5377 = .rodata:0x80494510; // type:object size:0x1D scope:local align:4 data:string +@5378 = .rodata:0x80494530; // type:object size:0x1D scope:local align:4 data:string +@5379 = .rodata:0x80494550; // type:object size:0x19 scope:local align:4 data:string +@5380 = .rodata:0x8049456C; // type:object size:0x19 scope:local align:4 data:string +@5381 = .rodata:0x80494588; // type:object size:0x19 scope:local align:4 data:string +@5382 = .rodata:0x804945A4; // type:object size:0x19 scope:local align:4 data:string +@5383 = .rodata:0x804945C0; // type:object size:0x1C scope:local align:4 data:string +@5384 = .rodata:0x804945DC; // type:object size:0x1C scope:local align:4 data:string +@5385 = .rodata:0x804945F8; // type:object size:0x1C scope:local align:4 data:string +@5386 = .rodata:0x80494614; // type:object size:0x1C scope:local align:4 data:string +@5387 = .rodata:0x80494630; // type:object size:0x1C scope:local align:4 data:string +@5388 = .rodata:0x8049464C; // type:object size:0x1C scope:local align:4 data:string +@5389 = .rodata:0x80494668; // type:object size:0x1C scope:local align:4 data:string +@5390 = .rodata:0x80494684; // type:object size:0x10 scope:local align:4 data:string +@5925 = .rodata:0x80494694; // type:object size:0x9 scope:local align:4 data:string +@6174 = .rodata:0x804946A0; // type:object size:0x10 scope:local align:4 data:string +@6175 = .rodata:0x804946B0; // type:object size:0x10 scope:local align:4 data:string +@6176 = .rodata:0x804946C0; // type:object size:0xF scope:local align:4 data:string +@6177 = .rodata:0x804946D0; // type:object size:0x11 scope:local align:4 data:string +@6178 = .rodata:0x804946E4; // type:object size:0xC scope:local align:4 data:string +@6511 = .rodata:0x804946F0; // type:object size:0xA scope:local align:4 data:string +@6517 = .rodata:0x804946FC; // type:object size:0x18 scope:local align:4 data:string +@6562 = .rodata:0x80494714; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80494720; // type:label scope:local +@3749 = .rodata:0x80494720; // type:object size:0x12 scope:local align:4 data:string +cRandArray__8Morimura = .rodata:0x80494734; // type:object size:0x48 scope:local align:4 +@3758 = .rodata:0x80494780; // type:object size:0x98 scope:local align:8 data:4byte +@3809 = .rodata:0x80494818; // type:object size:0x1F scope:local align:4 data:string +@3859 = .rodata:0x80494838; // type:object size:0x18 scope:local align:8 data:string +@3870 = .rodata:0x80494850; // type:object size:0x16 scope:local align:4 data:string +@3871 = .rodata:0x80494868; // type:object size:0x9 scope:local align:4 data:string +@4149 = .rodata:0x80494874; // type:object size:0xF scope:local align:4 data:string +@4582 = .rodata:0x80494884; // type:object size:0x10 scope:local align:4 data:string +@4644 = .rodata:0x80494898; // type:object size:0x10 scope:local align:8 +@5026 = .rodata:0x804948A8; // type:object size:0x27 scope:local align:4 data:string +@5027 = .rodata:0x804948D0; // type:object size:0x22 scope:local align:4 data:string +@5028 = .rodata:0x804948F4; // type:object size:0x13 scope:local align:4 data:string +@5029 = .rodata:0x80494908; // type:object size:0x15 scope:local align:4 data:string +@5030 = .rodata:0x80494920; // type:object size:0x17 scope:local align:4 data:string +@5031 = .rodata:0x80494938; // type:object size:0x1A scope:local align:4 data:string +@5032 = .rodata:0x80494954; // type:object size:0x1A scope:local align:4 data:string +@5033 = .rodata:0x80494970; // type:object size:0x1A scope:local align:4 data:string +@5034 = .rodata:0x8049498C; // type:object size:0x1A scope:local align:4 data:string +@5035 = .rodata:0x804949A8; // type:object size:0x1A scope:local align:4 data:string +@5036 = .rodata:0x804949C4; // type:object size:0x1A scope:local align:4 data:string +@5037 = .rodata:0x804949E0; // type:object size:0x1D scope:local align:4 data:string +@5038 = .rodata:0x80494A00; // type:object size:0x1D scope:local align:4 data:string +@5039 = .rodata:0x80494A20; // type:object size:0x14 scope:local align:4 data:string +@5042 = .rodata:0x80494A34; // type:object size:0x1F scope:local align:4 data:string +@5043 = .rodata:0x80494A54; // type:object size:0x1F scope:local align:4 data:string +@5287 = .rodata:0x80494A74; // type:object size:0x9 scope:local align:4 data:string +@5798 = .rodata:0x80494A80; // type:object size:0xF scope:local align:4 data:string +@5799 = .rodata:0x80494A90; // type:object size:0xF scope:local align:4 data:string +@5800 = .rodata:0x80494AA0; // type:object size:0xF scope:local align:4 data:string +@5801 = .rodata:0x80494AB0; // type:object size:0xC scope:local align:4 data:string +@5802 = .rodata:0x80494ABC; // type:object size:0x10 scope:local align:4 data:string +@5803 = .rodata:0x80494ACC; // type:object size:0xC scope:local align:4 data:string +@5804 = .rodata:0x80494AD8; // type:object size:0xB scope:local align:4 data:string +@5916 = .rodata:0x80494AE4; // type:object size:0xC scope:local align:4 +@6781 = .rodata:0x80494AF0; // type:object size:0x18 scope:local align:4 data:string +@6818 = .rodata:0x80494B08; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80494B18; // type:label scope:local +@3552 = .rodata:0x80494B18; // type:object size:0xB scope:local align:4 data:string +@3591 = .rodata:0x80494B24; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x80494B34; // type:object size:0x9 scope:local align:4 data:string +@4211 = .rodata:0x80494B40; // type:object size:0x9 scope:local align:4 data:string +@4280 = .rodata:0x80494B4C; // type:object size:0x11 scope:local align:4 data:string +@4281 = .rodata:0x80494B60; // type:object size:0x12 scope:local align:4 data:string +@4282 = .rodata:0x80494B74; // type:object size:0x12 scope:local align:4 data:string +@4283 = .rodata:0x80494B88; // type:object size:0x13 scope:local align:4 data:string +@4284 = .rodata:0x80494B9C; // type:object size:0xF scope:local align:4 data:string +@4285 = .rodata:0x80494BAC; // type:object size:0x12 scope:local align:4 data:string +@4286 = .rodata:0x80494BC0; // type:object size:0x12 scope:local align:4 data:string +@4287 = .rodata:0x80494BD4; // type:object size:0x12 scope:local align:4 data:string +@4288 = .rodata:0x80494BE8; // type:object size:0xF scope:local align:4 data:string +@4289 = .rodata:0x80494BF8; // type:object size:0xE scope:local align:4 data:string +@4290 = .rodata:0x80494C08; // type:object size:0x28 scope:local align:4 +@4298 = .rodata:0x80494C30; // type:object size:0x12 scope:local align:4 data:string +@4299 = .rodata:0x80494C44; // type:object size:0x12 scope:local align:4 data:string +@4300 = .rodata:0x80494C58; // type:object size:0x12 scope:local align:4 data:string +@4301 = .rodata:0x80494C6C; // type:object size:0x12 scope:local align:4 data:string +@4302 = .rodata:0x80494C80; // type:object size:0x12 scope:local align:4 data:string +@4303 = .rodata:0x80494C94; // type:object size:0x14 scope:local align:4 +@4304 = .rodata:0x80494CA8; // type:object size:0x10 scope:local align:4 data:string +@4305 = .rodata:0x80494CB8; // type:object size:0x10 scope:local align:4 data:string +@4306 = .rodata:0x80494CC8; // type:object size:0x10 scope:local align:4 data:string +@4307 = .rodata:0x80494CD8; // type:object size:0x10 scope:local align:4 data:string +@4308 = .rodata:0x80494CE8; // type:object size:0x10 scope:local align:4 data:string +@4309 = .rodata:0x80494CF8; // type:object size:0x14 scope:local align:4 +@4316 = .rodata:0x80494D10; // type:object size:0x60 scope:local align:8 data:string +@4332 = .rodata:0x80494D70; // type:object size:0x18 scope:local align:8 +@4341 = .rodata:0x80494D88; // type:object size:0x50 scope:local align:8 +@4350 = .rodata:0x80494DD8; // type:object size:0x50 scope:local align:8 +@4375 = .rodata:0x80494E28; // type:object size:0x28 scope:local align:8 +@4936 = .rodata:0x80494E50; // type:object size:0x27 scope:local align:4 data:string +@4937 = .rodata:0x80494E78; // type:object size:0xC scope:local align:4 data:string +@4938 = .rodata:0x80494E84; // type:object size:0xC scope:local align:4 data:string +@4939 = .rodata:0x80494E90; // type:object size:0xC scope:local align:4 data:string +@4940 = .rodata:0x80494E9C; // type:object size:0xD scope:local align:4 data:string +@4941 = .rodata:0x80494EAC; // type:object size:0xD scope:local align:4 data:string +@4942 = .rodata:0x80494EBC; // type:object size:0xD scope:local align:4 data:string +@4943 = .rodata:0x80494ECC; // type:object size:0x10 scope:local align:4 data:string +@4944 = .rodata:0x80494EDC; // type:object size:0x18 scope:local align:4 data:string +@4945 = .rodata:0x80494EF4; // type:object size:0xE scope:local align:4 data:string +@4946 = .rodata:0x80494F04; // type:object size:0x14 scope:local align:4 data:string +@4947 = .rodata:0x80494F18; // type:object size:0x14 scope:local align:4 data:string +@4950 = .rodata:0x80494F2C; // type:object size:0xC scope:local align:4 data:string +@4953 = .rodata:0x80494F38; // type:object size:0x11 scope:local align:4 data:string +@4954 = .rodata:0x80494F4C; // type:object size:0x13 scope:local align:4 data:string +@4955 = .rodata:0x80494F60; // type:object size:0x13 scope:local align:4 data:string +@4956 = .rodata:0x80494F74; // type:object size:0x16 scope:local align:4 data:string +@4957 = .rodata:0x80494F8C; // type:object size:0x16 scope:local align:4 data:string +@4958 = .rodata:0x80494FA4; // type:object size:0x13 scope:local align:4 data:string +@4959 = .rodata:0x80494FB8; // type:object size:0x11 scope:local align:4 data:string +@4960 = .rodata:0x80494FCC; // type:object size:0x11 scope:local align:4 data:string +@4961 = .rodata:0x80494FE0; // type:object size:0x13 scope:local align:4 data:string +@4962 = .rodata:0x80494FF4; // type:object size:0x13 scope:local align:4 data:string +@4963 = .rodata:0x80495008; // type:object size:0x16 scope:local align:4 data:string +@4964 = .rodata:0x80495020; // type:object size:0x18 scope:local align:4 data:string +@4965 = .rodata:0x80495038; // type:object size:0x18 scope:local align:4 data:string +@4966 = .rodata:0x80495050; // type:object size:0x1B scope:local align:4 data:string +@4967 = .rodata:0x8049506C; // type:object size:0x1B scope:local align:4 data:string +@4968 = .rodata:0x80495088; // type:object size:0x1B scope:local align:4 data:string +@4969 = .rodata:0x804950A4; // type:object size:0x1B scope:local align:4 data:string +@4970 = .rodata:0x804950C0; // type:object size:0x1B scope:local align:4 data:string +@4971 = .rodata:0x804950DC; // type:object size:0x1B scope:local align:4 data:string +@4972 = .rodata:0x804950F8; // type:object size:0x1B scope:local align:4 data:string +@4973 = .rodata:0x80495114; // type:object size:0x1B scope:local align:4 data:string +@4974 = .rodata:0x80495130; // type:object size:0x1B scope:local align:4 data:string +@4975 = .rodata:0x8049514C; // type:object size:0x1B scope:local align:4 data:string +@4976 = .rodata:0x80495168; // type:object size:0x1B scope:local align:4 data:string +@5840 = .rodata:0x80495184; // type:object size:0xB scope:local align:4 data:string +@5958 = .rodata:0x80495190; // type:object size:0x19 scope:local align:4 data:string +@5959 = .rodata:0x804951AC; // type:object size:0x1B scope:local align:4 data:string +@6519 = .rodata:0x804951C8; // type:object size:0xA scope:local align:4 data:string +@6525 = .rodata:0x804951D4; // type:object size:0x11 scope:local align:4 data:string +@6566 = .rodata:0x804951E8; // type:object size:0xC scope:local align:4 data:string +@3586 = .rodata:0x804951F8; // type:object size:0xB scope:local align:4 data:string +@3683 = .rodata:0x80495204; // type:object size:0x9 scope:local align:4 data:string +@3734 = .rodata:0x80495210; // type:object size:0xF scope:local align:4 data:string +@3735 = .rodata:0x80495220; // type:object size:0x9 scope:local align:4 data:string +@4237 = .rodata:0x80495230; // type:object size:0x16 scope:local align:4 data:string +@4238 = .rodata:0x80495248; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495258; // type:label scope:local +@3787 = .rodata:0x80495258; // type:object size:0xC scope:local align:4 data:string +@3793 = .rodata:0x80495264; // type:object size:0x11 scope:local align:4 +@3839 = .rodata:0x80495278; // type:object size:0xF scope:local align:4 data:string +@3840 = .rodata:0x80495288; // type:object size:0xF scope:local align:4 +@3843 = .rodata:0x80495298; // type:object size:0x9 scope:local align:4 +@3845 = .rodata:0x804952A4; // type:object size:0xF scope:local align:4 +@3847 = .rodata:0x804952B4; // type:object size:0x11 scope:local align:4 +@3849 = .rodata:0x804952C8; // type:object size:0xA scope:local align:4 +@3852 = .rodata:0x804952D4; // type:object size:0x10 scope:local align:4 +@3853 = .rodata:0x804952E4; // type:object size:0x12 scope:local align:4 +@3854 = .rodata:0x804952F8; // type:object size:0x9 scope:local align:4 +@3855 = .rodata:0x80495304; // type:object size:0x12 scope:local align:4 +@3856 = .rodata:0x80495318; // type:object size:0x13 scope:local align:4 +@3857 = .rodata:0x8049532C; // type:object size:0x11 scope:local align:4 +@3858 = .rodata:0x80495340; // type:object size:0x11 scope:local align:4 +@3859 = .rodata:0x80495354; // type:object size:0x13 scope:local align:4 +@3893 = .rodata:0x80495368; // type:object size:0x13 scope:local align:4 data:string +@3894 = .rodata:0x8049537C; // type:object size:0x13 scope:local align:4 data:string +@3896 = .rodata:0x80495390; // type:object size:0xF scope:local align:4 data:string +@3897 = .rodata:0x804953A0; // type:object size:0xE scope:local align:4 data:string +@3902 = .rodata:0x804953B0; // type:object size:0xD scope:local align:4 data:string +@3955 = .rodata:0x804953C0; // type:object size:0xD scope:local align:4 +@3956 = .rodata:0x804953D0; // type:object size:0xD scope:local align:4 +@3957 = .rodata:0x804953E0; // type:object size:0xB scope:local align:4 +@3959 = .rodata:0x804953EC; // type:object size:0xF scope:local align:4 +@3961 = .rodata:0x804953FC; // type:object size:0x1F scope:local align:4 +@3962 = .rodata:0x8049541C; // type:object size:0x13 scope:local align:4 +@3964 = .rodata:0x80495430; // type:object size:0x13 scope:local align:4 +@3965 = .rodata:0x80495444; // type:object size:0x12 scope:local align:4 +@3966 = .rodata:0x80495458; // type:object size:0x11 scope:local align:4 +@3971 = .rodata:0x8049546C; // type:object size:0xB scope:local align:4 +@3972 = .rodata:0x80495478; // type:object size:0xD scope:local align:4 +@3973 = .rodata:0x80495488; // type:object size:0xB scope:local align:4 +@3974 = .rodata:0x80495494; // type:object size:0xB scope:local align:4 +@3976 = .rodata:0x804954A0; // type:object size:0x11 scope:local align:4 +@3978 = .rodata:0x804954B4; // type:object size:0x9 scope:local align:4 +@3980 = .rodata:0x804954C0; // type:object size:0x9 scope:local align:4 +@3983 = .rodata:0x804954CC; // type:object size:0x9 scope:local align:4 +@3985 = .rodata:0x804954D8; // type:object size:0x9 scope:local align:4 +@3987 = .rodata:0x804954E4; // type:object size:0xB scope:local align:4 +@3988 = .rodata:0x804954F0; // type:object size:0x11 scope:local align:4 +@3989 = .rodata:0x80495504; // type:object size:0xD scope:local align:4 +@3990 = .rodata:0x80495514; // type:object size:0xB scope:local align:4 +@3991 = .rodata:0x80495520; // type:object size:0xD scope:local align:4 +@3992 = .rodata:0x80495530; // type:object size:0xD scope:local align:4 +@3993 = .rodata:0x80495540; // type:object size:0xF scope:local align:4 +@3994 = .rodata:0x80495550; // type:object size:0xF scope:local align:4 +@3996 = .rodata:0x80495560; // type:object size:0x9 scope:local align:4 +@3998 = .rodata:0x8049556C; // type:object size:0x9 scope:local align:4 +@4000 = .rodata:0x80495578; // type:object size:0x17 scope:local align:4 +@4001 = .rodata:0x80495590; // type:object size:0xD scope:local align:4 +@4003 = .rodata:0x804955A0; // type:object size:0xD scope:local align:4 +@4004 = .rodata:0x804955B0; // type:object size:0xF scope:local align:4 +@4005 = .rodata:0x804955C0; // type:object size:0xF scope:local align:4 +@4006 = .rodata:0x804955D0; // type:object size:0xF scope:local align:4 +@4007 = .rodata:0x804955E0; // type:object size:0xF scope:local align:4 +@4008 = .rodata:0x804955F0; // type:object size:0xF scope:local align:4 +@4009 = .rodata:0x80495600; // type:object size:0xF scope:local align:4 +@4010 = .rodata:0x80495610; // type:object size:0xF scope:local align:4 +@4046 = .rodata:0x80495620; // type:object size:0x10 scope:local align:4 data:string +@4047 = .rodata:0x80495630; // type:object size:0x9 scope:local align:4 data:string +@4061 = .rodata:0x8049563C; // type:object size:0x28 scope:local align:4 data:string +@4099 = .rodata:0x80495664; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495670; // type:label scope:local +@3905 = .rodata:0x80495670; // type:object size:0xC scope:local align:4 +@4027 = .rodata:0x8049567C; // type:object size:0x9 scope:local align:4 data:string +@4262 = .rodata:0x80495688; // type:object size:0xD scope:local align:4 data:string +@4263 = .rodata:0x80495698; // type:object size:0x9 scope:local align:4 data:string +@4266 = .rodata:0x804956A4; // type:object size:0x9 scope:local align:4 data:string +@4267 = .rodata:0x804956B0; // type:object size:0x9 scope:local align:4 data:string +@4276 = .rodata:0x804956BC; // type:object size:0x16 scope:local align:4 data:string +@4277 = .rodata:0x804956D4; // type:object size:0x9 scope:local align:4 data:string +@4690 = .rodata:0x804956E0; // type:object size:0x9 scope:local align:4 data:string +@4691 = .rodata:0x804956EC; // type:object size:0xA scope:local align:4 data:string +@4692 = .rodata:0x804956F8; // type:object size:0xD scope:local align:4 data:string +@6243 = .rodata:0x80495708; // type:object size:0x18 scope:local align:4 data:string +@6258 = .rodata:0x80495720; // type:object size:0x16 scope:local align:4 data:string +@6380 = .rodata:0x80495738; // type:object size:0x10 scope:local align:4 +@6381 = .rodata:0x80495748; // type:object size:0x10 scope:local align:4 +@6386 = .rodata:0x80495758; // type:object size:0x10 scope:local align:4 +@6391 = .rodata:0x80495768; // type:object size:0x10 scope:local align:4 +@6392 = .rodata:0x80495778; // type:object size:0xA scope:local align:4 data:string +@6393 = .rodata:0x80495784; // type:object size:0xA scope:local align:4 data:string +@6396 = .rodata:0x80495790; // type:object size:0x10 scope:local align:4 +@7008 = .rodata:0x804957A0; // type:object size:0x24 scope:local align:4 data:string +@7012 = .rodata:0x804957C4; // type:object size:0xC scope:local align:4 data:string +@3784 = .rodata:0x804957D0; // type:object size:0x11 scope:local align:4 +@3805 = .rodata:0x804957E4; // type:object size:0xF scope:local align:4 data:string +@3806 = .rodata:0x804957F4; // type:object size:0xD scope:local align:4 +@4008 = .rodata:0x80495804; // type:object size:0xC scope:local align:4 data:string +@4009 = .rodata:0x80495810; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495820; // type:label scope:local +@3877 = .rodata:0x80495820; // type:object size:0xC scope:local align:4 +@3998 = .rodata:0x8049582C; // type:object size:0x9 scope:local align:4 data:string +@3999 = .rodata:0x80495838; // type:object size:0x9 scope:local align:4 data:string +@4000 = .rodata:0x80495844; // type:object size:0xA scope:local align:4 data:string +@4001 = .rodata:0x80495850; // type:object size:0x9 scope:local align:4 data:string +@4972 = .rodata:0x8049585C; // type:object size:0xD scope:local align:4 data:string +@5002 = .rodata:0x8049586C; // type:object size:0xD scope:local align:4 data:string +@2886 = .rodata:0x80495880; // type:object size:0xC scope:local align:4 data:string +@3097 = .rodata:0x8049588C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495898; // type:label scope:local +@3035 = .rodata:0x80495898; // type:object size:0xD scope:local align:4 data:string +@3074 = .rodata:0x804958A8; // type:object size:0x9 scope:local align:4 data:string +@3075 = .rodata:0x804958B4; // type:object size:0x9 scope:local align:4 data:string +@3379 = .rodata:0x804958C0; // type:object size:0xA scope:local align:4 data:string +@3695 = .rodata:0x804958CC; // type:object size:0x30 scope:local align:4 data:4byte +@4221 = .rodata:0x804958FC; // type:object size:0x30 scope:local align:4 data:4byte +@4251 = .rodata:0x8049592C; // type:object size:0xC scope:local align:4 data:string +@4255 = .rodata:0x80495938; // type:object size:0x18 scope:local align:4 data:4byte +@4343 = .rodata:0x80495950; // type:object size:0xD scope:local align:4 data:string +@4347 = .rodata:0x80495960; // type:object size:0x24 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80495988; // type:label scope:local +@3039 = .rodata:0x80495988; // type:object size:0xE scope:local align:4 data:string +@3081 = .rodata:0x80495998; // type:object size:0x9 scope:local align:4 data:string +@3082 = .rodata:0x804959A4; // type:object size:0x9 scope:local align:4 data:string +@3334 = .rodata:0x804959B0; // type:object size:0xA scope:local align:4 data:string +@3352 = .rodata:0x804959BC; // type:object size:0xB scope:local align:4 data:string +@3391 = .rodata:0x804959C8; // type:object size:0x30 scope:local align:4 data:4byte +@3400 = .rodata:0x804959F8; // type:object size:0x30 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80495A28; // type:label scope:local +@3047 = .rodata:0x80495A28; // type:object size:0xE scope:local align:4 data:string +@3122 = .rodata:0x80495A38; // type:object size:0x9 scope:local align:4 data:string +@3177 = .rodata:0x80495A44; // type:object size:0xF scope:local align:4 data:string +@3243 = .rodata:0x80495A54; // type:object size:0xA scope:local align:4 data:string +@4172 = .rodata:0x80495A60; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495A70; // type:label scope:local +@2932 = .rodata:0x80495A70; // type:object size:0xC scope:local align:4 +@3622 = .rodata:0x80495A7C; // type:object size:0xE scope:local align:4 data:string +@3661 = .rodata:0x80495A8C; // type:object size:0xF scope:local align:4 data:string +@3672 = .rodata:0x80495A9C; // type:object size:0x1B scope:local align:4 data:string +@3673 = .rodata:0x80495AB8; // type:object size:0x12 scope:local align:4 data:string +@3674 = .rodata:0x80495ACC; // type:object size:0x9 scope:local align:4 data:string +@3693 = .rodata:0x80495AD8; // type:object size:0x1D scope:local align:4 data:string +@3694 = .rodata:0x80495AF8; // type:object size:0x1A scope:local align:4 data:string +@3695 = .rodata:0x80495B14; // type:object size:0x21 scope:local align:4 data:string +@3776 = .rodata:0x80495B38; // type:object size:0xA scope:local align:4 data:string +@2760 = .rodata:0x80495B48; // type:object size:0xE scope:local align:4 data:string +@2761 = .rodata:0x80495B58; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495B68; // type:label scope:local +@2762 = .rodata:0x80495B68; // type:object size:0xC scope:local align:4 data:string +@2850 = .rodata:0x80495B74; // type:object size:0x9 scope:local align:4 data:string +@2851 = .rodata:0x80495B80; // type:object size:0x10 scope:local align:4 data:string +@2852 = .rodata:0x80495B90; // type:object size:0x9 scope:local align:4 data:string +@2933 = .rodata:0x80495B9C; // type:object size:0x13 scope:local align:4 data:string +@2962 = .rodata:0x80495BB0; // type:object size:0x9 scope:local align:4 data:string +@3116 = .rodata:0x80495BBC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80495BC8; // type:label scope:local +@2848 = .rodata:0x80495BC8; // type:object size:0xC scope:local align:4 +@3467 = .rodata:0x80495BD4; // type:object size:0xC scope:local align:4 data:string +@3522 = .rodata:0x80495BE0; // type:object size:0xC scope:local align:4 data:string +@3584 = .rodata:0x80495BEC; // type:object size:0x10 scope:local align:4 data:string +@3585 = .rodata:0x80495BFC; // type:object size:0x9 scope:local align:4 data:string +@3604 = .rodata:0x80495C08; // type:object size:0x1D scope:local align:4 data:string +@3605 = .rodata:0x80495C28; // type:object size:0x21 scope:local align:4 data:string +@3656 = .rodata:0x80495C4C; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80495C58; // type:label scope:local +@3020 = .rodata:0x80495C58; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x80495C64; // type:object size:0xB scope:local align:4 data:string +@3460 = .rodata:0x80495C70; // type:object size:0xA scope:local align:4 data:string +@3464 = .rodata:0x80495C7C; // type:object size:0x17 scope:local align:4 data:string +@3465 = .rodata:0x80495C94; // type:object size:0xF scope:local align:4 +@3472 = .rodata:0x80495CA4; // type:object size:0x14 scope:local align:4 data:string +@3473 = .rodata:0x80495CB8; // type:object size:0xF scope:local align:4 +@3505 = .rodata:0x80495CC8; // type:object size:0x11 scope:local align:4 data:string +@3506 = .rodata:0x80495CDC; // type:object size:0xE scope:local align:4 +@3509 = .rodata:0x80495CEC; // type:object size:0xE scope:local align:4 +@3511 = .rodata:0x80495CFC; // type:object size:0xE scope:local align:4 +@3513 = .rodata:0x80495D0C; // type:object size:0xE scope:local align:4 +@3515 = .rodata:0x80495D1C; // type:object size:0x16 scope:local align:4 +@3518 = .rodata:0x80495D34; // type:object size:0x16 scope:local align:4 +@3521 = .rodata:0x80495D4C; // type:object size:0x15 scope:local align:4 +@3524 = .rodata:0x80495D64; // type:object size:0x2F scope:local align:4 +@3526 = .rodata:0x80495D94; // type:object size:0x13 scope:local align:4 +@3528 = .rodata:0x80495DA8; // type:object size:0x11 scope:local align:4 +@3530 = .rodata:0x80495DBC; // type:object size:0x12 scope:local align:4 +@3533 = .rodata:0x80495DD0; // type:object size:0x12 scope:local align:4 +@3534 = .rodata:0x80495DE4; // type:object size:0x12 scope:local align:4 +@3536 = .rodata:0x80495DF8; // type:object size:0xF scope:local align:4 +@3537 = .rodata:0x80495E08; // type:object size:0xF scope:local align:4 +@3538 = .rodata:0x80495E18; // type:object size:0x17 scope:local align:4 +@3540 = .rodata:0x80495E30; // type:object size:0x19 scope:local align:4 +@3565 = .rodata:0x80495E4C; // type:object size:0x9 scope:local align:4 data:string +@3566 = .rodata:0x80495E58; // type:object size:0xD scope:local align:4 +@3567 = .rodata:0x80495E68; // type:object size:0x11 scope:local align:4 +@3577 = .rodata:0x80495E7C; // type:object size:0xA scope:local align:4 data:string +@3578 = .rodata:0x80495E88; // type:object size:0x10 scope:local align:4 +@3579 = .rodata:0x80495E98; // type:object size:0x10 scope:local align:4 +@3580 = .rodata:0x80495EA8; // type:object size:0x10 scope:local align:4 +@3581 = .rodata:0x80495EB8; // type:object size:0x10 scope:local align:4 +@3594 = .rodata:0x80495EC8; // type:object size:0xB scope:local align:4 data:string +@3595 = .rodata:0x80495ED4; // type:object size:0xA scope:local align:4 +@3596 = .rodata:0x80495EE0; // type:object size:0xA scope:local align:4 +@3597 = .rodata:0x80495EEC; // type:object size:0xA scope:local align:4 +@3598 = .rodata:0x80495EF8; // type:object size:0xA scope:local align:4 +@3622 = .rodata:0x80495F04; // type:object size:0xB scope:local align:4 data:string +@3628 = .rodata:0x80495F10; // type:object size:0xE scope:local align:4 +@3629 = .rodata:0x80495F20; // type:object size:0x10 scope:local align:4 +@3630 = .rodata:0x80495F30; // type:object size:0xF scope:local align:4 +@3842 = .rodata:0x80495F40; // type:object size:0xE scope:local align:4 data:string +@3843 = .rodata:0x80495F50; // type:object size:0xF scope:local align:4 data:string +@3844 = .rodata:0x80495F60; // type:object size:0xE scope:local align:4 data:string +@4016 = .rodata:0x80495F70; // type:object size:0x1A scope:local align:4 data:string +@4017 = .rodata:0x80495F8C; // type:object size:0x23 scope:local align:4 data:string +@4018 = .rodata:0x80495FB0; // type:object size:0x1D scope:local align:4 data:string +@4019 = .rodata:0x80495FD0; // type:object size:0xF scope:local align:4 data:string +@4020 = .rodata:0x80495FE0; // type:object size:0x9 scope:local align:4 data:string +@4021 = .rodata:0x80495FEC; // type:object size:0x16 scope:local align:4 data:string +@4022 = .rodata:0x80496004; // type:object size:0x14 scope:local align:4 data:string +@4023 = .rodata:0x80496018; // type:object size:0x19 scope:local align:4 data:string +@4024 = .rodata:0x80496034; // type:object size:0x14 scope:local align:4 data:string +@4025 = .rodata:0x80496048; // type:object size:0x1D scope:local align:4 data:string +@4026 = .rodata:0x80496068; // type:object size:0x1B scope:local align:4 data:string +@4027 = .rodata:0x80496084; // type:object size:0x1D scope:local align:4 data:string +@4028 = .rodata:0x804960A4; // type:object size:0x1B scope:local align:4 data:string +@4029 = .rodata:0x804960C0; // type:object size:0x1D scope:local align:4 data:string +@4030 = .rodata:0x804960E0; // type:object size:0x1B scope:local align:4 data:string +@4031 = .rodata:0x804960FC; // type:object size:0x1D scope:local align:4 data:string +@4032 = .rodata:0x8049611C; // type:object size:0x1B scope:local align:4 data:string +@4034 = .rodata:0x80496138; // type:object size:0x21 scope:local align:4 data:string +@4035 = .rodata:0x8049615C; // type:object size:0x21 scope:local align:4 data:string +@4036 = .rodata:0x80496180; // type:object size:0x21 scope:local align:4 data:string +@4037 = .rodata:0x804961A4; // type:object size:0x21 scope:local align:4 data:string +@5545 = .rodata:0x804961C8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804961D8; // type:label scope:local +@2736 = .rodata:0x804961D8; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x804961E4; // type:object size:0xF scope:local align:4 data:string +@3485 = .rodata:0x804961F4; // type:object size:0xC scope:local align:4 data:string +@3486 = .rodata:0x80496200; // type:object size:0x13 scope:local align:4 data:string +@3487 = .rodata:0x80496214; // type:object size:0x9 scope:local align:4 data:string +@3488 = .rodata:0x80496220; // type:object size:0x11 scope:local align:4 data:string +@3489 = .rodata:0x80496234; // type:object size:0x11 scope:local align:4 data:string +@3621 = .rodata:0x80496248; // type:object size:0xA scope:local align:4 data:string +@3622 = .rodata:0x80496254; // type:object size:0xA scope:local align:4 data:string +@3896 = .rodata:0x80496260; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80496270; // type:label scope:local +@3655 = .rodata:0x80496270; // type:object size:0x14 scope:local align:4 data:string +@3680 = .rodata:0x80496284; // type:object size:0x20 scope:local align:4 data:string +@3681 = .rodata:0x804962A4; // type:object size:0x10 scope:local align:4 data:string +@3682 = .rodata:0x804962B4; // type:object size:0x18 scope:local align:4 data:string +@3683 = .rodata:0x804962CC; // type:object size:0x9 scope:local align:4 data:string +@3714 = .rodata:0x804962D8; // type:object size:0x1E scope:local align:4 data:string +@3715 = .rodata:0x804962F8; // type:object size:0x10 scope:local align:4 data:string +@3716 = .rodata:0x80496308; // type:object size:0x10 scope:local align:4 data:string +@3717 = .rodata:0x80496318; // type:object size:0x19 scope:local align:4 data:string +@3718 = .rodata:0x80496334; // type:object size:0x19 scope:local align:4 data:string +@3719 = .rodata:0x80496350; // type:object size:0x14 scope:local align:4 data:string +@3720 = .rodata:0x80496364; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496378; // type:label scope:local +@2910 = .rodata:0x80496378; // type:object size:0x14 scope:local align:4 data:string +@3809 = .rodata:0x8049638C; // type:object size:0xE scope:local align:4 data:string +@4146 = .rodata:0x8049639C; // type:object size:0x9 scope:local align:4 data:string +@4147 = .rodata:0x804963A8; // type:object size:0x19 scope:local align:4 data:string +...rodata.0 = .rodata:0x804963C8; // type:label scope:local +@2894 = .rodata:0x804963C8; // type:object size:0x14 scope:local align:4 data:string +@2992 = .rodata:0x804963DC; // type:object size:0xD scope:local align:4 data:string +@2993 = .rodata:0x804963EC; // type:object size:0x9 scope:local align:4 data:string +@3056 = .rodata:0x804963F8; // type:object size:0x9 scope:local align:4 data:string +@2674 = .rodata:0x80496408; // type:object size:0xF scope:local align:4 data:string +@2675 = .rodata:0x80496418; // type:object size:0x9 scope:local align:4 data:string +@2881 = .rodata:0x80496428; // type:object size:0xF scope:local align:4 data:string +@2882 = .rodata:0x80496438; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496448; // type:label scope:local +@3682 = .rodata:0x80496448; // type:object size:0x10 scope:local align:4 data:string +@3818 = .rodata:0x80496458; // type:object size:0x1C scope:local align:4 data:string +@3819 = .rodata:0x80496474; // type:object size:0x28 scope:local align:4 data:string +@3820 = .rodata:0x8049649C; // type:object size:0xB scope:local align:4 data:string +@3821 = .rodata:0x804964A8; // type:object size:0x20 scope:local align:4 data:string +@3822 = .rodata:0x804964C8; // type:object size:0xB scope:local align:4 data:string +@4266 = .rodata:0x804964D4; // type:object size:0x16 scope:local align:4 data:string +@4267 = .rodata:0x804964EC; // type:object size:0xE scope:local align:4 data:string +@4268 = .rodata:0x804964FC; // type:object size:0x14 scope:local align:4 data:string +@4269 = .rodata:0x80496510; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496520; // type:label scope:local +@3651 = .rodata:0x80496520; // type:object size:0x10 scope:local align:4 data:string +@3659 = .rodata:0x80496530; // type:object size:0x1C scope:local align:4 data:string +@3660 = .rodata:0x8049654C; // type:object size:0xB scope:local align:4 data:string +@3661 = .rodata:0x80496558; // type:object size:0x14 scope:local align:4 data:string +@3662 = .rodata:0x8049656C; // type:object size:0x9 scope:local align:4 data:string +@3680 = .rodata:0x80496578; // type:object size:0x1A scope:local align:4 data:string +@3681 = .rodata:0x80496594; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x804965A0; // type:label scope:local +@3806 = .rodata:0x804965A0; // type:object size:0xD scope:local align:4 data:string +@3908 = .rodata:0x804965B0; // type:object size:0xB scope:local align:4 data:string +@3909 = .rodata:0x804965BC; // type:object size:0xB scope:local align:4 data:string +@3910 = .rodata:0x804965C8; // type:object size:0xB scope:local align:4 data:string +@3911 = .rodata:0x804965D4; // type:object size:0xC scope:local align:4 data:string +@3913 = .rodata:0x804965E0; // type:object size:0x13 scope:local align:4 data:string +@3914 = .rodata:0x804965F4; // type:object size:0x13 scope:local align:4 data:string +@4085 = .rodata:0x80496608; // type:object size:0x11 scope:local align:4 data:string +@4086 = .rodata:0x8049661C; // type:object size:0x31 scope:local align:4 data:string +@4380 = .rodata:0x80496650; // type:object size:0x1B scope:local align:4 data:string +@4450 = .rodata:0x8049666C; // type:object size:0x9 scope:local align:4 data:string +@3781 = .rodata:0x80496678; // type:object size:0x12 scope:local align:4 data:string +@3782 = .rodata:0x8049668C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496698; // type:label scope:local +@3682 = .rodata:0x80496698; // type:object size:0xB scope:local align:4 data:string +@4058 = .rodata:0x804966A4; // type:object size:0xC scope:local align:4 data:string +@4059 = .rodata:0x804966B0; // type:object size:0xB scope:local align:4 data:string +@4060 = .rodata:0x804966BC; // type:object size:0xC scope:local align:4 data:string +@4061 = .rodata:0x804966C8; // type:object size:0x10 scope:local align:4 data:string +@4062 = .rodata:0x804966D8; // type:object size:0x10 scope:local align:4 data:string +@4063 = .rodata:0x804966E8; // type:object size:0x11 scope:local align:4 data:string +@4064 = .rodata:0x804966FC; // type:object size:0x12 scope:local align:4 data:string +@4065 = .rodata:0x80496710; // type:object size:0x12 scope:local align:4 data:string +@4066 = .rodata:0x80496724; // type:object size:0x12 scope:local align:4 data:string +@4067 = .rodata:0x80496738; // type:object size:0x11 scope:local align:4 data:string +@4068 = .rodata:0x8049674C; // type:object size:0x18 scope:local align:4 data:string +@4069 = .rodata:0x80496764; // type:object size:0x12 scope:local align:4 data:string +@4070 = .rodata:0x80496778; // type:object size:0x18 scope:local align:4 data:string +@4071 = .rodata:0x80496790; // type:object size:0x19 scope:local align:4 data:string +@4072 = .rodata:0x804967AC; // type:object size:0x1F scope:local align:4 data:string +@4073 = .rodata:0x804967CC; // type:object size:0x20 scope:local align:4 data:string +@4074 = .rodata:0x804967EC; // type:object size:0x16 scope:local align:4 data:string +@4075 = .rodata:0x80496804; // type:object size:0x17 scope:local align:4 data:string +@4076 = .rodata:0x8049681C; // type:object size:0x1D scope:local align:4 data:string +@4077 = .rodata:0x8049683C; // type:object size:0x1A scope:local align:4 data:string +@4078 = .rodata:0x80496858; // type:object size:0x10 scope:local align:4 data:string +@4079 = .rodata:0x80496868; // type:object size:0x17 scope:local align:4 data:string +@4080 = .rodata:0x80496880; // type:object size:0x1E scope:local align:4 data:string +@4081 = .rodata:0x804968A0; // type:object size:0x11 scope:local align:4 data:string +@4082 = .rodata:0x804968B4; // type:object size:0xE scope:local align:4 data:string +@4083 = .rodata:0x804968C4; // type:object size:0x15 scope:local align:4 data:string +@4227 = .rodata:0x804968DC; // type:object size:0xF scope:local align:4 data:string +@4228 = .rodata:0x804968EC; // type:object size:0x9 scope:local align:4 data:string +@2723 = .rodata:0x804968F8; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80496908; // type:label scope:local +@3650 = .rodata:0x80496908; // type:object size:0x13 scope:local align:4 data:string +@3691 = .rodata:0x8049691C; // type:object size:0x28 scope:local align:4 data:string +@3692 = .rodata:0x80496944; // type:object size:0x11 scope:local align:4 data:string +@3693 = .rodata:0x80496958; // type:object size:0x28 scope:local align:4 data:string +@3694 = .rodata:0x80496980; // type:object size:0x11 scope:local align:4 data:string +@3695 = .rodata:0x80496994; // type:object size:0x28 scope:local align:4 data:string +@3696 = .rodata:0x804969BC; // type:object size:0x11 scope:local align:4 data:string +@3697 = .rodata:0x804969D0; // type:object size:0x28 scope:local align:4 data:string +@3698 = .rodata:0x804969F8; // type:object size:0x11 scope:local align:4 data:string +@3699 = .rodata:0x80496A0C; // type:object size:0x2D scope:local align:4 data:string +@3700 = .rodata:0x80496A3C; // type:object size:0x11 scope:local align:4 data:string +@3701 = .rodata:0x80496A50; // type:object size:0x11 scope:local align:4 data:string +@3702 = .rodata:0x80496A64; // type:object size:0x11 scope:local align:4 data:string +@3703 = .rodata:0x80496A78; // type:object size:0x11 scope:local align:4 data:string +@3704 = .rodata:0x80496A8C; // type:object size:0x11 scope:local align:4 data:string +@3705 = .rodata:0x80496AA0; // type:object size:0x11 scope:local align:4 data:string +@3706 = .rodata:0x80496AB4; // type:object size:0x11 scope:local align:4 data:string +@3707 = .rodata:0x80496AC8; // type:object size:0x11 scope:local align:4 data:string +@3806 = .rodata:0x80496ADC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80496AE8; // type:label scope:local +@3720 = .rodata:0x80496AE8; // type:object size:0x14 scope:local align:4 data:string +@3730 = .rodata:0x80496AFC; // type:object size:0x28 scope:local align:4 data:string +@3731 = .rodata:0x80496B24; // type:object size:0x17 scope:local align:4 data:string +@3732 = .rodata:0x80496B3C; // type:object size:0x34 scope:local align:4 data:string +@3760 = .rodata:0x80496B70; // type:object size:0x18 scope:local align:4 data:string +@3761 = .rodata:0x80496B88; // type:object size:0x9 scope:local align:4 data:string +@3771 = .rodata:0x80496B94; // type:object size:0x18 scope:local align:4 data:string +@4367 = .rodata:0x80496BAC; // type:object size:0x20 scope:local align:4 data:string +@4368 = .rodata:0x80496BCC; // type:object size:0x10 scope:local align:4 data:string +@4488 = .rodata:0x80496BDC; // type:object size:0x1E scope:local align:4 data:string +@4489 = .rodata:0x80496BFC; // type:object size:0x28 scope:local align:4 data:string +@4490 = .rodata:0x80496C24; // type:object size:0x10 scope:local align:4 data:string +@4491 = .rodata:0x80496C34; // type:object size:0x10 scope:local align:4 data:string +@4492 = .rodata:0x80496C44; // type:object size:0x10 scope:local align:4 data:string +@4493 = .rodata:0x80496C54; // type:object size:0x13 scope:local align:4 data:string +@4494 = .rodata:0x80496C68; // type:object size:0x13 scope:local align:4 data:string +@4495 = .rodata:0x80496C7C; // type:object size:0x10 scope:local align:4 data:string +@4496 = .rodata:0x80496C8C; // type:object size:0x13 scope:local align:4 data:string +@4497 = .rodata:0x80496CA0; // type:object size:0x10 scope:local align:4 data:string +@4498 = .rodata:0x80496CB0; // type:object size:0x2A scope:local align:4 data:string +@5643 = .rodata:0x80496CDC; // type:object size:0x13 scope:local align:4 data:string +@5644 = .rodata:0x80496CF0; // type:object size:0xD scope:local align:4 data:string +@5645 = .rodata:0x80496D00; // type:object size:0xF scope:local align:4 data:string +@5719 = .rodata:0x80496D10; // type:object size:0x9 scope:local align:4 data:string +@5721 = .rodata:0x80496D1C; // type:object size:0xC scope:local align:4 data:string +@5735 = .rodata:0x80496D28; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80496D38; // type:label scope:local +@3660 = .rodata:0x80496D38; // type:object size:0x13 scope:local align:4 data:string +@3715 = .rodata:0x80496D4C; // type:object size:0x17 scope:local align:4 data:string +@3716 = .rodata:0x80496D64; // type:object size:0x11 scope:local align:4 data:string +@3717 = .rodata:0x80496D78; // type:object size:0x17 scope:local align:4 data:string +@3718 = .rodata:0x80496D90; // type:object size:0x9 scope:local align:4 data:string +@3719 = .rodata:0x80496D9C; // type:object size:0x11 scope:local align:4 data:string +@3720 = .rodata:0x80496DB0; // type:object size:0x11 scope:local align:4 data:string +@4019 = .rodata:0x80496DC4; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80496DD0; // type:label scope:local +@3700 = .rodata:0x80496DD0; // type:object size:0xB scope:local align:4 data:string +@3818 = .rodata:0x80496DDC; // type:object size:0xA scope:local align:4 data:string +@3819 = .rodata:0x80496DE8; // type:object size:0xE scope:local align:4 data:string +@3820 = .rodata:0x80496DF8; // type:object size:0xB scope:local align:4 data:string +@3821 = .rodata:0x80496E04; // type:object size:0x10 scope:local align:4 data:string +@3822 = .rodata:0x80496E14; // type:object size:0x10 scope:local align:4 data:string +@3824 = .rodata:0x80496E24; // type:object size:0xA scope:local align:4 data:string +@3825 = .rodata:0x80496E30; // type:object size:0xA scope:local align:4 data:string +@3936 = .rodata:0x80496E3C; // type:object size:0xF scope:local align:4 data:string +@3937 = .rodata:0x80496E4C; // type:object size:0x9 scope:local align:4 data:string +@4237 = .rodata:0x80496E58; // type:object size:0x17 scope:local align:4 +...rodata.0 = .rodata:0x80496E70; // type:label scope:local +@3672 = .rodata:0x80496E70; // type:object size:0x12 scope:local align:4 data:string +@3693 = .rodata:0x80496E84; // type:object size:0x10 scope:local align:4 data:string +@3902 = .rodata:0x80496E94; // type:object size:0x1E scope:local align:4 data:string +@3903 = .rodata:0x80496EB4; // type:object size:0x10 scope:local align:4 data:string +@3904 = .rodata:0x80496EC4; // type:object size:0x16 scope:local align:4 data:string +@3905 = .rodata:0x80496EDC; // type:object size:0x9 scope:local align:4 data:string +@4006 = .rodata:0x80496EE8; // type:object size:0x24 scope:local align:4 +@4100 = .rodata:0x80496F0C; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80496F18; // type:label scope:local +@3697 = .rodata:0x80496F18; // type:object size:0x18 scope:local align:4 data:string +@3909 = .rodata:0x80496F30; // type:object size:0xA scope:local align:4 data:string +@3910 = .rodata:0x80496F3C; // type:object size:0xA scope:local align:4 data:string +@3911 = .rodata:0x80496F48; // type:object size:0xB scope:local align:4 data:string +@3912 = .rodata:0x80496F54; // type:object size:0xB scope:local align:4 data:string +@3913 = .rodata:0x80496F60; // type:object size:0xB scope:local align:4 data:string +@3914 = .rodata:0x80496F6C; // type:object size:0xA scope:local align:4 data:string +@3915 = .rodata:0x80496F78; // type:object size:0xC scope:local align:4 data:string +@3916 = .rodata:0x80496F84; // type:object size:0x15 scope:local align:4 data:string +@3917 = .rodata:0x80496F9C; // type:object size:0xD scope:local align:4 data:string +@3918 = .rodata:0x80496FAC; // type:object size:0xD scope:local align:4 data:string +@3919 = .rodata:0x80496FBC; // type:object size:0xF scope:local align:4 data:string +@3920 = .rodata:0x80496FCC; // type:object size:0xB scope:local align:4 data:string +@3922 = .rodata:0x80496FD8; // type:object size:0xB scope:local align:4 data:string +@4185 = .rodata:0x80496FE4; // type:object size:0x1C scope:local align:4 data:string +@4186 = .rodata:0x80497000; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497010; // type:label scope:local +@3698 = .rodata:0x80497010; // type:object size:0x11 scope:local align:4 data:string +@3780 = .rodata:0x80497024; // type:object size:0xC scope:local align:4 data:string +@3781 = .rodata:0x80497030; // type:object size:0xB scope:local align:4 data:string +@3782 = .rodata:0x8049703C; // type:object size:0x10 scope:local align:4 data:string +@3783 = .rodata:0x8049704C; // type:object size:0xA scope:local align:4 data:string +@3784 = .rodata:0x80497058; // type:object size:0x11 scope:local align:4 data:string +@3866 = .rodata:0x8049706C; // type:object size:0x15 scope:local align:4 data:string +@3867 = .rodata:0x80497084; // type:object size:0x9 scope:local align:4 data:string +@3868 = .rodata:0x80497090; // type:object size:0x2B scope:local align:4 +@3923 = .rodata:0x804970BC; // type:object size:0x26 scope:local align:4 +@3987 = .rodata:0x804970E4; // type:object size:0x34 scope:local align:4 +@3907 = .rodata:0x80497118; // type:object size:0x14 scope:local align:4 data:string +@3908 = .rodata:0x8049712C; // type:object size:0x9 scope:local align:4 data:string +@2681 = .rodata:0x80497138; // type:object size:0xA scope:local align:4 data:string +@2682 = .rodata:0x80497144; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497158; // type:label scope:local +@2736 = .rodata:0x80497158; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x80497164; // type:object size:0x11 scope:local align:4 data:string +@3348 = .rodata:0x80497178; // type:object size:0xE scope:local align:4 data:string +@3362 = .rodata:0x80497188; // type:object size:0x16 scope:local align:4 data:string +@3363 = .rodata:0x804971A0; // type:object size:0x19 scope:local align:4 +@3366 = .rodata:0x804971BC; // type:object size:0x15 scope:local align:4 +@3368 = .rodata:0x804971D4; // type:object size:0xD scope:local align:4 +@3370 = .rodata:0x804971E4; // type:object size:0x11 scope:local align:4 +@3373 = .rodata:0x804971F8; // type:object size:0x13 scope:local align:4 +@3376 = .rodata:0x8049720C; // type:object size:0x11 scope:local align:4 +@3378 = .rodata:0x80497220; // type:object size:0x19 scope:local align:4 +@3381 = .rodata:0x8049723C; // type:object size:0x1D scope:local align:4 +@3455 = .rodata:0x8049725C; // type:object size:0x1A scope:local align:4 data:string +@3456 = .rodata:0x80497278; // type:object size:0x15 scope:local align:4 data:string +@3457 = .rodata:0x80497290; // type:object size:0x9 scope:local align:4 data:string +@3458 = .rodata:0x8049729C; // type:object size:0x1D scope:local align:4 data:string +@3459 = .rodata:0x804972BC; // type:object size:0x1B scope:local align:4 data:string +@3460 = .rodata:0x804972D8; // type:object size:0x1C scope:local align:4 data:string +@3461 = .rodata:0x804972F4; // type:object size:0x1C scope:local align:4 data:string +@3462 = .rodata:0x80497310; // type:object size:0x10 scope:local align:4 data:string +@3463 = .rodata:0x80497320; // type:object size:0x10 scope:local align:4 data:string +@3587 = .rodata:0x80497330; // type:object size:0xA scope:local align:4 data:string +@3639 = .rodata:0x8049733C; // type:object size:0xF scope:local align:4 +@3641 = .rodata:0x8049734C; // type:object size:0x11 scope:local align:4 +@3643 = .rodata:0x80497360; // type:object size:0xF scope:local align:4 +@3645 = .rodata:0x80497370; // type:object size:0x9 scope:local align:4 +@3647 = .rodata:0x8049737C; // type:object size:0x9 scope:local align:4 +@3649 = .rodata:0x80497388; // type:object size:0xA scope:local align:4 +@3650 = .rodata:0x80497394; // type:object size:0xA scope:local align:4 +@3651 = .rodata:0x804973A0; // type:object size:0x1F scope:local align:4 +@3653 = .rodata:0x804973C0; // type:object size:0x11 scope:local align:4 +@3654 = .rodata:0x804973D4; // type:object size:0x17 scope:local align:4 +@3655 = .rodata:0x804973EC; // type:object size:0x17 scope:local align:4 +@3656 = .rodata:0x80497404; // type:object size:0x13 scope:local align:4 +@3658 = .rodata:0x80497418; // type:object size:0x19 scope:local align:4 +@3660 = .rodata:0x80497434; // type:object size:0x15 scope:local align:4 +@3662 = .rodata:0x8049744C; // type:object size:0xF scope:local align:4 +@3664 = .rodata:0x8049745C; // type:object size:0x11 scope:local align:4 +@3678 = .rodata:0x80497470; // type:object size:0x17 scope:local align:4 data:string +@3679 = .rodata:0x80497488; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x804974A0; // type:label scope:local +@2736 = .rodata:0x804974A0; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x804974AC; // type:object size:0x11 scope:local align:4 data:string +@3374 = .rodata:0x804974C0; // type:object size:0xA scope:local align:4 data:string +@3397 = .rodata:0x804974CC; // type:object size:0x9 scope:local align:4 +@3400 = .rodata:0x804974D8; // type:object size:0xD scope:local align:4 +@3403 = .rodata:0x804974E8; // type:object size:0xF scope:local align:4 +@3404 = .rodata:0x804974F8; // type:object size:0x11 scope:local align:4 +@3406 = .rodata:0x8049750C; // type:object size:0x11 scope:local align:4 +@3409 = .rodata:0x80497520; // type:object size:0x9 scope:local align:4 +@3411 = .rodata:0x8049752C; // type:object size:0x9 scope:local align:4 +@3413 = .rodata:0x80497538; // type:object size:0x11 scope:local align:4 +@3414 = .rodata:0x8049754C; // type:object size:0x11 scope:local align:4 +@3416 = .rodata:0x80497560; // type:object size:0x11 scope:local align:4 +@3418 = .rodata:0x80497574; // type:object size:0x11 scope:local align:4 +@3419 = .rodata:0x80497588; // type:object size:0x19 scope:local align:4 +@3425 = .rodata:0x804975A4; // type:object size:0x17 scope:local align:4 data:string +@3436 = .rodata:0x804975BC; // type:object size:0x17 scope:local align:4 data:string +@3437 = .rodata:0x804975D4; // type:object size:0x17 scope:local align:4 data:string +@3468 = .rodata:0x804975EC; // type:object size:0x18 scope:local align:4 data:string +@3469 = .rodata:0x80497604; // type:object size:0x15 scope:local align:4 data:string +@3470 = .rodata:0x8049761C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497628; // type:label scope:local +@2736 = .rodata:0x80497628; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x80497634; // type:object size:0x11 scope:local align:4 data:string +@3374 = .rodata:0x80497648; // type:object size:0xA scope:local align:4 data:string +@3399 = .rodata:0x80497654; // type:object size:0x9 scope:local align:4 +@3402 = .rodata:0x80497660; // type:object size:0xD scope:local align:4 +@3405 = .rodata:0x80497670; // type:object size:0xF scope:local align:4 +@3407 = .rodata:0x80497680; // type:object size:0x11 scope:local align:4 +@3409 = .rodata:0x80497694; // type:object size:0xD scope:local align:4 +@3411 = .rodata:0x804976A4; // type:object size:0xB scope:local align:4 +@3412 = .rodata:0x804976B0; // type:object size:0x11 scope:local align:4 +@3415 = .rodata:0x804976C4; // type:object size:0x9 scope:local align:4 +@3417 = .rodata:0x804976D0; // type:object size:0x9 scope:local align:4 +@3419 = .rodata:0x804976DC; // type:object size:0x11 scope:local align:4 +@3421 = .rodata:0x804976F0; // type:object size:0x11 scope:local align:4 +@3422 = .rodata:0x80497704; // type:object size:0x11 scope:local align:4 +@3424 = .rodata:0x80497718; // type:object size:0x11 scope:local align:4 +@3426 = .rodata:0x8049772C; // type:object size:0x19 scope:local align:4 +@3433 = .rodata:0x80497748; // type:object size:0x17 scope:local align:4 data:string +@3444 = .rodata:0x80497760; // type:object size:0x11 scope:local align:4 data:string +@3446 = .rodata:0x80497774; // type:object size:0x14 scope:local align:4 data:string +@3448 = .rodata:0x80497788; // type:object size:0x12 scope:local align:4 data:string +@3449 = .rodata:0x8049779C; // type:object size:0x14 scope:local align:4 data:string +@3467 = .rodata:0x804977B0; // type:object size:0x19 scope:local align:4 data:string +@3468 = .rodata:0x804977CC; // type:object size:0x15 scope:local align:4 data:string +@3469 = .rodata:0x804977E4; // type:object size:0x9 scope:local align:4 data:string +@3655 = .rodata:0x804977F0; // type:object size:0x1A scope:local align:4 data:string +@3656 = .rodata:0x8049780C; // type:object size:0xC scope:local align:4 data:string +@3670 = .rodata:0x80497818; // type:object size:0x14 scope:local align:4 data:string +@3671 = .rodata:0x8049782C; // type:object size:0x9 scope:local align:4 data:string +@3751 = .rodata:0x80497838; // type:object size:0x20 scope:local align:4 data:string +@3752 = .rodata:0x80497858; // type:object size:0x14 scope:local align:4 data:string +@3772 = .rodata:0x8049786C; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x80497880; // type:label scope:local +@3020 = .rodata:0x80497880; // type:object size:0xC scope:local align:4 +@3858 = .rodata:0x8049788C; // type:object size:0x10 scope:local align:4 data:string +@4026 = .rodata:0x8049789C; // type:object size:0x1C scope:local align:4 data:string +@4027 = .rodata:0x804978B8; // type:object size:0x19 scope:local align:4 data:string +@4028 = .rodata:0x804978D4; // type:object size:0xA scope:local align:4 data:string +@4029 = .rodata:0x804978E0; // type:object size:0x14 scope:local align:4 data:string +@4030 = .rodata:0x804978F4; // type:object size:0x9 scope:local align:4 data:string +@4271 = .rodata:0x80497900; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497910; // type:label scope:local +@2959 = .rodata:0x80497910; // type:object size:0x11 scope:local align:4 data:string +@3028 = .rodata:0x80497924; // type:object size:0x9 scope:local align:4 data:string +@3122 = .rodata:0x80497930; // type:object size:0xC scope:local align:4 data:string +@3206 = .rodata:0x8049793C; // type:object size:0xA scope:local align:4 data:string +@3328 = .rodata:0x80497948; // type:object size:0x9 scope:local align:4 data:string +@3368 = .rodata:0x80497954; // type:object size:0xD scope:local align:4 data:string +@3708 = .rodata:0x80497964; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80497978; // type:label scope:local +@2645 = .rodata:0x80497978; // type:object size:0xF scope:local align:4 data:string +@2652 = .rodata:0x80497988; // type:object size:0x13 scope:local align:4 data:string +@2653 = .rodata:0x8049799C; // type:object size:0x9 scope:local align:4 data:string +@2792 = .rodata:0x804979A8; // type:object size:0x23 scope:local align:4 data:string +@2793 = .rodata:0x804979CC; // type:object size:0x23 scope:local align:4 data:string +@2794 = .rodata:0x804979F0; // type:object size:0x23 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497A18; // type:label scope:local +@3653 = .rodata:0x80497A18; // type:object size:0xF scope:local align:4 data:string +@3921 = .rodata:0x80497A28; // type:object size:0x1B scope:local align:4 data:string +@3922 = .rodata:0x80497A44; // type:object size:0xA scope:local align:4 data:string +@3923 = .rodata:0x80497A50; // type:object size:0x24 scope:local align:4 data:string +@3924 = .rodata:0x80497A74; // type:object size:0xA scope:local align:4 data:string +@4174 = .rodata:0x80497A80; // type:object size:0x13 scope:local align:4 data:string +@4175 = .rodata:0x80497A94; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497AA0; // type:label scope:local +@3789 = .rodata:0x80497AA0; // type:object size:0x10 scope:local align:4 data:string +@3853 = .rodata:0x80497AB0; // type:object size:0x15 scope:local align:4 data:string +@3854 = .rodata:0x80497AC8; // type:object size:0x15 scope:local align:4 data:string +@3855 = .rodata:0x80497AE0; // type:object size:0x14 scope:local align:4 data:string +@3856 = .rodata:0x80497AF4; // type:object size:0xA scope:local align:4 +@4218 = .rodata:0x80497B00; // type:object size:0x18 scope:local align:4 data:string +@4219 = .rodata:0x80497B18; // type:object size:0xA scope:local align:4 data:string +@4220 = .rodata:0x80497B24; // type:object size:0x9 scope:local align:4 data:string +@4414 = .rodata:0x80497B30; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80497B40; // type:label scope:local +@3738 = .rodata:0x80497B40; // type:object size:0x14 scope:local align:4 data:string +@3870 = .rodata:0x80497B54; // type:object size:0x20 scope:local align:4 data:string +@3871 = .rodata:0x80497B74; // type:object size:0x11 scope:local align:4 data:string +@3872 = .rodata:0x80497B88; // type:object size:0x29 scope:local align:4 data:string +@3875 = .rodata:0x80497BB4; // type:object size:0x11 scope:local align:4 data:string +@3876 = .rodata:0x80497BC8; // type:object size:0x11 scope:local align:4 data:string +@4008 = .rodata:0x80497BDC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80497BE8; // type:label scope:local +@3647 = .rodata:0x80497BE8; // type:object size:0x13 scope:local align:4 data:string +@3834 = .rodata:0x80497BFC; // type:object size:0x1F scope:local align:4 data:string +@3835 = .rodata:0x80497C1C; // type:object size:0xF scope:local align:4 data:string +@3836 = .rodata:0x80497C2C; // type:object size:0x28 scope:local align:4 data:string +@3837 = .rodata:0x80497C54; // type:object size:0xF scope:local align:4 data:string +@4138 = .rodata:0x80497C64; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80497C70; // type:label scope:local +@3789 = .rodata:0x80497C70; // type:object size:0xF scope:local align:4 data:string +cOpenMinFrm__Q22kh6Screen = .rodata:0x80497C80; // type:object size:0x10 scope:local align:4 data:float +cOpenMaxFrm__Q22kh6Screen = .rodata:0x80497C90; // type:object size:0x10 scope:local align:4 data:float +@3805 = .rodata:0x80497CA0; // type:object size:0x9 scope:local align:4 data:string +@4024 = .rodata:0x80497CAC; // type:object size:0x80 scope:local align:4 +@4035 = .rodata:0x80497D2C; // type:object size:0x12 scope:local align:4 data:string +@4036 = .rodata:0x80497D40; // type:object size:0x12 scope:local align:4 data:string +@4037 = .rodata:0x80497D54; // type:object size:0x12 scope:local align:4 data:string +@4038 = .rodata:0x80497D68; // type:object size:0x13 scope:local align:4 data:string +@4039 = .rodata:0x80497D7C; // type:object size:0x13 scope:local align:4 data:string +@4040 = .rodata:0x80497D90; // type:object size:0x13 scope:local align:4 data:string +@4041 = .rodata:0x80497DA4; // type:object size:0x18 scope:local align:4 +@4065 = .rodata:0x80497DBC; // type:object size:0x13 scope:local align:4 data:string +@4066 = .rodata:0x80497DD0; // type:object size:0x13 scope:local align:4 data:string +@4067 = .rodata:0x80497DE4; // type:object size:0x16 scope:local align:4 data:string +@4068 = .rodata:0x80497DFC; // type:object size:0x16 scope:local align:4 data:string +@4069 = .rodata:0x80497E14; // type:object size:0x10 scope:local align:4 +@4090 = .rodata:0x80497E28; // type:object size:0xC8 scope:local align:8 +@4091 = .rodata:0x80497EF0; // type:object size:0x28 scope:local align:4 +@4101 = .rodata:0x80497F18; // type:object size:0x10 scope:local align:4 +@4434 = .rodata:0x80497F28; // type:object size:0xD scope:local align:4 data:string +@4436 = .rodata:0x80497F38; // type:object size:0x17 scope:local align:4 data:string +@4437 = .rodata:0x80497F50; // type:object size:0x17 scope:local align:4 data:string +@4438 = .rodata:0x80497F68; // type:object size:0x17 scope:local align:4 data:string +@4439 = .rodata:0x80497F80; // type:object size:0x17 scope:local align:4 data:string +@4440 = .rodata:0x80497F98; // type:object size:0x1A scope:local align:4 data:string +@4444 = .rodata:0x80497FB4; // type:object size:0x28 scope:local align:4 data:string +@4487 = .rodata:0x80497FE0; // type:object size:0x20 scope:local align:8 +@4488 = .rodata:0x80498000; // type:object size:0x20 scope:local align:8 +@4653 = .rodata:0x80498020; // type:object size:0x10 scope:local align:8 +@5390 = .rodata:0x80498030; // type:object size:0xC scope:local align:4 data:4byte +@5391 = .rodata:0x8049803C; // type:object size:0xC scope:local align:4 data:4byte +@5699 = .rodata:0x80498048; // type:object size:0x20 scope:local align:8 +@5700 = .rodata:0x80498068; // type:object size:0x20 scope:local align:8 +@5701 = .rodata:0x80498088; // type:object size:0x20 scope:local align:8 +@5702 = .rodata:0x804980A8; // type:object size:0x20 scope:local align:8 +@5703 = .rodata:0x804980C8; // type:object size:0x20 scope:local align:8 +@5704 = .rodata:0x804980E8; // type:object size:0x10 scope:local align:4 +@5705 = .rodata:0x804980F8; // type:object size:0x20 scope:local align:8 +@5706 = .rodata:0x80498118; // type:object size:0x80 scope:local align:8 +@5707 = .rodata:0x80498198; // type:object size:0x20 scope:local align:8 +@5717 = .rodata:0x804981B8; // type:object size:0x20 scope:local align:8 +@5887 = .rodata:0x804981D8; // type:object size:0x20 scope:local align:8 +@5888 = .rodata:0x804981F8; // type:object size:0x20 scope:local align:8 +@5889 = .rodata:0x80498218; // type:object size:0x20 scope:local align:8 +@5890 = .rodata:0x80498238; // type:object size:0x20 scope:local align:8 +@5891 = .rodata:0x80498258; // type:object size:0x20 scope:local align:8 +@5892 = .rodata:0x80498278; // type:object size:0x10 scope:local align:4 +@5893 = .rodata:0x80498288; // type:object size:0x20 scope:local align:8 +@5894 = .rodata:0x804982A8; // type:object size:0x80 scope:local align:8 +@6027 = .rodata:0x80498328; // type:object size:0x20 scope:local align:8 data:double +@6202 = .rodata:0x80498348; // type:object size:0xC scope:local align:4 data:string +@6204 = .rodata:0x80498354; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80498360; // type:label scope:local +@3841 = .rodata:0x80498360; // type:object size:0x11 scope:local align:4 data:string +@4068 = .rodata:0x80498374; // type:object size:0x10 scope:local align:4 data:string +@4069 = .rodata:0x80498384; // type:object size:0x13 scope:local align:4 data:string +@4070 = .rodata:0x80498398; // type:object size:0x1D scope:local align:4 data:string +@4071 = .rodata:0x804983B8; // type:object size:0x13 scope:local align:4 data:string +@4072 = .rodata:0x804983CC; // type:object size:0x13 scope:local align:4 data:string +@4073 = .rodata:0x804983E0; // type:object size:0x13 scope:local align:4 data:string +@4074 = .rodata:0x804983F4; // type:object size:0x13 scope:local align:4 data:string +@4075 = .rodata:0x80498408; // type:object size:0x15 scope:local align:4 data:string +@4076 = .rodata:0x80498420; // type:object size:0x15 scope:local align:4 data:string +@4077 = .rodata:0x80498438; // type:object size:0x15 scope:local align:4 data:string +@4154 = .rodata:0x80498450; // type:object size:0x10 scope:local align:8 data:double +@4155 = .rodata:0x80498460; // type:object size:0x10 scope:local align:8 data:double +@4699 = .rodata:0x80498470; // type:object size:0x10 scope:local align:8 data:double +@4771 = .rodata:0x80498480; // type:object size:0x14 scope:local align:4 data:4byte +@4907 = .rodata:0x80498494; // type:object size:0x13 scope:local align:4 data:string +@4957 = .rodata:0x804984A8; // type:object size:0xC scope:local align:4 data:string +@4958 = .rodata:0x804984B4; // type:object size:0x9 scope:local align:4 data:string +@2757 = .rodata:0x804984C0; // type:object size:0x15 scope:local align:4 data:string +@2783 = .rodata:0x804984D8; // type:object size:0xD scope:local align:4 data:string +@2792 = .rodata:0x804984E8; // type:object size:0x15 scope:local align:4 data:string +@2801 = .rodata:0x80498500; // type:object size:0x10 scope:local align:4 data:string +@3881 = .rodata:0x80498510; // type:object size:0x11 scope:local align:4 data:string +@3892 = .rodata:0x80498524; // type:object size:0x9 scope:local align:4 data:string +@4192 = .rodata:0x80498530; // type:object size:0x10 scope:local align:4 data:string +@4223 = .rodata:0x80498540; // type:object size:0x1C scope:local align:4 data:string +@4290 = .rodata:0x8049855C; // type:object size:0x16 scope:local align:4 data:string +@4301 = .rodata:0x80498574; // type:object size:0xF scope:local align:4 data:string +@4562 = .rodata:0x80498584; // type:object size:0x10 scope:local align:4 data:string +@4665 = .rodata:0x80498594; // type:object size:0xF scope:local align:4 data:string +@4809 = .rodata:0x804985A4; // type:object size:0xF scope:local align:4 data:string +@4431 = .rodata:0x804985B8; // type:object size:0x13 scope:local align:4 data:string +@4439 = .rodata:0x804985CC; // type:object size:0xB scope:local align:4 data:string +@4471 = .rodata:0x804985D8; // type:object size:0x16 scope:local align:4 data:string +@4479 = .rodata:0x804985F0; // type:object size:0xE scope:local align:4 data:string +@4488 = .rodata:0x80498600; // type:object size:0x13 scope:local align:4 data:string +@4496 = .rodata:0x80498614; // type:object size:0x9 scope:local align:4 data:string +@4501 = .rodata:0x80498620; // type:object size:0x12 scope:local align:4 data:string +@4509 = .rodata:0x80498634; // type:object size:0xA scope:local align:4 data:string +@4514 = .rodata:0x80498640; // type:object size:0x11 scope:local align:4 data:string +@4522 = .rodata:0x80498654; // type:object size:0x9 scope:local align:4 data:string +@4528 = .rodata:0x80498660; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80498670; // type:label scope:local +@3411 = .rodata:0x80498670; // type:object size:0xC scope:local align:4 +@3461 = .rodata:0x8049867C; // type:object size:0xE scope:local align:4 data:string +@3493 = .rodata:0x8049868C; // type:object size:0x10 scope:local align:4 data:string +@3498 = .rodata:0x8049869C; // type:object size:0xD scope:local align:4 data:string +@3499 = .rodata:0x804986AC; // type:object size:0xD scope:local align:4 data:string +@3500 = .rodata:0x804986BC; // type:object size:0xD scope:local align:4 data:string +@3501 = .rodata:0x804986CC; // type:object size:0x15 scope:local align:4 data:string +@3502 = .rodata:0x804986E4; // type:object size:0x15 scope:local align:4 data:string +@3503 = .rodata:0x804986FC; // type:object size:0x15 scope:local align:4 data:string +@3504 = .rodata:0x80498714; // type:object size:0x18 scope:local align:4 +@3687 = .rodata:0x8049872C; // type:object size:0xD scope:local align:4 data:string +@3745 = .rodata:0x8049873C; // type:object size:0xC scope:local align:4 data:string +@3746 = .rodata:0x80498748; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80498758; // type:label scope:local +@3836 = .rodata:0x80498758; // type:object size:0xC scope:local align:4 +@3926 = .rodata:0x80498764; // type:object size:0x11 scope:local align:4 data:string +@3927 = .rodata:0x80498778; // type:object size:0x10 scope:local align:4 data:string +@3928 = .rodata:0x80498788; // type:object size:0x10 scope:local align:4 data:string +@3929 = .rodata:0x80498798; // type:object size:0x10 scope:local align:4 data:string +@3930 = .rodata:0x804987A8; // type:object size:0x10 scope:local align:4 data:string +@3931 = .rodata:0x804987B8; // type:object size:0x9 scope:local align:4 data:string +@3932 = .rodata:0x804987C4; // type:object size:0x9 scope:local align:4 data:string +@3933 = .rodata:0x804987D0; // type:object size:0xA scope:local align:4 data:string +@3934 = .rodata:0x804987DC; // type:object size:0x24 scope:local align:4 data:string +@3935 = .rodata:0x80498800; // type:object size:0x13 scope:local align:4 data:string +@4127 = .rodata:0x80498814; // type:object size:0x10 scope:local align:4 data:string +@4178 = .rodata:0x80498824; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80498830; // type:label scope:local +@3907 = .rodata:0x80498830; // type:object size:0x13 scope:local align:4 data:string +@3965 = .rodata:0x80498844; // type:object size:0x11 scope:local align:4 data:string +@3966 = .rodata:0x80498858; // type:object size:0x11 scope:local align:4 data:string +@3967 = .rodata:0x8049886C; // type:object size:0x11 scope:local align:4 data:string +@4211 = .rodata:0x80498880; // type:object size:0x10 scope:local align:4 data:string +@4212 = .rodata:0x80498890; // type:object size:0x10 scope:local align:4 data:string +@4213 = .rodata:0x804988A0; // type:object size:0x10 scope:local align:4 data:string +@4214 = .rodata:0x804988B0; // type:object size:0x10 scope:local align:4 data:string +@4215 = .rodata:0x804988C0; // type:object size:0x1E scope:local align:4 data:string +@4216 = .rodata:0x804988E0; // type:object size:0x1E scope:local align:4 data:string +@4217 = .rodata:0x80498900; // type:object size:0x10 scope:local align:4 data:string +@4306 = .rodata:0x80498910; // type:object size:0x10 scope:local align:8 data:string +@4307 = .rodata:0x80498920; // type:object size:0x10 scope:local align:8 data:string +@4678 = .rodata:0x80498930; // type:object size:0x30 scope:local align:4 +@4881 = .rodata:0x80498960; // type:object size:0x15 scope:local align:4 data:string +@4882 = .rodata:0x80498978; // type:object size:0x15 scope:local align:4 data:string +@4883 = .rodata:0x80498990; // type:object size:0x15 scope:local align:4 data:string +@4884 = .rodata:0x804989A8; // type:object size:0x15 scope:local align:4 data:string +@4885 = .rodata:0x804989C0; // type:object size:0x1F scope:local align:4 data:string +@4886 = .rodata:0x804989E0; // type:object size:0x1F scope:local align:4 data:string +@5331 = .rodata:0x80498A00; // type:object size:0x100 scope:local align:4 +@5410 = .rodata:0x80498B00; // type:object size:0x10 scope:local align:4 data:string +@5411 = .rodata:0x80498B10; // type:object size:0x10 scope:local align:4 data:string +@5412 = .rodata:0x80498B20; // type:object size:0x10 scope:local align:4 data:string +@5413 = .rodata:0x80498B30; // type:object size:0x10 scope:local align:4 data:string +@5414 = .rodata:0x80498B40; // type:object size:0x1A scope:local align:4 data:string +@5415 = .rodata:0x80498B5C; // type:object size:0x1A scope:local align:4 data:string +@5416 = .rodata:0x80498B78; // type:object size:0x1E scope:local align:4 data:string +@5417 = .rodata:0x80498B98; // type:object size:0x1E scope:local align:4 data:string +@5418 = .rodata:0x80498BB8; // type:object size:0xC scope:local align:4 data:string +@6015 = .rodata:0x80498BC8; // type:object size:0x20 scope:local align:8 +@6047 = .rodata:0x80498BE8; // type:object size:0x15 scope:local align:4 data:string +@6048 = .rodata:0x80498C00; // type:object size:0x15 scope:local align:4 data:string +@6049 = .rodata:0x80498C18; // type:object size:0x15 scope:local align:4 data:string +@6309 = .rodata:0x80498C30; // type:object size:0x1B scope:local align:4 data:string +@6310 = .rodata:0x80498C4C; // type:object size:0xF scope:local align:4 data:string +@6314 = .rodata:0x80498C5C; // type:object size:0x1A scope:local align:4 data:string +@6315 = .rodata:0x80498C78; // type:object size:0x9 scope:local align:4 data:string +@6316 = .rodata:0x80498C84; // type:object size:0x10 scope:local align:4 data:string +@6349 = .rodata:0x80498C94; // type:object size:0xC scope:local align:4 data:string +@6350 = .rodata:0x80498CA0; // type:object size:0x9 scope:local align:4 data:string +@3041 = .rodata:0x80498CB0; // type:object size:0xB scope:local align:4 data:string +@3042 = .rodata:0x80498CBC; // type:object size:0x9 scope:local align:4 data:string +@3122 = .rodata:0x80498CC8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80498CD8; // type:label scope:local +@3908 = .rodata:0x80498CD8; // type:object size:0x12 scope:local align:4 data:string +@3921 = .rodata:0x80498CEC; // type:object size:0x19 scope:local align:4 data:string +@3922 = .rodata:0x80498D08; // type:object size:0x19 scope:local align:4 data:string +@3923 = .rodata:0x80498D24; // type:object size:0x19 scope:local align:4 data:string +@3924 = .rodata:0x80498D40; // type:object size:0x19 scope:local align:4 data:string +@3925 = .rodata:0x80498D5C; // type:object size:0x19 scope:local align:4 data:string +@3926 = .rodata:0x80498D78; // type:object size:0x19 scope:local align:4 data:string +@3927 = .rodata:0x80498D94; // type:object size:0x19 scope:local align:4 data:string +@3928 = .rodata:0x80498DB0; // type:object size:0x19 scope:local align:4 data:string +@3929 = .rodata:0x80498DCC; // type:object size:0x19 scope:local align:4 data:string +@3930 = .rodata:0x80498DE8; // type:object size:0x19 scope:local align:4 data:string +@3931 = .rodata:0x80498E04; // type:object size:0x19 scope:local align:4 data:string +@3932 = .rodata:0x80498E20; // type:object size:0x19 scope:local align:4 data:string +@3933 = .rodata:0x80498E3C; // type:object size:0x19 scope:local align:4 data:string +@3934 = .rodata:0x80498E58; // type:object size:0x19 scope:local align:4 data:string +@3935 = .rodata:0x80498E74; // type:object size:0x19 scope:local align:4 data:string +@3936 = .rodata:0x80498E90; // type:object size:0x19 scope:local align:4 data:string +@3937 = .rodata:0x80498EAC; // type:object size:0x40 scope:local align:4 +@3938 = .rodata:0x80498EEC; // type:object size:0x40 scope:local align:4 +@3974 = .rodata:0x80498F2C; // type:object size:0x27 scope:local align:4 data:string +@4072 = .rodata:0x80498F58; // type:object size:0x40 scope:local align:8 +@4073 = .rodata:0x80498F98; // type:object size:0x20 scope:local align:8 +@4074 = .rodata:0x80498FB8; // type:object size:0x20 scope:local align:8 +@4198 = .rodata:0x80498FD8; // type:object size:0x10 scope:local align:4 data:string +@4199 = .rodata:0x80498FE8; // type:object size:0x11 scope:local align:4 data:string +@4200 = .rodata:0x80498FFC; // type:object size:0x11 scope:local align:4 data:string +@4201 = .rodata:0x80499010; // type:object size:0x11 scope:local align:4 data:string +@4202 = .rodata:0x80499024; // type:object size:0x11 scope:local align:4 data:string +@4203 = .rodata:0x80499038; // type:object size:0x11 scope:local align:4 data:string +@4515 = .rodata:0x80499050; // type:object size:0x80 scope:local align:8 +@4539 = .rodata:0x804990D0; // type:object size:0x18 scope:local align:8 +@4540 = .rodata:0x804990E8; // type:object size:0x18 scope:local align:8 +@4541 = .rodata:0x80499100; // type:object size:0x18 scope:local align:8 +@4542 = .rodata:0x80499118; // type:object size:0x18 scope:local align:8 +@4729 = .rodata:0x80499130; // type:object size:0x11 scope:local align:4 data:string +@4825 = .rodata:0x80499144; // type:object size:0xC scope:local align:4 data:string +@4826 = .rodata:0x80499150; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80499160; // type:label scope:local +@3196 = .rodata:0x80499160; // type:object size:0xE scope:local align:4 data:string +@3197 = .rodata:0x80499170; // type:object size:0x9 scope:local align:4 data:string +@3198 = .rodata:0x8049917C; // type:object size:0x9 scope:local align:4 data:string +@3199 = .rodata:0x80499188; // type:object size:0x9 scope:local align:4 data:string +@3200 = .rodata:0x80499194; // type:object size:0x9 scope:local align:4 data:string +@3201 = .rodata:0x804991A0; // type:object size:0x9 scope:local align:4 data:string +@3202 = .rodata:0x804991AC; // type:object size:0x9 scope:local align:4 data:string +@3203 = .rodata:0x804991B8; // type:object size:0x9 scope:local align:4 data:string +@3204 = .rodata:0x804991C4; // type:object size:0x9 scope:local align:4 data:string +@3205 = .rodata:0x804991D0; // type:object size:0x9 scope:local align:4 data:string +@3206 = .rodata:0x804991DC; // type:object size:0x9 scope:local align:4 data:string +@3224 = .rodata:0x804991E8; // type:object size:0x18 scope:local align:4 data:string +@3225 = .rodata:0x80499200; // type:object size:0x18 scope:local align:4 data:string +@3226 = .rodata:0x80499218; // type:object size:0x18 scope:local align:4 data:string +@3227 = .rodata:0x80499230; // type:object size:0xC scope:local align:4 +@3228 = .rodata:0x8049923C; // type:object size:0x17 scope:local align:4 data:string +@3229 = .rodata:0x80499254; // type:object size:0x17 scope:local align:4 data:string +@3230 = .rodata:0x8049926C; // type:object size:0x17 scope:local align:4 data:string +@3231 = .rodata:0x80499284; // type:object size:0xC scope:local align:4 +@3232 = .rodata:0x80499290; // type:object size:0x18 scope:local align:4 data:string +@3233 = .rodata:0x804992A8; // type:object size:0x18 scope:local align:4 data:string +@3234 = .rodata:0x804992C0; // type:object size:0x18 scope:local align:4 data:string +@3235 = .rodata:0x804992D8; // type:object size:0xC scope:local align:4 +@3260 = .rodata:0x804992E4; // type:object size:0x10 scope:local align:4 data:string +@3496 = .rodata:0x804992F4; // type:object size:0x18 scope:local align:4 data:string +@3497 = .rodata:0x8049930C; // type:object size:0x17 scope:local align:4 data:string +@3498 = .rodata:0x80499324; // type:object size:0x18 scope:local align:4 data:string +@3532 = .rodata:0x8049933C; // type:object size:0xC scope:local align:4 data:string +@3533 = .rodata:0x80499348; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80499358; // type:label scope:local +@3733 = .rodata:0x80499358; // type:object size:0xE scope:local align:4 data:string +@3756 = .rodata:0x80499368; // type:object size:0x9 scope:local align:4 data:string +@3757 = .rodata:0x80499374; // type:object size:0x9 scope:local align:4 data:string +@3758 = .rodata:0x80499380; // type:object size:0x9 scope:local align:4 data:string +@3759 = .rodata:0x8049938C; // type:object size:0xC scope:local align:4 data:string +@3760 = .rodata:0x80499398; // type:object size:0xC scope:local align:4 data:string +@3761 = .rodata:0x804993A4; // type:object size:0xC scope:local align:4 data:string +@3762 = .rodata:0x804993B0; // type:object size:0x24 scope:local align:4 +@3763 = .rodata:0x804993D4; // type:object size:0xD scope:local align:4 data:string +@3764 = .rodata:0x804993E4; // type:object size:0xD scope:local align:4 data:string +@3765 = .rodata:0x804993F4; // type:object size:0xD scope:local align:4 data:string +@3766 = .rodata:0x80499404; // type:object size:0xE scope:local align:4 data:string +@3767 = .rodata:0x80499414; // type:object size:0xE scope:local align:4 data:string +@3768 = .rodata:0x80499424; // type:object size:0xE scope:local align:4 data:string +@3769 = .rodata:0x80499434; // type:object size:0x11 scope:local align:4 data:string +@3770 = .rodata:0x80499448; // type:object size:0x11 scope:local align:4 data:string +@3771 = .rodata:0x8049945C; // type:object size:0x11 scope:local align:4 data:string +@3772 = .rodata:0x80499470; // type:object size:0x9 scope:local align:4 data:string +@3773 = .rodata:0x8049947C; // type:object size:0x9 scope:local align:4 data:string +@3774 = .rodata:0x80499488; // type:object size:0x9 scope:local align:4 data:string +@3775 = .rodata:0x80499494; // type:object size:0x30 scope:local align:4 +@3820 = .rodata:0x804994C4; // type:object size:0x10 scope:local align:4 data:string +@3927 = .rodata:0x804994D4; // type:object size:0xC scope:local align:4 data:string +@3928 = .rodata:0x804994E0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804994F0; // type:label scope:local +@3803 = .rodata:0x804994F0; // type:object size:0x14 scope:local align:4 data:string +@3823 = .rodata:0x80499504; // type:object size:0x10 scope:local align:4 data:string +@3824 = .rodata:0x80499514; // type:object size:0x10 scope:local align:4 data:string +@3825 = .rodata:0x80499524; // type:object size:0x10 scope:local align:4 data:string +@3998 = .rodata:0x80499534; // type:object size:0x10 scope:local align:4 data:string +@3999 = .rodata:0x80499544; // type:object size:0xA scope:local align:4 data:string +@4000 = .rodata:0x80499550; // type:object size:0x9 scope:local align:4 data:string +@4001 = .rodata:0x8049955C; // type:object size:0xB scope:local align:4 data:string +@4002 = .rodata:0x80499568; // type:object size:0x9 scope:local align:4 data:string +@4003 = .rodata:0x80499574; // type:object size:0x9 scope:local align:4 data:string +@4004 = .rodata:0x80499580; // type:object size:0xA scope:local align:4 data:string +@4005 = .rodata:0x8049958C; // type:object size:0x24 scope:local align:4 data:string +@4045 = .rodata:0x804995B0; // type:object size:0x14 scope:local align:4 data:string +@4076 = .rodata:0x804995C4; // type:object size:0xC scope:local align:4 data:string +@2654 = .rodata:0x804995D0; // type:object size:0x20 scope:local align:4 data:string +@2592 = .rodata:0x804995F0; // type:object size:0x9 scope:local align:4 data:string +@2593 = .rodata:0x804995FC; // type:object size:0x18 scope:local align:4 data:string +@2621 = .rodata:0x80499614; // type:object size:0x18 scope:local align:4 data:string +@2674 = .rodata:0x8049962C; // type:object size:0x1C scope:local align:4 data:string +@2853 = .rodata:0x80499648; // type:object size:0xC scope:local align:4 data:string +@2854 = .rodata:0x80499654; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80499660; // type:label scope:local +@2778 = .rodata:0x80499660; // type:object size:0xB scope:local align:4 data:string +@2779 = .rodata:0x8049966C; // type:object size:0xD scope:local align:4 data:string +@3025 = .rodata:0x8049967C; // type:object size:0x16 scope:local align:4 data:string +@3110 = .rodata:0x80499694; // type:object size:0x17 scope:local align:4 data:string +@3189 = .rodata:0x804996AC; // type:object size:0x15 scope:local align:4 data:string +@3268 = .rodata:0x804996C4; // type:object size:0x17 scope:local align:4 data:string +@3391 = .rodata:0x804996DC; // type:object size:0x9 scope:local align:4 data:string +@3553 = .rodata:0x804996E8; // type:object size:0x2A scope:local align:4 data:string +@3578 = .rodata:0x80499714; // type:object size:0x2B scope:local align:4 data:string +@3651 = .rodata:0x80499740; // type:object size:0x31 scope:local align:4 data:string +@3658 = .rodata:0x80499774; // type:object size:0x32 scope:local align:4 data:string +@5689 = .rodata:0x804997A8; // type:object size:0xA scope:local align:4 data:string +@2844 = .rodata:0x804997B8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804997C8; // type:label scope:local +@3364 = .rodata:0x804997C8; // type:object size:0xB scope:local align:4 data:string +@3365 = .rodata:0x804997D4; // type:object size:0x46 scope:local align:4 data:string +@3386 = .rodata:0x8049981C; // type:object size:0x17 scope:local align:4 data:string +@3387 = .rodata:0x80499834; // type:object size:0x18 scope:local align:4 data:string +@3429 = .rodata:0x8049984C; // type:object size:0x16 scope:local align:4 +@3451 = .rodata:0x80499864; // type:object size:0x20 scope:local align:4 data:string +@3452 = .rodata:0x80499884; // type:object size:0x18 scope:local align:4 +@3486 = .rodata:0x8049989C; // type:object size:0x9 scope:local align:4 data:string +@3544 = .rodata:0x804998A8; // type:object size:0x21 scope:local align:4 data:string +@3545 = .rodata:0x804998CC; // type:object size:0xF scope:local align:4 data:string +@3546 = .rodata:0x804998DC; // type:object size:0xC scope:local align:4 data:string +@3547 = .rodata:0x804998E8; // type:object size:0xF scope:local align:4 data:string +@3648 = .rodata:0x804998F8; // type:object size:0xA scope:local align:4 data:string +@3649 = .rodata:0x80499904; // type:object size:0xA scope:local align:4 data:string +@3650 = .rodata:0x80499910; // type:object size:0xA scope:local align:4 data:string +@3651 = .rodata:0x8049991C; // type:object size:0xD scope:local align:4 data:string +@3654 = .rodata:0x8049992C; // type:object size:0xE scope:local align:4 data:string +@3665 = .rodata:0x8049993C; // type:object size:0x9 scope:local align:4 data:string +@3666 = .rodata:0x80499948; // type:object size:0x1A scope:local align:4 data:string +@3667 = .rodata:0x80499964; // type:object size:0xF scope:local align:4 data:string +@3682 = .rodata:0x80499974; // type:object size:0x1A scope:local align:4 data:string +@3683 = .rodata:0x80499990; // type:object size:0xB scope:local align:4 data:string +@3746 = .rodata:0x8049999C; // type:object size:0xC scope:local align:4 data:string +@3747 = .rodata:0x804999A8; // type:object size:0xA scope:local align:4 data:string +@3748 = .rodata:0x804999B4; // type:object size:0xB scope:local align:4 data:string +@3749 = .rodata:0x804999C0; // type:object size:0x9 scope:local align:4 data:string +@4006 = .rodata:0x804999CC; // type:object size:0x18 scope:local align:4 data:string +@4122 = .rodata:0x804999E4; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x804999F0; // type:label scope:local +@2741 = .rodata:0x804999F0; // type:object size:0xC scope:local align:4 +@3750 = .rodata:0x804999FC; // type:object size:0x9 scope:local align:4 data:string +@3751 = .rodata:0x80499A08; // type:object size:0x9 scope:local align:4 data:string +@3752 = .rodata:0x80499A14; // type:object size:0xA scope:local align:4 data:string +@3869 = .rodata:0x80499A20; // type:object size:0xC scope:local align:4 data:string +@3870 = .rodata:0x80499A2C; // type:object size:0x15 scope:local align:4 data:string +@4721 = .rodata:0x80499A48; // type:object size:0xA scope:local align:4 data:string +@4722 = .rodata:0x80499A54; // type:object size:0xE scope:local align:4 data:string +@4723 = .rodata:0x80499A64; // type:object size:0xC scope:local align:4 data:string +@4724 = .rodata:0x80499A70; // type:object size:0xF scope:local align:4 data:string +@4725 = .rodata:0x80499A80; // type:object size:0xF scope:local align:4 data:string +@4726 = .rodata:0x80499A90; // type:object size:0xA scope:local align:4 data:string +@4727 = .rodata:0x80499A9C; // type:object size:0xC scope:local align:4 data:string +@4728 = .rodata:0x80499AA8; // type:object size:0x11 scope:local align:4 data:string +@4729 = .rodata:0x80499ABC; // type:object size:0xB scope:local align:4 data:string +@4731 = .rodata:0x80499AC8; // type:object size:0x12 scope:local align:4 data:string +@4733 = .rodata:0x80499ADC; // type:object size:0xA scope:local align:4 data:string +@4734 = .rodata:0x80499AE8; // type:object size:0xA scope:local align:4 data:string +@4735 = .rodata:0x80499AF4; // type:object size:0xB scope:local align:4 data:string +@4736 = .rodata:0x80499B00; // type:object size:0x9 scope:local align:4 data:string +@4737 = .rodata:0x80499B0C; // type:object size:0x9 scope:local align:4 data:string +@4740 = .rodata:0x80499B18; // type:object size:0xC scope:local align:4 data:string +@4741 = .rodata:0x80499B24; // type:object size:0x15 scope:local align:4 data:string +@4742 = .rodata:0x80499B3C; // type:object size:0xB scope:local align:4 data:string +@4743 = .rodata:0x80499B48; // type:object size:0x13 scope:local align:4 data:string +@4744 = .rodata:0x80499B5C; // type:object size:0xC scope:local align:4 data:string +@4746 = .rodata:0x80499B68; // type:object size:0xB scope:local align:4 data:string +@4748 = .rodata:0x80499B74; // type:object size:0x12 scope:local align:4 data:string +@4749 = .rodata:0x80499B88; // type:object size:0xF scope:local align:4 data:string +@4750 = .rodata:0x80499B98; // type:object size:0x12 scope:local align:4 data:string +@4752 = .rodata:0x80499BAC; // type:object size:0xE scope:local align:4 data:string +@4753 = .rodata:0x80499BBC; // type:object size:0xA scope:local align:4 data:string +@4816 = .rodata:0x80499BC8; // type:object size:0xD scope:local align:4 data:string +@4817 = .rodata:0x80499BD8; // type:object size:0x1A scope:local align:4 data:string +@4834 = .rodata:0x80499BF4; // type:object size:0x9 scope:local align:4 data:string +@2691 = .rodata:0x80499C00; // type:object size:0x13 scope:local align:4 data:string +@2493 = .rodata:0x80499C18; // type:object size:0xE scope:local align:4 data:string +@2494 = .rodata:0x80499C28; // type:object size:0x9 scope:local align:4 data:string +@3771 = .rodata:0x80499C38; // type:object size:0xD scope:local align:4 data:string +@6711 = .rodata:0x80499C48; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80499C58; // type:label scope:local +@3273 = .rodata:0x80499C58; // type:object size:0xC scope:local align:4 +@3300 = .rodata:0x80499C64; // type:object size:0x9 scope:local align:4 data:string +@3383 = .rodata:0x80499C70; // type:object size:0xD scope:local align:4 data:string +@3384 = .rodata:0x80499C80; // type:object size:0xE scope:local align:4 data:string +@3484 = .rodata:0x80499C90; // type:object size:0x24 scope:local align:4 data:string +@3688 = .rodata:0x80499CB4; // type:object size:0x20 scope:local align:4 data:string +@3798 = .rodata:0x80499CD4; // type:object size:0x30 scope:local align:4 data:string +@3823 = .rodata:0x80499D04; // type:object size:0x9 scope:local align:4 data:string +@4072 = .rodata:0x80499D10; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80499D20; // type:label scope:local +@3145 = .rodata:0x80499D20; // type:object size:0x21 scope:local align:4 +@3146 = .rodata:0x80499D44; // type:object size:0x15 scope:local align:4 +@3147 = .rodata:0x80499D5C; // type:object size:0x11 scope:local align:4 +@3148 = .rodata:0x80499D70; // type:object size:0x1F scope:local align:4 +@3149 = .rodata:0x80499D90; // type:object size:0x12 scope:local align:4 +...rodata.0 = .rodata:0x80499DA8; // type:label scope:local +@3716 = .rodata:0x80499DA8; // type:object size:0xA scope:local align:4 data:string +@3783 = .rodata:0x80499DB4; // type:object size:0xE scope:local align:4 data:string +@3784 = .rodata:0x80499DC4; // type:object size:0xD scope:local align:4 data:string +@3785 = .rodata:0x80499DD4; // type:object size:0x13 scope:local align:4 data:string +@3869 = .rodata:0x80499DE8; // type:object size:0xD scope:local align:4 data:string +@3870 = .rodata:0x80499DF8; // type:object size:0x15 scope:local align:4 data:string +@2651 = .rodata:0x80499E10; // type:object size:0xA scope:local align:4 data:string +@2699 = .rodata:0x80499E1C; // type:object size:0xE scope:local align:4 data:string +@2700 = .rodata:0x80499E2C; // type:object size:0x9 scope:local align:4 data:string +@2711 = .rodata:0x80499E38; // type:object size:0x2D scope:local align:4 +...rodata.0 = .rodata:0x80499E68; // type:label scope:local +@3183 = .rodata:0x80499E68; // type:object size:0x9 scope:local align:4 data:string +@3216 = .rodata:0x80499E74; // type:object size:0xD scope:local align:4 data:string +@3217 = .rodata:0x80499E84; // type:object size:0x1E scope:local align:4 data:string +@3293 = .rodata:0x80499EA4; // type:object size:0x9 scope:local align:4 data:string +@3294 = .rodata:0x80499EB0; // type:object size:0x11 scope:local align:4 data:string +@3295 = .rodata:0x80499EC4; // type:object size:0x24 scope:local align:4 data:string +@2745 = .rodata:0x80499EE8; // type:object size:0xF scope:local align:4 data:string +@3219 = .rodata:0x80499EF8; // type:object size:0x13 scope:local align:4 +...rodata.0 = .rodata:0x80499F10; // type:label scope:local +@2521 = .rodata:0x80499F10; // type:object size:0xC scope:local align:4 +@3967 = .rodata:0x80499F1C; // type:object size:0xC scope:local align:4 data:string +@4045 = .rodata:0x80499F28; // type:object size:0x10 scope:local align:4 data:string +@4046 = .rodata:0x80499F38; // type:object size:0x9 scope:local align:4 data:string +@4161 = .rodata:0x80499F44; // type:object size:0x28 scope:local align:4 +@4162 = .rodata:0x80499F6C; // type:object size:0x1E scope:local align:4 data:string +@4163 = .rodata:0x80499F8C; // type:object size:0x1E scope:local align:4 data:string +@4164 = .rodata:0x80499FAC; // type:object size:0xD scope:local align:4 data:string +@4166 = .rodata:0x80499FBC; // type:object size:0xD scope:local align:4 data:string +@4234 = .rodata:0x80499FCC; // type:object size:0x11 scope:local align:4 data:string +@4235 = .rodata:0x80499FE0; // type:object size:0x20 scope:local align:4 +@4387 = .rodata:0x8049A000; // type:object size:0xD scope:local align:4 data:string +@4389 = .rodata:0x8049A010; // type:object size:0xE scope:local align:4 data:string +@4394 = .rodata:0x8049A020; // type:object size:0x9 scope:local align:4 data:string +@4395 = .rodata:0x8049A02C; // type:object size:0xA scope:local align:4 +@4396 = .rodata:0x8049A038; // type:object size:0x1D scope:local align:4 +@4397 = .rodata:0x8049A058; // type:object size:0x17 scope:local align:4 data:string +@4398 = .rodata:0x8049A070; // type:object size:0x10 scope:local align:4 data:string +@4413 = .rodata:0x8049A080; // type:object size:0x1A scope:local align:4 +@4631 = .rodata:0x8049A09C; // type:object size:0x11 scope:local align:4 data:string +@4633 = .rodata:0x8049A0B0; // type:object size:0x11 scope:local align:4 data:string +@4684 = .rodata:0x8049A0C4; // type:object size:0x1E scope:local align:4 data:string +@4768 = .rodata:0x8049A0E4; // type:object size:0x9 scope:local align:4 data:string +@4807 = .rodata:0x8049A0F0; // type:object size:0x12 scope:local align:4 data:string +@4808 = .rodata:0x8049A104; // type:object size:0x11 scope:local align:4 data:string +@5001 = .rodata:0x8049A118; // type:object size:0xD scope:local align:4 data:string +@5161 = .rodata:0x8049A128; // type:object size:0xA scope:local align:4 data:string +@5164 = .rodata:0x8049A134; // type:object size:0xA scope:local align:4 data:string +@5166 = .rodata:0x8049A140; // type:object size:0xB scope:local align:4 data:string +@5169 = .rodata:0x8049A14C; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A158; // type:label scope:local +@2735 = .rodata:0x8049A158; // type:object size:0xC scope:local align:4 +@3456 = .rodata:0x8049A164; // type:object size:0xF scope:local align:4 data:string +@3681 = .rodata:0x8049A174; // type:object size:0x13 scope:local align:4 data:string +@3682 = .rodata:0x8049A188; // type:object size:0xF scope:local align:4 data:string +@3683 = .rodata:0x8049A198; // type:object size:0xD scope:local align:4 data:string +@3723 = .rodata:0x8049A1A8; // type:object size:0x13 scope:local align:4 data:string +@4060 = .rodata:0x8049A1BC; // type:object size:0x17 scope:local align:4 data:string +@4061 = .rodata:0x8049A1D4; // type:object size:0x10 scope:local align:4 data:string +@4062 = .rodata:0x8049A1E4; // type:object size:0xF scope:local align:4 data:string +@4063 = .rodata:0x8049A1F4; // type:object size:0xE scope:local align:4 data:string +@4074 = .rodata:0x8049A204; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A210; // type:label scope:local +@2735 = .rodata:0x8049A210; // type:object size:0xC scope:local align:4 +@3482 = .rodata:0x8049A21C; // type:object size:0x10 scope:local align:4 data:string +@3761 = .rodata:0x8049A22C; // type:object size:0x17 scope:local align:4 data:string +@3762 = .rodata:0x8049A244; // type:object size:0x1E scope:local align:4 data:string +@3778 = .rodata:0x8049A264; // type:object size:0x15 scope:local align:4 data:string +@3851 = .rodata:0x8049A27C; // type:object size:0x9 scope:local align:4 data:string +@3852 = .rodata:0x8049A288; // type:object size:0x19 scope:local align:4 data:string +@3870 = .rodata:0x8049A2A4; // type:object size:0x19 scope:local align:4 data:string +@4004 = .rodata:0x8049A2C0; // type:object size:0x26 scope:local align:4 data:string +@4005 = .rodata:0x8049A2E8; // type:object size:0x18 scope:local align:4 data:string +@4165 = .rodata:0x8049A300; // type:object size:0x14 scope:local align:4 data:string +@4166 = .rodata:0x8049A314; // type:object size:0x20 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A338; // type:label scope:local +@2735 = .rodata:0x8049A338; // type:object size:0xC scope:local align:4 +@3639 = .rodata:0x8049A344; // type:object size:0x10 scope:local align:4 data:string +@3837 = .rodata:0x8049A354; // type:object size:0x14 scope:local align:4 data:string +@3838 = .rodata:0x8049A368; // type:object size:0x9 scope:local align:4 data:string +@3839 = .rodata:0x8049A374; // type:object size:0x9 scope:local align:4 data:string +@3840 = .rodata:0x8049A380; // type:object size:0x9 scope:local align:4 data:string +@3841 = .rodata:0x8049A38C; // type:object size:0xB scope:local align:4 data:string +@3842 = .rodata:0x8049A398; // type:object size:0x9 scope:local align:4 data:string +@3843 = .rodata:0x8049A3A4; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A3B0; // type:label scope:local +@2735 = .rodata:0x8049A3B0; // type:object size:0xC scope:local align:4 +@3669 = .rodata:0x8049A3BC; // type:object size:0xC scope:local align:4 data:string +@3718 = .rodata:0x8049A3C8; // type:object size:0xF scope:local align:4 data:string +@3719 = .rodata:0x8049A3D8; // type:object size:0xA scope:local align:4 data:string +@3902 = .rodata:0x8049A3E4; // type:object size:0xA scope:local align:4 data:string +@3903 = .rodata:0x8049A3F0; // type:object size:0x1B scope:local align:4 data:string +@3937 = .rodata:0x8049A40C; // type:object size:0x10 scope:local align:4 data:string +@3938 = .rodata:0x8049A41C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A428; // type:label scope:local +@2645 = .rodata:0x8049A428; // type:object size:0xB scope:local align:4 data:string +@2738 = .rodata:0x8049A434; // type:object size:0xB scope:local align:4 data:string +@2739 = .rodata:0x8049A440; // type:object size:0xA scope:local align:4 data:string +@2741 = .rodata:0x8049A44C; // type:object size:0xB scope:local align:4 data:string +@2742 = .rodata:0x8049A458; // type:object size:0xD scope:local align:4 data:string +@2743 = .rodata:0x8049A468; // type:object size:0xF scope:local align:4 data:string +@2744 = .rodata:0x8049A478; // type:object size:0xB scope:local align:4 data:string +@2745 = .rodata:0x8049A484; // type:object size:0xF scope:local align:4 data:string +@2746 = .rodata:0x8049A494; // type:object size:0xD scope:local align:4 data:string +@2747 = .rodata:0x8049A4A4; // type:object size:0xE scope:local align:4 data:string +@2748 = .rodata:0x8049A4B4; // type:object size:0xA scope:local align:4 data:string +@2749 = .rodata:0x8049A4C0; // type:object size:0xC scope:local align:4 data:string +@2750 = .rodata:0x8049A4CC; // type:object size:0xC scope:local align:4 data:string +@2751 = .rodata:0x8049A4D8; // type:object size:0xB scope:local align:4 data:string +@2752 = .rodata:0x8049A4E4; // type:object size:0xD scope:local align:4 data:string +@2753 = .rodata:0x8049A4F4; // type:object size:0xD scope:local align:4 data:string +@2754 = .rodata:0x8049A504; // type:object size:0xE scope:local align:4 data:string +@2755 = .rodata:0x8049A514; // type:object size:0xE scope:local align:4 data:string +@2756 = .rodata:0x8049A524; // type:object size:0xE scope:local align:4 data:string +@2757 = .rodata:0x8049A534; // type:object size:0xA scope:local align:4 data:string +@2758 = .rodata:0x8049A540; // type:object size:0x10 scope:local align:4 data:string +@2762 = .rodata:0x8049A550; // type:object size:0xC scope:local align:4 data:string +@2765 = .rodata:0x8049A55C; // type:object size:0xA scope:local align:4 data:string +@2766 = .rodata:0x8049A568; // type:object size:0xD scope:local align:4 data:string +@2767 = .rodata:0x8049A578; // type:object size:0x11 scope:local align:4 data:string +@2768 = .rodata:0x8049A58C; // type:object size:0x10 scope:local align:4 data:string +@2769 = .rodata:0x8049A59C; // type:object size:0xD scope:local align:4 data:string +@2770 = .rodata:0x8049A5AC; // type:object size:0x11 scope:local align:4 data:string +@2771 = .rodata:0x8049A5C0; // type:object size:0xC scope:local align:4 data:string +@2772 = .rodata:0x8049A5CC; // type:object size:0x10 scope:local align:4 data:string +@2773 = .rodata:0x8049A5DC; // type:object size:0x9 scope:local align:4 data:string +@2774 = .rodata:0x8049A5E8; // type:object size:0xC scope:local align:4 data:string +@2775 = .rodata:0x8049A5F4; // type:object size:0x15 scope:local align:4 data:string +@2994 = .rodata:0x8049A610; // type:object size:0x11 scope:local align:4 +@2686 = .rodata:0x8049A628; // type:object size:0xC scope:local align:4 data:string +@2687 = .rodata:0x8049A634; // type:object size:0x9 scope:local align:4 data:string +@2669 = .rodata:0x8049A640; // type:object size:0x10 scope:local align:4 data:string +@2670 = .rodata:0x8049A650; // type:object size:0x9 scope:local align:4 data:string +@2854 = .rodata:0x8049A65C; // type:object size:0x1D scope:local align:4 +@2449 = .rodata:0x8049A680; // type:object size:0x12 scope:local align:4 data:string +@2450 = .rodata:0x8049A694; // type:object size:0x9 scope:local align:4 data:string +@3195 = .rodata:0x8049A6A0; // type:object size:0x14 scope:local align:4 data:string +@3196 = .rodata:0x8049A6B4; // type:object size:0x9 scope:local align:4 data:string +@2656 = .rodata:0x8049A6C0; // type:object size:0xE scope:local align:4 data:string +@2657 = .rodata:0x8049A6D0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A6E0; // type:label scope:local +@2852 = .rodata:0x8049A6E0; // type:object size:0xC scope:local align:4 +@3542 = .rodata:0x8049A6EC; // type:object size:0xD scope:local align:4 data:string +@4007 = .rodata:0x8049A6FC; // type:object size:0x11 scope:local align:4 data:string +@4008 = .rodata:0x8049A710; // type:object size:0x9 scope:local align:4 data:string +@4009 = .rodata:0x8049A71C; // type:object size:0xD scope:local align:4 data:string +@4010 = .rodata:0x8049A72C; // type:object size:0xD scope:local align:4 data:string +@4011 = .rodata:0x8049A73C; // type:object size:0xD scope:local align:4 data:string +@4214 = .rodata:0x8049A74C; // type:object size:0xE scope:local align:4 data:string +@4407 = .rodata:0x8049A75C; // type:object size:0x1F scope:local align:4 data:string +@4408 = .rodata:0x8049A77C; // type:object size:0xF scope:local align:4 data:string +@4409 = .rodata:0x8049A78C; // type:object size:0x22 scope:local align:4 data:string +@4411 = .rodata:0x8049A7B0; // type:object size:0x2F scope:local align:4 data:string +@4412 = .rodata:0x8049A7E0; // type:object size:0x2A scope:local align:4 data:string +@4413 = .rodata:0x8049A80C; // type:object size:0x12 scope:local align:4 data:string +@4414 = .rodata:0x8049A820; // type:object size:0x22 scope:local align:4 data:string +@4655 = .rodata:0x8049A844; // type:object size:0xD scope:local align:4 data:string +@3514 = .rodata:0x8049A858; // type:object size:0x1A scope:local align:4 data:string +@3515 = .rodata:0x8049A874; // type:object size:0x1D scope:local align:4 data:string +@3523 = .rodata:0x8049A894; // type:object size:0x15 scope:local align:4 data:string +@3247 = .rodata:0x8049A8B0; // type:object size:0x14 scope:local align:4 data:string +@3396 = .rodata:0x8049A8C4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A8D0; // type:label scope:local +@3021 = .rodata:0x8049A8D0; // type:object size:0xC scope:local align:4 +@3994 = .rodata:0x8049A8DC; // type:object size:0x1A scope:local align:4 data:string +@3995 = .rodata:0x8049A8F8; // type:object size:0x16 scope:local align:4 data:string +@3996 = .rodata:0x8049A910; // type:object size:0x18 scope:local align:4 data:string +@3997 = .rodata:0x8049A928; // type:object size:0x18 scope:local align:4 data:string +@3998 = .rodata:0x8049A940; // type:object size:0x18 scope:local align:4 data:string +@3999 = .rodata:0x8049A958; // type:object size:0x18 scope:local align:4 data:string +@4000 = .rodata:0x8049A970; // type:object size:0x18 scope:local align:4 data:string +@4001 = .rodata:0x8049A988; // type:object size:0x18 scope:local align:4 data:string +@4002 = .rodata:0x8049A9A0; // type:object size:0x18 scope:local align:4 data:string +@4017 = .rodata:0x8049A9B8; // type:object size:0xA scope:local align:4 data:string +@4018 = .rodata:0x8049A9C4; // type:object size:0xA scope:local align:4 data:string +@4019 = .rodata:0x8049A9D0; // type:object size:0xA scope:local align:4 data:string +@4020 = .rodata:0x8049A9DC; // type:object size:0xA scope:local align:4 data:string +@4021 = .rodata:0x8049A9E8; // type:object size:0xA scope:local align:4 data:string +@4022 = .rodata:0x8049A9F4; // type:object size:0xA scope:local align:4 data:string +@4023 = .rodata:0x8049AA00; // type:object size:0xA scope:local align:4 data:string +@4024 = .rodata:0x8049AA0C; // type:object size:0xA scope:local align:4 data:string +@4025 = .rodata:0x8049AA18; // type:object size:0xB scope:local align:4 data:string +@4026 = .rodata:0x8049AA24; // type:object size:0xB scope:local align:4 data:string +@4027 = .rodata:0x8049AA30; // type:object size:0xA scope:local align:4 data:string +@4049 = .rodata:0x8049AA3C; // type:object size:0xF scope:local align:4 data:string +@4050 = .rodata:0x8049AA4C; // type:object size:0x9 scope:local align:4 data:string +@4051 = .rodata:0x8049AA58; // type:object size:0xB scope:local align:4 data:string +@4052 = .rodata:0x8049AA64; // type:object size:0x9 scope:local align:4 data:string +@4053 = .rodata:0x8049AA70; // type:object size:0x10 scope:local align:4 data:string +@4093 = .rodata:0x8049AA80; // type:object size:0xC scope:local align:4 data:string +@4094 = .rodata:0x8049AA8C; // type:object size:0xC scope:local align:4 data:string +@4115 = .rodata:0x8049AA98; // type:object size:0x20 scope:local align:4 data:string +@4170 = .rodata:0x8049AAB8; // type:object size:0xA scope:local align:4 data:string +@4171 = .rodata:0x8049AAC4; // type:object size:0xA4 scope:local align:4 +@4234 = .rodata:0x8049AB68; // type:object size:0x13 scope:local align:4 +@4248 = .rodata:0x8049AB7C; // type:object size:0x19 scope:local align:4 +@2791 = .rodata:0x8049AB98; // type:object size:0xF scope:local align:4 data:string +@2792 = .rodata:0x8049ABA8; // type:object size:0x9 scope:local align:4 data:string +@2822 = .rodata:0x8049ABB4; // type:object size:0x13 scope:local align:4 +@2823 = .rodata:0x8049ABC8; // type:object size:0xB scope:local align:4 +@2833 = .rodata:0x8049ABD4; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8049ABE8; // type:label scope:local +@2980 = .rodata:0x8049ABE8; // type:object size:0x15 scope:local align:4 data:string +@2981 = .rodata:0x8049AC00; // type:object size:0x9 scope:local align:4 data:string +@2998 = .rodata:0x8049AC0C; // type:object size:0x13 scope:local align:4 data:string +@3390 = .rodata:0x8049AC20; // type:object size:0x10 scope:local align:4 data:string +@3391 = .rodata:0x8049AC30; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AC40; // type:label scope:local +@3273 = .rodata:0x8049AC40; // type:object size:0xC scope:local align:4 +@3300 = .rodata:0x8049AC4C; // type:object size:0xE scope:local align:4 data:string +@3308 = .rodata:0x8049AC5C; // type:object size:0x16 scope:local align:4 data:string +@3309 = .rodata:0x8049AC74; // type:object size:0x10 scope:local align:4 data:string +@3368 = .rodata:0x8049AC84; // type:object size:0xC scope:local align:4 data:string +@3347 = .rodata:0x8049AC90; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049ACA8; // type:label scope:local +@3361 = .rodata:0x8049ACA8; // type:object size:0xC scope:local align:4 +@3502 = .rodata:0x8049ACB4; // type:object size:0x12 scope:local align:4 data:string +@3503 = .rodata:0x8049ACC8; // type:object size:0x9 scope:local align:4 data:string +@3504 = .rodata:0x8049ACD4; // type:object size:0x12 scope:local align:4 data:string +@3581 = .rodata:0x8049ACE8; // type:object size:0x9 scope:local align:4 data:string +@4136 = .rodata:0x8049ACF4; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AD08; // type:label scope:local +@2647 = .rodata:0x8049AD08; // type:object size:0xF scope:local align:4 data:string +@2689 = .rodata:0x8049AD18; // type:object size:0x27 scope:local align:4 data:string +@2730 = .rodata:0x8049AD40; // type:object size:0x9 scope:local align:4 data:string +@2731 = .rodata:0x8049AD4C; // type:object size:0x17 scope:local align:4 data:string +@2935 = .rodata:0x8049AD64; // type:object size:0x11 scope:local align:4 data:string +@3308 = .rodata:0x8049AD78; // type:object size:0x1A scope:local align:4 +@3309 = .rodata:0x8049AD94; // type:object size:0x1E scope:local align:4 data:string +...rodata.0 = .rodata:0x8049ADB8; // type:label scope:local +@2731 = .rodata:0x8049ADB8; // type:object size:0x11 scope:local align:4 data:string +@2761 = .rodata:0x8049ADCC; // type:object size:0x19 scope:local align:4 data:string +@2762 = .rodata:0x8049ADE8; // type:object size:0x9 scope:local align:4 data:string +@2853 = .rodata:0x8049ADF4; // type:object size:0x31 scope:local align:4 data:string +@2882 = .rodata:0x8049AE28; // type:object size:0x21 scope:local align:4 data:string +@2883 = .rodata:0x8049AE4C; // type:object size:0xB scope:local align:4 data:string +@2884 = .rodata:0x8049AE58; // type:object size:0x9 scope:local align:4 data:string +@3710 = .rodata:0x8049AE64; // type:object size:0x17 scope:local align:4 data:string +@4115 = .rodata:0x8049AE7C; // type:object size:0x16 scope:local align:4 data:string +@4297 = .rodata:0x8049AE94; // type:object size:0x9 scope:local align:4 data:string +@4298 = .rodata:0x8049AEA0; // type:object size:0x1E scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AEC0; // type:label scope:local +@3071 = .rodata:0x8049AEC0; // type:object size:0x13 scope:local align:4 data:string +@3169 = .rodata:0x8049AED4; // type:object size:0x18 scope:local align:4 data:string +@3229 = .rodata:0x8049AEEC; // type:object size:0x9 scope:local align:4 data:string +@3231 = .rodata:0x8049AEF8; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AF08; // type:label scope:local +@3767 = .rodata:0x8049AF08; // type:object size:0xC scope:local align:4 +@4082 = .rodata:0x8049AF14; // type:object size:0x10 scope:local align:4 data:string +@4370 = .rodata:0x8049AF24; // type:object size:0x9 scope:local align:4 data:string +@4376 = .rodata:0x8049AF30; // type:object size:0x12 scope:local align:4 data:string +@4377 = .rodata:0x8049AF44; // type:object size:0x15 scope:local align:4 data:string +@4378 = .rodata:0x8049AF5C; // type:object size:0x13 scope:local align:4 data:string +@4379 = .rodata:0x8049AF70; // type:object size:0x14 scope:local align:4 data:string +@4380 = .rodata:0x8049AF84; // type:object size:0x15 scope:local align:4 data:string +@4381 = .rodata:0x8049AF9C; // type:object size:0x14 scope:local align:4 +@4661 = .rodata:0x8049AFB0; // type:object size:0x11 scope:local align:4 +@4752 = .rodata:0x8049AFC4; // type:object size:0x20 scope:local align:4 data:string +@4753 = .rodata:0x8049AFE4; // type:object size:0x20 scope:local align:4 data:string +@4754 = .rodata:0x8049B004; // type:object size:0x1A scope:local align:4 data:string +@4755 = .rodata:0x8049B020; // type:object size:0x17 scope:local align:4 data:string +@4756 = .rodata:0x8049B038; // type:object size:0x1E scope:local align:4 data:string +@4768 = .rodata:0x8049B058; // type:object size:0x1E scope:local align:4 data:string +@4769 = .rodata:0x8049B078; // type:object size:0xA scope:local align:4 data:string +@4770 = .rodata:0x8049B084; // type:object size:0xF scope:local align:4 data:string +@4771 = .rodata:0x8049B094; // type:object size:0x25 scope:local align:4 data:string +@4772 = .rodata:0x8049B0BC; // type:object size:0x13 scope:local align:4 data:string +@4773 = .rodata:0x8049B0D0; // type:object size:0x21 scope:local align:4 data:string +@5291 = .rodata:0x8049B0F4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B100; // type:label scope:local +@3021 = .rodata:0x8049B100; // type:object size:0xC scope:local align:4 +@4189 = .rodata:0x8049B10C; // type:object size:0xD scope:local align:4 data:string +@4543 = .rodata:0x8049B11C; // type:object size:0x9 scope:local align:4 data:string +@4544 = .rodata:0x8049B128; // type:object size:0x9 scope:local align:4 data:string +@4545 = .rodata:0x8049B134; // type:object size:0x11 scope:local align:4 data:string +@4546 = .rodata:0x8049B148; // type:object size:0x18 scope:local align:4 data:string +@4570 = .rodata:0x8049B160; // type:object size:0x1B scope:local align:4 data:string +@4571 = .rodata:0x8049B17C; // type:object size:0x1B scope:local align:4 data:string +@4572 = .rodata:0x8049B198; // type:object size:0x16 scope:local align:4 data:string +@4573 = .rodata:0x8049B1B0; // type:object size:0x19 scope:local align:4 data:string +@4725 = .rodata:0x8049B1CC; // type:object size:0x13 scope:local align:4 data:string +@4726 = .rodata:0x8049B1E0; // type:object size:0xF scope:local align:4 data:string +@4727 = .rodata:0x8049B1F0; // type:object size:0x13 scope:local align:4 +@4728 = .rodata:0x8049B204; // type:object size:0xC scope:local align:4 data:string +@4730 = .rodata:0x8049B210; // type:object size:0xB scope:local align:4 data:string +@5098 = .rodata:0x8049B21C; // type:object size:0x1A scope:local align:4 data:string +@5099 = .rodata:0x8049B238; // type:object size:0x1A scope:local align:4 data:string +@5100 = .rodata:0x8049B254; // type:object size:0xA scope:local align:4 data:string +@5738 = .rodata:0x8049B260; // type:object size:0x1B scope:local align:4 data:string +@5739 = .rodata:0x8049B27C; // type:object size:0xF scope:local align:4 data:string +@5740 = .rodata:0x8049B28C; // type:object size:0x25 scope:local align:4 data:string +@5741 = .rodata:0x8049B2B4; // type:object size:0x9 scope:local align:4 data:string +@5744 = .rodata:0x8049B2C0; // type:object size:0xA scope:local align:4 data:string +@5745 = .rodata:0x8049B2CC; // type:object size:0xF scope:local align:4 data:string +@5746 = .rodata:0x8049B2DC; // type:object size:0x17 scope:local align:4 data:string +@5747 = .rodata:0x8049B2F4; // type:object size:0xE scope:local align:4 data:string +@5748 = .rodata:0x8049B304; // type:object size:0x9 scope:local align:4 data:string +@5821 = .rodata:0x8049B310; // type:object size:0x20 scope:local align:4 data:string +@5822 = .rodata:0x8049B330; // type:object size:0x21 scope:local align:4 data:string +@5823 = .rodata:0x8049B354; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B368; // type:label scope:local +@2449 = .rodata:0x8049B368; // type:object size:0x11 scope:local align:4 data:string +@2505 = .rodata:0x8049B37C; // type:object size:0x9 scope:local align:4 data:string +@2507 = .rodata:0x8049B388; // type:object size:0x9 scope:local align:4 data:string +@2593 = .rodata:0x8049B394; // type:object size:0x12 scope:local align:4 data:string +@2685 = .rodata:0x8049B3A8; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B3C0; // type:label scope:local +@3090 = .rodata:0x8049B3C0; // type:object size:0x10 scope:local align:4 data:string +@3150 = .rodata:0x8049B3D0; // type:object size:0x13 scope:local align:4 data:string +@3151 = .rodata:0x8049B3E4; // type:object size:0xF scope:local align:4 data:string +@3152 = .rodata:0x8049B3F4; // type:object size:0xE scope:local align:4 +@3153 = .rodata:0x8049B404; // type:object size:0xC scope:local align:4 data:string +@3202 = .rodata:0x8049B410; // type:object size:0x9 scope:local align:4 data:string +@3203 = .rodata:0x8049B41C; // type:object size:0x9 scope:local align:4 data:string +@3245 = .rodata:0x8049B428; // type:object size:0x29 scope:local align:4 data:string +@3246 = .rodata:0x8049B454; // type:object size:0x1C scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B470; // type:label scope:local +@3412 = .rodata:0x8049B470; // type:object size:0xC scope:local align:4 data:string +@3413 = .rodata:0x8049B47C; // type:object size:0x22 scope:local align:4 data:string +@3414 = .rodata:0x8049B4A0; // type:object size:0x22 scope:local align:4 data:string +@3415 = .rodata:0x8049B4C4; // type:object size:0x1B scope:local align:4 data:string +@3416 = .rodata:0x8049B4E0; // type:object size:0x18 scope:local align:4 +@3448 = .rodata:0x8049B4F8; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x8049B510; // type:label scope:local +@3189 = .rodata:0x8049B510; // type:object size:0x12 scope:local align:4 data:string +@3190 = .rodata:0x8049B524; // type:object size:0x12 scope:local align:4 data:string +@3191 = .rodata:0x8049B538; // type:object size:0x12 scope:local align:4 data:string +@3192 = .rodata:0x8049B54C; // type:object size:0x12 scope:local align:4 data:string +@3193 = .rodata:0x8049B560; // type:object size:0x11 scope:local align:4 data:string +@3194 = .rodata:0x8049B574; // type:object size:0x11 scope:local align:4 data:string +@3195 = .rodata:0x8049B588; // type:object size:0x11 scope:local align:4 data:string +@3197 = .rodata:0x8049B59C; // type:object size:0x13 scope:local align:4 data:string +@3198 = .rodata:0x8049B5B0; // type:object size:0xF scope:local align:4 data:string +@3200 = .rodata:0x8049B5C0; // type:object size:0xF scope:local align:4 data:string +@3202 = .rodata:0x8049B5D0; // type:object size:0xF scope:local align:4 data:string +@3204 = .rodata:0x8049B5E0; // type:object size:0xF scope:local align:4 data:string +@3206 = .rodata:0x8049B5F0; // type:object size:0xF scope:local align:4 data:string +@3208 = .rodata:0x8049B600; // type:object size:0xF scope:local align:4 data:string +@3210 = .rodata:0x8049B610; // type:object size:0xF scope:local align:4 data:string +@3211 = .rodata:0x8049B620; // type:object size:0xF scope:local align:4 data:string +sTHPFileSettingTable__Q24Game30@unnamed@pikmin2THPPlayer_cpp@ = .rodata:0x8049B630; // type:object size:0xC0 scope:local align:4 +@3237 = .rodata:0x8049B6F0; // type:object size:0xA scope:local align:4 data:string +@3263 = .rodata:0x8049B6FC; // type:object size:0x15 scope:local align:4 data:string +@3264 = .rodata:0x8049B714; // type:object size:0x9 scope:local align:4 data:string +@3271 = .rodata:0x8049B720; // type:object size:0x17 scope:local align:4 data:string +@3302 = .rodata:0x8049B738; // type:object size:0x18 scope:local align:4 data:string +@3303 = .rodata:0x8049B750; // type:object size:0x13 scope:local align:4 data:string +@3304 = .rodata:0x8049B764; // type:object size:0x11 scope:local align:4 data:string +@3305 = .rodata:0x8049B778; // type:object size:0x24 scope:local align:4 data:string +@3306 = .rodata:0x8049B79C; // type:object size:0xE scope:local align:4 data:string +@3307 = .rodata:0x8049B7AC; // type:object size:0x20 scope:local align:4 data:string +@3308 = .rodata:0x8049B7CC; // type:object size:0x12 scope:local align:4 data:string +@3325 = .rodata:0x8049B7E0; // type:object size:0xF scope:local align:4 data:string +@3326 = .rodata:0x8049B7F0; // type:object size:0x1A scope:local align:4 data:string +@3327 = .rodata:0x8049B80C; // type:object size:0x11 scope:local align:4 data:string +@3358 = .rodata:0x8049B820; // type:object size:0xD scope:local align:4 data:string +@3384 = .rodata:0x8049B830; // type:object size:0x15 scope:local align:4 data:string +@2786 = .rodata:0x8049B848; // type:object size:0x17 scope:local align:4 +@2822 = .rodata:0x8049B860; // type:object size:0xF scope:local align:4 data:string +@2823 = .rodata:0x8049B870; // type:object size:0x9 scope:local align:4 data:string +@2951 = .rodata:0x8049B880; // type:object size:0xD scope:local align:4 data:string +@2952 = .rodata:0x8049B890; // type:object size:0x9 scope:local align:4 data:string +@2657 = .rodata:0x8049B8A0; // type:object size:0x10 scope:local align:4 data:string +@2678 = .rodata:0x8049B8B0; // type:object size:0x9 scope:local align:4 data:string +@2853 = .rodata:0x8049B8BC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B8C8; // type:label scope:local +@2831 = .rodata:0x8049B8C8; // type:object size:0xC scope:local align:4 +@3109 = .rodata:0x8049B8D4; // type:object size:0xE scope:local align:4 data:string +@3169 = .rodata:0x8049B8E4; // type:object size:0x9 scope:local align:4 data:string +@3182 = .rodata:0x8049B8F0; // type:object size:0x26 scope:local align:4 data:string +@3208 = .rodata:0x8049B918; // type:object size:0x9 scope:local align:4 data:string +@3227 = .rodata:0x8049B924; // type:object size:0xB scope:local align:4 data:string +@3246 = .rodata:0x8049B930; // type:object size:0x9 scope:local align:4 data:string +@3374 = .rodata:0x8049B93C; // type:object size:0x24 scope:local align:4 data:string +@3487 = .rodata:0x8049B960; // type:object size:0x29 scope:local align:4 data:string +@3543 = .rodata:0x8049B98C; // type:object size:0x21 scope:local align:4 data:string +@3544 = .rodata:0x8049B9B0; // type:object size:0x28 scope:local align:4 +@3627 = .rodata:0x8049B9D8; // type:object size:0x27 scope:local align:4 data:string +@3660 = .rodata:0x8049BA00; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x8049BA14; // type:object size:0x21 scope:local align:4 data:string +@3904 = .rodata:0x8049BA38; // type:object size:0x1F scope:local align:4 data:string +@2661 = .rodata:0x8049BA58; // type:object size:0xE scope:local align:4 data:string +@2662 = .rodata:0x8049BA68; // type:object size:0x9 scope:local align:4 data:string +@3653 = .rodata:0x8049BA78; // type:object size:0x9 scope:local align:4 data:string +@3655 = .rodata:0x8049BA84; // type:object size:0xA scope:local align:4 data:string +@3805 = .rodata:0x8049BA90; // type:object size:0xE scope:local align:4 data:string +@2872 = .rodata:0x8049BAA0; // type:object size:0x1B scope:local align:4 data:string +@2873 = .rodata:0x8049BABC; // type:object size:0x9 scope:local align:4 data:string +@2904 = .rodata:0x8049BAC8; // type:object size:0xD scope:local align:4 data:string +@2716 = .rodata:0x8049BAD8; // type:object size:0x12 scope:local align:4 data:string +@2717 = .rodata:0x8049BAEC; // type:object size:0x9 scope:local align:4 data:string +@2740 = .rodata:0x8049BAF8; // type:object size:0xB scope:local align:4 data:string +@1 = .rodata:0x8049BB08; // type:object size:0x11 scope:local align:4 +@2 = .rodata:0x8049BB1C; // type:object size:0x77 scope:local align:4 +@3 = .rodata:0x8049BB94; // type:object size:0x55 scope:local align:4 +@4 = .rodata:0x8049BBEC; // type:object size:0x2C scope:local align:4 +@5 = .rodata:0x8049BC18; // type:object size:0x57 scope:local align:4 +@6 = .rodata:0x8049BC70; // type:object size:0xD scope:local align:4 data:string +@7 = .rodata:0x8049BC80; // type:object size:0x7D scope:local align:4 data:string +@8 = .rodata:0x8049BD00; // type:object size:0x6F scope:local align:4 data:string +@9 = .rodata:0x8049BD70; // type:object size:0x27 scope:local align:4 data:string +@10 = .rodata:0x8049BD98; // type:object size:0x59 scope:local align:4 data:string +@11 = .rodata:0x8049BDF4; // type:object size:0xE scope:local align:4 +@12 = .rodata:0x8049BE04; // type:object size:0x96 scope:local align:4 data:string +@13 = .rodata:0x8049BE9C; // type:object size:0x7A scope:local align:4 data:string +@14 = .rodata:0x8049BF18; // type:object size:0x2C scope:local align:4 data:string +@15 = .rodata:0x8049BF44; // type:object size:0x5E scope:local align:4 +@16 = .rodata:0x8049BFA4; // type:object size:0x8A scope:local align:4 +@17 = .rodata:0x8049C030; // type:object size:0x82 scope:local align:4 +@18 = .rodata:0x8049C0B4; // type:object size:0x25 scope:local align:4 +@19 = .rodata:0x8049C0DC; // type:object size:0x4F scope:local align:4 +@20 = .rodata:0x8049C12C; // type:object size:0x84 scope:local align:4 data:string +@21 = .rodata:0x8049C1B0; // type:object size:0x72 scope:local align:4 +@22 = .rodata:0x8049C224; // type:object size:0x1D scope:local align:4 data:string +@23 = .rodata:0x8049C244; // type:object size:0x48 scope:local align:4 data:string +@24 = .rodata:0x8049C28C; // type:object size:0x7D scope:local align:4 +@25 = .rodata:0x8049C30C; // type:object size:0x79 scope:local align:4 data:string +@26 = .rodata:0x8049C388; // type:object size:0x26 scope:local align:4 data:string +@27 = .rodata:0x8049C3B0; // type:object size:0x5E scope:local align:4 data:string +...rodata.0 = .rodata:0x8049C410; // type:label scope:local +@2650 = .rodata:0x8049C410; // type:object size:0x13 scope:local align:4 data:string +@2651 = .rodata:0x8049C424; // type:object size:0xF scope:local align:4 data:string +@2652 = .rodata:0x8049C434; // type:object size:0xD scope:local align:4 data:string +@2653 = .rodata:0x8049C444; // type:object size:0x13 scope:local align:4 data:string +@2654 = .rodata:0x8049C458; // type:object size:0x15 scope:local align:4 data:string +@2655 = .rodata:0x8049C470; // type:object size:0x14 scope:local align:4 data:string +@2656 = .rodata:0x8049C484; // type:object size:0x15 scope:local align:4 data:string +@2657 = .rodata:0x8049C49C; // type:object size:0x15 scope:local align:4 data:string +@2658 = .rodata:0x8049C4B4; // type:object size:0xB scope:local align:4 data:string +@2659 = .rodata:0x8049C4C0; // type:object size:0x1D scope:local align:4 data:string +@2660 = .rodata:0x8049C4E0; // type:object size:0x18 scope:local align:4 data:string +@2661 = .rodata:0x8049C4F8; // type:object size:0x11 scope:local align:4 data:string +@2662 = .rodata:0x8049C50C; // type:object size:0x10 scope:local align:4 data:string +@2663 = .rodata:0x8049C51C; // type:object size:0xC scope:local align:4 data:string +@2664 = .rodata:0x8049C528; // type:object size:0x2B scope:local align:4 data:string +@2665 = .rodata:0x8049C554; // type:object size:0x29 scope:local align:4 data:string +@2666 = .rodata:0x8049C580; // type:object size:0x2C scope:local align:4 data:string +@2667 = .rodata:0x8049C5AC; // type:object size:0x27 scope:local align:4 data:string +@2668 = .rodata:0x8049C5D4; // type:object size:0x28 scope:local align:4 data:string +@2669 = .rodata:0x8049C5FC; // type:object size:0x2B scope:local align:4 data:string +@2670 = .rodata:0x8049C628; // type:object size:0x26 scope:local align:4 data:string +@2671 = .rodata:0x8049C650; // type:object size:0x2B scope:local align:4 data:string +@2672 = .rodata:0x8049C67C; // type:object size:0x2F scope:local align:4 data:string +@2673 = .rodata:0x8049C6AC; // type:object size:0x2D scope:local align:4 data:string +@2674 = .rodata:0x8049C6DC; // type:object size:0x2E scope:local align:4 data:string +@2675 = .rodata:0x8049C70C; // type:object size:0x31 scope:local align:4 data:string +@2676 = .rodata:0x8049C740; // type:object size:0x30 scope:local align:4 data:string +@2677 = .rodata:0x8049C770; // type:object size:0x26 scope:local align:4 data:string +@2678 = .rodata:0x8049C798; // type:object size:0x2D scope:local align:4 data:string +@2679 = .rodata:0x8049C7C8; // type:object size:0x29 scope:local align:4 data:string +@2680 = .rodata:0x8049C7F4; // type:object size:0x30 scope:local align:4 data:string +@2681 = .rodata:0x8049C824; // type:object size:0x2A scope:local align:4 data:string +@2682 = .rodata:0x8049C850; // type:object size:0x31 scope:local align:4 data:string +@2683 = .rodata:0x8049C884; // type:object size:0x29 scope:local align:4 data:string +@2684 = .rodata:0x8049C8B0; // type:object size:0x2B scope:local align:4 data:string +@2685 = .rodata:0x8049C8DC; // type:object size:0x29 scope:local align:4 data:string +@2686 = .rodata:0x8049C908; // type:object size:0x2E scope:local align:4 data:string +@2687 = .rodata:0x8049C938; // type:object size:0x19 scope:local align:4 data:string +@2688 = .rodata:0x8049C954; // type:object size:0x1B scope:local align:4 data:string +@2689 = .rodata:0x8049C970; // type:object size:0x17 scope:local align:4 data:string +@2690 = .rodata:0x8049C988; // type:object size:0x19 scope:local align:4 data:string +@2691 = .rodata:0x8049C9A4; // type:object size:0x1C scope:local align:4 data:string +@2692 = .rodata:0x8049C9C0; // type:object size:0x1E scope:local align:4 data:string +@2693 = .rodata:0x8049C9E0; // type:object size:0x17 scope:local align:4 data:string +@2694 = .rodata:0x8049C9F8; // type:object size:0x19 scope:local align:4 data:string +@2695 = .rodata:0x8049CA14; // type:object size:0x1C scope:local align:4 data:string +@2696 = .rodata:0x8049CA30; // type:object size:0x1E scope:local align:4 data:string +@2697 = .rodata:0x8049CA50; // type:object size:0x26 scope:local align:4 data:string +@2698 = .rodata:0x8049CA78; // type:object size:0x28 scope:local align:4 data:string +@2699 = .rodata:0x8049CAA0; // type:object size:0x28 scope:local align:4 data:string +@2700 = .rodata:0x8049CAC8; // type:object size:0x2A scope:local align:4 data:string +@2701 = .rodata:0x8049CAF4; // type:object size:0x28 scope:local align:4 data:string +@2702 = .rodata:0x8049CB1C; // type:object size:0x2A scope:local align:4 data:string +@2703 = .rodata:0x8049CB48; // type:object size:0x24 scope:local align:4 data:string +@2704 = .rodata:0x8049CB6C; // type:object size:0x26 scope:local align:4 data:string +@2705 = .rodata:0x8049CB94; // type:object size:0x23 scope:local align:4 data:string +@2706 = .rodata:0x8049CBB8; // type:object size:0x25 scope:local align:4 data:string +@2707 = .rodata:0x8049CBE0; // type:object size:0x22 scope:local align:4 data:string +@2708 = .rodata:0x8049CC04; // type:object size:0x24 scope:local align:4 data:string +@2709 = .rodata:0x8049CC28; // type:object size:0x23 scope:local align:4 data:string +@2710 = .rodata:0x8049CC4C; // type:object size:0x25 scope:local align:4 data:string +@2711 = .rodata:0x8049CC74; // type:object size:0x28 scope:local align:4 data:string +@2712 = .rodata:0x8049CC9C; // type:object size:0x1C scope:local align:4 data:string +@2713 = .rodata:0x8049CCB8; // type:object size:0x1B scope:local align:4 data:string +@2714 = .rodata:0x8049CCD4; // type:object size:0x22 scope:local align:4 data:string +@2715 = .rodata:0x8049CCF8; // type:object size:0x21 scope:local align:4 data:string +@2716 = .rodata:0x8049CD1C; // type:object size:0x1B scope:local align:4 data:string +@2717 = .rodata:0x8049CD38; // type:object size:0x1A scope:local align:4 data:string +@2728 = .rodata:0x8049CD54; // type:object size:0x9 scope:local align:4 data:string +@2789 = .rodata:0x8049CD60; // type:object size:0x18 scope:local align:4 data:string +@3216 = .rodata:0x8049CD78; // type:object size:0x9 scope:local align:4 data:string +@3217 = .rodata:0x8049CD84; // type:object size:0x14 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049CD98; // type:label scope:local +@3529 = .rodata:0x8049CD98; // type:object size:0xA scope:local align:4 data:string +@3598 = .rodata:0x8049CDA4; // type:object size:0xA scope:local align:4 data:string +@3625 = .rodata:0x8049CDB0; // type:object size:0xA scope:local align:4 data:string +@3769 = .rodata:0x8049CDBC; // type:object size:0x18 scope:local align:4 data:string +@3770 = .rodata:0x8049CDD4; // type:object size:0x9 scope:local align:4 data:string +@3851 = .rodata:0x8049CDE0; // type:object size:0xD scope:local align:4 data:string +@4172 = .rodata:0x8049CDF0; // type:object size:0xB scope:local align:4 data:string +@4257 = .rodata:0x8049CDFC; // type:object size:0x9 scope:local align:4 data:string +@4258 = .rodata:0x8049CE08; // type:object size:0xA scope:local align:4 data:string +@4259 = .rodata:0x8049CE14; // type:object size:0x24 scope:local align:4 data:string +@4427 = .rodata:0x8049CE38; // type:object size:0x16 scope:local align:4 data:string +@4440 = .rodata:0x8049CE50; // type:object size:0xA scope:local align:4 data:string +@4452 = .rodata:0x8049CE5C; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8049CE68; // type:label scope:local +@3626 = .rodata:0x8049CE68; // type:object size:0xC scope:local align:4 +@3722 = .rodata:0x8049CE74; // type:object size:0x17 scope:local align:4 data:string +@3723 = .rodata:0x8049CE8C; // type:object size:0x9 scope:local align:4 data:string +@3724 = .rodata:0x8049CE98; // type:object size:0x9 scope:local align:4 data:string +@3725 = .rodata:0x8049CEA4; // type:object size:0xA scope:local align:4 data:string +@3727 = .rodata:0x8049CEB0; // type:object size:0x24 scope:local align:4 data:string +@3728 = .rodata:0x8049CED4; // type:object size:0x13 scope:local align:4 data:string +@3729 = .rodata:0x8049CEE8; // type:object size:0xE scope:local align:4 data:string +@3838 = .rodata:0x8049CEF8; // type:object size:0xB scope:local align:4 data:string +@3934 = .rodata:0x8049CF04; // type:object size:0xB scope:local align:4 data:string +@3935 = .rodata:0x8049CF10; // type:object size:0xB scope:local align:4 data:string +@3936 = .rodata:0x8049CF1C; // type:object size:0xD scope:local align:4 data:string +@4017 = .rodata:0x8049CF2C; // type:object size:0x14 scope:local align:4 +@4047 = .rodata:0x8049CF40; // type:object size:0x14 scope:local align:4 +@4061 = .rodata:0x8049CF54; // type:object size:0x14 scope:local align:4 +@4066 = .rodata:0x8049CF68; // type:object size:0x14 scope:local align:4 +@4071 = .rodata:0x8049CF7C; // type:object size:0x14 scope:local align:4 +@5552 = .rodata:0x8049CF90; // type:object size:0xE scope:local align:4 +...rodata.0 = .rodata:0x8049CFA0; // type:label scope:local +@3531 = .rodata:0x8049CFA0; // type:object size:0x18 scope:local align:4 data:string +@3532 = .rodata:0x8049CFB8; // type:object size:0x9 scope:local align:4 data:string +@3578 = .rodata:0x8049CFC4; // type:object size:0x9 scope:local align:4 data:string +@3723 = .rodata:0x8049CFD0; // type:object size:0x9 scope:local align:4 data:string +@3724 = .rodata:0x8049CFDC; // type:object size:0xA scope:local align:4 data:string +@3807 = .rodata:0x8049CFE8; // type:object size:0x11 scope:local align:4 +@3970 = .rodata:0x8049CFFC; // type:object size:0x3C scope:local align:4 +@4836 = .rodata:0x8049D038; // type:object size:0x24 scope:local align:4 data:string +@4837 = .rodata:0x8049D05C; // type:object size:0xB scope:local align:4 data:string +@5629 = .rodata:0x8049D068; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049D080; // type:label scope:local +@3491 = .rodata:0x8049D080; // type:object size:0x14 scope:local align:4 data:string +@3492 = .rodata:0x8049D094; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x8049D0A0; // type:object size:0x9 scope:local align:4 data:string +@3494 = .rodata:0x8049D0AC; // type:object size:0xA scope:local align:4 data:string +@3495 = .rodata:0x8049D0B8; // type:object size:0x24 scope:local align:4 data:string +@3532 = .rodata:0x8049D0DC; // type:object size:0x13 scope:local align:4 data:string +@3536 = .rodata:0x8049D0F0; // type:object size:0x10 scope:local align:4 +@4078 = .rodata:0x8049D100; // type:object size:0x12 scope:local align:4 data:string +@4079 = .rodata:0x8049D114; // type:object size:0xB scope:local align:4 data:string +@4080 = .rodata:0x8049D120; // type:object size:0xE scope:local align:4 data:string +@4081 = .rodata:0x8049D130; // type:object size:0xF scope:local align:4 data:string +@4082 = .rodata:0x8049D140; // type:object size:0x11 scope:local align:4 data:string +@4083 = .rodata:0x8049D154; // type:object size:0x11 scope:local align:4 data:string +@4084 = .rodata:0x8049D168; // type:object size:0x14 scope:local align:4 data:string +@4085 = .rodata:0x8049D17C; // type:object size:0x14 scope:local align:4 data:string +@4087 = .rodata:0x8049D190; // type:object size:0x13 scope:local align:4 data:string +@4088 = .rodata:0x8049D1A4; // type:object size:0x16 scope:local align:4 data:string +@4089 = .rodata:0x8049D1BC; // type:object size:0x12 scope:local align:4 data:string +@4090 = .rodata:0x8049D1D0; // type:object size:0x15 scope:local align:4 data:string +@4091 = .rodata:0x8049D1E8; // type:object size:0x15 scope:local align:4 data:string +@4092 = .rodata:0x8049D200; // type:object size:0x16 scope:local align:4 data:string +@4093 = .rodata:0x8049D218; // type:object size:0xF scope:local align:4 data:string +@4094 = .rodata:0x8049D228; // type:object size:0x11 scope:local align:4 data:string +@4095 = .rodata:0x8049D23C; // type:object size:0x10 scope:local align:4 data:string +@4096 = .rodata:0x8049D24C; // type:object size:0x10 scope:local align:4 data:string +@4097 = .rodata:0x8049D25C; // type:object size:0x10 scope:local align:4 data:string +@4098 = .rodata:0x8049D26C; // type:object size:0x13 scope:local align:4 data:string +@4099 = .rodata:0x8049D280; // type:object size:0x16 scope:local align:4 data:string +@4100 = .rodata:0x8049D298; // type:object size:0x14 scope:local align:4 data:string +@4101 = .rodata:0x8049D2AC; // type:object size:0x15 scope:local align:4 data:string +@4102 = .rodata:0x8049D2C4; // type:object size:0x15 scope:local align:4 data:string +@4103 = .rodata:0x8049D2DC; // type:object size:0x10 scope:local align:4 data:string +@4104 = .rodata:0x8049D2EC; // type:object size:0xB scope:local align:4 data:string +@4105 = .rodata:0x8049D2F8; // type:object size:0x11 scope:local align:4 data:string +@4106 = .rodata:0x8049D30C; // type:object size:0x11 scope:local align:4 data:string +@4107 = .rodata:0x8049D320; // type:object size:0x11 scope:local align:4 data:string +@4108 = .rodata:0x8049D334; // type:object size:0x11 scope:local align:4 data:string +@4109 = .rodata:0x8049D348; // type:object size:0x11 scope:local align:4 data:string +@4110 = .rodata:0x8049D35C; // type:object size:0x11 scope:local align:4 data:string +@4111 = .rodata:0x8049D370; // type:object size:0x11 scope:local align:4 data:string +@4112 = .rodata:0x8049D384; // type:object size:0x11 scope:local align:4 data:string +@4113 = .rodata:0x8049D398; // type:object size:0x11 scope:local align:4 data:string +@4114 = .rodata:0x8049D3AC; // type:object size:0x11 scope:local align:4 data:string +@4115 = .rodata:0x8049D3C0; // type:object size:0x11 scope:local align:4 data:string +@4116 = .rodata:0x8049D3D4; // type:object size:0x11 scope:local align:4 data:string +@4117 = .rodata:0x8049D3E8; // type:object size:0x11 scope:local align:4 data:string +@4118 = .rodata:0x8049D3FC; // type:object size:0xE scope:local align:4 data:string +@4119 = .rodata:0x8049D40C; // type:object size:0xC scope:local align:4 data:string +@4120 = .rodata:0x8049D418; // type:object size:0x12 scope:local align:4 data:string +@4121 = .rodata:0x8049D42C; // type:object size:0x13 scope:local align:4 data:string +@4122 = .rodata:0x8049D440; // type:object size:0x13 scope:local align:4 data:string +@4123 = .rodata:0x8049D454; // type:object size:0x13 scope:local align:4 data:string +@4124 = .rodata:0x8049D468; // type:object size:0x13 scope:local align:4 data:string +@4125 = .rodata:0x8049D47C; // type:object size:0x13 scope:local align:4 data:string +@4126 = .rodata:0x8049D490; // type:object size:0x13 scope:local align:4 data:string +@4127 = .rodata:0x8049D4A4; // type:object size:0x13 scope:local align:4 data:string +@4128 = .rodata:0x8049D4B8; // type:object size:0x13 scope:local align:4 data:string +@4129 = .rodata:0x8049D4CC; // type:object size:0x13 scope:local align:4 data:string +@4130 = .rodata:0x8049D4E0; // type:object size:0x13 scope:local align:4 data:string +@4131 = .rodata:0x8049D4F4; // type:object size:0x13 scope:local align:4 data:string +@4132 = .rodata:0x8049D508; // type:object size:0x13 scope:local align:4 data:string +@4133 = .rodata:0x8049D51C; // type:object size:0x13 scope:local align:4 data:string +@4134 = .rodata:0x8049D530; // type:object size:0x13 scope:local align:4 data:string +@4135 = .rodata:0x8049D544; // type:object size:0x11 scope:local align:4 data:string +@4136 = .rodata:0x8049D558; // type:object size:0x15 scope:local align:4 data:string +@4137 = .rodata:0x8049D570; // type:object size:0xE scope:local align:4 data:string +@4138 = .rodata:0x8049D580; // type:object size:0xE scope:local align:4 data:string +@4139 = .rodata:0x8049D590; // type:object size:0x10 scope:local align:4 data:string +@4140 = .rodata:0x8049D5A0; // type:object size:0x12 scope:local align:4 data:string +@4141 = .rodata:0x8049D5B4; // type:object size:0x13 scope:local align:4 data:string +@4142 = .rodata:0x8049D5C8; // type:object size:0xE scope:local align:4 data:string +@4143 = .rodata:0x8049D5D8; // type:object size:0x12 scope:local align:4 data:string +@4144 = .rodata:0x8049D5EC; // type:object size:0x12 scope:local align:4 data:string +@4145 = .rodata:0x8049D600; // type:object size:0xE scope:local align:4 data:string +@4146 = .rodata:0x8049D610; // type:object size:0x15 scope:local align:4 data:string +@4147 = .rodata:0x8049D628; // type:object size:0x9 scope:local align:4 data:string +@4148 = .rodata:0x8049D634; // type:object size:0x10 scope:local align:4 data:string +@4149 = .rodata:0x8049D644; // type:object size:0x16 scope:local align:4 data:string +@4150 = .rodata:0x8049D65C; // type:object size:0x14 scope:local align:4 data:string +@4151 = .rodata:0x8049D670; // type:object size:0x9 scope:local align:4 data:string +@4152 = .rodata:0x8049D67C; // type:object size:0x13 scope:local align:4 data:string +@4153 = .rodata:0x8049D690; // type:object size:0xD scope:local align:4 data:string +@4154 = .rodata:0x8049D6A0; // type:object size:0x12 scope:local align:4 data:string +@4155 = .rodata:0x8049D6B4; // type:object size:0x10 scope:local align:4 data:string +@4156 = .rodata:0x8049D6C4; // type:object size:0x10 scope:local align:4 data:string +@4157 = .rodata:0x8049D6D4; // type:object size:0x11 scope:local align:4 data:string +@4158 = .rodata:0x8049D6E8; // type:object size:0x11 scope:local align:4 data:string +@4159 = .rodata:0x8049D6FC; // type:object size:0x11 scope:local align:4 data:string +@4160 = .rodata:0x8049D710; // type:object size:0x11 scope:local align:4 data:string +@4161 = .rodata:0x8049D724; // type:object size:0xF scope:local align:4 data:string +@4162 = .rodata:0x8049D734; // type:object size:0xE scope:local align:4 data:string +@4163 = .rodata:0x8049D744; // type:object size:0x10 scope:local align:4 data:string +@4164 = .rodata:0x8049D754; // type:object size:0x10 scope:local align:4 data:string +@4165 = .rodata:0x8049D764; // type:object size:0x11 scope:local align:4 data:string +@4166 = .rodata:0x8049D778; // type:object size:0xE scope:local align:4 data:string +@4167 = .rodata:0x8049D788; // type:object size:0xF scope:local align:4 data:string +@4168 = .rodata:0x8049D798; // type:object size:0x14 scope:local align:4 data:string +@4169 = .rodata:0x8049D7AC; // type:object size:0x17 scope:local align:4 data:string +@4170 = .rodata:0x8049D7C4; // type:object size:0x12 scope:local align:4 data:string +@4171 = .rodata:0x8049D7D8; // type:object size:0xA scope:local align:4 data:string +@4172 = .rodata:0x8049D7E4; // type:object size:0xF scope:local align:4 data:string +@4173 = .rodata:0x8049D7F4; // type:object size:0x13 scope:local align:4 data:string +@4174 = .rodata:0x8049D808; // type:object size:0x14 scope:local align:4 data:string +@4175 = .rodata:0x8049D81C; // type:object size:0x11 scope:local align:4 data:string +@4176 = .rodata:0x8049D830; // type:object size:0xE scope:local align:4 data:string +@4177 = .rodata:0x8049D840; // type:object size:0xC scope:local align:4 data:string +@4178 = .rodata:0x8049D84C; // type:object size:0x18 scope:local align:4 data:string +@4179 = .rodata:0x8049D864; // type:object size:0xA scope:local align:4 data:string +@4180 = .rodata:0x8049D870; // type:object size:0xF scope:local align:4 data:string +@4181 = .rodata:0x8049D880; // type:object size:0xF scope:local align:4 data:string +@4182 = .rodata:0x8049D890; // type:object size:0x13 scope:local align:4 data:string +@4183 = .rodata:0x8049D8A4; // type:object size:0xE scope:local align:4 data:string +@4184 = .rodata:0x8049D8B4; // type:object size:0x10 scope:local align:4 data:string +@4185 = .rodata:0x8049D8C4; // type:object size:0x14 scope:local align:4 data:string +@4212 = .rodata:0x8049D8D8; // type:object size:0x13 scope:local align:4 data:string +@4292 = .rodata:0x8049D8EC; // type:object size:0xB scope:local align:4 data:string +@4533 = .rodata:0x8049D8F8; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8049D908; // type:label scope:local +@3631 = .rodata:0x8049D908; // type:object size:0xC scope:local align:4 +@3655 = .rodata:0x8049D914; // type:object size:0x15 scope:local align:4 data:string +@3656 = .rodata:0x8049D92C; // type:object size:0x9 scope:local align:4 data:string +@3847 = .rodata:0x8049D938; // type:object size:0xB scope:local align:4 data:string +@4020 = .rodata:0x8049D944; // type:object size:0x9 scope:local align:4 data:string +@4196 = .rodata:0x8049D950; // type:object size:0xA scope:local align:4 data:string +@5843 = .rodata:0x8049D95C; // type:object size:0xD scope:local align:4 data:string +@5918 = .rodata:0x8049D96C; // type:object size:0x24 scope:local align:4 data:string +@6119 = .rodata:0x8049D990; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049D9A8; // type:label scope:local +@3458 = .rodata:0x8049D9A8; // type:object size:0x17 scope:local align:4 data:string +@3459 = .rodata:0x8049D9C0; // type:object size:0x9 scope:local align:4 data:string +@3923 = .rodata:0x8049D9CC; // type:object size:0x9 scope:local align:4 data:string +@3924 = .rodata:0x8049D9D8; // type:object size:0xA scope:local align:4 data:string +@3925 = .rodata:0x8049D9E4; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049DA08; // type:label scope:local +@3483 = .rodata:0x8049DA08; // type:object size:0x12 scope:local align:4 data:string +@3484 = .rodata:0x8049DA1C; // type:object size:0x9 scope:local align:4 data:string +@3797 = .rodata:0x8049DA28; // type:object size:0xB scope:local align:4 data:string +@3798 = .rodata:0x8049DA34; // type:object size:0x9 scope:local align:4 data:string +@3799 = .rodata:0x8049DA40; // type:object size:0xA scope:local align:4 data:string +@3800 = .rodata:0x8049DA4C; // type:object size:0x24 scope:local align:4 data:string +@3868 = .rodata:0x8049DA70; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8049DA80; // type:label scope:local +@3616 = .rodata:0x8049DA80; // type:object size:0x1B scope:local align:4 data:string +@3617 = .rodata:0x8049DA9C; // type:object size:0x9 scope:local align:4 data:string +@3682 = .rodata:0x8049DAA8; // type:object size:0xE scope:local align:4 data:string +@3683 = .rodata:0x8049DAB8; // type:object size:0xE scope:local align:4 data:string +@3684 = .rodata:0x8049DAC8; // type:object size:0x20 scope:local align:4 data:string +@3685 = .rodata:0x8049DAE8; // type:object size:0xD scope:local align:4 data:string +@3686 = .rodata:0x8049DAF8; // type:object size:0x21 scope:local align:4 data:string +@3688 = .rodata:0x8049DB1C; // type:object size:0xD scope:local align:4 data:string +@3689 = .rodata:0x8049DB2C; // type:object size:0xE scope:local align:4 data:string +@3690 = .rodata:0x8049DB3C; // type:object size:0x20 scope:local align:4 data:string +@3691 = .rodata:0x8049DB5C; // type:object size:0x1F scope:local align:4 data:string +@3909 = .rodata:0x8049DB7C; // type:object size:0x1E scope:local align:4 data:string +@3914 = .rodata:0x8049DB9C; // type:object size:0xA scope:local align:4 data:string +@3915 = .rodata:0x8049DBA8; // type:object size:0xA scope:local align:4 data:string +@3916 = .rodata:0x8049DBB4; // type:object size:0x9 scope:local align:4 data:string +@3917 = .rodata:0x8049DBC0; // type:object size:0xA scope:local align:4 data:string +@4084 = .rodata:0x8049DBCC; // type:object size:0x9 scope:local align:4 data:string +@4085 = .rodata:0x8049DBD8; // type:object size:0xB scope:local align:4 data:string +@4286 = .rodata:0x8049DBE4; // type:object size:0xA scope:local align:4 data:string +@4287 = .rodata:0x8049DBF0; // type:object size:0xA scope:local align:4 data:string +@4288 = .rodata:0x8049DBFC; // type:object size:0xA scope:local align:4 data:string +@4289 = .rodata:0x8049DC08; // type:object size:0xA scope:local align:4 data:string +@4290 = .rodata:0x8049DC14; // type:object size:0xA scope:local align:4 data:string +@4291 = .rodata:0x8049DC20; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8049DC30; // type:label scope:local +@3626 = .rodata:0x8049DC30; // type:object size:0xC scope:local align:4 +smACosPrm__Q23PSM7SeSound = .rodata:0x8049DC3C; // type:object size:0x194 scope:global align:4 data:float +@3700 = .rodata:0x8049DDD0; // type:object size:0x15 scope:local align:4 data:string +@3701 = .rodata:0x8049DDE8; // type:object size:0x9 scope:local align:4 data:string +@3702 = .rodata:0x8049DDF4; // type:object size:0xB scope:local align:4 data:string +@3803 = .rodata:0x8049DE00; // type:object size:0xD scope:local align:4 data:string +@3804 = .rodata:0x8049DE10; // type:object size:0x9 scope:local align:4 data:string +@3805 = .rodata:0x8049DE1C; // type:object size:0xA scope:local align:4 data:string +@3806 = .rodata:0x8049DE28; // type:object size:0x26 scope:local align:4 data:string +@3807 = .rodata:0x8049DE50; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049DE78; // type:label scope:local +@3098 = .rodata:0x8049DE78; // type:object size:0x18 scope:local align:4 data:string +@3099 = .rodata:0x8049DE90; // type:object size:0xC scope:local align:4 data:string +@3100 = .rodata:0x8049DE9C; // type:object size:0xA scope:local align:4 data:string +@3101 = .rodata:0x8049DEA8; // type:object size:0x18 scope:local align:4 data:string +@3102 = .rodata:0x8049DEC0; // type:object size:0x1D scope:local align:4 data:string +@3103 = .rodata:0x8049DEE0; // type:object size:0x1D scope:local align:4 data:string +@3104 = .rodata:0x8049DF00; // type:object size:0x1F scope:local align:4 data:string +@3105 = .rodata:0x8049DF20; // type:object size:0x1D scope:local align:4 data:string +@3106 = .rodata:0x8049DF40; // type:object size:0x1E scope:local align:4 data:string +@3107 = .rodata:0x8049DF60; // type:object size:0x1E scope:local align:4 data:string +@3108 = .rodata:0x8049DF80; // type:object size:0x1F scope:local align:4 data:string +@3109 = .rodata:0x8049DFA0; // type:object size:0x20 scope:local align:4 data:string +@3110 = .rodata:0x8049DFC0; // type:object size:0x1D scope:local align:4 data:string +@3128 = .rodata:0x8049DFE0; // type:object size:0x9 scope:local align:4 data:string +@3129 = .rodata:0x8049DFEC; // type:object size:0xF scope:local align:4 data:string +@3180 = .rodata:0x8049DFFC; // type:object size:0x19 scope:local align:4 data:string +@3181 = .rodata:0x8049E018; // type:object size:0x19 scope:local align:4 data:string +@3182 = .rodata:0x8049E034; // type:object size:0x1B scope:local align:4 data:string +@3183 = .rodata:0x8049E050; // type:object size:0x19 scope:local align:4 data:string +@3184 = .rodata:0x8049E06C; // type:object size:0x1A scope:local align:4 data:string +@3185 = .rodata:0x8049E088; // type:object size:0x1A scope:local align:4 data:string +@3186 = .rodata:0x8049E0A4; // type:object size:0x1B scope:local align:4 data:string +@3187 = .rodata:0x8049E0C0; // type:object size:0x1C scope:local align:4 data:string +@3188 = .rodata:0x8049E0DC; // type:object size:0xF scope:local align:4 data:string +@3359 = .rodata:0x8049E0F0; // type:object size:0x9 scope:local align:4 data:string +@3360 = .rodata:0x8049E0FC; // type:object size:0x9 scope:local align:4 data:string +@3363 = .rodata:0x8049E108; // type:object size:0xA scope:local align:4 data:string +@3381 = .rodata:0x8049E114; // type:object size:0x1B scope:local align:4 data:string +@3382 = .rodata:0x8049E130; // type:object size:0x9 scope:local align:4 data:string +cVolMaxDist_Kehai__Q23PSM11CreaturePrm = .rodata:0x8049E13C; // type:object size:0x1C scope:global align:4 +cVolMaxDist_Battle__Q23PSM11CreaturePrm = .rodata:0x8049E158; // type:object size:0x1C scope:global align:4 +cVolZeroDist_Kehai__Q23PSM11CreaturePrm = .rodata:0x8049E174; // type:object size:0x1C scope:global align:4 +cVolZeroDist_Battle__Q23PSM11CreaturePrm = .rodata:0x8049E190; // type:object size:0x1C scope:global align:4 +cVolZeroDist_InnerSize_Kehai__Q23PSM11CreaturePrm = .rodata:0x8049E1AC; // type:object size:0x1C scope:global align:4 +...rodata.0 = .rodata:0x8049E1C8; // type:label scope:local +@3517 = .rodata:0x8049E1C8; // type:object size:0x17 scope:local align:4 data:string +@3518 = .rodata:0x8049E1E0; // type:object size:0x9 scope:local align:4 data:string +@3532 = .rodata:0x8049E1EC; // type:object size:0x12 scope:local align:4 +@3533 = .rodata:0x8049E200; // type:object size:0x12 scope:local align:4 +__vt__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_ = .data:0x8049E220; // type:object size:0x1C scope:global align:4 +__vt__Q217JStudio_JParticle17TAdaptor_particle = .data:0x8049E23C; // type:object size:0x40 scope:global align:4 +__vt__18JPAEmitterCallBack = .data:0x8049E27C; // type:object size:0x1C scope:weak align:4 +__vt__Q27JStudio17TAdaptor_particle = .data:0x8049E298; // type:object size:0x40 scope:weak align:4 +__vt__Q217JStudio_JParticle13TCreateObject = .data:0x8049E2D8; // type:object size:0x10 scope:global align:4 +sapfnIsLeadByte___Q28JMessage18TResourceContainer = .data:0x8049E2E8; // type:object size:0x10 scope:global align:4 +__vt__Q28JMessage12TParse_color = .data:0x8049E2F8; // type:object size:0x14 scope:global align:4 +__vt__Q28JMessage6TParse = .data:0x8049E30C; // type:object size:0x14 scope:global align:4 +__vt__Q37JGadget6binary19TParse_header_block = .data:0x8049E320; // type:object size:0x14 scope:weak align:4 +__vt__Q38JMessage18TResourceContainer10TCResource = .data:0x8049E334; // type:object size:0x14 scope:global align:4 +__vt__Q27JGadget42TLinkList_factory = .data:0x8049E348; // type:object size:0x14 scope:weak align:4 +__vt__Q28JMessage19TRenderingProcessor = .data:0x8049E360; // type:object size:0x48 scope:global align:4 +__vt__Q28JMessage18TSequenceProcessor = .data:0x8049E3A8; // type:object size:0x60 scope:global align:4 +__vt__Q28JMessage10TProcessor = .data:0x8049E408; // type:object size:0x40 scope:global align:4 +__vt__Q28JMessage10TReference = .data:0x8049E448; // type:object size:0x10 scope:global align:4 +__vt__Q28JMessage8TControl = .data:0x8049E458; // type:object size:0xC scope:global align:4 +__vt__Q27JStudio22TFunctionValue_hermite = .data:0x8049E468; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio29TFunctionValue_list_parameter = .data:0x8049E488; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio19TFunctionValue_list = .data:0x8049E4A8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio25TFunctionValue_transition = .data:0x8049E4C8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio23TFunctionValue_constant = .data:0x8049E4E8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio24TFunctionValue_composite = .data:0x8049E508; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TFunctionValue = .data:0x8049E528; // type:object size:0x20 scope:weak align:4 +@830 = .data:0x8049E548; // type:object size:0x5C scope:local align:4 +__vt__Q37JStudio3fvb6TParse = .data:0x8049E5A4; // type:object size:0x14 scope:global align:4 +__vt__Q37JStudio3fvb8TFactory = .data:0x8049E5B8; // type:object size:0x14 scope:global align:4 +__vt__Q37JStudio3fvb8TControl = .data:0x8049E5CC; // type:object size:0xC scope:global align:4 +__vt__Q37JStudio3fvb15TObject_hermite = .data:0x8049E5D8; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb22TObject_list_parameter = .data:0x8049E5E8; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb12TObject_list = .data:0x8049E5F8; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb18TObject_transition = .data:0x8049E608; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb16TObject_constant = .data:0x8049E618; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb17TObject_composite = .data:0x8049E628; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb7TObject = .data:0x8049E638; // type:object size:0x10 scope:weak align:4 +__vt__Q27JStudio6TParse = .data:0x8049E648; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio8TFactory = .data:0x8049E668; // type:object size:0x14 scope:global align:4 +__vt__Q27JStudio13TCreateObject = .data:0x8049E67C; // type:object size:0x10 scope:weak align:4 +__vt__Q27JStudio8TControl = .data:0x8049E68C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x8049E698; // type:label scope:local +@738 = .data:0x8049E698; // type:object size:0xC scope:local align:4 data:4byte +@741 = .data:0x8049E6A4; // type:object size:0xC scope:local align:4 +@744 = .data:0x8049E6B0; // type:object size:0xC scope:local align:4 +@747 = .data:0x8049E6BC; // type:object size:0xC scope:local align:4 +@750 = .data:0x8049E6C8; // type:object size:0xC scope:local align:4 +@753 = .data:0x8049E6D4; // type:object size:0xC scope:local align:4 +@756 = .data:0x8049E6E0; // type:object size:0xC scope:local align:4 +@759 = .data:0x8049E6EC; // type:object size:0xC scope:local align:4 +@841 = .data:0x8049E6F8; // type:object size:0x4C scope:local align:4 +@1366 = .data:0x8049E744; // type:object size:0xC scope:local align:4 +@1369 = .data:0x8049E750; // type:object size:0xC scope:local align:4 +@1371 = .data:0x8049E75C; // type:object size:0xC scope:local align:4 +@1373 = .data:0x8049E768; // type:object size:0xC scope:local align:4 +@1375 = .data:0x8049E774; // type:object size:0xC scope:local align:4 +@1377 = .data:0x8049E780; // type:object size:0xC scope:local align:4 +@1379 = .data:0x8049E78C; // type:object size:0xC scope:local align:4 +@1381 = .data:0x8049E798; // type:object size:0xC scope:local align:4 +@1384 = .data:0x8049E7A4; // type:object size:0xC scope:local align:4 +@1386 = .data:0x8049E7B0; // type:object size:0xC scope:local align:4 +@1388 = .data:0x8049E7BC; // type:object size:0xC scope:local align:4 +@1390 = .data:0x8049E7C8; // type:object size:0xC scope:local align:4 +@1465 = .data:0x8049E7D4; // type:object size:0x4C scope:local align:4 +@1464 = .data:0x8049E820; // type:object size:0x4C scope:local align:4 +@1463 = .data:0x8049E86C; // type:object size:0x124 scope:local align:4 +@1559 = .data:0x8049E990; // type:object size:0x4C scope:local align:4 +@1589 = .data:0x8049E9DC; // type:object size:0xC scope:local align:4 +@1592 = .data:0x8049E9E8; // type:object size:0xC scope:local align:4 +@1594 = .data:0x8049E9F4; // type:object size:0xC scope:local align:4 +@1597 = .data:0x8049EA00; // type:object size:0xC scope:local align:4 +@1599 = .data:0x8049EA0C; // type:object size:0xC scope:local align:4 +@1601 = .data:0x8049EA18; // type:object size:0xC scope:local align:4 +@1603 = .data:0x8049EA24; // type:object size:0xC scope:local align:4 +@1677 = .data:0x8049EA30; // type:object size:0x4C scope:local align:4 +@1676 = .data:0x8049EA7C; // type:object size:0x4C scope:local align:4 +@1675 = .data:0x8049EAC8; // type:object size:0x100 scope:local align:4 +@1775 = .data:0x8049EBC8; // type:object size:0x4C scope:local align:4 +@1774 = .data:0x8049EC14; // type:object size:0x44 scope:local align:4 +@1805 = .data:0x8049EC58; // type:object size:0xC scope:local align:4 data:4byte +@1808 = .data:0x8049EC64; // type:object size:0xC scope:local align:4 data:4byte +@1886 = .data:0x8049EC70; // type:object size:0x4C scope:local align:4 +@1885 = .data:0x8049ECBC; // type:object size:0x4C scope:local align:4 +@1884 = .data:0x8049ED08; // type:object size:0x8C scope:local align:4 +@1916 = .data:0x8049ED94; // type:object size:0xC scope:local align:4 data:4byte +@2002 = .data:0x8049EDA0; // type:object size:0xC scope:local align:4 +@2005 = .data:0x8049EDAC; // type:object size:0xC scope:local align:4 +@2007 = .data:0x8049EDB8; // type:object size:0xC scope:local align:4 +@2009 = .data:0x8049EDC4; // type:object size:0xC scope:local align:4 +@2011 = .data:0x8049EDD0; // type:object size:0xC scope:local align:4 +@2013 = .data:0x8049EDDC; // type:object size:0xC scope:local align:4 +@2015 = .data:0x8049EDE8; // type:object size:0xC scope:local align:4 +@2017 = .data:0x8049EDF4; // type:object size:0xC scope:local align:4 +@2102 = .data:0x8049EE00; // type:object size:0x4C scope:local align:4 +@2101 = .data:0x8049EE4C; // type:object size:0x4C scope:local align:4 +@2100 = .data:0x8049EE98; // type:object size:0x120 scope:local align:4 +@2132 = .data:0x8049EFB8; // type:object size:0xC scope:local align:4 +@2135 = .data:0x8049EFC4; // type:object size:0xC scope:local align:4 +@2137 = .data:0x8049EFD0; // type:object size:0xC scope:local align:4 +@2139 = .data:0x8049EFDC; // type:object size:0xC scope:local align:4 +@2141 = .data:0x8049EFE8; // type:object size:0xC scope:local align:4 +@2143 = .data:0x8049EFF4; // type:object size:0xC scope:local align:4 +@2145 = .data:0x8049F000; // type:object size:0xC scope:local align:4 +@2147 = .data:0x8049F00C; // type:object size:0xC scope:local align:4 +@2150 = .data:0x8049F018; // type:object size:0xC scope:local align:4 +@2219 = .data:0x8049F024; // type:object size:0x4C scope:local align:4 +@2218 = .data:0x8049F070; // type:object size:0x4C scope:local align:4 +@2217 = .data:0x8049F0BC; // type:object size:0xF0 scope:local align:4 +__vt__Q27JStudio13TObject_sound = .data:0x8049F1AC; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TAdaptor_sound = .data:0x8049F1CC; // type:object size:0x44 scope:weak align:4 +__vt__Q27JStudio16TObject_particle = .data:0x8049F210; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio15TObject_message = .data:0x8049F270; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio16TAdaptor_message = .data:0x8049F290; // type:object size:0x24 scope:weak align:4 +__vt__Q27JStudio13TObject_light = .data:0x8049F2B4; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TAdaptor_light = .data:0x8049F2D4; // type:object size:0x28 scope:weak align:4 +__vt__Q27JStudio11TObject_fog = .data:0x8049F2FC; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio12TAdaptor_fog = .data:0x8049F31C; // type:object size:0x20 scope:weak align:4 +__vt__Q27JStudio14TObject_camera = .data:0x8049F33C; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio15TAdaptor_camera = .data:0x8049F35C; // type:object size:0x3C scope:weak align:4 +__vt__Q27JStudio20TObject_ambientLight = .data:0x8049F398; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio21TAdaptor_ambientLight = .data:0x8049F3B8; // type:object size:0x20 scope:weak align:4 +__vt__Q27JStudio13TObject_actor = .data:0x8049F3D8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TAdaptor_actor = .data:0x8049F3F8; // type:object size:0x50 scope:weak align:4 +__vt__Q27JStudio7TObject = .data:0x8049F448; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio8TAdaptor = .data:0x8049F468; // type:object size:0x20 scope:global align:4 +__vt__Q37JStudio14TVariableValue13TOutput_none_ = .data:0x8049F488; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio14TVariableValue7TOutput = .data:0x8049F498; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_ = .data:0x8049F4A8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_ = .data:0x8049F4B8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_ = .data:0x8049F4C8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_ = .data:0x8049F4D8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_ = .data:0x8049F4E8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio3stb6TParse = .data:0x8049F4F8; // type:object size:0x20 scope:global align:4 +__vt__Q37JStudio3stb8TFactory = .data:0x8049F518; // type:object size:0x14 scope:global align:4 +__vt__Q37JStudio3stb8TControl = .data:0x8049F52C; // type:object size:0xC scope:global align:4 +__vt__Q37JStudio3stb15TObject_control = .data:0x8049F538; // type:object size:0x20 scope:weak align:4 +__vt__Q37JStudio3stb7TObject = .data:0x8049F558; // type:object size:0x20 scope:global align:4 +__vt__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_ = .data:0x8049F578; // type:object size:0x10 scope:global align:4 +__vt__Q214JStudio_JStage14TAdaptor_light = .data:0x8049F588; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x8049F5B0; // type:label scope:local +@869 = .data:0x8049F5B0; // type:object size:0xC scope:local align:4 data:4byte +@878 = .data:0x8049F5BC; // type:object size:0xC scope:local align:4 data:4byte +@895 = .data:0x8049F5C8; // type:object size:0xC scope:local align:4 data:4byte +@1052 = .data:0x8049F5D4; // type:object size:0xC scope:local align:4 +@1053 = .data:0x8049F5E0; // type:object size:0xC scope:local align:4 +@1058 = .data:0x8049F5EC; // type:object size:0xC scope:local align:4 +@1059 = .data:0x8049F5F8; // type:object size:0xC scope:local align:4 +@1060 = .data:0x8049F604; // type:object size:0xC scope:local align:4 +@1065 = .data:0x8049F610; // type:object size:0xC scope:local align:4 +@1066 = .data:0x8049F61C; // type:object size:0xC scope:local align:4 +@1067 = .data:0x8049F628; // type:object size:0xC scope:local align:4 +__vt__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_ = .data:0x8049F634; // type:object size:0x10 scope:global align:4 +__vt__Q214JStudio_JStage14TAdaptor_actor = .data:0x8049F644; // type:object size:0x50 scope:global align:4 +__vt__Q214JStudio_JStage81TVariableValueOutput_object_ = .data:0x8049F6E4; // type:object size:0x10 scope:weak align:4 +__vt__Q214JStudio_JStage21TAdaptor_ambientLight = .data:0x8049F708; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x8049F728; // type:label scope:local +@994 = .data:0x8049F728; // type:object size:0xC scope:local align:4 data:4byte +@995 = .data:0x8049F734; // type:object size:0xC scope:local align:4 +@999 = .data:0x8049F740; // type:object size:0xC scope:local align:4 +@1000 = .data:0x8049F74C; // type:object size:0xC scope:local align:4 +@1004 = .data:0x8049F758; // type:object size:0xC scope:local align:4 +@1005 = .data:0x8049F764; // type:object size:0xC scope:local align:4 +@1009 = .data:0x8049F770; // type:object size:0xC scope:local align:4 +@1010 = .data:0x8049F77C; // type:object size:0xC scope:local align:4 +__vt__Q214JStudio_JStage15TAdaptor_camera = .data:0x8049F788; // type:object size:0x3C scope:global align:4 +__vt__Q214JStudio_JStage83TVariableValueOutput_object_ = .data:0x8049F800; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8049F820; // type:label scope:local +@827 = .data:0x8049F820; // type:object size:0xC scope:local align:4 data:4byte +@828 = .data:0x8049F82C; // type:object size:0xC scope:local align:4 +@832 = .data:0x8049F838; // type:object size:0xC scope:local align:4 +@833 = .data:0x8049F844; // type:object size:0xC scope:local align:4 +__vt__Q214JStudio_JStage12TAdaptor_fog = .data:0x8049F850; // type:object size:0x20 scope:global align:4 +__vt__Q214JStudio_JStage77TVariableValueOutput_object_ = .data:0x8049F890; // type:object size:0x10 scope:weak align:4 +__vt__Q214JStudio_JStage13TCreateObject = .data:0x8049F8B0; // type:object size:0x10 scope:global align:4 +__vt__Q216JStudio_JMessage16TAdaptor_message = .data:0x8049F8C0; // type:object size:0x24 scope:global align:4 +__vt__Q216JStudio_JMessage13TCreateObject = .data:0x8049F8E8; // type:object size:0x14 scope:global align:4 +__vt__Q216JStudio_JMessage18TCreateObject_base = .data:0x8049F8FC; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x8049F910; // type:label scope:local +@1497 = .data:0x8049F910; // type:object size:0xC scope:local align:4 data:4byte +@1500 = .data:0x8049F91C; // type:object size:0xC scope:local align:4 +@1503 = .data:0x8049F928; // type:object size:0xC scope:local align:4 +@1506 = .data:0x8049F934; // type:object size:0xC scope:local align:4 +@1509 = .data:0x8049F940; // type:object size:0xC scope:local align:4 +__vt__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_ = .data:0x8049F94C; // type:object size:0x10 scope:global align:4 +__vt__Q214JStudio_JAudio14TAdaptor_sound = .data:0x8049F95C; // type:object size:0x44 scope:global align:4 +__vt__Q214JStudio_JAudio13TCreateObject = .data:0x8049F9F8; // type:object size:0x10 scope:global align:4 +__vt__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya> = .data:0x8049FA08; // type:object size:0x2C scope:weak align:4 +__vt__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya> = .data:0x8049FA34; // type:object size:0x2C scope:weak align:4 +__vt__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x8049FA60; // type:object size:0x2C scope:weak align:4 +__vt__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x8049FA8C; // type:object size:0x2C scope:weak align:4 +__vt__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic> = .data:0x8049FAB8; // type:object size:0x2C scope:weak align:4 +__vt__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic> = .data:0x8049FAE4; // type:object size:0x2C scope:weak align:4 +__vt__22J3DMtxCalcBlendAnmBase = .data:0x8049FB10; // type:object size:0x2C scope:weak align:4 +__vt__10J3DMtxCalc = .data:0x8049FB3C; // type:object size:0x2C scope:weak align:4 +sMessageBuffer__7JKRAram = .data:0x8049FB68; // type:object size:0x10 scope:global align:4 +sMessageQueue__7JKRAram = .data:0x8049FB78; // type:object size:0x20 scope:global align:4 +__vt__7JKRAram = .data:0x8049FB98; // type:object size:0x10 scope:global align:4 +__vt__7JKRFile = .data:0x8049FBA8; // type:object size:0x20 scope:weak align:4 +__vt__14JKRAramArchive = .data:0x8049FBC8; // type:object size:0x50 scope:global align:4 +__vt__12JKRAramBlock = .data:0x8049FC18; // type:object size:0xC scope:global align:4 +__vt__11JKRAramHeap = .data:0x8049FC28; // type:object size:0xC scope:global align:4 +sMessageBuffer__13JKRAramStream = .data:0x8049FC38; // type:object size:0x10 scope:global align:4 +sMessageQueue__13JKRAramStream = .data:0x8049FC48; // type:object size:0x20 scope:global align:4 +__vt__13JKRAramStream = .data:0x8049FC68; // type:object size:0x10 scope:global align:4 +__vt__10JKRArchive = .data:0x8049FC78; // type:object size:0x50 scope:global align:4 +__vt__14JKRCompArchive = .data:0x8049FCC8; // type:object size:0x50 scope:global align:4 +sMessageBuffer__9JKRDecomp = .data:0x8049FD18; // type:object size:0x10 scope:global align:4 +sMessageQueue__9JKRDecomp = .data:0x8049FD28; // type:object size:0x20 scope:global align:4 +__vt__9JKRDecomp = .data:0x8049FD48; // type:object size:0x10 scope:global align:4 +__vt__11JKRDisposer = .data:0x8049FD58; // type:object size:0xC scope:global align:4 +__vt__10JKRDvdFile = .data:0x8049FD68; // type:object size:0x24 scope:global align:4 +__vt__13JKRDvdArchive = .data:0x8049FD90; // type:object size:0x50 scope:global align:4 +__vt__10JKRExpHeap = .data:0x8049FDE0; // type:object size:0x60 scope:global align:4 +__vt__13JKRFileFinder = .data:0x8049FE40; // type:object size:0x10 scope:weak align:4 +__vt__12JKRFileCache = .data:0x8049FE50; // type:object size:0x4C scope:global align:4 +__vt__12JKRDvdFinder = .data:0x8049FEA0; // type:object size:0x10 scope:global align:4 +__vt__12JKRArcFinder = .data:0x8049FEB0; // type:object size:0x10 scope:global align:4 +__vt__13JKRFileLoader = .data:0x8049FEC0; // type:object size:0x3C scope:global align:4 +__vt__7JKRHeap = .data:0x8049FF00; // type:object size:0x60 scope:global align:4 +__vt__13JKRMemArchive = .data:0x8049FF60; // type:object size:0x50 scope:global align:4 +__vt__12JKRSolidHeap = .data:0x8049FFB0; // type:object size:0x60 scope:global align:4 +__vt__7JKRTask = .data:0x804A0010; // type:object size:0x10 scope:global align:4 +__vt__9JKRThread = .data:0x804A0020; // type:object size:0x10 scope:global align:4 +__vt__10JSUIosBase = .data:0x804A0030; // type:object size:0xC scope:weak align:4 +__vt__20JSURandomInputStream = .data:0x804A0040; // type:object size:0x24 scope:global align:4 +__vt__14JSUInputStream = .data:0x804A0064; // type:object size:0x18 scope:global align:4 +__vt__20JSUMemoryInputStream = .data:0x804A0080; // type:object size:0x24 scope:global align:4 +__vt__18JSUFileInputStream = .data:0x804A00A8; // type:object size:0x24 scope:global align:4 +__vt__10JUTConsole = .data:0x804A00D0; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x804A00E0; // type:label scope:local +sAsciiTable__14JUTDirectPrint = .data:0x804A00E0; // type:object size:0x80 scope:global align:4 +sFontData__14JUTDirectPrint = .data:0x804A0160; // type:object size:0x100 scope:global align:4 +sFontData2__14JUTDirectPrint = .data:0x804A0260; // type:object size:0x134 scope:global align:4 +twiceBit$379 = .data:0x804A0394; // type:object size:0x10 scope:local align:4 +sMessageQueue__12JUTException = .data:0x804A03A8; // type:object size:0x20 scope:global align:4 +c3bcnt = .data:0x804A03C8; // type:object size:0x20 scope:local align:8 data:4byte +sCpuExpName__12JUTException = .data:0x804A03E8; // type:object size:0x44 scope:global align:4 +__vt__12JUTException = .data:0x804A042C; // type:object size:0x10 scope:global align:4 +__vt__8JUTFader = .data:0x804A0440; // type:object size:0x18 scope:global align:4 +__vt__7JUTFont = .data:0x804A0458; // type:object size:0x44 scope:weak align:4 +sChannelMask__Q210JUTGamePad7CRumble = .data:0x804A04A0; // type:object size:0x10 scope:global align:4 data:4byte +channel_mask = .data:0x804A04B0; // type:object size:0x10 scope:local align:4 data:4byte +__vt__10JUTGamePad = .data:0x804A04C0; // type:object size:0xC scope:global align:4 +__vt__12JUTGraphFifo = .data:0x804A04D0; // type:object size:0xC scope:global align:4 +__vt__10JUTNameTab = .data:0x804A04E0; // type:object size:0xC scope:weak align:4 +__vt__10JUTResFont = .data:0x804A04F0; // type:object size:0x4C scope:global align:4 +saoAboutEncoding___10JUTRomFont = .data:0x804A0540; // type:object size:0x18 scope:global align:4 +__vt__10JUTRomFont = .data:0x804A0558; // type:object size:0x44 scope:global align:4 +__vt__8JUTVideo = .data:0x804A05A0; // type:object size:0xC scope:global align:4 +__vt__12JUTCacheFont = .data:0x804A05B0; // type:object size:0x4C scope:global align:4 +__vt__13J2DOrthoGraph = .data:0x804A0600; // type:object size:0x28 scope:global align:4 +__vt__13J2DPerspGraph = .data:0x804A0628; // type:object size:0x28 scope:global align:4 +__vt__14J2DGrafContext = .data:0x804A0650; // type:object size:0x28 scope:global align:4 +@3085 = .data:0x804A0678; // type:object size:0x20 scope:local align:4 +__vt__7J2DPane = .data:0x804A0698; // type:object size:0x94 scope:global align:4 +__vt__10J2DPicture = .data:0x804A0730; // type:object size:0x14C scope:global align:4 +@936 = .data:0x804A0880; // type:object size:0x60 scope:local align:4 +__vt__8J2DPrint = .data:0x804A08E0; // type:object size:0xC scope:global align:4 +__vt__9J2DScreen = .data:0x804A08F0; // type:object size:0x9C scope:global align:4 +__vt__10J2DTextBox = .data:0x804A0990; // type:object size:0xBC scope:global align:4 +__vt__9J2DWindow = .data:0x804A0A50; // type:object size:0xCC scope:global align:4 +__vt__11J2DWindowEx = .data:0x804A0B20; // type:object size:0xCC scope:global align:4 +__vt__20J2DAnmFullLoader_v15 = .data:0x804A0BF0; // type:object size:0x14 scope:global align:4 +__vt__19J2DAnmKeyLoader_v15 = .data:0x804A0C04; // type:object size:0x14 scope:global align:4 +__vt__12J2DAnmLoader = .data:0x804A0C18; // type:object size:0x14 scope:weak align:4 +__vt__20J2DAnmVisibilityFull = .data:0x804A0C2C; // type:object size:0x10 scope:weak align:4 +__vt__14J2DAnmVtxColor = .data:0x804A0C3C; // type:object size:0x14 scope:weak align:4 +__vt__15J2DAnmTransform = .data:0x804A0C50; // type:object size:0x14 scope:weak align:4 +__vt__10J2DAnmBase = .data:0x804A0C64; // type:object size:0x10 scope:weak align:4 +__vt__15J2DIndBlockFull = .data:0x804A0C78; // type:object size:0x38 scope:global align:4 +__vt__11J2DIndBlock = .data:0x804A0CB0; // type:object size:0x38 scope:weak align:4 +__vt__13J2DTevBlock16 = .data:0x804A0CE8; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock8 = .data:0x804A0DA4; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock4 = .data:0x804A0E60; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock2 = .data:0x804A0F1C; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock1 = .data:0x804A0FD8; // type:object size:0xBC scope:global align:4 +__vt__11J2DTevBlock = .data:0x804A1094; // type:object size:0xBC scope:global align:4 +__vt__14J2DTexGenBlock = .data:0x804A1150; // type:object size:0xC scope:global align:4 +__vt__15J2DIndBlockNull = .data:0x804A1160; // type:object size:0x38 scope:weak align:4 +__vt__11J2DMaterial = .data:0x804A1198; // type:object size:0xC scope:global align:4 +__vt__13J2DColorBlock = .data:0x804A11A4; // type:object size:0xC scope:weak align:4 +__vt__12J2DPictureEx = .data:0x804A11B0; // type:object size:0x14C scope:global align:4 +__vt__12J2DTextBoxEx = .data:0x804A1300; // type:object size:0xBC scope:global align:4 +__vt__15J2DAnmTevRegKey = .data:0x804A13C0; // type:object size:0x10 scope:global align:4 +__vt__16J2DAnmTexPattern = .data:0x804A13D0; // type:object size:0x10 scope:global align:4 +__vt__19J2DAnmTextureSRTKey = .data:0x804A13E0; // type:object size:0x10 scope:global align:4 +__vt__17J2DAnmVtxColorKey = .data:0x804A13F0; // type:object size:0x14 scope:global align:4 +__vt__18J2DAnmVtxColorFull = .data:0x804A1404; // type:object size:0x14 scope:global align:4 +__vt__14J2DAnmColorKey = .data:0x804A1418; // type:object size:0x14 scope:global align:4 +__vt__15J2DAnmColorFull = .data:0x804A142C; // type:object size:0x14 scope:global align:4 +__vt__11J2DAnmColor = .data:0x804A1440; // type:object size:0x14 scope:global align:4 +__vt__18J2DAnmTransformKey = .data:0x804A1454; // type:object size:0x18 scope:global align:4 +__vt__19J2DAnmTransformFull = .data:0x804A146C; // type:object size:0x14 scope:global align:4 +NullTexData = .data:0x804A1480; // type:object size:0x10 scope:local align:32 +j3dIdentityMtx = .data:0x804A1490; // type:object size:0x30 scope:local align:4 +IndMtx = .data:0x804A14C0; // type:object size:0x18 scope:local align:4 +sDifferedRegister = .data:0x804A14D8; // type:object size:0x1C scope:local align:4 data:4byte +sSizeOfDiffered = .data:0x804A14F4; // type:object size:0x1C scope:local align:4 data:4byte +__vt__14J3DShapePacket = .data:0x804A1510; // type:object size:0x14 scope:global align:4 +__vt__12J3DMatPacket = .data:0x804A1524; // type:object size:0x14 scope:global align:4 +__vt__13J3DDrawPacket = .data:0x804A1538; // type:object size:0x14 scope:global align:4 +__vt__9J3DPacket = .data:0x804A154C; // type:object size:0x14 scope:global align:4 +__vt__8J3DShape = .data:0x804A1560; // type:object size:0x18 scope:global align:4 +__vt__17J3DLockedMaterial = .data:0x804A1578; // type:object size:0x30 scope:global align:4 +__vt__18J3DPatchedMaterial = .data:0x804A15A8; // type:object size:0x30 scope:global align:4 +__vt__11J3DMaterial = .data:0x804A15D8; // type:object size:0x30 scope:global align:4 +__vt__10J3DPEBlock = .data:0x804A1608; // type:object size:0x7C scope:weak align:4 +__vt__15J3DIndBlockNull = .data:0x804A1684; // type:object size:0x4C scope:weak align:4 +__vt__11J3DIndBlock = .data:0x804A16D0; // type:object size:0x4C scope:weak align:4 +__vt__14J3DTexGenBlock = .data:0x804A171C; // type:object size:0x6C scope:weak align:4 +__vt__13J3DColorBlock = .data:0x804A1788; // type:object size:0x88 scope:weak align:4 +qMtx$1682 = .data:0x804A1810; // type:object size:0x30 scope:local align:4 +qMtx2$1683 = .data:0x804A1840; // type:object size:0x30 scope:local align:4 +@1740 = .data:0x804A1870; // type:object size:0x30 scope:local align:4 +qMtx$1744 = .data:0x804A18A0; // type:object size:0x30 scope:local align:4 +qMtx2$1745 = .data:0x804A18D0; // type:object size:0x30 scope:local align:4 +@1812 = .data:0x804A1900; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x804A1930; // type:label scope:local +@1324 = .data:0x804A1930; // type:object size:0xC scope:local align:4 data:4byte +@1325 = .data:0x804A193C; // type:object size:0xC scope:local align:4 +@1326 = .data:0x804A1948; // type:object size:0xC scope:local align:4 +@1327 = .data:0x804A1954; // type:object size:0xC scope:local align:4 +@1328 = .data:0x804A1960; // type:object size:0xC scope:local align:4 +@1329 = .data:0x804A196C; // type:object size:0xC scope:local align:4 +sortFuncTable__13J3DDrawBuffer = .data:0x804A1978; // type:object size:0x48 scope:global align:4 data:4byte +@1330 = .data:0x804A19C0; // type:object size:0xC scope:local align:4 +@1331 = .data:0x804A19CC; // type:object size:0xC scope:local align:4 +drawFuncTable__13J3DDrawBuffer = .data:0x804A19D8; // type:object size:0x18 scope:global align:4 data:4byte +__vt__8J3DModel = .data:0x804A19F0; // type:object size:0x24 scope:global align:4 +__vt__12J3DMtxBuffer = .data:0x804A1A14; // type:object size:0xC scope:weak align:4 +__vt__14J3DAnmColorKey = .data:0x804A1A20; // type:object size:0x14 scope:global align:4 +__vt__10J3DAnmBase = .data:0x804A1A34; // type:object size:0x10 scope:weak align:4 +__vt__11J3DAnmColor = .data:0x804A1A44; // type:object size:0x14 scope:weak align:4 +__vt__15J3DAnmColorFull = .data:0x804A1A58; // type:object size:0x14 scope:global align:4 +__vt__17J3DAnmVtxColorKey = .data:0x804A1A6C; // type:object size:0x14 scope:global align:4 +__vt__14J3DAnmVtxColor = .data:0x804A1A80; // type:object size:0x14 scope:weak align:4 +__vt__18J3DAnmVtxColorFull = .data:0x804A1A94; // type:object size:0x14 scope:global align:4 +__vt__16J3DAnmClusterKey = .data:0x804A1AA8; // type:object size:0x14 scope:global align:4 +__vt__13J3DAnmCluster = .data:0x804A1ABC; // type:object size:0x14 scope:weak align:4 +__vt__17J3DAnmClusterFull = .data:0x804A1AD0; // type:object size:0x14 scope:global align:4 +__vt__19J3DAnmTransformFull = .data:0x804A1AE4; // type:object size:0x14 scope:global align:4 +__vt__15J3DAnmTransform = .data:0x804A1AF8; // type:object size:0x14 scope:weak align:4 +__vt__14J3DMaterialAnm = .data:0x804A1B10; // type:object size:0x10 scope:global align:4 +__vt__11J3DTexNoAnm = .data:0x804A1B20; // type:object size:0xC scope:weak align:4 +__vt__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya> = .data:0x804A1B30; // type:object size:0x2C scope:weak align:4 +__vt__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x804A1B5C; // type:object size:0x2C scope:weak align:4 +__vt__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic> = .data:0x804A1B88; // type:object size:0x2C scope:weak align:4 +__vt__17J3DMtxCalcAnmBase = .data:0x804A1BB4; // type:object size:0x2C scope:weak align:4 +__vt__14J3DPEBlockNull = .data:0x804A1BE0; // type:object size:0x7C scope:weak align:4 +__vt__15J3DTevBlockNull = .data:0x804A1C5C; // type:object size:0xDC scope:weak align:4 +__vt__18J3DTexGenBlockNull = .data:0x804A1D38; // type:object size:0x6C scope:weak align:4 +__vt__17J3DColorBlockNull = .data:0x804A1DA4; // type:object size:0x88 scope:weak align:4 +__vt__18J3DModelLoader_v21 = .data:0x804A1E30; // type:object size:0x44 scope:global align:4 +__vt__18J3DModelLoader_v26 = .data:0x804A1E74; // type:object size:0x44 scope:global align:4 +__vt__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya> = .data:0x804A1EB8; // type:object size:0x2C scope:weak align:4 +__vt__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x804A1EE4; // type:object size:0x2C scope:weak align:4 +__vt__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic> = .data:0x804A1F10; // type:object size:0x2C scope:weak align:4 +__vt__19J3DMtxCalcNoAnmBase = .data:0x804A1F3C; // type:object size:0x2C scope:weak align:4 +__vt__10J3DTexture = .data:0x804A1F68; // type:object size:0xC scope:weak align:4 +__vt__14J3DModelLoader = .data:0x804A1F74; // type:object size:0x44 scope:global align:4 +__vt__19J3DAnmKeyLoader_v15 = .data:0x804A1FB8; // type:object size:0x14 scope:global align:4 +__vt__20J3DAnmFullLoader_v15 = .data:0x804A1FCC; // type:object size:0x14 scope:global align:4 +__vt__12J3DAnmLoader = .data:0x804A1FE0; // type:object size:0x14 scope:weak align:4 +__vt__20J3DAnmVisibilityFull = .data:0x804A1FF4; // type:object size:0x10 scope:weak align:4 +__vt__16J3DAnmTexPattern = .data:0x804A2004; // type:object size:0x10 scope:weak align:4 +__vt__15J3DAnmTevRegKey = .data:0x804A2014; // type:object size:0x10 scope:weak align:4 +__vt__19J3DAnmTextureSRTKey = .data:0x804A2024; // type:object size:0x10 scope:weak align:4 +__vt__18J3DAnmTransformKey = .data:0x804A2034; // type:object size:0x14 scope:weak align:4 +@897 = .data:0x804A2048; // type:object size:0x44 scope:local align:4 +@947 = .data:0x804A208C; // type:object size:0x54 scope:local align:4 +c2r$1298 = .data:0x804A20E0; // type:object size:0x10 scope:local align:4 +@5844 = .data:0x804A20F0; // type:object size:0x30 scope:local align:4 +@5892 = .data:0x804A2120; // type:object size:0x30 scope:local align:4 +@5931 = .data:0x804A2150; // type:object size:0x30 scope:local align:4 +@5967 = .data:0x804A2180; // type:object size:0x30 scope:local align:4 +__vt__14J3DPEBlockFull = .data:0x804A21B0; // type:object size:0x7C scope:global align:4 +__vt__16J3DPEBlockFogOff = .data:0x804A222C; // type:object size:0x7C scope:global align:4 +__vt__13J3DTevBlock16 = .data:0x804A22A8; // type:object size:0xDC scope:global align:4 +__vt__12J3DTevBlock4 = .data:0x804A2384; // type:object size:0xDC scope:global align:4 +__vt__12J3DTevBlock2 = .data:0x804A2460; // type:object size:0xDC scope:global align:4 +__vt__12J3DTevBlock1 = .data:0x804A253C; // type:object size:0xDC scope:global align:4 +__vt__18J3DTevBlockPatched = .data:0x804A2618; // type:object size:0xDC scope:global align:4 +__vt__19J3DTexGenBlockBasic = .data:0x804A26F4; // type:object size:0x6C scope:global align:4 +__vt__15J3DTexGenBlock4 = .data:0x804A2760; // type:object size:0x6C scope:global align:4 +__vt__21J3DTexGenBlockPatched = .data:0x804A27CC; // type:object size:0x6C scope:global align:4 +__vt__20J3DColorBlockLightOn = .data:0x804A2838; // type:object size:0x88 scope:global align:4 +__vt__22J3DColorBlockAmbientOn = .data:0x804A28C0; // type:object size:0x88 scope:global align:4 +__vt__13J3DPEBlockXlu = .data:0x804A2948; // type:object size:0x7C scope:global align:4 +__vt__17J3DPEBlockTexEdge = .data:0x804A29C4; // type:object size:0x7C scope:global align:4 +__vt__13J3DPEBlockOpa = .data:0x804A2A40; // type:object size:0x7C scope:global align:4 +__vt__15J3DIndBlockFull = .data:0x804A2ABC; // type:object size:0x4C scope:global align:4 +__vt__11J3DTevBlock = .data:0x804A2B08; // type:object size:0xDC scope:global align:4 +__vt__21J3DColorBlockLightOff = .data:0x804A2BE4; // type:object size:0x88 scope:global align:4 +__vt__13J3DShapeTable = .data:0x804A2C70; // type:object size:0xC scope:weak align:4 +__vt__12J3DModelData = .data:0x804A2C7C; // type:object size:0xC scope:weak align:4 +__vt__16J3DMaterialTable = .data:0x804A2C88; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x804A2C98; // type:label scope:local +@1470 = .data:0x804A2C98; // type:object size:0xC scope:local align:4 data:4byte +@1471 = .data:0x804A2CA4; // type:object size:0xC scope:local align:4 +@1472 = .data:0x804A2CB0; // type:object size:0xC scope:local align:4 +@1473 = .data:0x804A2CBC; // type:object size:0xC scope:local align:4 +sMtxLoadPipeline__11J3DShapeMtx = .data:0x804A2CC8; // type:object size:0x30 scope:global align:4 data:4byte +@1474 = .data:0x804A2CF8; // type:object size:0xC scope:local align:4 +@1475 = .data:0x804A2D04; // type:object size:0xC scope:local align:4 +@1476 = .data:0x804A2D10; // type:object size:0xC scope:local align:4 +@1477 = .data:0x804A2D1C; // type:object size:0xC scope:local align:4 +sMtxLoadPipeline__21J3DShapeMtxConcatView = .data:0x804A2D28; // type:object size:0x30 scope:global align:4 data:4byte +@1478 = .data:0x804A2D58; // type:object size:0xC scope:local align:4 +@1479 = .data:0x804A2D64; // type:object size:0xC scope:local align:4 +@1480 = .data:0x804A2D70; // type:object size:0xC scope:local align:4 +@1481 = .data:0x804A2D7C; // type:object size:0xC scope:local align:4 +sMtxLoadLODPipeline__21J3DShapeMtxConcatView = .data:0x804A2D88; // type:object size:0x30 scope:global align:4 data:4byte +qMtx$1532 = .data:0x804A2DB8; // type:object size:0x30 scope:local align:4 +qMtx2$1533 = .data:0x804A2DE8; // type:object size:0x30 scope:local align:4 +@1660 = .data:0x804A2E18; // type:object size:0x30 scope:local align:4 +@1659 = .data:0x804A2E48; // type:object size:0x30 scope:local align:4 +mtxCache$1887 = .data:0x804A2E78; // type:object size:0x14 scope:local align:4 +__vt__28J3DShapeMtxYBBoardConcatView = .data:0x804A2E8C; // type:object size:0x28 scope:global align:4 +__vt__27J3DShapeMtxBBoardConcatView = .data:0x804A2EB4; // type:object size:0x28 scope:global align:4 +__vt__26J3DShapeMtxMultiConcatView = .data:0x804A2EDC; // type:object size:0x28 scope:global align:4 +__vt__16J3DShapeMtxMulti = .data:0x804A2F04; // type:object size:0x20 scope:global align:4 +__vt__21J3DShapeMtxConcatView = .data:0x804A2F24; // type:object size:0x28 scope:global align:4 +__vt__11J3DShapeMtx = .data:0x804A2F4C; // type:object size:0x20 scope:global align:4 +@1522 = .data:0x804A2F70; // type:object size:0x4C scope:local align:4 +__vt__12J3DJointTree = .data:0x804A2FBC; // type:object size:0x10 scope:global align:4 +__vt__15J3DVtxColorCalc = .data:0x804A2FD0; // type:object size:0x10 scope:global align:4 +__vt__12J3DShapeDraw = .data:0x804A2FE0; // type:object size:0xC scope:weak align:4 +e_mtx = .data:0x804A3000; // type:object size:0x30 scope:global align:4 +clear_z_TX = .data:0x804A3040; // type:object size:0x40 scope:local align:32 +__vt__10JFWDisplay = .data:0x804A3080; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x804A30A0; // type:label scope:local +jpa_dl = .data:0x804A30A0; // type:object size:0x20 scope:local align:32 +jpa_dl_x = .data:0x804A30C0; // type:object size:0x20 scope:local align:32 +p_prj = .data:0x804A30E0; // type:object size:0xC scope:local align:4 +p_direction = .data:0x804A30EC; // type:object size:0x14 scope:local align:4 +p_rot = .data:0x804A3100; // type:object size:0x14 scope:local align:4 +p_plane = .data:0x804A3114; // type:object size:0xC scope:local align:4 +st_bm__12JPABaseShape = .data:0x804A3120; // type:object size:0xC scope:global align:4 +st_bf__12JPABaseShape = .data:0x804A312C; // type:object size:0x28 scope:global align:4 +st_lo__12JPABaseShape = .data:0x804A3154; // type:object size:0x40 scope:global align:4 +st_c__12JPABaseShape = .data:0x804A3194; // type:object size:0x20 scope:global align:4 +st_ao__12JPABaseShape = .data:0x804A31B4; // type:object size:0x10 scope:global align:4 +st_ca__12JPABaseShape = .data:0x804A31C4; // type:object size:0x60 scope:global align:4 +st_aa__12JPABaseShape = .data:0x804A3224; // type:object size:0x20 scope:global align:4 +@2823 = .data:0x804A3248; // type:object size:0x1C scope:local align:4 +@3541 = .data:0x804A3268; // type:object size:0x24 scope:local align:4 +__vt__12JPAFieldBase = .data:0x804A328C; // type:object size:0x14 scope:weak align:4 +__vt__12JPAFieldSpin = .data:0x804A32A0; // type:object size:0x14 scope:global align:4 +__vt__12JPAFieldDrag = .data:0x804A32B4; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldRandom = .data:0x804A32C8; // type:object size:0x14 scope:global align:4 +__vt__18JPAFieldConvection = .data:0x804A32DC; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldVortex = .data:0x804A32F0; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldNewton = .data:0x804A3304; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldMagnet = .data:0x804A3318; // type:object size:0x14 scope:global align:4 +__vt__11JPAFieldAir = .data:0x804A332C; // type:object size:0x14 scope:global align:4 +__vt__15JPAFieldGravity = .data:0x804A3340; // type:object size:0x14 scope:global align:4 +__vt__19JPAParticleCallBack = .data:0x804A3358; // type:object size:0x14 scope:weak align:4 +jpa_pos = .data:0x804A3380; // type:object size:0x144 scope:local align:32 +jpa_crd = .data:0x804A34E0; // type:object size:0x20 scope:local align:32 +@3059 = .data:0x804A3500; // type:object size:0x2C scope:local align:4 +@3058 = .data:0x804A352C; // type:object size:0x2C scope:local align:4 +@3694 = .data:0x804A3558; // type:object size:0x2C scope:local align:4 +__vt__10JPATexture = .data:0x804A3588; // type:object size:0xC scope:weak align:4 +__vt__Q26JStage7TSystem = .data:0x804A3598; // type:object size:0x50 scope:global align:4 +__vt__Q26JStage7TCamera = .data:0x804A35E8; // type:object size:0x94 scope:global align:4 +__vt__Q26JStage7TObject = .data:0x804A3680; // type:object size:0x3C scope:global align:4 +__vt__Q26JStage6TActor = .data:0x804A36C0; // type:object size:0x8C scope:global align:4 +__vt__12JASBasicBank = .data:0x804A3750; // type:object size:0x14 scope:global align:4 +__vt__7JASBank = .data:0x804A3764; // type:object size:0x14 scope:weak align:4 +__vt__12JASBasicInst = .data:0x804A3778; // type:object size:0x18 scope:global align:4 +__vt__7JASInst = .data:0x804A3790; // type:object size:0x14 scope:weak align:4 +__vt__Q216JASBasicWaveBank10TWaveGroup = .data:0x804A37A8; // type:object size:0x14 scope:global align:4 +__vt__13JASWaveHandle = .data:0x804A37BC; // type:object size:0x14 scope:weak align:4 +__vt__Q216JASBasicWaveBank11TWaveHandle = .data:0x804A37D0; // type:object size:0x14 scope:weak align:4 +__vt__16JASBasicWaveBank = .data:0x804A37E4; // type:object size:0x14 scope:global align:4 +__vt__11JASWaveBank = .data:0x804A37F8; // type:object size:0x14 scope:weak align:4 +__vt__13JASInstEffect = .data:0x804A3810; // type:object size:0xC scope:weak align:4 +__vt__10JASDrumSet = .data:0x804A3820; // type:object size:0x14 scope:global align:4 +__vt__11JASInstRand = .data:0x804A3838; // type:object size:0xC scope:global align:4 +__vt__12JASInstSense = .data:0x804A3848; // type:object size:0xC scope:global align:4 +__vt__Q217JASSimpleWaveBank11TWaveHandle = .data:0x804A3858; // type:object size:0x14 scope:weak align:4 +__vt__17JASSimpleWaveBank = .data:0x804A386C; // type:object size:0x28 scope:global align:4 +sCurrentDir__16JASWaveArcLoader = .data:0x804A3898; // type:object size:0x40 scope:local align:4 +__vt__10JASWaveArc = .data:0x804A38D8; // type:object size:0x14 scope:global align:4 +__vt__11JASDisposer = .data:0x804A38EC; // type:object size:0xC scope:weak align:4 +CUTOFF_TO_IIR_TABLE__9JASPlayer = .data:0x804A38F8; // type:object size:0x400 scope:global align:4 +sAdsTable__9JASPlayer = .data:0x804A3CF8; // type:object size:0x18 scope:global align:4 data:2byte +sRelTable__9JASPlayer = .data:0x804A3D10; // type:object size:0xC scope:global align:4 +sVibTable__9JASPlayer = .data:0x804A3D1C; // type:object size:0x24 scope:global align:4 +sTreTable__9JASPlayer = .data:0x804A3D40; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x804A3D68; // type:label scope:local +@635 = .data:0x804A3D68; // type:object size:0xC scope:local align:4 data:4byte +@636 = .data:0x804A3D74; // type:object size:0xC scope:local align:4 +@637 = .data:0x804A3D80; // type:object size:0xC scope:local align:4 +@638 = .data:0x804A3D8C; // type:object size:0xC scope:local align:4 +@639 = .data:0x804A3D98; // type:object size:0xC scope:local align:4 +@640 = .data:0x804A3DA4; // type:object size:0xC scope:local align:4 +@641 = .data:0x804A3DB0; // type:object size:0xC scope:local align:4 +@642 = .data:0x804A3DBC; // type:object size:0xC scope:local align:4 +@643 = .data:0x804A3DC8; // type:object size:0xC scope:local align:4 +@644 = .data:0x804A3DD4; // type:object size:0xC scope:local align:4 +@645 = .data:0x804A3DE0; // type:object size:0xC scope:local align:4 +@646 = .data:0x804A3DEC; // type:object size:0xC scope:local align:4 +@647 = .data:0x804A3DF8; // type:object size:0xC scope:local align:4 +@648 = .data:0x804A3E04; // type:object size:0xC scope:local align:4 +@649 = .data:0x804A3E10; // type:object size:0xC scope:local align:4 +@650 = .data:0x804A3E1C; // type:object size:0xC scope:local align:4 +@651 = .data:0x804A3E28; // type:object size:0xC scope:local align:4 +@652 = .data:0x804A3E34; // type:object size:0xC scope:local align:4 +@653 = .data:0x804A3E40; // type:object size:0xC scope:local align:4 +@654 = .data:0x804A3E4C; // type:object size:0xC scope:local align:4 +@655 = .data:0x804A3E58; // type:object size:0xC scope:local align:4 +@656 = .data:0x804A3E64; // type:object size:0xC scope:local align:4 +@657 = .data:0x804A3E70; // type:object size:0xC scope:local align:4 +@658 = .data:0x804A3E7C; // type:object size:0xC scope:local align:4 +@659 = .data:0x804A3E88; // type:object size:0xC scope:local align:4 +@660 = .data:0x804A3E94; // type:object size:0xC scope:local align:4 +@661 = .data:0x804A3EA0; // type:object size:0xC scope:local align:4 +@662 = .data:0x804A3EAC; // type:object size:0xC scope:local align:4 +@663 = .data:0x804A3EB8; // type:object size:0xC scope:local align:4 +@664 = .data:0x804A3EC4; // type:object size:0xC scope:local align:4 +@665 = .data:0x804A3ED0; // type:object size:0xC scope:local align:4 +@666 = .data:0x804A3EDC; // type:object size:0xC scope:local align:4 +@667 = .data:0x804A3EE8; // type:object size:0xC scope:local align:4 +@668 = .data:0x804A3EF4; // type:object size:0xC scope:local align:4 +@669 = .data:0x804A3F00; // type:object size:0xC scope:local align:4 +@670 = .data:0x804A3F0C; // type:object size:0xC scope:local align:4 +@671 = .data:0x804A3F18; // type:object size:0xC scope:local align:4 +@672 = .data:0x804A3F24; // type:object size:0xC scope:local align:4 +@673 = .data:0x804A3F30; // type:object size:0xC scope:local align:4 +@674 = .data:0x804A3F3C; // type:object size:0xC scope:local align:4 +@675 = .data:0x804A3F48; // type:object size:0xC scope:local align:4 +@676 = .data:0x804A3F54; // type:object size:0xC scope:local align:4 +@677 = .data:0x804A3F60; // type:object size:0xC scope:local align:4 +@678 = .data:0x804A3F6C; // type:object size:0xC scope:local align:4 +@679 = .data:0x804A3F78; // type:object size:0xC scope:local align:4 +@680 = .data:0x804A3F84; // type:object size:0xC scope:local align:4 +@681 = .data:0x804A3F90; // type:object size:0xC scope:local align:4 +@682 = .data:0x804A3F9C; // type:object size:0xC scope:local align:4 +@683 = .data:0x804A3FA8; // type:object size:0xC scope:local align:4 +@684 = .data:0x804A3FB4; // type:object size:0xC scope:local align:4 +@685 = .data:0x804A3FC0; // type:object size:0xC scope:local align:4 +@686 = .data:0x804A3FCC; // type:object size:0xC scope:local align:4 +@687 = .data:0x804A3FD8; // type:object size:0xC scope:local align:4 +sCmdPList__12JASSeqParser = .data:0x804A3FE4; // type:object size:0x300 scope:global align:4 data:4byte +@1281 = .data:0x804A42E4; // type:object size:0x34 scope:local align:4 +@1665 = .data:0x804A4318; // type:object size:0x34 scope:local align:4 +@2004 = .data:0x804A4350; // type:object size:0x44 scope:local align:4 +@2208 = .data:0x804A4394; // type:object size:0x44 scope:local align:4 +@988 = .data:0x804A43D8; // type:object size:0x20 scope:local align:4 +@985 = .data:0x804A43F8; // type:object size:0x20 scope:local align:4 +__vt__10JASChannel = .data:0x804A4418; // type:object size:0x18 scope:global align:4 +__vt__109JASPoolAllocObject<10JASChannel,Q217JASCreationPolicy15NewFromRootHeap,Q217JASThreadingModel14SingleThreaded> = .data:0x804A4430; // type:object size:0xC scope:weak align:4 +SEND_TABLE__6JASDsp = .data:0x804A4440; // type:object size:0x18 scope:local align:4 +__vt__14JASAudioThread = .data:0x804A4458; // type:object size:0x10 scope:global align:4 +history$449 = .data:0x804A4468; // type:object size:0x28 scope:local align:4 data:4byte +__vt__13JASTaskThread = .data:0x804A4490; // type:object size:0x10 scope:global align:4 +@692 = .data:0x804A44A0; // type:object size:0x34 scope:local align:4 +jdsp = .data:0x804A44E0; // type:object size:0x1D20 scope:global align:32 +__vt__13JAIAnimeSound = .data:0x804A6200; // type:object size:0x48 scope:global align:4 +__vt__8JAIBasic = .data:0x804A6248; // type:object size:0x28 scope:global align:4 +dummyZeroVec__Q27JAInter5Const = .data:0x804A6270; // type:object size:0xC scope:global align:4 data:float +sCInfos_0__Q27JAInter5Const = .data:0x804A627C; // type:object size:0x20 scope:global align:4 +@927 = .data:0x804A62A0; // type:object size:0x24 scope:local align:4 +__vt__9JAIStream = .data:0x804A62C8; // type:object size:0xD4 scope:global align:4 +__vt__5JAISe = .data:0x804A639C; // type:object size:0xF4 scope:global align:4 +__vt__11JAISequence = .data:0x804A6490; // type:object size:0xD4 scope:global align:4 +__vt__8JAISound = .data:0x804A6564; // type:object size:0xD4 scope:global align:4 +@1126 = .data:0x804A6638; // type:object size:0x20 scope:local align:4 +__vt__Q27JAInter6Object = .data:0x804A6658; // type:object size:0x3C scope:global align:4 +__vt__Q27JAInter10ObjectBase = .data:0x804A6694; // type:object size:0x38 scope:global align:4 +__vt__10JADHioNode = .data:0x804A66D0; // type:object size:0xC scope:global align:4 +__vt__Q210JADUtility10PrmSetBase = .data:0x804A66E0; // type:object size:0x24 scope:global align:4 +__vt__Q210JADUtility10PrmSetTree = .data:0x804A6704; // type:object size:0x18 scope:weak align:4 +__vt__Q210JADUtility36NodeTree = .data:0x804A671C; // type:object size:0x18 scope:weak align:4 +__vt__Q210JADUtility6StrPrm = .data:0x804A6738; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility10PrmHio = .data:0x804A674C; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility7Prm = .data:0x804A6760; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility7PrmBase = .data:0x804A6774; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility11DataMgrNode = .data:0x804A6788; // type:object size:0x3C scope:weak align:4 +__vt__Q210JADUtility15DataLoadMgrNode = .data:0x804A67C4; // type:object size:0x34 scope:global align:4 +__vt__Q210JADUtility11DataMgrBase = .data:0x804A67F8; // type:object size:0x10 scope:global align:4 +@128 = .data:0x804A6808; // type:object size:0x6C scope:local align:4 +@499 = .data:0x804A6878; // type:object size:0x1C scope:local align:4 +@536 = .data:0x804A6894; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x804A68B0; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x804A68BC; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x804A68CC; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x804A68E0; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x804A6920; // type:object size:0x28 scope:global align:4 data:4byte +__files = .data:0x804A6948; // type:object size:0x140 scope:global align:4 +pow_10$416 = .data:0x804A6A88; // type:object size:0x40 scope:local align:8 +@1710 = .data:0x804A6AC8; // type:object size:0x124 scope:local align:4 +__ctype_map = .data:0x804A6BF0; // type:object size:0x100 scope:global align:4 +__lower_map = .data:0x804A6CF0; // type:object size:0x100 scope:global align:4 +__upper_map = .data:0x804A6DF0; // type:object size:0x100 scope:global align:4 +__lconv = .data:0x804A6EF0; // type:object size:0x38 scope:global align:4 data:4byte +@1248 = .data:0x804A6F28; // type:object size:0x84 scope:local align:4 +@1307 = .data:0x804A6FAC; // type:object size:0x84 scope:local align:4 +@1443 = .data:0x804A7030; // type:object size:0xE0 scope:local align:4 +@1442 = .data:0x804A7110; // type:object size:0x44 scope:local align:4 +@721 = .data:0x804A7158; // type:object size:0xD0 scope:local align:4 +@348 = .data:0x804A7228; // type:object size:0x44 scope:local align:4 +@431 = .data:0x804A726C; // type:object size:0x44 scope:local align:4 +...data.0 = .data:0x804A72B0; // type:label scope:local +@1 = .data:0x804A72B0; // type:object size:0x44 scope:local align:4 data:string +timing = .data:0x804A72F4; // type:object size:0x17C scope:local align:4 +taps = .data:0x804A7470; // type:object size:0x32 scope:local align:4 +@97 = .data:0x804A74A4; // type:object size:0x6C scope:local align:4 +@347 = .data:0x804A7510; // type:object size:0x29 scope:local align:4 data:string +@348 = .data:0x804A753C; // type:object size:0x29 scope:local align:4 data:string +@349 = .data:0x804A7568; // type:object size:0x29 scope:local align:4 data:string +@350 = .data:0x804A7594; // type:object size:0x29 scope:local align:4 data:string +@351 = .data:0x804A75C0; // type:object size:0x29 scope:local align:4 data:string +@352 = .data:0x804A75EC; // type:object size:0x29 scope:local align:4 data:string +@535 = .data:0x804A7618; // type:object size:0x4B scope:local align:4 data:string +@736 = .data:0x804A7664; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x804A7680; // type:label scope:local +@1 = .data:0x804A7680; // type:object size:0x44 scope:local align:4 data:string +...data.0 = .data:0x804A76C8; // type:label scope:local +@1 = .data:0x804A76C8; // type:object size:0x45 scope:local align:4 data:string +...data.0 = .data:0x804A7710; // type:label scope:local +@1 = .data:0x804A7710; // type:object size:0x46 scope:local align:4 data:string +ResetFunctionInfo = .data:0x804A7758; // type:object size:0x10 scope:local align:4 +CardData = .data:0x804A7780; // type:object size:0x160 scope:local align:32 +SectorSizeTable = .data:0x804A78E0; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x804A7900; // type:object size:0x20 scope:local align:4 +@9 = .data:0x804A7920; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x804A7938; // type:label scope:local +@1 = .data:0x804A7938; // type:object size:0x45 scope:local align:4 data:string +@19 = .data:0x804A7980; // type:object size:0x1E scope:local align:4 data:string +@20 = .data:0x804A79A0; // type:object size:0xC scope:local align:4 data:string +@21 = .data:0x804A79AC; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x804A79B8; // type:label scope:local +@266 = .data:0x804A79B8; // type:object size:0x1D scope:local align:4 data:string +@267 = .data:0x804A79D8; // type:object size:0x2D scope:local align:4 data:string +@268 = .data:0x804A7A08; // type:object size:0x2D scope:local align:4 data:string +@269 = .data:0x804A7A38; // type:object size:0x2D scope:local align:4 data:string +@270 = .data:0x804A7A68; // type:object size:0x2D scope:local align:4 data:string +@271 = .data:0x804A7A98; // type:object size:0x2D scope:local align:4 data:string +@294 = .data:0x804A7AC8; // type:object size:0x2B scope:local align:4 data:string +@119 = .data:0x804A7AF8; // type:object size:0xC8 scope:local align:4 data:string +@140 = .data:0x804A7BC0; // type:object size:0x37 scope:local align:4 data:string +@239 = .data:0x804A7BF8; // type:object size:0x34 scope:local align:4 data:string +@265 = .data:0x804A7C2C; // type:object size:0x2F scope:local align:4 data:string +@311 = .data:0x804A7C5C; // type:object size:0x3A scope:local align:4 data:string +...data.0 = .data:0x804A7C98; // type:label scope:local +@1 = .data:0x804A7C98; // type:object size:0x45 scope:local align:4 data:string +@18 = .data:0x804A7CE0; // type:object size:0xA scope:local align:4 data:string +@24 = .data:0x804A7CEC; // type:object size:0x34 scope:local align:4 data:string +@344 = .data:0x804A7D20; // type:object size:0x40 scope:local align:4 +ImmCommand = .data:0x804A7D60; // type:object size:0xC scope:local align:4 data:4byte +@768 = .data:0x804A7D6C; // type:object size:0x41 scope:local align:4 data:string +@907 = .data:0x804A7DB0; // type:object size:0x34 scope:local align:4 +@1011 = .data:0x804A7DE4; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x804A7E18; // type:object size:0x48 scope:local align:4 data:4byte +...data.0 = .data:0x804A7E60; // type:label scope:local +@38 = .data:0x804A7E60; // type:object size:0x1A scope:local align:4 data:string +@39 = .data:0x804A7E7C; // type:object size:0x16 scope:local align:4 data:string +@40 = .data:0x804A7E94; // type:object size:0x14 scope:local align:4 data:string +@41 = .data:0x804A7EA8; // type:object size:0x14 scope:local align:4 data:string +@44 = .data:0x804A7EBC; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x804A7ED0; // type:label scope:local +@1 = .data:0x804A7ED0; // type:object size:0x45 scope:local align:4 data:string +@450 = .data:0x804A7F18; // type:object size:0xF scope:local align:4 data:string +@451 = .data:0x804A7F28; // type:object size:0x10 scope:local align:4 data:string +@452 = .data:0x804A7F38; // type:object size:0x10 scope:local align:4 data:string +@453 = .data:0x804A7F48; // type:object size:0x10 scope:local align:4 data:string +@454 = .data:0x804A7F58; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x804A7F6C; // type:object size:0x11 scope:local align:4 data:string +@456 = .data:0x804A7F80; // type:object size:0xC scope:local align:4 data:string +@462 = .data:0x804A7F8C; // type:object size:0x9 scope:local align:4 data:string +@463 = .data:0x804A7F98; // type:object size:0xD scope:local align:4 data:string +@464 = .data:0x804A7FA8; // type:object size:0x12 scope:local align:4 data:string +@466 = .data:0x804A7FBC; // type:object size:0xE scope:local align:4 data:string +@467 = .data:0x804A7FCC; // type:object size:0xE scope:local align:4 data:string +@121 = .data:0x804A7FE0; // type:object size:0x68 scope:local align:4 +...data.0 = .data:0x804A8060; // type:label scope:local +@1 = .data:0x804A8060; // type:object size:0x44 scope:local align:4 data:string +DefaultTexData = .data:0x804A80C0; // type:object size:0x20 scope:local align:32 +GXDefaultVATList = .data:0x804A80E0; // type:object size:0xD0 scope:local align:4 +GXDefaultProjData = .data:0x804A81B0; // type:object size:0x1C scope:local align:4 +GXTexRegionAddrTable = .data:0x804A81CC; // type:object size:0xC0 scope:local align:4 data:4byte +GXResetFuncInfo = .data:0x804A828C; // type:object size:0x10 scope:local align:4 +@176 = .data:0x804A82A0; // type:object size:0x68 scope:local align:4 +@498 = .data:0x804A8308; // type:object size:0x44 scope:local align:4 +@525 = .data:0x804A834C; // type:object size:0x44 scope:local align:4 +@820 = .data:0x804A8390; // type:object size:0x1C scope:local align:4 +@819 = .data:0x804A83AC; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x804A8400; // type:object size:0x3C scope:global align:4 +GXNtsc480Int = .data:0x804A843C; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x804A8478; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x804A84B4; // type:object size:0x3C scope:global align:4 +GXEurgb60Hz480IntDf = .data:0x804A84F0; // type:object size:0x3C scope:global align:4 +@145 = .data:0x804A8530; // type:object size:0x1C scope:local align:4 +@104 = .data:0x804A8550; // type:object size:0xF4 scope:local align:4 +@145 = .data:0x804A8644; // type:object size:0xF4 scope:local align:4 +@224 = .data:0x804A8738; // type:object size:0x3C scope:local align:4 +...data.0 = .data:0x804A8778; // type:label scope:local +TEVCOpTableST0 = .data:0x804A8778; // type:object size:0x14 scope:local align:4 +TEVCOpTableST1 = .data:0x804A878C; // type:object size:0x14 scope:local align:4 +TEVAOpTableST0 = .data:0x804A87A0; // type:object size:0x14 scope:local align:4 +TEVAOpTableST1 = .data:0x804A87B4; // type:object size:0x14 scope:local align:4 +c2r$364 = .data:0x804A87C8; // type:object size:0x24 scope:local align:4 +p2f$362 = .data:0x804A87F0; // type:object size:0x20 scope:local align:4 +@281 = .data:0x804A8810; // type:object size:0x5C scope:local align:4 +@280 = .data:0x804A886C; // type:object size:0x90 scope:local align:4 +...data.0 = .data:0x804A8900; // type:label scope:local +@1 = .data:0x804A8900; // type:object size:0x44 scope:local align:4 data:string +@86 = .data:0x804A8944; // type:object size:0xD scope:local align:4 data:string +@87 = .data:0x804A8954; // type:object size:0x16 scope:local align:4 data:string +@88 = .data:0x804A896C; // type:object size:0xC scope:local align:4 data:string +@89 = .data:0x804A8978; // type:object size:0x9 scope:local align:4 data:string +@90 = .data:0x804A8984; // type:object size:0x10 scope:local align:4 data:string +@91 = .data:0x804A8994; // type:object size:0xB scope:local align:4 data:string +@92 = .data:0x804A89A0; // type:object size:0xE scope:local align:4 data:string +@93 = .data:0x804A89B0; // type:object size:0xD scope:local align:4 data:string +@94 = .data:0x804A89C0; // type:object size:0xD scope:local align:4 data:string +@95 = .data:0x804A89D0; // type:object size:0xD scope:local align:4 data:string +@96 = .data:0x804A89E0; // type:object size:0x19 scope:local align:4 data:string +@98 = .data:0x804A89FC; // type:object size:0xE scope:local align:4 data:string +@99 = .data:0x804A8A0C; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x804A8A24; // type:object size:0x3C scope:local align:4 +@133 = .data:0x804A8A60; // type:object size:0x1B scope:local align:4 data:string +@134 = .data:0x804A8A7C; // type:object size:0x2E scope:local align:4 data:string +@135 = .data:0x804A8AAC; // type:object size:0x2F scope:local align:4 data:string +@136 = .data:0x804A8ADC; // type:object size:0x1B scope:local align:4 data:string +ResetFunctionInfo = .data:0x804A8AF8; // type:object size:0x10 scope:local align:4 +DSPInitCode = .data:0x804A8B08; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x804A8B88; // type:label scope:local +@63 = .data:0x804A8B88; // type:object size:0x29 scope:local align:4 data:string +@84 = .data:0x804A8BB4; // type:object size:0x18 scope:local align:4 data:string +@85 = .data:0x804A8BCC; // type:object size:0x1B scope:local align:4 data:string +@86 = .data:0x804A8BE8; // type:object size:0x30 scope:local align:4 data:string +@87 = .data:0x804A8C18; // type:object size:0x3C scope:local align:4 data:string +@88 = .data:0x804A8C54; // type:object size:0x37 scope:local align:4 data:string +@89 = .data:0x804A8C8C; // type:object size:0x3F scope:local align:4 data:string +@90 = .data:0x804A8CCC; // type:object size:0x29 scope:local align:4 data:string +@91 = .data:0x804A8CF8; // type:object size:0x1D scope:local align:4 data:string +@92 = .data:0x804A8D18; // type:object size:0x19 scope:local align:4 data:string +@104 = .data:0x804A8D34; // type:object size:0x19 scope:local align:4 data:string +@105 = .data:0x804A8D50; // type:object size:0x19 scope:local align:4 data:string +@106 = .data:0x804A8D6C; // type:object size:0x16 scope:local align:4 data:string +@107 = .data:0x804A8D84; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x804A8DB8; // type:label scope:local +@61 = .data:0x804A8DB8; // type:object size:0x44 scope:local align:4 data:string +@62 = .data:0x804A8DFC; // type:object size:0x30 scope:local align:4 data:string +@63 = .data:0x804A8E2C; // type:object size:0x2F scope:local align:4 data:string +@64 = .data:0x804A8E5C; // type:object size:0x2F scope:local align:4 data:string +@65 = .data:0x804A8E8C; // type:object size:0x11 scope:local align:4 data:string +@66 = .data:0x804A8EA0; // type:object size:0x21 scope:local align:4 data:string +@67 = .data:0x804A8EC4; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x804A8ED8; // type:object size:0x19 scope:local align:4 data:string +@69 = .data:0x804A8EF4; // type:object size:0x12 scope:local align:4 data:string +@70 = .data:0x804A8F08; // type:object size:0x1D scope:local align:4 data:string +@71 = .data:0x804A8F28; // type:object size:0x26 scope:local align:4 data:string +@72 = .data:0x804A8F50; // type:object size:0x1C scope:local align:4 data:string +@76 = .data:0x804A8F6C; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x804A8F90; // type:label scope:local +@13 = .data:0x804A8F90; // type:object size:0x16 scope:local align:4 data:string +@14 = .data:0x804A8FA8; // type:object size:0x26 scope:local align:4 data:string +@15 = .data:0x804A8FD0; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x804A8FEC; // type:object size:0x1D scope:local align:4 data:string +@75 = .data:0x804A900C; // type:object size:0x17 scope:local align:4 data:string +@77 = .data:0x804A9024; // type:object size:0x31 scope:local align:4 data:string +@78 = .data:0x804A9058; // type:object size:0x10 scope:local align:4 data:string +@79 = .data:0x804A9068; // type:object size:0x60 scope:local align:4 data:string +@80 = .data:0x804A90C8; // type:object size:0x4C scope:local align:4 data:string +@81 = .data:0x804A9114; // type:object size:0x62 scope:local align:4 data:string +@82 = .data:0x804A9178; // type:object size:0x60 scope:local align:4 data:string +@83 = .data:0x804A91D8; // type:object size:0x1F scope:local align:4 data:string +@84 = .data:0x804A91F8; // type:object size:0x1F scope:local align:4 data:string +@85 = .data:0x804A9218; // type:object size:0x1B scope:local align:4 data:string +@86 = .data:0x804A9234; // type:object size:0x35 scope:local align:4 data:string +@87 = .data:0x804A926C; // type:object size:0x40 scope:local align:4 +HankakuToCode = .data:0x804A92B0; // type:object size:0x180 scope:local align:4 +Zenkaku2Code = .data:0x804A9430; // type:object size:0x98A scope:local align:4 +InterruptPrioTable = .data:0x804A9DC0; // type:object size:0x2C scope:local align:4 data:4byte +ResetFunctionInfo = .data:0x804A9DF0; // type:object size:0x10 scope:local align:4 +YearDays = .data:0x804A9E00; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x804A9E30; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x804A9E60; // type:label scope:local +@1 = .data:0x804A9E60; // type:object size:0x45 scope:local align:4 data:string +ResetFunctionInfo = .data:0x804A9EA8; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x804A9EB8; // type:label scope:local +@1 = .data:0x804A9EB8; // type:object size:0x44 scope:local align:4 data:string +Si = .data:0x804A9EFC; // type:object size:0x14 scope:local align:4 data:4byte +Type = .data:0x804A9F10; // type:object size:0x10 scope:local align:4 +@457 = .data:0x804A9F20; // type:object size:0xC scope:local align:4 data:string +@459 = .data:0x804A9F2C; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x804A9F3C; // type:object size:0xF scope:local align:4 data:string +@461 = .data:0x804A9F4C; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x804A9F5C; // type:object size:0xA scope:local align:4 data:string +@463 = .data:0x804A9F68; // type:object size:0x10 scope:local align:4 data:string +@464 = .data:0x804A9F78; // type:object size:0x14 scope:local align:4 data:string +@465 = .data:0x804A9F8C; // type:object size:0x12 scope:local align:4 data:string +@466 = .data:0x804A9FA0; // type:object size:0x14 scope:local align:4 data:string +@467 = .data:0x804A9FB4; // type:object size:0x9 scope:local align:4 data:string +@468 = .data:0x804A9FC0; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x804A9FD0; // type:label scope:local +XYNTSC = .data:0x804A9FD0; // type:object size:0x30 scope:local align:4 +XYPAL = .data:0x804AA000; // type:object size:0x30 scope:local align:4 +@16 = .data:0x804AA030; // type:object size:0x33 scope:local align:4 data:string +...data.0 = .data:0x804AA068; // type:label scope:local +@1 = .data:0x804AA068; // type:object size:0x44 scope:local align:4 data:string +...data.0 = .data:0x804AA0B0; // type:label scope:local +@1 = .data:0x804AA0B0; // type:object size:0x45 scope:local align:4 data:string +...data.0 = .data:0x804AA0F8; // type:label scope:local +@1 = .data:0x804AA0F8; // type:object size:0x45 scope:local align:4 data:string +ResetFunctionInfo = .data:0x804AA140; // type:object size:0x10 scope:local align:4 +govNAN___Q24Game5P2JST = .data:0x804AA150; // type:object size:0xC scope:local align:4 data:float +@7139 = .data:0x804AA15C; // type:object size:0x54 scope:local align:4 +@7573 = .data:0x804AA1B0; // type:object size:0x24 scope:local align:4 +__vt__Q34Game10EnemyStone8DrawInfo = .data:0x804AA1D4; // type:object size:0x10 scope:weak align:4 +__vt__Q23PSM10EnemyHekoi = .data:0x804AA1E4; // type:object size:0xD4 scope:weak align:4 +__vt__Q24Game13PelletInitArg = .data:0x804AA2B8; // type:object size:0xC scope:weak align:4 +__vt__Q24Game12EnemyKillArg = .data:0x804AA2C4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15CreatureKillArg = .data:0x804AA2D0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8ArgScale = .data:0x804AA2DC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9ItemHoney7InitArg = .data:0x804AA2E8; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15CreatureInitArg = .data:0x804AA2F4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11Interaction = .data:0x804AA300; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game9EnemyBase = .data:0x804AA324; // type:object size:0x328 scope:global align:4 +__vt__Q24Game17EnemyAnimKeyEvent = .data:0x804AA64C; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape8KeyEvent = .data:0x804AA65C; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape14MotionListener = .data:0x804AA66C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game10PelletView = .data:0x804AA678; // type:object size:0x30 scope:weak align:4 +__vt__Q34Game12EnemyBaseFSM12StateMachine = .data:0x804AA6A8; // type:object size:0x38 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM10StoneState = .data:0x804AA6E0; // type:object size:0x40 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM15EarthquakeState = .data:0x804AA720; // type:object size:0x40 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM8FitState = .data:0x804AA760; // type:object size:0x40 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM11LivingState = .data:0x804AA7A0; // type:object size:0x40 scope:global align:4 +__vt__Q23efx12ArgEnemyType = .data:0x804AA7E0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx3Arg = .data:0x804AA7EC; // type:object size:0xC scope:weak align:4 +__vt__Q23efx5TBase = .data:0x804AA7F8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game12EnemyBaseFSM11AppearState = .data:0x804AA80C; // type:object size:0x38 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM28BirthTypeDropEarthquakeState = .data:0x804AA844; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM26BirthTypeDropTreasureState = .data:0x804AA880; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM24BirthTypeDropOlimarState = .data:0x804AA8BC; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM24BirthTypeDropPikminState = .data:0x804AA8F8; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM18BirthTypeDropState = .data:0x804AA934; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM5State = .data:0x804AA970; // type:object size:0x38 scope:global align:4 +sLODRadius__Q34Game8Pelplant22@unnamed@pelplant_cpp@ = .data:0x804AA9A8; // type:object size:0x10 scope:local align:4 data:float +@3738 = .data:0x804AA9B8; // type:object size:0x54 scope:local align:4 +@3854 = .data:0x804AAA0C; // type:object size:0x54 scope:local align:4 +@3914 = .data:0x804AAA60; // type:object size:0x54 scope:local align:4 +@3913 = .data:0x804AAAB4; // type:object size:0x54 scope:local align:4 +@4131 = .data:0x804AAB08; // type:object size:0x54 scope:local align:4 +@4169 = .data:0x804AAB5C; // type:object size:0x54 scope:local align:4 +__vt__Q34Game8Pelplant3Mgr = .data:0x804AABB0; // type:object size:0xE0 scope:global align:4 +__vt__7Parm = .data:0x804AAC90; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game14EnemyParmsBase = .data:0x804AACA4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game13CreatureParms = .data:0x804AACB0; // type:object size:0xC scope:weak align:4 +__vt__7Parm = .data:0x804AACBC; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game8Pelplant5Parms = .data:0x804AACD0; // type:object size:0xC scope:weak align:4 +__vt__16GenericContainer = .data:0x804AACDC; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game13IEnemyMgrBase = .data:0x804AACFC; // type:object size:0x98 scope:weak align:4 +__vt__Q28SysShape13BlendFunction = .data:0x804AAD94; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Pelplant14ProperAnimator = .data:0x804AADA0; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game8Pelplant3Obj = .data:0x804AADC8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game8Pelplant21BlendAccelerationFunc = .data:0x804AB0F4; // type:object size:0xC scope:global align:4 +@4082 = .data:0x804AB100; // type:object size:0x54 scope:local align:4 +__vt__Q34Game8Pelplant9StateDead = .data:0x804AB154; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant11StateDamage = .data:0x804AB178; // type:object size:0x24 scope:global align:4 +__vt__Q23efx11TPpl20Grow2 = .data:0x804AB19C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TPpl10Grow2 = .data:0x804AB1B0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TPpl5Grow2 = .data:0x804AB1C4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPplGrow2 = .data:0x804AB1D8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPplGrow1 = .data:0x804AB1EC; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game8Pelplant9StateGrow = .data:0x804AB200; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant9StateWait = .data:0x804AB224; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant11StateWither = .data:0x804AB248; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant14StateBlendAnim = .data:0x804AB26C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant5State = .data:0x804AB290; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8Pelplant3FSM = .data:0x804AB2B4; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractDrop = .data:0x804AB2D8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game20InteractFlyCollision = .data:0x804AB2FC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractPress = .data:0x804AB320; // type:object size:0x24 scope:global align:4 +__vt__Q24Game18InteractEarthquake = .data:0x804AB344; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractHipdrop = .data:0x804AB368; // type:object size:0x24 scope:global align:4 +@5094 = .data:0x804AB390; // type:object size:0x194 scope:local align:4 +__vt__Q24Game15GeneralEnemyMgr = .data:0x804AB524; // type:object size:0x4C scope:global align:4 +__vt__Q24Game12EnemyMgrNode = .data:0x804AB570; // type:object size:0x80 scope:weak align:4 +__vt__16GenericObjectMgr = .data:0x804AB5F0; // type:object size:0x38 scope:weak align:4 +__vt__Q34Game12KochappyBase14ProperAnimator = .data:0x804AB628; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8Kochappy3Obj = .data:0x804AB650; // type:object size:0x338 scope:global align:4 +__vt__Q28SysShape12BaseAnimator = .data:0x804AB988; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804AB998; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12KochappyBase9StateDemo = .data:0x804AB9A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase11StateGoHome = .data:0x804AB9C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase15StateTurnToHome = .data:0x804AB9EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase10StateFlick = .data:0x804ABA10; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase11StateAttack = .data:0x804ABA34; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateWalk = .data:0x804ABA58; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateTurn = .data:0x804ABA7C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateDead = .data:0x804ABAA0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateWait = .data:0x804ABAC4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase10StatePress = .data:0x804ABAE8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase5State = .data:0x804ABB0C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game12KochappyBase3FSM = .data:0x804ABB30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Kochappy3Mgr = .data:0x804ABB58; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12KochappyBase5Parms = .data:0x804ABC3C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804ABC48; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9EnemyFunc25EatPikminDefaultCondition = .data:0x804ABC54; // type:object size:0xC scope:weak align:4 +__vt__23Condition = .data:0x804ABC60; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9EnemyFunc21ConditionPikminNearby = .data:0x804ABC6C; // type:object size:0xC scope:weak align:4 +__vt__27Condition = .data:0x804ABC78; // type:object size:0xC scope:weak align:4 +__vt__26Iterator = .data:0x804ABC84; // type:object size:0x18 scope:weak align:4 +__vt__22Iterator = .data:0x804ABC9C; // type:object size:0x18 scope:weak align:4 +__vt__22Iterator = .data:0x804ABCB4; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6Chappy3Obj = .data:0x804ABCD0; // type:object size:0x364 scope:global align:4 +__vt__Q34Game10ChappyBase11StateGoHome = .data:0x804AC038; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase15StateTurnToHome = .data:0x804AC05C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase10StateFlick = .data:0x804AC080; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase11StateAttack = .data:0x804AC0A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase9StateWalk = .data:0x804AC0C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase9StateTurn = .data:0x804AC0EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase13StateTurnBase = .data:0x804AC110; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10ChappyBase9StateDead = .data:0x804AC134; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase10StateSleep = .data:0x804AC158; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase16StateCautionBase = .data:0x804AC17C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10ChappyBase5State = .data:0x804AC1A0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10ChappyBase3FSM = .data:0x804AC1C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase14ProperAnimator = .data:0x804AC1E8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10ChappyBase5Parms = .data:0x804AC210; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Chappy3Mgr = .data:0x804AC21C; // type:object size:0xE8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AC308; // type:object size:0xC scope:local align:4 data:float +__vt__13LifeGaugeList = .data:0x804AC314; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804AC320; // type:object size:0xC scope:local align:4 data:float +sColorTableNumerator__26@unnamed@carryInfoMgr_cpp@ = .data:0x804AC32C; // type:object size:0x1C scope:local align:4 +sColorTableDenominator__26@unnamed@carryInfoMgr_cpp@ = .data:0x804AC348; // type:object size:0x1C scope:local align:4 +__vt__12CarryInfoMgr = .data:0x804AC364; // type:object size:0x20 scope:global align:4 +__vt__11InfoMgrBase = .data:0x804AC384; // type:object size:0x18 scope:weak align:4 +__vt__46InfoListBase<14CarryInfoOwner,13CarryInfoList> = .data:0x804AC39C; // type:object size:0x1C scope:weak align:4 +__vt__41InfoMgr<14CarryInfoOwner,13CarryInfoList> = .data:0x804AC3B8; // type:object size:0x20 scope:weak align:4 +__vt__14CarryInfoOwner = .data:0x804AC3D8; // type:object size:0xC scope:weak align:4 +__vt__13PokoInfoOwner = .data:0x804AC3E4; // type:object size:0x20 scope:global align:4 +__vt__13CarryInfoList = .data:0x804AC404; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AC420; // type:object size:0xC scope:local align:4 data:float +GameLightMgrSettinglabel__Q24Game26@unnamed@gameLightMgr_cpp@ = .data:0x804AC42C; // type:object size:0x14 scope:local align:4 data:4byte +__vt__Q24Game12GameLightMgr = .data:0x804AC440; // type:object size:0x20 scope:global align:4 +__vt__15AmbientLightObj = .data:0x804AC460; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game18GameLightEventNode = .data:0x804AC470; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19GameLightMgrSetting = .data:0x804AC480; // type:object size:0x14 scope:global align:4 +__vt__Q24Game20GameSpotLightSetting = .data:0x804AC494; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameLightSpotSetting = .data:0x804AC4A0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19GameLightSunSetting = .data:0x804AC4B0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game14GameFogSetting = .data:0x804AC4C0; // type:object size:0xC scope:weak align:4 +__vt__Q24Game17GameShadowSetting = .data:0x804AC4CC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game23GameLightAmbientSetting = .data:0x804AC4D8; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameSpecLightSetting = .data:0x804AC4E4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game23GameDiffuseLightSetting = .data:0x804AC4F0; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameLightSettingBase = .data:0x804AC4FC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameLightTimeSetting = .data:0x804AC508; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16FieldVtxColorMgr = .data:0x804AC518; // type:object size:0x20 scope:global align:4 +gEnemyInfo__4Game = .data:0x804AC538; // type:object size:0x1450 scope:global align:4 data:4byte +__vt__Q34Game4Farm4Farm = .data:0x804AD988; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Farm8Obstacle = .data:0x804AD998; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Farm5Plant = .data:0x804AD9A8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804AD9B8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game4Farm7FarmMgr = .data:0x804AD9C4; // type:object size:0x50 scope:global align:4 +@4469 = .data:0x804ADA18; // type:object size:0x198 scope:local align:4 +__vt__Q24Game18EnemyGeneratorBase = .data:0x804ADBB0; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game6GenArg = .data:0x804ADBD4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game14GenObjectEnemy = .data:0x804ADBE0; // type:object size:0x40 scope:global align:4 +__vt__Q24Game7TimeMgr = .data:0x804ADC20; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game8Pelplant9Generator = .data:0x804ADC30; // type:object size:0x24 scope:global align:4 +__vt__Q24Game17EnemyAnimatorBase = .data:0x804ADC58; // type:object size:0x28 scope:global align:4 +__vt__Q24Game42StateMachine = .data:0x804ADC80; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10EnemyStone12FSMStateDead = .data:0x804ADC98; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone17FSMStateDisappear = .data:0x804ADCBC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone17FSMStateBreakable = .data:0x804ADCE0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone13FSMStateShake = .data:0x804ADD04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone11FSMStateFit = .data:0x804ADD28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone21FSMStateExpansionFull = .data:0x804ADD4C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone17FSMStateExpansion = .data:0x804ADD70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone8FSMState = .data:0x804ADD94; // type:object size:0x24 scope:global align:4 +__vt__Q24Game38FSMState = .data:0x804ADDB8; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10EnemyStone12StateMachine = .data:0x804ADDD8; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ADDF8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10EnemyStone3Obj = .data:0x804ADE04; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10ChappyBase3Mgr = .data:0x804ADE18; // type:object size:0xE8 scope:global align:4 +__vt__Q23efx9THanachoN = .data:0x804ADF00; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10ChappyBase3Obj = .data:0x804ADF4C; // type:object size:0x364 scope:global align:4 +__vt__Q34Game10BlueChappy3Mgr = .data:0x804AE2B0; // type:object size:0xE8 scope:global align:4 +__vt__Q34Game10BlueChappy3Obj = .data:0x804AE398; // type:object size:0x364 scope:global align:4 +__vt__Q34Game12YellowChappy3Mgr = .data:0x804AE700; // type:object size:0xE8 scope:global align:4 +__vt__Q23efx29TSyncGroup3 = .data:0x804AE7E8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx3 = .data:0x804AE804; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TKechappyTest = .data:0x804AE820; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TKechappyOff = .data:0x804AE83C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game12YellowChappy3Obj = .data:0x804AE850; // type:object size:0x364 scope:global align:4 +__vt__Q34Game12BlueKochappy3Mgr = .data:0x804AEBB8; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12BlueKochappy3Obj = .data:0x804AECA0; // type:object size:0x338 scope:global align:4 +__vt__Q34Game14YellowKochappy3Obj = .data:0x804AEFD8; // type:object size:0x338 scope:global align:4 +__vt__Q34Game14YellowKochappy3Mgr = .data:0x804AF310; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12KochappyBase3Mgr = .data:0x804AF3F8; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12KochappyBase3Obj = .data:0x804AF4E0; // type:object size:0x338 scope:global align:4 +__vt__Q28SysShape14BlendLinearFun = .data:0x804AF818; // type:object size:0xC scope:weak align:4 +__vt__Q24Game22EnemyBlendAnimatorBase = .data:0x804AF824; // type:object size:0x28 scope:global align:4 +__vt__Q28SysShape18BlendQuadraticFunc = .data:0x804AF84C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15EnemyPelletInfo = .data:0x804AF858; // type:object size:0x10 scope:global align:4 +__vt__Q24Game20EnemyEffectNodeHamon = .data:0x804AF868; // type:object size:0x1C scope:global align:4 +__vt__Q24Game19EnemyEffectNodeBase = .data:0x804AF884; // type:object size:0x1C scope:weak align:4 +__vt__Q24Game12EnemyMgrBase = .data:0x804AF8A0; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game17EnemyStateMachine = .data:0x804AF980; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13EnemyFSMState = .data:0x804AF9A4; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AF9C8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15IllustratedBook5Parms = .data:0x804AF9D4; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook13ItemModeParms = .data:0x804AF9E8; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook9ItemParms = .data:0x804AF9FC; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook14EnemyModeParms = .data:0x804AFA10; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook10EnemyParms = .data:0x804AFA24; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook11CameraParms = .data:0x804AFA38; // type:object size:0xC scope:global align:4 +__vt__Q34Game15IllustratedBook17PositionParmsList = .data:0x804AFA44; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook13PositionParms = .data:0x804AFA58; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook12ColorSetting = .data:0x804AFA6C; // type:object size:0x14 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AFA80; // type:object size:0xC scope:local align:4 data:float +__vt__Q213TreasureLight3Mgr = .data:0x804AFA8C; // type:object size:0x20 scope:global align:4 +sVibration_Move1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFAB0; // type:object size:0x18 scope:local align:4 +sBristle_Move1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFAC8; // type:object size:0x48 scope:local align:4 +sLength_Move1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB10; // type:object size:0x18 scope:local align:4 +sMove1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB28; // type:object size:0xC scope:local align:4 +sVibration_Waitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB34; // type:object size:0x30 scope:local align:4 +sBristle_Waitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB64; // type:object size:0x18 scope:local align:4 +sLength_Waitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB7C; // type:object size:0x18 scope:local align:4 +sWaitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB94; // type:object size:0xC scope:local align:4 +sVibration_Attack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFBA0; // type:object size:0x28 scope:local align:4 +sBristle_Attack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFBC8; // type:object size:0x30 scope:local align:4 +sLength_Attack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFBF8; // type:object size:0x18 scope:local align:4 +sAttack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFC10; // type:object size:0xC scope:local align:4 +sVibration_Flick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFC1C; // type:object size:0x30 scope:local align:4 +sBristle_Flick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFC4C; // type:object size:0x30 scope:local align:4 +sLength_Flick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFC7C; // type:object size:0x30 scope:local align:4 +sFlick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFCAC; // type:object size:0xC scope:local align:4 +sVibration_Type1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFCB8; // type:object size:0x58 scope:local align:4 +sBristle_Type1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFD10; // type:object size:0x58 scope:local align:4 +sLength_Type1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFD68; // type:object size:0x18 scope:local align:4 +sType1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFD80; // type:object size:0xC scope:local align:4 +sEffectAnimData__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFD8C; // type:object size:0x24 scope:local align:4 data:4byte +__vt__Q214EffectAnimator9LengthObj = .data:0x804AFDB0; // type:object size:0x14 scope:weak align:4 +__vt__Q214EffectAnimator10BristleObj = .data:0x804AFDC4; // type:object size:0x14 scope:weak align:4 +__vt__Q214EffectAnimator12VibrationObj = .data:0x804AFDD8; // type:object size:0x14 scope:weak align:4 +__vt__Q214EffectAnimator3Obj = .data:0x804AFDEC; // type:object size:0x14 scope:weak align:4 +__vt__11AgeCollPart = .data:0x804AFE00; // type:object size:0x34 scope:global align:4 +__vt__15CollPartFactory = .data:0x804AFE34; // type:object size:0x34 scope:weak align:4 +__vt__13MouthCollPart = .data:0x804AFE68; // type:object size:0x34 scope:weak align:4 +__vt__8CollPart = .data:0x804AFE9C; // type:object size:0x34 scope:global align:4 +__vt__Q23Sys3OBB = .data:0x804AFED0; // type:object size:0x10 scope:weak align:4 +__vt__12Container = .data:0x804AFEE0; // type:object size:0x2C scope:weak align:4 +__vt__17ArrayContainer = .data:0x804AFF0C; // type:object size:0x48 scope:weak align:4 +__vt__Q23Sys9IndexList = .data:0x804AFF54; // type:object size:0x48 scope:weak align:4 +__vt__Q23Sys12TriIndexList = .data:0x804AFF9C; // type:object size:0x48 scope:weak align:4 +__vt__28ArrayContainer<10Vector3> = .data:0x804AFFE4; // type:object size:0x48 scope:weak align:4 +__vt__23Container<10Vector3> = .data:0x804B002C; // type:object size:0x2C scope:weak align:4 +__vt__8Platform = .data:0x804B0058; // type:object size:0x10 scope:weak align:4 +__vt__13DynamicsParms = .data:0x804B0068; // type:object size:0x18 scope:global align:4 +__vt__7Parm = .data:0x804B0080; // type:object size:0x14 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B0098; // type:object size:0xC scope:local align:4 data:float +@4015 = .data:0x804B00A4; // type:object size:0xC scope:local align:4 data:4byte +__vt__63Delegate3> = .data:0x804B00B0; // type:object size:0xC scope:weak align:4 +__vt__47IDelegate3> = .data:0x804B00BC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game8Creature = .data:0x804B00C8; // type:object size:0x1B0 scope:global align:4 +__vt__Q24Game10CellObject = .data:0x804B0278; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game15TPositionObject = .data:0x804B02A4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B02B0; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game8FakePiki = .data:0x804B02BC; // type:object size:0x220 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B04E0; // type:object size:0xC scope:local align:4 data:float +@4850 = .data:0x804B04EC; // type:object size:0xC scope:local align:4 data:4byte +@5856 = .data:0x804B04F8; // type:object size:0x20 scope:local align:4 +__vt__Q26PikiAI10ActFreeArg = .data:0x804B0518; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI17CreatureActionArg = .data:0x804B0524; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI9ActionArg = .data:0x804B0530; // type:object size:0xC scope:weak align:4 +__vt__Q24Game13NaviDamageArg = .data:0x804B053C; // type:object size:0xC scope:weak align:4 +__vt__23Iterator = .data:0x804B0548; // type:object size:0x18 scope:weak align:4 +__vt__26Iterator = .data:0x804B0560; // type:object size:0x18 scope:weak align:4 +__vt__44Delegate1 = .data:0x804B0578; // type:object size:0xC scope:weak align:4 +__vt__32IDelegate1 = .data:0x804B0584; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11GameMessage = .data:0x804B0590; // type:object size:0x14 scope:weak align:4 +__vt__36Iterator = .data:0x804B05A4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game4Navi = .data:0x804B05BC; // type:object size:0x260 scope:global align:4 +__vt__Q23efx15ContextChasePos = .data:0x804B081C; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx29TSyncGroup2 = .data:0x804B082C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx2 = .data:0x804B0848; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx31TSyncGroup2 = .data:0x804B0864; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TChaseMtxT2 = .data:0x804B0880; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TOrimadamage = .data:0x804B089C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx7Context = .data:0x804B08B8; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx12TFueactBiri2 = .data:0x804B08C8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TFueactBiri1 = .data:0x804B0914; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx7TFueact = .data:0x804B0960; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game26StateMachine = .data:0x804B0974; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B0990; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game4Piki = .data:0x804B099C; // type:object size:0x220 scope:global align:4 +__vt__Q23efx12TPkBlackDown = .data:0x804B0BBC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx7TPkMoeA = .data:0x804B0C08; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game26StateMachine = .data:0x804B0C54; // type:object size:0x18 scope:weak align:4 +...data.0 = .data:0x804B0C70; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804B0C70; // type:object size:0xC scope:local align:4 data:float +UfoMenuResult__Q22og6Screen = .data:0x804B0C7C; // type:object size:0x10 scope:global align:4 +@4433 = .data:0x804B0C8C; // type:object size:0xC scope:local align:4 data:4byte +@4436 = .data:0x804B0C98; // type:object size:0xC scope:local align:4 data:4byte +@4600 = .data:0x804B0CA4; // type:object size:0xC scope:local align:4 +@4604 = .data:0x804B0CB0; // type:object size:0xC scope:local align:4 +@4607 = .data:0x804B0CBC; // type:object size:0xC scope:local align:4 +@5050 = .data:0x804B0CC8; // type:object size:0xC scope:local align:4 data:4byte +@6821 = .data:0x804B0CD4; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q28PSSystem28SingletonBase = .data:0x804B0CE0; // type:object size:0xC scope:weak align:4 +__vt__15ModelEffectData = .data:0x804B0CEC; // type:object size:0x1C scope:weak align:4 +__vt__10Controller = .data:0x804B0D08; // type:object size:0xC scope:weak align:4 +__vt__27PikiCond_ExceptChappyPikmin = .data:0x804B0D14; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI19ActFormationInitArg = .data:0x804B0D44; // type:object size:0xC scope:weak align:4 +__vt__49Delegate1> = .data:0x804B0DE8; // type:object size:0xC scope:weak align:4 +__vt__25IDelegate1> = .data:0x804B0DF4; // type:object size:0xC scope:weak align:4 +__vt__17Container<5Plane> = .data:0x804B0E20; // type:object size:0x2C scope:weak align:4 +__vt__22ArrayContainer<5Plane> = .data:0x804B0E4C; // type:object size:0x48 scope:weak align:4 +__vt__9CullPlane = .data:0x804B0E94; // type:object size:0x48 scope:weak align:4 +__vt__63Delegate3 = .data:0x804B0EDC; // type:object size:0xC scope:weak align:4 +__vt__39IDelegate3 = .data:0x804B0EE8; // type:object size:0xC scope:weak align:4 +__vt__34Delegate = .data:0x804B0EF4; // type:object size:0xC scope:weak align:4 +__vt__9IDelegate = .data:0x804B0F00; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15BaseGameSection = .data:0x804B0F0C; // type:object size:0x134 scope:global align:4 +__vt__54Delegate1 = .data:0x804B1040; // type:object size:0xC scope:weak align:4 +__vt__30IDelegate1 = .data:0x804B104C; // type:object size:0xC scope:weak align:4 +__vt__45Delegate1> = .data:0x804B1058; // type:object size:0xC scope:weak align:4 +__vt__21IDelegate1> = .data:0x804B1064; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B1070; // type:object size:0xC scope:local align:4 data:float +@4714 = .data:0x804B107C; // type:object size:0xC scope:local align:4 data:4byte +@4756 = .data:0x804B1088; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q32og6Screen14DispMemberCave = .data:0x804B1094; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen17DispMemberHurryUp = .data:0x804B10AC; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen21DispMemberDayEndCount = .data:0x804B10C4; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen16DispMemberGround = .data:0x804B10DC; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game11PikiInitArg = .data:0x804B10F4; // type:object size:0xC scope:weak align:4 +__vt__Q32og6Screen21DispMemberKanketuMenu = .data:0x804B1100; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberCaveMore = .data:0x804B1118; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen17DispMemberAnaDemo = .data:0x804B1130; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen14DispMemberBase = .data:0x804B1148; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game11PikiKillArg = .data:0x804B1160; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TLastMomiji = .data:0x804B116C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TForestSakura = .data:0x804B11B8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TTutorialSnow = .data:0x804B1204; // type:object size:0x4C scope:weak align:4 +__vt__Q26PSGame13CaveFloorInfo = .data:0x804B1250; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804B1264; // type:object size:0x18 scope:weak align:4 +__vt__36Delegate = .data:0x804B127C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10SingleGame15CaveDayEndState = .data:0x804B1288; // type:object size:0x48 scope:global align:4 +__vt__Q34Game10SingleGame5State = .data:0x804B12D0; // type:object size:0x48 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804B1318; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10SingleGame3FSM = .data:0x804B1338; // type:object size:0x18 scope:global align:4 +__vt__Q24Game17SingleGameSection = .data:0x804B1350; // type:object size:0x134 scope:global align:4 +__vt__13SweepCallback = .data:0x804B1488; // type:object size:0xC scope:weak align:4 +__vt__Q310SweepPrune5World8Callback = .data:0x804B1494; // type:object size:0xC scope:weak align:4 +__vt__Q24Game7NaviMgr = .data:0x804B14A0; // type:object size:0xA8 scope:global align:4 +__vt__23Container = .data:0x804B1548; // type:object size:0x2C scope:weak align:4 +__vt__23ObjectMgr = .data:0x804B1574; // type:object size:0x7C scope:weak align:4 +__vt__27MonoObjectMgr = .data:0x804B15F0; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game13FakePikiParms = .data:0x804B167C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game9NaviParms = .data:0x804B1688; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B1698; // type:object size:0xC scope:local align:4 data:float +@4378 = .data:0x804B16A4; // type:object size:0xC scope:local align:4 data:4byte +__vt__45Delegate1 = .data:0x804B16B0; // type:object size:0xC scope:weak align:4 +__vt__30IDelegate1 = .data:0x804B16BC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game7PikiMgr = .data:0x804B16C8; // type:object size:0xA0 scope:global align:4 +__vt__23Container = .data:0x804B1768; // type:object size:0x2C scope:weak align:4 +__vt__23ObjectMgr = .data:0x804B1794; // type:object size:0x7C scope:weak align:4 +__vt__27MonoObjectMgr = .data:0x804B1810; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game9PikiParms = .data:0x804B189C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B18A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game11ShapeMapMgr = .data:0x804B18B4; // type:object size:0x98 scope:global align:4 +__vt__Q24Game6MapMgr = .data:0x804B194C; // type:object size:0x88 scope:global align:4 +__vt__26Iterator = .data:0x804B19D4; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B19F0; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game11HIORootNode = .data:0x804B19FC; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game14BaseHIOSection = .data:0x804B1A0C; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B1A60; // type:object size:0xC scope:local align:4 data:float +@4640 = .data:0x804B1A6C; // type:object size:0x54 scope:local align:4 +@7914 = .data:0x804B1AC0; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game9PelletMgr = .data:0x804B1ACC; // type:object size:0x90 scope:global align:4 +__vt__28Iterator<16GenericObjectMgr> = .data:0x804B1B5C; // type:object size:0x18 scope:weak align:4 +__vt__36Iterator = .data:0x804B1B74; // type:object size:0x18 scope:weak align:4 +__vt__39Iterator = .data:0x804B1B8C; // type:object size:0x18 scope:weak align:4 +__vt__31TObjectNode<16GenericObjectMgr> = .data:0x804B1BA4; // type:object size:0x10 scope:weak align:4 +__vt__33NodeObjectMgr<16GenericObjectMgr> = .data:0x804B1BB4; // type:object size:0x80 scope:weak align:4 +__vt__29ObjectMgr<16GenericObjectMgr> = .data:0x804B1C34; // type:object size:0x7C scope:weak align:4 +__vt__29Container<16GenericObjectMgr> = .data:0x804B1CB0; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game13BasePelletMgr = .data:0x804B1CDC; // type:object size:0x98 scope:global align:4 +__vt__52Delegate1 = .data:0x804B1D74; // type:object size:0xC scope:weak align:4 +__vt__20Container<8CollPart> = .data:0x804B1D80; // type:object size:0x2C scope:weak align:4 +__vt__20ObjectMgr<8CollPart> = .data:0x804B1DAC; // type:object size:0x7C scope:weak align:4 +__vt__24MonoObjectMgr<8CollPart> = .data:0x804B1E28; // type:object size:0x8C scope:weak align:4 +__vt__11CollPartMgr = .data:0x804B1EB4; // type:object size:0x8C scope:weak align:4 +__vt__13WPExcludeSpot = .data:0x804B1F40; // type:object size:0xC scope:weak align:4 +__vt__Q223@unnamed@pelletMgr_cpp@6NotOff = .data:0x804B1F4C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11WPCondition = .data:0x804B1F58; // type:object size:0xC scope:weak align:4 +__vt__27Condition = .data:0x804B1F64; // type:object size:0xC scope:weak align:4 +__vt__Q24Game6Pellet = .data:0x804B1F70; // type:object size:0x21C scope:global align:4 +__vt__Q24Game19PelletNumberInitArg = .data:0x804B218C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game18PelletIndexInitArg = .data:0x804B2198; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM9EventBase = .data:0x804B21A4; // type:object size:0x88 scope:weak align:4 +__vt__Q24Game28StateMachine = .data:0x804B222C; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game18PelletGoalStateArg = .data:0x804B2244; // type:object size:0xC scope:weak align:4 +__vt__Q24Game12InteractSuck = .data:0x804B2250; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12TFruitsDownP = .data:0x804B2274; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TFruitsDownR = .data:0x804B2288; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game11InteractEat = .data:0x804B229C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractMattuan = .data:0x804B22C0; // type:object size:0x24 scope:global align:4 +__vt__19Iterator<8CollPart> = .data:0x804B22E4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game14EditorRouteMgr = .data:0x804B2300; // type:object size:0x38 scope:global align:4 +__vt__Q34Game14EditorRouteMgr6WPNode = .data:0x804B2338; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game12GameRouteMgr = .data:0x804B2348; // type:object size:0x38 scope:global align:4 +__vt__26Iterator = .data:0x804B2380; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game8RouteMgr = .data:0x804B2398; // type:object size:0x38 scope:global align:4 +__vt__27Container = .data:0x804B23D0; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game8WayPoint = .data:0x804B23FC; // type:object size:0x14 scope:global align:4 +__vt__Q34Game8WayPoint8RoomList = .data:0x804B2410; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B2420; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9ItemOnyon3Mgr = .data:0x804B242C; // type:object size:0xB4 scope:global align:4 +__vt__26TObjectNode = .data:0x804B24E0; // type:object size:0x10 scope:weak align:4 +__vt__28NodeObjectMgr = .data:0x804B24F0; // type:object size:0x80 scope:weak align:4 +__vt__24ObjectMgr = .data:0x804B2570; // type:object size:0x7C scope:weak align:4 +__vt__24Container = .data:0x804B25EC; // type:object size:0x2C scope:weak align:4 +__vt__12GenOnyonParm = .data:0x804B2618; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11GenItemParm = .data:0x804B2624; // type:object size:0xC scope:weak align:4 +__vt__Q23efx14TOnyonPuffKira = .data:0x804B2630; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOnyonPuffPuff = .data:0x804B2644; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TPodSuck = .data:0x804B2658; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TOnyonEatC = .data:0x804B266C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7ArgType = .data:0x804B2680; // type:object size:0xC scope:weak align:4 +__vt__Q23efx9TOnyonLay = .data:0x804B268C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12OnyonSpotArg = .data:0x804B26A0; // type:object size:0xC scope:weak align:4 +__vt__20ModelEffectCreateArg = .data:0x804B26AC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game5Onyon = .data:0x804B26B8; // type:object size:0x22C scope:global align:4 +__vt__Q23efx11TOnyonEatAB = .data:0x804B28E4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TUfoPodGepu = .data:0x804B28F8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TPodGepu = .data:0x804B290C; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game16InteractSuckDone = .data:0x804B2920; // type:object size:0x24 scope:global align:4 +__vt__Q23efx11TUfoPodSuck = .data:0x804B2944; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game18InteractSuckArrive = .data:0x804B2958; // type:object size:0x24 scope:global align:4 +__vt__Q23efx28TSyncGroup2 = .data:0x804B297C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TForever2 = .data:0x804B2998; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx34TSyncGroup2 = .data:0x804B29B4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TChasePosYRot2 = .data:0x804B29D0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TPodKira = .data:0x804B29EC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TPodSpot = .data:0x804B2A38; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TPodOpenB = .data:0x804B2A54; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TPodOpenA = .data:0x804B2AA0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TUfoGasOut = .data:0x804B2AEC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TUfoGasIn = .data:0x804B2B38; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TUfoPodOpen = .data:0x804B2B84; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TUfoSpotact_ver01 = .data:0x804B2BA0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx15TUfoPodOpenSuck = .data:0x804B2BBC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TUfoSpot = .data:0x804B2C08; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TForever = .data:0x804B2C24; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game12ItemPikihead7InitArg = .data:0x804B2C70; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11ItemInitArg = .data:0x804B2C7C; // type:object size:0xC scope:weak align:4 +infos = .data:0x804B2C88; // type:object size:0xB8 scope:global align:4 data:2byte +...data.0 = .data:0x804B2D40; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804B2D40; // type:object size:0xC scope:local align:4 data:float +se_taisos__23@unnamed@naviState_cpp@ = .data:0x804B2D5C; // type:object size:0xC scope:local align:4 +se_chats__23@unnamed@naviState_cpp@ = .data:0x804B2D68; // type:object size:0xC scope:local align:4 +se_lookbacks__23@unnamed@naviState_cpp@ = .data:0x804B2D74; // type:object size:0xC scope:local align:4 +se_novis__23@unnamed@naviState_cpp@ = .data:0x804B2D80; // type:object size:0xC scope:local align:4 +se_jumps__23@unnamed@naviState_cpp@ = .data:0x804B2D8C; // type:object size:0xC scope:local align:4 +se_kyoros__23@unnamed@naviState_cpp@ = .data:0x804B2D98; // type:object size:0xC scope:local align:4 +@6431 = .data:0x804B2DA4; // type:object size:0xC scope:local align:4 data:4byte +@8655 = .data:0x804B2DB0; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game16NaviPressedState = .data:0x804B2DBC; // type:object size:0x4C scope:global align:4 +__vt__Q24Game20NaviDemo_HoleInState = .data:0x804B2E20; // type:object size:0x4C scope:global align:4 +__vt__Q24Game17NaviDemo_UfoState = .data:0x804B2E6C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviPelletState = .data:0x804B2EB8; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviThrowState = .data:0x804B2F04; // type:object size:0x5C scope:global align:4 +__vt__Q24Game18NaviThrowWaitState = .data:0x804B2F60; // type:object size:0x5C scope:global align:4 +__vt__37Delegate = .data:0x804B2FBC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15NaviGatherState = .data:0x804B2FD4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game13NaviDeadState = .data:0x804B3038; // type:object size:0x4C scope:global align:4 +__vt__Q24Game16NaviDamagedState = .data:0x804B3084; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviAbsorbState = .data:0x804B30D0; // type:object size:0x4C scope:global align:4 +__vt__Q32og6Screen17DispMemberContena = .data:0x804B3134; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen17DispMemberUfoMenu = .data:0x804B314C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberUfoGroup = .data:0x804B3164; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game18NaviContainerState = .data:0x804B3194; // type:object size:0x4C scope:global align:4 +__vt__Q24Game18NaviSaraiExitState = .data:0x804B31E0; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviSaraiState = .data:0x804B322C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game19NaviKokeDamageState = .data:0x804B3278; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviFlickState = .data:0x804B32C4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game17NaviFallMeckState = .data:0x804B331C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviClimbState = .data:0x804B3368; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14ArgDopingSmoke = .data:0x804B33B4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game13NaviDopeState = .data:0x804B33C0; // type:object size:0x4C scope:global align:4 +__vt__Q24Game19NaviNukuAdjustState = .data:0x804B340C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game13NaviNukuState = .data:0x804B3458; // type:object size:0x4C scope:global align:4 +__vt__Q24Game17NaviPathMoveState = .data:0x804B34A4; // type:object size:0x4C scope:global align:4 +__vt__45Delegate1 = .data:0x804B34F0; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x804B34FC; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TOrimapunch = .data:0x804B3508; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game14NaviPunchState = .data:0x804B353C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviFollowState = .data:0x804B3588; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviChangeState = .data:0x804B35D4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game13NaviWalkState = .data:0x804B3620; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviStuckState = .data:0x804B36A8; // type:object size:0x4C scope:global align:4 +__vt__Q24Game18NaviCarryBombState = .data:0x804B36F4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game22FSMState = .data:0x804B374C; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game7NaviFSM = .data:0x804B376C; // type:object size:0x18 scope:global align:4 +__vt__Q24Game9NaviState = .data:0x804B3784; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B37D0; // type:object size:0xC scope:local align:4 data:float +@7867 = .data:0x804B37DC; // type:object size:0x24 scope:local align:4 +__vt__Q24Game15PikiEscapeState = .data:0x804B3800; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiGrowupState = .data:0x804B3874; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiAbsorbState = .data:0x804B38E8; // type:object size:0x74 scope:global align:4 +__vt__Q24Game16PikiEmotionState = .data:0x804B395C; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiDrownState = .data:0x804B39D0; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiKokeState = .data:0x804B3A44; // type:object size:0x74 scope:global align:4 +__vt__Q24Game19PikiKokeDamageState = .data:0x804B3AB8; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiBlowState = .data:0x804B3B2C; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiFlickState = .data:0x804B3BA0; // type:object size:0x84 scope:global align:4 +__vt__Q26PikiAI10ActCropArg = .data:0x804B3C24; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15PikiFlyingState = .data:0x804B3C30; // type:object size:0x7C scope:global align:4 +__vt__Q24Game16PikiSuikomiState = .data:0x804B3CAC; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17PikiFallMeckState = .data:0x804B3D20; // type:object size:0x74 scope:global align:4 +__vt__Q24Game16PikiHipDropState = .data:0x804B3D94; // type:object size:0x74 scope:global align:4 +__vt__Q24Game20PikiWaterHangedState = .data:0x804B3E08; // type:object size:0x84 scope:global align:4 +__vt__Q24Game15PikiHangedState = .data:0x804B3E8C; // type:object size:0x84 scope:global align:4 +__vt__Q24Game15PikiGoHangState = .data:0x804B3F10; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17PikiAutoNukiState = .data:0x804B3F84; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiLookAtState = .data:0x804B3FF8; // type:object size:0x84 scope:global align:4 +__vt__Q24Game16PikiPressedState = .data:0x804B407C; // type:object size:0x74 scope:global align:4 +__vt__Q23efx9TPkKanden = .data:0x804B40F0; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game19PikiDenkiDyingState = .data:0x804B4104; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiDyingState = .data:0x804B4178; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiDeadState = .data:0x804B41EC; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiPanicState = .data:0x804B4260; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiDopeState = .data:0x804B42D4; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiNukareState = .data:0x804B4348; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiTaneState = .data:0x804B43BC; // type:object size:0x74 scope:global align:4 +__vt__Q24Game19PikiFountainonState = .data:0x804B4430; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiHoleinState = .data:0x804B44A4; // type:object size:0x74 scope:global align:4 +__vt__Q24Game18PikiSwallowedState = .data:0x804B4518; // type:object size:0x74 scope:global align:4 +__vt__Q23efx5TPkAp = .data:0x804B458C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPikuBomb = .data:0x804B45A0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPikuDead = .data:0x804B45B4; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game15PikiCarrotState = .data:0x804B45C8; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17PikiDemoWaitState = .data:0x804B463C; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiWalkState = .data:0x804B46B0; // type:object size:0x74 scope:global align:4 +__vt__Q24Game22FSMState = .data:0x804B4724; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game7PikiFSM = .data:0x804B4744; // type:object size:0x18 scope:global align:4 +__vt__Q24Game9PikiState = .data:0x804B475C; // type:object size:0x74 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B47D0; // type:object size:0xC scope:local align:4 data:float +__vt__Q26PikiAI12ActBattleArg = .data:0x804B47DC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game14InteractBattle = .data:0x804B47E8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game11InteractGas = .data:0x804B480C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractBubble = .data:0x804B4830; // type:object size:0x24 scope:global align:4 +__vt__Q24Game16InteractAstonish = .data:0x804B4854; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractFire = .data:0x804B4878; // type:object size:0x24 scope:global align:4 +__vt__Q24Game20InteractSuikomi_Test = .data:0x804B489C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractBury = .data:0x804B48C0; // type:object size:0x24 scope:global align:4 +__vt__Q24Game16InteractFallMeck = .data:0x804B48E4; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractDenki = .data:0x804B4908; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractBomb = .data:0x804B492C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game20InteractHanaChirashi = .data:0x804B4950; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractWind = .data:0x804B4974; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractDope = .data:0x804B4998; // type:object size:0x24 scope:global align:4 +__vt__Q24Game11InteractFue = .data:0x804B49BC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractFueFuki = .data:0x804B49E0; // type:object size:0x24 scope:global align:4 +__vt__27Container = .data:0x804B4A08; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game6CPlate = .data:0x804B4A34; // type:object size:0x2C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B4A60; // type:object size:0xC scope:local align:4 data:float +__vt__Q26PikiAI6Action = .data:0x804B4A6C; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B4AA8; // type:object size:0xC scope:local align:4 data:float +@6795 = .data:0x804B4AB4; // type:object size:0x20 scope:local align:4 +__vt__Q26PikiAI20ActFollowVectorField = .data:0x804B4AD4; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI9ActGather = .data:0x804B4B10; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI8ActClimb = .data:0x804B4B4C; // type:object size:0x3C scope:global align:4 +__vt__Q23efx10PikiDamage = .data:0x804B4B88; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TPkAttackDP = .data:0x804B4B9C; // type:object size:0x14 scope:weak align:4 +__vt__Q26PikiAI14ActStickAttack = .data:0x804B4BB0; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI11ActPathMove = .data:0x804B4BFC; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI11ActGotoSlot = .data:0x804B4C38; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI14ActApproachPos = .data:0x804B4C74; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI10ActGotoPos = .data:0x804B4CB0; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B4CF0; // type:object size:0xC scope:local align:4 data:float +__vt__Q26PikiAI12ActFormation = .data:0x804B4CFC; // type:object size:0x60 scope:global align:4 +__vt__Q24Game18SlotChangeListener = .data:0x804B4D5C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game8Stickers = .data:0x804B4D68; // type:object size:0x2C scope:global align:4 +__vt__Q24Game12InteractKill = .data:0x804B4D98; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractSwallow = .data:0x804B4DBC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractAttack = .data:0x804B4DE0; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractFlick = .data:0x804B4E04; // type:object size:0x24 scope:global align:4 +__vt__Q26PikiAI15GatherActionArg = .data:0x804B4E28; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI7ActFree = .data:0x804B4E34; // type:object size:0x4C scope:global align:4 +__vt__13FindCondition = .data:0x804B4E80; // type:object size:0xC scope:weak align:4 +__vt__20Condition<8CollPart> = .data:0x804B4E8C; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI20ApproachPosActionArg = .data:0x804B4E98; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI20StickAttackActionArg = .data:0x804B4EA4; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI9ActAttack = .data:0x804B4EB0; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI11PathMoveArg = .data:0x804B4F00; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI11GotoSlotArg = .data:0x804B4F0C; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI12ActTransport = .data:0x804B4F18; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI7ActExit = .data:0x804B4F68; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI14ClimbActionArg = .data:0x804B4FA4; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI16GotoPosActionArg = .data:0x804B4FB0; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI8ActEnter = .data:0x804B4FBC; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B5008; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game17PelletReturnState = .data:0x804B5014; // type:object size:0x2C scope:global align:4 +__vt__Q24Game13PelletUpState = .data:0x804B5040; // type:object size:0x2C scope:global align:4 +__vt__Q24Game16PelletZukanState = .data:0x804B506C; // type:object size:0x2C scope:global align:4 +__vt__Q24Game15PelletBuryState = .data:0x804B5098; // type:object size:0x2C scope:global align:4 +__vt__Q24Game22PelletScaleAppearState = .data:0x804B50C4; // type:object size:0x2C scope:global align:4 +__vt__Q23efx12TTsuyuGrowon = .data:0x804B50F0; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game17PelletAppearState = .data:0x804B5104; // type:object size:0x2C scope:global align:4 +__vt__Q24Game15PelletGoalState = .data:0x804B5130; // type:object size:0x2C scope:global align:4 +__vt__Q24Game19PelletGoalWaitState = .data:0x804B515C; // type:object size:0x2C scope:global align:4 +__vt__Q24Game17PelletNormalState = .data:0x804B5188; // type:object size:0x2C scope:global align:4 +__vt__Q24Game11PelletState = .data:0x804B51B4; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game24FSMState = .data:0x804B51E0; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game9PelletFSM = .data:0x804B5200; // type:object size:0x18 scope:global align:4 +@3934 = .data:0x804B5218; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game11DynCreature = .data:0x804B5224; // type:object size:0x1B4 scope:global align:4 +__vt__59Delegate2,R10Vector3> = .data:0x804B53D8; // type:object size:0xC scope:weak align:4 +__vt__39IDelegate2,R10Vector3> = .data:0x804B53E4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game14DynParticleMgr = .data:0x804B53F0; // type:object size:0x8C scope:global align:4 +__vt__31Container = .data:0x804B547C; // type:object size:0x2C scope:weak align:4 +__vt__31ObjectMgr = .data:0x804B54A8; // type:object size:0x7C scope:weak align:4 +__vt__35MonoObjectMgr = .data:0x804B5524; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game11DynParticle = .data:0x804B55B0; // type:object size:0x24 scope:weak align:4 +__vt__30Iterator = .data:0x804B55D4; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B55F0; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game12GeneratorMgr = .data:0x804B55FC; // type:object size:0x20 scope:global align:4 +__vt__Q24Game9Generator = .data:0x804B561C; // type:object size:0x20 scope:global align:4 +__vt__Q24Game9GenObject = .data:0x804B563C; // type:object size:0x40 scope:global align:4 +__vt__Q24Game7GenBase = .data:0x804B567C; // type:object size:0x2C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B56A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game13GenObjectPiki = .data:0x804B56B4; // type:object size:0x40 scope:global align:4 +__vt__Q24Game13GenObjectNavi = .data:0x804B56F8; // type:object size:0x40 scope:global align:4 +__vt__Q24Game7GenItem = .data:0x804B5738; // type:object size:0x40 scope:global align:4 +__vt__Q24Game10CourseInfo = .data:0x804B5778; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game8LimitGen = .data:0x804B5788; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game11CaveOtakara = .data:0x804B5798; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B57A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game6SeaMgr = .data:0x804B57B4; // type:object size:0x80 scope:weak align:4 +__vt__29TObjectNode = .data:0x804B5834; // type:object size:0x10 scope:weak align:4 +__vt__31NodeObjectMgr = .data:0x804B5844; // type:object size:0x80 scope:weak align:4 +__vt__27ObjectMgr = .data:0x804B58C4; // type:object size:0x7C scope:weak align:4 +__vt__27Container = .data:0x804B5940; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game12AABBWaterBox = .data:0x804B596C; // type:object size:0x48 scope:global align:4 +__vt__Q24Game8WaterBox = .data:0x804B59B4; // type:object size:0x48 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B5A00; // type:object size:0xC scope:local align:4 data:float +@5480 = .data:0x804B5A0C; // type:object size:0x28 scope:local align:4 +__vt__Q26PikiAI12ActBridgeArg = .data:0x804B5A34; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI15ActBreakRockArg = .data:0x804B5A40; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI15ActBreakGateArg = .data:0x804B5A4C; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI15ActTransportArg = .data:0x804B5A58; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI12ActAttackArg = .data:0x804B5A64; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI10ActWeedArg = .data:0x804B5A70; // type:object size:0xC scope:weak align:4 +__vt__26Iterator = .data:0x804B5A7C; // type:object size:0x18 scope:weak align:4 +__vt__15PrimTagParm = .data:0x804B5A98; // type:object size:0x18 scope:weak align:4 +__vt__15PrimTagParm = .data:0x804B5AB0; // type:object size:0x18 scope:weak align:4 +__vt__25PrimTagParm<10Vector3> = .data:0x804B5AC8; // type:object size:0x18 scope:weak align:4 +__vt__14PrimTagParm = .data:0x804B5AE0; // type:object size:0x18 scope:weak align:4 +__vt__14PrimTagParm = .data:0x804B5AF8; // type:object size:0x18 scope:weak align:4 +__vt__13TagParameters = .data:0x804B5B10; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game12PelletConfig6TParms = .data:0x804B5B20; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game12PelletConfig = .data:0x804B5B30; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16PelletConfigList = .data:0x804B5B40; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B5B50; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game18OptimiseController = .data:0x804B5B5C; // type:object size:0xC scope:global align:4 +__vt__Q24Game10GameSystem = .data:0x804B5B68; // type:object size:0xA4 scope:global align:4 +__vt__Q24Game11AIConstants = .data:0x804B5C10; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B5C20; // type:object size:0xC scope:local align:4 data:float +@4818 = .data:0x804B5C2C; // type:object size:0x20 scope:local align:4 +__vt__Q24Game10RoomMapMgr = .data:0x804B5C4C; // type:object size:0xA0 scope:global align:4 +__vt__Q24Game4Door = .data:0x804B5CEC; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16MapUnitInterface = .data:0x804B5CFC; // type:object size:0x2C scope:weak align:4 +__vt__25Iterator = .data:0x804B5D28; // type:object size:0x18 scope:weak align:4 +__vt__26Container = .data:0x804B5D40; // type:object size:0x2C scope:weak align:4 +__vt__26ObjectMgr = .data:0x804B5D6C; // type:object size:0x7C scope:weak align:4 +__vt__30MonoObjectMgr = .data:0x804B5DE8; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game7MapRoom = .data:0x804B5E74; // type:object size:0x48 scope:global align:4 +__vt__Q24Game15ItemGateInitArg = .data:0x804B5EBC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game15ItemBigFountain7InitArg = .data:0x804B5EC8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ItemHole7InitArg = .data:0x804B5ED4; // type:object size:0xC scope:weak align:4 +__vt__25Iterator = .data:0x804B5EE0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game10MapUnitMgr = .data:0x804B5EF8; // type:object size:0x80 scope:global align:4 +__vt__28TObjectNode = .data:0x804B5F78; // type:object size:0x10 scope:weak align:4 +__vt__30NodeObjectMgr = .data:0x804B5F88; // type:object size:0x80 scope:weak align:4 +__vt__26ObjectMgr = .data:0x804B6008; // type:object size:0x7C scope:weak align:4 +__vt__26Container = .data:0x804B6084; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game7MapUnit = .data:0x804B60B0; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game8DoorLink = .data:0x804B60D4; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B60E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game20GameMessageVsUseCard = .data:0x804B60F4; // type:object size:0x14 scope:global align:4 +__vt__Q24Game20GameMessageVsGotCard = .data:0x804B6108; // type:object size:0x14 scope:global align:4 +__vt__Q24Game23GameMessageVsPikminDead = .data:0x804B611C; // type:object size:0x14 scope:global align:4 +__vt__Q24Game30GameMessageVsBirthTekiTreasure = .data:0x804B6130; // type:object size:0x14 scope:global align:4 +__vt__Q24Game21GameMessagePelletDead = .data:0x804B6144; // type:object size:0x14 scope:global align:4 +__vt__Q24Game21GameMessagePelletBorn = .data:0x804B6158; // type:object size:0x14 scope:global align:4 +__vt__Q24Game21GameMessageVsAddEnemy = .data:0x804B616C; // type:object size:0x14 scope:global align:4 +__vt__Q24Game23GameMessageVsGetOtakara = .data:0x804B6180; // type:object size:0x14 scope:global align:4 +__vt__Q24Game27GameMessageVsRedOrSuckStart = .data:0x804B6194; // type:object size:0x14 scope:global align:4 +__vt__Q24Game27GameMessageVsBattleFinished = .data:0x804B61A8; // type:object size:0x14 scope:global align:4 +__vt__Q24Game22GameMessageVsGetDoping = .data:0x804B61BC; // type:object size:0x14 scope:global align:4 +__vt__Q24Game36StateMachine = .data:0x804B61D0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game13VsGameSection = .data:0x804B61E8; // type:object size:0x138 scope:global align:4 +__vt__Q34Game6VsGame3FSM = .data:0x804B6320; // type:object size:0x18 scope:global align:4 +__vt__Q24Game7PlatMgr = .data:0x804B6338; // type:object size:0x84 scope:global align:4 +__vt__31Iterator = .data:0x804B63BC; // type:object size:0x18 scope:weak align:4 +__vt__34TObjectNode = .data:0x804B63D4; // type:object size:0x10 scope:weak align:4 +__vt__36NodeObjectMgr = .data:0x804B63E4; // type:object size:0x80 scope:weak align:4 +__vt__32ObjectMgr = .data:0x804B6464; // type:object size:0x7C scope:weak align:4 +__vt__32Container = .data:0x804B64E0; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game12PlatInstance = .data:0x804B650C; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B6558; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15ItemDengekiGate3Mgr = .data:0x804B6564; // type:object size:0xC0 scope:global align:4 +__vt__Q24Game29NodeItemMgr = .data:0x804B6624; // type:object size:0xB8 scope:weak align:4 +__vt__Q24Game13GateDownState = .data:0x804B66DC; // type:object size:0x34 scope:global align:4 +__vt__Q24Game16GateDamagedState = .data:0x804B6710; // type:object size:0x34 scope:global align:4 +__vt__Q24Game13GateWaitState = .data:0x804B6744; // type:object size:0x34 scope:global align:4 +__vt__11GenGateParm = .data:0x804B6778; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11ItemGateMgr = .data:0x804B6784; // type:object size:0x7C scope:global align:4 +__vt__29TObjectNode = .data:0x804B6800; // type:object size:0x10 scope:weak align:4 +__vt__31NodeObjectMgr = .data:0x804B6810; // type:object size:0x80 scope:weak align:4 +__vt__27ObjectMgr = .data:0x804B6890; // type:object size:0x7C scope:weak align:4 +__vt__27Container = .data:0x804B690C; // type:object size:0x2C scope:weak align:4 +__vt__Q23efx10TGate2Down = .data:0x804B6938; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TGate1Down = .data:0x804B694C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7ArgRotY = .data:0x804B6960; // type:object size:0xC scope:weak align:4 +__vt__Q23efx7TEgateA = .data:0x804B696C; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game8ItemGate = .data:0x804B69B8; // type:object size:0x224 scope:global align:4 +__vt__Q24Game60WorkItem = .data:0x804B6BDC; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game25ItemFSM = .data:0x804B6E00; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game30StateMachine = .data:0x804B6E18; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game59FSMItem = .data:0x804B6E30; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game9GateState = .data:0x804B7054; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game27ItemState = .data:0x804B7088; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game26FSMState = .data:0x804B70BC; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game7GateFSM = .data:0x804B70DC; // type:object size:0x18 scope:global align:4 +__vt__Q24Game7ItemMgr = .data:0x804B70F8; // type:object size:0x88 scope:global align:4 +__vt__Q24Game12TNodeItemMgr = .data:0x804B7180; // type:object size:0xBC scope:global align:4 +__vt__29TObjectNode = .data:0x804B723C; // type:object size:0x10 scope:weak align:4 +__vt__31NodeObjectMgr = .data:0x804B724C; // type:object size:0x80 scope:weak align:4 +__vt__27ObjectMgr = .data:0x804B72CC; // type:object size:0x7C scope:weak align:4 +__vt__27Container = .data:0x804B7348; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game11BaseItemMgr = .data:0x804B7374; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17InteractFarmHaero = .data:0x804B73E8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game18InteractFarmKarero = .data:0x804B740C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractAbsorb = .data:0x804B7430; // type:object size:0x24 scope:global align:4 +__vt__Q24Game19InteractFlockAttack = .data:0x804B7454; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractGotKey = .data:0x804B7478; // type:object size:0x24 scope:global align:4 +__vt__Q24Game19InteractBreakBridge = .data:0x804B749C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game8CFSMItem = .data:0x804B74C0; // type:object size:0x228 scope:global align:4 +__vt__Q24Game8BaseItem = .data:0x804B76E8; // type:object size:0x220 scope:global align:4 +__vt__Q26PikiAI26FollowVectorFieldActionArg = .data:0x804B7908; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI12ActBreakGate = .data:0x804B7914; // type:object size:0x4C scope:global align:4 +__vt__Q34Game8GameStat11PikiCounter = .data:0x804B7960; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B7970; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8ItemHole3Mgr = .data:0x804B797C; // type:object size:0xBC scope:global align:4 +__vt__Q24Game8CItemFSM = .data:0x804B7A38; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game30StateMachine = .data:0x804B7A50; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game8ItemHole4Item = .data:0x804B7A68; // type:object size:0x228 scope:global align:4 +__vt__Q23efx28TSyncGroup4 = .data:0x804B7C90; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TForever4 = .data:0x804B7CAC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8WarpZone = .data:0x804B7CC8; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game8ItemHole10CloseState = .data:0x804B7CE4; // type:object size:0x38 scope:global align:4 +__vt__Q34Game8ItemHole11AppearState = .data:0x804B7D1C; // type:object size:0x38 scope:global align:4 +__vt__Q34Game8ItemHole11NormalState = .data:0x804B7D54; // type:object size:0x38 scope:global align:4 +__vt__Q34Game8ItemHole5State = .data:0x804B7D8C; // type:object size:0x38 scope:weak align:4 +__vt__Q24Game10CItemState = .data:0x804B7DC4; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game26FSMState = .data:0x804B7DF8; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemHole3FSM = .data:0x804B7E18; // type:object size:0x18 scope:global align:4 +__vt__Q34Game9ItemHoney3Mgr = .data:0x804B7E30; // type:object size:0xC0 scope:global align:4 +__vt__33ObjectMgr = .data:0x804B7EF0; // type:object size:0x7C scope:weak align:4 +__vt__37MonoObjectMgr = .data:0x804B7F6C; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game40FixedSizeItemMgr = .data:0x804B7FF8; // type:object size:0xC0 scope:weak align:4 +__vt__33Container = .data:0x804B80B8; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game9ItemHoney4Item = .data:0x804B80E4; // type:object size:0x230 scope:global align:4 +__vt__Q34Game9ItemHoney9DemoState = .data:0x804B8314; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney10TouchState = .data:0x804B8354; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney11ShrinkState = .data:0x804B8394; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney9WaitState = .data:0x804B83D4; // type:object size:0x40 scope:global align:4 +__vt__Q23efx11THoneydownB = .data:0x804B8414; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THoneydownR = .data:0x804B8428; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THoneydownY = .data:0x804B843C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9ItemHoney11BounceState = .data:0x804B8450; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney9FallState = .data:0x804B8490; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney5State = .data:0x804B84D0; // type:object size:0x40 scope:weak align:4 +__vt__Q34Game9ItemHoney3FSM = .data:0x804B8510; // type:object size:0x18 scope:global align:4 +@4401 = .data:0x804B8528; // type:object size:0xC scope:local align:4 data:4byte +__vt__79Delegate1,PQ28SysShape5Model> = .data:0x804B8534; // type:object size:0xC scope:weak align:4 +__vt__32Iterator = .data:0x804B8540; // type:object size:0x18 scope:weak align:4 +enum_floor_alpha_types__26@unnamed@gameCaveInfo_cpp@ = .data:0x804B8558; // type:object size:0x18 scope:local align:4 +enum_floor_beta_types__26@unnamed@gameCaveInfo_cpp@ = .data:0x804B8570; // type:object size:0xC scope:local align:4 +__vt__Q34Game4Cave8CaveInfo = .data:0x804B857C; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave9FloorInfo = .data:0x804B8590; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave7CapInfo = .data:0x804B85A4; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave8GateInfo = .data:0x804B85B8; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave8ItemInfo = .data:0x804B85CC; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave8TekiInfo = .data:0x804B85E0; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave7BaseGen = .data:0x804B85F4; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B8610; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game14InteractKaisan = .data:0x804B8620; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractSarai = .data:0x804B8644; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B8668; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12ItemPikihead3Mgr = .data:0x804B8674; // type:object size:0xC0 scope:global align:4 +__vt__37ObjectMgr = .data:0x804B8734; // type:object size:0x7C scope:weak align:4 +__vt__41MonoObjectMgr = .data:0x804B87B0; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game44FixedSizeItemMgr = .data:0x804B883C; // type:object size:0xC0 scope:weak align:4 +__vt__37Container = .data:0x804B88FC; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game12ItemPikihead4Item = .data:0x804B8928; // type:object size:0x224 scope:global align:4 +__vt__Q23efx8TPkGlow1 = .data:0x804B8B4C; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game35ItemFSM = .data:0x804B8B98; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804B8BB0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game89FSMItem = .data:0x804B8BC8; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game12ItemPikihead10SioreState = .data:0x804B8DEC; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9GrowState = .data:0x804B8E20; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9WaitState = .data:0x804B8E54; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead11HatugaState = .data:0x804B8E88; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9TaneState = .data:0x804B8EBC; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9BuryState = .data:0x804B8EF0; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9FallState = .data:0x804B8F24; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead5State = .data:0x804B8F58; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37ItemState = .data:0x804B8F8C; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804B8FC0; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game12ItemPikihead3FSM = .data:0x804B8FE0; // type:object size:0x18 scope:global align:4 +@5396 = .data:0x804B8FF8; // type:object size:0xC scope:local align:4 data:4byte +__vt__83Delegate1,PQ28SysShape5Model> = .data:0x804B9004; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9ItemPlant9FruitSlot = .data:0x804B9010; // type:object size:0x10 scope:weak align:4 +__vt__12GenPlantParm = .data:0x804B9020; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9ItemPlant3Mgr = .data:0x804B902C; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game9ItemPlant10PlantParms = .data:0x804B90EC; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TTsuyuGrow2 = .data:0x804B90F8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TTsuyuGrow1 = .data:0x804B910C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9ItemPlant5Plant = .data:0x804B9120; // type:object size:0x24C scope:global align:4 +__vt__Q34Game9ItemPlant4Item = .data:0x804B936C; // type:object size:0x24C scope:global align:4 +__vt__Q24Game31ItemFSM = .data:0x804B95B8; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game36StateMachine = .data:0x804B95D0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game77FSMItem = .data:0x804B95E8; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game9ItemPlant11KareruState = .data:0x804B980C; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant11GrowUpState = .data:0x804B9848; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant12DamagedState = .data:0x804B9884; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant11NormalState = .data:0x804B98C0; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant5State = .data:0x804B98FC; // type:object size:0x3C scope:weak align:4 +__vt__Q24Game33ItemState = .data:0x804B9938; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32FSMState = .data:0x804B996C; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game9ItemPlant3FSM = .data:0x804B998C; // type:object size:0x18 scope:global align:4 +__vt__Q34Game8ItemRock3Mgr = .data:0x804B99A8; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game8ItemRock9RockParms = .data:0x804B9A68; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TKouhaiFuku = .data:0x804B9A74; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9ArgKouhai = .data:0x804B9A88; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TKouhai3 = .data:0x804B9A94; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TKouhai2 = .data:0x804B9AB0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TKouhai1 = .data:0x804B9ACC; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game8ItemRock4Item = .data:0x804B9AE8; // type:object size:0x224 scope:global align:4 +__vt__Q24Game75WorkItem = .data:0x804B9D0C; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game30ItemFSM = .data:0x804B9F30; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game35StateMachine = .data:0x804B9F48; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game74FSMItem = .data:0x804B9F60; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game8ItemRock7UpState = .data:0x804BA184; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemRock9DownState = .data:0x804BA1B8; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemRock11NormalState = .data:0x804BA1EC; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemRock5State = .data:0x804BA220; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32ItemState = .data:0x804BA254; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game31FSMState = .data:0x804BA288; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemRock3FSM = .data:0x804BA2A8; // type:object size:0x18 scope:global align:4 +__vt__Q26PikiAI12ActBreakRock = .data:0x804BA2C0; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI7ActCrop = .data:0x804BA310; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BA360; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game8PlayData = .data:0x804BA370; // type:object size:0x10 scope:global align:4 +__vt__Q24Game17PelletFirstMemory = .data:0x804BA380; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BA3A0; // type:object size:0xC scope:local align:4 data:float +__vt__11GenCaveParm = .data:0x804BA3AC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ItemCave3Mgr = .data:0x804BA3B8; // type:object size:0xBC scope:global align:4 +__vt__Q34Game8ItemCave4Item = .data:0x804BA474; // type:object size:0x224 scope:global align:4 +__vt__8Parm = .data:0x804BA698; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game30ItemFSM = .data:0x804BA6AC; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game35StateMachine = .data:0x804BA6C4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game74FSMItem = .data:0x804BA6DC; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game8ItemCave9OpenState = .data:0x804BA900; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemCave11NormalState = .data:0x804BA934; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemCave5State = .data:0x804BA968; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32ItemState = .data:0x804BA99C; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game31FSMState = .data:0x804BA9D0; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemCave3FSM = .data:0x804BA9F0; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BAA08; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15ItemBigFountain3Mgr = .data:0x804BAA14; // type:object size:0xBC scope:global align:4 +__vt__Q34Game15ItemBigFountain13FountainParms = .data:0x804BAAD0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx28TSyncGroup3 = .data:0x804BAADC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TForever3 = .data:0x804BAAF8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TGeyserSet = .data:0x804BAB14; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TGeyserAct = .data:0x804BAB30; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game15ItemBigFountain4Item = .data:0x804BAB4C; // type:object size:0x224 scope:global align:4 +__vt__Q24Game99WorkItem = .data:0x804BAD70; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game38ItemFSM = .data:0x804BAF94; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game43StateMachine = .data:0x804BAFAC; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game98FSMItem = .data:0x804BAFC4; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game15ItemBigFountain8OutState = .data:0x804BB1E8; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain9WaitState = .data:0x804BB220; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain10CloseState = .data:0x804BB258; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain11AppearState = .data:0x804BB290; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain5State = .data:0x804BB2C8; // type:object size:0x38 scope:weak align:4 +__vt__Q24Game40ItemState = .data:0x804BB300; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game39FSMState = .data:0x804BB334; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game15ItemBigFountain3FSM = .data:0x804BB354; // type:object size:0x18 scope:global align:4 +bridgeFirstPos = .data:0x804BB370; // type:object size:0x10 scope:local align:4 +bridgeGrad = .data:0x804BB380; // type:object size:0x10 scope:local align:4 +__vt__Q34Game10ItemBridge13BridgeInitArg = .data:0x804BB390; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10ItemBridge3Mgr = .data:0x804BB39C; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game10ItemBridge11BridgeParms = .data:0x804BB45C; // type:object size:0xC scope:weak align:4 +__vt__13GenBridgeParm = .data:0x804BB468; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TBridgeSet = .data:0x804BB474; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game10ItemBridge4Item = .data:0x804BB488; // type:object size:0x224 scope:global align:4 +__vt__Q24Game84WorkItem = .data:0x804BB6AC; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game33ItemFSM = .data:0x804BB8D0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game38StateMachine = .data:0x804BB8E8; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game83FSMItem = .data:0x804BB900; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game10ItemBridge11NormalState = .data:0x804BBB24; // type:object size:0x34 scope:global align:4 +__vt__Q34Game10ItemBridge5State = .data:0x804BBB58; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game35ItemState = .data:0x804BBB8C; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game34FSMState = .data:0x804BBBC0; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10ItemBridge3FSM = .data:0x804BBBE0; // type:object size:0x18 scope:global align:4 +__vt__Q24Game13PikiContainer = .data:0x804BBBF8; // type:object size:0x10 scope:global align:4 +__vt__Q24Game11CourseCache = .data:0x804BBC08; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BBC18; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12ItemTreasure3Mgr = .data:0x804BBC24; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game12ItemTreasure13TreasureParms = .data:0x804BBCE4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12ItemTreasure4Item = .data:0x804BBCF0; // type:object size:0x224 scope:global align:4 +__vt__Q44Game12ItemTreasure4Item10DummyShape = .data:0x804BBF14; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape9MtxObject = .data:0x804BBF24; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game90WorkItem = .data:0x804BBF34; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game35ItemFSM = .data:0x804BC158; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804BC170; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game89FSMItem = .data:0x804BC188; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game12ItemTreasure11NormalState = .data:0x804BC3AC; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemTreasure5State = .data:0x804BC3E0; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37ItemState = .data:0x804BC414; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804BC448; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game12ItemTreasure3FSM = .data:0x804BC468; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BC480; // type:object size:0xC scope:local align:4 data:float +__vt__16GenDownFloorParm = .data:0x804BC48C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game13ItemDownFloor7UpState = .data:0x804BC498; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor9DownState = .data:0x804BC4D0; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor12DamagedState = .data:0x804BC508; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor9WaitState = .data:0x804BC540; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor3Mgr = .data:0x804BC578; // type:object size:0xC4 scope:global align:4 +__vt__Q23efx13TDownf3Updown = .data:0x804BC63C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPbagDown = .data:0x804BC650; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TDownf2Updown = .data:0x804BC664; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TDownf1Updown = .data:0x804BC678; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TDownf3WUpdown = .data:0x804BC68C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TDownf2WUpdown = .data:0x804BC6A0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TDownf1WUpdown = .data:0x804BC6B4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7TPbagOn = .data:0x804BC6C8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDownf2On = .data:0x804BC6DC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDownf1On = .data:0x804BC6F0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDownf3WOn = .data:0x804BC704; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDownf2WOn = .data:0x804BC718; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDownf1WOn = .data:0x804BC72C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game13ItemDownFloor4Item = .data:0x804BC740; // type:object size:0x234 scope:global align:4 +__vt__Q24Game36ItemFSM = .data:0x804BC974; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game41StateMachine = .data:0x804BC98C; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game92FSMItem = .data:0x804BC9A4; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game13ItemDownFloor9DeadState = .data:0x804BCBC8; // type:object size:0x38 scope:weak align:4 +__vt__Q34Game13ItemDownFloor5State = .data:0x804BCC00; // type:object size:0x38 scope:weak align:4 +__vt__Q24Game38ItemState = .data:0x804BCC38; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37FSMState = .data:0x804BCC6C; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game13ItemDownFloor3FSM = .data:0x804BCC8C; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BCCA8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10ItemBarrel3Mgr = .data:0x804BCCB4; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game10ItemBarrel11BarrelParms = .data:0x804BCD74; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10ItemBarrel4Item = .data:0x804BCD80; // type:object size:0x224 scope:global align:4 +__vt__Q24Game84WorkItem = .data:0x804BCFA4; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game33ItemFSM = .data:0x804BD1C8; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game38StateMachine = .data:0x804BD1E0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game83FSMItem = .data:0x804BD1F8; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game10ItemBarrel12DamagedState = .data:0x804BD41C; // type:object size:0x34 scope:global align:4 +__vt__Q23efx11TBarrelDead = .data:0x804BD450; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game10ItemBarrel9DeadState = .data:0x804BD464; // type:object size:0x34 scope:global align:4 +__vt__Q34Game10ItemBarrel11NormalState = .data:0x804BD498; // type:object size:0x34 scope:global align:4 +__vt__Q34Game10ItemBarrel5State = .data:0x804BD4CC; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game35ItemState = .data:0x804BD500; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game34FSMState = .data:0x804BD534; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10ItemBarrel3FSM = .data:0x804BD554; // type:object size:0x18 scope:global align:4 +@3791 = .data:0x804BD570; // type:object size:0x54 scope:local align:4 +__vt__Q34Game12PelletNumber3Mgr = .data:0x804BD5C4; // type:object size:0xCC scope:global align:4 +__vt__39ObjectMgr = .data:0x804BD690; // type:object size:0x7C scope:weak align:4 +__vt__43MonoObjectMgr = .data:0x804BD70C; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game48FixedSizePelletMgr = .data:0x804BD798; // type:object size:0xCC scope:weak align:4 +__vt__39Container = .data:0x804BD864; // type:object size:0x2C scope:weak align:4 +__vt__Q23efx10ArgPelType = .data:0x804BD890; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12PelletNumber6Object = .data:0x804BD89C; // type:object size:0x21C scope:global align:4 +__vt__38Iterator = .data:0x804BDAB8; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game13PelletCarcass3Mgr = .data:0x804BDAD0; // type:object size:0xCC scope:global align:4 +__vt__40ObjectMgr = .data:0x804BDB9C; // type:object size:0x7C scope:weak align:4 +__vt__44MonoObjectMgr = .data:0x804BDC18; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game49FixedSizePelletMgr = .data:0x804BDCA4; // type:object size:0xCC scope:weak align:4 +__vt__40Container = .data:0x804BDD70; // type:object size:0x2C scope:weak align:4 +__vt__39Iterator = .data:0x804BDD9C; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game13PelletCarcass6Object = .data:0x804BDDB4; // type:object size:0x21C scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BDFD0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game11PelletFruit3Mgr = .data:0x804BDFDC; // type:object size:0xCC scope:global align:4 +__vt__38ObjectMgr = .data:0x804BE0A8; // type:object size:0x7C scope:weak align:4 +__vt__42MonoObjectMgr = .data:0x804BE124; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game47FixedSizePelletMgr = .data:0x804BE1B0; // type:object size:0xCC scope:weak align:4 +__vt__38Container = .data:0x804BE27C; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game11PelletFruit6Object = .data:0x804BE2A8; // type:object size:0x21C scope:global align:4 +__vt__37Iterator = .data:0x804BE4C4; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BE4E0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game13PelletOtakara3Mgr = .data:0x804BE4EC; // type:object size:0xCC scope:global align:4 +__vt__40ObjectMgr = .data:0x804BE5B8; // type:object size:0x7C scope:weak align:4 +__vt__44MonoObjectMgr = .data:0x804BE634; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game49FixedSizePelletMgr = .data:0x804BE6C0; // type:object size:0xCC scope:weak align:4 +__vt__40Container = .data:0x804BE78C; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game13PelletOtakara6Object = .data:0x804BE7B8; // type:object size:0x21C scope:global align:4 +__vt__Q24Game9GenPellet = .data:0x804BE9D8; // type:object size:0x40 scope:global align:4 +__vt__Q34Game10PelletItem3Mgr = .data:0x804BEA18; // type:object size:0xCC scope:global align:4 +__vt__37ObjectMgr = .data:0x804BEAE4; // type:object size:0x7C scope:weak align:4 +__vt__41MonoObjectMgr = .data:0x804BEB60; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game46FixedSizePelletMgr = .data:0x804BEBEC; // type:object size:0xCC scope:weak align:4 +__vt__37Container = .data:0x804BECB8; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game10PelletItem6Object = .data:0x804BECE4; // type:object size:0x21C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BEF00; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx13OnyonSpotData = .data:0x804BEF10; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9OnyonSpot = .data:0x804BEF2C; // type:object size:0x34 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BEF60; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12ItemUjamushi7InitArg = .data:0x804BEF6C; // type:object size:0xC scope:weak align:4 +__vt__15GenUjamushiParm = .data:0x804BEF78; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12ItemUjamushi8DigState = .data:0x804BEF84; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemUjamushi11ActiveState = .data:0x804BEFB8; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemUjamushi9WaitState = .data:0x804BEFEC; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemUjamushi3Mgr = .data:0x804BF020; // type:object size:0xC0 scope:global align:4 +__vt__36Iterator = .data:0x804BF0E0; // type:object size:0x18 scope:weak align:4 +__vt__37Container = .data:0x804BF0F8; // type:object size:0x2C scope:weak align:4 +__vt__37ObjectMgr = .data:0x804BF124; // type:object size:0x7C scope:weak align:4 +__vt__39TObjectNode = .data:0x804BF1A0; // type:object size:0x10 scope:weak align:4 +__vt__41NodeObjectMgr = .data:0x804BF1B0; // type:object size:0x80 scope:weak align:4 +__vt__Q24Game39NodeItemMgr = .data:0x804BF230; // type:object size:0xB8 scope:weak align:4 +__vt__Q34Game12ItemUjamushi4Item = .data:0x804BF2E8; // type:object size:0x228 scope:global align:4 +__vt__Q44Game12ItemUjamushi4Item10DummyShape = .data:0x804BF510; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game35ItemFSM = .data:0x804BF520; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804BF538; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game89FSMItem = .data:0x804BF550; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game12ItemUjamushi5State = .data:0x804BF774; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37ItemState = .data:0x804BF7A8; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804BF7DC; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game12ItemUjamushi3FSM = .data:0x804BF7FC; // type:object size:0x18 scope:global align:4 +__vt__Q34Game12ItemUjamushi6UjaMgr = .data:0x804BF814; // type:object size:0x70 scope:global align:4 +__vt__36ObjectMgr = .data:0x804BF884; // type:object size:0x7C scope:weak align:4 +__vt__40MonoObjectMgr = .data:0x804BF900; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game36TFlockMgr = .data:0x804BF98C; // type:object size:0x70 scope:weak align:4 +__vt__36Container = .data:0x804BF9FC; // type:object size:0x2C scope:weak align:4 +__vt__35Iterator = .data:0x804BFA28; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game12ItemUjamushi3Uja = .data:0x804BFA40; // type:object size:0x24 scope:global align:4 +__vt__Q24Game6TFlock = .data:0x804BFA64; // type:object size:0x24 scope:weak align:4 +__vt__Q44Game12ItemUjamushi13BoidParameter5TNode = .data:0x804BFA88; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game12ItemUjamushi13BoidParameter = .data:0x804BFA98; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BFAA8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx9TWeedPull = .data:0x804BFAB4; // type:object size:0x14 scope:weak align:4 +__vt__Q26PikiAI14ActFlockAttack = .data:0x804BFAC8; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI20FlockAttackActionArg = .data:0x804BFB14; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI7ActWeed = .data:0x804BFB20; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BFB60; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game12BaseFlockMgr = .data:0x804BFB6C; // type:object size:0x30 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BFBA0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8ItemWeed7InitArg = .data:0x804BFBAC; // type:object size:0xC scope:weak align:4 +__vt__11GenWeedParm = .data:0x804BFBB8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ItemWeed9WaitState = .data:0x804BFBC4; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemWeed3Mgr = .data:0x804BFBF8; // type:object size:0xC4 scope:global align:4 +__vt__Q34Game8ItemWeed4Item = .data:0x804BFCBC; // type:object size:0x228 scope:global align:4 +__vt__Q44Game8ItemWeed4Item10DummyShape = .data:0x804BFEE4; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game30ItemFSM = .data:0x804BFEF4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game35StateMachine = .data:0x804BFF0C; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game74FSMItem = .data:0x804BFF24; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game8ItemWeed5State = .data:0x804C0148; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32ItemState = .data:0x804C017C; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game31FSMState = .data:0x804C01B0; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemWeed3FSM = .data:0x804C01D0; // type:object size:0x18 scope:global align:4 +__vt__Q34Game8ItemWeed7WeedMgr = .data:0x804C01E8; // type:object size:0x70 scope:global align:4 +__vt__32ObjectMgr = .data:0x804C0258; // type:object size:0x7C scope:weak align:4 +__vt__36MonoObjectMgr = .data:0x804C02D4; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game32TFlockMgr = .data:0x804C0360; // type:object size:0x70 scope:weak align:4 +__vt__32Container = .data:0x804C03D0; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game8ItemWeed4Weed = .data:0x804C03FC; // type:object size:0x24 scope:global align:4 +__vt__31Iterator = .data:0x804C0420; // type:object size:0x18 scope:weak align:4 +__vt__Q26PikiAI9ActBridge = .data:0x804C0438; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI7ActTeki = .data:0x804C0488; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C04D8; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og6Screen14DispMemberSave = .data:0x804C04E4; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen19DispMemberSMenuCont = .data:0x804C04FC; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen22DispMemberSMenuPauseVS = .data:0x804C0514; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberSMenuMap = .data:0x804C052C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen19DispMemberSMenuItem = .data:0x804C0544; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen27DispMemberSMenuPauseDoukutu = .data:0x804C055C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen20DispMemberSMenuPause = .data:0x804C0574; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberSMenuAll = .data:0x804C058C; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame9GameState = .data:0x804C05A4; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C05F0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10SingleGame9CaveState = .data:0x804C05FC; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0648; // type:object size:0xC scope:local align:4 data:float +@4203 = .data:0x804C0654; // type:object size:0xC scope:local align:4 data:4byte +@4207 = .data:0x804C0660; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q32kh6Screen20DispDayEndResultTitl = .data:0x804C066C; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen16DispDayEndResult = .data:0x804C0684; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame15MainResultState = .data:0x804C069C; // type:object size:0x48 scope:global align:4 +__vt__Q34Game6Result5TNode = .data:0x804C06E4; // type:object size:0x10 scope:weak align:4 +__vt__46Delegate = .data:0x804C06F4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C0700; // type:object size:0xC scope:local align:4 data:float +@4182 = .data:0x804C070C; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q34Game10SingleGame15CaveResultState = .data:0x804C0718; // type:object size:0x48 scope:global align:4 +__vt__46Delegate = .data:0x804C0760; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C0770; // type:object size:0xC scope:local align:4 data:float +@4200 = .data:0x804C077C; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q34Game10SingleGame11SelectState = .data:0x804C0788; // type:object size:0x48 scope:global align:4 +__vt__42Delegate = .data:0x804C07D0; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C07E0; // type:object size:0xC scope:local align:4 data:float +@4406 = .data:0x804C07EC; // type:object size:0xC scope:local align:4 data:4byte +__vt__39Delegate = .data:0x804C07F8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10SingleGame9FileState = .data:0x804C0804; // type:object size:0x48 scope:global align:4 +__vt__Q24Game16PelletCropMemory = .data:0x804C0850; // type:object size:0x10 scope:global align:4 +__vt__7OgDummy = .data:0x804C0860; // type:object size:0xC scope:weak align:4 +__vt__Q25Radar5Point = .data:0x804C086C; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x804C0880; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804C0880; // type:object size:0xC scope:local align:4 data:float +opening_strings = .data:0x804C089C; // type:object size:0x4C scope:global align:4 +ending_strings = .data:0x804C08E8; // type:object size:0x1C scope:global align:4 +endingcomplete_strings = .data:0x804C0904; // type:object size:0x1C scope:global align:4 +staffroll_strings = .data:0x804C0920; // type:object size:0x2C scope:global align:4 +mezase_strings = .data:0x804C094C; // type:object size:0x1C scope:global align:4 +__vt__Q34Game10SingleGame10MovieState = .data:0x804C0968; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0A18; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game30EnemyIterator = .data:0x804C0A24; // type:object size:0x18 scope:weak align:4 +...data.0 = .data:0x804C0A40; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804C0A40; // type:object size:0xC scope:local align:4 data:float +sDirName__28@unnamed@singleGS_Zukan_cpp@ = .data:0x804C0A5C; // type:object size:0x10 scope:local align:4 +@5200 = .data:0x804C0A6C; // type:object size:0xC scope:local align:4 +@5203 = .data:0x804C0A78; // type:object size:0xC scope:local align:4 +@5206 = .data:0x804C0A84; // type:object size:0xC scope:local align:4 +__vt__Q28Morimura19DispMemberZukanItem = .data:0x804C0B14; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura20DispMemberZukanEnemy = .data:0x804C0B2C; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura19DispMemberZukanBase = .data:0x804C0B44; // type:object size:0x18 scope:weak align:4 +__vt__41Delegate = .data:0x804C0B74; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10SingleGame10ZukanState = .data:0x804C0B8C; // type:object size:0x48 scope:global align:4 +__vt__Q34Game15IllustratedBook6Camera = .data:0x804C0C3C; // type:object size:0x80 scope:global align:4 +__vt__Q34Game15IllustratedBook11EnemyTexMgr = .data:0x804C0D98; // type:object size:0xC scope:weak align:4 +__vt__Q34Game15IllustratedBook10DebugParms = .data:0x804C0DA4; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game5DNode = .data:0x804C0DB8; // type:object size:0x10 scope:global align:4 +__vt__Q34Game12ResultTexMgr3Mgr = .data:0x804C0DC8; // type:object size:0xC scope:global align:4 +__vt__Q34Game10PelletList3Mgr = .data:0x804C0DD8; // type:object size:0xC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0DE8; // type:object size:0xC scope:local align:4 data:float +cMaps__24@unnamed@vsGS_Title_cpp@ = .data:0x804C0DF4; // type:object size:0x10 scope:local align:4 +@4009 = .data:0x804C0E04; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q28Morimura18DispMemberVsSelect = .data:0x804C0E10; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura25DispMemberChallengeSelect = .data:0x804C0E28; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame10TitleState = .data:0x804C0E40; // type:object size:0x4C scope:global align:4 +__vt__36Delegate = .data:0x804C0E8C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6VsGame5State = .data:0x804C0E98; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game32FSMState = .data:0x804C0EE4; // type:object size:0x20 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C0F08; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og6Screen12DispMemberVs = .data:0x804C0F14; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen21DispMemberChallenge1P = .data:0x804C0F2C; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen17DispWinLoseReason = .data:0x804C0F44; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen11DispWinLose = .data:0x804C0F5C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen21DispMemberChallenge2P = .data:0x804C0F74; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame9GameState = .data:0x804C0F8C; // type:object size:0x54 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0FE0; // type:object size:0xC scope:local align:4 data:float +@3977 = .data:0x804C0FEC; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q28Morimura25DispMemberChallengeResult = .data:0x804C0FF8; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame11ResultState = .data:0x804C1010; // type:object size:0x4C scope:global align:4 +__vt__37Delegate = .data:0x804C105C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1068; // type:object size:0xC scope:local align:4 data:float +@3948 = .data:0x804C1074; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q32og6Screen15DispMemberFloor = .data:0x804C1080; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame9LoadState = .data:0x804C1098; // type:object size:0x4C scope:global align:4 +__vt__34Delegate = .data:0x804C10E4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C10F0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6VsGame9StageList = .data:0x804C10FC; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game6VsGame9StageData = .data:0x804C110C; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game13ChallengeGame9StageList = .data:0x804C111C; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game13ChallengeGame9StageData = .data:0x804C112C; // type:object size:0x10 scope:weak align:4 +__vt__12CellMgrParms = .data:0x804C1140; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1158; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6VsGame7VSState = .data:0x804C1164; // type:object size:0x54 scope:global align:4 +__vt__Q26PikiAI9ActBattle = .data:0x804C11B8; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI10ActOneshot = .data:0x804C1208; // type:object size:0x50 scope:global align:4 +__vt__Q26PikiAI7ActRest = .data:0x804C1258; // type:object size:0x50 scope:global align:4 +__vt__Q26PikiAI11ActBoreBase = .data:0x804C12A8; // type:object size:0x4C scope:weak align:4 +__vt__Q26PikiAI13ActOneshotArg = .data:0x804C12F4; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI7ActBore = .data:0x804C1300; // type:object size:0x3C scope:global align:4 +__vt__Q24Game9PartsView = .data:0x804C1340; // type:object size:0x2C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1370; // type:object size:0xC scope:local align:4 data:float +@4187 = .data:0x804C137C; // type:object size:0xC scope:local align:4 data:4byte +@4597 = .data:0x804C1388; // type:object size:0x2C scope:local align:4 +__vt__Q32og6Screen22DispMemberFinalMessage = .data:0x804C13B4; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame11EndingState = .data:0x804C13CC; // type:object size:0x4C scope:global align:4 +__vt__42Delegate = .data:0x804C1418; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11IconTexture3Mgr = .data:0x804C1428; // type:object size:0xC scope:global align:4 +__vt__Q34Game11IconTexture6Loader = .data:0x804C1434; // type:object size:0xC scope:global align:4 +__vt__Q24Game9Highscore = .data:0x804C1440; // type:object size:0xC scope:weak align:4 +__vt__Q24Game8Lowscore = .data:0x804C1450; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6VsGame8TekiNode = .data:0x804C1460; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1470; // type:object size:0xC scope:local align:4 data:float +tex_names__Q34Game6VsGame23@unnamed@vsCardMgr_cpp@ = .data:0x804C147C; // type:object size:0x30 scope:local align:4 data:4byte +@5216 = .data:0x804C14AC; // type:object size:0x2C scope:local align:4 +__vt__Q25efx2d5TBase = .data:0x804C14D8; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d7TBaseIF = .data:0x804C14F0; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d18ArgScaleColorColor = .data:0x804C1508; // type:object size:0xC scope:weak align:4 +__vt__Q25efx2d3Arg = .data:0x804C1514; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TPkGlow2 = .data:0x804C1520; // type:object size:0x14 scope:weak align:4 +__vt__10WPFindCond = .data:0x804C1538; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI9ActRescue = .data:0x804C1544; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1590; // type:object size:0xC scope:local align:4 data:float +@3654 = .data:0x804C159C; // type:object size:0xC scope:local align:4 data:4byte +__vt__46Delegate1 = .data:0x804C15A8; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x804C15B4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C15C0; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og6Screen20DispMemberCourseName = .data:0x804C15CC; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame9LoadState = .data:0x804C15E4; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1630; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10SingleGame11DayEndState = .data:0x804C163C; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1688; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15BaseGameSection10ZoomCamera = .data:0x804C1694; // type:object size:0x80 scope:global align:4 +__vt__Q32og6Screen21DispMemberSpecialItem = .data:0x804C1714; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen16DispMemberKantei = .data:0x804C172C; // type:object size:0x18 scope:weak align:4 +__vt__Q29TexCaster6Caster = .data:0x804C1748; // type:object size:0x10 scope:global align:4 +__vt__6VSFifo = .data:0x804C1758; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x804C1780; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804C1780; // type:object size:0xC scope:local align:4 data:float +sHighCylinderDL__4Game = .data:0x804C17A0; // type:object size:0x8D scope:local align:32 +sMidCylinderDL__4Game = .data:0x804C1840; // type:object size:0x6D scope:local align:32 +sLowCylinderDL__4Game = .data:0x804C18C0; // type:object size:0x4D scope:local align:32 +__vt__Q24Game15ShadowCylinder3 = .data:0x804C1910; // type:object size:0x18 scope:global align:4 +__vt__Q24Game15ShadowCylinder2 = .data:0x804C1928; // type:object size:0x18 scope:global align:4 +__vt__Q24Game12CylinderBase = .data:0x804C1940; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1958; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game10PlayCamera = .data:0x804C1964; // type:object size:0x84 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C19E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game9ShadowMgr = .data:0x804C19F4; // type:object size:0x30 scope:global align:4 +__vt__Q24Game10ShadowNode = .data:0x804C1A24; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game15JointShadowNode = .data:0x804C1A34; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19JointShadowRootNode = .data:0x804C1A44; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave10AdjustNode = .data:0x804C1A58; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave7MapNode = .data:0x804C1A68; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave9EnemyNode = .data:0x804C1A78; // type:object size:0x30 scope:global align:4 +__vt__Q24Game16ObjectLayoutNode = .data:0x804C1AA8; // type:object size:0x30 scope:weak align:4 +__vt__Q24Game8RoomLink = .data:0x804C1AD8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave10RandMapMgr = .data:0x804C1AE8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave8DoorNode = .data:0x804C1AF8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1B08; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game4Cave10FixObjNode = .data:0x804C1B18; // type:object size:0x30 scope:weak align:4 +__vt__Q34Game4Cave8ItemNode = .data:0x804C1B48; // type:object size:0x30 scope:global align:4 +__vt__Q34Game4Cave8GateNode = .data:0x804C1B78; // type:object size:0x30 scope:global align:4 +__vt__Q34Game4Cave12ObjectLayout = .data:0x804C1BA8; // type:object size:0x10 scope:global align:4 +__vt__Q24Game16ObjectLayoutInfo = .data:0x804C1BB8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1BC8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game9CameraMgr = .data:0x804C1BD4; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game10RumbleNode = .data:0x804C1BE8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game9RumbleMgr = .data:0x804C1BF8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game3Pom14ProperAnimator = .data:0x804C1C08; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1C30; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game3Pom5Parms = .data:0x804C1C3C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game3Pom3Mgr = .data:0x804C1C48; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx8TPonDead = .data:0x804C1D28; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game3Pom3Obj = .data:0x804C1D3C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game3Pom10StateSwing = .data:0x804C2068; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateShot = .data:0x804C208C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom10StateClose = .data:0x804C20B0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateOpen = .data:0x804C20D4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateDead = .data:0x804C20F8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateWait = .data:0x804C211C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom5State = .data:0x804C2140; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game3Pom3FSM = .data:0x804C2164; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog11StateGoHome = .data:0x804C2188; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog15StateTurnToHome = .data:0x804C21AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateFail = .data:0x804C21D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog11StateAttack = .data:0x804C21F4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateFall = .data:0x804C2218; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog13StateJumpWait = .data:0x804C223C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateJump = .data:0x804C2260; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateTurn = .data:0x804C2284; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateWait = .data:0x804C22A8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateDead = .data:0x804C22CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog5State = .data:0x804C22F0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Frog3FSM = .data:0x804C2314; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog14ProperAnimator = .data:0x804C2338; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Frog5Parms = .data:0x804C2360; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Frog3Mgr = .data:0x804C236C; // type:object size:0xE0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C2450; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx9TFrogPota = .data:0x804C245C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TFrogLanddrop = .data:0x804C24A8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TFrogDive = .data:0x804C24BC; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Frog3Obj = .data:0x804C24D0; // type:object size:0x334 scope:global align:4 +__vt__Q34Game4Ujib5Parms = .data:0x804C2808; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Ujib3Mgr = .data:0x804C2814; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx12TUjinkoPkate = .data:0x804C28F8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TUjinkoEat = .data:0x804C290C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TUjinkoHd = .data:0x804C2920; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TUjinkoAp = .data:0x804C2934; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Ujib3Obj = .data:0x804C2948; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Ujib8StateEat = .data:0x804C2C78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib12StateAttack2 = .data:0x804C2C9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib12StateAttack1 = .data:0x804C2CC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib11StateGoHome = .data:0x804C2CE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib12StateMoveTop = .data:0x804C2D08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib15StateMoveCentre = .data:0x804C2D2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib13StateMoveSide = .data:0x804C2D50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateMove = .data:0x804C2D74; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateDive = .data:0x804C2D98; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib11StateAppear = .data:0x804C2DBC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateStay = .data:0x804C2DE0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib10StatePress = .data:0x804C2E04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateDead = .data:0x804C2E28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib5State = .data:0x804C2E4C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Ujib3FSM = .data:0x804C2E70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib14ProperAnimator = .data:0x804C2E98; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Kogane10StatePress = .data:0x804C2EC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane9StateWait = .data:0x804C2EE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane9StateMove = .data:0x804C2F08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane14StateDisappear = .data:0x804C2F2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane11StateAppear = .data:0x804C2F50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane5State = .data:0x804C2F74; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Kogane3FSM = .data:0x804C2F98; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane3Mgr = .data:0x804C2FC0; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game6Kogane3Obj = .data:0x804C30A8; // type:object size:0x350 scope:global align:4 +__vt__Q34Game6Kogane14ProperAnimator = .data:0x804C33F8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Qurione9StateDead = .data:0x804C3420; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione9StateDrop = .data:0x804C3444; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione9StateMove = .data:0x804C3468; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione14StateDisappear = .data:0x804C348C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione11StateAppear = .data:0x804C34B0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione9StateStay = .data:0x804C34D4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione5State = .data:0x804C34F8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Qurione3FSM = .data:0x804C351C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione5Parms = .data:0x804C3540; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Qurione3Mgr = .data:0x804C354C; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Qurione9Generator = .data:0x804C362C; // type:object size:0x24 scope:global align:4 +__vt__Q23efx8TQuriHit = .data:0x804C3650; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TQuriDisap = .data:0x804C3664; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TQuriApp = .data:0x804C36B0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TQuriGlow = .data:0x804C36FC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7Qurione3Obj = .data:0x804C3748; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7Qurione14ProperAnimator = .data:0x804C3A78; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8MaroFrog3Mgr = .data:0x804C3AA0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8MaroFrog3Obj = .data:0x804C3B80; // type:object size:0x334 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C3EB8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game4Rock9StateDead = .data:0x804C3EC4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock9StateMove = .data:0x804C3EE8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock9StateFall = .data:0x804C3F0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock13StateDropWait = .data:0x804C3F30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock11StateAppear = .data:0x804C3F54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock9StateWait = .data:0x804C3F78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock5State = .data:0x804C3F9C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Rock3FSM = .data:0x804C3FC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock14ProperAnimator = .data:0x804C3FE8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Rock5Parms = .data:0x804C4010; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Rock3Mgr = .data:0x804C401C; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Rock9Generator = .data:0x804C40FC; // type:object size:0x24 scope:global align:4 +__vt__Q23efx9TRockDead = .data:0x804C4120; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup3 = .data:0x804C4134; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChasePos3 = .data:0x804C4150; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TRockWRunChasePos = .data:0x804C416C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TRockWRun = .data:0x804C4188; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TRockGrRun = .data:0x804C419C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TRockRun = .data:0x804C41E8; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Rock3Obj = .data:0x804C4234; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Ujia12StateAttack1 = .data:0x804C4560; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia11StateGoHome = .data:0x804C4584; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia12StateMoveTop = .data:0x804C45A8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia15StateMoveCentre = .data:0x804C45CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia13StateMoveSide = .data:0x804C45F0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateMove = .data:0x804C4614; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateDive = .data:0x804C4638; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia11StateAppear = .data:0x804C465C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateStay = .data:0x804C4680; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia10StatePress = .data:0x804C46A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateDead = .data:0x804C46C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia5State = .data:0x804C46EC; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Ujia3FSM = .data:0x804C4710; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia14ProperAnimator = .data:0x804C4738; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Ujia5Parms = .data:0x804C4760; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Ujia3Mgr = .data:0x804C476C; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Ujia3Obj = .data:0x804C4850; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Tobi8StateEat = .data:0x804C4B80; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi12StateAttack2 = .data:0x804C4BA4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi12StateAttack1 = .data:0x804C4BC8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi8StateFly = .data:0x804C4BEC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi11StateGoHome = .data:0x804C4C10; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi12StateMoveTop = .data:0x804C4C34; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi15StateMoveCentre = .data:0x804C4C58; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi13StateMoveSide = .data:0x804C4C7C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateMove = .data:0x804C4CA0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateDive = .data:0x804C4CC4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi11StateAppear = .data:0x804C4CE8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateStay = .data:0x804C4D0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi10StatePress = .data:0x804C4D30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateDead = .data:0x804C4D54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi5State = .data:0x804C4D78; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Tobi3FSM = .data:0x804C4D9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi14ProperAnimator = .data:0x804C4DC0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Tobi5Parms = .data:0x804C4DE8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Tobi3Mgr = .data:0x804C4DF4; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Tobi3Obj = .data:0x804C4ED8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Hiba11StateAttack = .data:0x804C5208; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba9StateWait = .data:0x804C522C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba9StateDead = .data:0x804C5250; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba5State = .data:0x804C5274; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Hiba3FSM = .data:0x804C5298; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba14ProperAnimator = .data:0x804C52C0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Hiba5Parms = .data:0x804C52E8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Hiba3Mgr = .data:0x804C52F4; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game28EnemyMgrBaseAlwaysMovieActor = .data:0x804C53D4; // type:object size:0xE0 scope:weak align:4 +__vt__Q23efx9THibaFire = .data:0x804C54B8; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game4Hiba3Obj = .data:0x804C54D4; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7GasHiba11StateAttack = .data:0x804C5800; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba9StateWait = .data:0x804C5824; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba9StateDead = .data:0x804C5848; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba5State = .data:0x804C586C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7GasHiba3FSM = .data:0x804C5890; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba14ProperAnimator = .data:0x804C58B8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7GasHiba5Parms = .data:0x804C58E0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7GasHiba3Mgr = .data:0x804C58EC; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx11ArgGasuHiba = .data:0x804C59D0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7GasHiba3Obj = .data:0x804C59DC; // type:object size:0x32C scope:global align:4 +__vt__Q34Game8ElecHiba11StateAttack = .data:0x804C5D08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba9StateSign = .data:0x804C5D2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba9StateWait = .data:0x804C5D50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba9StateDead = .data:0x804C5D74; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba5State = .data:0x804C5D98; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8ElecHiba3FSM = .data:0x804C5DBC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba14ProperAnimator = .data:0x804C5DE0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8ElecHiba3Mgr = .data:0x804C5E08; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8ElecHiba8TeamList = .data:0x804C5EE8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game8ElecHiba5Parms = .data:0x804C5EF8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ElecHiba9Generator = .data:0x804C5F04; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12ArgDenkiHiba = .data:0x804C5F28; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TDenkiPole = .data:0x804C5F34; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TDenkipoleSign = .data:0x804C5F50; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game8ElecHiba3Obj = .data:0x804C5F9C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game5Sarai13StateFallMeck = .data:0x804C62C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai13StateCatchFly = .data:0x804C62EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateFail = .data:0x804C6310; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai11StateAttack = .data:0x804C6334; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateMove = .data:0x804C6358; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateWait = .data:0x804C637C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai10StateFlick = .data:0x804C63A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai12StateTakeOff = .data:0x804C63C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai11StateDamage = .data:0x804C63E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateFall = .data:0x804C640C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateDead = .data:0x804C6430; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai5State = .data:0x804C6454; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game5Sarai3FSM = .data:0x804C6478; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai14ProperAnimator = .data:0x804C64A0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game5Sarai5Parms = .data:0x804C64C8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game5Sarai3Mgr = .data:0x804C64D4; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game5Sarai3Obj = .data:0x804C65B8; // type:object size:0x33C scope:global align:4 +__vt__Q34Game4Tank10StateFlick = .data:0x804C68F8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank11StateAttack = .data:0x804C691C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank14StateChaseTurn = .data:0x804C6940; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank13StateMoveTurn = .data:0x804C6964; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank9StateMove = .data:0x804C6988; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank9StateWait = .data:0x804C69AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank9StateDead = .data:0x804C69D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank5State = .data:0x804C69F4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Tank3FSM = .data:0x804C6A18; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank14ProperAnimator = .data:0x804C6A40; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Tank3Mgr = .data:0x804C6A68; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game4Tank3Obj = .data:0x804C6B50; // type:object size:0x358 scope:global align:4 +__vt__Q34Game7Catfish3Mgr = .data:0x804C6EA8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Catfish3Obj = .data:0x804C6F88; // type:object size:0x338 scope:global align:4 +__vt__Q34Game7Tadpole9StateLeap = .data:0x804C72C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole11StateEscape = .data:0x804C72E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole10StateAmaze = .data:0x804C7308; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole9StateMove = .data:0x804C732C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole9StateWait = .data:0x804C7350; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole9StateDead = .data:0x804C7374; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole5State = .data:0x804C7398; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Tadpole3FSM = .data:0x804C73BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole14ProperAnimator = .data:0x804C73E0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Tadpole5Parms = .data:0x804C7408; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Tadpole3Mgr = .data:0x804C7414; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx8TPkDiveB = .data:0x804C74F8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game7Tadpole3Obj = .data:0x804C750C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7ElecBug11StateReturn = .data:0x804C7838; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug12StateReverse = .data:0x804C785C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug19StateChildDischarge = .data:0x804C7880; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug16StateChildCharge = .data:0x804C78A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug14StateDischarge = .data:0x804C78C8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game34EnemyIterator = .data:0x804C78EC; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game7ElecBug11StateCharge = .data:0x804C7904; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateMove = .data:0x804C7928; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateTurn = .data:0x804C794C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateWait = .data:0x804C7970; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateDead = .data:0x804C7994; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug5State = .data:0x804C79B8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7ElecBug3FSM = .data:0x804C79DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug14ProperAnimator = .data:0x804C7A00; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7ElecBug5Parms = .data:0x804C7A28; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7ElecBug3Mgr = .data:0x804C7A34; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx13TDnkmsHoudenB = .data:0x804C7B18; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TDnkmsHoudenA = .data:0x804C7B64; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7ElecBug3Obj = .data:0x804C7BB0; // type:object size:0x32C scope:global align:4 +__vt__Q34Game5Wtank3Mgr = .data:0x804C7EE0; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game4Tank5Parms = .data:0x804C7FC4; // type:object size:0xC scope:weak align:4 +__vt__Q23efx29TSyncGroup4 = .data:0x804C7FD0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx4 = .data:0x804C7FEC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TTankWatYodare = .data:0x804C8008; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TTankWatHit = .data:0x804C8054; // type:object size:0x40 scope:weak align:4 +__vt__Q34Game5Wtank3Obj = .data:0x804C8094; // type:object size:0x358 scope:global align:4 +__vt__Q34Game5Armor5Parms = .data:0x804C83F0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game5Armor3Mgr = .data:0x804C83FC; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9TYoroiEat = .data:0x804C84E0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TYoroiHd = .data:0x804C84F4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TYoroiAp = .data:0x804C8508; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TYoroiAttack = .data:0x804C851C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TYoroiAttackhit = .data:0x804C8568; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game5Armor3Obj = .data:0x804C857C; // type:object size:0x32C scope:global align:4 +__vt__Q23efx9TFusenSui = .data:0x804C88A8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TFusenAir = .data:0x804C88F4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TFusenAirhit = .data:0x804C8910; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TFusenDead = .data:0x804C892C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game3Mar3Obj = .data:0x804C8948; // type:object size:0x32C scope:global align:4 +__vt__Q34Game3Mar14ProperAnimator = .data:0x804C8C78; // type:object size:0x28 scope:global align:4 +__vt__Q34Game3Mar3Mgr = .data:0x804C8CA0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game3Mar5Parms = .data:0x804C8D80; // type:object size:0xC scope:weak align:4 +__vt__Q34Game3Mar16StateGroundFlick = .data:0x804C8D90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar13StateFlyFlick = .data:0x804C8DB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar12StateTakeOff = .data:0x804C8DD8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar11StateGround = .data:0x804C8DFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateLand = .data:0x804C8E20; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateFall = .data:0x804C8E44; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar11StateAttack = .data:0x804C8E68; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar16StateChaseInside = .data:0x804C8E8C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar10StateChase = .data:0x804C8EB0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateMove = .data:0x804C8ED4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateWait = .data:0x804C8EF8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateDead = .data:0x804C8F1C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar5State = .data:0x804C8F40; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game3Mar3FSM = .data:0x804C8F64; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane5Parms = .data:0x804C8F88; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Wealthy3Mgr = .data:0x804C8F94; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx11TOoganeKira = .data:0x804C9078; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7Wealthy3Obj = .data:0x804C90C4; // type:object size:0x350 scope:global align:4 +__vt__Q34Game4Fart3Mgr = .data:0x804C9418; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game4Fart3Obj = .data:0x804C9500; // type:object size:0x350 scope:global align:4 +__vt__Q34Game5Armor9StateFail = .data:0x804C9850; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor10StateFlick = .data:0x804C9874; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor8StateEat = .data:0x804C9898; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor12StateAttack2 = .data:0x804C98BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor12StateAttack1 = .data:0x804C98E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor11StateGoHome = .data:0x804C9904; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor12StateMoveTop = .data:0x804C9928; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor15StateMoveCentre = .data:0x804C994C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor13StateMoveSide = .data:0x804C9970; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateMove = .data:0x804C9994; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateDive = .data:0x804C99B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor11StateAppear = .data:0x804C99DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateStay = .data:0x804C9A00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateDead = .data:0x804C9A24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor5State = .data:0x804C9A48; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game5Armor3FSM = .data:0x804C9A6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor14ProperAnimator = .data:0x804C9A90; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C9AB8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5Queen9StateBorn = .data:0x804C9AC4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen12StateRolling = .data:0x804C9AE8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen10StateFlick = .data:0x804C9B0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen11StateDamage = .data:0x804C9B30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen9StateWait = .data:0x804C9B54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen10StateSleep = .data:0x804C9B78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen9StateDead = .data:0x804C9B9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen5State = .data:0x804C9BC0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game5Queen3FSM = .data:0x804C9BE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen14ProperAnimator = .data:0x804C9C08; // type:object size:0x28 scope:global align:4 +__vt__Q34Game5Queen3Mgr = .data:0x804C9C30; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game5Queen5Parms = .data:0x804C9D10; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C9D20; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx34TSyncGroup3 = .data:0x804C9D2C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TChasePosYRot3 = .data:0x804C9D48; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TQueenHanacho = .data:0x804C9D64; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TQueenWakeup = .data:0x804C9DB0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TQueenDead = .data:0x804C9DFC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TQueenFlick = .data:0x804C9E18; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TQueenDamage = .data:0x804C9E34; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TQueenCrashRock = .data:0x804C9E80; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TQueenCrashL = .data:0x804C9ECC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TQueenCrashR = .data:0x804C9F18; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TQueenRoll = .data:0x804C9F64; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TQueenRollCL = .data:0x804C9F80; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TQueenRollCR = .data:0x804C9F9C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TQueenLay = .data:0x804C9FB8; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game31EnemyIterator = .data:0x804CA004; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game5Queen3Obj = .data:0x804CA01C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Baby11StateAttack = .data:0x804CA348; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby9StateMove = .data:0x804CA36C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby9StateBorn = .data:0x804CA390; // type:object size:0x24 scope:global align:4 +__vt__Q23efx10TBabyBecha = .data:0x804CA3B4; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Baby10StatePress = .data:0x804CA3C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby9StateDead = .data:0x804CA3EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby5State = .data:0x804CA410; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Baby3FSM = .data:0x804CA434; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby14ProperAnimator = .data:0x804CA458; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Baby5Parms = .data:0x804CA480; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Baby3Mgr = .data:0x804CA48C; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9TBabyBorn = .data:0x804CA570; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Baby3Obj = .data:0x804CA5BC; // type:object size:0x32C scope:global align:4 +__vt__Q34Game5Demon3Mgr = .data:0x804CA8E8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game5Demon3Obj = .data:0x804CA9C8; // type:object size:0x33C scope:global align:4 +__vt__Q34Game5Queen15QueenShadowNode = .data:0x804CAD08; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10FireChappy3Mgr = .data:0x804CAD18; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx10TYakiSteam = .data:0x804CADF8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TYakiDeadsmoke = .data:0x804CAE44; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TYakiFlick = .data:0x804CAE90; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9THanachoY = .data:0x804CAEDC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TYakiBody = .data:0x804CAF28; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10FireChappy3Obj = .data:0x804CAF44; // type:object size:0x364 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804CB2A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9SnakeCrow13StateStruggle = .data:0x804CB2B4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow8StateEat = .data:0x804CB2D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow11StateAttack = .data:0x804CB2FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow9StateWait = .data:0x804CB320; // type:object size:0x24 scope:global align:4 +__vt__Q23efx14THebiAphd_dive = .data:0x804CB344; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9SnakeCrow14StateDisappear = .data:0x804CB358; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow12StateAppear2 = .data:0x804CB37C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow12StateAppear1 = .data:0x804CB3A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow9StateStay = .data:0x804CB3C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow9StateDead = .data:0x804CB3E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow5State = .data:0x804CB40C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game9SnakeCrow3FSM = .data:0x804CB430; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow14ProperAnimator = .data:0x804CB458; // type:object size:0x28 scope:global align:4 +__vt__Q34Game9SnakeCrow3Mgr = .data:0x804CB480; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9SnakeCrow5Parms = .data:0x804CB560; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804CB570; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx19THebiDeadHane_ver01 = .data:0x804CB57C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx22THebiAphd_appear2_late = .data:0x804CB590; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx23THebiAphd_appear2_first = .data:0x804CB5A4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx17THebiAphd_appear1 = .data:0x804CB5B8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx31TSyncGroup4 = .data:0x804CB5CC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TChaseMtxT4 = .data:0x804CB5E8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9THebiDead = .data:0x804CB604; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9THebiWait = .data:0x804CB620; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8THebiRot = .data:0x804CB66C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9SnakeCrow3Obj = .data:0x804CB6B8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game10KumaChappy13StateWalkPath = .data:0x804CB9E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateWalk = .data:0x804CBA0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy13StateTurnPath = .data:0x804CBA30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateTurn = .data:0x804CBA54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy10StateFlick = .data:0x804CBA78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy11StateAttack = .data:0x804CBA9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateLost = .data:0x804CBAC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy12StateRebirth = .data:0x804CBAE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateDead = .data:0x804CBB08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy5State = .data:0x804CBB2C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10KumaChappy3FSM = .data:0x804CBB50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy14ProperAnimator = .data:0x804CBB78; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10KumaChappy5Parms = .data:0x804CBBA0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10KumaChappy3Mgr = .data:0x804CBBAC; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game14ChappyRelation = .data:0x804CBC90; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10KumaChappy3Obj = .data:0x804CBCA0; // type:object size:0x338 scope:global align:4 +__vt__Q34Game7Fuefuki13StateStruggle = .data:0x804CBFD8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki11StateWhisle = .data:0x804CBFFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateWalk = .data:0x804CC020; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateTurn = .data:0x804CC044; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateWait = .data:0x804CC068; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateJump = .data:0x804CC08C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateLand = .data:0x804CC0B0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateStay = .data:0x804CC0D4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateDead = .data:0x804CC0F8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki5State = .data:0x804CC11C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Fuefuki3FSM = .data:0x804CC140; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki14ProperAnimator = .data:0x804CC168; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Fuefuki5Parms = .data:0x804CC190; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Fuefuki3Mgr = .data:0x804CC19C; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9ArgCursor = .data:0x804CC280; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TFuebugOnpa = .data:0x804CC28C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7Fuefuki3Obj = .data:0x804CC2D8; // type:object size:0x32C scope:global align:4 +__vt__Q24Game25InteractFuefukiTimerReset = .data:0x804CC604; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11Koganemushi3Mgr = .data:0x804CC628; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game11Koganemushi3Obj = .data:0x804CC710; // type:object size:0x350 scope:global align:4 +__vt__Q34Game5Ftank3Mgr = .data:0x804CCA60; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx15TTankFireYodare = .data:0x804CCB48; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TTankFireHit = .data:0x804CCB94; // type:object size:0x40 scope:weak align:4 +__vt__Q34Game5Ftank3Obj = .data:0x804CCBD4; // type:object size:0x358 scope:global align:4 +__vt__Q34Game12Hanachirashi10StateLaugh = .data:0x804CCF30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi16StateGroundFlick = .data:0x804CCF54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi13StateFlyFlick = .data:0x804CCF78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi12StateTakeOff = .data:0x804CCF9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi11StateGround = .data:0x804CCFC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateLand = .data:0x804CCFE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateFall = .data:0x804CD008; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi11StateAttack = .data:0x804CD02C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi16StateChaseInside = .data:0x804CD050; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi10StateChase = .data:0x804CD074; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateMove = .data:0x804CD098; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateWait = .data:0x804CD0BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateDead = .data:0x804CD0E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi5State = .data:0x804CD104; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game12Hanachirashi3FSM = .data:0x804CD128; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi14ProperAnimator = .data:0x804CD150; // type:object size:0x28 scope:global align:4 +__vt__Q34Game12Hanachirashi3Mgr = .data:0x804CD178; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game12Hanachirashi5Parms = .data:0x804CD258; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TFusenhAir = .data:0x804CD268; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TFusenhAirhit = .data:0x804CD284; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game12Hanachirashi3Obj = .data:0x804CD2A0; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804CD5D0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8Damagumo9StateWalk = .data:0x804CD5DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo10StateFlick = .data:0x804CD600; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateWait = .data:0x804CD624; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateLand = .data:0x804CD648; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateStay = .data:0x804CD66C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateDead = .data:0x804CD690; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo5State = .data:0x804CD6B4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8Damagumo3FSM = .data:0x804CD6D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo14ProperAnimator = .data:0x804CD700; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8Damagumo3Mgr = .data:0x804CD728; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Damagumo5Parms = .data:0x804CD808; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804CD818; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx13TDamaDeadBomb = .data:0x804CD824; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDamaWalk = .data:0x804CD838; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDamaWalkw = .data:0x804CD84C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup2 = .data:0x804CD860; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChasePos2 = .data:0x804CD87C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx16TDamaDeadHahenC2 = .data:0x804CD898; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TDamaDeadHahenC1 = .data:0x804CD8E4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TDamaSmoke = .data:0x804CD930; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TDamaDeadHahenB = .data:0x804CD97C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TDamaDeadHahenA = .data:0x804CD9C8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TDamaDeadElecB = .data:0x804CDA14; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TDamaDeadElecA = .data:0x804CDA60; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TDamaHahen = .data:0x804CDAAC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TDamaFootw = .data:0x804CDAF8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TDamaFoot = .data:0x804CDB44; // type:object size:0x1C scope:weak align:4 +__vt__Q24Game19JointGroundCallBack = .data:0x804CDB60; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game23ConditionNotStickClient = .data:0x804CDB70; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Damagumo3Obj = .data:0x804CDB7C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game8Damagumo22DamagumoGroundCallBack = .data:0x804CDEA8; // type:object size:0x10 scope:global align:4 +__vt__Q24Game17TubeShadowSetNode = .data:0x804CDEB8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19TubeShadowTransNode = .data:0x804CDEC8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16SphereShadowNode = .data:0x804CDED8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804CDEE8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6Kurage16StateGroundFlick = .data:0x804CDEF4; // type:object size:0x24 scope:global align:4 +__vt__Q23efx15TNewkurageFlick = .data:0x804CDF18; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kurage13StateFlyFlick = .data:0x804CDF2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage11StateGround = .data:0x804CDF50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage12StateTakeOff = .data:0x804CDF74; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateLand = .data:0x804CDF98; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateFall = .data:0x804CDFBC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage11StateAttack = .data:0x804CDFE0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage10StateChase = .data:0x804CE004; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateMove = .data:0x804CE028; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateWait = .data:0x804CE04C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateDead = .data:0x804CE070; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage5State = .data:0x804CE094; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Kurage3FSM = .data:0x804CE0B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage14ProperAnimator = .data:0x804CE0E0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Kurage3Mgr = .data:0x804CE108; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Kurage5Parms = .data:0x804CE1E8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx14TNewkurageBomb = .data:0x804CE1F8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx17TNewkurageDeadrun = .data:0x804CE20C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TNewkurageSui = .data:0x804CE258; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TNewkurageKira = .data:0x804CE274; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TNewkurageHire = .data:0x804CE2C0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TNewkurageEye = .data:0x804CE2DC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game6Kurage3Obj = .data:0x804CE328; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804CE658; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9BombSarai14StateBombFlick = .data:0x804CE664; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai10StateFlick = .data:0x804CE688; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateTakeOff2 = .data:0x804CE6AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateTakeOff1 = .data:0x804CE6D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateFall = .data:0x804CE6F4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai12StateRelease = .data:0x804CE718; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai11StateSupply = .data:0x804CE73C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateBombMove = .data:0x804CE760; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateMove = .data:0x804CE784; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateBombWait = .data:0x804CE7A8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateWait = .data:0x804CE7CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai11StateDamage = .data:0x804CE7F0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateDead = .data:0x804CE814; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai5State = .data:0x804CE838; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game9BombSarai3FSM = .data:0x804CE85C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai14ProperAnimator = .data:0x804CE880; // type:object size:0x28 scope:global align:4 +__vt__Q34Game9BombSarai3Mgr = .data:0x804CE8A8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9BombSarai5Parms = .data:0x804CE988; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TBsaraiDead = .data:0x804CE998; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TBsaraiSupli = .data:0x804CE9AC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9BombSarai3Obj = .data:0x804CE9F8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game11OtakaraBase13StateBombTurn = .data:0x804CED28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateBombMove = .data:0x804CED4C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateBombWait = .data:0x804CED70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemDrop = .data:0x804CED94; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase14StateItemFlick = .data:0x804CEDB8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemTurn = .data:0x804CEDDC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemMove = .data:0x804CEE00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemWait = .data:0x804CEE24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateTake = .data:0x804CEE48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateTurn = .data:0x804CEE6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateMove = .data:0x804CEE90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateWait = .data:0x804CEEB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase10StateFlick = .data:0x804CEED8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateDead = .data:0x804CEEFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase5State = .data:0x804CEF20; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11OtakaraBase3FSM = .data:0x804CEF44; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase14ProperAnimator = .data:0x804CEF68; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11OtakaraBase3Mgr = .data:0x804CEF90; // type:object size:0xE4 scope:global align:4 +__vt__Q24Game30ConditionNotStickClientAndItem = .data:0x804CF078; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11OtakaraBase3Obj = .data:0x804CF084; // type:object size:0x354 scope:global align:4 +__vt__Q34Game11FireOtakara3Mgr = .data:0x804CF3D8; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game11OtakaraBase5Parms = .data:0x804CF4BC; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TOtaFire = .data:0x804CF4C8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOtaChargefire = .data:0x804CF4DC; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11FireOtakara3Obj = .data:0x804CF4F8; // type:object size:0x354 scope:global align:4 +__vt__Q34Game12WaterOtakara3Mgr = .data:0x804CF850; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx7TOtaWat = .data:0x804CF938; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TOtaChargewat = .data:0x804CF94C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game12WaterOtakara3Obj = .data:0x804CF968; // type:object size:0x354 scope:global align:4 +__vt__Q34Game10GasOtakara3Mgr = .data:0x804CFCC0; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx7TOtaGas = .data:0x804CFDA8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TOtaChargegas = .data:0x804CFDBC; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10GasOtakara3Obj = .data:0x804CFDD8; // type:object size:0x354 scope:global align:4 +__vt__Q34Game11ElecOtakara3Mgr = .data:0x804D0130; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx8TOtaElec = .data:0x804D0218; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOtaChargeelec = .data:0x804D022C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11ElecOtakara3Obj = .data:0x804D0248; // type:object size:0x354 scope:global align:4 +__vt__Q34Game8Imomushi14StateZukanMove = .data:0x804D05A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi16StateZukanAppear = .data:0x804D05C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi14StateZukanStay = .data:0x804D05E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateWait = .data:0x804D060C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi11StateAttack = .data:0x804D0630; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi10StateClimb = .data:0x804D0654; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi11StateGoHome = .data:0x804D0678; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateMove = .data:0x804D069C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateDive = .data:0x804D06C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi11StateAppear = .data:0x804D06E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateStay = .data:0x804D0708; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi13StateFallMove = .data:0x804D072C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi13StateFallDive = .data:0x804D0750; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateDead = .data:0x804D0774; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi5State = .data:0x804D0798; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8Imomushi3FSM = .data:0x804D07BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi14ProperAnimator = .data:0x804D07E0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8Imomushi5Parms = .data:0x804D0808; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Imomushi3Mgr = .data:0x804D0814; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9ArgImoEat = .data:0x804D08F8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Imomushi3Obj = .data:0x804D0904; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D0C30; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6Houdai9StateShot = .data:0x804D0C3C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateWalk = .data:0x804D0C60; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai10StateFlick = .data:0x804D0C84; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateWait = .data:0x804D0CA8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateLand = .data:0x804D0CCC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateStay = .data:0x804D0CF0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateDead = .data:0x804D0D14; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai5State = .data:0x804D0D38; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Houdai3FSM = .data:0x804D0D5C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai14ProperAnimator = .data:0x804D0D80; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Houdai3Mgr = .data:0x804D0DA8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Houdai5Parms = .data:0x804D0E88; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D0E98; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx9ArgPosPos = .data:0x804D0EA4; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10THdamaOpen = .data:0x804D0EB0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14THdamaOnSteam2 = .data:0x804D0EC4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13THdamaOnSmoke = .data:0x804D0ED8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx16THdamaDeadSteamT = .data:0x804D0EEC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TOootaWalk = .data:0x804D0F00; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15THdamaDeadSteam = .data:0x804D0F14; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14THdamaDeadbomb = .data:0x804D0F30; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13THdamaSteamBd = .data:0x804D0F4C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14THdamaOnSteam1 = .data:0x804D0F98; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14THdamaOnHahen1 = .data:0x804D0FE4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11THdamaHahen = .data:0x804D1030; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13THdamaSteamSt = .data:0x804D107C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11THdamaSteam = .data:0x804D10C8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14THdamaOnHahen2 = .data:0x804D1114; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game6Houdai3Obj = .data:0x804D1160; // type:object size:0x32C scope:global align:4 +__vt__Q34Game6Houdai20HoudaiGroundCallBack = .data:0x804D148C; // type:object size:0x10 scope:global align:4 +__vt__Q23efx11THdamaShoot = .data:0x804D14A0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THdamaSight = .data:0x804D14B4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10THdamaHit1 = .data:0x804D1500; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10THdamaHit2 = .data:0x804D1514; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10THdamaHit3 = .data:0x804D1528; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx6ArgDir = .data:0x804D153C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Houdai17HoudaiShotGunNode = .data:0x804D1548; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10LeafChappy3Mgr = .data:0x804D1558; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10LeafChappy3Obj = .data:0x804D1638; // type:object size:0x33C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D1978; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game7BigFoot9StateWalk = .data:0x804D1984; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot10StateFlick = .data:0x804D19A8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateWait = .data:0x804D19CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateLand = .data:0x804D19F0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateStay = .data:0x804D1A14; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateDead = .data:0x804D1A38; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot5State = .data:0x804D1A5C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7BigFoot3FSM = .data:0x804D1A80; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot14ProperAnimator = .data:0x804D1AA8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7BigFoot3Mgr = .data:0x804D1AD0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7BigFoot5Parms = .data:0x804D1BB0; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D1BC0; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx10TOdamaWalk = .data:0x804D1BCC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TOdamaFur1 = .data:0x804D1BE0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx17TOdamaDeadHahenC2 = .data:0x804D1C2C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx17TOdamaDeadHahenC1 = .data:0x804D1C78; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOdamaFur2 = .data:0x804D1CC4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TOdamaDeadHahenB = .data:0x804D1D10; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TOdamaDeadHahenA = .data:0x804D1D5C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TOdamaHahen = .data:0x804D1DA8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOdamaFoot = .data:0x804D1DF4; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game7BigFoot3Obj = .data:0x804D1E10; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7BigFoot21BigFootGroundCallBack = .data:0x804D213C; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D2150; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10SnakeWhole13StateStruggle = .data:0x804D215C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole8StateEat = .data:0x804D2180; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole11StateAttack = .data:0x804D21A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateHome = .data:0x804D21C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateWalk = .data:0x804D21EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateWait = .data:0x804D2210; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole14StateDisappear = .data:0x804D2234; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole12StateAppear2 = .data:0x804D2258; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole12StateAppear1 = .data:0x804D227C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateStay = .data:0x804D22A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateDead = .data:0x804D22C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole5State = .data:0x804D22E8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10SnakeWhole3FSM = .data:0x804D230C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole14ProperAnimator = .data:0x804D2330; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10SnakeWhole3Mgr = .data:0x804D2358; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10SnakeWhole5Parms = .data:0x804D2438; // type:object size:0xC scope:weak align:4 +__vt__Q23efx15TCphebiDeadHane = .data:0x804D2448; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TCphebiDead = .data:0x804D245C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10SnakeWhole3Obj = .data:0x804D2478; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D27A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9OniKurage16StateGroundFlick = .data:0x804D27B4; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12TKurageFlick = .data:0x804D27D8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9OniKurage13StateFlyFlick = .data:0x804D27EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage11StateGround = .data:0x804D2810; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage12StateTakeOff = .data:0x804D2834; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateLand = .data:0x804D2858; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateDrop = .data:0x804D287C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateFall = .data:0x804D28A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage11StateAttack = .data:0x804D28C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage10StateChase = .data:0x804D28E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateMove = .data:0x804D290C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateWait = .data:0x804D2930; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateDead = .data:0x804D2954; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage5State = .data:0x804D2978; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game9OniKurage3FSM = .data:0x804D299C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage14ProperAnimator = .data:0x804D29C0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game9OniKurage3Mgr = .data:0x804D29E8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9OniKurage5Parms = .data:0x804D2AC8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D2AD8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx11TKurageBomb = .data:0x804D2AE4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TKurageDeadrun = .data:0x804D2AF8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKurageGepu = .data:0x804D2B44; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TKurageSui = .data:0x804D2B90; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TKurageKira = .data:0x804D2BAC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKurageHire = .data:0x804D2BF8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TKurageEye = .data:0x804D2C14; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9OniKurage3Obj = .data:0x804D2C60; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D2F90; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game11BigTreasure13StateItemWalk = .data:0x804D2F9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateWalk = .data:0x804D2FC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure13StateDropItem = .data:0x804D2FE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure12StatePutItem = .data:0x804D3008; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure11StateAttack = .data:0x804D302C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure14StatePreAttack = .data:0x804D3050; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure10StateFlick = .data:0x804D3074; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure13StateItemWait = .data:0x804D3098; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateWait = .data:0x804D30BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateLand = .data:0x804D30E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateStay = .data:0x804D3104; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateDead = .data:0x804D3128; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure5State = .data:0x804D314C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11BigTreasure3FSM = .data:0x804D3170; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure3Mgr = .data:0x804D3198; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11BigTreasure5Parms = .data:0x804D3278; // type:object size:0xC scope:weak align:4 +__vt__Q24Game17TubeShadowPosNode = .data:0x804D3288; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D3298; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx14TOootaBombBody = .data:0x804D32A4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx16TOootaStartSmoke = .data:0x804D32B8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOootaPartsoff = .data:0x804D32CC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx44TSyncGroup3 = .data:0x804D32E0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx24TChasePosPosLocalYScale3 = .data:0x804D32FC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TOootaParticle = .data:0x804D3318; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TOootaChangeBody = .data:0x804D3364; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TOootaDeadAwa = .data:0x804D33B0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TOootaDeadBody = .data:0x804D33FC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx15TOootaStartBody = .data:0x804D3418; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TOootaChangeLeg = .data:0x804D3464; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TOootaDeadLeg = .data:0x804D34B0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TOootaStartLeg = .data:0x804D34CC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TOootaStartOta = .data:0x804D3518; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOootaFoot = .data:0x804D3564; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11BigTreasure3Obj = .data:0x804D3580; // type:object size:0x32C scope:global align:4 +__vt__Q34Game11BigTreasure14ProperAnimator = .data:0x804D38AC; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game11BigTreasure25BigTreasureGroundCallBack = .data:0x804D38D4; // type:object size:0x10 scope:global align:4 +__vt__Q34Game6Kabuto13StateFixFlick = .data:0x804D38E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto14StateFixAttack = .data:0x804D390C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto12StateFixTurn = .data:0x804D3930; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto12StateFixWait = .data:0x804D3954; // type:object size:0x24 scope:global align:4 +__vt__Q23efx22THebiAphd_kkabuto_dive = .data:0x804D3978; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kabuto12StateFixHide = .data:0x804D398C; // type:object size:0x24 scope:global align:4 +__vt__Q23efx24THebiAphd_kkabuto_appear = .data:0x804D39B0; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kabuto14StateFixAppear = .data:0x804D39C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto12StateFixStay = .data:0x804D39E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto11StateAttack = .data:0x804D3A0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto10StateFlick = .data:0x804D3A30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateMove = .data:0x804D3A54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateTurn = .data:0x804D3A78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateWait = .data:0x804D3A9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateDead = .data:0x804D3AC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto5State = .data:0x804D3AE4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Kabuto3FSM = .data:0x804D3B08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto14ProperAnimator = .data:0x804D3B30; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Kabuto3Mgr = .data:0x804D3B58; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx13TKabutoAttack = .data:0x804D3C40; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kabuto3Obj = .data:0x804D3C54; // type:object size:0x34C scope:global align:4 +__vt__Q34Game12KumaKochappy13StateWalkPath = .data:0x804D3FA0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy9StateWalk = .data:0x804D3FC4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy10StateFlick = .data:0x804D3FE8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy11StateAttack = .data:0x804D400C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy9StateWait = .data:0x804D4030; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy10StatePress = .data:0x804D4054; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy9StateDead = .data:0x804D4078; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy5State = .data:0x804D409C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game12KumaKochappy3FSM = .data:0x804D40C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy14ProperAnimator = .data:0x804D40E8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game12KumaKochappy5Parms = .data:0x804D4110; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12KumaKochappy3Mgr = .data:0x804D411C; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game38EnemyIterator = .data:0x804D4200; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game12KumaKochappy3Obj = .data:0x804D4218; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D4548; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10MiniHoudai13StateWalkPath = .data:0x804D4554; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai13StateWalkHome = .data:0x804D4578; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateWalk = .data:0x804D459C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai13StateTurnPath = .data:0x804D45C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai13StateTurnHome = .data:0x804D45E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateTurn = .data:0x804D4608; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai10StateFlick = .data:0x804D462C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai11StateAttack = .data:0x804D4650; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateLost = .data:0x804D4674; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai12StateRebirth = .data:0x804D4698; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateDead = .data:0x804D46BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai5State = .data:0x804D46E0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10MiniHoudai3FSM = .data:0x804D4704; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai14ProperAnimator = .data:0x804D4728; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10MiniHoudai3Mgr = .data:0x804D4750; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx12TChibiDeadSe = .data:0x804D4830; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TChibiDeadMouth = .data:0x804D4844; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TChibiShoot = .data:0x804D4858; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TChibiSmokeL = .data:0x804D486C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TChibiSmokeS = .data:0x804D4880; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TChibiDeadLight = .data:0x804D4894; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TChibiCharge = .data:0x804D48E0; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10MiniHoudai3Obj = .data:0x804D492C; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D4C58; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx11TChibiShell = .data:0x804D4C64; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10MiniHoudai21MiniHoudaiShotGunNode = .data:0x804D4CB0; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game7Sokkuri10StateFlick = .data:0x804D4CC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri14StateMoveWater = .data:0x804D4CE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri15StateMoveGround = .data:0x804D4D08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri9StateWait = .data:0x804D4D2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri14StateDisappear = .data:0x804D4D50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri11StateAppear = .data:0x804D4D74; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri9StateStay = .data:0x804D4D98; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri10StatePress = .data:0x804D4DBC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri9StateDead = .data:0x804D4DE0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri5State = .data:0x804D4E04; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Sokkuri3FSM = .data:0x804D4E28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri14ProperAnimator = .data:0x804D4E50; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Sokkuri3Mgr = .data:0x804D4E78; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Sokkuri5Parms = .data:0x804D4F58; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TJgmBubble = .data:0x804D4F68; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game7Sokkuri3Obj = .data:0x804D4F7C; // type:object size:0x32C scope:global align:4 +__vt__Q24Game24UmimushiSphereShadowNode = .data:0x804D52A8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game22UmimushiTubeShadowNode = .data:0x804D52B8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Hana3Mgr = .data:0x804D52C8; // type:object size:0xE0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D53A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game21ConditionNotStickSlot = .data:0x804D53B4; // type:object size:0xC scope:weak align:4 +__vt__Q23efx9THanaMiss = .data:0x804D53C0; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Hana3Obj = .data:0x804D53D4; // type:object size:0x364 scope:global align:4 +__vt__Q23efx12TOootaWbShot = .data:0x804D5738; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup6 = .data:0x804D574C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx6 = .data:0x804D5768; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TOootaElecAttack2 = .data:0x804D5784; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TOootaElecAttack1 = .data:0x804D57A0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TOootaElecLeg = .data:0x804D57EC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TOootaGas = .data:0x804D5838; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TOootaPdead = .data:0x804D5854; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx44TSyncGroup3 = .data:0x804D5868; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx24TChasePosPosLocalZScale3 = .data:0x804D5884; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TOootaPhouden = .data:0x804D58A0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx15TOootaElecparts = .data:0x804D58BC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOootaElec = .data:0x804D5908; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11BigTreasure21BigTreasureElecAttack = .data:0x804D5924; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx11TOootaWbHit = .data:0x804D5934; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup4 = .data:0x804D5948; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChasePos4 = .data:0x804D5964; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TOootaWbomb = .data:0x804D5980; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11BigTreasure22BigTreasureWaterAttack = .data:0x804D599C; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BigTreasure20BigTreasureGasAttack = .data:0x804D59AC; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BigTreasure21BigTreasureFireAttack = .data:0x804D59BC; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BigTreasure16AttackShadowNode = .data:0x804D59CC; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game25SnakeCrowSphereShadowNode = .data:0x804D59E0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game23SnakeCrowTubeShadowNode = .data:0x804D59F0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game26SnakeWholeSphereShadowNode = .data:0x804D5A00; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game24SnakeWholeTubeShadowNode = .data:0x804D5A10; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BombOtakara3Mgr = .data:0x804D5A20; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game11BombOtakara3Obj = .data:0x804D5B08; // type:object size:0x354 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D5E60; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10DangoMushi10StateFlick = .data:0x804D5E6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi12StateRecover = .data:0x804D5E90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateTurn = .data:0x804D5EB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi11StateAttack = .data:0x804D5ED8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateMove = .data:0x804D5EFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateWait = .data:0x804D5F20; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi11StateAppear = .data:0x804D5F44; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateStay = .data:0x804D5F68; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateDead = .data:0x804D5F8C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi5State = .data:0x804D5FB0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10DangoMushi3FSM = .data:0x804D5FD4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi3Mgr = .data:0x804D5FF8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10DangoMushi5Parms = .data:0x804D60D8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx9TDangoFly = .data:0x804D60E8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TDangoDamage = .data:0x804D60FC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDangoDead = .data:0x804D6110; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TDangoDeadSmoke = .data:0x804D6124; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDangoRun = .data:0x804D6138; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TDangoAttack2 = .data:0x804D6154; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TDangoWallBreak = .data:0x804D61A0; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10DangoMushi3Obj = .data:0x804D61EC; // type:object size:0x32C scope:global align:4 +__vt__Q34Game10DangoMushi14ProperAnimator = .data:0x804D6518; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game11GreenKabuto3Mgr = .data:0x804D6540; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game6Kabuto5Parms = .data:0x804D6624; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11GreenKabuto3Obj = .data:0x804D6630; // type:object size:0x34C scope:global align:4 +__vt__Q34Game9RedKabuto3Mgr = .data:0x804D6980; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game9RedKabuto3Obj = .data:0x804D6A68; // type:object size:0x34C scope:global align:4 +__vt__Q34Game9FixKabuto3Mgr = .data:0x804D6DB8; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx12TKkabutoWait = .data:0x804D6EA0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKkabutoRot = .data:0x804D6EEC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9FixKabuto3Obj = .data:0x804D6F38; // type:object size:0x34C scope:global align:4 +__vt__Q34Game14NormMiniHoudai3Obj = .data:0x804D7288; // type:object size:0x32C scope:weak align:4 +__vt__Q34Game10MiniHoudai5Parms = .data:0x804D75B4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game14NormMiniHoudai3Mgr = .data:0x804D75C0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game13FixMiniHoudai3Obj = .data:0x804D76A0; // type:object size:0x32C scope:weak align:4 +__vt__Q34Game13FixMiniHoudai3Mgr = .data:0x804D79CC; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game18TyreTubeShadowNode = .data:0x804D7AB0; // type:object size:0x10 scope:weak align:4 +PikiIconTextureName__Q22og6Screen = .data:0x804D7AC0; // type:object size:0x4C scope:global align:4 data:4byte +__vt__Q29P2DScreen4Node = .data:0x804D7B0C; // type:object size:0x1C scope:weak align:4 +__vt__Q25efx2d11T2DSprayset = .data:0x804D7B28; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d12T2DExtractUp = .data:0x804D7B40; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen12DopingScreen = .data:0x804D7B58; // type:object size:0xA0 scope:global align:4 +__vt__Q32og6Screen24PikminCounterChallenge1P = .data:0x804D7BF8; // type:object size:0xA4 scope:global align:4 +__vt__Q32og6Screen17PikminCounterCave = .data:0x804D7C9C; // type:object size:0xA4 scope:global align:4 +__vt__Q32og6Screen13PikminCounter = .data:0x804D7D40; // type:object size:0xA4 scope:global align:4 +__vt__Q32og6Screen8AnimPane = .data:0x804D7DE8; // type:object size:0x10 scope:global align:4 +__vt__Q32og6Screen10AnimScreen = .data:0x804D7DF8; // type:object size:0x10 scope:global align:4 +__vt__Q32og6Screen12AnimBaseBase = .data:0x804D7E08; // type:object size:0x10 scope:weak align:4 +SujiTex32__Q22og6Screen = .data:0x804D7E18; // type:object size:0x2C scope:global align:4 +SujiTexMap__Q22og6Screen = .data:0x804D7E44; // type:object size:0x2C scope:global align:4 +__vt__Q32og6Screen13NaviLifeGauge = .data:0x804D7E70; // type:object size:0xA0 scope:global align:4 +__vt__Q32og6Screen18CallBack_LifeGauge = .data:0x804D7F10; // type:object size:0x1C scope:global align:4 +__vt__Q29P2DScreen12CallBackNode = .data:0x804D7F2C; // type:object size:0x1C scope:weak align:4 +__vt__Q32og6Screen8SunMeter = .data:0x804D7F48; // type:object size:0xA0 scope:weak align:4 +__vt__Q32og6Screen17CallBack_SunMeter = .data:0x804D7FE8; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen18CallBack_CatchPiki = .data:0x804D8008; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen14ContenaCounter = .data:0x804D8028; // type:object size:0xA0 scope:weak align:4 +__vt__Q32og6Screen10MapCounter = .data:0x804D80C8; // type:object size:0xA0 scope:weak align:4 +__vt__Q32og6Screen15AnimText_Screen = .data:0x804D8168; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen16CallBack_Message = .data:0x804D8188; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen15CallBack_Screen = .data:0x804D81A8; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen18CallBack_CounterRV = .data:0x804D81C8; // type:object size:0x30 scope:global align:4 +__vt__Q32og6Screen19CallBack_CounterDay = .data:0x804D81F8; // type:object size:0x30 scope:global align:4 +__vt__Q32og6Screen15DispMemberDummy = .data:0x804D8228; // type:object size:0x18 scope:weak align:4 +__vt__Q26Screen8IObjBase = .data:0x804D8240; // type:object size:0x44 scope:weak align:4 +__vt__Q32og9newScreen6Ground = .data:0x804D8288; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D82D8; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen9ObjGround = .data:0x804D82E4; // type:object size:0x78 scope:global align:4 +__vt__8Graphics = .data:0x804D8360; // type:object size:0x24 scope:weak align:4 +__vt__Q22og5Lib2D = .data:0x804D8388; // type:object size:0xC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8398; // type:object size:0xC scope:local align:4 data:float +map_icon_tag__Q22og9newScreen = .data:0x804D83A8; // type:object size:0xB0 scope:global align:8 data:4byte +__vt__Q26Screen11SetSceneArg = .data:0x804D8458; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen12SceneArgBase = .data:0x804D8468; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen11ObjSMenuMap = .data:0x804D8478; // type:object size:0xA8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8520; // type:object size:0xC scope:local align:4 data:float +@3897 = .data:0x804D852C; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen8SMenuMap = .data:0x804D859C; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen14SceneSMenuBase = .data:0x804D85EC; // type:object size:0x50 scope:weak align:4 +EquipItemList__Q24Game5Equip = .data:0x804D8640; // type:object size:0x30 scope:global align:4 data:4byte +ItemMsgID_List__Q22og9newScreen = .data:0x804D8670; // type:object size:0x60 scope:global align:8 data:4byte +__vt__Q32og9newScreen12ObjSMenuItem = .data:0x804D86D0; // type:object size:0xA8 scope:global align:4 +@3552 = .data:0x804D8778; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen9SMenuItem = .data:0x804D87E8; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8838; // type:object size:0xC scope:local align:4 data:float +@3693 = .data:0x804D8844; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen10SMenuPause = .data:0x804D88B4; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen13ObjSMenuPause = .data:0x804D8908; // type:object size:0xA8 scope:global align:4 +__vt__Q32og9newScreen12ObjSMenuBase = .data:0x804D89B0; // type:object size:0xA8 scope:global align:4 +__vt__Q32og9newScreen18StartSceneArgSMenu = .data:0x804D8A58; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen58StartSceneArgTemplate = .data:0x804D8A68; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen13StartSceneArg = .data:0x804D8A78; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen13ObjCourseName = .data:0x804D8A88; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8B00; // type:object size:0xC scope:local align:4 data:float +@3131 = .data:0x804D8B0C; // type:object size:0x1C scope:local align:4 +CourseNumToSZS__Q22og9newScreen = .data:0x804D8B28; // type:object size:0x10 scope:global align:4 +bloFileNameCourse__Q22og9newScreen = .data:0x804D8B38; // type:object size:0x10 scope:global align:4 +animFile_Course00__Q22og9newScreen = .data:0x804D8B48; // type:object size:0x10 scope:global align:4 +animFile_Course01__Q22og9newScreen = .data:0x804D8B58; // type:object size:0x10 scope:global align:4 +animFile_Course02__Q22og9newScreen = .data:0x804D8B68; // type:object size:0x10 scope:global align:4 +animFile_Course03__Q22og9newScreen = .data:0x804D8B78; // type:object size:0x10 scope:global align:4 +animFileTableCourse__Q22og9newScreen = .data:0x804D8B88; // type:object size:0x10 scope:global align:4 +__vt__Q32og9newScreen10CourseName = .data:0x804D8B98; // type:object size:0x50 scope:global align:4 +@3999 = .data:0x804D8BE8; // type:object size:0x24 scope:local align:4 +__vt__Q25efx2d12T2DOtakantei = .data:0x804D8C0C; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9TForever5 = .data:0x804D8C24; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen9ObjKantei = .data:0x804D8C3C; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen10KanteiDemo = .data:0x804D8CB8; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen14ObjSpecialItem = .data:0x804D8D08; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen11SpecialItem = .data:0x804D8D80; // type:object size:0x50 scope:global align:4 +vsRuleMsgId__Q22og9newScreen = .data:0x804D8DD0; // type:object size:0x30 scope:global align:8 +__vt__Q32og9newScreen8ObjFloor = .data:0x804D8E00; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen5Floor = .data:0x804D8E78; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8EC8; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen7ObjCave = .data:0x804D8ED4; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen4Cave = .data:0x804D8F50; // type:object size:0x50 scope:global align:4 +CaveTitleMsg__Q22og9newScreen = .data:0x804D8FA0; // type:object size:0x438 scope:local align:8 data:4byte +@4303 = .data:0x804D93D8; // type:object size:0x1C scope:local align:4 +__vt__Q32og9newScreen10ObjAnaDemo = .data:0x804D93F4; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen7AnaDemo = .data:0x804D9470; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen14ObjChallenge2P = .data:0x804D94C0; // type:object size:0x7C scope:global align:4 +__vt__Q32og9newScreen11Challenge2P = .data:0x804D9540; // type:object size:0x54 scope:global align:4 +__vt__Q32og9newScreen10ObjContena = .data:0x804D9598; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen7Contena = .data:0x804D9610; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen20ObjSMenuPauseDoukutu = .data:0x804D9660; // type:object size:0xA8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D9708; // type:object size:0xC scope:local align:4 data:float +@3705 = .data:0x804D9714; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen17SMenuPauseDoukutu = .data:0x804D9784; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen10ObjUfoMenu = .data:0x804D97D8; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen7UfoMenu = .data:0x804D9850; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen7ObjSave = .data:0x804D98A0; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen4Save = .data:0x804D9918; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen11ObjFinalMsg = .data:0x804D9968; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen8FinalMsg = .data:0x804D99E0; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d8ArgScale = .data:0x804D9A30; // type:object size:0xC scope:weak align:4 +__vt__Q32og9newScreen5ObjVs = .data:0x804D9A3C; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen2Vs = .data:0x804D9AB8; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D9B08; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen14ObjChallenge1P = .data:0x804D9B14; // type:object size:0x7C scope:global align:4 +__vt__Q32og9newScreen11Challenge1P = .data:0x804D9B90; // type:object size:0x54 scope:global align:4 +__vt__Q32og9newScreen15ObjSMenuPauseVS = .data:0x804D9BE8; // type:object size:0xB8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D9CA0; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen12SMenuPauseVS = .data:0x804D9CAC; // type:object size:0x50 scope:global align:4 +__vt__Q32og6Screen15CallBack_Furiko = .data:0x804D9D00; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen20CallBack_CounterSlot = .data:0x804D9D20; // type:object size:0x30 scope:global align:4 +__vt__Q32og9newScreen22ObjWorldMapInfoWindow0 = .data:0x804D9D50; // type:object size:0xB8 scope:global align:4 +__vt__Q32og6Screen26DispMemberWorldMapInfoWin0 = .data:0x804D9E08; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D9E20; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen19WorldMapInfoWindow0 = .data:0x804D9E2C; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen22ObjWorldMapInfoWindow1 = .data:0x804D9E80; // type:object size:0xB8 scope:global align:4 +__vt__Q32og6Screen26DispMemberWorldMapInfoWin1 = .data:0x804D9F38; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D9F50; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen19WorldMapInfoWindow1 = .data:0x804D9F5C; // type:object size:0x50 scope:global align:4 +__vt__Q32og6Screen15TotalPokoScreen = .data:0x804D9FB0; // type:object size:0xA4 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804DA058; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen16ObjChallengeBase = .data:0x804DA064; // type:object size:0x7C scope:global align:4 +__vt__Q32og9newScreen13ChallengeBase = .data:0x804DA0E0; // type:object size:0x54 scope:weak align:4 +__vt__Q32og6Screen16CallBack_Picture = .data:0x804DA138; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen18CallBack_DrawAfter = .data:0x804DA158; // type:object size:0x1C scope:global align:4 +__vt__Q25efx2d12T2DSensorAct = .data:0x804DA178; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d13T2DSensorComp = .data:0x804DA190; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d12T2DSensorGet = .data:0x804DA1A8; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen13TitleMsgClash = .data:0x804DA1C0; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d11T2DCvnameVs = .data:0x804DA1D8; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9TForever2 = .data:0x804DA1F0; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen12TitleMsgWave = .data:0x804DA208; // type:object size:0x1C scope:global align:4 +__vt__Q25efx2d13T2DCvnameChal = .data:0x804DA224; // type:object size:0x38 scope:weak align:4 +__vt__Q32og9newScreen12TitleMsgDrop = .data:0x804DA25C; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d13T2DCvnameCave = .data:0x804DA274; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9TForever3 = .data:0x804DA28C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen8TitleMsg = .data:0x804DA2A4; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen20TitleMessageAnalyzer = .data:0x804DA2BC; // type:object size:0x68 scope:global align:4 +@3552 = .data:0x804DA328; // type:object size:0x60 scope:local align:4 +__vt__Q32og9newScreen9SMenuCont = .data:0x804DA388; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen12ObjSMenuCont = .data:0x804DA3D8; // type:object size:0xA8 scope:global align:4 +__vt__Q28PSSystem6SeqMgr = .data:0x804DA480; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem10JumpBgmSeq = .data:0x804DA48C; // type:object size:0x64 scope:global align:4 +__vt__Q28PSSystem20TriangleTableModTask = .data:0x804DA4F0; // type:object size:0x18 scope:weak align:4 +__vt__Q28PSSystem14PitchResetTask = .data:0x804DA508; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12FlagWaitTask = .data:0x804DA514; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem8TaskBase = .data:0x804DA520; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12BankRandTask = .data:0x804DA52C; // type:object size:0x14 scope:weak align:4 +__vt__Q28PSSystem20SeqTrackRoot_JumpBgm = .data:0x804DA540; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem11DirectedBgm = .data:0x804DA55C; // type:object size:0x4C scope:global align:4 +__vt__Q28PSSystem5SeSeq = .data:0x804DA5A8; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem9StreamBgm = .data:0x804DA5EC; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem6BgmSeq = .data:0x804DA630; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem7SeqBase = .data:0x804DA674; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem10Reservator = .data:0x804DA6B8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem21SeqPauseOffReservator = .data:0x804DA6C4; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem17SeqPlayReservator = .data:0x804DA6D0; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem7SeqHeap = .data:0x804DA6DC; // type:object size:0x10 scope:global align:4 +__vt__Q28PSSystem11StreamSound = .data:0x804DA6EC; // type:object size:0xE8 scope:global align:4 +__vt__Q28PSSystem8SeqSound = .data:0x804DA7D4; // type:object size:0xE8 scope:global align:4 +__vt__Q28PSSystem12SeqSoundBase = .data:0x804DA8BC; // type:object size:0x10 scope:global align:4 +__vt__Q28PSSystem14StreamDataList = .data:0x804DA8CC; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem42SingletonBase = .data:0x804DA8E8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem11SeqDataList = .data:0x804DA8F4; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem39SingletonBase = .data:0x804DA910; // type:object size:0xC scope:weak align:4 +@4254 = .data:0x804DA920; // type:object size:0x54 scope:local align:4 +@4253 = .data:0x804DA974; // type:object size:0x54 scope:local align:4 +__vt__Q26PSGame11PikSceneMgr = .data:0x804DA9C8; // type:object size:0x28 scope:global align:4 +__vt__Q26PSGame8PikScene = .data:0x804DA9F0; // type:object size:0x28 scope:global align:4 +__vt__Q26PSGame9SceneInfo = .data:0x804DAA18; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem24ArcMgr = .data:0x804DAA24; // type:object size:0xC scope:weak align:4 +__vt__Q29PSAutoBgm15ConductorArcMgr = .data:0x804DAA30; // type:object size:0xC scope:weak align:4 +__vt__Q26PSGame10SysFactory = .data:0x804DAA3C; // type:object size:0xC scope:weak align:4 +__vt__Q26PSGame9CameraMgr = .data:0x804DAA48; // type:object size:0xC scope:global align:4 +__vt__Q36PSGame10SoundTable11CategoryMgr = .data:0x804DAA54; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem49SingletonBase = .data:0x804DAA60; // type:object size:0xC scope:weak align:4 +__vt__Q26PSGame13ConductorList = .data:0x804DAA6C; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem39SingletonBase = .data:0x804DAA88; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12TextDataBase = .data:0x804DAA98; // type:object size:0x10 scope:global align:4 +__vt__Q28PSSystem5SysIF = .data:0x804DAAA8; // type:object size:0x2C scope:weak align:4 +__vt__Q29PSAutoBgm7AutoBgm = .data:0x804DAAD8; // type:object size:0x4C scope:global align:4 +__vt__Q29PSAutoBgm19AutoBgmSeqTrackRoot = .data:0x804DAB24; // type:object size:0x1C scope:weak align:4 +__vt__Q29PSAutoBgm10MeloArrMgr = .data:0x804DAB40; // type:object size:0xC scope:weak align:4 +__vt__Q29PSAutoBgm12ConductorMgr = .data:0x804DAB4C; // type:object size:0x40 scope:weak align:4 +__vt__Q210JADUtility59PrmDataMgrNode = .data:0x804DAB8C; // type:object size:0x3C scope:weak align:4 +__vt__Q29PSAutoBgm8OffCycle = .data:0x804DABC8; // type:object size:0x14 scope:weak align:4 +__vt__Q29PSAutoBgm7OnCycle = .data:0x804DABDC; // type:object size:0x14 scope:global align:4 +__vt__Q29PSAutoBgm9CycleBase = .data:0x804DABF0; // type:object size:0x14 scope:global align:4 +__vt__Q29PSAutoBgm6Module = .data:0x804DAC04; // type:object size:0x24 scope:global align:4 +__vt__Q29PSAutoBgm5Track = .data:0x804DAC28; // type:object size:0x28 scope:global align:4 +__vt__Q210JADUtility29PrmSetRc = .data:0x804DAC50; // type:object size:0x28 scope:weak align:4 +__vt__Q210JADUtility10StrEditBox = .data:0x804DAC78; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility12PrmSlider = .data:0x804DAC8C; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility9PrmHio = .data:0x804DACA0; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility6Prm = .data:0x804DACB4; // type:object size:0x14 scope:weak align:4 +__vt__Q29PSAutoBgm9Conductor = .data:0x804DACC8; // type:object size:0x28 scope:global align:4 +__vt__Q210JADUtility28PrmSetRc = .data:0x804DACF0; // type:object size:0x28 scope:weak align:4 +__vt__Q210JADUtility18PrmRadioButton = .data:0x804DAD18; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility13PrmSlider = .data:0x804DAD2C; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility10PrmHio = .data:0x804DAD40; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility7Prm = .data:0x804DAD54; // type:object size:0x14 scope:weak align:4 +__vt__Q38PSSystem9WaveScene8WaveArea = .data:0x804DAD68; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem7BankMgr = .data:0x804DAD74; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem14SimpleWaitTask = .data:0x804DAD80; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem14OuterParamTask = .data:0x804DAD8C; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem12PitchModTask = .data:0x804DADA0; // type:object size:0x18 scope:global align:4 +__vt__Q28PSSystem21ModParamWithTableTask = .data:0x804DADB8; // type:object size:0x18 scope:global align:4 +__vt__Q28PSSystem16ModParamWithFade = .data:0x804DADD0; // type:object size:0x14 scope:global align:4 +__vt__Q29PSAutoBgm11MeloArrBase = .data:0x804DADE8; // type:object size:0x2C scope:weak align:4 +__vt__Q29PSAutoBgm19MeloArr_RandomAvoid = .data:0x804DAE14; // type:object size:0x2C scope:global align:4 +__vt__Q26PSGame25Builder_EvnSe_Perspective = .data:0x804DAE40; // type:object size:0x14 scope:global align:4 +__vt__Q26PSGame13EnvSe_AutoPan = .data:0x804DAE54; // type:object size:0x18 scope:global align:4 +__vt__Q26PSGame17EnvSe_Perspective = .data:0x804DAE6C; // type:object size:0x18 scope:global align:4 +__vt__Q26PSGame9EnvSe_Pan = .data:0x804DAE84; // type:object size:0x18 scope:global align:4 +__vt__Q26PSGame5Rappa = .data:0x804DAE9C; // type:object size:0xC scope:global align:4 +__vt__Q26PSGame5SeMgr = .data:0x804DAEA8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem30SingletonBase = .data:0x804DAEB4; // type:object size:0xC scope:weak align:4 +__vt__Q38PSSystem9ClusterSe7Factory = .data:0x804DAEC0; // type:object size:0x10 scope:global align:4 +__vt__Q38PSSystem9ClusterSe4Part = .data:0x804DAED0; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem24EnvSe_PauseOffReservator = .data:0x804DAEDC; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem9EnvSeBase = .data:0x804DAEE8; // type:object size:0x18 scope:global align:4 +__vt__Q28PSSystem5Scene = .data:0x804DAF00; // type:object size:0x28 scope:global align:4 +__vt__Q28PSSystem10WaveLoader = .data:0x804DAF28; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem9WaveScene = .data:0x804DAF34; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem13SeqTrackChild = .data:0x804DAF40; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem10IdMaskTask = .data:0x804DAF54; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem8MuteTask = .data:0x804DAF60; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12SeqTrackRoot = .data:0x804DAF6C; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem12SeqTrackBase = .data:0x804DAF88; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem17DirectorCopyActor = .data:0x804DAFA0; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem17DirectorActorBase = .data:0x804DAFB4; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem15DirectorMgrBase = .data:0x804DAFC0; // type:object size:0x10 scope:weak align:4 +__vt__Q28PSSystem16SwitcherDirector = .data:0x804DAFD0; // type:object size:0x38 scope:global align:4 +__vt__Q28PSSystem15OneShotDirector = .data:0x804DB008; // type:object size:0x38 scope:global align:4 +__vt__Q28PSSystem12DirectorBase = .data:0x804DB040; // type:object size:0x38 scope:global align:4 +deTagName__8Morimura = .data:0x804DB078; // type:object size:0x2C scope:global align:4 data:4byte +__vt__Q28Morimura15TCountDownScene = .data:0x804DB0A4; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura20TChallengeEndCount2p = .data:0x804DB0F4; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura20TChallengeEndCount1p = .data:0x804DB170; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura18TChallengeEndCount = .data:0x804DB1EC; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura12TDayEndCount = .data:0x804DB268; // type:object size:0x7C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804DB2E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q28Morimura10THurryUp2D = .data:0x804DB2F4; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura15THuWhitePaneSet = .data:0x804DB370; // type:object size:0x14C scope:global align:4 +__vt__Q28Morimura10TGXSetPane = .data:0x804DB4C0; // type:object size:0x14C scope:weak align:4 +__vt__Q28Morimura13TPikminDown2D = .data:0x804DB60C; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura16TPresidentDown2D = .data:0x804DB688; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura11TLujiDown2D = .data:0x804DB704; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura12TOrimaDown2D = .data:0x804DB780; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura11TGameOver2D = .data:0x804DB7FC; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura13TGameOverBase = .data:0x804DB878; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura9TTestBase = .data:0x804DB8F8; // type:object size:0x7C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804DB978; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx13TBombrockEFGH = .data:0x804DB984; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TBombrockABCD = .data:0x804DB998; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TBombrock = .data:0x804DB9AC; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Bomb9StateBomb = .data:0x804DB9C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Bomb9StateWait = .data:0x804DB9E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Bomb5State = .data:0x804DBA08; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Bomb3FSM = .data:0x804DBA2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Bomb14ProperAnimator = .data:0x804DBA50; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Bomb3Mgr = .data:0x804DBA78; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Bomb5Parms = .data:0x804DBB58; // type:object size:0xC scope:weak align:4 +__vt__Q23efx14TBombrockLight = .data:0x804DBB68; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Bomb3Obj = .data:0x804DBBB4; // type:object size:0x32C scope:global align:4 +__vt__Q23efx8TEggdown = .data:0x804DBEE0; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game3Egg9StateWait = .data:0x804DBEF4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Egg5State = .data:0x804DBF18; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game3Egg3FSM = .data:0x804DBF3C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Egg14ProperAnimator = .data:0x804DBF60; // type:object size:0x28 scope:global align:4 +__vt__Q34Game3Egg3Mgr = .data:0x804DBF88; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game3Egg5Parms = .data:0x804DC068; // type:object size:0xC scope:weak align:4 +__vt__Q34Game3Egg3Obj = .data:0x804DC078; // type:object size:0x32C scope:global align:4 +__vt__Q34Game13PanModokiBase13StateCarryEnd = .data:0x804DC3A8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StateSucked = .data:0x804DC3CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase10StateStick = .data:0x804DC3F0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateWait = .data:0x804DC414; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StateDamage = .data:0x804DC438; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateHide = .data:0x804DC45C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StateAppear = .data:0x804DC480; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StatePulled = .data:0x804DC4A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateBack = .data:0x804DC4C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateWalk = .data:0x804DC4EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateDead = .data:0x804DC510; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase5State = .data:0x804DC534; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game13PanModokiBase3FSM = .data:0x804DC558; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase14ProperAnimator = .data:0x804DC580; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11OoPanModoki3Mgr = .data:0x804DC5A8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9PanModoki3Mgr = .data:0x804DC688; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9PanModoki3Obj = .data:0x804DC768; // type:object size:0x340 scope:weak align:4 +__vt__Q34Game13PanModokiBase5Parms = .data:0x804DCAA8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804DCAB8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game11OoPanModoki3Obj = .data:0x804DCAC4; // type:object size:0x340 scope:global align:4 +__vt__Q24Game13PelletKillArg = .data:0x804DCE04; // type:object size:0xC scope:weak align:4 +__vt__Q34Game13PanModokiBase3Obj = .data:0x804DCE10; // type:object size:0x340 scope:global align:4 +__vt__Q24Game18InteractSuckFinish = .data:0x804DD150; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Zenmai3Mgr = .data:0x804DD178; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Zenmai3Obj = .data:0x804DD258; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game9Chiyogami3Mgr = .data:0x804DD588; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9Chiyogami3Obj = .data:0x804DD668; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game11Nekojarashi3Mgr = .data:0x804DD998; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Margaret3Mgr = .data:0x804DDA78; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Margaret3Obj = .data:0x804DDB58; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game10DiodeGreen3Mgr = .data:0x804DDE88; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8DiodeRed3Mgr = .data:0x804DDF68; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Watage3Mgr = .data:0x804DE048; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Tukushi3Mgr = .data:0x804DE128; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Tukushi3Obj = .data:0x804DE208; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game8Wakame_l3Mgr = .data:0x804DE538; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Wakame_l3Obj = .data:0x804DE618; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game8Wakame_s3Mgr = .data:0x804DE948; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Wakame_s3Obj = .data:0x804DEA28; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game11KareOoinu_l3Mgr = .data:0x804DED58; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11KareOoinu_l3Obj = .data:0x804DEE38; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game7Ooinu_l3Mgr = .data:0x804DF168; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Ooinu_l3Obj = .data:0x804DF248; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game11KareOoinu_s3Mgr = .data:0x804DF578; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11KareOoinu_s3Obj = .data:0x804DF658; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game7Ooinu_s3Mgr = .data:0x804DF988; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Ooinu_s3Obj = .data:0x804DFA68; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game12HikariKinoko3Mgr = .data:0x804DFD98; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Clover3Mgr = .data:0x804DFE78; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Clover3Obj = .data:0x804DFF58; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game7Tanpopo3Mgr = .data:0x804E0288; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Tanpopo3Obj = .data:0x804E0368; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game6Plants14ProperAnimator = .data:0x804E0698; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E06C0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10DiodeGreen3Obj = .data:0x804E06CC; // type:object size:0x330 scope:global align:4 +__vt__Q34Game8DiodeRed3Obj = .data:0x804E09FC; // type:object size:0x330 scope:global align:4 +__vt__Q34Game11Nekojarashi3Obj = .data:0x804E0D2C; // type:object size:0x330 scope:global align:4 +__vt__Q23efx7TWatage = .data:0x804E105C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Watage3Obj = .data:0x804E1070; // type:object size:0x330 scope:global align:4 +__vt__Q34Game12HikariKinoko3Obj = .data:0x804E13A0; // type:object size:0x330 scope:global align:4 +__vt__Q34Game6Plants3Obj = .data:0x804E16D0; // type:object size:0x330 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E1A00; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10KingChappy12StateSwallow = .data:0x804E1A0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy12StateCaution = .data:0x804E1A30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateAppear = .data:0x804E1A54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy13StateHideWait = .data:0x804E1A78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateHide = .data:0x804E1A9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy8StateEat = .data:0x804E1AC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateTurn = .data:0x804E1AE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateDamage = .data:0x804E1B08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateWarCry = .data:0x804E1B2C; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12ArgRotYScale = .data:0x804E1B50; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10KingChappy10StateFlick = .data:0x804E1B5C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateDead = .data:0x804E1B80; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateAttack = .data:0x804E1BA4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateWalk = .data:0x804E1BC8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy5State = .data:0x804E1BEC; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10KingChappy3FSM = .data:0x804E1C10; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy3Mgr = .data:0x804E1C38; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10KingChappy5Parms = .data:0x804E1D18; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E1D28; // type:object size:0xC scope:local align:4 data:float +@6383 = .data:0x804E1D34; // type:object size:0x24 scope:local align:4 +@6398 = .data:0x804E1D58; // type:object size:0x24 scope:local align:4 +__vt__Q23efx12ArgKchYodare = .data:0x804E1D7C; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TKchYodare = .data:0x804E1D88; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TKchAttackYodare = .data:0x804E1DD4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TKchDeadYodare = .data:0x804E1E20; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TKchYodareHitWat = .data:0x804E1E6C; // type:object size:0x40 scope:weak align:4 +__vt__Q23efx15TKchYodareHitGr = .data:0x804E1EAC; // type:object size:0x40 scope:weak align:4 +__vt__Q23efx12TKchDeadHana = .data:0x804E1EEC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TKchSmokeHana = .data:0x804E1F08; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TKchCryInd = .data:0x804E1F54; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TKchCryAB = .data:0x804E1FA0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TKchDiveWat = .data:0x804E1FBC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TKchDiveSand = .data:0x804E1FD8; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10KingChappy14ProperAnimator = .data:0x804E1FF4; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game10KingChappy3Obj = .data:0x804E201C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game6Miulin9StateDead = .data:0x804E2348; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin10StateFlick = .data:0x804E236C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin9StateTurn = .data:0x804E2390; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin14StateAttackEnd = .data:0x804E23B4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin14StateAttacking = .data:0x804E23D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin16StateAttackStart = .data:0x804E23FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin9StateWalk = .data:0x804E2420; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin9StateWait = .data:0x804E2444; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin5State = .data:0x804E2468; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Miulin3FSM = .data:0x804E248C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin14ProperAnimator = .data:0x804E24B0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Miulin3Mgr = .data:0x804E24D8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Miulin5Parms = .data:0x804E25B8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TMiuAttack = .data:0x804E25C8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Miulin3Obj = .data:0x804E25DC; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E2908; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6Jigumo10StateSMiss = .data:0x804E2914; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo12StateSAttack = .data:0x804E2938; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo11StateSearch = .data:0x804E295C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo8StateEat = .data:0x804E2980; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo10StateFlick = .data:0x804E29A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo10StateCarry = .data:0x804E29C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo11StateReturn = .data:0x804E29EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateMiss = .data:0x804E2A10; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo24ConditionHeightCheckPiki = .data:0x804E2A34; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Jigumo11StateAttack = .data:0x804E2A40; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateDead = .data:0x804E2A64; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateHide = .data:0x804E2A88; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo11StateAppear = .data:0x804E2AAC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateWait = .data:0x804E2AD0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo5State = .data:0x804E2AF4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Jigumo3FSM = .data:0x804E2B18; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo14ProperAnimator = .data:0x804E2B40; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Jigumo3Mgr = .data:0x804E2B68; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Jigumo5Parms = .data:0x804E2C48; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Jigumo3Obj = .data:0x804E2C58; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Nest3Mgr = .data:0x804E2F88; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Nest3Obj = .data:0x804E3068; // type:object size:0x328 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateWait = .data:0x804E3390; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateDead = .data:0x804E33B4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateHide = .data:0x804E33D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi11StateAppear = .data:0x804E33FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateTurn = .data:0x804E3420; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateWalk = .data:0x804E3444; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi5State = .data:0x804E3468; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11TamagoMushi3FSM = .data:0x804E348C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi14ProperAnimator = .data:0x804E34B0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11TamagoMushi3Mgr = .data:0x804E34D8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11TamagoMushi5Parms = .data:0x804E35B8; // type:object size:0xC scope:weak align:4 +__vt__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable> = .data:0x804E35C4; // type:object size:0x10 scope:weak align:4 +__vt__16J3DUMtxCacheBase = .data:0x804E35D4; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx9TTamagoAp = .data:0x804E35E8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game11TamagoMushi3Obj = .data:0x804E35FC; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E3928; // type:object size:0xC scope:local align:4 data:float +mCategoryArray__Q28Morimura10TItemZukan = .data:0x804E3934; // type:object size:0x64 scope:global align:4 data:4byte +eIDInfo__8Morimura = .data:0x804E3998; // type:object size:0x288 scope:local align:4 data:4byte +@6253 = .data:0x804E3C20; // type:object size:0x124 scope:local align:4 +__vt__Q28Morimura12TZukanWindow = .data:0x804E3D44; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura18TCallbackScrollMsg = .data:0x804E3D58; // type:object size:0x1C scope:global align:4 +__vt__Q28Morimura11TDItemScene = .data:0x804E3D74; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d14T2DChangesmoke = .data:0x804E3DC4; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura10TItemZukan = .data:0x804E3DDC; // type:object size:0xEC scope:global align:4 +__vt__Q28Morimura12TDEnemyScene = .data:0x804E3EC8; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura9THIOScene = .data:0x804E3F18; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura11TEnemyZukan = .data:0x804E3F68; // type:object size:0xEC scope:global align:4 +__vt__Q28Morimura10TZukanBase = .data:0x804E4054; // type:object size:0xEC scope:global align:4 +mPicTexture__Q28Morimura8THiScore = .data:0x804E4140; // type:object size:0x40 scope:global align:4 data:4byte +mNameID__Q28Morimura8THiScore = .data:0x804E4180; // type:object size:0x80 scope:global align:8 +mHiscoreDataOrder__Q28Morimura8THiScore = .data:0x804E4200; // type:object size:0x40 scope:global align:4 +__vt__Q28Morimura13THiScoreScene = .data:0x804E4240; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura19DispMemberHighScore = .data:0x804E4290; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura8THiScore = .data:0x804E42A8; // type:object size:0xAC scope:global align:4 +__vt__Q28Morimura18THiScoreListScreen = .data:0x804E4354; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura15THiScoreIndPane = .data:0x804E4368; // type:object size:0x14 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E4380; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8UmiMushi9StateLost = .data:0x804E438C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateDead = .data:0x804E43B0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi8StateEat = .data:0x804E43D4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi11StateAttack = .data:0x804E43F8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi10StateFlick = .data:0x804E441C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateTurn = .data:0x804E4440; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi11StateSearch = .data:0x804E4464; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateFind = .data:0x804E4488; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateWalk = .data:0x804E44AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateWait = .data:0x804E44D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi5State = .data:0x804E44F4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8UmiMushi3FSM = .data:0x804E4518; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi14ProperAnimator = .data:0x804E4540; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8UmiMushi3Mgr = .data:0x804E4568; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8UmiMushi5Parms = .data:0x804E4648; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TUmiDeadawa = .data:0x804E4658; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx7TUmiEat = .data:0x804E46A4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TUmiEyeBlue = .data:0x804E46F0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TUmiEyeRed = .data:0x804E470C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TUmiWeakBlue = .data:0x804E4728; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TUmiWeakRed = .data:0x804E4744; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TUmiHamon = .data:0x804E4760; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game8UmiMushi3Obj = .data:0x804E477C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game11ShijimiChou9StateRest = .data:0x804E4AA8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou10StateLeave = .data:0x804E4ACC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou9StateDead = .data:0x804E4AF0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou9StateFall = .data:0x804E4B14; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou8StateFly = .data:0x804E4B38; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou9StateWait = .data:0x804E4B5C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou5State = .data:0x804E4B80; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11ShijimiChou3FSM = .data:0x804E4BA4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou14ProperAnimator = .data:0x804E4BC8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11ShijimiChou3Mgr = .data:0x804E4BF0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11ShijimiChou5Parms = .data:0x804E4CD0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TChouHit = .data:0x804E4CE0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7ArgChou = .data:0x804E4CF4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11ShijimiChou3Obj = .data:0x804E4D00; // type:object size:0x32C scope:global align:4 +mIconTexture__Q28Morimura16TChallengeSelect = .data:0x804E5030; // type:object size:0x10 scope:global align:4 data:4byte +__vt__Q28Morimura21TChallengeSelectScene = .data:0x804E5040; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d14T2DChalDiveEnd = .data:0x804E5090; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d11T2DChalDive = .data:0x804E50A8; // type:object size:0x38 scope:weak align:4 +__vt__Q28Morimura16TChallengeSelect = .data:0x804E50E0; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura33TChallengeSelectExplanationWindow = .data:0x804E515C; // type:object size:0x18 scope:global align:4 +__vt__Q28Morimura24TChallengePlayModeScreen = .data:0x804E5174; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura16TChallengeScreen = .data:0x804E5188; // type:object size:0x1C scope:global align:4 +__vt__Q28Morimura21TChallengeResultScene = .data:0x804E51A8; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d11T2DCavecomp = .data:0x804E51F8; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura16TChallengeResult = .data:0x804E5210; // type:object size:0x7C scope:global align:4 +__vt__Q25efx2d15T2DCavecompLoop = .data:0x804E528C; // type:object size:0x38 scope:weak align:4 +__vt__Q28Morimura10TCounterRV = .data:0x804E52C4; // type:object size:0x30 scope:global align:4 +__vt__Q28Morimura26TChallengeResultDemoScreen = .data:0x804E52F4; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura22TChallengeResultScreen = .data:0x804E5308; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x804E5328; // type:label scope:local +mOrimaTexture__Q28Morimura9TVsSelect = .data:0x804E5338; // type:object size:0x14 scope:global align:4 data:4byte +mLouieTexture__Q28Morimura9TVsSelect = .data:0x804E534C; // type:object size:0x14 scope:global align:4 data:4byte +slotIDInfo__8Morimura = .data:0x804E5360; // type:object size:0xC0 scope:local align:8 data:4byte +__vt__Q28Morimura14TVsSelectScene = .data:0x804E5420; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura19TVsSelectListScreen = .data:0x804E5488; // type:object size:0x14 scope:weak align:4 +__vt__Q28Morimura9TVsSelect = .data:0x804E5500; // type:object size:0xAC scope:global align:4 +__vt__Q28Morimura17TVsSelectCBWinNum = .data:0x804E55F0; // type:object size:0x30 scope:global align:4 +__vt__Q28Morimura15TVsSelectScreen = .data:0x804E5658; // type:object size:0x14 scope:global align:4 +__vt__Q25efx2d13T2DBattleDive = .data:0x804E566C; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura26TVsSelectExplanationWindow = .data:0x804E56C0; // type:object size:0x18 scope:global align:4 +__vt__Q28Morimura16TVsSelectIndPane = .data:0x804E56D8; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura12TScissorPane = .data:0x804E56F0; // type:object size:0x14C scope:global align:4 +__vt__Q28Morimura15TScaleUpCounter = .data:0x804E583C; // type:object size:0x30 scope:global align:4 +__vt__Q28Morimura8TIndPane = .data:0x804E586C; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura15TTestAnimScreen = .data:0x804E5880; // type:object size:0x10 scope:weak align:4 +__vt__Q28Morimura11TScreenBase = .data:0x804E5890; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura16TCallbackScissor = .data:0x804E58A4; // type:object size:0x1C scope:global align:4 +__vt__Q28Morimura11TScrollList = .data:0x804E58C0; // type:object size:0xAC scope:global align:4 +__vt__Q28Morimura11TListScreen = .data:0x804E596C; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura24TSelectExplanationWindow = .data:0x804E5980; // type:object size:0x18 scope:global align:4 +__vt__Q28Morimura17TConfirmEndWindow = .data:0x804E5998; // type:object size:0xB8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E5A50; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8BlackMan10StateTired = .data:0x804E5A5C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan10StateFlick = .data:0x804E5A80; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan12StateRecover = .data:0x804E5AA4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateFall = .data:0x804E5AC8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan11StateEscape = .data:0x804E5AEC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateBend = .data:0x804E5B10; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan11StateFreeze = .data:0x804E5B34; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateDead = .data:0x804E5B58; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateWalk = .data:0x804E5B7C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan5State = .data:0x804E5BA0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8BlackMan3FSM = .data:0x804E5BC4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan14ProperAnimator = .data:0x804E5BE8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8BlackMan3Mgr = .data:0x804E5C10; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8BlackMan5Parms = .data:0x804E5CF0; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E5D00; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx10TKageBend1 = .data:0x804E5D0C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11ArgPrmColor = .data:0x804E5D20; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TKageFlick = .data:0x804E5D2C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKageTyreup = .data:0x804E5D78; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TKageDead1 = .data:0x804E5DC4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TKageRun = .data:0x804E5E10; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TKageMove = .data:0x804E5E5C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game8BlackMan3Obj = .data:0x804E5EA8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Tyre9StateDead = .data:0x804E61D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre11StateFreeze = .data:0x804E61FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre9StateLand = .data:0x804E6220; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre9StateMove = .data:0x804E6244; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre5State = .data:0x804E6268; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Tyre3FSM = .data:0x804E628C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre14ProperAnimator = .data:0x804E62B0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Tyre3Mgr = .data:0x804E62D8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Tyre5Parms = .data:0x804E63B8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E63C8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx10TKageRecov = .data:0x804E63D4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TKageTyredead = .data:0x804E63E8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TKageTyresmoke = .data:0x804E63FC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Tyre3Obj = .data:0x804E6448; // type:object size:0x32C scope:global align:4 +__vt__Q23efx23TChasePosPosLocalYScale = .data:0x804E6778; // type:object size:0x4C scope:global align:4 +__vt__Q23efx23TChasePosPosLocalZScale = .data:0x804E67C4; // type:object size:0x4C scope:global align:4 +__vt__Q23efx12TChasePosPos = .data:0x804E6810; // type:object size:0x4C scope:global align:4 +__vt__Q23efx10TChaseMtxT = .data:0x804E685C; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TChaseMtx = .data:0x804E68A8; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TChasePosYRot = .data:0x804E68F4; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TChasePos = .data:0x804E6940; // type:object size:0x4C scope:global align:4 +__vt__Q23efx5TSync = .data:0x804E698C; // type:object size:0x4C scope:global align:4 +__vt__Q23efx11TSimpleMtx4 = .data:0x804E69D8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSimpleMtx3 = .data:0x804E69EC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSimpleMtx2 = .data:0x804E6A00; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSimpleMtx1 = .data:0x804E6A14; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple5 = .data:0x804E6A28; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple4 = .data:0x804E6A3C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple3 = .data:0x804E6A50; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple2 = .data:0x804E6A64; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple1 = .data:0x804E6A78; // type:object size:0x14 scope:global align:4 +__vt__Q23efx17TOneEmitterSimple = .data:0x804E6A8C; // type:object size:0x40 scope:global align:4 +__vt__Q23efx19TOneEmitterChasePos = .data:0x804E6ACC; // type:object size:0x40 scope:global align:4 +__vt__Q23efx11TOneEmitter = .data:0x804E6B0C; // type:object size:0x40 scope:global align:4 +__vt__Q23efx24TCallBack_StaticClipping = .data:0x804E6B4C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx13TDenkiHibaMgr = .data:0x804E6B68; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TDenkiHiba = .data:0x804E6B7C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9TGasuHiba = .data:0x804E6B98; // type:object size:0x1C scope:global align:4 +__vt__Q23efx14TDnkmsThunderB = .data:0x804E6BB4; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14TDnkmsThunderA = .data:0x804E6C00; // type:object size:0x4C scope:global align:4 +__vt__Q23efx8TTankWat = .data:0x804E6C4C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9TTankFire = .data:0x804E6C68; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TTankFireIND = .data:0x804E6C7C; // type:object size:0x4C scope:global align:4 +__vt__Q23efx12TTankFireABC = .data:0x804E6CC8; // type:object size:0x1C scope:global align:4 +__vt__Q23efx26TParticleCallBack_TankFire = .data:0x804E6CE4; // type:object size:0x18 scope:global align:4 +__vt__Q23efx11TKoganeDive = .data:0x804E6CFC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKoganeHit = .data:0x804E6D10; // type:object size:0x14 scope:global align:4 +__vt__Q23efx7TBabaHe = .data:0x804E6D24; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14TBabaFly_ver01 = .data:0x804E6D38; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TPanSmoke = .data:0x804E6D84; // type:object size:0x4C scope:global align:4 +__vt__Q23efx8TPanHide = .data:0x804E6DD0; // type:object size:0x4C scope:global align:4 +__vt__Q23efx7TPanApp = .data:0x804E6E1C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14THebiAphd_base = .data:0x804E6E30; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TOtaPartsoff = .data:0x804E6E44; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TImoSmoke = .data:0x804E6E58; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TUjinkoAp_Imo = .data:0x804E6EA4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TUjinkoHd_Imo = .data:0x804E6EB8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx7TImoEat = .data:0x804E6ECC; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TJgmBackW = .data:0x804E6F18; // type:object size:0x1C scope:global align:4 +__vt__Q23efx8TJgmBack = .data:0x804E6F34; // type:object size:0x4C scope:global align:4 +__vt__Q23efx11TJgmAttackW = .data:0x804E6F80; // type:object size:0x1C scope:global align:4 +__vt__Q23efx10TJgmAttack = .data:0x804E6F9C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx12TUmiDeadmelt = .data:0x804E6FB8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TUmiAttack = .data:0x804E6FCC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TUmiFlick = .data:0x804E6FE0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TChouDown = .data:0x804E6FF4; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TChibiHit = .data:0x804E7040; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12ContainerAct = .data:0x804E7058; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9Container = .data:0x804E7074; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14TPelkira_ver01 = .data:0x804E70C0; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TKouhaiDamage = .data:0x804E710C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TEgateBC = .data:0x804E7120; // type:object size:0x1C scope:global align:4 +__vt__Q23efx10TOtakaraAp = .data:0x804E713C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TOtakaraApS = .data:0x804E7150; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TOtakaraApL = .data:0x804E7164; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TTsuyuGrow0 = .data:0x804E7178; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TOtakaraDive = .data:0x804E718C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TStoneAttack = .data:0x804E71A0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TBridgeAttack = .data:0x804E71B4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TGate2Attack = .data:0x804E71C8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TPkInstick = .data:0x804E71DC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TGate1Attack = .data:0x804E71F0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TPkBlackDrop = .data:0x804E7204; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TFueactBiriBase = .data:0x804E7218; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TFueactCircle = .data:0x804E7264; // type:object size:0x54 scope:global align:4 +__vt__Q23efx7TCursor = .data:0x804E72B8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14TOrimaLightAct = .data:0x804E72CC; // type:object size:0x1C scope:global align:4 +__vt__Q23efx11TOrimaLight = .data:0x804E72E8; // type:object size:0x1C scope:global align:4 +__vt__Q23efx12TDopingSmoke = .data:0x804E7304; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TPkNageBlur = .data:0x804E7318; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E7368; // type:object size:0xC scope:local align:4 data:float +__vt__14TParticle2dMgr = .data:0x804E7374; // type:object size:0x1C scope:global align:4 +__vt__Q25efx2d12TChasePosDir = .data:0x804E7390; // type:object size:0x3C scope:global align:4 +__vt__Q25efx2d9TChasePos = .data:0x804E73CC; // type:object size:0x3C scope:global align:4 +__vt__Q25efx2d9TForeverN = .data:0x804E7408; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d8TForever = .data:0x804E7420; // type:object size:0x38 scope:global align:4 +__vt__Q25efx2d8TSimple3 = .data:0x804E7458; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d8TSimple2 = .data:0x804E7470; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d8TSimple1 = .data:0x804E7488; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d8WorldMap10T2DRocketB = .data:0x804E74A0; // type:object size:0x3C scope:global align:4 +__vt__Q35efx2d8WorldMap12T2DOnyonKira = .data:0x804E74DC; // type:object size:0x3C scope:global align:4 +__vt__Q35efx2d8WorldMap19TSimple_ArgDirScale = .data:0x804E7518; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d8WorldMap9T2DNewmap = .data:0x804E7530; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d8WorldMap10T2DShstar2 = .data:0x804E7548; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d10FileSelect15T2DFilecopyBase = .data:0x804E7560; // type:object size:0x38 scope:global align:4 +__vt__Q35efx2d10FileSelect14T2DFiledeleteM = .data:0x804E7598; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d10FileSelect13T2DFiledelete = .data:0x804E75B0; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d10FileSelect13T2DFilecopied = .data:0x804E75C8; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d17T2DSprayset_forVS = .data:0x804E75E0; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d18T2DSensorGet_forVS = .data:0x804E75F8; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d12T2DCountKira = .data:0x804E7610; // type:object size:0x38 scope:global align:4 +__vt__Q25efx2d9T2DCursor = .data:0x804E7648; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E7688; // type:object size:0xC scope:local align:4 data:float +__vt__11ParticleMgr = .data:0x804E7694; // type:object size:0x28 scope:global align:4 +__vt__19ModelEffectDataRoot = .data:0x804E76BC; // type:object size:0x1C scope:weak align:4 +__vt__26TObjectNode<11ModelEffect> = .data:0x804E76D8; // type:object size:0x10 scope:weak align:4 +__vt__28NodeObjectMgr<11ModelEffect> = .data:0x804E76E8; // type:object size:0x80 scope:weak align:4 +__vt__24ObjectMgr<11ModelEffect> = .data:0x804E7768; // type:object size:0x7C scope:weak align:4 +__vt__24Container<11ModelEffect> = .data:0x804E77E4; // type:object size:0x2C scope:weak align:4 +__vt__23Iterator<11ModelEffect> = .data:0x804E7810; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E7828; // type:object size:0xC scope:local align:4 data:float +@5249 = .data:0x804E7834; // type:object size:0x1C scope:local align:4 +__vt__Q33ebi5title9TTitleMgr = .data:0x804E7850; // type:object size:0x1C scope:global align:4 +__vt__Q43ebi5title6Pikmin13TBoidParamMgr = .data:0x804E786C; // type:object size:0x10 scope:weak align:4 +__vt__Q43ebi5title6Pikmin4TMgr = .data:0x804E787C; // type:object size:0x10 scope:weak align:4 +__vt__Q43ebi5title6Kogane4TMgr = .data:0x804E788C; // type:object size:0x10 scope:weak align:4 +__vt__Q43ebi5title6Chappy4TMgr = .data:0x804E789C; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title9TCoordMgr = .data:0x804E78AC; // type:object size:0x10 scope:weak align:4 +__vt__8Viewport = .data:0x804E78BC; // type:object size:0x10 scope:weak align:4 +__vt__6FogMgr = .data:0x804E78CC; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title12TTitleFogMgr = .data:0x804E78DC; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title15TTitleCameraMgr = .data:0x804E78EC; // type:object size:0x80 scope:weak align:4 +__vt__Q33ebi5title11TBlackPlane = .data:0x804E796C; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title12TBGEnemyBase = .data:0x804E797C; // type:object size:0x10 scope:weak align:4 +__vt__12J3DFrameCtrl = .data:0x804E798C; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi5title8TMapBase = .data:0x804E7998; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title8TObjBase = .data:0x804E79A8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E79B8; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804E79C8; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804E79D8; // type:object size:0xC scope:local align:4 data:float +__vt__Q33ebi5title14TTitleLightMgr = .data:0x804E79E4; // type:object size:0x20 scope:global align:4 +@4240 = .data:0x804E7A08; // type:object size:0xB0 scope:local align:4 +__vt__Q33ebi6Screen17TResourceObserver = .data:0x804E7AB8; // type:object size:0xC scope:global align:4 +@4148 = .data:0x804E7AC8; // type:object size:0x20 scope:local align:4 +@4162 = .data:0x804E7AE8; // type:object size:0x20 scope:local align:4 +__vt__Q23efx12TPkEffectMgr = .data:0x804E7B08; // type:object size:0xC scope:global align:4 +__vt__Q23efx19TPkOneEmitterSimple = .data:0x804E7B14; // type:object size:0x38 scope:global align:4 +@3022 = .data:0x804E7B50; // type:object size:0x190 scope:local align:4 +@3358 = .data:0x804E7CE0; // type:object size:0x190 scope:local align:4 +@3459 = .data:0x804E7E70; // type:object size:0x190 scope:local align:4 +@3688 = .data:0x804E8000; // type:object size:0x190 scope:local align:4 +@4024 = .data:0x804E8190; // type:object size:0x190 scope:local align:4 +@4154 = .data:0x804E8320; // type:object size:0x190 scope:local align:4 +__vt__Q23efx11TEnemyHamon = .data:0x804E84B0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx19TEnemyHamonChasePos = .data:0x804E84C4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx15TEnemyHamonMInd = .data:0x804E84D8; // type:object size:0x4C scope:global align:4 +__vt__Q23efx12TEnemyHamonM = .data:0x804E8524; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14TEnemyApsmokeS = .data:0x804E8570; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14TEnemyApsmokeM = .data:0x804E8584; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyApsmoke = .data:0x804E8598; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TEnemyBombS = .data:0x804E85AC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TEnemyBombM = .data:0x804E85C0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyBomb = .data:0x804E85D4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyDive = .data:0x804E85E8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyDownWat = .data:0x804E85FC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx15TEnemyDownSmoke = .data:0x804E8610; // type:object size:0x14 scope:global align:4 +__vt__Q23efx16TEnemyWalkSmokeS = .data:0x804E8624; // type:object size:0x14 scope:global align:4 +__vt__Q23efx16TEnemyWalkSmokeM = .data:0x804E8638; // type:object size:0x14 scope:global align:4 +__vt__Q23efx15TEnemyWalkSmoke = .data:0x804E864C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyDead = .data:0x804E8660; // type:object size:0x14 scope:global align:4 +__vt__Q23efx19TEnemyDead_ArgScale = .data:0x804E8674; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TSekikaSOn = .data:0x804E8688; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSekikaSOff = .data:0x804E869C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TSekikaLOn = .data:0x804E86B0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSekikaLOff = .data:0x804E86C4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyPoisonS = .data:0x804E86D8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyPoisonL = .data:0x804E86EC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyPiyo = .data:0x804E8700; // type:object size:0x4C scope:global align:4 +@4176 = .data:0x804E8750; // type:object size:0x1C scope:local align:4 +@4734 = .data:0x804E876C; // type:object size:0x1C scope:local align:4 +__vt__Q33ebi6Screen7TOption = .data:0x804E8788; // type:object size:0x4C scope:global align:4 +__vt__Q23ebi13TScreenProgre = .data:0x804E87D8; // type:object size:0xC scope:global align:4 +__vt__Q33ebi6Screen20TScreenBaseInterface = .data:0x804E87E8; // type:object size:0x24 scope:weak align:4 +__vt__Q23ebi25E2DCallBack_CalcAnimation = .data:0x804E880C; // type:object size:0x24 scope:weak align:4 +__vt__Q23ebi16E2DCallBack_Base = .data:0x804E8830; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game32StateMachine = .data:0x804E8854; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi6Option16FSMState_SaveMgr = .data:0x804E886C; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option19FSMState_LoadOption = .data:0x804E8894; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option27FSMState_WorldMapInfoWindow = .data:0x804E88BC; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option27FSMState_WaitCloseForNoCard = .data:0x804E88E4; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option20FSMState_ScreenClose = .data:0x804E890C; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option19FSMState_ScreenWait = .data:0x804E8934; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option19FSMState_ScreenOpen = .data:0x804E895C; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option8FSMState = .data:0x804E8984; // type:object size:0x28 scope:global align:4 +__vt__Q24Game28FSMState = .data:0x804E89AC; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi6Option15FSMStateMachine = .data:0x804E89CC; // type:object size:0x18 scope:global align:4 +__vt__Q23ebi24E2DCallBack_WindowCursor = .data:0x804E89E8; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi19E2DCallBack_AnmBase = .data:0x804E8A0C; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi22E2DCallBack_BlinkAlpha = .data:0x804E8A30; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi26E2DCallBack_BlinkFontColor = .data:0x804E8A54; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi20E2DCallBack_Purupuru = .data:0x804E8A78; // type:object size:0x24 scope:global align:4 +@4229 = .data:0x804E8AA0; // type:object size:0x3C scope:local align:4 +@4674 = .data:0x804E8ADC; // type:object size:0x44 scope:local align:4 +__vt__Q24Game35StateMachine = .data:0x804E8B20; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi9CardError15FSMState_NoCard = .data:0x804E8B38; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError20FSMState_CardRequest = .data:0x804E8B6C; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi9CardError17FSMState_Question = .data:0x804E8BC8; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError16FSMState_Warning = .data:0x804E8BFC; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError8FSMState = .data:0x804E8C2C; // type:object size:0x28 scope:global align:4 +__vt__Q24Game31FSMState = .data:0x804E8C54; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi9CardError15FSMStateMachine = .data:0x804E8C74; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi6Screen11TScreenBase = .data:0x804E8C90; // type:object size:0x4C scope:global align:4 +__vt__Q33ebi6Screen11TPressStart = .data:0x804E8CE0; // type:object size:0x4C scope:global align:4 +@5300 = .data:0x804E8D30; // type:object size:0x2C scope:local align:4 +__vt__Q25efx2d8ArgColor = .data:0x804E8D5C; // type:object size:0xC scope:weak align:4 +__vt__Q35efx2d10FileSelect11ArgFilecopy = .data:0x804E8D68; // type:object size:0xC scope:weak align:4 +__vt__Q35efx2d10FileSelect13T2DFiledecide = .data:0x804E8D74; // type:object size:0x18 scope:weak align:4 +__vt__Q43ebi6Screen10FileSelect11TMainScreen = .data:0x804E8D8C; // type:object size:0x4C scope:global align:4 +__vt__Q35efx2d10FileSelect11T2DFileselM = .data:0x804E8DD8; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d10FileSelect10T2DFilesel = .data:0x804E8E14; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d10FileSelect16T2DFiledeletingM = .data:0x804E8E50; // type:object size:0x38 scope:weak align:4 +__vt__Q35efx2d10FileSelect15T2DFiledeleting = .data:0x804E8E88; // type:object size:0x38 scope:weak align:4 +__vt__Q35efx2d10FileSelect12T2DFilecopyM = .data:0x804E8EC0; // type:object size:0x38 scope:weak align:4 +__vt__Q35efx2d10FileSelect11T2DFilecopy = .data:0x804E8EF8; // type:object size:0x38 scope:weak align:4 +__vt__Q33ebi6Screen10TTitleMenu = .data:0x804E8F30; // type:object size:0x4C scope:global align:4 +@3938 = .data:0x804E8F80; // type:object size:0x3C scope:local align:4 +__vt__Q24Game30StateMachine = .data:0x804E8FBC; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi4Save4TMgr = .data:0x804E8FD4; // type:object size:0xC scope:global align:4 +__vt__Q33ebi4Save18FSMState_CardError = .data:0x804E8FE0; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save18FSMState_AfterSave = .data:0x804E9008; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save16FSMState_NowSave = .data:0x804E9030; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save24FSMState_CheckBeforeSave = .data:0x804E9058; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save24FSMState_GetPlayerHeader = .data:0x804E90B4; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save19FSMState_MountCheck = .data:0x804E9110; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save20FSMState_CardRequest = .data:0x804E916C; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save22FSMState_DoYouContinue = .data:0x804E91C8; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save18FSMState_DoYouSave = .data:0x804E91F0; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save8FSMState = .data:0x804E9218; // type:object size:0x28 scope:global align:4 +__vt__Q24Game26FSMState = .data:0x804E9240; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi4Save15FSMStateMachine = .data:0x804E9260; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi6Screen9TSaveMenu = .data:0x804E9278; // type:object size:0x4C scope:global align:4 +__vt__Q24Game28StateMachine = .data:0x804E92C8; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi2FS31FSMState04_WhichDataDoYouCopyTo = .data:0x804E92E0; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS22FSMState00c_DecideData = .data:0x804E9308; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS21FSMState00b_CheckData = .data:0x804E9330; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS21FSMState00_SelectData = .data:0x804E9358; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS21FSMState00a_OpenScene = .data:0x804E9380; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS18FSMState09_NowCopy = .data:0x804E93A8; // type:object size:0x40 scope:global align:4 +__vt__Q33ebi2FS20FSMState02_NowDelete = .data:0x804E93E8; // type:object size:0x40 scope:global align:4 +__vt__Q33ebi2FS17FSMState_CardTask = .data:0x804E9428; // type:object size:0x40 scope:global align:4 +__vt__Q33ebi2FS21FSMState10_FinishCopy = .data:0x804E9468; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS21FSMState08_FailToCopy = .data:0x804E9498; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS23FSMState06_FinishDelete = .data:0x804E94C8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS23FSMState05_FailToDelete = .data:0x804E94F8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS16FSMState_Warning = .data:0x804E9528; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS25FSMState07_DoYouOverwrite = .data:0x804E9558; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS22FSMState03_DoYouDelete = .data:0x804E9588; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS21FSMState01_DataBroken = .data:0x804E95B8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS20FSMState_SelectYesNo = .data:0x804E95E8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS8FSMState = .data:0x804E9618; // type:object size:0x28 scope:global align:4 +__vt__Q24Game24FSMState = .data:0x804E9640; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi2FS15FSMStateMachine = .data:0x804E9660; // type:object size:0x18 scope:global align:4 +@3869 = .data:0x804E9678; // type:object size:0x3C scope:local align:4 +__vt__Q33ebi10FileSelect4TMgr = .data:0x804E96B4; // type:object size:0xC scope:global align:4 +__vt__Q24Game37StateMachine = .data:0x804E96C0; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi10FileSelect18FSMState_CardError = .data:0x804E96D8; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi10FileSelect25FSMState_ScreenFileSelect = .data:0x804E9700; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi10FileSelect24FSMState_GetPlayerHeader = .data:0x804E9728; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi10FileSelect19FSMState_MountCheck = .data:0x804E9784; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi10FileSelect20FSMState_CardRequest = .data:0x804E97E0; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi10FileSelect20FSMState_EmptyUpdate = .data:0x804E983C; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi10FileSelect8FSMState = .data:0x804E9864; // type:object size:0x28 scope:global align:4 +__vt__Q24Game33FSMState = .data:0x804E988C; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi10FileSelect15FSMStateMachine = .data:0x804E98AC; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi9CardError29FSMState_WN1_NowCreateNewFile = .data:0x804E98C8; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi9CardError22FSMState_WN0_NowFormat = .data:0x804E9924; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi9CardError25FSMState_Q05_GameCantSave = .data:0x804E9980; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSave = .data:0x804E99B4; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFile = .data:0x804E99E8; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError24FSMState_Q02_DoYouFormat = .data:0x804E9A1C; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPL = .data:0x804E9A50; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormat = .data:0x804E9A84; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError31FSMState_WF5_FailToSave_IOError = .data:0x804E9AB8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCard = .data:0x804E9AE8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOError = .data:0x804E9B18; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCard = .data:0x804E9B48; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOError = .data:0x804E9B78; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCard = .data:0x804E9BA8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W10_SerialNoError = .data:0x804E9BD8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError32FSMState_W09_FinishCreateNewFile = .data:0x804E9C08; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError25FSMState_W08_FinishFormat = .data:0x804E9C38; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W07_NoFileForSave = .data:0x804E9C68; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W06_CardNotUsable = .data:0x804E9C98; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W05_InitCardOnIPL = .data:0x804E9CC8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError25FSMState_W04_OverCapacity = .data:0x804E9CF8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError24FSMState_W03_WrongSector = .data:0x804E9D28; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError24FSMState_W02_WrongDevice = .data:0x804E9D58; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError20FSMState_W01_IOError = .data:0x804E9D88; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError19FSMState_W00_NoCard = .data:0x804E9DB8; // type:object size:0x34 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E9DF0; // type:object size:0xC scope:local align:4 data:float +__vt__Q43ebi5title6Pikmin5TUnit = .data:0x804E9DFC; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E9E10; // type:object size:0xC scope:local align:4 data:float +@3721 = .data:0x804E9E1C; // type:object size:0x1C scope:local align:4 +__vt__Q43ebi5title6Kogane5TUnit = .data:0x804E9E38; // type:object size:0x10 scope:global align:4 +__vt__Q43ebi5title6Kogane11TAnimFolder = .data:0x804E9E48; // type:object size:0xC scope:weak align:4 +__vt__Q23ebi17E3DAnimFolderBase = .data:0x804E9E54; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E9E60; // type:object size:0xC scope:local align:4 data:float +@3747 = .data:0x804E9E6C; // type:object size:0x20 scope:local align:4 +@4155 = .data:0x804E9E8C; // type:object size:0x20 scope:local align:4 +__vt__Q43ebi5title6Chappy5TUnit = .data:0x804E9EAC; // type:object size:0x10 scope:global align:4 +__vt__Q43ebi5title6Chappy11TAnimFolder = .data:0x804E9EBC; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen13TNintendoLogo = .data:0x804E9EC8; // type:object size:0x4C scope:global align:4 +__vt__Q33ebi6Screen7TTMBack = .data:0x804E9F14; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E9F60; // type:object size:0xC scope:local align:4 data:float +__vt__Q33ebi6Screen14ArgCloseTMBack = .data:0x804E9F6C; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen8ArgClose = .data:0x804E9F78; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen16ArgOpenTitleMenu = .data:0x804E9F84; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen13ArgOpenTMBack = .data:0x804E9F90; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen7ArgOpen = .data:0x804E9F9C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E9FA8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx16THdamaDeadHahen2 = .data:0x804E9FB8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx16THdamaDeadHahen1 = .data:0x804E9FCC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12THdamaShootA = .data:0x804E9FE0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THdamaHit2W = .data:0x804E9FF4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11THdamaShell = .data:0x804EA008; // type:object size:0x4C scope:global align:4 +__vt__Q23efx22TKchYodareBaseChaseMtx = .data:0x804EA054; // type:object size:0x4C scope:global align:4 +__vt__Q23efx27TParticleCallBack_KchYodare = .data:0x804EA0A0; // type:object size:0x18 scope:global align:4 +__vt__Q23efx13TKchDownsmoke = .data:0x804EA0B8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKchDamage = .data:0x804EA0CC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TKchApWat = .data:0x804EA0E0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKchApSand = .data:0x804EA0F4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TKchFlickSand = .data:0x804EA108; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TOootaFire = .data:0x804EA11C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx13TOootaBombLeg = .data:0x804EA138; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKageDead2 = .data:0x804EA14C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TDangoTurn = .data:0x804EA160; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TDangoCrash = .data:0x804EA174; // type:object size:0x14 scope:global align:4 +__vt__Q33ebi11CardEReader4TMgr = .data:0x804EA188; // type:object size:0xC scope:global align:4 +@4350 = .data:0x804EA198; // type:object size:0x1C scope:local align:4 +__vt__Q33ebi6Screen6TOmake = .data:0x804EA1B4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game31StateMachine = .data:0x804EA200; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi5Omake19FSMState_SelectGame = .data:0x804EA218; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi5Omake20FSMState_CardEScreen = .data:0x804EA240; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Screen12ArgOpenOmake = .data:0x804EA268; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi5Omake20FSMState_OmakeScreen = .data:0x804EA274; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi5Omake8FSMState = .data:0x804EA29C; // type:object size:0x28 scope:global align:4 +__vt__Q24Game27FSMState = .data:0x804EA2C4; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi5Omake15FSMStateMachine = .data:0x804EA2E4; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi6Screen11TOmakeCardE = .data:0x804EA300; // type:object size:0x4C scope:global align:4 +__vt__Q33ebi6Screen10TOmakeGame = .data:0x804EA350; // type:object size:0x4C scope:global align:4 +@5192 = .data:0x804EA3A0; // type:object size:0x3C scope:local align:4 +__vt__Q35efx2d8WorldMap10T2DRocketA = .data:0x804EA3DC; // type:object size:0x18 scope:weak align:4 +__vt__Q35efx2d8WorldMap11ArgDirScale = .data:0x804EA3F4; // type:object size:0xC scope:weak align:4 +__vt__Q35efx2d8WorldMap10T2DShstar1 = .data:0x804EA400; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d8WorldMap11T2DMapFlare = .data:0x804EA43C; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d8WorldMap13T2DRocketGlow = .data:0x804EA478; // type:object size:0x3C scope:weak align:4 +__vt__Q32kh6Screen8WorldMap = .data:0x804EA4B4; // type:object size:0x2C scope:global align:4 +__vt__Q34Game8WorldMap4Base = .data:0x804EA4E0; // type:object size:0x2C scope:weak align:4 +__vt__Q32kh6Screen16khUtilColorAnmWM = .data:0x804EA50C; // type:object size:0x20 scope:global align:4 +__vt__Q32kh6Screen16khUtilFadePaneWM = .data:0x804EA52C; // type:object size:0x24 scope:global align:4 +__vt__Q42kh6Screen14khUtilFadePane10khPaneNode = .data:0x804EA550; // type:object size:0xC scope:weak align:4 +@4148 = .data:0x804EA560; // type:object size:0x24 scope:local align:4 +__vt__Q32kh6Screen15SceneCaveResult = .data:0x804EA584; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen13ObjCaveResult = .data:0x804EA5D4; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen14DispCaveResult = .data:0x804EA64C; // type:object size:0x18 scope:weak align:4 +@2753 = .data:0x804EA668; // type:object size:0x2C scope:local align:4 +__vt__Q32kh6Screen21SceneDayEndResultTitl = .data:0x804EA694; // type:object size:0x50 scope:weak align:4 +__vt__Q32kh6Screen12SceneWinLose = .data:0x804EA6E4; // type:object size:0x50 scope:weak align:4 +__vt__Q32kh6Screen21SceneDayEndResultIncP = .data:0x804EA734; // type:object size:0x50 scope:weak align:4 +__vt__Q32kh6Screen21SceneDayEndResultItem = .data:0x804EA784; // type:object size:0x50 scope:weak align:4 +@4224 = .data:0x804EA7D8; // type:object size:0x20 scope:local align:4 +__vt__Q26Screen11EndSceneArg = .data:0x804EA7F8; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen15SArgChallenge1P = .data:0x804EA808; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen15SArgChallenge2P = .data:0x804EA818; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen17SArgChallengeBase = .data:0x804EA828; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen11DispReadyGo = .data:0x804EA838; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen14DispFinalFloor = .data:0x804EA850; // type:object size:0x18 scope:weak align:4 +__vt__Q26Screen9Game2DMgr = .data:0x804EA868; // type:object size:0xC scope:global align:4 +@4191 = .data:0x804EA878; // type:object size:0x70 scope:local align:4 +@4322 = .data:0x804EA8E8; // type:object size:0x34 scope:local align:4 +__vt__Q29newScreen3Mgr = .data:0x804EA91C; // type:object size:0x30 scope:global align:4 +__vt__Q26Screen7MgrBase = .data:0x804EA94C; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura16TPikminDownScene = .data:0x804EA964; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura19TPresidentDownScene = .data:0x804EA9B4; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura14TLujiDownScene = .data:0x804EAA04; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura15TOrimaDownScene = .data:0x804EAA54; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura14TGameOverScene = .data:0x804EAAA4; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura18TGameOverSceneBase = .data:0x804EAAF4; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura13THurryUpScene = .data:0x804EAB44; // type:object size:0x50 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EAB98; // type:object size:0xC scope:local align:4 data:float +__vt__Q32kh6Screen12SceneReadyGo = .data:0x804EABA4; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d9T2DGoChal = .data:0x804EABF4; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9T2DGoBatl = .data:0x804EAC0C; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen10ObjReadyGo = .data:0x804EAC24; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EACA0; // type:object size:0xC scope:local align:4 data:float +__vt__Q32kh6Screen15SceneFinalFloor = .data:0x804EACAC; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen13ObjFinalFloor = .data:0x804EACFC; // type:object size:0x78 scope:global align:4 +arrow__Q22kh6Screen = .data:0x804EAD78; // type:object size:0x30 scope:local align:8 data:4byte +@5498 = .data:0x804EADA8; // type:object size:0x20 scope:local align:4 +__vt__Q32kh6Screen21SceneDayEndResultMail = .data:0x804EADC8; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen19ObjDayEndResultTitl = .data:0x804EAE18; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen19ObjDayEndResultMail = .data:0x804EAE90; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen20SArgDayEndResultItem = .data:0x804EAF38; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen20SArgDayEndResultMail = .data:0x804EAF48; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen19ObjDayEndResultIncP = .data:0x804EAF58; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen20SArgDayEndResultIncP = .data:0x804EB000; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen20SArgDayEndResultBase = .data:0x804EB010; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen19ObjDayEndResultItem = .data:0x804EB020; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen19ObjDayEndResultBase = .data:0x804EB0C8; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen20DispDayEndResultMail = .data:0x804EB170; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen20DispDayEndResultIncP = .data:0x804EB188; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen20DispDayEndResultItem = .data:0x804EB1A0; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen14khUtilColorAnm = .data:0x804EB1B8; // type:object size:0x20 scope:global align:4 +__vt__Q32kh6Screen14khUtilFadePane = .data:0x804EB1D8; // type:object size:0x24 scope:global align:4 +__vt__Q32kh6Screen16SceneFinalResult = .data:0x804EB200; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen14ObjFinalResult = .data:0x804EB250; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen15DispFinalResult = .data:0x804EB2C8; // type:object size:0x18 scope:weak align:4 +cpNumTexLargeName__Q22kh6Screen = .data:0x804EB2E0; // type:object size:0x28 scope:global align:4 +__vt__Q32kh6Screen12ScenePayDept = .data:0x804EB308; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen10ObjPayDept = .data:0x804EB358; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen11DispPayDept = .data:0x804EB3D0; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen10ObjWinLose = .data:0x804EB3E8; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen18SceneWinLoseReason = .data:0x804EB460; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen16ObjWinLoseReason = .data:0x804EB4B0; // type:object size:0x78 scope:global align:4 +__vt__5CNode = .data:0x804EB528; // type:object size:0x10 scope:global align:4 +__vt__4Node = .data:0x804EB538; // type:object size:0x14 scope:global align:4 +__vt__8ParmEnum = .data:0x804EB550; // type:object size:0x14 scope:global align:4 +__vt__10ParmString = .data:0x804EB564; // type:object size:0x14 scope:global align:4 +__vt__8BaseParm = .data:0x804EB578; // type:object size:0x14 scope:weak align:4 +__vt__9RamStream = .data:0x804EB590; // type:object size:0x18 scope:global align:4 +__vt__6Stream = .data:0x804EB5A8; // type:object size:0x18 scope:weak align:4 +__vt__Q23Sys11VertexTable = .data:0x804EB5C0; // type:object size:0x48 scope:global align:4 +__vt__Q23Sys13TriangleTable = .data:0x804EB608; // type:object size:0x48 scope:weak align:4 +__vt__31ArrayContainer = .data:0x804EB650; // type:object size:0x48 scope:weak align:4 +__vt__26Container = .data:0x804EB698; // type:object size:0x2C scope:weak align:4 +__vt__Q23Sys11GridDivider = .data:0x804EB6C4; // type:object size:0x30 scope:global align:4 +__vt__12MapCollision = .data:0x804EB6F8; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EB718; // type:object size:0xC scope:local align:4 data:float +__vt__11BlendCamera = .data:0x804EB724; // type:object size:0x7C scope:global align:4 +__vt__12LookAtCamera = .data:0x804EB7A0; // type:object size:0x80 scope:global align:4 +__vt__6Camera = .data:0x804EB820; // type:object size:0x7C scope:global align:4 +__vt__11CullFrustum = .data:0x804EB89C; // type:object size:0x54 scope:global align:4 +__vt__7TagParm = .data:0x804EB8F0; // type:object size:0x18 scope:weak align:4 +__vt__13StringTagParm = .data:0x804EB908; // type:object size:0x18 scope:global align:4 +__vt__Q37MapCode3Mgr9CodeArray = .data:0x804EB920; // type:object size:0x48 scope:global align:4 +__vt__31ArrayContainer = .data:0x804EB968; // type:object size:0x48 scope:weak align:4 +__vt__26Container = .data:0x804EB9B0; // type:object size:0x2C scope:weak align:4 +__vt__Q23Sys7OBBTree = .data:0x804EB9E0; // type:object size:0x30 scope:global align:4 +__vt__Q23Sys10TriDivider = .data:0x804EBA10; // type:object size:0x30 scope:global align:4 +localNtsc608x448IntDfProg = .data:0x804EBA40; // type:object size:0x3C scope:local align:4 +localNtsc608x448IntDf = .data:0x804EBA7C; // type:object size:0x3C scope:local align:4 +localPal608x448IntDf = .data:0x804EBAB8; // type:object size:0x3C scope:local align:4 +localPal60608x448IntDf = .data:0x804EBAF4; // type:object size:0x3C scope:local align:4 +sRenderModeTable = .data:0x804EBB30; // type:object size:0x10 scope:local align:4 +@3819 = .data:0x804EBB40; // type:object size:0xC scope:local align:4 data:4byte +@3836 = .data:0x804EBB4C; // type:object size:0xC scope:local align:4 data:4byte +__vt__9AppThread = .data:0x804EBB58; // type:object size:0x10 scope:weak align:4 +__vt__17Delegate<6System> = .data:0x804EBB68; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM7Factory = .data:0x804EBB74; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EBB80; // type:object size:0xC scope:local align:4 data:float +__vt__7Section = .data:0x804EBB8C; // type:object size:0x48 scope:global align:4 +__vt__8ISection = .data:0x804EBBD4; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EBBF0; // type:object size:0xC scope:local align:4 data:float +sSectionInfo__22@unnamed@gameflow_cpp@ = .data:0x804EBBFC; // type:object size:0x118 scope:local align:4 +__vt__8GameFlow = .data:0x804EBD14; // type:object size:0x10 scope:global align:4 +__vt__11ISectionMgr = .data:0x804EBD24; // type:object size:0x10 scope:weak align:4 +__vt__11MenuSection = .data:0x804EBD38; // type:object size:0x4C scope:global align:4 +__vt__9DvdThread = .data:0x804EBD88; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBD98; // type:object size:0xC scope:local align:4 data:float +__vt__17HorizonalSplitter = .data:0x804EBDA4; // type:object size:0x10 scope:global align:4 +__vt__8Splitter = .data:0x804EBDB4; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EBDC8; // type:object size:0xC scope:local align:4 data:float +__vt__Q28SysShape8AnimInfo = .data:0x804EBDD4; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape7AnimMgr = .data:0x804EBDE4; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape13BlendAnimator = .data:0x804EBDF4; // type:object size:0xC scope:global align:4 +__vt__Q28SysShape8Animator = .data:0x804EBE00; // type:object size:0x10 scope:global align:4 +__vt__12ResetManager = .data:0x804EBE10; // type:object size:0x10 scope:global align:4 +@3876 = .data:0x804EBE20; // type:object size:0x1C scope:local align:4 +__vt__8TimerInf = .data:0x804EBE40; // type:object size:0xC scope:global align:4 +__vt__9SysTimers = .data:0x804EBE4C; // type:object size:0x10 scope:global align:4 +__vt__8HeapInfo = .data:0x804EBE60; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBE88; // type:object size:0xC scope:local align:4 data:float +__vt__8LightMgr = .data:0x804EBE94; // type:object size:0x20 scope:global align:4 +__vt__8LightObj = .data:0x804EBEB4; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBED8; // type:object size:0xC scope:local align:4 data:float +__vt__10BlackFader = .data:0x804EBEE4; // type:object size:0x28 scope:global align:4 +__vt__14WipeOutInFader = .data:0x804EBF0C; // type:object size:0x28 scope:global align:4 +__vt__12WipeOutFader = .data:0x804EBF34; // type:object size:0x28 scope:global align:4 +__vt__11WipeInFader = .data:0x804EBF5C; // type:object size:0x28 scope:global align:4 +__vt__8WipeBase = .data:0x804EBF84; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBFB0; // type:object size:0xC scope:local align:4 data:float +@3971 = .data:0x804EBFBC; // type:object size:0xC scope:local align:4 data:4byte +@4637 = .data:0x804EBFC8; // type:object size:0x20 scope:local align:4 +__vt__Q24Game12MovieContext = .data:0x804EBFE8; // type:object size:0x18 scope:weak align:4 +__vt__30Delegate = .data:0x804EC000; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11MoviePlayer = .data:0x804EC00C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EC018; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST11ObjectActor = .data:0x804EC024; // type:object size:0xCC scope:global align:4 +__vt__Q34Game5P2JST10ObjectBase = .data:0x804EC0F0; // type:object size:0x1C scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EC110; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST12ObjectCamera = .data:0x804EC11C; // type:object size:0xD0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC1F0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST15ObjectGameActor = .data:0x804EC1FC; // type:object size:0xCC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC2C8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST12ObjectSystem = .data:0x804EC2D4; // type:object size:0x80 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC358; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804EC368; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game9MovieList = .data:0x804EC374; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11MovieConfig6TParms = .data:0x804EC384; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game11MovieConfig = .data:0x804EC394; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10GameConfig5Parms = .data:0x804EC3A8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EC3B8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24ARAM4Node = .data:0x804EC3C8; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x804EC3D8; // type:label scope:local +@2721 = .data:0x804EC3D8; // type:object size:0xC scope:local align:4 data:4byte +@2723 = .data:0x804EC3E4; // type:object size:0xC scope:local align:4 +@2725 = .data:0x804EC3F0; // type:object size:0xC scope:local align:4 +__vt__Q28Resource3Mgr = .data:0x804EC3FC; // type:object size:0xC scope:global align:4 +__vt__Q28Resource10MgrCommand = .data:0x804EC408; // type:object size:0x28 scope:global align:4 +__vt__33Delegate = .data:0x804EC430; // type:object size:0xC scope:weak align:4 +__vt__Q28Resource4Node = .data:0x804EC448; // type:object size:0x1C scope:global align:4 +__vt__Q28Resource5Mgr2D = .data:0x804EC468; // type:object size:0xC scope:weak align:4 +__vt__Q23Sys17MatRepeatAnimator = .data:0x804EC478; // type:object size:0x14 scope:global align:4 +__vt__Q23Sys15MatLoopAnimator = .data:0x804EC48C; // type:object size:0x14 scope:global align:4 +__vt__Q23Sys15MatBaseAnimator = .data:0x804EC4A0; // type:object size:0x14 scope:global align:4 +__vt__Q23Sys18MatTevRegAnimation = .data:0x804EC4B4; // type:object size:0x18 scope:global align:4 +__vt__Q23Sys15MatTexAnimation = .data:0x804EC4CC; // type:object size:0x18 scope:global align:4 +__vt__Q23Sys16MatBaseAnimation = .data:0x804EC4E4; // type:object size:0x18 scope:weak align:4 +__vt__Q29P2DScreen10Mgr_tuning = .data:0x804EC500; // type:object size:0xA0 scope:global align:4 +__vt__Q29P2DScreen3Mgr = .data:0x804EC5A0; // type:object size:0xA0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC640; // type:object size:0xC scope:local align:4 data:float +__vt__Q35P2JME5Movie8TControl = .data:0x804EC64C; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME5Movie19MessageWindowScreen = .data:0x804EC694; // type:object size:0xA0 scope:weak align:4 +__vt__Q35P2JME5Movie13PodIconScreen = .data:0x804EC734; // type:object size:0xA0 scope:global align:4 +__vt__Q35P2JME5Movie8AbtnPane = .data:0x804EC7D4; // type:object size:0x1C scope:global align:4 +__vt__Q35P2JME5Movie10WindowPane = .data:0x804EC7F0; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC810; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804EC820; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST18ObjectSpecialActor = .data:0x804EC82C; // type:object size:0xCC scope:global align:4 +__vt__Q25P2JME18TSequenceProcessor = .data:0x804EC8F8; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC970; // type:object size:0xC scope:local align:4 data:float +sFontResName__5P2JME = .data:0x804EC97C; // type:object size:0x1C scope:local align:4 +sMesResName__5P2JME = .data:0x804EC998; // type:object size:0x1C scope:local align:4 +cBtnTexName__5P2JME = .data:0x804EC9B4; // type:object size:0x2C scope:local align:4 data:4byte +__vt__Q25P2JME3Mgr = .data:0x804EC9E0; // type:object size:0xC scope:global align:4 +__vt__Q25P2JME8TControl = .data:0x804EC9F0; // type:object size:0x48 scope:global align:4 +cBtnIconColor__Q25P2JME30@unnamed@messageRendering_cpp@ = .data:0x804ECA38; // type:object size:0x58 scope:local align:4 +@3298 = .data:0x804ECA90; // type:object size:0x20 scope:local align:4 +__vt__Q25P2JME19TRenderingProcessor = .data:0x804ECAB0; // type:object size:0x84 scope:global align:4 +__vt__Q25P2JME23TRenderingProcessorBase = .data:0x804ECB34; // type:object size:0x68 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ECBA0; // type:object size:0xC scope:local align:4 data:float +__vt__11ModelEffect = .data:0x804ECBAC; // type:object size:0x34 scope:global align:4 +__vt__Q25P2JME10TReference = .data:0x804ECBE0; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ECBF0; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804ECC00; // type:object size:0xC scope:local align:4 data:float +__vt__Q28SysShape5Joint = .data:0x804ECC0C; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape5Model = .data:0x804ECC1C; // type:object size:0x30 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ECC50; // type:object size:0xC scope:local align:4 data:float +__vt__Q35P2JME6Window8TControl = .data:0x804ECC5C; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME6Window19TRenderingProcessor = .data:0x804ECCA4; // type:object size:0x90 scope:global align:4 +__vt__Q35P2JME6Window18TSequenceProcessor = .data:0x804ECD34; // type:object size:0x78 scope:global align:4 +__vt__Q35P2JME6Window8DrawInfo = .data:0x804ECDAC; // type:object size:0x10 scope:weak align:4 +@2936 = .data:0x804ECDC0; // type:object size:0x30 scope:local align:4 +@3017 = .data:0x804ECDF0; // type:object size:0x30 scope:local align:4 +@3052 = .data:0x804ECE20; // type:object size:0x30 scope:local align:4 +@3092 = .data:0x804ECE50; // type:object size:0x30 scope:local align:4 +@3141 = .data:0x804ECE80; // type:object size:0x30 scope:local align:4 +@3181 = .data:0x804ECEB0; // type:object size:0x30 scope:local align:4 +@3238 = .data:0x804ECEE0; // type:object size:0x30 scope:local align:4 +__vt__13MemoryCardMgr = .data:0x804ECF10; // type:object size:0x2C scope:global align:4 +__vt__20MemoryCardMgrCommand = .data:0x804ECF3C; // type:object size:0xC scope:weak align:4 +__vt__24MemoryCardMgrCommandBase = .data:0x804ECF48; // type:object size:0xC scope:weak align:4 +@3147 = .data:0x804ECF58; // type:object size:0x30 scope:local align:4 +__vt__Q34Game10MemoryCard25MgrCommandGetPlayerHeader = .data:0x804ECF88; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10MemoryCard20MgrCommandCopyPlayer = .data:0x804ECF94; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10MemoryCard18MgrCommandPlayerNo = .data:0x804ECFA0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10MemoryCard3Mgr = .data:0x804ECFAC; // type:object size:0x2C scope:global align:4 +__vt__Q34Game10MemoryCard8Resource = .data:0x804ECFD8; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x804ECFE8; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804ECFF8; // type:object size:0xC scope:local align:4 data:float +@4590 = .data:0x804ED004; // type:object size:0xC scope:local align:4 data:4byte +@4931 = .data:0x804ED010; // type:object size:0x2C scope:local align:4 +@5253 = .data:0x804ED03C; // type:object size:0x2C scope:local align:4 +@5372 = .data:0x804ED068; // type:object size:0xC scope:local align:4 data:4byte +@5507 = .data:0x804ED074; // type:object size:0xC scope:local align:4 +@5510 = .data:0x804ED080; // type:object size:0xC scope:local align:4 +@5512 = .data:0x804ED08C; // type:object size:0xC scope:local align:4 +__vt__11BootSection = .data:0x804ED140; // type:object size:0x50 scope:global align:4 +__vt__23Delegate<11BootSection> = .data:0x804ED190; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804ED1A8; // type:object size:0xC scope:local align:4 data:float +@4195 = .data:0x804ED1B4; // type:object size:0xC scope:local align:4 data:4byte +@4581 = .data:0x804ED1C0; // type:object size:0xC scope:local align:4 data:4byte +@4584 = .data:0x804ED1CC; // type:object size:0xC scope:local align:4 data:4byte +@5104 = .data:0x804ED1D8; // type:object size:0x1C scope:local align:4 +@5646 = .data:0x804ED1F4; // type:object size:0xC scope:local align:4 data:4byte +@5751 = .data:0x804ED200; // type:object size:0x30 scope:local align:4 +__vt__34Delegate1 = .data:0x804ED230; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x804ED23C; // type:object size:0xC scope:weak align:4 +__vt__11HIORootNode = .data:0x804ED248; // type:object size:0x10 scope:weak align:4 +__vt__Q25Title7Section = .data:0x804ED258; // type:object size:0x54 scope:global align:4 +__vt__26Delegate = .data:0x804ED2AC; // type:object size:0xC scope:weak align:4 +__vt__Q212LoadResource4Node = .data:0x804ED2B8; // type:object size:0x1C scope:global align:4 +__vt__15RootMenuSection = .data:0x804ED2D8; // type:object size:0x4C scope:global align:4 +sLogoLocate__Q24Demo25@unnamed@demoSection_cpp@ = .data:0x804ED328; // type:object size:0x20 scope:local align:4 +@3207 = .data:0x804ED348; // type:object size:0xC scope:local align:4 data:4byte +__vt__25Delegate = .data:0x804ED354; // type:object size:0xC scope:weak align:4 +__vt__Q24Demo11HIORootNode = .data:0x804ED360; // type:object size:0x10 scope:weak align:4 +__vt__Q24Demo7Section = .data:0x804ED370; // type:object size:0x50 scope:global align:4 +VolumeTable = .data:0x804ED3C0; // type:object size:0x100 scope:local align:4 +@3213 = .data:0x804ED4C0; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game9THPPlayer = .data:0x804ED4CC; // type:object size:0x2C scope:global align:4 +__vt__27Delegate = .data:0x804ED4F8; // type:object size:0xC scope:weak align:4 +__vt__Q27Caption3Mgr = .data:0x804ED508; // type:object size:0x14 scope:global align:4 +__vt__Q27Caption4Node = .data:0x804ED51C; // type:object size:0x14 scope:global align:4 +__vt__Q35P2JME7Caption8TControl = .data:0x804ED530; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME7Caption18TSequenceProcessor = .data:0x804ED578; // type:object size:0x78 scope:weak align:4 +__vt__Q35P2JME7Caption19TRenderingProcessor = .data:0x804ED5F0; // type:object size:0x90 scope:global align:4 +@2658 = .data:0x804ED680; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q26Screen9SceneBase = .data:0x804ED68C; // type:object size:0x50 scope:global align:4 +__vt__55Delegate1 = .data:0x804ED6DC; // type:object size:0xC scope:weak align:4 +__vt__36IDelegate1 = .data:0x804ED6E8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804ED6F8; // type:object size:0xC scope:local align:4 data:float +__vt__Q26Screen3Mgr = .data:0x804ED704; // type:object size:0x30 scope:global align:4 +__vt__Q26Screen10MgrCommand = .data:0x804ED734; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen13SceneInfoList = .data:0x804ED744; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen7ObjBase = .data:0x804ED758; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ED7D0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST19ObjectParticleActor = .data:0x804ED7DC; // type:object size:0xEC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ED8C8; // type:object size:0xC scope:local align:4 data:float +__vt__27Pikmin_TCreateObject_JAudio = .data:0x804ED8D4; // type:object size:0x10 scope:global align:4 +__vt__Q35P2JME15IllustratedBook8TControl = .data:0x804ED8E8; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME15IllustratedBook19TRenderingProcessor = .data:0x804ED930; // type:object size:0x90 scope:global align:4 +__vt__Q35P2JME15IllustratedBook18TSequenceProcessor = .data:0x804ED9C0; // type:object size:0x78 scope:weak align:4 +__vt__Q25P2JME13TSeqProcNoSeq = .data:0x804EDA38; // type:object size:0x78 scope:weak align:4 +__vt__Q23Sys11DrawBuffers = .data:0x804EDAB0; // type:object size:0x10 scope:global align:4 +__vt__Q23Sys10DrawBuffer = .data:0x804EDAC0; // type:object size:0x10 scope:global align:4 +gMessage_jpn__8DvdError = .data:0x804EDAD0; // type:object size:0x18 scope:global align:4 +gMessage_eng__8DvdError = .data:0x804EDAE8; // type:object size:0x18 scope:global align:4 +gMessage_ger__8DvdError = .data:0x804EDB00; // type:object size:0x18 scope:global align:4 +gMessage_fra__8DvdError = .data:0x804EDB18; // type:object size:0x18 scope:global align:4 +gMessage_spa__8DvdError = .data:0x804EDB30; // type:object size:0x18 scope:global align:4 +gMessage_ita__8DvdError = .data:0x804EDB48; // type:object size:0x18 scope:global align:4 +sAramResName2D__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDB60; // type:object size:0x34 scope:local align:4 data:4byte +sAramResName2DCmn__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDB94; // type:object size:0x10 scope:local align:4 data:4byte +sAramResDemo__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDBA4; // type:object size:0x4C scope:local align:4 data:4byte +sAramResItem__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDBF0; // type:object size:0x60 scope:local align:4 data:4byte +__vt__Q211Pikmin2ARAM3Mgr = .data:0x804EDC50; // type:object size:0xC scope:weak align:4 +__vt__Q25P2JME8Analyzer = .data:0x804EDC60; // type:object size:0x68 scope:global align:4 +@3790 = .data:0x804EDCC8; // type:object size:0x84 scope:local align:4 +__vt__Q23PSM13ExiteDirector = .data:0x804EDD50; // type:object size:0x38 scope:weak align:4 +__vt__Q23PSM17PikAttackDirector = .data:0x804EDD88; // type:object size:0x38 scope:weak align:4 +__vt__Q23PSM19ActorDirector_Kehai = .data:0x804EDDC0; // type:object size:0x48 scope:global align:4 +__vt__Q23PSM20ActorDirector_Battle = .data:0x804EDE08; // type:object size:0x48 scope:global align:4 +__vt__Q23PSM19ActorDirector_Enemy = .data:0x804EDE50; // type:object size:0x48 scope:global align:4 +__vt__Q23PSM20ActorDirector_Scaled = .data:0x804EDE98; // type:object size:0x40 scope:global align:4 +__vt__Q23PSM21ActorDirector_TrackOn = .data:0x804EDED8; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM17ListDirectorActor = .data:0x804EDF10; // type:object size:0x14 scope:global align:4 +__vt__Q23PSM22TrackOnDirector_Scaled = .data:0x804EDF24; // type:object size:0x3C scope:global align:4 +__vt__Q23PSM22TrackOnDirector_Voting = .data:0x804EDF60; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM19TrackOnDirectorBase = .data:0x804EDF98; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM28PikminNumberDirector_AutoBgm = .data:0x804EDFD0; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM20PikminNumberDirector = .data:0x804EE008; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM25ActorDirector_TempoChange = .data:0x804EE040; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM23TempoChangeDirectorBase = .data:0x804EE078; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM16SwitcherDirector = .data:0x804EE0B0; // type:object size:0x38 scope:weak align:4 +__vt__Q23PSM14DamageDirector = .data:0x804EE0E8; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM15OneShotDirector = .data:0x804EE120; // type:object size:0x38 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EE158; // type:object size:0xC scope:local align:4 data:float +@4001 = .data:0x804EE164; // type:object size:0x54 scope:local align:4 +@5459 = .data:0x804EE1B8; // type:object size:0x3C scope:local align:4 +@5725 = .data:0x804EE1F4; // type:object size:0x34 scope:local align:4 +__vt__Q23PSM10BigBossSeq = .data:0x804EE228; // type:object size:0x68 scope:global align:4 +__vt__Q23PSM13MiddleBossSeq = .data:0x804EE290; // type:object size:0x68 scope:global align:4 +__vt__Q23PSM8SceneMgr = .data:0x804EE2F8; // type:object size:0x28 scope:global align:4 +__vt__Q28PSSystem8SceneMgr = .data:0x804EE320; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM15EnvSeObjBuilder = .data:0x804EE32C; // type:object size:0x14 scope:global align:4 +__vt__Q23PSM24EnvSe_Perspective_AvoidY = .data:0x804EE340; // type:object size:0x18 scope:global align:4 +__vt__Q23PSM12Env_Pollutin = .data:0x804EE358; // type:object size:0x18 scope:global align:4 +@6063 = .data:0x804EE370; // type:object size:0x1EC scope:local align:4 +__vt__Q23PSM7Cluster = .data:0x804EE55C; // type:object size:0x88 scope:weak align:4 +__vt__Q23PSM4Navi = .data:0x804EE5E4; // type:object size:0x88 scope:global align:4 +__vt__Q23PSM4Piki = .data:0x804EE66C; // type:object size:0x88 scope:global align:4 +__vt__Q23PSM10PelletItem = .data:0x804EE6F4; // type:object size:0x98 scope:weak align:4 +__vt__Q23PSM13PelletOtakara = .data:0x804EE78C; // type:object size:0x98 scope:weak align:4 +__vt__Q23PSM7Otakara = .data:0x804EE824; // type:object size:0x98 scope:global align:4 +__vt__Q23PSM8WorkItem = .data:0x804EE8BC; // type:object size:0x98 scope:global align:4 +__vt__Q23PSM25OtakaraEventLink_2PBattle = .data:0x804EE954; // type:object size:0x20 scope:global align:4 +__vt__Q23PSM16OtakaraEventLink = .data:0x804EE974; // type:object size:0x20 scope:global align:4 +__vt__Q23PSM9EventLink = .data:0x804EE994; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM12DirectorLink = .data:0x804EE9B0; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM19Enemy_SpecialChappy = .data:0x804EE9CC; // type:object size:0xD4 scope:global align:4 +__vt__Q23PSM12EnemyBigBoss = .data:0x804EEAA0; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM12EnemyMidBoss = .data:0x804EEB90; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM9EnemyBoss = .data:0x804EEC80; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM8EnemyBig = .data:0x804EED70; // type:object size:0xD4 scope:global align:4 +__vt__Q23PSM9Tsuyukusa = .data:0x804EEE44; // type:object size:0x88 scope:weak align:4 +__vt__Q23PSM18EnemyNotAggressive = .data:0x804EEECC; // type:object size:0xE0 scope:weak align:4 +__vt__Q23PSM9EnemyBase = .data:0x804EEFAC; // type:object size:0xD4 scope:global align:4 +__vt__Q23PSM9KehaiLink = .data:0x804EF080; // type:object size:0x10 scope:global align:4 +__vt__Q23PSM10BattleLink = .data:0x804EF090; // type:object size:0x10 scope:global align:4 +__vt__Q23PSM13CreatureAnime = .data:0x804EF0A0; // type:object size:0xA4 scope:global align:4 +__vt__Q23PSM11CreatureObj = .data:0x804EF144; // type:object size:0x88 scope:global align:4 +__vt__Q23PSM8Creature = .data:0x804EF1CC; // type:object size:0x40 scope:global align:4 +__vt__Q23PSM6ObjMgr = .data:0x804EF20C; // type:object size:0x24 scope:global align:4 +__vt__Q23PSM7ObjBase = .data:0x804EF230; // type:object size:0x20 scope:global align:4 +__vt__Q23PSM4Demo = .data:0x804EF250; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EF268; // type:object size:0xC scope:local align:4 data:float +__vt__Q23PSM15Scene_NoObjects = .data:0x804EF274; // type:object size:0x54 scope:global align:4 +__vt__Q23PSM14Scene_WorldMap = .data:0x804EF2C8; // type:object size:0x54 scope:weak align:4 +__vt__Q23PSM11Scene_Zukan = .data:0x804EF31C; // type:object size:0x58 scope:global align:4 +__vt__Q23PSM15Scene_Challenge = .data:0x804EF374; // type:object size:0x74 scope:global align:4 +__vt__Q23PSM10Scene_Cave = .data:0x804EF3E8; // type:object size:0x74 scope:global align:4 +__vt__Q23PSM12Scene_Ground = .data:0x804EF45C; // type:object size:0x74 scope:global align:4 +__vt__Q28PSSystem39SingletonBase = .data:0x804EF4D0; // type:object size:0xC scope:weak align:4 +__vt__Q33PSM12BossBgmFader3Mgr = .data:0x804EF4DC; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM10Scene_Game = .data:0x804EF4E8; // type:object size:0x74 scope:global align:4 +__vt__Q28PSSystem34SingletonBase = .data:0x804EF55C; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM11ObjCalcBase = .data:0x804EF568; // type:object size:0x1C scope:weak align:4 +__vt__Q23PSM13Scene_Objects = .data:0x804EF584; // type:object size:0x58 scope:global align:4 +__vt__Q23PSM10Scene_Demo = .data:0x804EF5DC; // type:object size:0x54 scope:global align:4 +__vt__Q23PSM12Scene_Global = .data:0x804EF630; // type:object size:0x54 scope:global align:4 +__vt__Q23PSM9SceneBase = .data:0x804EF684; // type:object size:0x54 scope:global align:4 +__vt__Q33PSM12BossBgmFader17TypedProc_MidBoss = .data:0x804EF6D8; // type:object size:0xC scope:global align:4 +__vt__Q33PSM12BossBgmFader9TypedProc = .data:0x804EF6E4; // type:object size:0xC scope:global align:4 +@3551 = .data:0x804EF6F0; // type:object size:0x20 scope:local align:4 +@3952 = .data:0x804EF710; // type:object size:0x154 scope:local align:4 +__vt__Q23PSM14ClusterFactory = .data:0x804EF864; // type:object size:0x10 scope:weak align:4 +__vt__Q23PSM14WorldMapRocket = .data:0x804EF874; // type:object size:0xC scope:global align:4 +@3920 = .data:0x804EF880; // type:object size:0x20 scope:local align:4 +@3968 = .data:0x804EF8A0; // type:object size:0x20 scope:local align:4 +@4292 = .data:0x804EF8C0; // type:object size:0x20 scope:local align:4 +__vt__Q23PSM20DirectorMgr_2PBattle = .data:0x804EF8E0; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM18DirectorMgr_Battle = .data:0x804EF8FC; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM25DirectorMgr_Scene_AutoBgm = .data:0x804EF918; // type:object size:0x24 scope:global align:4 +__vt__Q23PSM19GroundDirector_Cave = .data:0x804EF93C; // type:object size:0x38 scope:weak align:4 +__vt__Q28PSSystem38SingletonBase = .data:0x804EF974; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM17DirectorMgr_Scene = .data:0x804EF980; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EF9A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23PSM7SeSound = .data:0x804EF9B4; // type:object size:0xF4 scope:global align:4 +__vt__Q23PSM15BgmTrackMapFile = .data:0x804EFAA8; // type:object size:0x1C scope:global align:4 +sThpDemoDinamics__3PSM = .data:0x804EFAC8; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM11CreaturePrm = .data:0x804EFBB8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem34SingletonBase = .data:0x804EFBC4; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM14ObjCalc_2PGame = .data:0x804EFBD0; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM18ObjCalc_SingleGame = .data:0x804EFBEC; // type:object size:0x1C scope:global align:4 +aoData$1232 = .bss:0x804EFC20; // type:object size:0x90 scope:local align:4 data:4byte +...bss.0 = .bss:0x804EFCB0; // type:label scope:local +@740 = .bss:0x804EFCB0; // type:object size:0xC scope:local align:4 +soovv_actor_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFCBC; // type:object size:0x10 scope:local align:4 data:4byte +@743 = .bss:0x804EFCCC; // type:object size:0xC scope:local align:4 +soovv_actor_RELATION_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFCD8; // type:object size:0x10 scope:local align:4 data:4byte +@746 = .bss:0x804EFCE8; // type:object size:0xC scope:local align:4 +soovv_camera_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFCF4; // type:object size:0x10 scope:local align:4 data:4byte +@749 = .bss:0x804EFD04; // type:object size:0xC scope:local align:4 +soovv_camera_TARGET_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFD10; // type:object size:0x10 scope:local align:4 data:4byte +@752 = .bss:0x804EFD20; // type:object size:0xC scope:local align:4 +soovv_light_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFD2C; // type:object size:0x10 scope:local align:4 data:4byte +@755 = .bss:0x804EFD3C; // type:object size:0xC scope:local align:4 +soovv_particle_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFD48; // type:object size:0x10 scope:local align:4 data:4byte +@758 = .bss:0x804EFD58; // type:object size:0xC scope:local align:4 +soovv_sound_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFD64; // type:object size:0x10 scope:local align:4 data:4byte +@761 = .bss:0x804EFD74; // type:object size:0xC scope:local align:4 +soovv_sound_LOCATED___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFD80; // type:object size:0x10 scope:local align:4 data:4byte +@802 = .bss:0x804EFD90; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFDA0; // type:label scope:local +@917 = .bss:0x804EFDA0; // type:object size:0xC scope:local align:4 +@918 = .bss:0x804EFDAC; // type:object size:0xC scope:local align:4 +@919 = .bss:0x804EFDB8; // type:object size:0xC scope:local align:4 +@920 = .bss:0x804EFDC4; // type:object size:0xC scope:local align:4 +@921 = .bss:0x804EFDD0; // type:object size:0xC scope:local align:4 +@922 = .bss:0x804EFDDC; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFDE8; // type:label scope:local +@1056 = .bss:0x804EFDE8; // type:object size:0xC scope:local align:4 +@1057 = .bss:0x804EFDF4; // type:object size:0xC scope:local align:4 +@1064 = .bss:0x804EFE00; // type:object size:0xC scope:local align:4 +@1071 = .bss:0x804EFE0C; // type:object size:0xC scope:local align:4 +@1072 = .bss:0x804EFE18; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFE28; // type:label scope:local +@998 = .bss:0x804EFE28; // type:object size:0xC scope:local align:4 +@1003 = .bss:0x804EFE34; // type:object size:0xC scope:local align:4 +@1008 = .bss:0x804EFE40; // type:object size:0xC scope:local align:4 +@1013 = .bss:0x804EFE4C; // type:object size:0xC scope:local align:4 +@1014 = .bss:0x804EFE58; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFE68; // type:label scope:local +@831 = .bss:0x804EFE68; // type:object size:0xC scope:local align:4 +@836 = .bss:0x804EFE74; // type:object size:0xC scope:local align:4 +@837 = .bss:0x804EFE80; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFE90; // type:label scope:local +aoData$1256 = .bss:0x804EFE90; // type:object size:0x20 scope:local align:4 data:float +@1499 = .bss:0x804EFEB0; // type:object size:0xC scope:local align:4 +@1502 = .bss:0x804EFEBC; // type:object size:0xC scope:local align:4 +@1505 = .bss:0x804EFEC8; // type:object size:0xC scope:local align:4 +@1508 = .bss:0x804EFED4; // type:object size:0xC scope:local align:4 +@1511 = .bss:0x804EFEE0; // type:object size:0xC scope:local align:4 +@1513 = .bss:0x804EFEEC; // type:object size:0xC scope:local align:4 +@487 = .bss:0x804EFEF8; // type:object size:0xC scope:local align:4 +decompMutex = .bss:0x804EFF04; // type:object size:0x18 scope:local align:4 +@295 = .bss:0x804EFF20; // type:object size:0xC scope:local align:4 +@299 = .bss:0x804EFF30; // type:object size:0xC scope:local align:4 +@612 = .bss:0x804EFF40; // type:object size:0xC scope:local align:4 +@299 = .bss:0x804EFF50; // type:object size:0xC scope:local align:4 +decompMutex = .bss:0x804EFF5C; // type:object size:0x18 scope:local align:4 +@295 = .bss:0x804EFF78; // type:object size:0xC scope:local align:4 +decompMutex = .bss:0x804EFF84; // type:object size:0x18 scope:local align:4 +@2412 = .bss:0x804EFFA0; // type:object size:0xC scope:local align:4 +@477 = .bss:0x804EFFB0; // type:object size:0xC scope:local align:4 +@1165 = .bss:0x804EFFBC; // type:object size:0xC scope:local align:4 +sMessageFileLine__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .bss:0x804EFFC8; // type:object size:0x40 scope:local align:4 +sMessageString__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .bss:0x804F0008; // type:object size:0x100 scope:local align:4 +exCallbackObject = .bss:0x804F0108; // type:object size:0x14 scope:local align:4 data:4byte +@2412 = .bss:0x804F011C; // type:object size:0xC scope:local align:4 +context$2483 = .bss:0x804F0128; // type:object size:0x2C8 scope:local align:8 +@520 = .bss:0x804F03F0; // type:object size:0xC scope:local align:4 +@1483 = .bss:0x804F03FC; // type:object size:0xC scope:local align:4 +@1733 = .bss:0x804F0408; // type:object size:0xC scope:local align:4 +p_name$459 = .bss:0x804F0418; // type:object size:0x101 scope:local align:4 data:byte +@2414 = .bss:0x804F0520; // type:object size:0xC scope:local align:4 +clear_z_tobj = .bss:0x804F052C; // type:object size:0x20 scope:local align:4 +osc$639 = .bss:0x804F0550; // type:object size:0x18 scope:local align:4 data:float +...bss.0 = .bss:0x804F0568; // type:label scope:local +sDspSyncCallback__9JASDriver = .bss:0x804F0568; // type:object size:0x80 scope:local align:4 +sSubFrameCallback__9JASDriver = .bss:0x804F05E8; // type:object size:0x80 scope:local align:4 +sUpdateDacCallback__9JASDriver = .bss:0x804F0668; // type:object size:0x80 scope:local align:4 +@614 = .bss:0x804F06E8; // type:object size:0xC scope:local align:4 +@615 = .bss:0x804F06F4; // type:object size:0xC scope:local align:4 +@618 = .bss:0x804F0700; // type:object size:0xC scope:local align:4 +audioAramHeap__9JASKernel = .bss:0x804F070C; // type:object size:0x44 scope:local align:4 +sMutex = .bss:0x804F0750; // type:object size:0x18 scope:local align:4 +sDmaDacBuffer__9JASDriver = .bss:0x804F0768; // type:object size:0xC scope:local align:4 data:4byte +audio_task = .bss:0x804F0780; // type:object size:0x50 scope:local align:32 +AUDIO_YIELD_BUFFER = .bss:0x804F07E0; // type:object size:0x2000 scope:local align:32 +taskwork = .bss:0x804F27E0; // type:object size:0x80 scope:local align:4 +sync_stack = .bss:0x804F2860; // type:object size:0xC scope:local align:4 data:4byte +@1162 = .bss:0x804F2870; // type:object size:0xC scope:local align:4 +gTRKEventQueue = .bss:0x804F2880; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x804F28A8; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x804F28B0; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x804F4260; // type:object size:0x14 scope:local align:4 data:4byte +IsTRKConnected = .bss:0x804F4278; // type:object size:0x4 scope:local align:4 data:4byte +TRK_saved_exceptionID = .bss:0x804F4280; // type:object size:0x2 scope:local align:2 data:2byte +gTRKState = .bss:0x804F4284; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x804F4328; // type:object size:0x430 scope:global align:8 +gTRKSaveState = .bss:0x804F4758; // type:object size:0x94 scope:global align:4 +TRKvalue128_temp = .bss:0x804F47EC; // type:object size:0x10 scope:global align:4 +lc_base = .bss:0x804F4800; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x804F4808; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Use_BBA = .bss:0x804F4810; // type:object size:0x1 scope:global align:1 data:byte +bUseSerialIO = .bss:0x804F4818; // type:object size:0x1 scope:local align:1 data:byte +gRecvBuf = .bss:0x804F4820; // type:object size:0x800 scope:local align:4 +gRecvCB = .bss:0x804F5020; // type:object size:0x1C scope:local align:4 +gRecvBuf = .bss:0x804F5040; // type:object size:0x500 scope:local align:4 +gRecvCB = .bss:0x804F5540; // type:object size:0x1C scope:local align:4 +fragmentinfo = .bss:0x804F5560; // type:object size:0xC scope:local align:4 data:4byte +__atexit_funcs = .bss:0x804F5570; // type:object size:0x100 scope:global align:4 +protopool$192 = .bss:0x804F5670; // type:object size:0x38 scope:local align:4 +stderr_buff = .bss:0x804F56A8; // type:object size:0x100 scope:local align:4 +stdout_buff = .bss:0x804F57A8; // type:object size:0x100 scope:local align:4 +stdin_buff = .bss:0x804F58A8; // type:object size:0x100 scope:local align:4 +...bss.0 = .bss:0x804F59A8; // type:label scope:local +regs = .bss:0x804F59A8; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x804F5A20; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x804F5A98; // type:object size:0x58 scope:local align:4 data:2byte +...bss.0 = .bss:0x804F5AF0; // type:label scope:local +__CARDBlock = .bss:0x804F5AF0; // type:object size:0x220 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x804F5D10; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x804F5D30; // type:label scope:local +CommandList = .bss:0x804F5D30; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x804F5D70; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x804F5D98; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x804F5DC0; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x804F5DE8; // type:object size:0xC scope:local align:4 +Curr = .bss:0x804F5DF4; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804F5E00; // type:label scope:local +BB2 = .bss:0x804F5E00; // type:object size:0x20 scope:local align:32 +CurrDiskID = .bss:0x804F5E20; // type:object size:0x20 scope:local align:32 +DummyCommandBlock = .bss:0x804F5E40; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x804F5E70; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x804F5E98; // type:label scope:local +WaitingQueue = .bss:0x804F5E98; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x804F5EB8; // type:object size:0x3F scope:local align:4 +block$18 = .bss:0x804F5EF8; // type:object size:0x30 scope:local align:4 +Ecb = .bss:0x804F5F28; // type:object size:0xC0 scope:local align:4 +...bss.0 = .bss:0x804F5FE8; // type:label scope:local +FifoObj = .bss:0x804F5FE8; // type:object size:0x80 scope:local align:4 +gxData = .bss:0x804F6068; // type:object size:0x5B0 scope:local align:4 +...bss.0 = .bss:0x804F6620; // type:label scope:local +DriveInfo = .bss:0x804F6620; // type:object size:0x20 scope:local align:32 +DriveBlock = .bss:0x804F6640; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x804F6670; // type:label scope:local +__OSErrorTable = .bss:0x804F6670; // type:object size:0x44 scope:global align:4 +...bss.0 = .bss:0x804F66C0; // type:label scope:local +Header = .bss:0x804F66C0; // type:object size:0x20 scope:local align:32 +...bss.0 = .bss:0x804F66E0; // type:label scope:local +Scb = .bss:0x804F66E0; // type:object size:0x54 scope:local align:32 data:2byte +...bss.0 = .bss:0x804F6738; // type:label scope:local +RunQueue = .bss:0x804F6738; // type:object size:0x100 scope:local align:4 +IdleThread = .bss:0x804F6838; // type:object size:0x318 scope:local align:8 +DefaultThread = .bss:0x804F6B50; // type:object size:0x318 scope:local align:8 +IdleContext = .bss:0x804F6E68; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x804F7130; // type:label scope:local +Type = .bss:0x804F7130; // type:object size:0x10 scope:local align:4 +Origin = .bss:0x804F7140; // type:object size:0x30 scope:local align:4 +CmdProbeDevice = .bss:0x804F7170; // type:object size:0x10 scope:local align:4 +...bss.0 = .bss:0x804F7180; // type:label scope:local +Packet = .bss:0x804F7180; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x804F7200; // type:object size:0xA0 scope:local align:8 +TypeTime = .bss:0x804F72A0; // type:object size:0x20 scope:local align:8 +XferTime = .bss:0x804F72C0; // type:object size:0x20 scope:local align:8 +TypeCallback = .bss:0x804F72E0; // type:object size:0x40 scope:local align:4 +RDSTHandler = .bss:0x804F7320; // type:object size:0x10 scope:local align:4 data:4byte +InputBufferValid = .bss:0x804F7330; // type:object size:0x10 scope:local align:4 +InputBuffer = .bss:0x804F7340; // type:object size:0x20 scope:local align:4 +InputBufferVcount = .bss:0x804F7360; // type:object size:0x10 scope:local align:4 +cmdFixDevice$327 = .bss:0x804F7370; // type:object size:0x10 scope:local align:4 +...bss.0 = .bss:0x804F7380; // type:label scope:local +__THPIDCTWorkspace = .bss:0x804F7380; // type:object size:0x100 scope:local align:32 +__THPLCWork512 = .bss:0x804F7480; // type:object size:0xC scope:local align:4 +__THPLCWork672 = .bss:0x804F748C; // type:object size:0xC scope:local align:4 +__THPMCUBuffer = .bss:0x804F7498; // type:object size:0x18 scope:local align:4 data:4byte +SecParams = .bss:0x804F74C0; // type:object size:0x100 scope:local align:32 +__GBA = .bss:0x804F75C0; // type:object size:0x400 scope:global align:8 +dummyPlayer = .bss:0x804F79C0; // type:object size:0xC scope:local align:4 data:float +sCylinderVertPos__4Game = .bss:0x804F79D0; // type:object size:0x240 scope:local align:4 +@2887 = .bss:0x804F7C10; // type:object size:0xC scope:local align:4 +exCallbackObject = .bss:0x804F7C20; // type:object size:0x14 scope:local align:4 data:4byte +@2646 = .bss:0x804F7C38; // type:object size:0xC scope:local align:4 +sRubyDataBuffer__5P2JME = .bss:0x804F7C48; // type:object size:0x21 scope:local align:4 +str$673 = .bss:0x804F7C70; // type:object size:0x100 scope:local align:4 +sCardWorkArea = .bss:0x804F7D80; // type:object size:0xA000 scope:local align:32 +...bss.0 = .bss:0x80501D80; // type:label scope:local +AudioDecodeThread = .bss:0x80501D80; // type:object size:0x318 scope:local align:8 +AudioDecodeThreadStack = .bss:0x80502098; // type:object size:0x1000 scope:local align:4 +FreeAudioBufferQueue = .bss:0x80503098; // type:object size:0x20 scope:local align:4 +DecodedAudioBufferQueue = .bss:0x805030B8; // type:object size:0x20 scope:local align:4 +FreeAudioBufferMessage = .bss:0x805030D8; // type:object size:0xC scope:local align:4 +DecodedAudioBufferMessage = .bss:0x805030E4; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x80503100; // type:label scope:local +WorkBuffer = .bss:0x80503100; // type:object size:0x40 scope:local align:32 data:4byte +PrepareReadyQueue = .bss:0x80503140; // type:object size:0x20 scope:local align:4 +UsedTextureSetQueue = .bss:0x80503160; // type:object size:0x20 scope:local align:4 +UsedTextureSetMessage = .bss:0x80503180; // type:object size:0xC scope:local align:4 +SoundBuffer = .bss:0x805031A0; // type:object size:0x1180 scope:local align:32 +...bss.0 = .bss:0x80504320; // type:label scope:local +FreeReadBufferQueue = .bss:0x80504320; // type:object size:0x20 scope:local align:4 +ReadedBufferQueue = .bss:0x80504340; // type:object size:0x20 scope:local align:4 +ReadedBufferQueue2 = .bss:0x80504360; // type:object size:0x20 scope:local align:4 +FreeReadBufferMessage = .bss:0x80504380; // type:object size:0x28 scope:local align:4 +ReadedBufferMessage = .bss:0x805043A8; // type:object size:0x28 scope:local align:4 +ReadedBufferMessage2 = .bss:0x805043D0; // type:object size:0x28 scope:local align:4 +ReadThread = .bss:0x805043F8; // type:object size:0x318 scope:local align:8 +ReadThreadStack = .bss:0x80504710; // type:object size:0x1000 scope:local align:4 +...bss.0 = .bss:0x80505710; // type:label scope:local +VideoDecodeThread = .bss:0x80505710; // type:object size:0x318 scope:local align:8 +VideoDecodeThreadStack = .bss:0x80505A28; // type:object size:0x1000 scope:local align:4 +FreeTextureSetQueue = .bss:0x80506A28; // type:object size:0x20 scope:local align:4 +DecodedTextureSetQueue = .bss:0x80506A48; // type:object size:0x20 scope:local align:4 +FreeTextureSetMessage = .bss:0x80506A68; // type:object size:0xC scope:local align:4 +DecodedTextureSetMessage = .bss:0x80506A74; // type:object size:0xC scope:local align:4 +@3464 = .bss:0x80506A80; // type:object size:0xC scope:local align:4 +saoVVOutput_direction___Q214JStudio_JStage14TAdaptor_light = .bss:0x80506A8C; // type:object size:0x48 scope:global align:4 data:4byte +saoVVOutput___Q214JStudio_JStage14TAdaptor_actor = .bss:0x80506AD4; // type:object size:0x40 scope:global align:4 data:4byte +saoVVOutput_ANIMATION_FRAME___Q214JStudio_JStage14TAdaptor_actor = .bss:0x80506BA4; // type:object size:0x90 scope:global align:4 data:4byte +saoVVOutput___Q214JStudio_JStage15TAdaptor_camera = .bss:0x80506C34; // type:object size:0xA0 scope:global align:4 data:4byte +saoVVOutput___Q214JStudio_JStage12TAdaptor_fog = .bss:0x80506CD4; // type:object size:0x60 scope:global align:4 data:4byte +saoVVOSetValue___Q214JStudio_JAudio14TAdaptor_sound = .bss:0x80506D34; // type:object size:0x78 scope:global align:4 data:4byte +sAramCommandList__7JKRAram = .bss:0x80506DAC; // type:object size:0xC scope:global align:4 +sAramList__11JKRAramHeap = .bss:0x80506DB8; // type:object size:0xC scope:global align:4 data:4byte +sAramPieceCommandList__12JKRAramPiece = .bss:0x80506DC4; // type:object size:0xC scope:global align:4 +mMutex__12JKRAramPiece = .bss:0x80506DE8; // type:object size:0x18 scope:global align:4 +sDvdList__10JKRDvdFile = .bss:0x80506E00; // type:object size:0xC scope:global align:4 +sDvdAramAsyncList__16JKRDvdAramRipper = .bss:0x80506E0C; // type:object size:0xC scope:global align:4 +sDvdAsyncList__12JKRDvdRipper = .bss:0x80506E18; // type:object size:0xC scope:global align:4 +sVolumeList__13JKRFileLoader = .bss:0x80506E24; // type:object size:0xC scope:global align:4 data:4byte +sThreadList__9JKRThread = .bss:0x80506E30; // type:object size:0xC scope:global align:4 data:4byte +sTaskList__7JKRTask = .bss:0x80506E68; // type:object size:0xC scope:global align:4 +sEndMesgQueue__7JKRTask = .bss:0x80506E68; // type:object size:0x20 scope:global stripped +sMapFileList__12JUTException = .bss:0x80506E74; // type:object size:0xC scope:global align:4 data:4byte +mPadList__10JUTGamePad = .bss:0x80506E80; // type:object size:0xC scope:global align:4 data:4byte +mPadStatus__10JUTGamePad = .bss:0x80507008; // type:object size:0x30 scope:global align:4 +mPadButton__10JUTGamePad = .bss:0x80507038; // type:object size:0xC0 scope:global align:4 data:4byte +mPadMStick__10JUTGamePad = .bss:0x805070F8; // type:object size:0x40 scope:global align:4 +mPadSStick__10JUTGamePad = .bss:0x80507138; // type:object size:0x40 scope:global align:4 +sPatternList__19JUTGamePadLongPress = .bss:0x80507178; // type:object size:0xC scope:global align:4 data:4byte +sincosTable___5JMath = .bss:0x805071A0; // type:object size:0x4000 scope:global align:32 data:float +atanTable___5JMath = .bss:0x8050D1E0; // type:object size:0x1020 scope:global align:32 data:float +asinAcosTable___5JMath = .bss:0x8050E200; // type:object size:0x1020 scope:global align:32 data:float +static_mBounds__7J2DPane = .bss:0x8050F220; // type:object size:0x10 scope:global align:4 data:float +j3dSys = .bss:0x8050F230; // type:object size:0x11C scope:global align:4 +mCurrentMtx__6J3DSys = .bss:0x8050F3D4; // type:object size:0x30 scope:global align:4 +mCurrentS__6J3DSys = .bss:0x8050F404; // type:object size:0xC scope:global align:4 data:float +mParentS__6J3DSys = .bss:0x8050F410; // type:object size:0xC scope:global align:4 data:float +sTexCoordScaleTable__6J3DSys = .bss:0x8050F41C; // type:object size:0x40 scope:global align:4 data:2byte +sGDLObj__17J3DDisplayListObj = .bss:0x8050F45C; // type:object size:0x10 scope:global align:4 data:4byte +j3dTexCoordTable = .bss:0x8050F46C; // type:object size:0x1DC8 scope:global align:4 +j3dTevSwapTableTable = .bss:0x80511994; // type:object size:0x400 scope:global align:4 data:byte +j3dAlphaCmpTable = .bss:0x80511D94; // type:object size:0x300 scope:global align:4 +j3dZModeTable = .bss:0x80512094; // type:object size:0x60 scope:global align:4 +sMtxLoadCache__11J3DShapeMtx = .bss:0x805120F4; // type:object size:0x14 scope:global align:4 data:2byte +sNoUseDrawMtx__12J3DMtxBuffer = .bss:0x80512108; // type:object size:0x30 scope:global align:4 +sNoUseNrmMtx__12J3DMtxBuffer = .bss:0x8051215C; // type:object size:0x24 scope:global align:4 +sList__8JFWAlarm = .bss:0x80512180; // type:object size:0xC scope:global align:4 data:4byte +sCommandListOnce__10JASPortCmd = .bss:0x8051218C; // type:object size:0xC scope:global align:4 +sCommandListStay__10JASPortCmd = .bss:0x805121A4; // type:object size:0xC scope:global align:4 +nullCamera__Q27JAInter5Const = .bss:0x805121B0; // type:object size:0xC scope:global align:4 data:4byte +nullActor__Q27JAInter5Const = .bss:0x80512218; // type:object size:0x14 scope:global align:4 data:4byte +camMtx__Q27JAInter5Const = .bss:0x8051222C; // type:object size:0x30 scope:global align:4 +camTrans__Q27JAInter5Const = .bss:0x8051225C; // type:object size:0xC scope:global align:4 +camPreTrans__Q27JAInter5Const = .bss:0x80512268; // type:object size:0xC scope:global align:4 +systemPortCmd__Q27JAInter15SystemInterface = .bss:0x80512274; // type:object size:0x18 scope:global align:4 +pikiColors__Q24Game4Piki = .bss:0x8051228C; // type:object size:0x20 scope:global align:4 data:byte +pikiColorsCursor__Q24Game4Piki = .bss:0x805122CC; // type:object size:0x20 scope:global align:4 data:byte +formationPikis__Q24Game8GameStat = .bss:0x805122EC; // type:object size:0xE0 scope:global align:4 data:4byte +workPikis__Q24Game8GameStat = .bss:0x8051250C; // type:object size:0xE0 scope:global align:4 data:4byte +alivePikis__Q24Game8GameStat = .bss:0x805125EC; // type:object size:0x20 scope:global align:4 data:4byte +mePikis__Q24Game8GameStat = .bss:0x8051260C; // type:object size:0x20 scope:global align:4 data:4byte +zikatuPikis__Q24Game8GameStat = .bss:0x8051262C; // type:object size:0x20 scope:global align:4 data:4byte +mToday__Q24Game8BirthMgr = .bss:0x8051264C; // type:object size:0x1C scope:global align:4 data:4byte +mCave__Q24Game8BirthMgr = .bss:0x8051270C; // type:object size:0x1C scope:global align:4 data:4byte +mTotal__Q24Game8BirthMgr = .bss:0x80512728; // type:object size:0x1C scope:global align:4 data:4byte +mToday__Q24Game8DeathMgr = .bss:0x80512744; // type:object size:0x24 scope:global align:4 data:4byte +mCave__Q24Game8DeathMgr = .bss:0x80512768; // type:object size:0x24 scope:global align:4 data:4byte +mTotal__Q24Game8DeathMgr = .bss:0x8051278C; // type:object size:0x24 scope:global align:4 data:4byte +sArgs__Q24Game17PelletBirthBuffer = .bss:0x805127B0; // type:object size:0x1400 scope:global align:4 +PikiIconTextureResTIMG__Q22og6Screen = .bss:0x80513BB0; // type:object size:0x4C scope:global align:4 data:4byte +msVal__Q32og6Screen18CallBack_LifeGauge = .bss:0x80513BFC; // type:object size:0x10 scope:global align:4 data:float +msVal__Q32og6Screen18CallBack_CounterRV = .bss:0x80513C0C; // type:object size:0xC scope:global align:4 data:float +msVal__Q32og9newScreen9ObjGround = .bss:0x80513C18; // type:object size:0x28 scope:global align:4 data:float +msVal__Q32og9newScreen11ObjSMenuMap = .bss:0x80513C40; // type:object size:0x50 scope:global align:4 data:float +msVal__Q32og9newScreen12ObjSMenuItem = .bss:0x80513C90; // type:object size:0x20 scope:global align:4 data:byte +msVal__Q32og9newScreen13ObjSMenuPause = .bss:0x80513CB0; // type:object size:0x44 scope:global align:4 data:float +msBaseVal__Q32og9newScreen12ObjSMenuBase = .bss:0x80513CF4; // type:object size:0x1C scope:global align:4 data:float +msVal__Q32og9newScreen13ObjCourseName = .bss:0x80513D10; // type:object size:0x10 scope:global align:4 data:float +msVal__Q32og9newScreen9ObjKantei = .bss:0x80513D20; // type:object size:0x40 scope:global align:4 data:float +msVal__Q32og9newScreen8ObjFloor = .bss:0x80513D60; // type:object size:0x7C scope:global align:4 data:float +msVal__Q32og9newScreen7ObjCave = .bss:0x80513DDC; // type:object size:0x4C scope:global align:4 data:float +msVal__Q32og9newScreen10ObjAnaDemo = .bss:0x80513E28; // type:object size:0x10 scope:global align:4 data:float +msVal__Q32og9newScreen14ObjChallenge2P = .bss:0x80513E38; // type:object size:0x90 scope:global align:4 data:float +msVal__Q32og9newScreen10ObjContena = .bss:0x80513EC8; // type:object size:0x44 scope:global align:4 data:float +msVal__Q32og9newScreen20ObjSMenuPauseDoukutu = .bss:0x80513F0C; // type:object size:0xC scope:global align:4 data:float +msVal__Q32og9newScreen10ObjUfoMenu = .bss:0x80513F18; // type:object size:0x28 scope:global align:4 data:float +msVal__Q32og9newScreen5ObjVs = .bss:0x80513F40; // type:object size:0x34 scope:global align:4 data:float +msVal__Q32og9newScreen14ObjChallenge1P = .bss:0x80513F74; // type:object size:0x6C scope:global align:4 data:float +msBaseVal__Q32og9newScreen16ObjChallengeBase = .bss:0x80513FE0; // type:object size:0x1C scope:global align:4 data:float +newSeqName__6PSGame = .bss:0x80513FFC; // type:object size:0x20 scope:global align:4 +mScrollParm__Q28Morimura10TZukanBase = .bss:0x8051401C; // type:object size:0x14 scope:global align:4 data:float +mScrollParm__Q28Morimura8THiScore = .bss:0x80514030; // type:object size:0x14 scope:global align:4 data:float +mScrollParm__Q28Morimura9TVsSelect = .bss:0x80514044; // type:object size:0x14 scope:global align:4 data:float +msVal__Q32kh6Screen8WorldMap = .bss:0x80514058; // type:object size:0x7C scope:global align:4 data:float +msVal__Q32kh6Screen13ObjCaveResult = .bss:0x805140D4; // type:object size:0x3C scope:global align:4 data:float +msVal__Q32kh6Screen10ObjReadyGo = .bss:0x80514110; // type:object size:0x18 scope:global align:4 data:float +msVal__Q32kh6Screen13ObjFinalFloor = .bss:0x80514128; // type:object size:0xC scope:global align:4 data:float +msVal__Q32kh6Screen19ObjDayEndResultBase = .bss:0x80514134; // type:object size:0x54 scope:global align:4 data:float +msVal__Q32kh6Screen14ObjFinalResult = .bss:0x80514188; // type:object size:0x24 scope:global align:4 data:float +msVal__Q32kh6Screen10ObjWinLose = .bss:0x805141AC; // type:object size:0x1C scope:global align:4 data:float +msVal__Q32kh6Screen16ObjWinLoseReason = .bss:0x805141C8; // type:object size:0x1C scope:global align:4 data:float +zero__10Vector3 = .bss:0x805141E4; // type:object size:0xC scope:global align:4 data:float +eof__4ID32 = .bss:0x805141F0; // type:object size:0xC scope:global align:4 data:byte +gGameConfig__4Game = .bss:0x805141FC; // type:object size:0x27C scope:global align:4 +sPikminTex__13TinyPikminMgr = .bss:0x80514478; // type:object size:0x14 scope:global align:4 data:4byte +ActivePlayer = .bss:0x80514490; // type:object size:0x1D0 scope:global align:8 +sInsReal__3PSM = .bss:0x80514660; // type:object size:0x1C scope:global align:4 data:byte +sSZSBufferSize__7JKRAram = .sdata:0x80514680; // type:object size:0x4 scope:global align:4 data:4byte +errorRetry__16JKRDvdAramRipper = .sdata:0x80514688; // type:object size:0x1 scope:global align:1 data:byte +sSZSBufferSize__16JKRDvdAramRipper = .sdata:0x8051468C; // type:object size:0x4 scope:global align:4 data:4byte +errorRetry__12JKRDvdRipper = .sdata:0x80514690; // type:object size:0x1 scope:global align:1 data:byte +sSZSBufferSize__12JKRDvdRipper = .sdata:0x80514694; // type:object size:0x4 scope:global align:4 data:4byte +rootPath$2747 = .sdata:0x80514698; // type:object size:0x2 scope:local align:4 data:string +sDefaultFillFlag__7JKRHeap = .sdata:0x805146A0; // type:object size:0x1 scope:global align:1 data:byte +sVisible__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sdata:0x805146A8; // type:object size:0x1 scope:local align:1 data:byte +sMessageBuffer__12JUTException = .sdata:0x805146B0; // type:object size:0x4 scope:global align:4 +sStickMode__10JUTGamePad = .sdata:0x805146B8; // type:object size:0x4 scope:global align:4 data:4byte +sClampMode__10JUTGamePad = .sdata:0x805146BC; // type:object size:0x4 scope:global align:4 data:4byte +sPressPoint__Q210JUTGamePad6CStick = .sdata:0x805146C0; // type:object size:0x4 scope:global align:4 data:float +sReleasePoint__Q210JUTGamePad6CStick = .sdata:0x805146C4; // type:object size:0x4 scope:global align:4 data:float +sResetPattern__Q210JUTGamePad13C3ButtonReset = .sdata:0x805146C8; // type:object size:0x4 scope:global align:4 data:4byte +sResetMaskPattern__Q210JUTGamePad13C3ButtonReset = .sdata:0x805146CC; // type:object size:0x4 scope:global align:4 data:4byte +oneFrameRate = .sdata:0x805146D0; // type:object size:0x4 scope:local align:4 data:float +oneFrameRateUser = .sdata:0x805146D4; // type:object size:0x4 scope:local align:4 data:float +ColorBlack = .sdata:0x805146D8; // type:object size:0x4 scope:local align:4 data:4byte +ColorWhite = .sdata:0x805146DC; // type:object size:0x4 scope:local align:4 data:4byte +Unit01 = .sdata:0x805146E0; // type:object size:0x8 scope:local align:4 +cm2hw$551 = .sdata:0x805146E8; // type:object size:0x4 scope:local align:4 +J3DGDTexMode0Ids = .sdata:0x805146EC; // type:object size:0x8 scope:local align:4 +J3DGDTexMode1Ids = .sdata:0x805146F4; // type:object size:0x8 scope:local align:4 +J3DGDTexImage0Ids = .sdata:0x805146FC; // type:object size:0x8 scope:local align:4 +J3DGDTexImage3Ids = .sdata:0x80514704; // type:object size:0x8 scope:local align:4 +J3DGDTexTlutIds = .sdata:0x8051470C; // type:object size:0x8 scope:local align:4 +GX2HWFiltConv = .sdata:0x80514714; // type:object size:0x6 scope:local align:4 +J3DTexImage1Ids = .sdata:0x8051471C; // type:object size:0x8 scope:local align:4 +J3DTexImage2Ids = .sdata:0x80514724; // type:object size:0x8 scope:local align:4 +SizeOfLoadMatColors = .sdata:0x80514730; // type:object size:0x4 scope:local align:4 data:4byte +SizeOfLoadAmbColors = .sdata:0x80514734; // type:object size:0x4 scope:local align:4 data:4byte +SizeOfLoadColorChans = .sdata:0x80514738; // type:object size:0x4 scope:local align:4 data:4byte +sNoUseDrawMtxPtr__12J3DMtxBuffer = .sdata:0x80514740; // type:object size:0x4 scope:global align:4 +sNoUseNrmMtxPtr__12J3DMtxBuffer = .sdata:0x80514744; // type:object size:0x4 scope:global align:4 +J3DUnit01 = .sdata:0x80514748; // type:object size:0x8 scope:local align:4 +maxStdHeaps__Q29JFWSystem11CSetUpParam = .sdata:0x80514750; // type:object size:0x4 scope:global align:4 data:4byte +sysHeapSize__Q29JFWSystem11CSetUpParam = .sdata:0x80514754; // type:object size:0x4 scope:global align:4 data:4byte +fifoBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x80514758; // type:object size:0x4 scope:global align:4 data:4byte +aramAudioBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x8051475C; // type:object size:0x4 scope:global align:4 data:4byte +aramGraphBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x80514760; // type:object size:0x4 scope:global align:4 data:4byte +streamPriority__Q29JFWSystem11CSetUpParam = .sdata:0x80514764; // type:object size:0x4 scope:global align:4 data:4byte +decompPriority__Q29JFWSystem11CSetUpParam = .sdata:0x80514768; // type:object size:0x4 scope:global align:4 data:4byte +aPiecePriority__Q29JFWSystem11CSetUpParam = .sdata:0x8051476C; // type:object size:0x4 scope:global align:4 data:4byte +systemFontRes__Q29JFWSystem11CSetUpParam = .sdata:0x80514770; // type:object size:0x4 scope:global align:4 data:4byte +renderMode__Q29JFWSystem11CSetUpParam = .sdata:0x80514774; // type:object size:0x4 scope:global align:4 data:4byte +exConsoleBufferSize__Q29JFWSystem11CSetUpParam = .sdata:0x80514778; // type:object size:0x4 scope:global align:4 data:4byte +p_dl = .sdata:0x80514780; // type:object size:0x8 scope:local align:4 +zz_80514788 = .sdata:0x80514788; // type:object size:0x4 scope:global align:4 data:float +MAX_MIXERLEVEL__9JASDriver = .sdata:0x80514790; // type:object size:0x2 scope:local align:2 data:2byte +MAX_AUTOMIXERLEVEL__9JASDriver = .sdata:0x80514792; // type:object size:0x2 scope:local align:2 data:2byte +JAS_SYSTEM_OUTPUT_MODE__9JASDriver = .sdata:0x80514794; // type:object size:0x4 scope:local align:4 data:4byte +COMP_BLOCKSAMPLES$600 = .sdata:0x80514798; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$601 = .sdata:0x805147A0; // type:object size:0x8 scope:local align:4 +sDspDacBufferCount__9JASDriver = .sdata:0x805147A8; // type:object size:0x1 scope:local align:1 data:byte +sSubFrames__9JASDriver = .sdata:0x805147AC; // type:object size:0x4 scope:local align:4 data:4byte +sMixMode__9JASDriver = .sdata:0x805147B0; // type:object size:0x4 scope:local align:4 data:4byte +sDacRate__9JASDriver = .sdata:0x805147B4; // type:object size:0x4 scope:local align:4 data:float +DSP_MIXERLEVEL = .sdata:0x805147B8; // type:object size:0x2 scope:local align:2 data:2byte +flags__Q27JAInter8BankWave = .sdata:0x805147C0; // type:object size:0x2 scope:global align:4 data:byte +SceneSetFlag__Q27JAInter8BankWave = .sdata:0x805147C4; // type:object size:0x4 scope:global align:4 data:4byte +initCallback__Q27JAInter8BankWave = .sdata:0x805147C8; // type:object size:0x4 scope:global align:4 data:4byte +firstLoadCallback__Q27JAInter8BankWave = .sdata:0x805147CC; // type:object size:0x4 scope:global align:4 data:4byte +secondLoadCallback__Q27JAInter8BankWave = .sdata:0x805147D0; // type:object size:0x4 scope:global align:4 data:4byte +msStopStatus__8JAIBasic = .sdata:0x805147D8; // type:object size:0x1 scope:global align:1 data:byte +distanceParameterMoveTime__18JAIGlobalParameter = .sdata:0x805147E0; // type:object size:0x1 scope:global align:1 data:byte +audioSystemThreadPriority__18JAIGlobalParameter = .sdata:0x805147E1; // type:object size:0x1 scope:global align:1 data:byte +audioDvdThreadPriority__18JAIGlobalParameter = .sdata:0x805147E2; // type:object size:0x1 scope:global align:1 data:byte +seqMuteVolumeSePlay__18JAIGlobalParameter = .sdata:0x805147E3; // type:object size:0x1 scope:global align:1 data:byte +seqParameterLines__18JAIGlobalParameter = .sdata:0x805147E4; // type:object size:0x1 scope:global align:1 data:byte +streamParameterLines__18JAIGlobalParameter = .sdata:0x805147E5; // type:object size:0x1 scope:global align:1 data:byte +seDistanceFxParameter__18JAIGlobalParameter = .sdata:0x805147E6; // type:object size:0x2 scope:global align:2 data:2byte +soundSceneMax__18JAIGlobalParameter = .sdata:0x805147E8; // type:object size:0x4 scope:global align:4 data:4byte +seRegistMax__18JAIGlobalParameter = .sdata:0x805147EC; // type:object size:0x4 scope:global align:4 data:4byte +seTrackMax__18JAIGlobalParameter = .sdata:0x805147F0; // type:object size:0x4 scope:global align:4 data:4byte +seqTrackMax__18JAIGlobalParameter = .sdata:0x805147F4; // type:object size:0x4 scope:global align:4 data:4byte +seqPlayTrackMax__18JAIGlobalParameter = .sdata:0x805147F8; // type:object size:0x4 scope:global align:4 data:4byte +seqControlBufferMax__18JAIGlobalParameter = .sdata:0x805147FC; // type:object size:0x4 scope:global align:4 data:4byte +autoHeapMax__18JAIGlobalParameter = .sdata:0x80514800; // type:object size:0x4 scope:global align:4 data:4byte +stayHeapMax__18JAIGlobalParameter = .sdata:0x80514804; // type:object size:0x4 scope:global align:4 data:4byte +autoHeapRoomSize__18JAIGlobalParameter = .sdata:0x80514808; // type:object size:0x4 scope:global align:4 data:4byte +stayHeapSize__18JAIGlobalParameter = .sdata:0x8051480C; // type:object size:0x4 scope:global align:4 data:4byte +initDataFileName__18JAIGlobalParameter = .sdata:0x80514810; // type:object size:0x4 scope:global align:4 data:4byte +wavePath__18JAIGlobalParameter = .sdata:0x80514814; // type:object size:0x4 scope:global align:4 data:4byte +sequenceArchivesPath__18JAIGlobalParameter = .sdata:0x80514818; // type:object size:0x4 scope:global align:4 data:4byte +streamPath__18JAIGlobalParameter = .sdata:0x8051481C; // type:object size:0x4 scope:global align:4 data:4byte +audioResPath__18JAIGlobalParameter = .sdata:0x80514820; // type:object size:0x4 scope:global align:4 data:4byte +sequenceArchivesFileName__18JAIGlobalParameter = .sdata:0x80514824; // type:object size:0x4 scope:global align:4 data:4byte +inputGainDown__18JAIGlobalParameter = .sdata:0x80514828; // type:object size:0x4 scope:global align:4 data:float +outputGainUp__18JAIGlobalParameter = .sdata:0x8051482C; // type:object size:0x4 scope:global align:4 data:float +distanceMax__18JAIGlobalParameter = .sdata:0x80514830; // type:object size:0x4 scope:global align:4 data:float +maxVolumeDistance__18JAIGlobalParameter = .sdata:0x80514834; // type:object size:0x4 scope:global align:4 data:float +seDolbyCenterValue__18JAIGlobalParameter = .sdata:0x80514838; // type:object size:0x4 scope:global align:4 data:float +seDolbyFrontDistanceMax__18JAIGlobalParameter = .sdata:0x8051483C; // type:object size:0x4 scope:global align:4 data:float +seDolbyBehindDistanceMax__18JAIGlobalParameter = .sdata:0x80514840; // type:object size:0x4 scope:global align:4 data:float +dopplarMoveTime__18JAIGlobalParameter = .sdata:0x80514844; // type:object size:0x4 scope:global align:4 data:4byte +dummyObjectLifeTime__18JAIGlobalParameter = .sdata:0x80514848; // type:object size:0x4 scope:global align:4 data:4byte +dummyObjectMax__18JAIGlobalParameter = .sdata:0x8051484C; // type:object size:0x4 scope:global align:4 data:4byte +seqMuteMoveSpeedSePlay__18JAIGlobalParameter = .sdata:0x80514850; // type:object size:0x4 scope:global align:4 data:4byte +audioCameraMax__18JAIGlobalParameter = .sdata:0x80514854; // type:object size:0x4 scope:global align:4 data:4byte +systemTrackMax__18JAIGlobalParameter = .sdata:0x80514858; // type:object size:0x4 scope:global align:4 data:4byte +systemRootTrackMax__18JAIGlobalParameter = .sdata:0x8051485C; // type:object size:0x4 scope:global align:4 data:4byte +panDistanceMax__18JAIGlobalParameter = .sdata:0x80514860; // type:object size:0x4 scope:global align:4 data:float +panDistance2Max__18JAIGlobalParameter = .sdata:0x80514864; // type:object size:0x4 scope:global align:4 data:float +panAngleParameter__18JAIGlobalParameter = .sdata:0x80514868; // type:object size:0x4 scope:global align:4 data:float +panAngleParameter2__18JAIGlobalParameter = .sdata:0x8051486C; // type:object size:0x4 scope:global align:4 data:float +dopplarParameter__18JAIGlobalParameter = .sdata:0x80514870; // type:object size:0x4 scope:global align:4 data:float +seDistanceWaitMax__18JAIGlobalParameter = .sdata:0x80514874; // type:object size:0x2 scope:global align:2 data:2byte +seDistancepitchMax__18JAIGlobalParameter = .sdata:0x80514878; // type:object size:0x4 scope:global align:4 data:float +wsInitCallback__Q27JAInter8InitData = .sdata:0x80514880; // type:object size:0x4 scope:global align:4 data:4byte +bnkInitCallback__Q27JAInter8InitData = .sdata:0x80514884; // type:object size:0x4 scope:global align:4 data:4byte +seStartCallback__Q27JAInter5SeMgr = .sdata:0x80514888; // type:object size:0x4 scope:global align:4 data:4byte +sChannelMax__Q27JAInter9StreamMgr = .sdata:0x80514890; // type:object size:0x4 scope:global align:4 data:4byte +decodedBufferBlocks__Q27JAInter9StreamMgr = .sdata:0x80514894; // type:object size:0x4 scope:global align:4 data:4byte +fragmentID = .sdata:0x80514898; // type:object size:0x4 scope:local align:4 data:4byte +@wstringBase0 = .sdata:0x805148A0; // type:object size:0x2 scope:local align:4 +next = .sdata:0x805148A8; // type:object size:0x4 scope:local align:4 data:4byte +__float_nan = .sdata:0x805148B0; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .sdata:0x805148B4; // type:object size:0x4 scope:global align:4 data:float +__double_max = .sdata:0x805148B8; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .sdata:0x805148C0; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .sdata:0x805148C8; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .sdata:0x805148D0; // type:object size:0x8 scope:global align:4 data:double +__float_max = .sdata:0x805148D8; // type:object size:0x4 scope:global align:4 data:float +__float_epsilon = .sdata:0x805148DC; // type:object size:0x4 scope:global align:4 data:float +SendCount = .sdata:0x805148E0; // type:object size:0x1 scope:local align:1 data:byte +__VIVersion = .sdata:0x805148E8; // type:object size:0x4 scope:global align:4 data:4byte +@534 = .sdata:0x805148EC; // type:object size:0x5 scope:local align:4 data:string +__ARVersion = .sdata:0x805148F8; // type:object size:0x4 scope:global align:4 data:4byte +__ARQVersion = .sdata:0x80514900; // type:object size:0x4 scope:global align:4 data:4byte +__CARDVersion = .sdata:0x80514908; // type:object size:0x4 scope:global align:4 data:4byte +next = .sdata:0x80514910; // type:object size:0x4 scope:local align:4 data:4byte +__CARDVendorID = .sdata:0x80514918; // type:object size:0x2 scope:global align:2 data:2byte +__CARDPermMask = .sdata:0x8051491A; // type:object size:0x1 scope:global align:1 data:byte +__DSPVersion = .sdata:0x80514920; // type:object size:0x4 scope:global align:4 data:4byte +FirstRead = .sdata:0x80514928; // type:object size:0x4 scope:local align:4 data:4byte +@118 = .sdata:0x80514930; // type:object size:0x8 scope:local align:4 data:string +__DVDVersion = .sdata:0x80514938; // type:object size:0x4 scope:global align:4 data:4byte +autoInvalidation = .sdata:0x8051493C; // type:object size:0x4 scope:local align:4 data:4byte +checkOptionalCommand = .sdata:0x80514940; // type:object size:0x4 scope:local align:4 data:4byte +@23 = .sdata:0x80514944; // type:object size:0x6 scope:local align:4 data:string +DmaCommand = .sdata:0x8051494C; // type:object size:0x4 scope:local align:4 data:4byte +@37 = .sdata:0x80514950; // type:object size:0x2 scope:local align:4 data:string +@42 = .sdata:0x80514954; // type:object size:0x4 scope:local align:4 data:string +@43 = .sdata:0x80514958; // type:object size:0x3 scope:local align:4 data:string +__EXIVersion = .sdata:0x80514960; // type:object size:0x4 scope:global align:4 data:4byte +__GXVersion = .sdata:0x80514968; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$263 = .sdata:0x80514970; // type:object size:0x4 scope:local align:4 +tbl2$264 = .sdata:0x80514974; // type:object size:0x4 scope:local align:4 +tbl3$265 = .sdata:0x80514978; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x80514980; // type:object size:0x8 scope:local align:4 +GXTexMode1Ids = .sdata:0x80514988; // type:object size:0x8 scope:local align:4 +GXTexImage0Ids = .sdata:0x80514990; // type:object size:0x8 scope:local align:4 +GXTexImage1Ids = .sdata:0x80514998; // type:object size:0x8 scope:local align:4 +GXTexImage2Ids = .sdata:0x805149A0; // type:object size:0x8 scope:local align:4 +GXTexImage3Ids = .sdata:0x805149A8; // type:object size:0x8 scope:local align:4 +GXTexTlutIds = .sdata:0x805149B0; // type:object size:0x8 scope:local align:4 +GX2HWFiltConv = .sdata:0x805149B8; // type:object size:0x6 scope:local align:4 +Unit01 = .sdata:0x805149C0; // type:object size:0x8 scope:local align:4 +__OSVersion = .sdata:0x805149C8; // type:object size:0x4 scope:global align:4 data:4byte +@97 = .sdata:0x805149CC; // type:object size:0x6 scope:local align:4 data:string +@144 = .sdata:0x805149D4; // type:object size:0x4 scope:local align:4 data:string +__OSCurrHeap = .sdata:0x805149D8; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x805149E0; // type:object size:0x4 scope:local align:4 data:4byte +__OSFpscrEnableBits = .sdata:0x805149E8; // type:object size:0x4 scope:global align:4 data:4byte +@76 = .sdata:0x805149EC; // type:object size:0x2 scope:local align:4 data:string +fontEncode$80 = .sdata:0x805149F0; // type:object size:0x2 scope:local align:2 data:2byte +SwitchThreadCallback = .sdata:0x805149F8; // type:object size:0x4 scope:local align:4 data:4byte +__PADVersion = .sdata:0x80514A00; // type:object size:0x4 scope:global align:4 data:4byte +ResettingChan = .sdata:0x80514A04; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x80514A08; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x80514A0C; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x80514A10; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x80514A14; // type:object size:0x4 scope:local align:4 data:4byte +CmdReadOrigin = .sdata:0x80514A18; // type:object size:0x4 scope:local align:4 +CmdCalibrate = .sdata:0x80514A1C; // type:object size:0x4 scope:local align:4 +__SIVersion = .sdata:0x80514A20; // type:object size:0x4 scope:global align:4 data:4byte +__AIVersion = .sdata:0x80514A28; // type:object size:0x4 scope:global align:4 data:4byte +__THPVersion = .sdata:0x80514A30; // type:object size:0x4 scope:global align:4 data:4byte +__GBAVersion = .sdata:0x80514A38; // type:object size:0x4 scope:global align:4 data:4byte +cKochappyChangeTexName__Q34Game8Kochappy25@unnamed@kochappyMgr_cpp@ = .sdata:0x80514A40; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName0__Q34Game6Chappy23@unnamed@chappyMgr_cpp@ = .sdata:0x80514A48; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName1__Q34Game6Chappy23@unnamed@chappyMgr_cpp@ = .sdata:0x80514A4C; // type:object size:0x4 scope:local align:4 data:4byte +gEnemyInfoNum__4Game = .sdata:0x80514A50; // type:object size:0x4 scope:global align:4 data:4byte +sStoneMdlName__27@unnamed@enemyStoneMgr_cpp@ = .sdata:0x80514A58; // type:object size:0x8 scope:local align:4 data:4byte +cChappyChangeTexName0__Q34Game10BlueChappy27@unnamed@BlueChappyMgr_cpp@ = .sdata:0x80514A60; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName1__Q34Game10BlueChappy27@unnamed@BlueChappyMgr_cpp@ = .sdata:0x80514A64; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName0__Q34Game12YellowChappy29@unnamed@YellowChappyMgr_cpp@ = .sdata:0x80514A68; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName1__Q34Game12YellowChappy29@unnamed@YellowChappyMgr_cpp@ = .sdata:0x80514A6C; // type:object size:0x4 scope:local align:4 data:4byte +cKochappyChangeTexName__Q34Game12BlueKochappy29@unnamed@BlueKochappyMgr_cpp@ = .sdata:0x80514A70; // type:object size:0x4 scope:local align:4 data:4byte +cKochappyChangeTexName__Q34Game14YellowKochappy31@unnamed@YellowKochappyMgr_cpp@ = .sdata:0x80514A78; // type:object size:0x4 scope:local align:4 data:4byte +usePacketCulling__Q24Game8Creature = .sdata:0x80514A80; // type:object size:0x1 scope:global align:1 data:byte +kAngleSpeed__Q23efx7TCursor = .sdata:0x80514A88; // type:object size:0x4 scope:global align:4 data:float +sOptDraw__Q24Game15BaseGameSection = .sdata:0x80514A90; // type:object size:0x1 scope:global align:1 data:byte +sOptResolveColl__Q24Game11CellPyramid = .sdata:0x80514A98; // type:object size:0x1 scope:global align:1 data:byte +sCellBugName__Q24Game11CellPyramid = .sdata:0x80514A9C; // type:object size:0x4 scope:global align:4 data:4byte +sFromTekiEnable__Q24Game6Pellet = .sdata:0x80514AA0; // type:object size:0x1 scope:global align:1 data:byte +newVer = .sdata:0x80514AA8; // type:object size:0x1 scope:local align:1 data:byte +maxBuffer__Q24Game8Stickers = .sdata:0x80514AB0; // type:object size:0x4 scope:global align:4 data:4byte +GeneratorCurrentVersion = .sdata:0x80514AB8; // type:object size:0x4 scope:global align:4 data:4byte +sGraspSituationOptimise__Q24Game4Piki = .sdata:0x80514AC0; // type:object size:0x1 scope:global align:1 data:byte +useFixCollision__Q24Game12PlatInstance = .sdata:0x80514AC8; // type:object size:0x1 scope:global align:1 data:byte +mUseCellMgr__Q24Game7PlatMgr = .sdata:0x80514AC9; // type:object size:0x1 scope:global align:1 data:byte +enum_floor_hiddens__26@unnamed@gameCaveInfo_cpp@ = .sdata:0x80514AD0; // type:object size:0x8 scope:local align:4 +mTraceMoveOptLevel__Q24Game6MapMgr = .sdata:0x80514AD8; // type:object size:0x1 scope:global align:1 data:byte +mVersion__Q24Game8PlayData = .sdata:0x80514AE0; // type:object size:0x4 scope:global align:4 data:4byte +sEntryOpt__Q24Game12BaseHIOParms = .sdata:0x80514AE8; // type:object size:0x1 scope:global align:1 data:byte +sEntryOptMapRoom__Q24Game12BaseHIOParms = .sdata:0x80514AE9; // type:object size:0x1 scope:global align:1 data:byte +sDrawParticle__Q24Game12BaseHIOParms = .sdata:0x80514AEA; // type:object size:0x1 scope:global align:1 data:byte +sMabikiEfx__Q24Game12BaseHIOParms = .sdata:0x80514AEB; // type:object size:0x1 scope:global align:1 data:byte +sMapRoomFinal__Q24Game12BaseHIOParms = .sdata:0x80514AEC; // type:object size:0x1 scope:global align:1 data:byte +sTekiChappyFlag__Q24Game12BaseHIOParms = .sdata:0x80514AED; // type:object size:0x1 scope:global align:1 data:byte +asArrayOtakara__4Game = .sdata:0x80514AF0; // type:object size:0x8 scope:global align:4 data:4byte +cCoin__13VsOtakaraName = .sdata:0x80514AF8; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaBlue__13VsOtakaraName = .sdata:0x80514AFC; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaRed__13VsOtakaraName = .sdata:0x80514B00; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaYellow__13VsOtakaraName = .sdata:0x80514B04; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaYellowDepth__13VsOtakaraName = .sdata:0x80514B08; // type:object size:0x4 scope:global align:4 data:float +cTankChangeTexName__Q34Game5Wtank22@unnamed@WtankMgr_cpp@ = .sdata:0x80514B10; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game3Mar20@unnamed@MarMgr_cpp@ = .sdata:0x80514B18; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game3Mar20@unnamed@MarMgr_cpp@ = .sdata:0x80514B1C; // type:object size:0x4 scope:local align:4 data:4byte +cKoganeChangeTexName__Q34Game7Wealthy24@unnamed@WealthyMgr_cpp@ = .sdata:0x80514B20; // type:object size:0x4 scope:local align:4 data:4byte +cKoganeChangeTexName__Q34Game4Fart21@unnamed@FartMgr_cpp@ = .sdata:0x80514B28; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game5Queen22@unnamed@QueenMgr_cpp@ = .sdata:0x80514B30; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game10FireChappy27@unnamed@FireChappyMgr_cpp@ = .sdata:0x80514B38; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game10FireChappy27@unnamed@FireChappyMgr_cpp@ = .sdata:0x80514B3C; // type:object size:0x4 scope:local align:4 data:4byte +cKoganeChangeTexName__Q34Game11Koganemushi28@unnamed@KoganemushiMgr_cpp@ = .sdata:0x80514B40; // type:object size:0x4 scope:local align:4 data:4byte +cTankChangeTexName__Q34Game5Ftank22@unnamed@FtankMgr_cpp@ = .sdata:0x80514B48; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game12Hanachirashi29@unnamed@HanachirashiMgr_cpp@ = .sdata:0x80514B50; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game12Hanachirashi29@unnamed@HanachirashiMgr_cpp@ = .sdata:0x80514B54; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game8Damagumo25@unnamed@DamagumoMgr_cpp@ = .sdata:0x80514B58; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game8Damagumo25@unnamed@DamagumoMgr_cpp@ = .sdata:0x80514B5C; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game11FireOtakara28@unnamed@FireOtakaraMgr_cpp@ = .sdata:0x80514B60; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game12WaterOtakara29@unnamed@WaterOtakaraMgr_cpp@ = .sdata:0x80514B68; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game10GasOtakara27@unnamed@GasOtakaraMgr_cpp@ = .sdata:0x80514B70; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game11ElecOtakara28@unnamed@ElecOtakaraMgr_cpp@ = .sdata:0x80514B78; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game7BigFoot24@unnamed@BigFootMgr_cpp@ = .sdata:0x80514B80; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game11BombOtakara28@unnamed@BombOtakaraMgr_cpp@ = .sdata:0x80514B88; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game10DangoMushi27@unnamed@DangoMushiMgr_cpp@ = .sdata:0x80514B90; // type:object size:0x4 scope:local align:4 data:4byte +cKabutoChangeTexName__Q34Game11GreenKabuto28@unnamed@GreenKabutoMgr_cpp@ = .sdata:0x80514B98; // type:object size:0x4 scope:local align:4 data:4byte +cKabutoChangeTexName__Q34Game9RedKabuto26@unnamed@RedKabutoMgr_cpp@ = .sdata:0x80514BA0; // type:object size:0x4 scope:local align:4 data:4byte +cKabutoChangeTexName__Q34Game9FixKabuto26@unnamed@FixKabutoMgr_cpp@ = .sdata:0x80514BA8; // type:object size:0x4 scope:local align:4 data:4byte +sDistanceParameterMoveTime__8PSSystem = .sdata:0x80514BB0; // type:object size:0x1 scope:global align:1 data:byte +cRatio__Q26PSGame5Rappa = .sdata:0x80514BB8; // type:object size:0x4 scope:global align:4 data:float +cBaseWaitTime__Q26PSGame5Rappa = .sdata:0x80514BBC; // type:object size:0x2 scope:global align:2 data:2byte +sRappa__Q26PSGame5Rappa = .sdata:0x80514BC0; // type:object size:0x8 scope:global align:4 data:4byte +cNotUsingMasterIdRatio__Q26PSGame6RandId = .sdata:0x80514BC8; // type:object size:0x4 scope:global align:4 data:float +mWaitTime__Q28Morimura12TDayEndCount = .sdata:0x80514BD0; // type:object size:0x4 scope:global align:4 data:float +mAlphaMax__Q28Morimura12TDayEndCount = .sdata:0x80514BD4; // type:object size:0x1 scope:global align:1 data:byte +mWaitAlpha__Q28Morimura12TDayEndCount = .sdata:0x80514BD5; // type:object size:0x1 scope:global align:1 data:byte +mWaitScale__Q28Morimura12TDayEndCount = .sdata:0x80514BD8; // type:object size:0x4 scope:global align:4 data:float +mStopScale__Q28Morimura12TDayEndCount = .sdata:0x80514BDC; // type:object size:0x4 scope:global align:4 data:float +mScaleMax__Q28Morimura12TDayEndCount = .sdata:0x80514BE0; // type:object size:0x4 scope:global align:4 data:float +m2pScale__Q28Morimura12TDayEndCount = .sdata:0x80514BE4; // type:object size:0x4 scope:global align:4 data:float +m2pOffsetY__Q28Morimura12TDayEndCount = .sdata:0x80514BE8; // type:object size:0x4 scope:global align:4 data:float +mColor__Q28Morimura12TDayEndCount = .sdata:0x80514BEC; // type:object size:0x4 scope:global align:4 data:byte +mNumberColor__Q28Morimura12TDayEndCount = .sdata:0x80514BF0; // type:object size:0x4 scope:global align:4 data:4byte +mInitPosX__Q28Morimura10THurryUp2D = .sdata:0x80514BF8; // type:object size:0x4 scope:global align:4 data:float +mMoveSp__Q28Morimura10THurryUp2D = .sdata:0x80514BFC; // type:object size:0x4 scope:global align:4 data:float +mScaleSp1__Q28Morimura10THurryUp2D = .sdata:0x80514C00; // type:object size:0x4 scope:global align:4 data:float +mScaleSp2__Q28Morimura10THurryUp2D = .sdata:0x80514C04; // type:object size:0x4 scope:global align:4 data:float +mScaleRate__Q28Morimura10THurryUp2D = .sdata:0x80514C08; // type:object size:0x4 scope:global align:4 data:float +mColorUpSp__Q28Morimura10THurryUp2D = .sdata:0x80514C0C; // type:object size:0x4 scope:global align:4 data:float +mRequestTimerMax__Q28Morimura10TZukanBase = .sdata:0x80514C10; // type:object size:0x2 scope:global align:2 data:2byte +mIconMove__Q28Morimura10TZukanBase = .sdata:0x80514C12; // type:object size:0x1 scope:global align:1 data:byte +mLineSpace__Q28Morimura10TZukanBase = .sdata:0x80514C14; // type:object size:0x4 scope:global align:4 data:float +mWarpRadius__Q28Morimura10TZukanBase = .sdata:0x80514C18; // type:object size:0x4 scope:global align:4 data:float +mScrollValueCoe__Q28Morimura10TZukanBase = .sdata:0x80514C1C; // type:object size:0x4 scope:global align:4 data:float +mScrollSpeedCoe__Q28Morimura10TZukanBase = .sdata:0x80514C20; // type:object size:0x4 scope:global align:4 data:float +mNewScale__Q28Morimura10TZukanBase = .sdata:0x80514C24; // type:object size:0x4 scope:global align:4 data:float +mPodIconOffsetX__Q28Morimura10TZukanBase = .sdata:0x80514C28; // type:object size:0x4 scope:global align:4 data:float +mLargeCategoryScale__Q28Morimura10TZukanBase = .sdata:0x80514C2C; // type:object size:0x4 scope:global align:4 data:float +mCategoryAlphaRate__Q28Morimura10TZukanBase = .sdata:0x80514C30; // type:object size:0x4 scope:global align:4 data:float +mDrawLineType__Q28Morimura10TZukanBase = .sdata:0x80514C34; // type:object size:0x1 scope:global align:1 data:byte +mPictureOffsetY__Q28Morimura8THiScore = .sdata:0x80514C38; // type:object size:0x4 scope:global align:4 data:float +mChangeAlpha__Q28Morimura8THiScore = .sdata:0x80514C3C; // type:object size:0x1 scope:global align:1 data:byte +mListOffsetY__Q28Morimura8THiScore = .sdata:0x80514C40; // type:object size:0x4 scope:global align:4 data:float +mClearListHeightRate__Q28Morimura8THiScore = .sdata:0x80514C44; // type:object size:0x4 scope:global align:4 data:float +mSelected1p__Q28Morimura16TChallengeSelect = .sdata:0x80514C48; // type:object size:0x1 scope:global align:1 data:byte +mAlphaSpeed__Q28Morimura16TChallengeSelect = .sdata:0x80514C4C; // type:object size:0x4 scope:global align:4 data:float +mFlashAnimInterval__Q28Morimura16TChallengeSelect = .sdata:0x80514C50; // type:object size:0x2 scope:global align:2 data:2byte +mTextFlashVal__Q28Morimura16TChallengeSelect = .sdata:0x80514C54; // type:object size:0x4 scope:global align:4 data:float +mConnect2p__Q28Morimura16TChallengeSelect = .sdata:0x80514C58; // type:object size:0x1 scope:global align:1 data:byte +mPanelMoveVal__Q28Morimura16TChallengeSelect = .sdata:0x80514C5C; // type:object size:0x4 scope:global align:4 data:float +mPanelMoveRate__Q28Morimura16TChallengeSelect = .sdata:0x80514C60; // type:object size:0x4 scope:global align:4 data:float +mCircleY__Q28Morimura16TChallengeSelect = .sdata:0x80514C64; // type:object size:0x4 scope:global align:4 data:float +mTimerSpeed__Q28Morimura16TChallengeSelect = .sdata:0x80514C68; // type:object size:0x4 scope:global align:4 data:float +mMoveSpeed__Q28Morimura16TChallengeSelect = .sdata:0x80514C6C; // type:object size:0x4 scope:global align:4 data:float +mSelectIconScale__Q28Morimura16TChallengeSelect = .sdata:0x80514C70; // type:object size:0x4 scope:global align:4 data:float +mMoveSpeed__Q28Morimura16TChallengeResult = .sdata:0x80514C78; // type:object size:0x4 scope:global align:4 data:float +mAngRate__Q28Morimura16TChallengeResult = .sdata:0x80514C7C; // type:object size:0x4 scope:global align:4 data:float +mAngVelMax__Q28Morimura16TChallengeResult = .sdata:0x80514C80; // type:object size:0x4 scope:global align:4 data:float +mAccel__Q28Morimura16TChallengeResult = .sdata:0x80514C84; // type:object size:0x4 scope:global align:4 data:float +mTestDemo__Q28Morimura16TChallengeResult = .sdata:0x80514C88; // type:object size:0x1 scope:global align:1 data:byte +mComplete__Q28Morimura16TChallengeResult = .sdata:0x80514C89; // type:object size:0x1 scope:global align:1 data:byte +mTestRankInOrder__Q28Morimura16TChallengeResult = .sdata:0x80514C8A; // type:object size:0x2 scope:global align:2 data:2byte +mFlashInterval__Q28Morimura16TChallengeResult = .sdata:0x80514C8C; // type:object size:0x4 scope:global align:4 data:float +mDemoSpeedUpRate__Q28Morimura16TChallengeResult = .sdata:0x80514C90; // type:object size:0x4 scope:global align:4 data:float +mDemoSpeedUpMax__Q28Morimura16TChallengeResult = .sdata:0x80514C94; // type:object size:0x4 scope:global align:4 data:float +mFlashColor__Q28Morimura16TChallengeResult = .sdata:0x80514C98; // type:object size:0x4 scope:global align:4 data:byte +mAngRate__Q28Morimura9TVsSelect = .sdata:0x80514CA0; // type:object size:0x4 scope:global align:4 data:float +mMoveSpeed__Q28Morimura9TVsSelect = .sdata:0x80514CA4; // type:object size:0x4 scope:global align:4 data:float +mIndVal__Q28Morimura9TVsSelect = .sdata:0x80514CA8; // type:object size:0x4 scope:global align:4 data:float +mIndShuki__Q28Morimura9TVsSelect = .sdata:0x80514CAC; // type:object size:0x4 scope:global align:4 data:float +mZoomFrameMax__Q28Morimura9TVsSelect = .sdata:0x80514CB0; // type:object size:0x4 scope:global align:4 data:float +mTestVal__Q28Morimura9TVsSelect = .sdata:0x80514CB4; // type:object size:0x4 scope:global align:4 data:float +mAngUp__Q28Morimura9TVsSelect = .sdata:0x80514CB8; // type:object size:0x4 scope:global align:4 data:float +mWindowScale__Q28Morimura9TVsSelect = .sdata:0x80514CBC; // type:object size:0x4 scope:global align:4 data:float +mDemoScaleMax__Q28Morimura9TVsSelect = .sdata:0x80514CC0; // type:object size:0x4 scope:global align:4 data:float +mDemoScale__Q28Morimura9TVsSelect = .sdata:0x80514CC4; // type:object size:0x4 scope:global align:4 data:float +mDemoOffsetMax__Q28Morimura9TVsSelect = .sdata:0x80514CC8; // type:object size:0x4 scope:global align:4 data:float +mFireAlphaRate__Q28Morimura9TVsSelect = .sdata:0x80514CCC; // type:object size:0x4 scope:global align:4 data:float +mWideWindow__Q28Morimura11TScrollList = .sdata:0x80514CD0; // type:object size:0x1 scope:global align:1 data:byte +mClipRadiusS__11ParticleMgr = .sdata:0x80514CD8; // type:object size:0x4 scope:global align:4 data:float +mClipRadiusM__11ParticleMgr = .sdata:0x80514CDC; // type:object size:0x4 scope:global align:4 data:float +mClipRadiusL__11ParticleMgr = .sdata:0x80514CE0; // type:object size:0x4 scope:global align:4 data:float +cInitialCode__Q23ebi11CardEReader = .sdata:0x80514CE8; // type:object size:0x4 scope:local align:4 data:byte +sUseABXCommand = .sdata:0x80514CF0; // type:object size:0x1 scope:local align:1 data:byte +cMapFileName = .sdata:0x80514CF4; // type:object size:0x4 scope:local align:4 data:4byte +mActiveSectionFlag__8GameFlow = .sdata:0x80514CF8; // type:object size:0x4 scope:global align:4 data:4byte +viewCalcMode__Q28SysShape5Model = .sdata:0x80514D00; // type:object size:0x1 scope:global align:1 data:byte +cFileName__Q24Game10MemoryCard = .sdata:0x80514D08; // type:object size:0x4 scope:global align:4 data:4byte +sTinyPikminNum__13TinyPikminMgr = .sdata:0x80514D10; // type:object size:0x4 scope:global align:4 data:4byte +sMovieIndex__26@unnamed@titleSection_cpp@ = .sdata:0x80514D18; // type:object size:0x7 scope:local align:4 +sSeasonIndex__26@unnamed@titleSection_cpp@ = .sdata:0x80514D1F; // type:object size:0x1 scope:local align:1 data:byte +sMovieIndexTable__Q24Demo25@unnamed@demoSection_cpp@ = .sdata:0x80514D20; // type:object size:0x8 scope:local align:4 +sMovieIndex__Q24Demo25@unnamed@demoSection_cpp@ = .sdata:0x80514D28; // type:object size:0x1 scope:local align:1 data:byte +sTreasureLader_PitchDistance = .sdata:0x80514D30; // type:object size:0x4 scope:global align:4 data:float +sTreasureLader_Pitch = .sdata:0x80514D34; // type:object size:0x4 scope:global align:4 data:float +sTreasureLader_DistanceExp = .sdata:0x80514D38; // type:object size:0x4 scope:global align:4 data:float +sTreasureLader_MinimumVolume = .sdata:0x80514D3C; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseVolumeExp = .sdata:0x80514D40; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseFuefukiTimerCenter = .sdata:0x80514D44; // type:object size:0x2 scope:global align:2 data:2byte +sLaderNoiseFuefukiTimerRandam = .sdata:0x80514D46; // type:object size:0x2 scope:global align:2 data:2byte +sLaderNoiseFuefukiSensMax = .sdata:0x80514D48; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseFuefukiVolumeMin = .sdata:0x80514D4C; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseFuefukiVolumeMax = .sdata:0x80514D50; // type:object size:0x4 scope:global align:4 data:float +cDol_0Rad__Q23PSM7SeSound = .sdata:0x80514D58; // type:object size:0x4 scope:global align:4 data:float +cDol_HalfRad__Q23PSM7SeSound = .sdata:0x80514D5C; // type:object size:0x4 scope:global align:4 data:float +cDol_FullRad__Q23PSM7SeSound = .sdata:0x80514D60; // type:object size:0x4 scope:global align:4 data:float +cPan_MaxAmp__Q23PSM7SeSound = .sdata:0x80514D64; // type:object size:0x4 scope:global align:4 data:float +cCenterRad__Q23PSM7SeSound = .sdata:0x80514D68; // type:object size:0x4 scope:global align:4 data:float +sCamFov__3PSM = .sdata:0x80514D70; // type:object size:0x4 scope:global align:4 data:float +sBoss_ViewDist__3PSM = .sdata:0x80514D74; // type:object size:0x4 scope:global align:4 data:float +sBoss_ViewDistVol__3PSM = .sdata:0x80514D78; // type:object size:0x4 scope:global align:4 data:float +sBoss_DistMax__3PSM = .sdata:0x80514D7C; // type:object size:0x4 scope:global align:4 data:float +init$1233 = .sbss:0x80514D80; // type:object size:0x1 scope:local align:1 data:byte +@568 = .sbss:0x80514D88; // type:object size:0x1 scope:local align:4 data:byte +soOutput_none___Q27JStudio14TVariableValue = .sbss:0x80514D90; // type:object size:0x4 scope:global align:4 data:4byte +init$1257 = .sbss:0x80514D98; // type:object size:0x1 scope:local align:1 data:byte +sAramObject__7JKRAram = .sbss:0x80514DA0; // type:object size:0x4 scope:global align:4 data:4byte +szpBuf = .sbss:0x80514DA4; // type:object size:0x4 scope:local align:4 data:4byte +szpEnd = .sbss:0x80514DA8; // type:object size:0x4 scope:local align:4 data:4byte +refBuf = .sbss:0x80514DAC; // type:object size:0x4 scope:local align:4 data:4byte +refEnd = .sbss:0x80514DB0; // type:object size:0x4 scope:local align:4 data:4byte +refCurrent = .sbss:0x80514DB4; // type:object size:0x4 scope:local align:4 data:4byte +srcOffset = .sbss:0x80514DB8; // type:object size:0x4 scope:local align:4 data:4byte +transLeft = .sbss:0x80514DBC; // type:object size:0x4 scope:local align:4 data:4byte +srcLimit = .sbss:0x80514DC0; // type:object size:0x4 scope:local align:4 data:4byte +srcAddress = .sbss:0x80514DC4; // type:object size:0x4 scope:local align:4 data:4byte +fileOffset = .sbss:0x80514DC8; // type:object size:0x4 scope:local align:4 data:4byte +readCount = .sbss:0x80514DCC; // type:object size:0x4 scope:local align:4 data:4byte +maxDest = .sbss:0x80514DD0; // type:object size:0x4 scope:local align:4 data:4byte +isInitMutex = .sbss:0x80514DD4; // type:object size:0x1 scope:local align:1 data:byte +tsPtr = .sbss:0x80514DD8; // type:object size:0x4 scope:local align:4 data:4byte +tsArea = .sbss:0x80514DDC; // type:object size:0x4 scope:local align:4 data:4byte +sAramStreamObject__13JKRAramStream = .sbss:0x80514DE0; // type:object size:0x4 scope:global align:4 data:4byte +transBuffer__13JKRAramStream = .sbss:0x80514DE4; // type:object size:0x4 scope:global align:4 data:4byte +transSize__13JKRAramStream = .sbss:0x80514DE8; // type:object size:0x4 scope:global align:4 data:4byte +transHeap__13JKRAramStream = .sbss:0x80514DEC; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentDirID__10JKRArchive = .sbss:0x80514DF0; // type:object size:0x4 scope:global align:4 data:4byte +sDecompObject__9JKRDecomp = .sbss:0x80514DF8; // type:object size:0x4 scope:global align:4 data:4byte +szpBuf = .sbss:0x80514E00; // type:object size:0x4 scope:local align:4 data:4byte +szpEnd = .sbss:0x80514E04; // type:object size:0x4 scope:local align:4 data:4byte +refBuf = .sbss:0x80514E08; // type:object size:0x4 scope:local align:4 data:4byte +refEnd = .sbss:0x80514E0C; // type:object size:0x4 scope:local align:4 data:4byte +refCurrent = .sbss:0x80514E10; // type:object size:0x4 scope:local align:4 data:4byte +dmaBuf = .sbss:0x80514E14; // type:object size:0x4 scope:local align:4 data:4byte +dmaEnd = .sbss:0x80514E18; // type:object size:0x4 scope:local align:4 data:4byte +dmaCurrent = .sbss:0x80514E1C; // type:object size:0x4 scope:local align:4 data:4byte +srcOffset = .sbss:0x80514E20; // type:object size:0x4 scope:local align:4 data:4byte +transLeft = .sbss:0x80514E24; // type:object size:0x4 scope:local align:4 data:4byte +srcLimit = .sbss:0x80514E28; // type:object size:0x4 scope:local align:4 data:4byte +srcFile = .sbss:0x80514E2C; // type:object size:0x4 scope:local align:4 data:4byte +fileOffset = .sbss:0x80514E30; // type:object size:0x4 scope:local align:4 data:4byte +readCount = .sbss:0x80514E34; // type:object size:0x4 scope:local align:4 data:4byte +maxDest = .sbss:0x80514E38; // type:object size:0x4 scope:local align:4 data:4byte +isInitMutex = .sbss:0x80514E3C; // type:object size:0x1 scope:local align:1 data:byte +tsPtr = .sbss:0x80514E40; // type:object size:0x4 scope:local align:4 data:4byte +tsArea = .sbss:0x80514E44; // type:object size:0x4 scope:local align:4 data:4byte +szpBuf = .sbss:0x80514E48; // type:object size:0x4 scope:local align:4 data:4byte +szpEnd = .sbss:0x80514E4C; // type:object size:0x4 scope:local align:4 data:4byte +refBuf = .sbss:0x80514E50; // type:object size:0x4 scope:local align:4 data:4byte +refEnd = .sbss:0x80514E54; // type:object size:0x4 scope:local align:4 data:4byte +refCurrent = .sbss:0x80514E58; // type:object size:0x4 scope:local align:4 data:4byte +srcOffset = .sbss:0x80514E5C; // type:object size:0x4 scope:local align:4 data:4byte +transLeft = .sbss:0x80514E60; // type:object size:0x4 scope:local align:4 data:4byte +srcLimit = .sbss:0x80514E64; // type:object size:0x4 scope:local align:4 data:4byte +srcFile = .sbss:0x80514E68; // type:object size:0x4 scope:local align:4 data:4byte +fileOffset = .sbss:0x80514E6C; // type:object size:0x4 scope:local align:4 data:4byte +readCount = .sbss:0x80514E70; // type:object size:0x4 scope:local align:4 data:4byte +maxDest = .sbss:0x80514E74; // type:object size:0x4 scope:local align:4 data:4byte +isInitMutex = .sbss:0x80514E78; // type:object size:0x1 scope:local align:1 data:byte +tsPtr = .sbss:0x80514E7C; // type:object size:0x4 scope:local align:4 data:4byte +tsArea = .sbss:0x80514E80; // type:object size:0x4 scope:local align:4 data:4byte +DBfoundSize = .sbss:0x80514E88; // type:object size:0x4 scope:local align:4 data:4byte +DBfoundOffset = .sbss:0x80514E8C; // type:object size:0x4 scope:local align:4 data:4byte +DBfoundBlock = .sbss:0x80514E90; // type:object size:0x4 scope:local align:4 data:4byte +DBnewFreeBlock = .sbss:0x80514E94; // type:object size:0x4 scope:local align:4 data:4byte +DBnewUsedBlock = .sbss:0x80514E98; // type:object size:0x4 scope:local align:4 data:4byte +sCurrentVolume__13JKRFileLoader = .sbss:0x80514EA0; // type:object size:0x4 scope:global align:4 data:4byte +sSystemHeap__7JKRHeap = .sbss:0x80514EA8; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentHeap__7JKRHeap = .sbss:0x80514EAC; // type:object size:0x4 scope:global align:4 data:4byte +sRootHeap__7JKRHeap = .sbss:0x80514EB0; // type:object size:0x4 scope:global align:4 data:4byte +mErrorHandler__7JKRHeap = .sbss:0x80514EB4; // type:object size:0x4 scope:global align:4 data:4byte +sDefaultFillCheckFlag__7JKRHeap = .sbss:0x80514EB8; // type:object size:0x1 scope:global align:1 data:byte +mCodeStart__7JKRHeap = .sbss:0x80514EBC; // type:object size:0x4 scope:global align:4 data:4byte +mCodeEnd__7JKRHeap = .sbss:0x80514EC0; // type:object size:0x4 scope:global align:4 data:4byte +mUserRamStart__7JKRHeap = .sbss:0x80514EC4; // type:object size:0x4 scope:global align:4 data:4byte +mUserRamEnd__7JKRHeap = .sbss:0x80514EC8; // type:object size:0x4 scope:global align:4 data:4byte +mMemorySize__7JKRHeap = .sbss:0x80514ECC; // type:object size:0x4 scope:global align:4 data:4byte +bVerbose___Q27JKRHeap6TState = .sbss:0x80514ED0; // type:object size:0x1 scope:global align:1 data:byte +sManager__15JKRThreadSwitch = .sbss:0x80514ED8; // type:object size:0x4 scope:global align:4 data:4byte +sTotalCount__15JKRThreadSwitch = .sbss:0x80514EDC; // type:object size:0x4 scope:global align:4 data:4byte +sTotalStart__15JKRThreadSwitch = .sbss:0x80514EE0; // type:object size:0x8 scope:global align:8 data:4byte +sMessageLife__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sbss:0x80514EE8; // type:object size:0x4 scope:local align:4 data:4byte +sManager__17JUTConsoleManager = .sbss:0x80514EF0; // type:object size:0x4 scope:global align:4 data:4byte +sReportConsole = .sbss:0x80514EF4; // type:object size:0x4 scope:local align:4 data:4byte +sWarningConsole = .sbss:0x80514EF8; // type:object size:0x4 scope:local align:4 data:4byte +sDebugPrint__10JUTDbPrint = .sbss:0x80514F00; // type:object size:0x4 scope:global align:4 data:4byte +sDirectPrint__14JUTDirectPrint = .sbss:0x80514F08; // type:object size:0x4 scope:global align:4 data:4byte +sErrorManager__12JUTException = .sbss:0x80514F10; // type:object size:0x4 scope:global align:4 data:4byte +sPreUserCallback__12JUTException = .sbss:0x80514F14; // type:object size:0x4 scope:global align:4 data:4byte +sPostUserCallback__12JUTException = .sbss:0x80514F18; // type:object size:0x4 scope:global align:4 data:4byte +sConsoleBuffer__12JUTException = .sbss:0x80514F1C; // type:object size:0x4 scope:global align:4 data:4byte +sConsoleBufferSize__12JUTException = .sbss:0x80514F20; // type:object size:0x4 scope:global align:4 data:4byte +sConsole__12JUTException = .sbss:0x80514F24; // type:object size:0x4 scope:global align:4 data:4byte +msr__12JUTException = .sbss:0x80514F28; // type:object size:0x4 scope:global align:4 data:4byte +fpscr__12JUTException = .sbss:0x80514F2C; // type:object size:0x4 scope:global align:4 data:4byte +mListInitialized__10JUTGamePad = .sbss:0x80514F30; // type:object size:0x1 scope:global align:1 data:byte +mPadAssign__10JUTGamePad = .sbss:0x80514F34; // type:object size:0x4 scope:global align:4 data:byte +sSuppressPadReset__10JUTGamePad = .sbss:0x80514F38; // type:object size:0x4 scope:global align:4 data:4byte +sAnalogMode__10JUTGamePad = .sbss:0x80514F3C; // type:object size:0x4 scope:global align:4 data:4byte +sRumbleSupported__10JUTGamePad = .sbss:0x80514F40; // type:object size:0x4 scope:global align:4 data:4byte +mStatus__Q210JUTGamePad7CRumble = .sbss:0x80514F44; // type:object size:0x4 scope:global align:4 data:byte +mEnabled__Q210JUTGamePad7CRumble = .sbss:0x80514F48; // type:object size:0x4 scope:global align:4 data:4byte +sCallback__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514F4C; // type:object size:0x4 scope:global align:4 data:4byte +sCallbackArg__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514F50; // type:object size:0x4 scope:global align:4 data:4byte +sThreshold__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514F58; // type:object size:0x8 scope:global align:8 data:4byte +sResetSwitchPushing__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514F60; // type:object size:0x1 scope:global align:1 data:byte +sResetOccurred__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514F61; // type:object size:0x1 scope:global align:1 data:byte +sResetOccurredPort__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514F64; // type:object size:0x4 scope:global align:4 data:4byte +sInitiated__12JUTGraphFifo = .sbss:0x80514F68; // type:object size:0x1 scope:global align:1 data:byte +sCurrentFifo__12JUTGraphFifo = .sbss:0x80514F6C; // type:object size:0x4 scope:global align:4 data:4byte +mGpStatus__12JUTGraphFifo = .sbss:0x80514F70; // type:object size:0x5 scope:global align:4 +sManager__10JUTProcBar = .sbss:0x80514F78; // type:object size:0x4 scope:global align:4 data:4byte +cnt$2595 = .sbss:0x80514F7C; // type:object size:0x4 scope:local align:4 data:4byte +init$2596 = .sbss:0x80514F80; // type:object size:0x1 scope:local align:1 data:byte +cntUser$2644 = .sbss:0x80514F84; // type:object size:0x4 scope:local align:4 data:4byte +init$2645 = .sbss:0x80514F88; // type:object size:0x1 scope:local align:1 data:byte +spAboutEncoding___10JUTRomFont = .sbss:0x80514F90; // type:object size:0x4 scope:global align:4 data:4byte +spFontHeader___10JUTRomFont = .sbss:0x80514F94; // type:object size:0x4 scope:global align:4 data:4byte +suFontHeaderRefered___10JUTRomFont = .sbss:0x80514F98; // type:object size:0x4 scope:global align:4 data:4byte +sManager__8JUTVideo = .sbss:0x80514FA0; // type:object size:0x4 scope:global align:4 data:4byte +sVideoLastTick__8JUTVideo = .sbss:0x80514FA4; // type:object size:0x4 scope:global align:4 data:4byte +sVideoInterval__8JUTVideo = .sbss:0x80514FA8; // type:object size:0x4 scope:global align:4 data:4byte +sDrawWaiting = .sbss:0x80514FAC; // type:object size:0x1 scope:global align:1 data:byte +frameBuffer$2452 = .sbss:0x80514FB0; // type:object size:0x4 scope:local align:4 data:4byte +init$2453 = .sbss:0x80514FB4; // type:object size:0x1 scope:local align:1 data:byte +sManager__6JUTXfb = .sbss:0x80514FB8; // type:object size:0x4 scope:global align:4 data:4byte +mStrBuff__8J2DPrint = .sbss:0x80514FC0; // type:object size:0x4 scope:global align:4 data:4byte +mHeapFlag__8J2DPrint = .sbss:0x80514FC4; // type:object size:0x1 scope:global align:1 data:byte +mStrBuffSize__8J2DPrint = .sbss:0x80514FC8; // type:object size:0x4 scope:global align:4 data:4byte +mBufferNotEnough__8J2DPrint = .sbss:0x80514FCC; // type:object size:0x1 scope:global align:1 data:byte +mDataManage__9J2DScreen = .sbss:0x80514FD0; // type:object size:0x4 scope:global align:4 data:4byte +TextureNameConnect__11J2DBloSaver = .sbss:0x80514FD8; // type:object size:0x4 scope:global align:4 data:4byte +j3dDefaultViewNo = .sbss:0x80514FE0; // type:object size:0x4 scope:global align:4 +sInterruptFlag__17J3DDisplayListObj = .sbss:0x80514FE8; // type:object size:0x4 scope:global align:4 data:4byte +sOldVcdVatCmd__8J3DShape = .sbss:0x80514FF0; // type:object size:0x4 scope:global align:4 data:4byte +sEnvelopeFlag__8J3DShape = .sbss:0x80514FF4; // type:object size:0x1 scope:global align:1 data:byte +sInterruptFlag$1728 = .sbss:0x80514FF8; // type:object size:0x4 scope:local align:4 data:4byte +init$1729 = .sbss:0x80514FFC; // type:object size:0x1 scope:local align:1 data:byte +entryNum__13J3DDrawBuffer = .sbss:0x80515000; // type:object size:0x4 scope:global align:4 data:4byte +mMtxBuffer__10J3DMtxCalc = .sbss:0x80515008; // type:object size:0x4 scope:global align:4 data:4byte +mJoint__10J3DMtxCalc = .sbss:0x8051500C; // type:object size:0x4 scope:global align:4 data:4byte +mCurrentMtxCalc__8J3DJoint = .sbss:0x80515010; // type:object size:0x4 scope:global align:4 data:4byte +SizeOfJ3DColorBlockLightOffLoad = .sbss:0x80515018; // type:object size:0x4 scope:local align:4 data:4byte +SizeOfJ3DColorBlockAmbientOnLoad = .sbss:0x8051501C; // type:object size:0x4 scope:local align:4 data:4byte +sInterruptFlag$1509 = .sbss:0x80515020; // type:object size:0x4 scope:local align:4 data:4byte +init$1510 = .sbss:0x80515024; // type:object size:0x1 scope:local align:1 data:byte +sCurrentPipeline__11J3DShapeMtx = .sbss:0x80515028; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentScaleFlag__11J3DShapeMtx = .sbss:0x8051502C; // type:object size:0x4 scope:global align:4 data:4byte +sNBTFlag__11J3DShapeMtx = .sbss:0x80515030; // type:object size:0x1 scope:global align:1 data:byte +sLODFlag__11J3DShapeMtx = .sbss:0x80515031; // type:object size:0x1 scope:global align:1 data:byte +sTexMtxLoadType__11J3DShapeMtx = .sbss:0x80515034; // type:object size:0x4 scope:global align:4 data:4byte +sMtxPtrTbl__21J3DShapeMtxConcatView = .sbss:0x80515038; // type:object size:0x8 scope:global align:4 data:4byte +sTexGenBlock__17J3DDifferedTexMtx = .sbss:0x80515040; // type:object size:0x4 scope:global align:4 data:4byte +sTexMtxObj__17J3DDifferedTexMtx = .sbss:0x80515044; // type:object size:0x4 scope:global align:4 data:4byte +rootHeap__9JFWSystem = .sbss:0x80515048; // type:object size:0x4 scope:global align:4 data:4byte +systemHeap__9JFWSystem = .sbss:0x8051504C; // type:object size:0x4 scope:global align:4 data:4byte +mainThread__9JFWSystem = .sbss:0x80515050; // type:object size:0x4 scope:global align:4 data:4byte +debugPrint__9JFWSystem = .sbss:0x80515054; // type:object size:0x4 scope:global align:4 data:4byte +systemFont__9JFWSystem = .sbss:0x80515058; // type:object size:0x4 scope:global align:4 data:4byte +systemConsoleManager__9JFWSystem = .sbss:0x8051505C; // type:object size:0x4 scope:global align:4 data:4byte +systemConsole__9JFWSystem = .sbss:0x80515060; // type:object size:0x4 scope:global align:4 data:4byte +sInitCalled__9JFWSystem = .sbss:0x80515064; // type:object size:0x1 scope:global align:1 data:byte +sManager__10JFWDisplay = .sbss:0x80515068; // type:object size:0x4 scope:global align:4 data:4byte +prevFrame$3378 = .sbss:0x8051506C; // type:object size:0x4 scope:local align:4 data:4byte +init$3379 = .sbss:0x80515070; // type:object size:0x1 scope:local align:1 data:byte +nextTick$3423 = .sbss:0x80515078; // type:object size:0x8 scope:local align:8 data:4byte +init$3424 = .sbss:0x80515080; // type:object size:0x1 scope:local align:1 data:byte +nextCount$3431 = .sbss:0x80515084; // type:object size:0x4 scope:local align:4 data:4byte +init$3432 = .sbss:0x80515088; // type:object size:0x1 scope:local align:1 data:byte +sUsedHeapSize__11JASWSParser = .sbss:0x80515090; // type:object size:0x4 scope:local align:4 data:4byte +sTableSize__10JASBankMgr = .sbss:0x80515098; // type:object size:0x4 scope:local align:4 data:4byte +sBankArray__10JASBankMgr = .sbss:0x8051509C; // type:object size:0x4 scope:local align:4 data:4byte +sVir2PhyTable__10JASBankMgr = .sbss:0x805150A0; // type:object size:0x4 scope:local align:4 data:4byte +sInstance__123JASSingletonHolder<62JASMemPool<10JASChannel,Q217JASThreadingModel14SingleThreaded>,Q217JASCreationPolicy15NewFromRootHeap> = .sbss:0x805150A4; // type:object size:0x4 scope:weak align:4 data:4byte +sUsedHeapSize__12JASBNKParser = .sbss:0x805150A8; // type:object size:0x4 scope:local align:4 data:4byte +oscp$640 = .sbss:0x805150B0; // type:object size:0x4 scope:local align:4 data:4byte +init$641 = .sbss:0x805150B4; // type:object size:0x1 scope:local align:1 data:byte +init$644 = .sbss:0x805150B8; // type:object size:0x1 scope:local align:1 data:byte +oRandom$643 = .sbss:0x805150BC; // type:object size:0x4 scope:local align:4 data:4byte +sAramHeap__16JASWaveArcLoader = .sbss:0x805150C0; // type:object size:0x4 scope:local align:4 data:4byte +sCurrentHeap__11JASWaveBank = .sbss:0x805150C8; // type:object size:0x4 scope:global align:4 data:4byte +sTableSize__14JASWaveBankMgr = .sbss:0x805150D0; // type:object size:0x4 scope:local align:4 data:4byte +sWaveBank__14JASWaveBankMgr = .sbss:0x805150D4; // type:object size:0x4 scope:local align:4 data:4byte +sCurrentHeap__7JASBank = .sbss:0x805150D8; // type:object size:0x4 scope:global align:4 data:4byte +sV0$663 = .sbss:0x805150E0; // type:object size:0x4 scope:local align:4 data:4byte +init$664 = .sbss:0x805150E4; // type:object size:0x1 scope:local align:1 data:byte +sV1$666 = .sbss:0x805150E8; // type:object size:0x4 scope:local align:4 data:4byte +init$667 = .sbss:0x805150EC; // type:object size:0x1 scope:local align:1 data:byte +sCallBackFunc__8JASTrack = .sbss:0x805150F0; // type:object size:0x4 scope:global align:4 data:4byte +sParser__8JASTrack = .sbss:0x805150F4; // type:object size:0x1 scope:global align:4 +sFreeList__8JASTrack = .sbss:0x805150F8; // type:object size:0x4 scope:global align:4 data:4byte +sFreeListEnd__8JASTrack = .sbss:0x805150FC; // type:object size:0x4 scope:global align:4 data:4byte +sDspChannels__13JASDSPChannel = .sbss:0x80515100; // type:object size:0x4 scope:global align:4 data:4byte +CH_BUF__6JASDsp = .sbss:0x80515108; // type:object size:0x4 scope:local align:4 data:4byte +FX_BUF__6JASDsp = .sbss:0x8051510C; // type:object size:0x4 scope:local align:4 data:4byte +sDSPVolume__6JASDsp = .sbss:0x80515110; // type:object size:0x4 scope:local align:4 data:float +first$389 = .sbss:0x80515114; // type:object size:0x1 scope:local align:1 data:byte +init$390 = .sbss:0x80515115; // type:object size:0x1 scope:local align:1 data:byte +sAudioThread__14JASAudioThread = .sbss:0x80515118; // type:object size:0x4 scope:global align:4 data:4byte +sThreadQueue__14JASAudioThread = .sbss:0x8051511C; // type:object size:0x8 scope:global align:4 +sVFrameCounter__14JASAudioThread = .sbss:0x80515124; // type:object size:0x4 scope:global align:4 data:4byte +snIntCount__14JASAudioThread = .sbss:0x80515128; // type:object size:0x4 scope:global align:4 data:4byte +sbPauseFlag__14JASAudioThread = .sbss:0x8051512C; // type:object size:0x1 scope:global align:1 data:byte +sThread__6JASDvd = .sbss:0x80515130; // type:object size:0x4 scope:local align:4 data:4byte +JASDram = .sbss:0x80515138; // type:object size:0x4 scope:global align:4 data:4byte +sAramBase__9JASKernel = .sbss:0x8051513C; // type:object size:0x4 scope:local align:4 data:4byte +sSystemHeap__9JASKernel = .sbss:0x80515140; // type:object size:0x4 scope:local align:4 data:4byte +sCommandHeap__9JASKernel = .sbss:0x80515144; // type:object size:0x4 scope:local align:4 data:4byte +sProbes = .sbss:0x80515148; // type:object size:0x4 scope:local align:4 data:4byte +sBuffer = .sbss:0x80515150; // type:object size:0x4 scope:local align:4 data:4byte +sLineMax = .sbss:0x80515154; // type:object size:0x4 scope:local align:4 data:4byte +sLineCount = .sbss:0x80515158; // type:object size:0x4 scope:local align:4 data:4byte +sTop = .sbss:0x8051515C; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacBuffer__9JASDriver = .sbss:0x80515160; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacWriteBuffer__9JASDriver = .sbss:0x80515164; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacReadBuffer__9JASDriver = .sbss:0x80515168; // type:object size:0x4 scope:local align:4 data:4byte +sDspStatus__9JASDriver = .sbss:0x8051516C; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacCallback__9JASDriver = .sbss:0x80515170; // type:object size:0x4 scope:local align:4 data:4byte +lastRspMadep__9JASDriver = .sbss:0x80515174; // type:object size:0x4 scope:local align:4 data:4byte +dacCallbackFunc__9JASDriver = .sbss:0x80515178; // type:object size:0x4 scope:local align:4 data:4byte +extMixCallback__9JASDriver = .sbss:0x8051517C; // type:object size:0x4 scope:local align:4 data:4byte +sOutputRate__9JASDriver = .sbss:0x80515180; // type:object size:0x4 scope:local align:4 data:4byte +dacp$428 = .sbss:0x80515184; // type:object size:0x4 scope:local align:4 data:4byte +init$429 = .sbss:0x80515188; // type:object size:0x1 scope:local align:1 data:byte +old_time$446 = .sbss:0x8051518C; // type:object size:0x4 scope:local align:4 data:4byte +init$447 = .sbss:0x80515190; // type:object size:0x1 scope:local align:1 data:byte +sLoadThread__13JASAramStream = .sbss:0x80515198; // type:object size:0x4 scope:global align:4 data:4byte +sReadBuffer__13JASAramStream = .sbss:0x8051519C; // type:object size:0x4 scope:global align:4 data:4byte +sBlockSize__13JASAramStream = .sbss:0x805151A0; // type:object size:0x4 scope:global align:4 data:4byte +sChannelMax__13JASAramStream = .sbss:0x805151A4; // type:object size:0x4 scope:global align:4 data:4byte +sSystemPauseFlag__13JASAramStream = .sbss:0x805151A8; // type:object size:0x1 scope:global align:1 data:byte +sFatalErrorFlag__13JASAramStream = .sbss:0x805151A9; // type:object size:0x1 scope:global align:1 data:byte +flag = .sbss:0x805151B0; // type:object size:0x4 scope:local align:4 data:4byte +taskreadp = .sbss:0x805151B8; // type:object size:0x4 scope:local align:4 data:4byte +taskwritep = .sbss:0x805151BC; // type:object size:0x4 scope:local align:4 data:4byte +DSP_prior_yield = .sbss:0x805151C0; // type:object size:0x1 scope:local align:1 data:byte +AUDIO_UPDATE_REQUEST = .sbss:0x805151C4; // type:object size:0x4 scope:local align:4 data:4byte +DSP_prior_task = .sbss:0x805151C8; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeBnk__Q27JAInter8BankWave = .sbss:0x805151D0; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeWs__Q27JAInter8BankWave = .sbss:0x805151D4; // type:object size:0x4 scope:global align:4 data:4byte +wsGroupNumber__Q27JAInter8BankWave = .sbss:0x805151D8; // type:object size:0x4 scope:global align:4 data:4byte +wsLoadStatus__Q27JAInter8BankWave = .sbss:0x805151DC; // type:object size:0x4 scope:global align:4 data:4byte +wsMax__Q27JAInter8BankWave = .sbss:0x805151E0; // type:object size:0x4 scope:global align:4 data:4byte +msBasic__8JAIBasic = .sbss:0x805151E8; // type:object size:0x4 scope:global align:4 data:4byte +msCurrentHeap__8JAIBasic = .sbss:0x805151EC; // type:object size:0x4 scope:global align:4 data:4byte +msStopMode__8JAIBasic = .sbss:0x805151F0; // type:object size:0x1 scope:global align:1 data:byte +msAudioStopTime__8JAIBasic = .sbss:0x805151F4; // type:object size:0x4 scope:global align:4 data:4byte +msDspLevel__8JAIBasic = .sbss:0x805151F8; // type:object size:0x4 scope:global align:4 data:float +msAutoLevel__8JAIBasic = .sbss:0x805151FC; // type:object size:0x4 scope:global align:4 data:float +msAutoDif__8JAIBasic = .sbss:0x80515200; // type:object size:0x4 scope:global align:4 data:float +msDspDif__8JAIBasic = .sbss:0x80515204; // type:object size:0x4 scope:global align:4 data:float +random__Q27JAInter5Const = .sbss:0x80515208; // type:object size:0x4 scope:global align:4 data:4byte +deadObjectFreePointer__Q27JAInter14DummyObjectMgr = .sbss:0x80515210; // type:object size:0x4 scope:global align:4 data:4byte +deadObjectUsedPointer__Q27JAInter14DummyObjectMgr = .sbss:0x80515214; // type:object size:0x4 scope:global align:4 data:4byte +deadObjectObject__Q27JAInter14DummyObjectMgr = .sbss:0x80515218; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeFxScene__Q27JAInter2Fx = .sbss:0x80515220; // type:object size:0x4 scope:global align:4 data:4byte +mSceneMax__Q27JAInter2Fx = .sbss:0x80515224; // type:object size:0x1 scope:global align:1 data:byte +mBufferSizeMax__Q27JAInter2Fx = .sbss:0x80515228; // type:object size:0x4 scope:global align:4 data:4byte +mBufferPointer__Q27JAInter2Fx = .sbss:0x8051522C; // type:object size:0x4 scope:global align:4 data:4byte +mFxconfigTable__Q27JAInter2Fx = .sbss:0x80515230; // type:object size:0x4 scope:global align:4 data:4byte +seDefaultFx__18JAIGlobalParameter = .sbss:0x80515238; // type:object size:0x2 scope:global align:2 data:2byte +interfaceHeapSize__18JAIGlobalParameter = .sbss:0x8051523C; // type:object size:0x4 scope:global align:4 data:4byte +minDistanceVolume__18JAIGlobalParameter = .sbss:0x80515240; // type:object size:0x4 scope:global align:4 data:float +aafPointer__Q27JAInter8InitData = .sbss:0x80515248; // type:object size:0x4 scope:global align:4 data:4byte +seTrackUpdate__Q27JAInter5SeMgr = .sbss:0x80515250; // type:object size:0x4 scope:global align:4 data:4byte +categoryInfoTable__Q27JAInter5SeMgr = .sbss:0x80515254; // type:object size:0x4 scope:global align:4 data:4byte +sePlaySound__Q27JAInter5SeMgr = .sbss:0x80515258; // type:object size:0x4 scope:global align:4 data:4byte +seRegist__Q27JAInter5SeMgr = .sbss:0x8051525C; // type:object size:0x4 scope:global align:4 data:4byte +seHandle__Q27JAInter5SeMgr = .sbss:0x80515260; // type:object size:0x4 scope:global align:4 data:4byte +seScene__Q27JAInter5SeMgr = .sbss:0x80515264; // type:object size:0x1 scope:global align:1 data:byte +seqMuteFlagFromSe__Q27JAInter5SeMgr = .sbss:0x80515268; // type:object size:0x4 scope:global align:4 data:4byte +seCategoryVolume__Q27JAInter5SeMgr = .sbss:0x8051526C; // type:object size:0x4 scope:global align:4 data:4byte +seEntryCancel__Q27JAInter5SeMgr = .sbss:0x80515270; // type:object size:0x4 scope:global align:4 data:4byte +sAutoHeap__Q27JAInter7HeapMgr = .sbss:0x80515278; // type:object size:0x4 scope:local align:4 data:4byte +sStayHeap__Q27JAInter7HeapMgr = .sbss:0x8051527C; // type:object size:0x4 scope:local align:4 data:4byte +sAutoHeapCount__Q27JAInter7HeapMgr = .sbss:0x80515280; // type:object size:0x4 scope:local align:4 data:4byte +sStayHeapCount__Q27JAInter7HeapMgr = .sbss:0x80515284; // type:object size:0x4 scope:local align:4 data:4byte +seqTrackInfo__Q27JAInter11SequenceMgr = .sbss:0x80515288; // type:object size:0x4 scope:global align:4 data:4byte +FixSeqBufPointer__Q27JAInter11SequenceMgr = .sbss:0x8051528C; // type:object size:0x4 scope:global align:4 data:4byte +seqControl__Q27JAInter11SequenceMgr = .sbss:0x80515290; // type:object size:0x8 scope:global align:4 data:4byte +arcPointer__Q27JAInter11SequenceMgr = .sbss:0x80515298; // type:object size:0x4 scope:global align:4 data:4byte +customHeapCallback__Q27JAInter11SequenceMgr = .sbss:0x8051529C; // type:object size:0x4 scope:global align:4 data:4byte +_port$2234 = .sbss:0x805152A0; // type:object size:0x2 scope:local align:2 data:2byte +_port$2291 = .sbss:0x805152A2; // type:object size:0x2 scope:local align:2 data:2byte +init$2292 = .sbss:0x805152A4; // type:object size:0x1 scope:local align:1 data:byte +mVersion__Q27JAInter10SoundTable = .sbss:0x805152A8; // type:object size:0x1 scope:global align:1 data:byte +mCategotyMax__Q27JAInter10SoundTable = .sbss:0x805152A9; // type:object size:0x1 scope:global align:1 data:byte +mSoundMax__Q27JAInter10SoundTable = .sbss:0x805152AC; // type:object size:0x4 scope:global align:4 data:4byte +mDatasize__Q27JAInter10SoundTable = .sbss:0x805152B0; // type:object size:0x4 scope:global align:4 data:4byte +mPointerCategory__Q27JAInter10SoundTable = .sbss:0x805152B4; // type:object size:0x4 scope:global align:4 data:4byte +mAddress__Q27JAInter10SoundTable = .sbss:0x805152B8; // type:object size:0x4 scope:global align:4 data:4byte +flags__Q27JAInter9StreamMgr = .sbss:0x805152C0; // type:object size:0x2 scope:global align:4 data:byte +prepareSw__Q27JAInter9StreamMgr = .sbss:0x805152C2; // type:object size:0x1 scope:global align:1 data:byte +prepareFlag__Q27JAInter9StreamMgr = .sbss:0x805152C3; // type:object size:0x1 scope:global align:1 data:byte +externalAram__Q27JAInter9StreamMgr = .sbss:0x805152C4; // type:object size:0x1 scope:global align:1 data:byte +finishFlag__Q27JAInter9StreamMgr = .sbss:0x805152C5; // type:object size:0x1 scope:global align:1 data:byte +streamUpdate__Q27JAInter9StreamMgr = .sbss:0x805152C8; // type:object size:0x4 scope:global align:4 data:4byte +streamList__Q27JAInter9StreamMgr = .sbss:0x805152CC; // type:object size:0x4 scope:global align:4 data:4byte +streamSound__Q27JAInter9StreamMgr = .sbss:0x805152D0; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeStrm__Q27JAInter9StreamMgr = .sbss:0x805152D4; // type:object size:0x4 scope:global align:4 data:4byte +streamSystem__Q27JAInter9StreamMgr = .sbss:0x805152D8; // type:object size:0x4 scope:global align:4 data:4byte +systemStatus__Q27JAInter9StreamMgr = .sbss:0x805152DC; // type:object size:0x4 scope:global align:4 data:4byte +controlStatus__Q27JAInter9StreamMgr = .sbss:0x805152E0; // type:object size:0x4 scope:global align:4 data:4byte +aramBufferHeap__Q27JAInter9StreamMgr = .sbss:0x805152E4; // type:object size:0x4 scope:global align:4 data:4byte +aramParentHeap__Q27JAInter9StreamMgr = .sbss:0x805152E8; // type:object size:0x4 scope:global align:4 data:4byte +allocCallback__Q27JAInter9StreamMgr = .sbss:0x805152EC; // type:object size:0x4 scope:local align:4 data:4byte +deallocCallback__Q27JAInter9StreamMgr = .sbss:0x805152F0; // type:object size:0x4 scope:local align:4 data:4byte +externalAramCallback__Q27JAInter9StreamMgr = .sbss:0x805152F4; // type:object size:0x4 scope:local align:4 data:4byte +dataFileNumber__Q27JAInter9StreamMgr = .sbss:0x805152F8; // type:object size:0x4 scope:global align:4 data:4byte +mgrCallback__Q27JAInter9StreamMgr = .sbss:0x805152FC; // type:object size:0x4 scope:global align:4 data:4byte +init$484 = .sbss:0x80515300; // type:object size:0x1 scope:local align:1 data:byte +oRandom$483 = .sbss:0x80515304; // type:object size:0x4 scope:local align:4 data:4byte +gTRKInputPendingPtr = .sbss:0x80515308; // type:object size:0x4 scope:global align:4 data:4byte +gIsInitialized = .sbss:0x80515310; // type:object size:0x4 scope:local align:4 data:4byte +gIsInitialized = .sbss:0x80515318; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x80515320; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x80515328; // type:object size:0x4 scope:global align:4 data:4byte +__atexit_curr_func = .sbss:0x8051532C; // type:object size:0x4 scope:global align:4 data:4byte +__stdio_exit = .sbss:0x80515330; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x80515334; // type:object size:0x4 scope:global align:4 data:4byte +init$193 = .sbss:0x80515338; // type:object size:0x1 scope:local align:1 data:byte +errno = .sbss:0x80515340; // type:object size:0x4 scope:global align:4 data:4byte +initialized$60 = .sbss:0x80515348; // type:object size:0x4 scope:local align:4 data:4byte +zero = .sbss:0x80515350; // type:object size:0x8 scope:local align:8 data:double +zero = .sbss:0x80515358; // type:object size:0x8 scope:local align:8 data:double +MTRCallback = .sbss:0x80515360; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x80515364; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x80515368; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x8051536C; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x80515370; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x80515374; // type:object size:0x1 scope:local align:1 data:byte +IsInitialized = .sbss:0x80515378; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x8051537C; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x80515380; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x80515384; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x8051538C; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x80515390; // type:object size:0x4 scope:local align:4 data:4byte +PositionCallback = .sbss:0x80515394; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x80515398; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x8051539C; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x8051539E; // type:object size:0x2 scope:local align:2 data:2byte +changeMode = .sbss:0x805153A0; // type:object size:0x4 scope:local align:4 data:4byte +changed = .sbss:0x805153A8; // type:object size:0x8 scope:local align:8 data:4byte +shdwChangeMode = .sbss:0x805153B0; // type:object size:0x4 scope:local align:4 data:4byte +shdwChanged = .sbss:0x805153B8; // type:object size:0x8 scope:local align:8 data:4byte +CurrTiming = .sbss:0x805153C0; // type:object size:0x4 scope:local align:4 data:4byte +CurrTvMode = .sbss:0x805153C4; // type:object size:0x4 scope:local align:4 data:4byte +NextBufAddr = .sbss:0x805153C8; // type:object size:0x4 scope:local align:4 data:4byte +CurrBufAddr = .sbss:0x805153CC; // type:object size:0x4 scope:local align:4 data:4byte +FBSet = .sbss:0x805153D0; // type:object size:0x4 scope:local align:4 data:4byte +message$343 = .sbss:0x805153D4; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Callback = .sbss:0x805153D8; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x805153DC; // type:object size:0x4 scope:local align:4 data:4byte +__AR_InternalSize = .sbss:0x805153E0; // type:object size:0x4 scope:local align:4 data:4byte +__AR_ExpansionSize = .sbss:0x805153E4; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x805153E8; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x805153EC; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x805153F0; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x805153F4; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x805153F8; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x805153FC; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x80515400; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x80515404; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x80515408; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x8051540C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x80515410; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x80515414; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x80515418; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x8051541C; // type:object size:0x4 scope:local align:4 data:4byte +__CARDEncode = .sbss:0x80515420; // type:object size:0x2 scope:local align:2 data:2byte +__DBInterface = .sbss:0x80515428; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x8051542C; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_init_flag = .sbss:0x80515430; // type:object size:0x4 scope:local align:4 data:4byte +__DSP_tmp_task = .sbss:0x80515438; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_last_task = .sbss:0x8051543C; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_first_task = .sbss:0x80515440; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_curr_task = .sbss:0x80515444; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x80515448; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x8051544C; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x80515450; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x80515454; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x80515458; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x80515460; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x80515464; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x80515468; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x8051546C; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x80515470; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x80515478; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x80515480; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x80515488; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x8051548C; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x80515490; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x80515494; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x80515498; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x8051549C; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x805154A0; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x805154A4; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x805154A8; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x805154B0; // type:object size:0x4 scope:local align:4 data:4byte +IDShouldBe = .sbss:0x805154B4; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x805154B8; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x805154BC; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x805154C0; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x805154C4; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x805154C8; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x805154CC; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x805154D0; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x805154D4; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x805154D8; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x805154DC; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x805154E0; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x805154E4; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x805154E8; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x805154EC; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x805154F0; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x805154F4; // type:object size:0x4 scope:global align:4 data:4byte +FatalFunc = .sbss:0x805154F8; // type:object size:0x4 scope:local align:4 data:4byte +status = .sbss:0x80515500; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x80515504; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x80515508; // type:object size:0x4 scope:local align:4 data:4byte +IDSerialPort1 = .sbss:0x80515510; // type:object size:0x4 scope:local align:4 data:4byte +Chan = .sbss:0x80515518; // type:object size:0x4 scope:local align:4 data:4byte +Dev = .sbss:0x8051551C; // type:object size:0x4 scope:local align:4 data:4byte +Enabled = .sbss:0x80515520; // type:object size:0x4 scope:local align:4 data:4byte +BarnacleEnabled = .sbss:0x80515524; // type:object size:0x4 scope:local align:4 data:4byte +__GDCurrentDL = .sbss:0x80515528; // type:object size:0x4 scope:global align:4 data:4byte +overflowcb = .sbss:0x8051552C; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x80515530; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x80515534; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x80515538; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x8051553C; // type:object size:0x4 scope:global align:4 data:4byte +peCount$35 = .sbss:0x80515540; // type:object size:0x4 scope:local align:4 data:4byte +time$36 = .sbss:0x80515548; // type:object size:0x8 scope:local align:8 data:4byte +calledOnce$37 = .sbss:0x80515550; // type:object size:0x4 scope:local align:4 data:4byte +resetFuncRegistered$70 = .sbss:0x80515554; // type:object size:0x4 scope:local align:4 data:4byte +CPUFifo = .sbss:0x80515558; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x8051555C; // type:object size:0x4 scope:local align:4 data:4byte +__GXCurrentThread = .sbss:0x80515560; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x80515564; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x80515568; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x8051556C; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x80515570; // type:object size:0x4 scope:local align:4 data:4byte +TokenCB = .sbss:0x80515578; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x8051557C; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x80515580; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x80515584; // type:object size:0x8 scope:local align:4 +BootInfo = .sbss:0x80515590; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x80515594; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlagHolder = .sbss:0x80515598; // type:object size:0x4 scope:local align:4 data:4byte +__OSIsGcam = .sbss:0x8051559C; // type:object size:0x4 scope:weak align:4 data:4byte +ZeroF = .sbss:0x805155A0; // type:object size:0x8 scope:local align:8 data:double +ZeroPS = .sbss:0x805155A8; // type:object size:0x8 scope:local align:4 +AreWeInitialized = .sbss:0x805155B0; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x805155B4; // type:object size:0x4 scope:local align:4 data:4byte +__OSSavedRegionEnd = .sbss:0x805155B8; // type:object size:0x4 scope:global align:4 data:4byte +__OSSavedRegionStart = .sbss:0x805155BC; // type:object size:0x4 scope:global align:4 data:4byte +__OSInIPL = .sbss:0x805155C0; // type:object size:0x4 scope:global align:4 data:4byte +__OSStartTime = .sbss:0x805155C8; // type:object size:0x8 scope:global align:8 data:4byte +AlarmQueue = .sbss:0x805155D0; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x805155D8; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x805155DC; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x805155E0; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x805155E4; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x805155E8; // type:object size:0x4 scope:local align:4 data:4byte +FontData = .sbss:0x805155F0; // type:object size:0x4 scope:local align:4 data:4byte +SheetImage = .sbss:0x805155F4; // type:object size:0x4 scope:local align:4 data:4byte +WidthTable = .sbss:0x805155F8; // type:object size:0x4 scope:local align:4 data:4byte +CharsInSheet = .sbss:0x805155FC; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x80515600; // type:object size:0x4 scope:local align:4 data:4byte +__OSLastInterruptSrr0 = .sbss:0x80515604; // type:object size:0x4 scope:global align:4 data:4byte +__OSLastInterrupt = .sbss:0x80515608; // type:object size:0x2 scope:global align:2 data:2byte +__OSLastInterruptTime = .sbss:0x80515610; // type:object size:0x8 scope:global align:8 data:4byte +SaveStart = .sbss:0x80515618; // type:object size:0x4 scope:local align:4 data:4byte +SaveEnd = .sbss:0x8051561C; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x80515620; // type:object size:0x4 scope:local align:4 data:4byte +ResetFunctionQueue = .sbss:0x80515628; // type:object size:0x8 scope:local align:4 data:4byte +bootThisDol = .sbss:0x80515630; // type:object size:0x4 scope:local align:4 data:4byte +ResetCallback = .sbss:0x80515638; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x8051563C; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x80515640; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x80515648; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x80515650; // type:object size:0x8 scope:local align:8 data:4byte +RunQueueBits = .sbss:0x80515658; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x8051565C; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x80515660; // type:object size:0x4 scope:local align:4 data:4byte +Debug_BBA = .sbss:0x80515668; // type:object size:0x1 scope:local align:1 data:byte +Initialized = .sbss:0x80515670; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x80515674; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x80515678; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x8051567C; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x80515680; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x80515684; // type:object size:0x4 scope:local align:4 data:4byte +PendingBits = .sbss:0x80515688; // type:object size:0x4 scope:local align:4 data:4byte +BarrelBits = .sbss:0x8051568C; // type:object size:0x4 scope:local align:4 data:4byte +SamplingCallback = .sbss:0x80515690; // type:object size:0x4 scope:local align:4 data:4byte +recalibrated$388 = .sbss:0x80515694; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x80515698; // type:object size:0x4 scope:global align:4 data:4byte +cmdTypeAndStatus$78 = .sbss:0x805156A0; // type:object size:0x4 scope:local align:4 +cmdTypeAndStatus$372 = .sbss:0x805156A4; // type:object size:0x4 scope:local align:4 +__PADFixBits = .sbss:0x805156A8; // type:object size:0x4 scope:global align:4 data:4byte +SamplingRate = .sbss:0x805156B0; // type:object size:0x4 scope:local align:4 data:4byte +__AIS_Callback = .sbss:0x805156B8; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x805156BC; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x805156C0; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x805156C4; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x805156C8; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Active = .sbss:0x805156CC; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x805156D0; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x805156D8; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x805156E0; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x805156E8; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x805156F0; // type:object size:0x8 scope:local align:8 data:4byte +Ydchuff = .sbss:0x80515700; // type:object size:0x4 scope:local align:32 data:4byte +Udchuff = .sbss:0x80515720; // type:object size:0x4 scope:local align:32 data:4byte +Vdchuff = .sbss:0x80515740; // type:object size:0x4 scope:local align:32 data:4byte +Yachuff = .sbss:0x80515760; // type:object size:0x4 scope:local align:32 data:4byte +Uachuff = .sbss:0x80515780; // type:object size:0x4 scope:local align:32 data:4byte +Vachuff = .sbss:0x805157A0; // type:object size:0x4 scope:local align:32 data:4byte +__THPHuffmanBits = .sbss:0x805157A4; // type:object size:0x4 scope:local align:4 data:4byte +__THPHuffmanSizeTab = .sbss:0x805157A8; // type:object size:0x4 scope:local align:4 data:4byte +__THPHuffmanCodeTab = .sbss:0x805157AC; // type:object size:0x4 scope:local align:4 data:4byte +Gbase = .sbss:0x805157C0; // type:object size:0x4 scope:local align:32 data:4byte +Gwid = .sbss:0x805157E0; // type:object size:0x4 scope:local align:32 data:4byte +Gq = .sbss:0x80515800; // type:object size:0x4 scope:local align:32 data:4byte +__THPOldGQR5 = .sbss:0x80515804; // type:object size:0x4 scope:local align:4 data:4byte +__THPOldGQR6 = .sbss:0x80515808; // type:object size:0x4 scope:local align:4 data:4byte +__THPWorkArea = .sbss:0x8051580C; // type:object size:0x4 scope:local align:4 data:4byte +__THPInfo = .sbss:0x80515810; // type:object size:0x4 scope:local align:4 data:4byte +__THPInitFlag = .sbss:0x80515814; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x80515818; // type:object size:0x4 scope:local align:4 data:4byte +__GBAReset = .sbss:0x8051581C; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515820; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515824; // type:object size:0x4 scope:local align:4 data:float +gParmArc__4Game = .sbss:0x80515828; // type:object size:0x4 scope:global align:4 data:4byte +sInstance__Q28PSSystem24ArcMgr = .sbss:0x8051582C; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem39SingletonBase = .sbss:0x80515830; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem34SingletonBase = .sbss:0x80515834; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem34SingletonBase = .sbss:0x80515838; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem28SingletonBase = .sbss:0x8051583C; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem38SingletonBase = .sbss:0x80515840; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem49SingletonBase = .sbss:0x80515844; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem30SingletonBase = .sbss:0x80515848; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem39SingletonBase = .sbss:0x8051584C; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem42SingletonBase = .sbss:0x80515850; // type:object size:0x4 scope:weak align:4 data:4byte +farmMgr__Q24Game4Farm = .sbss:0x80515858; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentObj__Q34Game8Pelplant3Obj = .sbss:0x8051585C; // type:object size:0x4 scope:global align:4 data:4byte +generalEnemyMgr__4Game = .sbss:0x80515860; // type:object size:0x4 scope:global align:4 data:4byte +mCullCount__Q24Game15GeneralEnemyMgr = .sbss:0x80515864; // type:object size:0x4 scope:global align:4 data:4byte +mTotalCount__Q24Game15GeneralEnemyMgr = .sbss:0x80515868; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515870; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515874; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515878; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051587C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515880; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515884; // type:object size:0x4 scope:local align:4 data:float +lifeGaugeMgr = .sbss:0x80515888; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515890; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515894; // type:object size:0x4 scope:local align:4 data:float +carryInfoMgr = .sbss:0x80515898; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158A0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158A4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805158A8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158AC; // type:object size:0x4 scope:local align:4 data:float +sOwnerEnemy__Q34Game10EnemyStone8DrawInfo = .sbss:0x805158B0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158BC; // type:object size:0x4 scope:local align:4 data:float +sBlendLinearFun__Q24Game22EnemyBlendAnimatorBase = .sbss:0x805158C0; // type:object size:0x4 scope:global align:4 data:4byte +sBlendQuadraticFun__Q24Game22EnemyBlendAnimatorBase = .sbss:0x805158C4; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158C8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158CC; // type:object size:0x4 scope:local align:4 data:float +sZukanState__Q34Game15IllustratedBook5Parms = .sbss:0x805158D0; // type:object size:0x4 scope:global align:4 data:4byte +sCamera__Q34Game15IllustratedBook5Parms = .sbss:0x805158D4; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158D8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158DC; // type:object size:0x4 scope:local align:4 data:float +mDebug__8CollTree = .sbss:0x805158E0; // type:object size:0x1 scope:global align:1 data:byte +mInstance__13DynamicsParms = .sbss:0x805158E8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158F0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158F4; // type:object size:0x4 scope:local align:4 data:float +currOp__Q24Game8Creature = .sbss:0x805158F8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515900; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515904; // type:object size:0x4 scope:local align:4 data:float +sCurrNeckTheta__Q24Game8FakePiki = .sbss:0x80515908; // type:object size:0x4 scope:global align:4 data:float +sCurrNeckPhi__Q24Game8FakePiki = .sbss:0x8051590C; // type:object size:0x4 scope:global align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515910; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515914; // type:object size:0x4 scope:local align:4 data:float +numSearch = .sbss:0x80515918; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515920; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515924; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515928; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051592C; // type:object size:0x4 scope:local align:4 data:float +cameraMgrCallback = .sbss:0x80515930; // type:object size:0x4 scope:global align:4 data:4byte +theExpHeap = .sbss:0x80515934; // type:object size:0x4 scope:local align:4 data:4byte +col$4567 = .sbss:0x80515938; // type:object size:0x4 scope:local align:4 data:4byte +init$4568 = .sbss:0x8051593C; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515940; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515944; // type:object size:0x4 scope:local align:4 data:float +cellMgr__4Game = .sbss:0x80515948; // type:object size:0x4 scope:global align:4 data:4byte +platCellMgr__4Game = .sbss:0x8051594C; // type:object size:0x4 scope:global align:4 data:4byte +mapRoomCellMgr__4Game = .sbss:0x80515950; // type:object size:0x4 scope:global align:4 data:4byte +disableAICulling__Q24Game11CellPyramid = .sbss:0x80515954; // type:object size:0x1 scope:global align:1 data:byte +sSpeedUpResolveColl__Q24Game11CellPyramid = .sbss:0x80515955; // type:object size:0x1 scope:global align:1 data:byte +sCurrCellMgr__Q24Game4Cell = .sbss:0x80515958; // type:object size:0x4 scope:global align:4 data:4byte +sCellBugID__Q24Game11CellPyramid = .sbss:0x8051595C; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr__4Game = .sbss:0x80515960; // type:object size:0x4 scope:global align:4 data:4byte +animMgr__Q24Game7NaviMgr = .sbss:0x80515964; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515968; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051596C; // type:object size:0x4 scope:local align:4 data:float +throwPikiDebug__Q24Game7PikiMgr = .sbss:0x80515970; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr__4Game = .sbss:0x80515974; // type:object size:0x4 scope:global align:4 data:4byte +mBirthMode__Q24Game7PikiMgr = .sbss:0x80515978; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515980; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515984; // type:object size:0x4 scope:local align:4 data:float +mapMgr__4Game = .sbss:0x80515988; // type:object size:0x4 scope:global align:4 data:4byte +traceMoveDebug__Q24Game6MapMgr = .sbss:0x8051598C; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515990; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515994; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515998; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051599C; // type:object size:0x4 scope:local align:4 data:float +pelletMgr__4Game = .sbss:0x805159A0; // type:object size:0x4 scope:global align:4 data:4byte +mDebug__Q24Game9PelletMgr = .sbss:0x805159A4; // type:object size:0x1 scope:global align:1 data:byte +disableDynamics__Q24Game9PelletMgr = .sbss:0x805159A5; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805159A8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159AC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game9ItemOnyon = .sbss:0x805159B0; // type:object size:0x4 scope:global align:4 data:4byte +sVolveFlag = .sbss:0x805159B4; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805159B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159BC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805159C0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159C4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805159C8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159CC; // type:object size:0x4 scope:local align:4 data:float +collisionUpdateMgr__4Game = .sbss:0x805159D0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805159D8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159DC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805159E0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159E4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805159E8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159EC; // type:object size:0x4 scope:local align:4 data:float +numBuffer__Q24Game8Stickers = .sbss:0x805159F0; // type:object size:0x4 scope:global align:4 data:4byte +mutex__Q24Game8Stickers = .sbss:0x805159F4; // type:object size:0x1 scope:global align:1 data:byte +buffer__Q24Game8Stickers = .sbss:0x805159F8; // type:object size:0x4 scope:global align:4 data:4byte +testPathfinder__4Game = .sbss:0x80515A00; // type:object size:0x4 scope:global align:4 data:4byte +routeMgr__Q24Game15PathfindContext = .sbss:0x80515A04; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A08; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A0C; // type:object size:0x4 scope:local align:4 data:float +dynParticleMgr__4Game = .sbss:0x80515A10; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A18; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A1C; // type:object size:0x4 scope:local align:4 data:float +factory__Q24Game16GenObjectFactory = .sbss:0x80515A20; // type:object size:0x4 scope:global align:4 data:4byte +ramMode__Q24Game9Generator = .sbss:0x80515A24; // type:object size:0x1 scope:global align:1 data:byte +generatorMgr__4Game = .sbss:0x80515A28; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr__4Game = .sbss:0x80515A2C; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr__4Game = .sbss:0x80515A30; // type:object size:0x4 scope:global align:4 data:4byte +plantsGeneratorMgr__4Game = .sbss:0x80515A34; // type:object size:0x4 scope:global align:4 data:4byte +dayGeneratorMgr__4Game = .sbss:0x80515A38; // type:object size:0x4 scope:global align:4 data:4byte +cursorCallback__Q24Game12GeneratorMgr = .sbss:0x80515A3C; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A40; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A44; // type:object size:0x4 scope:local align:4 data:float +stageList__4Game = .sbss:0x80515A48; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A50; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A54; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515A58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A5C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515A60; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A64; // type:object size:0x4 scope:local align:4 data:float +gameSystem__4Game = .sbss:0x80515A68; // type:object size:0x4 scope:global align:4 data:4byte +mInstance__Q24Game18OptimiseController = .sbss:0x80515A6C; // type:object size:0x4 scope:global align:4 data:4byte +_aiConstants__4Game = .sbss:0x80515A70; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A78; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A7C; // type:object size:0x4 scope:local align:4 data:float +numRoomCulled__Q24Game10RoomMapMgr = .sbss:0x80515A80; // type:object size:0x4 scope:global align:4 data:4byte +mUseCylinderViewCulling__Q24Game10RoomMapMgr = .sbss:0x80515A84; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A8C; // type:object size:0x4 scope:local align:4 data:float +mRedWinCount__Q24Game13VsGameSection = .sbss:0x80515A90; // type:object size:0x4 scope:global align:4 data:4byte +mBlueWinCount__Q24Game13VsGameSection = .sbss:0x80515A94; // type:object size:0x4 scope:global align:4 data:4byte +mDrawCount__Q24Game13VsGameSection = .sbss:0x80515A98; // type:object size:0x4 scope:global align:4 data:4byte +platMgr__4Game = .sbss:0x80515AA0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515AAC; // type:object size:0x4 scope:local align:4 data:float +itemGateMgr__4Game = .sbss:0x80515AB0; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game15ItemDengekiGate = .sbss:0x80515AB4; // type:object size:0x4 scope:global align:4 data:4byte +itemMgr__4Game = .sbss:0x80515AB8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AC0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515AC4; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game8ItemHole = .sbss:0x80515AC8; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game9ItemHoney = .sbss:0x80515AD0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AD8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515ADC; // type:object size:0x4 scope:local align:4 data:float +drawInfo__Q24Game5AILOD = .sbss:0x80515AE0; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AE8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515AEC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game12ItemPikihead = .sbss:0x80515AF0; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game9ItemPlant = .sbss:0x80515AF8; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game8ItemRock = .sbss:0x80515B00; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B08; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B0C; // type:object size:0x4 scope:local align:4 data:float +playData__4Game = .sbss:0x80515B10; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B18; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B1C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game8ItemCave = .sbss:0x80515B20; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B28; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B2C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game15ItemBigFountain = .sbss:0x80515B30; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game10ItemBridge = .sbss:0x80515B38; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache__4Game = .sbss:0x80515B40; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B4C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game12ItemTreasure = .sbss:0x80515B50; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B5C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game13ItemDownFloor = .sbss:0x80515B60; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B68; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B6C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game10ItemBarrel = .sbss:0x80515B70; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game12PelletNumber = .sbss:0x80515B78; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game13PelletCarcass = .sbss:0x80515B80; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B8C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game11PelletFruit = .sbss:0x80515B90; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B9C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game13PelletOtakara = .sbss:0x80515BA0; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game10PelletItem = .sbss:0x80515BA8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515BB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BB4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BB8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BBC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game12ItemUjamushi = .sbss:0x80515BC0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515BC8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BCC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BD0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BD4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BD8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BDC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game8ItemWeed = .sbss:0x80515BE0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515BE8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BEC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BF0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BF4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BF8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BFC; // type:object size:0x4 scope:local align:4 data:float +theTekiHeap = .sbss:0x80515C00; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515C08; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C0C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C10; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C14; // type:object size:0x4 scope:local align:4 data:float +sParentHeapFreeSize = .sbss:0x80515C18; // type:object size:0x4 scope:local align:4 data:4byte +sParentHeapFreeSize_Last = .sbss:0x80515C1C; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515C20; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C24; // type:object size:0x4 scope:local align:4 data:float +sCurrPlayDataSize__Q24Game8PlayData = .sbss:0x80515C28; // type:object size:0x4 scope:global align:4 data:4byte +sMaxPlayDataSize__Q24Game8PlayData = .sbss:0x80515C2C; // type:object size:0x4 scope:global align:4 data:4byte +mgr__5Radar = .sbss:0x80515C30; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515C38; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C3C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C40; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C44; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C4C; // type:object size:0x4 scope:local align:4 data:float +sParentHeapFreeSize = .sbss:0x80515C50; // type:object size:0x4 scope:local align:4 data:4byte +mInstance__Q34Game10PelletList3Mgr = .sbss:0x80515C58; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515C60; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C64; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C68; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C6C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C70; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C74; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C78; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C7C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C80; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C84; // type:object size:0x4 scope:local align:4 data:float +mInstance__12CellMgrParms = .sbss:0x80515C88; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515C90; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C94; // type:object size:0x4 scope:local align:4 data:float +mSoundDeathCount__Q24Game8DeathMgr = .sbss:0x80515C98; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515CA0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CA4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CAC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CB4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CB8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CBC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CC0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CC4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CC8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CCC; // type:object size:0x4 scope:local align:4 data:float +sInstance__Q29TexCaster3Mgr = .sbss:0x80515CD0; // type:object size:0x4 scope:global align:4 data:4byte +sNum__Q24Game17PelletBirthBuffer = .sbss:0x80515CD8; // type:object size:0x4 scope:global align:4 data:4byte +mGpStatus__6VSFifo = .sbss:0x80515CE0; // type:object size:0x5 scope:global align:4 +gu32NAN___Q24Game5P2JST = .sbss:0x80515CE8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CEC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CF0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CF4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CF8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CFC; // type:object size:0x4 scope:local align:4 data:float +shadowMgr__4Game = .sbss:0x80515D00; // type:object size:0x4 scope:global align:4 data:4byte +randMapMgr__Q24Game4Cave = .sbss:0x80515D08; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D10; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D14; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D18; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D1C; // type:object size:0x4 scope:local align:4 data:float +cameraMgr__4Game = .sbss:0x80515D20; // type:object size:0x4 scope:global align:4 data:4byte +rumbleMgr__4Game = .sbss:0x80515D28; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D30; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D34; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D38; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D3C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D40; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D44; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D4C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D50; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D54; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D5C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D60; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D64; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D68; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D6C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D70; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D74; // type:object size:0x4 scope:local align:4 data:float +gIKSystemMgr__4Game = .sbss:0x80515D78; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D80; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D84; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D8C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D90; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D94; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D9C; // type:object size:0x4 scope:local align:4 data:float +sHoudaiShotGunMgr__Q24Game6Houdai = .sbss:0x80515DA0; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515DA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DAC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DB4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DB8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DBC; // type:object size:0x4 scope:local align:4 data:float +sSnakeJointMgr__4Game = .sbss:0x80515DC0; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515DC8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DCC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DD0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DD4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DD8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DDC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DE0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DE4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DE8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DEC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DF0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DF4; // type:object size:0x4 scope:local align:4 data:float +sMiniHoudaiShotGunMgr__Q24Game10MiniHoudai = .sbss:0x80515DF8; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E00; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E04; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E08; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E0C; // type:object size:0x4 scope:local align:4 data:float +wkPtr$3542 = .sbss:0x80515E10; // type:object size:0x4 scope:local align:4 data:4byte +init$3543 = .sbss:0x80515E14; // type:object size:0x1 scope:local align:1 data:byte +Max$3545 = .sbss:0x80515E18; // type:object size:0x4 scope:local align:4 data:4byte +init$3546 = .sbss:0x80515E1C; // type:object size:0x1 scope:local align:1 data:byte +wkMax$3548 = .sbss:0x80515E20; // type:object size:0x4 scope:local align:4 data:4byte +init$3549 = .sbss:0x80515E24; // type:object size:0x1 scope:local align:1 data:byte +ogSound__2og = .sbss:0x80515E28; // type:object size:0x4 scope:global align:4 data:4byte +sGameFlag_MainBgm_Evening__Q22og9newScreen = .sbss:0x80515E30; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E38; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E3C; // type:object size:0x4 scope:local align:4 data:float +gLib2D__2og = .sbss:0x80515E40; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E4C; // type:object size:0x4 scope:local align:4 data:float +nv_frame$4824 = .sbss:0x80515E50; // type:object size:0x4 scope:local align:4 data:float +init$4825 = .sbss:0x80515E54; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E5C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E60; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E64; // type:object size:0x4 scope:local align:4 data:float +angle$3853 = .sbss:0x80515E68; // type:object size:0x4 scope:local align:4 data:float +init$3854 = .sbss:0x80515E6C; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E70; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E74; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E78; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E7C; // type:object size:0x4 scope:local align:4 data:float +angle$4147 = .sbss:0x80515E80; // type:object size:0x4 scope:local align:4 data:float +init$4148 = .sbss:0x80515E84; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E8C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E90; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E94; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E9C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515EA0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515EA4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515EA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515EAC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515EB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515EB4; // type:object size:0x4 scope:local align:4 data:float +sFrame$4053 = .sbss:0x80515EB8; // type:object size:0x4 scope:local align:4 data:float +init$4054 = .sbss:0x80515EBC; // type:object size:0x1 scope:local align:1 data:byte +msVal__Q32og9newScreen12ObjSMenuCont = .sbss:0x80515EC0; // type:object size:0x8 scope:global align:4 data:float +oldID$2940 = .sbss:0x80515EC8; // type:object size:0x4 scope:local align:4 data:4byte +init$2941 = .sbss:0x80515ECC; // type:object size:0x1 scope:local align:1 data:byte +sToolMode__Q26PSGame13ConductorList = .sbss:0x80515ED0; // type:object size:0x1 scope:global align:1 data:byte +sInstance__Q28PSSystem39SingletonBase = .sbss:0x80515ED4; // type:object size:0x4 scope:weak align:4 data:4byte +spSysIF__8PSSystem = .sbss:0x80515ED8; // type:object size:0x4 scope:global align:4 data:4byte +oRandom__8PSSystem = .sbss:0x80515EDC; // type:object size:0x4 scope:global align:4 data:4byte +sMakeJAISeCallback__Q28PSSystem5SysIF = .sbss:0x80515EE0; // type:object size:0x4 scope:global align:4 data:4byte +sHeap__Q29PSAutoBgm12ConductorMgr = .sbss:0x80515EE8; // type:object size:0x4 scope:global align:4 data:4byte +sInstance__Q29PSAutoBgm15ConductorArcMgr = .sbss:0x80515EEC; // type:object size:0x4 scope:global align:4 data:4byte +sBankMgr__Q28PSSystem7BankMgr = .sbss:0x80515EF0; // type:object size:0x4 scope:global align:4 data:4byte +sInstance__Q28PSSystem11BankRandPrm = .sbss:0x80515EF8; // type:object size:0x4 scope:global align:4 data:4byte +spSceneMgr__8PSSystem = .sbss:0x80515F00; // type:object size:0x4 scope:global align:4 data:4byte +sToolMode__Q28PSSystem12DirectorBase = .sbss:0x80515F08; // type:object size:0x1 scope:global align:1 data:byte +mColorTest__Q28Morimura12TDayEndCount = .sbss:0x80515F10; // type:object size:0x1 scope:global align:1 data:byte +mTestChangeColor__Q28Morimura12TDayEndCount = .sbss:0x80515F11; // type:object size:0x1 scope:global align:1 data:byte +mCountDownType__Q28Morimura12TDayEndCount = .sbss:0x80515F12; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515F18; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F1C; // type:object size:0x4 scope:local align:4 data:float +mIsSection__Q28Morimura9TTestBase = .sbss:0x80515F20; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515F28; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F2C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515F30; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F34; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515F38; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F3C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515F40; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F44; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515F48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F4C; // type:object size:0x4 scope:local align:4 data:float +curK__Q24Game10KingChappy = .sbss:0x80515F50; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515F58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F5C; // type:object size:0x4 scope:local align:4 data:float +curJ__Q24Game6Jigumo = .sbss:0x80515F60; // type:object size:0x4 scope:global align:4 data:4byte +mMatColor__Q24Game4Nest = .sbss:0x80515F68; // type:object size:0x8 scope:local align:4 data:2byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515F70; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F74; // type:object size:0x4 scope:local align:4 data:float +mShowAllObjects__Q28Morimura10TZukanBase = .sbss:0x80515F78; // type:object size:0x1 scope:global align:1 data:byte +mAllNewSupply__Q28Morimura10TZukanBase = .sbss:0x80515F79; // type:object size:0x1 scope:global align:1 data:byte +mZukanShortenTest__Q28Morimura10TZukanBase = .sbss:0x80515F7A; // type:object size:0x1 scope:global align:1 data:byte +mZukanCategoryTest__Q28Morimura10TZukanBase = .sbss:0x80515F7B; // type:object size:0x1 scope:global align:1 data:byte +mRandShowRate__Q28Morimura10TZukanBase = .sbss:0x80515F7C; // type:object size:0x4 scope:global align:4 data:float +mNewOffset__Q28Morimura10TZukanBase = .sbss:0x80515F80; // type:object size:0x8 scope:global align:4 data:float +mLargeNewOffset__Q28Morimura10TZukanBase = .sbss:0x80515F88; // type:object size:0x8 scope:global align:4 data:float +mNewColor0__Q28Morimura10TZukanBase = .sbss:0x80515F90; // type:object size:0x4 scope:global align:4 data:byte +mNewColor1__Q28Morimura10TZukanBase = .sbss:0x80515F94; // type:object size:0x4 scope:global align:4 data:byte +mCategoryScale__Q28Morimura10TZukanBase = .sbss:0x80515F98; // type:object size:0x8 scope:global align:4 data:float +mCategoryColor0w__Q28Morimura10TZukanBase = .sbss:0x80515FA0; // type:object size:0x4 scope:global align:4 data:byte +mCategoryColor0b__Q28Morimura10TZukanBase = .sbss:0x80515FA4; // type:object size:0x4 scope:global align:4 data:byte +mCategoryColor1w__Q28Morimura10TZukanBase = .sbss:0x80515FA8; // type:object size:0x4 scope:global align:4 data:byte +mCategoryColor1b__Q28Morimura10TZukanBase = .sbss:0x80515FAC; // type:object size:0x4 scope:global align:4 data:byte +mDebugHeapParent__Q28Morimura10TZukanBase = .sbss:0x80515FB0; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura10TZukanBase = .sbss:0x80515FB4; // type:object size:0x4 scope:global align:4 data:4byte +mForceClear__Q28Morimura8THiScore = .sbss:0x80515FB8; // type:object size:0x1 scope:global align:1 data:byte +mForceClear2__Q28Morimura8THiScore = .sbss:0x80515FB9; // type:object size:0x1 scope:global align:1 data:byte +mLoopDrum__Q28Morimura8THiScore = .sbss:0x80515FBA; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515FC0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515FC4; // type:object size:0x4 scope:local align:4 data:float +curU__Q24Game8UmiMushi = .sbss:0x80515FC8; // type:object size:0x4 scope:global align:4 data:4byte +mMatColorY0__Q24Game11ShijimiChou = .sbss:0x80515FD0; // type:object size:0x8 scope:local align:4 data:2byte +mMatColorR0__Q24Game11ShijimiChou = .sbss:0x80515FD8; // type:object size:0x8 scope:local align:4 data:2byte +mMatColorB0__Q24Game11ShijimiChou = .sbss:0x80515FE0; // type:object size:0x8 scope:local align:4 data:2byte +mMatKColorY__Q24Game11ShijimiChou = .sbss:0x80515FE8; // type:object size:0x4 scope:local align:4 data:byte +mMatKColorR__Q24Game11ShijimiChou = .sbss:0x80515FEC; // type:object size:0x4 scope:local align:4 data:byte +mMatKColorB__Q24Game11ShijimiChou = .sbss:0x80515FF0; // type:object size:0x4 scope:local align:4 data:byte +mRightOffset__Q28Morimura16TChallengeSelect = .sbss:0x80515FF8; // type:object size:0x4 scope:global align:4 data:4byte +mDownOffset__Q28Morimura16TChallengeSelect = .sbss:0x80515FFC; // type:object size:0x4 scope:global align:4 data:4byte +mFrameAnimAlpha__Q28Morimura16TChallengeSelect = .sbss:0x80516000; // type:object size:0x1 scope:global align:1 data:byte +mAllCourseOpen__Q28Morimura16TChallengeSelect = .sbss:0x80516001; // type:object size:0x1 scope:global align:1 data:byte +mForceDemoStart__Q28Morimura16TChallengeSelect = .sbss:0x80516002; // type:object size:0x1 scope:global align:1 data:byte +mDivePikiNum__Q28Morimura16TChallengeSelect = .sbss:0x80516004; // type:object size:0x4 scope:global align:4 data:4byte +mMetOffset__Q28Morimura16TChallengeSelect = .sbss:0x80516008; // type:object size:0x8 scope:global align:4 data:float +mDebugHeapParent__Q28Morimura16TChallengeSelect = .sbss:0x80516010; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura16TChallengeSelect = .sbss:0x80516014; // type:object size:0x4 scope:global align:4 data:4byte +mForceDemoStart__Q28Morimura16TChallengeResult = .sbss:0x80516018; // type:object size:0x1 scope:global align:1 data:byte +mTestStageId__Q28Morimura16TChallengeResult = .sbss:0x80516019; // type:object size:0x1 scope:global align:1 data:byte +mDebugHeapParent__Q28Morimura16TChallengeResult = .sbss:0x8051601C; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura16TChallengeResult = .sbss:0x80516020; // type:object size:0x4 scope:global align:4 data:4byte +mLeafTexture__Q28Morimura16TChallengeResult = .sbss:0x80516024; // type:object size:0x4 scope:global align:4 data:4byte +mFlowerTexture__Q28Morimura16TChallengeResult = .sbss:0x80516028; // type:object size:0x4 scope:global align:4 data:4byte +mRedFlowerTexture__Q28Morimura16TChallengeResult = .sbss:0x8051602C; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeapParent__Q28Morimura9TVsSelect = .sbss:0x80516030; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura9TVsSelect = .sbss:0x80516034; // type:object size:0x4 scope:global align:4 data:4byte +mPikiOffset__Q28Morimura7TVsPiki = .sbss:0x80516038; // type:object size:0x8 scope:global align:4 data:float +mForceDemoStart__Q28Morimura9TVsSelect = .sbss:0x80516040; // type:object size:0x1 scope:global align:1 data:byte +mLoopDrum__Q28Morimura9TVsSelect = .sbss:0x80516041; // type:object size:0x1 scope:global align:1 data:byte +mCanCancel__Q28Morimura9TVsSelect = .sbss:0x80516042; // type:object size:0x1 scope:global align:1 data:byte +mRightOffset__Q28Morimura11TScrollList = .sbss:0x80516048; // type:object size:0x4 scope:global align:4 data:4byte +mForceResetParm__Q28Morimura11TScrollList = .sbss:0x8051604C; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516050; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516054; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516058; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051605C; // type:object size:0x4 scope:local align:4 data:float +curB__Q24Game8BlackMan = .sbss:0x80516060; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516068; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051606C; // type:object size:0x4 scope:local align:4 data:float +curT__Q24Game4Tyre = .sbss:0x80516070; // type:object size:0x4 scope:global align:4 data:4byte +mCallBack_StaticClipping__Q23efx5TBase = .sbss:0x80516078; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516080; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516084; // type:object size:0x4 scope:local align:4 data:float +particle2dMgr = .sbss:0x80516088; // type:object size:0x4 scope:global align:4 data:4byte +_instance__14TParticle2dMgr = .sbss:0x8051608C; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516090; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516094; // type:object size:0x4 scope:local align:4 data:float +particleMgr = .sbss:0x80516098; // type:object size:0x4 scope:global align:4 data:4byte +disableCulling__11ParticleMgr = .sbss:0x8051609C; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160A0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160A4; // type:object size:0x4 scope:local align:4 data:float +titleMgr__Q23ebi5title = .sbss:0x805160A8; // type:object size:0x4 scope:global align:4 data:4byte +_instance__Q33ebi5title9TTitleMgr = .sbss:0x805160AC; // type:object size:0x4 scope:global align:4 data:4byte +boidCalcTimer$5256 = .sbss:0x805160B0; // type:object size:0x4 scope:local align:4 data:4byte +init$5257 = .sbss:0x805160B4; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160BC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805160C0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160C4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805160C8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160CC; // type:object size:0x4 scope:local align:4 data:float +pkEffectMgr = .sbss:0x805160D0; // type:object size:0x4 scope:global align:4 data:4byte +_instance__Q23efx12TPkEffectMgr = .sbss:0x805160D4; // type:object size:0x4 scope:global align:4 data:4byte +msInstance__Q33ebi4Save4TMgr = .sbss:0x805160D8; // type:object size:0x4 scope:global align:4 data:4byte +msInstance__Q33ebi10FileSelect4TMgr = .sbss:0x805160E0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160E8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160EC; // type:object size:0x4 scope:local align:4 data:float +boidCalcTimer$4026 = .sbss:0x805160F0; // type:object size:0x4 scope:local align:4 data:4byte +init$4027 = .sbss:0x805160F4; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160F8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160FC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516100; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516104; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516108; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051610C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516110; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516114; // type:object size:0x4 scope:local align:4 data:float +gCardEMgr__3ebi = .sbss:0x80516118; // type:object size:0x4 scope:global align:4 data:4byte +gGame2DMgr__6Screen = .sbss:0x80516120; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516128; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051612C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516130; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516134; // type:object size:0x4 scope:local align:4 data:float +msVal__Q32kh6Screen19ObjDayEndResultTitl = .sbss:0x80516138; // type:object size:0x8 scope:global align:4 data:4byte +msVal__Q32kh6Screen10ObjPayDept = .sbss:0x80516140; // type:object size:0x4 scope:global align:4 data:float +__init__zero__10Vector3 = .sbss:0x80516148; // type:object size:0x1 scope:weak align:1 data:byte +debug__Q23Sys8Triangle = .sbss:0x80516150; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516158; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051615C; // type:object size:0x4 scope:local align:4 data:float +debugTraceMove__Q23Sys7OBBTree = .sbss:0x80516160; // type:object size:0x1 scope:global align:1 data:byte +mRenderMode__6System = .sbss:0x80516168; // type:object size:0x4 scope:global align:4 data:4byte +sys = .sbss:0x8051616C; // type:object size:0x4 scope:global align:4 data:4byte +sVerifyArg__6System = .sbss:0x80516170; // type:object size:0x8 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516178; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051617C; // type:object size:0x4 scope:local align:4 data:float +sPlayTime = .sbss:0x80516180; // type:object size:0x8 scope:local align:8 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516188; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051618C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516190; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516194; // type:object size:0x4 scope:local align:4 data:float +gScissorOffset = .sbss:0x80516198; // type:object size:0x4 scope:global align:4 data:4byte +lastTokenName__8Graphics = .sbss:0x8051619C; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161A0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161A4; // type:object size:0x4 scope:local align:4 data:float +verbose__Q28SysShape8Animator = .sbss:0x805161A8; // type:object size:0x1 scope:global align:1 data:byte +drawFlag__9SysTimers = .sbss:0x805161B0; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161BC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805161C0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161C4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805161C8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161CC; // type:object size:0x4 scope:local align:4 data:float +mArchive__Q24Game11MoviePlayer = .sbss:0x805161D0; // type:object size:0x4 scope:global align:4 data:4byte +moviePlayer__4Game = .sbss:0x805161D4; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161D8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161DC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805161E0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161E4; // type:object size:0x4 scope:local align:4 data:float +sFovBackup__Q24Game5P2JST = .sbss:0x805161E8; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805161F0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161F4; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sbss:0x805161F8; // type:object size:0x1 scope:local align:4 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161FC; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516200; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516208; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051620C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516210; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516214; // type:object size:0x4 scope:local align:4 data:float +movieList__4Game = .sbss:0x80516218; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516220; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516224; // type:object size:0x4 scope:local align:4 data:float +gAramMgr = .sbss:0x80516228; // type:object size:0x4 scope:global align:4 data:4byte +gResMgr2D = .sbss:0x80516230; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516238; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051623C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516240; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516244; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516248; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051624C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516250; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516254; // type:object size:0x4 scope:local align:4 data:float +gP2JMEMgr = .sbss:0x80516258; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516260; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516264; // type:object size:0x4 scope:local align:4 data:float +frm$674 = .sbss:0x80516268; // type:object size:0x1 scope:local align:1 data:byte +init$675 = .sbss:0x80516269; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516270; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516274; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516278; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051627C; // type:object size:0x4 scope:local align:4 data:float +cullCount__Q28SysShape5Model = .sbss:0x80516280; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516288; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051628C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516290; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516294; // type:object size:0x4 scope:local align:4 data:float +sBootSection = .sbss:0x80516298; // type:object size:0x4 scope:global align:4 data:4byte +sTinyPikminMgr = .sbss:0x8051629C; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805162A0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805162A4; // type:object size:0x4 scope:local align:4 data:float +gLoadResourceMgr = .sbss:0x805162A8; // type:object size:0x4 scope:global align:4 data:4byte +AudioDecodeThreadCreated = .sbss:0x805162B0; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x805162B8; // type:object size:0x4 scope:local align:4 data:4byte +PrepareReadyMessage = .sbss:0x805162BC; // type:object size:0x4 scope:local align:4 +OldVIPostCallback = .sbss:0x805162C0; // type:object size:0x4 scope:local align:4 data:4byte +SoundBufferIndex = .sbss:0x805162C4; // type:object size:0x4 scope:local align:4 data:4byte +LastAudioBuffer = .sbss:0x805162C8; // type:object size:0x4 scope:local align:4 data:4byte +CurAudioBuffer = .sbss:0x805162CC; // type:object size:0x4 scope:local align:4 data:4byte +gTHPReaderDvdAccess = .sbss:0x805162D0; // type:object size:0x1 scope:global align:1 data:byte +ReadThreadCreated = .sbss:0x805162D4; // type:object size:0x4 scope:local align:4 data:4byte +VideoDecodeThreadCreated = .sbss:0x805162D8; // type:object size:0x4 scope:local align:4 data:4byte +First = .sbss:0x805162DC; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805162E0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805162E4; // type:object size:0x4 scope:local align:4 data:float +sScreenMgr__Q26Screen3Mgr = .sbss:0x805162E8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805162F0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805162F4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805162F8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805162FC; // type:object size:0x4 scope:local align:4 data:float +gPikmin2AramMgr = .sbss:0x80516300; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516308; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051630C; // type:object size:0x4 scope:local align:4 data:float +sBigBoss__Q23PSM12EnemyBigBoss = .sbss:0x80516310; // type:object size:0x4 scope:global align:4 data:4byte +sDopedPikminNum__Q23PSM4Piki = .sbss:0x80516314; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516318; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051631C; // type:object size:0x4 scope:local align:4 data:float +tmpVol$3526 = .sbss:0x80516320; // type:object size:0x4 scope:local align:4 data:float +init$3527 = .sbss:0x80516324; // type:object size:0x1 scope:local align:1 data:byte +sLaderNoiseTimer = .sbss:0x80516326; // type:object size:0x2 scope:local align:2 data:2byte +sLaderNoiseWait = .sbss:0x80516328; // type:object size:0x2 scope:local align:2 data:2byte +sLaderNoiseFuefukiSensMin = .sbss:0x8051632C; // type:object size:0x4 scope:global align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516330; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516334; // type:object size:0x4 scope:local align:4 data:float +panRatio$3853 = .sbss:0x80516338; // type:object size:0x4 scope:local align:4 data:float +init$3854 = .sbss:0x8051633C; // type:object size:0x1 scope:local align:1 data:byte +sTHPDinamicsProc__3PSM = .sbss:0x80516340; // type:object size:0x4 scope:global align:4 data:4byte +@1328 = .sdata2:0x80516360; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x80516364; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x80516368; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x80516370; // type:object size:0x8 scope:local align:8 data:double +@1561 = .sdata2:0x80516378; // type:object size:0x8 scope:local align:8 data:double +@1562 = .sdata2:0x80516380; // type:object size:0x8 scope:local align:8 data:double +@1563 = .sdata2:0x80516388; // type:object size:0x8 scope:local align:8 data:double +@1565 = .sdata2:0x80516390; // type:object size:0x8 scope:local align:8 data:double +ga4cSignature__Q28JMessage4data = .sdata2:0x80516398; // type:object size:0x4 scope:global align:4 data:string +ga4cSignature_color__Q28JMessage4data = .sdata2:0x8051639C; // type:object size:0x4 scope:global align:4 data:string +@675 = .sdata2:0x805163A0; // type:object size:0x8 scope:local align:8 data:double +@901 = .sdata2:0x805163A8; // type:object size:0x8 scope:local align:8 data:double +@902 = .sdata2:0x805163B0; // type:object size:0x8 scope:local align:8 data:double +@903 = .sdata2:0x805163B8; // type:object size:0x8 scope:local align:8 data:double +@908 = .sdata2:0x805163C0; // type:object size:0x8 scope:local align:8 data:double +@909 = .sdata2:0x805163C8; // type:object size:0x8 scope:local align:8 data:double +@910 = .sdata2:0x805163D0; // type:object size:0x8 scope:local align:8 data:double +@951 = .sdata2:0x805163D8; // type:object size:0x8 scope:local align:8 data:double +@976 = .sdata2:0x805163E0; // type:object size:0x8 scope:local align:8 data:double +@1864 = .sdata2:0x805163E8; // type:object size:0x8 scope:local align:8 data:double +ga4cSignature__Q37JStudio3fvb4data = .sdata2:0x805163F0; // type:object size:0x4 scope:global align:4 data:string +@743 = .sdata2:0x805163F8; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x805163FC; // type:object size:0x4 scope:local align:4 data:float +ga8cSignature__Q27JStudio4data = .sdata2:0x80516400; // type:object size:0x8 scope:global align:4 data:string +@784 = .sdata2:0x80516408; // type:object size:0x8 scope:local align:8 data:double +@1063 = .sdata2:0x80516410; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata2:0x80516414; // type:object size:0x4 scope:local align:4 data:float +sauVariableValue_2_DISTANCE_NEAR_FAR__Q27JStudio15TAdaptor_camera = .sdata2:0x80516418; // type:object size:0x8 scope:global align:4 data:4byte +sauVariableValue_2_RANGE_BEGIN_END__Q27JStudio12TAdaptor_fog = .sdata2:0x80516420; // type:object size:0x8 scope:global align:4 data:4byte +sauVariableValue_2_DIRECTION_THETA_PHI__Q27JStudio14TAdaptor_light = .sdata2:0x80516428; // type:object size:0x8 scope:global align:4 data:4byte +@2380 = .sdata2:0x80516430; // type:object size:0x4 scope:local align:4 data:float +gu32Mask_TSequence_value_signExpansion__Q37JStudio3stb4data = .sdata2:0x80516438; // type:object size:0x4 scope:local align:4 data:4byte +ga4cSignature__Q37JStudio3stb4data = .sdata2:0x80516440; // type:object size:0x4 scope:global align:4 data:string +@475 = .sdata2:0x80516448; // type:object size:0x4 scope:local align:4 data:float +@476 = .sdata2:0x8051644C; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x80516450; // type:object size:0x8 scope:local align:8 data:double +@648 = .sdata2:0x80516458; // type:object size:0x8 scope:local align:8 data:double +@649 = .sdata2:0x80516460; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x80516468; // type:object size:0x8 scope:local align:8 data:double +@651 = .sdata2:0x80516470; // type:object size:0x8 scope:local align:8 data:double +@652 = .sdata2:0x80516478; // type:object size:0x8 scope:local align:8 data:double +@834 = .sdata2:0x80516480; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x80516488; // type:object size:0x8 scope:local align:8 data:double +@836 = .sdata2:0x80516490; // type:object size:0x8 scope:local align:8 data:double +@837 = .sdata2:0x80516498; // type:object size:0x8 scope:local align:8 data:double +@838 = .sdata2:0x805164A0; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x805164A4; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x805164A8; // type:object size:0x4 scope:local align:4 data:float +@1297 = .sdata2:0x805164B0; // type:object size:0x4 scope:local align:4 data:float +@1797 = .sdata2:0x805164B8; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x805164BC; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x805164C0; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x805164C8; // type:object size:0x8 scope:local align:8 data:double +@561 = .sdata2:0x805164D0; // type:object size:0x3 scope:local align:4 data:string +@352 = .sdata2:0x805164D8; // type:object size:0x7 scope:local align:4 data:string +@574 = .sdata2:0x805164E0; // type:object size:0x3 scope:local align:4 data:string +@2777 = .sdata2:0x805164E8; // type:object size:0x3 scope:local align:4 data:string +@1144 = .sdata2:0x805164F0; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata2:0x805164F8; // type:object size:0x6 scope:local align:4 data:string +@1148 = .sdata2:0x80516500; // type:object size:0x6 scope:local align:4 data:string +@1150 = .sdata2:0x80516508; // type:object size:0x6 scope:local align:4 data:string +@1152 = .sdata2:0x80516510; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata2:0x80516518; // type:object size:0x8 scope:local align:8 data:double +@715 = .sdata2:0x80516520; // type:object size:0x2 scope:local align:4 data:string +@716 = .sdata2:0x80516524; // type:object size:0x4 scope:local align:4 data:string +@2767 = .sdata2:0x80516528; // type:object size:0x2 scope:local align:4 data:string +@913 = .sdata2:0x80516530; // type:object size:0x7 scope:local align:4 data:string +@698 = .sdata2:0x80516538; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x80516540; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x80516548; // type:object size:0x8 scope:local align:8 data:double +@689 = .sdata2:0x80516550; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata2:0x80516554; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x80516558; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata2:0x80516560; // type:object size:0x8 scope:local align:8 data:double +@2692 = .sdata2:0x80516568; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x8051656C; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x80516570; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x80516574; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x80516578; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x8051657C; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x80516580; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x80516588; // type:object size:0x8 scope:local align:8 data:double +@2703 = .sdata2:0x80516590; // type:object size:0x8 scope:local align:8 data:double +@3440 = .sdata2:0x80516598; // type:object size:0x3 scope:local align:4 data:string +@838 = .sdata2:0x805165A0; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x805165A4; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x805165A8; // type:object size:0x8 scope:local align:8 data:double +@546 = .sdata2:0x805165B0; // type:object size:0x3 scope:local align:4 data:string +@612 = .sdata2:0x805165B8; // type:object size:0x8 scope:local align:8 data:double +@613 = .sdata2:0x805165C0; // type:object size:0x8 scope:local align:8 data:double +@614 = .sdata2:0x805165C8; // type:object size:0x8 scope:local align:8 data:double +@615 = .sdata2:0x805165D0; // type:object size:0x8 scope:local align:8 data:double +@616 = .sdata2:0x805165D8; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x805165E0; // type:object size:0x8 scope:local align:8 data:double +@618 = .sdata2:0x805165E8; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x805165F0; // type:object size:0x8 scope:local align:8 data:double +@620 = .sdata2:0x805165F8; // type:object size:0x8 scope:local align:8 data:double +@621 = .sdata2:0x80516600; // type:object size:0x8 scope:local align:8 data:double +@623 = .sdata2:0x80516608; // type:object size:0x8 scope:local align:8 data:double +@2415 = .sdata2:0x80516610; // type:object size:0x4 scope:local align:4 data:string +@2416 = .sdata2:0x80516614; // type:object size:0x4 scope:local align:4 data:string +@2419 = .sdata2:0x80516618; // type:object size:0x8 scope:local align:4 data:string +@2423 = .sdata2:0x80516620; // type:object size:0x6 scope:local align:4 data:string +@2561 = .sdata2:0x80516628; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x8051662C; // type:object size:0x2 scope:local align:4 data:string +@2719 = .sdata2:0x80516630; // type:object size:0x2 scope:local align:4 data:string +@2839 = .sdata2:0x80516634; // type:object size:0x7 scope:local align:4 data:string +@2842 = .sdata2:0x8051663C; // type:object size:0x8 scope:local align:4 data:string +@2933 = .sdata2:0x80516644; // type:object size:0x1 scope:local align:4 +@3577 = .sdata2:0x80516648; // type:object size:0x5 scope:local align:4 data:string +@3710 = .sdata2:0x80516650; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata2:0x80516654; // type:object size:0x4 scope:local align:4 data:float +@2426 = .sdata2:0x80516658; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x80516660; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x80516668; // type:object size:0x8 scope:local align:8 data:double +@1054 = .sdata2:0x80516670; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata2:0x80516678; // type:object size:0x8 scope:local align:8 data:double +@1116 = .sdata2:0x80516680; // type:object size:0x8 scope:local align:8 data:double +@1117 = .sdata2:0x80516688; // type:object size:0x8 scope:local align:8 data:double +@1118 = .sdata2:0x80516690; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata2:0x80516694; // type:object size:0x4 scope:local align:4 data:float +@2523 = .sdata2:0x80516698; // type:object size:0x4 scope:local align:4 data:float +@2524 = .sdata2:0x8051669C; // type:object size:0x4 scope:local align:4 data:float +@2544 = .sdata2:0x805166A0; // type:object size:0x4 scope:local align:4 data:float +@2546 = .sdata2:0x805166A8; // type:object size:0x8 scope:local align:8 data:double +@2573 = .sdata2:0x805166B0; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata2:0x805166B4; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x805166B8; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x805166BC; // type:object size:0x4 scope:local align:4 data:float +@2577 = .sdata2:0x805166C0; // type:object size:0x4 scope:local align:4 data:float +@2578 = .sdata2:0x805166C4; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata2:0x805166C8; // type:object size:0x8 scope:local align:8 data:double +@2946 = .sdata2:0x805166D0; // type:object size:0x4 scope:local align:4 data:float +@2947 = .sdata2:0x805166D4; // type:object size:0x4 scope:local align:4 data:float +@2948 = .sdata2:0x805166D8; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x805166E0; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata2:0x805166E8; // type:object size:0x8 scope:local align:8 data:double +@653 = .sdata2:0x805166F0; // type:object size:0x8 scope:local align:8 data:double +@690 = .sdata2:0x805166F8; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x805166FC; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata2:0x80516700; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x80516708; // type:object size:0x4 scope:local align:4 data:float +@449 = .sdata2:0x8051670C; // type:object size:0x4 scope:local align:4 data:float +@451 = .sdata2:0x80516710; // type:object size:0x8 scope:local align:8 data:double +@454 = .sdata2:0x80516718; // type:object size:0x8 scope:local align:8 data:double +@709 = .sdata2:0x80516720; // type:object size:0x3 scope:local align:4 data:string +@743 = .sdata2:0x80516724; // type:object size:0x4 scope:local align:4 data:float +@374 = .sdata2:0x80516728; // type:object size:0x8 scope:local align:8 data:double +@414 = .sdata2:0x80516730; // type:object size:0x4 scope:local align:4 data:float +@325 = .sdata2:0x80516738; // type:object size:0x4 scope:local align:4 data:float +@327 = .sdata2:0x8051673C; // type:object size:0x4 scope:local align:4 data:float +@329 = .sdata2:0x80516740; // type:object size:0x4 scope:local align:4 data:float +@330 = .sdata2:0x80516744; // type:object size:0x4 scope:local align:4 data:float +@332 = .sdata2:0x80516748; // type:object size:0x4 scope:local align:4 data:float +@398 = .sdata2:0x8051674C; // type:object size:0x4 scope:local align:4 data:float +@399 = .sdata2:0x80516750; // type:object size:0x4 scope:local align:4 data:float +@437 = .sdata2:0x80516758; // type:object size:0x8 scope:local align:8 data:double +@438 = .sdata2:0x80516760; // type:object size:0x8 scope:local align:8 data:double +@439 = .sdata2:0x80516768; // type:object size:0x8 scope:local align:8 data:double +@440 = .sdata2:0x80516770; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x80516778; // type:object size:0x8 scope:local align:8 data:double +@477 = .sdata2:0x80516780; // type:object size:0x4 scope:local align:4 data:float +@472 = .sdata2:0x80516788; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x8051678C; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x80516790; // type:object size:0x4 scope:local align:4 data:float +@521 = .sdata2:0x80516794; // type:object size:0x4 scope:local align:4 data:float +@522 = .sdata2:0x80516798; // type:object size:0x4 scope:local align:4 data:float +@523 = .sdata2:0x8051679C; // type:object size:0x4 scope:local align:4 data:float +@532 = .sdata2:0x805167A0; // type:object size:0x4 scope:local align:4 data:float +@580 = .sdata2:0x805167A8; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata2:0x805167AC; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata2:0x805167B0; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x805167B8; // type:object size:0x8 scope:local align:8 data:double +@1655 = .sdata2:0x805167C0; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x805167C4; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x805167C8; // type:object size:0x8 scope:local align:8 data:double +@1841 = .sdata2:0x805167D0; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x805167D8; // type:object size:0x4 scope:local align:4 data:float +@2840 = .sdata2:0x805167DC; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata2:0x805167E0; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x805167E4; // type:object size:0x4 scope:local align:4 data:float +@3267 = .sdata2:0x805167E8; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x805167F0; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x805167F8; // type:object size:0x8 scope:local align:8 data:double +@2254 = .sdata2:0x80516800; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata2:0x80516808; // type:object size:0x8 scope:local align:8 data:double +@3076 = .sdata2:0x80516810; // type:object size:0x4 scope:local align:4 data:float +@3254 = .sdata2:0x80516814; // type:object size:0x4 scope:local align:4 data:float +@377 = .sdata2:0x80516818; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x8051681C; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x80516820; // type:object size:0x8 scope:local align:8 data:double +@784 = .sdata2:0x80516828; // type:object size:0x4 scope:local align:4 data:float +@789 = .sdata2:0x80516830; // type:object size:0x8 scope:local align:8 data:double +@911 = .sdata2:0x80516838; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x8051683C; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata2:0x80516840; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x80516844; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x80516848; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x80516850; // type:object size:0x8 scope:local align:8 data:double +@2056 = .sdata2:0x80516858; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x8051685C; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x80516860; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x80516868; // type:object size:0x8 scope:local align:8 data:double +@1851 = .sdata2:0x80516870; // type:object size:0x8 scope:local align:8 data:double +@2091 = .sdata2:0x80516878; // type:object size:0x3 scope:local align:4 data:string +@2234 = .sdata2:0x8051687C; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata2:0x80516880; // type:object size:0x8 scope:local align:8 data:double +@2180 = .sdata2:0x80516888; // type:object size:0x8 scope:local align:8 data:double +@2366 = .sdata2:0x80516890; // type:object size:0x4 scope:local align:4 data:float +@3232 = .sdata2:0x80516894; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x80516898; // type:object size:0x4 scope:local align:4 data:float +@1743 = .sdata2:0x805168A0; // type:object size:0x8 scope:local align:8 data:double +@1746 = .sdata2:0x805168A8; // type:object size:0x8 scope:local align:8 data:double +@2027 = .sdata2:0x805168B0; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x805168B4; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x805168B8; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x805168C0; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x805168C8; // type:object size:0x4 scope:local align:4 data:float +@2396 = .sdata2:0x805168CC; // type:object size:0x4 scope:local align:4 data:float +@2398 = .sdata2:0x805168D0; // type:object size:0x8 scope:local align:8 data:double +@2088 = .sdata2:0x805168D8; // type:object size:0x4 scope:local align:4 data:4byte +@2241 = .sdata2:0x805168DC; // type:object size:0x4 scope:local align:4 data:4byte +@1703 = .sdata2:0x805168E0; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x805168E4; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata2:0x805168E8; // type:object size:0x8 scope:local align:8 data:double +@3013 = .sdata2:0x805168F0; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x805168F8; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata2:0x805168FC; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata2:0x80516900; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata2:0x80516904; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x80516908; // type:object size:0x4 scope:local align:4 data:float +j2dDefaultColInfo = .sdata2:0x8051690C; // type:object size:0x4 scope:global align:4 data:4byte +j2dDefaultTevOrderInfoNull = .sdata2:0x80516910; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultIndTexOrderNull = .sdata2:0x80516914; // type:object size:0x2 scope:global align:4 data:byte +j2dDefaultTevColor = .sdata2:0x80516918; // type:object size:0x8 scope:global align:4 data:2byte +j2dDefaultIndTexCoordScaleInfo = .sdata2:0x80516920; // type:object size:0x2 scope:global align:4 data:byte +j2dDefaultTevKColor = .sdata2:0x80516924; // type:object size:0x4 scope:global align:4 data:4byte +j2dDefaultTevSwapMode = .sdata2:0x80516928; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultTevSwapModeTable = .sdata2:0x8051692C; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultBlendInfo = .sdata2:0x80516930; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultDither = .sdata2:0x80516934; // type:object size:0x1 scope:global align:1 data:byte +j2dDefaultColorChanInfo = .sdata2:0x80516938; // type:object size:0x4 scope:global align:4 +j2dDefaultTevSwapTable = .sdata2:0x8051693C; // type:object size:0x1 scope:global align:1 data:byte +j2dDefaultAlphaCmp = .sdata2:0x8051693E; // type:object size:0x2 scope:global align:2 data:2byte +@1720 = .sdata2:0x80516940; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata2:0x80516948; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x80516950; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x80516958; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x8051695C; // type:object size:0x3 scope:local align:4 data:string +@1802 = .sdata2:0x80516960; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata2:0x80516968; // type:object size:0x8 scope:local align:8 data:double +@1848 = .sdata2:0x80516970; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x80516974; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x80516978; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x8051697C; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x80516980; // type:object size:0x8 scope:local align:8 data:double +@1589 = .sdata2:0x80516988; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x8051698C; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x80516990; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x80516998; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x8051699C; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x805169A0; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x805169A8; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x805169B0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x805169B4; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x805169B8; // type:object size:0x8 scope:local align:8 data:double +j3dDefaultColInfo = .sdata2:0x805169C0; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultAmbInfo = .sdata2:0x805169C4; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultColorChanNum = .sdata2:0x805169C8; // type:object size:0x1 scope:global align:1 data:byte +j3dDefaultTevOrderInfoNull = .sdata2:0x805169CC; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultIndTexOrderNull = .sdata2:0x805169D0; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevColor = .sdata2:0x805169D4; // type:object size:0x8 scope:global align:4 data:2byte +j3dDefaultIndTexCoordScaleInfo = .sdata2:0x805169DC; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevKColor = .sdata2:0x805169E0; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevSwapMode = .sdata2:0x805169E4; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevSwapModeTable = .sdata2:0x805169E8; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultBlendInfo = .sdata2:0x805169EC; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultColorChanInfo = .sdata2:0x805169F0; // type:object size:0x8 scope:global align:4 data:byte +j3dDefaultTevSwapTableID = .sdata2:0x805169F8; // type:object size:0x1 scope:global align:1 data:byte +j3dDefaultAlphaCmpID = .sdata2:0x805169FA; // type:object size:0x2 scope:global align:2 data:2byte +j3dDefaultZModeID = .sdata2:0x805169FC; // type:object size:0x2 scope:global align:2 data:2byte +@1337 = .sdata2:0x80516A00; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x80516A04; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x80516A08; // type:object size:0x8 scope:local align:8 data:double +@1474 = .sdata2:0x80516A10; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x80516A18; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x80516A1C; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata2:0x80516A20; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata2:0x80516A28; // type:object size:0x8 scope:local align:8 data:double +@1701 = .sdata2:0x80516A30; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x80516A34; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x80516A38; // type:object size:0x8 scope:local align:8 data:double +@2236 = .sdata2:0x80516A40; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x80516A44; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata2:0x80516A48; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x80516A4C; // type:object size:0x8 scope:local align:4 data:4byte +@1676 = .sdata2:0x80516A54; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x80516A58; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x80516A5C; // type:object size:0x4 scope:local align:4 data:float +@1832 = .sdata2:0x80516A60; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata2:0x80516A64; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x80516A68; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x80516A6C; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x80516A70; // type:object size:0x8 scope:local align:8 data:double +@1514 = .sdata2:0x80516A78; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x80516A7C; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x80516A80; // type:object size:0x4 scope:local align:4 data:4byte +@2524 = .sdata2:0x80516A84; // type:object size:0x4 scope:local align:4 data:4byte +@2662 = .sdata2:0x80516A88; // type:object size:0x4 scope:local align:4 data:4byte +@1672 = .sdata2:0x80516A90; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x80516A98; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x80516A9C; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x80516AA0; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x80516AA4; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x80516AA8; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata2:0x80516AB0; // type:object size:0x8 scope:local align:8 data:double +@1459 = .sdata2:0x80516AB8; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata2:0x80516AC0; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x80516AC8; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x80516AD0; // type:object size:0x8 scope:local align:8 data:double +@872 = .sdata2:0x80516AD8; // type:object size:0x4 scope:local align:4 data:4byte +@5842 = .sdata2:0x80516ADC; // type:object size:0x4 scope:local align:4 data:float +@1822 = .sdata2:0x80516AE0; // type:object size:0x4 scope:local align:4 data:4byte +@2027 = .sdata2:0x80516AE4; // type:object size:0x4 scope:local align:4 data:4byte +@1657 = .sdata2:0x80516AE8; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x80516AEC; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x80516AF0; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x80516AF8; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x80516AFC; // type:object size:0x4 scope:local align:4 data:float +@2473 = .sdata2:0x80516B00; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata2:0x80516B04; // type:object size:0x4 scope:local align:4 data:float +@2476 = .sdata2:0x80516B08; // type:object size:0x8 scope:local align:8 data:double +@2428 = .sdata2:0x80516B10; // type:object size:0x4 scope:local align:4 data:float +@2984 = .sdata2:0x80516B14; // type:object size:0x4 scope:local align:4 data:float +@2985 = .sdata2:0x80516B18; // type:object size:0x4 scope:local align:4 data:float +@2987 = .sdata2:0x80516B20; // type:object size:0x8 scope:local align:8 data:double +@3870 = .sdata2:0x80516B28; // type:object size:0x8 scope:local align:8 data:double +@3902 = .sdata2:0x80516B30; // type:object size:0x8 scope:local align:8 data:double +@2492 = .sdata2:0x80516B38; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata2:0x80516B40; // type:object size:0x8 scope:local align:8 data:double +@2970 = .sdata2:0x80516B48; // type:object size:0x4 scope:local align:4 data:float +@2971 = .sdata2:0x80516B4C; // type:object size:0x4 scope:local align:4 data:float +@2972 = .sdata2:0x80516B50; // type:object size:0x4 scope:local align:4 data:float +@2974 = .sdata2:0x80516B58; // type:object size:0x8 scope:local align:8 data:double +@3363 = .sdata2:0x80516B60; // type:object size:0x4 scope:local align:4 data:float +@3364 = .sdata2:0x80516B64; // type:object size:0x4 scope:local align:4 data:float +@3477 = .sdata2:0x80516B68; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x80516B6C; // type:object size:0x4 scope:local align:4 data:float +@2548 = .sdata2:0x80516B70; // type:object size:0x4 scope:local align:4 data:float +@2549 = .sdata2:0x80516B74; // type:object size:0x4 scope:local align:4 data:float +@2517 = .sdata2:0x80516B78; // type:object size:0x4 scope:local align:4 data:float +@2518 = .sdata2:0x80516B7C; // type:object size:0x4 scope:local align:4 data:float +@2519 = .sdata2:0x80516B80; // type:object size:0x4 scope:local align:4 data:float +@2551 = .sdata2:0x80516B88; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x80516B90; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x80516B98; // type:object size:0x8 scope:local align:8 data:double +@2659 = .sdata2:0x80516BA0; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata2:0x80516BA4; // type:object size:0x4 scope:local align:4 data:float +@2661 = .sdata2:0x80516BA8; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata2:0x80516BAC; // type:object size:0x4 scope:local align:4 data:float +@2663 = .sdata2:0x80516BB0; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata2:0x80516BB8; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata2:0x80516BBC; // type:object size:0x4 scope:local align:4 data:float +@2886 = .sdata2:0x80516BC0; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata2:0x80516BC4; // type:object size:0x4 scope:local align:4 data:float +@2888 = .sdata2:0x80516BC8; // type:object size:0x4 scope:local align:4 data:float +@2500 = .sdata2:0x80516BD0; // type:object size:0x4 scope:local align:4 data:float +@2542 = .sdata2:0x80516BD8; // type:object size:0x8 scope:local align:8 data:double +@2569 = .sdata2:0x80516BE0; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata2:0x80516BE4; // type:object size:0x4 scope:local align:4 data:float +@2661 = .sdata2:0x80516BE8; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata2:0x80516BEC; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x80516BF0; // type:object size:0x4 scope:local align:4 data:float +@2538 = .sdata2:0x80516BF8; // type:object size:0x4 scope:local align:4 data:float +@2539 = .sdata2:0x80516BFC; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata2:0x80516C00; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata2:0x80516C04; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata2:0x80516C08; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata2:0x80516C0C; // type:object size:0x4 scope:local align:4 data:float +@2445 = .sdata2:0x80516C10; // type:object size:0x8 scope:local align:8 data:double +@2423 = .sdata2:0x80516C18; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata2:0x80516C1C; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata2:0x80516C20; // type:object size:0x4 scope:local align:4 data:float +@2468 = .sdata2:0x80516C24; // type:object size:0x4 scope:local align:4 data:float +@2469 = .sdata2:0x80516C28; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata2:0x80516C30; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata2:0x80516C34; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x80516C38; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x80516C3C; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x80516C40; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x80516C44; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x80516C48; // type:object size:0x8 scope:local align:8 data:double +@2781 = .sdata2:0x80516C50; // type:object size:0x8 scope:local align:8 data:double +@3423 = .sdata2:0x80516C58; // type:object size:0x4 scope:local align:4 data:float +@3424 = .sdata2:0x80516C5C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x80516C60; // type:object size:0x4 scope:local align:4 data:float +@3426 = .sdata2:0x80516C64; // type:object size:0x4 scope:local align:4 data:float +@3428 = .sdata2:0x80516C68; // type:object size:0x8 scope:local align:8 data:double +@318 = .sdata2:0x80516C70; // type:object size:0x4 scope:local align:4 data:float +@337 = .sdata2:0x80516C78; // type:object size:0x4 scope:local align:4 data:float +@342 = .sdata2:0x80516C80; // type:object size:0x4 scope:local align:4 data:float +@817 = .sdata2:0x80516C88; // type:object size:0x4 scope:local align:4 data:float +@818 = .sdata2:0x80516C8C; // type:object size:0x4 scope:local align:4 data:float +@819 = .sdata2:0x80516C90; // type:object size:0x4 scope:local align:4 data:float +@820 = .sdata2:0x80516C94; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x80516C98; // type:object size:0x8 scope:local align:8 data:double +@859 = .sdata2:0x80516CA0; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x80516CA8; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x80516CB0; // type:object size:0x8 scope:local align:8 data:double +@890 = .sdata2:0x80516CB8; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x80516CBC; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x80516CC0; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x80516CC8; // type:object size:0x8 scope:local align:8 data:double +@945 = .sdata2:0x80516CD0; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x80516CD8; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata2:0x80516CDC; // type:object size:0x4 scope:local align:4 data:float +@670 = .sdata2:0x80516CE0; // type:object size:0x8 scope:local align:8 data:double +@685 = .sdata2:0x80516CE8; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x80516CF0; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata2:0x80516CF4; // type:object size:0x4 scope:local align:4 data:float +@630 = .sdata2:0x80516CF8; // type:object size:0x4 scope:local align:4 data:float +@631 = .sdata2:0x80516CFC; // type:object size:0x4 scope:local align:4 data:float +@634 = .sdata2:0x80516D00; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x80516D08; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x80516D10; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x80516D18; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x80516D1C; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x80516D20; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata2:0x80516D24; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x80516D28; // type:object size:0x8 scope:local align:8 data:double +@986 = .sdata2:0x80516D30; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x80516D38; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x80516D40; // type:object size:0x7 scope:local align:4 data:4byte +@1015 = .sdata2:0x80516D48; // type:object size:0x7 scope:local align:4 data:4byte +@1043 = .sdata2:0x80516D50; // type:object size:0x4 scope:local align:4 data:float +@1045 = .sdata2:0x80516D58; // type:object size:0x8 scope:local align:8 data:double +@1058 = .sdata2:0x80516D60; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x80516D64; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x80516D68; // type:object size:0x4 scope:local align:4 data:float +@1080 = .sdata2:0x80516D6C; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata2:0x80516D70; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x80516D78; // type:object size:0x4 scope:local align:4 data:float +@854 = .sdata2:0x80516D7C; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata2:0x80516D80; // type:object size:0x8 scope:local align:8 data:double +@1026 = .sdata2:0x80516D88; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata2:0x80516D8C; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x80516D90; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x80516D94; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x80516D98; // type:object size:0x4 scope:local align:4 data:float +@1566 = .sdata2:0x80516D9C; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x80516DA0; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x80516DA8; // type:object size:0x8 scope:local align:8 data:double +@2515 = .sdata2:0x80516DB0; // type:object size:0x4 scope:local align:4 data:float +@2522 = .sdata2:0x80516DB8; // type:object size:0x8 scope:local align:8 data:double +@2523 = .sdata2:0x80516DC0; // type:object size:0x4 scope:local align:4 data:float +@2540 = .sdata2:0x80516DC4; // type:object size:0x4 scope:local align:4 data:float +@2541 = .sdata2:0x80516DC8; // type:object size:0x4 scope:local align:4 data:float +@2542 = .sdata2:0x80516DCC; // type:object size:0x4 scope:local align:4 data:float +@2543 = .sdata2:0x80516DD0; // type:object size:0x4 scope:local align:4 data:float +@387 = .sdata2:0x80516DD8; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x80516DDC; // type:object size:0x4 scope:local align:4 data:float +@452 = .sdata2:0x80516DE0; // type:object size:0x4 scope:local align:4 data:float +@453 = .sdata2:0x80516DE4; // type:object size:0x4 scope:local align:4 data:float +@455 = .sdata2:0x80516DE8; // type:object size:0x8 scope:local align:8 data:double +@570 = .sdata2:0x80516DF0; // type:object size:0x4 scope:local align:4 data:float +@571 = .sdata2:0x80516DF8; // type:object size:0x8 scope:local align:8 data:double +@572 = .sdata2:0x80516E00; // type:object size:0x4 scope:local align:4 data:float +@576 = .sdata2:0x80516E08; // type:object size:0x8 scope:local align:8 data:double +@457 = .sdata2:0x80516E10; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x80516E14; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x80516E18; // type:object size:0x4 scope:local align:4 data:float +@572 = .sdata2:0x80516E20; // type:object size:0x8 scope:local align:8 data:double +@761 = .sdata2:0x80516E28; // type:object size:0x4 scope:local align:4 data:float +@867 = .sdata2:0x80516E2C; // type:object size:0x4 scope:local align:4 data:float +@869 = .sdata2:0x80516E30; // type:object size:0x8 scope:local align:8 data:double +@980 = .sdata2:0x80516E38; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x80516E3C; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x80516E40; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x80516E44; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata2:0x80516E48; // type:object size:0x4 scope:local align:4 data:float +@345 = .sdata2:0x80516E50; // type:object size:0x4 scope:local align:4 data:float +@386 = .sdata2:0x80516E58; // type:object size:0x8 scope:local align:8 data:double +@485 = .sdata2:0x80516E60; // type:object size:0x8 scope:local align:4 data:string +@667 = .sdata2:0x80516E68; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x80516E6C; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata2:0x80516E70; // type:object size:0x4 scope:local align:4 data:float +@671 = .sdata2:0x80516E78; // type:object size:0x8 scope:local align:8 data:double +@457 = .sdata2:0x80516E80; // type:object size:0x4 scope:local align:4 data:float +@460 = .sdata2:0x80516E88; // type:object size:0x8 scope:local align:8 data:double +@602 = .sdata2:0x80516E90; // type:object size:0x7 scope:local align:4 data:string +@603 = .sdata2:0x80516E98; // type:object size:0x7 scope:local align:4 data:string +@368 = .sdata2:0x80516EA0; // type:object size:0x4 scope:local align:4 data:float +@369 = .sdata2:0x80516EA4; // type:object size:0x4 scope:local align:4 data:float +@370 = .sdata2:0x80516EA8; // type:object size:0x4 scope:local align:4 data:float +@452 = .sdata2:0x80516EB0; // type:object size:0x4 scope:local align:4 data:float +@453 = .sdata2:0x80516EB4; // type:object size:0x4 scope:local align:4 data:float +@454 = .sdata2:0x80516EB8; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata2:0x80516EBC; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata2:0x80516EC0; // type:object size:0x8 scope:local align:8 data:double +one$870 = .sdata2:0x80516EC8; // type:object size:0x4 scope:local align:4 +@333 = .sdata2:0x80516ED0; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x80516ED8; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x80516EDC; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x80516EE0; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata2:0x80516EE4; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata2:0x80516EE8; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata2:0x80516EF0; // type:object size:0x8 scope:local align:8 data:double +@1306 = .sdata2:0x80516EF8; // type:object size:0x8 scope:local align:8 data:double +@1335 = .sdata2:0x80516F00; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x80516F08; // type:object size:0x7 scope:local align:4 data:string +@986 = .sdata2:0x80516F10; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x80516F14; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x80516F18; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x80516F1C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x80516F20; // type:object size:0x8 scope:local align:8 data:double +@1342 = .sdata2:0x80516F28; // type:object size:0x7 scope:local align:4 data:string +@1343 = .sdata2:0x80516F30; // type:object size:0x6 scope:local align:4 data:string +@1344 = .sdata2:0x80516F38; // type:object size:0x8 scope:local align:4 data:string +@869 = .sdata2:0x80516F40; // type:object size:0x7 scope:local align:4 data:string +@1076 = .sdata2:0x80516F48; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x80516F4C; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x80516F50; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x80516F54; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x80516F58; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x80516F60; // type:object size:0x8 scope:local align:8 data:double +@1527 = .sdata2:0x80516F68; // type:object size:0x8 scope:local align:8 data:double +@1528 = .sdata2:0x80516F70; // type:object size:0x8 scope:local align:8 data:double +@1529 = .sdata2:0x80516F78; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata2:0x80516F7C; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x80516F80; // type:object size:0x8 scope:local align:8 data:double +@1716 = .sdata2:0x80516F88; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x80516F8C; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x80516F90; // type:object size:0x8 scope:local align:8 data:double +@1853 = .sdata2:0x80516F98; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x80516FA0; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x80516FA4; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x80516FA8; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x80516FAC; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x80516FB0; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata2:0x80516FB8; // type:object size:0x8 scope:local align:8 data:double +@2191 = .sdata2:0x80516FC0; // type:object size:0x8 scope:local align:8 data:double +@2192 = .sdata2:0x80516FC8; // type:object size:0x8 scope:local align:8 data:double +@2193 = .sdata2:0x80516FD0; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x80516FD8; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x80516FE0; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x80516FE4; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x80516FE8; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x80516FF0; // type:object size:0x8 scope:local align:8 data:double +@1183 = .sdata2:0x80516FF8; // type:object size:0x8 scope:local align:8 data:double +@1184 = .sdata2:0x80517000; // type:object size:0x8 scope:local align:8 data:double +@1185 = .sdata2:0x80517008; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x80517010; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x80517014; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata2:0x80517018; // type:object size:0x8 scope:local align:8 data:double +@1208 = .sdata2:0x80517020; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x80517024; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x80517028; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x8051702C; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x80517030; // type:object size:0x4 scope:local align:4 data:float +@2185 = .sdata2:0x80517034; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata2:0x80517038; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x80517040; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x80517044; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x80517048; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x80517050; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x80517058; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x8051705C; // type:object size:0x4 scope:local align:4 data:float +@1206 = .sdata2:0x80517060; // type:object size:0x8 scope:local align:8 data:double +@1207 = .sdata2:0x80517068; // type:object size:0x8 scope:local align:8 data:double +@1208 = .sdata2:0x80517070; // type:object size:0x8 scope:local align:8 data:double +cEqualCSlope__7JALCalc = .sdata2:0x80517078; // type:object size:0x4 scope:global align:4 data:float +cEqualPSlope__7JALCalc = .sdata2:0x8051707C; // type:object size:0x4 scope:global align:4 data:float +@462 = .sdata2:0x80517080; // type:object size:0x4 scope:local align:4 data:float +@463 = .sdata2:0x80517084; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata2:0x80517088; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata2:0x8051708C; // type:object size:0x4 scope:local align:4 data:float +@2688 = .sdata2:0x80517090; // type:object size:0x2 scope:local align:4 +@824 = .sdata2:0x80517098; // type:object size:0x8 scope:local align:8 data:double +@825 = .sdata2:0x805170A0; // type:object size:0x8 scope:local align:8 data:double +@826 = .sdata2:0x805170A8; // type:object size:0x8 scope:local align:8 data:double +@827 = .sdata2:0x805170B0; // type:object size:0x8 scope:local align:8 data:double +@830 = .sdata2:0x805170B8; // type:object size:0x8 scope:local align:8 data:double +@831 = .sdata2:0x805170C0; // type:object size:0x8 scope:local align:8 data:double +@74 = .sdata2:0x805170C8; // type:object size:0x4 scope:local align:4 data:4byte +@1089 = .sdata2:0x805170D0; // type:object size:0x8 scope:local align:8 data:double +@76 = .sdata2:0x805170D8; // type:object size:0x5 scope:local align:4 data:4byte +@301 = .sdata2:0x805170E0; // type:object size:0x8 scope:local align:8 data:double +@618 = .sdata2:0x805170E8; // type:object size:0x8 scope:local align:8 data:double +@94 = .sdata2:0x805170F0; // type:object size:0x8 scope:local align:8 data:double +@95 = .sdata2:0x805170F8; // type:object size:0x8 scope:local align:8 data:double +@96 = .sdata2:0x80517100; // type:object size:0x8 scope:local align:8 data:double +@97 = .sdata2:0x80517108; // type:object size:0x8 scope:local align:8 data:double +@98 = .sdata2:0x80517110; // type:object size:0x8 scope:local align:8 data:double +@99 = .sdata2:0x80517118; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x80517120; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x80517128; // type:object size:0x8 scope:local align:8 data:double +@102 = .sdata2:0x80517130; // type:object size:0x8 scope:local align:8 data:double +@103 = .sdata2:0x80517138; // type:object size:0x8 scope:local align:8 data:double +@104 = .sdata2:0x80517140; // type:object size:0x8 scope:local align:8 data:double +@105 = .sdata2:0x80517148; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x80517150; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x80517158; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x80517160; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x80517168; // type:object size:0x8 scope:local align:8 data:double +@110 = .sdata2:0x80517170; // type:object size:0x8 scope:local align:8 data:double +@145 = .sdata2:0x80517178; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x80517180; // type:object size:0x8 scope:local align:8 data:double +@147 = .sdata2:0x80517188; // type:object size:0x8 scope:local align:8 data:double +@148 = .sdata2:0x80517190; // type:object size:0x8 scope:local align:8 data:double +@149 = .sdata2:0x80517198; // type:object size:0x8 scope:local align:8 data:double +@150 = .sdata2:0x805171A0; // type:object size:0x8 scope:local align:8 data:double +@151 = .sdata2:0x805171A8; // type:object size:0x8 scope:local align:8 data:double +@152 = .sdata2:0x805171B0; // type:object size:0x8 scope:local align:8 data:double +@153 = .sdata2:0x805171B8; // type:object size:0x8 scope:local align:8 data:double +@154 = .sdata2:0x805171C0; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x805171C8; // type:object size:0x8 scope:local align:8 data:double +@115 = .sdata2:0x805171D0; // type:object size:0x8 scope:local align:8 data:double +@116 = .sdata2:0x805171D8; // type:object size:0x8 scope:local align:8 data:double +@117 = .sdata2:0x805171E0; // type:object size:0x8 scope:local align:8 data:double +@118 = .sdata2:0x805171E8; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x805171F0; // type:object size:0x8 scope:local align:8 data:double +@120 = .sdata2:0x805171F8; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x80517200; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x80517208; // type:object size:0x8 scope:local align:8 data:double +@123 = .sdata2:0x80517210; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x80517218; // type:object size:0x8 scope:local align:8 data:double +@125 = .sdata2:0x80517220; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x80517228; // type:object size:0x8 scope:local align:8 data:double +@127 = .sdata2:0x80517230; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x80517238; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x80517240; // type:object size:0x8 scope:local align:8 data:double +@110 = .sdata2:0x80517248; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x80517250; // type:object size:0x8 scope:local align:8 data:double +@112 = .sdata2:0x80517258; // type:object size:0x8 scope:local align:8 data:double +@113 = .sdata2:0x80517260; // type:object size:0x8 scope:local align:8 data:double +@114 = .sdata2:0x80517268; // type:object size:0x8 scope:local align:8 data:double +@115 = .sdata2:0x80517270; // type:object size:0x8 scope:local align:8 data:double +@116 = .sdata2:0x80517278; // type:object size:0x8 scope:local align:8 data:double +@117 = .sdata2:0x80517280; // type:object size:0x8 scope:local align:8 data:double +@118 = .sdata2:0x80517288; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x80517290; // type:object size:0x8 scope:local align:8 data:double +@120 = .sdata2:0x80517298; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x805172A0; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x805172A8; // type:object size:0x8 scope:local align:8 data:double +@123 = .sdata2:0x805172B0; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x805172B8; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x805172C0; // type:object size:0x8 scope:local align:8 data:double +@63 = .sdata2:0x805172C8; // type:object size:0x8 scope:local align:8 data:double +@64 = .sdata2:0x805172D0; // type:object size:0x8 scope:local align:8 data:double +@65 = .sdata2:0x805172D8; // type:object size:0x8 scope:local align:8 data:double +@66 = .sdata2:0x805172E0; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x805172E8; // type:object size:0x8 scope:local align:8 data:double +@69 = .sdata2:0x805172F0; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x805172F8; // type:object size:0x8 scope:local align:8 data:double +@337 = .sdata2:0x80517300; // type:object size:0x8 scope:local align:8 data:double +@338 = .sdata2:0x80517308; // type:object size:0x8 scope:local align:8 data:double +@339 = .sdata2:0x80517310; // type:object size:0x8 scope:local align:8 data:double +@340 = .sdata2:0x80517318; // type:object size:0x8 scope:local align:8 data:double +@341 = .sdata2:0x80517320; // type:object size:0x8 scope:local align:8 data:double +@342 = .sdata2:0x80517328; // type:object size:0x8 scope:local align:8 data:double +@343 = .sdata2:0x80517330; // type:object size:0x8 scope:local align:8 data:double +@344 = .sdata2:0x80517338; // type:object size:0x8 scope:local align:8 data:double +@345 = .sdata2:0x80517340; // type:object size:0x8 scope:local align:8 data:double +@346 = .sdata2:0x80517348; // type:object size:0x8 scope:local align:8 data:double +@347 = .sdata2:0x80517350; // type:object size:0x8 scope:local align:8 data:double +@348 = .sdata2:0x80517358; // type:object size:0x8 scope:local align:8 data:double +@349 = .sdata2:0x80517360; // type:object size:0x8 scope:local align:8 data:double +@350 = .sdata2:0x80517368; // type:object size:0x8 scope:local align:8 data:double +@351 = .sdata2:0x80517370; // type:object size:0x8 scope:local align:8 data:double +@352 = .sdata2:0x80517378; // type:object size:0x8 scope:local align:8 data:double +@353 = .sdata2:0x80517380; // type:object size:0x8 scope:local align:8 data:double +@354 = .sdata2:0x80517388; // type:object size:0x8 scope:local align:8 data:double +@355 = .sdata2:0x80517390; // type:object size:0x8 scope:local align:8 data:double +@356 = .sdata2:0x80517398; // type:object size:0x8 scope:local align:8 data:double +@357 = .sdata2:0x805173A0; // type:object size:0x8 scope:local align:8 data:double +@358 = .sdata2:0x805173A8; // type:object size:0x8 scope:local align:8 data:double +@359 = .sdata2:0x805173B0; // type:object size:0x8 scope:local align:8 data:double +@360 = .sdata2:0x805173B8; // type:object size:0x8 scope:local align:8 data:double +@361 = .sdata2:0x805173C0; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x805173C8; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x805173D0; // type:object size:0x8 scope:local align:8 data:double +@364 = .sdata2:0x805173D8; // type:object size:0x8 scope:local align:8 data:double +@365 = .sdata2:0x805173E0; // type:object size:0x8 scope:local align:8 data:double +@366 = .sdata2:0x805173E8; // type:object size:0x8 scope:local align:8 data:double +@367 = .sdata2:0x805173F0; // type:object size:0x8 scope:local align:8 data:double +@368 = .sdata2:0x805173F8; // type:object size:0x8 scope:local align:8 data:double +@370 = .sdata2:0x80517400; // type:object size:0x8 scope:local align:8 data:double +@145 = .sdata2:0x80517408; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x80517410; // type:object size:0x8 scope:local align:8 data:double +@147 = .sdata2:0x80517418; // type:object size:0x8 scope:local align:8 data:double +@148 = .sdata2:0x80517420; // type:object size:0x8 scope:local align:8 data:double +@149 = .sdata2:0x80517428; // type:object size:0x8 scope:local align:8 data:double +@150 = .sdata2:0x80517430; // type:object size:0x8 scope:local align:8 data:double +@151 = .sdata2:0x80517438; // type:object size:0x8 scope:local align:8 data:double +@152 = .sdata2:0x80517440; // type:object size:0x8 scope:local align:8 data:double +@153 = .sdata2:0x80517448; // type:object size:0x8 scope:local align:8 data:double +@154 = .sdata2:0x80517450; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x80517458; // type:object size:0x8 scope:local align:8 data:double +@65 = .sdata2:0x80517460; // type:object size:0x8 scope:local align:8 data:double +@66 = .sdata2:0x80517468; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x80517470; // type:object size:0x8 scope:local align:8 data:double +@68 = .sdata2:0x80517478; // type:object size:0x8 scope:local align:8 data:double +@69 = .sdata2:0x80517480; // type:object size:0x8 scope:local align:8 data:double +@70 = .sdata2:0x80517488; // type:object size:0x8 scope:local align:8 data:double +@71 = .sdata2:0x80517490; // type:object size:0x8 scope:local align:8 data:double +@72 = .sdata2:0x80517498; // type:object size:0x8 scope:local align:8 data:double +@73 = .sdata2:0x805174A0; // type:object size:0x8 scope:local align:8 data:double +@436 = .sdata2:0x805174A8; // type:object size:0x8 scope:local align:8 data:double +@437 = .sdata2:0x805174B0; // type:object size:0x8 scope:local align:8 data:double +@438 = .sdata2:0x805174B8; // type:object size:0x8 scope:local align:8 data:double +@439 = .sdata2:0x805174C0; // type:object size:0x8 scope:local align:8 data:double +@440 = .sdata2:0x805174C8; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x805174D0; // type:object size:0x8 scope:local align:8 data:double +@442 = .sdata2:0x805174D8; // type:object size:0x8 scope:local align:8 data:double +@445 = .sdata2:0x805174E0; // type:object size:0x8 scope:local align:8 data:double +@60 = .sdata2:0x805174E8; // type:object size:0x8 scope:local align:8 data:double +@61 = .sdata2:0x805174F0; // type:object size:0x8 scope:local align:8 data:double +@62 = .sdata2:0x805174F8; // type:object size:0x8 scope:local align:8 data:double +@63 = .sdata2:0x80517500; // type:object size:0x8 scope:local align:8 data:double +@64 = .sdata2:0x80517508; // type:object size:0x8 scope:local align:8 data:double +@65 = .sdata2:0x80517510; // type:object size:0x8 scope:local align:8 data:double +@66 = .sdata2:0x80517518; // type:object size:0x8 scope:local align:8 data:double +@94 = .sdata2:0x80517520; // type:object size:0x8 scope:local align:8 data:double +@95 = .sdata2:0x80517528; // type:object size:0x8 scope:local align:8 data:double +@96 = .sdata2:0x80517530; // type:object size:0x8 scope:local align:8 data:double +@97 = .sdata2:0x80517538; // type:object size:0x8 scope:local align:8 data:double +@98 = .sdata2:0x80517540; // type:object size:0x8 scope:local align:8 data:double +@99 = .sdata2:0x80517548; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x80517550; // type:object size:0x8 scope:local align:8 data:double +@115 = .sdata2:0x80517558; // type:object size:0x8 scope:local align:8 data:double +@116 = .sdata2:0x80517560; // type:object size:0x8 scope:local align:8 data:double +@117 = .sdata2:0x80517568; // type:object size:0x8 scope:local align:8 data:double +@118 = .sdata2:0x80517570; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x80517578; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x80517580; // type:object size:0x8 scope:local align:8 data:double +@125 = .sdata2:0x80517588; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x80517590; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x80517598; // type:object size:0x8 scope:local align:8 data:double +@125 = .sdata2:0x805175A0; // type:object size:0x8 scope:local align:8 data:double +@57 = .sdata2:0x805175A8; // type:object size:0x8 scope:local align:8 data:double +@91 = .sdata2:0x805175B0; // type:object size:0x8 scope:local align:8 data:double +@92 = .sdata2:0x805175B8; // type:object size:0x8 scope:local align:8 data:double +@93 = .sdata2:0x805175C0; // type:object size:0x8 scope:local align:8 data:double +@94 = .sdata2:0x805175C8; // type:object size:0x8 scope:local align:8 data:double +@95 = .sdata2:0x805175D0; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x805175D8; // type:object size:0x8 scope:local align:8 data:double +@58 = .sdata2:0x805175E0; // type:object size:0x8 scope:local align:8 data:double +@164 = .sdata2:0x805175E8; // type:object size:0x8 scope:local align:8 data:double +__GXData = .sdata2:0x805175F0; // type:object size:0x4 scope:global align:4 data:4byte +@289 = .sdata2:0x805175F4; // type:object size:0x4 scope:local align:4 data:float +@290 = .sdata2:0x805175F8; // type:object size:0x4 scope:local align:4 data:float +@291 = .sdata2:0x805175FC; // type:object size:0x4 scope:local align:4 data:4byte +@292 = .sdata2:0x80517600; // type:object size:0x4 scope:local align:4 data:4byte +@293 = .sdata2:0x80517604; // type:object size:0x4 scope:local align:4 data:4byte +@353 = .sdata2:0x80517608; // type:object size:0x4 scope:local align:4 data:float +@354 = .sdata2:0x8051760C; // type:object size:0x4 scope:local align:4 data:float +@356 = .sdata2:0x80517610; // type:object size:0x8 scope:local align:8 data:double +@179 = .sdata2:0x80517618; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata2:0x80517620; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x80517628; // type:object size:0x4 scope:local align:4 data:float +@135 = .sdata2:0x8051762C; // type:object size:0x4 scope:local align:4 data:float +@136 = .sdata2:0x80517630; // type:object size:0x4 scope:local align:4 data:float +@137 = .sdata2:0x80517634; // type:object size:0x4 scope:local align:4 data:float +@138 = .sdata2:0x80517638; // type:object size:0x4 scope:local align:4 data:float +@139 = .sdata2:0x8051763C; // type:object size:0x4 scope:local align:4 data:float +@140 = .sdata2:0x80517640; // type:object size:0x4 scope:local align:4 data:float +@141 = .sdata2:0x80517644; // type:object size:0x4 scope:local align:4 data:float +@142 = .sdata2:0x80517648; // type:object size:0x4 scope:local align:4 data:float +@143 = .sdata2:0x8051764C; // type:object size:0x4 scope:local align:4 data:float +@144 = .sdata2:0x80517650; // type:object size:0x4 scope:local align:4 data:float +@160 = .sdata2:0x80517654; // type:object size:0x4 scope:local align:4 data:float +@177 = .sdata2:0x80517658; // type:object size:0x8 scope:local align:8 data:double +@178 = .sdata2:0x80517660; // type:object size:0x8 scope:local align:8 data:double +@179 = .sdata2:0x80517668; // type:object size:0x4 scope:local align:4 data:float +@220 = .sdata2:0x80517670; // type:object size:0x4 scope:local align:4 data:float +@222 = .sdata2:0x80517678; // type:object size:0x8 scope:local align:8 data:double +@288 = .sdata2:0x80517680; // type:object size:0x4 scope:local align:4 data:float +@289 = .sdata2:0x80517684; // type:object size:0x4 scope:local align:4 data:float +@290 = .sdata2:0x80517688; // type:object size:0x4 scope:local align:4 data:float +@291 = .sdata2:0x8051768C; // type:object size:0x4 scope:local align:4 data:float +@292 = .sdata2:0x80517690; // type:object size:0x4 scope:local align:4 data:float +@293 = .sdata2:0x80517694; // type:object size:0x4 scope:local align:4 data:float +@149 = .sdata2:0x80517698; // type:object size:0x4 scope:local align:4 data:float +@221 = .sdata2:0x805176A0; // type:object size:0x4 scope:local align:4 data:float +@222 = .sdata2:0x805176A4; // type:object size:0x4 scope:local align:4 data:float +@223 = .sdata2:0x805176A8; // type:object size:0x4 scope:local align:4 data:float +@224 = .sdata2:0x805176B0; // type:object size:0x8 scope:local align:8 data:double +@225 = .sdata2:0x805176B8; // type:object size:0x4 scope:local align:4 data:float +@226 = .sdata2:0x805176C0; // type:object size:0x8 scope:local align:8 data:double +@227 = .sdata2:0x805176C8; // type:object size:0x4 scope:local align:4 data:float +@229 = .sdata2:0x805176D0; // type:object size:0x8 scope:local align:8 data:double +@252 = .sdata2:0x805176D8; // type:object size:0x8 scope:local align:8 data:double +@253 = .sdata2:0x805176E0; // type:object size:0x4 scope:local align:4 data:float +@254 = .sdata2:0x805176E8; // type:object size:0x8 scope:local align:8 data:double +@255 = .sdata2:0x805176F0; // type:object size:0x4 scope:local align:4 data:float +@257 = .sdata2:0x805176F8; // type:object size:0x8 scope:local align:8 data:double +@26 = .sdata2:0x80517700; // type:object size:0x4 scope:local align:4 data:float +@28 = .sdata2:0x80517704; // type:object size:0x4 scope:local align:4 data:float +@201 = .sdata2:0x80517708; // type:object size:0x4 scope:local align:4 data:float +@96 = .sdata2:0x80517710; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x80517714; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x80517718; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x8051771C; // type:object size:0x4 scope:local align:4 data:float +@206 = .sdata2:0x80517720; // type:object size:0x4 scope:local align:4 data:float +@227 = .sdata2:0x80517724; // type:object size:0x4 scope:local align:4 data:float +@230 = .sdata2:0x80517728; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x80517730; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x80517734; // type:object size:0x4 scope:local align:4 data:float +@101 = .sdata2:0x80517738; // type:object size:0x4 scope:local align:4 data:float +@102 = .sdata2:0x8051773C; // type:object size:0x4 scope:local align:4 data:float +@105 = .sdata2:0x80517740; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x80517744; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x80517748; // type:object size:0x4 scope:local align:4 data:float +@119 = .sdata2:0x8051774C; // type:object size:0x4 scope:local align:4 data:float +@153 = .sdata2:0x80517750; // type:object size:0x8 scope:local align:4 data:4byte +@160 = .sdata2:0x80517758; // type:object size:0x4 scope:local align:4 data:float +@161 = .sdata2:0x80517760; // type:object size:0x8 scope:local align:8 data:double +@162 = .sdata2:0x80517768; // type:object size:0x8 scope:local align:8 data:double +@164 = .sdata2:0x80517770; // type:object size:0x8 scope:local align:8 data:double +@244 = .sdata2:0x80517778; // type:object size:0x8 scope:local align:8 data:double +@666 = .sdata2:0x80517780; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x80517784; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x80517788; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata2:0x8051778C; // type:object size:0x4 scope:local align:4 data:float +@670 = .sdata2:0x80517790; // type:object size:0x4 scope:local align:4 data:float +@4123 = .sdata2:0x80517798; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x8051779C; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x805177A0; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x805177A4; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x805177A8; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x805177AC; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x805177B0; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x805177B8; // type:object size:0x8 scope:local align:8 data:double +@4288 = .sdata2:0x805177C0; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x805177C4; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x805177C8; // type:object size:0x4 scope:local align:4 data:float +@4463 = .sdata2:0x805177CC; // type:object size:0x4 scope:local align:4 data:float +@4464 = .sdata2:0x805177D0; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x805177D4; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x805177D8; // type:object size:0x4 scope:local align:4 data:float +@4614 = .sdata2:0x805177E0; // type:object size:0x8 scope:local align:8 data:double +@4787 = .sdata2:0x805177E8; // type:object size:0x7 scope:local align:4 data:string +@4788 = .sdata2:0x805177F0; // type:object size:0x7 scope:local align:4 data:string +@4789 = .sdata2:0x805177F8; // type:object size:0x6 scope:local align:4 data:string +@4791 = .sdata2:0x80517800; // type:object size:0x4 scope:local align:4 data:string +@5283 = .sdata2:0x80517804; // type:object size:0x4 scope:local align:4 data:float +@5521 = .sdata2:0x80517808; // type:object size:0x4 scope:local align:4 data:float +@5522 = .sdata2:0x8051780C; // type:object size:0x4 scope:local align:4 data:float +@5523 = .sdata2:0x80517810; // type:object size:0x4 scope:local align:4 data:float +@5524 = .sdata2:0x80517814; // type:object size:0x4 scope:local align:4 data:float +@5525 = .sdata2:0x80517818; // type:object size:0x4 scope:local align:4 data:float +@5526 = .sdata2:0x8051781C; // type:object size:0x4 scope:local align:4 data:float +@5809 = .sdata2:0x80517820; // type:object size:0x7 scope:local align:4 data:string +@6030 = .sdata2:0x80517828; // type:object size:0x4 scope:local align:4 data:float +@6577 = .sdata2:0x8051782C; // type:object size:0x4 scope:local align:4 data:float +@6977 = .sdata2:0x80517830; // type:object size:0x4 scope:local align:4 data:float +@6978 = .sdata2:0x80517834; // type:object size:0x4 scope:local align:4 data:float +@7044 = .sdata2:0x80517838; // type:object size:0x4 scope:local align:4 data:float +@7134 = .sdata2:0x8051783C; // type:object size:0x4 scope:local align:4 data:float +@7135 = .sdata2:0x80517840; // type:object size:0x4 scope:local align:4 data:float +@7919 = .sdata2:0x80517844; // type:object size:0x4 scope:local align:4 data:float +@8057 = .sdata2:0x80517848; // type:object size:0x4 scope:local align:4 data:float +@8178 = .sdata2:0x8051784C; // type:object size:0x4 scope:local align:4 data:string +@3550 = .sdata2:0x80517850; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x80517854; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x80517858; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051785C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x80517860; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x80517864; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x80517868; // type:object size:0x4 scope:local align:4 data:float +@3647 = .sdata2:0x8051786C; // type:object size:0x8 scope:local align:4 data:string +@3779 = .sdata2:0x80517874; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x80517878; // type:object size:0x3 scope:local align:4 data:string +@3782 = .sdata2:0x8051787C; // type:object size:0x4 scope:local align:4 data:string +@3783 = .sdata2:0x80517880; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80517884; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x80517888; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051788C; // type:object size:0x4 scope:local align:4 data:float +@3852 = .sdata2:0x80517890; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x80517894; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x80517898; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x8051789C; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x805178A0; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x805178A4; // type:object size:0x5 scope:local align:4 data:string +@3909 = .sdata2:0x805178AC; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x805178B0; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x805178B4; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x805178B8; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x805178BC; // type:object size:0x4 scope:local align:4 data:float +@4205 = .sdata2:0x805178C0; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata2:0x805178C4; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata2:0x805178C8; // type:object size:0x6 scope:local align:4 data:string +@4245 = .sdata2:0x805178D0; // type:object size:0x4 scope:local align:4 data:float +@4246 = .sdata2:0x805178D4; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata2:0x805178D8; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x805178DC; // type:object size:0x7 scope:local align:4 +@4299 = .sdata2:0x805178E4; // type:object size:0x4 scope:local align:4 data:float +@4301 = .sdata2:0x805178E8; // type:object size:0x4 scope:local align:4 data:float +@4304 = .sdata2:0x805178EC; // type:object size:0x4 scope:local align:4 data:float +@4306 = .sdata2:0x805178F0; // type:object size:0x4 scope:local align:4 data:float +@4308 = .sdata2:0x805178F4; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x805178F8; // type:object size:0x8 scope:local align:4 +@4312 = .sdata2:0x80517900; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x80517904; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x80517908; // type:object size:0x5 scope:local align:4 +@4317 = .sdata2:0x80517910; // type:object size:0x5 scope:local align:4 +@4318 = .sdata2:0x80517918; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x8051791C; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x80517920; // type:object size:0x4 scope:local align:4 data:float +@4324 = .sdata2:0x80517924; // type:object size:0x4 scope:local align:4 data:float +@4326 = .sdata2:0x80517928; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051792C; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x80517930; // type:object size:0x7 scope:local align:4 +@4332 = .sdata2:0x80517938; // type:object size:0x4 scope:local align:4 data:float +@4333 = .sdata2:0x8051793C; // type:object size:0x4 scope:local align:4 data:float +@4335 = .sdata2:0x80517940; // type:object size:0x7 scope:local align:4 +@4345 = .sdata2:0x80517948; // type:object size:0x7 scope:local align:4 +@4347 = .sdata2:0x80517950; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x80517954; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x80517958; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x80517960; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x80517964; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x80517968; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051796C; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x80517970; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x80517974; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x80517978; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata2:0x80517980; // type:object size:0x8 scope:local align:8 data:double +@4032 = .sdata2:0x80517988; // type:object size:0x5 scope:local align:4 data:string +@4107 = .sdata2:0x80517990; // type:object size:0x7 scope:local align:4 data:string +@4155 = .sdata2:0x80517998; // type:object size:0x5 scope:local align:4 data:string +@5206 = .sdata2:0x805179A0; // type:object size:0x8 scope:local align:4 data:string +@6161 = .sdata2:0x805179A8; // type:object size:0x4 scope:local align:4 data:float +@6162 = .sdata2:0x805179AC; // type:object size:0x4 scope:local align:4 data:float +@6163 = .sdata2:0x805179B0; // type:object size:0x4 scope:local align:4 data:float +@6164 = .sdata2:0x805179B4; // type:object size:0x4 scope:local align:4 data:float +@6165 = .sdata2:0x805179B8; // type:object size:0x4 scope:local align:4 data:float +@6166 = .sdata2:0x805179BC; // type:object size:0x4 scope:local align:4 data:float +@6167 = .sdata2:0x805179C0; // type:object size:0x4 scope:local align:4 data:float +@6168 = .sdata2:0x805179C4; // type:object size:0x4 scope:local align:4 data:float +@6170 = .sdata2:0x805179C8; // type:object size:0x8 scope:local align:8 data:double +@3644 = .sdata2:0x805179D0; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x805179D8; // type:object size:0x6 scope:local align:4 data:string +@3754 = .sdata2:0x805179E0; // type:object size:0x4 scope:local align:4 data:float +@3774 = .sdata2:0x805179E4; // type:object size:0x5 scope:local align:4 data:string +@3787 = .sdata2:0x805179EC; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x805179F0; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x805179F8; // type:object size:0x8 scope:local align:8 data:double +@3887 = .sdata2:0x80517A00; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x80517A04; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x80517A08; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x80517A0C; // type:object size:0x5 scope:local align:4 data:string +@3930 = .sdata2:0x80517A14; // type:object size:0x5 scope:local align:4 data:string +@4146 = .sdata2:0x80517A1C; // type:object size:0x4 scope:local align:4 data:float +@4158 = .sdata2:0x80517A20; // type:object size:0x5 scope:local align:4 data:string +@4166 = .sdata2:0x80517A28; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x80517A2C; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x80517A30; // type:object size:0x7 scope:local align:4 data:string +@4544 = .sdata2:0x80517A38; // type:object size:0x6 scope:local align:4 data:string +@4610 = .sdata2:0x80517A40; // type:object size:0x4 scope:local align:4 data:float +@4813 = .sdata2:0x80517A44; // type:object size:0x7 scope:local align:4 data:string +@4962 = .sdata2:0x80517A4C; // type:object size:0x5 scope:local align:4 data:string +@4976 = .sdata2:0x80517A54; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x80517A58; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x80517A5C; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x80517A60; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x80517A64; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x80517A68; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x80517A6C; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x80517A70; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x80517A78; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x80517A7C; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x80517A80; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x80517A84; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata2:0x80517A88; // type:object size:0x8 scope:local align:8 data:double +@4403 = .sdata2:0x80517A90; // type:object size:0x4 scope:local align:4 data:float +@4654 = .sdata2:0x80517A94; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x80517A98; // type:object size:0x4 scope:local align:4 data:float +@3637 = .sdata2:0x80517AA0; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x80517AA4; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x80517AA8; // type:object size:0x6 scope:local align:4 data:string +@3662 = .sdata2:0x80517AB0; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x80517AB4; // type:object size:0x4 scope:local align:4 data:float +@3725 = .sdata2:0x80517AB8; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x80517ABC; // type:object size:0x5 scope:local align:4 data:string +@3825 = .sdata2:0x80517AC4; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x80517AC8; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x80517ACC; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x80517AD0; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x80517AD4; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x80517AD8; // type:object size:0x8 scope:local align:8 data:double +@3843 = .sdata2:0x80517AE0; // type:object size:0x5 scope:local align:4 data:string +@3848 = .sdata2:0x80517AE8; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x80517AEC; // type:object size:0x5 scope:local align:4 data:string +@4403 = .sdata2:0x80517AF4; // type:object size:0x7 scope:local align:4 data:string +@4598 = .sdata2:0x80517AFC; // type:object size:0x6 scope:local align:4 data:string +@4986 = .sdata2:0x80517B04; // type:object size:0x7 scope:local align:4 data:string +@3591 = .sdata2:0x80517B10; // type:object size:0x4 scope:local align:4 data:float +@3592 = .sdata2:0x80517B14; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x80517B18; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x80517B1C; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x80517B20; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x80517B24; // type:object size:0x4 scope:local align:4 data:float +@3440 = .sdata2:0x80517B28; // type:object size:0x4 scope:local align:4 data:float +@3483 = .sdata2:0x80517B2C; // type:object size:0x4 scope:local align:4 data:float +@3484 = .sdata2:0x80517B30; // type:object size:0x4 scope:local align:4 data:float +@3485 = .sdata2:0x80517B34; // type:object size:0x4 scope:local align:4 data:float +@3486 = .sdata2:0x80517B38; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x80517B3C; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x80517B40; // type:object size:0x8 scope:local align:8 data:double +@3491 = .sdata2:0x80517B48; // type:object size:0x8 scope:local align:8 data:double +@3523 = .sdata2:0x80517B50; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata2:0x80517B54; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x80517B58; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata2:0x80517B60; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata2:0x80517B64; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata2:0x80517B68; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x80517B6C; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x80517B70; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata2:0x80517B74; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata2:0x80517B78; // type:object size:0x4 scope:local align:4 data:float +@3272 = .sdata2:0x80517B7C; // type:object size:0x4 scope:local align:4 data:float +@3273 = .sdata2:0x80517B80; // type:object size:0x4 scope:local align:4 data:float +@3274 = .sdata2:0x80517B84; // type:object size:0x4 scope:local align:4 data:float +@3275 = .sdata2:0x80517B88; // type:object size:0x4 scope:local align:4 data:float +@3276 = .sdata2:0x80517B8C; // type:object size:0x4 scope:local align:4 data:float +@3277 = .sdata2:0x80517B90; // type:object size:0x4 scope:local align:4 data:float +@3278 = .sdata2:0x80517B94; // type:object size:0x4 scope:local align:4 data:float +@3279 = .sdata2:0x80517B98; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x80517B9C; // type:object size:0x4 scope:local align:4 data:float +@3281 = .sdata2:0x80517BA0; // type:object size:0x4 scope:local align:4 data:float +@3282 = .sdata2:0x80517BA4; // type:object size:0x4 scope:local align:4 data:float +@3283 = .sdata2:0x80517BA8; // type:object size:0x4 scope:local align:4 data:float +@3284 = .sdata2:0x80517BAC; // type:object size:0x4 scope:local align:4 data:float +@3285 = .sdata2:0x80517BB0; // type:object size:0x4 scope:local align:4 data:float +@3289 = .sdata2:0x80517BB8; // type:object size:0x8 scope:local align:8 data:double +@3293 = .sdata2:0x80517BC0; // type:object size:0x8 scope:local align:8 data:double +@3320 = .sdata2:0x80517BC8; // type:object size:0x4 scope:local align:4 data:float +@3321 = .sdata2:0x80517BCC; // type:object size:0x4 scope:local align:4 data:float +@3322 = .sdata2:0x80517BD0; // type:object size:0x4 scope:local align:4 data:float +@3323 = .sdata2:0x80517BD4; // type:object size:0x4 scope:local align:4 data:float +@3357 = .sdata2:0x80517BD8; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x80517BDC; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x80517BE0; // type:object size:0x4 scope:local align:4 data:float +@3450 = .sdata2:0x80517BE4; // type:object size:0x1 scope:local align:4 +@3813 = .sdata2:0x80517BE8; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x80517BF0; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata2:0x80517BF4; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata2:0x80517BF8; // type:object size:0x8 scope:local align:8 data:double +@3630 = .sdata2:0x80517C00; // type:object size:0x3 scope:local align:4 +@3631 = .sdata2:0x80517C04; // type:object size:0x3 scope:local align:4 +@3632 = .sdata2:0x80517C08; // type:object size:0x3 scope:local align:4 +@3633 = .sdata2:0x80517C0C; // type:object size:0x3 scope:local align:4 +@3634 = .sdata2:0x80517C10; // type:object size:0x7 scope:local align:4 +@3737 = .sdata2:0x80517C18; // type:object size:0x1 scope:local align:4 +@3739 = .sdata2:0x80517C1C; // type:object size:0x3 scope:local align:4 +@3740 = .sdata2:0x80517C20; // type:object size:0x3 scope:local align:4 +@3741 = .sdata2:0x80517C24; // type:object size:0x3 scope:local align:4 +@3760 = .sdata2:0x80517C28; // type:object size:0x8 scope:local align:4 +@3761 = .sdata2:0x80517C30; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x80517C34; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x80517C38; // type:object size:0x8 scope:local align:4 +@3804 = .sdata2:0x80517C40; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x80517C44; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80517C48; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80517C4C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x80517C50; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x80517C54; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x80517C58; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x80517C5C; // type:object size:0x5 scope:local align:4 +@4092 = .sdata2:0x80517C64; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x80517C68; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x80517C6C; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x80517C70; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x80517C74; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata2:0x80517C78; // type:object size:0x4 scope:local align:4 data:float +@4232 = .sdata2:0x80517C7C; // type:object size:0x4 scope:local align:4 data:float +@4233 = .sdata2:0x80517C80; // type:object size:0x4 scope:local align:4 data:float +@4333 = .sdata2:0x80517C84; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x80517C88; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x80517C8C; // type:object size:0x8 scope:local align:4 data:string +@4519 = .sdata2:0x80517C94; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x80517C98; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x80517C9C; // type:object size:0x4 scope:local align:4 data:float +@4522 = .sdata2:0x80517CA0; // type:object size:0x4 scope:local align:4 data:float +@5489 = .sdata2:0x80517CA4; // type:object size:0x4 scope:local align:4 data:float +@5490 = .sdata2:0x80517CA8; // type:object size:0x4 scope:local align:4 data:float +@5491 = .sdata2:0x80517CAC; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x80517CB0; // type:object size:0x4 scope:local align:4 data:float +@5987 = .sdata2:0x80517CB4; // type:object size:0x4 scope:local align:4 data:float +@5988 = .sdata2:0x80517CB8; // type:object size:0x4 scope:local align:4 data:float +@5989 = .sdata2:0x80517CBC; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x80517CC0; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x80517CC4; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x80517CC8; // type:object size:0x4 scope:local align:4 data:float +@2725 = .sdata2:0x80517CCC; // type:object size:0x4 scope:local align:4 data:float +@2838 = .sdata2:0x80517CD0; // type:object size:0x4 scope:local align:4 data:float +@2839 = .sdata2:0x80517CD4; // type:object size:0x4 scope:local align:4 data:float +@3047 = .sdata2:0x80517CD8; // type:object size:0x8 scope:local align:8 data:double +@3049 = .sdata2:0x80517CE0; // type:object size:0x8 scope:local align:8 data:double +@2431 = .sdata2:0x80517CE8; // type:object size:0x1 scope:local align:4 +@2435 = .sdata2:0x80517CEC; // type:object size:0x7 scope:local align:4 data:string +@2438 = .sdata2:0x80517CF4; // type:object size:0x4 scope:local align:4 data:string +@2439 = .sdata2:0x80517CF8; // type:object size:0x8 scope:local align:4 data:string +@2440 = .sdata2:0x80517D00; // type:object size:0x7 scope:local align:4 data:string +@2444 = .sdata2:0x80517D08; // type:object size:0x8 scope:local align:4 data:string +@2445 = .sdata2:0x80517D10; // type:object size:0x7 scope:local align:4 data:string +@2446 = .sdata2:0x80517D18; // type:object size:0x8 scope:local align:4 data:string +@2447 = .sdata2:0x80517D20; // type:object size:0x5 scope:local align:4 data:string +@2448 = .sdata2:0x80517D28; // type:object size:0x5 scope:local align:4 data:string +@2450 = .sdata2:0x80517D30; // type:object size:0x5 scope:local align:4 data:string +@2451 = .sdata2:0x80517D38; // type:object size:0x5 scope:local align:4 data:string +@2452 = .sdata2:0x80517D40; // type:object size:0x6 scope:local align:4 data:string +@2453 = .sdata2:0x80517D48; // type:object size:0x5 scope:local align:4 data:string +@2455 = .sdata2:0x80517D50; // type:object size:0x8 scope:local align:4 data:string +@2456 = .sdata2:0x80517D58; // type:object size:0x5 scope:local align:4 data:string +@2457 = .sdata2:0x80517D60; // type:object size:0x6 scope:local align:4 data:string +@2458 = .sdata2:0x80517D68; // type:object size:0x7 scope:local align:4 data:string +@2459 = .sdata2:0x80517D70; // type:object size:0x8 scope:local align:4 data:string +@2460 = .sdata2:0x80517D78; // type:object size:0x8 scope:local align:4 data:string +@2461 = .sdata2:0x80517D80; // type:object size:0x5 scope:local align:4 data:string +@2462 = .sdata2:0x80517D88; // type:object size:0x8 scope:local align:4 data:string +@2464 = .sdata2:0x80517D90; // type:object size:0x6 scope:local align:4 data:string +@2465 = .sdata2:0x80517D98; // type:object size:0x6 scope:local align:4 data:string +@2467 = .sdata2:0x80517DA0; // type:object size:0x5 scope:local align:4 data:string +@2468 = .sdata2:0x80517DA8; // type:object size:0x6 scope:local align:4 data:string +@2469 = .sdata2:0x80517DB0; // type:object size:0x8 scope:local align:4 data:string +@2470 = .sdata2:0x80517DB8; // type:object size:0x8 scope:local align:4 data:string +@2471 = .sdata2:0x80517DC0; // type:object size:0x8 scope:local align:4 data:string +@2472 = .sdata2:0x80517DC8; // type:object size:0x4 scope:local align:4 data:string +@2474 = .sdata2:0x80517DCC; // type:object size:0x7 scope:local align:4 data:string +@2476 = .sdata2:0x80517DD4; // type:object size:0x6 scope:local align:4 data:string +@2477 = .sdata2:0x80517DDC; // type:object size:0x5 scope:local align:4 data:string +@2479 = .sdata2:0x80517DE4; // type:object size:0x5 scope:local align:4 data:string +@2484 = .sdata2:0x80517DEC; // type:object size:0x5 scope:local align:4 data:string +@2485 = .sdata2:0x80517DF4; // type:object size:0x4 scope:local align:4 data:string +@2489 = .sdata2:0x80517DF8; // type:object size:0x8 scope:local align:4 data:string +@2490 = .sdata2:0x80517E00; // type:object size:0x8 scope:local align:4 data:string +@2491 = .sdata2:0x80517E08; // type:object size:0x7 scope:local align:4 data:string +@2492 = .sdata2:0x80517E10; // type:object size:0x7 scope:local align:4 data:string +@2494 = .sdata2:0x80517E18; // type:object size:0x8 scope:local align:4 data:string +@2496 = .sdata2:0x80517E20; // type:object size:0x8 scope:local align:4 data:string +@2500 = .sdata2:0x80517E28; // type:object size:0x8 scope:local align:4 data:string +@2503 = .sdata2:0x80517E30; // type:object size:0x8 scope:local align:4 data:string +@2506 = .sdata2:0x80517E38; // type:object size:0x7 scope:local align:4 data:string +@2508 = .sdata2:0x80517E40; // type:object size:0x7 scope:local align:4 data:string +@2510 = .sdata2:0x80517E48; // type:object size:0x8 scope:local align:4 data:string +@2511 = .sdata2:0x80517E50; // type:object size:0x7 scope:local align:4 data:string +@2513 = .sdata2:0x80517E58; // type:object size:0x8 scope:local align:4 data:string +@2517 = .sdata2:0x80517E60; // type:object size:0x7 scope:local align:4 data:string +@2526 = .sdata2:0x80517E68; // type:object size:0x8 scope:local align:4 data:string +@2529 = .sdata2:0x80517E70; // type:object size:0x5 scope:local align:4 data:string +@3254 = .sdata2:0x80517E78; // type:object size:0x1 scope:local align:4 +@3332 = .sdata2:0x80517E7C; // type:object size:0x5 scope:local align:4 +@3388 = .sdata2:0x80517E84; // type:object size:0x8 scope:local align:4 data:string +@3389 = .sdata2:0x80517E8C; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata2:0x80517E90; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x80517E98; // type:object size:0x8 scope:local align:8 data:double +@3626 = .sdata2:0x80517EA0; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x80517EA8; // type:object size:0x4 scope:local align:4 data:float +@3584 = .sdata2:0x80517EAC; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80517EB0; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80517EB4; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x80517EB8; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x80517EBC; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x80517EC0; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80517EC8; // type:object size:0x8 scope:local align:8 data:double +@3828 = .sdata2:0x80517ED0; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x80517ED4; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x80517ED8; // type:object size:0x5 scope:local align:4 data:string +@4386 = .sdata2:0x80517EE0; // type:object size:0x7 scope:local align:4 +@4395 = .sdata2:0x80517EE8; // type:object size:0x5 scope:local align:4 +@4400 = .sdata2:0x80517EF0; // type:object size:0x7 scope:local align:4 +@4401 = .sdata2:0x80517EF8; // type:object size:0x7 scope:local align:4 +@4417 = .sdata2:0x80517F00; // type:object size:0x7 scope:local align:4 +@4426 = .sdata2:0x80517F08; // type:object size:0x7 scope:local align:4 +@4431 = .sdata2:0x80517F10; // type:object size:0x7 scope:local align:4 +@4444 = .sdata2:0x80517F18; // type:object size:0x7 scope:local align:4 +@4465 = .sdata2:0x80517F20; // type:object size:0x7 scope:local align:4 +@4468 = .sdata2:0x80517F28; // type:object size:0x7 scope:local align:4 +@4560 = .sdata2:0x80517F30; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x80517F34; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x80517F38; // type:object size:0x4 scope:local align:4 data:float +@4563 = .sdata2:0x80517F3C; // type:object size:0x4 scope:local align:4 data:float +@4564 = .sdata2:0x80517F40; // type:object size:0x8 scope:local align:4 data:string +@4573 = .sdata2:0x80517F48; // type:object size:0x7 scope:local align:4 data:string +@2675 = .sdata2:0x80517F50; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x80517F54; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x80517F58; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x80517F5C; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x80517F60; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x80517F64; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x80517F68; // type:object size:0x4 scope:local align:4 data:float +@2704 = .sdata2:0x80517F6C; // type:object size:0x4 scope:local align:4 data:float +@2707 = .sdata2:0x80517F70; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x80517F74; // type:object size:0x4 scope:local align:4 data:float +@2711 = .sdata2:0x80517F78; // type:object size:0x4 scope:local align:4 data:float +@2713 = .sdata2:0x80517F7C; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata2:0x80517F80; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x80517F84; // type:object size:0x4 scope:local align:4 data:float +@3378 = .sdata2:0x80517F88; // type:object size:0x5 scope:local align:4 data:string +@3308 = .sdata2:0x80517F90; // type:object size:0x8 scope:local align:8 data:double +defaultAnimSpeed__Q24Game17EnemyAnimatorBase = .sdata2:0x80517F98; // type:object size:0x4 scope:global align:4 data:float +@3201 = .sdata2:0x80517F9C; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata2:0x80517FA0; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata2:0x80517FA4; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata2:0x80517FA8; // type:object size:0x4 scope:local align:4 data:float +@3224 = .sdata2:0x80517FAC; // type:object size:0x4 scope:local align:4 data:float +@3225 = .sdata2:0x80517FB0; // type:object size:0x4 scope:local align:4 data:float +@2612 = .sdata2:0x80517FB8; // type:object size:0x4 scope:local align:4 data:float +@2613 = .sdata2:0x80517FBC; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x80517FC0; // type:object size:0x4 scope:local align:4 data:float +@3590 = .sdata2:0x80517FC4; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x80517FC8; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x80517FCC; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x80517FD0; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x80517FD4; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x80517FD8; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x80517FDC; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x80517FE0; // type:object size:0x4 scope:local align:4 data:float +@3728 = .sdata2:0x80517FE4; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80517FE8; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x80517FEC; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x80517FF0; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80517FF4; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x80517FF8; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x80517FFC; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x80518000; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x80518004; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x80518008; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051800C; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x80518010; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x80518014; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x80518018; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051801C; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x80518020; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x80518024; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x80518028; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x8051802C; // type:object size:0x1 scope:local align:4 +@4122 = .sdata2:0x80518030; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x80518038; // type:object size:0x4 scope:local align:4 data:float +@3685 = .sdata2:0x8051803C; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x80518040; // type:object size:0x8 scope:local align:8 data:double +@3594 = .sdata2:0x80518048; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x80518050; // type:object size:0x8 scope:local align:4 data:string +@3926 = .sdata2:0x80518058; // type:object size:0x4 scope:local align:4 data:string +@3927 = .sdata2:0x8051805C; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x80518060; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x80518064; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x80518068; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051806C; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x80518070; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x80518074; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x80518078; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051807C; // type:object size:0x4 scope:local align:4 data:float +@4063 = .sdata2:0x80518080; // type:object size:0x6 scope:local align:4 data:string +@4064 = .sdata2:0x80518088; // type:object size:0x6 scope:local align:4 data:string +@4065 = .sdata2:0x80518090; // type:object size:0x6 scope:local align:4 data:string +@4066 = .sdata2:0x80518098; // type:object size:0x6 scope:local align:4 data:string +@4067 = .sdata2:0x805180A0; // type:object size:0x6 scope:local align:4 data:string +@4068 = .sdata2:0x805180A8; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x805180AC; // type:object size:0x5 scope:local align:4 data:string +@4074 = .sdata2:0x805180B4; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x805180B8; // type:object size:0x5 scope:local align:4 data:string +@4194 = .sdata2:0x805180C0; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x805180C4; // type:object size:0x5 scope:local align:4 data:string +@3884 = .sdata2:0x805180D0; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x805180D4; // type:object size:0x5 scope:local align:4 data:string +@3618 = .sdata2:0x805180E0; // type:object size:0x4 scope:local align:4 data:string +@3619 = .sdata2:0x805180E4; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x805180E8; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x805180EC; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x805180F0; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x805180F4; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x805180F8; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x80518100; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x80518104; // type:object size:0x5 scope:local align:4 data:string +@3745 = .sdata2:0x8051810C; // type:object size:0x5 scope:local align:4 data:string +@3746 = .sdata2:0x80518114; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata2:0x80518118; // type:object size:0x4 scope:local align:4 data:float +@2419 = .sdata2:0x80518120; // type:object size:0x4 scope:local align:4 data:float +@3494 = .sdata2:0x80518128; // type:object size:0x5 scope:local align:4 +@3336 = .sdata2:0x80518130; // type:object size:0x4 scope:local align:4 data:float +@3407 = .sdata2:0x80518134; // type:object size:0x6 scope:local align:4 data:string +@3408 = .sdata2:0x8051813C; // type:object size:0x6 scope:local align:4 data:string +@3831 = .sdata2:0x80518144; // type:object size:0x1 scope:local align:4 +@3376 = .sdata2:0x80518148; // type:object size:0x8 scope:local align:4 data:string +@3583 = .sdata2:0x80518150; // type:object size:0x7 scope:local align:4 +@3672 = .sdata2:0x80518158; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x8051815C; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x80518160; // type:object size:0x8 scope:local align:8 data:double +@3744 = .sdata2:0x80518168; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x8051816C; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata2:0x80518170; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x80518174; // type:object size:0x1 scope:local align:4 +@3805 = .sdata2:0x80518178; // type:object size:0x7 scope:local align:4 +@3806 = .sdata2:0x80518180; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80518184; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x80518188; // type:object size:0x7 scope:local align:4 +@3827 = .sdata2:0x80518190; // type:object size:0x5 scope:local align:4 +@3828 = .sdata2:0x80518198; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051819C; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x805181A0; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x805181A4; // type:object size:0x4 scope:local align:4 data:float +@3836 = .sdata2:0x805181A8; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x805181AC; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x805181B0; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x805181B4; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x805181B8; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x805181BC; // type:object size:0x7 scope:local align:4 +@3905 = .sdata2:0x805181C4; // type:object size:0x5 scope:local align:4 +@3041 = .sdata2:0x805181D0; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x805181D4; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata2:0x805181D8; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata2:0x805181DC; // type:object size:0x4 scope:local align:4 data:float +@3047 = .sdata2:0x805181E0; // type:object size:0x4 scope:local align:4 data:float +@3099 = .sdata2:0x805181E4; // type:object size:0x4 scope:local align:4 data:float +@3100 = .sdata2:0x805181E8; // type:object size:0x4 scope:local align:4 data:float +@3101 = .sdata2:0x805181EC; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x805181F0; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata2:0x805181F4; // type:object size:0x4 scope:local align:4 data:float +@3048 = .sdata2:0x805181F8; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata2:0x805181FC; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata2:0x80518200; // type:object size:0x4 scope:local align:4 data:float +@3409 = .sdata2:0x80518208; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8051820C; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x80518210; // type:object size:0x4 scope:local align:4 data:float +@4766 = .sdata2:0x80518214; // type:object size:0x4 scope:local align:4 data:float +@4782 = .sdata2:0x80518218; // type:object size:0x8 scope:local align:8 data:double +@5157 = .sdata2:0x80518220; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata2:0x80518224; // type:object size:0x4 scope:local align:4 data:float +@6042 = .sdata2:0x80518228; // type:object size:0x4 scope:local align:4 data:float +@6043 = .sdata2:0x8051822C; // type:object size:0x4 scope:local align:4 data:float +@6188 = .sdata2:0x80518230; // type:object size:0x3 scope:local align:4 data:string +@2687 = .sdata2:0x80518238; // type:object size:0x4 scope:local align:4 data:float +@2688 = .sdata2:0x8051823C; // type:object size:0x4 scope:local align:4 data:float +@2689 = .sdata2:0x80518240; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x80518244; // type:object size:0x7 scope:local align:4 data:string +@2691 = .sdata2:0x8051824C; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x80518250; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x80518254; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x80518258; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x8051825C; // type:object size:0x5 scope:local align:4 +@2702 = .sdata2:0x80518264; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x80518268; // type:object size:0x4 scope:local align:4 data:float +@2706 = .sdata2:0x8051826C; // type:object size:0x4 scope:local align:4 data:float +@3364 = .sdata2:0x80518270; // type:object size:0x4 scope:local align:4 data:float +@3365 = .sdata2:0x80518274; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x80518278; // type:object size:0x4 scope:local align:4 data:float +@3511 = .sdata2:0x80518280; // type:object size:0x4 scope:local align:4 data:float +@3512 = .sdata2:0x80518284; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x80518288; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051828C; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x80518290; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x80518294; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x80518298; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051829C; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata2:0x805182A0; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata2:0x805182A4; // type:object size:0x4 scope:local align:4 data:float +@4400 = .sdata2:0x805182A8; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x805182B0; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x805182B4; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x805182B8; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x805182BC; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x805182C0; // type:object size:0x4 scope:local align:4 data:float +@4299 = .sdata2:0x805182C4; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata2:0x805182C8; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata2:0x805182CC; // type:object size:0x4 scope:local align:4 data:float +@4551 = .sdata2:0x805182D0; // type:object size:0x4 scope:local align:4 data:float +@4552 = .sdata2:0x805182D4; // type:object size:0x4 scope:local align:4 data:float +@4553 = .sdata2:0x805182D8; // type:object size:0x4 scope:local align:4 data:float +@4554 = .sdata2:0x805182DC; // type:object size:0x4 scope:local align:4 data:float +@4555 = .sdata2:0x805182E0; // type:object size:0x4 scope:local align:4 data:float +@4556 = .sdata2:0x805182E4; // type:object size:0x4 scope:local align:4 data:float +@4557 = .sdata2:0x805182E8; // type:object size:0x4 scope:local align:4 data:float +@4558 = .sdata2:0x805182EC; // type:object size:0x4 scope:local align:4 data:float +@4559 = .sdata2:0x805182F0; // type:object size:0x4 scope:local align:4 data:float +@4560 = .sdata2:0x805182F4; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x805182F8; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x805182FC; // type:object size:0x4 scope:local align:4 data:float +@4563 = .sdata2:0x80518300; // type:object size:0x4 scope:local align:4 data:float +@4933 = .sdata2:0x80518304; // type:object size:0x4 scope:local align:4 data:float +@4934 = .sdata2:0x80518308; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata2:0x8051830C; // type:object size:0x4 scope:local align:4 data:float +@4953 = .sdata2:0x80518310; // type:object size:0x4 scope:local align:4 data:float +@5233 = .sdata2:0x80518314; // type:object size:0x4 scope:local align:4 data:float +@5234 = .sdata2:0x80518318; // type:object size:0x4 scope:local align:4 data:float +@5235 = .sdata2:0x8051831C; // type:object size:0x4 scope:local align:4 data:float +@5236 = .sdata2:0x80518320; // type:object size:0x4 scope:local align:4 data:float +@5237 = .sdata2:0x80518324; // type:object size:0x4 scope:local align:4 data:float +@5239 = .sdata2:0x80518328; // type:object size:0x8 scope:local align:8 data:double +@5412 = .sdata2:0x80518330; // type:object size:0x5 scope:local align:4 data:string +@5413 = .sdata2:0x80518338; // type:object size:0x4 scope:local align:4 data:float +@5414 = .sdata2:0x8051833C; // type:object size:0x4 scope:local align:4 data:float +@5608 = .sdata2:0x80518340; // type:object size:0x4 scope:local align:4 data:float +@5747 = .sdata2:0x80518344; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x80518348; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051834C; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x80518350; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x80518354; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x80518358; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051835C; // type:object size:0x4 scope:local align:4 data:float +@4415 = .sdata2:0x80518360; // type:object size:0x8 scope:local align:4 data:string +@4416 = .sdata2:0x80518368; // type:object size:0x4 scope:local align:4 data:float +@4417 = .sdata2:0x8051836C; // type:object size:0x4 scope:local align:4 data:float +@4765 = .sdata2:0x80518370; // type:object size:0x4 scope:local align:4 data:float +@4801 = .sdata2:0x80518374; // type:object size:0x4 scope:local align:4 data:float +@4802 = .sdata2:0x80518378; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata2:0x8051837C; // type:object size:0x4 scope:local align:4 data:float +@5027 = .sdata2:0x80518380; // type:object size:0x4 scope:local align:4 data:float +@5171 = .sdata2:0x80518384; // type:object size:0x4 scope:local align:4 data:float +@5172 = .sdata2:0x80518388; // type:object size:0x4 scope:local align:4 data:float +@5173 = .sdata2:0x8051838C; // type:object size:0x4 scope:local align:4 data:float +@5386 = .sdata2:0x80518390; // type:object size:0x4 scope:local align:4 data:float +@5387 = .sdata2:0x80518394; // type:object size:0x4 scope:local align:4 data:float +@5388 = .sdata2:0x80518398; // type:object size:0x4 scope:local align:4 data:float +@5389 = .sdata2:0x8051839C; // type:object size:0x4 scope:local align:4 data:float +@5955 = .sdata2:0x805183A0; // type:object size:0x4 scope:local align:4 data:float +@6086 = .sdata2:0x805183A4; // type:object size:0x4 scope:local align:4 data:float +@6087 = .sdata2:0x805183A8; // type:object size:0x4 scope:local align:4 data:float +@6088 = .sdata2:0x805183AC; // type:object size:0x4 scope:local align:4 data:float +@6192 = .sdata2:0x805183B0; // type:object size:0x4 scope:local align:4 data:float +@6262 = .sdata2:0x805183B4; // type:object size:0x4 scope:local align:4 data:float +@6478 = .sdata2:0x805183B8; // type:object size:0x4 scope:local align:4 data:float +@6751 = .sdata2:0x805183BC; // type:object size:0x4 scope:local align:4 data:float +@6795 = .sdata2:0x805183C0; // type:object size:0x4 scope:local align:4 data:float +@6796 = .sdata2:0x805183C4; // type:object size:0x4 scope:local align:4 data:float +@6797 = .sdata2:0x805183C8; // type:object size:0x4 scope:local align:4 data:float +@6800 = .sdata2:0x805183D0; // type:object size:0x8 scope:local align:8 data:double +@7217 = .sdata2:0x805183D8; // type:object size:0x4 scope:local align:4 data:float +@7871 = .sdata2:0x805183DC; // type:object size:0x4 scope:local align:4 data:float +@8157 = .sdata2:0x805183E0; // type:object size:0x4 scope:local align:4 data:float +@8158 = .sdata2:0x805183E4; // type:object size:0x4 scope:local align:4 data:float +@8159 = .sdata2:0x805183E8; // type:object size:0x4 scope:local align:4 data:float +@8160 = .sdata2:0x805183EC; // type:object size:0x4 scope:local align:4 data:float +@8161 = .sdata2:0x805183F0; // type:object size:0x4 scope:local align:4 data:float +@8162 = .sdata2:0x805183F4; // type:object size:0x4 scope:local align:4 data:float +@8163 = .sdata2:0x805183F8; // type:object size:0x4 scope:local align:4 data:float +@8164 = .sdata2:0x805183FC; // type:object size:0x4 scope:local align:4 data:float +@8372 = .sdata2:0x80518400; // type:object size:0x4 scope:local align:4 data:float +@8373 = .sdata2:0x80518404; // type:object size:0x4 scope:local align:4 data:float +@8464 = .sdata2:0x80518408; // type:object size:0x6 scope:local align:4 data:string +@3998 = .sdata2:0x80518410; // type:object size:0x4 scope:local align:4 data:float +@4000 = .sdata2:0x80518414; // type:object size:0x7 scope:local align:4 data:string +@4212 = .sdata2:0x8051841C; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x80518420; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x80518424; // type:object size:0x4 scope:local align:4 data:float +@4482 = .sdata2:0x80518428; // type:object size:0x5 scope:local align:4 data:string +@4483 = .sdata2:0x80518430; // type:object size:0x5 scope:local align:4 data:string +@4484 = .sdata2:0x80518438; // type:object size:0x4 scope:local align:4 data:float +@4714 = .sdata2:0x8051843C; // type:object size:0x4 scope:local align:4 data:float +@4806 = .sdata2:0x80518440; // type:object size:0x4 scope:local align:4 data:float +@5420 = .sdata2:0x80518444; // type:object size:0x4 scope:local align:4 data:float +@5421 = .sdata2:0x80518448; // type:object size:0x4 scope:local align:4 data:float +@5758 = .sdata2:0x8051844C; // type:object size:0x4 scope:local align:4 data:float +@5759 = .sdata2:0x80518450; // type:object size:0x4 scope:local align:4 data:float +@5760 = .sdata2:0x80518454; // type:object size:0x4 scope:local align:4 data:float +@5816 = .sdata2:0x80518458; // type:object size:0x4 scope:local align:4 data:float +@5881 = .sdata2:0x8051845C; // type:object size:0x4 scope:local align:4 data:float +@5882 = .sdata2:0x80518460; // type:object size:0x4 scope:local align:4 data:float +@5884 = .sdata2:0x80518468; // type:object size:0x8 scope:local align:8 data:double +@5929 = .sdata2:0x80518470; // type:object size:0x4 scope:local align:4 data:float +@5930 = .sdata2:0x80518474; // type:object size:0x4 scope:local align:4 data:float +@5977 = .sdata2:0x80518478; // type:object size:0x4 scope:local align:4 data:float +@5978 = .sdata2:0x8051847C; // type:object size:0x8 scope:local align:4 data:string +@6121 = .sdata2:0x80518484; // type:object size:0x4 scope:local align:4 data:float +@6122 = .sdata2:0x80518488; // type:object size:0x4 scope:local align:4 data:float +@6144 = .sdata2:0x8051848C; // type:object size:0x7 scope:local align:4 data:string +@4585 = .sdata2:0x80518498; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x8051849C; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x805184A0; // type:object size:0x4 scope:local align:4 data:float +@4588 = .sdata2:0x805184A4; // type:object size:0x4 scope:local align:4 data:float +@4795 = .sdata2:0x805184A8; // type:object size:0x7 scope:local align:4 data:string +@4796 = .sdata2:0x805184B0; // type:object size:0x4 scope:local align:4 data:string +@4797 = .sdata2:0x805184B4; // type:object size:0x6 scope:local align:4 data:string +@4798 = .sdata2:0x805184BC; // type:object size:0x6 scope:local align:4 data:string +@4799 = .sdata2:0x805184C4; // type:object size:0x6 scope:local align:4 data:string +@4800 = .sdata2:0x805184CC; // type:object size:0x5 scope:local align:4 data:string +@4833 = .sdata2:0x805184D4; // type:object size:0x3 scope:local align:4 data:string +@4952 = .sdata2:0x805184D8; // type:object size:0x4 scope:local align:4 data:string +@4953 = .sdata2:0x805184DC; // type:object size:0x7 scope:local align:4 data:string +@4954 = .sdata2:0x805184E4; // type:object size:0x7 scope:local align:4 data:string +@4956 = .sdata2:0x805184EC; // type:object size:0x4 scope:local align:4 data:string +@4957 = .sdata2:0x805184F0; // type:object size:0x5 scope:local align:4 data:string +@4958 = .sdata2:0x805184F8; // type:object size:0x5 scope:local align:4 data:string +@4959 = .sdata2:0x80518500; // type:object size:0x6 scope:local align:4 data:string +@4962 = .sdata2:0x80518508; // type:object size:0x5 scope:local align:4 data:string +@4963 = .sdata2:0x80518510; // type:object size:0x4 scope:local align:4 data:string +@4964 = .sdata2:0x80518514; // type:object size:0x6 scope:local align:4 data:string +@5024 = .sdata2:0x8051851C; // type:object size:0x4 scope:local align:4 data:float +@5026 = .sdata2:0x80518520; // type:object size:0x8 scope:local align:8 data:double +@5546 = .sdata2:0x80518528; // type:object size:0x4 scope:local align:4 data:float +@5547 = .sdata2:0x8051852C; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata2:0x80518530; // type:object size:0x4 scope:local align:4 data:float +@5549 = .sdata2:0x80518534; // type:object size:0x4 scope:local align:4 data:float +@5550 = .sdata2:0x80518538; // type:object size:0x4 scope:local align:4 data:float +@5551 = .sdata2:0x8051853C; // type:object size:0x4 scope:local align:4 data:float +@5552 = .sdata2:0x80518540; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata2:0x80518544; // type:object size:0x4 scope:local align:4 data:float +@5554 = .sdata2:0x80518548; // type:object size:0x4 scope:local align:4 data:float +@5719 = .sdata2:0x8051854C; // type:object size:0x4 scope:local align:4 data:float +@5893 = .sdata2:0x80518550; // type:object size:0x4 scope:local align:4 data:float +@5894 = .sdata2:0x80518554; // type:object size:0x4 scope:local align:4 data:float +@6105 = .sdata2:0x80518558; // type:object size:0x4 scope:local align:4 data:float +@6106 = .sdata2:0x8051855C; // type:object size:0x4 scope:local align:4 data:float +@6107 = .sdata2:0x80518560; // type:object size:0x4 scope:local align:4 data:float +@6108 = .sdata2:0x80518564; // type:object size:0x4 scope:local align:4 data:float +@6110 = .sdata2:0x80518568; // type:object size:0x8 scope:local align:8 data:double +@6385 = .sdata2:0x80518570; // type:object size:0x7 scope:local align:4 data:string +@6624 = .sdata2:0x80518578; // type:object size:0x4 scope:local align:4 data:float +@6809 = .sdata2:0x8051857C; // type:object size:0x4 scope:local align:4 data:float +@7282 = .sdata2:0x80518580; // type:object size:0x8 scope:local align:4 data:string +@7285 = .sdata2:0x80518588; // type:object size:0x7 scope:local align:4 data:string +@7287 = .sdata2:0x80518590; // type:object size:0x7 scope:local align:4 data:string +@7288 = .sdata2:0x80518598; // type:object size:0x8 scope:local align:4 data:string +@7289 = .sdata2:0x805185A0; // type:object size:0x4 scope:local align:4 data:float +@7290 = .sdata2:0x805185A4; // type:object size:0x4 scope:local align:4 data:float +@7292 = .sdata2:0x805185A8; // type:object size:0x4 scope:local align:4 data:float +@7294 = .sdata2:0x805185AC; // type:object size:0x4 scope:local align:4 data:float +@7295 = .sdata2:0x805185B0; // type:object size:0x4 scope:local align:4 data:float +@7296 = .sdata2:0x805185B4; // type:object size:0x4 scope:local align:4 data:float +@7297 = .sdata2:0x805185B8; // type:object size:0x4 scope:local align:4 data:float +@7540 = .sdata2:0x805185BC; // type:object size:0x3 scope:local align:4 data:string +@4648 = .sdata2:0x805185C0; // type:object size:0x4 scope:local align:4 data:string +@4687 = .sdata2:0x805185C4; // type:object size:0x4 scope:local align:4 data:float +@4699 = .sdata2:0x805185C8; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata2:0x805185CC; // type:object size:0x8 scope:local align:4 data:string +@5605 = .sdata2:0x805185D4; // type:object size:0x8 scope:local align:4 data:string +@5608 = .sdata2:0x805185DC; // type:object size:0x8 scope:local align:4 data:string +@5752 = .sdata2:0x805185E4; // type:object size:0x4 scope:local align:4 data:float +@5753 = .sdata2:0x805185E8; // type:object size:0x4 scope:local align:4 data:float +@5754 = .sdata2:0x805185EC; // type:object size:0x4 scope:local align:4 data:float +@5755 = .sdata2:0x805185F0; // type:object size:0x4 scope:local align:4 data:float +@5756 = .sdata2:0x805185F4; // type:object size:0x4 scope:local align:4 data:float +@5757 = .sdata2:0x805185F8; // type:object size:0x4 scope:local align:4 data:float +@5758 = .sdata2:0x805185FC; // type:object size:0x4 scope:local align:4 data:float +@5759 = .sdata2:0x80518600; // type:object size:0x4 scope:local align:4 data:float +@5760 = .sdata2:0x80518604; // type:object size:0x4 scope:local align:4 data:float +@5761 = .sdata2:0x80518608; // type:object size:0x4 scope:local align:4 data:float +@5762 = .sdata2:0x8051860C; // type:object size:0x4 scope:local align:4 data:float +@5764 = .sdata2:0x80518610; // type:object size:0x8 scope:local align:8 data:double +@6002 = .sdata2:0x80518618; // type:object size:0x4 scope:local align:4 data:float +@6003 = .sdata2:0x8051861C; // type:object size:0x4 scope:local align:4 data:float +@6157 = .sdata2:0x80518620; // type:object size:0x4 scope:local align:4 data:float +@6158 = .sdata2:0x80518624; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x80518628; // type:object size:0x4 scope:local align:4 data:float +@3792 = .sdata2:0x8051862C; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x80518630; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x80518638; // type:object size:0x8 scope:local align:8 data:double +@4545 = .sdata2:0x80518640; // type:object size:0x5 scope:local align:4 data:string +@4595 = .sdata2:0x80518648; // type:object size:0x4 scope:local align:4 data:float +@4596 = .sdata2:0x80518650; // type:object size:0x8 scope:local align:8 data:double +@4597 = .sdata2:0x80518658; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x8051865C; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x80518660; // type:object size:0x8 scope:local align:8 data:double +@3449 = .sdata2:0x80518668; // type:object size:0x8 scope:local align:4 data:string +@3482 = .sdata2:0x80518670; // type:object size:0x4 scope:local align:4 data:float +@3483 = .sdata2:0x80518674; // type:object size:0x4 scope:local align:4 data:float +@3484 = .sdata2:0x80518678; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051867C; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x80518680; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x80518684; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x80518688; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051868C; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x80518690; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x80518694; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x80518698; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051869C; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x805186A0; // type:object size:0x4 scope:local align:4 data:float +@3573 = .sdata2:0x805186A4; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x805186A8; // type:object size:0x4 scope:local align:4 data:float +@3575 = .sdata2:0x805186AC; // type:object size:0x8 scope:local align:4 data:string +@3576 = .sdata2:0x805186B4; // type:object size:0x4 scope:local align:4 data:float +@3578 = .sdata2:0x805186B8; // type:object size:0x8 scope:local align:4 data:string +@3579 = .sdata2:0x805186C0; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x805186C4; // type:object size:0x8 scope:local align:4 data:string +@3582 = .sdata2:0x805186CC; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x805186D0; // type:object size:0x4 scope:local align:4 data:float +@3585 = .sdata2:0x805186D4; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x805186D8; // type:object size:0x4 scope:local align:4 data:float +@3590 = .sdata2:0x805186DC; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x805186E0; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x805186E4; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x805186E8; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x805186EC; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x805186F0; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x805186F4; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x805186F8; // type:object size:0x4 scope:local align:4 data:float +@3610 = .sdata2:0x805186FC; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata2:0x80518700; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata2:0x80518704; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x80518708; // type:object size:0x4 scope:local align:4 data:float +@3622 = .sdata2:0x8051870C; // type:object size:0x4 scope:local align:4 data:float +@3623 = .sdata2:0x80518710; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x80518714; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x80518718; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051871C; // type:object size:0x7 scope:local align:4 +@3634 = .sdata2:0x80518724; // type:object size:0x7 scope:local align:4 +@3646 = .sdata2:0x8051872C; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x80518730; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x80518734; // type:object size:0x6 scope:local align:4 data:string +@3668 = .sdata2:0x8051873C; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x80518740; // type:object size:0x4 scope:local align:4 data:float +@3690 = .sdata2:0x80518744; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x80518748; // type:object size:0x7 scope:local align:4 data:string +@4229 = .sdata2:0x80518750; // type:object size:0x8 scope:local align:4 data:string +@3830 = .sdata2:0x80518758; // type:object size:0x8 scope:local align:4 data:string +@3902 = .sdata2:0x80518760; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x80518764; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x80518768; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051876C; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x80518770; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x80518774; // type:object size:0x4 scope:local align:4 data:float +@4015 = .sdata2:0x80518778; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x8051877C; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x80518780; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x80518784; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x80518788; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x8051878C; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x80518790; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x80518794; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x80518798; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x8051879C; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x805187A0; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x805187A4; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x805187A8; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x805187AC; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x805187B0; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x805187B4; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x805187B8; // type:object size:0x7 scope:local align:4 +@4051 = .sdata2:0x805187C0; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x805187C4; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x805187C8; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x805187CC; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x805187D0; // type:object size:0x4 scope:local align:4 data:float +@4062 = .sdata2:0x805187D4; // type:object size:0x4 scope:local align:4 data:float +@4068 = .sdata2:0x805187D8; // type:object size:0x4 scope:local align:4 data:float +@4071 = .sdata2:0x805187DC; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x805187E0; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x805187E4; // type:object size:0x4 scope:local align:4 data:float +@4076 = .sdata2:0x805187E8; // type:object size:0x4 scope:local align:4 data:float +@4081 = .sdata2:0x805187EC; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x805187F0; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x805187F4; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x805187F8; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x805187FC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x80518800; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x80518804; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x80518808; // type:object size:0x4 scope:local align:4 data:float +@4120 = .sdata2:0x8051880C; // type:object size:0x4 scope:local align:4 data:float +@4122 = .sdata2:0x80518810; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x80518814; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x80518818; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051881C; // type:object size:0x4 scope:local align:4 data:float +@4145 = .sdata2:0x80518820; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x80518824; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x80518828; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051882C; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x80518830; // type:object size:0x4 scope:local align:4 data:float +@4652 = .sdata2:0x80518834; // type:object size:0x8 scope:local align:4 data:string +@4896 = .sdata2:0x8051883C; // type:object size:0x4 scope:local align:4 data:float +@4897 = .sdata2:0x80518840; // type:object size:0x4 scope:local align:4 data:float +@4899 = .sdata2:0x80518848; // type:object size:0x8 scope:local align:8 data:double +@5153 = .sdata2:0x80518850; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x80518854; // type:object size:0x4 scope:local align:4 data:float +@5466 = .sdata2:0x80518858; // type:object size:0x8 scope:local align:4 data:string +@3560 = .sdata2:0x80518860; // type:object size:0x7 scope:local align:4 data:string +@3728 = .sdata2:0x80518868; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x8051886C; // type:object size:0x4 scope:local align:4 data:float +@3737 = .sdata2:0x80518870; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x80518874; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x80518878; // type:object size:0x4 scope:local align:4 data:float +@3898 = .sdata2:0x8051887C; // type:object size:0x4 scope:local align:4 data:float +@3899 = .sdata2:0x80518880; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x80518884; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x80518888; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x8051888C; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x80518890; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x80518898; // type:object size:0x8 scope:local align:8 data:double +@4047 = .sdata2:0x805188A0; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x805188A4; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x805188A8; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x805188AC; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata2:0x805188B0; // type:object size:0x8 scope:local align:4 data:string +@4423 = .sdata2:0x805188B8; // type:object size:0x4 scope:local align:4 data:float +@4471 = .sdata2:0x805188BC; // type:object size:0x8 scope:local align:4 data:string +@4582 = .sdata2:0x805188C4; // type:object size:0x4 scope:local align:4 data:float +@4583 = .sdata2:0x805188C8; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x805188CC; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x805188D0; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x805188D8; // type:object size:0x7 scope:local align:4 data:string +@3470 = .sdata2:0x805188E0; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x805188E4; // type:object size:0x4 scope:local align:4 data:float +@3472 = .sdata2:0x805188E8; // type:object size:0x4 scope:local align:4 data:float +@3473 = .sdata2:0x805188EC; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x805188F0; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x805188F4; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x805188F8; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x805188FC; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x80518900; // type:object size:0x4 scope:local align:4 data:float +@3663 = .sdata2:0x80518904; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x80518908; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051890C; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x80518910; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x80518914; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x80518918; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051891C; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x80518920; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x80518924; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x80518928; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x80518930; // type:object size:0x8 scope:local align:8 data:double +@4336 = .sdata2:0x80518938; // type:object size:0x4 scope:local align:4 data:float +@4337 = .sdata2:0x8051893C; // type:object size:0x4 scope:local align:4 data:float +@4620 = .sdata2:0x80518940; // type:object size:0x4 scope:local align:4 data:float +@4621 = .sdata2:0x80518944; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x80518948; // type:object size:0x8 scope:local align:4 data:string +@4637 = .sdata2:0x80518950; // type:object size:0x8 scope:local align:4 data:string +@4735 = .sdata2:0x80518958; // type:object size:0x4 scope:local align:4 data:float +@4938 = .sdata2:0x8051895C; // type:object size:0x4 scope:local align:4 data:float +@4939 = .sdata2:0x80518960; // type:object size:0x6 scope:local align:4 data:string +@4940 = .sdata2:0x80518968; // type:object size:0x6 scope:local align:4 data:string +@4941 = .sdata2:0x80518970; // type:object size:0x4 scope:local align:4 data:float +@4942 = .sdata2:0x80518974; // type:object size:0x6 scope:local align:4 data:string +@4943 = .sdata2:0x8051897C; // type:object size:0x4 scope:local align:4 data:string +@5114 = .sdata2:0x80518980; // type:object size:0x7 scope:local align:4 data:string +@5115 = .sdata2:0x80518988; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x8051898C; // type:object size:0x4 scope:local align:4 data:float +@5117 = .sdata2:0x80518990; // type:object size:0x4 scope:local align:4 data:float +@5255 = .sdata2:0x80518994; // type:object size:0x4 scope:local align:4 data:float +@5447 = .sdata2:0x80518998; // type:object size:0x4 scope:local align:4 data:float +@5448 = .sdata2:0x8051899C; // type:object size:0x4 scope:local align:4 data:float +@5607 = .sdata2:0x805189A0; // type:object size:0x4 scope:local align:4 data:float +@5608 = .sdata2:0x805189A4; // type:object size:0x4 scope:local align:4 data:float +@5609 = .sdata2:0x805189A8; // type:object size:0x4 scope:local align:4 data:float +@5610 = .sdata2:0x805189AC; // type:object size:0x4 scope:local align:4 data:float +@6416 = .sdata2:0x805189B0; // type:object size:0x4 scope:local align:4 data:float +@6417 = .sdata2:0x805189B4; // type:object size:0x4 scope:local align:4 data:float +@6771 = .sdata2:0x805189B8; // type:object size:0x8 scope:local align:4 data:string +@6927 = .sdata2:0x805189C0; // type:object size:0x4 scope:local align:4 data:float +@7257 = .sdata2:0x805189C4; // type:object size:0x4 scope:local align:4 data:float +@7765 = .sdata2:0x805189C8; // type:object size:0x4 scope:local align:4 data:string +@7766 = .sdata2:0x805189CC; // type:object size:0x3 scope:local align:4 data:string +@7767 = .sdata2:0x805189D0; // type:object size:0x4 scope:local align:4 data:string +@7769 = .sdata2:0x805189D4; // type:object size:0x5 scope:local align:4 data:string +@7770 = .sdata2:0x805189DC; // type:object size:0x5 scope:local align:4 data:string +@7771 = .sdata2:0x805189E4; // type:object size:0x3 scope:local align:4 data:string +@7883 = .sdata2:0x805189E8; // type:object size:0x6 scope:local align:4 data:string +@8061 = .sdata2:0x805189F0; // type:object size:0x8 scope:local align:4 data:string +@8492 = .sdata2:0x805189F8; // type:object size:0x4 scope:local align:4 data:string +@9414 = .sdata2:0x805189FC; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x80518A00; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x80518A04; // type:object size:0x3 scope:local align:4 data:string +@3539 = .sdata2:0x80518A08; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x80518A0C; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x80518A10; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x80518A14; // type:object size:0x4 scope:local align:4 data:float +@3704 = .sdata2:0x80518A18; // type:object size:0x4 scope:local align:4 data:float +@3794 = .sdata2:0x80518A1C; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x80518A20; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x80518A24; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x80518A28; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x80518A2C; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x80518A30; // type:object size:0x4 scope:local align:4 data:float +@4851 = .sdata2:0x80518A34; // type:object size:0x7 scope:local align:4 data:string +@4853 = .sdata2:0x80518A3C; // type:object size:0x4 scope:local align:4 data:string +@4855 = .sdata2:0x80518A40; // type:object size:0x4 scope:local align:4 data:string +@4856 = .sdata2:0x80518A44; // type:object size:0x8 scope:local align:4 data:string +@4955 = .sdata2:0x80518A4C; // type:object size:0x4 scope:local align:4 data:float +@4956 = .sdata2:0x80518A50; // type:object size:0x4 scope:local align:4 data:float +@4957 = .sdata2:0x80518A54; // type:object size:0x4 scope:local align:4 data:float +@4958 = .sdata2:0x80518A58; // type:object size:0x4 scope:local align:4 data:float +@5421 = .sdata2:0x80518A5C; // type:object size:0x4 scope:local align:4 data:float +@5422 = .sdata2:0x80518A60; // type:object size:0x4 scope:local align:4 data:float +@5423 = .sdata2:0x80518A64; // type:object size:0x4 scope:local align:4 data:float +@5424 = .sdata2:0x80518A68; // type:object size:0x4 scope:local align:4 data:float +@5425 = .sdata2:0x80518A6C; // type:object size:0x7 scope:local align:4 data:string +@5426 = .sdata2:0x80518A74; // type:object size:0x4 scope:local align:4 data:string +@5427 = .sdata2:0x80518A78; // type:object size:0x4 scope:local align:4 data:float +@5428 = .sdata2:0x80518A7C; // type:object size:0x4 scope:local align:4 data:float +@5429 = .sdata2:0x80518A80; // type:object size:0x4 scope:local align:4 data:float +@5430 = .sdata2:0x80518A84; // type:object size:0x4 scope:local align:4 data:string +@5455 = .sdata2:0x80518A88; // type:object size:0x4 scope:local align:4 data:float +@5506 = .sdata2:0x80518A8C; // type:object size:0x4 scope:local align:4 data:float +@5507 = .sdata2:0x80518A90; // type:object size:0x4 scope:local align:4 data:float +@5577 = .sdata2:0x80518A94; // type:object size:0x4 scope:local align:4 data:float +@5641 = .sdata2:0x80518A98; // type:object size:0x4 scope:local align:4 data:float +@5670 = .sdata2:0x80518A9C; // type:object size:0x5 scope:local align:4 data:string +@5671 = .sdata2:0x80518AA4; // type:object size:0x4 scope:local align:4 data:float +@5696 = .sdata2:0x80518AA8; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata2:0x80518AAC; // type:object size:0x4 scope:local align:4 data:float +@5779 = .sdata2:0x80518AB0; // type:object size:0x4 scope:local align:4 data:float +@5780 = .sdata2:0x80518AB4; // type:object size:0x4 scope:local align:4 data:float +@5922 = .sdata2:0x80518AB8; // type:object size:0x4 scope:local align:4 data:float +@5923 = .sdata2:0x80518ABC; // type:object size:0x4 scope:local align:4 data:float +@5924 = .sdata2:0x80518AC0; // type:object size:0x4 scope:local align:4 data:float +@5925 = .sdata2:0x80518AC4; // type:object size:0x4 scope:local align:4 data:float +@5926 = .sdata2:0x80518AC8; // type:object size:0x4 scope:local align:4 data:float +@5927 = .sdata2:0x80518ACC; // type:object size:0x4 scope:local align:4 data:float +@5931 = .sdata2:0x80518AD0; // type:object size:0x4 scope:local align:4 data:float +@5932 = .sdata2:0x80518AD4; // type:object size:0x4 scope:local align:4 data:float +@5933 = .sdata2:0x80518AD8; // type:object size:0x4 scope:local align:4 data:float +@5935 = .sdata2:0x80518AE0; // type:object size:0x8 scope:local align:8 data:double +@6303 = .sdata2:0x80518AE8; // type:object size:0x4 scope:local align:4 data:float +@6305 = .sdata2:0x80518AEC; // type:object size:0x4 scope:local align:4 data:float +@6306 = .sdata2:0x80518AF0; // type:object size:0x4 scope:local align:4 data:float +@6307 = .sdata2:0x80518AF4; // type:object size:0x4 scope:local align:4 data:float +@6308 = .sdata2:0x80518AF8; // type:object size:0x4 scope:local align:4 data:float +@6309 = .sdata2:0x80518AFC; // type:object size:0x4 scope:local align:4 data:float +@6310 = .sdata2:0x80518B00; // type:object size:0x4 scope:local align:4 data:float +@6312 = .sdata2:0x80518B08; // type:object size:0x8 scope:local align:8 data:double +@6362 = .sdata2:0x80518B10; // type:object size:0x4 scope:local align:4 data:float +@6363 = .sdata2:0x80518B14; // type:object size:0x4 scope:local align:4 data:float +@6529 = .sdata2:0x80518B18; // type:object size:0x4 scope:local align:4 data:float +@6562 = .sdata2:0x80518B1C; // type:object size:0x5 scope:local align:4 data:string +@6771 = .sdata2:0x80518B24; // type:object size:0x4 scope:local align:4 data:float +@6848 = .sdata2:0x80518B28; // type:object size:0x4 scope:local align:4 data:float +@6940 = .sdata2:0x80518B2C; // type:object size:0x4 scope:local align:4 data:float +@7234 = .sdata2:0x80518B30; // type:object size:0x6 scope:local align:4 data:string +@7790 = .sdata2:0x80518B38; // type:object size:0x8 scope:local align:4 data:string +@7805 = .sdata2:0x80518B40; // type:object size:0x8 scope:local align:4 data:string +@7807 = .sdata2:0x80518B48; // type:object size:0x8 scope:local align:4 data:string +@7865 = .sdata2:0x80518B50; // type:object size:0x8 scope:local align:4 data:string +@7882 = .sdata2:0x80518B58; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata2:0x80518B60; // type:object size:0x5 scope:local align:4 data:string +@2628 = .sdata2:0x80518B68; // type:object size:0x5 scope:local align:4 data:string +@2629 = .sdata2:0x80518B70; // type:object size:0x5 scope:local align:4 data:string +@2630 = .sdata2:0x80518B78; // type:object size:0x7 scope:local align:4 data:string +@2631 = .sdata2:0x80518B80; // type:object size:0x6 scope:local align:4 data:string +@2632 = .sdata2:0x80518B88; // type:object size:0x4 scope:local align:4 data:string +@2633 = .sdata2:0x80518B8C; // type:object size:0x5 scope:local align:4 data:string +@2634 = .sdata2:0x80518B94; // type:object size:0x5 scope:local align:4 data:string +@2635 = .sdata2:0x80518B9C; // type:object size:0x6 scope:local align:4 data:string +@2637 = .sdata2:0x80518BA4; // type:object size:0x6 scope:local align:4 data:string +@2638 = .sdata2:0x80518BAC; // type:object size:0x5 scope:local align:4 data:string +@2639 = .sdata2:0x80518BB4; // type:object size:0x5 scope:local align:4 data:string +@2642 = .sdata2:0x80518BBC; // type:object size:0x7 scope:local align:4 data:string +@2646 = .sdata2:0x80518BC4; // type:object size:0x5 scope:local align:4 data:string +@2647 = .sdata2:0x80518BCC; // type:object size:0x5 scope:local align:4 data:string +@2648 = .sdata2:0x80518BD4; // type:object size:0x6 scope:local align:4 data:string +@2649 = .sdata2:0x80518BDC; // type:object size:0x4 scope:local align:4 data:string +@4879 = .sdata2:0x80518BE0; // type:object size:0x4 scope:local align:4 data:float +@4880 = .sdata2:0x80518BE4; // type:object size:0x4 scope:local align:4 data:float +@4881 = .sdata2:0x80518BE8; // type:object size:0x4 scope:local align:4 data:float +@4882 = .sdata2:0x80518BEC; // type:object size:0x4 scope:local align:4 data:float +@4883 = .sdata2:0x80518BF0; // type:object size:0x4 scope:local align:4 data:float +@4974 = .sdata2:0x80518BF4; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata2:0x80518BF8; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x80518BFC; // type:object size:0x4 scope:local align:4 data:float +@5149 = .sdata2:0x80518C00; // type:object size:0x4 scope:local align:4 data:float +@5150 = .sdata2:0x80518C04; // type:object size:0x4 scope:local align:4 data:float +@5151 = .sdata2:0x80518C08; // type:object size:0x4 scope:local align:4 data:float +@5152 = .sdata2:0x80518C0C; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata2:0x80518C10; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x80518C14; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata2:0x80518C18; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata2:0x80518C1C; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata2:0x80518C20; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata2:0x80518C24; // type:object size:0x4 scope:local align:4 data:float +@5159 = .sdata2:0x80518C28; // type:object size:0x4 scope:local align:4 data:float +@5161 = .sdata2:0x80518C30; // type:object size:0x8 scope:local align:8 data:double +@5178 = .sdata2:0x80518C38; // type:object size:0x4 scope:local align:4 data:float +@5397 = .sdata2:0x80518C3C; // type:object size:0x4 scope:local align:4 data:float +@5398 = .sdata2:0x80518C40; // type:object size:0x4 scope:local align:4 data:float +@5596 = .sdata2:0x80518C44; // type:object size:0x4 scope:local align:4 data:float +@5597 = .sdata2:0x80518C48; // type:object size:0x4 scope:local align:4 data:float +@5726 = .sdata2:0x80518C4C; // type:object size:0x4 scope:local align:4 data:float +@5819 = .sdata2:0x80518C50; // type:object size:0x4 scope:local align:4 data:float +@5820 = .sdata2:0x80518C54; // type:object size:0x4 scope:local align:4 data:float +@6248 = .sdata2:0x80518C58; // type:object size:0x4 scope:local align:4 data:float +@6249 = .sdata2:0x80518C5C; // type:object size:0x4 scope:local align:4 data:float +@6250 = .sdata2:0x80518C60; // type:object size:0x4 scope:local align:4 data:float +@6251 = .sdata2:0x80518C64; // type:object size:0x4 scope:local align:4 data:float +@6252 = .sdata2:0x80518C68; // type:object size:0x4 scope:local align:4 data:float +@6253 = .sdata2:0x80518C6C; // type:object size:0x4 scope:local align:4 data:float +@6412 = .sdata2:0x80518C70; // type:object size:0x4 scope:local align:4 data:float +@6413 = .sdata2:0x80518C74; // type:object size:0x4 scope:local align:4 data:float +@6510 = .sdata2:0x80518C78; // type:object size:0x4 scope:local align:4 data:float +@6755 = .sdata2:0x80518C7C; // type:object size:0x4 scope:local align:4 data:float +@6915 = .sdata2:0x80518C80; // type:object size:0x4 scope:local align:4 data:float +@7320 = .sdata2:0x80518C84; // type:object size:0x4 scope:local align:4 data:float +@7321 = .sdata2:0x80518C88; // type:object size:0x4 scope:local align:4 data:float +@7322 = .sdata2:0x80518C8C; // type:object size:0x4 scope:local align:4 data:float +@7323 = .sdata2:0x80518C90; // type:object size:0x4 scope:local align:4 data:float +@7533 = .sdata2:0x80518C94; // type:object size:0x4 scope:local align:4 data:float +@7730 = .sdata2:0x80518C98; // type:object size:0x4 scope:local align:4 data:float +@7750 = .sdata2:0x80518C9C; // type:object size:0x4 scope:local align:4 data:float +@7751 = .sdata2:0x80518CA0; // type:object size:0x4 scope:local align:4 data:float +@7844 = .sdata2:0x80518CA4; // type:object size:0x4 scope:local align:4 data:float +@7862 = .sdata2:0x80518CA8; // type:object size:0x4 scope:local align:4 data:float +@8046 = .sdata2:0x80518CAC; // type:object size:0x4 scope:local align:4 data:float +@8048 = .sdata2:0x80518CB0; // type:object size:0x8 scope:local align:8 data:double +@8833 = .sdata2:0x80518CB8; // type:object size:0x4 scope:local align:4 data:float +@8834 = .sdata2:0x80518CBC; // type:object size:0x4 scope:local align:4 data:float +@9150 = .sdata2:0x80518CC0; // type:object size:0x4 scope:local align:4 data:float +@9237 = .sdata2:0x80518CC4; // type:object size:0x4 scope:local align:4 data:float +@9376 = .sdata2:0x80518CC8; // type:object size:0x6 scope:local align:4 data:string +@9377 = .sdata2:0x80518CD0; // type:object size:0x4 scope:local align:4 data:float +@9378 = .sdata2:0x80518CD4; // type:object size:0x4 scope:local align:4 data:float +@9612 = .sdata2:0x80518CD8; // type:object size:0x4 scope:local align:4 data:float +@9718 = .sdata2:0x80518CDC; // type:object size:0x4 scope:local align:4 data:float +@9719 = .sdata2:0x80518CE0; // type:object size:0x4 scope:local align:4 data:float +@9888 = .sdata2:0x80518CE4; // type:object size:0x4 scope:local align:4 data:float +@9991 = .sdata2:0x80518CE8; // type:object size:0x4 scope:local align:4 data:float +@10051 = .sdata2:0x80518CEC; // type:object size:0x4 scope:local align:4 data:float +@10080 = .sdata2:0x80518CF0; // type:object size:0x4 scope:local align:4 data:float +@10081 = .sdata2:0x80518CF4; // type:object size:0x4 scope:local align:4 data:float +@10125 = .sdata2:0x80518CF8; // type:object size:0x4 scope:local align:4 data:float +@10126 = .sdata2:0x80518CFC; // type:object size:0x4 scope:local align:4 data:float +@4123 = .sdata2:0x80518D00; // type:object size:0x3 scope:local align:4 data:string +@4490 = .sdata2:0x80518D04; // type:object size:0x5 scope:local align:4 data:string +@4492 = .sdata2:0x80518D0C; // type:object size:0x7 scope:local align:4 data:string +@4493 = .sdata2:0x80518D14; // type:object size:0x7 scope:local align:4 data:string +@4494 = .sdata2:0x80518D1C; // type:object size:0x7 scope:local align:4 data:string +@4496 = .sdata2:0x80518D24; // type:object size:0x7 scope:local align:4 data:string +@4498 = .sdata2:0x80518D2C; // type:object size:0x5 scope:local align:4 data:string +@4499 = .sdata2:0x80518D34; // type:object size:0x6 scope:local align:4 data:string +@4500 = .sdata2:0x80518D3C; // type:object size:0x6 scope:local align:4 data:string +@4502 = .sdata2:0x80518D44; // type:object size:0x7 scope:local align:4 data:string +@4503 = .sdata2:0x80518D4C; // type:object size:0x7 scope:local align:4 data:string +@4504 = .sdata2:0x80518D54; // type:object size:0x7 scope:local align:4 data:string +@4505 = .sdata2:0x80518D5C; // type:object size:0x5 scope:local align:4 data:string +@4506 = .sdata2:0x80518D64; // type:object size:0x5 scope:local align:4 data:string +@4508 = .sdata2:0x80518D6C; // type:object size:0x8 scope:local align:4 data:string +@4509 = .sdata2:0x80518D74; // type:object size:0x8 scope:local align:4 data:string +@4510 = .sdata2:0x80518D7C; // type:object size:0x8 scope:local align:4 data:string +@4511 = .sdata2:0x80518D84; // type:object size:0x6 scope:local align:4 data:string +@4514 = .sdata2:0x80518D8C; // type:object size:0x6 scope:local align:4 data:string +@4515 = .sdata2:0x80518D94; // type:object size:0x5 scope:local align:4 data:string +@4516 = .sdata2:0x80518D9C; // type:object size:0x8 scope:local align:4 data:string +@4517 = .sdata2:0x80518DA4; // type:object size:0x7 scope:local align:4 data:string +@4519 = .sdata2:0x80518DAC; // type:object size:0x5 scope:local align:4 data:string +@4520 = .sdata2:0x80518DB4; // type:object size:0x7 scope:local align:4 data:string +@4521 = .sdata2:0x80518DBC; // type:object size:0x7 scope:local align:4 data:string +@4591 = .sdata2:0x80518DC4; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x80518DC8; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x80518DCC; // type:object size:0x4 scope:local align:4 data:float +@4594 = .sdata2:0x80518DD0; // type:object size:0x4 scope:local align:4 data:float +@4596 = .sdata2:0x80518DD8; // type:object size:0x8 scope:local align:8 data:double +@4717 = .sdata2:0x80518DE0; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x80518DE4; // type:object size:0x4 scope:local align:4 data:float +@4719 = .sdata2:0x80518DE8; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x80518DEC; // type:object size:0x4 scope:local align:4 data:float +@4751 = .sdata2:0x80518DF0; // type:object size:0x4 scope:local align:4 data:float +@4858 = .sdata2:0x80518DF4; // type:object size:0x4 scope:local align:4 data:float +@4924 = .sdata2:0x80518DF8; // type:object size:0x4 scope:local align:4 data:float +@4925 = .sdata2:0x80518DFC; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata2:0x80518E00; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata2:0x80518E04; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata2:0x80518E08; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata2:0x80518E0C; // type:object size:0x4 scope:local align:4 data:float +@5016 = .sdata2:0x80518E10; // type:object size:0x4 scope:local align:4 data:float +@5017 = .sdata2:0x80518E14; // type:object size:0x4 scope:local align:4 data:float +@5090 = .sdata2:0x80518E18; // type:object size:0x4 scope:local align:4 data:float +@5091 = .sdata2:0x80518E1C; // type:object size:0x4 scope:local align:4 data:float +@5092 = .sdata2:0x80518E20; // type:object size:0x4 scope:local align:4 data:float +@5103 = .sdata2:0x80518E24; // type:object size:0x4 scope:local align:4 data:float +@5225 = .sdata2:0x80518E28; // type:object size:0x4 scope:local align:4 data:float +@5381 = .sdata2:0x80518E2C; // type:object size:0x4 scope:local align:4 data:float +@5382 = .sdata2:0x80518E30; // type:object size:0x4 scope:local align:4 data:float +@5542 = .sdata2:0x80518E34; // type:object size:0x4 scope:local align:4 data:float +@5543 = .sdata2:0x80518E38; // type:object size:0x4 scope:local align:4 data:float +@5544 = .sdata2:0x80518E3C; // type:object size:0x4 scope:local align:4 data:float +@5545 = .sdata2:0x80518E40; // type:object size:0x4 scope:local align:4 data:float +@5546 = .sdata2:0x80518E44; // type:object size:0x4 scope:local align:4 data:float +@5547 = .sdata2:0x80518E48; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata2:0x80518E4C; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata2:0x80518E50; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata2:0x80518E54; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata2:0x80518E58; // type:object size:0x4 scope:local align:4 data:float +@5783 = .sdata2:0x80518E5C; // type:object size:0x4 scope:local align:4 data:float +@5784 = .sdata2:0x80518E60; // type:object size:0x4 scope:local align:4 data:float +@6310 = .sdata2:0x80518E64; // type:object size:0x4 scope:local align:4 data:float +@6677 = .sdata2:0x80518E68; // type:object size:0x4 scope:local align:4 data:float +@6711 = .sdata2:0x80518E6C; // type:object size:0x4 scope:local align:4 data:float +@6763 = .sdata2:0x80518E70; // type:object size:0x4 scope:local align:4 data:float +@6992 = .sdata2:0x80518E74; // type:object size:0x4 scope:local align:4 data:float +@6993 = .sdata2:0x80518E78; // type:object size:0x4 scope:local align:4 data:float +@6994 = .sdata2:0x80518E7C; // type:object size:0x4 scope:local align:4 data:float +@6995 = .sdata2:0x80518E80; // type:object size:0x4 scope:local align:4 data:float +@7063 = .sdata2:0x80518E84; // type:object size:0x4 scope:local align:4 data:float +@7312 = .sdata2:0x80518E88; // type:object size:0x4 scope:local align:4 data:float +@7345 = .sdata2:0x80518E8C; // type:object size:0x4 scope:local align:4 data:float +@7781 = .sdata2:0x80518E90; // type:object size:0x4 scope:local align:4 data:float +@7782 = .sdata2:0x80518E94; // type:object size:0x4 scope:local align:4 data:float +@7783 = .sdata2:0x80518E98; // type:object size:0x4 scope:local align:4 data:float +@7784 = .sdata2:0x80518E9C; // type:object size:0x4 scope:local align:4 data:float +@7785 = .sdata2:0x80518EA0; // type:object size:0x4 scope:local align:4 data:float +@7786 = .sdata2:0x80518EA4; // type:object size:0x4 scope:local align:4 data:float +@8110 = .sdata2:0x80518EA8; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata2:0x80518EB0; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x80518EB4; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x80518EB8; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x80518EBC; // type:object size:0x4 scope:local align:4 data:float +@4632 = .sdata2:0x80518EC0; // type:object size:0x4 scope:local align:4 data:float +@4633 = .sdata2:0x80518EC4; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata2:0x80518EC8; // type:object size:0x4 scope:local align:4 data:float +@4847 = .sdata2:0x80518ECC; // type:object size:0x4 scope:local align:4 data:float +@4848 = .sdata2:0x80518ED0; // type:object size:0x4 scope:local align:4 data:float +@4849 = .sdata2:0x80518ED4; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata2:0x80518ED8; // type:object size:0x4 scope:local align:4 data:float +@4851 = .sdata2:0x80518EDC; // type:object size:0x4 scope:local align:4 data:float +@4852 = .sdata2:0x80518EE0; // type:object size:0x4 scope:local align:4 data:float +@4857 = .sdata2:0x80518EE8; // type:object size:0x8 scope:local align:8 data:double +@3389 = .sdata2:0x80518EF0; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata2:0x80518EF4; // type:object size:0x4 scope:local align:4 data:float +@3391 = .sdata2:0x80518EF8; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x80518EFC; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x80518F00; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata2:0x80518F04; // type:object size:0x4 scope:local align:4 data:float +@3397 = .sdata2:0x80518F08; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x80518F0C; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x80518F10; // type:object size:0x4 scope:local align:4 data:float +@3495 = .sdata2:0x80518F14; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x80518F18; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata2:0x80518F1C; // type:object size:0x4 scope:local align:4 data:float +@3918 = .sdata2:0x80518F20; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x80518F24; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x80518F28; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x80518F2C; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x80518F30; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x80518F38; // type:object size:0x8 scope:local align:8 data:double +@4022 = .sdata2:0x80518F40; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x80518F44; // type:object size:0x4 scope:local align:4 data:float +@3422 = .sdata2:0x80518F48; // type:object size:0x7 scope:local align:4 data:string +@3428 = .sdata2:0x80518F50; // type:object size:0x3 scope:local align:4 data:string +@3711 = .sdata2:0x80518F54; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata2:0x80518F58; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x80518F60; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x80518F64; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x80518F68; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x80518F6C; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x80518F70; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x80518F74; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x80518F78; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x80518F7C; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x80518F80; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x80518F84; // type:object size:0x4 scope:local align:4 data:float +@4157 = .sdata2:0x80518F88; // type:object size:0x4 scope:local align:4 data:float +@4579 = .sdata2:0x80518F8C; // type:object size:0x4 scope:local align:4 data:float +@4580 = .sdata2:0x80518F90; // type:object size:0x4 scope:local align:4 data:float +@4581 = .sdata2:0x80518F94; // type:object size:0x4 scope:local align:4 data:float +@4582 = .sdata2:0x80518F98; // type:object size:0x4 scope:local align:4 data:float +@4583 = .sdata2:0x80518F9C; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x80518FA0; // type:object size:0x4 scope:local align:4 data:float +@4637 = .sdata2:0x80518FA8; // type:object size:0x8 scope:local align:8 data:double +@4830 = .sdata2:0x80518FB0; // type:object size:0x4 scope:local align:4 data:string +@5448 = .sdata2:0x80518FB4; // type:object size:0x4 scope:local align:4 data:float +@5449 = .sdata2:0x80518FB8; // type:object size:0x4 scope:local align:4 data:float +@5450 = .sdata2:0x80518FBC; // type:object size:0x4 scope:local align:4 data:float +@5451 = .sdata2:0x80518FC0; // type:object size:0x4 scope:local align:4 data:float +@5672 = .sdata2:0x80518FC4; // type:object size:0x4 scope:local align:4 data:float +@5737 = .sdata2:0x80518FC8; // type:object size:0x4 scope:local align:4 data:float +@6540 = .sdata2:0x80518FCC; // type:object size:0x4 scope:local align:4 data:float +@6541 = .sdata2:0x80518FD0; // type:object size:0x4 scope:local align:4 data:float +@6542 = .sdata2:0x80518FD4; // type:object size:0x4 scope:local align:4 data:float +@6794 = .sdata2:0x80518FD8; // type:object size:0x4 scope:local align:4 data:float +@6885 = .sdata2:0x80518FDC; // type:object size:0x4 scope:local align:4 data:float +@6886 = .sdata2:0x80518FE0; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x80518FE8; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x80518FEC; // type:object size:0x4 scope:local align:4 data:float +@5099 = .sdata2:0x80518FF0; // type:object size:0x4 scope:local align:4 data:float +@5101 = .sdata2:0x80518FF4; // type:object size:0x4 scope:local align:4 data:float +@5102 = .sdata2:0x80518FF8; // type:object size:0x4 scope:local align:4 data:float +@5103 = .sdata2:0x80518FFC; // type:object size:0x4 scope:local align:4 data:float +@5104 = .sdata2:0x80519000; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata2:0x80519004; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata2:0x80519008; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata2:0x8051900C; // type:object size:0x4 scope:local align:4 data:float +@5108 = .sdata2:0x80519010; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata2:0x80519014; // type:object size:0x4 scope:local align:4 data:float +@5110 = .sdata2:0x80519018; // type:object size:0x4 scope:local align:4 data:float +@5111 = .sdata2:0x8051901C; // type:object size:0x4 scope:local align:4 data:float +@5112 = .sdata2:0x80519020; // type:object size:0x4 scope:local align:4 data:float +@5113 = .sdata2:0x80519024; // type:object size:0x4 scope:local align:4 data:float +@5114 = .sdata2:0x80519028; // type:object size:0x4 scope:local align:4 data:float +@5115 = .sdata2:0x8051902C; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x80519030; // type:object size:0x4 scope:local align:4 data:float +@5118 = .sdata2:0x80519038; // type:object size:0x8 scope:local align:8 data:double +@3496 = .sdata2:0x80519040; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata2:0x80519044; // type:object size:0x4 scope:local align:4 data:float +@3498 = .sdata2:0x80519048; // type:object size:0x4 scope:local align:4 data:float +@3499 = .sdata2:0x8051904C; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata2:0x80519050; // type:object size:0x4 scope:local align:4 data:float +@3426 = .sdata2:0x80519058; // type:object size:0x5 scope:local align:4 data:string +@3452 = .sdata2:0x80519060; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x80519064; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x80519068; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x8051906C; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x80519070; // type:object size:0x8 scope:local align:8 data:double +@3492 = .sdata2:0x80519078; // type:object size:0x3 scope:local align:4 data:string +@3493 = .sdata2:0x8051907C; // type:object size:0x3 scope:local align:4 data:string +@3494 = .sdata2:0x80519080; // type:object size:0x3 scope:local align:4 data:string +@3495 = .sdata2:0x80519084; // type:object size:0x3 scope:local align:4 data:string +@3496 = .sdata2:0x80519088; // type:object size:0x3 scope:local align:4 data:string +@3523 = .sdata2:0x8051908C; // type:object size:0x7 scope:local align:4 data:string +@3544 = .sdata2:0x80519094; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x80519098; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x805190A0; // type:object size:0x8 scope:local align:8 data:double +@3567 = .sdata2:0x805190A8; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x805190AC; // type:object size:0x4 scope:local align:4 data:float +@3578 = .sdata2:0x805190B0; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x805190B4; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x805190B8; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x805190BC; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x805190C0; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x805190C4; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x805190C8; // type:object size:0x4 scope:local align:4 data:float +@3449 = .sdata2:0x805190D0; // type:object size:0x5 scope:local align:4 data:string +@3450 = .sdata2:0x805190D8; // type:object size:0x5 scope:local align:4 data:string +@3451 = .sdata2:0x805190E0; // type:object size:0x5 scope:local align:4 data:string +@3472 = .sdata2:0x805190E8; // type:object size:0x6 scope:local align:4 data:string +@3491 = .sdata2:0x805190F0; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x805190F4; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x805190F8; // type:object size:0x4 scope:local align:4 data:float +@3670 = .sdata2:0x805190FC; // type:object size:0x4 scope:local align:4 data:float +@3672 = .sdata2:0x80519100; // type:object size:0x8 scope:local align:8 data:double +@3792 = .sdata2:0x80519108; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x80519110; // type:object size:0x6 scope:local align:4 data:string +@3499 = .sdata2:0x80519118; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata2:0x8051911C; // type:object size:0x4 scope:local align:4 data:float +@3501 = .sdata2:0x80519120; // type:object size:0x4 scope:local align:4 data:float +@3502 = .sdata2:0x80519124; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata2:0x80519128; // type:object size:0x4 scope:local align:4 data:float +@3504 = .sdata2:0x8051912C; // type:object size:0x4 scope:local align:4 data:float +@3505 = .sdata2:0x80519130; // type:object size:0x4 scope:local align:4 data:float +@3506 = .sdata2:0x80519134; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x80519138; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata2:0x80519140; // type:object size:0x8 scope:local align:8 data:double +@3565 = .sdata2:0x80519148; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051914C; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x80519150; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x80519154; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x80519158; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051915C; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata2:0x80519160; // type:object size:0x5 scope:local align:4 data:string +@3790 = .sdata2:0x80519168; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051916C; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x80519170; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata2:0x80519178; // type:object size:0x5 scope:local align:4 data:string +@3058 = .sdata2:0x80519180; // type:object size:0x4 scope:local align:4 data:float +@3264 = .sdata2:0x80519184; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata2:0x80519188; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x8051918C; // type:object size:0x4 scope:local align:4 data:float +@4481 = .sdata2:0x80519190; // type:object size:0x4 scope:local align:4 data:float +@4988 = .sdata2:0x80519194; // type:object size:0x4 scope:local align:4 data:string +@4989 = .sdata2:0x80519198; // type:object size:0x6 scope:local align:4 data:string +@4991 = .sdata2:0x805191A0; // type:object size:0x4 scope:local align:4 data:float +@5420 = .sdata2:0x805191A4; // type:object size:0x4 scope:local align:4 data:float +@5421 = .sdata2:0x805191A8; // type:object size:0x4 scope:local align:4 data:float +@5422 = .sdata2:0x805191AC; // type:object size:0x4 scope:local align:4 data:float +@5423 = .sdata2:0x805191B0; // type:object size:0x4 scope:local align:4 data:float +@5424 = .sdata2:0x805191B4; // type:object size:0x4 scope:local align:4 data:float +@5425 = .sdata2:0x805191B8; // type:object size:0x4 scope:local align:4 data:float +@5426 = .sdata2:0x805191BC; // type:object size:0x4 scope:local align:4 data:float +@5427 = .sdata2:0x805191C0; // type:object size:0x4 scope:local align:4 data:float +@5432 = .sdata2:0x805191C4; // type:object size:0x6 scope:local align:4 data:string +@5433 = .sdata2:0x805191CC; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x805191D0; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x805191D4; // type:object size:0x4 scope:local align:4 data:float +@5459 = .sdata2:0x805191D8; // type:object size:0x4 scope:local align:4 data:float +@5460 = .sdata2:0x805191DC; // type:object size:0x4 scope:local align:4 data:float +@5461 = .sdata2:0x805191E0; // type:object size:0x4 scope:local align:4 data:float +@5462 = .sdata2:0x805191E4; // type:object size:0x4 scope:local align:4 data:float +@5463 = .sdata2:0x805191E8; // type:object size:0x4 scope:local align:4 data:float +@5464 = .sdata2:0x805191EC; // type:object size:0x4 scope:local align:4 data:float +@5466 = .sdata2:0x805191F0; // type:object size:0x8 scope:local align:8 data:double +@5519 = .sdata2:0x805191F8; // type:object size:0x4 scope:local align:4 data:float +@5537 = .sdata2:0x805191FC; // type:object size:0x4 scope:local align:4 data:float +@5538 = .sdata2:0x80519200; // type:object size:0x4 scope:local align:4 data:float +@5539 = .sdata2:0x80519204; // type:object size:0x4 scope:local align:4 data:float +@5540 = .sdata2:0x80519208; // type:object size:0x4 scope:local align:4 data:float +@5618 = .sdata2:0x8051920C; // type:object size:0x4 scope:local align:4 data:float +@5779 = .sdata2:0x80519210; // type:object size:0x4 scope:local align:4 data:float +@5780 = .sdata2:0x80519214; // type:object size:0x4 scope:local align:4 data:float +@5879 = .sdata2:0x80519218; // type:object size:0x4 scope:local align:4 data:float +@6113 = .sdata2:0x8051921C; // type:object size:0x4 scope:local align:4 data:float +@6114 = .sdata2:0x80519220; // type:object size:0x4 scope:local align:4 data:float +@6115 = .sdata2:0x80519224; // type:object size:0x4 scope:local align:4 data:float +@6116 = .sdata2:0x80519228; // type:object size:0x4 scope:local align:4 data:float +@6117 = .sdata2:0x8051922C; // type:object size:0x4 scope:local align:4 data:float +@6118 = .sdata2:0x80519230; // type:object size:0x4 scope:local align:4 data:float +@6119 = .sdata2:0x80519234; // type:object size:0x4 scope:local align:4 data:float +@3303 = .sdata2:0x80519238; // type:object size:0x4 scope:local align:4 data:float +@3845 = .sdata2:0x8051923C; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x80519240; // type:object size:0x8 scope:local align:8 data:double +@3874 = .sdata2:0x80519248; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051924C; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x80519250; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x80519254; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x80519258; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051925C; // type:object size:0x6 scope:local align:4 data:string +@3766 = .sdata2:0x80519268; // type:object size:0x8 scope:local align:8 data:double +@3857 = .sdata2:0x80519270; // type:object size:0x7 scope:local align:4 data:string +@3318 = .sdata2:0x80519278; // type:object size:0x3 scope:local align:4 +@3319 = .sdata2:0x8051927C; // type:object size:0x3 scope:local align:4 +@3420 = .sdata2:0x80519280; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x80519284; // type:object size:0x4 scope:local align:4 data:float +@3422 = .sdata2:0x80519288; // type:object size:0x4 scope:local align:4 data:float +@3423 = .sdata2:0x8051928C; // type:object size:0x4 scope:local align:4 data:float +@3424 = .sdata2:0x80519290; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x80519294; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x80519298; // type:object size:0x8 scope:local align:8 data:double +@3656 = .sdata2:0x805192A0; // type:object size:0x6 scope:local align:4 data:string +@3426 = .sdata2:0x805192A8; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x805192AC; // type:object size:0x4 scope:local align:4 data:float +@3607 = .sdata2:0x805192B0; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x805192B4; // type:object size:0x4 scope:local align:4 data:float +@3380 = .sdata2:0x805192B8; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x805192BC; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata2:0x805192C0; // type:object size:0x4 scope:local align:4 data:float +@2961 = .sdata2:0x805192C8; // type:object size:0x7 scope:local align:4 data:string +@2962 = .sdata2:0x805192D0; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata2:0x805192D4; // type:object size:0x5 scope:local align:4 data:string +@3091 = .sdata2:0x805192DC; // type:object size:0x7 scope:local align:4 data:string +@3093 = .sdata2:0x805192E4; // type:object size:0x6 scope:local align:4 data:string +@3096 = .sdata2:0x805192EC; // type:object size:0x8 scope:local align:4 data:string +@3097 = .sdata2:0x805192F4; // type:object size:0x5 scope:local align:4 data:string +@3098 = .sdata2:0x805192FC; // type:object size:0x6 scope:local align:4 data:string +@3099 = .sdata2:0x80519304; // type:object size:0x6 scope:local align:4 data:string +@3101 = .sdata2:0x8051930C; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x80519310; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x80519314; // type:object size:0x6 scope:local align:4 data:string +@3462 = .sdata2:0x80519320; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x80519324; // type:object size:0x4 scope:local align:4 data:float +@3464 = .sdata2:0x80519328; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x8051932C; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x80519330; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x80519334; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x80519338; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051933C; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x80519340; // type:object size:0x4 scope:local align:4 data:float +@4067 = .sdata2:0x80519344; // type:object size:0x4 scope:local align:4 data:float +@4185 = .sdata2:0x80519348; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051934C; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x80519350; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x80519354; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x80519358; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata2:0x8051935C; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata2:0x80519360; // type:object size:0x4 scope:local align:4 data:float +@5121 = .sdata2:0x80519364; // type:object size:0x4 scope:local align:4 data:float +@5403 = .sdata2:0x80519368; // type:object size:0x4 scope:local align:4 data:float +@3283 = .sdata2:0x80519370; // type:object size:0x3 scope:local align:4 data:string +@3284 = .sdata2:0x80519374; // type:object size:0x4 scope:local align:4 data:float +@3285 = .sdata2:0x80519378; // type:object size:0x4 scope:local align:4 data:float +@3286 = .sdata2:0x8051937C; // type:object size:0x4 scope:local align:4 data:float +@3287 = .sdata2:0x80519380; // type:object size:0x4 scope:local align:4 data:float +@3288 = .sdata2:0x80519384; // type:object size:0x4 scope:local align:4 data:float +@3352 = .sdata2:0x80519388; // type:object size:0x5 scope:local align:4 data:string +@3353 = .sdata2:0x80519390; // type:object size:0x8 scope:local align:4 data:string +@3355 = .sdata2:0x80519398; // type:object size:0x4 scope:local align:4 data:string +@3356 = .sdata2:0x8051939C; // type:object size:0x8 scope:local align:4 data:string +@3358 = .sdata2:0x805193A4; // type:object size:0x7 scope:local align:4 data:string +@3360 = .sdata2:0x805193AC; // type:object size:0x7 scope:local align:4 data:string +@3366 = .sdata2:0x805193B4; // type:object size:0x4 scope:local align:4 data:string +@3367 = .sdata2:0x805193B8; // type:object size:0x4 scope:local align:4 data:string +@3371 = .sdata2:0x805193BC; // type:object size:0x6 scope:local align:4 data:string +@3372 = .sdata2:0x805193C4; // type:object size:0x7 scope:local align:4 data:string +@3375 = .sdata2:0x805193CC; // type:object size:0x6 scope:local align:4 data:string +@3377 = .sdata2:0x805193D4; // type:object size:0x8 scope:local align:4 data:string +@3378 = .sdata2:0x805193DC; // type:object size:0x8 scope:local align:4 data:string +@3379 = .sdata2:0x805193E4; // type:object size:0x8 scope:local align:4 data:string +@3380 = .sdata2:0x805193EC; // type:object size:0x8 scope:local align:4 data:string +@3381 = .sdata2:0x805193F4; // type:object size:0x7 scope:local align:4 data:string +@3382 = .sdata2:0x805193FC; // type:object size:0x8 scope:local align:4 data:string +@3383 = .sdata2:0x80519404; // type:object size:0x5 scope:local align:4 data:string +@3484 = .sdata2:0x8051940C; // type:object size:0x4 scope:local align:4 data:string +@3485 = .sdata2:0x80519410; // type:object size:0x4 scope:local align:4 data:string +@2660 = .sdata2:0x80519418; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata2:0x8051941C; // type:object size:0x4 scope:local align:4 data:float +@2844 = .sdata2:0x80519420; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x80519428; // type:object size:0x8 scope:local align:4 data:string +@2673 = .sdata2:0x80519430; // type:object size:0x5 scope:local align:4 data:string +@2675 = .sdata2:0x80519438; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x80519440; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x80519444; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x80519448; // type:object size:0x4 scope:local align:4 data:float +@4182 = .sdata2:0x8051944C; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x80519450; // type:object size:0x4 scope:local align:4 data:float +@4815 = .sdata2:0x80519454; // type:object size:0x4 scope:local align:4 data:float +@4816 = .sdata2:0x80519458; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x8051945C; // type:object size:0x4 scope:local align:4 data:float +@4987 = .sdata2:0x80519460; // type:object size:0x4 scope:local align:4 data:float +@5476 = .sdata2:0x80519464; // type:object size:0x4 scope:local align:4 data:float +@5734 = .sdata2:0x80519468; // type:object size:0x4 scope:local align:4 data:float +@5736 = .sdata2:0x80519470; // type:object size:0x8 scope:local align:8 data:double +@6339 = .sdata2:0x80519478; // type:object size:0x4 scope:local align:4 data:float +@6340 = .sdata2:0x8051947C; // type:object size:0x4 scope:local align:4 data:float +@7362 = .sdata2:0x80519480; // type:object size:0x4 scope:local align:4 data:float +@7578 = .sdata2:0x80519484; // type:object size:0x4 scope:local align:4 data:float +@7933 = .sdata2:0x80519488; // type:object size:0x4 scope:local align:4 data:float +@8585 = .sdata2:0x8051948C; // type:object size:0x4 scope:local align:4 data:float +@8586 = .sdata2:0x80519490; // type:object size:0x4 scope:local align:4 data:float +@8588 = .sdata2:0x80519494; // type:object size:0x4 scope:local align:4 data:float +@8670 = .sdata2:0x80519498; // type:object size:0x8 scope:local align:4 data:string +@8823 = .sdata2:0x805194A0; // type:object size:0x5 scope:local align:4 data:string +@4573 = .sdata2:0x805194A8; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x805194AC; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata2:0x805194B0; // type:object size:0x7 scope:local align:4 data:string +@4618 = .sdata2:0x805194B8; // type:object size:0x4 scope:local align:4 data:float +@4619 = .sdata2:0x805194C0; // type:object size:0x8 scope:local align:8 data:double +@4621 = .sdata2:0x805194C8; // type:object size:0x8 scope:local align:8 data:double +@4906 = .sdata2:0x805194D0; // type:object size:0x6 scope:local align:4 data:string +@4992 = .sdata2:0x805194D8; // type:object size:0x8 scope:local align:4 data:string +@4994 = .sdata2:0x805194E0; // type:object size:0x7 scope:local align:4 data:string +@4996 = .sdata2:0x805194E8; // type:object size:0x6 scope:local align:4 data:string +@5136 = .sdata2:0x805194F0; // type:object size:0x4 scope:local align:4 data:float +@5137 = .sdata2:0x805194F4; // type:object size:0x4 scope:local align:4 data:float +@5138 = .sdata2:0x805194F8; // type:object size:0x4 scope:local align:4 data:float +@5139 = .sdata2:0x805194FC; // type:object size:0x4 scope:local align:4 data:float +@5140 = .sdata2:0x80519500; // type:object size:0x4 scope:local align:4 data:float +@5141 = .sdata2:0x80519504; // type:object size:0x4 scope:local align:4 data:float +@5142 = .sdata2:0x80519508; // type:object size:0x4 scope:local align:4 data:float +@5143 = .sdata2:0x8051950C; // type:object size:0x4 scope:local align:4 data:float +@5144 = .sdata2:0x80519510; // type:object size:0x4 scope:local align:4 data:float +@5145 = .sdata2:0x80519514; // type:object size:0x4 scope:local align:4 data:float +@5146 = .sdata2:0x80519518; // type:object size:0x4 scope:local align:4 data:float +@5275 = .sdata2:0x8051951C; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x80519520; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x80519524; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x80519528; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x8051952C; // type:object size:0x4 scope:local align:4 data:float +@5459 = .sdata2:0x80519530; // type:object size:0x4 scope:local align:4 data:float +@5460 = .sdata2:0x80519534; // type:object size:0x4 scope:local align:4 data:float +@5461 = .sdata2:0x80519538; // type:object size:0x4 scope:local align:4 data:float +@5462 = .sdata2:0x8051953C; // type:object size:0x4 scope:local align:4 data:float +@5463 = .sdata2:0x80519540; // type:object size:0x4 scope:local align:4 data:float +@5558 = .sdata2:0x80519544; // type:object size:0x4 scope:local align:4 data:float +@5645 = .sdata2:0x80519548; // type:object size:0x4 scope:local align:4 data:float +@5646 = .sdata2:0x8051954C; // type:object size:0x4 scope:local align:4 data:float +@5647 = .sdata2:0x80519550; // type:object size:0x4 scope:local align:4 data:float +@5648 = .sdata2:0x80519554; // type:object size:0x4 scope:local align:4 data:float +@5649 = .sdata2:0x80519558; // type:object size:0x4 scope:local align:4 data:float +@5650 = .sdata2:0x8051955C; // type:object size:0x4 scope:local align:4 data:float +@5651 = .sdata2:0x80519560; // type:object size:0x4 scope:local align:4 data:float +@5653 = .sdata2:0x80519568; // type:object size:0x8 scope:local align:8 data:double +@5731 = .sdata2:0x80519570; // type:object size:0x4 scope:local align:4 data:float +@6051 = .sdata2:0x80519574; // type:object size:0x4 scope:local align:4 data:float +@6052 = .sdata2:0x80519578; // type:object size:0x4 scope:local align:4 data:float +@6053 = .sdata2:0x8051957C; // type:object size:0x4 scope:local align:4 data:float +@6054 = .sdata2:0x80519580; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x80519588; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x8051958C; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x80519590; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x80519594; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x80519598; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x8051959C; // type:object size:0x4 scope:local align:4 data:float +@4084 = .sdata2:0x805195A0; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x805195A8; // type:object size:0x8 scope:local align:8 data:double +@4150 = .sdata2:0x805195B0; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x805195B4; // type:object size:0x5 scope:local align:4 data:string +@4255 = .sdata2:0x805195BC; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x805195C0; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x805195C4; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x805195C8; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x805195CC; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x805195D0; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x805195D4; // type:object size:0x4 scope:local align:4 data:float +@4628 = .sdata2:0x805195D8; // type:object size:0x5 scope:local align:4 data:string +@4630 = .sdata2:0x805195E0; // type:object size:0x8 scope:local align:8 data:double +@4639 = .sdata2:0x805195E8; // type:object size:0x4 scope:local align:4 data:float +@4674 = .sdata2:0x805195EC; // type:object size:0x5 scope:local align:4 data:string +@4729 = .sdata2:0x805195F4; // type:object size:0x4 scope:local align:4 data:string +@5108 = .sdata2:0x805195F8; // type:object size:0x5 scope:local align:4 data:string +@5147 = .sdata2:0x80519600; // type:object size:0x7 scope:local align:4 data:string +@5217 = .sdata2:0x80519608; // type:object size:0x8 scope:local align:4 data:string +@5347 = .sdata2:0x80519610; // type:object size:0x5 scope:local align:4 data:string +@3495 = .sdata2:0x80519618; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x8051961C; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x80519620; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x80519624; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x80519628; // type:object size:0x6 scope:local align:4 data:string +@3702 = .sdata2:0x80519630; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x80519638; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051963C; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x80519640; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x80519644; // type:object size:0x4 scope:local align:4 data:float +@3994 = .sdata2:0x80519648; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051964C; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x80519650; // type:object size:0x5 scope:local align:4 data:string +@4082 = .sdata2:0x80519658; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x8051965C; // type:object size:0x4 scope:local align:4 data:float +@4204 = .sdata2:0x80519660; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata2:0x80519664; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata2:0x80519668; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x8051966C; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x80519670; // type:object size:0x5 scope:local align:4 data:string +@4352 = .sdata2:0x80519678; // type:object size:0x8 scope:local align:4 data:string +@3803 = .sdata2:0x80519680; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x80519684; // type:object size:0x4 scope:local align:4 data:float +@3954 = .sdata2:0x80519688; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051968C; // type:object size:0x4 scope:local align:4 data:float +@3996 = .sdata2:0x80519690; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x80519694; // type:object size:0x4 scope:local align:4 data:float +@3999 = .sdata2:0x80519698; // type:object size:0x8 scope:local align:8 data:double +@4016 = .sdata2:0x805196A0; // type:object size:0x4 scope:local align:4 data:float +@4064 = .sdata2:0x805196A4; // type:object size:0x6 scope:local align:4 data:string +@4188 = .sdata2:0x805196AC; // type:object size:0x6 scope:local align:4 data:string +@4230 = .sdata2:0x805196B4; // type:object size:0x8 scope:local align:4 data:string +@3472 = .sdata2:0x805196C0; // type:object size:0x8 scope:local align:4 data:string +@3473 = .sdata2:0x805196C8; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x805196CC; // type:object size:0x3 scope:local align:4 +@3653 = .sdata2:0x805196D0; // type:object size:0x7 scope:local align:4 +@3655 = .sdata2:0x805196D8; // type:object size:0x7 scope:local align:4 +@3656 = .sdata2:0x805196E0; // type:object size:0x5 scope:local align:4 +@3657 = .sdata2:0x805196E8; // type:object size:0x5 scope:local align:4 +@3659 = .sdata2:0x805196F0; // type:object size:0x5 scope:local align:4 +@3660 = .sdata2:0x805196F8; // type:object size:0x5 scope:local align:4 +@3690 = .sdata2:0x80519700; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata2:0x80519704; // type:object size:0x5 scope:local align:4 data:string +@3697 = .sdata2:0x8051970C; // type:object size:0x6 scope:local align:4 data:string +@3699 = .sdata2:0x80519714; // type:object size:0x7 scope:local align:4 +@3700 = .sdata2:0x8051971C; // type:object size:0x7 scope:local align:4 +@3701 = .sdata2:0x80519724; // type:object size:0x7 scope:local align:4 +@3702 = .sdata2:0x8051972C; // type:object size:0x8 scope:local align:4 data:string +@3704 = .sdata2:0x80519734; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x80519738; // type:object size:0x7 scope:local align:4 +@3936 = .sdata2:0x80519740; // type:object size:0x5 scope:local align:4 +@4003 = .sdata2:0x80519748; // type:object size:0x3 scope:local align:4 data:string +@3350 = .sdata2:0x80519750; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x80519754; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x80519758; // type:object size:0x5 scope:local align:4 data:string +@3491 = .sdata2:0x80519760; // type:object size:0x4 scope:local align:4 data:string +@3492 = .sdata2:0x80519764; // type:object size:0x4 scope:local align:4 data:string +@3542 = .sdata2:0x80519768; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051976C; // type:object size:0x2 scope:local align:4 data:string +@3544 = .sdata2:0x80519770; // type:object size:0x2 scope:local align:4 data:string +@3545 = .sdata2:0x80519774; // type:object size:0x2 scope:local align:4 data:string +@3546 = .sdata2:0x80519778; // type:object size:0x2 scope:local align:4 data:string +@3548 = .sdata2:0x8051977C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x80519780; // type:object size:0x5 scope:local align:4 data:string +@3596 = .sdata2:0x80519788; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x8051978C; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x80519790; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x80519794; // type:object size:0x4 scope:local align:4 data:float +@3600 = .sdata2:0x80519798; // type:object size:0x4 scope:local align:4 data:float +@3601 = .sdata2:0x8051979C; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x805197A0; // type:object size:0x4 scope:local align:4 data:float +@3603 = .sdata2:0x805197A4; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x805197A8; // type:object size:0x8 scope:local align:8 data:double +@4102 = .sdata2:0x805197B0; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x805197B4; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x805197B8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x805197BC; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x805197C0; // type:object size:0x8 scope:local align:8 data:double +@4211 = .sdata2:0x805197C8; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x805197CC; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x805197D0; // type:object size:0x4 scope:local align:4 data:float +@4235 = .sdata2:0x805197D4; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata2:0x805197D8; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x805197DC; // type:object size:0x4 scope:local align:4 data:float +@4566 = .sdata2:0x805197E0; // type:object size:0x4 scope:local align:4 data:float +@4785 = .sdata2:0x805197E4; // type:object size:0x4 scope:local align:4 data:float +@4892 = .sdata2:0x805197E8; // type:object size:0x4 scope:local align:4 data:float +@4898 = .sdata2:0x805197EC; // type:object size:0x4 scope:local align:4 data:float +@5015 = .sdata2:0x805197F0; // type:object size:0x8 scope:local align:4 data:string +@5178 = .sdata2:0x805197F8; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x80519800; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x80519804; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x80519808; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051980C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x80519810; // type:object size:0x3 scope:local align:4 data:string +@4385 = .sdata2:0x80519814; // type:object size:0x4 scope:local align:4 data:float +@4386 = .sdata2:0x80519818; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata2:0x8051981C; // type:object size:0x4 scope:local align:4 data:float +@4388 = .sdata2:0x80519820; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x80519824; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x80519828; // type:object size:0x4 scope:local align:4 data:float +@4726 = .sdata2:0x8051982C; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x80519830; // type:object size:0x4 scope:local align:4 data:float +@4728 = .sdata2:0x80519834; // type:object size:0x4 scope:local align:4 data:float +@4729 = .sdata2:0x80519838; // type:object size:0x4 scope:local align:4 data:float +@4730 = .sdata2:0x8051983C; // type:object size:0x4 scope:local align:4 data:float +@4731 = .sdata2:0x80519840; // type:object size:0x4 scope:local align:4 data:float +@4749 = .sdata2:0x80519844; // type:object size:0x4 scope:local align:4 data:float +@4786 = .sdata2:0x80519848; // type:object size:0x4 scope:local align:4 data:float +@4812 = .sdata2:0x8051984C; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x80519850; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x80519858; // type:object size:0x8 scope:local align:8 data:double +@5033 = .sdata2:0x80519860; // type:object size:0x4 scope:local align:4 data:float +@5035 = .sdata2:0x80519864; // type:object size:0x4 scope:local align:4 data:float +@5039 = .sdata2:0x80519868; // type:object size:0x4 scope:local align:4 data:float +@5040 = .sdata2:0x8051986C; // type:object size:0x4 scope:local align:4 data:float +@5041 = .sdata2:0x80519870; // type:object size:0x4 scope:local align:4 data:float +@5042 = .sdata2:0x80519874; // type:object size:0x4 scope:local align:4 data:float +@5226 = .sdata2:0x80519878; // type:object size:0x4 scope:local align:4 data:float +@5323 = .sdata2:0x8051987C; // type:object size:0x6 scope:local align:4 data:string +@5352 = .sdata2:0x80519884; // type:object size:0x4 scope:local align:4 data:float +@5353 = .sdata2:0x80519888; // type:object size:0x6 scope:local align:4 data:string +@5354 = .sdata2:0x80519890; // type:object size:0x4 scope:local align:4 data:float +@5355 = .sdata2:0x80519894; // type:object size:0x4 scope:local align:4 data:float +@5357 = .sdata2:0x80519898; // type:object size:0x4 scope:local align:4 data:float +@5360 = .sdata2:0x8051989C; // type:object size:0x4 scope:local align:4 data:float +@5363 = .sdata2:0x805198A0; // type:object size:0x4 scope:local align:4 data:float +@5364 = .sdata2:0x805198A4; // type:object size:0x4 scope:local align:4 data:float +@5368 = .sdata2:0x805198A8; // type:object size:0x4 scope:local align:4 data:float +@5369 = .sdata2:0x805198AC; // type:object size:0x4 scope:local align:4 data:float +@5423 = .sdata2:0x805198B0; // type:object size:0x8 scope:local align:4 data:string +@5577 = .sdata2:0x805198B8; // type:object size:0x6 scope:local align:4 data:string +@5578 = .sdata2:0x805198C0; // type:object size:0x4 scope:local align:4 data:float +@5658 = .sdata2:0x805198C4; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x805198C8; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x805198CC; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x805198D0; // type:object size:0x8 scope:local align:8 data:double +@3882 = .sdata2:0x805198D8; // type:object size:0x4 scope:local align:4 data:float +@4009 = .sdata2:0x805198DC; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x805198E0; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x805198E4; // type:object size:0x4 scope:local align:4 data:float +@4177 = .sdata2:0x805198E8; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata2:0x805198EC; // type:object size:0x4 scope:local align:4 data:float +@4259 = .sdata2:0x805198F0; // type:object size:0x4 scope:local align:4 data:float +@4397 = .sdata2:0x805198F4; // type:object size:0x4 scope:local align:4 data:float +@4487 = .sdata2:0x805198F8; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x805198FC; // type:object size:0x4 scope:local align:4 data:float +@4491 = .sdata2:0x80519900; // type:object size:0x6 scope:local align:4 data:string +@4492 = .sdata2:0x80519908; // type:object size:0x4 scope:local align:4 data:float +@4493 = .sdata2:0x8051990C; // type:object size:0x4 scope:local align:4 data:float +@4494 = .sdata2:0x80519910; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata2:0x80519914; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x80519918; // type:object size:0x4 scope:local align:4 data:float +@4515 = .sdata2:0x8051991C; // type:object size:0x4 scope:local align:4 data:float +@4517 = .sdata2:0x80519920; // type:object size:0x4 scope:local align:4 data:float +@4519 = .sdata2:0x80519924; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x80519928; // type:object size:0x4 scope:local align:4 data:float +@4523 = .sdata2:0x8051992C; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x80519930; // type:object size:0x4 scope:local align:4 data:float +@4529 = .sdata2:0x80519934; // type:object size:0x4 scope:local align:4 data:float +@4582 = .sdata2:0x80519938; // type:object size:0x8 scope:local align:4 data:string +@3444 = .sdata2:0x80519940; // type:object size:0x5 scope:local align:4 data:string +@3502 = .sdata2:0x80519948; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata2:0x8051994C; // type:object size:0x4 scope:local align:4 data:float +@3605 = .sdata2:0x80519950; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x80519954; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x80519958; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051995C; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x80519960; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x80519968; // type:object size:0x8 scope:local align:8 data:double +@3865 = .sdata2:0x80519970; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x80519974; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x80519978; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051997C; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x80519980; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x80519984; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x80519988; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x80519990; // type:object size:0x7 scope:local align:4 data:string +@3640 = .sdata2:0x80519998; // type:object size:0x8 scope:local align:4 data:string +@3641 = .sdata2:0x805199A0; // type:object size:0x7 scope:local align:4 data:string +@3642 = .sdata2:0x805199A8; // type:object size:0x8 scope:local align:4 data:string +@3643 = .sdata2:0x805199B0; // type:object size:0x8 scope:local align:4 data:string +@3644 = .sdata2:0x805199B8; // type:object size:0x7 scope:local align:4 data:string +@3645 = .sdata2:0x805199C0; // type:object size:0x7 scope:local align:4 data:string +@3648 = .sdata2:0x805199C8; // type:object size:0x7 scope:local align:4 data:string +@4364 = .sdata2:0x805199D0; // type:object size:0x4 scope:local align:4 data:float +@5175 = .sdata2:0x805199D4; // type:object size:0x4 scope:local align:4 data:float +@5177 = .sdata2:0x805199D8; // type:object size:0x8 scope:local align:8 data:double +@3981 = .sdata2:0x805199E0; // type:object size:0x8 scope:local align:4 data:string +@3982 = .sdata2:0x805199E8; // type:object size:0x7 scope:local align:4 data:string +@3983 = .sdata2:0x805199F0; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x805199F4; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x805199F8; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x805199FC; // type:object size:0x5 scope:local align:4 data:string +@3987 = .sdata2:0x80519A04; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x80519A08; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x80519A0C; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x80519A10; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x80519A14; // type:object size:0x8 scope:local align:4 data:string +@3993 = .sdata2:0x80519A1C; // type:object size:0x4 scope:local align:4 data:string +@3994 = .sdata2:0x80519A20; // type:object size:0x6 scope:local align:4 data:string +@3995 = .sdata2:0x80519A28; // type:object size:0x5 scope:local align:4 data:string +@3997 = .sdata2:0x80519A30; // type:object size:0x4 scope:local align:4 data:float +@3999 = .sdata2:0x80519A34; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x80519A38; // type:object size:0x4 scope:local align:4 data:float +@4076 = .sdata2:0x80519A3C; // type:object size:0x4 scope:local align:4 data:float +@4077 = .sdata2:0x80519A40; // type:object size:0x4 scope:local align:4 data:float +@4078 = .sdata2:0x80519A44; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x80519A48; // type:object size:0x4 scope:local align:4 data:float +@4220 = .sdata2:0x80519A4C; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x80519A50; // type:object size:0x5 scope:local align:4 data:string +@4318 = .sdata2:0x80519A58; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x80519A5C; // type:object size:0x4 scope:local align:4 data:float +@4320 = .sdata2:0x80519A60; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x80519A64; // type:object size:0x4 scope:local align:4 data:float +@4323 = .sdata2:0x80519A68; // type:object size:0x8 scope:local align:8 data:double +@4340 = .sdata2:0x80519A70; // type:object size:0x4 scope:local align:4 data:float +@4341 = .sdata2:0x80519A74; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x80519A78; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x80519A7C; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x80519A80; // type:object size:0x5 scope:local align:4 data:string +@4599 = .sdata2:0x80519A88; // type:object size:0x8 scope:local align:4 data:string +@4644 = .sdata2:0x80519A90; // type:object size:0x3 scope:local align:4 data:string +@3923 = .sdata2:0x80519A98; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x80519A9C; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x80519AA0; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x80519AA4; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x80519AA8; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x80519AAC; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x80519AB0; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata2:0x80519AB4; // type:object size:0x4 scope:local align:4 data:float +@4355 = .sdata2:0x80519AB8; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x80519ABC; // type:object size:0x4 scope:local align:4 data:string +@4357 = .sdata2:0x80519AC0; // type:object size:0x4 scope:local align:4 data:string +@4358 = .sdata2:0x80519AC4; // type:object size:0x6 scope:local align:4 data:string +@4359 = .sdata2:0x80519ACC; // type:object size:0x4 scope:local align:4 data:string +@4360 = .sdata2:0x80519AD0; // type:object size:0x2 scope:local align:4 data:string +@4437 = .sdata2:0x80519AD4; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x80519AD8; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x80519ADC; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x80519AE0; // type:object size:0x6 scope:local align:4 data:string +@4538 = .sdata2:0x80519AE8; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x80519AEC; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x80519AF0; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x80519AF4; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x80519AF8; // type:object size:0x7 scope:local align:4 +@4545 = .sdata2:0x80519B00; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x80519B04; // type:object size:0x4 scope:local align:4 data:float +@4568 = .sdata2:0x80519B08; // type:object size:0x8 scope:local align:4 data:string +@3826 = .sdata2:0x80519B10; // type:object size:0x4 scope:local align:4 data:float +@3960 = .sdata2:0x80519B14; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x80519B18; // type:object size:0x4 scope:local align:4 data:float +@3962 = .sdata2:0x80519B1C; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x80519B20; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata2:0x80519B24; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x80519B28; // type:object size:0x4 scope:local align:4 data:float +@3966 = .sdata2:0x80519B2C; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x80519B30; // type:object size:0x4 scope:local align:4 data:float +@4156 = .sdata2:0x80519B34; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x80519B38; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata2:0x80519B40; // type:object size:0x8 scope:local align:8 data:double +@4286 = .sdata2:0x80519B48; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x80519B4C; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata2:0x80519B50; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x80519B54; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x80519B58; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x80519B5C; // type:object size:0x4 scope:local align:4 data:float +@4515 = .sdata2:0x80519B60; // type:object size:0x4 scope:local align:4 data:float +@4516 = .sdata2:0x80519B64; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x80519B68; // type:object size:0x4 scope:local align:4 data:float +@4719 = .sdata2:0x80519B6C; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x80519B70; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x80519B74; // type:object size:0x4 scope:local align:4 data:float +@4773 = .sdata2:0x80519B78; // type:object size:0x4 scope:local align:4 data:float +@4993 = .sdata2:0x80519B7C; // type:object size:0x7 scope:local align:4 data:string +@5016 = .sdata2:0x80519B84; // type:object size:0x4 scope:local align:4 data:float +@5019 = .sdata2:0x80519B88; // type:object size:0x4 scope:local align:4 data:float +@5020 = .sdata2:0x80519B8C; // type:object size:0x6 scope:local align:4 data:string +@5021 = .sdata2:0x80519B94; // type:object size:0x4 scope:local align:4 data:float +@5022 = .sdata2:0x80519B98; // type:object size:0x4 scope:local align:4 data:float +@5023 = .sdata2:0x80519B9C; // type:object size:0x4 scope:local align:4 data:float +@5025 = .sdata2:0x80519BA0; // type:object size:0x4 scope:local align:4 data:float +@5027 = .sdata2:0x80519BA4; // type:object size:0x7 scope:local align:4 +@5028 = .sdata2:0x80519BAC; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x80519BB0; // type:object size:0x8 scope:local align:4 data:string +@5188 = .sdata2:0x80519BB8; // type:object size:0x6 scope:local align:4 data:string +@3610 = .sdata2:0x80519BC0; // type:object size:0x5 scope:local align:4 data:string +@3637 = .sdata2:0x80519BC8; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x80519BCC; // type:object size:0x3 scope:local align:4 data:string +@3904 = .sdata2:0x80519BD0; // type:object size:0x4 scope:local align:4 data:float +@4067 = .sdata2:0x80519BD4; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x80519BD8; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata2:0x80519BDC; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x80519BE0; // type:object size:0x4 scope:local align:4 data:float +@4111 = .sdata2:0x80519BE4; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x80519BE8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x80519BF0; // type:object size:0x8 scope:local align:8 data:double +@4264 = .sdata2:0x80519BF8; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x80519BFC; // type:object size:0x4 scope:local align:4 data:float +@4339 = .sdata2:0x80519C00; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x80519C04; // type:object size:0x4 scope:local align:4 data:float +@4481 = .sdata2:0x80519C08; // type:object size:0x6 scope:local align:4 data:string +@4482 = .sdata2:0x80519C10; // type:object size:0x4 scope:local align:4 data:float +@4483 = .sdata2:0x80519C14; // type:object size:0x4 scope:local align:4 data:float +@4484 = .sdata2:0x80519C18; // type:object size:0x4 scope:local align:4 data:float +@4486 = .sdata2:0x80519C1C; // type:object size:0x4 scope:local align:4 data:float +@4489 = .sdata2:0x80519C20; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x80519C24; // type:object size:0x4 scope:local align:4 data:float +@4492 = .sdata2:0x80519C28; // type:object size:0x4 scope:local align:4 data:float +@4494 = .sdata2:0x80519C2C; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata2:0x80519C30; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata2:0x80519C38; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x80519C3C; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x80519C40; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x80519C48; // type:object size:0x8 scope:local align:8 data:double +@4174 = .sdata2:0x80519C50; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x80519C54; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x80519C58; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x80519C5C; // type:object size:0x4 scope:local align:4 data:float +@4476 = .sdata2:0x80519C60; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x80519C64; // type:object size:0x8 scope:local align:4 data:string +@4573 = .sdata2:0x80519C6C; // type:object size:0x5 scope:local align:4 data:string +@4827 = .sdata2:0x80519C74; // type:object size:0x8 scope:local align:4 data:string +@2660 = .sdata2:0x80519C80; // type:object size:0x4 scope:local align:4 data:float +@2661 = .sdata2:0x80519C84; // type:object size:0x4 scope:local align:4 data:float +@2663 = .sdata2:0x80519C88; // type:object size:0x8 scope:local align:8 data:double +@3893 = .sdata2:0x80519C90; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x80519C94; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x80519C98; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x80519C9C; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x80519CA0; // type:object size:0x7 scope:local align:4 data:string +@4283 = .sdata2:0x80519CA8; // type:object size:0x4 scope:local align:4 data:float +@4286 = .sdata2:0x80519CAC; // type:object size:0x4 scope:local align:4 data:float +@4287 = .sdata2:0x80519CB0; // type:object size:0x6 scope:local align:4 data:string +@4288 = .sdata2:0x80519CB8; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x80519CBC; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x80519CC0; // type:object size:0x4 scope:local align:4 data:float +@4292 = .sdata2:0x80519CC4; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x80519CC8; // type:object size:0x7 scope:local align:4 +@4295 = .sdata2:0x80519CD0; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x80519CD4; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x80519CD8; // type:object size:0x8 scope:local align:4 data:string +@3641 = .sdata2:0x80519CE0; // type:object size:0x6 scope:local align:4 data:string +@3767 = .sdata2:0x80519CE8; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x80519CEC; // type:object size:0x7 scope:local align:4 data:string +@3350 = .sdata2:0x80519CF8; // type:object size:0x8 scope:local align:4 data:string +@3383 = .sdata2:0x80519D00; // type:object size:0x8 scope:local align:4 data:string +@3819 = .sdata2:0x80519D08; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x80519D0C; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x80519D10; // type:object size:0x6 scope:local align:4 data:string +@3792 = .sdata2:0x80519D18; // type:object size:0x6 scope:local align:4 data:string +@3876 = .sdata2:0x80519D20; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x80519D24; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x80519D28; // type:object size:0x8 scope:local align:4 data:string +@3998 = .sdata2:0x80519D30; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x80519D34; // type:object size:0x8 scope:local align:4 data:string +@3287 = .sdata2:0x80519D40; // type:object size:0x4 scope:local align:4 data:float +@3329 = .sdata2:0x80519D44; // type:object size:0x4 scope:local align:4 data:float +@3330 = .sdata2:0x80519D48; // type:object size:0x4 scope:local align:4 data:float +@3373 = .sdata2:0x80519D50; // type:object size:0x4 scope:local align:4 data:string +@3528 = .sdata2:0x80519D54; // type:object size:0x4 scope:local align:4 data:float +@3573 = .sdata2:0x80519D58; // type:object size:0x5 scope:local align:4 data:string +@3596 = .sdata2:0x80519D60; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x80519D64; // type:object size:0x4 scope:local align:4 data:float +@3797 = .sdata2:0x80519D68; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata2:0x80519D70; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata2:0x80519D74; // type:object size:0x4 scope:local align:4 data:float +@3232 = .sdata2:0x80519D78; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x80519D7C; // type:object size:0x4 scope:local align:4 data:float +@3234 = .sdata2:0x80519D80; // type:object size:0x4 scope:local align:4 data:float +@3235 = .sdata2:0x80519D84; // type:object size:0x4 scope:local align:4 data:float +@3242 = .sdata2:0x80519D88; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x80519D90; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x80519D94; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x80519D98; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x80519D9C; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x80519DA0; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x80519DA4; // type:object size:0x7 scope:local align:4 data:string +@3880 = .sdata2:0x80519DAC; // type:object size:0x7 scope:local align:4 data:string +@3881 = .sdata2:0x80519DB4; // type:object size:0x7 scope:local align:4 data:string +@3882 = .sdata2:0x80519DBC; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x80519DC0; // type:object size:0x7 scope:local align:4 data:string +@3884 = .sdata2:0x80519DC8; // type:object size:0x5 scope:local align:4 data:string +@3885 = .sdata2:0x80519DD0; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x80519DD4; // type:object size:0x5 scope:local align:4 data:string +@3887 = .sdata2:0x80519DDC; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x80519DE0; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x80519DE4; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x80519DE8; // type:object size:0x4 scope:local align:4 data:string +@3893 = .sdata2:0x80519DEC; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x80519DF0; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x80519DF4; // type:object size:0x4 scope:local align:4 data:float +@3898 = .sdata2:0x80519DF8; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x80519DFC; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x80519E00; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x80519E04; // type:object size:0x7 scope:local align:4 +@4022 = .sdata2:0x80519E0C; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x80519E10; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x80519E14; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x80519E18; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x80519E1C; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x80519E20; // type:object size:0x8 scope:local align:8 data:double +@4087 = .sdata2:0x80519E28; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x80519E2C; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata2:0x80519E30; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x80519E34; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata2:0x80519E38; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x80519E3C; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x80519E40; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x80519E44; // type:object size:0x4 scope:local align:4 data:float +@5147 = .sdata2:0x80519E48; // type:object size:0x4 scope:local align:4 data:float +@5148 = .sdata2:0x80519E4C; // type:object size:0x4 scope:local align:4 data:float +@5149 = .sdata2:0x80519E50; // type:object size:0x8 scope:local align:4 data:string +@5150 = .sdata2:0x80519E58; // type:object size:0x4 scope:local align:4 data:float +@5151 = .sdata2:0x80519E5C; // type:object size:0x7 scope:local align:4 data:string +@5152 = .sdata2:0x80519E64; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata2:0x80519E68; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x80519E6C; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata2:0x80519E70; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata2:0x80519E74; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata2:0x80519E78; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata2:0x80519E7C; // type:object size:0x4 scope:local align:4 data:float +@5159 = .sdata2:0x80519E80; // type:object size:0x4 scope:local align:4 data:float +@5160 = .sdata2:0x80519E84; // type:object size:0x4 scope:local align:4 data:float +@5161 = .sdata2:0x80519E88; // type:object size:0x4 scope:local align:4 data:float +@5432 = .sdata2:0x80519E8C; // type:object size:0x4 scope:local align:4 data:float +@5514 = .sdata2:0x80519E90; // type:object size:0x6 scope:local align:4 data:string +@5604 = .sdata2:0x80519E98; // type:object size:0x4 scope:local align:4 data:float +@5676 = .sdata2:0x80519E9C; // type:object size:0x4 scope:local align:4 data:float +@5811 = .sdata2:0x80519EA0; // type:object size:0x4 scope:local align:4 data:float +@5812 = .sdata2:0x80519EA4; // type:object size:0x4 scope:local align:4 data:float +@5928 = .sdata2:0x80519EA8; // type:object size:0x8 scope:local align:4 data:string +@5931 = .sdata2:0x80519EB0; // type:object size:0x4 scope:local align:4 data:float +@3792 = .sdata2:0x80519EB8; // type:object size:0x3 scope:local align:4 data:string +@3793 = .sdata2:0x80519EBC; // type:object size:0x3 scope:local align:4 data:string +@3794 = .sdata2:0x80519EC0; // type:object size:0x8 scope:local align:4 data:4byte +@3796 = .sdata2:0x80519EC8; // type:object size:0x8 scope:local align:4 data:string +@3811 = .sdata2:0x80519ED0; // type:object size:0x5 scope:local align:4 data:string +@3893 = .sdata2:0x80519ED8; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x80519EDC; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x80519EE0; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x80519EE4; // type:object size:0x4 scope:local align:4 data:float +@3184 = .sdata2:0x80519EE8; // type:object size:0x4 scope:local align:4 data:float +@3185 = .sdata2:0x80519EEC; // type:object size:0x4 scope:local align:4 data:float +@3357 = .sdata2:0x80519EF0; // type:object size:0x4 scope:local align:4 data:float +@3358 = .sdata2:0x80519EF4; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80519EF8; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80519EFC; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x80519F00; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x80519F04; // type:object size:0x4 scope:local align:4 data:float +@3836 = .sdata2:0x80519F08; // type:object size:0x8 scope:local align:8 data:double +@3898 = .sdata2:0x80519F10; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x80519F14; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x80519F18; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x80519F1C; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x80519F20; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x80519F24; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata2:0x80519F28; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata2:0x80519F2C; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata2:0x80519F30; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata2:0x80519F34; // type:object size:0x4 scope:local align:4 data:float +@4194 = .sdata2:0x80519F38; // type:object size:0x4 scope:local align:4 data:float +@4247 = .sdata2:0x80519F3C; // type:object size:0x8 scope:local align:4 data:string +@4373 = .sdata2:0x80519F44; // type:object size:0x5 scope:local align:4 data:string +@4583 = .sdata2:0x80519F4C; // type:object size:0x5 scope:local align:4 data:string +@3464 = .sdata2:0x80519F58; // type:object size:0x7 scope:local align:4 data:string +@3527 = .sdata2:0x80519F60; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata2:0x80519F68; // type:object size:0x5 scope:local align:4 data:string +@3525 = .sdata2:0x80519F70; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x80519F74; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x80519F78; // type:object size:0x4 scope:local align:4 data:float +@3753 = .sdata2:0x80519F7C; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x80519F80; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x80519F84; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x80519F88; // type:object size:0x8 scope:local align:8 data:double +@3906 = .sdata2:0x80519F90; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x80519F94; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x80519F98; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x80519F9C; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x80519FA0; // type:object size:0x4 scope:local align:4 data:float +@4745 = .sdata2:0x80519FA8; // type:object size:0x4 scope:local align:4 data:float +@4750 = .sdata2:0x80519FAC; // type:object size:0x4 scope:local align:4 data:float +@4751 = .sdata2:0x80519FB0; // type:object size:0x4 scope:local align:4 data:float +@5509 = .sdata2:0x80519FB4; // type:object size:0x4 scope:local align:4 data:float +@5511 = .sdata2:0x80519FB8; // type:object size:0x8 scope:local align:4 data:string +@5512 = .sdata2:0x80519FC0; // type:object size:0x8 scope:local align:4 data:string +@5513 = .sdata2:0x80519FC8; // type:object size:0x8 scope:local align:4 data:string +@5515 = .sdata2:0x80519FD0; // type:object size:0x8 scope:local align:4 data:string +@6427 = .sdata2:0x80519FD8; // type:object size:0x4 scope:local align:4 data:float +@6428 = .sdata2:0x80519FDC; // type:object size:0x4 scope:local align:4 data:float +@6429 = .sdata2:0x80519FE0; // type:object size:0x4 scope:local align:4 data:float +@6430 = .sdata2:0x80519FE4; // type:object size:0x4 scope:local align:4 data:float +@6431 = .sdata2:0x80519FE8; // type:object size:0x4 scope:local align:4 data:float +@6432 = .sdata2:0x80519FEC; // type:object size:0x4 scope:local align:4 data:float +@6433 = .sdata2:0x80519FF0; // type:object size:0x4 scope:local align:4 data:float +@6434 = .sdata2:0x80519FF4; // type:object size:0x4 scope:local align:4 data:float +@6435 = .sdata2:0x80519FF8; // type:object size:0x4 scope:local align:4 data:float +@6479 = .sdata2:0x80519FFC; // type:object size:0x4 scope:local align:4 data:float +@4525 = .sdata2:0x8051A000; // type:object size:0x4 scope:local align:4 data:float +@4526 = .sdata2:0x8051A004; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x8051A008; // type:object size:0x4 scope:local align:4 data:float +@4529 = .sdata2:0x8051A00C; // type:object size:0x4 scope:local align:4 data:float +@4853 = .sdata2:0x8051A010; // type:object size:0x8 scope:local align:4 data:string +@4858 = .sdata2:0x8051A018; // type:object size:0x8 scope:local align:4 data:string +@5119 = .sdata2:0x8051A020; // type:object size:0x4 scope:local align:4 data:float +@5121 = .sdata2:0x8051A028; // type:object size:0x8 scope:local align:8 data:double +@5706 = .sdata2:0x8051A030; // type:object size:0x4 scope:local align:4 data:float +@4483 = .sdata2:0x8051A038; // type:object size:0x4 scope:local align:4 data:float +@4484 = .sdata2:0x8051A03C; // type:object size:0x8 scope:local align:4 data:string +@4405 = .sdata2:0x8051A048; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051A04C; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051A050; // type:object size:0x4 scope:local align:4 data:float +@4452 = .sdata2:0x8051A054; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata2:0x8051A058; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata2:0x8051A05C; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata2:0x8051A060; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata2:0x8051A064; // type:object size:0x4 scope:local align:4 data:float +@4524 = .sdata2:0x8051A068; // type:object size:0x7 scope:local align:4 data:string +@4400 = .sdata2:0x8051A070; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x8051A074; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata2:0x8051A078; // type:object size:0x3 scope:local align:4 data:string +@3631 = .sdata2:0x8051A07C; // type:object size:0x8 scope:local align:4 data:string +@3810 = .sdata2:0x8051A084; // type:object size:0x6 scope:local align:4 data:string +@3462 = .sdata2:0x8051A090; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x8051A094; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051A098; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051A09C; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051A0A0; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x8051A0A4; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051A0A8; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051A0AC; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051A0B0; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata2:0x8051A0B4; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051A0B8; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x8051A0BC; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x8051A0C0; // type:object size:0x1 scope:local align:4 +@4198 = .sdata2:0x8051A0C4; // type:object size:0x8 scope:local align:4 data:string +@4336 = .sdata2:0x8051A0CC; // type:object size:0x4 scope:local align:4 data:float +@4395 = .sdata2:0x8051A0D0; // type:object size:0x4 scope:local align:4 data:float +@4752 = .sdata2:0x8051A0D8; // type:object size:0x4 scope:local align:4 data:float +@4755 = .sdata2:0x8051A0DC; // type:object size:0x4 scope:local align:4 data:float +@4757 = .sdata2:0x8051A0E0; // type:object size:0x4 scope:local align:4 data:float +@4759 = .sdata2:0x8051A0E4; // type:object size:0x4 scope:local align:4 data:float +@4761 = .sdata2:0x8051A0E8; // type:object size:0x4 scope:local align:4 data:float +@4763 = .sdata2:0x8051A0EC; // type:object size:0x4 scope:local align:4 data:float +@4766 = .sdata2:0x8051A0F0; // type:object size:0x4 scope:local align:4 data:float +@4768 = .sdata2:0x8051A0F4; // type:object size:0x4 scope:local align:4 data:float +@4789 = .sdata2:0x8051A0F8; // type:object size:0x4 scope:local align:4 data:float +@4424 = .sdata2:0x8051A100; // type:object size:0x7 scope:local align:4 data:string +@4426 = .sdata2:0x8051A108; // type:object size:0x5 scope:local align:4 data:string +@4463 = .sdata2:0x8051A110; // type:object size:0x4 scope:local align:4 data:float +@4464 = .sdata2:0x8051A114; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x8051A118; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x8051A11C; // type:object size:0x4 scope:local align:4 data:float +@4467 = .sdata2:0x8051A120; // type:object size:0x4 scope:local align:4 data:float +@4468 = .sdata2:0x8051A124; // type:object size:0x4 scope:local align:4 data:float +@4524 = .sdata2:0x8051A128; // type:object size:0x4 scope:local align:4 data:float +@4525 = .sdata2:0x8051A12C; // type:object size:0x4 scope:local align:4 data:float +@4526 = .sdata2:0x8051A130; // type:object size:0x4 scope:local align:4 data:float +@4527 = .sdata2:0x8051A134; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x8051A138; // type:object size:0x4 scope:local align:4 data:float +@4529 = .sdata2:0x8051A13C; // type:object size:0x4 scope:local align:4 data:float +@4530 = .sdata2:0x8051A140; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x8051A144; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x8051A148; // type:object size:0x4 scope:local align:4 data:float +@4534 = .sdata2:0x8051A14C; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x8051A150; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x8051A154; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x8051A158; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051A15C; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x8051A160; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x8051A164; // type:object size:0x4 scope:local align:4 data:float +@4541 = .sdata2:0x8051A168; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x8051A16C; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x8051A170; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x8051A174; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x8051A178; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x8051A17C; // type:object size:0x4 scope:local align:4 data:float +@4605 = .sdata2:0x8051A180; // type:object size:0x4 scope:local align:4 data:float +@4607 = .sdata2:0x8051A188; // type:object size:0x8 scope:local align:8 data:double +@4626 = .sdata2:0x8051A190; // type:object size:0x4 scope:local align:4 data:float +@4737 = .sdata2:0x8051A194; // type:object size:0x4 scope:local align:4 data:float +@4738 = .sdata2:0x8051A198; // type:object size:0x4 scope:local align:4 data:float +@5078 = .sdata2:0x8051A19C; // type:object size:0x4 scope:local align:4 data:float +@5079 = .sdata2:0x8051A1A0; // type:object size:0x4 scope:local align:4 data:float +@5080 = .sdata2:0x8051A1A4; // type:object size:0x4 scope:local align:4 data:float +@5081 = .sdata2:0x8051A1A8; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata2:0x8051A1AC; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x8051A1B0; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata2:0x8051A1B4; // type:object size:0x4 scope:local align:4 data:float +@5166 = .sdata2:0x8051A1B8; // type:object size:0x4 scope:local align:4 data:float +@5309 = .sdata2:0x8051A1BC; // type:object size:0x6 scope:local align:4 data:string +@5349 = .sdata2:0x8051A1C4; // type:object size:0x5 scope:local align:4 data:string +@5352 = .sdata2:0x8051A1CC; // type:object size:0x7 scope:local align:4 data:string +@5354 = .sdata2:0x8051A1D4; // type:object size:0x5 scope:local align:4 data:string +@5614 = .sdata2:0x8051A1DC; // type:object size:0x4 scope:local align:4 data:float +@5615 = .sdata2:0x8051A1E0; // type:object size:0x4 scope:local align:4 data:float +@6171 = .sdata2:0x8051A1E8; // type:object size:0x8 scope:local align:8 data:double +@6531 = .sdata2:0x8051A1F0; // type:object size:0x4 scope:local align:4 data:float +@6532 = .sdata2:0x8051A1F4; // type:object size:0x4 scope:local align:4 data:float +@6881 = .sdata2:0x8051A1F8; // type:object size:0x3 scope:local align:4 data:string +@6884 = .sdata2:0x8051A1FC; // type:object size:0x4 scope:local align:4 data:float +@6885 = .sdata2:0x8051A200; // type:object size:0x4 scope:local align:4 data:float +@6887 = .sdata2:0x8051A204; // type:object size:0x4 scope:local align:4 data:float +@6888 = .sdata2:0x8051A208; // type:object size:0x4 scope:local align:4 data:float +@6889 = .sdata2:0x8051A20C; // type:object size:0x4 scope:local align:4 data:float +@6957 = .sdata2:0x8051A210; // type:object size:0x2 scope:local align:4 data:string +@7482 = .sdata2:0x8051A214; // type:object size:0x4 scope:local align:4 data:float +@7484 = .sdata2:0x8051A218; // type:object size:0x4 scope:local align:4 data:float +@7485 = .sdata2:0x8051A21C; // type:object size:0x4 scope:local align:4 data:float +@7486 = .sdata2:0x8051A220; // type:object size:0x4 scope:local align:4 data:float +@7909 = .sdata2:0x8051A224; // type:object size:0x7 scope:local align:4 data:string +@3635 = .sdata2:0x8051A230; // type:object size:0x4 scope:local align:4 data:string +@3636 = .sdata2:0x8051A234; // type:object size:0x3 scope:local align:4 data:string +@3637 = .sdata2:0x8051A238; // type:object size:0x4 scope:local align:4 data:string +@3734 = .sdata2:0x8051A23C; // type:object size:0x6 scope:local align:4 data:string +@3365 = .sdata2:0x8051A248; // type:object size:0x4 scope:local align:4 data:string +@3366 = .sdata2:0x8051A24C; // type:object size:0x3 scope:local align:4 data:string +@4045 = .sdata2:0x8051A250; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051A254; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051A258; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051A25C; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051A260; // type:object size:0x4 scope:local align:4 data:float +@4389 = .sdata2:0x8051A268; // type:object size:0x4 scope:local align:4 data:float +@4390 = .sdata2:0x8051A26C; // type:object size:0x4 scope:local align:4 data:float +@4391 = .sdata2:0x8051A270; // type:object size:0x4 scope:local align:4 data:float +@4392 = .sdata2:0x8051A274; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata2:0x8051A278; // type:object size:0x4 scope:local align:4 data:float +@4936 = .sdata2:0x8051A27C; // type:object size:0x7 scope:local align:4 data:string +@5075 = .sdata2:0x8051A284; // type:object size:0x4 scope:local align:4 data:float +@5177 = .sdata2:0x8051A288; // type:object size:0x8 scope:local align:4 data:string +@5179 = .sdata2:0x8051A290; // type:object size:0x6 scope:local align:4 +@5180 = .sdata2:0x8051A298; // type:object size:0x8 scope:local align:4 data:string +@5183 = .sdata2:0x8051A2A0; // type:object size:0x8 scope:local align:4 data:string +@5827 = .sdata2:0x8051A2A8; // type:object size:0x8 scope:local align:4 data:string +@5934 = .sdata2:0x8051A2B0; // type:object size:0x4 scope:local align:4 data:float +@5935 = .sdata2:0x8051A2B4; // type:object size:0x4 scope:local align:4 data:float +@5936 = .sdata2:0x8051A2B8; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051A2C0; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x8051A2C8; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051A2CC; // type:object size:0x7 scope:local align:4 data:string +@4087 = .sdata2:0x8051A2D4; // type:object size:0x7 scope:local align:4 data:string +@4088 = .sdata2:0x8051A2DC; // type:object size:0x4 scope:local align:4 data:float +@3325 = .sdata2:0x8051A2E0; // type:object size:0x4 scope:local align:4 data:float +@3360 = .sdata2:0x8051A2E4; // type:object size:0x4 scope:local align:4 data:float +@3460 = .sdata2:0x8051A2E8; // type:object size:0x7 scope:local align:4 data:string +@2665 = .sdata2:0x8051A2F0; // type:object size:0x8 scope:local align:4 data:string +@2668 = .sdata2:0x8051A2F8; // type:object size:0x7 scope:local align:4 data:string +@3227 = .sdata2:0x8051A300; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x8051A304; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051A308; // type:object size:0x8 scope:local align:4 data:string +@3402 = .sdata2:0x8051A310; // type:object size:0x8 scope:local align:4 data:string +@3405 = .sdata2:0x8051A318; // type:object size:0x8 scope:local align:8 data:double +@3866 = .sdata2:0x8051A320; // type:object size:0x7 scope:local align:4 data:string +@3909 = .sdata2:0x8051A328; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051A32C; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051A330; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051A334; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051A338; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051A33C; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051A340; // type:object size:0x8 scope:local align:8 data:double +@4038 = .sdata2:0x8051A348; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051A34C; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051A350; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x8051A354; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x8051A358; // type:object size:0x4 scope:local align:4 data:float +@4208 = .sdata2:0x8051A35C; // type:object size:0x4 scope:local align:4 data:float +@4230 = .sdata2:0x8051A360; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x8051A368; // type:object size:0x3 scope:local align:4 data:string +@3397 = .sdata2:0x8051A370; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x8051A374; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x8051A378; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051A380; // type:object size:0x8 scope:local align:8 data:double +@3423 = .sdata2:0x8051A388; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata2:0x8051A38C; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x8051A390; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051A394; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051A398; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051A39C; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x8051A3A0; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata2:0x8051A3A8; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata2:0x8051A3B0; // type:object size:0x4 scope:local align:4 data:float +@2672 = .sdata2:0x8051A3B4; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata2:0x8051A3B8; // type:object size:0x8 scope:local align:4 data:string +@3380 = .sdata2:0x8051A3C0; // type:object size:0x4 scope:local align:4 data:float +@3381 = .sdata2:0x8051A3C4; // type:object size:0x4 scope:local align:4 data:float +@3382 = .sdata2:0x8051A3C8; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x8051A3D0; // type:object size:0x8 scope:local align:8 data:double +@3940 = .sdata2:0x8051A3D8; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051A3DC; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051A3E0; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x8051A3E4; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x8051A3E8; // type:object size:0x8 scope:local align:8 data:double +@3994 = .sdata2:0x8051A3F0; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051A3F4; // type:object size:0x5 scope:local align:4 data:string +@3996 = .sdata2:0x8051A3FC; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x8051A400; // type:object size:0x4 scope:local align:4 data:float +@3998 = .sdata2:0x8051A404; // type:object size:0x4 scope:local align:4 data:float +@3999 = .sdata2:0x8051A408; // type:object size:0x4 scope:local align:4 data:float +@4000 = .sdata2:0x8051A40C; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051A410; // type:object size:0x7 scope:local align:4 data:string +@4117 = .sdata2:0x8051A418; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x8051A41C; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051A420; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051A424; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051A428; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051A42C; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051A430; // type:object size:0x4 scope:local align:4 data:float +@4694 = .sdata2:0x8051A434; // type:object size:0x4 scope:local align:4 data:float +@4695 = .sdata2:0x8051A438; // type:object size:0x4 scope:local align:4 data:float +@4696 = .sdata2:0x8051A43C; // type:object size:0x4 scope:local align:4 data:float +@4697 = .sdata2:0x8051A440; // type:object size:0x4 scope:local align:4 data:float +@4698 = .sdata2:0x8051A444; // type:object size:0x4 scope:local align:4 data:float +@4699 = .sdata2:0x8051A448; // type:object size:0x4 scope:local align:4 data:float +@4700 = .sdata2:0x8051A44C; // type:object size:0x4 scope:local align:4 data:float +@4701 = .sdata2:0x8051A450; // type:object size:0x4 scope:local align:4 data:float +@4702 = .sdata2:0x8051A454; // type:object size:0x4 scope:local align:4 data:float +@4703 = .sdata2:0x8051A458; // type:object size:0x4 scope:local align:4 data:float +@4704 = .sdata2:0x8051A45C; // type:object size:0x4 scope:local align:4 data:float +@4808 = .sdata2:0x8051A460; // type:object size:0x4 scope:local align:4 data:float +@4946 = .sdata2:0x8051A464; // type:object size:0x4 scope:local align:4 data:float +@4947 = .sdata2:0x8051A468; // type:object size:0x4 scope:local align:4 data:float +@4948 = .sdata2:0x8051A46C; // type:object size:0x4 scope:local align:4 data:float +@4949 = .sdata2:0x8051A470; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata2:0x8051A474; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051A478; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata2:0x8051A47C; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata2:0x8051A480; // type:object size:0x4 scope:local align:4 data:float +@5210 = .sdata2:0x8051A484; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata2:0x8051A488; // type:object size:0x4 scope:local align:4 data:float +@5212 = .sdata2:0x8051A48C; // type:object size:0x4 scope:local align:4 data:float +@5213 = .sdata2:0x8051A490; // type:object size:0x4 scope:local align:4 data:float +@5214 = .sdata2:0x8051A494; // type:object size:0x4 scope:local align:4 data:float +@5215 = .sdata2:0x8051A498; // type:object size:0x4 scope:local align:4 data:float +@5244 = .sdata2:0x8051A49C; // type:object size:0x4 scope:local align:4 data:float +@5316 = .sdata2:0x8051A4A0; // type:object size:0x4 scope:local align:4 data:float +@5317 = .sdata2:0x8051A4A4; // type:object size:0x4 scope:local align:4 data:float +@5340 = .sdata2:0x8051A4A8; // type:object size:0x4 scope:local align:4 data:4byte +@5342 = .sdata2:0x8051A4AC; // type:object size:0x4 scope:local align:4 data:4byte +@5364 = .sdata2:0x8051A4B0; // type:object size:0x4 scope:local align:4 data:4byte +@5376 = .sdata2:0x8051A4B4; // type:object size:0x4 scope:local align:4 data:4byte +@5785 = .sdata2:0x8051A4B8; // type:object size:0x4 scope:local align:4 data:float +@5786 = .sdata2:0x8051A4BC; // type:object size:0x3 scope:local align:4 data:string +@5787 = .sdata2:0x8051A4C0; // type:object size:0x8 scope:local align:8 data:double +@5788 = .sdata2:0x8051A4C8; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata2:0x8051A4CC; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata2:0x8051A4D0; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x8051A4D4; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata2:0x8051A4D8; // type:object size:0x4 scope:local align:4 data:float +@5838 = .sdata2:0x8051A4DC; // type:object size:0x4 scope:local align:4 data:float +@5839 = .sdata2:0x8051A4E0; // type:object size:0x4 scope:local align:4 data:float +@5840 = .sdata2:0x8051A4E4; // type:object size:0x4 scope:local align:4 data:float +@5866 = .sdata2:0x8051A4E8; // type:object size:0x4 scope:local align:4 data:float +@5874 = .sdata2:0x8051A4EC; // type:object size:0x4 scope:local align:4 data:string +@3546 = .sdata2:0x8051A4F0; // type:object size:0x7 scope:local align:4 data:string +@3610 = .sdata2:0x8051A4F8; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051A4FC; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051A500; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x8051A504; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x8051A508; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051A50C; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051A510; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051A514; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051A518; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051A51C; // type:object size:0x4 scope:local align:4 data:float +@3588 = .sdata2:0x8051A520; // type:object size:0x6 scope:local align:4 data:string +@3589 = .sdata2:0x8051A528; // type:object size:0x7 scope:local align:4 data:string +@3630 = .sdata2:0x8051A530; // type:object size:0x8 scope:local align:4 data:string +@4410 = .sdata2:0x8051A538; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051A53C; // type:object size:0x7 scope:local align:4 data:string +@4412 = .sdata2:0x8051A544; // type:object size:0x4 scope:local align:4 data:float +@4716 = .sdata2:0x8051A548; // type:object size:0x4 scope:local align:4 data:float +@4717 = .sdata2:0x8051A54C; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x8051A550; // type:object size:0x4 scope:local align:4 data:float +@4874 = .sdata2:0x8051A554; // type:object size:0x4 scope:local align:4 data:float +@4875 = .sdata2:0x8051A558; // type:object size:0x4 scope:local align:4 data:float +@4876 = .sdata2:0x8051A55C; // type:object size:0x4 scope:local align:4 data:float +@4877 = .sdata2:0x8051A560; // type:object size:0x4 scope:local align:4 data:float +@4878 = .sdata2:0x8051A564; // type:object size:0x4 scope:local align:4 data:float +@4879 = .sdata2:0x8051A568; // type:object size:0x4 scope:local align:4 data:float +@4881 = .sdata2:0x8051A570; // type:object size:0x8 scope:local align:8 data:double +@4041 = .sdata2:0x8051A578; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x8051A57C; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x8051A580; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051A584; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051A588; // type:object size:0x8 scope:local align:8 data:double +@4169 = .sdata2:0x8051A590; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051A594; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051A598; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051A59C; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051A5A0; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051A5A4; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata2:0x8051A5A8; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x8051A5AC; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051A5B0; // type:object size:0x4 scope:local align:4 data:float +@4313 = .sdata2:0x8051A5B4; // type:object size:0x4 scope:local align:4 data:float +@4314 = .sdata2:0x8051A5B8; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051A5BC; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051A5C0; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata2:0x8051A5C4; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x8051A5C8; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata2:0x8051A5CC; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata2:0x8051A5D0; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x8051A5D8; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata2:0x8051A5DC; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata2:0x8051A5E0; // type:object size:0x4 scope:local align:4 data:float +@2948 = .sdata2:0x8051A5E4; // type:object size:0x8 scope:local align:4 data:string +@3196 = .sdata2:0x8051A5EC; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata2:0x8051A5F0; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x8051A5F4; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x8051A5F8; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata2:0x8051A5FC; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata2:0x8051A600; // type:object size:0x4 scope:local align:4 data:float +@2663 = .sdata2:0x8051A604; // type:object size:0x4 scope:local align:4 data:float +@2664 = .sdata2:0x8051A608; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x8051A60C; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x8051A610; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata2:0x8051A618; // type:object size:0x4 scope:local align:4 data:float +@3419 = .sdata2:0x8051A61C; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x8051A620; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x8051A624; // type:object size:0x4 scope:local align:4 data:float +@3422 = .sdata2:0x8051A628; // type:object size:0x4 scope:local align:4 data:float +@3423 = .sdata2:0x8051A62C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x8051A630; // type:object size:0x8 scope:local align:8 data:double +@3426 = .sdata2:0x8051A638; // type:object size:0x8 scope:local align:8 data:double +@3544 = .sdata2:0x8051A640; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051A644; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051A648; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051A64C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051A650; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051A654; // type:object size:0x4 scope:local align:4 data:4byte +@3918 = .sdata2:0x8051A658; // type:object size:0x4 scope:local align:4 data:4byte +@3573 = .sdata2:0x8051A660; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x8051A664; // type:object size:0x4 scope:local align:4 data:float +@3575 = .sdata2:0x8051A668; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x8051A66C; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051A670; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x8051A674; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051A678; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051A67C; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x8051A680; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x8051A684; // type:object size:0x4 scope:local align:4 data:float +@3849 = .sdata2:0x8051A688; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051A68C; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051A690; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051A694; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata2:0x8051A698; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x8051A69C; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x8051A6A0; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x8051A6A4; // type:object size:0x4 scope:local align:4 data:float +@4713 = .sdata2:0x8051A6A8; // type:object size:0x4 scope:local align:4 data:float +@4714 = .sdata2:0x8051A6AC; // type:object size:0x4 scope:local align:4 data:float +@4715 = .sdata2:0x8051A6B0; // type:object size:0x4 scope:local align:4 data:float +@4722 = .sdata2:0x8051A6B8; // type:object size:0x8 scope:local align:8 data:double +@3474 = .sdata2:0x8051A6C0; // type:object size:0x4 scope:local align:4 data:float +@3475 = .sdata2:0x8051A6C4; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x8051A6C8; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x8051A6CC; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051A6D0; // type:object size:0x7 scope:local align:4 data:string +@3605 = .sdata2:0x8051A6D8; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051A6E0; // type:object size:0x8 scope:local align:8 data:double +@3664 = .sdata2:0x8051A6E8; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051A6EC; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051A6F0; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051A6F4; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051A6F8; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051A6FC; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051A700; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x8051A708; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x8051A70C; // type:object size:0x4 scope:local align:4 data:float +@3426 = .sdata2:0x8051A710; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x8051A714; // type:object size:0x4 scope:local align:4 data:float +@3428 = .sdata2:0x8051A718; // type:object size:0x4 scope:local align:4 data:float +@3430 = .sdata2:0x8051A720; // type:object size:0x8 scope:local align:8 data:double +@3522 = .sdata2:0x8051A728; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x8051A72C; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051A730; // type:object size:0x8 scope:local align:8 data:double +@3559 = .sdata2:0x8051A738; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051A73C; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051A740; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051A744; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x8051A748; // type:object size:0x4 scope:local align:4 data:float +@3286 = .sdata2:0x8051A750; // type:object size:0x4 scope:local align:4 data:float +@3288 = .sdata2:0x8051A758; // type:object size:0x8 scope:local align:8 data:double +@3351 = .sdata2:0x8051A760; // type:object size:0x4 scope:local align:4 data:float +@3470 = .sdata2:0x8051A764; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x8051A768; // type:object size:0x4 scope:local align:4 data:float +@3473 = .sdata2:0x8051A770; // type:object size:0x8 scope:local align:8 data:double +@3594 = .sdata2:0x8051A778; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x8051A77C; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x8051A780; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x8051A788; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x8051A790; // type:object size:0x8 scope:local align:8 data:double +@3700 = .sdata2:0x8051A798; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051A79C; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051A7A0; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051A7A4; // type:object size:0x8 scope:local align:4 data:4byte +@4406 = .sdata2:0x8051A7AC; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051A7B0; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x8051A7B4; // type:object size:0x8 scope:local align:4 data:4byte +@4607 = .sdata2:0x8051A7BC; // type:object size:0x4 scope:local align:4 data:float +@4825 = .sdata2:0x8051A7C0; // type:object size:0x4 scope:local align:4 data:float +@4826 = .sdata2:0x8051A7C4; // type:object size:0x4 scope:local align:4 data:float +@4827 = .sdata2:0x8051A7C8; // type:object size:0x4 scope:local align:4 data:float +@4828 = .sdata2:0x8051A7CC; // type:object size:0x4 scope:local align:4 data:float +@4829 = .sdata2:0x8051A7D0; // type:object size:0x4 scope:local align:4 data:float +@4830 = .sdata2:0x8051A7D4; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x8051A7D8; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x8051A7DC; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata2:0x8051A7E0; // type:object size:0x8 scope:local align:8 data:double +@3682 = .sdata2:0x8051A7E8; // type:object size:0x4 scope:local align:4 data:float +@3294 = .sdata2:0x8051A7F0; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x8051A7F8; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051A800; // type:object size:0x8 scope:local align:8 data:double +@3720 = .sdata2:0x8051A808; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051A80C; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051A810; // type:object size:0x8 scope:local align:4 data:4byte +@3856 = .sdata2:0x8051A818; // type:object size:0x2 scope:local align:4 data:2byte +@3952 = .sdata2:0x8051A81C; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051A820; // type:object size:0x5 scope:local align:4 data:string +@3963 = .sdata2:0x8051A828; // type:object size:0x8 scope:local align:4 data:4byte +@3964 = .sdata2:0x8051A830; // type:object size:0x2 scope:local align:4 data:2byte +@4109 = .sdata2:0x8051A834; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata2:0x8051A838; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051A840; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051A848; // type:object size:0x8 scope:local align:8 data:double +@3657 = .sdata2:0x8051A850; // type:object size:0x5 scope:local align:4 data:string +@3658 = .sdata2:0x8051A858; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051A85C; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051A860; // type:object size:0x4 scope:local align:4 data:float +@4076 = .sdata2:0x8051A864; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x8051A868; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x8051A86C; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata2:0x8051A870; // type:object size:0x8 scope:local align:8 data:double +@3441 = .sdata2:0x8051A878; // type:object size:0x4 scope:local align:4 data:float +@3443 = .sdata2:0x8051A880; // type:object size:0x8 scope:local align:8 data:double +@3462 = .sdata2:0x8051A888; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x8051A88C; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x8051A890; // type:object size:0x5 scope:local align:4 data:string +@3616 = .sdata2:0x8051A898; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata2:0x8051A89C; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x8051A8A0; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051A8A4; // type:object size:0x4 scope:local align:4 data:float +@3622 = .sdata2:0x8051A8A8; // type:object size:0x4 scope:local align:4 data:float +@3624 = .sdata2:0x8051A8AC; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051A8B0; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051A8B4; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051A8B8; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x8051A8BC; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051A8C0; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051A8C4; // type:object size:0x4 scope:local align:4 data:float +@3637 = .sdata2:0x8051A8C8; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051A8CC; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051A8D0; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051A8D4; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051A8D8; // type:object size:0x4 scope:local align:4 data:float +@3651 = .sdata2:0x8051A8DC; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x8051A8E0; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051A8E4; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051A8E8; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051A8EC; // type:object size:0x4 scope:local align:4 data:float +@3725 = .sdata2:0x8051A8F0; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x8051A8F4; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051A8F8; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x8051A8FC; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051A900; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051A904; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051A908; // type:object size:0x4 scope:local align:4 data:float +@3743 = .sdata2:0x8051A90C; // type:object size:0x4 scope:local align:4 data:float +@3747 = .sdata2:0x8051A910; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x8051A914; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051A918; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051A91C; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051A920; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051A924; // type:object size:0x4 scope:local align:4 data:float +@3772 = .sdata2:0x8051A928; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x8051A92C; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051A930; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051A934; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051A938; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051A93C; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x8051A940; // type:object size:0x4 scope:local align:4 data:float +@3793 = .sdata2:0x8051A944; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051A948; // type:object size:0x4 scope:local align:4 data:float +@3798 = .sdata2:0x8051A94C; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051A950; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051A954; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051A958; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051A95C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051A960; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051A964; // type:object size:0x4 scope:local align:4 data:float +@2666 = .sdata2:0x8051A968; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x8051A96C; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata2:0x8051A970; // type:object size:0x4 scope:local align:4 data:float +@2850 = .sdata2:0x8051A974; // type:object size:0x4 scope:local align:4 data:float +@3467 = .sdata2:0x8051A978; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x8051A97C; // type:object size:0x4 scope:local align:4 data:float +@3469 = .sdata2:0x8051A980; // type:object size:0x4 scope:local align:4 data:float +@3649 = .sdata2:0x8051A984; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x8051A988; // type:object size:0x4 scope:local align:4 data:float +@3789 = .sdata2:0x8051A990; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x8051A994; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x8051A998; // type:object size:0x4 scope:local align:4 data:float +@3793 = .sdata2:0x8051A99C; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051A9A0; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051A9A4; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051A9A8; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051A9AC; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051A9B0; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051A9B4; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051A9B8; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051A9BC; // type:object size:0x4 scope:local align:4 data:float +@4291 = .sdata2:0x8051A9C0; // type:object size:0x4 scope:local align:4 data:float +@4292 = .sdata2:0x8051A9C4; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x8051A9C8; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x8051A9CC; // type:object size:0x4 scope:local align:4 data:float +@4295 = .sdata2:0x8051A9D0; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x8051A9D4; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x8051A9D8; // type:object size:0x8 scope:local align:8 data:double +@4375 = .sdata2:0x8051A9E0; // type:object size:0x4 scope:local align:4 data:float +@4376 = .sdata2:0x8051A9E4; // type:object size:0x4 scope:local align:4 data:float +@4390 = .sdata2:0x8051A9E8; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata2:0x8051A9EC; // type:object size:0x4 scope:local align:4 data:float +@3600 = .sdata2:0x8051A9F0; // type:object size:0x5 scope:local align:4 data:string +@3601 = .sdata2:0x8051A9F8; // type:object size:0x5 scope:local align:4 data:string +@3602 = .sdata2:0x8051AA00; // type:object size:0x5 scope:local align:4 data:string +@3603 = .sdata2:0x8051AA08; // type:object size:0x6 scope:local align:4 data:string +@3604 = .sdata2:0x8051AA10; // type:object size:0x5 scope:local align:4 data:string +@3605 = .sdata2:0x8051AA18; // type:object size:0x6 scope:local align:4 data:string +@3628 = .sdata2:0x8051AA20; // type:object size:0x4 scope:local align:4 data:float +@3647 = .sdata2:0x8051AA28; // type:object size:0x5 scope:local align:4 data:string +@3648 = .sdata2:0x8051AA30; // type:object size:0x5 scope:local align:4 data:string +@3649 = .sdata2:0x8051AA38; // type:object size:0x5 scope:local align:4 data:string +@3650 = .sdata2:0x8051AA40; // type:object size:0x5 scope:local align:4 data:string +@3652 = .sdata2:0x8051AA48; // type:object size:0x5 scope:local align:4 data:string +@3653 = .sdata2:0x8051AA50; // type:object size:0x7 scope:local align:4 data:string +@3654 = .sdata2:0x8051AA58; // type:object size:0x5 scope:local align:4 data:string +@3656 = .sdata2:0x8051AA60; // type:object size:0x7 scope:local align:4 data:string +@3669 = .sdata2:0x8051AA68; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x8051AA6C; // type:object size:0x4 scope:local align:4 data:float +@3704 = .sdata2:0x8051AA70; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051AA74; // type:object size:0x4 scope:local align:4 data:float +@3706 = .sdata2:0x8051AA78; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata2:0x8051AA80; // type:object size:0x8 scope:local align:8 data:double +@3810 = .sdata2:0x8051AA88; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051AA8C; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051AA90; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051AA94; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x8051AA98; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051AA9C; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051AAA0; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051AAA4; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051AAA8; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051AAAC; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051AAB0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051AAB4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051AAB8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051AABC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051AAC0; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x8051AAC8; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x8051AACC; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051AAD0; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051AAD4; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051AAD8; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051AADC; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051AAE0; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051AAE4; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051AAE8; // type:object size:0x4 scope:local align:4 data:float +@4145 = .sdata2:0x8051AAEC; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051AAF0; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051AAF4; // type:object size:0x4 scope:local align:4 data:float +@4217 = .sdata2:0x8051AAF8; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051AAFC; // type:object size:0x4 scope:local align:4 data:float +@4276 = .sdata2:0x8051AB00; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x8051AB04; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051AB08; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x8051AB0C; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051AB10; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051AB18; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051AB1C; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051AB20; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051AB24; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051AB28; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051AB30; // type:object size:0x8 scope:local align:4 data:string +@3930 = .sdata2:0x8051AB38; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051AB3C; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051AB40; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051AB44; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051AB48; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051AB4C; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata2:0x8051AB50; // type:object size:0x8 scope:local align:4 data:string +@3980 = .sdata2:0x8051AB58; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x8051AB5C; // type:object size:0x4 scope:local align:4 data:float +@3993 = .sdata2:0x8051AB60; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051AB68; // type:object size:0x8 scope:local align:8 data:double +@4116 = .sdata2:0x8051AB70; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051AB74; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x8051AB78; // type:object size:0x4 scope:local align:4 data:float +@4326 = .sdata2:0x8051AB7C; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x8051AB80; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051AB84; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x8051AB88; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x8051AB8C; // type:object size:0x4 scope:local align:4 data:float +@4452 = .sdata2:0x8051AB90; // type:object size:0x4 scope:local align:4 data:float +@4704 = .sdata2:0x8051AB94; // type:object size:0x4 scope:local align:4 data:float +@3683 = .sdata2:0x8051AB98; // type:object size:0x5 scope:local align:4 data:string +@3684 = .sdata2:0x8051ABA0; // type:object size:0x6 scope:local align:4 data:string +@3685 = .sdata2:0x8051ABA8; // type:object size:0x5 scope:local align:4 data:string +@3686 = .sdata2:0x8051ABB0; // type:object size:0x7 scope:local align:4 data:string +@3687 = .sdata2:0x8051ABB8; // type:object size:0x5 scope:local align:4 data:string +@3688 = .sdata2:0x8051ABC0; // type:object size:0x5 scope:local align:4 data:string +@3691 = .sdata2:0x8051ABC8; // type:object size:0x8 scope:local align:4 data:string +@3692 = .sdata2:0x8051ABD0; // type:object size:0x7 scope:local align:4 data:string +@3693 = .sdata2:0x8051ABD8; // type:object size:0x8 scope:local align:4 data:string +@3694 = .sdata2:0x8051ABE0; // type:object size:0x8 scope:local align:4 data:string +@3695 = .sdata2:0x8051ABE8; // type:object size:0x4 scope:local align:4 data:string +@3705 = .sdata2:0x8051ABEC; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x8051ABF0; // type:object size:0x4 scope:local align:4 data:float +@4074 = .sdata2:0x8051ABF4; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051ABF8; // type:object size:0x7 scope:local align:4 data:string +@3855 = .sdata2:0x8051AC00; // type:object size:0x5 scope:local align:4 data:string +@3856 = .sdata2:0x8051AC08; // type:object size:0x5 scope:local align:4 data:string +@3857 = .sdata2:0x8051AC10; // type:object size:0x6 scope:local align:4 data:string +@3873 = .sdata2:0x8051AC18; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051AC1C; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051AC20; // type:object size:0x7 scope:local align:4 data:string +@3663 = .sdata2:0x8051AC28; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x8051AC2C; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051AC30; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051AC34; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x8051AC38; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051AC3C; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051AC40; // type:object size:0x5 scope:local align:4 data:string +@3838 = .sdata2:0x8051AC48; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051AC4C; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051AC50; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051AC54; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051AC58; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051AC5C; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051AC60; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051AC64; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051AC68; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x8051AC70; // type:object size:0x8 scope:local align:8 data:double +@3964 = .sdata2:0x8051AC78; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x8051AC7C; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x8051AC80; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051AC84; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x8051AC88; // type:object size:0x5 scope:local align:4 data:string +@3600 = .sdata2:0x8051AC90; // type:object size:0x7 scope:local align:4 data:string +@3602 = .sdata2:0x8051AC98; // type:object size:0x5 scope:local align:4 data:string +@3603 = .sdata2:0x8051ACA0; // type:object size:0x5 scope:local align:4 data:string +@3604 = .sdata2:0x8051ACA8; // type:object size:0x5 scope:local align:4 data:string +@3626 = .sdata2:0x8051ACB0; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051ACB4; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata2:0x8051ACB8; // type:object size:0x4 scope:local align:4 data:float +@3709 = .sdata2:0x8051ACBC; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata2:0x8051ACC0; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata2:0x8051ACC4; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x8051ACC8; // type:object size:0x4 scope:local align:4 data:float +@3588 = .sdata2:0x8051ACCC; // type:object size:0x4 scope:local align:4 data:float +@3589 = .sdata2:0x8051ACD0; // type:object size:0x4 scope:local align:4 data:float +@3591 = .sdata2:0x8051ACD4; // type:object size:0x4 scope:local align:4 data:float +@3592 = .sdata2:0x8051ACD8; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051ACDC; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x8051ACE0; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x8051ACE4; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x8051ACE8; // type:object size:0x4 scope:local align:4 data:float +@3600 = .sdata2:0x8051ACEC; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051ACF0; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051ACF4; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051ACF8; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051ACFC; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051AD00; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051AD04; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051AD08; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051AD0C; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051AD10; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x8051AD14; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8051AD18; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x8051AD1C; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x8051AD20; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x8051AD28; // type:object size:0x8 scope:local align:8 data:double +@4149 = .sdata2:0x8051AD30; // type:object size:0x6 scope:local align:4 data:string +@4163 = .sdata2:0x8051AD38; // type:object size:0x8 scope:local align:8 data:double +@3923 = .sdata2:0x8051AD40; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051AD44; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051AD48; // type:object size:0x5 scope:local align:4 data:string +@3996 = .sdata2:0x8051AD50; // type:object size:0x7 scope:local align:4 data:string +@3998 = .sdata2:0x8051AD58; // type:object size:0x5 scope:local align:4 data:string +@3999 = .sdata2:0x8051AD60; // type:object size:0x5 scope:local align:4 data:string +@4000 = .sdata2:0x8051AD68; // type:object size:0x5 scope:local align:4 data:string +@4016 = .sdata2:0x8051AD70; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x8051AD74; // type:object size:0x4 scope:local align:4 data:float +@4165 = .sdata2:0x8051AD78; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x8051AD80; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata2:0x8051AD84; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051AD88; // type:object size:0x4 scope:local align:4 data:float +@3592 = .sdata2:0x8051AD8C; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x8051AD90; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051AD94; // type:object size:0x4 scope:local align:4 data:float +@3770 = .sdata2:0x8051AD98; // type:object size:0x8 scope:local align:4 data:4byte +@3858 = .sdata2:0x8051ADA0; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051ADA4; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051ADA8; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051ADAC; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051ADB0; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051ADB4; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051ADB8; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051ADC0; // type:object size:0x8 scope:local align:8 data:double +@3970 = .sdata2:0x8051ADC8; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051ADCC; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051ADD0; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051ADD4; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051ADD8; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051ADDC; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051ADE0; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051ADE4; // type:object size:0x4 scope:local align:4 data:float +@4308 = .sdata2:0x8051ADE8; // type:object size:0x4 scope:local align:4 data:float +@4309 = .sdata2:0x8051ADEC; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x8051ADF0; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x8051ADF4; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051ADF8; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x8051ADFC; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata2:0x8051AE00; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051AE08; // type:object size:0x5 scope:local align:4 data:string +@3660 = .sdata2:0x8051AE10; // type:object size:0x6 scope:local align:4 data:string +@3661 = .sdata2:0x8051AE18; // type:object size:0x5 scope:local align:4 data:string +@3662 = .sdata2:0x8051AE20; // type:object size:0x7 scope:local align:4 data:string +@3663 = .sdata2:0x8051AE28; // type:object size:0x5 scope:local align:4 data:string +@3664 = .sdata2:0x8051AE30; // type:object size:0x5 scope:local align:4 data:string +@3667 = .sdata2:0x8051AE38; // type:object size:0x8 scope:local align:4 data:string +@3668 = .sdata2:0x8051AE40; // type:object size:0x7 scope:local align:4 data:string +@3669 = .sdata2:0x8051AE48; // type:object size:0x8 scope:local align:4 data:string +@3679 = .sdata2:0x8051AE50; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051AE54; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051AE58; // type:object size:0x4 scope:local align:4 data:float +@3540 = .sdata2:0x8051AE60; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051AE64; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051AE68; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051AE70; // type:object size:0x8 scope:local align:4 data:string +@3930 = .sdata2:0x8051AE78; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051AE7C; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051AE80; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051AE84; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051AE88; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051AE8C; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051AE90; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051AE94; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x8051AE98; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051AEA0; // type:object size:0x8 scope:local align:8 data:double +@4105 = .sdata2:0x8051AEA8; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051AEAC; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051AEB0; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051AEB4; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051AEB8; // type:object size:0x4 scope:local align:4 data:float +@4317 = .sdata2:0x8051AEBC; // type:object size:0x4 scope:local align:4 data:float +@4318 = .sdata2:0x8051AEC0; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x8051AEC4; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata2:0x8051AEC8; // type:object size:0x4 scope:local align:4 data:float +@4634 = .sdata2:0x8051AECC; // type:object size:0x8 scope:local align:4 data:string +@4668 = .sdata2:0x8051AED4; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051AED8; // type:object size:0x5 scope:local align:4 data:string +@3962 = .sdata2:0x8051AEE0; // type:object size:0x6 scope:local align:4 data:string +@3963 = .sdata2:0x8051AEE8; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051AEF0; // type:object size:0x7 scope:local align:4 data:string +@3965 = .sdata2:0x8051AEF8; // type:object size:0x5 scope:local align:4 data:string +@3966 = .sdata2:0x8051AF00; // type:object size:0x5 scope:local align:4 data:string +@3969 = .sdata2:0x8051AF08; // type:object size:0x8 scope:local align:4 data:string +@3970 = .sdata2:0x8051AF10; // type:object size:0x7 scope:local align:4 data:string +@3971 = .sdata2:0x8051AF18; // type:object size:0x4 scope:local align:4 data:string +@3972 = .sdata2:0x8051AF1C; // type:object size:0x8 scope:local align:4 data:string +@3973 = .sdata2:0x8051AF24; // type:object size:0x8 scope:local align:4 data:string +@3974 = .sdata2:0x8051AF2C; // type:object size:0x4 scope:local align:4 data:string +@3988 = .sdata2:0x8051AF30; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x8051AF34; // type:object size:0x4 scope:local align:4 data:float +@4365 = .sdata2:0x8051AF38; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata2:0x8051AF3C; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051AF40; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051AF44; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051AF48; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051AF4C; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051AF50; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051AF54; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051AF58; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051AF5C; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051AF60; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051AF68; // type:object size:0x8 scope:local align:4 data:string +@3937 = .sdata2:0x8051AF70; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051AF74; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051AF78; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051AF7C; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051AF80; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051AF84; // type:object size:0x4 scope:local align:4 data:float +@4009 = .sdata2:0x8051AF88; // type:object size:0x8 scope:local align:4 data:string +@4010 = .sdata2:0x8051AF90; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051AF94; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051AF98; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051AF9C; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051AFA0; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051AFA4; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051AFA8; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051AFAC; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051AFB0; // type:object size:0x8 scope:local align:8 data:double +@4301 = .sdata2:0x8051AFB8; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051AFBC; // type:object size:0x4 scope:local align:4 data:float +@4510 = .sdata2:0x8051AFC0; // type:object size:0x4 scope:local align:4 data:float +@4511 = .sdata2:0x8051AFC4; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x8051AFC8; // type:object size:0x4 scope:local align:4 data:float +@4513 = .sdata2:0x8051AFCC; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x8051AFD0; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x8051AFD4; // type:object size:0x4 scope:local align:4 data:float +@4888 = .sdata2:0x8051AFD8; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051AFE0; // type:object size:0x5 scope:local align:4 data:string +@3830 = .sdata2:0x8051AFE8; // type:object size:0x5 scope:local align:4 data:string +@3831 = .sdata2:0x8051AFF0; // type:object size:0x7 scope:local align:4 data:string +@3861 = .sdata2:0x8051AFF8; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051B000; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051B004; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051B008; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051B00C; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051B010; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051B014; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051B018; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051B020; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051B024; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051B028; // type:object size:0x8 scope:local align:8 data:double +@3906 = .sdata2:0x8051B030; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051B038; // type:object size:0x5 scope:local align:4 data:string +@3830 = .sdata2:0x8051B040; // type:object size:0x5 scope:local align:4 data:string +@3831 = .sdata2:0x8051B048; // type:object size:0x7 scope:local align:4 data:string +@3861 = .sdata2:0x8051B050; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051B058; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051B05C; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051B060; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x8051B064; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051B068; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051B06C; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051B070; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x8051B078; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051B07C; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051B080; // type:object size:0x8 scope:local align:8 data:double +@3927 = .sdata2:0x8051B088; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x8051B08C; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051B090; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x8051B098; // type:object size:0x5 scope:local align:4 data:string +@3848 = .sdata2:0x8051B0A0; // type:object size:0x5 scope:local align:4 data:string +@3849 = .sdata2:0x8051B0A8; // type:object size:0x5 scope:local align:4 data:string +@3850 = .sdata2:0x8051B0B0; // type:object size:0x7 scope:local align:4 data:string +@3907 = .sdata2:0x8051B0B8; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x8051B0C0; // type:object size:0x4 scope:local align:4 data:float +@3601 = .sdata2:0x8051B0C4; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x8051B0C8; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x8051B0CC; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x8051B0D0; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x8051B0D4; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051B0D8; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051B0DC; // type:object size:0x4 scope:local align:4 data:float +@3918 = .sdata2:0x8051B0E0; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051B0E4; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051B0E8; // type:object size:0x4 scope:local align:4 data:float +@3966 = .sdata2:0x8051B0EC; // type:object size:0x4 scope:local align:4 data:float +@3968 = .sdata2:0x8051B0F0; // type:object size:0x8 scope:local align:8 data:double +@4038 = .sdata2:0x8051B0F8; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051B0FC; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051B100; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051B104; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051B108; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051B110; // type:object size:0x5 scope:local align:4 data:string +@3928 = .sdata2:0x8051B118; // type:object size:0x5 scope:local align:4 data:string +@3929 = .sdata2:0x8051B120; // type:object size:0x7 scope:local align:4 data:string +@3930 = .sdata2:0x8051B128; // type:object size:0x8 scope:local align:4 data:string +@3931 = .sdata2:0x8051B130; // type:object size:0x6 scope:local align:4 data:string +@3932 = .sdata2:0x8051B138; // type:object size:0x5 scope:local align:4 data:string +@3933 = .sdata2:0x8051B140; // type:object size:0x5 scope:local align:4 data:string +@3934 = .sdata2:0x8051B148; // type:object size:0x7 scope:local align:4 data:string +@3935 = .sdata2:0x8051B150; // type:object size:0x5 scope:local align:4 data:string +@3950 = .sdata2:0x8051B158; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051B15C; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x8051B160; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata2:0x8051B164; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051B168; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051B16C; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051B170; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051B174; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051B178; // type:object size:0x8 scope:local align:8 data:double +@4213 = .sdata2:0x8051B180; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051B184; // type:object size:0x4 scope:local align:4 data:float +@4599 = .sdata2:0x8051B188; // type:object size:0x4 scope:local align:4 data:float +@4600 = .sdata2:0x8051B18C; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x8051B190; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x8051B194; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x8051B198; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x8051B19C; // type:object size:0x4 scope:local align:4 data:float +@4605 = .sdata2:0x8051B1A0; // type:object size:0x4 scope:local align:4 data:float +@4606 = .sdata2:0x8051B1A4; // type:object size:0x4 scope:local align:4 data:float +@4607 = .sdata2:0x8051B1A8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051B1B0; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051B1B4; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051B1B8; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051B1BC; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051B1C0; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x8051B1C4; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051B1C8; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051B1CC; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051B1D0; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051B1D4; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x8051B1D8; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051B1DC; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x8051B1E0; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051B1E4; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x8051B1E8; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051B1EC; // type:object size:0x4 scope:local align:4 data:float +@3582 = .sdata2:0x8051B1F0; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051B1F8; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051B1FC; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x8051B200; // type:object size:0x8 scope:local align:4 data:string +@3921 = .sdata2:0x8051B208; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x8051B20C; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x8051B210; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051B214; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051B218; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051B21C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051B220; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051B224; // type:object size:0x4 scope:local align:4 data:float +@3956 = .sdata2:0x8051B228; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051B230; // type:object size:0x8 scope:local align:8 data:double +@4052 = .sdata2:0x8051B238; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x8051B23C; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x8051B240; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051B244; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x8051B248; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051B24C; // type:object size:0x4 scope:local align:4 data:float +@4184 = .sdata2:0x8051B250; // type:object size:0x4 scope:local align:4 data:float +@4206 = .sdata2:0x8051B254; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x8051B258; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051B25C; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata2:0x8051B260; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051B268; // type:object size:0x5 scope:local align:4 data:string +@3612 = .sdata2:0x8051B270; // type:object size:0x5 scope:local align:4 data:string +@3613 = .sdata2:0x8051B278; // type:object size:0x5 scope:local align:4 data:string +@3616 = .sdata2:0x8051B280; // type:object size:0x7 scope:local align:4 data:string +@3617 = .sdata2:0x8051B288; // type:object size:0x6 scope:local align:4 data:string +@3627 = .sdata2:0x8051B290; // type:object size:0x4 scope:local align:4 data:float +@3691 = .sdata2:0x8051B294; // type:object size:0x4 scope:local align:4 data:float +@3692 = .sdata2:0x8051B298; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051B29C; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x8051B2A0; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata2:0x8051B2A8; // type:object size:0x8 scope:local align:8 data:double +@3701 = .sdata2:0x8051B2B0; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051B2B4; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051B2B8; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051B2BC; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051B2C0; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051B2C4; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051B2C8; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051B2CC; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x8051B2D0; // type:object size:0x4 scope:local align:4 data:float +@4366 = .sdata2:0x8051B2D4; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051B2D8; // type:object size:0x8 scope:local align:4 data:4byte +@3550 = .sdata2:0x8051B2E0; // type:object size:0x8 scope:local align:4 data:4byte +@3868 = .sdata2:0x8051B2E8; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051B2EC; // type:object size:0x6 scope:local align:4 data:string +@3870 = .sdata2:0x8051B2F4; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051B2F8; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051B2FC; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051B300; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051B304; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051B308; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051B30C; // type:object size:0x7 scope:local align:4 data:string +@3976 = .sdata2:0x8051B314; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051B318; // type:object size:0x7 scope:local align:4 data:string +@3978 = .sdata2:0x8051B320; // type:object size:0x7 scope:local align:4 data:string +@3979 = .sdata2:0x8051B328; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051B32C; // type:object size:0x7 scope:local align:4 data:string +@4141 = .sdata2:0x8051B334; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051B338; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051B33C; // type:object size:0x4 scope:local align:4 data:float +@4221 = .sdata2:0x8051B340; // type:object size:0x4 scope:local align:4 data:float +@4222 = .sdata2:0x8051B344; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata2:0x8051B348; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata2:0x8051B34C; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051B350; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x8051B354; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051B358; // type:object size:0x5 scope:local align:4 data:string +@3550 = .sdata2:0x8051B360; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051B364; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051B368; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051B36C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051B370; // type:object size:0x4 scope:local align:4 data:float +@3573 = .sdata2:0x8051B374; // type:object size:0x6 scope:local align:4 data:string +@3574 = .sdata2:0x8051B37C; // type:object size:0x6 scope:local align:4 data:string +@3575 = .sdata2:0x8051B384; // type:object size:0x4 scope:local align:4 data:float +@3589 = .sdata2:0x8051B388; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x8051B390; // type:object size:0x5 scope:local align:4 data:string +@3600 = .sdata2:0x8051B398; // type:object size:0x5 scope:local align:4 data:string +@3601 = .sdata2:0x8051B3A0; // type:object size:0x5 scope:local align:4 data:string +@3602 = .sdata2:0x8051B3A8; // type:object size:0x6 scope:local align:4 data:string +@3603 = .sdata2:0x8051B3B0; // type:object size:0x7 scope:local align:4 data:string +@3604 = .sdata2:0x8051B3B8; // type:object size:0x5 scope:local align:4 data:string +@3614 = .sdata2:0x8051B3C0; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051B3C4; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051B3C8; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051B3CC; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051B3D0; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051B3D4; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051B3D8; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051B3E0; // type:object size:0x8 scope:local align:8 data:double +@4130 = .sdata2:0x8051B3E8; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051B3EC; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051B3F0; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051B3F4; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051B3F8; // type:object size:0x4 scope:local align:4 data:float +@3540 = .sdata2:0x8051B400; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051B404; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B408; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051B410; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051B414; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051B418; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051B41C; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051B420; // type:object size:0x4 scope:local align:4 data:float +@3967 = .sdata2:0x8051B424; // type:object size:0x4 scope:local align:4 data:float +@3968 = .sdata2:0x8051B428; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051B42C; // type:object size:0x4 scope:local align:4 data:float +@3970 = .sdata2:0x8051B430; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051B434; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051B438; // type:object size:0x8 scope:local align:8 data:double +@4110 = .sdata2:0x8051B440; // type:object size:0x4 scope:local align:4 data:float +@4111 = .sdata2:0x8051B444; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051B448; // type:object size:0x4 scope:local align:4 data:float +@3654 = .sdata2:0x8051B450; // type:object size:0x5 scope:local align:4 data:string +@3655 = .sdata2:0x8051B458; // type:object size:0x5 scope:local align:4 data:string +@3656 = .sdata2:0x8051B460; // type:object size:0x5 scope:local align:4 data:string +@3657 = .sdata2:0x8051B468; // type:object size:0x5 scope:local align:4 data:string +@3658 = .sdata2:0x8051B470; // type:object size:0x7 scope:local align:4 data:string +@3662 = .sdata2:0x8051B478; // type:object size:0x8 scope:local align:4 data:string +@3663 = .sdata2:0x8051B480; // type:object size:0x7 scope:local align:4 data:string +@3673 = .sdata2:0x8051B488; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051B48C; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051B490; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata2:0x8051B494; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051B498; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051B49C; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051B4A0; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051B4A4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051B4A8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051B4AC; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051B4B0; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051B4B8; // type:object size:0x8 scope:local align:8 data:double +@4129 = .sdata2:0x8051B4C0; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x8051B4C4; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B4C8; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051B4CC; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051B4D0; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B4D4; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051B4D8; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051B4E0; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051B4E4; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051B4E8; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051B4F0; // type:object size:0x8 scope:local align:8 data:double +@3963 = .sdata2:0x8051B4F8; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051B500; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x8051B504; // type:object size:0x4 scope:local align:4 data:float +@3966 = .sdata2:0x8051B508; // type:object size:0x4 scope:local align:4 data:float +@4184 = .sdata2:0x8051B50C; // type:object size:0x4 scope:local align:4 data:float +@4185 = .sdata2:0x8051B510; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051B514; // type:object size:0x4 scope:local align:4 data:float +@4654 = .sdata2:0x8051B518; // type:object size:0x4 scope:local align:4 data:float +@4676 = .sdata2:0x8051B51C; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051B520; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B528; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051B52C; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051B530; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B534; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051B538; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051B540; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051B544; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051B548; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051B54C; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051B550; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051B554; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x8051B558; // type:object size:0x8 scope:local align:4 data:string +@4333 = .sdata2:0x8051B560; // type:object size:0x4 scope:local align:4 data:float +@4334 = .sdata2:0x8051B564; // type:object size:0x4 scope:local align:4 data:float +@4336 = .sdata2:0x8051B568; // type:object size:0x8 scope:local align:8 data:double +@4405 = .sdata2:0x8051B570; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x8051B574; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x8051B578; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x8051B57C; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x8051B580; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x8051B584; // type:object size:0x4 scope:local align:4 data:float +@4670 = .sdata2:0x8051B588; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x8051B58C; // type:object size:0x4 scope:local align:4 data:float +@4818 = .sdata2:0x8051B590; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x8051B594; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051B598; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051B59C; // type:object size:0x6 scope:local align:4 data:string +@3919 = .sdata2:0x8051B5A4; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x8051B5A8; // type:object size:0x5 scope:local align:4 data:string +@3959 = .sdata2:0x8051B5B0; // type:object size:0x4 scope:local align:4 data:float +@3960 = .sdata2:0x8051B5B4; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051B5B8; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x8051B5BC; // type:object size:0x4 scope:local align:4 data:float +@4015 = .sdata2:0x8051B5C0; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x8051B5C4; // type:object size:0x5 scope:local align:4 data:string +@4065 = .sdata2:0x8051B5CC; // type:object size:0x4 scope:local align:4 data:float +@4066 = .sdata2:0x8051B5D0; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051B5D4; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051B5D8; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051B5DC; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x8051B5E0; // type:object size:0x8 scope:local align:8 data:double +@4145 = .sdata2:0x8051B5E8; // type:object size:0x4 scope:local align:4 data:float +@4162 = .sdata2:0x8051B5EC; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051B5F0; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata2:0x8051B5F4; // type:object size:0x4 scope:local align:4 data:float +@4360 = .sdata2:0x8051B5F8; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x8051B5FC; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x8051B600; // type:object size:0x4 scope:local align:4 data:float +@4599 = .sdata2:0x8051B604; // type:object size:0x4 scope:local align:4 data:float +@4670 = .sdata2:0x8051B608; // type:object size:0x4 scope:local align:4 data:float +@5029 = .sdata2:0x8051B60C; // type:object size:0x4 scope:local align:4 data:float +@5030 = .sdata2:0x8051B610; // type:object size:0x4 scope:local align:4 data:float +@5141 = .sdata2:0x8051B614; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051B618; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051B61C; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051B620; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051B624; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051B628; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051B62C; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051B630; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051B634; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051B638; // type:object size:0x5 scope:local align:4 data:string +@3937 = .sdata2:0x8051B640; // type:object size:0x5 scope:local align:4 data:string +@3938 = .sdata2:0x8051B648; // type:object size:0x5 scope:local align:4 data:string +@3939 = .sdata2:0x8051B650; // type:object size:0x5 scope:local align:4 data:string +@3940 = .sdata2:0x8051B658; // type:object size:0x6 scope:local align:4 data:string +@3942 = .sdata2:0x8051B660; // type:object size:0x7 scope:local align:4 data:string +@3943 = .sdata2:0x8051B668; // type:object size:0x5 scope:local align:4 data:string +@3944 = .sdata2:0x8051B670; // type:object size:0x5 scope:local align:4 data:string +@3945 = .sdata2:0x8051B678; // type:object size:0x7 scope:local align:4 data:string +@3946 = .sdata2:0x8051B680; // type:object size:0x8 scope:local align:4 data:string +@3967 = .sdata2:0x8051B688; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051B68C; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051B690; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051B694; // type:object size:0x4 scope:local align:4 data:float +@4351 = .sdata2:0x8051B698; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x8051B69C; // type:object size:0x4 scope:local align:4 data:float +@4353 = .sdata2:0x8051B6A0; // type:object size:0x4 scope:local align:4 data:float +@4354 = .sdata2:0x8051B6A4; // type:object size:0x4 scope:local align:4 data:float +@4355 = .sdata2:0x8051B6A8; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x8051B6AC; // type:object size:0x4 scope:local align:4 data:float +@4656 = .sdata2:0x8051B6B0; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata2:0x8051B6B4; // type:object size:0x4 scope:local align:4 data:float +@4815 = .sdata2:0x8051B6B8; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051B6C0; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051B6C4; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051B6C8; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051B6CC; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051B6D0; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x8051B6D4; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051B6D8; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x8051B6DC; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051B6E0; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x8051B6E4; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x8051B6E8; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051B6F0; // type:object size:0x7 scope:local align:4 data:string +@3944 = .sdata2:0x8051B6F8; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051B6FC; // type:object size:0x5 scope:local align:4 data:string +@3916 = .sdata2:0x8051B708; // type:object size:0x7 scope:local align:4 data:string +@3991 = .sdata2:0x8051B710; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051B714; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x8051B718; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051B71C; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051B720; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x8051B728; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051B730; // type:object size:0x5 scope:local align:4 data:string +@3965 = .sdata2:0x8051B738; // type:object size:0x7 scope:local align:4 data:string +@3966 = .sdata2:0x8051B740; // type:object size:0x5 scope:local align:4 data:string +@3967 = .sdata2:0x8051B748; // type:object size:0x5 scope:local align:4 data:string +@3970 = .sdata2:0x8051B750; // type:object size:0x8 scope:local align:4 data:string +@3971 = .sdata2:0x8051B758; // type:object size:0x7 scope:local align:4 data:string +@3972 = .sdata2:0x8051B760; // type:object size:0x8 scope:local align:4 data:string +@3973 = .sdata2:0x8051B768; // type:object size:0x8 scope:local align:4 data:string +@3974 = .sdata2:0x8051B770; // type:object size:0x4 scope:local align:4 data:string +@3975 = .sdata2:0x8051B774; // type:object size:0x6 scope:local align:4 data:string +@3976 = .sdata2:0x8051B77C; // type:object size:0x5 scope:local align:4 data:string +@3986 = .sdata2:0x8051B784; // type:object size:0x4 scope:local align:4 data:float +@4320 = .sdata2:0x8051B788; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x8051B78C; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata2:0x8051B790; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata2:0x8051B794; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051B798; // type:object size:0x5 scope:local align:4 data:string +@3741 = .sdata2:0x8051B7A0; // type:object size:0x6 scope:local align:4 data:string +@3742 = .sdata2:0x8051B7A8; // type:object size:0x5 scope:local align:4 data:string +@3743 = .sdata2:0x8051B7B0; // type:object size:0x7 scope:local align:4 data:string +@3744 = .sdata2:0x8051B7B8; // type:object size:0x6 scope:local align:4 data:string +@3745 = .sdata2:0x8051B7C0; // type:object size:0x8 scope:local align:4 data:string +@3746 = .sdata2:0x8051B7C8; // type:object size:0x5 scope:local align:4 data:string +@3753 = .sdata2:0x8051B7D0; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051B7D4; // type:object size:0x4 scope:local align:4 data:float +@3954 = .sdata2:0x8051B7D8; // type:object size:0x5 scope:local align:4 data:string +@4221 = .sdata2:0x8051B7E0; // type:object size:0x4 scope:local align:4 data:float +@4222 = .sdata2:0x8051B7E4; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata2:0x8051B7E8; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata2:0x8051B7EC; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata2:0x8051B7F0; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata2:0x8051B7F4; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051B7F8; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x8051B7FC; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051B800; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B804; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051B808; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051B80C; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051B810; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051B818; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051B81C; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051B820; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051B824; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051B828; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051B82C; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051B830; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051B834; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051B838; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051B83C; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051B840; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051B844; // type:object size:0x4 scope:local align:4 data:float +@4291 = .sdata2:0x8051B848; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051B84C; // type:object size:0x4 scope:local align:4 data:float +@4455 = .sdata2:0x8051B850; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051B854; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051B858; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051B860; // type:object size:0x8 scope:local align:8 data:double +@4533 = .sdata2:0x8051B868; // type:object size:0x4 scope:local align:4 data:float +@4534 = .sdata2:0x8051B86C; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x8051B870; // type:object size:0x4 scope:local align:4 data:float +@5144 = .sdata2:0x8051B874; // type:object size:0x6 scope:local align:4 data:string +@5145 = .sdata2:0x8051B87C; // type:object size:0x5 scope:local align:4 data:string +@5309 = .sdata2:0x8051B884; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051B888; // type:object size:0x5 scope:local align:4 data:string +@3854 = .sdata2:0x8051B890; // type:object size:0x6 scope:local align:4 data:string +@3855 = .sdata2:0x8051B898; // type:object size:0x5 scope:local align:4 data:string +@3856 = .sdata2:0x8051B8A0; // type:object size:0x5 scope:local align:4 data:string +@3857 = .sdata2:0x8051B8A8; // type:object size:0x7 scope:local align:4 data:string +@3864 = .sdata2:0x8051B8B0; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051B8B4; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051B8B8; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051B8BC; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051B8C0; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051B8C8; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B8CC; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051B8D0; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051B8D4; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B8D8; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051B8E0; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051B8E4; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051B8E8; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051B8EC; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051B8F0; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x8051B8F4; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051B8FC; // type:object size:0x4 scope:local align:4 data:float +@3988 = .sdata2:0x8051B900; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051B908; // type:object size:0x8 scope:local align:8 data:double +@4045 = .sdata2:0x8051B910; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x8051B914; // type:object size:0x4 scope:local align:4 data:float +@4047 = .sdata2:0x8051B918; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x8051B91C; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x8051B920; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x8051B924; // type:object size:0x4 scope:local align:4 data:float +@4072 = .sdata2:0x8051B928; // type:object size:0x4 scope:local align:4 data:float +@3707 = .sdata2:0x8051B930; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata2:0x8051B934; // type:object size:0x4 scope:local align:4 data:float +@3709 = .sdata2:0x8051B938; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051B93C; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051B940; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata2:0x8051B948; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051B94C; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x8051B950; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051B954; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051B958; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051B95C; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051B960; // type:object size:0x6 scope:local align:4 data:string +@4137 = .sdata2:0x8051B968; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051B96C; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051B970; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051B974; // type:object size:0x6 scope:local align:4 data:string +@4141 = .sdata2:0x8051B97C; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051B980; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051B984; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051B988; // type:object size:0x6 scope:local align:4 data:string +@4145 = .sdata2:0x8051B990; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051B994; // type:object size:0x5 scope:local align:4 data:string +@4147 = .sdata2:0x8051B99C; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x8051B9A0; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051B9A4; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051B9A8; // type:object size:0x6 scope:local align:4 data:string +@4151 = .sdata2:0x8051B9B0; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051B9B4; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051B9B8; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051B9BC; // type:object size:0x6 scope:local align:4 data:string +@3863 = .sdata2:0x8051B9C8; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051B9CC; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051B9D0; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051B9D4; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051B9D8; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051B9DC; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051B9E0; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051B9E4; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051B9E8; // type:object size:0x5 scope:local align:4 data:string +@4141 = .sdata2:0x8051B9F0; // type:object size:0x5 scope:local align:4 data:string +@4031 = .sdata2:0x8051B9F8; // type:object size:0x5 scope:local align:4 data:string +@4032 = .sdata2:0x8051BA00; // type:object size:0x5 scope:local align:4 data:string +@4033 = .sdata2:0x8051BA08; // type:object size:0x8 scope:local align:4 data:string +@4034 = .sdata2:0x8051BA10; // type:object size:0x8 scope:local align:4 data:string +@4036 = .sdata2:0x8051BA18; // type:object size:0x5 scope:local align:4 data:string +@4037 = .sdata2:0x8051BA20; // type:object size:0x7 scope:local align:4 data:string +@4038 = .sdata2:0x8051BA28; // type:object size:0x4 scope:local align:4 data:string +@4051 = .sdata2:0x8051BA2C; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata2:0x8051BA30; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051BA34; // type:object size:0x4 scope:local align:4 data:float +@4385 = .sdata2:0x8051BA38; // type:object size:0x4 scope:local align:4 data:float +@4386 = .sdata2:0x8051BA3C; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata2:0x8051BA40; // type:object size:0x4 scope:local align:4 data:float +@4389 = .sdata2:0x8051BA48; // type:object size:0x8 scope:local align:8 data:double +@4619 = .sdata2:0x8051BA50; // type:object size:0x4 scope:local align:4 data:float +@4631 = .sdata2:0x8051BA54; // type:object size:0x4 scope:local align:4 data:float +@4884 = .sdata2:0x8051BA58; // type:object size:0x4 scope:local align:4 data:float +@4885 = .sdata2:0x8051BA5C; // type:object size:0x4 scope:local align:4 data:float +@4886 = .sdata2:0x8051BA60; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x8051BA64; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051BA68; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051BA6C; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051BA70; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BA74; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051BA78; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051BA7C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BA80; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051BA84; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051BA88; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051BA90; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051BA94; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051BA98; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051BA9C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051BAA0; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051BAA4; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051BAA8; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x8051BAAC; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051BAB0; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x8051BAB4; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051BAB8; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051BABC; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051BAC0; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x8051BAC4; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x8051BAC8; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata2:0x8051BACC; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x8051BAD0; // type:object size:0x8 scope:local align:8 data:double +@5243 = .sdata2:0x8051BAD8; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051BAE0; // type:object size:0x5 scope:local align:4 data:string +@3636 = .sdata2:0x8051BAE8; // type:object size:0x8 scope:local align:4 data:string +@3637 = .sdata2:0x8051BAF0; // type:object size:0x5 scope:local align:4 data:string +@3638 = .sdata2:0x8051BAF8; // type:object size:0x7 scope:local align:4 data:string +@3639 = .sdata2:0x8051BB00; // type:object size:0x6 scope:local align:4 data:string +@3640 = .sdata2:0x8051BB08; // type:object size:0x5 scope:local align:4 data:string +@3642 = .sdata2:0x8051BB10; // type:object size:0x5 scope:local align:4 data:string +@3650 = .sdata2:0x8051BB18; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051BB1C; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051BB20; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051BB24; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051BB28; // type:object size:0x4 scope:local align:4 data:float +@4195 = .sdata2:0x8051BB2C; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x8051BB30; // type:object size:0x4 scope:local align:4 data:float +@4209 = .sdata2:0x8051BB34; // type:object size:0x4 scope:local align:4 data:float +@4992 = .sdata2:0x8051BB38; // type:object size:0x4 scope:local align:4 data:float +@4993 = .sdata2:0x8051BB3C; // type:object size:0x4 scope:local align:4 data:float +@5196 = .sdata2:0x8051BB40; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051BB48; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051BB4C; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051BB50; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051BB54; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051BB58; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051BB5C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BB60; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x8051BB68; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051BB6C; // type:object size:0x4 scope:local align:4 data:string +@3685 = .sdata2:0x8051BB70; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051BB74; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051BB78; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x8051BB7C; // type:object size:0x4 scope:local align:4 data:float +@3689 = .sdata2:0x8051BB80; // type:object size:0x4 scope:local align:4 data:float +@3690 = .sdata2:0x8051BB84; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata2:0x8051BB88; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051BB8C; // type:object size:0x6 scope:local align:4 data:string +@3741 = .sdata2:0x8051BB94; // type:object size:0x6 scope:local align:4 data:string +@3742 = .sdata2:0x8051BB9C; // type:object size:0x6 scope:local align:4 data:string +@3743 = .sdata2:0x8051BBA4; // type:object size:0x6 scope:local align:4 data:string +@3744 = .sdata2:0x8051BBAC; // type:object size:0x6 scope:local align:4 data:string +@3745 = .sdata2:0x8051BBB4; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x8051BBB8; // type:object size:0x5 scope:local align:4 data:string +@3751 = .sdata2:0x8051BBC0; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051BBC4; // type:object size:0x5 scope:local align:4 data:string +@3840 = .sdata2:0x8051BBCC; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051BBD0; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051BBD4; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x8051BBD8; // type:object size:0x8 scope:local align:8 data:double +@4039 = .sdata2:0x8051BBE0; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051BBE4; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051BBE8; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051BBF0; // type:object size:0x5 scope:local align:4 data:string +@3902 = .sdata2:0x8051BBF8; // type:object size:0x5 scope:local align:4 data:string +@3903 = .sdata2:0x8051BC00; // type:object size:0x5 scope:local align:4 data:string +@3904 = .sdata2:0x8051BC08; // type:object size:0x5 scope:local align:4 data:string +@3905 = .sdata2:0x8051BC10; // type:object size:0x5 scope:local align:4 data:string +@3906 = .sdata2:0x8051BC18; // type:object size:0x5 scope:local align:4 data:string +@3907 = .sdata2:0x8051BC20; // type:object size:0x5 scope:local align:4 data:string +@3908 = .sdata2:0x8051BC28; // type:object size:0x7 scope:local align:4 data:string +@3919 = .sdata2:0x8051BC30; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051BC34; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x8051BC38; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051BC3C; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051BC40; // type:object size:0x8 scope:local align:8 data:double +@4069 = .sdata2:0x8051BC48; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x8051BC4C; // type:object size:0x4 scope:local align:4 data:float +@4239 = .sdata2:0x8051BC50; // type:object size:0x4 scope:local align:4 data:float +@4240 = .sdata2:0x8051BC54; // type:object size:0x4 scope:local align:4 data:float +@4397 = .sdata2:0x8051BC58; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata2:0x8051BC5C; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata2:0x8051BC60; // type:object size:0x4 scope:local align:4 data:float +@4477 = .sdata2:0x8051BC64; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x8051BC68; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051BC70; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BC74; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051BC78; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051BC7C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BC80; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051BC84; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051BC88; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051BC8C; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051BC90; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051BC98; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051BC9C; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x8051BCA0; // type:object size:0x4 scope:local align:4 data:float +@4067 = .sdata2:0x8051BCA4; // type:object size:0x4 scope:local align:4 data:float +@4068 = .sdata2:0x8051BCA8; // type:object size:0x4 scope:local align:4 data:float +@4069 = .sdata2:0x8051BCAC; // type:object size:0x4 scope:local align:4 data:float +@4165 = .sdata2:0x8051BCB0; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x8051BCB8; // type:object size:0x8 scope:local align:8 data:double +@4412 = .sdata2:0x8051BCC0; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x8051BCC4; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x8051BCC8; // type:object size:0x4 scope:local align:4 data:float +@4415 = .sdata2:0x8051BCCC; // type:object size:0x4 scope:local align:4 data:float +@4416 = .sdata2:0x8051BCD0; // type:object size:0x4 scope:local align:4 data:float +@4417 = .sdata2:0x8051BCD4; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata2:0x8051BCD8; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x8051BCDC; // type:object size:0x4 scope:local align:4 data:float +@3643 = .sdata2:0x8051BCE0; // type:object size:0x7 scope:local align:4 data:string +@3671 = .sdata2:0x8051BCE8; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051BCF0; // type:object size:0x4 scope:local align:4 data:float +@3451 = .sdata2:0x8051BCF8; // type:object size:0x4 scope:local align:4 data:float +@3453 = .sdata2:0x8051BD00; // type:object size:0x8 scope:local align:8 data:double +@3949 = .sdata2:0x8051BD08; // type:object size:0x5 scope:local align:4 data:string +@3950 = .sdata2:0x8051BD10; // type:object size:0x5 scope:local align:4 data:string +@3951 = .sdata2:0x8051BD18; // type:object size:0x5 scope:local align:4 data:string +@3952 = .sdata2:0x8051BD20; // type:object size:0x6 scope:local align:4 data:string +@3954 = .sdata2:0x8051BD28; // type:object size:0x7 scope:local align:4 data:string +@3955 = .sdata2:0x8051BD30; // type:object size:0x5 scope:local align:4 data:string +@3956 = .sdata2:0x8051BD38; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata2:0x8051BD40; // type:object size:0x7 scope:local align:4 data:string +@3958 = .sdata2:0x8051BD48; // type:object size:0x8 scope:local align:4 data:string +@3961 = .sdata2:0x8051BD50; // type:object size:0x6 scope:local align:4 data:string +@3980 = .sdata2:0x8051BD58; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x8051BD5C; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051BD60; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x8051BD64; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051BD68; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051BD6C; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051BD70; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051BD74; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051BD78; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051BD7C; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051BD80; // type:object size:0x4 scope:local align:4 data:float +@4683 = .sdata2:0x8051BD84; // type:object size:0x4 scope:local align:4 data:float +@4684 = .sdata2:0x8051BD88; // type:object size:0x4 scope:local align:4 data:float +@4842 = .sdata2:0x8051BD8C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BD90; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051BD94; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051BD98; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051BD9C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BDA0; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051BDA4; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051BDA8; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051BDAC; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051BDB0; // type:object size:0x5 scope:local align:4 data:string +@3881 = .sdata2:0x8051BDB8; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051BDBC; // type:object size:0x6 scope:local align:4 data:string +@3920 = .sdata2:0x8051BDC4; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051BDC8; // type:object size:0x5 scope:local align:4 data:string +@3981 = .sdata2:0x8051BDD0; // type:object size:0x5 scope:local align:4 data:string +@3982 = .sdata2:0x8051BDD8; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051BDDC; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051BDE0; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051BDE4; // type:object size:0x4 scope:local align:4 data:float +@4028 = .sdata2:0x8051BDE8; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051BDEC; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051BDF0; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051BDF4; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051BDF8; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051BDFC; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051BE00; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051BE08; // type:object size:0x8 scope:local align:8 data:double +@4165 = .sdata2:0x8051BE10; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051BE14; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x8051BE18; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata2:0x8051BE1C; // type:object size:0x4 scope:local align:4 data:float +@4391 = .sdata2:0x8051BE20; // type:object size:0x4 scope:local align:4 data:float +@4470 = .sdata2:0x8051BE24; // type:object size:0x4 scope:local align:4 data:float +@4471 = .sdata2:0x8051BE28; // type:object size:0x4 scope:local align:4 data:float +@4626 = .sdata2:0x8051BE2C; // type:object size:0x4 scope:local align:4 data:float +@4694 = .sdata2:0x8051BE30; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata2:0x8051BE34; // type:object size:0x4 scope:local align:4 data:float +@5055 = .sdata2:0x8051BE38; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x8051BE3C; // type:object size:0x4 scope:local align:4 data:float +@5167 = .sdata2:0x8051BE40; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051BE48; // type:object size:0x5 scope:local align:4 data:string +@3732 = .sdata2:0x8051BE50; // type:object size:0x5 scope:local align:4 data:string +@3733 = .sdata2:0x8051BE58; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x8051BE60; // type:object size:0x5 scope:local align:4 data:string +@3735 = .sdata2:0x8051BE68; // type:object size:0x6 scope:local align:4 data:string +@3736 = .sdata2:0x8051BE70; // type:object size:0x5 scope:local align:4 data:string +@3748 = .sdata2:0x8051BE78; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051BE7C; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x8051BE80; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051BE84; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051BE88; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051BE90; // type:object size:0x8 scope:local align:8 data:double +@3987 = .sdata2:0x8051BE98; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x8051BE9C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BEA0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051BEA4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051BEA8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051BEAC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BEB0; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051BEB4; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051BEB8; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051BEBC; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051BEC0; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051BEC4; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051BEC8; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051BED0; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051BED4; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051BED8; // type:object size:0x4 scope:local align:4 data:float +@4198 = .sdata2:0x8051BEDC; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051BEE0; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051BEE4; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x8051BEE8; // type:object size:0x5 scope:local align:4 data:string +@4239 = .sdata2:0x8051BEF0; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x8051BEF4; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051BEF8; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x8051BEFC; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x8051BF00; // type:object size:0x4 scope:local align:4 data:float +@4331 = .sdata2:0x8051BF04; // type:object size:0x4 scope:local align:4 data:float +@4332 = .sdata2:0x8051BF08; // type:object size:0x4 scope:local align:4 data:float +@4334 = .sdata2:0x8051BF10; // type:object size:0x8 scope:local align:8 data:double +@4363 = .sdata2:0x8051BF18; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x8051BF1C; // type:object size:0x4 scope:local align:4 data:float +@4365 = .sdata2:0x8051BF20; // type:object size:0x4 scope:local align:4 data:float +@4366 = .sdata2:0x8051BF24; // type:object size:0x4 scope:local align:4 data:float +@4367 = .sdata2:0x8051BF28; // type:object size:0x4 scope:local align:4 data:float +@4368 = .sdata2:0x8051BF2C; // type:object size:0x4 scope:local align:4 data:float +@4369 = .sdata2:0x8051BF30; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051BF34; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051BF38; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051BF3C; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x8051BF40; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x8051BF44; // type:object size:0x4 scope:local align:4 data:float +@5035 = .sdata2:0x8051BF48; // type:object size:0x6 scope:local align:4 data:string +@5036 = .sdata2:0x8051BF50; // type:object size:0x6 scope:local align:4 data:string +@5082 = .sdata2:0x8051BF58; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata2:0x8051BF5C; // type:object size:0x4 scope:local align:4 data:float +@5127 = .sdata2:0x8051BF60; // type:object size:0x4 scope:local align:4 data:float +@5128 = .sdata2:0x8051BF64; // type:object size:0x4 scope:local align:4 data:float +@5452 = .sdata2:0x8051BF68; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051BF70; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051BF74; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x8051BF78; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051BF7C; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x8051BF80; // type:object size:0x4 scope:local align:4 data:float +@4061 = .sdata2:0x8051BF84; // type:object size:0x4 scope:local align:4 data:float +@4062 = .sdata2:0x8051BF88; // type:object size:0x4 scope:local align:4 data:float +@4063 = .sdata2:0x8051BF8C; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051BF90; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051BF94; // type:object size:0x4 scope:local align:4 data:float +@4178 = .sdata2:0x8051BF98; // type:object size:0x4 scope:local align:4 data:float +@2787 = .sdata2:0x8051BFA0; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata2:0x8051BFA4; // type:object size:0x4 scope:local align:4 data:float +@2886 = .sdata2:0x8051BFA8; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata2:0x8051BFAC; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata2:0x8051BFB0; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata2:0x8051BFB4; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata2:0x8051BFB8; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata2:0x8051BFC0; // type:object size:0x8 scope:local align:8 data:double +@3138 = .sdata2:0x8051BFC8; // type:object size:0x4 scope:local align:4 data:float +@3139 = .sdata2:0x8051BFCC; // type:object size:0x4 scope:local align:4 data:float +@3181 = .sdata2:0x8051BFD0; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051BFD4; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051BFD8; // type:object size:0x5 scope:local align:4 data:string +@3753 = .sdata2:0x8051BFE0; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051BFE4; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051BFE8; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051BFEC; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051BFF0; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051BFF4; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051BFF8; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x8051BFFC; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051C000; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x8051C004; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8051C008; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x8051C00C; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051C010; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x8051C014; // type:object size:0x4 scope:local align:4 data:float +@3767 = .sdata2:0x8051C018; // type:object size:0x4 scope:local align:4 data:float +@3768 = .sdata2:0x8051C01C; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x8051C020; // type:object size:0x5 scope:local align:4 data:string +@4055 = .sdata2:0x8051C028; // type:object size:0x5 scope:local align:4 data:string +@4056 = .sdata2:0x8051C030; // type:object size:0x5 scope:local align:4 data:string +@4057 = .sdata2:0x8051C038; // type:object size:0x6 scope:local align:4 data:string +@4058 = .sdata2:0x8051C040; // type:object size:0x7 scope:local align:4 data:string +@4059 = .sdata2:0x8051C048; // type:object size:0x5 scope:local align:4 data:string +@4060 = .sdata2:0x8051C050; // type:object size:0x5 scope:local align:4 data:string +@4061 = .sdata2:0x8051C058; // type:object size:0x7 scope:local align:4 data:string +@4062 = .sdata2:0x8051C060; // type:object size:0x8 scope:local align:4 data:string +@4084 = .sdata2:0x8051C068; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051C06C; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051C070; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051C074; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051C078; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051C07C; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051C080; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x8051C084; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051C088; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051C08C; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata2:0x8051C090; // type:object size:0x4 scope:local align:4 data:float +@4259 = .sdata2:0x8051C094; // type:object size:0x4 scope:local align:4 data:float +@4390 = .sdata2:0x8051C098; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x8051C09C; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051C0A0; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C0A4; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051C0A8; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051C0AC; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C0B0; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051C0B4; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051C0B8; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C0BC; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051C0C0; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x8051C0C4; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051C0C8; // type:object size:0x7 scope:local align:4 data:string +@3982 = .sdata2:0x8051C0D0; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051C0D4; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051C0D8; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051C0DC; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051C0E0; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051C0E4; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051C0E8; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051C0EC; // type:object size:0x4 scope:local align:4 data:float +@4092 = .sdata2:0x8051C0F0; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x8051C0F4; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8051C0F8; // type:object size:0x8 scope:local align:8 data:double +@4117 = .sdata2:0x8051C100; // type:object size:0x4 scope:local align:4 data:float +@4196 = .sdata2:0x8051C104; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051C108; // type:object size:0x4 scope:local align:4 data:float +@4796 = .sdata2:0x8051C10C; // type:object size:0x7 scope:local align:4 data:string +@4797 = .sdata2:0x8051C114; // type:object size:0x7 scope:local align:4 data:string +@4798 = .sdata2:0x8051C11C; // type:object size:0x6 scope:local align:4 data:string +@4799 = .sdata2:0x8051C124; // type:object size:0x7 scope:local align:4 data:string +@4860 = .sdata2:0x8051C12C; // type:object size:0x4 scope:local align:4 data:float +@4078 = .sdata2:0x8051C130; // type:object size:0x5 scope:local align:4 data:string +@4079 = .sdata2:0x8051C138; // type:object size:0x7 scope:local align:4 data:string +@4080 = .sdata2:0x8051C140; // type:object size:0x5 scope:local align:4 data:string +@4082 = .sdata2:0x8051C148; // type:object size:0x5 scope:local align:4 data:string +@4084 = .sdata2:0x8051C150; // type:object size:0x7 scope:local align:4 data:string +@4085 = .sdata2:0x8051C158; // type:object size:0x8 scope:local align:4 data:string +@4086 = .sdata2:0x8051C160; // type:object size:0x5 scope:local align:4 data:string +@4089 = .sdata2:0x8051C168; // type:object size:0x6 scope:local align:4 data:string +@4103 = .sdata2:0x8051C170; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051C174; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051C178; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x8051C17C; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata2:0x8051C180; // type:object size:0x4 scope:local align:4 data:float +@4275 = .sdata2:0x8051C184; // type:object size:0x4 scope:local align:4 data:float +@4449 = .sdata2:0x8051C188; // type:object size:0x4 scope:local align:4 data:float +@4450 = .sdata2:0x8051C18C; // type:object size:0x4 scope:local align:4 data:float +@4451 = .sdata2:0x8051C190; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x8051C194; // type:object size:0x4 scope:local align:4 data:float +@4822 = .sdata2:0x8051C198; // type:object size:0x4 scope:local align:4 data:float +@4823 = .sdata2:0x8051C19C; // type:object size:0x4 scope:local align:4 data:float +@4824 = .sdata2:0x8051C1A0; // type:object size:0x4 scope:local align:4 data:float +@4825 = .sdata2:0x8051C1A4; // type:object size:0x4 scope:local align:4 data:float +@4925 = .sdata2:0x8051C1A8; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata2:0x8051C1AC; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata2:0x8051C1B0; // type:object size:0x4 scope:local align:4 data:float +@4972 = .sdata2:0x8051C1B4; // type:object size:0x4 scope:local align:4 data:float +@5011 = .sdata2:0x8051C1B8; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata2:0x8051C1BC; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C1C0; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051C1C4; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051C1C8; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C1CC; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051C1D0; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051C1D4; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051C1D8; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C1DC; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051C1E0; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C1E4; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C1E8; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051C1EC; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C1F0; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051C1F4; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x8051C1F8; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata2:0x8051C1FC; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata2:0x8051C200; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051C204; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051C208; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051C20C; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x8051C210; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051C214; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051C218; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051C21C; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051C220; // type:object size:0x8 scope:local align:8 data:double +@4226 = .sdata2:0x8051C228; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051C22C; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x8051C230; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata2:0x8051C234; // type:object size:0x4 scope:local align:4 data:float +@4339 = .sdata2:0x8051C238; // type:object size:0x4 scope:local align:4 data:float +@4340 = .sdata2:0x8051C23C; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x8051C240; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata2:0x8051C248; // type:object size:0x5 scope:local align:4 data:string +@3699 = .sdata2:0x8051C250; // type:object size:0x6 scope:local align:4 data:string +@3700 = .sdata2:0x8051C258; // type:object size:0x5 scope:local align:4 data:string +@3701 = .sdata2:0x8051C260; // type:object size:0x5 scope:local align:4 data:string +@3702 = .sdata2:0x8051C268; // type:object size:0x5 scope:local align:4 data:string +@3703 = .sdata2:0x8051C270; // type:object size:0x5 scope:local align:4 data:string +@3721 = .sdata2:0x8051C278; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051C27C; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051C280; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x8051C284; // type:object size:0x4 scope:local align:4 data:float +@4111 = .sdata2:0x8051C288; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051C290; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051C294; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051C298; // type:object size:0x4 scope:local align:4 data:float +@4038 = .sdata2:0x8051C29C; // type:object size:0x8 scope:local align:4 data:string +@4039 = .sdata2:0x8051C2A4; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051C2A8; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x8051C2AC; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x8051C2B0; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x8051C2B4; // type:object size:0x4 scope:local align:4 data:float +@4348 = .sdata2:0x8051C2B8; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x8051C2BC; // type:object size:0x4 scope:local align:4 data:float +@4350 = .sdata2:0x8051C2C0; // type:object size:0x4 scope:local align:4 data:float +@4367 = .sdata2:0x8051C2C4; // type:object size:0x4 scope:local align:4 data:float +@4471 = .sdata2:0x8051C2C8; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata2:0x8051C2CC; // type:object size:0x7 scope:local align:4 data:string +@4576 = .sdata2:0x8051C2D4; // type:object size:0x4 scope:local align:4 data:float +@4590 = .sdata2:0x8051C2D8; // type:object size:0x4 scope:local align:4 data:float +@4608 = .sdata2:0x8051C2DC; // type:object size:0x4 scope:local align:4 data:float +@4644 = .sdata2:0x8051C2E0; // type:object size:0x4 scope:local align:4 data:float +@4673 = .sdata2:0x8051C2E4; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051C2E8; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051C2EC; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C2F0; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C2F4; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051C2F8; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051C2FC; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051C300; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051C308; // type:object size:0x7 scope:local align:4 data:string +@3890 = .sdata2:0x8051C310; // type:object size:0x7 scope:local align:4 data:string +@3890 = .sdata2:0x8051C318; // type:object size:0x7 scope:local align:4 data:string +@3907 = .sdata2:0x8051C320; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051C324; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051C328; // type:object size:0x7 scope:local align:4 data:string +@3974 = .sdata2:0x8051C330; // type:object size:0x5 scope:local align:4 data:string +@3977 = .sdata2:0x8051C338; // type:object size:0x5 scope:local align:4 data:string +@3978 = .sdata2:0x8051C340; // type:object size:0x7 scope:local align:4 data:string +@3979 = .sdata2:0x8051C348; // type:object size:0x5 scope:local align:4 data:string +@3980 = .sdata2:0x8051C350; // type:object size:0x5 scope:local align:4 data:string +@3981 = .sdata2:0x8051C358; // type:object size:0x7 scope:local align:4 data:string +@3982 = .sdata2:0x8051C360; // type:object size:0x6 scope:local align:4 data:string +@3983 = .sdata2:0x8051C368; // type:object size:0x7 scope:local align:4 data:string +@3984 = .sdata2:0x8051C370; // type:object size:0x5 scope:local align:4 data:string +@3994 = .sdata2:0x8051C378; // type:object size:0x4 scope:local align:4 data:float +@4045 = .sdata2:0x8051C37C; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051C380; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051C384; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata2:0x8051C388; // type:object size:0x4 scope:local align:4 data:float +@4442 = .sdata2:0x8051C38C; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x8051C390; // type:object size:0x4 scope:local align:4 data:float +@4491 = .sdata2:0x8051C394; // type:object size:0x4 scope:local align:4 data:float +@4606 = .sdata2:0x8051C398; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051C3A0; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051C3A4; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051C3A8; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C3AC; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051C3B0; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C3B4; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051C3B8; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051C3BC; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x8051C3C0; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051C3C4; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051C3C8; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051C3CC; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051C3D0; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051C3D4; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051C3D8; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x8051C3DC; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x8051C3E0; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x8051C3E8; // type:object size:0x8 scope:local align:8 data:double +@4583 = .sdata2:0x8051C3F0; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x8051C3F4; // type:object size:0x4 scope:local align:4 data:float +@4585 = .sdata2:0x8051C3F8; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x8051C3FC; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x8051C400; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051C404; // type:object size:0x4 scope:local align:4 data:float +@4685 = .sdata2:0x8051C408; // type:object size:0x8 scope:local align:4 data:string +@4767 = .sdata2:0x8051C410; // type:object size:0x4 scope:local align:4 data:float +@3743 = .sdata2:0x8051C418; // type:object size:0x5 scope:local align:4 data:string +@3744 = .sdata2:0x8051C420; // type:object size:0x5 scope:local align:4 data:string +@3745 = .sdata2:0x8051C428; // type:object size:0x5 scope:local align:4 data:string +@3746 = .sdata2:0x8051C430; // type:object size:0x5 scope:local align:4 data:string +@3747 = .sdata2:0x8051C438; // type:object size:0x6 scope:local align:4 data:string +@3748 = .sdata2:0x8051C440; // type:object size:0x5 scope:local align:4 data:string +@3749 = .sdata2:0x8051C448; // type:object size:0x5 scope:local align:4 data:string +@3758 = .sdata2:0x8051C450; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051C454; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051C458; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051C45C; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051C460; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051C464; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051C468; // type:object size:0x8 scope:local align:8 data:double +@4009 = .sdata2:0x8051C470; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x8051C474; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051C478; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051C47C; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051C480; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C484; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051C488; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C48C; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C490; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051C494; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C498; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051C49C; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x8051C4A0; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051C4A4; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x8051C4A8; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051C4AC; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x8051C4B0; // type:object size:0x5 scope:local align:4 data:string +@3775 = .sdata2:0x8051C4B8; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x8051C4BC; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051C4C0; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x8051C4C4; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051C4C8; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051C4CC; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x8051C4D0; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051C4D4; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051C4D8; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051C4DC; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051C4E0; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata2:0x8051C4E4; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051C4E8; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x8051C4EC; // type:object size:0x4 scope:local align:4 data:float +@3789 = .sdata2:0x8051C4F0; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x8051C4F4; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051C4F8; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051C4FC; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051C500; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x8051C504; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051C508; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051C50C; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x8051C510; // type:object size:0x5 scope:local align:4 data:string +@4226 = .sdata2:0x8051C518; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051C51C; // type:object size:0x4 scope:local align:4 data:float +@4229 = .sdata2:0x8051C520; // type:object size:0x8 scope:local align:8 data:double +@4313 = .sdata2:0x8051C528; // type:object size:0x4 scope:local align:4 data:float +@4314 = .sdata2:0x8051C52C; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051C530; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051C534; // type:object size:0x4 scope:local align:4 data:float +@4317 = .sdata2:0x8051C538; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051C53C; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051C540; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051C544; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051C548; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051C54C; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051C550; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051C554; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051C558; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051C55C; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051C560; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051C564; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051C568; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x8051C56C; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051C570; // type:object size:0x4 scope:local align:4 data:float +@5266 = .sdata2:0x8051C574; // type:object size:0x4 scope:local align:4 data:float +@5267 = .sdata2:0x8051C578; // type:object size:0x4 scope:local align:4 data:float +@5268 = .sdata2:0x8051C57C; // type:object size:0x4 scope:local align:4 data:float +@5291 = .sdata2:0x8051C580; // type:object size:0x4 scope:local align:4 data:float +@5292 = .sdata2:0x8051C584; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051C588; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051C58C; // type:object size:0x4 scope:local align:4 data:float +@4351 = .sdata2:0x8051C590; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x8051C594; // type:object size:0x4 scope:local align:4 data:float +@4353 = .sdata2:0x8051C598; // type:object size:0x4 scope:local align:4 data:float +@4354 = .sdata2:0x8051C59C; // type:object size:0x4 scope:local align:4 data:float +@4355 = .sdata2:0x8051C5A0; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x8051C5A4; // type:object size:0x4 scope:local align:4 data:float +@4357 = .sdata2:0x8051C5A8; // type:object size:0x4 scope:local align:4 data:float +@4358 = .sdata2:0x8051C5AC; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata2:0x8051C5B0; // type:object size:0x8 scope:local align:4 data:string +@4500 = .sdata2:0x8051C5B8; // type:object size:0x4 scope:local align:4 data:string +@4670 = .sdata2:0x8051C5BC; // type:object size:0x4 scope:local align:4 data:float +@4671 = .sdata2:0x8051C5C0; // type:object size:0x4 scope:local align:4 data:float +@4672 = .sdata2:0x8051C5C4; // type:object size:0x4 scope:local align:4 data:float +@4673 = .sdata2:0x8051C5C8; // type:object size:0x4 scope:local align:4 data:float +@4675 = .sdata2:0x8051C5D0; // type:object size:0x8 scope:local align:8 data:double +@4815 = .sdata2:0x8051C5D8; // type:object size:0x4 scope:local align:4 data:float +@4816 = .sdata2:0x8051C5DC; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x8051C5E0; // type:object size:0x4 scope:local align:4 data:float +@4890 = .sdata2:0x8051C5E4; // type:object size:0x4 scope:local align:4 data:float +@4891 = .sdata2:0x8051C5E8; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata2:0x8051C5EC; // type:object size:0x4 scope:local align:4 data:float +@5253 = .sdata2:0x8051C5F0; // type:object size:0x7 scope:local align:4 data:string +@3566 = .sdata2:0x8051C5F8; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C5FC; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051C600; // type:object size:0x8 scope:local align:8 data:double +@3600 = .sdata2:0x8051C608; // type:object size:0x4 scope:local align:4 data:string +@3601 = .sdata2:0x8051C60C; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x8051C610; // type:object size:0x4 scope:local align:4 data:float +@3603 = .sdata2:0x8051C614; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051C618; // type:object size:0x4 scope:local align:4 data:float +@3605 = .sdata2:0x8051C61C; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x8051C620; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata2:0x8051C624; // type:object size:0x6 scope:local align:4 data:string +@3618 = .sdata2:0x8051C62C; // type:object size:0x6 scope:local align:4 data:string +@3619 = .sdata2:0x8051C634; // type:object size:0x6 scope:local align:4 data:string +@3624 = .sdata2:0x8051C63C; // type:object size:0x5 scope:local align:4 data:string +@3625 = .sdata2:0x8051C644; // type:object size:0x5 scope:local align:4 data:string +@3685 = .sdata2:0x8051C64C; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051C650; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051C654; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x8051C658; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051C65C; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051C660; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051C668; // type:object size:0x5 scope:local align:4 data:string +@3732 = .sdata2:0x8051C670; // type:object size:0x5 scope:local align:4 data:string +@3733 = .sdata2:0x8051C678; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x8051C680; // type:object size:0x5 scope:local align:4 data:string +@3735 = .sdata2:0x8051C688; // type:object size:0x6 scope:local align:4 data:string +@3736 = .sdata2:0x8051C690; // type:object size:0x5 scope:local align:4 data:string +@3748 = .sdata2:0x8051C698; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051C69C; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051C6A0; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051C6A4; // type:object size:0x4 scope:local align:4 data:float +@3960 = .sdata2:0x8051C6A8; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051C6B0; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C6B4; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051C6B8; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C6BC; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x8051C6C0; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C6C4; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051C6C8; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C6CC; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051C6D0; // type:object size:0x4 scope:local align:4 data:float +@3571 = .sdata2:0x8051C6D4; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051C6D8; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051C6DC; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051C6E0; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x8051C6E4; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051C6E8; // type:object size:0x5 scope:local align:4 data:string +@3753 = .sdata2:0x8051C6F0; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051C6F4; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051C6F8; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051C6FC; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051C700; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051C704; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051C708; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x8051C70C; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051C710; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x8051C714; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8051C718; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x8051C71C; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051C720; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051C728; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051C72C; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051C730; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x8051C734; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x8051C738; // type:object size:0x4 scope:local align:4 data:float +@4203 = .sdata2:0x8051C73C; // type:object size:0x4 scope:local align:4 data:float +@4229 = .sdata2:0x8051C740; // type:object size:0x5 scope:local align:4 data:string +@4230 = .sdata2:0x8051C748; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata2:0x8051C74C; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata2:0x8051C750; // type:object size:0x4 scope:local align:4 data:float +@4251 = .sdata2:0x8051C758; // type:object size:0x8 scope:local align:8 data:double +@4364 = .sdata2:0x8051C760; // type:object size:0x4 scope:local align:4 data:float +@4365 = .sdata2:0x8051C764; // type:object size:0x4 scope:local align:4 data:float +@4366 = .sdata2:0x8051C768; // type:object size:0x4 scope:local align:4 data:float +@4367 = .sdata2:0x8051C76C; // type:object size:0x4 scope:local align:4 data:float +@4368 = .sdata2:0x8051C770; // type:object size:0x4 scope:local align:4 data:float +@4369 = .sdata2:0x8051C774; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051C778; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x8051C77C; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051C780; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051C784; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051C788; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051C78C; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051C790; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051C794; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051C798; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051C79C; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051C7A0; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x8051C7A4; // type:object size:0x4 scope:local align:4 data:float +@4637 = .sdata2:0x8051C7A8; // type:object size:0x4 scope:local align:4 data:float +@5217 = .sdata2:0x8051C7AC; // type:object size:0x6 scope:local align:4 data:string +@5218 = .sdata2:0x8051C7B4; // type:object size:0x6 scope:local align:4 data:string +@5250 = .sdata2:0x8051C7BC; // type:object size:0x4 scope:local align:4 data:float +@5270 = .sdata2:0x8051C7C0; // type:object size:0x4 scope:local align:4 data:float +@5271 = .sdata2:0x8051C7C4; // type:object size:0x4 scope:local align:4 data:float +@5315 = .sdata2:0x8051C7C8; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata2:0x8051C7CC; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051C7D0; // type:object size:0x5 scope:local align:4 data:string +@4056 = .sdata2:0x8051C7D8; // type:object size:0x5 scope:local align:4 data:string +@4057 = .sdata2:0x8051C7E0; // type:object size:0x8 scope:local align:4 data:string +@4058 = .sdata2:0x8051C7E8; // type:object size:0x8 scope:local align:4 data:string +@4060 = .sdata2:0x8051C7F0; // type:object size:0x5 scope:local align:4 data:string +@4061 = .sdata2:0x8051C7F8; // type:object size:0x5 scope:local align:4 data:string +@4062 = .sdata2:0x8051C800; // type:object size:0x5 scope:local align:4 data:string +@4063 = .sdata2:0x8051C808; // type:object size:0x7 scope:local align:4 data:string +@4064 = .sdata2:0x8051C810; // type:object size:0x4 scope:local align:4 data:string +@4077 = .sdata2:0x8051C814; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051C818; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051C81C; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x8051C820; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x8051C824; // type:object size:0x4 scope:local align:4 data:float +@4415 = .sdata2:0x8051C828; // type:object size:0x4 scope:local align:4 data:float +@4417 = .sdata2:0x8051C830; // type:object size:0x8 scope:local align:8 data:double +@4705 = .sdata2:0x8051C838; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x8051C83C; // type:object size:0x4 scope:local align:4 data:float +@5119 = .sdata2:0x8051C840; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051C848; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051C84C; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051C850; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C854; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051C858; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C85C; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051C860; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x8051C868; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051C86C; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051C870; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051C874; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051C878; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051C87C; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051C880; // type:object size:0x4 scope:local align:4 data:float +@3947 = .sdata2:0x8051C884; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051C888; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051C88C; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051C890; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051C894; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x8051C898; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x8051C89C; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051C8A0; // type:object size:0x8 scope:local align:8 data:double +@4147 = .sdata2:0x8051C8A8; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x8051C8AC; // type:object size:0x4 scope:local align:4 data:float +@4287 = .sdata2:0x8051C8B0; // type:object size:0x4 scope:local align:4 data:float +@4288 = .sdata2:0x8051C8B4; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051C8B8; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051C8BC; // type:object size:0x4 scope:local align:4 data:float +@4291 = .sdata2:0x8051C8C0; // type:object size:0x4 scope:local align:4 data:float +@4292 = .sdata2:0x8051C8C4; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x8051C8C8; // type:object size:0x4 scope:local align:4 data:float +@4753 = .sdata2:0x8051C8CC; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata2:0x8051C8D0; // type:object size:0x4 scope:local align:4 data:float +@5203 = .sdata2:0x8051C8D4; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051C8D8; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051C8DC; // type:object size:0x4 scope:local align:4 data:float +@3603 = .sdata2:0x8051C8E0; // type:object size:0x4 scope:local align:4 data:float +@4066 = .sdata2:0x8051C8E8; // type:object size:0x5 scope:local align:4 data:string +@4067 = .sdata2:0x8051C8F0; // type:object size:0x5 scope:local align:4 data:string +@4068 = .sdata2:0x8051C8F8; // type:object size:0x5 scope:local align:4 data:string +@4069 = .sdata2:0x8051C900; // type:object size:0x6 scope:local align:4 data:string +@4070 = .sdata2:0x8051C908; // type:object size:0x7 scope:local align:4 data:string +@4071 = .sdata2:0x8051C910; // type:object size:0x5 scope:local align:4 data:string +@4072 = .sdata2:0x8051C918; // type:object size:0x5 scope:local align:4 data:string +@4073 = .sdata2:0x8051C920; // type:object size:0x5 scope:local align:4 data:string +@4074 = .sdata2:0x8051C928; // type:object size:0x7 scope:local align:4 data:string +@4075 = .sdata2:0x8051C930; // type:object size:0x8 scope:local align:4 data:string +@4097 = .sdata2:0x8051C938; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051C93C; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x8051C940; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x8051C944; // type:object size:0x4 scope:local align:4 data:float +@4130 = .sdata2:0x8051C948; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051C94C; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051C950; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051C954; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051C958; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051C95C; // type:object size:0x4 scope:local align:4 data:float +@4273 = .sdata2:0x8051C960; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata2:0x8051C964; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x8051C968; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051C970; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C974; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051C978; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051C97C; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C980; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051C984; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051C988; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C98C; // type:object size:0x4 scope:local align:4 data:float +cDefaultKamuJointOffset__Q34Game9OniKurage23@unnamed@OniKurage_cpp@ = .sdata2:0x8051C990; // type:object size:0x8 scope:local align:4 data:float +cFlickKamuJointOffset__Q34Game9OniKurage23@unnamed@OniKurage_cpp@ = .sdata2:0x8051C998; // type:object size:0x8 scope:local align:4 data:float +@4051 = .sdata2:0x8051C9A0; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x8051C9A4; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051C9A8; // type:object size:0x7 scope:local align:4 data:string +@4113 = .sdata2:0x8051C9B0; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051C9B4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051C9B8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051C9BC; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051C9C0; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051C9C4; // type:object size:0x6 scope:local align:4 data:string +@4237 = .sdata2:0x8051C9CC; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x8051C9D0; // type:object size:0x4 scope:local align:4 data:float +@4239 = .sdata2:0x8051C9D4; // type:object size:0x4 scope:local align:4 data:float +@4240 = .sdata2:0x8051C9D8; // type:object size:0x4 scope:local align:4 data:float +@4241 = .sdata2:0x8051C9DC; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata2:0x8051C9E0; // type:object size:0x8 scope:local align:8 data:double +@4265 = .sdata2:0x8051C9E8; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051C9EC; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata2:0x8051C9F0; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051C9F4; // type:object size:0x4 scope:local align:4 data:float +@5115 = .sdata2:0x8051C9F8; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x8051C9FC; // type:object size:0x4 scope:local align:4 data:float +@5117 = .sdata2:0x8051CA00; // type:object size:0x4 scope:local align:4 data:float +@5118 = .sdata2:0x8051CA04; // type:object size:0x4 scope:local align:4 data:float +@5280 = .sdata2:0x8051CA08; // type:object size:0x4 scope:local align:4 data:float +@5281 = .sdata2:0x8051CA0C; // type:object size:0x4 scope:local align:4 data:float +@5282 = .sdata2:0x8051CA10; // type:object size:0x4 scope:local align:4 data:float +@5283 = .sdata2:0x8051CA14; // type:object size:0x4 scope:local align:4 data:float +@5515 = .sdata2:0x8051CA18; // type:object size:0x7 scope:local align:4 data:string +@5516 = .sdata2:0x8051CA20; // type:object size:0x7 scope:local align:4 data:string +@5517 = .sdata2:0x8051CA28; // type:object size:0x6 scope:local align:4 data:string +@5518 = .sdata2:0x8051CA30; // type:object size:0x7 scope:local align:4 data:string +@5583 = .sdata2:0x8051CA38; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051CA40; // type:object size:0x5 scope:local align:4 data:string +@3807 = .sdata2:0x8051CA48; // type:object size:0x5 scope:local align:4 data:string +@3808 = .sdata2:0x8051CA50; // type:object size:0x5 scope:local align:4 data:string +@3809 = .sdata2:0x8051CA58; // type:object size:0x5 scope:local align:4 data:string +@3811 = .sdata2:0x8051CA60; // type:object size:0x6 scope:local align:4 data:string +@3813 = .sdata2:0x8051CA68; // type:object size:0x7 scope:local align:4 data:string +@3814 = .sdata2:0x8051CA70; // type:object size:0x8 scope:local align:4 data:string +@3816 = .sdata2:0x8051CA78; // type:object size:0x5 scope:local align:4 data:string +@3824 = .sdata2:0x8051CA80; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051CA84; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051CA88; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051CA8C; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x8051CA90; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x8051CA94; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051CA98; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051CAA0; // type:object size:0x8 scope:local align:8 data:double +@4443 = .sdata2:0x8051CAA8; // type:object size:0x4 scope:local align:4 data:float +@3521 = .sdata2:0x8051CAB0; // type:object size:0x5 scope:local align:4 data:string +@3522 = .sdata2:0x8051CAB8; // type:object size:0x5 scope:local align:4 data:string +@3523 = .sdata2:0x8051CAC0; // type:object size:0x4 scope:local align:4 data:string +@3524 = .sdata2:0x8051CAC4; // type:object size:0x6 scope:local align:4 data:string +@3525 = .sdata2:0x8051CACC; // type:object size:0x6 scope:local align:4 data:string +@3640 = .sdata2:0x8051CAD4; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051CAD8; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051CADC; // type:object size:0x4 scope:local align:4 data:float +@3644 = .sdata2:0x8051CAE0; // type:object size:0x4 scope:local align:4 data:float +@3645 = .sdata2:0x8051CAE4; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051CAE8; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051CAEC; // type:object size:0x4 scope:local align:4 data:float +@3650 = .sdata2:0x8051CAF0; // type:object size:0x4 scope:local align:4 data:float +@3651 = .sdata2:0x8051CAF4; // type:object size:0x4 scope:local align:4 data:float +@3654 = .sdata2:0x8051CAF8; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata2:0x8051CAFC; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051CB00; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051CB04; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x8051CB08; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x8051CB0C; // type:object size:0x4 scope:local align:4 data:float +@3671 = .sdata2:0x8051CB10; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x8051CB14; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata2:0x8051CB18; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x8051CB1C; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051CB20; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051CB24; // type:object size:0x4 scope:local align:4 data:float +@3683 = .sdata2:0x8051CB28; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051CB2C; // type:object size:0x4 scope:local align:4 data:float +@3689 = .sdata2:0x8051CB30; // type:object size:0x4 scope:local align:4 data:float +@3691 = .sdata2:0x8051CB34; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051CB38; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata2:0x8051CB3C; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051CB40; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051CB44; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051CB48; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051CB4C; // type:object size:0x4 scope:local align:4 data:float +@3713 = .sdata2:0x8051CB50; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x8051CB54; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x8051CB58; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051CB5C; // type:object size:0x4 scope:local align:4 data:float +@3724 = .sdata2:0x8051CB60; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x8051CB64; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051CB68; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x8051CB6C; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x8051CB70; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051CB74; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051CB78; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051CB7C; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x8051CB80; // type:object size:0x4 scope:local align:4 data:float +@3747 = .sdata2:0x8051CB84; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051CB88; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x8051CB90; // type:object size:0x6 scope:local align:4 data:string +@3735 = .sdata2:0x8051CB98; // type:object size:0x6 scope:local align:4 data:string +@3736 = .sdata2:0x8051CBA0; // type:object size:0x6 scope:local align:4 data:string +@3737 = .sdata2:0x8051CBA8; // type:object size:0x6 scope:local align:4 data:string +@3738 = .sdata2:0x8051CBB0; // type:object size:0x6 scope:local align:4 data:string +@3739 = .sdata2:0x8051CBB8; // type:object size:0x6 scope:local align:4 data:string +@3882 = .sdata2:0x8051CBC0; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051CBC4; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051CBC8; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x8051CBCC; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051CBD0; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051CBD4; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051CBD8; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051CBDC; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051CBE0; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051CBE4; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051CBE8; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051CBEC; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051CBF0; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051CBF4; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x8051CBF8; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x8051CBFC; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051CC00; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051CC04; // type:object size:0x4 scope:local align:4 data:float +@4069 = .sdata2:0x8051CC08; // type:object size:0x4 scope:local align:4 data:float +@4070 = .sdata2:0x8051CC0C; // type:object size:0x4 scope:local align:4 data:float +@4071 = .sdata2:0x8051CC10; // type:object size:0x4 scope:local align:4 data:float +@4072 = .sdata2:0x8051CC14; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x8051CC18; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051CC1C; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051CC20; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051CC24; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x8051CC28; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata2:0x8051CC30; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x8051CC34; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051CC38; // type:object size:0x4 scope:local align:4 data:float +@4236 = .sdata2:0x8051CC3C; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051CC40; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x8051CC44; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x8051CC48; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051CC4C; // type:object size:0x5 scope:local align:4 data:string +@4308 = .sdata2:0x8051CC54; // type:object size:0x4 scope:local align:4 data:float +@4309 = .sdata2:0x8051CC58; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x8051CC60; // type:object size:0x8 scope:local align:8 data:double +@4368 = .sdata2:0x8051CC68; // type:object size:0x4 scope:local align:4 data:float +@4369 = .sdata2:0x8051CC6C; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051CC70; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051CC74; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051CC78; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051CC7C; // type:object size:0x4 scope:local align:4 data:float +@4458 = .sdata2:0x8051CC80; // type:object size:0x4 scope:local align:4 data:float +@4459 = .sdata2:0x8051CC84; // type:object size:0x4 scope:local align:4 data:float +@4460 = .sdata2:0x8051CC88; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x8051CC8C; // type:object size:0x4 scope:local align:4 data:float +@4491 = .sdata2:0x8051CC90; // type:object size:0x4 scope:local align:4 data:float +@4492 = .sdata2:0x8051CC94; // type:object size:0x4 scope:local align:4 data:float +@4493 = .sdata2:0x8051CC98; // type:object size:0x4 scope:local align:4 data:float +@4494 = .sdata2:0x8051CC9C; // type:object size:0x4 scope:local align:4 data:float +@4495 = .sdata2:0x8051CCA0; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata2:0x8051CCA4; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata2:0x8051CCA8; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata2:0x8051CCAC; // type:object size:0x4 scope:local align:4 data:float +@4705 = .sdata2:0x8051CCB0; // type:object size:0x5 scope:local align:4 data:string +@4706 = .sdata2:0x8051CCB8; // type:object size:0x5 scope:local align:4 data:string +@4707 = .sdata2:0x8051CCC0; // type:object size:0x4 scope:local align:4 data:string +@4708 = .sdata2:0x8051CCC4; // type:object size:0x6 scope:local align:4 data:string +@4765 = .sdata2:0x8051CCCC; // type:object size:0x4 scope:local align:4 data:float +@4766 = .sdata2:0x8051CCD0; // type:object size:0x6 scope:local align:4 data:string +@4797 = .sdata2:0x8051CCD8; // type:object size:0x4 scope:local align:4 data:float +@4798 = .sdata2:0x8051CCDC; // type:object size:0x4 scope:local align:4 data:float +@4799 = .sdata2:0x8051CCE0; // type:object size:0x4 scope:local align:4 data:float +@4800 = .sdata2:0x8051CCE4; // type:object size:0x4 scope:local align:4 data:float +@4841 = .sdata2:0x8051CCE8; // type:object size:0x4 scope:local align:4 data:float +@4887 = .sdata2:0x8051CCEC; // type:object size:0x4 scope:local align:4 data:float +@4968 = .sdata2:0x8051CCF0; // type:object size:0x4 scope:local align:4 data:float +@5024 = .sdata2:0x8051CCF4; // type:object size:0x4 scope:local align:4 data:float +@5130 = .sdata2:0x8051CCF8; // type:object size:0x4 scope:local align:4 data:float +@5131 = .sdata2:0x8051CCFC; // type:object size:0x4 scope:local align:4 data:float +@5132 = .sdata2:0x8051CD00; // type:object size:0x4 scope:local align:4 data:float +@5133 = .sdata2:0x8051CD04; // type:object size:0x4 scope:local align:4 data:float +@5134 = .sdata2:0x8051CD08; // type:object size:0x4 scope:local align:4 data:float +@5135 = .sdata2:0x8051CD0C; // type:object size:0x4 scope:local align:4 data:float +@5171 = .sdata2:0x8051CD10; // type:object size:0x4 scope:local align:4 data:float +@5232 = .sdata2:0x8051CD14; // type:object size:0x4 scope:local align:4 data:float +@5233 = .sdata2:0x8051CD18; // type:object size:0x4 scope:local align:4 data:float +@5234 = .sdata2:0x8051CD1C; // type:object size:0x4 scope:local align:4 data:float +@5235 = .sdata2:0x8051CD20; // type:object size:0x4 scope:local align:4 data:float +@5374 = .sdata2:0x8051CD24; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata2:0x8051CD28; // type:object size:0x4 scope:local align:4 data:float +@5376 = .sdata2:0x8051CD2C; // type:object size:0x4 scope:local align:4 data:float +@5377 = .sdata2:0x8051CD30; // type:object size:0x4 scope:local align:4 data:float +@5378 = .sdata2:0x8051CD34; // type:object size:0x4 scope:local align:4 data:float +@5379 = .sdata2:0x8051CD38; // type:object size:0x4 scope:local align:4 data:float +@5380 = .sdata2:0x8051CD3C; // type:object size:0x4 scope:local align:4 data:float +@5381 = .sdata2:0x8051CD40; // type:object size:0x4 scope:local align:4 data:float +@5382 = .sdata2:0x8051CD44; // type:object size:0x4 scope:local align:4 data:float +@5631 = .sdata2:0x8051CD48; // type:object size:0x4 scope:local align:4 data:float +@6294 = .sdata2:0x8051CD4C; // type:object size:0x4 scope:local align:4 data:float +@6666 = .sdata2:0x8051CD50; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051CD58; // type:object size:0x5 scope:local align:4 data:string +@3950 = .sdata2:0x8051CD60; // type:object size:0x5 scope:local align:4 data:string +@3951 = .sdata2:0x8051CD68; // type:object size:0x5 scope:local align:4 data:string +@3952 = .sdata2:0x8051CD70; // type:object size:0x5 scope:local align:4 data:string +@3953 = .sdata2:0x8051CD78; // type:object size:0x6 scope:local align:4 data:string +@3954 = .sdata2:0x8051CD80; // type:object size:0x7 scope:local align:4 data:string +@3955 = .sdata2:0x8051CD88; // type:object size:0x8 scope:local align:4 data:string +@3957 = .sdata2:0x8051CD90; // type:object size:0x8 scope:local align:4 data:string +@3958 = .sdata2:0x8051CD98; // type:object size:0x8 scope:local align:4 data:string +@3959 = .sdata2:0x8051CDA0; // type:object size:0x8 scope:local align:4 data:string +@3974 = .sdata2:0x8051CDA8; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x8051CDAC; // type:object size:0x4 scope:local align:4 data:float +@4185 = .sdata2:0x8051CDB0; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051CDB4; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x8051CDB8; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x8051CDBC; // type:object size:0x4 scope:local align:4 data:float +@4353 = .sdata2:0x8051CDC0; // type:object size:0x4 scope:local align:4 data:float +@4425 = .sdata2:0x8051CDC4; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051CDC8; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051CDCC; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051CDD0; // type:object size:0x7 scope:local align:4 data:string +@3936 = .sdata2:0x8051CDD8; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051CDDC; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051CDE0; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051CDE4; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051CDE8; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051CDEC; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051CDF0; // type:object size:0x7 scope:local align:4 data:string +@3979 = .sdata2:0x8051CDF8; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051CDFC; // type:object size:0x5 scope:local align:4 data:string +@3981 = .sdata2:0x8051CE04; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x8051CE08; // type:object size:0x7 scope:local align:4 data:string +@3983 = .sdata2:0x8051CE10; // type:object size:0x5 scope:local align:4 data:string +@4029 = .sdata2:0x8051CE18; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051CE1C; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x8051CE20; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x8051CE24; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x8051CE28; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x8051CE30; // type:object size:0x8 scope:local align:8 data:double +@4171 = .sdata2:0x8051CE38; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051CE3C; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051CE40; // type:object size:0x4 scope:local align:4 data:float +@4209 = .sdata2:0x8051CE44; // type:object size:0x6 scope:local align:4 data:string +@4242 = .sdata2:0x8051CE4C; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x8051CE50; // type:object size:0x5 scope:local align:4 data:string +@4278 = .sdata2:0x8051CE58; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051CE60; // type:object size:0x5 scope:local align:4 data:string +@3612 = .sdata2:0x8051CE68; // type:object size:0x6 scope:local align:4 data:string +@3613 = .sdata2:0x8051CE70; // type:object size:0x5 scope:local align:4 data:string +@3614 = .sdata2:0x8051CE78; // type:object size:0x7 scope:local align:4 data:string +@3615 = .sdata2:0x8051CE80; // type:object size:0x6 scope:local align:4 data:string +@3616 = .sdata2:0x8051CE88; // type:object size:0x5 scope:local align:4 data:string +@3624 = .sdata2:0x8051CE90; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051CE94; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051CE98; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051CE9C; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x8051CEA0; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x8051CEA4; // type:object size:0x4 scope:local align:4 data:float +@4306 = .sdata2:0x8051CEA8; // type:object size:0x4 scope:local align:4 data:float +@3361 = .sdata2:0x8051CEB0; // type:object size:0x4 scope:local align:4 data:float +@3362 = .sdata2:0x8051CEB4; // type:object size:0x4 scope:local align:4 data:float +@3363 = .sdata2:0x8051CEB8; // type:object size:0x4 scope:local align:4 data:float +@3653 = .sdata2:0x8051CEC0; // type:object size:0x4 scope:local align:4 data:string +@3654 = .sdata2:0x8051CEC4; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata2:0x8051CEC8; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x8051CECC; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051CED0; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x8051CED4; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051CED8; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051CEDC; // type:object size:0x5 scope:local align:4 data:string +@3688 = .sdata2:0x8051CEE4; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051CEE8; // type:object size:0x5 scope:local align:4 data:string +@3694 = .sdata2:0x8051CEF0; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata2:0x8051CEF4; // type:object size:0x5 scope:local align:4 data:string +@3710 = .sdata2:0x8051CEFC; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata2:0x8051CF00; // type:object size:0x8 scope:local align:8 data:double +@3974 = .sdata2:0x8051CF08; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x8051CF10; // type:object size:0x5 scope:local align:4 data:string +@3789 = .sdata2:0x8051CF18; // type:object size:0x8 scope:local align:4 data:string +@3790 = .sdata2:0x8051CF20; // type:object size:0x5 scope:local align:4 data:string +@3791 = .sdata2:0x8051CF28; // type:object size:0x7 scope:local align:4 data:string +@3792 = .sdata2:0x8051CF30; // type:object size:0x6 scope:local align:4 data:string +@3793 = .sdata2:0x8051CF38; // type:object size:0x5 scope:local align:4 data:string +@3796 = .sdata2:0x8051CF40; // type:object size:0x5 scope:local align:4 data:string +@3805 = .sdata2:0x8051CF48; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051CF4C; // type:object size:0x4 scope:local align:4 data:float +@3830 = .sdata2:0x8051CF50; // type:object size:0x4 scope:local align:4 data:float +@4009 = .sdata2:0x8051CF54; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051CF58; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051CF5C; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051CF60; // type:object size:0x4 scope:local align:4 data:float +@4453 = .sdata2:0x8051CF64; // type:object size:0x4 scope:local align:4 data:float +@4665 = .sdata2:0x8051CF68; // type:object size:0x4 scope:local align:4 data:float +@5557 = .sdata2:0x8051CF6C; // type:object size:0x4 scope:local align:4 data:float +@5987 = .sdata2:0x8051CF70; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051CF78; // type:object size:0x8 scope:local align:4 data:4byte +@3563 = .sdata2:0x8051CF80; // type:object size:0x8 scope:local align:4 data:4byte +@3911 = .sdata2:0x8051CF88; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051CF8C; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051CF90; // type:object size:0x5 scope:local align:4 data:string +@3970 = .sdata2:0x8051CF98; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051CF9C; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051CFA0; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051CFA4; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051CFA8; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051CFAC; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051CFB0; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051CFB4; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051CFB8; // type:object size:0x6 scope:local align:4 data:string +@4026 = .sdata2:0x8051CFC0; // type:object size:0x6 scope:local align:4 data:string +@4114 = .sdata2:0x8051CFC8; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051CFCC; // type:object size:0x4 scope:local align:4 data:float +@4232 = .sdata2:0x8051CFD0; // type:object size:0x4 scope:local align:4 data:float +@4234 = .sdata2:0x8051CFD8; // type:object size:0x8 scope:local align:8 data:double +@4329 = .sdata2:0x8051CFE0; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x8051CFE4; // type:object size:0x4 scope:local align:4 data:float +@4458 = .sdata2:0x8051CFE8; // type:object size:0x4 scope:local align:4 data:float +@4459 = .sdata2:0x8051CFEC; // type:object size:0x4 scope:local align:4 data:float +@4460 = .sdata2:0x8051CFF0; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051CFF4; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051CFF8; // type:object size:0x5 scope:local align:4 data:string +@4610 = .sdata2:0x8051D000; // type:object size:0x5 scope:local align:4 data:string +@4624 = .sdata2:0x8051D008; // type:object size:0x8 scope:local align:4 data:string +@4625 = .sdata2:0x8051D010; // type:object size:0x8 scope:local align:4 data:string +@4725 = .sdata2:0x8051D018; // type:object size:0x4 scope:local align:4 data:float +@4064 = .sdata2:0x8051D020; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051D024; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x8051D028; // type:object size:0x4 scope:local align:4 data:float +@4566 = .sdata2:0x8051D02C; // type:object size:0x4 scope:local align:4 data:float +@4567 = .sdata2:0x8051D030; // type:object size:0x4 scope:local align:4 data:float +@4568 = .sdata2:0x8051D034; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051D038; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata2:0x8051D03C; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata2:0x8051D040; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata2:0x8051D044; // type:object size:0x4 scope:local align:4 data:float +@4573 = .sdata2:0x8051D048; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x8051D04C; // type:object size:0x4 scope:local align:4 data:float +@4680 = .sdata2:0x8051D050; // type:object size:0x5 scope:local align:4 data:string +@4899 = .sdata2:0x8051D058; // type:object size:0x4 scope:local align:4 data:float +@4900 = .sdata2:0x8051D05C; // type:object size:0x4 scope:local align:4 data:float +@4901 = .sdata2:0x8051D060; // type:object size:0x4 scope:local align:4 data:float +@4903 = .sdata2:0x8051D068; // type:object size:0x8 scope:local align:8 data:double +@5050 = .sdata2:0x8051D070; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata2:0x8051D074; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata2:0x8051D078; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata2:0x8051D07C; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata2:0x8051D080; // type:object size:0x4 scope:local align:4 data:float +@5055 = .sdata2:0x8051D084; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x8051D088; // type:object size:0x4 scope:local align:4 data:float +@5096 = .sdata2:0x8051D08C; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051D090; // type:object size:0x5 scope:local align:4 data:string +@3636 = .sdata2:0x8051D098; // type:object size:0x6 scope:local align:4 data:string +@3637 = .sdata2:0x8051D0A0; // type:object size:0x5 scope:local align:4 data:string +@3638 = .sdata2:0x8051D0A8; // type:object size:0x7 scope:local align:4 data:string +@3640 = .sdata2:0x8051D0B0; // type:object size:0x5 scope:local align:4 data:string +@3643 = .sdata2:0x8051D0B8; // type:object size:0x6 scope:local align:4 data:string +@3653 = .sdata2:0x8051D0C0; // type:object size:0x4 scope:local align:4 data:float +@3671 = .sdata2:0x8051D0C4; // type:object size:0x4 scope:local align:4 data:float +@3672 = .sdata2:0x8051D0C8; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051D0CC; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051D0D0; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051D0D4; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051D0D8; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051D0DC; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051D0E0; // type:object size:0x8 scope:local align:8 data:double +@4104 = .sdata2:0x8051D0E8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051D0EC; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051D0F0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051D0F4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051D0F8; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051D0FC; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051D100; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051D104; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051D108; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051D10C; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051D110; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051D114; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051D118; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051D11C; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x8051D120; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051D124; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051D128; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051D12C; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051D130; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051D134; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051D138; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x8051D13C; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051D140; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x8051D144; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051D148; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051D14C; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051D150; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051D154; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051D158; // type:object size:0x8 scope:local align:8 data:double +@4229 = .sdata2:0x8051D160; // type:object size:0x4 scope:local align:4 data:float +@4230 = .sdata2:0x8051D164; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata2:0x8051D168; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x8051D16C; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x8051D170; // type:object size:0x4 scope:local align:4 data:float +@3475 = .sdata2:0x8051D174; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x8051D178; // type:object size:0x4 scope:local align:4 data:float +@3477 = .sdata2:0x8051D17C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051D180; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051D184; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051D188; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051D18C; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051D190; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051D194; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051D198; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051D19C; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051D1A0; // type:object size:0x5 scope:local align:4 data:string +@4020 = .sdata2:0x8051D1A8; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051D1AC; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x8051D1B0; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051D1B4; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x8051D1B8; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051D1BC; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x8051D1C0; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x8051D1C4; // type:object size:0x6 scope:local align:4 data:string +@4038 = .sdata2:0x8051D1CC; // type:object size:0x6 scope:local align:4 data:string +@4039 = .sdata2:0x8051D1D4; // type:object size:0x6 scope:local align:4 data:string +@4040 = .sdata2:0x8051D1DC; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051D1E0; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x8051D1E4; // type:object size:0x6 scope:local align:4 data:string +@4212 = .sdata2:0x8051D1EC; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051D1F0; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051D1F4; // type:object size:0x4 scope:local align:4 data:float +@4235 = .sdata2:0x8051D1F8; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051D200; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051D204; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051D208; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051D20C; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051D210; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x8051D214; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051D218; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x8051D21C; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051D220; // type:object size:0x4 scope:local align:4 data:float +@4028 = .sdata2:0x8051D224; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x8051D228; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051D22C; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x8051D230; // type:object size:0x8 scope:local align:8 data:double +@4072 = .sdata2:0x8051D238; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x8051D23C; // type:object size:0x4 scope:local align:4 data:float +@4074 = .sdata2:0x8051D240; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051D244; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051D248; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051D24C; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051D250; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051D254; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051D258; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051D25C; // type:object size:0x4 scope:local align:4 data:float +@4350 = .sdata2:0x8051D260; // type:object size:0x4 scope:local align:4 data:float +@4703 = .sdata2:0x8051D264; // type:object size:0x4 scope:local align:4 data:float +@4705 = .sdata2:0x8051D268; // type:object size:0x4 scope:local align:4 data:float +@4999 = .sdata2:0x8051D26C; // type:object size:0x4 scope:local align:4 data:float +@5000 = .sdata2:0x8051D270; // type:object size:0x4 scope:local align:4 data:float +@5001 = .sdata2:0x8051D274; // type:object size:0x4 scope:local align:4 data:float +@5002 = .sdata2:0x8051D278; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x8051D27C; // type:object size:0x4 scope:local align:4 data:float +@5004 = .sdata2:0x8051D280; // type:object size:0x4 scope:local align:4 data:float +@5005 = .sdata2:0x8051D284; // type:object size:0x4 scope:local align:4 data:float +@5006 = .sdata2:0x8051D288; // type:object size:0x4 scope:local align:4 data:float +@5007 = .sdata2:0x8051D28C; // type:object size:0x4 scope:local align:4 data:float +@5008 = .sdata2:0x8051D290; // type:object size:0x4 scope:local align:4 data:float +@5207 = .sdata2:0x8051D294; // type:object size:0x4 scope:local align:4 data:float +@5329 = .sdata2:0x8051D298; // type:object size:0x4 scope:local align:4 data:float +@5366 = .sdata2:0x8051D29C; // type:object size:0x4 scope:local align:4 data:4byte +@5643 = .sdata2:0x8051D2A0; // type:object size:0x4 scope:local align:4 data:float +@5644 = .sdata2:0x8051D2A4; // type:object size:0x4 scope:local align:4 data:float +@5645 = .sdata2:0x8051D2A8; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata2:0x8051D2AC; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x8051D2B0; // type:object size:0x4 scope:local align:4 data:float +@6033 = .sdata2:0x8051D2B4; // type:object size:0x4 scope:local align:4 data:float +@6220 = .sdata2:0x8051D2B8; // type:object size:0x4 scope:local align:4 data:float +@6235 = .sdata2:0x8051D2BC; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051D2C0; // type:object size:0x4 scope:local align:4 data:float +@3626 = .sdata2:0x8051D2C4; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051D2C8; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x8051D2CC; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051D2D0; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051D2D4; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051D2D8; // type:object size:0x4 scope:local align:4 data:float +@3626 = .sdata2:0x8051D2DC; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051D2E0; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x8051D2E4; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051D2E8; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051D2EC; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051D2F0; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051D2F4; // type:object size:0x4 scope:local align:4 data:float +@3770 = .sdata2:0x8051D2F8; // type:object size:0x5 scope:local align:4 data:string +@3771 = .sdata2:0x8051D300; // type:object size:0x5 scope:local align:4 data:string +@3772 = .sdata2:0x8051D308; // type:object size:0x7 scope:local align:4 data:string +@3773 = .sdata2:0x8051D310; // type:object size:0x5 scope:local align:4 data:string +@3774 = .sdata2:0x8051D318; // type:object size:0x5 scope:local align:4 data:string +@3775 = .sdata2:0x8051D320; // type:object size:0x7 scope:local align:4 data:string +@3776 = .sdata2:0x8051D328; // type:object size:0x5 scope:local align:4 data:string +@3777 = .sdata2:0x8051D330; // type:object size:0x8 scope:local align:4 data:string +@3778 = .sdata2:0x8051D338; // type:object size:0x6 scope:local align:4 data:string +@3789 = .sdata2:0x8051D340; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051D344; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x8051D348; // type:object size:0x4 scope:local align:4 data:float +@4006 = .sdata2:0x8051D34C; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051D350; // type:object size:0x6 scope:local align:4 data:string +@4120 = .sdata2:0x8051D358; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051D35C; // type:object size:0x4 scope:local align:4 data:float +@4423 = .sdata2:0x8051D360; // type:object size:0x4 scope:local align:4 data:float +@4505 = .sdata2:0x8051D364; // type:object size:0x4 scope:local align:4 data:float +@4608 = .sdata2:0x8051D368; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051D36C; // type:object size:0x4 scope:local align:4 data:float +@4696 = .sdata2:0x8051D370; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051D378; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051D37C; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051D380; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051D384; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051D388; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051D38C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051D390; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051D394; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051D398; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051D39C; // type:object size:0x5 scope:local align:4 data:string +@3948 = .sdata2:0x8051D3A8; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051D3AC; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x8051D3B0; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051D3B4; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x8051D3B8; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051D3BC; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x8051D3C0; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata2:0x8051D3C4; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051D3C8; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051D3CC; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x8051D3D0; // type:object size:0x7 scope:local align:4 data:string +@4189 = .sdata2:0x8051D3D8; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051D3DC; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata2:0x8051D3E0; // type:object size:0x4 scope:local align:4 data:float +@4253 = .sdata2:0x8051D3E4; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata2:0x8051D3E8; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata2:0x8051D3EC; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x8051D3F0; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata2:0x8051D3F8; // type:object size:0x8 scope:local align:8 data:double +@4279 = .sdata2:0x8051D400; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x8051D404; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051D408; // type:object size:0x4 scope:local align:4 data:float +@4423 = .sdata2:0x8051D40C; // type:object size:0x4 scope:local align:4 data:float +@4424 = .sdata2:0x8051D410; // type:object size:0x4 scope:local align:4 data:float +@4429 = .sdata2:0x8051D414; // type:object size:0x8 scope:local align:4 data:4byte +@4430 = .sdata2:0x8051D41C; // type:object size:0x8 scope:local align:4 data:4byte +@4511 = .sdata2:0x8051D424; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x8051D428; // type:object size:0x4 scope:local align:4 data:float +@4513 = .sdata2:0x8051D42C; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x8051D430; // type:object size:0x4 scope:local align:4 data:float +@4515 = .sdata2:0x8051D434; // type:object size:0x4 scope:local align:4 data:float +@4516 = .sdata2:0x8051D438; // type:object size:0x4 scope:local align:4 data:float +@4517 = .sdata2:0x8051D43C; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x8051D440; // type:object size:0x4 scope:local align:4 data:float +@4519 = .sdata2:0x8051D444; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x8051D448; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x8051D44C; // type:object size:0x4 scope:local align:4 data:float +@4522 = .sdata2:0x8051D450; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x8051D454; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata2:0x8051D458; // type:object size:0x8 scope:local align:4 data:4byte +@4717 = .sdata2:0x8051D460; // type:object size:0x4 scope:local align:4 data:float +@4813 = .sdata2:0x8051D464; // type:object size:0x4 scope:local align:4 data:float +@4834 = .sdata2:0x8051D468; // type:object size:0x4 scope:local align:4 data:float +@4884 = .sdata2:0x8051D46C; // type:object size:0x4 scope:local align:4 data:float +@4890 = .sdata2:0x8051D470; // type:object size:0x8 scope:local align:4 data:4byte +@4891 = .sdata2:0x8051D478; // type:object size:0x8 scope:local align:4 data:4byte +@4892 = .sdata2:0x8051D480; // type:object size:0x8 scope:local align:4 data:4byte +@5064 = .sdata2:0x8051D488; // type:object size:0x7 scope:local align:4 data:string +@5065 = .sdata2:0x8051D490; // type:object size:0x4 scope:local align:4 data:float +@5066 = .sdata2:0x8051D494; // type:object size:0x4 scope:local align:4 data:float +@5300 = .sdata2:0x8051D498; // type:object size:0x8 scope:local align:4 data:string +@5310 = .sdata2:0x8051D4A0; // type:object size:0x8 scope:local align:4 data:string +@5384 = .sdata2:0x8051D4A8; // type:object size:0x4 scope:local align:4 data:float +@5482 = .sdata2:0x8051D4AC; // type:object size:0x4 scope:local align:4 data:float +@5483 = .sdata2:0x8051D4B0; // type:object size:0x4 scope:local align:4 data:float +@5484 = .sdata2:0x8051D4B4; // type:object size:0x4 scope:local align:4 data:float +@5485 = .sdata2:0x8051D4B8; // type:object size:0x4 scope:local align:4 data:float +@5565 = .sdata2:0x8051D4BC; // type:object size:0x4 scope:local align:4 data:float +@3430 = .sdata2:0x8051D4C0; // type:object size:0x5 scope:local align:4 data:string +@3465 = .sdata2:0x8051D4C8; // type:object size:0x4 scope:local align:4 data:float +@3467 = .sdata2:0x8051D4D0; // type:object size:0x8 scope:local align:8 data:double +@3549 = .sdata2:0x8051D4D8; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051D4DC; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051D4E0; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051D4E4; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051D4E8; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051D4EC; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051D4F0; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051D4F4; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051D4F8; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051D4FC; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051D500; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051D508; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x8051D50C; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata2:0x8051D510; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051D514; // type:object size:0x4 scope:local align:4 data:float +@3534 = .sdata2:0x8051D518; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051D51C; // type:object size:0x4 scope:local align:4 data:float +@3536 = .sdata2:0x8051D520; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x8051D528; // type:object size:0x8 scope:local align:8 data:double +@3874 = .sdata2:0x8051D530; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051D538; // type:object size:0x8 scope:local align:8 data:double +@3876 = .sdata2:0x8051D540; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051D544; // type:object size:0x4 scope:local align:4 data:float +@4082 = .sdata2:0x8051D548; // type:object size:0x8 scope:local align:8 data:double +@4084 = .sdata2:0x8051D550; // type:object size:0x8 scope:local align:8 data:double +@4258 = .sdata2:0x8051D558; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051D560; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051D564; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x8051D568; // type:object size:0x4 scope:local align:4 data:float +@3794 = .sdata2:0x8051D56C; // type:object size:0x4 scope:local align:4 data:float +@3825 = .sdata2:0x8051D570; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8051D574; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x8051D578; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata2:0x8051D580; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata2:0x8051D584; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x8051D588; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051D58C; // type:object size:0x4 scope:local align:4 data:float +@3582 = .sdata2:0x8051D590; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x8051D594; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata2:0x8051D598; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata2:0x8051D59C; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata2:0x8051D5A0; // type:object size:0x4 scope:local align:4 data:float +@3534 = .sdata2:0x8051D5A8; // type:object size:0x8 scope:local align:8 data:double +@3631 = .sdata2:0x8051D5B0; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051D5B4; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051D5B8; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051D5BC; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051D5C0; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051D5C4; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051D5C8; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051D5CC; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051D5D0; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata2:0x8051D5D4; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051D5D8; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051D5DC; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051D5E0; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051D5E4; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051D5E8; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051D5F0; // type:object size:0x4 scope:local align:4 data:float +@3670 = .sdata2:0x8051D5F4; // type:object size:0x4 scope:local align:4 data:float +@3671 = .sdata2:0x8051D5F8; // type:object size:0x4 scope:local align:4 data:float +@3672 = .sdata2:0x8051D5FC; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x8051D600; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata2:0x8051D604; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x8051D608; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x8051D60C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051D610; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051D614; // type:object size:0x4 scope:local align:4 data:float +@3679 = .sdata2:0x8051D618; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051D61C; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051D620; // type:object size:0x4 scope:local align:4 data:float +@3692 = .sdata2:0x8051D624; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051D628; // type:object size:0x4 scope:local align:4 data:float +@3534 = .sdata2:0x8051D62C; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051D630; // type:object size:0x4 scope:local align:4 data:float +@3536 = .sdata2:0x8051D634; // type:object size:0x4 scope:local align:4 data:float +@3537 = .sdata2:0x8051D638; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata2:0x8051D640; // type:object size:0x1 scope:local align:4 +@3637 = .sdata2:0x8051D644; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051D648; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051D64C; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051D650; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051D654; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051D658; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051D65C; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x8051D660; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051D664; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051D668; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051D66C; // type:object size:0x4 scope:local align:4 data:float +@3494 = .sdata2:0x8051D670; // type:object size:0x4 scope:local align:4 data:float +@3495 = .sdata2:0x8051D674; // type:object size:0x4 scope:local align:4 data:float +@3538 = .sdata2:0x8051D678; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051D67C; // type:object size:0x1 scope:local align:4 +@3642 = .sdata2:0x8051D680; // type:object size:0x4 scope:local align:4 data:float +@3643 = .sdata2:0x8051D684; // type:object size:0x4 scope:local align:4 data:float +@3820 = .sdata2:0x8051D688; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051D68C; // type:object size:0x4 scope:local align:4 data:float +@3822 = .sdata2:0x8051D690; // type:object size:0x4 scope:local align:4 data:float +@3492 = .sdata2:0x8051D698; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x8051D69C; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051D6A0; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata2:0x8051D6A4; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051D6A8; // type:object size:0x8 scope:local align:8 data:double +@3867 = .sdata2:0x8051D6B0; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051D6B8; // type:object size:0x8 scope:local align:8 data:double +@3918 = .sdata2:0x8051D6C0; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051D6C4; // type:object size:0x4 scope:local align:4 data:float +@4034 = .sdata2:0x8051D6C8; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051D6CC; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051D6D0; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x8051D6D8; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x8051D6DC; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051D6E0; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051D6E8; // type:object size:0x8 scope:local align:8 data:double +@3666 = .sdata2:0x8051D6F0; // type:object size:0x4 scope:local align:4 data:float +@3747 = .sdata2:0x8051D6F4; // type:object size:0x4 scope:local align:4 data:float +@3748 = .sdata2:0x8051D6F8; // type:object size:0x4 scope:local align:4 data:float +@3749 = .sdata2:0x8051D6FC; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x8051D700; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8051D704; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x8051D708; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x8051D70C; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051D710; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051D718; // type:object size:0x8 scope:local align:8 data:double +@3927 = .sdata2:0x8051D720; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051D724; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051D728; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051D72C; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051D730; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051D734; // type:object size:0x4 scope:local align:4 data:float +@3585 = .sdata2:0x8051D738; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051D73C; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051D740; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051D744; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051D748; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051D74C; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051D750; // type:object size:0x4 scope:local align:4 data:float +@3954 = .sdata2:0x8051D754; // type:object size:0x4 scope:local align:4 data:float +@3955 = .sdata2:0x8051D758; // type:object size:0x4 scope:local align:4 data:float +@3956 = .sdata2:0x8051D75C; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051D760; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x8051D764; // type:object size:0x4 scope:local align:4 data:float +@3959 = .sdata2:0x8051D768; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x8051D770; // type:object size:0x8 scope:local align:8 data:double +@4380 = .sdata2:0x8051D778; // type:object size:0x4 scope:local align:4 data:float +@4381 = .sdata2:0x8051D77C; // type:object size:0x4 scope:local align:4 data:float +@4382 = .sdata2:0x8051D780; // type:object size:0x4 scope:local align:4 data:float +@4383 = .sdata2:0x8051D784; // type:object size:0x1 scope:local align:4 +@4384 = .sdata2:0x8051D788; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata2:0x8051D78C; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata2:0x8051D790; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata2:0x8051D794; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata2:0x8051D798; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata2:0x8051D79C; // type:object size:0x4 scope:local align:4 data:float +@4505 = .sdata2:0x8051D7A0; // type:object size:0x4 scope:local align:4 data:float +@4506 = .sdata2:0x8051D7A4; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x8051D7A8; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x8051D7AC; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051D7B0; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051D7B8; // type:object size:0x8 scope:local align:8 data:double +@4570 = .sdata2:0x8051D7C0; // type:object size:0x8 scope:local align:8 data:double +@4786 = .sdata2:0x8051D7C8; // type:object size:0x4 scope:local align:4 data:float +@4787 = .sdata2:0x8051D7CC; // type:object size:0x4 scope:local align:4 data:float +@4788 = .sdata2:0x8051D7D0; // type:object size:0x4 scope:local align:4 data:float +@4900 = .sdata2:0x8051D7D4; // type:object size:0x4 scope:local align:4 data:float +@4901 = .sdata2:0x8051D7D8; // type:object size:0x4 scope:local align:4 data:float +@4902 = .sdata2:0x8051D7DC; // type:object size:0x4 scope:local align:4 data:float +@4903 = .sdata2:0x8051D7E0; // type:object size:0x4 scope:local align:4 data:float +@5066 = .sdata2:0x8051D7E4; // type:object size:0x4 scope:local align:4 data:float +@5067 = .sdata2:0x8051D7E8; // type:object size:0x4 scope:local align:4 data:float +@5068 = .sdata2:0x8051D7EC; // type:object size:0x4 scope:local align:4 data:float +@5069 = .sdata2:0x8051D7F0; // type:object size:0x4 scope:local align:4 data:float +@5191 = .sdata2:0x8051D7F8; // type:object size:0x8 scope:local align:8 data:double +@5214 = .sdata2:0x8051D800; // type:object size:0x4 scope:local align:4 data:float +@5300 = .sdata2:0x8051D804; // type:object size:0x4 scope:local align:4 data:float +@5301 = .sdata2:0x8051D808; // type:object size:0x4 scope:local align:4 data:float +@5302 = .sdata2:0x8051D80C; // type:object size:0x4 scope:local align:4 data:float +@5303 = .sdata2:0x8051D810; // type:object size:0x4 scope:local align:4 data:float +@5304 = .sdata2:0x8051D814; // type:object size:0x4 scope:local align:4 data:float +@5305 = .sdata2:0x8051D818; // type:object size:0x4 scope:local align:4 data:float +@5306 = .sdata2:0x8051D81C; // type:object size:0x4 scope:local align:4 data:float +@5307 = .sdata2:0x8051D820; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051D828; // type:object size:0x3 scope:local align:4 data:string +@3774 = .sdata2:0x8051D830; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x8051D834; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x8051D838; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051D83C; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051D840; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051D844; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051D848; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051D84C; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051D850; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051D858; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051D85C; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x8051D860; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051D864; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x8051D868; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051D86C; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051D870; // type:object size:0x4 scope:local align:4 data:float +@4357 = .sdata2:0x8051D874; // type:object size:0x4 scope:local align:4 data:float +@4455 = .sdata2:0x8051D878; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051D880; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051D884; // type:object size:0x4 scope:local align:4 data:float +@3643 = .sdata2:0x8051D888; // type:object size:0x4 scope:local align:4 data:float +@3644 = .sdata2:0x8051D88C; // type:object size:0x4 scope:local align:4 data:float +@3645 = .sdata2:0x8051D890; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051D894; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x8051D898; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051D89C; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x8051D8A0; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051D8A4; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x8051D8A8; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x8051D8AC; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051D8B0; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051D8B4; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051D8B8; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051D8C0; // type:object size:0x8 scope:local align:8 data:double +@4067 = .sdata2:0x8051D8C8; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051D8D0; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051D8D4; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051D8D8; // type:object size:0x4 scope:local align:4 data:float +@3789 = .sdata2:0x8051D8E0; // type:object size:0x8 scope:local align:8 data:double +@3913 = .sdata2:0x8051D8E8; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051D8EC; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051D8F0; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x8051D8F8; // type:object size:0x5 scope:local align:4 data:string +@3103 = .sdata2:0x8051D900; // type:object size:0x5 scope:local align:4 data:string +@3104 = .sdata2:0x8051D908; // type:object size:0x5 scope:local align:4 data:string +@3105 = .sdata2:0x8051D910; // type:object size:0x5 scope:local align:4 data:string +@3106 = .sdata2:0x8051D918; // type:object size:0x5 scope:local align:4 data:string +@3107 = .sdata2:0x8051D920; // type:object size:0x5 scope:local align:4 data:string +@3108 = .sdata2:0x8051D928; // type:object size:0x1 scope:local align:4 +@3109 = .sdata2:0x8051D92C; // type:object size:0x3 scope:local align:4 data:string +@2745 = .sdata2:0x8051D930; // type:object size:0x1 scope:local align:4 +@3667 = .sdata2:0x8051D938; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x8051D93C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051D940; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051D944; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051D948; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x8051D94C; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051D950; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051D954; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051D958; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051D95C; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051D960; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051D964; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051D968; // type:object size:0x4 scope:local align:4 data:float +@4215 = .sdata2:0x8051D96C; // type:object size:0x4 scope:local align:4 data:float +@4216 = .sdata2:0x8051D970; // type:object size:0x4 scope:local align:4 data:float +@4217 = .sdata2:0x8051D974; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051D978; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x8051D97C; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051D980; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x8051D984; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051D988; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051D98C; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051D990; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x8051D998; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051D99C; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x8051D9A0; // type:object size:0x1 scope:local align:4 +@3808 = .sdata2:0x8051D9A4; // type:object size:0x8 scope:local align:4 data:string +@3809 = .sdata2:0x8051D9AC; // type:object size:0x8 scope:local align:4 data:string +@3810 = .sdata2:0x8051D9B4; // type:object size:0x8 scope:local align:4 data:string +@3811 = .sdata2:0x8051D9BC; // type:object size:0x8 scope:local align:4 data:string +@3812 = .sdata2:0x8051D9C4; // type:object size:0x8 scope:local align:4 data:string +@3813 = .sdata2:0x8051D9CC; // type:object size:0x8 scope:local align:4 data:string +@3814 = .sdata2:0x8051D9D4; // type:object size:0x8 scope:local align:4 data:string +@3815 = .sdata2:0x8051D9DC; // type:object size:0x8 scope:local align:4 data:string +@3816 = .sdata2:0x8051D9E4; // type:object size:0x8 scope:local align:4 data:string +@3817 = .sdata2:0x8051D9EC; // type:object size:0x8 scope:local align:4 data:string +@3818 = .sdata2:0x8051D9F4; // type:object size:0x8 scope:local align:4 data:string +@3819 = .sdata2:0x8051D9FC; // type:object size:0x8 scope:local align:4 data:string +@3820 = .sdata2:0x8051DA04; // type:object size:0x8 scope:local align:4 data:string +@3821 = .sdata2:0x8051DA0C; // type:object size:0x8 scope:local align:4 data:string +@3822 = .sdata2:0x8051DA14; // type:object size:0x8 scope:local align:4 data:string +@3823 = .sdata2:0x8051DA1C; // type:object size:0x8 scope:local align:4 data:string +@3824 = .sdata2:0x8051DA24; // type:object size:0x8 scope:local align:4 data:string +@3825 = .sdata2:0x8051DA2C; // type:object size:0x8 scope:local align:4 data:string +@3826 = .sdata2:0x8051DA34; // type:object size:0x8 scope:local align:4 data:string +@3827 = .sdata2:0x8051DA3C; // type:object size:0x8 scope:local align:4 data:string +@3828 = .sdata2:0x8051DA44; // type:object size:0x8 scope:local align:4 data:string +@3829 = .sdata2:0x8051DA4C; // type:object size:0x8 scope:local align:4 data:string +@3830 = .sdata2:0x8051DA54; // type:object size:0x8 scope:local align:4 data:string +@3831 = .sdata2:0x8051DA5C; // type:object size:0x8 scope:local align:4 data:string +@3832 = .sdata2:0x8051DA64; // type:object size:0x8 scope:local align:4 data:string +@3833 = .sdata2:0x8051DA6C; // type:object size:0x8 scope:local align:4 data:string +@3834 = .sdata2:0x8051DA74; // type:object size:0x8 scope:local align:4 data:string +@3835 = .sdata2:0x8051DA7C; // type:object size:0x8 scope:local align:4 data:string +@3836 = .sdata2:0x8051DA84; // type:object size:0x8 scope:local align:4 data:string +@3837 = .sdata2:0x8051DA8C; // type:object size:0x8 scope:local align:4 data:string +@3838 = .sdata2:0x8051DA94; // type:object size:0x8 scope:local align:4 data:string +@3839 = .sdata2:0x8051DA9C; // type:object size:0x8 scope:local align:4 data:string +@3840 = .sdata2:0x8051DAA4; // type:object size:0x8 scope:local align:4 data:string +@3841 = .sdata2:0x8051DAAC; // type:object size:0x8 scope:local align:4 data:string +@3842 = .sdata2:0x8051DAB4; // type:object size:0x8 scope:local align:4 data:string +@3843 = .sdata2:0x8051DABC; // type:object size:0x8 scope:local align:4 data:string +@3844 = .sdata2:0x8051DAC4; // type:object size:0x8 scope:local align:4 data:string +@3845 = .sdata2:0x8051DACC; // type:object size:0x8 scope:local align:4 data:string +@3846 = .sdata2:0x8051DAD4; // type:object size:0x8 scope:local align:4 data:string +@3847 = .sdata2:0x8051DADC; // type:object size:0x8 scope:local align:4 data:string +@3848 = .sdata2:0x8051DAE4; // type:object size:0x8 scope:local align:4 data:string +@3849 = .sdata2:0x8051DAEC; // type:object size:0x8 scope:local align:4 data:string +@3850 = .sdata2:0x8051DAF4; // type:object size:0x8 scope:local align:4 data:string +@3851 = .sdata2:0x8051DAFC; // type:object size:0x8 scope:local align:4 data:string +@3852 = .sdata2:0x8051DB04; // type:object size:0x8 scope:local align:4 data:string +@3853 = .sdata2:0x8051DB0C; // type:object size:0x8 scope:local align:4 data:string +@3854 = .sdata2:0x8051DB14; // type:object size:0x8 scope:local align:4 data:string +@3855 = .sdata2:0x8051DB1C; // type:object size:0x8 scope:local align:4 data:string +@3856 = .sdata2:0x8051DB24; // type:object size:0x8 scope:local align:4 data:string +@3857 = .sdata2:0x8051DB2C; // type:object size:0x8 scope:local align:4 data:string +@3858 = .sdata2:0x8051DB34; // type:object size:0x8 scope:local align:4 data:string +@3859 = .sdata2:0x8051DB3C; // type:object size:0x8 scope:local align:4 data:string +@3860 = .sdata2:0x8051DB44; // type:object size:0x8 scope:local align:4 data:string +@3861 = .sdata2:0x8051DB4C; // type:object size:0x8 scope:local align:4 data:string +@3862 = .sdata2:0x8051DB54; // type:object size:0x8 scope:local align:4 data:string +@3863 = .sdata2:0x8051DB5C; // type:object size:0x3 scope:local align:4 data:string +@4064 = .sdata2:0x8051DB60; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051DB64; // type:object size:0x4 scope:local align:4 data:float +@4068 = .sdata2:0x8051DB68; // type:object size:0x8 scope:local align:4 data:string +@4070 = .sdata2:0x8051DB70; // type:object size:0x8 scope:local align:8 data:double +@4249 = .sdata2:0x8051DB78; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata2:0x8051DB7C; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051DB80; // type:object size:0x8 scope:local align:8 data:double +@4401 = .sdata2:0x8051DB88; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051DB8C; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051DB90; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051DB94; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051DB98; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051DB9C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051DBA0; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051DBA4; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051DBA8; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051DBAC; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051DBB0; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x8051DBB4; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x8051DBB8; // type:object size:0x1 scope:local align:4 +@3659 = .sdata2:0x8051DBC0; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051DBC4; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051DBC8; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x8051DBCC; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051DBD0; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051DBD4; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051DBD8; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051DBDC; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051DBE0; // type:object size:0x8 scope:local align:8 data:double +@3974 = .sdata2:0x8051DBE8; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051DBEC; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051DBF0; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051DBF4; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051DBF8; // type:object size:0x4 scope:local align:4 data:float +@3979 = .sdata2:0x8051DBFC; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051DC00; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051DC04; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x8051DC08; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051DC0C; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051DC10; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051DC14; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051DC18; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051DC1C; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051DC20; // type:object size:0x4 scope:local align:4 data:float +@4300 = .sdata2:0x8051DC24; // type:object size:0x4 scope:local align:4 data:float +@4301 = .sdata2:0x8051DC28; // type:object size:0x4 scope:local align:4 data:float +@4302 = .sdata2:0x8051DC2C; // type:object size:0x4 scope:local align:4 data:float +@4305 = .sdata2:0x8051DC30; // type:object size:0x8 scope:local align:8 data:double +@4337 = .sdata2:0x8051DC38; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051DC3C; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x8051DC40; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051DC48; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051DC4C; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x8051DC50; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051DC54; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051DC58; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051DC5C; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051DC60; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051DC64; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051DC68; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x8051DC70; // type:object size:0x8 scope:local align:8 data:double +@4000 = .sdata2:0x8051DC78; // type:object size:0x8 scope:local align:8 data:double +@4077 = .sdata2:0x8051DC80; // type:object size:0x4 scope:local align:4 data:float +@4078 = .sdata2:0x8051DC84; // type:object size:0x4 scope:local align:4 data:float +@3645 = .sdata2:0x8051DC88; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051DC8C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051DC90; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051DC94; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051DC98; // type:object size:0x4 scope:local align:4 data:float +@4000 = .sdata2:0x8051DC9C; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x8051DCA0; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051DCA4; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x8051DCA8; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x8051DCAC; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x8051DCB0; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051DCB4; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051DCB8; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051DCBC; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x8051DCC0; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x8051DCC4; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata2:0x8051DCC8; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x8051DCCC; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x8051DCD0; // type:object size:0x4 scope:local align:4 data:float +@4368 = .sdata2:0x8051DCD4; // type:object size:0x4 scope:local align:4 data:float +@4394 = .sdata2:0x8051DCD8; // type:object size:0x4 scope:local align:4 data:float +@4395 = .sdata2:0x8051DCDC; // type:object size:0x4 scope:local align:4 data:float +@4396 = .sdata2:0x8051DCE0; // type:object size:0x4 scope:local align:4 data:float +@4397 = .sdata2:0x8051DCE4; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata2:0x8051DCE8; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata2:0x8051DCEC; // type:object size:0x4 scope:local align:4 data:float +@4400 = .sdata2:0x8051DCF0; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x8051DCF4; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051DCF8; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051DCFC; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051DD00; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051DD04; // type:object size:0x4 scope:local align:4 data:float +@3649 = .sdata2:0x8051DD08; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x8051DD0C; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051DD10; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x8051DD14; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051DD18; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051DD1C; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051DD20; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051DD24; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051DD28; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051DD2C; // type:object size:0x4 scope:local align:4 data:float +@3706 = .sdata2:0x8051DD30; // type:object size:0x8 scope:local align:4 data:string +@3708 = .sdata2:0x8051DD38; // type:object size:0x8 scope:local align:4 data:string +@3709 = .sdata2:0x8051DD40; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051DD44; // type:object size:0x8 scope:local align:4 data:string +@3859 = .sdata2:0x8051DD4C; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051DD50; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051DD54; // type:object size:0x4 scope:local align:4 data:float +@3947 = .sdata2:0x8051DD58; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051DD5C; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051DD60; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051DD64; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051DD68; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051DD6C; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051DD70; // type:object size:0x1 scope:local align:4 +@3639 = .sdata2:0x8051DD78; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata2:0x8051DD7C; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8051DD80; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051DD84; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051DD88; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051DD8C; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x8051DD90; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051DD98; // type:object size:0x4 scope:local align:4 data:float +@3679 = .sdata2:0x8051DD9C; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051DDA0; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x8051DDA4; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x8051DDA8; // type:object size:0x4 scope:local align:4 data:float +@3830 = .sdata2:0x8051DDAC; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051DDB0; // type:object size:0x8 scope:local align:8 data:double +@3901 = .sdata2:0x8051DDB8; // type:object size:0x4 scope:local align:4 data:float +@4530 = .sdata2:0x8051DDBC; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x8051DDC0; // type:object size:0x4 scope:local align:4 data:float +@4532 = .sdata2:0x8051DDC4; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x8051DDC8; // type:object size:0x4 scope:local align:4 data:float +@4534 = .sdata2:0x8051DDCC; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x8051DDD0; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x8051DDD4; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x8051DDD8; // type:object size:0x4 scope:local align:4 data:float +@4615 = .sdata2:0x8051DDDC; // type:object size:0x4 scope:local align:4 data:float +@4616 = .sdata2:0x8051DDE0; // type:object size:0x4 scope:local align:4 data:float +@4617 = .sdata2:0x8051DDE4; // type:object size:0x4 scope:local align:4 data:float +@4648 = .sdata2:0x8051DDE8; // type:object size:0x4 scope:local align:4 data:float +@4650 = .sdata2:0x8051DDF0; // type:object size:0x8 scope:local align:8 data:double +@4720 = .sdata2:0x8051DDF8; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x8051DDFC; // type:object size:0x4 scope:local align:4 data:float +@4722 = .sdata2:0x8051DE00; // type:object size:0x4 scope:local align:4 data:float +@4723 = .sdata2:0x8051DE04; // type:object size:0x4 scope:local align:4 data:float +@4724 = .sdata2:0x8051DE08; // type:object size:0x4 scope:local align:4 data:float +@4725 = .sdata2:0x8051DE0C; // type:object size:0x4 scope:local align:4 data:float +@4726 = .sdata2:0x8051DE10; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x8051DE14; // type:object size:0x4 scope:local align:4 data:float +@4728 = .sdata2:0x8051DE18; // type:object size:0x4 scope:local align:4 data:float +@4729 = .sdata2:0x8051DE1C; // type:object size:0x4 scope:local align:4 data:float +@4730 = .sdata2:0x8051DE20; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051DE28; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051DE2C; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051DE30; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051DE34; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051DE38; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051DE3C; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x8051DE40; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051DE44; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051DE48; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051DE4C; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x8051DE50; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051DE54; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x8051DE58; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051DE60; // type:object size:0x8 scope:local align:8 data:double +@2632 = .sdata2:0x8051DE68; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata2:0x8051DE6C; // type:object size:0x4 scope:local align:4 data:float +@2638 = .sdata2:0x8051DE70; // type:object size:0x4 scope:local align:4 data:float +@2639 = .sdata2:0x8051DE74; // type:object size:0x4 scope:local align:4 data:float +@2640 = .sdata2:0x8051DE78; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata2:0x8051DE7C; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata2:0x8051DE80; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata2:0x8051DE84; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x8051DE88; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x8051DE8C; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051DE90; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051DE94; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051DE98; // type:object size:0x4 scope:local align:4 data:float +@3798 = .sdata2:0x8051DE9C; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051DEA0; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x8051DEA8; // type:object size:0x4 scope:local align:4 data:float +@3494 = .sdata2:0x8051DEAC; // type:object size:0x4 scope:local align:4 data:float +@3495 = .sdata2:0x8051DEB0; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x8051DEB4; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051DEB8; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051DEBC; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051DEC0; // type:object size:0x4 scope:local align:4 data:float +@3582 = .sdata2:0x8051DEC4; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata2:0x8051DEC8; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x8051DECC; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051DED0; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051DED4; // type:object size:0x4 scope:local align:4 data:float +@3634 = .sdata2:0x8051DED8; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051DEE0; // type:object size:0x8 scope:local align:8 data:double +@3876 = .sdata2:0x8051DEE8; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051DEEC; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051DEF0; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051DEF4; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051DEF8; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051DF00; // type:object size:0x8 scope:local align:8 data:double +@3693 = .sdata2:0x8051DF08; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x8051DF0C; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051DF10; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata2:0x8051DF14; // type:object size:0x4 scope:local align:4 data:float +@3679 = .sdata2:0x8051DF18; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051DF1C; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051DF20; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x8051DF28; // type:object size:0x4 scope:local align:4 data:float +@3653 = .sdata2:0x8051DF2C; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051DF30; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x8051DF34; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x8051DF38; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051DF3C; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata2:0x8051DF40; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051DF44; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051DF48; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051DF50; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051DF58; // type:object size:0x8 scope:local align:8 data:double +@3570 = .sdata2:0x8051DF60; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata2:0x8051DF64; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x8051DF68; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x8051DF6C; // type:object size:0x4 scope:local align:4 data:float +@3722 = .sdata2:0x8051DF70; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata2:0x8051DF78; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051DF7C; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x8051DF80; // type:object size:0x4 scope:local align:4 data:float +@3663 = .sdata2:0x8051DF84; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x8051DF88; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051DF8C; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x8051DF90; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata2:0x8051DF94; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata2:0x8051DF98; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051DF9C; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x8051DFA0; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051DFA4; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051DFA8; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051DFB0; // type:object size:0x8 scope:local align:8 data:double +@3719 = .sdata2:0x8051DFB8; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051DFBC; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051DFC0; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051DFC4; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051DFC8; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051DFCC; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051DFD0; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051DFD4; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051DFD8; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051DFDC; // type:object size:0x4 scope:local align:4 data:float +@3987 = .sdata2:0x8051DFE0; // type:object size:0x4 scope:local align:4 data:float +@3988 = .sdata2:0x8051DFE4; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x8051DFE8; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x8051DFEC; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051DFF0; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x8051DFF4; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051DFF8; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x8051DFFC; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051E000; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051E004; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051E008; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x8051E00C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051E010; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051E014; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051E018; // type:object size:0x4 scope:local align:4 data:float +@3899 = .sdata2:0x8051E01C; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051E020; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051E024; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051E028; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051E030; // type:object size:0x8 scope:local align:8 data:double +@3933 = .sdata2:0x8051E038; // type:object size:0x8 scope:local align:8 data:double +@3979 = .sdata2:0x8051E040; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x8051E044; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051E048; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x8051E04C; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x8051E050; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata2:0x8051E054; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051E058; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051E05C; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051E060; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x8051E064; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051E068; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x8051E06C; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x8051E070; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata2:0x8051E074; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x8051E078; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata2:0x8051E07C; // type:object size:0x4 scope:local align:4 data:float +@2656 = .sdata2:0x8051E080; // type:object size:0x4 scope:local align:4 data:float +@2657 = .sdata2:0x8051E084; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x8051E088; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x8051E08C; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051E090; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051E094; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051E098; // type:object size:0x4 scope:local align:4 data:float +@3174 = .sdata2:0x8051E0A0; // type:object size:0x4 scope:local align:4 data:float +@3175 = .sdata2:0x8051E0A4; // type:object size:0x4 scope:local align:4 data:float +@3176 = .sdata2:0x8051E0A8; // type:object size:0x4 scope:local align:4 data:float +@3178 = .sdata2:0x8051E0B0; // type:object size:0x8 scope:local align:8 data:double +@3265 = .sdata2:0x8051E0B8; // type:object size:0x4 scope:local align:4 data:float +@3397 = .sdata2:0x8051E0BC; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x8051E0C0; // type:object size:0x3 scope:local align:4 data:string +@3133 = .sdata2:0x8051E0C4; // type:object size:0x3 scope:local align:4 data:string +@3140 = .sdata2:0x8051E0C8; // type:object size:0x4 scope:local align:4 data:string +@3141 = .sdata2:0x8051E0CC; // type:object size:0x6 scope:local align:4 +@3177 = .sdata2:0x8051E0D4; // type:object size:0x4 scope:local align:4 data:float +@3178 = .sdata2:0x8051E0D8; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata2:0x8051E0DC; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata2:0x8051E0E0; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x8051E0E4; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x8051E0E8; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata2:0x8051E0EC; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata2:0x8051E0F0; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata2:0x8051E0F4; // type:object size:0x4 scope:local align:4 data:float +@3232 = .sdata2:0x8051E0F8; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x8051E0FC; // type:object size:0x4 scope:local align:4 data:float +@3234 = .sdata2:0x8051E100; // type:object size:0x4 scope:local align:4 data:float +sDefaultVol__Q26PSGame9CameraMgr = .sdata2:0x8051E104; // type:object size:0x4 scope:global align:4 data:float +@3239 = .sdata2:0x8051E108; // type:object size:0x4 scope:local align:4 data:float +@3240 = .sdata2:0x8051E10C; // type:object size:0x4 scope:local align:4 data:float +@3241 = .sdata2:0x8051E110; // type:object size:0x4 scope:local align:4 data:float +@3242 = .sdata2:0x8051E114; // type:object size:0x4 scope:local align:4 data:float +@3243 = .sdata2:0x8051E118; // type:object size:0x4 scope:local align:4 data:float +@3244 = .sdata2:0x8051E11C; // type:object size:0x4 scope:local align:4 data:float +@3245 = .sdata2:0x8051E120; // type:object size:0x4 scope:local align:4 data:float +@3246 = .sdata2:0x8051E124; // type:object size:0x4 scope:local align:4 data:float +@3406 = .sdata2:0x8051E128; // type:object size:0x8 scope:local align:4 data:string +@3441 = .sdata2:0x8051E130; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x8051E134; // type:object size:0x7 scope:local align:4 data:string +@3802 = .sdata2:0x8051E13C; // type:object size:0x8 scope:local align:4 data:string +@4492 = .sdata2:0x8051E144; // type:object size:0x7 scope:local align:4 data:string +@2931 = .sdata2:0x8051E150; // type:object size:0x4 scope:local align:4 data:float +@3014 = .sdata2:0x8051E154; // type:object size:0x4 scope:local align:4 data:float +@3015 = .sdata2:0x8051E158; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x8051E160; // type:object size:0x2 scope:local align:4 +@3657 = .sdata2:0x8051E164; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x8051E168; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051E16C; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051E170; // type:object size:0x8 scope:local align:8 data:double +@2795 = .sdata2:0x8051E178; // type:object size:0x8 scope:local align:8 data:double +@2845 = .sdata2:0x8051E180; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x8051E184; // type:object size:0x4 scope:local align:4 data:float +@2903 = .sdata2:0x8051E188; // type:object size:0x7 scope:local align:4 +@2929 = .sdata2:0x8051E190; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata2:0x8051E194; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata2:0x8051E198; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x8051E19C; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x8051E1A0; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata2:0x8051E1A8; // type:object size:0x8 scope:local align:8 data:double +@3094 = .sdata2:0x8051E1B0; // type:object size:0x8 scope:local align:8 data:double +@3254 = .sdata2:0x8051E1B8; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x8051E1BC; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata2:0x8051E1C0; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata2:0x8051E1C4; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata2:0x8051E1C8; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata2:0x8051E1CC; // type:object size:0x4 scope:local align:4 data:float +@3168 = .sdata2:0x8051E1D0; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x8051E1D8; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x8051E1DC; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x8051E1E0; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x8051E1E4; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata2:0x8051E1E8; // type:object size:0x8 scope:local align:8 data:double +@3226 = .sdata2:0x8051E1F0; // type:object size:0x8 scope:local align:4 data:string +@3529 = .sdata2:0x8051E1F8; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051E1FC; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata2:0x8051E200; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051E204; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x8051E208; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x8051E20C; // type:object size:0x4 scope:local align:4 data:float +@3898 = .sdata2:0x8051E210; // type:object size:0x4 scope:local align:4 data:float +@3899 = .sdata2:0x8051E214; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x8051E218; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051E21C; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x8051E220; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051E224; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051E228; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051E22C; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051E230; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051E234; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051E238; // type:object size:0x8 scope:local align:8 data:double +@3910 = .sdata2:0x8051E240; // type:object size:0x8 scope:local align:8 data:double +@4018 = .sdata2:0x8051E248; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x8051E24C; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata2:0x8051E250; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051E254; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051E258; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051E25C; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051E260; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051E268; // type:object size:0x8 scope:local align:8 data:double +@3895 = .sdata2:0x8051E270; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051E274; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051E278; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051E27C; // type:object size:0x4 scope:local align:4 data:float +@4015 = .sdata2:0x8051E280; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051E284; // type:object size:0x4 scope:local align:4 data:4byte +@4134 = .sdata2:0x8051E288; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051E28C; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051E290; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051E294; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051E298; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051E29C; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051E2A0; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051E2A8; // type:object size:0x8 scope:local align:8 data:double +@4162 = .sdata2:0x8051E2B0; // type:object size:0x4 scope:local align:4 data:float +@4163 = .sdata2:0x8051E2B4; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x8051E2B8; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051E2BC; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051E2C0; // type:object size:0x4 scope:local align:4 data:float +@4334 = .sdata2:0x8051E2C4; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051E2C8; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x8051E2D0; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051E2D4; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata2:0x8051E2D8; // type:object size:0x8 scope:local align:8 data:double +@3913 = .sdata2:0x8051E2E0; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051E2E4; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051E2E8; // type:object size:0x6 scope:local align:4 data:string +@3515 = .sdata2:0x8051E2F0; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata2:0x8051E2F4; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051E2F8; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051E2FC; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051E300; // type:object size:0x5 scope:local align:4 data:string +@3978 = .sdata2:0x8051E308; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051E30C; // type:object size:0x5 scope:local align:4 data:string +@4156 = .sdata2:0x8051E314; // type:object size:0x4 scope:local align:4 data:float +@4157 = .sdata2:0x8051E318; // type:object size:0x4 scope:local align:4 data:float +@4158 = .sdata2:0x8051E31C; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051E320; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051E324; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051E328; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051E32C; // type:object size:0x4 scope:local align:4 data:float +@3830 = .sdata2:0x8051E330; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051E334; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051E338; // type:object size:0x6 scope:local align:4 data:string +@4000 = .sdata2:0x8051E340; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051E344; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051E348; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051E34C; // type:object size:0x4 scope:local align:4 data:float +@4157 = .sdata2:0x8051E350; // type:object size:0x4 scope:local align:4 data:float +@4158 = .sdata2:0x8051E354; // type:object size:0x4 scope:local align:4 data:float +@4159 = .sdata2:0x8051E358; // type:object size:0x4 scope:local align:4 data:float +@4160 = .sdata2:0x8051E35C; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051E360; // type:object size:0x8 scope:local align:8 data:double +@4287 = .sdata2:0x8051E368; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x8051E36C; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051E370; // type:object size:0x5 scope:local align:4 data:string +@3838 = .sdata2:0x8051E378; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051E37C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051E380; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051E384; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051E388; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051E38C; // type:object size:0x4 scope:local align:4 data:float +@4092 = .sdata2:0x8051E390; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x8051E394; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x8051E398; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051E39C; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051E3A0; // type:object size:0x4 scope:local align:4 data:float +@4317 = .sdata2:0x8051E3A4; // type:object size:0x4 scope:local align:4 data:float +@4318 = .sdata2:0x8051E3A8; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x8051E3AC; // type:object size:0x4 scope:local align:4 data:float +@4320 = .sdata2:0x8051E3B0; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x8051E3B4; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x8051E3B8; // type:object size:0x4 scope:local align:4 data:float +@4323 = .sdata2:0x8051E3BC; // type:object size:0x4 scope:local align:4 data:float +@4325 = .sdata2:0x8051E3C0; // type:object size:0x8 scope:local align:8 data:double +@4352 = .sdata2:0x8051E3C8; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051E3D0; // type:object size:0x5 scope:local align:4 data:string +@3881 = .sdata2:0x8051E3D8; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051E3DC; // type:object size:0x5 scope:local align:4 data:string +@3953 = .sdata2:0x8051E3E4; // type:object size:0x5 scope:local align:4 data:string +@4137 = .sdata2:0x8051E3EC; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051E3F0; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051E3F4; // type:object size:0x7 scope:local align:4 data:string +@4279 = .sdata2:0x8051E3FC; // type:object size:0x7 scope:local align:4 data:string +@4304 = .sdata2:0x8051E404; // type:object size:0x5 scope:local align:4 data:string +@4347 = .sdata2:0x8051E410; // type:object size:0x8 scope:local align:8 data:double +@4356 = .sdata2:0x8051E418; // type:object size:0x7 scope:local align:4 data:string +@4399 = .sdata2:0x8051E420; // type:object size:0x5 scope:local align:4 data:string +@4438 = .sdata2:0x8051E428; // type:object size:0x6 scope:local align:4 data:string +@4568 = .sdata2:0x8051E430; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051E434; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata2:0x8051E438; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata2:0x8051E43C; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata2:0x8051E440; // type:object size:0x4 scope:local align:4 data:float +@4581 = .sdata2:0x8051E444; // type:object size:0x7 scope:local align:4 data:string +@4726 = .sdata2:0x8051E44C; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x8051E450; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x8051E458; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051E45C; // type:object size:0x4 scope:local align:4 data:float +@3852 = .sdata2:0x8051E460; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051E464; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051E468; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051E46C; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051E470; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051E474; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata2:0x8051E478; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051E47C; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051E480; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051E484; // type:object size:0x4 scope:local align:4 data:float +@4160 = .sdata2:0x8051E488; // type:object size:0x4 scope:local align:4 data:float +@4080 = .sdata2:0x8051E490; // type:object size:0x4 scope:local align:4 data:float +@4081 = .sdata2:0x8051E494; // type:object size:0x5 scope:local align:4 data:string +@4082 = .sdata2:0x8051E49C; // type:object size:0x5 scope:local align:4 data:string +@4196 = .sdata2:0x8051E4A4; // type:object size:0x4 scope:local align:4 data:float +@4197 = .sdata2:0x8051E4A8; // type:object size:0x4 scope:local align:4 data:float +@4198 = .sdata2:0x8051E4AC; // type:object size:0x4 scope:local align:4 data:float +@4199 = .sdata2:0x8051E4B0; // type:object size:0x4 scope:local align:4 data:float +@4200 = .sdata2:0x8051E4B4; // type:object size:0x4 scope:local align:4 data:float +@4240 = .sdata2:0x8051E4B8; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051E4BC; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051E4C0; // type:object size:0x4 scope:local align:4 data:float +@4458 = .sdata2:0x8051E4C4; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051E4C8; // type:object size:0x4 scope:local align:4 data:float +@4610 = .sdata2:0x8051E4CC; // type:object size:0x4 scope:local align:4 data:float +@4611 = .sdata2:0x8051E4D0; // type:object size:0x4 scope:local align:4 data:float +@4632 = .sdata2:0x8051E4D4; // type:object size:0x4 scope:local align:4 data:float +@4633 = .sdata2:0x8051E4D8; // type:object size:0x4 scope:local align:4 data:float +@4661 = .sdata2:0x8051E4DC; // type:object size:0x4 scope:local align:4 data:float +@4702 = .sdata2:0x8051E4E0; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata2:0x8051E4E4; // type:object size:0x5 scope:local align:4 data:string +@4708 = .sdata2:0x8051E4EC; // type:object size:0x5 scope:local align:4 data:string +@4856 = .sdata2:0x8051E4F4; // type:object size:0x4 scope:local align:4 data:float +@4857 = .sdata2:0x8051E4F8; // type:object size:0x4 scope:local align:4 data:float +@4861 = .sdata2:0x8051E500; // type:object size:0x8 scope:local align:8 data:double +@4945 = .sdata2:0x8051E508; // type:object size:0x4 scope:local align:4 data:float +@4946 = .sdata2:0x8051E50C; // type:object size:0x4 scope:local align:4 data:float +@4947 = .sdata2:0x8051E510; // type:object size:0x4 scope:local align:4 data:float +@5029 = .sdata2:0x8051E514; // type:object size:0x4 scope:local align:4 data:float +@5030 = .sdata2:0x8051E518; // type:object size:0x4 scope:local align:4 data:float +@5031 = .sdata2:0x8051E51C; // type:object size:0x4 scope:local align:4 data:float +@5032 = .sdata2:0x8051E520; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata2:0x8051E524; // type:object size:0x4 scope:local align:4 data:float +@5212 = .sdata2:0x8051E528; // type:object size:0x6 scope:local align:4 data:string +@5338 = .sdata2:0x8051E530; // type:object size:0x4 scope:local align:4 data:float +@5538 = .sdata2:0x8051E534; // type:object size:0x4 scope:local align:4 data:float +@5539 = .sdata2:0x8051E538; // type:object size:0x4 scope:local align:4 data:float +@5540 = .sdata2:0x8051E53C; // type:object size:0x4 scope:local align:4 data:float +@6106 = .sdata2:0x8051E540; // type:object size:0x4 scope:local align:4 data:float +@6107 = .sdata2:0x8051E544; // type:object size:0x4 scope:local align:4 data:float +@6108 = .sdata2:0x8051E548; // type:object size:0x4 scope:local align:4 data:float +@4324 = .sdata2:0x8051E550; // type:object size:0x4 scope:local align:4 data:float +@4325 = .sdata2:0x8051E554; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata2:0x8051E558; // type:object size:0x4 scope:local align:4 data:float +@4673 = .sdata2:0x8051E55C; // type:object size:0x4 scope:local align:4 data:float +@4674 = .sdata2:0x8051E560; // type:object size:0x4 scope:local align:4 data:float +@4675 = .sdata2:0x8051E564; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051E568; // type:object size:0x5 scope:local align:4 data:string +@4050 = .sdata2:0x8051E570; // type:object size:0x4 scope:local align:4 data:float +@4051 = .sdata2:0x8051E574; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x8051E578; // type:object size:0x4 scope:local align:4 data:float +@4064 = .sdata2:0x8051E57C; // type:object size:0x7 scope:local align:4 data:string +@4303 = .sdata2:0x8051E584; // type:object size:0x4 scope:local align:4 data:float +@4304 = .sdata2:0x8051E588; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x8051E58C; // type:object size:0x5 scope:local align:4 data:string +@4366 = .sdata2:0x8051E594; // type:object size:0x6 scope:local align:4 data:string +@4651 = .sdata2:0x8051E59C; // type:object size:0x4 scope:local align:4 data:float +@4652 = .sdata2:0x8051E5A0; // type:object size:0x4 scope:local align:4 data:float +@4653 = .sdata2:0x8051E5A4; // type:object size:0x4 scope:local align:4 data:float +@4674 = .sdata2:0x8051E5A8; // type:object size:0x7 scope:local align:4 data:string +@4851 = .sdata2:0x8051E5B0; // type:object size:0x4 scope:local align:4 data:float +@4852 = .sdata2:0x8051E5B4; // type:object size:0x4 scope:local align:4 data:float +@4853 = .sdata2:0x8051E5B8; // type:object size:0x4 scope:local align:4 data:float +@4865 = .sdata2:0x8051E5BC; // type:object size:0x7 scope:local align:4 data:string +@4904 = .sdata2:0x8051E5C8; // type:object size:0x8 scope:local align:8 data:double +@4916 = .sdata2:0x8051E5D0; // type:object size:0x5 scope:local align:4 data:string +@4951 = .sdata2:0x8051E5D8; // type:object size:0x4 scope:local align:4 data:float +@4959 = .sdata2:0x8051E5DC; // type:object size:0x4 scope:local align:4 data:string +@4991 = .sdata2:0x8051E5E0; // type:object size:0x5 scope:local align:4 data:string +@5109 = .sdata2:0x8051E5E8; // type:object size:0x7 scope:local align:4 data:string +@5196 = .sdata2:0x8051E5F0; // type:object size:0x8 scope:local align:4 data:string +@5225 = .sdata2:0x8051E5F8; // type:object size:0x8 scope:local align:4 data:string +@5247 = .sdata2:0x8051E600; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051E608; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051E60C; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051E610; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051E614; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051E618; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051E61C; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051E620; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x8051E624; // type:object size:0x4 scope:local align:4 data:float +@3850 = .sdata2:0x8051E628; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051E62C; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051E630; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051E634; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051E638; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051E63C; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051E640; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051E644; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051E648; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x8051E64C; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051E650; // type:object size:0x8 scope:local align:4 +@3872 = .sdata2:0x8051E658; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x8051E65C; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051E660; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051E664; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051E668; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8051E66C; // type:object size:0x5 scope:local align:4 data:string +@4098 = .sdata2:0x8051E674; // type:object size:0x8 scope:local align:4 data:string +@4099 = .sdata2:0x8051E67C; // type:object size:0x6 scope:local align:4 data:string +@4100 = .sdata2:0x8051E684; // type:object size:0x6 scope:local align:4 data:string +@4101 = .sdata2:0x8051E68C; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051E690; // type:object size:0x5 scope:local align:4 data:string +@4103 = .sdata2:0x8051E698; // type:object size:0x5 scope:local align:4 data:string +@4104 = .sdata2:0x8051E6A0; // type:object size:0x5 scope:local align:4 data:string +@4636 = .sdata2:0x8051E6A8; // type:object size:0x4 scope:local align:4 data:float +@4637 = .sdata2:0x8051E6AC; // type:object size:0x4 scope:local align:4 data:float +@4638 = .sdata2:0x8051E6B0; // type:object size:0x4 scope:local align:4 data:float +@4639 = .sdata2:0x8051E6B4; // type:object size:0x4 scope:local align:4 data:float +@4886 = .sdata2:0x8051E6B8; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata2:0x8051E6BC; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata2:0x8051E6C0; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata2:0x8051E6C4; // type:object size:0x4 scope:local align:4 data:float +@4949 = .sdata2:0x8051E6C8; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata2:0x8051E6CC; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051E6D0; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata2:0x8051E6D4; // type:object size:0x4 scope:local align:4 data:float +@4968 = .sdata2:0x8051E6D8; // type:object size:0x4 scope:local align:4 data:float +@4983 = .sdata2:0x8051E6DC; // type:object size:0x4 scope:local align:4 data:float +@5007 = .sdata2:0x8051E6E0; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata2:0x8051E6E4; // type:object size:0x6 scope:local align:4 data:string +@5054 = .sdata2:0x8051E6EC; // type:object size:0x6 scope:local align:4 data:string +@5055 = .sdata2:0x8051E6F4; // type:object size:0x6 scope:local align:4 data:string +@5056 = .sdata2:0x8051E6FC; // type:object size:0x6 scope:local align:4 data:string +@5057 = .sdata2:0x8051E704; // type:object size:0x6 scope:local align:4 data:string +@5058 = .sdata2:0x8051E70C; // type:object size:0x6 scope:local align:4 data:string +@5059 = .sdata2:0x8051E714; // type:object size:0x6 scope:local align:4 data:string +@5060 = .sdata2:0x8051E71C; // type:object size:0x6 scope:local align:4 data:string +@5061 = .sdata2:0x8051E724; // type:object size:0x6 scope:local align:4 data:string +@5073 = .sdata2:0x8051E72C; // type:object size:0x4 scope:local align:4 data:float +@5327 = .sdata2:0x8051E730; // type:object size:0x4 scope:local align:4 data:float +@5328 = .sdata2:0x8051E734; // type:object size:0x4 scope:local align:4 data:float +@5329 = .sdata2:0x8051E738; // type:object size:0x4 scope:local align:4 data:float +@5331 = .sdata2:0x8051E740; // type:object size:0x8 scope:local align:8 data:double +@5505 = .sdata2:0x8051E748; // type:object size:0x4 scope:local align:4 data:float +@5506 = .sdata2:0x8051E74C; // type:object size:0x4 scope:local align:4 data:float +@5507 = .sdata2:0x8051E750; // type:object size:0x4 scope:local align:4 data:float +@5508 = .sdata2:0x8051E754; // type:object size:0x4 scope:local align:4 data:float +@5594 = .sdata2:0x8051E758; // type:object size:0x4 scope:local align:4 data:float +@6061 = .sdata2:0x8051E75C; // type:object size:0x4 scope:local align:4 data:float +@6170 = .sdata2:0x8051E760; // type:object size:0x4 scope:local align:4 data:float +@6237 = .sdata2:0x8051E764; // type:object size:0x4 scope:local align:4 data:float +@6381 = .sdata2:0x8051E768; // type:object size:0x6 scope:local align:4 data:string +@6382 = .sdata2:0x8051E770; // type:object size:0x6 scope:local align:4 data:string +@6417 = .sdata2:0x8051E778; // type:object size:0x4 scope:local align:4 data:float +@6616 = .sdata2:0x8051E77C; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051E780; // type:object size:0x5 scope:local align:4 data:string +@3570 = .sdata2:0x8051E788; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x8051E78C; // type:object size:0x5 scope:local align:4 data:string +@3637 = .sdata2:0x8051E794; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051E798; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x8051E79C; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x8051E7A0; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051E7A4; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051E7A8; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051E7AC; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051E7B0; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051E7B4; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x8051E7B8; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051E7BC; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051E7C0; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051E7C4; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051E7C8; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051E7CC; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x8051E7D0; // type:object size:0x4 scope:local align:4 data:float +@4161 = .sdata2:0x8051E7D4; // type:object size:0x5 scope:local align:4 data:string +@4180 = .sdata2:0x8051E7DC; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051E7E0; // type:object size:0x6 scope:local align:4 data:string +@4276 = .sdata2:0x8051E7E8; // type:object size:0x5 scope:local align:4 data:string +@3549 = .sdata2:0x8051E7F0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051E7F4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051E7F8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051E7FC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051E800; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051E804; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051E808; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051E80C; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051E810; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051E814; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051E818; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051E81C; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051E820; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051E824; // type:object size:0x4 scope:local align:4 data:float +@3956 = .sdata2:0x8051E828; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051E82C; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051E830; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051E834; // type:object size:0x4 scope:local align:4 data:float +@4336 = .sdata2:0x8051E838; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x8051E83C; // type:object size:0x4 scope:local align:4 data:float +@4450 = .sdata2:0x8051E840; // type:object size:0x4 scope:local align:4 data:float +@4556 = .sdata2:0x8051E844; // type:object size:0x4 scope:local align:4 data:float +@4557 = .sdata2:0x8051E848; // type:object size:0x4 scope:local align:4 data:float +@4558 = .sdata2:0x8051E84C; // type:object size:0x4 scope:local align:4 data:float +@4559 = .sdata2:0x8051E850; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x8051E858; // type:object size:0x8 scope:local align:8 data:double +@4653 = .sdata2:0x8051E860; // type:object size:0x4 scope:local align:4 data:float +@4687 = .sdata2:0x8051E864; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata2:0x8051E868; // type:object size:0x4 scope:local align:4 data:float +@4745 = .sdata2:0x8051E86C; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051E870; // type:object size:0x5 scope:local align:4 data:string +@4037 = .sdata2:0x8051E878; // type:object size:0x7 scope:local align:4 data:string +@4059 = .sdata2:0x8051E880; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x8051E884; // type:object size:0x4 scope:local align:4 data:float +@4061 = .sdata2:0x8051E888; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051E88C; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051E890; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051E894; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051E898; // type:object size:0x5 scope:local align:4 data:string +@4216 = .sdata2:0x8051E8A0; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata2:0x8051E8A4; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata2:0x8051E8A8; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051E8AC; // type:object size:0x5 scope:local align:4 data:string +@4300 = .sdata2:0x8051E8B4; // type:object size:0x7 scope:local align:4 data:string +@4460 = .sdata2:0x8051E8BC; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051E8C0; // type:object size:0x4 scope:local align:4 data:float +@4462 = .sdata2:0x8051E8C4; // type:object size:0x4 scope:local align:4 data:float +@4463 = .sdata2:0x8051E8C8; // type:object size:0x4 scope:local align:4 data:float +@4478 = .sdata2:0x8051E8CC; // type:object size:0x5 scope:local align:4 data:string +@4563 = .sdata2:0x8051E8D4; // type:object size:0x7 scope:local align:4 data:string +@4600 = .sdata2:0x8051E8DC; // type:object size:0x4 scope:local align:4 data:float +@4613 = .sdata2:0x8051E8E0; // type:object size:0x6 scope:local align:4 data:string +@4644 = .sdata2:0x8051E8E8; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata2:0x8051E8EC; // type:object size:0x6 scope:local align:4 data:string +@4714 = .sdata2:0x8051E8F4; // type:object size:0x4 scope:local align:4 data:string +@4748 = .sdata2:0x8051E8F8; // type:object size:0x4 scope:local align:4 data:float +@4749 = .sdata2:0x8051E8FC; // type:object size:0x4 scope:local align:4 data:float +@4757 = .sdata2:0x8051E900; // type:object size:0x7 scope:local align:4 data:string +@5001 = .sdata2:0x8051E908; // type:object size:0x4 scope:local align:4 data:float +@5010 = .sdata2:0x8051E90C; // type:object size:0x8 scope:local align:4 data:string +@5061 = .sdata2:0x8051E914; // type:object size:0x4 scope:local align:4 data:float +@5073 = .sdata2:0x8051E918; // type:object size:0x6 scope:local align:4 data:string +@3826 = .sdata2:0x8051E920; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x8051E924; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x8051E928; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051E92C; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051E930; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x8051E934; // type:object size:0x4 scope:local align:4 data:float +@3836 = .sdata2:0x8051E938; // type:object size:0x4 scope:local align:4 data:float +@3838 = .sdata2:0x8051E93C; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051E940; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051E944; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051E948; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x8051E94C; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051E950; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051E954; // type:object size:0x4 scope:local align:4 data:float +@3845 = .sdata2:0x8051E958; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051E95C; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051E960; // type:object size:0x4 scope:local align:4 data:float +@3854 = .sdata2:0x8051E964; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051E968; // type:object size:0x4 scope:local align:4 data:float +@3857 = .sdata2:0x8051E970; // type:object size:0x8 scope:local align:8 data:double +@3920 = .sdata2:0x8051E978; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051E97C; // type:object size:0x4 scope:local align:4 data:float +@4195 = .sdata2:0x8051E980; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x8051E984; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x8051E988; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x8051E98C; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051E990; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051E994; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata2:0x8051E998; // type:object size:0x4 scope:local align:4 data:float +@4838 = .sdata2:0x8051E99C; // type:object size:0x4 scope:local align:4 data:float +@4839 = .sdata2:0x8051E9A0; // type:object size:0x4 scope:local align:4 data:float +@4840 = .sdata2:0x8051E9A4; // type:object size:0x4 scope:local align:4 data:float +@4841 = .sdata2:0x8051E9A8; // type:object size:0x4 scope:local align:4 data:float +@4842 = .sdata2:0x8051E9AC; // type:object size:0x4 scope:local align:4 data:float +@4843 = .sdata2:0x8051E9B0; // type:object size:0x4 scope:local align:4 data:float +@4844 = .sdata2:0x8051E9B4; // type:object size:0x4 scope:local align:4 data:float +@4845 = .sdata2:0x8051E9B8; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata2:0x8051E9BC; // type:object size:0x4 scope:local align:4 data:float +@4847 = .sdata2:0x8051E9C0; // type:object size:0x4 scope:local align:4 data:float +@4848 = .sdata2:0x8051E9C4; // type:object size:0x4 scope:local align:4 data:float +@4898 = .sdata2:0x8051E9C8; // type:object size:0x4 scope:local align:4 data:float +@5189 = .sdata2:0x8051E9CC; // type:object size:0x4 scope:local align:4 data:float +@5190 = .sdata2:0x8051E9D0; // type:object size:0x4 scope:local align:4 data:float +@5191 = .sdata2:0x8051E9D4; // type:object size:0x4 scope:local align:4 data:float +@5192 = .sdata2:0x8051E9D8; // type:object size:0x4 scope:local align:4 data:float +@5304 = .sdata2:0x8051E9DC; // type:object size:0x4 scope:local align:4 data:float +@5334 = .sdata2:0x8051E9E0; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x8051E9E4; // type:object size:0x4 scope:local align:4 data:float +@5493 = .sdata2:0x8051E9E8; // type:object size:0x4 scope:local align:4 data:float +@3369 = .sdata2:0x8051E9F0; // type:object size:0x4 scope:local align:4 data:float +@3387 = .sdata2:0x8051E9F4; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x8051E9F8; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051EA00; // type:object size:0x5 scope:local align:4 data:string +@3835 = .sdata2:0x8051EA08; // type:object size:0x4 scope:local align:4 data:float +@3837 = .sdata2:0x8051EA10; // type:object size:0x8 scope:local align:8 data:double +@3875 = .sdata2:0x8051EA18; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051EA1C; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051EA20; // type:object size:0x5 scope:local align:4 data:string +@3914 = .sdata2:0x8051EA28; // type:object size:0x7 scope:local align:4 data:string +@3933 = .sdata2:0x8051EA30; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051EA34; // type:object size:0x5 scope:local align:4 data:string +@4008 = .sdata2:0x8051EA3C; // type:object size:0x5 scope:local align:4 data:string +@4028 = .sdata2:0x8051EA44; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051EA48; // type:object size:0x5 scope:local align:4 data:string +@3877 = .sdata2:0x8051EA50; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051EA54; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051EA58; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051EA5C; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051EA60; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051EA64; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051EA68; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051EA6C; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051EA70; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051EA74; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051EA78; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051EA7C; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051EA80; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051EA84; // type:object size:0x4 scope:local align:4 data:float +@4200 = .sdata2:0x8051EA88; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x8051EA8C; // type:object size:0x4 scope:local align:4 data:float +@4204 = .sdata2:0x8051EA90; // type:object size:0x4 scope:local align:4 data:float +@4205 = .sdata2:0x8051EA94; // type:object size:0x4 scope:local align:4 data:float +@4206 = .sdata2:0x8051EA98; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x8051EA9C; // type:object size:0x4 scope:local align:4 data:float +@4208 = .sdata2:0x8051EAA0; // type:object size:0x4 scope:local align:4 data:float +@4209 = .sdata2:0x8051EAA4; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051EAA8; // type:object size:0x8 scope:local align:8 data:double +@3876 = .sdata2:0x8051EAB0; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051EAB4; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051EAB8; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051EABC; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051EAC0; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051EAC4; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051EAC8; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051EACC; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051EAD0; // type:object size:0x8 scope:local align:8 data:double +@4115 = .sdata2:0x8051EAD8; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051EADC; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051EAE0; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051EAE4; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051EAE8; // type:object size:0x4 scope:local align:4 data:float +@4198 = .sdata2:0x8051EAEC; // type:object size:0x4 scope:local align:4 data:float +@4199 = .sdata2:0x8051EAF0; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata2:0x8051EAF4; // type:object size:0x4 scope:local align:4 data:float +@4281 = .sdata2:0x8051EAF8; // type:object size:0x4 scope:local align:4 data:float +@4282 = .sdata2:0x8051EAFC; // type:object size:0x4 scope:local align:4 data:float +@4283 = .sdata2:0x8051EB00; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata2:0x8051EB04; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x8051EB08; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x8051EB0C; // type:object size:0x4 scope:local align:4 data:float +@4599 = .sdata2:0x8051EB10; // type:object size:0x4 scope:local align:4 data:float +@4630 = .sdata2:0x8051EB14; // type:object size:0x4 scope:local align:4 data:float +@4703 = .sdata2:0x8051EB18; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051EB20; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051EB24; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x8051EB28; // type:object size:0x4 scope:local align:4 data:float +@3944 = .sdata2:0x8051EB2C; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x8051EB30; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051EB34; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051EB38; // type:object size:0x4 scope:local align:4 data:float +@4177 = .sdata2:0x8051EB3C; // type:object size:0x4 scope:local align:4 data:float +@4178 = .sdata2:0x8051EB40; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x8051EB44; // type:object size:0x4 scope:local align:4 data:float +@4180 = .sdata2:0x8051EB48; // type:object size:0x4 scope:local align:4 data:float +@4557 = .sdata2:0x8051EB4C; // type:object size:0x4 scope:local align:4 data:float +@4558 = .sdata2:0x8051EB50; // type:object size:0x4 scope:local align:4 data:float +@4559 = .sdata2:0x8051EB54; // type:object size:0x4 scope:local align:4 data:float +@4560 = .sdata2:0x8051EB58; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x8051EB5C; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x8051EB60; // type:object size:0x4 scope:local align:4 data:float +@4563 = .sdata2:0x8051EB64; // type:object size:0x4 scope:local align:4 data:float +@4564 = .sdata2:0x8051EB68; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x8051EB6C; // type:object size:0x4 scope:local align:4 data:float +@4566 = .sdata2:0x8051EB70; // type:object size:0x4 scope:local align:4 data:float +@4568 = .sdata2:0x8051EB74; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051EB78; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata2:0x8051EB80; // type:object size:0x8 scope:local align:8 data:double +@4623 = .sdata2:0x8051EB88; // type:object size:0x4 scope:local align:4 data:float +@4625 = .sdata2:0x8051EB90; // type:object size:0x8 scope:local align:8 data:double +@5011 = .sdata2:0x8051EB98; // type:object size:0x4 scope:local align:4 data:float +@5012 = .sdata2:0x8051EB9C; // type:object size:0x4 scope:local align:4 data:float +@5384 = .sdata2:0x8051EBA0; // type:object size:0x4 scope:local align:4 data:float +@5385 = .sdata2:0x8051EBA4; // type:object size:0x4 scope:local align:4 data:float +@5386 = .sdata2:0x8051EBA8; // type:object size:0x4 scope:local align:4 data:float +@5387 = .sdata2:0x8051EBAC; // type:object size:0x4 scope:local align:4 data:float +@5388 = .sdata2:0x8051EBB0; // type:object size:0x4 scope:local align:4 data:float +@5614 = .sdata2:0x8051EBB4; // type:object size:0x4 scope:local align:4 data:float +@6169 = .sdata2:0x8051EBB8; // type:object size:0x4 scope:local align:4 data:float +@6170 = .sdata2:0x8051EBBC; // type:object size:0x4 scope:local align:4 data:float +@6171 = .sdata2:0x8051EBC0; // type:object size:0x4 scope:local align:4 data:float +@6173 = .sdata2:0x8051EBC4; // type:object size:0x4 scope:local align:4 data:float +@6801 = .sdata2:0x8051EBC8; // type:object size:0x4 scope:local align:4 data:float +@6827 = .sdata2:0x8051EBCC; // type:object size:0x4 scope:local align:4 data:float +@7067 = .sdata2:0x8051EBD0; // type:object size:0x4 scope:local align:4 data:float +@7823 = .sdata2:0x8051EBD4; // type:object size:0x4 scope:local align:4 data:float +@7824 = .sdata2:0x8051EBD8; // type:object size:0x4 scope:local align:4 data:float +@8005 = .sdata2:0x8051EBDC; // type:object size:0x4 scope:local align:4 data:float +@8218 = .sdata2:0x8051EBE0; // type:object size:0x4 scope:local align:4 data:float +@8219 = .sdata2:0x8051EBE4; // type:object size:0x4 scope:local align:4 data:float +@8425 = .sdata2:0x8051EBE8; // type:object size:0x4 scope:local align:4 data:float +@8426 = .sdata2:0x8051EBEC; // type:object size:0x4 scope:local align:4 data:float +@8560 = .sdata2:0x8051EBF0; // type:object size:0x4 scope:local align:4 data:float +@8561 = .sdata2:0x8051EBF4; // type:object size:0x4 scope:local align:4 data:float +@8562 = .sdata2:0x8051EBF8; // type:object size:0x4 scope:local align:4 data:float +@8563 = .sdata2:0x8051EBFC; // type:object size:0x4 scope:local align:4 data:float +@8690 = .sdata2:0x8051EC00; // type:object size:0x4 scope:local align:4 data:float +@8791 = .sdata2:0x8051EC04; // type:object size:0x4 scope:local align:4 data:float +@8792 = .sdata2:0x8051EC08; // type:object size:0x4 scope:local align:4 data:float +@8793 = .sdata2:0x8051EC0C; // type:object size:0x4 scope:local align:4 data:float +@8794 = .sdata2:0x8051EC10; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051EC18; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x8051EC20; // type:object size:0x8 scope:local align:8 data:double +@3809 = .sdata2:0x8051EC28; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051EC2C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051EC30; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051EC34; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051EC38; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051EC3C; // type:object size:0x8 scope:local align:4 data:string +@3970 = .sdata2:0x8051EC44; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051EC48; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051EC4C; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051EC50; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051EC54; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051EC58; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051EC5C; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051EC60; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051EC64; // type:object size:0x4 scope:local align:4 data:float +@4717 = .sdata2:0x8051EC68; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x8051EC6C; // type:object size:0x4 scope:local align:4 data:float +@4719 = .sdata2:0x8051EC70; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x8051EC74; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x8051EC78; // type:object size:0x4 scope:local align:4 data:float +@4722 = .sdata2:0x8051EC7C; // type:object size:0x4 scope:local align:4 data:float +@4723 = .sdata2:0x8051EC80; // type:object size:0x4 scope:local align:4 data:float +@4724 = .sdata2:0x8051EC84; // type:object size:0x4 scope:local align:4 data:float +@4725 = .sdata2:0x8051EC88; // type:object size:0x4 scope:local align:4 data:float +@4726 = .sdata2:0x8051EC8C; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x8051EC90; // type:object size:0x4 scope:local align:4 data:float +@4728 = .sdata2:0x8051EC94; // type:object size:0x4 scope:local align:4 data:float +@4774 = .sdata2:0x8051EC98; // type:object size:0x8 scope:local align:8 data:double +@4844 = .sdata2:0x8051ECA0; // type:object size:0x4 scope:local align:4 data:float +@5119 = .sdata2:0x8051ECA4; // type:object size:0x4 scope:local align:4 data:float +@5120 = .sdata2:0x8051ECA8; // type:object size:0x4 scope:local align:4 data:float +@5121 = .sdata2:0x8051ECAC; // type:object size:0x4 scope:local align:4 data:float +@5122 = .sdata2:0x8051ECB0; // type:object size:0x4 scope:local align:4 data:float +@5123 = .sdata2:0x8051ECB4; // type:object size:0x4 scope:local align:4 data:float +@5124 = .sdata2:0x8051ECB8; // type:object size:0x4 scope:local align:4 data:float +@5528 = .sdata2:0x8051ECBC; // type:object size:0x4 scope:local align:4 data:float +@5529 = .sdata2:0x8051ECC0; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051ECC8; // type:object size:0x5 scope:local align:4 data:string +@4036 = .sdata2:0x8051ECD0; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x8051ECD4; // type:object size:0x5 scope:local align:4 data:string +@4122 = .sdata2:0x8051ECDC; // type:object size:0x4 scope:local align:4 data:float +@4123 = .sdata2:0x8051ECE0; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051ECE8; // type:object size:0x8 scope:local align:8 data:double +@4133 = .sdata2:0x8051ECF0; // type:object size:0x5 scope:local align:4 data:string +@4173 = .sdata2:0x8051ECF8; // type:object size:0x7 scope:local align:4 data:string +@4266 = .sdata2:0x8051ED00; // type:object size:0x5 scope:local align:4 data:string +@4335 = .sdata2:0x8051ED08; // type:object size:0x4 scope:local align:4 data:float +@4336 = .sdata2:0x8051ED0C; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata2:0x8051ED10; // type:object size:0x6 scope:local align:4 data:string +@4410 = .sdata2:0x8051ED18; // type:object size:0x4 scope:local align:4 data:float +@4418 = .sdata2:0x8051ED1C; // type:object size:0x7 scope:local align:4 data:string +@4628 = .sdata2:0x8051ED24; // type:object size:0x4 scope:local align:4 data:string +@4648 = .sdata2:0x8051ED28; // type:object size:0x4 scope:local align:4 data:float +@4656 = .sdata2:0x8051ED2C; // type:object size:0x5 scope:local align:4 data:string +@4689 = .sdata2:0x8051ED34; // type:object size:0x5 scope:local align:4 data:string +@3805 = .sdata2:0x8051ED40; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051ED44; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051ED48; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051ED4C; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x8051ED50; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051ED54; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051ED58; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051ED5C; // type:object size:0x4 scope:local align:4 data:float +@3835 = .sdata2:0x8051ED60; // type:object size:0x4 scope:local align:4 data:float +@3837 = .sdata2:0x8051ED64; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051ED68; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051ED6C; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051ED70; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051ED74; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051ED78; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x8051ED7C; // type:object size:0x4 scope:local align:4 data:float +@3849 = .sdata2:0x8051ED80; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051ED84; // type:object size:0x8 scope:local align:4 data:4byte +@3821 = .sdata2:0x8051ED90; // type:object size:0x4 scope:local align:4 data:float +@3822 = .sdata2:0x8051ED94; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x8051ED98; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051ED9C; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051EDA0; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051EDA4; // type:object size:0x4 scope:local align:4 data:float +@4350 = .sdata2:0x8051EDA8; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051EDAC; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051EDB0; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051EDB4; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051EDB8; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x8051EDBC; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051EDC0; // type:object size:0x4 scope:local align:4 data:float +@4549 = .sdata2:0x8051EDC4; // type:object size:0x4 scope:local align:4 data:float +@4681 = .sdata2:0x8051EDC8; // type:object size:0x4 scope:local align:4 data:float +@4682 = .sdata2:0x8051EDCC; // type:object size:0x4 scope:local align:4 data:float +@4683 = .sdata2:0x8051EDD0; // type:object size:0x4 scope:local align:4 data:float +@4684 = .sdata2:0x8051EDD4; // type:object size:0x4 scope:local align:4 data:float +@4685 = .sdata2:0x8051EDD8; // type:object size:0x4 scope:local align:4 data:float +@4686 = .sdata2:0x8051EDDC; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x8051EDE0; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x8051EDE4; // type:object size:0x4 scope:local align:4 data:float +@4723 = .sdata2:0x8051EDE8; // type:object size:0x8 scope:local align:8 data:double +@4789 = .sdata2:0x8051EDF0; // type:object size:0x4 scope:local align:4 data:float +@4790 = .sdata2:0x8051EDF4; // type:object size:0x4 scope:local align:4 data:float +@4791 = .sdata2:0x8051EDF8; // type:object size:0x4 scope:local align:4 data:float +@4792 = .sdata2:0x8051EDFC; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051EE00; // type:object size:0x4 scope:local align:4 data:float +@5497 = .sdata2:0x8051EE04; // type:object size:0x4 scope:local align:4 data:float +@5576 = .sdata2:0x8051EE08; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8051EE10; // type:object size:0x5 scope:local align:4 data:string +@3840 = .sdata2:0x8051EE18; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051EE1C; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051EE20; // type:object size:0x8 scope:local align:8 data:double +@3879 = .sdata2:0x8051EE28; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051EE2C; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051EE30; // type:object size:0x4 scope:local align:4 data:string +@3919 = .sdata2:0x8051EE34; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051EE38; // type:object size:0x5 scope:local align:4 data:string +@3961 = .sdata2:0x8051EE40; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051EE44; // type:object size:0x5 scope:local align:4 data:string +@4022 = .sdata2:0x8051EE4C; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051EE50; // type:object size:0x6 scope:local align:4 data:string +@4049 = .sdata2:0x8051EE58; // type:object size:0x5 scope:local align:4 data:string +@4064 = .sdata2:0x8051EE60; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051EE64; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051EE68; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051EE6C; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051EE70; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051EE78; // type:object size:0x4 scope:local align:4 data:float +@3854 = .sdata2:0x8051EE7C; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051EE80; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051EE84; // type:object size:0x4 scope:local align:4 data:float +@3857 = .sdata2:0x8051EE88; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051EE8C; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051EE90; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051EE94; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051EE98; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051EE9C; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051EEA0; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051EEA4; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051EEA8; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051EEAC; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051EEB0; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051EEB4; // type:object size:0x7 scope:local align:4 +@3888 = .sdata2:0x8051EEBC; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051EEC0; // type:object size:0x7 scope:local align:4 +@3925 = .sdata2:0x8051EEC8; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051EECC; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051EED0; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata2:0x8051EED4; // type:object size:0x4 scope:local align:4 data:float +@4253 = .sdata2:0x8051EED8; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata2:0x8051EEDC; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata2:0x8051EEE0; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x8051EEE4; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x8051EEE8; // type:object size:0x8 scope:local align:8 data:double +@4310 = .sdata2:0x8051EEF0; // type:object size:0x4 scope:local align:4 data:float +@3849 = .sdata2:0x8051EEF8; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051EF00; // type:object size:0x8 scope:local align:8 data:double +@3894 = .sdata2:0x8051EF08; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051EF0C; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051EF10; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051EF14; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051EF18; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051EF1C; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051EF20; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051EF24; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051EF28; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051EF2C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051EF30; // type:object size:0x4 scope:local align:4 data:float +@4460 = .sdata2:0x8051EF34; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051EF38; // type:object size:0x4 scope:local align:4 data:float +@4632 = .sdata2:0x8051EF3C; // type:object size:0x4 scope:local align:4 data:float +@4633 = .sdata2:0x8051EF40; // type:object size:0x4 scope:local align:4 data:float +@4634 = .sdata2:0x8051EF44; // type:object size:0x4 scope:local align:4 data:float +@4635 = .sdata2:0x8051EF48; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x8051EF4C; // type:object size:0x4 scope:local align:4 data:float +@4678 = .sdata2:0x8051EF50; // type:object size:0x4 scope:local align:4 data:float +@4679 = .sdata2:0x8051EF54; // type:object size:0x4 scope:local align:4 data:float +@4825 = .sdata2:0x8051EF58; // type:object size:0x4 scope:local align:4 data:float +@4826 = .sdata2:0x8051EF5C; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x8051EF60; // type:object size:0x4 scope:local align:4 data:float +@5004 = .sdata2:0x8051EF64; // type:object size:0x4 scope:local align:4 data:float +@5040 = .sdata2:0x8051EF68; // type:object size:0x4 scope:local align:4 data:float +@5041 = .sdata2:0x8051EF6C; // type:object size:0x4 scope:local align:4 data:float +@5086 = .sdata2:0x8051EF70; // type:object size:0x4 scope:local align:4 data:float +@5110 = .sdata2:0x8051EF74; // type:object size:0x4 scope:local align:4 data:float +@5123 = .sdata2:0x8051EF78; // type:object size:0x4 scope:local align:4 data:float +@5229 = .sdata2:0x8051EF7C; // type:object size:0x8 scope:local align:4 data:string +@3587 = .sdata2:0x8051EF88; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x8051EF8C; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051EF90; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata2:0x8051EF94; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x8051EF98; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051EF9C; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051EFA0; // type:object size:0x4 scope:local align:4 data:float +@3634 = .sdata2:0x8051EFA4; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051EFA8; // type:object size:0x4 scope:local align:4 data:float +@3637 = .sdata2:0x8051EFB0; // type:object size:0x8 scope:local align:8 data:double +@3791 = .sdata2:0x8051EFB8; // type:object size:0x4 scope:local align:4 data:float +@3792 = .sdata2:0x8051EFBC; // type:object size:0x4 scope:local align:4 data:float +@3793 = .sdata2:0x8051EFC0; // type:object size:0x4 scope:local align:4 data:float +@3794 = .sdata2:0x8051EFC4; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051EFC8; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051EFCC; // type:object size:0x4 scope:local align:4 data:float +@3797 = .sdata2:0x8051EFD0; // type:object size:0x4 scope:local align:4 data:float +@3798 = .sdata2:0x8051EFD4; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051EFD8; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x8051EFDC; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x8051EFE0; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051EFE4; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051EFE8; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051EFEC; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051EFF0; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051EFF4; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051EFF8; // type:object size:0x4 scope:local align:4 data:float +@4008 = .sdata2:0x8051F000; // type:object size:0x8 scope:local align:8 data:double +@4123 = .sdata2:0x8051F008; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x8051F00C; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051F010; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051F014; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x8051F018; // type:object size:0x4 scope:local align:4 data:float +@4229 = .sdata2:0x8051F01C; // type:object size:0x4 scope:local align:4 data:float +@4230 = .sdata2:0x8051F020; // type:object size:0x4 scope:local align:4 data:float +@4231 = .sdata2:0x8051F024; // type:object size:0x4 scope:local align:4 data:float +@4314 = .sdata2:0x8051F028; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x8051F02C; // type:object size:0x4 scope:local align:4 data:float +@4643 = .sdata2:0x8051F030; // type:object size:0x4 scope:local align:4 data:float +@4644 = .sdata2:0x8051F034; // type:object size:0x4 scope:local align:4 data:float +@4645 = .sdata2:0x8051F038; // type:object size:0x4 scope:local align:4 data:float +@4646 = .sdata2:0x8051F03C; // type:object size:0x4 scope:local align:4 data:float +@4838 = .sdata2:0x8051F040; // type:object size:0x4 scope:local align:4 data:float +@4870 = .sdata2:0x8051F044; // type:object size:0x4 scope:local align:4 data:float +@4871 = .sdata2:0x8051F048; // type:object size:0x4 scope:local align:4 data:float +@4872 = .sdata2:0x8051F04C; // type:object size:0x4 scope:local align:4 data:float +@4873 = .sdata2:0x8051F050; // type:object size:0x4 scope:local align:4 data:float +@5371 = .sdata2:0x8051F054; // type:object size:0x4 scope:local align:4 data:float +@5926 = .sdata2:0x8051F058; // type:object size:0x4 scope:local align:4 data:float +@5927 = .sdata2:0x8051F05C; // type:object size:0x4 scope:local align:4 data:float +@5928 = .sdata2:0x8051F060; // type:object size:0x4 scope:local align:4 data:float +@5929 = .sdata2:0x8051F064; // type:object size:0x4 scope:local align:4 data:float +@5930 = .sdata2:0x8051F068; // type:object size:0x4 scope:local align:4 data:float +@5931 = .sdata2:0x8051F06C; // type:object size:0x4 scope:local align:4 data:float +@5932 = .sdata2:0x8051F070; // type:object size:0x4 scope:local align:4 data:float +@6399 = .sdata2:0x8051F074; // type:object size:0x4 scope:local align:4 data:float +@6577 = .sdata2:0x8051F078; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051F080; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x8051F084; // type:object size:0x4 scope:local align:4 data:float +@3835 = .sdata2:0x8051F088; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051F08C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051F090; // type:object size:0x4 scope:local align:4 data:float +@3996 = .sdata2:0x8051F094; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x8051F098; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051F09C; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051F0A0; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x8051F0A4; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051F0A8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051F0AC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051F0B0; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051F0B4; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata2:0x8051F0B8; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata2:0x8051F0BC; // type:object size:0x4 scope:local align:4 data:float +@4301 = .sdata2:0x8051F0C0; // type:object size:0x4 scope:local align:4 data:float +@4302 = .sdata2:0x8051F0C4; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata2:0x8051F0C8; // type:object size:0x4 scope:local align:4 data:float +@4305 = .sdata2:0x8051F0D0; // type:object size:0x8 scope:local align:8 data:double +@4390 = .sdata2:0x8051F0D8; // type:object size:0x8 scope:local align:8 data:double +@4437 = .sdata2:0x8051F0E0; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x8051F0E4; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata2:0x8051F0E8; // type:object size:0x8 scope:local align:8 data:double +@4583 = .sdata2:0x8051F0F0; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x8051F0F4; // type:object size:0x4 scope:local align:4 data:float +@4585 = .sdata2:0x8051F0F8; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x8051F0FC; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x8051F100; // type:object size:0x4 scope:local align:4 data:float +@4588 = .sdata2:0x8051F104; // type:object size:0x4 scope:local align:4 data:float +@4589 = .sdata2:0x8051F108; // type:object size:0x4 scope:local align:4 data:float +@4590 = .sdata2:0x8051F10C; // type:object size:0x4 scope:local align:4 data:float +@4591 = .sdata2:0x8051F110; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x8051F114; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x8051F118; // type:object size:0x4 scope:local align:4 data:float +@4594 = .sdata2:0x8051F11C; // type:object size:0x4 scope:local align:4 data:float +@4595 = .sdata2:0x8051F120; // type:object size:0x4 scope:local align:4 data:float +@5040 = .sdata2:0x8051F124; // type:object size:0x4 scope:local align:4 data:float +@5041 = .sdata2:0x8051F128; // type:object size:0x4 scope:local align:4 data:float +@5285 = .sdata2:0x8051F12C; // type:object size:0x4 scope:local align:4 data:float +@5286 = .sdata2:0x8051F130; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata2:0x8051F134; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x8051F138; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata2:0x8051F13C; // type:object size:0x4 scope:local align:4 data:float +@5793 = .sdata2:0x8051F140; // type:object size:0x4 scope:local align:4 data:float +@5794 = .sdata2:0x8051F144; // type:object size:0x4 scope:local align:4 data:float +@5795 = .sdata2:0x8051F148; // type:object size:0x4 scope:local align:4 data:float +@5796 = .sdata2:0x8051F14C; // type:object size:0x4 scope:local align:4 data:float +@5797 = .sdata2:0x8051F150; // type:object size:0x4 scope:local align:4 data:float +@6479 = .sdata2:0x8051F154; // type:object size:0x4 scope:local align:4 data:float +@6480 = .sdata2:0x8051F158; // type:object size:0x4 scope:local align:4 data:float +@6481 = .sdata2:0x8051F15C; // type:object size:0x4 scope:local align:4 data:float +@6646 = .sdata2:0x8051F160; // type:object size:0x4 scope:local align:4 data:float +@6708 = .sdata2:0x8051F164; // type:object size:0x4 scope:local align:4 data:float +@6783 = .sdata2:0x8051F168; // type:object size:0x1 scope:local align:4 +@3586 = .sdata2:0x8051F170; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x8051F174; // type:object size:0x4 scope:local align:4 data:float +@3588 = .sdata2:0x8051F178; // type:object size:0x4 scope:local align:4 data:float +@3589 = .sdata2:0x8051F17C; // type:object size:0x4 scope:local align:4 data:float +@3590 = .sdata2:0x8051F180; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x8051F184; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051F188; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051F18C; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x8051F190; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051F198; // type:object size:0x8 scope:local align:8 data:double +@3725 = .sdata2:0x8051F1A0; // type:object size:0x4 scope:local align:4 data:float +@3726 = .sdata2:0x8051F1A4; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x8051F1A8; // type:object size:0x4 scope:local align:4 data:float +@3728 = .sdata2:0x8051F1AC; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x8051F1B0; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051F1B4; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051F1B8; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051F1BC; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051F1C0; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051F1C4; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051F1C8; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051F1CC; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051F1D0; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051F1D4; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051F1D8; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051F1DC; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051F1E0; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051F1E4; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051F1E8; // type:object size:0x4 scope:local align:4 data:float +@3987 = .sdata2:0x8051F1EC; // type:object size:0x4 scope:local align:4 data:float +@3988 = .sdata2:0x8051F1F0; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x8051F1F4; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051F1F8; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051F1FC; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051F200; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051F204; // type:object size:0x4 scope:local align:4 data:float +@4215 = .sdata2:0x8051F208; // type:object size:0x4 scope:local align:4 data:float +@4216 = .sdata2:0x8051F20C; // type:object size:0x4 scope:local align:4 data:float +@4217 = .sdata2:0x8051F210; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051F214; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x8051F218; // type:object size:0x4 scope:local align:4 data:float +@4220 = .sdata2:0x8051F21C; // type:object size:0x4 scope:local align:4 data:float +@4221 = .sdata2:0x8051F220; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata2:0x8051F228; // type:object size:0x8 scope:local align:8 data:double +@4935 = .sdata2:0x8051F230; // type:object size:0x4 scope:local align:4 data:float +@4948 = .sdata2:0x8051F234; // type:object size:0x4 scope:local align:4 data:float +@4949 = .sdata2:0x8051F238; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051F23C; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata2:0x8051F240; // type:object size:0x4 scope:local align:4 data:float +@5528 = .sdata2:0x8051F244; // type:object size:0x4 scope:local align:4 data:float +@5529 = .sdata2:0x8051F248; // type:object size:0x4 scope:local align:4 data:float +@5530 = .sdata2:0x8051F24C; // type:object size:0x4 scope:local align:4 data:float +@5531 = .sdata2:0x8051F250; // type:object size:0x4 scope:local align:4 data:float +@5532 = .sdata2:0x8051F254; // type:object size:0x4 scope:local align:4 data:float +@5533 = .sdata2:0x8051F258; // type:object size:0x4 scope:local align:4 data:float +@5534 = .sdata2:0x8051F25C; // type:object size:0x4 scope:local align:4 data:float +@5535 = .sdata2:0x8051F260; // type:object size:0x4 scope:local align:4 data:float +@5536 = .sdata2:0x8051F264; // type:object size:0x4 scope:local align:4 data:float +@5537 = .sdata2:0x8051F268; // type:object size:0x4 scope:local align:4 data:float +@5538 = .sdata2:0x8051F26C; // type:object size:0x4 scope:local align:4 data:float +@5539 = .sdata2:0x8051F270; // type:object size:0x4 scope:local align:4 data:float +@5540 = .sdata2:0x8051F274; // type:object size:0x4 scope:local align:4 data:float +@5541 = .sdata2:0x8051F278; // type:object size:0x4 scope:local align:4 data:float +@5838 = .sdata2:0x8051F27C; // type:object size:0x4 scope:local align:4 data:float +@5839 = .sdata2:0x8051F280; // type:object size:0x4 scope:local align:4 data:float +@5841 = .sdata2:0x8051F284; // type:object size:0x4 scope:local align:4 data:float +@5843 = .sdata2:0x8051F288; // type:object size:0x8 scope:local align:8 data:double +@5960 = .sdata2:0x8051F290; // type:object size:0x4 scope:local align:4 data:float +@6117 = .sdata2:0x8051F294; // type:object size:0x4 scope:local align:4 data:float +@6118 = .sdata2:0x8051F298; // type:object size:0x4 scope:local align:4 data:float +@6119 = .sdata2:0x8051F29C; // type:object size:0x4 scope:local align:4 data:float +@6120 = .sdata2:0x8051F2A0; // type:object size:0x4 scope:local align:4 data:float +@6192 = .sdata2:0x8051F2A4; // type:object size:0x4 scope:local align:4 data:float +@6271 = .sdata2:0x8051F2A8; // type:object size:0x4 scope:local align:4 data:float +@6390 = .sdata2:0x8051F2AC; // type:object size:0x4 scope:local align:4 data:float +@6601 = .sdata2:0x8051F2B0; // type:object size:0x4 scope:local align:4 data:float +@6602 = .sdata2:0x8051F2B4; // type:object size:0x4 scope:local align:4 data:float +@6603 = .sdata2:0x8051F2B8; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x8051F2C0; // type:object size:0x8 scope:local align:8 data:double +@3589 = .sdata2:0x8051F2C8; // type:object size:0x8 scope:local align:8 data:double +@3617 = .sdata2:0x8051F2D0; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051F2D4; // type:object size:0x8 scope:local align:4 data:string +@3666 = .sdata2:0x8051F2DC; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x8051F2E0; // type:object size:0x4 scope:local align:4 data:float +@3728 = .sdata2:0x8051F2E4; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x8051F2E8; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051F2EC; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051F2F0; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x8051F2F4; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x8051F2F8; // type:object size:0x4 scope:local align:4 data:float +@3607 = .sdata2:0x8051F2FC; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x8051F300; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x8051F304; // type:object size:0x4 scope:local align:4 data:float +@3610 = .sdata2:0x8051F308; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051F30C; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051F310; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051F314; // type:object size:0x4 scope:local align:4 data:float +@3647 = .sdata2:0x8051F318; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051F31C; // type:object size:0x4 scope:local align:4 data:float +@3737 = .sdata2:0x8051F320; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051F324; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x8051F328; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051F32C; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata2:0x8051F330; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051F334; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051F338; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051F33C; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x8051F340; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051F344; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051F348; // type:object size:0x8 scope:local align:8 data:double +@4275 = .sdata2:0x8051F350; // type:object size:0x4 scope:local align:4 data:float +@4276 = .sdata2:0x8051F354; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051F358; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051F35C; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051F360; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051F364; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x8051F368; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051F36C; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051F370; // type:object size:0x5 scope:local align:4 data:string +@4014 = .sdata2:0x8051F378; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x8051F37C; // type:object size:0x5 scope:local align:4 data:string +@4063 = .sdata2:0x8051F384; // type:object size:0x7 scope:local align:4 data:string +@4076 = .sdata2:0x8051F38C; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051F390; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051F394; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051F398; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051F39C; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051F3A0; // type:object size:0x4 scope:local align:4 data:float +@4163 = .sdata2:0x8051F3A4; // type:object size:0x5 scope:local align:4 data:string +@4172 = .sdata2:0x8051F3AC; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata2:0x8051F3B0; // type:object size:0x7 scope:local align:4 data:string +@4281 = .sdata2:0x8051F3B8; // type:object size:0x4 scope:local align:4 data:float +@4282 = .sdata2:0x8051F3BC; // type:object size:0x4 scope:local align:4 data:float +@4283 = .sdata2:0x8051F3C0; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051F3C4; // type:object size:0x5 scope:local align:4 data:string +@4334 = .sdata2:0x8051F3CC; // type:object size:0x4 scope:local align:4 data:float +@4342 = .sdata2:0x8051F3D0; // type:object size:0x8 scope:local align:4 data:string +@4395 = .sdata2:0x8051F3D8; // type:object size:0x6 scope:local align:4 data:string +@4457 = .sdata2:0x8051F3E0; // type:object size:0x6 scope:local align:4 data:string +@3809 = .sdata2:0x8051F3E8; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051F3EC; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051F3F0; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051F3F4; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x8051F3F8; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051F3FC; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051F400; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051F404; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata2:0x8051F408; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051F40C; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x8051F410; // type:object size:0x4 scope:local align:4 data:float +@3820 = .sdata2:0x8051F414; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051F418; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051F41C; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x8051F420; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051F424; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051F428; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x8051F42C; // type:object size:0x4 scope:local align:4 data:float +@3850 = .sdata2:0x8051F430; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051F434; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051F438; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051F43C; // type:object size:0x6 scope:local align:4 data:string +@4268 = .sdata2:0x8051F444; // type:object size:0x6 scope:local align:4 data:string +@4269 = .sdata2:0x8051F44C; // type:object size:0x6 scope:local align:4 data:string +@4270 = .sdata2:0x8051F454; // type:object size:0x7 scope:local align:4 data:string +@4271 = .sdata2:0x8051F45C; // type:object size:0x7 scope:local align:4 data:string +@4272 = .sdata2:0x8051F464; // type:object size:0x7 scope:local align:4 data:string +@4273 = .sdata2:0x8051F46C; // type:object size:0x7 scope:local align:4 data:string +@4274 = .sdata2:0x8051F474; // type:object size:0x6 scope:local align:4 data:string +@4275 = .sdata2:0x8051F47C; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x8051F480; // type:object size:0x4 scope:local align:4 data:float +@4688 = .sdata2:0x8051F484; // type:object size:0x4 scope:local align:4 data:float +@4689 = .sdata2:0x8051F488; // type:object size:0x4 scope:local align:4 data:float +@4693 = .sdata2:0x8051F48C; // type:object size:0x4 scope:local align:4 data:float +@4695 = .sdata2:0x8051F490; // type:object size:0x8 scope:local align:8 data:double +@4753 = .sdata2:0x8051F498; // type:object size:0x4 scope:local align:4 data:float +@4943 = .sdata2:0x8051F49C; // type:object size:0x4 scope:local align:4 data:float +@4986 = .sdata2:0x8051F4A0; // type:object size:0x4 scope:local align:4 data:float +@5082 = .sdata2:0x8051F4A4; // type:object size:0x4 scope:local align:4 data:float +@5091 = .sdata2:0x8051F4A8; // type:object size:0x4 scope:local align:4 data:float +@5092 = .sdata2:0x8051F4AC; // type:object size:0x4 scope:local align:4 data:float +@5524 = .sdata2:0x8051F4B0; // type:object size:0x4 scope:local align:4 data:float +@5525 = .sdata2:0x8051F4B4; // type:object size:0x4 scope:local align:4 data:float +@5526 = .sdata2:0x8051F4B8; // type:object size:0x4 scope:local align:4 data:float +@5527 = .sdata2:0x8051F4BC; // type:object size:0x4 scope:local align:4 data:float +@5528 = .sdata2:0x8051F4C0; // type:object size:0x4 scope:local align:4 data:float +@5529 = .sdata2:0x8051F4C4; // type:object size:0x4 scope:local align:4 data:float +@5530 = .sdata2:0x8051F4C8; // type:object size:0x4 scope:local align:4 data:float +@5531 = .sdata2:0x8051F4D0; // type:object size:0x8 scope:local align:8 data:double +@5532 = .sdata2:0x8051F4D8; // type:object size:0x4 scope:local align:4 data:float +@5533 = .sdata2:0x8051F4DC; // type:object size:0x4 scope:local align:4 data:float +@5534 = .sdata2:0x8051F4E0; // type:object size:0x4 scope:local align:4 data:float +@5536 = .sdata2:0x8051F4E8; // type:object size:0x8 scope:local align:8 data:double +@6205 = .sdata2:0x8051F4F0; // type:object size:0x4 scope:local align:4 data:float +@6206 = .sdata2:0x8051F4F4; // type:object size:0x4 scope:local align:4 data:float +@6207 = .sdata2:0x8051F4F8; // type:object size:0x4 scope:local align:4 data:float +@6208 = .sdata2:0x8051F4FC; // type:object size:0x4 scope:local align:4 data:float +@6382 = .sdata2:0x8051F500; // type:object size:0x6 scope:local align:4 data:string +@6383 = .sdata2:0x8051F508; // type:object size:0x6 scope:local align:4 data:string +@6384 = .sdata2:0x8051F510; // type:object size:0x6 scope:local align:4 data:string +@6385 = .sdata2:0x8051F518; // type:object size:0x6 scope:local align:4 data:string +@6387 = .sdata2:0x8051F520; // type:object size:0x6 scope:local align:4 data:string +@6388 = .sdata2:0x8051F528; // type:object size:0x6 scope:local align:4 data:string +@6389 = .sdata2:0x8051F530; // type:object size:0x6 scope:local align:4 data:string +@6390 = .sdata2:0x8051F538; // type:object size:0x6 scope:local align:4 data:string +@6394 = .sdata2:0x8051F540; // type:object size:0x8 scope:local align:4 data:string +@6395 = .sdata2:0x8051F548; // type:object size:0x8 scope:local align:4 data:string +@6540 = .sdata2:0x8051F550; // type:object size:0x4 scope:local align:4 data:float +@6550 = .sdata2:0x8051F554; // type:object size:0x8 scope:local align:4 data:4byte +@6825 = .sdata2:0x8051F55C; // type:object size:0x4 scope:local align:4 data:float +@6902 = .sdata2:0x8051F560; // type:object size:0x5 scope:local align:4 data:string +@3828 = .sdata2:0x8051F568; // type:object size:0x5 scope:local align:4 data:string +@3859 = .sdata2:0x8051F570; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051F574; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051F578; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x8051F57C; // type:object size:0x5 scope:local align:4 data:string +@3897 = .sdata2:0x8051F584; // type:object size:0x7 scope:local align:4 data:string +@3937 = .sdata2:0x8051F58C; // type:object size:0x5 scope:local align:4 data:string +@3807 = .sdata2:0x8051F598; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051F59C; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x8051F5A0; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051F5A4; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051F5A8; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051F5AC; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x8051F5B0; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051F5B8; // type:object size:0x4 scope:local align:4 data:float +@4178 = .sdata2:0x8051F5BC; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051F5C0; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata2:0x8051F5C4; // type:object size:0x4 scope:local align:4 data:float +@4281 = .sdata2:0x8051F5C8; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata2:0x8051F5CC; // type:object size:0x4 scope:local align:4 data:float +@4420 = .sdata2:0x8051F5D0; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051F5D8; // type:object size:0x8 scope:local align:8 data:double +@4464 = .sdata2:0x8051F5E0; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x8051F5E4; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x8051F5E8; // type:object size:0x4 scope:local align:4 data:float +@4555 = .sdata2:0x8051F5EC; // type:object size:0x7 scope:local align:4 data:string +@4556 = .sdata2:0x8051F5F4; // type:object size:0x7 scope:local align:4 data:string +@4645 = .sdata2:0x8051F5FC; // type:object size:0x4 scope:local align:4 data:float +@4646 = .sdata2:0x8051F600; // type:object size:0x4 scope:local align:4 data:float +@4647 = .sdata2:0x8051F604; // type:object size:0x4 scope:local align:4 data:float +@4648 = .sdata2:0x8051F608; // type:object size:0x4 scope:local align:4 data:float +@4959 = .sdata2:0x8051F60C; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051F610; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051F614; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051F618; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata2:0x8051F620; // type:object size:0x8 scope:local align:4 data:string +@3409 = .sdata2:0x8051F628; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051F62C; // type:object size:0x8 scope:local align:4 data:string +@3863 = .sdata2:0x8051F634; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051F638; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051F63C; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x8051F640; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051F644; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051F648; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x8051F64C; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata2:0x8051F650; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata2:0x8051F654; // type:object size:0x8 scope:local align:4 data:string +@3335 = .sdata2:0x8051F65C; // type:object size:0x4 scope:local align:4 data:float +@3336 = .sdata2:0x8051F660; // type:object size:0x4 scope:local align:4 data:float +@3337 = .sdata2:0x8051F664; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata2:0x8051F668; // type:object size:0x8 scope:local align:4 data:string +@3097 = .sdata2:0x8051F670; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata2:0x8051F674; // type:object size:0x8 scope:local align:4 data:string +@3178 = .sdata2:0x8051F67C; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x8051F680; // type:object size:0x4 scope:local align:4 data:float +@3285 = .sdata2:0x8051F684; // type:object size:0x4 scope:local align:4 data:float +@3286 = .sdata2:0x8051F688; // type:object size:0x4 scope:local align:4 data:float +@3287 = .sdata2:0x8051F68C; // type:object size:0x4 scope:local align:4 data:float +@3288 = .sdata2:0x8051F690; // type:object size:0x4 scope:local align:4 data:float +@3290 = .sdata2:0x8051F698; // type:object size:0x8 scope:local align:8 data:double +@3358 = .sdata2:0x8051F6A0; // type:object size:0x4 scope:local align:4 data:float +@3359 = .sdata2:0x8051F6A4; // type:object size:0x4 scope:local align:4 data:float +@3360 = .sdata2:0x8051F6A8; // type:object size:0x4 scope:local align:4 data:float +@3448 = .sdata2:0x8051F6AC; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051F6B0; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x8051F6B4; // type:object size:0x4 scope:local align:4 data:float +@3825 = .sdata2:0x8051F6B8; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x8051F6C0; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051F6C4; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x8051F6C8; // type:object size:0x4 scope:local align:4 data:float +@3768 = .sdata2:0x8051F6D0; // type:object size:0x8 scope:local align:8 data:double +@2847 = .sdata2:0x8051F6D8; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x8051F6E0; // type:object size:0x4 scope:local align:4 data:float +@3117 = .sdata2:0x8051F6E4; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x8051F6E8; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata2:0x8051F6EC; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x8051F6F0; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x8051F6F4; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x8051F6F8; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x8051F6FC; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x8051F700; // type:object size:0x4 scope:local align:4 data:float +@3466 = .sdata2:0x8051F704; // type:object size:0x4 scope:local align:4 data:float +@3467 = .sdata2:0x8051F708; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x8051F70C; // type:object size:0x4 scope:local align:4 data:float +@3469 = .sdata2:0x8051F710; // type:object size:0x5 scope:local align:4 data:string +@3470 = .sdata2:0x8051F718; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x8051F71C; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x8051F720; // type:object size:0x8 scope:local align:4 data:string +@3475 = .sdata2:0x8051F728; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x8051F72C; // type:object size:0x4 scope:local align:4 data:float +@3477 = .sdata2:0x8051F730; // type:object size:0x6 scope:local align:4 data:string +@3478 = .sdata2:0x8051F738; // type:object size:0x4 scope:local align:4 data:float +@3479 = .sdata2:0x8051F73C; // type:object size:0x4 scope:local align:4 data:float +@3480 = .sdata2:0x8051F740; // type:object size:0x6 scope:local align:4 +@3481 = .sdata2:0x8051F748; // type:object size:0x6 scope:local align:4 +@3482 = .sdata2:0x8051F750; // type:object size:0x6 scope:local align:4 +@3483 = .sdata2:0x8051F758; // type:object size:0x6 scope:local align:4 +@3507 = .sdata2:0x8051F760; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata2:0x8051F764; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata2:0x8051F768; // type:object size:0x4 scope:local align:4 data:float +@3512 = .sdata2:0x8051F76C; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata2:0x8051F770; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata2:0x8051F774; // type:object size:0x4 scope:local align:4 data:float +@3517 = .sdata2:0x8051F778; // type:object size:0x4 scope:local align:4 data:float +@3519 = .sdata2:0x8051F77C; // type:object size:0x4 scope:local align:4 data:float +@3520 = .sdata2:0x8051F780; // type:object size:0x4 scope:local align:4 data:float +@3522 = .sdata2:0x8051F784; // type:object size:0x4 scope:local align:4 data:float +@3523 = .sdata2:0x8051F788; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata2:0x8051F78C; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x8051F790; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051F794; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x8051F798; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata2:0x8051F79C; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051F7A0; // type:object size:0x4 scope:local align:4 data:float +@3539 = .sdata2:0x8051F7A4; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051F7A8; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x8051F7AC; // type:object size:0x6 scope:local align:4 +@3600 = .sdata2:0x8051F7B4; // type:object size:0x6 scope:local align:4 +@3601 = .sdata2:0x8051F7BC; // type:object size:0x6 scope:local align:4 +@3602 = .sdata2:0x8051F7C4; // type:object size:0x5 scope:local align:4 +@3603 = .sdata2:0x8051F7CC; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051F7D0; // type:object size:0x4 scope:local align:4 data:float +@3623 = .sdata2:0x8051F7D4; // type:object size:0x6 scope:local align:4 +@3624 = .sdata2:0x8051F7DC; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051F7E0; // type:object size:0x6 scope:local align:4 +@3626 = .sdata2:0x8051F7E8; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051F7EC; // type:object size:0x6 scope:local align:4 +@3631 = .sdata2:0x8051F7F4; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051F7F8; // type:object size:0x8 scope:local align:8 data:double +@3911 = .sdata2:0x8051F800; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051F804; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051F808; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051F80C; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051F810; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051F818; // type:object size:0x8 scope:local align:8 data:double +@4033 = .sdata2:0x8051F820; // type:object size:0x1 scope:local align:4 +@4434 = .sdata2:0x8051F824; // type:object size:0x4 scope:local align:4 data:float +@4892 = .sdata2:0x8051F828; // type:object size:0x4 scope:local align:4 data:float +@4893 = .sdata2:0x8051F82C; // type:object size:0x4 scope:local align:4 data:float +@4894 = .sdata2:0x8051F830; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata2:0x8051F838; // type:object size:0x4 scope:local align:4 data:float +@3367 = .sdata2:0x8051F83C; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x8051F840; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x8051F844; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051F848; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x8051F84C; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x8051F850; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x8051F858; // type:object size:0x8 scope:local align:8 data:double +@3756 = .sdata2:0x8051F860; // type:object size:0x8 scope:local align:4 data:string +@3757 = .sdata2:0x8051F868; // type:object size:0x8 scope:local align:4 data:string +@3758 = .sdata2:0x8051F870; // type:object size:0x8 scope:local align:4 data:string +@3868 = .sdata2:0x8051F878; // type:object size:0x8 scope:local align:8 data:double +@2810 = .sdata2:0x8051F880; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x8051F884; // type:object size:0x4 scope:local align:4 data:float +@2817 = .sdata2:0x8051F888; // type:object size:0x8 scope:local align:8 data:double +@3086 = .sdata2:0x8051F890; // type:object size:0x4 scope:local align:4 data:float +@3087 = .sdata2:0x8051F894; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x8051F898; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x8051F8A0; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x8051F8A4; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051F8A8; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x8051F8AC; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x8051F8B0; // type:object size:0x4 scope:local align:4 data:float +@4580 = .sdata2:0x8051F8B4; // type:object size:0x4 scope:local align:4 data:float +@4864 = .sdata2:0x8051F8B8; // type:object size:0x4 scope:local align:4 data:float +@4865 = .sdata2:0x8051F8BC; // type:object size:0x4 scope:local align:4 data:float +@4866 = .sdata2:0x8051F8C0; // type:object size:0x4 scope:local align:4 data:float +@4867 = .sdata2:0x8051F8C4; // type:object size:0x4 scope:local align:4 data:float +@4869 = .sdata2:0x8051F8C8; // type:object size:0x8 scope:local align:8 data:double +@2994 = .sdata2:0x8051F8D0; // type:object size:0x4 scope:local align:4 data:float +@2995 = .sdata2:0x8051F8D4; // type:object size:0x4 scope:local align:4 data:float +@2996 = .sdata2:0x8051F8D8; // type:object size:0x4 scope:local align:4 data:float +@2997 = .sdata2:0x8051F8DC; // type:object size:0x4 scope:local align:4 data:float +@2998 = .sdata2:0x8051F8E0; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x8051F8E4; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x8051F8E8; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x8051F8EC; // type:object size:0x4 scope:local align:4 data:float +@3002 = .sdata2:0x8051F8F0; // type:object size:0x4 scope:local align:4 data:float +@3003 = .sdata2:0x8051F8F4; // type:object size:0x4 scope:local align:4 data:float +@3004 = .sdata2:0x8051F8F8; // type:object size:0x4 scope:local align:4 data:float +@3005 = .sdata2:0x8051F8FC; // type:object size:0x4 scope:local align:4 data:float +@3006 = .sdata2:0x8051F900; // type:object size:0x4 scope:local align:4 data:float +@3007 = .sdata2:0x8051F904; // type:object size:0x4 scope:local align:4 data:float +@3008 = .sdata2:0x8051F908; // type:object size:0x4 scope:local align:4 data:float +@3009 = .sdata2:0x8051F90C; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x8051F910; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x8051F914; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x8051F918; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x8051F91C; // type:object size:0x4 scope:local align:4 data:float +@3014 = .sdata2:0x8051F920; // type:object size:0x4 scope:local align:4 data:float +@3015 = .sdata2:0x8051F924; // type:object size:0x4 scope:local align:4 data:float +@3016 = .sdata2:0x8051F928; // type:object size:0x4 scope:local align:4 data:float +@3017 = .sdata2:0x8051F92C; // type:object size:0x4 scope:local align:4 data:float +@3018 = .sdata2:0x8051F930; // type:object size:0x4 scope:local align:4 data:float +@3019 = .sdata2:0x8051F934; // type:object size:0x4 scope:local align:4 data:float +@3020 = .sdata2:0x8051F938; // type:object size:0x4 scope:local align:4 data:float +@3021 = .sdata2:0x8051F93C; // type:object size:0x4 scope:local align:4 data:float +@3347 = .sdata2:0x8051F940; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x8051F944; // type:object size:0x4 scope:local align:4 data:float +@3349 = .sdata2:0x8051F948; // type:object size:0x4 scope:local align:4 data:float +@3350 = .sdata2:0x8051F94C; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x8051F950; // type:object size:0x4 scope:local align:4 data:float +@3352 = .sdata2:0x8051F954; // type:object size:0x4 scope:local align:4 data:float +@3353 = .sdata2:0x8051F958; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata2:0x8051F95C; // type:object size:0x4 scope:local align:4 data:float +@3355 = .sdata2:0x8051F960; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata2:0x8051F964; // type:object size:0x4 scope:local align:4 data:float +@3357 = .sdata2:0x8051F968; // type:object size:0x4 scope:local align:4 data:float +@3683 = .sdata2:0x8051F96C; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051F970; // type:object size:0x4 scope:local align:4 data:float +@3685 = .sdata2:0x8051F974; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051F978; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051F97C; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051F980; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x8051F984; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051F988; // type:object size:0x8 scope:local align:8 data:double +@4136 = .sdata2:0x8051F990; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051F994; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051F998; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051F99C; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051F9A0; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051F9A4; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051F9A8; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051F9AC; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051F9B0; // type:object size:0x4 scope:local align:4 data:float +@4145 = .sdata2:0x8051F9B4; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051F9B8; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051F9BC; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x8051F9C0; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051F9C4; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051F9C8; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051F9CC; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051F9D0; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051F9D4; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x8051F9D8; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x8051F9DC; // type:object size:0x4 scope:local align:4 data:float +@2678 = .sdata2:0x8051F9E0; // type:object size:0x4 scope:local align:4 data:float +@2679 = .sdata2:0x8051F9E4; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x8051F9E8; // type:object size:0x8 scope:local align:8 data:double +@2769 = .sdata2:0x8051F9F0; // type:object size:0x4 scope:local align:4 data:float +@2837 = .sdata2:0x8051F9F4; // type:object size:0x4 scope:local align:4 data:float +kFadeTime__Q23ebi8E2DFader = .sdata2:0x8051F9F8; // type:object size:0x4 scope:global align:4 data:float +@3562 = .sdata2:0x8051F9FC; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata2:0x8051FA00; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051FA04; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051FA08; // type:object size:0x8 scope:local align:8 data:double +@3722 = .sdata2:0x8051FA10; // type:object size:0x8 scope:local align:8 data:double +@3823 = .sdata2:0x8051FA18; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x8051FA1C; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051FA20; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051FA24; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051FA28; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051FA2C; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051FA30; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051FA34; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051FA38; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051FA3C; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051FA40; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata2:0x8051FA44; // type:object size:0x4 scope:local align:4 data:float +@4275 = .sdata2:0x8051FA48; // type:object size:0x4 scope:local align:4 data:float +@4744 = .sdata2:0x8051FA4C; // type:object size:0x8 scope:local align:4 data:string +@3813 = .sdata2:0x8051FA58; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051FA5C; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051FA60; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x8051FA64; // type:object size:0x4 scope:local align:4 data:float +@4036 = .sdata2:0x8051FA68; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x8051FA6C; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051FA70; // type:object size:0x8 scope:local align:8 data:double +@3907 = .sdata2:0x8051FA78; // type:object size:0x8 scope:local align:4 data:string +@3912 = .sdata2:0x8051FA80; // type:object size:0x8 scope:local align:4 data:string +@3998 = .sdata2:0x8051FA88; // type:object size:0x4 scope:local align:4 data:float +@4288 = .sdata2:0x8051FA8C; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051FA90; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x8051FA98; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x8051FA9C; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051FAA0; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051FAA8; // type:object size:0x8 scope:local align:8 data:double +@3763 = .sdata2:0x8051FAB0; // type:object size:0x8 scope:local align:8 data:double +@3877 = .sdata2:0x8051FAB8; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051FABC; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051FAC0; // type:object size:0x8 scope:local align:4 data:string +@4105 = .sdata2:0x8051FAC8; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051FACC; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata2:0x8051FAD0; // type:object size:0x4 scope:local align:4 data:float +@4577 = .sdata2:0x8051FAD4; // type:object size:0x4 scope:local align:4 data:float +@4578 = .sdata2:0x8051FAD8; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051FAE0; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x8051FAE4; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051FAE8; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051FAF0; // type:object size:0x8 scope:local align:8 data:double +@3798 = .sdata2:0x8051FAF8; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051FAFC; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x8051FB00; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x8051FB04; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051FB08; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051FB10; // type:object size:0x8 scope:local align:8 data:double +@3809 = .sdata2:0x8051FB18; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051FB1C; // type:object size:0x4 scope:local align:4 data:float +@4233 = .sdata2:0x8051FB20; // type:object size:0x4 scope:local align:4 data:float +@4234 = .sdata2:0x8051FB24; // type:object size:0x4 scope:local align:4 data:float +@4235 = .sdata2:0x8051FB28; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x8051FB2C; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x8051FB30; // type:object size:0x4 scope:local align:4 data:float +@4605 = .sdata2:0x8051FB34; // type:object size:0x4 scope:local align:4 data:float +@4606 = .sdata2:0x8051FB38; // type:object size:0x4 scope:local align:4 data:float +@4749 = .sdata2:0x8051FB3C; // type:object size:0x4 scope:local align:4 data:float +@4750 = .sdata2:0x8051FB40; // type:object size:0x4 scope:local align:4 data:float +@4752 = .sdata2:0x8051FB48; // type:object size:0x8 scope:local align:8 data:double +@5299 = .sdata2:0x8051FB50; // type:object size:0x4 scope:local align:4 data:float +@5358 = .sdata2:0x8051FB54; // type:object size:0x4 scope:local align:4 data:float +@5359 = .sdata2:0x8051FB58; // type:object size:0x4 scope:local align:4 data:float +@5360 = .sdata2:0x8051FB5C; // type:object size:0x4 scope:local align:4 data:float +@5646 = .sdata2:0x8051FB60; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata2:0x8051FB64; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051FB68; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051FB6C; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051FB70; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051FB74; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x8051FB78; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051FB7C; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051FB80; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051FB88; // type:object size:0x8 scope:local align:8 data:double +@3954 = .sdata2:0x8051FB90; // type:object size:0x4 scope:local align:4 data:float +@3955 = .sdata2:0x8051FB94; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051FB98; // type:object size:0x8 scope:local align:8 data:double +@3817 = .sdata2:0x8051FBA0; // type:object size:0x8 scope:local align:4 data:string +@3823 = .sdata2:0x8051FBA8; // type:object size:0x8 scope:local align:4 data:string +@4056 = .sdata2:0x8051FBB0; // type:object size:0x4 scope:local align:4 data:float +@4181 = .sdata2:0x8051FBB4; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051FBB8; // type:object size:0x8 scope:local align:8 data:double +@4496 = .sdata2:0x8051FBC0; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata2:0x8051FBC4; // type:object size:0x4 scope:local align:4 data:float +@3709 = .sdata2:0x8051FBC8; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x8051FBCC; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051FBD0; // type:object size:0x4 scope:local align:4 data:float +@3753 = .sdata2:0x8051FBD4; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051FBD8; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051FBE0; // type:object size:0x8 scope:local align:8 data:double +@4004 = .sdata2:0x8051FBE8; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x8051FBEC; // type:object size:0x4 scope:local align:4 data:float +@4007 = .sdata2:0x8051FBF0; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051FBF4; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051FBF8; // type:object size:0x8 scope:local align:4 data:string +@3921 = .sdata2:0x8051FC00; // type:object size:0x8 scope:local align:4 data:string +@4013 = .sdata2:0x8051FC08; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051FC0C; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x8051FC10; // type:object size:0x4 scope:local align:4 data:float +@4765 = .sdata2:0x8051FC14; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051FC18; // type:object size:0x8 scope:local align:4 data:string +@2683 = .sdata2:0x8051FC20; // type:object size:0x8 scope:local align:4 data:string +@2684 = .sdata2:0x8051FC28; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x8051FC2C; // type:object size:0x4 scope:local align:4 data:float +@2686 = .sdata2:0x8051FC30; // type:object size:0x4 scope:local align:4 data:float +@2687 = .sdata2:0x8051FC34; // type:object size:0x8 scope:local align:4 data:string +@2688 = .sdata2:0x8051FC3C; // type:object size:0x4 scope:local align:4 data:float +@2689 = .sdata2:0x8051FC40; // type:object size:0x6 scope:local align:4 +@2690 = .sdata2:0x8051FC48; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x8051FC4C; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x8051FC50; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x8051FC54; // type:object size:0x6 scope:local align:4 +@3349 = .sdata2:0x8051FC60; // type:object size:0x4 scope:local align:4 data:float +@3364 = .sdata2:0x8051FC64; // type:object size:0x4 scope:local align:4 data:float +@3365 = .sdata2:0x8051FC68; // type:object size:0x4 scope:local align:4 data:float +@3367 = .sdata2:0x8051FC6C; // type:object size:0x4 scope:local align:4 data:float +@3369 = .sdata2:0x8051FC70; // type:object size:0x4 scope:local align:4 data:float +@3371 = .sdata2:0x8051FC74; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata2:0x8051FC78; // type:object size:0x4 scope:local align:4 data:float +@3374 = .sdata2:0x8051FC7C; // type:object size:0x4 scope:local align:4 data:float +@3375 = .sdata2:0x8051FC80; // type:object size:0x4 scope:local align:4 data:float +@3377 = .sdata2:0x8051FC84; // type:object size:0x4 scope:local align:4 data:float +@3379 = .sdata2:0x8051FC88; // type:object size:0x4 scope:local align:4 data:float +@3380 = .sdata2:0x8051FC8C; // type:object size:0x4 scope:local align:4 data:float +@3382 = .sdata2:0x8051FC90; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x8051FC98; // type:object size:0x8 scope:local align:8 data:double +@3611 = .sdata2:0x8051FCA0; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051FCA4; // type:object size:0x6 scope:local align:4 data:string +@3640 = .sdata2:0x8051FCAC; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051FCB0; // type:object size:0x4 scope:local align:4 data:float +@3644 = .sdata2:0x8051FCB4; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051FCB8; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051FCBC; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x8051FCC0; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051FCC4; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051FCC8; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051FCCC; // type:object size:0x4 scope:local align:4 data:float +@3663 = .sdata2:0x8051FCD0; // type:object size:0x4 scope:local align:4 data:float +@4285 = .sdata2:0x8051FCD8; // type:object size:0x8 scope:local align:8 data:double +@4418 = .sdata2:0x8051FCE0; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata2:0x8051FCE4; // type:object size:0x4 scope:local align:4 data:float +@4420 = .sdata2:0x8051FCE8; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x8051FCEC; // type:object size:0x4 scope:local align:4 data:float +@5335 = .sdata2:0x8051FCF0; // type:object size:0x4 scope:local align:4 data:float +@5336 = .sdata2:0x8051FCF4; // type:object size:0x4 scope:local align:4 data:float +@5337 = .sdata2:0x8051FCF8; // type:object size:0x8 scope:local align:4 data:string +@3375 = .sdata2:0x8051FD00; // type:object size:0x4 scope:local align:4 data:float +@3376 = .sdata2:0x8051FD04; // type:object size:0x4 scope:local align:4 data:float +@3377 = .sdata2:0x8051FD08; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata2:0x8051FD0C; // type:object size:0x6 scope:local align:4 data:string +@3398 = .sdata2:0x8051FD14; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x8051FD18; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051FD1C; // type:object size:0x4 scope:local align:4 data:float +@3402 = .sdata2:0x8051FD20; // type:object size:0x4 scope:local align:4 data:float +@3405 = .sdata2:0x8051FD24; // type:object size:0x4 scope:local align:4 data:float +@3407 = .sdata2:0x8051FD28; // type:object size:0x4 scope:local align:4 data:float +@3408 = .sdata2:0x8051FD2C; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8051FD30; // type:object size:0x4 scope:local align:4 data:float +@3412 = .sdata2:0x8051FD34; // type:object size:0x4 scope:local align:4 data:float +@3415 = .sdata2:0x8051FD38; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x8051FD3C; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x8051FD40; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x8051FD44; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051FD48; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x8051FD4C; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x8051FD50; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051FD54; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051FD58; // type:object size:0x8 scope:local align:8 data:double +@4058 = .sdata2:0x8051FD60; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata2:0x8051FD64; // type:object size:0x4 scope:local align:4 data:float +@3375 = .sdata2:0x8051FD68; // type:object size:0x4 scope:local align:4 data:float +@3376 = .sdata2:0x8051FD6C; // type:object size:0x4 scope:local align:4 data:float +@3377 = .sdata2:0x8051FD70; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x8051FD74; // type:object size:0x6 scope:local align:4 data:string +@3400 = .sdata2:0x8051FD7C; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051FD80; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata2:0x8051FD84; // type:object size:0x4 scope:local align:4 data:float +@3404 = .sdata2:0x8051FD88; // type:object size:0x4 scope:local align:4 data:float +@3406 = .sdata2:0x8051FD8C; // type:object size:0x4 scope:local align:4 data:float +@3408 = .sdata2:0x8051FD90; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8051FD94; // type:object size:0x4 scope:local align:4 data:float +@3413 = .sdata2:0x8051FD98; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x8051FD9C; // type:object size:0x4 scope:local align:4 data:float +@3416 = .sdata2:0x8051FDA0; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata2:0x8051FDA4; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x8051FDA8; // type:object size:0x4 scope:local align:4 data:float +@3423 = .sdata2:0x8051FDAC; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x8051FDB0; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x8051FDB4; // type:object size:0x4 scope:local align:4 data:float +@3428 = .sdata2:0x8051FDB8; // type:object size:0x4 scope:local align:4 data:float +@3445 = .sdata2:0x8051FDBC; // type:object size:0x4 scope:local align:4 data:float +@3447 = .sdata2:0x8051FDC0; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata2:0x8051FDC4; // type:object size:0x4 scope:local align:4 data:float +@3743 = .sdata2:0x8051FDC8; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051FDCC; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x8051FDD0; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata2:0x8051FDD4; // type:object size:0x4 scope:local align:4 data:float +@3749 = .sdata2:0x8051FDD8; // type:object size:0x8 scope:local align:8 data:double +@3766 = .sdata2:0x8051FDE0; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051FDE4; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051FDE8; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051FDEC; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051FDF0; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051FDF8; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051FDFC; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x8051FE00; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051FE04; // type:object size:0x4 scope:local align:4 data:float +@3704 = .sdata2:0x8051FE08; // type:object size:0x8 scope:local align:8 data:double +kFadeOutTime__Q23ebi13TMainTitleMgr = .sdata2:0x8051FE10; // type:object size:0x4 scope:global align:4 data:float +@4043 = .sdata2:0x8051FE14; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051FE18; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051FE1C; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata2:0x8051FE20; // type:object size:0x8 scope:local align:8 data:double +@4273 = .sdata2:0x8051FE28; // type:object size:0x8 scope:local align:4 data:string +@3054 = .sdata2:0x8051FE30; // type:object size:0x4 scope:local align:4 data:float +@3027 = .sdata2:0x8051FE38; // type:object size:0x7 scope:local align:4 data:string +@3029 = .sdata2:0x8051FE40; // type:object size:0x4 scope:local align:4 data:float +@3030 = .sdata2:0x8051FE44; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x8051FE48; // type:object size:0x8 scope:local align:4 data:string +@3207 = .sdata2:0x8051FE50; // type:object size:0x4 scope:local align:4 data:float +@2791 = .sdata2:0x8051FE58; // type:object size:0x1 scope:local align:4 +@3747 = .sdata2:0x8051FE60; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x8051FE64; // type:object size:0x4 scope:local align:4 data:float +@3767 = .sdata2:0x8051FE68; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051FE6C; // type:object size:0x4 scope:local align:4 data:float +@4177 = .sdata2:0x8051FE70; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051FE74; // type:object size:0x4 scope:local align:4 data:float +@4347 = .sdata2:0x8051FE78; // type:object size:0x4 scope:local align:4 data:float +@4348 = .sdata2:0x8051FE7C; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x8051FE80; // type:object size:0x4 scope:local align:4 data:float +@4426 = .sdata2:0x8051FE88; // type:object size:0x8 scope:local align:8 data:double +@4434 = .sdata2:0x8051FE90; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x8051FE94; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x8051FE98; // type:object size:0x7 scope:local align:4 data:string +@3852 = .sdata2:0x8051FEA0; // type:object size:0x8 scope:local align:4 data:string +@4026 = .sdata2:0x8051FEA8; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051FEAC; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x8051FEB0; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x8051FEB4; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051FEB8; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051FEBC; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051FEC0; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051FEC4; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051FEC8; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x8051FECC; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051FED0; // type:object size:0x4 scope:local align:4 data:float +@3979 = .sdata2:0x8051FED4; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051FED8; // type:object size:0x4 scope:local align:4 data:float +@4079 = .sdata2:0x8051FEDC; // type:object size:0x4 scope:local align:4 data:float +@4080 = .sdata2:0x8051FEE0; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051FEE4; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051FEE8; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051FEF0; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x8051FEF4; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x8051FEF8; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x8051FEFC; // type:object size:0x7 scope:local align:4 data:string +@4441 = .sdata2:0x8051FF04; // type:object size:0x4 scope:local align:4 data:float +@4442 = .sdata2:0x8051FF08; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x8051FF0C; // type:object size:0x4 scope:local align:4 data:float +@4445 = .sdata2:0x8051FF10; // type:object size:0x4 scope:local align:4 data:float +@5179 = .sdata2:0x8051FF14; // type:object size:0x4 scope:local align:4 data:float +@5180 = .sdata2:0x8051FF18; // type:object size:0x4 scope:local align:4 data:float +@5181 = .sdata2:0x8051FF1C; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata2:0x8051FF20; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata2:0x8051FF24; // type:object size:0x4 scope:local align:4 data:float +@5184 = .sdata2:0x8051FF28; // type:object size:0x4 scope:local align:4 data:float +@5185 = .sdata2:0x8051FF2C; // type:object size:0x4 scope:local align:4 data:float +@5186 = .sdata2:0x8051FF30; // type:object size:0x4 scope:local align:4 data:float +@5187 = .sdata2:0x8051FF34; // type:object size:0x4 scope:local align:4 data:float +@5188 = .sdata2:0x8051FF38; // type:object size:0x4 scope:local align:4 data:float +@5189 = .sdata2:0x8051FF3C; // type:object size:0x4 scope:local align:4 data:float +@5191 = .sdata2:0x8051FF40; // type:object size:0x8 scope:local align:8 data:double +@5280 = .sdata2:0x8051FF48; // type:object size:0x8 scope:local align:8 data:double +@5384 = .sdata2:0x8051FF50; // type:object size:0x4 scope:local align:4 data:float +@5385 = .sdata2:0x8051FF54; // type:object size:0x4 scope:local align:4 data:float +@5386 = .sdata2:0x8051FF58; // type:object size:0x4 scope:local align:4 data:float +@5501 = .sdata2:0x8051FF5C; // type:object size:0x4 scope:local align:4 data:float +@5502 = .sdata2:0x8051FF60; // type:object size:0x4 scope:local align:4 data:float +@5571 = .sdata2:0x8051FF64; // type:object size:0x4 scope:local align:4 data:float +@5880 = .sdata2:0x8051FF68; // type:object size:0x4 scope:local align:4 data:float +@5881 = .sdata2:0x8051FF6C; // type:object size:0x4 scope:local align:4 data:float +@5987 = .sdata2:0x8051FF70; // type:object size:0x4 scope:local align:4 data:float +@6147 = .sdata2:0x8051FF74; // type:object size:0x4 scope:local align:4 data:float +@6187 = .sdata2:0x8051FF78; // type:object size:0x4 scope:local align:4 data:float +@6289 = .sdata2:0x8051FF7C; // type:object size:0x4 scope:local align:4 data:float +@6290 = .sdata2:0x8051FF80; // type:object size:0x4 scope:local align:4 data:float +@6291 = .sdata2:0x8051FF84; // type:object size:0x4 scope:local align:4 data:float +@6292 = .sdata2:0x8051FF88; // type:object size:0x4 scope:local align:4 data:float +@6293 = .sdata2:0x8051FF8C; // type:object size:0x4 scope:local align:4 data:float +@6294 = .sdata2:0x8051FF90; // type:object size:0x4 scope:local align:4 data:float +@6295 = .sdata2:0x8051FF94; // type:object size:0x4 scope:local align:4 data:float +@6296 = .sdata2:0x8051FF98; // type:object size:0x4 scope:local align:4 data:float +@6297 = .sdata2:0x8051FF9C; // type:object size:0x4 scope:local align:4 data:float +@6298 = .sdata2:0x8051FFA0; // type:object size:0x4 scope:local align:4 data:float +@6299 = .sdata2:0x8051FFA4; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051FFA8; // type:object size:0x4 scope:local align:4 data:float +@4079 = .sdata2:0x8051FFB0; // type:object size:0x8 scope:local align:8 data:double +@4147 = .sdata2:0x8051FFB8; // type:object size:0x4 scope:local align:4 data:float +@4337 = .sdata2:0x8051FFBC; // type:object size:0x4 scope:local align:4 data:float +@4339 = .sdata2:0x8051FFC0; // type:object size:0x8 scope:local align:8 data:double +@4353 = .sdata2:0x8051FFC8; // type:object size:0x4 scope:local align:4 data:float +@4354 = .sdata2:0x8051FFCC; // type:object size:0x4 scope:local align:4 data:float +@4688 = .sdata2:0x8051FFD0; // type:object size:0x4 scope:local align:4 data:float +@4689 = .sdata2:0x8051FFD4; // type:object size:0x4 scope:local align:4 data:float +@4748 = .sdata2:0x8051FFD8; // type:object size:0x4 scope:local align:4 data:float +@4831 = .sdata2:0x8051FFDC; // type:object size:0x4 scope:local align:4 data:float +@4832 = .sdata2:0x8051FFE0; // type:object size:0x4 scope:local align:4 data:float +@4833 = .sdata2:0x8051FFE4; // type:object size:0x4 scope:local align:4 data:float +@4834 = .sdata2:0x8051FFE8; // type:object size:0x4 scope:local align:4 data:float +@4835 = .sdata2:0x8051FFEC; // type:object size:0x4 scope:local align:4 data:float +@4836 = .sdata2:0x8051FFF0; // type:object size:0x4 scope:local align:4 data:float +@4837 = .sdata2:0x8051FFF4; // type:object size:0x4 scope:local align:4 data:float +@4838 = .sdata2:0x8051FFF8; // type:object size:0x4 scope:local align:4 data:float +@4839 = .sdata2:0x8051FFFC; // type:object size:0x4 scope:local align:4 data:float +@4840 = .sdata2:0x80520000; // type:object size:0x4 scope:local align:4 data:float +@4891 = .sdata2:0x80520004; // type:object size:0x4 scope:local align:4 data:float +@4892 = .sdata2:0x80520008; // type:object size:0x4 scope:local align:4 data:float +@4908 = .sdata2:0x8052000C; // type:object size:0x7 scope:local align:4 data:string +@4910 = .sdata2:0x80520014; // type:object size:0x1 scope:local align:4 +@4975 = .sdata2:0x80520018; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata2:0x8052001C; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata2:0x80520020; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata2:0x80520024; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata2:0x80520028; // type:object size:0x4 scope:local align:4 data:float +@4980 = .sdata2:0x8052002C; // type:object size:0x4 scope:local align:4 data:float +@4981 = .sdata2:0x80520030; // type:object size:0x4 scope:local align:4 data:float +@4982 = .sdata2:0x80520034; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x80520038; // type:object size:0x4 scope:local align:4 data:float +@4775 = .sdata2:0x8052003C; // type:object size:0x4 scope:local align:4 data:float +@5239 = .sdata2:0x80520040; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x80520048; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8052004C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x80520050; // type:object size:0x8 scope:local align:8 data:double +@3477 = .sdata2:0x80520058; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x8052005C; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x80520060; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x80520068; // type:object size:0x8 scope:local align:8 data:double +@3760 = .sdata2:0x80520070; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x80520074; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x80520078; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8052007C; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x80520080; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x80520088; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8052008C; // type:object size:0x4 scope:local align:4 data:float +@4074 = .sdata2:0x80520090; // type:object size:0x8 scope:local align:8 data:double +@4191 = .sdata2:0x80520098; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata2:0x8052009C; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata2:0x805200A0; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x805200A8; // type:object size:0x4 scope:local align:4 data:float +@3996 = .sdata2:0x805200AC; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x805200B0; // type:object size:0x4 scope:local align:4 data:float +@4085 = .sdata2:0x805200B8; // type:object size:0x8 scope:local align:8 data:double +@4437 = .sdata2:0x805200C0; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x805200C8; // type:object size:0x8 scope:local align:8 data:double +@4612 = .sdata2:0x805200D0; // type:object size:0x4 scope:local align:4 data:float +@4635 = .sdata2:0x805200D4; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x805200D8; // type:object size:0x4 scope:local align:4 data:float +@4887 = .sdata2:0x805200DC; // type:object size:0x4 scope:local align:4 data:float +@4888 = .sdata2:0x805200E0; // type:object size:0x4 scope:local align:4 data:float +@4889 = .sdata2:0x805200E4; // type:object size:0x4 scope:local align:4 data:float +@4890 = .sdata2:0x805200E8; // type:object size:0x4 scope:local align:4 data:float +@5085 = .sdata2:0x805200EC; // type:object size:0x4 scope:local align:4 data:float +@5563 = .sdata2:0x805200F0; // type:object size:0x4 scope:local align:4 data:float +@5578 = .sdata2:0x805200F4; // type:object size:0x4 scope:local align:4 data:float +@5643 = .sdata2:0x805200F8; // type:object size:0x4 scope:local align:4 data:float +@5644 = .sdata2:0x805200FC; // type:object size:0x4 scope:local align:4 data:float +@5960 = .sdata2:0x80520100; // type:object size:0x1 scope:local align:4 +@6311 = .sdata2:0x80520104; // type:object size:0x7 scope:local align:4 data:string +@6312 = .sdata2:0x8052010C; // type:object size:0x6 scope:local align:4 data:string +@6313 = .sdata2:0x80520114; // type:object size:0x4 scope:local align:4 data:float +@6369 = .sdata2:0x80520118; // type:object size:0x4 scope:local align:4 data:float +@6371 = .sdata2:0x8052011C; // type:object size:0x4 scope:local align:4 data:float +@6373 = .sdata2:0x80520120; // type:object size:0x4 scope:local align:4 data:float +@6375 = .sdata2:0x80520124; // type:object size:0x4 scope:local align:4 data:float +@6377 = .sdata2:0x80520128; // type:object size:0x4 scope:local align:4 data:float +@6379 = .sdata2:0x8052012C; // type:object size:0x4 scope:local align:4 data:float +@6381 = .sdata2:0x80520130; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata2:0x80520134; // type:object size:0x4 scope:local align:4 data:float +@6403 = .sdata2:0x80520138; // type:object size:0x4 scope:local align:4 data:float +@6405 = .sdata2:0x8052013C; // type:object size:0x4 scope:local align:4 data:float +@6407 = .sdata2:0x80520140; // type:object size:0x4 scope:local align:4 data:float +@6410 = .sdata2:0x80520144; // type:object size:0x4 scope:local align:4 data:float +@6433 = .sdata2:0x80520148; // type:object size:0x4 scope:local align:4 data:float +@6438 = .sdata2:0x8052014C; // type:object size:0x4 scope:local align:4 data:float +@6443 = .sdata2:0x80520150; // type:object size:0x4 scope:local align:4 data:float +@6460 = .sdata2:0x80520154; // type:object size:0x4 scope:local align:4 data:float +@6461 = .sdata2:0x80520158; // type:object size:0x4 scope:local align:4 data:float +@6462 = .sdata2:0x8052015C; // type:object size:0x4 scope:local align:4 data:float +@6463 = .sdata2:0x80520160; // type:object size:0x4 scope:local align:4 data:float +@6464 = .sdata2:0x80520164; // type:object size:0x4 scope:local align:4 data:float +@6465 = .sdata2:0x80520168; // type:object size:0x4 scope:local align:4 data:float +@6466 = .sdata2:0x8052016C; // type:object size:0x4 scope:local align:4 data:float +@6467 = .sdata2:0x80520170; // type:object size:0x4 scope:local align:4 data:float +@6468 = .sdata2:0x80520174; // type:object size:0x4 scope:local align:4 data:float +@6469 = .sdata2:0x80520178; // type:object size:0x4 scope:local align:4 data:float +@2996 = .sdata2:0x80520180; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata2:0x80520184; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata2:0x80520188; // type:object size:0x8 scope:local align:8 data:double +@3227 = .sdata2:0x80520190; // type:object size:0x8 scope:local align:8 data:double +@3975 = .sdata2:0x80520198; // type:object size:0x7 scope:local align:4 data:string +@4055 = .sdata2:0x805201A0; // type:object size:0x4 scope:local align:4 data:float +@4204 = .sdata2:0x805201A4; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x805201A8; // type:object size:0x8 scope:local align:8 data:double +@4433 = .sdata2:0x805201B0; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata2:0x805201B4; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x805201B8; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata2:0x805201BC; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata2:0x805201C0; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x805201C4; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x805201C8; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x805201CC; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata2:0x805201D0; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x805201D8; // type:object size:0x8 scope:local align:8 data:double +@4794 = .sdata2:0x805201E0; // type:object size:0x1 scope:local align:4 +@4872 = .sdata2:0x805201E4; // type:object size:0x4 scope:local align:4 data:float +@3216 = .sdata2:0x805201E8; // type:object size:0x4 scope:local align:4 data:float +@3322 = .sdata2:0x805201F0; // type:object size:0x8 scope:local align:8 data:double +@3499 = .sdata2:0x805201F8; // type:object size:0x7 scope:local align:4 data:string +@3501 = .sdata2:0x80520200; // type:object size:0x1 scope:local align:4 +@3549 = .sdata2:0x80520204; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x80520208; // type:object size:0x4 scope:local align:4 data:float +@3753 = .sdata2:0x8052020C; // type:object size:0x8 scope:local align:4 data:string +@3754 = .sdata2:0x80520214; // type:object size:0x8 scope:local align:4 data:string +@3755 = .sdata2:0x8052021C; // type:object size:0x8 scope:local align:4 data:string +@3910 = .sdata2:0x80520224; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x80520228; // type:object size:0x8 scope:local align:8 data:double +@3943 = .sdata2:0x80520230; // type:object size:0x4 scope:local align:4 data:float +@3944 = .sdata2:0x80520234; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x80520238; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80520240; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x80520244; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x80520248; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8052024C; // type:object size:0x4 scope:local align:4 data:float +@2494 = .sdata2:0x80520250; // type:object size:0x5 scope:local align:4 data:string +@2495 = .sdata2:0x80520258; // type:object size:0x6 scope:local align:4 data:string +@2562 = .sdata2:0x80520260; // type:object size:0x6 scope:local align:4 data:string +@2816 = .sdata2:0x80520268; // type:object size:0x4 scope:local align:4 data:float +@2817 = .sdata2:0x8052026C; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x80520270; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata2:0x80520274; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata2:0x80520278; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x8052027C; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata2:0x80520280; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata2:0x80520284; // type:object size:0x4 scope:local align:4 data:float +@2998 = .sdata2:0x80520288; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x8052028C; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x80520290; // type:object size:0x4 scope:local align:4 data:float +@3002 = .sdata2:0x80520294; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x80520298; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata2:0x8052029C; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata2:0x805202A0; // type:object size:0x4 scope:local align:4 data:float +@3084 = .sdata2:0x805202A4; // type:object size:0x4 scope:local align:4 data:float +@3161 = .sdata2:0x805202A8; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x805202AC; // type:object size:0x4 scope:local align:4 data:float +@4318 = .sdata2:0x805202B0; // type:object size:0x8 scope:local align:8 data:double +@4319 = .sdata2:0x805202B8; // type:object size:0x4 scope:local align:4 data:float +@4420 = .sdata2:0x805202BC; // type:object size:0x4 scope:local align:4 data:float +@4618 = .sdata2:0x805202C0; // type:object size:0x4 scope:local align:4 data:float +@4619 = .sdata2:0x805202C4; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x805202C8; // type:object size:0x6 scope:local align:4 data:string +@2669 = .sdata2:0x805202D0; // type:object size:0x8 scope:local align:4 data:string +@2670 = .sdata2:0x805202D8; // type:object size:0x3 scope:local align:4 data:string +@2845 = .sdata2:0x805202E0; // type:object size:0x7 scope:local align:4 data:string +@2846 = .sdata2:0x805202E8; // type:object size:0x4 scope:local align:4 data:string +@2854 = .sdata2:0x805202EC; // type:object size:0x4 scope:local align:4 data:string +@3026 = .sdata2:0x805202F0; // type:object size:0x3 scope:local align:4 data:string +@3269 = .sdata2:0x805202F4; // type:object size:0x3 scope:local align:4 data:string +@3566 = .sdata2:0x805202F8; // type:object size:0x2 scope:local align:4 data:string +@3586 = .sdata2:0x805202FC; // type:object size:0x4 scope:local align:4 data:string +@3630 = .sdata2:0x80520300; // type:object size:0x4 scope:local align:4 data:string +@2876 = .sdata2:0x80520308; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata2:0x8052030C; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x80520310; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x80520314; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x80520318; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x8052031C; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x80520320; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata2:0x80520324; // type:object size:0x4 scope:local align:4 data:float +@5259 = .sdata2:0x80520328; // type:object size:0x4 scope:local align:4 data:float +@5333 = .sdata2:0x8052032C; // type:object size:0x4 scope:local align:4 data:float +@5618 = .sdata2:0x80520330; // type:object size:0x8 scope:local align:8 data:double +@5688 = .sdata2:0x80520338; // type:object size:0x3 scope:local align:4 data:string +@5792 = .sdata2:0x8052033C; // type:object size:0x4 scope:local align:4 data:float +@5793 = .sdata2:0x80520340; // type:object size:0x4 scope:local align:4 data:float +@5914 = .sdata2:0x80520344; // type:object size:0x4 scope:local align:4 data:float +@5915 = .sdata2:0x80520348; // type:object size:0x4 scope:local align:4 data:float +@6112 = .sdata2:0x8052034C; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x80520350; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x80520354; // type:object size:0x4 scope:local align:4 data:float +@3140 = .sdata2:0x80520358; // type:object size:0x4 scope:local align:4 data:float +@3141 = .sdata2:0x8052035C; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata2:0x80520360; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x80520368; // type:object size:0x8 scope:local align:8 data:double +@3400 = .sdata2:0x80520370; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x80520374; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x80520378; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x8052037C; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x80520380; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x80520384; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x80520388; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8052038C; // type:object size:0x4 scope:local align:4 data:float +@3737 = .sdata2:0x80520390; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x80520394; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x80520398; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x8052039C; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata2:0x805203A0; // type:object size:0x4 scope:local align:4 data:string +@2843 = .sdata2:0x805203A8; // type:object size:0x3 scope:local align:4 data:string +@2963 = .sdata2:0x805203B0; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x805203B4; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x805203B8; // type:object size:0x4 scope:local align:4 data:float +@2823 = .sdata2:0x805203BC; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata2:0x805203C0; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata2:0x805203C4; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata2:0x805203C8; // type:object size:0x4 scope:local align:4 data:string +@3557 = .sdata2:0x805203CC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x805203D0; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x805203D4; // type:object size:0x4 scope:local align:4 data:float +@5061 = .sdata2:0x805203D8; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x805203E0; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x805203E8; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x805203EC; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x805203F0; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata2:0x805203F8; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata2:0x805203FC; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata2:0x80520400; // type:object size:0x7 scope:local align:4 data:string +@3600 = .sdata2:0x80520408; // type:object size:0x4 scope:local align:4 data:float +@3601 = .sdata2:0x8052040C; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x80520410; // type:object size:0x4 scope:local align:4 data:float +@3653 = .sdata2:0x80520414; // type:object size:0x8 scope:local align:4 data:string +@3858 = .sdata2:0x80520420; // type:object size:0x8 scope:local align:8 data:double +@3977 = .sdata2:0x80520428; // type:object size:0x6 scope:local align:4 data:string +@4123 = .sdata2:0x80520430; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x80520438; // type:object size:0x8 scope:local align:8 data:double +@3579 = .sdata2:0x80520440; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x80520444; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x80520448; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8052044C; // type:object size:0x5 scope:local align:4 data:string +@3703 = .sdata2:0x80520454; // type:object size:0x7 scope:local align:4 data:string +@3704 = .sdata2:0x8052045C; // type:object size:0x4 scope:local align:4 +@4730 = .sdata2:0x80520460; // type:object size:0x6 scope:local align:4 data:string +@4732 = .sdata2:0x80520468; // type:object size:0x7 scope:local align:4 data:string +@4738 = .sdata2:0x80520470; // type:object size:0x7 scope:local align:4 data:string +@4739 = .sdata2:0x80520478; // type:object size:0x8 scope:local align:4 data:string +@4745 = .sdata2:0x80520480; // type:object size:0x5 scope:local align:4 data:string +@4747 = .sdata2:0x80520488; // type:object size:0x5 scope:local align:4 data:string +@4751 = .sdata2:0x80520490; // type:object size:0x8 scope:local align:4 data:string +@4754 = .sdata2:0x80520498; // type:object size:0x6 scope:local align:4 data:string +@4755 = .sdata2:0x805204A0; // type:object size:0x6 scope:local align:4 data:string +@2692 = .sdata2:0x805204A8; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata2:0x805204B0; // type:object size:0x4 scope:local align:4 data:string +@3166 = .sdata2:0x805204B8; // type:object size:0x4 scope:local align:4 data:float +@3167 = .sdata2:0x805204BC; // type:object size:0x4 scope:local align:4 data:float +@3169 = .sdata2:0x805204C0; // type:object size:0x8 scope:local align:8 data:double +@3176 = .sdata2:0x805204C8; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x805204CC; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x805204D0; // type:object size:0x8 scope:local align:8 data:double +@5772 = .sdata2:0x805204D8; // type:object size:0x4 scope:local align:4 data:float +@5773 = .sdata2:0x805204DC; // type:object size:0x4 scope:local align:4 data:float +@5774 = .sdata2:0x805204E0; // type:object size:0x4 scope:local align:4 data:float +@6160 = .sdata2:0x805204E4; // type:object size:0x4 scope:local align:4 data:float +@6992 = .sdata2:0x805204E8; // type:object size:0x4 scope:local align:4 data:float +@7634 = .sdata2:0x805204EC; // type:object size:0x4 scope:local align:4 data:float +@7635 = .sdata2:0x805204F0; // type:object size:0x4 scope:local align:4 data:float +@7636 = .sdata2:0x805204F4; // type:object size:0x4 scope:local align:4 data:float +@7694 = .sdata2:0x805204F8; // type:object size:0x4 scope:local align:4 data:float +@7695 = .sdata2:0x805204FC; // type:object size:0x4 scope:local align:4 data:float +@7723 = .sdata2:0x80520500; // type:object size:0x4 scope:local align:4 data:float +@7724 = .sdata2:0x80520504; // type:object size:0x4 scope:local align:4 data:float +@7725 = .sdata2:0x80520508; // type:object size:0x4 scope:local align:4 data:float +@2833 = .sdata2:0x80520510; // type:object size:0x4 scope:local align:4 data:float +@2834 = .sdata2:0x80520514; // type:object size:0x4 scope:local align:4 data:float +@3048 = .sdata2:0x80520518; // type:object size:0x4 scope:local align:4 data:float +@3049 = .sdata2:0x8052051C; // type:object size:0x4 scope:local align:4 data:float +@3050 = .sdata2:0x80520520; // type:object size:0x4 scope:local align:4 data:float +@3261 = .sdata2:0x80520524; // type:object size:0x4 scope:local align:4 data:float +@3385 = .sdata2:0x80520528; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8052052C; // type:object size:0x6 scope:local align:4 data:string +@3485 = .sdata2:0x80520534; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x80520538; // type:object size:0x8 scope:local align:8 data:double +@3996 = .sdata2:0x80520540; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata2:0x80520548; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata2:0x80520550; // type:object size:0x8 scope:local align:8 data:double +@3159 = .sdata2:0x80520558; // type:object size:0x4 scope:local align:4 data:float +@3208 = .sdata2:0x8052055C; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata2:0x80520560; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata2:0x80520564; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata2:0x80520568; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x80520570; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x80520574; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x80520578; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x80520580; // type:object size:0x8 scope:local align:8 data:double +@2669 = .sdata2:0x80520588; // type:object size:0x7 scope:local align:4 data:string +@2670 = .sdata2:0x80520590; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x80520598; // type:object size:0x5 scope:local align:4 data:string +@2767 = .sdata2:0x805205A0; // type:object size:0x6 scope:local align:4 data:string +@3033 = .sdata2:0x805205A8; // type:object size:0x4 scope:local align:4 data:float +@3034 = .sdata2:0x805205AC; // type:object size:0x4 scope:local align:4 data:float +@3035 = .sdata2:0x805205B0; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x805205B4; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x805205B8; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x805205BC; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x805205C0; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata2:0x805205C4; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata2:0x805205C8; // type:object size:0x4 scope:local align:4 data:float +@3116 = .sdata2:0x805205D0; // type:object size:0x8 scope:local align:8 data:double +@3200 = .sdata2:0x805205D8; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata2:0x805205DC; // type:object size:0x7 scope:local align:4 +@3301 = .sdata2:0x805205E8; // type:object size:0x4 scope:local align:4 data:float +@3302 = .sdata2:0x805205EC; // type:object size:0x4 scope:local align:4 data:float +@3332 = .sdata2:0x805205F0; // type:object size:0x4 scope:local align:4 data:float +@3388 = .sdata2:0x805205F4; // type:object size:0x4 scope:local align:4 data:float +@3389 = .sdata2:0x805205F8; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata2:0x805205FC; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x80520600; // type:object size:0x8 scope:local align:8 data:double +@3454 = .sdata2:0x80520608; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x8052060C; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x80520610; // type:object size:0x4 scope:local align:4 data:float +@4165 = .sdata2:0x80520614; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x80520618; // type:object size:0x4 scope:local align:4 data:float +@4168 = .sdata2:0x8052061C; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x80520620; // type:object size:0x4 scope:local align:4 data:float +@4388 = .sdata2:0x80520628; // type:object size:0x8 scope:local align:8 data:double +@4390 = .sdata2:0x80520630; // type:object size:0x4 scope:local align:4 data:string +@4391 = .sdata2:0x80520634; // type:object size:0x8 scope:local align:4 data:string +@4392 = .sdata2:0x8052063C; // type:object size:0x8 scope:local align:4 data:string +@4393 = .sdata2:0x80520644; // type:object size:0x4 scope:local align:4 data:string +@4632 = .sdata2:0x80520648; // type:object size:0x4 scope:local align:4 data:float +@4634 = .sdata2:0x8052064C; // type:object size:0x4 scope:local align:4 data:float +@4635 = .sdata2:0x80520650; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x80520654; // type:object size:0x4 scope:local align:4 data:float +@4769 = .sdata2:0x80520658; // type:object size:0x7 scope:local align:4 data:string +@4770 = .sdata2:0x80520660; // type:object size:0x8 scope:local align:4 data:string +@4851 = .sdata2:0x80520668; // type:object size:0x4 scope:local align:4 data:float +@4852 = .sdata2:0x8052066C; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata2:0x80520670; // type:object size:0x8 scope:local align:8 data:double +@3481 = .sdata2:0x80520678; // type:object size:0x4 scope:local align:4 data:float +@3482 = .sdata2:0x8052067C; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x80520680; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata2:0x80520684; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x80520688; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8052068C; // type:object size:0x3 scope:local align:4 data:string +@3718 = .sdata2:0x80520690; // type:object size:0x8 scope:local align:8 data:double +@3048 = .sdata2:0x80520698; // type:object size:0x4 scope:local align:4 data:float +@3050 = .sdata2:0x805206A0; // type:object size:0x8 scope:local align:8 data:double +@3080 = .sdata2:0x805206A8; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x805206AC; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata2:0x805206B0; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata2:0x805206B4; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x805206B8; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x805206BC; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x805206C0; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x805206C4; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x805206C8; // type:object size:0x6 scope:local align:4 data:string +@3845 = .sdata2:0x805206D0; // type:object size:0x7 scope:local align:4 data:string +@3846 = .sdata2:0x805206D8; // type:object size:0x7 scope:local align:4 data:string +@3847 = .sdata2:0x805206E0; // type:object size:0x4 scope:local align:4 data:string +@3848 = .sdata2:0x805206E4; // type:object size:0x4 scope:local align:4 data:string +@3849 = .sdata2:0x805206E8; // type:object size:0x6 scope:local align:4 data:string +@3850 = .sdata2:0x805206F0; // type:object size:0x7 scope:local align:4 data:string +@3720 = .sdata2:0x805206F8; // type:object size:0x7 scope:local align:4 data:string +@3721 = .sdata2:0x80520700; // type:object size:0x4 scope:local align:4 data:float +@3722 = .sdata2:0x80520704; // type:object size:0x6 scope:local align:4 data:string +@2651 = .sdata2:0x80520710; // type:object size:0x1 scope:local align:4 +@2740 = .sdata2:0x80520714; // type:object size:0x6 scope:local align:4 data:string +@2759 = .sdata2:0x8052071C; // type:object size:0x3 scope:local align:4 data:string +@2760 = .sdata2:0x80520720; // type:object size:0x7 scope:local align:4 data:string +@2761 = .sdata2:0x80520728; // type:object size:0x7 scope:local align:4 data:string +@2763 = .sdata2:0x80520730; // type:object size:0x7 scope:local align:4 data:string +@2764 = .sdata2:0x80520738; // type:object size:0x4 scope:local align:4 data:string +@2776 = .sdata2:0x8052073C; // type:object size:0x7 scope:local align:4 data:string +@2825 = .sdata2:0x80520744; // type:object size:0x4 scope:local align:4 data:string +@2826 = .sdata2:0x80520748; // type:object size:0x4 scope:local align:4 data:string +@2827 = .sdata2:0x8052074C; // type:object size:0x4 scope:local align:4 data:string +@2828 = .sdata2:0x80520750; // type:object size:0x4 scope:local align:4 data:string +@2829 = .sdata2:0x80520754; // type:object size:0x4 scope:local align:4 data:string +@2830 = .sdata2:0x80520758; // type:object size:0x4 scope:local align:4 data:string +@2831 = .sdata2:0x8052075C; // type:object size:0x4 scope:local align:4 data:string +@2995 = .sdata2:0x80520760; // type:object size:0x4 scope:local align:4 data:float +@2996 = .sdata2:0x80520764; // type:object size:0x4 scope:local align:4 data:float +@3004 = .sdata2:0x80520768; // type:object size:0x4 scope:local align:4 data:float +@2656 = .sdata2:0x80520770; // type:object size:0x1 scope:local align:4 +@2769 = .sdata2:0x80520774; // type:object size:0x5 scope:local align:4 data:string +@3207 = .sdata2:0x80520780; // type:object size:0x8 scope:local align:8 data:double +@3273 = .sdata2:0x80520788; // type:object size:0x4 scope:local align:4 data:float +@2687 = .sdata2:0x80520790; // type:object size:0x4 scope:local align:4 data:float +mstTuningScaleX__Q29P2DScreen10Mgr_tuning = .sdata2:0x80520794; // type:object size:0x4 scope:global align:4 data:float +mstTuningScaleY__Q29P2DScreen10Mgr_tuning = .sdata2:0x80520798; // type:object size:0x4 scope:global align:4 data:float +mstTuningTransX__Q29P2DScreen10Mgr_tuning = .sdata2:0x8052079C; // type:object size:0x4 scope:global align:4 data:float +mstTuningTransY__Q29P2DScreen10Mgr_tuning = .sdata2:0x805207A0; // type:object size:0x4 scope:global align:4 data:float +@2697 = .sdata2:0x805207A4; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x805207A8; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata2:0x805207AC; // type:object size:0x4 scope:local align:4 data:float +@2725 = .sdata2:0x805207B0; // type:object size:0x8 scope:local align:8 data:double +@3558 = .sdata2:0x805207B8; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata2:0x805207BC; // type:object size:0x4 scope:local align:4 data:float +@3622 = .sdata2:0x805207C0; // type:object size:0x4 scope:local align:4 data:float +@3623 = .sdata2:0x805207C4; // type:object size:0x4 scope:local align:4 data:float +@3624 = .sdata2:0x805207C8; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata2:0x805207CC; // type:object size:0x4 scope:local align:4 data:float +@3713 = .sdata2:0x805207D0; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x805207D4; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x805207D8; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x805207DC; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x805207E0; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x805207E4; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x805207E8; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x805207EC; // type:object size:0x4 scope:local align:4 data:float +@3748 = .sdata2:0x805207F0; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x805207F8; // type:object size:0x8 scope:local align:8 data:double +@3799 = .sdata2:0x80520800; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x80520804; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x80520808; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8052080C; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x80520810; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x80520814; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x80520818; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8052081C; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x80520820; // type:object size:0x8 scope:local align:8 data:double +@3982 = .sdata2:0x80520828; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8052082C; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x80520830; // type:object size:0x4 scope:local align:4 data:float +@4006 = .sdata2:0x80520834; // type:object size:0x8 scope:local align:4 data:string +@4161 = .sdata2:0x8052083C; // type:object size:0x4 scope:local align:4 data:float +@4162 = .sdata2:0x80520840; // type:object size:0x4 scope:local align:4 data:float +@4163 = .sdata2:0x80520844; // type:object size:0x4 scope:local align:4 data:float +@4215 = .sdata2:0x80520848; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8052084C; // type:object size:0x8 scope:local align:4 data:string +@4614 = .sdata2:0x80520854; // type:object size:0x8 scope:local align:4 data:string +@3440 = .sdata2:0x80520860; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata2:0x80520864; // type:object size:0x4 scope:local align:4 data:float +@3281 = .sdata2:0x80520868; // type:object size:0x4 scope:local align:4 data:float +@3282 = .sdata2:0x8052086C; // type:object size:0x4 scope:local align:4 data:float +@3397 = .sdata2:0x80520870; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x80520874; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x80520878; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x8052087C; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x80520880; // type:object size:0x8 scope:local align:8 data:double +@3483 = .sdata2:0x80520888; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x80520890; // type:object size:0x8 scope:local align:4 data:string +@4172 = .sdata2:0x80520898; // type:object size:0x8 scope:local align:4 data:string +@4233 = .sdata2:0x805208A0; // type:object size:0x4 scope:local align:4 data:string +@2775 = .sdata2:0x805208A8; // type:object size:0x4 scope:local align:4 data:float +@2912 = .sdata2:0x805208B0; // type:object size:0x8 scope:local align:8 data:double +cPageInfoBufferNum__Q25P2JME19TRenderingProcessor = .sdata2:0x805208B8; // type:object size:0x4 scope:global align:4 data:4byte +@2840 = .sdata2:0x805208BC; // type:object size:0x4 scope:local align:4 data:float +@2841 = .sdata2:0x805208C0; // type:object size:0x4 scope:local align:4 data:float +@2842 = .sdata2:0x805208C4; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x805208C8; // type:object size:0x4 scope:local align:4 data:float +@2844 = .sdata2:0x805208CC; // type:object size:0x4 scope:local align:4 data:float +@2900 = .sdata2:0x805208D0; // type:object size:0x8 scope:local align:8 data:double +@2902 = .sdata2:0x805208D8; // type:object size:0x8 scope:local align:8 data:double +@3488 = .sdata2:0x805208E0; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x805208E4; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x805208E8; // type:object size:0x7 scope:local align:4 +@682 = .sdata2:0x805208F0; // type:object size:0x3 scope:local align:4 data:string +@3366 = .sdata2:0x805208F8; // type:object size:0x6 scope:local align:4 data:string +@3367 = .sdata2:0x80520900; // type:object size:0x3 scope:local align:4 data:string +@3348 = .sdata2:0x80520908; // type:object size:0x7 scope:local align:4 data:string +@3515 = .sdata2:0x80520910; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata2:0x80520914; // type:object size:0x4 scope:local align:4 data:float +@3825 = .sdata2:0x80520918; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8052091C; // type:object size:0x4 scope:local align:4 data:float +@3460 = .sdata2:0x80520920; // type:object size:0x1 scope:local align:4 +@3461 = .sdata2:0x80520924; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x80520928; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x8052092C; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x80520930; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x80520934; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x80520938; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8052093C; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80520940; // type:object size:0x8 scope:local align:8 data:double +@3885 = .sdata2:0x80520948; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8052094C; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x80520950; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x80520954; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x80520958; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8052095C; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x80520960; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x80520964; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata2:0x80520968; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8052096C; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x80520970; // type:object size:0x4 scope:local align:4 data:float +@3605 = .sdata2:0x80520978; // type:object size:0x8 scope:local align:4 data:string +@3170 = .sdata2:0x80520980; // type:object size:0x4 scope:local align:4 data:float +@3172 = .sdata2:0x80520988; // type:object size:0x8 scope:local align:8 data:double +@3227 = .sdata2:0x80520990; // type:object size:0x4 scope:local align:4 data:float +@3228 = .sdata2:0x80520994; // type:object size:0x4 scope:local align:4 data:float +@3230 = .sdata2:0x80520998; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x805209A0; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x805209A4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x805209A8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x805209AC; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x805209B0; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x805209B4; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x805209B8; // type:object size:0x4 scope:local align:4 data:float +@4121 = .sdata2:0x805209C0; // type:object size:0x8 scope:local align:8 data:double +@4132 = .sdata2:0x805209C8; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x805209CC; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x805209D0; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x805209D4; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata2:0x805209D8; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x805209DC; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata2:0x805209E0; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x805209E4; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x805209E8; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x805209EC; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x805209F0; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x805209F4; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x805209F8; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata2:0x805209FC; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x80520A00; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x80520A04; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata2:0x80520A08; // type:object size:0x4 scope:local align:4 data:float +@4307 = .sdata2:0x80520A0C; // type:object size:0x4 scope:local align:4 data:float +@4308 = .sdata2:0x80520A10; // type:object size:0x4 scope:local align:4 data:float +@4309 = .sdata2:0x80520A14; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x80520A18; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x80520A1C; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x80520A20; // type:object size:0x4 scope:local align:4 data:float +@4313 = .sdata2:0x80520A24; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x80520A28; // type:object size:0x8 scope:local align:4 data:string +@4478 = .sdata2:0x80520A30; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata2:0x80520A34; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x80520A38; // type:object size:0x4 scope:local align:4 data:float +@4482 = .sdata2:0x80520A40; // type:object size:0x8 scope:local align:8 data:double +@4832 = .sdata2:0x80520A48; // type:object size:0x4 scope:local align:4 data:float +@5035 = .sdata2:0x80520A4C; // type:object size:0x4 scope:local align:4 data:float +@5036 = .sdata2:0x80520A50; // type:object size:0x4 scope:local align:4 data:float +@5037 = .sdata2:0x80520A54; // type:object size:0x4 scope:local align:4 data:float +@5038 = .sdata2:0x80520A58; // type:object size:0x4 scope:local align:4 data:float +@5039 = .sdata2:0x80520A5C; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x80520A60; // type:object size:0x4 scope:local align:4 data:float +@5057 = .sdata2:0x80520A64; // type:object size:0x4 scope:local align:4 data:float +@5058 = .sdata2:0x80520A68; // type:object size:0x4 scope:local align:4 data:float +@5059 = .sdata2:0x80520A6C; // type:object size:0x4 scope:local align:4 data:float +@5089 = .sdata2:0x80520A70; // type:object size:0x4 scope:local align:4 data:float +@5090 = .sdata2:0x80520A74; // type:object size:0x4 scope:local align:4 data:float +@5091 = .sdata2:0x80520A78; // type:object size:0x4 scope:local align:4 data:float +zz_80520a7c = .sdata2:0x80520A7C; // type:object size:0x4 scope:global align:4 data:float +@4231 = .sdata2:0x80520A80; // type:object size:0x4 scope:local align:4 data:float +@4729 = .sdata2:0x80520A84; // type:object size:0x8 scope:local align:4 data:string +@4842 = .sdata2:0x80520A90; // type:object size:0x8 scope:local align:8 data:double +@5101 = .sdata2:0x80520A98; // type:object size:0x4 scope:local align:4 data:float +@5102 = .sdata2:0x80520A9C; // type:object size:0x4 scope:local align:4 data:float +@5742 = .sdata2:0x80520AA0; // type:object size:0x4 scope:local align:4 data:float +@5743 = .sdata2:0x80520AA4; // type:object size:0x4 scope:local align:4 data:float +@2506 = .sdata2:0x80520AA8; // type:object size:0x8 scope:local align:4 data:string +@3101 = .sdata2:0x80520AB0; // type:object size:0x4 scope:local align:4 data:float +@3154 = .sdata2:0x80520AB4; // type:object size:0x4 scope:local align:4 data:float +@3155 = .sdata2:0x80520AB8; // type:object size:0x4 scope:local align:4 data:float +@3156 = .sdata2:0x80520ABC; // type:object size:0x4 scope:local align:4 data:float +@3158 = .sdata2:0x80520AC0; // type:object size:0x8 scope:local align:8 data:double +@3170 = .sdata2:0x80520AC8; // type:object size:0x8 scope:local align:8 data:double +@2484 = .sdata2:0x80520AD0; // type:object size:0x8 scope:local align:4 data:4byte +@2487 = .sdata2:0x80520AD8; // type:object size:0x4 scope:local align:4 data:4byte +@2490 = .sdata2:0x80520ADC; // type:object size:0x4 scope:local align:4 data:4byte +@2493 = .sdata2:0x80520AE0; // type:object size:0x4 scope:local align:4 data:4byte +@2514 = .sdata2:0x80520AE4; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata2:0x80520AE8; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata2:0x80520AEC; // type:object size:0x4 scope:local align:4 data:float +@2518 = .sdata2:0x80520AF0; // type:object size:0x8 scope:local align:8 data:double +@3226 = .sdata2:0x80520AF8; // type:object size:0x4 scope:local align:4 data:string +@3227 = .sdata2:0x80520AFC; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x80520B00; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x80520B04; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x80520B08; // type:object size:0x8 scope:local align:8 data:double +@3196 = .sdata2:0x80520B10; // type:object size:0x1 scope:local align:4 +@3359 = .sdata2:0x80520B14; // type:object size:0x4 scope:local align:4 data:float +@3406 = .sdata2:0x80520B18; // type:object size:0x8 scope:local align:8 data:double +@2746 = .sdata2:0x80520B20; // type:object size:0x1 scope:local align:4 +@2747 = .sdata2:0x80520B24; // type:object size:0x8 scope:local align:4 data:string +@2749 = .sdata2:0x80520B30; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x80520B34; // type:object size:0x4 scope:local align:4 data:float +@2837 = .sdata2:0x80520B38; // type:object size:0x4 scope:local align:4 data:float +@2838 = .sdata2:0x80520B3C; // type:object size:0x4 scope:local align:4 data:float +@2839 = .sdata2:0x80520B40; // type:object size:0x4 scope:local align:4 data:float +@2840 = .sdata2:0x80520B44; // type:object size:0x4 scope:local align:4 data:float +@2841 = .sdata2:0x80520B48; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata2:0x80520B4C; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata2:0x80520B50; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata2:0x80520B58; // type:object size:0x8 scope:local align:8 data:double +@2913 = .sdata2:0x80520B60; // type:object size:0x8 scope:local align:8 data:double +@2930 = .sdata2:0x80520B68; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x80520B70; // type:object size:0x8 scope:local align:4 data:string +@2679 = .sdata2:0x80520B78; // type:object size:0x4 scope:local align:4 data:string +@2702 = .sdata2:0x80520B7C; // type:object size:0x1 scope:local align:4 +@3140 = .sdata2:0x80520B80; // type:object size:0x1 scope:local align:4 +@2641 = .sdata2:0x80520B88; // type:object size:0x8 scope:local align:4 data:string +@2733 = .sdata2:0x80520B90; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata2:0x80520B94; // type:object size:0x4 scope:local align:4 data:float +@3654 = .sdata2:0x80520B98; // type:object size:0x7 scope:local align:4 data:string +@3656 = .sdata2:0x80520BA0; // type:object size:0x5 scope:local align:4 data:string +@3663 = .sdata2:0x80520BA8; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x80520BAC; // type:object size:0x5 scope:local align:4 data:string +@3807 = .sdata2:0x80520BB4; // type:object size:0x8 scope:local align:4 data:string +@2765 = .sdata2:0x80520BC0; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x80520BC4; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata2:0x80520BC8; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata2:0x80520BCC; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x80520BD0; // type:object size:0x4 scope:local align:4 data:float +@2827 = .sdata2:0x80520BD8; // type:object size:0x8 scope:local align:8 data:double +@2790 = .sdata2:0x80520BE0; // type:object size:0x4 scope:local align:4 data:string +@3097 = .sdata2:0x80520BE8; // type:object size:0x5 scope:local align:4 data:string +@3098 = .sdata2:0x80520BF0; // type:object size:0x4 scope:local align:4 data:float +@3143 = .sdata2:0x80520BF4; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x80520BF8; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x80520BFC; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x80520C00; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x80520C04; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x80520C08; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x80520C0C; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x80520C10; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x80520C14; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x80520C18; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x80520C20; // type:object size:0x4 scope:local align:4 data:float +@3726 = .sdata2:0x80520C24; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x80520C28; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x80520C2C; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x80520C30; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x80520C34; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x80520C38; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x80520C3C; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x80520C40; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata2:0x80520C44; // type:object size:0x4 scope:local align:4 data:float +@5822 = .sdata2:0x80520C48; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x80520C50; // type:object size:0x4 scope:local align:4 data:float +@3586 = .sdata2:0x80520C54; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x80520C58; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x80520C5C; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x80520C60; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x80520C68; // type:object size:0x8 scope:local align:8 data:double +@3977 = .sdata2:0x80520C70; // type:object size:0x8 scope:local align:8 data:double +@4565 = .sdata2:0x80520C78; // type:object size:0x4 scope:local align:4 data:float +@4942 = .sdata2:0x80520C7C; // type:object size:0x4 scope:local align:4 data:float +@5230 = .sdata2:0x80520C80; // type:object size:0x4 scope:local align:4 data:float +@5231 = .sdata2:0x80520C84; // type:object size:0x4 scope:local align:4 data:float +@6212 = .sdata2:0x80520C88; // type:object size:0x4 scope:local align:4 data:float +@4077 = .sdata2:0x80520C90; // type:object size:0x2 scope:local align:4 +@4086 = .sdata2:0x80520C94; // type:object size:0x4 scope:local align:4 data:string +@3661 = .sdata2:0x80520C98; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x80520C9C; // type:object size:0x4 scope:local align:4 data:float +@4433 = .sdata2:0x80520CA0; // type:object size:0x4 scope:local align:4 data:float +@4767 = .sdata2:0x80520CA4; // type:object size:0x4 scope:local align:4 data:float +cEvenning_fadeOuTime__Q23PSM12Scene_Ground = .sdata2:0x80520CA8; // type:object size:0x4 scope:global align:4 data:4byte +cEvenning_fadeInTime__Q23PSM12Scene_Ground = .sdata2:0x80520CAC; // type:object size:0x4 scope:global align:4 data:4byte +@5825 = .sdata2:0x80520CB0; // type:object size:0x4 scope:local align:4 data:float +@3455 = .sdata2:0x80520CB8; // type:object size:0x4 scope:local align:4 data:float +@3456 = .sdata2:0x80520CBC; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata2:0x80520CC0; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x80520CC4; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x80520CC8; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x80520CCC; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x80520CD0; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x80520CD4; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x80520CD8; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x80520CE0; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x80520CE4; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x80520CE8; // type:object size:0x4 scope:local align:4 data:float +@3492 = .sdata2:0x80520CEC; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x80520CF0; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x80520CF4; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x80520CF8; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x80520CFC; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x80520D00; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x80520D04; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x80520D08; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x80520D0C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x80520D10; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x80520D14; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x80520D18; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x80520D1C; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x80520D20; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x80520D24; // type:object size:0x4 scope:local align:4 data:float +@3944 = .sdata2:0x80520D28; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x80520D2C; // type:object size:0x4 scope:local align:4 data:float +@3946 = .sdata2:0x80520D30; // type:object size:0x4 scope:local align:4 data:float +@3947 = .sdata2:0x80520D34; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x80520D38; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x80520D3C; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x80520D40; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x80520D44; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x80520D48; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x80520D4C; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x80520D50; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x80520D54; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x80520D58; // type:object size:0x8 scope:local align:8 data:double +@3615 = .sdata2:0x80520D60; // type:object size:0x1 scope:local align:4 +@3687 = .sdata2:0x80520D64; // type:object size:0x5 scope:local align:4 data:string +@3910 = .sdata2:0x80520D6C; // type:object size:0x7 scope:local align:4 data:string +@3911 = .sdata2:0x80520D74; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x80520D78; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x80520D7C; // type:object size:0x8 scope:local align:4 data:string +@3918 = .sdata2:0x80520D84; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x80520D88; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x80520D90; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x80520D94; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x80520D98; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x80520D9C; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x80520DA0; // type:object size:0x8 scope:local align:8 data:double +@3849 = .sdata2:0x80520DA8; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x80520DAC; // type:object size:0x4 scope:local align:4 data:float +@2908 = .sdata2:0x80520DB0; // type:object size:0x1 scope:local align:4 +@3361 = .sdata2:0x80520DB8; // type:object size:0x8 scope:local align:4 data:string +@3362 = .sdata2:0x80520DC0; // type:object size:0x8 scope:local align:4 data:string +@3364 = .sdata2:0x80520DC8; // type:object size:0x6 scope:local align:4 data:string +@3365 = .sdata2:0x80520DD0; // type:object size:0x6 scope:local align:4 data:string +@3366 = .sdata2:0x80520DD8; // type:object size:0x6 scope:local align:4 data:string +@3367 = .sdata2:0x80520DE0; // type:object size:0x6 scope:local align:4 data:string +@3368 = .sdata2:0x80520DE8; // type:object size:0x6 scope:local align:4 data:string +@3369 = .sdata2:0x80520DF0; // type:object size:0x6 scope:local align:4 data:string +@3370 = .sdata2:0x80520DF8; // type:object size:0x6 scope:local align:4 data:string +@3401 = .sdata2:0x80520E00; // type:object size:0x4 scope:local align:4 data:float +@3402 = .sdata2:0x80520E04; // type:object size:0x4 scope:local align:4 data:float +@3436 = .sdata2:0x80520E08; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x80520E0C; // type:object size:0x4 scope:local align:4 data:float +@3475 = .sdata2:0x80520E10; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x80520E14; // type:object size:0x4 scope:local align:4 data:float +cNoukouDistance__Q23PSM11CreaturePrm = .sdata2:0x80520E18; // type:object size:0x4 scope:global align:4 data:float +cSeFxMix__Q23PSM11CreaturePrm = .sdata2:0x80520E1C; // type:object size:0x4 scope:global align:4 data:float +cSeFxMix_cave__Q23PSM11CreaturePrm = .sdata2:0x80520E20; // type:object size:0x4 scope:global align:4 data:float +@3420 = .sdata2:0x80520E28; // type:object size:0x8 scope:local align:4 data:4byte +@2220 = .sbss2:0x80520E40; // type:object size:0x8 scope:local align:4 data:4byte +@2641 = .sbss2:0x80520E48; // type:object size:0x8 scope:local align:4 data:4byte +@2006 = .sbss2:0x80520E50; // type:object size:0x8 scope:local align:4 data:4byte +@6583 = .sbss2:0x80520E58; // type:object size:0x8 scope:local align:4 data:4byte +@5020 = .sbss2:0x80520E60; // type:object size:0x8 scope:local align:4 data:4byte +@5181 = .sbss2:0x80520E68; // type:object size:0x8 scope:local align:4 data:4byte +@5777 = .sbss2:0x80520E70; // type:object size:0x8 scope:local align:4 data:4byte +@5854 = .sbss2:0x80520E78; // type:object size:0x8 scope:local align:4 data:4byte +@5876 = .sbss2:0x80520E80; // type:object size:0x4 scope:local align:4 data:4byte +@3884 = .sbss2:0x80520E88; // type:object size:0x4 scope:local align:4 data:4byte +@4295 = .sbss2:0x80520E90; // type:object size:0x8 scope:local align:4 data:4byte +@4296 = .sbss2:0x80520E98; // type:object size:0x8 scope:local align:4 data:4byte +@4299 = .sbss2:0x80520EA0; // type:object size:0x8 scope:local align:4 data:4byte +@3657 = .sbss2:0x80520EA8; // type:object size:0x8 scope:local align:4 data:4byte +@3658 = .sbss2:0x80520EB0; // type:object size:0x8 scope:local align:4 data:4byte +@3672 = .sbss2:0x80520EB8; // type:object size:0x3 scope:local align:4 data:2byte +@4153 = .sbss2:0x80520EC0; // type:object size:0x8 scope:local align:4 data:4byte +@4305 = .sbss2:0x80520EC8; // type:object size:0x8 scope:local align:4 data:4byte +@3776 = .sbss2:0x80520ED0; // type:object size:0x8 scope:local align:4 data:4byte diff --git a/config/GPVE01_D17/build.sha1 b/config/GPVE01_D17/build.sha1 new file mode 100644 index 000000000..aa1d54644 --- /dev/null +++ b/config/GPVE01_D17/build.sha1 @@ -0,0 +1 @@ +3730939092688902af4866be66d4a8404ae752c7 build/GPVE01_D17/main.dol diff --git a/config/GPVE01_D17/config.yml b/config/GPVE01_D17/config.yml new file mode 100644 index 000000000..89ae46eed --- /dev/null +++ b/config/GPVE01_D17/config.yml @@ -0,0 +1,10 @@ +object: orig/GPVE01_D17/sys/main.dol +hash: 3730939092688902af4866be66d4a8404ae752c7 + +# Generated from pikmin2UP.MAP +symbols: config/GPVE01_D17/symbols.txt +splits: config/GPVE01_D17/splits.txt + +mw_comment_version: 10 # GC Linker 2.6 +symbols_known: true # Very fast analysis +fill_gaps: false # Alignments known diff --git a/config/GPVE01_D17/splits.txt b/config/GPVE01_D17/splits.txt new file mode 100644 index 000000000..78aada21d --- /dev/null +++ b/config/GPVE01_D17/splits.txt @@ -0,0 +1,6714 @@ +Sections: + .init type:code align:4 + extab type:rodata align:32 + extabindex type:rodata align:32 + .text type:code align:8 + .ctors type:rodata align:16 + .dtors type:rodata align:4 + .rodata type:rodata align:32 + .data type:data align:16 + .bss type:bss align:32 + .sdata type:data align:8 + .sbss type:bss align:16 + .sdata2 type:rodata align:32 + .sbss2 type:bss align:4 + +JSystem/JStudio_JParticle/object-particle.cpp: + .text start:0x800056C0 end:0x80006220 + .rodata start:0x80473180 end:0x80473190 + .data start:0x8049E120 end:0x8049E1D8 + .bss start:0x804EFB60 end:0x804EFBF0 + .sbss start:0x80514CC0 end:0x80514CC8 + .sdata2 start:0x805162A0 end:0x805162D8 + +JSystem/JStudio_JParticle/control.cpp: + .text start:0x80006220 end:0x800063C4 + .data start:0x8049E1D8 end:0x8049E1E8 + +JSystem/JMessage/resource.cpp: + .text start:0x800063C4 end:0x80006D0C + .data start:0x8049E1E8 end:0x8049E260 + +JSystem/JMessage/processor.cpp: + .text start:0x80006D0C end:0x800083A4 + .data start:0x8049E260 end:0x8049E358 + +JSystem/JMessage/data.cpp: + .sdata2 start:0x805162D8 end:0x805162E0 + +JSystem/JMessage/control.cpp: + .text start:0x800083A4 end:0x8000893C + .data start:0x8049E358 end:0x8049E368 + +JSystem/JStudio/stb-data-parse.cpp: + .text start:0x8000893C end:0x80008A80 + +JSystem/JStudio/functionvalue.cpp: + .text start:0x80008A80 end:0x8000BB48 + .rodata start:0x80473190 end:0x804731A0 + .data start:0x8049E368 end:0x8049E448 + .sbss start:0x80514CC8 end:0x80514CD0 + .sdata2 start:0x805162E0 end:0x80516330 + +JSystem/JStudio/fvb-data.cpp: + .sdata2 start:0x80516330 end:0x80516338 + +JSystem/JStudio/fvb.cpp: + .text start:0x8000BB48 end:0x8000CA3C + .rodata start:0x804731A0 end:0x804731E0 + .data start:0x8049E448 end:0x8049E548 + +JSystem/JStudio/fvb-data-parse.cpp: + .text start:0x8000CA3C end:0x8000CAA4 + +JSystem/JStudio/jstudio-control.cpp: + .text start:0x8000CAA4 end:0x8000D068 + .rodata start:0x804731E0 end:0x804731F0 + .data start:0x8049E548 end:0x8049E598 + .sdata2 start:0x80516338 end:0x80516340 + +JSystem/JStudio/jstudio-data.cpp: + .sdata2 start:0x80516340 end:0x80516348 + +JSystem/JStudio/jstudio-object.cpp: + .text start:0x8000D068 end:0x80010188 + .ctors start:0x80472DA4 end:0x80472DA8 + .rodata start:0x804731F0 end:0x80473300 + .data start:0x8049E598 end:0x8049F3F8 + .bss start:0x804EFBF0 end:0x804EFCE0 + .sbss start:0x80514CD0 end:0x80514CD8 + .sdata2 start:0x80516348 end:0x80516378 + +JSystem/JStudio/object-id.cpp: + .text start:0x80010188 end:0x80010278 + +JSystem/JStudio/stb.cpp: + .text start:0x80010278 end:0x80010FC4 + .data start:0x8049F3F8 end:0x8049F478 + .sdata2 start:0x80516378 end:0x80516380 + +JSystem/JStudio/stb-data.cpp: + .rodata start:0x80473300 end:0x80473320 + .sdata2 start:0x80516380 end:0x80516388 + +JSystem/JStudio/jstudio-math.cpp: + .text start:0x80010FC4 end:0x800113C8 + .sdata2 start:0x80516388 end:0x805163C0 + +JSystem/JStudio_JStage/object-light.cpp: + .text start:0x800113C8 end:0x80011DCC + .ctors start:0x80472DA8 end:0x80472DAC + .data start:0x8049F478 end:0x8049F4B0 + .bss start:0x804EFCE0 end:0x804EFD28 + .bss start:0x805069CC end:0x80506A14 align:4 common + .sdata2 start:0x805163C0 end:0x805163E8 + +JSystem/JStudio_JStage/object.cpp: + .text start:0x80011DCC end:0x80012198 + +JSystem/JStudio_JStage/object-actor.cpp: + .text start:0x80012198 end:0x8001318C + .ctors start:0x80472DAC end:0x80472DB0 + .data start:0x8049F4B0 end:0x8049F608 + .bss start:0x804EFD28 end:0x804EFD68 + .bss start:0x80506A14 end:0x80506B74 align:4 common + .sdata2 start:0x805163E8 end:0x805163F0 + +JSystem/JStudio_JStage/object-ambientlight.cpp: + .text start:0x8001318C end:0x80013428 + .data start:0x8049F608 end:0x8049F628 + +JSystem/JStudio_JStage/object-camera.cpp: + .text start:0x80013428 end:0x80014134 + .ctors start:0x80472DB0 end:0x80472DB4 + .data start:0x8049F628 end:0x8049F720 + .bss start:0x804EFD68 end:0x804EFDA8 + .bss start:0x80506B74 end:0x80506C14 align:4 common + +JSystem/JStudio_JStage/object-fog.cpp: + .text start:0x80014134 end:0x80014734 + .ctors start:0x80472DB4 end:0x80472DB8 + .data start:0x8049F720 end:0x8049F7B0 + .bss start:0x804EFDA8 end:0x804EFDD0 + .bss start:0x80506C14 end:0x80506C74 align:4 common + +JSystem/JStudio_JStage/control.cpp: + .text start:0x80014734 end:0x80014D24 + .data start:0x8049F7B0 end:0x8049F7C0 + +JSystem/JStudio_JMessage/object-message.cpp: + .text start:0x80014D24 end:0x80014DF8 + .data start:0x8049F7C0 end:0x8049F7E8 + +JSystem/JStudio_JMessage/control.cpp: + .text start:0x80014DF8 end:0x80014FD8 + .data start:0x8049F7E8 end:0x8049F810 + +JSystem/JStudio_JAudio/object-sound.cpp: + .text start:0x80014FD8 end:0x80015C44 + .ctors start:0x80472DB8 end:0x80472DBC + .data start:0x8049F810 end:0x8049F8F8 + .bss start:0x804EFDD0 end:0x804EFE38 + .bss start:0x80506C74 end:0x80506CEC align:4 common + .sbss start:0x80514CD8 end:0x80514CE0 + .sdata2 start:0x805163F0 end:0x805163F8 + +JSystem/JStudio_JAudio/control.cpp: + .text start:0x80015C44 end:0x80015DE8 + .data start:0x8049F8F8 end:0x8049F908 + +JSystem/J3DU/J3DUDL.cpp: + .text start:0x80015DE8 end:0x80015DF0 + +JSystem/J3DU/J3DUMotion.cpp: + .text start:0x80015DF0 end:0x800177D0 + .data start:0x8049F908 end:0x8049FA68 + .sdata2 start:0x805163F8 end:0x80516408 + +JSystem/J3DU/J3DUShadow.cpp: + .text start:0x800177D0 end:0x800177EC + +JSystem/J3DU/J3DUMtxCache.cpp: + .text start:0x800177EC end:0x80017A10 + .sdata2 start:0x80516408 end:0x80516410 + +JSystem/JKernel/JKRAram.cpp: + .text start:0x80017A10 end:0x80018958 + .ctors start:0x80472DBC end:0x80472DC0 + .rodata start:0x80473320 end:0x804733B0 + .data start:0x8049FA68 end:0x8049FAA8 + .bss start:0x804EFE38 end:0x804EFE60 + .bss start:0x80506CEC end:0x80506CF8 align:4 common + .sdata start:0x805145C0 end:0x805145C8 + .sbss start:0x80514CE0 end:0x80514D20 + .sdata2 start:0x80516410 end:0x80516418 + +JSystem/JKernel/JKRAramArchive.cpp: + .text start:0x80018958 end:0x80019444 + .rodata start:0x804733B0 end:0x804733E0 + .data start:0x8049FAA8 end:0x8049FB18 + +JSystem/JKernel/JKRAramBlock.cpp: + .text start:0x80019444 end:0x800196C8 + .data start:0x8049FB18 end:0x8049FB28 + +JSystem/JKernel/JKRAramHeap.cpp: + .text start:0x800196C8 end:0x80019AD8 + .ctors start:0x80472DC0 end:0x80472DC4 + .data start:0x8049FB28 end:0x8049FB38 + .bss start:0x804EFE60 end:0x804EFE70 + .bss start:0x80506CF8 end:0x80506D04 align:4 common + +JSystem/JKernel/JKRAramPiece.cpp: + .text start:0x80019AD8 end:0x80019F20 + .ctors start:0x80472DC4 end:0x80472DC8 + .rodata start:0x804733E0 end:0x80473438 + .bss start:0x804EFE70 end:0x804EFE80 + .bss start:0x80506D04 end:0x80506D40 align:4 common + .sdata2 start:0x80516418 end:0x80516420 + +JSystem/JKernel/JKRAramStream.cpp: + .text start:0x80019F20 end:0x8001A4BC + .rodata start:0x80473438 end:0x80473468 + .data start:0x8049FB38 end:0x8049FB78 + .sbss start:0x80514D20 end:0x80514D30 + .sdata2 start:0x80516420 end:0x80516428 + +JSystem/JKernel/JKRArchivePri.cpp: + .text start:0x8001A4BC end:0x8001B130 + .sbss start:0x80514D30 end:0x80514D38 + +JSystem/JKernel/JKRArchivePub.cpp: + .text start:0x8001B130 end:0x8001BBB8 + .data start:0x8049FB78 end:0x8049FBC8 + +JSystem/JKernel/JKRCompArchive.cpp: + .text start:0x8001BBB8 end:0x8001C934 + .rodata start:0x80473468 end:0x804734A8 + .data start:0x8049FBC8 end:0x8049FC18 + .sdata2 start:0x80516428 end:0x80516430 + +JSystem/JKernel/JKRDecomp.cpp: + .text start:0x8001C934 end:0x8001CFCC + .data start:0x8049FC18 end:0x8049FC58 + .sbss start:0x80514D38 end:0x80514D40 + +JSystem/JKernel/JKRDisposer.cpp: + .text start:0x8001CFCC end:0x8001D0B8 + .data start:0x8049FC58 end:0x8049FC68 + +JSystem/JKernel/JKRDvdFile.cpp: + .text start:0x8001D0B8 end:0x8001D6F0 + .ctors start:0x80472DC8 end:0x80472DCC + .rodata start:0x804734A8 end:0x804734D0 + .data start:0x8049FC68 end:0x8049FC90 + .bss start:0x804EFE80 end:0x804EFE90 + .bss start:0x80506D40 end:0x80506D4C align:4 common + +JSystem/JKernel/JKRDvdAramRipper.cpp: + .text start:0x8001D6F0 end:0x8001E57C + .ctors start:0x80472DCC end:0x80472DD0 + .bss start:0x804EFE90 end:0x804EFEB8 + .bss start:0x80506D4C end:0x80506D58 align:4 common + .sdata start:0x805145C8 end:0x805145D0 + .sbss start:0x80514D40 end:0x80514D88 + +JSystem/JKernel/JKRDvdArchive.cpp: + .text start:0x8001E57C end:0x8001F188 + .rodata start:0x804734D0 end:0x80473528 + .data start:0x8049FC90 end:0x8049FCE0 + +JSystem/JKernel/JKRDvdRipper.cpp: + .text start:0x8001F188 end:0x8001FE48 + .ctors start:0x80472DD0 end:0x80472DD4 + .rodata start:0x80473528 end:0x80473588 + .bss start:0x804EFEB8 end:0x804EFEE0 + .bss start:0x80506D58 end:0x80506D64 align:4 common + .sdata start:0x805145D0 end:0x805145D8 + .sbss start:0x80514D88 end:0x80514DC8 + +JSystem/JKernel/JKRExpHeap.cpp: + .text start:0x8001FE48 end:0x800219C4 + .rodata start:0x80473588 end:0x80473908 + .data start:0x8049FCE0 end:0x8049FD40 + .sbss start:0x80514DC8 end:0x80514DE0 + .sdata2 start:0x80516430 end:0x80516460 + +JSystem/JKernel/JKRFileCache.cpp: + .text start:0x800219C4 end:0x80022ADC + .data start:0x8049FD40 end:0x8049FDA0 + .sdata2 start:0x80516460 end:0x80516468 + +JSystem/JKernel/JKRFileFinder.cpp: + .text start:0x80022ADC end:0x80022E1C + .data start:0x8049FDA0 end:0x8049FDC0 + +JSystem/JKernel/JKRFile.cpp: + .text start:0x80022E1C end:0x80022E98 + +JSystem/JKernel/JKRFileLoader.cpp: + .text start:0x80022E98 end:0x800232B4 + .ctors start:0x80472DD4 end:0x80472DD8 + .data start:0x8049FDC0 end:0x8049FE00 + .bss start:0x804EFEE0 end:0x804EFEF0 + .bss start:0x80506D64 end:0x80506D70 align:4 common + .sdata start:0x805145D8 end:0x805145E0 + .sbss start:0x80514DE0 end:0x80514DE8 + .sdata2 start:0x80516468 end:0x80516470 + +JSystem/JKernel/JKRHeap.cpp: + .text start:0x800232B4 end:0x80024644 + .rodata start:0x80473908 end:0x80473918 + .data start:0x8049FE00 end:0x8049FE60 + .sdata start:0x805145E0 end:0x805145E8 + .sbss start:0x80514DE8 end:0x80514E18 + .sdata2 start:0x80516470 end:0x80516478 + +JSystem/JKernel/JKRMemArchive.cpp: + .text start:0x80024644 end:0x80024D70 + .rodata start:0x80473918 end:0x80473948 + .data start:0x8049FE60 end:0x8049FEB0 + +JSystem/JKernel/JKRSolidHeap.cpp: + .text start:0x80024D70 end:0x80025638 + .rodata start:0x80473948 end:0x80473AB8 + .data start:0x8049FEB0 end:0x8049FF10 + .sdata2 start:0x80516478 end:0x80516490 + +JSystem/JKernel/JKRThread.cpp: + .text start:0x80025638 end:0x800261E0 + .ctors start:0x80472DD8 end:0x80472DDC + .data start:0x8049FF10 end:0x8049FF30 + .bss start:0x804EFEF0 end:0x804EFF08 + .bss start:0x80506D70 end:0x80506DB4 align:4 common + .sbss start:0x80514E18 end:0x80514E28 + +JSystem/JSupport/JSUOutputStream.cpp: + .text start:0x800261E0 end:0x80026378 + .data start:0x8049FF30 end:0x8049FF40 + +JSystem/JSupport/JSUInputStream.cpp: + .text start:0x80026378 end:0x800267B8 + .data start:0x8049FF40 end:0x8049FF80 + +JSystem/JSupport/JSUList.cpp: + .text start:0x800267B8 end:0x80026D5C + +JSystem/JSupport/JSUMemoryStream.cpp: + .text start:0x80026D5C end:0x80026EE4 + .data start:0x8049FF80 end:0x8049FFA8 + +JSystem/JSupport/JSUFileStream.cpp: + .text start:0x80026EE4 end:0x80027128 + .data start:0x8049FFA8 end:0x8049FFD0 + +JSystem/JGadget/binary.cpp: + .text start:0x80027128 end:0x800272E4 + +JSystem/JGadget/linklist.cpp: + .text start:0x800272E4 end:0x80027484 + +JSystem/JGadget/std-list.cpp: + .text start:0x80027484 end:0x8002766C + +JSystem/JGadget/std-vector.cpp: + .text start:0x8002766C end:0x80027DC0 + +JSystem/JUtility/JUTAssert.cpp: + .text start:0x80027DC0 end:0x800280DC + .bss start:0x804EFF08 end:0x804F0048 + .sdata start:0x805145E8 end:0x805145F0 + .sbss start:0x80514E28 end:0x80514E30 + .sdata2 start:0x80516490 end:0x805164A8 + +JSystem/JUtility/JUTConsole.cpp: + .text start:0x800280DC end:0x800294D4 + .data start:0x8049FFD0 end:0x8049FFE0 + .sbss start:0x80514E30 end:0x80514E40 + .sdata2 start:0x805164A8 end:0x805164E0 + +JSystem/JUtility/JUTDbPrint.cpp: + .text start:0x800294D4 end:0x8002982C + .sbss start:0x80514E40 end:0x80514E48 + .sdata2 start:0x805164E0 end:0x805164F0 + +JSystem/JUtility/JUTDirectFile.cpp: + .text start:0x8002982C end:0x80029BCC + +JSystem/JUtility/JUTDirectPrint.cpp: + .text start:0x80029BCC end:0x8002A30C + .data start:0x8049FFE0 end:0x804A02A8 + .sbss start:0x80514E48 end:0x80514E50 + .sdata2 start:0x805164F0 end:0x80516550 + +JSystem/JUtility/JUTException.cpp: + .text start:0x8002A30C end:0x8002CE5C + .ctors start:0x80472DDC end:0x80472DE0 + .rodata start:0x80473AB8 end:0x80473FF0 + .data start:0x804A02A8 end:0x804A0340 + .bss start:0x804F0048 end:0x804F0330 + .bss start:0x80506DB4 end:0x80506DC0 align:4 common + .sdata start:0x805145F0 end:0x805145F8 + .sbss start:0x80514E50 end:0x80514E70 + .sdata2 start:0x80516550 end:0x80516598 + +JSystem/JUtility/JUTFader.cpp: + .text start:0x8002CE5C end:0x8002D144 + .data start:0x804A0340 end:0x804A0358 + .sdata2 start:0x80516598 end:0x805165A0 + +JSystem/JUtility/JUTFont.cpp: + .text start:0x8002D144 end:0x8002D458 + .data start:0x804A0358 end:0x804A03A0 + +JSystem/JUtility/JUTGamePad.cpp: + .text start:0x8002D458 end:0x8002EB34 + .ctors start:0x80472DE0 end:0x80472DE4 + .data start:0x804A03A0 end:0x804A03D0 + .bss start:0x804F0330 end:0x804F0348 + .bss start:0x80506DC0 end:0x805070E0 align:4 common + .sdata start:0x805145F8 end:0x80514610 + .sbss start:0x80514E70 end:0x80514EA8 + .sdata2 start:0x805165A0 end:0x805165D8 + +JSystem/JUtility/JUTGraphFifo.cpp: + .text start:0x8002EB34 end:0x8002ECCC + .data start:0x804A03D0 end:0x804A03E0 + .sbss start:0x80514EA8 end:0x80514EB8 + +JSystem/JUtility/JUTNameTab.cpp: + .text start:0x8002ECCC end:0x8002EEC4 + .data start:0x804A03E0 end:0x804A03F0 + +JSystem/JUtility/JUTPalette.cpp: + .text start:0x8002EEC4 end:0x8002EFE0 + .rodata start:0x80473FF0 end:0x80474020 + +JSystem/JUtility/JUTProcBar.cpp: + .text start:0x8002EFE0 end:0x80031180 + .sdata start:0x80514610 end:0x80514618 + .sbss start:0x80514EB8 end:0x80514ED0 + .sdata2 start:0x805165D8 end:0x80516620 + +JSystem/JUtility/JUTResFont.cpp: + .text start:0x80031180 end:0x80032478 + .rodata start:0x80474020 end:0x80474120 + .data start:0x804A03F0 end:0x804A0440 + .sdata2 start:0x80516620 end:0x80516638 + +JSystem/JUtility/JUTResource.cpp: + .text start:0x80032478 end:0x8003264C + +JSystem/JUtility/JUTRomFont.cpp: + .text start:0x8003264C end:0x80032F1C + .rodata start:0x80474120 end:0x80474160 + .data start:0x804A0440 end:0x804A04A0 + .sbss start:0x80514ED0 end:0x80514EE0 + .sdata2 start:0x80516638 end:0x80516648 + +JSystem/JUtility/JUTFontData_Ascfont_fix12.cpp: comment:0 + .rodata start:0x80474160 end:0x804782C0 align:32 + +JSystem/JUtility/JUTTexture.cpp: + .text start:0x80032F1C end:0x80033744 + .sdata2 start:0x80516648 end:0x80516660 + +JSystem/JUtility/JUTVideo.cpp: + .text start:0x80033744 end:0x80033CFC + .data start:0x804A04A0 end:0x804A04B0 + .sbss start:0x80514EE0 end:0x80514EF8 + +JSystem/JUtility/JUTXfb.cpp: + .text start:0x80033CFC end:0x80033F94 + .sbss start:0x80514EF8 end:0x80514F00 + +JSystem/JUtility/JUTCacheFont.cpp: + .text start:0x80033F94 end:0x80034F08 + .rodata start:0x804782C0 end:0x80478338 + .data start:0x804A04B0 end:0x804A0500 + .sdata2 start:0x80516660 end:0x80516668 + +JSystem/JMath/JMath.cpp: + .text start:0x80034F08 end:0x80035100 + .sdata2 start:0x80516668 end:0x80516678 + +JSystem/JMath/random.cpp: + .text start:0x80035100 end:0x80035108 + +JSystem/JMath/JMATrigonometric.cpp: + .text start:0x80035108 end:0x80035530 + .ctors start:0x80472DE4 end:0x80472DE8 + .bss start:0x805070E0 end:0x8050F160 align:4 common + .sdata2 start:0x80516678 end:0x805166C0 + +JSystem/J2D/J2DOrthoGraph.cpp: + .text start:0x80035530 end:0x80035DC8 + .data start:0x804A0500 end:0x804A0528 + .sdata2 start:0x805166C0 end:0x805166C8 + +JSystem/J2D/J2DPerspGraph.cpp: + .text start:0x80035DC8 end:0x80036074 + .data start:0x804A0528 end:0x804A0550 + .sdata2 start:0x805166C8 end:0x805166E8 + +JSystem/J2D/J2DGrafContext.cpp: + .text start:0x80036074 end:0x80036AF0 + .data start:0x804A0550 end:0x804A0578 + .sdata2 start:0x805166E8 end:0x80516700 + +JSystem/J2D/J2DPane.cpp: + .text start:0x80036AF0 end:0x80039ADC + .ctors start:0x80472DE8 end:0x80472DEC + .data start:0x804A0578 end:0x804A0630 + .bss start:0x8050F160 end:0x8050F170 align:4 common + .sdata2 start:0x80516700 end:0x80516730 + +JSystem/J2D/J2DPicture.cpp: + .text start:0x80039ADC end:0x8003D750 + .data start:0x804A0630 end:0x804A0780 + .sdata2 start:0x80516730 end:0x80516758 + +JSystem/J2D/J2DPrint.cpp: + .text start:0x8003D750 end:0x8003F474 + .data start:0x804A0780 end:0x804A07F0 + .sbss start:0x80514F00 end:0x80514F10 + .sdata2 start:0x80516758 end:0x80516780 + +JSystem/J2D/J2DScreen.cpp: + .text start:0x8003F474 end:0x80040F74 + .data start:0x804A07F0 end:0x804A0890 + .sbss start:0x80514F10 end:0x80514F18 + .sdata2 start:0x80516780 end:0x805167A0 + +JSystem/J2D/J2DTextBox.cpp: + .text start:0x80040F74 end:0x80042544 + .data start:0x804A0890 end:0x804A0950 + .sdata2 start:0x805167A0 end:0x805167C0 + +JSystem/J2D/J2DWindow.cpp: + .text start:0x80042544 end:0x80044E34 + .rodata start:0x80478338 end:0x80478380 + .data start:0x804A0950 end:0x804A0A20 + .sdata2 start:0x805167C0 end:0x805167E0 + +JSystem/J2D/J2DWindowEx.cpp: + .text start:0x80044E34 end:0x8004791C + .rodata start:0x80478380 end:0x80478470 + .data start:0x804A0A20 end:0x804A0AF0 + .sdata2 start:0x805167E0 end:0x80516800 + +JSystem/J2D/J2DAnmLoader.cpp: + .text start:0x8004791C end:0x800494E4 + .data start:0x804A0AF0 end:0x804A0B78 + .sdata2 start:0x80516800 end:0x80516808 + +JSystem/J2D/J2DBloSaver.cpp: + .text start:0x800494E4 end:0x8004985C + .ctors start:0x80472DEC end:0x80472DF0 + .bss start:0x804F0348 end:0x804F0358 + .sbss start:0x80514F18 end:0x80514F20 + +JSystem/J2D/J2DManage.cpp: + .text start:0x8004985C end:0x80049B20 + .bss start:0x804F0358 end:0x804F0460 + +JSystem/J2D/J2DMatBlock.cpp: + .text start:0x80049B20 end:0x80051EA4 + .rodata start:0x80478470 end:0x80478480 + .data start:0x804A0B78 end:0x804A1060 + +JSystem/J2D/J2DMaterial.cpp: + .text start:0x80051EA4 end:0x800532E8 + .data start:0x804A1060 end:0x804A10B0 + .sdata2 start:0x80516808 end:0x80516818 + +JSystem/J2D/J2DMaterialFactory.cpp: + .text start:0x800532E8 end:0x80054AF0 + .sdata2 start:0x80516818 end:0x80516820 + .sbss2 start:0x80520D60 end:0x80520D68 + +JSystem/J2D/J2DPictureEx.cpp: + .text start:0x80054AF0 end:0x8005921C + .rodata start:0x80478480 end:0x804784E8 + .data start:0x804A10B0 end:0x804A1200 + .sdata2 start:0x80516820 end:0x80516838 + +JSystem/J2D/J2DTevs.cpp: + .text start:0x8005921C end:0x800596A8 + .rodata start:0x804784E8 end:0x80478568 + .sdata2 start:0x80516838 end:0x80516880 + +JSystem/J2D/J2DTextBoxEx.cpp: + .text start:0x800596A8 end:0x8005AF0C + .rodata start:0x80478568 end:0x804785A0 + .data start:0x804A1200 end:0x804A12C0 + .sdata2 start:0x80516880 end:0x805168A0 + +JSystem/J2D/J2DAnimation.cpp: + .text start:0x8005AF0C end:0x8005DAAC + .data start:0x804A12C0 end:0x804A1380 + .sdata2 start:0x805168A0 end:0x805168C8 + +JSystem/J3D/J3DSys.cpp: + .text start:0x8005DAAC end:0x8005EB80 + .ctors start:0x80472DF0 end:0x80472DF4 + .rodata start:0x804785A0 end:0x804786E0 + .data start:0x804A1380 end:0x804A13D8 + .bss start:0x8050F170 end:0x8050F39C align:4 common + .sdata start:0x80514618 end:0x80514620 + .sbss start:0x80514F20 end:0x80514F28 + .sdata2 start:0x805168C8 end:0x805168D8 + +JSystem/J3D/J3DVertex.cpp: + .text start:0x8005EB80 end:0x8005EE78 + +JSystem/J3D/J3DTransform.cpp: + .text start:0x8005EE78 end:0x8005F82C + .rodata start:0x804786E0 end:0x80478748 + .sdata start:0x80514620 end:0x80514628 + .sdata2 start:0x805168D8 end:0x805168E8 + +JSystem/J3D/J3DPacket.cpp: + .text start:0x8005F82C end:0x80060850 + .data start:0x804A13D8 end:0x804A1460 + .bss start:0x8050F39C end:0x8050F3AC align:4 common + .sbss start:0x80514F28 end:0x80514F30 + +JSystem/J3D/J3DShape.cpp: + .text start:0x80060850 end:0x800614E0 + .data start:0x804A1460 end:0x804A1478 + .sbss start:0x80514F30 end:0x80514F40 + .sdata2 start:0x805168E8 end:0x805168F0 + +JSystem/J3D/J3DMaterial.cpp: + .text start:0x800614E0 end:0x80063B24 + .data start:0x804A1478 end:0x804A1710 + +JSystem/J3D/J3DTevs.cpp: + .text start:0x80063B24 end:0x800659A4 + .rodata start:0x80478748 end:0x80478850 + .data start:0x804A1710 end:0x804A1830 + .bss start:0x8050F3AC end:0x80512034 align:4 common + .sdata2 start:0x805168F0 end:0x80516940 + +JSystem/J3D/J3DDrawBuffer.cpp: + .text start:0x800659A4 end:0x800662FC + .ctors start:0x80472DF4 end:0x80472DF8 + .data start:0x804A1830 end:0x804A18F0 + .sbss start:0x80514F40 end:0x80514F48 + .sdata2 start:0x80516940 end:0x80516950 + +JSystem/J3D/J3DModel.cpp: + .text start:0x800662FC end:0x80067678 + .data start:0x804A18F0 end:0x804A1920 + .sdata2 start:0x80516950 end:0x80516958 + +JSystem/J3D/J3DAnimation.cpp: + .text start:0x80067678 end:0x8006A0F4 + .data start:0x804A1920 end:0x804A1A10 + .sdata2 start:0x80516958 end:0x80516988 + +JSystem/J3D/J3DMaterialAnm.cpp: + .text start:0x8006A0F4 end:0x8006A59C + .data start:0x804A1A10 end:0x804A1A30 + +JSystem/J3D/J3DCluster.cpp: + .text start:0x8006A59C end:0x8006B200 + .sdata2 start:0x80516988 end:0x805169B8 + +JSystem/J3D/J3DJoint.cpp: + .text start:0x8006B200 end:0x8006C3A4 + .rodata start:0x80478850 end:0x80478880 + .data start:0x804A1A30 end:0x804A1AE0 + .sbss start:0x80514F48 end:0x80514F58 + .sdata2 start:0x805169B8 end:0x805169C0 + +JSystem/J3D/J3DMaterialFactory.cpp: + .text start:0x8006C3A4 end:0x8006F888 + .data start:0x804A1AE0 end:0x804A1D30 + .sdata2 start:0x805169C0 end:0x805169D0 + .sbss2 start:0x80520D68 end:0x80520D70 + +JSystem/J3D/J3DBinaryFormat.cpp: + .text start:0x8006F888 end:0x8006F894 + +JSystem/J3D/J3DModelLoader.cpp: + .text start:0x8006F894 end:0x80071B20 + .data start:0x804A1D30 end:0x804A1EB8 + +JSystem/J3D/J3DJointFactory.cpp: + .text start:0x80071B20 end:0x80071D10 + +JSystem/J3D/J3DShapeFactory.cpp: + .text start:0x80071D10 end:0x800725A0 + +JSystem/J3D/J3DAnmLoader.cpp: + .text start:0x800725A0 end:0x80074438 + .data start:0x804A1EB8 end:0x804A1F48 + .sdata2 start:0x805169D0 end:0x805169D8 + +JSystem/J3D/J3DModelSaver.cpp: + .text start:0x80074438 end:0x80074440 + +JSystem/J3D/J3DGD.cpp: + .text start:0x80074440 end:0x800771C0 + .data start:0x804A1F48 end:0x804A1FF0 + .sdata start:0x80514628 end:0x80514670 + .sdata2 start:0x805169D8 end:0x80516A18 + +JSystem/J3D/J3DMatBlock.cpp: + .text start:0x800771C0 end:0x80083794 + .ctors start:0x80472DF8 end:0x80472DFC + .data start:0x804A1FF0 end:0x804A2B70 + .sdata start:0x80514670 end:0x80514680 + .sbss start:0x80514F58 end:0x80514F60 + .sdata2 start:0x80516A18 end:0x80516A20 + +JSystem/J3D/J3DModelData.cpp: + .text start:0x80083794 end:0x80083C4C + .data start:0x804A2B70 end:0x804A2B88 + .sbss start:0x80514F60 end:0x80514F68 + +JSystem/J3D/J3DMaterialAttach.cpp: + .text start:0x80083C4C end:0x80084A00 + .data start:0x804A2B88 end:0x804A2B98 + +JSystem/J3D/J3DMaterialFactory_v21.cpp: + .text start:0x80084A00 end:0x80086104 + .sdata2 start:0x80516A20 end:0x80516A28 + .sbss2 start:0x80520D70 end:0x80520D78 + +JSystem/J3D/J3DShapeMtx.cpp: + .text start:0x80086104 end:0x80087900 + .ctors start:0x80472DFC end:0x80472E00 + .data start:0x804A2B98 end:0x804A2E70 + .bss start:0x80512034 end:0x80512048 align:4 common + .sbss start:0x80514F68 end:0x80514F88 + .sdata2 start:0x80516A28 end:0x80516A30 + +JSystem/J3D/J3DModelLoaderCalcSize.cpp: + .text start:0x80087900 end:0x8008828C + +JSystem/J3D/J3DJointTree.cpp: + .text start:0x8008828C end:0x80088658 + .data start:0x804A2E70 end:0x804A2ED0 + .sdata2 start:0x80516A30 end:0x80516A38 + +JSystem/J3D/J3DSkinDeform.cpp: + .text start:0x80088658 end:0x8008884C + .data start:0x804A2ED0 end:0x804A2EE0 + +JSystem/J3D/J3DShapeDraw.cpp: + .text start:0x8008884C end:0x800888D8 + .data start:0x804A2EE0 end:0x804A2F00 + +JSystem/J3D/J3DMtxBuffer.cpp: + .text start:0x800888D8 end:0x80089664 + .bss start:0x80512048 end:0x805120C0 align:4 common + .sdata start:0x80514680 end:0x80514690 + .sdata2 start:0x80516A38 end:0x80516A40 + +JSystem/J3D/J3DShapeTable.cpp: + .text start:0x80089664 end:0x8008975C + +JSystem/JFramework/JFWSystem.cpp: + .text start:0x8008975C end:0x80089AAC + .sdata start:0x80514690 end:0x805146C0 + .sbss start:0x80514F88 end:0x80514FA8 + .sdata2 start:0x80516A40 end:0x80516A50 + +JSystem/JFramework/JFWDisplay.cpp: + .text start:0x80089AAC end:0x8008B114 + .ctors start:0x80472E00 end:0x80472E04 + .rodata start:0x80478880 end:0x80478958 + .data start:0x804A2F00 end:0x804A2FA0 + .bss start:0x804F0460 end:0x804F0490 + .bss start:0x805120C0 end:0x805120CC align:4 common + .sbss start:0x80514FA8 end:0x80514FD0 + .sdata2 start:0x80516A50 end:0x80516A78 + +JSystem/JParticle/JPABaseShape.cpp: + .text start:0x8008B114 end:0x8008EE44 + .data start:0x804A2FA0 end:0x804A3148 + .sdata start:0x805146C0 end:0x805146C8 + .sdata2 start:0x80516A78 end:0x80516AB0 + +JSystem/JParticle/JPAChildShape.cpp: + .text start:0x8008EE44 end:0x8008EFD0 + .sdata2 start:0x80516AB0 end:0x80516AB8 + +JSystem/JParticle/JPADynamicsBlock.cpp: + .text start:0x8008EFD0 end:0x8008FC9C + .data start:0x804A3148 end:0x804A3168 + .sdata2 start:0x80516AB8 end:0x80516AE0 + +JSystem/JParticle/JPAEmitter.cpp: + .text start:0x8008FC9C end:0x80090538 + .sdata2 start:0x80516AE0 end:0x80516AF8 + +JSystem/JParticle/JPAEmitterManager.cpp: + .text start:0x80090538 end:0x80090F2C + .sdata2 start:0x80516AF8 end:0x80516B10 + +JSystem/JParticle/JPAExTexShape.cpp: + .text start:0x80090F2C end:0x80091030 + +JSystem/JParticle/JPAExtraShape.cpp: + .text start:0x80091030 end:0x800915A0 + .sdata2 start:0x80516B10 end:0x80516B38 + +JSystem/JParticle/JPAFieldBlock.cpp: + .text start:0x800915A0 end:0x80093A40 + .data start:0x804A3168 end:0x804A3258 + .sdata2 start:0x80516B38 end:0x80516B50 + +JSystem/JParticle/JPAKeyBlock.cpp: + .text start:0x80093A40 end:0x80093AE4 + .sdata2 start:0x80516B50 end:0x80516B58 + +JSystem/JParticle/JPAMath.cpp: + .text start:0x80093AE4 end:0x80094028 + .sdata2 start:0x80516B58 end:0x80516B70 + +JSystem/JParticle/JPAParticle.cpp: + .text start:0x80094028 end:0x800955EC + .data start:0x804A3258 end:0x804A3280 + .sdata2 start:0x80516B70 end:0x80516B98 + +JSystem/JParticle/JPAResource.cpp: + .text start:0x800955EC end:0x800980D8 + .data start:0x804A3280 end:0x804A3488 + .sdata2 start:0x80516B98 end:0x80516BB0 + +JSystem/JParticle/JPAResourceLoader.cpp: + .text start:0x800980D8 end:0x800984D0 + +JSystem/JParticle/JPAResourceManager.cpp: + .text start:0x800984D0 end:0x800986A0 + +JSystem/JParticle/JPATexture.cpp: + .text start:0x800986A0 end:0x8009876C + .data start:0x804A3488 end:0x804A3498 + +JSystem/JStage/JSGSystem.cpp: + .text start:0x8009876C end:0x800987F4 + .data start:0x804A3498 end:0x804A34E8 + +JSystem/JStage/JSGCamera.cpp: + .text start:0x800987F4 end:0x800988D4 + .data start:0x804A34E8 end:0x804A3580 + .sdata2 start:0x80516BB0 end:0x80516BB8 + +JSystem/JStage/JSGObject.cpp: + .text start:0x800988D4 end:0x80098990 + .data start:0x804A3580 end:0x804A35C0 + .sdata2 start:0x80516BB8 end:0x80516BC0 + +JSystem/JStage/JSGActor.cpp: + .text start:0x80098990 end:0x80098A68 + .data start:0x804A35C0 end:0x804A3650 + .sdata2 start:0x80516BC0 end:0x80516BC8 + +JSystem/JAudio/JAS/JASWSParser.cpp: + .text start:0x80098A68 end:0x80098F34 + .sbss start:0x80514FD0 end:0x80514FD8 + +JSystem/JAudio/JAS/JASBankMgr.cpp: + .text start:0x80098F34 end:0x800996FC + .rodata start:0x80478958 end:0x80478980 + .sbss start:0x80514FD8 end:0x80514FE8 + .sdata2 start:0x80516BC8 end:0x80516BE8 + +JSystem/JAudio/JAS/JASBasicBank.cpp: + .text start:0x800996FC end:0x80099888 + .data start:0x804A3650 end:0x804A3678 + +JSystem/JAudio/JAS/JASBasicInst.cpp: + .text start:0x80099888 end:0x80099E60 + .data start:0x804A3678 end:0x804A36A8 + .sdata2 start:0x80516BE8 end:0x80516BF8 + +JSystem/JAudio/JAS/JASBasicWaveBank.cpp: + .text start:0x80099E60 end:0x8009A7DC + .data start:0x804A36A8 end:0x804A3710 + +JSystem/JAudio/JAS/JASBNKParser.cpp: + .text start:0x8009A7DC end:0x8009B0B8 + .data start:0x804A3710 end:0x804A3720 + .sbss start:0x80514FE8 end:0x80514FF0 + .sdata2 start:0x80516BF8 end:0x80516C18 + +JSystem/JAudio/JAS/JASDrumSet.cpp: + .text start:0x8009B0B8 end:0x8009B4E0 + .data start:0x804A3720 end:0x804A3738 + .bss start:0x804F0490 end:0x804F04A8 + .sbss start:0x80514FF0 end:0x80514FF8 + .sdata2 start:0x80516C18 end:0x80516C30 + +JSystem/JAudio/JAS/JASInstEffect.cpp: + .text start:0x8009B4E0 end:0x8009B4E8 + +JSystem/JAudio/JAS/JASInstRand.cpp: + .text start:0x8009B4E8 end:0x8009B58C + .data start:0x804A3738 end:0x804A3748 + .sbss start:0x80514FF8 end:0x80515000 + .sdata2 start:0x80516C30 end:0x80516C38 + +JSystem/JAudio/JAS/JASInstSense.cpp: + .text start:0x8009B58C end:0x8009B6C4 + .data start:0x804A3748 end:0x804A3758 + .sdata2 start:0x80516C38 end:0x80516C50 + +JSystem/JAudio/JAS/JASSimpleWaveBank.cpp: + .text start:0x8009B6C4 end:0x8009BA08 + .data start:0x804A3758 end:0x804A3798 + +JSystem/JAudio/JAS/JASWaveArcLoader.cpp: + .text start:0x8009BA08 end:0x8009C030 + .data start:0x804A3798 end:0x804A37F8 + .sbss start:0x80515000 end:0x80515008 + +JSystem/JAudio/JAS/JASWaveBank.cpp: + .text start:0x8009C030 end:0x8009C044 + .sbss start:0x80515008 end:0x80515010 + +JSystem/JAudio/JAS/JASWaveBankMgr.cpp: + .text start:0x8009C044 end:0x8009C2FC + .sbss start:0x80515010 end:0x80515018 + +JSystem/JAudio/JAS/JASBank.cpp: + .text start:0x8009C2FC end:0x8009C310 + .sbss start:0x80515018 end:0x80515020 + +JSystem/JAudio/JAS/JASTrackPort.cpp: + .text start:0x8009C310 end:0x8009C400 + +JSystem/JAudio/JAS/JASOuterParam.cpp: + .text start:0x8009C400 end:0x8009C5B4 + .sdata2 start:0x80516C50 end:0x80516C58 + +JSystem/JAudio/JAS/JASPlayer_impl.cpp: + .text start:0x8009C5B4 end:0x8009C714 + .rodata start:0x80478980 end:0x80478AE0 + .data start:0x804A37F8 end:0x804A3C68 + .sbss start:0x80515020 end:0x80515030 + .sdata2 start:0x80516C58 end:0x80516C70 + +JSystem/JAudio/JAS/JASRegisterParam.cpp: + .text start:0x8009C714 end:0x8009C858 + +JSystem/JAudio/JAS/JASSeqCtrl.cpp: + .text start:0x8009C858 end:0x8009CAB8 + +JSystem/JAudio/JAS/JASSeqParser.cpp: + .text start:0x8009CAB8 end:0x8009EF94 + .ctors start:0x80472E04 end:0x80472E08 + .rodata start:0x80478AE0 end:0x80478BE0 + .data start:0x804A3C68 end:0x804A4260 + .sdata2 start:0x80516C70 end:0x80516CB8 + +JSystem/JAudio/JAS/JASTrack.cpp: + .text start:0x8009EF94 end:0x800A29EC + .data start:0x804A4260 end:0x804A4320 + .sbss start:0x80515030 end:0x80515040 + .sdata2 start:0x80516CB8 end:0x80516D18 + +JSystem/JAudio/JAS/JASTrackInterrupt.cpp: + .text start:0x800A29EC end:0x800A2B6C + +JSystem/JAudio/JAS/JASOscillator.cpp: + .text start:0x800A2B6C end:0x800A31F8 + .rodata start:0x80478BE0 end:0x80478CB8 + .sdata2 start:0x80516D18 end:0x80516D50 + +JSystem/JAudio/JAS/JASChannel.cpp: + .text start:0x800A31F8 end:0x800A47CC + .rodata start:0x80478CB8 end:0x80478D10 + .data start:0x804A4320 end:0x804A4388 + .sdata2 start:0x80516D50 end:0x80516D90 + +JSystem/JAudio/JAS/JASDriverIF.cpp: + .text start:0x800A47CC end:0x800A4B3C + .ctors start:0x80472E08 end:0x80472E0C + .rodata start:0x80478D10 end:0x80478F20 + .bss start:0x804F04A8 end:0x804F0628 + .sdata start:0x805146C8 end:0x805146D0 + .sdata2 start:0x80516D90 end:0x80516DA0 + +JSystem/JAudio/JAS/JASDSPChannel.cpp: + .text start:0x800A4B3C end:0x800A5304 + .sbss start:0x80515040 end:0x80515048 + +JSystem/JAudio/JAS/JASDSPInterface.cpp: + .text start:0x800A5304 end:0x800A5B7C + .rodata start:0x80478F20 end:0x80479478 + .data start:0x804A4388 end:0x804A43A0 + .sdata start:0x805146D0 end:0x805146E0 + .sbss start:0x80515048 end:0x80515058 + +JSystem/JAudio/JAS/JASAudioThread.cpp: + .text start:0x800A5B7C end:0x800A5EB0 + .rodata start:0x80479478 end:0x80479488 + .data start:0x804A43A0 end:0x804A43B0 + .sbss start:0x80515058 end:0x80515070 + .sdata2 start:0x80516DA0 end:0x80516DA8 + +JSystem/JAudio/JAS/JASCalc.cpp: + .text start:0x800A5EB0 end:0x800A64F4 + +JSystem/JAudio/JAS/JASCallback.cpp: + .text start:0x800A64F4 end:0x800A6718 + +JSystem/JAudio/JAS/JASCmdStack.cpp: + .text start:0x800A6718 end:0x800A6980 + .ctors start:0x80472E0C end:0x80472E10 + .bss start:0x804F0628 end:0x804F0640 + .bss start:0x805120CC end:0x805120F0 align:4 common + +JSystem/JAudio/JAS/JASDvdThread.cpp: + .text start:0x800A6980 end:0x800A6A90 + .sbss start:0x80515070 end:0x80515078 + +JSystem/JAudio/JAS/JASHeapCtrl.cpp: + .text start:0x800A6A90 end:0x800A74C8 + .ctors start:0x80472E10 end:0x80472E14 + .bss start:0x804F0640 end:0x804F0690 + .sbss start:0x80515078 end:0x80515088 + +JSystem/JAudio/JAS/JASProbe.cpp: + .text start:0x800A74C8 end:0x800A7664 + .sbss start:0x80515088 end:0x80515090 + .sdata2 start:0x80516DA8 end:0x80516DC0 + +JSystem/JAudio/JAS/JASResArcLoader.cpp: + .text start:0x800A7664 end:0x800A7860 + +JSystem/JAudio/JAS/JASReport.cpp: + .text start:0x800A7860 end:0x800A795C + .bss start:0x804F0690 end:0x804F06A8 + .sbss start:0x80515090 end:0x805150A0 + +JSystem/JAudio/JAS/JASAiCtrl.cpp: + .text start:0x800A795C end:0x800A84F8 + .rodata start:0x80479488 end:0x804794E0 + .data start:0x804A43B0 end:0x804A43D8 + .bss start:0x804F06A8 end:0x804F06C0 + .sdata start:0x805146E0 end:0x805146F0 + .sbss start:0x805150A0 end:0x805150D8 + .sdata2 start:0x80516DC0 end:0x80516DE0 + +JSystem/JAudio/JAS/JASChannelUpdater.cpp: + .text start:0x800A84F8 end:0x800A8834 + .sdata2 start:0x80516DE0 end:0x80516DF0 + +JSystem/JAudio/JAS/JASTaskThread.cpp: + .text start:0x800A8834 end:0x800A8F98 + .data start:0x804A43D8 end:0x804A43E8 + +JSystem/JAudio/JAS/JASAramStream.cpp: + .text start:0x800A8F98 end:0x800AA740 + .rodata start:0x804794E0 end:0x80479508 + .data start:0x804A43E8 end:0x804A4420 + .sbss start:0x805150D8 end:0x805150F0 + .sdata2 start:0x80516DF0 end:0x80516E10 + +JSystem/JAudio/dsp/dspproc.c: + .text start:0x800AA740 end:0x800AA8E0 + .sdata start:0x805146F0 end:0x805146F8 + .sbss start:0x805150F0 end:0x805150F8 + .sdata2 start:0x80516E10 end:0x80516E18 + +JSystem/JAudio/dsp/dsptask.c: + .text start:0x800AA8E0 end:0x800AAC00 + .data start:0x804A4420 end:0x804A6140 + .bss start:0x804F06C0 end:0x804F27A0 + .sbss start:0x805150F8 end:0x80515100 + +JSystem/JAudio/dsp/osdsp.c: + .text start:0x800AAC00 end:0x800AACE0 + .rodata start:0x80479508 end:0x80479528 + +JSystem/JAudio/dsp/osdsp_task.c: + .text start:0x800AACE0 end:0x800AB0CC + .bss start:0x804F27A0 end:0x804F27B0 + .sbss start:0x80515100 end:0x80515110 + +JSystem/JAudio/JAI/JAIAnimation.cpp: + .text start:0x800AB0CC end:0x800ABE24 + .data start:0x804A6140 end:0x804A6188 + .sdata2 start:0x80516E18 end:0x80516E48 + +JSystem/JAudio/JAI/JAIBankWave.cpp: + .text start:0x800ABE24 end:0x800AC138 + .sdata start:0x805146F8 end:0x80514710 + .sbss start:0x80515110 end:0x80515128 + +JSystem/JAudio/JAI/JAIBasic.cpp: + .text start:0x800AC138 end:0x800AD1A4 + .data start:0x804A6188 end:0x804A61B0 + .sdata start:0x80514710 end:0x80514718 + .sbss start:0x80515128 end:0x80515148 + .sdata2 start:0x80516E48 end:0x80516E68 + +JSystem/JAudio/JAI/JAIConst.cpp: + .text start:0x800AD1A4 end:0x800AD470 + .ctors start:0x80472E14 end:0x80472E18 + .data start:0x804A61B0 end:0x804A61E0 + .bss start:0x805120F0 end:0x805121B4 align:4 common + .sbss start:0x80515148 end:0x80515150 + +JSystem/JAudio/JAI/JAIDummyObject.cpp: + .text start:0x800AD470 end:0x800AD6AC + .sbss start:0x80515150 end:0x80515160 + +JSystem/JAudio/JAI/JAIFx.cpp: + .text start:0x800AD6AC end:0x800AD930 + .sbss start:0x80515160 end:0x80515178 + +JSystem/JAudio/JAI/JAIGlobalParameter.cpp: + .text start:0x800AD930 end:0x800ADB84 + .rodata start:0x80479528 end:0x80479550 + .sdata start:0x80514718 end:0x805147B8 + .sbss start:0x80515178 end:0x80515188 + .sdata2 start:0x80516E68 end:0x80516E80 + +JSystem/JAudio/JAI/JAIInitData.cpp: + .text start:0x800ADB84 end:0x800AE080 + .data start:0x804A61E0 end:0x804A6208 + .sdata start:0x805147B8 end:0x805147C0 + .sbss start:0x80515188 end:0x80515190 + .sdata2 start:0x80516E80 end:0x80516E88 + +JSystem/JAudio/JAI/JAISeMgr.cpp: + .text start:0x800AE080 end:0x800B0320 + .sdata start:0x805147C0 end:0x805147C8 + .sbss start:0x80515190 end:0x805151B8 + .sdata2 start:0x80516E88 end:0x80516EE0 + +JSystem/JAudio/JAI/JAISequenceHeap.cpp: + .text start:0x800B0320 end:0x800B0924 + .sbss start:0x805151B8 end:0x805151C8 + +JSystem/JAudio/JAI/JAISequenceMgr.cpp: + .text start:0x800B0924 end:0x800B3818 + .sbss start:0x805151C8 end:0x805151E0 + .sdata2 start:0x80516EE0 end:0x80516F20 + +JSystem/JAudio/JAI/JAISound.cpp: + .text start:0x800B3818 end:0x800B742C + .data start:0x804A6208 end:0x804A6578 + .sbss start:0x805151E0 end:0x805151E8 + .sdata2 start:0x80516F20 end:0x80516F80 + +JSystem/JAudio/JAI/JAISoundTable.cpp: + .text start:0x800B742C end:0x800B762C + .sbss start:0x805151E8 end:0x80515200 + +JSystem/JAudio/JAI/JAIStreamMgr.cpp: + .text start:0x800B762C end:0x800B8EC4 + .rodata start:0x80479550 end:0x80479568 + .data start:0x804A6578 end:0x804A6598 + .sdata start:0x805147C8 end:0x805147D0 + .sbss start:0x80515200 end:0x80515240 + .sdata2 start:0x80516F80 end:0x80516F90 + +JSystem/JAudio/JAI/JAISystemInterface.cpp: + .text start:0x800B8EC4 end:0x800B95DC + .ctors start:0x80472E18 end:0x80472E1C + .bss start:0x804F27B0 end:0x804F27C0 + .bss start:0x805121B4 end:0x805121CC align:4 common + .sdata2 start:0x80516F90 end:0x80516F98 + +JSystem/JAudio/JAI/JAIObject.cpp: + .text start:0x800B95DC end:0x800BA1CC + .data start:0x804A6598 end:0x804A6610 + .sdata2 start:0x80516F98 end:0x80516FB8 + +JSystem/JAudio/JAD/JADHioNode.cpp: + .text start:0x800BA1CC end:0x800BA224 + .data start:0x804A6610 end:0x804A6620 + +JSystem/JAudio/JAL/JALCalc.cpp: + .text start:0x800BA224 end:0x800BA544 + .sbss start:0x80515240 end:0x80515248 + .sdata2 start:0x80516FB8 end:0x80516FD0 + +JSystem/JAudio/JAU/JAUData.cpp: + .text start:0x800BA544 end:0x800BA7D8 + .data start:0x804A6620 end:0x804A6678 + +JSystem/JAudio/JAU/JAUDataMgr.cpp: + .text start:0x800BA7D8 end:0x800BB370 + .data start:0x804A6678 end:0x804A6748 + .sdata2 start:0x80516FD0 end:0x80516FD8 + +Dolphin/TRK_MINNOW_DOLPHIN/mainloop.c: + .text start:0x800BB370 end:0x800BB468 + +Dolphin/TRK_MINNOW_DOLPHIN/nubevent.c: + .text start:0x800BB468 end:0x800BB690 + .bss start:0x804F27C0 end:0x804F27E8 + +Dolphin/TRK_MINNOW_DOLPHIN/nubinit.c: + .text start:0x800BB690 end:0x800BB828 + .rodata start:0x80479568 end:0x80479598 + .bss start:0x804F27E8 end:0x804F27F0 + +Dolphin/TRK_MINNOW_DOLPHIN/msg.c: + .text start:0x800BB828 end:0x800BB86C + .rodata start:0x80479598 end:0x804795C0 + +Dolphin/TRK_MINNOW_DOLPHIN/msgbuf.c: + .text start:0x800BB86C end:0x800BC0A8 + .rodata start:0x804795C0 end:0x804795E0 + .bss start:0x804F27F0 end:0x804F41A0 + +Dolphin/TRK_MINNOW_DOLPHIN/serpoll.c: + .text start:0x800BC0A8 end:0x800BC360 + .rodata start:0x804795E0 end:0x80479770 + .bss start:0x804F41A0 end:0x804F41B8 + .sbss start:0x80515248 end:0x80515250 + +Dolphin/TRK_MINNOW_DOLPHIN/usr_put.c: + .text start:0x800BC360 end:0x800BC3EC + +Dolphin/TRK_MINNOW_DOLPHIN/dispatch.c: + .text start:0x800BC3EC end:0x800BC564 + .rodata start:0x80479770 end:0x804797B0 + .data start:0x804A6748 end:0x804A67B8 + +Dolphin/TRK_MINNOW_DOLPHIN/msghndlr.c: + .text start:0x800BC564 end:0x800BD5D4 + .rodata start:0x804797B0 end:0x80479998 + .data start:0x804A67B8 end:0x804A67F0 + .bss start:0x804F41B8 end:0x804F41C0 + +Dolphin/TRK_MINNOW_DOLPHIN/support.c: + .text start:0x800BD5D4 end:0x800BDCE8 + .rodata start:0x80479998 end:0x80479A40 + +Dolphin/TRK_MINNOW_DOLPHIN/mutex_TRK.c: + .text start:0x800BDCE8 end:0x800BDD00 + +Dolphin/TRK_MINNOW_DOLPHIN/notify.c: + .text start:0x800BDD00 end:0x800BDD98 + +Dolphin/TRK_MINNOW_DOLPHIN/flush_cache.c: + .text start:0x800BDD98 end:0x800BDDD0 + +Dolphin/TRK_MINNOW_DOLPHIN/mem_TRK.c: + .init start:0x80003100 end:0x80003154 + .text start:0x800BDDD0 end:0x800BDE88 + +Dolphin/TRK_MINNOW_DOLPHIN/targimpl.c: comment:0 + .text start:0x800BDE88 end:0x800BFA20 + .rodata start:0x80479A40 end:0x80479AD8 + .data start:0x804A67F0 end:0x804A6820 + .bss start:0x804F41C0 end:0x804F4740 + +Dolphin/TRK_MINNOW_DOLPHIN/targsupp.c: comment:0 + .text start:0x800BFA20 end:0x800BFA40 align:32 + +Dolphin/TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c: + .text start:0x800BFA40 end:0x800BFDB0 + +Dolphin/TRK_MINNOW_DOLPHIN/__exception.s: comment:0 + .init start:0x80003154 end:0x80005088 + +Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk.c: + .init start:0x80005088 end:0x800050B4 + .text start:0x800BFDB0 end:0x800C03EC + .data start:0x804A6820 end:0x804A6860 + .bss start:0x804F4740 end:0x804F4748 + +Dolphin/TRK_MINNOW_DOLPHIN/main_TRK.c: + .text start:0x800C03EC end:0x800C0444 + .rodata start:0x80479AD8 end:0x80479AE8 + .bss start:0x804F4748 end:0x804F4750 + +Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c: + .text start:0x800C0444 end:0x800C099C + .rodata start:0x80479AE8 end:0x80479BF0 + .data start:0x804A6860 end:0x804A6888 + .bss start:0x804F4750 end:0x804F4758 + +Dolphin/TRK_MINNOW_DOLPHIN/targcont.c: + .text start:0x800C099C end:0x800C09D0 + +Dolphin/TRK_MINNOW_DOLPHIN/target_options.c: + .text start:0x800C09D0 end:0x800C09EC + .bss start:0x804F4758 end:0x804F4760 + +Dolphin/TRK_MINNOW_DOLPHIN/mslsupp.c: + .text start:0x800C09EC end:0x800C0BE8 + +Dolphin/TRK_MINNOW_DOLPHIN/UDP_Stubs.c: + .text start:0x800C0BE8 end:0x800C0C30 + +Dolphin/TRK_MINNOW_DOLPHIN/ddh/main.c: + .text start:0x800C0C30 end:0x800C0F74 + .rodata start:0x80479BF0 end:0x80479CD0 + .bss start:0x804F4760 end:0x804F4F80 + .sbss start:0x80515250 end:0x80515258 + +Dolphin/TRK_MINNOW_DOLPHIN/CircleBuffer.c: + .text start:0x800C0F74 end:0x800C11DC + +Dolphin/TRK_MINNOW_DOLPHIN/gdev/main.c: + .text start:0x800C11DC end:0x800C1528 + .rodata start:0x80479CD0 end:0x80479DB0 + .bss start:0x804F4F80 end:0x804F54A0 + .sbss start:0x80515258 end:0x80515260 + +Dolphin/TRK_MINNOW_DOLPHIN/MWTrace.c: + .text start:0x800C1528 end:0x800C1578 + +Dolphin/TRK_MINNOW_DOLPHIN/MWCriticalSection_gc.cpp: + .text start:0x800C1578 end:0x800C15D0 + +Dolphin/Runtime/__va_arg.c: + .text start:0x800C15D0 end:0x800C1698 + +Dolphin/Runtime/global_destructor_chain.c: + .text start:0x800C1698 end:0x800C16F8 + .dtors start:0x80473168 end:0x8047316C + .sbss start:0x80515260 end:0x80515268 + +Dolphin/Runtime/__mem.c: + .init start:0x800050B4 end:0x800051EC + +Dolphin/Runtime/CPlusLibPPC.cp: + .text start:0x800C16F8 end:0x800C1728 + +Dolphin/Runtime/NMWException.cp: + extab start:0x80005600 end:0x80005648 + extabindex start:0x80005660 end:0x8000569C + .text start:0x800C1728 end:0x800C1AD4 + +Dolphin/Runtime/ptmf.c: + .text start:0x800C1AD4 end:0x800C1B2C + .rodata start:0x80479DB0 end:0x80479DC0 + +Dolphin/Runtime/runtime.c: + .text start:0x800C1B2C end:0x800C22A4 + .rodata start:0x80479DC0 end:0x80479DD8 + +Dolphin/Runtime/__init_cpp_exceptions.cpp: + .text start:0x800C22A4 end:0x800C2320 + .ctors start:0x80472DA0 end:0x80472DA4 + .dtors start:0x80473160 end:0x80473168 + .sdata start:0x805147D0 end:0x805147D8 + +Dolphin/Runtime/Gecko_ExceptionPPC.cp: + .text start:0x800C2320 end:0x800C2388 + .bss start:0x804F54A0 end:0x804F54B0 + +Dolphin/Runtime/GCN_mem_alloc.c: + .text start:0x800C2388 end:0x800C2440 + .rodata start:0x80479DD8 end:0x80479E50 + +Dolphin/MSL_C/PPC_EABI/abort_exit.c: + .text start:0x800C2440 end:0x800C2530 + .bss start:0x804F54B0 end:0x804F55B0 + .sbss start:0x80515268 end:0x80515278 + +Dolphin/MSL_C/MSL_Common/alloc.c: + .text start:0x800C2530 end:0x800C29E4 + .rodata start:0x80479E50 end:0x80479E68 + .bss start:0x804F55B0 end:0x804F55E8 + .sbss start:0x80515278 end:0x80515280 + +Dolphin/MSL_C/MSL_Common/errno.c: + .sbss start:0x80515280 end:0x80515288 + +Dolphin/MSL_C/MSL_Common/ansi_files.c: + .text start:0x800C29E4 end:0x800C2AFC + .data start:0x804A6888 end:0x804A69C8 + .bss start:0x804F55E8 end:0x804F58E8 + +Dolphin/MSL_C/MSL_Common_Embedded/ansi_fp.c: + .text start:0x800C2AFC end:0x800C60D8 + .rodata start:0x80479E68 end:0x80479F48 + .data start:0x804A69C8 end:0x804A6B30 + .sdata2 start:0x80516FD8 end:0x80517008 + +Dolphin/MSL_C/MSL_Common/arith.c: + .text start:0x800C60D8 end:0x800C6140 + +Dolphin/MSL_C/MSL_Common/buffer_io.c: + .text start:0x800C6140 end:0x800C6238 + +Dolphin/MSL_C/PPC_EABI/critical_regions.gamecube.c: + .text start:0x800C6238 end:0x800C6244 + +Dolphin/MSL_C/MSL_Common/ctype.c: + .text start:0x800C6244 end:0x800C6268 + .data start:0x804A6B30 end:0x804A6E30 + +Dolphin/MSL_C/MSL_Common/locale.c: + .rodata start:0x80479F48 end:0x80479F50 + .data start:0x804A6E30 end:0x804A6E68 + +Dolphin/MSL_C/MSL_Common/direct_io.c: + .text start:0x800C6268 end:0x800C65F0 + +Dolphin/MSL_C/MSL_Common/file_io.c: + .text start:0x800C65F0 end:0x800C68E4 + +Dolphin/MSL_C/MSL_Common/FILE_POS.C: + .text start:0x800C68E4 end:0x800C6CA4 + +Dolphin/MSL_C/MSL_Common/mbstring.c: + .text start:0x800C6CA4 end:0x800C6FC8 + .sdata2 start:0x80517008 end:0x80517010 + +Dolphin/MSL_C/MSL_Common/mem.c: + .text start:0x800C6FC8 end:0x800C7138 + +Dolphin/MSL_C/MSL_Common/mem_funcs.c: + .text start:0x800C7138 end:0x800C7408 + +Dolphin/MSL_C/MSL_Common/misc_io.c: + .text start:0x800C7408 end:0x800C7418 + +Dolphin/MSL_C/MSL_Common/printf.c: + .text start:0x800C7418 end:0x800C9578 + .rodata start:0x80479F50 end:0x80479F78 + .data start:0x804A6E68 end:0x804A7098 + .sdata start:0x805147D8 end:0x805147E0 + .sdata2 start:0x80517010 end:0x80517018 + +Dolphin/MSL_C/MSL_Common/rand.c: + .text start:0x800C9578 end:0x800C95A0 + .sdata start:0x805147E0 end:0x805147E8 + +Dolphin/MSL_C/MSL_Common/float.c: + .sdata start:0x805147E8 end:0x80514818 + +Dolphin/MSL_C/MSL_Common/scanf.c: + .text start:0x800C95A0 end:0x800CA5E8 + .rodata start:0x80479F78 end:0x80479FA0 + .data start:0x804A7098 end:0x804A7168 + +Dolphin/MSL_C/MSL_Common/string.c: + .text start:0x800CA5E8 end:0x800CA90C + +Dolphin/MSL_C/MSL_Common/strtold.c: + .text start:0x800CA90C end:0x800CB918 + .rodata start:0x80479FA0 end:0x80479FD8 + .sdata2 start:0x80517018 end:0x80517030 + +Dolphin/MSL_C/MSL_Common/strtoul.c: + .text start:0x800CB918 end:0x800CC238 + .data start:0x804A7168 end:0x804A71F0 + +Dolphin/MSL_C/MSL_Common/wchar_io.c: + .text start:0x800CC238 end:0x800CC2C0 + +Dolphin/MSL_C/PPC_EABI/uart_console_io_gcn.c: + .text start:0x800CC2C0 end:0x800CC390 + .sbss start:0x80515288 end:0x80515290 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_asin.c: + .text start:0x800CC390 end:0x800CC5C8 + .sdata2 start:0x80517030 end:0x805170B8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_atan2.c: + .text start:0x800CC5C8 end:0x800CC858 + .sdata2 start:0x805170B8 end:0x80517110 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_exp.c: + .text start:0x800CC858 end:0x800CCA7C + .rodata start:0x80479FD8 end:0x8047A008 + .sdata2 start:0x80517110 end:0x80517188 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_fmod.c: + .text start:0x800CCA7C end:0x800CCDB8 + .rodata start:0x8047A008 end:0x8047A018 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log.c: + .text start:0x800CCDB8 end:0x800CD034 + .sbss start:0x80515290 end:0x80515298 + .sdata2 start:0x80517188 end:0x80517208 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log10.c: + .text start:0x800CD034 end:0x800CD144 + .sbss start:0x80515298 end:0x805152A0 + .sdata2 start:0x80517208 end:0x80517238 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_pow.c: + .text start:0x800CD144 end:0x800CD974 + .rodata start:0x8047A018 end:0x8047A048 + .sdata2 start:0x80517238 end:0x80517348 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_rem_pio2.c: + .text start:0x800CD974 end:0x800CDD14 + .rodata start:0x8047A048 end:0x8047A1D0 + .sdata2 start:0x80517348 end:0x805173A0 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_cos.c: + .text start:0x800CDD14 end:0x800CDE08 + .sdata2 start:0x805173A0 end:0x805173E8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_rem_pio2.c: + .text start:0x800CDE08 end:0x800CEC5C + .rodata start:0x8047A1D0 end:0x8047A220 + .sdata2 start:0x805173E8 end:0x80517428 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_sin.c: + .text start:0x800CEC5C end:0x800CECFC + .sdata2 start:0x80517428 end:0x80517460 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_tan.c: + .text start:0x800CECFC end:0x800CEF10 + .rodata start:0x8047A220 end:0x8047A288 + .sdata2 start:0x80517460 end:0x80517498 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_atan.c: + .text start:0x800CEF10 end:0x800CF128 + .rodata start:0x8047A288 end:0x8047A320 + .sdata2 start:0x80517498 end:0x805174C0 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ceil.c: + .text start:0x800CF128 end:0x800CF26C + .sdata2 start:0x805174C0 end:0x805174D0 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_copysign.c: + .text start:0x800CF26C end:0x800CF294 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_cos.c: + .text start:0x800CF294 end:0x800CF368 + .sdata2 start:0x805174D0 end:0x805174D8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_floor.c: + .text start:0x800CF368 end:0x800CF4B0 + .sdata2 start:0x805174D8 end:0x805174E8 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_frexp.c: + .text start:0x800CF4B0 end:0x800CF53C + .sdata2 start:0x805174E8 end:0x805174F0 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ldexp.c: + .text start:0x800CF53C end:0x800CF700 + .sdata2 start:0x805174F0 end:0x80517518 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_modf.c: + .text start:0x800CF700 end:0x800CF7FC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_sin.c: + .text start:0x800CF7FC end:0x800CF8D4 + .sdata2 start:0x80517518 end:0x80517520 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_tan.c: + .text start:0x800CF8D4 end:0x800CF94C + .sdata2 start:0x80517520 end:0x80517528 + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_asin.c: + .text start:0x800CF94C end:0x800CF96C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_atan2.c: + .text start:0x800CF96C end:0x800CF98C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_exp.c: + .text start:0x800CF98C end:0x800CF9AC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_fmod.c: + .text start:0x800CF9AC end:0x800CF9CC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_log10.c: + .text start:0x800CF9CC end:0x800CF9EC + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_pow.c: + .text start:0x800CF9EC end:0x800CFA0C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_sqrt.c: + .text start:0x800CFA0C end:0x800CFC30 + .sdata2 start:0x80517528 end:0x80517530 + +Dolphin/MSL_C/PPC_EABI/math_ppc.c: + .text start:0x800CFC30 end:0x800CFC9C + +Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_sqrt.c: + .text start:0x800CFC9C end:0x800CFCBC + +Dolphin/MSL_C/MSL_Common/extras.c: + .text start:0x800CFCBC end:0x800CFD48 + +Dolphin/OdemuExi2/DebuggerDriver.c: + .text start:0x800CFD48 end:0x800D07C8 + .sdata start:0x80514818 end:0x80514820 + .sbss start:0x805152A0 end:0x805152B8 + +Dolphin/vi/vi.c: + .text start:0x800D07C8 end:0x800D2624 + .data start:0x804A71F0 end:0x804A75C0 + .bss start:0x804F58E8 end:0x804F5A30 + .sdata start:0x80514820 end:0x80514830 + .sbss start:0x805152B8 end:0x80515318 + +Dolphin/amcstubs/AmcExi2Stubs.c: + .text start:0x800D2624 end:0x800D2654 + +Dolphin/ar/ar.c: + .text start:0x800D2654 end:0x800D419C + .data start:0x804A75C0 end:0x804A7608 + .sdata start:0x80514830 end:0x80514838 + .sbss start:0x80515318 end:0x80515338 + +Dolphin/ar/arq.c: + .text start:0x800D419C end:0x800D4538 + .data start:0x804A7608 end:0x804A7650 + .sdata start:0x80514838 end:0x80514840 + .sbss start:0x80515338 end:0x80515360 + +Dolphin/base/PPCArch.c: + .text start:0x800D4538 end:0x800D464C + +Dolphin/card/CARDBios.c: + .text start:0x800D464C end:0x800D5900 + .data start:0x804A7650 end:0x804A76C0 + .bss start:0x804F5A30 end:0x804F5C70 + .sdata start:0x80514840 end:0x80514848 + .sbss start:0x80515360 end:0x80515368 + +Dolphin/card/CARDUnlock.c: + .text start:0x800D5900 end:0x800D6B60 + .data start:0x804A76C0 end:0x804A7820 + .sdata start:0x80514848 end:0x80514850 + +Dolphin/card/CARDRdwr.c: + .text start:0x800D6B60 end:0x800D6DE0 + +Dolphin/card/CARDBlock.c: + .text start:0x800D6DE0 end:0x800D7148 + +Dolphin/card/CARDDir.c: + .text start:0x800D7148 end:0x800D73AC + +Dolphin/card/CARDCheck.c: + .text start:0x800D73AC end:0x800D8314 + +Dolphin/card/CARDMount.c: + .text start:0x800D8314 end:0x800D8E0C + .data start:0x804A7820 end:0x804A7860 + +Dolphin/card/CARDFormat.c: + .text start:0x800D8E0C end:0x800D95FC + +Dolphin/card/CARDOpen.c: + .text start:0x800D95FC end:0x800D9A90 + +Dolphin/card/CARDCreate.c: + .text start:0x800D9A90 end:0x800D9E28 + +Dolphin/card/CARDRead.c: + .text start:0x800D9E28 end:0x800DA29C + +Dolphin/card/CARDWrite.c: + .text start:0x800DA29C end:0x800DA618 + +Dolphin/card/CARDStat.c: + .text start:0x800DA618 end:0x800DAAE0 + +Dolphin/card/CARDNet.c: + .text start:0x800DAAE0 end:0x800DABA4 + .sdata start:0x80514850 end:0x80514858 + +Dolphin/db/db.c: + .text start:0x800DABA4 end:0x800DAC90 + .data start:0x804A7860 end:0x804A7878 + .sbss start:0x80515368 end:0x80515370 + +Dolphin/dsp/dsp.c: + .text start:0x800DAC90 end:0x800DADE0 + .data start:0x804A7878 end:0x804A78F8 + .sdata start:0x80514858 end:0x80514860 + .sbss start:0x80515370 end:0x80515378 + +Dolphin/dsp/dsp_debug.c: + .text start:0x800DADE0 end:0x800DAE30 + +Dolphin/dsp/dsp_task.c: + .text start:0x800DAE30 end:0x800DB290 + .data start:0x804A78F8 end:0x804A7A38 + .sbss start:0x80515378 end:0x80515388 + +Dolphin/dvd/dvdlow.c: + .text start:0x800DB290 end:0x800DC10C + .bss start:0x804F5C70 end:0x804F5D40 + .sdata start:0x80514860 end:0x80514868 + .sbss start:0x80515388 end:0x805153D0 + +Dolphin/dvd/dvdfs.c: + .text start:0x800DC10C end:0x800DCD08 + .data start:0x804A7A38 end:0x804A7BD8 + .sdata start:0x80514868 end:0x80514870 + .sbss start:0x805153D0 end:0x805153F0 + +Dolphin/dvd/dvd.c: + .text start:0x800DCD08 end:0x800DF43C + .data start:0x804A7BD8 end:0x804A7D58 + .bss start:0x804F5D40 end:0x804F5DD8 + .sdata start:0x80514870 end:0x80514888 + .sbss start:0x805153F0 end:0x80515438 + +Dolphin/dvd/dvdqueue.c: + .text start:0x800DF43C end:0x800DF634 + .bss start:0x804F5DD8 end:0x804F5DF8 + +Dolphin/dvd/dvderror.c: + .text start:0x800DF634 end:0x800DF7CC + .data start:0x804A7D58 end:0x804A7DA0 + +Dolphin/dvd/dvdidutils.c: + .text start:0x800DF7CC end:0x800DF8C4 + +Dolphin/dvd/dvdFatal.c: + .text start:0x800DF8C4 end:0x800DF8F4 + .sbss start:0x80515438 end:0x80515440 + +Dolphin/dvd/fstload.c: + .text start:0x800DF8F4 end:0x800DFB34 + .data start:0x804A7DA0 end:0x804A7E10 + .bss start:0x804F5DF8 end:0x804F5E68 + .sdata start:0x80514888 end:0x80514898 + .sbss start:0x80515440 end:0x80515450 + +Dolphin/exi/EXIBios.c: + .text start:0x800DFB34 end:0x800E1510 + .data start:0x804A7E10 end:0x804A7F20 + .bss start:0x804F5E68 end:0x804F5F28 + .sdata start:0x80514898 end:0x805148A0 + .sbss start:0x80515450 end:0x80515458 + +Dolphin/exi/EXIUart.c: + .text start:0x800E1510 end:0x800E1AE4 + .sbss start:0x80515458 end:0x80515468 + +Dolphin/gd/GDBase.c: + .text start:0x800E1AE4 end:0x800E1C50 + .sbss start:0x80515468 end:0x80515470 + +Dolphin/gd/GDGeometry.c: + .text start:0x800E1C50 end:0x800E2660 + .data start:0x804A7F20 end:0x804A7FA0 + +Dolphin/gx/GXInit.c: + .text start:0x800E2660 end:0x800E39E0 + .data start:0x804A7FA0 end:0x804A81E0 + .bss start:0x804F5F28 end:0x804F6560 + .sdata start:0x805148A0 end:0x805148A8 + .sbss start:0x80515470 end:0x80515498 + .sdata2 start:0x80517530 end:0x80517558 + +Dolphin/gx/GXFifo.c: + .text start:0x800E39E0 end:0x800E4264 + .sbss start:0x80515498 end:0x805154B8 + +Dolphin/gx/GXAttr.c: + .text start:0x800E4264 end:0x800E4FB8 + .data start:0x804A81E0 end:0x804A8340 + .sdata start:0x805148A8 end:0x805148B8 + +Dolphin/gx/GXMisc.c: + .text start:0x800E4FB8 end:0x800E58E8 + .sbss start:0x805154B8 end:0x805154D0 + +Dolphin/gx/GXGeometry.c: + .text start:0x800E58E8 end:0x800E5C24 + +Dolphin/gx/GXFrameBuf.c: + .text start:0x800E5C24 end:0x800E6850 + .data start:0x804A8340 end:0x804A8470 + .sdata2 start:0x80517558 end:0x80517568 + +Dolphin/gx/GXLight.c: + .text start:0x800E6850 end:0x800E6F38 + .data start:0x804A8470 end:0x804A8490 + .sdata2 start:0x80517568 end:0x805175B0 + +Dolphin/gx/GXTexture.c: + .text start:0x800E6F38 end:0x800E7F20 + .data start:0x804A8490 end:0x804A86B8 + .sdata start:0x805148B8 end:0x805148F8 + .sdata2 start:0x805175B0 end:0x805175D8 + +Dolphin/gx/GXBump.c: + .text start:0x800E7F20 end:0x800E845C + .sdata2 start:0x805175D8 end:0x805175E0 + +Dolphin/gx/GXTev.c: + .text start:0x800E845C end:0x800E8BC0 + .data start:0x804A86B8 end:0x804A8730 + +Dolphin/gx/GXPixel.c: + .text start:0x800E8BC0 end:0x800E93B8 + .data start:0x804A8730 end:0x804A8750 + .sdata2 start:0x805175E0 end:0x80517640 + +Dolphin/gx/GXDisplayList.c: + .text start:0x800E93B8 end:0x800E9428 + +Dolphin/gx/GXTransform.c: + .text start:0x800E9428 end:0x800E9964 + .sdata2 start:0x80517640 end:0x80517650 + +Dolphin/gx/GXPerf.c: + .text start:0x800E9964 end:0x800EA280 + .data start:0x804A8750 end:0x804A8840 + +Dolphin/mtx/mtx.c: + .text start:0x800EA280 end:0x800EABB8 + .sdata start:0x805148F8 end:0x80514900 + .sdata2 start:0x80517650 end:0x80517670 + +Dolphin/mtx/mtxvec.c: + .text start:0x800EABB8 end:0x800EACE8 + +Dolphin/mtx/mtx44.c: + .text start:0x800EACE8 end:0x800EAE94 + .sdata2 start:0x80517670 end:0x80517688 + +Dolphin/mtx/vec.c: + .text start:0x800EAE94 end:0x800EAFA0 + .sdata2 start:0x80517688 end:0x80517690 + +Dolphin/odenotstub/odenotstub.c: + .text start:0x800EAFA0 end:0x800EAFA8 + +Dolphin/os/OS.c: + .text start:0x800EAFA8 end:0x800EBA94 + .data start:0x804A8840 end:0x804A8A38 + .bss start:0x804F6560 end:0x804F65B0 + .sdata start:0x80514900 end:0x80514910 + .sbss start:0x805154D0 end:0x80515510 + +Dolphin/os/OSAlarm.c: + .text start:0x800EBA94 end:0x800EC1F0 + .data start:0x804A8A38 end:0x804A8A48 + .sbss start:0x80515510 end:0x80515518 + +Dolphin/os/OSAlloc.c: + .text start:0x800EC1F0 end:0x800EC404 + .sdata start:0x80514910 end:0x80514918 + .sbss start:0x80515518 end:0x80515528 + +Dolphin/os/OSArena.c: + .text start:0x800EC404 end:0x800EC424 + .sdata start:0x80514918 end:0x80514920 + .sbss start:0x80515528 end:0x80515530 + +Dolphin/os/OSAudioSystem.c: + .text start:0x800EC424 end:0x800EC6B8 + .data start:0x804A8A48 end:0x804A8AC8 + +Dolphin/os/OSCache.c: + .text start:0x800EC6B8 end:0x800ECD30 + .data start:0x804A8AC8 end:0x804A8CF8 + +Dolphin/os/OSContext.c: + .text start:0x800ECD30 end:0x800ED6CC + .data start:0x804A8CF8 end:0x804A8ED0 + +Dolphin/os/OSError.c: + .text start:0x800ED6CC end:0x800EDD78 + .data start:0x804A8ED0 end:0x804A91F0 + .bss start:0x804F65B0 end:0x804F6600 + .sdata start:0x80514920 end:0x80514928 + +Dolphin/os/OSFont.c: + .text start:0x800EDD78 end:0x800EEC18 + .data start:0x804A91F0 end:0x804A9D00 + .sdata start:0x80514928 end:0x80514930 + .sbss start:0x80515530 end:0x80515540 + .sdata2 start:0x80517690 end:0x80517698 + +Dolphin/os/OSInterrupt.c: + .text start:0x800EEC18 end:0x800EF484 + .data start:0x804A9D00 end:0x804A9D30 + .sbss start:0x80515540 end:0x80515558 + +Dolphin/os/OSLink.c: + .text start:0x800EF484 end:0x800EF49C + +Dolphin/os/OSMessage.c: + .text start:0x800EF49C end:0x800EF774 + +Dolphin/os/OSMemory.c: + .text start:0x800EF774 end:0x800EFB10 + .data start:0x804A9D30 end:0x804A9D40 + +Dolphin/os/OSMutex.c: + .text start:0x800EFB10 end:0x800EFF2C + +Dolphin/os/OSReboot.c: + .text start:0x800EFF2C end:0x800F0284 + .bss start:0x804F6600 end:0x804F6620 + .sbss start:0x80515558 end:0x80515568 + +Dolphin/os/OSReset.c: + .text start:0x800F0284 end:0x800F06B0 + .sbss start:0x80515568 end:0x80515578 + +Dolphin/os/OSResetSW.c: + .text start:0x800F06B0 end:0x800F0A5C + .sbss start:0x80515578 end:0x80515598 + +Dolphin/os/OSRtc.c: + .text start:0x800F0A5C end:0x800F17B4 + .bss start:0x804F6620 end:0x804F6678 + +Dolphin/os/OSSync.c: + .text start:0x800F17B4 end:0x800F1838 + +Dolphin/os/OSThread.c: + .text start:0x800F1838 end:0x800F2B70 + .bss start:0x804F6678 end:0x804F7070 + .sdata start:0x80514930 end:0x80514938 + .sbss start:0x80515598 end:0x805155A8 + +Dolphin/os/__start.c: + .init start:0x800051EC end:0x800054EC + .sbss start:0x805155A8 end:0x805155B0 + +Dolphin/os/OSTime.c: + .text start:0x800F2B70 end:0x800F2F94 + .data start:0x804A9D40 end:0x804A9DA0 + +Dolphin/os/__ppc_eabi_init.cpp: + .init start:0x800054EC end:0x80005544 + .text start:0x800F2F94 end:0x800F3028 + +Dolphin/pad/Padclamp.c: + .text start:0x800F3028 end:0x800F3520 + .rodata start:0x8047A320 end:0x8047A330 + .sdata2 start:0x80517698 end:0x805176B8 + +Dolphin/pad/Pad.c: + .text start:0x800F3520 end:0x800F4EDC + .data start:0x804A9DA0 end:0x804A9DF8 + .bss start:0x804F7070 end:0x804F70C0 + .sdata start:0x80514938 end:0x80514958 + .sbss start:0x805155B0 end:0x805155E0 + +Dolphin/si/SIBios.c: + .text start:0x800F4EDC end:0x800F673C + .data start:0x804A9DF8 end:0x804A9F10 + .bss start:0x804F70C0 end:0x804F72C0 + .sdata start:0x80514958 end:0x80514960 + .sbss start:0x805155E0 end:0x805155F0 + +Dolphin/si/SISamplingRate.c: + .text start:0x800F673C end:0x800F6844 + .data start:0x804A9F10 end:0x804A9FA8 + .sbss start:0x805155F0 end:0x805155F8 + +Dolphin/ai/ai.c: + .text start:0x800F6844 end:0x800F7128 + .data start:0x804A9FA8 end:0x804A9FF0 + .sdata start:0x80514960 end:0x80514968 + .sbss start:0x805155F8 end:0x80515640 + +Dolphin/thp/THPDec.c: + .text start:0x800F7128 end:0x800FE690 + .rodata start:0x8047A330 end:0x8047A3C0 + .data start:0x804A9FF0 end:0x804AA038 + .bss start:0x804F72C0 end:0x804F7400 + .sdata start:0x80514968 end:0x80514970 + .sbss start:0x80515640 end:0x80515758 + .sdata2 start:0x805176B8 end:0x805176D8 + +Dolphin/thp/THPAudio.c: + .text start:0x800FE690 end:0x800FEB0C + +Dolphin/gba/GBA.c: + .text start:0x800FEB0C end:0x800FED50 + .data start:0x804AA038 end:0x804AA090 + .bss start:0x804F7400 end:0x804F7900 + .sdata start:0x80514970 end:0x80514978 + .sbss start:0x80515758 end:0x80515760 + +Dolphin/gba/GBARead.c: + .text start:0x800FED50 end:0x800FEE44 + +Dolphin/gba/GBAWrite.c: + .text start:0x800FEE44 end:0x800FEF38 + +Dolphin/gba/GBAXfer.c: + .text start:0x800FEF38 end:0x800FF24C + +plugProjectYamashitaU/enemyBase.cpp: + .text start:0x800FF24C end:0x801082E0 + .ctors start:0x80472E1C end:0x80472E20 + .rodata start:0x8047A3C0 end:0x8047A500 + .data start:0x804AA090 end:0x804AA8E8 + .sbss start:0x80515760 end:0x80515798 + .sdata2 start:0x805176D8 end:0x80517790 + +plugProjectYamashitaU/pelplant.cpp: + .text start:0x801082E0 end:0x8010AB18 + .rodata start:0x8047A500 end:0x8047A8C0 + .data start:0x804AA8E8 end:0x804AB040 + .sbss start:0x80515798 end:0x805157A0 + .sdata2 start:0x80517790 end:0x805178A0 + +plugProjectYamashitaU/pelplantState.cpp: + .text start:0x8010AB18 end:0x8010B9E0 + .rodata start:0x8047A8C0 end:0x8047A910 + .data start:0x804AB040 end:0x804AB218 + .sdata2 start:0x805178A0 end:0x805178E0 + +plugProjectYamashitaU/enemyInteractBattle.cpp: + .text start:0x8010B9E0 end:0x8010BD1C + .data start:0x804AB218 end:0x804AB2D0 + +plugProjectYamashitaU/generalEnemyMgr.cpp: + .text start:0x8010BD1C end:0x8010F288 + .rodata start:0x8047A910 end:0x8047A9C8 + .data start:0x804AB2D0 end:0x804AB568 + .sbss start:0x805157A0 end:0x805157B0 + .sdata2 start:0x805178E0 end:0x80517910 + +plugProjectYamashitaU/kochappyAnimator.cpp: + .text start:0x8010F288 end:0x8010F2FC + .data start:0x804AB568 end:0x804AB590 + +plugProjectYamashitaU/kochappy.cpp: + .text start:0x8010F2FC end:0x8010F854 + .data start:0x804AB590 end:0x804AB8D8 + .sdata2 start:0x80517910 end:0x80517918 + +plugProjectYamashitaU/kochappyState.cpp: + .text start:0x8010F854 end:0x80112294 + .ctors start:0x80472E20 end:0x80472E24 + .rodata start:0x8047A9C8 end:0x8047A9D8 + .data start:0x804AB8D8 end:0x804ABA98 + .sbss start:0x805157B0 end:0x805157B8 + .sdata2 start:0x80517918 end:0x80517998 + +plugProjectYamashitaU/kochappyMgr.cpp: + .text start:0x80112294 end:0x801126D4 + .rodata start:0x8047A9D8 end:0x8047AD28 + .data start:0x804ABA98 end:0x804ABB88 + .sdata start:0x80514978 end:0x80514980 + .sdata2 start:0x80517998 end:0x805179B8 + +plugProjectYamashitaU/enemyAction.cpp: + .text start:0x801126D4 end:0x80115F70 + .ctors start:0x80472E24 end:0x80472E28 + .rodata start:0x8047AD28 end:0x8047AD48 + .data start:0x804ABB88 end:0x804ABC10 + .sbss start:0x805157B8 end:0x805157C0 + .sdata2 start:0x805179B8 end:0x805179D8 + +plugProjectYamashitaU/chappy.cpp: + .text start:0x80115F70 end:0x80116628 + .data start:0x804ABC10 end:0x804ABF78 + .sdata2 start:0x805179D8 end:0x805179E0 + +plugProjectYamashitaU/chappyState.cpp: + .text start:0x80116628 end:0x801196F0 + .rodata start:0x8047AD48 end:0x8047AD68 + .data start:0x804ABF78 end:0x804AC128 + .sdata2 start:0x805179E0 end:0x80517A50 + +plugProjectYamashitaU/chappyAnimator.cpp: + .text start:0x801196F0 end:0x80119764 + .data start:0x804AC128 end:0x804AC150 + +plugProjectYamashitaU/chappyMgr.cpp: + .text start:0x80119764 end:0x80119BDC + .rodata start:0x8047AD68 end:0x8047B0D8 + .data start:0x804AC150 end:0x804AC248 + .sdata start:0x80514980 end:0x80514988 + .sdata2 start:0x80517A50 end:0x80517A68 + +plugProjectYamashitaU/lifeGaugeMgr.cpp: + .text start:0x80119BDC end:0x8011AFB0 + .ctors start:0x80472E28 end:0x80472E2C + .rodata start:0x8047B0D8 end:0x8047B108 + .data start:0x804AC248 end:0x804AC260 + .sbss start:0x805157C0 end:0x805157D0 + .sdata2 start:0x80517A68 end:0x80517AA0 + +plugProjectYamashitaU/carryInfoMgr.cpp: + .text start:0x8011AFB0 end:0x8011CCC0 + .ctors start:0x80472E2C end:0x80472E30 + .rodata start:0x8047B108 end:0x8047B160 + .data start:0x804AC260 end:0x804AC360 + .sbss start:0x805157D0 end:0x805157E0 + .sdata2 start:0x80517AA0 end:0x80517B30 + +plugProjectYamashitaU/gameLightMgr.cpp: + .text start:0x8011CCC0 end:0x80122430 + .ctors start:0x80472E30 end:0x80472E34 + .rodata start:0x8047B160 end:0x8047B2C0 + .data start:0x804AC360 end:0x804AC458 + .sbss start:0x805157E0 end:0x805157E8 + .sdata2 start:0x80517B30 end:0x80517C00 + +plugProjectYamashitaU/vtxAnm.cpp: + .text start:0x80122430 end:0x80123258 + .rodata start:0x8047B2C0 end:0x8047B2E8 + .data start:0x804AC458 end:0x804AC478 + .sdata2 start:0x80517C00 end:0x80517C28 + +plugProjectYamashitaU/enemyInfo.cpp: + .text start:0x80123258 end:0x801234D8 + .rodata start:0x8047B2E8 end:0x8047B568 + .data start:0x804AC478 end:0x804AD8C8 + .sdata start:0x80514988 end:0x80514990 + .sdata2 start:0x80517C28 end:0x80517DB8 + +plugProjectYamashitaU/farm.cpp: + .text start:0x801234D8 end:0x80123FF8 + .rodata start:0x8047B568 end:0x8047B5B8 + .data start:0x804AD8C8 end:0x804AD8F8 + .sdata2 start:0x80517DB8 end:0x80517DE0 + +plugProjectYamashitaU/farmMgr.cpp: + .text start:0x80123FF8 end:0x80124758 + .ctors start:0x80472E34 end:0x80472E38 + .rodata start:0x8047B5B8 end:0x8047B5F0 + .data start:0x804AD8F8 end:0x804AD958 + .sbss start:0x805157E8 end:0x805157F0 + .sdata2 start:0x80517DE0 end:0x80517DE8 + +plugProjectYamashitaU/genEnemy.cpp: + .text start:0x80124758 end:0x80126BE0 + .rodata start:0x8047B5F0 end:0x8047BBE8 + .data start:0x804AD958 end:0x804ADB60 + .sdata2 start:0x80517DE8 end:0x80517E90 + +plugProjectYamashitaU/timeMgr.cpp: + .text start:0x80126BE0 end:0x80127590 + .rodata start:0x8047BBE8 end:0x8047BCC8 + .data start:0x804ADB60 end:0x804ADB70 + .sdata2 start:0x80517E90 end:0x80517EC8 + +plugProjectYamashitaU/pelplantGenerator.cpp: + .text start:0x80127590 end:0x80127864 + .rodata start:0x8047BCC8 end:0x8047BCF8 + .data start:0x804ADB70 end:0x804ADB98 + .sdata2 start:0x80517EC8 end:0x80517ED0 + +plugProjectYamashitaU/enemyInteractActions.cpp: + .text start:0x80127864 end:0x80127954 + .sdata2 start:0x80517ED0 end:0x80517ED8 + +plugProjectYamashitaU/enemyAnimatorBase.cpp: + .text start:0x80127954 end:0x80127BE0 + .data start:0x804ADB98 end:0x804ADBC0 + .sdata2 start:0x80517ED8 end:0x80517EF8 + +plugProjectYamashitaU/enemyStoneMgr.cpp: + .text start:0x80127BE0 end:0x801280E8 + .rodata start:0x8047BCF8 end:0x8047BDA0 + .sdata start:0x80514990 end:0x80514998 + +plugProjectYamashitaU/enemyStoenInfo.cpp: + .text start:0x801280E8 end:0x80128260 + .sdata2 start:0x80517EF8 end:0x80517F00 + +plugProjectYamashitaU/enemyStoneDrawInfo.cpp: + .text start:0x80128260 end:0x80129B10 + .rodata start:0x8047BDA0 end:0x8047BDB8 + .data start:0x804ADBC0 end:0x804ADD38 + .sbss start:0x805157F0 end:0x805157F8 + .sdata2 start:0x80517F00 end:0x80517F78 + +plugProjectYamashitaU/enemyStoneObj.cpp: + .text start:0x80129B10 end:0x8012A224 + .ctors start:0x80472E38 end:0x80472E3C + .rodata start:0x8047BDB8 end:0x8047BDD0 + .data start:0x804ADD38 end:0x804ADD58 + .sbss start:0x805157F8 end:0x80515800 + .sdata2 start:0x80517F78 end:0x80517F88 + +plugProjectYamashitaU/enemyParmsBase.cpp: + .text start:0x8012A224 end:0x8012A300 + +plugProjectYamashitaU/walkSmokeEffect.cpp: + .text start:0x8012A300 end:0x8012A650 + .rodata start:0x8047BDD0 end:0x8047BE20 + .sdata2 start:0x80517F88 end:0x80517F90 + +plugProjectYamashitaU/ChappyBaseMgr.cpp: + .text start:0x8012A650 end:0x8012A930 + .rodata start:0x8047BE20 end:0x8047BE60 + .data start:0x804ADD58 end:0x804ADE40 + .sdata2 start:0x80517F90 end:0x80517F98 + +plugProjectYamashitaU/ChappyBase.cpp: + .text start:0x8012A930 end:0x8012B88C + .data start:0x804ADE40 end:0x804AE1F0 + .sdata2 start:0x80517F98 end:0x80518010 + +plugProjectYamashitaU/BlueChappyMgr.cpp: + .text start:0x8012B88C end:0x8012BBD4 + .rodata start:0x8047BE60 end:0x8047BED0 + .data start:0x804AE1F0 end:0x804AE2D8 + .sdata start:0x80514998 end:0x805149A0 + +plugProjectYamashitaU/BlueChappy.cpp: + .text start:0x8012BBD4 end:0x8012BFD0 + .data start:0x804AE2D8 end:0x804AE640 + +plugProjectYamashitaU/YellowChappyMgr.cpp: + .text start:0x8012BFD0 end:0x8012C358 + .rodata start:0x8047BED0 end:0x8047BF40 + .data start:0x804AE640 end:0x804AE728 + .sdata start:0x805149A0 end:0x805149A8 + +plugProjectYamashitaU/YellowChappy.cpp: + .text start:0x8012C358 end:0x8012CBFC + .rodata start:0x8047BF40 end:0x8047BF60 + .data start:0x804AE728 end:0x804AEAF8 + .sdata2 start:0x80518010 end:0x80518020 + +plugProjectYamashitaU/BlueKochappyMgr.cpp: + .text start:0x8012CBFC end:0x8012CF18 + .rodata start:0x8047BF60 end:0x8047BFB0 + .data start:0x804AEAF8 end:0x804AEBE0 + .sdata start:0x805149A8 end:0x805149B0 + +plugProjectYamashitaU/BlueKochappy.cpp: + .text start:0x8012CF18 end:0x8012D1F4 + .data start:0x804AEBE0 end:0x804AEF18 + +plugProjectYamashitaU/YellowKochappy.cpp: + .text start:0x8012D1F4 end:0x8012D5C4 + .data start:0x804AEF18 end:0x804AF250 + +plugProjectYamashitaU/YellowKochappyMgr.cpp: + .text start:0x8012D5C4 end:0x8012D7EC + .rodata start:0x8047BFB0 end:0x8047C000 + .data start:0x804AF250 end:0x804AF338 + .sdata start:0x805149B0 end:0x805149B8 + +plugProjectYamashitaU/KochappyBaseMgr.cpp: + .text start:0x8012D7EC end:0x8012DAC8 + .rodata start:0x8047C000 end:0x8047C048 + .data start:0x804AF338 end:0x804AF420 + +plugProjectYamashitaU/KochappyBase.cpp: + .text start:0x8012DAC8 end:0x8012E0C8 + .data start:0x804AF420 end:0x804AF758 + .sdata2 start:0x80518020 end:0x80518058 + +plugProjectYamashitaU/enemyBlendAnimatorBase.cpp: + .text start:0x8012E0C8 end:0x8012E32C + .ctors start:0x80472E3C end:0x80472E40 + .data start:0x804AF758 end:0x804AF798 + .sbss start:0x80515800 end:0x80515808 + .sdata2 start:0x80518058 end:0x80518060 + +plugProjectYamashitaU/enemyPelletInfo.cpp: + .text start:0x8012E32C end:0x8012E4F0 + .rodata start:0x8047C048 end:0x8047C088 + .data start:0x804AF798 end:0x804AF7A8 + .sdata2 start:0x80518060 end:0x80518068 + +plugProjectYamashitaU/enemyEffectNode.cpp: + .text start:0x8012E4F0 end:0x8012EC04 + .data start:0x804AF7A8 end:0x804AF7E0 + .sdata2 start:0x80518068 end:0x80518070 + +plugProjectYamashitaU/enemyMgrBase.cpp: + .text start:0x8012EC04 end:0x801306EC + .rodata start:0x8047C088 end:0x8047C1F8 + .data start:0x804AF7E0 end:0x804AF8C0 + .sdata2 start:0x80518070 end:0x80518088 + +plugProjectYamashitaU/enemyFSM.cpp: + .text start:0x801306EC end:0x80130B7C + .data start:0x804AF8C0 end:0x804AF908 + .sdata2 start:0x80518088 end:0x80518090 + +plugProjectYamashitaU/singleGS_ZukanParms.cpp: + .text start:0x80130B7C end:0x8013284C + .ctors start:0x80472E40 end:0x80472E44 + .rodata start:0x8047C1F8 end:0x8047C3D0 + .data start:0x804AF908 end:0x804AF9C0 + .sbss start:0x80515808 end:0x80515818 + .sdata2 start:0x80518090 end:0x80518110 + +plugProjectYamashitaU/treasureLightMgr.cpp: + .text start:0x8013284C end:0x80132C94 + .ctors start:0x80472E44 end:0x80472E48 + .rodata start:0x8047C3D0 end:0x8047C410 + .data start:0x804AF9C0 end:0x804AF9F0 + .sbss start:0x80515818 end:0x80515820 + .sdata2 start:0x80518110 end:0x80518138 + +plugProjectYamashitaU/effectAnimator.cpp: + .text start:0x80132C94 end:0x8013362C + .rodata start:0x8047C410 end:0x8047C440 + .data start:0x804AF9F0 end:0x804AFD40 + .sdata2 start:0x80518138 end:0x80518148 + +plugProjectKandoU/pikiAnimator.cpp: + .text start:0x8013362C end:0x80133688 + +plugProjectKandoU/collinfo.cpp: + .text start:0x80133688 end:0x80139C40 + .rodata start:0x8047C440 end:0x8047C4E8 + .data start:0x804AFD40 end:0x804AFFA8 + .sbss start:0x80515820 end:0x80515828 + .sdata2 start:0x80518148 end:0x80518178 + +plugProjectKandoU/gameDynamics.cpp: + .text start:0x80139C40 end:0x8013AE64 + .rodata start:0x8047C4E8 end:0x8047C588 + .data start:0x804AFFA8 end:0x804AFFD8 + .sbss start:0x80515828 end:0x80515830 + .sdata2 start:0x80518178 end:0x805181C0 + +plugProjectKandoU/creature.cpp: + .text start:0x8013AE64 end:0x8013CC48 + .ctors start:0x80472E48 end:0x80472E4C + .rodata start:0x8047C588 end:0x8047C5A8 + .data start:0x804AFFD8 end:0x804B01F0 + .sdata start:0x805149B8 end:0x805149C0 + .sbss start:0x80515830 end:0x80515840 + .sdata2 start:0x805181C0 end:0x805181F0 + +plugProjectKandoU/fakePiki.cpp: + .text start:0x8013CC48 end:0x8013F6B4 + .ctors start:0x80472E4C end:0x80472E50 + .rodata start:0x8047C5A8 end:0x8047C628 + .data start:0x804B01F0 end:0x804B0420 + .sdata start:0x805149C0 end:0x805149C8 + .sbss start:0x80515840 end:0x80515850 + .sdata2 start:0x805181F0 end:0x80518288 + +plugProjectKandoU/navi.cpp: + .text start:0x8013F6B4 end:0x801476BC + .ctors start:0x80472E50 end:0x80472E54 + .rodata start:0x8047C628 end:0x8047C720 + .data start:0x804B0420 end:0x804B08D0 + .sbss start:0x80515850 end:0x80515860 + .sdata2 start:0x80518288 end:0x80518350 + +plugProjectKandoU/piki.cpp: + .text start:0x801476BC end:0x8014AD80 + .ctors start:0x80472E54 end:0x80472E58 + .rodata start:0x8047C720 end:0x8047C7E8 + .data start:0x804B08D0 end:0x804B0BB0 + .bss start:0x805121CC end:0x8051222C align:4 common + .sbss start:0x80515860 end:0x80515868 + .sdata2 start:0x80518350 end:0x805183D8 + +plugProjectKandoU/baseGameSection.cpp: + .text start:0x8014AD80 end:0x80152054 + .ctors start:0x80472E58 end:0x80472E5C + .rodata start:0x8047C7E8 end:0x8047CC38 + .data start:0x804B0BB0 end:0x804B0FB0 + .sdata start:0x805149C8 end:0x805149D0 + .sbss start:0x80515868 end:0x80515880 + .sdata2 start:0x805183D8 end:0x80518500 + .sbss2 start:0x80520D78 end:0x80520D80 + +plugProjectKandoU/singleGameSection.cpp: + .text start:0x80152054 end:0x801565A8 + .ctors start:0x80472E5C end:0x80472E60 + .rodata start:0x8047CC38 end:0x8047CE80 + .data start:0x804B0FB0 end:0x804B13C8 + .sbss start:0x80515880 end:0x80515888 + .sdata2 start:0x80518500 end:0x80518568 + +plugProjectKandoU/cellPyramid.cpp: + .text start:0x801565A8 end:0x8015926C + .rodata start:0x8047CE80 end:0x8047CF28 + .data start:0x804B13C8 end:0x804B13E0 + .sdata start:0x805149D0 end:0x805149D8 + .sbss start:0x80515888 end:0x805158A0 + .sdata2 start:0x80518568 end:0x805185A8 + +plugProjectKandoU/naviMgr.cpp: + .text start:0x8015926C end:0x8015CCF4 + .rodata start:0x8047CF28 end:0x8047D640 + .data start:0x804B13E0 end:0x804B15D8 + .sbss start:0x805158A0 end:0x805158A8 + .sdata2 start:0x805185A8 end:0x80518698 + +plugProjectKandoU/pikiMgr.cpp: + .text start:0x8015CCF4 end:0x8016237C + .ctors start:0x80472E60 end:0x80472E64 + .rodata start:0x8047D640 end:0x8047E030 + .data start:0x804B15D8 end:0x804B17E8 + .sbss start:0x805158A8 end:0x805158C0 + .sdata2 start:0x80518698 end:0x805187A0 + +plugProjectKandoU/mapMgr.cpp: + .text start:0x8016237C end:0x80164BD0 + .ctors start:0x80472E64 end:0x80472E68 + .rodata start:0x8047E030 end:0x8047E140 + .data start:0x804B17E8 end:0x804B1930 + .sbss start:0x805158C0 end:0x805158D0 + .sdata2 start:0x805187A0 end:0x80518818 + +plugProjectKandoU/baseHIOSection.cpp: + .text start:0x80164BD0 end:0x80165068 + .ctors start:0x80472E68 end:0x80472E6C + .rodata start:0x8047E140 end:0x8047E1B8 + .data start:0x804B1930 end:0x804B19A0 + .sbss start:0x805158D0 end:0x805158D8 + .sdata2 start:0x80518818 end:0x80518820 + +plugProjectKandoU/naviWhistle.cpp: + .text start:0x80165068 end:0x801658CC + .sdata2 start:0x80518820 end:0x80518850 + +plugProjectKandoU/pelletMgr.cpp: + .text start:0x801658CC end:0x80172500 + .ctors start:0x80472E6C end:0x80472E70 + .rodata start:0x8047E1B8 end:0x8047E3E8 + .data start:0x804B19A0 end:0x804B2240 + .sdata start:0x805149D8 end:0x805149E0 + .sbss start:0x805158D8 end:0x805158E8 + .sdata2 start:0x80518850 end:0x80518940 + +plugProjectKandoU/routeMgr.cpp: + .text start:0x80172500 end:0x80174C80 + .rodata start:0x8047E3E8 end:0x8047E4C0 + .data start:0x804B2240 end:0x804B2360 + .sdata2 start:0x80518940 end:0x80518968 + +plugProjectKandoU/onyonMgr.cpp: + .text start:0x80174C80 end:0x8017D3D8 + .ctors start:0x80472E70 end:0x80472E74 + .rodata start:0x8047E4C0 end:0x8047E920 + .data start:0x804B2360 end:0x804B2BC8 + .sbss start:0x805158E8 end:0x805158F8 + .sdata2 start:0x80518968 end:0x80518AA0 + .sbss2 start:0x80520D80 end:0x80520D88 + +plugProjectKandoU/objectTypes.cpp: + .text start:0x8017D3D8 end:0x8017D42C + .rodata start:0x8047E920 end:0x8047E968 + .data start:0x804B2BC8 end:0x804B2C80 + .sdata2 start:0x80518AA0 end:0x80518B20 + +plugProjectKandoU/naviState.cpp: + .text start:0x8017D42C end:0x80189358 + .ctors start:0x80472E74 end:0x80472E78 + .rodata start:0x8047E968 end:0x8047EA88 + .data start:0x804B2C80 end:0x804B3710 + .sbss start:0x805158F8 end:0x80515900 + .sdata2 start:0x80518B20 end:0x80518C40 + +plugProjectKandoU/pikiState.cpp: + .text start:0x80189358 end:0x80192C64 + .ctors start:0x80472E78 end:0x80472E7C + .rodata start:0x8047EA88 end:0x8047ED30 + .data start:0x804B3710 end:0x804B4710 + .sbss start:0x80515900 end:0x80515908 + .sdata2 start:0x80518C40 end:0x80518DF0 + +plugProjectKandoU/interactPiki.cpp: + .text start:0x80192C64 end:0x80194FD4 + .ctors start:0x80472E7C end:0x80472E80 + .rodata start:0x8047ED30 end:0x8047EE48 + .data start:0x804B4710 end:0x804B4948 + .sbss start:0x80515908 end:0x80515910 + .sdata2 start:0x80518DF0 end:0x80518E30 + +plugProjectKandoU/gameCPlate.cpp: + .text start:0x80194FD4 end:0x80196650 + .rodata start:0x8047EE48 end:0x8047EEE8 + .data start:0x804B4948 end:0x804B49A0 + .sdata2 start:0x80518E30 end:0x80518E88 + +plugProjectKandoU/updateMgr.cpp: + .text start:0x80196650 end:0x801969F8 + .rodata start:0x8047EEE8 end:0x8047EF10 + .sbss start:0x80515910 end:0x80515918 + +plugProjectKandoU/aiAction.cpp: + .text start:0x801969F8 end:0x801972BC + .ctors start:0x80472E80 end:0x80472E84 + .data start:0x804B49A0 end:0x804B49E8 + .sbss start:0x80515918 end:0x80515920 + .sdata2 start:0x80518E88 end:0x80518EA0 + +plugProjectKandoU/aiPrimitives.cpp: + .text start:0x801972BC end:0x8019CD50 + .ctors start:0x80472E84 end:0x80472E88 + .rodata start:0x8047EF10 end:0x8047F008 + .data start:0x804B49E8 end:0x804B4C30 + .sbss start:0x80515920 end:0x80515928 + .sdata2 start:0x80518EA0 end:0x80518F28 + +plugProjectKandoU/aiFormation.cpp: + .text start:0x8019CD50 end:0x8019EE74 + .ctors start:0x80472E88 end:0x80472E8C + .rodata start:0x8047F008 end:0x8047F0B8 + .data start:0x804B4C30 end:0x804B4CA8 + .sdata start:0x805149E0 end:0x805149E8 + .sbss start:0x80515928 end:0x80515930 + .sdata2 start:0x80518F28 end:0x80518F80 + +plugProjectKandoU/creatureStick.cpp: + .text start:0x8019EE74 end:0x8019FE58 + .rodata start:0x8047F0B8 end:0x8047F100 + .data start:0x804B4CA8 end:0x804B4CD8 + .sdata start:0x805149E8 end:0x805149F0 + .sbss start:0x80515930 end:0x80515940 + .sdata2 start:0x80518F80 end:0x80518F98 + +plugProjectKandoU/interactBattle.cpp: + .text start:0x8019FE58 end:0x8019FF18 + .data start:0x804B4CD8 end:0x804B4D68 + +plugProjectKandoU/aiFree.cpp: + .text start:0x8019FF18 end:0x801A04AC + .rodata start:0x8047F100 end:0x8047F140 + .data start:0x804B4D68 end:0x804B4DC0 + .sdata2 start:0x80518F98 end:0x80518FB8 + +plugProjectKandoU/aiAttack.cpp: + .text start:0x801A04AC end:0x801A18F4 + .rodata start:0x8047F140 end:0x8047F1D8 + .data start:0x804B4DC0 end:0x804B4E40 + .sdata2 start:0x80518FB8 end:0x80519010 + +plugProjectKandoU/aiTransport.cpp: + .text start:0x801A18F4 end:0x801A2700 + .rodata start:0x8047F1D8 end:0x8047F260 + .data start:0x804B4E40 end:0x804B4EA8 + .sdata2 start:0x80519010 end:0x80519050 + +plugProjectKandoU/aiEnter.cpp: + .text start:0x801A2700 end:0x801A35CC + .rodata start:0x8047F260 end:0x8047F2A0 + .data start:0x804B4EA8 end:0x804B4F48 + .sdata2 start:0x80519050 end:0x805190B8 + +plugProjectKandoU/pathfinder.cpp: + .text start:0x801A35CC end:0x801A42F0 + .rodata start:0x8047F2A0 end:0x8047F330 + .sbss start:0x80515940 end:0x80515948 + .sdata2 start:0x805190B8 end:0x805190C8 + +plugProjectKandoU/pelletState.cpp: + .text start:0x801A42F0 end:0x801A7F1C + .ctors start:0x80472E8C end:0x80472E90 + .rodata start:0x8047F330 end:0x8047F4D0 + .data start:0x804B4F48 end:0x804B5158 + .sbss start:0x80515948 end:0x80515950 + .sdata2 start:0x805190C8 end:0x80519178 + +plugProjectKandoU/dynCreature.cpp: + .text start:0x801A7F1C end:0x801AA6C4 + .rodata start:0x8047F4D0 end:0x8047F508 + .data start:0x804B5158 end:0x804B5530 + .sbss start:0x80515950 end:0x80515958 + .sdata2 start:0x80519178 end:0x80519198 + +plugProjectKandoU/gameGenerator.cpp: + .text start:0x801AA6C4 end:0x801AC3A0 + .ctors start:0x80472E90 end:0x80472E94 + .rodata start:0x8047F508 end:0x8047F628 + .data start:0x804B5530 end:0x804B55E8 + .sdata start:0x805149F0 end:0x805149F8 + .sbss start:0x80515958 end:0x80515980 + .sdata2 start:0x80519198 end:0x805191B8 + +plugProjectKandoU/genPiki.cpp: + .text start:0x801AC3A0 end:0x801AC9E8 + .ctors start:0x80472E94 end:0x80472E98 + .rodata start:0x8047F628 end:0x8047F678 + .data start:0x804B55E8 end:0x804B5638 + .sbss start:0x80515980 end:0x80515988 + .sdata2 start:0x805191B8 end:0x805191E8 + +plugProjectKandoU/genNavi.cpp: + .text start:0x801AC9E8 end:0x801ACD00 + .rodata start:0x8047F678 end:0x8047F6B0 + .data start:0x804B5638 end:0x804B5678 + .sdata2 start:0x805191E8 end:0x805191F8 + +plugProjectKandoU/genItem.cpp: + .text start:0x801ACD00 end:0x801AD358 + .rodata start:0x8047F6B0 end:0x8047F748 + .data start:0x804B5678 end:0x804B56B8 + .sdata2 start:0x805191F8 end:0x80519208 + +plugProjectKandoU/gameStages.cpp: + .text start:0x801AD358 end:0x801AE428 + .rodata start:0x8047F748 end:0x8047F7F8 + .data start:0x804B56B8 end:0x804B56E8 + .sbss start:0x80515988 end:0x80515990 + .sdata2 start:0x80519208 end:0x80519260 + +plugProjectKandoU/gameSeaMgr.cpp: + .text start:0x801AE428 end:0x801B07A0 + .ctors start:0x80472E98 end:0x80472E9C + .rodata start:0x8047F7F8 end:0x8047F8C8 + .data start:0x804B56E8 end:0x804B5940 + .sbss start:0x80515990 end:0x80515998 + .sdata2 start:0x80519260 end:0x80519288 + +plugProjectKandoU/pikiAI.cpp: + .text start:0x801B07A0 end:0x801B3ECC + .ctors start:0x80472E9C end:0x80472EA0 + .rodata start:0x8047F8C8 end:0x8047F948 + .data start:0x804B5940 end:0x804B59D8 + .sdata start:0x805149F8 end:0x80514A00 + .sbss start:0x80515998 end:0x805159A0 + .sdata2 start:0x80519288 end:0x805192B0 + +plugProjectKandoU/pelletConfig.cpp: + .text start:0x801B3ECC end:0x801B4774 + .rodata start:0x8047F948 end:0x8047FA58 + .data start:0x804B59D8 end:0x804B5A90 + .sdata2 start:0x805192B0 end:0x80519358 + +plugProjectKandoU/gameFootmark.cpp: + .text start:0x801B4774 end:0x801B4A60 + .sdata2 start:0x80519358 end:0x80519368 + +plugProjectKandoU/gameSystem.cpp: + .text start:0x801B4A60 end:0x801B6290 + .ctors start:0x80472EA0 end:0x80472EA4 + .rodata start:0x8047FA58 end:0x8047FAC8 + .data start:0x804B5A90 end:0x804B5B50 + .sbss start:0x805159A0 end:0x805159B0 + +plugProjectKandoU/aiConstants.cpp: + .text start:0x801B6290 end:0x801B6448 + .rodata start:0x8047FAC8 end:0x8047FB10 + .data start:0x804B5B50 end:0x804B5B60 + .sbss start:0x805159B0 end:0x805159B8 + .sdata2 start:0x80519368 end:0x80519380 + +plugProjectKandoU/gameMapParts.cpp: + .text start:0x801B6448 end:0x801C0DD8 + .ctors start:0x80472EA4 end:0x80472EA8 + .rodata start:0x8047FB10 end:0x8047FE38 + .data start:0x804B5B60 end:0x804B6028 + .sbss start:0x805159B8 end:0x805159C8 + .sdata2 start:0x80519380 end:0x805193E8 + +plugProjectKandoU/vsGameSection.cpp: + .text start:0x801C0DD8 end:0x801C4BB4 + .ctors start:0x80472EA8 end:0x80472EAC + .rodata start:0x8047FE38 end:0x80480008 + .data start:0x804B6028 end:0x804B6278 + .sbss start:0x805159C8 end:0x805159E0 + .sdata2 start:0x805193E8 end:0x805194C8 + .sbss2 start:0x80520D88 end:0x80520DA0 + +plugProjectKandoU/gamePlatMgr.cpp: + .text start:0x801C4BB4 end:0x801C75E4 + .rodata start:0x80480008 end:0x80480028 + .data start:0x804B6278 end:0x804B6498 + .sdata start:0x80514A00 end:0x80514A08 + .sbss start:0x805159E0 end:0x805159E8 + .sdata2 start:0x805194C8 end:0x805194D0 + +plugProjectKandoU/itemGate.cpp: + .text start:0x801C75E4 end:0x801CBFC8 + .ctors start:0x80472EAC end:0x80472EB0 + .rodata start:0x80480028 end:0x80480230 + .data start:0x804B6498 end:0x804B7038 + .sbss start:0x805159E8 end:0x805159F8 + .sdata2 start:0x805194D0 end:0x80519558 + +plugProjectKandoU/itemMgr.cpp: + .text start:0x801CBFC8 end:0x801D04C8 + .rodata start:0x80480230 end:0x80480300 + .data start:0x804B7038 end:0x804B7848 + .sbss start:0x805159F8 end:0x80515A00 + .sdata2 start:0x80519558 end:0x80519570 + +plugProjectKandoU/aiBreakGate.cpp: + .text start:0x801D04C8 end:0x801D0D98 + .rodata start:0x80480300 end:0x804803A0 + .data start:0x804B7848 end:0x804B78A0 + .sdata2 start:0x80519570 end:0x80519578 + +plugProjectKandoU/gameStat.cpp: + .text start:0x801D0D98 end:0x801D1718 + .ctors start:0x80472EB0 end:0x80472EB4 + .rodata start:0x804803A0 end:0x804803C0 + .data start:0x804B78A0 end:0x804B78B0 + .bss start:0x8051222C end:0x8051258C align:4 common + +plugProjectKandoU/itemHole.cpp: + .text start:0x801D1718 end:0x801D2D4C + .ctors start:0x80472EB4 end:0x80472EB8 + .rodata start:0x804803C0 end:0x80480450 + .data start:0x804B78B0 end:0x804B7D70 + .sbss start:0x80515A00 end:0x80515A10 + .sdata2 start:0x80519578 end:0x805195C0 + +plugProjectKandoU/itemHoney.cpp: + .text start:0x801D2D4C end:0x801D6084 + .rodata start:0x80480450 end:0x804804E0 + .data start:0x804B7D70 end:0x804B8498 + .sbss start:0x80515A10 end:0x80515A18 + .sdata2 start:0x805195C0 end:0x80519600 + +plugProjectKandoU/gameCaveInfo.cpp: + .text start:0x801D6084 end:0x801D77E8 + .rodata start:0x804804E0 end:0x80480668 + .data start:0x804B8498 end:0x804B8550 + .sdata start:0x80514A08 end:0x80514A10 + .sdata2 start:0x80519600 end:0x80519690 + +plugProjectKandoU/creatureLOD.cpp: + .text start:0x801D77E8 end:0x801D7E44 + .ctors start:0x80472EB8 end:0x80472EBC + .rodata start:0x80480668 end:0x804806A0 + .data start:0x804B8550 end:0x804B8560 + .sbss start:0x80515A18 end:0x80515A28 + .sdata2 start:0x80519690 end:0x805196C8 + +plugProjectKandoU/interactNavi.cpp: + .text start:0x801D7E44 end:0x801D8A9C + .data start:0x804B8560 end:0x804B85A8 + .sdata2 start:0x805196C8 end:0x805196F0 + +plugProjectKandoU/itemPikihead.cpp: + .text start:0x801D8A9C end:0x801DCE08 + .ctors start:0x80472EBC end:0x80472EC0 + .rodata start:0x804806A0 end:0x80480790 + .data start:0x804B85A8 end:0x804B8F50 + .sbss start:0x80515A28 end:0x80515A38 + .sdata2 start:0x805196F0 end:0x80519740 + +plugProjectKandoU/itemPlant.cpp: + .text start:0x801DCE08 end:0x801E0E64 + .rodata start:0x80480790 end:0x804809B0 + .data start:0x804B8F50 end:0x804B98E8 + .sbss start:0x80515A38 end:0x80515A40 + .sdata2 start:0x80519740 end:0x80519808 + +plugProjectKandoU/itemRock.cpp: + .text start:0x801E0E64 end:0x801E3680 + .rodata start:0x804809B0 end:0x80480B40 + .data start:0x804B98E8 end:0x804BA200 + .sbss start:0x80515A40 end:0x80515A48 + .sdata2 start:0x80519808 end:0x80519880 + +plugProjectKandoU/aiBreakRock.cpp: + .text start:0x801E3680 end:0x801E3E30 + .rodata start:0x80480B40 end:0x80480BE0 + .data start:0x804BA200 end:0x804BA250 + +plugProjectKandoU/aiCrop.cpp: + .text start:0x801E3E30 end:0x801E4B78 + .rodata start:0x80480BE0 end:0x80480C50 + .data start:0x804BA250 end:0x804BA2A0 + .sdata2 start:0x80519880 end:0x805198D0 + +plugProjectKandoU/registItem.cpp: + .text start:0x801E4B78 end:0x801E5334 + .ctors start:0x80472EC0 end:0x80472EC4 + .rodata start:0x80480C50 end:0x80480CE0 + .data start:0x804BA2A0 end:0x804BA2B0 + .sbss start:0x80515A48 end:0x80515A50 + .sdata2 start:0x805198D0 end:0x80519910 + +plugProjectKandoU/gamePlayData.cpp: + .text start:0x801E5334 end:0x801E9F98 + .rodata start:0x80480CE0 end:0x80480E38 + .data start:0x804BA2B0 end:0x804BA2E0 + .sbss start:0x80515A50 end:0x80515A58 + .sdata2 start:0x80519910 end:0x80519920 + +plugProjectKandoU/itemCave.cpp: + .text start:0x801E9F98 end:0x801EC168 + .ctors start:0x80472EC4 end:0x80472EC8 + .rodata start:0x80480E38 end:0x80480F40 + .data start:0x804BA2E0 end:0x804BA948 + .sbss start:0x80515A58 end:0x80515A68 + .sdata2 start:0x80519920 end:0x805199D8 + +plugProjectKandoU/itemBigFountain.cpp: + .text start:0x801EC168 end:0x801EDF54 + .ctors start:0x80472EC8 end:0x80472ECC + .rodata start:0x80480F40 end:0x804810C8 + .data start:0x804BA948 end:0x804BB2B0 + .sbss start:0x80515A68 end:0x80515A78 + .sdata2 start:0x805199D8 end:0x80519A50 + +plugProjectKandoU/itemBridge.cpp: + .text start:0x801EDF54 end:0x801F1220 + .rodata start:0x804810C8 end:0x804812C8 + .data start:0x804BB2B0 end:0x804BBB38 + .sbss start:0x80515A78 end:0x80515A80 + .sdata2 start:0x80519A50 end:0x80519B00 + +plugProjectKandoU/pikiContainer.cpp: + .text start:0x801F1220 end:0x801F18E8 + .rodata start:0x804812C8 end:0x80481320 + .data start:0x804BBB38 end:0x804BBB48 + +plugProjectKandoU/gameGeneratorCache.cpp: + .text start:0x801F18E8 end:0x801F314C + .rodata start:0x80481320 end:0x80481558 + .data start:0x804BBB48 end:0x804BBB58 + .sbss start:0x80515A80 end:0x80515A88 + .sdata2 start:0x80519B00 end:0x80519B10 + +plugProjectKandoU/itemTreasure.cpp: + .text start:0x801F314C end:0x801F4CBC + .ctors start:0x80472ECC end:0x80472ED0 + .rodata start:0x80481558 end:0x804816A0 + .data start:0x804BBB58 end:0x804BC3C0 + .sbss start:0x80515A88 end:0x80515A98 + .sdata2 start:0x80519B10 end:0x80519B78 + +plugProjectKandoU/itemDownFloor.cpp: + .text start:0x801F4CBC end:0x801F78A8 + .ctors start:0x80472ED0 end:0x80472ED4 + .rodata start:0x804816A0 end:0x80481868 + .data start:0x804BC3C0 end:0x804BCBE8 + .sbss start:0x80515A98 end:0x80515AA8 + .sdata2 start:0x80519B78 end:0x80519BC0 + +plugProjectKandoU/kandoLib.cpp: + .text start:0x801F78A8 end:0x801F7950 + .sdata2 start:0x80519BC0 end:0x80519BD0 + +plugProjectKandoU/itemBarrel.cpp: + .text start:0x801F7950 end:0x801F90B4 + .ctors start:0x80472ED4 end:0x80472ED8 + .rodata start:0x80481868 end:0x80481980 + .data start:0x804BCBE8 end:0x804BD4B0 + .sbss start:0x80515AA8 end:0x80515AB8 + .sdata2 start:0x80519BD0 end:0x80519C20 + +plugProjectKandoU/pelletNumber.cpp: + .text start:0x801F90B4 end:0x801FB8AC + .rodata start:0x80481980 end:0x804819E0 + .data start:0x804BD4B0 end:0x804BDA10 + .sbss start:0x80515AB8 end:0x80515AC0 + .sdata2 start:0x80519C20 end:0x80519C38 + +plugProjectKandoU/pelletCarcass.cpp: + .text start:0x801FB8AC end:0x801FD998 + .data start:0x804BDA10 end:0x804BDF10 + .sbss start:0x80515AC0 end:0x80515AC8 + .sdata2 start:0x80519C38 end:0x80519C48 + +plugProjectKandoU/pelletFruit.cpp: + .text start:0x801FD998 end:0x801FFE44 + .ctors start:0x80472ED8 end:0x80472EDC + .rodata start:0x804819E0 end:0x804819F0 + .data start:0x804BDF10 end:0x804BE420 + .sbss start:0x80515AC8 end:0x80515AD8 + .sdata2 start:0x80519C48 end:0x80519C58 + +plugProjectKandoU/pelletOtakara.cpp: + .text start:0x801FFE44 end:0x8020276C + .ctors start:0x80472EDC end:0x80472EE0 + .rodata start:0x804819F0 end:0x80481A38 + .data start:0x804BE420 end:0x804BE918 + .sbss start:0x80515AD8 end:0x80515AE8 + .sdata2 start:0x80519C58 end:0x80519C80 + +plugProjectKandoU/genPellet.cpp: + .text start:0x8020276C end:0x80202DF4 + .rodata start:0x80481A38 end:0x80481AF0 + .data start:0x804BE918 end:0x804BE958 + .sdata2 start:0x80519C80 end:0x80519C90 + +plugProjectKandoU/pelletItem.cpp: + .text start:0x80202DF4 end:0x8020506C + .rodata start:0x80481AF0 end:0x80481B28 + .data start:0x804BE958 end:0x804BEE40 + .sbss start:0x80515AE8 end:0x80515AF0 + .sdata2 start:0x80519C90 end:0x80519CA0 + +plugProjectKandoU/mapMgrTraceMove.cpp: + .text start:0x8020506C end:0x80205584 + .ctors start:0x80472EE0 end:0x80472EE4 + .data start:0x804BEE40 end:0x804BEE50 + .sdata start:0x80514A10 end:0x80514A18 + .sbss start:0x80515AF0 end:0x80515AF8 + .sdata2 start:0x80519CA0 end:0x80519CB0 + +plugProjectKandoU/efxModelObjects.cpp: + .text start:0x80205584 end:0x80205A08 + .rodata start:0x80481B28 end:0x80481BE0 + .data start:0x804BEE50 end:0x804BEEA0 + .sdata2 start:0x80519CB0 end:0x80519CD0 + +plugProjectKandoU/itemUjamushi.cpp: + .text start:0x80205A08 end:0x8020D764 + .ctors start:0x80472EE4 end:0x80472EE8 + .rodata start:0x80481BE0 end:0x80481D98 + .data start:0x804BEEA0 end:0x804BF9E8 + .sbss start:0x80515AF8 end:0x80515B08 + .sdata2 start:0x80519CD0 end:0x80519DF8 + .sbss2 start:0x80520DA0 end:0x80520DA8 + +plugProjectKandoU/aiWeed.cpp: + .text start:0x8020D764 end:0x8020EABC + .ctors start:0x80472EE8 end:0x80472EEC + .rodata start:0x80481D98 end:0x80481E40 + .data start:0x804BF9E8 end:0x804BFAA0 + .sbss start:0x80515B08 end:0x80515B10 + .sdata2 start:0x80519DF8 end:0x80519E28 + +plugProjectKandoU/flockMgr.cpp: + .text start:0x8020EABC end:0x8020F260 + .ctors start:0x80472EEC end:0x80472EF0 + .rodata start:0x80481E40 end:0x80481E60 + .data start:0x804BFAA0 end:0x804BFAE0 + .sbss start:0x80515B10 end:0x80515B18 + .sdata2 start:0x80519E28 end:0x80519E38 + +plugProjectKandoU/itemWeed.cpp: + .text start:0x8020F260 end:0x80212268 + .ctors start:0x80472EF0 end:0x80472EF4 + .rodata start:0x80481E60 end:0x80481F48 + .data start:0x804BFAE0 end:0x804C0378 + .sbss start:0x80515B18 end:0x80515B28 + .sdata2 start:0x80519E38 end:0x80519E98 + +plugProjectKandoU/aiBridge.cpp: + .text start:0x80212268 end:0x8021293C + .rodata start:0x80481F48 end:0x80481FD8 + .data start:0x804C0378 end:0x804C03C8 + .sdata2 start:0x80519E98 end:0x80519EA8 + +plugProjectKandoU/aiTeki.cpp: + .text start:0x8021293C end:0x8021358C + .rodata start:0x80481FD8 end:0x80481FF0 + .data start:0x804C03C8 end:0x804C0418 + .sdata2 start:0x80519EA8 end:0x80519EE8 + +plugProjectKandoU/singleGS_MainGame.cpp: + .text start:0x8021358C end:0x80217740 + .ctors start:0x80472EF4 end:0x80472EF8 + .rodata start:0x80481FF0 end:0x804822D0 + .data start:0x804C0418 end:0x804C0530 + .sbss start:0x80515B28 end:0x80515B30 + .sdata2 start:0x80519EE8 end:0x80519F40 + +plugProjectKandoU/singleGS_CaveGame.cpp: + .text start:0x80217740 end:0x80219F28 + .ctors start:0x80472EF8 end:0x80472EFC + .rodata start:0x804822D0 end:0x80482438 + .data start:0x804C0530 end:0x804C0588 + .sbss start:0x80515B30 end:0x80515B38 + .sdata2 start:0x80519F40 end:0x80519F78 + +plugProjectKandoU/singleGS_MainResult.cpp: + .text start:0x80219F28 end:0x8021AC00 + .ctors start:0x80472EFC end:0x80472F00 + .rodata start:0x80482438 end:0x80482450 + .data start:0x804C0588 end:0x804C0640 + .sbss start:0x80515B38 end:0x80515B48 + .sdata2 start:0x80519F78 end:0x80519F88 + +plugProjectKandoU/singleGS_CaveResult.cpp: + .text start:0x8021AC00 end:0x8021B92C + .ctors start:0x80472F00 end:0x80472F04 + .rodata start:0x80482450 end:0x804824F8 + .data start:0x804C0640 end:0x804C06B0 + .sbss start:0x80515B48 end:0x80515B50 + .sdata2 start:0x80519F88 end:0x80519F90 + +plugProjectKandoU/singleGS_WorldMap.cpp: + .text start:0x8021B92C end:0x8021C6F8 + .ctors start:0x80472F04 end:0x80472F08 + .rodata start:0x804824F8 end:0x804825E8 + .data start:0x804C06B0 end:0x804C0720 + .sbss start:0x80515B50 end:0x80515B60 + .sdata2 start:0x80519F90 end:0x80519FB0 + +plugProjectKandoU/singleGS_FileSelect.cpp: + .text start:0x8021C6F8 end:0x8021CFD4 + .ctors start:0x80472F08 end:0x80472F0C + .rodata start:0x804825E8 end:0x80482658 + .data start:0x804C0720 end:0x804C0790 + .sbss start:0x80515B60 end:0x80515B68 + .sdata2 start:0x80519FB0 end:0x80519FB8 + +plugProjectKandoU/gamePlayDataMemCard.cpp: + .text start:0x8021CFD4 end:0x8021E26C + .rodata start:0x80482658 end:0x80482AC0 + .data start:0x804C0790 end:0x804C07A0 + .sdata start:0x80514A18 end:0x80514A20 + .sbss start:0x80515B68 end:0x80515B70 + .sdata2 start:0x80519FB8 end:0x80519FD0 + +plugProjectKandoU/baseHIOparms.cpp: + .sdata start:0x80514A20 end:0x80514A28 + +plugProjectKandoU/radarInfo.cpp: + .text start:0x8021E26C end:0x8021EEB8 + .data start:0x804C07A0 end:0x804C07C0 + .sbss start:0x80515B70 end:0x80515B78 + .sdata2 start:0x80519FD0 end:0x8051A000 + +plugProjectKandoU/singleGS_Movie.cpp: + .text start:0x8021EEB8 end:0x8021F3B0 + .ctors start:0x80472F0C end:0x80472F10 + .rodata start:0x80482AC0 end:0x80482BD0 + .data start:0x804C07C0 end:0x804C0958 + .bss start:0x804F7900 end:0x804F7910 + .sbss start:0x80515B78 end:0x80515B80 + .sdata2 start:0x8051A000 end:0x8051A018 + +plugProjectKandoU/navi_demoCheck.cpp: + .text start:0x8021F3B0 end:0x80221008 + .ctors start:0x80472F10 end:0x80472F14 + .rodata start:0x80482BD0 end:0x80482D00 + .data start:0x804C0958 end:0x804C0980 + .sbss start:0x80515B80 end:0x80515B88 + .sdata2 start:0x8051A018 end:0x8051A040 + +plugProjectKandoU/singleGS_Zukan.cpp: + .text start:0x80221008 end:0x802273F8 + .ctors start:0x80472F14 end:0x80472F18 + .rodata start:0x80482D00 end:0x80483068 + .data start:0x804C0980 end:0x804C0CF8 + .sbss start:0x80515B88 end:0x80515B98 + .sdata2 start:0x8051A040 end:0x8051A170 + +plugProjectKandoU/gameResultTexMgr.cpp: + .text start:0x802273F8 end:0x80227D3C + .rodata start:0x80483068 end:0x804831C0 + .data start:0x804C0CF8 end:0x804C0D18 + .sdata2 start:0x8051A170 end:0x8051A188 + +plugProjectKandoU/gamePelletList.cpp: + .text start:0x80227D3C end:0x80228308 + .rodata start:0x804831C0 end:0x804832F8 + .data start:0x804C0D18 end:0x804C0D28 + .sbss start:0x80515B98 end:0x80515BA0 + .sdata2 start:0x8051A188 end:0x8051A190 + +plugProjectKandoU/vsGS_Title.cpp: + .text start:0x80228308 end:0x80229284 + .ctors start:0x80472F18 end:0x80472F1C + .rodata start:0x804832F8 end:0x804833F0 + .data start:0x804C0D28 end:0x804C0E48 + .sbss start:0x80515BA0 end:0x80515BA8 + .sdata2 start:0x8051A190 end:0x8051A1A8 + +plugProjectKandoU/vsGS_Game.cpp: + .text start:0x80229284 end:0x8022C7D4 + .ctors start:0x80472F1C end:0x80472F20 + .rodata start:0x804833F0 end:0x804835C0 + .data start:0x804C0E48 end:0x804C0F20 + .sbss start:0x80515BA8 end:0x80515BB0 + .sdata2 start:0x8051A1A8 end:0x8051A200 + +plugProjectKandoU/vsGS_Result.cpp: + .text start:0x8022C7D4 end:0x8022D0C8 + .ctors start:0x80472F20 end:0x80472F24 + .rodata start:0x804835C0 end:0x80483628 + .data start:0x804C0F20 end:0x804C0FA8 + .sbss start:0x80515BB0 end:0x80515BB8 + .sdata2 start:0x8051A200 end:0x8051A208 + +plugProjectKandoU/vsGS_Load.cpp: + .text start:0x8022D0C8 end:0x8022D66C + .ctors start:0x80472F24 end:0x80472F28 + .data start:0x804C0FA8 end:0x804C1030 + .sbss start:0x80515BB8 end:0x80515BC0 + .sdata2 start:0x8051A208 end:0x8051A220 + +plugProjectKandoU/vsStageData.cpp: + .text start:0x8022D66C end:0x8022E168 + .ctors start:0x80472F28 end:0x80472F2C + .rodata start:0x80483628 end:0x80483688 + .data start:0x804C1030 end:0x804C1080 + .sbss start:0x80515BC0 end:0x80515BC8 + .sdata2 start:0x8051A220 end:0x8051A230 + +plugProjectKandoU/cellMgrParms.cpp: + .text start:0x8022E168 end:0x8022E34C + .rodata start:0x80483688 end:0x804836C8 + .data start:0x804C1080 end:0x804C1098 + .sbss start:0x80515BC8 end:0x80515BD0 + .sdata2 start:0x8051A230 end:0x8051A240 + +plugProjectKandoU/cellIterator.cpp: + .text start:0x8022E34C end:0x8022EA74 + .rodata start:0x804836C8 end:0x804836F0 + .sdata2 start:0x8051A240 end:0x8051A260 + +plugProjectKandoU/vsGS_VSGame.cpp: + .text start:0x8022EA74 end:0x8022EBAC + .ctors start:0x80472F2C end:0x80472F30 + .rodata start:0x804836F0 end:0x80483730 + .data start:0x804C1098 end:0x804C10F8 + .sbss start:0x80515BD0 end:0x80515BD8 + +plugProjectKandoU/gameSoundEvent.cpp: + .text start:0x8022EBAC end:0x8022EC94 + +plugProjectKandoU/aiBattle.cpp: + .text start:0x8022EC94 end:0x8022F9DC + .rodata start:0x80483730 end:0x80483790 + .data start:0x804C10F8 end:0x804C1148 + .sdata2 start:0x8051A260 end:0x8051A2A8 + +plugProjectKandoU/gameDeathCount.cpp: + .text start:0x8022F9DC end:0x802312D4 + .ctors start:0x80472F30 end:0x80472F34 + .rodata start:0x80483790 end:0x804837D0 + .bss start:0x8051258C end:0x805126F0 align:4 common + .sbss start:0x80515BD8 end:0x80515BE0 + .sdata2 start:0x8051A2A8 end:0x8051A2B0 + +plugProjectKandoU/aiBore.cpp: + .text start:0x802312D4 end:0x8023231C + .rodata start:0x804837D0 end:0x80483850 + .data start:0x804C1148 end:0x804C1280 + .sdata2 start:0x8051A2B0 end:0x8051A2E8 + +plugProjectKandoU/mapPartsView.cpp: + .text start:0x8023231C end:0x80232688 + .data start:0x804C1280 end:0x804C12B0 + .sdata2 start:0x8051A2E8 end:0x8051A2F0 + +plugProjectKandoU/singleGS_Ending.cpp: + .text start:0x80232688 end:0x80233464 + .ctors start:0x80472F34 end:0x80472F38 + .rodata start:0x80483850 end:0x80483890 + .data start:0x804C12B0 end:0x804C1368 + .sbss start:0x80515BE0 end:0x80515BE8 + +plugProjectKandoU/gameIconTexture.cpp: + .text start:0x80233464 end:0x802337FC + .rodata start:0x80483890 end:0x804838E8 + .data start:0x804C1368 end:0x804C1380 + +plugProjectKandoU/gameTekiStat.cpp: + .text start:0x802337FC end:0x80233CCC + .rodata start:0x804838E8 end:0x80483908 + +plugProjectKandoU/gameHighscore.cpp: + .text start:0x80233CCC end:0x802340EC + .rodata start:0x80483908 end:0x80483928 + .data start:0x804C1380 end:0x804C1390 + +plugProjectKandoU/gamePlayCommonData.cpp: + .text start:0x802340EC end:0x80234ED8 + .rodata start:0x80483928 end:0x80483950 + .data start:0x804C1390 end:0x804C13A0 + +plugProjectKandoU/pelletCarry.cpp: + .text start:0x80234ED8 end:0x80235080 + .sdata2 start:0x8051A2F0 end:0x8051A2F8 + +plugProjectKandoU/gameChallenge2D.cpp: + .text start:0x80235080 end:0x802352D0 + .rodata start:0x80483950 end:0x80483970 + .sdata2 start:0x8051A2F8 end:0x8051A300 + +plugProjectKandoU/vsTekiMgr.cpp: + .text start:0x802352D0 end:0x802354EC + .data start:0x804C13A0 end:0x804C13B0 + .sdata2 start:0x8051A300 end:0x8051A318 + +plugProjectKandoU/vsCardMgr.cpp: + .text start:0x802354EC end:0x80238E90 + .ctors start:0x80472F38 end:0x80472F3C + .rodata start:0x80483970 end:0x80483B70 + .data start:0x804C13B0 end:0x804C1478 + .sbss start:0x80515BE8 end:0x80515BF0 + .sdata2 start:0x8051A318 end:0x8051A430 + +plugProjectKandoU/aiRescue.cpp: + .text start:0x80238E90 end:0x802398B8 + .rodata start:0x80483B70 end:0x80483BC8 + .data start:0x804C1478 end:0x804C14D0 + .sdata2 start:0x8051A430 end:0x8051A460 + +plugProjectKandoU/baseGameSectionDraw.cpp: + .text start:0x802398B8 end:0x80239E64 + .ctors start:0x80472F3C end:0x80472F40 + .rodata start:0x80483BC8 end:0x80483BF0 + .data start:0x804C14D0 end:0x804C1500 + .sbss start:0x80515BF0 end:0x80515BF8 + .sdata2 start:0x8051A460 end:0x8051A478 + +plugProjectKandoU/singleGS_Load.cpp: + .text start:0x80239E64 end:0x8023A230 + .ctors start:0x80472F40 end:0x80472F44 + .rodata start:0x80483BF0 end:0x80483C10 + .data start:0x804C1500 end:0x804C1570 + .sbss start:0x80515BF8 end:0x80515C00 + +plugProjectKandoU/singleGS_DayEnd.cpp: + .text start:0x8023A230 end:0x8023B514 + .ctors start:0x80472F44 end:0x80472F48 + .rodata start:0x80483C10 end:0x80483D40 + .data start:0x804C1570 end:0x804C15C8 + .sbss start:0x80515C00 end:0x80515C08 + .sdata2 start:0x8051A478 end:0x8051A4B8 + +plugProjectKandoU/baseGameSectionKantei.cpp: + .text start:0x8023B514 end:0x8023C590 + .ctors start:0x80472F48 end:0x80472F4C + .data start:0x804C15C8 end:0x804C1688 + .sdata start:0x80514A28 end:0x80514A30 + .sbss start:0x80515C08 end:0x80515C10 + .sdata2 start:0x8051A4B8 end:0x8051A510 + +plugProjectKandoU/sweepPrune.cpp: + .text start:0x8023C590 end:0x8023C93C + .sdata2 start:0x8051A510 end:0x8051A518 + +plugProjectKandoU/texCaster.cpp: + .text start:0x8023C93C end:0x8023D3FC + .rodata start:0x80483D40 end:0x80483D88 + .data start:0x804C1688 end:0x804C1698 + .sbss start:0x80515C10 end:0x80515C18 + .sdata2 start:0x8051A518 end:0x8051A540 + +plugProjectKandoU/vsCoinOtakaraName.cpp: + .rodata start:0x80483D88 end:0x80483DC8 + .sdata start:0x80514A30 end:0x80514A48 + +plugProjectKandoU/pelletBirthBuffer.cpp: + .text start:0x8023D3FC end:0x8023D62C + .ctors start:0x80472F4C end:0x80472F50 + .rodata start:0x80483DC8 end:0x80483DF8 + .bss start:0x805126F0 end:0x80513AF0 align:4 common + .sbss start:0x80515C18 end:0x80515C20 + +plugProjectKandoU/vsFifo.cpp: + .text start:0x8023D62C end:0x8023D790 + .data start:0x804C1698 end:0x804C16C0 + .sbss start:0x80515C20 end:0x80515C28 + +plugProjectNishimuraU/nslibmath.cpp: + .text start:0x8023D790 end:0x8023DA10 + .sdata2 start:0x8051A540 end:0x8051A558 + +plugProjectNishimuraU/ShadowCylinder.cpp: + .text start:0x8023DA10 end:0x8023F3D0 + .ctors start:0x80472F50 end:0x80472F54 + .rodata start:0x80483DF8 end:0x80483E70 + .data start:0x804C16C0 end:0x804C1898 + .bss start:0x804F7910 end:0x804F7B50 + .sbss start:0x80515C28 end:0x80515C30 + .sdata2 start:0x8051A558 end:0x8051A5A0 + .sbss2 start:0x80520DA8 end:0x80520DB0 + +plugProjectNishimuraU/playCamera.cpp: + .text start:0x8023F3D0 end:0x8024125C + .ctors start:0x80472F54 end:0x80472F58 + .rodata start:0x80483E70 end:0x80483E98 + .data start:0x804C1898 end:0x804C1928 + .sbss start:0x80515C30 end:0x80515C38 + .sdata2 start:0x8051A5A0 end:0x8051A600 + +plugProjectNishimuraU/shadowMgr.cpp: + .text start:0x8024125C end:0x80242788 + .ctors start:0x80472F58 end:0x80472F5C + .rodata start:0x80483E98 end:0x80483F10 + .data start:0x804C1928 end:0x804C1998 + .sbss start:0x80515C38 end:0x80515C48 + .sdata2 start:0x8051A600 end:0x8051A618 + +plugProjectNishimuraU/MapUnit.cpp: + .text start:0x80242788 end:0x80242D38 + .data start:0x804C1998 end:0x804C19A8 + .sdata2 start:0x8051A618 end:0x8051A620 + +plugProjectNishimuraU/MapNode.cpp: + .text start:0x80242D38 end:0x802440D4 + .data start:0x804C19A8 end:0x804C19B8 + .sdata2 start:0x8051A620 end:0x8051A648 + +plugProjectNishimuraU/EnemyUnit.cpp: + .text start:0x802440D4 end:0x80244508 + .data start:0x804C19B8 end:0x804C1A18 + .sdata2 start:0x8051A648 end:0x8051A668 + +plugProjectNishimuraU/RandMapMgr.cpp: + .text start:0x80244508 end:0x802453F8 + .rodata start:0x80483F10 end:0x80483F30 + .data start:0x804C1A18 end:0x804C1A38 + .sbss start:0x80515C48 end:0x80515C50 + .sdata2 start:0x8051A668 end:0x8051A690 + +plugProjectNishimuraU/RandMapDraw.cpp: + .text start:0x802453F8 end:0x80245644 + .sdata2 start:0x8051A690 end:0x8051A6A0 + +plugProjectNishimuraU/RandMapChecker.cpp: + .text start:0x80245644 end:0x80245C3C + +plugProjectNishimuraU/RandMapUnit.cpp: + .text start:0x80245C3C end:0x802488F4 + .rodata start:0x80483F30 end:0x80483F60 + .sdata2 start:0x8051A6A0 end:0x8051A6C8 + +plugProjectNishimuraU/RandEnemyUnit.cpp: + .text start:0x802488F4 end:0x8024B854 + .rodata start:0x80483F60 end:0x80483F98 + .sdata2 start:0x8051A6C8 end:0x8051A718 + .sbss2 start:0x80520DB0 end:0x80520DC8 + +plugProjectNishimuraU/DoorNode.cpp: + .text start:0x8024B854 end:0x8024BA8C + .data start:0x804C1A38 end:0x804C1A48 + +plugProjectNishimuraU/MapUnitGenerator.cpp: + .text start:0x8024BA8C end:0x8024C5C4 + .ctors start:0x80472F5C end:0x80472F60 + .data start:0x804C1A48 end:0x804C1A58 + .sbss start:0x80515C50 end:0x80515C58 + .sdata2 start:0x8051A718 end:0x8051A730 + +plugProjectNishimuraU/MapCreator.cpp: + .text start:0x8024C5C4 end:0x8024C858 + .sdata2 start:0x8051A730 end:0x8051A738 + +plugProjectNishimuraU/RandMapScore.cpp: + .text start:0x8024C858 end:0x8024E150 + .rodata start:0x80483F98 end:0x80483FC8 + .data start:0x804C1A58 end:0x804C1A88 + .sdata2 start:0x8051A738 end:0x8051A778 + .sbss2 start:0x80520DC8 end:0x80520DD8 + +plugProjectNishimuraU/ItemUnit.cpp: + .text start:0x8024E150 end:0x8024E36C + .data start:0x804C1A88 end:0x804C1AB8 + .sdata2 start:0x8051A778 end:0x8051A780 + +plugProjectNishimuraU/RandItemUnit.cpp: + .text start:0x8024E36C end:0x8024FCA8 + .rodata start:0x80483FC8 end:0x80484030 + .sdata2 start:0x8051A780 end:0x8051A7A8 + +plugProjectNishimuraU/GateUnit.cpp: + .text start:0x8024FCA8 end:0x8024FE50 + .data start:0x804C1AB8 end:0x804C1AE8 + .sdata2 start:0x8051A7A8 end:0x8051A7B8 + +plugProjectNishimuraU/RandGateUnit.cpp: + .text start:0x8024FE50 end:0x80250804 + .sdata2 start:0x8051A7B8 end:0x8051A7D8 + +plugProjectNishimuraU/ObjectLayout.cpp: + .text start:0x80250804 end:0x80250968 + .data start:0x804C1AE8 end:0x804C1B08 + +plugProjectNishimuraU/CameraMgr.cpp: + .text start:0x80250968 end:0x80252B00 + .ctors start:0x80472F60 end:0x80472F64 + .rodata start:0x80484030 end:0x804846F0 + .data start:0x804C1B08 end:0x804C1B28 + .sbss start:0x80515C58 end:0x80515C68 + .sdata2 start:0x8051A7D8 end:0x8051A8A8 + +plugProjectNishimuraU/ContRumble.cpp: + .text start:0x80252B00 end:0x802532E4 + .rodata start:0x804846F0 end:0x80484708 + .data start:0x804C1B28 end:0x804C1B38 + .sdata2 start:0x8051A8A8 end:0x8051A8B8 + +plugProjectNishimuraU/RumbleMgr.cpp: + .text start:0x802532E4 end:0x80253DF8 + .rodata start:0x80484708 end:0x804847E0 + .data start:0x804C1B38 end:0x804C1B48 + .sbss start:0x80515C68 end:0x80515C70 + .sdata2 start:0x8051A8B8 end:0x8051A8D0 + +plugProjectNishimuraU/PomAnimator.cpp: + .text start:0x80253DF8 end:0x80253E6C + .data start:0x804C1B48 end:0x804C1B70 + +plugProjectNishimuraU/PomMgr.cpp: + .text start:0x80253E6C end:0x80254784 + .ctors start:0x80472F64 end:0x80472F68 + .rodata start:0x804847E0 end:0x80484B78 + .data start:0x804C1B70 end:0x804C1C68 + .sbss start:0x80515C70 end:0x80515C78 + .sdata2 start:0x8051A8D0 end:0x8051A8E8 + +plugProjectNishimuraU/Pom.cpp: + .text start:0x80254784 end:0x80255C84 + .rodata start:0x80484B78 end:0x80484BA8 + .data start:0x804C1C68 end:0x804C1FA8 + .sdata2 start:0x8051A8E8 end:0x8051A930 + +plugProjectNishimuraU/PomState.cpp: + .text start:0x80255C84 end:0x802563A4 + .data start:0x804C1FA8 end:0x804C20C8 + .sdata2 start:0x8051A930 end:0x8051A968 + +plugProjectNishimuraU/FrogState.cpp: + .text start:0x802563A4 end:0x8025808C + .rodata start:0x80484BA8 end:0x80484BC0 + .data start:0x804C20C8 end:0x804C2278 + .sdata2 start:0x8051A968 end:0x8051A9E0 + +plugProjectNishimuraU/FrogAnimator.cpp: + .text start:0x8025808C end:0x80258100 + .data start:0x804C2278 end:0x804C22A0 + +plugProjectNishimuraU/FrogMgr.cpp: + .text start:0x80258100 end:0x80258528 + .rodata start:0x80484BC0 end:0x80484EF0 + .data start:0x804C22A0 end:0x804C2390 + .sdata2 start:0x8051A9E0 end:0x8051AA08 + +plugProjectNishimuraU/Frog.cpp: + .text start:0x80258528 end:0x8025977C + .ctors start:0x80472F68 end:0x80472F6C + .data start:0x804C2390 end:0x804C2748 + .sbss start:0x80515C78 end:0x80515C80 + .sdata2 start:0x8051AA08 end:0x8051AA58 + +plugProjectNishimuraU/UjibMgr.cpp: + .text start:0x8025977C end:0x80259B2C + .rodata start:0x80484EF0 end:0x804851F8 + .data start:0x804C2748 end:0x804C2838 + .sdata2 start:0x8051AA58 end:0x8051AA70 + +plugProjectNishimuraU/Ujib.cpp: + .text start:0x80259B2C end:0x8025B188 + .rodata start:0x804851F8 end:0x80485208 + .data start:0x804C2838 end:0x804C2BB8 + .sdata2 start:0x8051AA70 end:0x8051AAD8 + +plugProjectNishimuraU/UjibState.cpp: + .text start:0x8025B188 end:0x8025CCB4 + .rodata start:0x80485208 end:0x80485220 + .data start:0x804C2BB8 end:0x804C2DD8 + .sdata2 start:0x8051AAD8 end:0x8051AB38 + +plugProjectNishimuraU/UjibAnimator.cpp: + .text start:0x8025CCB4 end:0x8025CD28 + .data start:0x804C2DD8 end:0x804C2E00 + +plugProjectNishimuraU/KoganeState.cpp: + .text start:0x8025CD28 end:0x8025D878 + .rodata start:0x80485220 end:0x80485230 + .data start:0x804C2E00 end:0x804C2F00 + .sdata2 start:0x8051AB38 end:0x8051AB60 + +plugProjectNishimuraU/KoganeMgr.cpp: + .text start:0x8025D878 end:0x8025DC6C + .rodata start:0x80485230 end:0x80485278 + .data start:0x804C2F00 end:0x804C2FE8 + .sdata2 start:0x8051AB60 end:0x8051AB68 + +plugProjectNishimuraU/Kogane.cpp: + .text start:0x8025DC6C end:0x8025F000 + .rodata start:0x80485278 end:0x80485288 + .data start:0x804C2FE8 end:0x804C3338 + .sdata2 start:0x8051AB68 end:0x8051ABC8 + +plugProjectNishimuraU/KoganeAnimator.cpp: + .text start:0x8025F000 end:0x8025F074 + .data start:0x804C3338 end:0x804C3360 + +plugProjectNishimuraU/QurioneState.cpp: + .text start:0x8025F074 end:0x8025FA6C + .rodata start:0x80485288 end:0x80485298 + .data start:0x804C3360 end:0x804C3480 + .sdata2 start:0x8051ABC8 end:0x8051AC00 + +plugProjectNishimuraU/QurioneMgr.cpp: + .text start:0x8025FA6C end:0x80260158 + .rodata start:0x80485298 end:0x80485600 + .data start:0x804C3480 end:0x804C3590 + .sdata2 start:0x8051AC00 end:0x8051AC30 + +plugProjectNishimuraU/Qurione.cpp: + .text start:0x80260158 end:0x8026132C + .rodata start:0x80485600 end:0x80485610 + .data start:0x804C3590 end:0x804C39B8 + .sdata2 start:0x8051AC30 end:0x8051AC80 + +plugProjectNishimuraU/QurioneAnimator.cpp: + .text start:0x8026132C end:0x802613A0 + .data start:0x804C39B8 end:0x804C39E0 + +plugProjectNishimuraU/RumbleData.cpp: + .text start:0x802613A0 end:0x8026150C + +plugProjectNishimuraU/MaroFrogMgr.cpp: + .text start:0x8026150C end:0x802617C0 + .rodata start:0x80485610 end:0x80485628 + .data start:0x804C39E0 end:0x804C3AC0 + +plugProjectNishimuraU/MaroFrog.cpp: + .text start:0x802617C0 end:0x80261D6C + .data start:0x804C3AC0 end:0x804C3DF8 + .sdata2 start:0x8051AC80 end:0x8051AC88 + +plugProjectNishimuraU/RockState.cpp: + .text start:0x80261D6C end:0x8026285C + .ctors start:0x80472F6C end:0x80472F70 + .rodata start:0x80485628 end:0x80485638 + .data start:0x804C3DF8 end:0x804C3F28 + .sbss start:0x80515C80 end:0x80515C88 + .sdata2 start:0x8051AC88 end:0x8051ACC0 + +plugProjectNishimuraU/RockAnimator.cpp: + .text start:0x8026285C end:0x802628D0 + .data start:0x804C3F28 end:0x804C3F50 + +plugProjectNishimuraU/RockMgr.cpp: + .text start:0x802628D0 end:0x80262FD0 + .rodata start:0x80485638 end:0x80485978 + .data start:0x804C3F50 end:0x804C4060 + .sdata2 start:0x8051ACC0 end:0x8051ACE0 + +plugProjectNishimuraU/Rock.cpp: + .text start:0x80262FD0 end:0x80264700 + .data start:0x804C4060 end:0x804C44A0 + .sdata2 start:0x8051ACE0 end:0x8051AD48 + +plugProjectNishimuraU/UjiaState.cpp: + .text start:0x80264700 end:0x80265C80 + .rodata start:0x80485978 end:0x80485990 + .data start:0x804C44A0 end:0x804C4678 + .sdata2 start:0x8051AD48 end:0x8051ADA0 + +plugProjectNishimuraU/UjiaAnimator.cpp: + .text start:0x80265C80 end:0x80265CF4 + .data start:0x804C4678 end:0x804C46A0 + +plugProjectNishimuraU/UjiaMgr.cpp: + .text start:0x80265CF4 end:0x80266060 + .rodata start:0x80485990 end:0x804859C8 + .data start:0x804C46A0 end:0x804C4790 + .sdata2 start:0x8051ADA0 end:0x8051ADB0 + +plugProjectNishimuraU/Ujia.cpp: + .text start:0x80266060 end:0x8026757C + .rodata start:0x804859C8 end:0x804859D8 + .data start:0x804C4790 end:0x804C4AC0 + .sdata2 start:0x8051ADB0 end:0x8051AE18 + +plugProjectNishimuraU/TobiState.cpp: + .text start:0x8026757C end:0x802693B4 + .rodata start:0x804859D8 end:0x804859F0 + .data start:0x804C4AC0 end:0x804C4D00 + .sdata2 start:0x8051AE18 end:0x8051AE80 + +plugProjectNishimuraU/TobiAnimator.cpp: + .text start:0x802693B4 end:0x80269428 + .data start:0x804C4D00 end:0x804C4D28 + +plugProjectNishimuraU/TobiMgr.cpp: + .text start:0x80269428 end:0x8026988C + .rodata start:0x804859F0 end:0x80485D20 + .data start:0x804C4D28 end:0x804C4E18 + .sdata2 start:0x8051AE80 end:0x8051AEA8 + +plugProjectNishimuraU/Tobi.cpp: + .text start:0x8026988C end:0x8026B334 + .rodata start:0x80485D20 end:0x80485D30 + .data start:0x804C4E18 end:0x804C5148 + .sdata2 start:0x8051AEA8 end:0x8051AF20 + +plugProjectNishimuraU/HibaState.cpp: + .text start:0x8026B334 end:0x8026B828 + .data start:0x804C5148 end:0x804C5200 + .sdata2 start:0x8051AF20 end:0x8051AF40 + +plugProjectNishimuraU/HibaAnimator.cpp: + .text start:0x8026B828 end:0x8026B89C + .data start:0x804C5200 end:0x804C5228 + +plugProjectNishimuraU/HibaMgr.cpp: + .text start:0x8026B89C end:0x8026BE6C + .rodata start:0x80485D30 end:0x80486058 + .data start:0x804C5228 end:0x804C53F8 + .sdata2 start:0x8051AF40 end:0x8051AF60 + +plugProjectNishimuraU/Hiba.cpp: + .text start:0x8026BE6C end:0x8026C66C + .data start:0x804C53F8 end:0x804C5740 + .sdata2 start:0x8051AF60 end:0x8051AF78 + +plugProjectNishimuraU/GasHibaState.cpp: + .text start:0x8026C66C end:0x8026CBEC + .data start:0x804C5740 end:0x804C57F8 + .sdata2 start:0x8051AF78 end:0x8051AF98 + +plugProjectNishimuraU/GasHibaAnimator.cpp: + .text start:0x8026CBEC end:0x8026CC60 + .data start:0x804C57F8 end:0x804C5820 + +plugProjectNishimuraU/GasHibaMgr.cpp: + .text start:0x8026CC60 end:0x8026D12C + .rodata start:0x80486058 end:0x80486398 + .data start:0x804C5820 end:0x804C5910 + .sdata2 start:0x8051AF98 end:0x8051AFB8 + +plugProjectNishimuraU/GasHiba.cpp: + .text start:0x8026D12C end:0x8026DFB8 + .rodata start:0x80486398 end:0x804863A8 + .data start:0x804C5910 end:0x804C5C48 + .sdata2 start:0x8051AFB8 end:0x8051AFD8 + +plugProjectNishimuraU/ElecHibaState.cpp: + .text start:0x8026DFB8 end:0x8026E974 + .data start:0x804C5C48 end:0x804C5D20 + .sdata2 start:0x8051AFD8 end:0x8051B000 + +plugProjectNishimuraU/ElecHibaAnimator.cpp: + .text start:0x8026E974 end:0x8026E9E8 + .data start:0x804C5D20 end:0x804C5D48 + +plugProjectNishimuraU/ElecHibaMgr.cpp: + .text start:0x8026E9E8 end:0x8026F238 + .rodata start:0x804863A8 end:0x80486708 + .data start:0x804C5D48 end:0x804C5E68 + .sdata2 start:0x8051B000 end:0x8051B020 + +plugProjectNishimuraU/ElecHiba.cpp: + .text start:0x8026F238 end:0x80270880 + .rodata start:0x80486708 end:0x80486718 + .data start:0x804C5E68 end:0x804C6208 + .sdata2 start:0x8051B020 end:0x8051B050 + +plugProjectNishimuraU/SaraiState.cpp: + .text start:0x80270880 end:0x80272470 + .rodata start:0x80486718 end:0x80486730 + .data start:0x804C6208 end:0x804C63E0 + .sdata2 start:0x8051B050 end:0x8051B0F0 + +plugProjectNishimuraU/SaraiAnimator.cpp: + .text start:0x80272470 end:0x802724E4 + .data start:0x804C63E0 end:0x804C6408 + +plugProjectNishimuraU/SaraiMgr.cpp: + .text start:0x802724E4 end:0x80272BA4 + .rodata start:0x80486730 end:0x80486AF0 + .data start:0x804C6408 end:0x804C64F8 + .sdata2 start:0x8051B0F0 end:0x8051B138 + +plugProjectNishimuraU/Sarai.cpp: + .text start:0x80272BA4 end:0x80273DC4 + .rodata start:0x80486AF0 end:0x80486B08 + .data start:0x804C64F8 end:0x804C6838 + .sdata2 start:0x8051B138 end:0x8051B1A8 + +plugProjectNishimuraU/TankState.cpp: + .text start:0x80273DC4 end:0x80275984 + .rodata start:0x80486B08 end:0x80486B20 + .data start:0x804C6838 end:0x804C6980 + .sdata2 start:0x8051B1A8 end:0x8051B218 + +plugProjectNishimuraU/TankAnimator.cpp: + .text start:0x80275984 end:0x802759F8 + .data start:0x804C6980 end:0x804C69A8 + +plugProjectNishimuraU/TankMgr.cpp: + .text start:0x802759F8 end:0x80275D6C + .rodata start:0x80486B20 end:0x80486B70 + .data start:0x804C69A8 end:0x804C6A90 + .sdata2 start:0x8051B218 end:0x8051B228 + +plugProjectNishimuraU/Tank.cpp: + .text start:0x80275D6C end:0x80276D34 + .data start:0x804C6A90 end:0x804C6DE8 + .sdata2 start:0x8051B228 end:0x8051B298 + +plugProjectNishimuraU/CatfishMgr.cpp: + .text start:0x80276D34 end:0x80276FE8 + .rodata start:0x80486B70 end:0x80486B88 + .data start:0x804C6DE8 end:0x804C6EC8 + +plugProjectNishimuraU/Catfish.cpp: + .text start:0x80276FE8 end:0x802772EC + .data start:0x804C6EC8 end:0x804C7200 + .sdata2 start:0x8051B298 end:0x8051B2D0 + +plugProjectNishimuraU/TadpoleState.cpp: + .text start:0x802772EC end:0x802781D0 + .data start:0x804C7200 end:0x804C7320 + .sdata2 start:0x8051B2D0 end:0x8051B340 + +plugProjectNishimuraU/TadpoleAnimator.cpp: + .text start:0x802781D0 end:0x80278244 + .data start:0x804C7320 end:0x804C7348 + +plugProjectNishimuraU/TadpoleMgr.cpp: + .text start:0x80278244 end:0x802785B0 + .rodata start:0x80486B88 end:0x80486BC0 + .data start:0x804C7348 end:0x804C7438 + .sdata2 start:0x8051B340 end:0x8051B350 + +plugProjectNishimuraU/Tadpole.cpp: + .text start:0x802785B0 end:0x80278E70 + .data start:0x804C7438 end:0x804C7778 + .sdata2 start:0x8051B350 end:0x8051B390 + +plugProjectNishimuraU/ElecBugState.cpp: + .text start:0x80278E70 end:0x8027A808 + .rodata start:0x80486BC0 end:0x80486C00 + .data start:0x804C7778 end:0x804C7940 + .sdata2 start:0x8051B390 end:0x8051B408 + +plugProjectNishimuraU/ElecBugAnimator.cpp: + .text start:0x8027A808 end:0x8027A87C + .data start:0x804C7940 end:0x804C7968 + +plugProjectNishimuraU/ElecBugMgr.cpp: + .text start:0x8027A87C end:0x8027AC68 + .rodata start:0x80486C00 end:0x80486F20 + .data start:0x804C7968 end:0x804C7A58 + .sdata2 start:0x8051B408 end:0x8051B420 + +plugProjectNishimuraU/ElecBug.cpp: + .text start:0x8027AC68 end:0x8027C3EC + .data start:0x804C7A58 end:0x804C7E20 + .sdata2 start:0x8051B420 end:0x8051B460 + +plugProjectNishimuraU/WtankMgr.cpp: + .text start:0x8027C3EC end:0x8027C7EC + .rodata start:0x80486F20 end:0x80486F98 + .data start:0x804C7E20 end:0x804C7F10 + .sdata start:0x80514A48 end:0x80514A50 + +plugProjectNishimuraU/Wtank.cpp: + .text start:0x8027C7EC end:0x8027D298 + .data start:0x804C7F10 end:0x804C8330 + .sdata2 start:0x8051B460 end:0x8051B468 + +plugProjectNishimuraU/ArmorMgr.cpp: + .text start:0x8027D298 end:0x8027D67C + .rodata start:0x80486F98 end:0x804872B8 + .data start:0x804C8330 end:0x804C8420 + .sdata2 start:0x8051B468 end:0x8051B480 + +plugProjectNishimuraU/Armor.cpp: + .text start:0x8027D67C end:0x8027F4EC + .rodata start:0x804872B8 end:0x804872C8 + .data start:0x804C8420 end:0x804C87E8 + .sdata2 start:0x8051B480 end:0x8051B4D8 + +plugProjectNishimuraU/Mar.cpp: + .text start:0x8027F4EC end:0x80281E7C + .data start:0x804C87E8 end:0x804C8BB8 + .sdata2 start:0x8051B4D8 end:0x8051B558 + +plugProjectNishimuraU/MarAnimator.cpp: + .text start:0x80281E7C end:0x80281EF0 + .data start:0x804C8BB8 end:0x804C8BE0 + +plugProjectNishimuraU/MarMgr.cpp: + .text start:0x80281EF0 end:0x802825F4 + .rodata start:0x804872C8 end:0x804876A0 + .data start:0x804C8BE0 end:0x804C8CD0 + .sdata start:0x80514A50 end:0x80514A58 + .sdata2 start:0x8051B558 end:0x8051B580 + +plugProjectNishimuraU/MarState.cpp: + .text start:0x802825F4 end:0x80284450 + .rodata start:0x804876A0 end:0x804876D8 + .data start:0x804C8CD0 end:0x804C8EC8 + .sdata2 start:0x8051B580 end:0x8051B600 + +plugProjectNishimuraU/WealthyMgr.cpp: + .text start:0x80284450 end:0x80284A7C + .rodata start:0x804876D8 end:0x80487A88 + .data start:0x804C8EC8 end:0x804C8FB8 + .sdata start:0x80514A58 end:0x80514A60 + .sdata2 start:0x8051B600 end:0x8051B630 + +plugProjectNishimuraU/Wealthy.cpp: + .text start:0x80284A7C end:0x802850D0 + .data start:0x804C8FB8 end:0x804C9358 + .sdata2 start:0x8051B630 end:0x8051B648 + +plugProjectNishimuraU/FartMgr.cpp: + .text start:0x802850D0 end:0x80285428 + .rodata start:0x80487A88 end:0x80487AE0 + .data start:0x804C9358 end:0x804C9440 + .sdata start:0x80514A60 end:0x80514A68 + +plugProjectNishimuraU/Fart.cpp: + .text start:0x80285428 end:0x80285EB8 + .data start:0x804C9440 end:0x804C9790 + .sdata2 start:0x8051B648 end:0x8051B668 + +plugProjectNishimuraU/ArmorState.cpp: + .text start:0x80285EB8 end:0x80287ADC + .rodata start:0x80487AE0 end:0x80487AF8 + .data start:0x804C9790 end:0x804C99D0 + .sdata2 start:0x8051B668 end:0x8051B6D8 + +plugProjectNishimuraU/ArmorAnimator.cpp: + .text start:0x80287ADC end:0x80287B50 + .data start:0x804C99D0 end:0x804C99F8 + +plugProjectNishimuraU/QueenState.cpp: + .text start:0x80287B50 end:0x80288E20 + .ctors start:0x80472F70 end:0x80472F74 + .data start:0x804C99F8 end:0x804C9B48 + .sbss start:0x80515C88 end:0x80515C90 + .sdata2 start:0x8051B6D8 end:0x8051B740 + +plugProjectNishimuraU/QueenAnimator.cpp: + .text start:0x80288E20 end:0x80288E94 + .data start:0x804C9B48 end:0x804C9B70 + +plugProjectNishimuraU/QueenMgr.cpp: + .text start:0x80288E94 end:0x802894B4 + .rodata start:0x80487AF8 end:0x80487E98 + .data start:0x804C9B70 end:0x804C9C60 + .sdata start:0x80514A68 end:0x80514A70 + .sdata2 start:0x8051B740 end:0x8051B758 + +plugProjectNishimuraU/Queen.cpp: + .text start:0x802894B4 end:0x8028C564 + .ctors start:0x80472F74 end:0x80472F78 + .rodata start:0x80487E98 end:0x80487EC8 + .data start:0x804C9C60 end:0x804CA288 + .sbss start:0x80515C90 end:0x80515C98 + .sdata2 start:0x8051B758 end:0x8051B7C8 + +plugProjectNishimuraU/BabyState.cpp: + .text start:0x8028C564 end:0x8028D02C + .data start:0x804CA288 end:0x804CA398 + .sdata2 start:0x8051B7C8 end:0x8051B808 + +plugProjectNishimuraU/BabyAnimator.cpp: + .text start:0x8028D02C end:0x8028D0A0 + .data start:0x804CA398 end:0x804CA3C0 + +plugProjectNishimuraU/BabyMgr.cpp: + .text start:0x8028D0A0 end:0x8028D450 + .rodata start:0x80487EC8 end:0x804881D0 + .data start:0x804CA3C0 end:0x804CA4B0 + .sdata2 start:0x8051B808 end:0x8051B820 + +plugProjectNishimuraU/Baby.cpp: + .text start:0x8028D450 end:0x8028E028 + .data start:0x804CA4B0 end:0x804CA828 + .sdata2 start:0x8051B820 end:0x8051B870 + +plugProjectNishimuraU/DemonMgr.cpp: + .text start:0x8028E028 end:0x8028E374 + .rodata start:0x804881D0 end:0x804881E8 + .data start:0x804CA828 end:0x804CA908 + +plugProjectNishimuraU/Demon.cpp: + .text start:0x8028E374 end:0x8028EB48 + .data start:0x804CA908 end:0x804CAC48 + .sdata2 start:0x8051B870 end:0x8051B888 + +plugProjectNishimuraU/QueenShadow.cpp: + .text start:0x8028EB48 end:0x8028F118 + .data start:0x804CAC48 end:0x804CAC58 + .sdata2 start:0x8051B888 end:0x8051B908 + +plugProjectNishimuraU/FireChappyMgr.cpp: + .text start:0x8028F118 end:0x8028F60C + .rodata start:0x804881E8 end:0x80488278 + .data start:0x804CAC58 end:0x804CAD38 + .sdata start:0x80514A70 end:0x80514A78 + +plugProjectNishimuraU/FireChappy.cpp: + .text start:0x8028F60C end:0x80290704 + .data start:0x804CAD38 end:0x804CB1E8 + .sdata2 start:0x8051B908 end:0x8051B938 + +plugProjectNishimuraU/SnakeCrowState.cpp: + .text start:0x80290704 end:0x80292B08 + .ctors start:0x80472F78 end:0x80472F7C + .rodata start:0x80488278 end:0x80488290 + .data start:0x804CB1E8 end:0x804CB398 + .sbss start:0x80515C98 end:0x80515CA0 + .sdata2 start:0x8051B938 end:0x8051B9A8 + +plugProjectNishimuraU/SnakeCrowAnimator.cpp: + .text start:0x80292B08 end:0x80292B7C + .data start:0x804CB398 end:0x804CB3C0 + +plugProjectNishimuraU/SnakeCrowMgr.cpp: + .text start:0x80292B7C end:0x80293074 + .rodata start:0x80488290 end:0x804885D0 + .data start:0x804CB3C0 end:0x804CB4B0 + .sdata2 start:0x8051B9A8 end:0x8051B9D0 + +plugProjectNishimuraU/SnakeCrow.cpp: + .text start:0x80293074 end:0x80295E08 + .ctors start:0x80472F7C end:0x80472F80 + .rodata start:0x804885D0 end:0x80488768 + .data start:0x804CB4B0 end:0x804CB928 + .sbss start:0x80515CA0 end:0x80515CA8 + .sdata2 start:0x8051B9D0 end:0x8051BA20 + +plugProjectNishimuraU/KumaChappyState.cpp: + .text start:0x80295E08 end:0x80299220 + .rodata start:0x80488768 end:0x80488780 + .data start:0x804CB928 end:0x804CBAB8 + .sdata2 start:0x8051BA20 end:0x8051BA88 + +plugProjectNishimuraU/KumaChappyAnimator.cpp: + .text start:0x80299220 end:0x80299294 + .data start:0x804CBAB8 end:0x804CBAE0 + +plugProjectNishimuraU/KumaChappyMgr.cpp: + .text start:0x80299294 end:0x80299680 + .rodata start:0x80488780 end:0x80488AB0 + .data start:0x804CBAE0 end:0x804CBBD0 + .sdata2 start:0x8051BA88 end:0x8051BAA8 + +plugProjectNishimuraU/KumaChappy.cpp: + .text start:0x80299680 end:0x8029A61C + .data start:0x804CBBD0 end:0x804CBF18 + .sdata2 start:0x8051BAA8 end:0x8051BB30 + +plugProjectNishimuraU/FuefukiState.cpp: + .text start:0x8029A61C end:0x8029BBA4 + .rodata start:0x80488AB0 end:0x80488AC0 + .data start:0x804CBF18 end:0x804CC0A8 + .sdata2 start:0x8051BB30 end:0x8051BBB0 + +plugProjectNishimuraU/FuefukiAnimator.cpp: + .text start:0x8029BBA4 end:0x8029BC18 + .data start:0x804CC0A8 end:0x804CC0D0 + +plugProjectNishimuraU/FuefukiMgr.cpp: + .text start:0x8029BC18 end:0x8029C1A4 + .rodata start:0x80488AC0 end:0x80488E48 + .data start:0x804CC0D0 end:0x804CC1C0 + .sdata2 start:0x8051BBB0 end:0x8051BBD8 + +plugProjectNishimuraU/Fuefuki.cpp: + .text start:0x8029C1A4 end:0x8029D9D0 + .rodata start:0x80488E48 end:0x80488E58 + .data start:0x804CC1C0 end:0x804CC568 + .sdata2 start:0x8051BBD8 end:0x8051BC20 + +plugProjectNishimuraU/KoganemushiMgr.cpp: + .text start:0x8029D9D0 end:0x8029DD24 + .rodata start:0x80488E58 end:0x80488EB0 + .data start:0x804CC568 end:0x804CC650 + .sdata start:0x80514A78 end:0x80514A80 + +plugProjectNishimuraU/Koganemushi.cpp: + .text start:0x8029DD24 end:0x8029E10C + .data start:0x804CC650 end:0x804CC9A0 + .sdata2 start:0x8051BC20 end:0x8051BC30 + +plugProjectNishimuraU/FtankMgr.cpp: + .text start:0x8029E10C end:0x8029E464 + .rodata start:0x80488EB0 end:0x80488F18 + .data start:0x804CC9A0 end:0x804CCA88 + .sdata start:0x80514A80 end:0x80514A88 + +plugProjectNishimuraU/Ftank.cpp: + .text start:0x8029E464 end:0x8029EEEC + .data start:0x804CCA88 end:0x804CCE70 + .sdata2 start:0x8051BC30 end:0x8051BC38 + +plugProjectNishimuraU/RandPlantUnit.cpp: + .text start:0x8029EEEC end:0x8029F208 + .sdata2 start:0x8051BC38 end:0x8051BC48 + +plugProjectNishimuraU/HanachirashiState.cpp: + .text start:0x8029F208 end:0x802A1294 + .rodata start:0x80488F18 end:0x80488F58 + .data start:0x804CCE70 end:0x804CD090 + .sdata2 start:0x8051BC48 end:0x8051BCD0 + +plugProjectNishimuraU/HanachirashiAnimator.cpp: + .text start:0x802A1294 end:0x802A1308 + .data start:0x804CD090 end:0x804CD0B8 + +plugProjectNishimuraU/HanachirashiMgr.cpp: + .text start:0x802A1308 end:0x802A1AC8 + .rodata start:0x80488F58 end:0x80489358 + .data start:0x804CD0B8 end:0x804CD1A8 + .sdata start:0x80514A88 end:0x80514A90 + .sdata2 start:0x8051BCD0 end:0x8051BCF8 + +plugProjectNishimuraU/Hanachirashi.cpp: + .text start:0x802A1AC8 end:0x802A43DC + .data start:0x804CD1A8 end:0x804CD510 + .sdata2 start:0x8051BCF8 end:0x8051BD88 + +plugProjectNishimuraU/DamagumoState.cpp: + .text start:0x802A43DC end:0x802A5038 + .ctors start:0x80472F80 end:0x80472F84 + .data start:0x804CD510 end:0x804CD640 + .sbss start:0x80515CA8 end:0x80515CB0 + .sdata2 start:0x8051BD88 end:0x8051BDE0 + +plugProjectNishimuraU/DamagumoAnimator.cpp: + .text start:0x802A5038 end:0x802A50AC + .data start:0x804CD640 end:0x804CD668 + +plugProjectNishimuraU/DamagumoMgr.cpp: + .text start:0x802A50AC end:0x802A5784 + .rodata start:0x80489358 end:0x80489710 + .data start:0x804CD668 end:0x804CD758 + .sdata start:0x80514A90 end:0x80514A98 + .sdata2 start:0x8051BDE0 end:0x8051BE10 + +plugProjectNishimuraU/Damagumo.cpp: + .text start:0x802A5784 end:0x802A8A60 + .ctors start:0x80472F84 end:0x80472F88 + .rodata start:0x80489710 end:0x80489808 + .data start:0x804CD758 end:0x804CDDF8 + .sbss start:0x80515CB0 end:0x80515CB8 + .sdata2 start:0x8051BE10 end:0x8051BEB0 + +plugProjectNishimuraU/IKSystemMgr.cpp: + .text start:0x802A8A60 end:0x802A9E3C + .rodata start:0x80489808 end:0x80489818 + .sbss start:0x80515CB8 end:0x80515CC0 + .sdata2 start:0x8051BEB0 end:0x8051BEE0 + +plugProjectNishimuraU/IKSystemBase.cpp: + .text start:0x802A9E3C end:0x802AAD74 + .sdata2 start:0x8051BEE0 end:0x8051BF18 + +plugProjectNishimuraU/DamagumoShadow.cpp: + .text start:0x802AAD74 end:0x802AB5D0 + .rodata start:0x80489818 end:0x804898C0 + .data start:0x804CDDF8 end:0x804CDE28 + .sdata2 start:0x8051BF18 end:0x8051BF60 + +plugProjectNishimuraU/KurageState.cpp: + .text start:0x802AB5D0 end:0x802AD070 + .ctors start:0x80472F88 end:0x80472F8C + .rodata start:0x804898C0 end:0x804898D8 + .data start:0x804CDE28 end:0x804CE020 + .sbss start:0x80515CC0 end:0x80515CC8 + .sdata2 start:0x8051BF60 end:0x8051BFE0 + +plugProjectNishimuraU/KurageAnimator.cpp: + .text start:0x802AD070 end:0x802AD0E4 + .data start:0x804CE020 end:0x804CE048 + +plugProjectNishimuraU/KurageMgr.cpp: + .text start:0x802AD0E4 end:0x802AD6D0 + .rodata start:0x804898D8 end:0x80489C48 + .data start:0x804CE048 end:0x804CE138 + .sdata2 start:0x8051BFE0 end:0x8051C000 + +plugProjectNishimuraU/Kurage.cpp: + .text start:0x802AD6D0 end:0x802AFC54 + .rodata start:0x80489C48 end:0x80489D20 + .data start:0x804CE138 end:0x804CE598 + .sdata2 start:0x8051C000 end:0x8051C070 + +plugProjectNishimuraU/BombSaraiState.cpp: + .text start:0x802AFC54 end:0x802B2110 + .ctors start:0x80472F8C end:0x80472F90 + .rodata start:0x80489D20 end:0x80489D80 + .data start:0x804CE598 end:0x804CE7C0 + .sbss start:0x80515CC8 end:0x80515CD0 + .sdata2 start:0x8051C070 end:0x8051C100 + +plugProjectNishimuraU/BombSaraiAnimator.cpp: + .text start:0x802B2110 end:0x802B2184 + .data start:0x804CE7C0 end:0x804CE7E8 + +plugProjectNishimuraU/BombSaraiMgr.cpp: + .text start:0x802B2184 end:0x802B27AC + .rodata start:0x80489D80 end:0x8048A0F0 + .data start:0x804CE7E8 end:0x804CE8D8 + .sdata2 start:0x8051C100 end:0x8051C138 + +plugProjectNishimuraU/BombSarai.cpp: + .text start:0x802B27AC end:0x802B3788 + .rodata start:0x8048A0F0 end:0x8048A160 + .data start:0x804CE8D8 end:0x804CEC68 + .sdata2 start:0x8051C138 end:0x8051C188 + +plugProjectNishimuraU/OtakaraBaseState.cpp: + .text start:0x802B3788 end:0x802B5E04 + .rodata start:0x8048A160 end:0x8048A1D8 + .data start:0x804CEC68 end:0x804CEEA8 + .sdata2 start:0x8051C188 end:0x8051C1D0 + +plugProjectNishimuraU/OtakaraBaseAnimator.cpp: + .text start:0x802B5E04 end:0x802B5E78 + .data start:0x804CEEA8 end:0x804CEED0 + +plugProjectNishimuraU/OtakaraBaseMgr.cpp: + .text start:0x802B5E78 end:0x802B622C + .rodata start:0x8048A1D8 end:0x8048A258 + .data start:0x804CEED0 end:0x804CEFB8 + +plugProjectNishimuraU/OtakaraBase.cpp: + .text start:0x802B622C end:0x802B7CAC + .data start:0x804CEFB8 end:0x804CF318 + .sdata2 start:0x8051C1D0 end:0x8051C228 + +plugProjectNishimuraU/FireOtakaraMgr.cpp: + .text start:0x802B7CAC end:0x802B81A8 + .rodata start:0x8048A258 end:0x8048A600 + .data start:0x804CF318 end:0x804CF408 + .sdata start:0x80514A98 end:0x80514AA0 + .sdata2 start:0x8051C228 end:0x8051C248 + +plugProjectNishimuraU/FireOtakara.cpp: + .text start:0x802B81A8 end:0x802B86C0 + .data start:0x804CF408 end:0x804CF790 + .sdata2 start:0x8051C248 end:0x8051C250 + +plugProjectNishimuraU/WaterOtakaraMgr.cpp: + .text start:0x802B86C0 end:0x802B8A18 + .rodata start:0x8048A600 end:0x8048A670 + .data start:0x804CF790 end:0x804CF878 + .sdata start:0x80514AA0 end:0x80514AA8 + +plugProjectNishimuraU/WaterOtakara.cpp: + .text start:0x802B8A18 end:0x802B8F1C + .data start:0x804CF878 end:0x804CFC00 + .sdata2 start:0x8051C250 end:0x8051C258 + +plugProjectNishimuraU/GasOtakaraMgr.cpp: + .text start:0x802B8F1C end:0x802B9274 + .rodata start:0x8048A670 end:0x8048A6E0 + .data start:0x804CFC00 end:0x804CFCE8 + .sdata start:0x80514AA8 end:0x80514AB0 + +plugProjectNishimuraU/GasOtakara.cpp: + .text start:0x802B9274 end:0x802B9760 + .data start:0x804CFCE8 end:0x804D0070 + .sdata2 start:0x8051C258 end:0x8051C260 + +plugProjectNishimuraU/ElecOtakaraMgr.cpp: + .text start:0x802B9760 end:0x802B9AB8 + .rodata start:0x8048A6E0 end:0x8048A750 + .data start:0x804D0070 end:0x804D0158 + .sdata start:0x80514AB0 end:0x80514AB8 + +plugProjectNishimuraU/ElecOtakara.cpp: + .text start:0x802B9AB8 end:0x802BA0B8 + .data start:0x804D0158 end:0x804D04E0 + .sdata2 start:0x8051C260 end:0x8051C270 + +plugProjectNishimuraU/ImomushiState.cpp: + .text start:0x802BA0B8 end:0x802BBC40 + .rodata start:0x8048A750 end:0x8048A7A0 + .data start:0x804D04E0 end:0x804D0720 + .sdata2 start:0x8051C270 end:0x8051C2E0 + +plugProjectNishimuraU/ImomushiAnimator.cpp: + .text start:0x802BBC40 end:0x802BBCB4 + .data start:0x804D0720 end:0x804D0748 + +plugProjectNishimuraU/ImomushiMgr.cpp: + .text start:0x802BBCB4 end:0x802BC118 + .rodata start:0x8048A7A0 end:0x8048AAD0 + .data start:0x804D0748 end:0x804D0838 + .sdata2 start:0x8051C2E0 end:0x8051C300 + +plugProjectNishimuraU/Imomushi.cpp: + .text start:0x802BC118 end:0x802BDA90 + .rodata start:0x8048AAD0 end:0x8048AAF8 + .data start:0x804D0838 end:0x804D0B70 + .sdata2 start:0x8051C300 end:0x8051C358 + +plugProjectNishimuraU/HoudaiState.cpp: + .text start:0x802BDA90 end:0x802BED4C + .ctors start:0x80472F90 end:0x80472F94 + .data start:0x804D0B70 end:0x804D0CC0 + .sbss start:0x80515CD0 end:0x80515CD8 + .sdata2 start:0x8051C358 end:0x8051C3B8 + +plugProjectNishimuraU/HoudaiAnimator.cpp: + .text start:0x802BED4C end:0x802BEDC0 + .data start:0x804D0CC0 end:0x804D0CE8 + +plugProjectNishimuraU/HoudaiMgr.cpp: + .text start:0x802BEDC0 end:0x802BF45C + .rodata start:0x8048AAF8 end:0x8048AED0 + .data start:0x804D0CE8 end:0x804D0DD8 + .sdata2 start:0x8051C3B8 end:0x8051C3F0 + +plugProjectNishimuraU/HoudaiShadow.cpp: + .text start:0x802BF45C end:0x802BFC90 + .rodata start:0x8048AED0 end:0x8048AF78 + .sdata2 start:0x8051C3F0 end:0x8051C438 + +plugProjectNishimuraU/Houdai.cpp: + .text start:0x802BFC90 end:0x802C392C + .ctors start:0x80472F94 end:0x80472F98 + .rodata start:0x8048AF78 end:0x8048B098 + .data start:0x804D0DD8 end:0x804D13E0 + .sbss start:0x80515CD8 end:0x80515CE0 + .sdata2 start:0x8051C438 end:0x8051C4C8 + +plugProjectNishimuraU/HoudaiShotGun.cpp: + .text start:0x802C392C end:0x802C58F8 + .data start:0x804D13E0 end:0x804D1498 + .sbss start:0x80515CE0 end:0x80515CE8 + .sdata2 start:0x8051C4C8 end:0x8051C538 + +plugProjectNishimuraU/LeafChappyMgr.cpp: + .text start:0x802C58F8 end:0x802C5BF8 + .rodata start:0x8048B098 end:0x8048B0B8 + .data start:0x804D1498 end:0x804D1578 + +plugProjectNishimuraU/LeafChappy.cpp: + .text start:0x802C5BF8 end:0x802C62C8 + .data start:0x804D1578 end:0x804D18B8 + .sdata2 start:0x8051C538 end:0x8051C5A8 + +plugProjectNishimuraU/BigFootState.cpp: + .text start:0x802C62C8 end:0x802C6EC4 + .ctors start:0x80472F98 end:0x80472F9C + .data start:0x804D18B8 end:0x804D19E8 + .sbss start:0x80515CE8 end:0x80515CF0 + .sdata2 start:0x8051C5A8 end:0x8051C5F0 + +plugProjectNishimuraU/BigFootAnimator.cpp: + .text start:0x802C6EC4 end:0x802C6F38 + .data start:0x804D19E8 end:0x804D1A10 + +plugProjectNishimuraU/BigFootMgr.cpp: + .text start:0x802C6F38 end:0x802C77F0 + .rodata start:0x8048B0B8 end:0x8048B4E0 + .data start:0x804D1A10 end:0x804D1B00 + .sdata start:0x80514AB8 end:0x80514AC0 + .sdata2 start:0x8051C5F0 end:0x8051C628 + +plugProjectNishimuraU/BigFootShadow.cpp: + .text start:0x802C77F0 end:0x802C7ED0 + .rodata start:0x8048B4E0 end:0x8048B588 + .sdata2 start:0x8051C628 end:0x8051C668 + +plugProjectNishimuraU/BigFoot.cpp: + .text start:0x802C7ED0 end:0x802CB92C + .ctors start:0x80472F9C end:0x80472FA0 + .rodata start:0x8048B588 end:0x8048B690 + .data start:0x804D1B00 end:0x804D2090 + .sbss start:0x80515CF0 end:0x80515CF8 + .sdata2 start:0x8051C668 end:0x8051C710 + +plugProjectNishimuraU/SnakeWholeState.cpp: + .text start:0x802CB92C end:0x802CE248 + .ctors start:0x80472FA0 end:0x80472FA4 + .rodata start:0x8048B690 end:0x8048B6A8 + .data start:0x804D2090 end:0x804D2270 + .sbss start:0x80515CF8 end:0x80515D00 + .sdata2 start:0x8051C710 end:0x8051C788 + +plugProjectNishimuraU/SnakeWholeAnimator.cpp: + .text start:0x802CE248 end:0x802CE2BC + .data start:0x804D2270 end:0x804D2298 + +plugProjectNishimuraU/SnakeWholeMgr.cpp: + .text start:0x802CE2BC end:0x802CE778 + .rodata start:0x8048B6A8 end:0x8048B9D8 + .data start:0x804D2298 end:0x804D2388 + .sdata2 start:0x8051C788 end:0x8051C7A8 + +plugProjectNishimuraU/SnakeWhole.cpp: + .text start:0x802CE778 end:0x802D1614 + .rodata start:0x8048B9D8 end:0x8048BB60 + .data start:0x804D2388 end:0x804D26E8 + .sdata2 start:0x8051C7A8 end:0x8051C818 + +plugProjectNishimuraU/SnakeJointMgr.cpp: + .text start:0x802D1614 end:0x802D1AC0 + .rodata start:0x8048BB60 end:0x8048BBD8 + .sbss start:0x80515D00 end:0x80515D08 + .sdata2 start:0x8051C818 end:0x8051C828 + +plugProjectNishimuraU/OniKurageState.cpp: + .text start:0x802D1AC0 end:0x802D3904 + .ctors start:0x80472FA4 end:0x80472FA8 + .rodata start:0x8048BBD8 end:0x8048BBF0 + .data start:0x804D26E8 end:0x804D2900 + .sbss start:0x80515D08 end:0x80515D10 + .sdata2 start:0x8051C828 end:0x8051C8B0 + +plugProjectNishimuraU/OniKurageAnimator.cpp: + .text start:0x802D3904 end:0x802D3978 + .data start:0x804D2900 end:0x804D2928 + +plugProjectNishimuraU/OniKurageMgr.cpp: + .text start:0x802D3978 end:0x802D3F64 + .rodata start:0x8048BBF0 end:0x8048BF60 + .data start:0x804D2928 end:0x804D2A18 + .sdata2 start:0x8051C8B0 end:0x8051C8D0 + +plugProjectNishimuraU/OniKurage.cpp: + .text start:0x802D3F64 end:0x802D72AC + .ctors start:0x80472FA8 end:0x80472FAC + .rodata start:0x8048BF60 end:0x8048C038 + .data start:0x804D2A18 end:0x804D2ED0 + .sbss start:0x80515D10 end:0x80515D18 + .sdata2 start:0x8051C8D0 end:0x8051C980 + +plugProjectNishimuraU/BigTreasureState.cpp: + .text start:0x802D72AC end:0x802D90C4 + .ctors start:0x80472FAC end:0x80472FB0 + .rodata start:0x8048C038 end:0x8048C090 + .data start:0x804D2ED0 end:0x804D30D8 + .sbss start:0x80515D18 end:0x80515D20 + .sdata2 start:0x8051C980 end:0x8051C9F0 + +plugProjectNishimuraU/BigTreasureMgr.cpp: + .text start:0x802D90C4 end:0x802DA5A8 + .rodata start:0x8048C090 end:0x8048C808 + .data start:0x804D30D8 end:0x804D31C8 + .sdata2 start:0x8051C9F0 end:0x8051CAC8 + +plugProjectNishimuraU/BigTreasureShadow.cpp: + .text start:0x802DA5A8 end:0x802DBB94 + .rodata start:0x8048C808 end:0x8048C920 + .data start:0x804D31C8 end:0x804D31D8 + .sdata2 start:0x8051CAC8 end:0x8051CB70 + +plugProjectNishimuraU/BigTreasure.cpp: + .text start:0x802DBB94 end:0x802E1814 + .ctors start:0x80472FB0 end:0x80472FB4 + .rodata start:0x8048C920 end:0x8048CB00 + .data start:0x804D31D8 end:0x804D3828 + .sbss start:0x80515D20 end:0x80515D28 + .sdata2 start:0x8051CB70 end:0x8051CC98 + +plugProjectNishimuraU/KabutoState.cpp: + .text start:0x802E1814 end:0x802E3CD4 + .rodata start:0x8048CB00 end:0x8048CB38 + .data start:0x804D3828 end:0x804D3A70 + .sdata2 start:0x8051CC98 end:0x8051CD08 + +plugProjectNishimuraU/KabutoAnimator.cpp: + .text start:0x802E3CD4 end:0x802E3D48 + .data start:0x804D3A70 end:0x804D3A98 + +plugProjectNishimuraU/KabutoMgr.cpp: + .text start:0x802E3D48 end:0x802E4158 + .rodata start:0x8048CB38 end:0x8048CBD0 + .data start:0x804D3A98 end:0x804D3B80 + +plugProjectNishimuraU/Kabuto.cpp: + .text start:0x802E4158 end:0x802E4EC8 + .data start:0x804D3B80 end:0x804D3EE0 + .sdata2 start:0x8051CD08 end:0x8051CDA0 + +plugProjectNishimuraU/KumaKochappyState.cpp: + .text start:0x802E4EC8 end:0x802E6C50 + .rodata start:0x8048CBD0 end:0x8048CBE0 + .data start:0x804D3EE0 end:0x804D4028 + .sdata2 start:0x8051CDA0 end:0x8051CDF0 + +plugProjectNishimuraU/KumaKochappyAnimator.cpp: + .text start:0x802E6C50 end:0x802E6CC4 + .data start:0x804D4028 end:0x804D4050 + +plugProjectNishimuraU/KumaKochappyMgr.cpp: + .text start:0x802E6CC4 end:0x802E7030 + .rodata start:0x8048CBE0 end:0x8048CC10 + .data start:0x804D4050 end:0x804D4140 + .sdata2 start:0x8051CDF0 end:0x8051CE00 + +plugProjectNishimuraU/KumaKochappy.cpp: + .text start:0x802E7030 end:0x802E7F2C + .data start:0x804D4140 end:0x804D4488 + .sdata2 start:0x8051CE00 end:0x8051CE50 + +plugProjectNishimuraU/MiniHoudaiState.cpp: + .text start:0x802E7F2C end:0x802EBCC0 + .ctors start:0x80472FB4 end:0x80472FB8 + .rodata start:0x8048CC10 end:0x8048CC60 + .data start:0x804D4488 end:0x804D4668 + .sbss start:0x80515D28 end:0x80515D30 + .sdata2 start:0x8051CE50 end:0x8051CEB8 + +plugProjectNishimuraU/MiniHoudaiAnimator.cpp: + .text start:0x802EBCC0 end:0x802EBD34 + .data start:0x804D4668 end:0x804D4690 + +plugProjectNishimuraU/MiniHoudaiMgr.cpp: + .text start:0x802EBD34 end:0x802EBFD8 + .rodata start:0x8048CC60 end:0x8048CC78 + .data start:0x804D4690 end:0x804D4770 + .sdata2 start:0x8051CEB8 end:0x8051CEC8 + +plugProjectNishimuraU/MiniHoudai.cpp: + .text start:0x802EBFD8 end:0x802EDC80 + .data start:0x804D4770 end:0x804D4B98 + .sdata2 start:0x8051CEC8 end:0x8051CF60 + +plugProjectNishimuraU/MiniHoudaiShotGun.cpp: + .text start:0x802EDC80 end:0x802EFA04 + .ctors start:0x80472FB8 end:0x80472FBC + .rodata start:0x8048CC78 end:0x8048CC88 + .data start:0x804D4B98 end:0x804D4C00 + .sbss start:0x80515D30 end:0x80515D40 + .sdata2 start:0x8051CF60 end:0x8051CFD0 + +plugProjectNishimuraU/SokkuriState.cpp: + .text start:0x802EFA04 end:0x802F0B70 + .rodata start:0x8048CC88 end:0x8048CCC0 + .data start:0x804D4C00 end:0x804D4D90 + .sdata2 start:0x8051CFD0 end:0x8051D030 + +plugProjectNishimuraU/SokkuriAnimator.cpp: + .text start:0x802F0B70 end:0x802F0BE4 + .data start:0x804D4D90 end:0x804D4DB8 + +plugProjectNishimuraU/SokkuriMgr.cpp: + .text start:0x802F0BE4 end:0x802F1244 + .rodata start:0x8048CCC0 end:0x8048D050 + .data start:0x804D4DB8 end:0x804D4EA8 + .sdata2 start:0x8051D030 end:0x8051D060 + +plugProjectNishimuraU/Sokkuri.cpp: + .text start:0x802F1244 end:0x802F2020 + .rodata start:0x8048D050 end:0x8048D060 + .data start:0x804D4EA8 end:0x804D51E8 + .sdata2 start:0x8051D060 end:0x8051D0B0 + +plugProjectNishimuraU/JointShadowBase.cpp: + .text start:0x802F2020 end:0x802F27BC + .sdata2 start:0x8051D0B0 end:0x8051D0C0 + +plugProjectNishimuraU/UmimushiShadow.cpp: + .text start:0x802F27BC end:0x802F2DCC + .rodata start:0x8048D060 end:0x8048D078 + .data start:0x804D51E8 end:0x804D5208 + .sdata2 start:0x8051D0C0 end:0x8051D0E0 + +plugProjectNishimuraU/HanaMgr.cpp: + .text start:0x802F2DCC end:0x802F3118 + .rodata start:0x8048D078 end:0x8048D090 + .data start:0x804D5208 end:0x804D52E8 + +plugProjectNishimuraU/Hana.cpp: + .text start:0x802F3118 end:0x802F3988 + .ctors start:0x80472FBC end:0x80472FC0 + .data start:0x804D52E8 end:0x804D5678 + .sbss start:0x80515D40 end:0x80515D48 + .sdata2 start:0x8051D0E0 end:0x8051D140 + +plugProjectNishimuraU/BigTreasureAttack.cpp: + .text start:0x802F3988 end:0x802F8070 + .rodata start:0x8048D090 end:0x8048D0E0 + .data start:0x804D5678 end:0x804D5920 + .sdata2 start:0x8051D140 end:0x8051D200 + +plugProjectNishimuraU/SnakeCrowShadow.cpp: + .text start:0x802F8070 end:0x802F898C + .rodata start:0x8048D0E0 end:0x8048D1A0 + .data start:0x804D5920 end:0x804D5940 + .sdata2 start:0x8051D200 end:0x8051D218 + +plugProjectNishimuraU/SnakeWholeShadow.cpp: + .text start:0x802F898C end:0x802F92B0 + .rodata start:0x8048D1A0 end:0x8048D278 + .data start:0x804D5940 end:0x804D5960 + .sdata2 start:0x8051D218 end:0x8051D230 + +plugProjectNishimuraU/BombOtakaraMgr.cpp: + .text start:0x802F92B0 end:0x802F9604 + .rodata start:0x8048D278 end:0x8048D2E8 + .data start:0x804D5960 end:0x804D5A48 + .sdata start:0x80514AC0 end:0x80514AC8 + +plugProjectNishimuraU/BombOtakara.cpp: + .text start:0x802F9604 end:0x802F9A6C + .data start:0x804D5A48 end:0x804D5DA0 + .sdata2 start:0x8051D230 end:0x8051D238 + +plugProjectNishimuraU/DangoMushiState.cpp: + .text start:0x802F9A6C end:0x802FBCFC + .ctors start:0x80472FC0 end:0x80472FC4 + .data start:0x804D5DA0 end:0x804D5F38 + .sbss start:0x80515D48 end:0x80515D50 + .sdata2 start:0x8051D238 end:0x8051D2B8 + +plugProjectNishimuraU/DangoMushiMgr.cpp: + .text start:0x802FBCFC end:0x802FC39C + .rodata start:0x8048D2E8 end:0x8048D680 + .data start:0x804D5F38 end:0x804D6028 + .sdata start:0x80514AC8 end:0x80514AD0 + .sdata2 start:0x8051D2B8 end:0x8051D2E8 + +plugProjectNishimuraU/DangoMushi.cpp: + .text start:0x802FC39C end:0x802FF7AC + .rodata start:0x8048D680 end:0x8048D6B0 + .data start:0x804D6028 end:0x804D6480 + .sdata2 start:0x8051D2E8 end:0x8051D400 + +plugProjectNishimuraU/GreenKabutoMgr.cpp: + .text start:0x802FF7AC end:0x802FFBA8 + .rodata start:0x8048D6B0 end:0x8048D730 + .data start:0x804D6480 end:0x804D6570 + .sdata start:0x80514AD0 end:0x80514AD8 + +plugProjectNishimuraU/GreenKabuto.cpp: + .text start:0x802FFBA8 end:0x802FFDE4 + .data start:0x804D6570 end:0x804D68C0 + +plugProjectNishimuraU/RedKabutoMgr.cpp: + .text start:0x802FFDE4 end:0x80300138 + .rodata start:0x8048D730 end:0x8048D798 + .data start:0x804D68C0 end:0x804D69A8 + .sdata start:0x80514AD8 end:0x80514AE0 + +plugProjectNishimuraU/RedKabuto.cpp: + .text start:0x80300138 end:0x80300374 + .data start:0x804D69A8 end:0x804D6CF8 + +plugProjectNishimuraU/FixKabutoMgr.cpp: + .text start:0x80300374 end:0x803006CC + .rodata start:0x8048D798 end:0x8048D800 + .data start:0x804D6CF8 end:0x804D6DE0 + .sdata start:0x80514AE0 end:0x80514AE8 + +plugProjectNishimuraU/FixKabuto.cpp: + .text start:0x803006CC end:0x80300E48 + .data start:0x804D6DE0 end:0x804D71C8 + +plugProjectNishimuraU/RandCapEnemyUnit.cpp: + .text start:0x80300E48 end:0x803011D8 + .sdata2 start:0x8051D400 end:0x8051D418 + +plugProjectNishimuraU/NormMiniHoudaiMgr.cpp: + .text start:0x803011D8 end:0x803015D8 + .rodata start:0x8048D800 end:0x8048DB28 + .data start:0x804D71C8 end:0x804D75E0 + .sdata2 start:0x8051D418 end:0x8051D428 + +plugProjectNishimuraU/NormMiniHoudai.cpp: + .text start:0x803015D8 end:0x80301668 + +plugProjectNishimuraU/FixMiniHoudaiMgr.cpp: + .text start:0x80301668 end:0x8030193C + .rodata start:0x8048DB28 end:0x8048DB48 + .data start:0x804D75E0 end:0x804D79F0 + +plugProjectNishimuraU/FixMiniHoudai.cpp: + .text start:0x8030193C end:0x803019CC + +plugProjectNishimuraU/TyreShadow.cpp: + .text start:0x803019CC end:0x80301E98 + .rodata start:0x8048DB48 end:0x8048DB60 + .data start:0x804D79F0 end:0x804D7A00 + .sdata2 start:0x8051D428 end:0x8051D448 + +plugProjectOgawaU/ogScreen.cpp: + .text start:0x80301E98 end:0x803035EC + .rodata start:0x8048DB60 end:0x8048DCF0 + .data start:0x804D7A00 end:0x804D7A68 + .bss start:0x80513AF0 end:0x80513B3C align:4 common + .sbss start:0x80515D50 end:0x80515D68 + .sdata2 start:0x8051D448 end:0x8051D4A0 + +plugProjectOgawaU/ogDopingScreen.cpp: + .text start:0x803035EC end:0x803041FC + .data start:0x804D7A68 end:0x804D7B38 + .sdata2 start:0x8051D4A0 end:0x8051D4C0 + +plugProjectOgawaU/ogPikminCounter.cpp: + .text start:0x803041FC end:0x80304C90 + .data start:0x804D7B38 end:0x804D7D28 + .sdata2 start:0x8051D4C0 end:0x8051D4D8 + +plugProjectOgawaU/ogAnime.cpp: + .text start:0x80304C90 end:0x80305E28 + .rodata start:0x8048DCF0 end:0x8048DD30 + .data start:0x804D7D28 end:0x804D7D58 + .sdata2 start:0x8051D4D8 end:0x8051D4F0 + +plugProjectOgawaU/ogCounter.cpp: + .text start:0x80305E28 end:0x80306018 + .rodata start:0x8048DD30 end:0x8048DE58 + .data start:0x804D7D58 end:0x804D7DB0 + +plugProjectOgawaU/ogLifeGauge.cpp: + .text start:0x80306018 end:0x80307274 + .ctors start:0x80472FC4 end:0x80472FC8 + .rodata start:0x8048DE58 end:0x8048DE80 + .data start:0x804D7DB0 end:0x804D7E88 + .bss start:0x80513B3C end:0x80513B4C align:4 common + .sdata2 start:0x8051D4F0 end:0x8051D530 + +plugProjectOgawaU/ogSunMeter.cpp: + .text start:0x80307274 end:0x80307800 + .data start:0x804D7E88 end:0x804D7F48 + .sdata2 start:0x8051D530 end:0x8051D568 + +plugProjectOgawaU/ogCatchPiki.cpp: + .text start:0x80307800 end:0x80307B38 + .data start:0x804D7F48 end:0x804D7F68 + .sdata2 start:0x8051D568 end:0x8051D580 + +plugProjectOgawaU/ogContenaCounter.cpp: + .text start:0x80307B38 end:0x80307DAC + .data start:0x804D7F68 end:0x804D8008 + +plugProjectOgawaU/ogMapCounter.cpp: + .text start:0x80307DAC end:0x80308798 + .data start:0x804D8008 end:0x804D80A8 + +plugProjectOgawaU/ogAnimTextScreen.cpp: + .text start:0x80308798 end:0x803095F4 + .rodata start:0x8048DE80 end:0x8048DED0 + .data start:0x804D80A8 end:0x804D80C8 + .sdata2 start:0x8051D580 end:0x8051D5B0 + +plugProjectOgawaU/ogCallBackMessage.cpp: + .text start:0x803095F4 end:0x80309E08 + .data start:0x804D80C8 end:0x804D80E8 + .sdata2 start:0x8051D5B0 end:0x8051D5C0 + +plugProjectOgawaU/ogMenuMgr.cpp: + .text start:0x80309E08 end:0x8030B350 + .sdata2 start:0x8051D5C0 end:0x8051D5D8 + +plugProjectOgawaU/ogCallBackScreen.cpp: + .text start:0x8030B350 end:0x8030B504 + .data start:0x804D80E8 end:0x804D8108 + .sdata2 start:0x8051D5D8 end:0x8051D5E0 + +plugProjectOgawaU/ogCounterRV.cpp: + .text start:0x8030B504 end:0x8030C990 + .ctors start:0x80472FC8 end:0x80472FCC + .data start:0x804D8108 end:0x804D8138 + .bss start:0x80513B4C end:0x80513B58 align:4 common + .sdata2 start:0x8051D5E0 end:0x8051D618 + +plugProjectOgawaU/ogSE.cpp: + .text start:0x8030C990 end:0x8030D298 + .rodata start:0x8048DED0 end:0x8048DF18 + .sbss start:0x80515D68 end:0x80515D70 + +plugProjectOgawaU/ogCounterDay.cpp: + .text start:0x8030D298 end:0x8030D770 + .data start:0x804D8138 end:0x804D8168 + +plugProjectOgawaU/testScene.cpp: + .text start:0x8030D770 end:0x8030D848 + .data start:0x804D8168 end:0x804D8180 + +plugProjectOgawaU/testObj.cpp: + .text start:0x8030D848 end:0x8030D9E0 + .rodata start:0x8048DF18 end:0x8048DF30 + .data start:0x804D8180 end:0x804D81C8 + +plugProjectOgawaU/ogSceneGround.cpp: + .text start:0x8030D9E0 end:0x8030DE98 + .rodata start:0x8048DF30 end:0x8048DFB0 + .data start:0x804D81C8 end:0x804D8218 + .sbss start:0x80515D70 end:0x80515D78 + .sdata2 start:0x8051D618 end:0x8051D630 + +plugProjectOgawaU/ogObjGround.cpp: + .text start:0x8030DE98 end:0x8030E938 + .ctors start:0x80472FCC end:0x80472FD0 + .rodata start:0x8048DFB0 end:0x8048E048 + .data start:0x804D8218 end:0x804D82A0 + .bss start:0x80513B58 end:0x80513B80 align:4 common + .sbss start:0x80515D78 end:0x80515D80 + .sdata2 start:0x8051D630 end:0x8051D678 + +plugProjectOgawaU/ogCopyPane.cpp: + .text start:0x8030E938 end:0x8030EF68 + .sdata2 start:0x8051D678 end:0x8051D680 + +plugProjectOgawaU/ogBloGroup.cpp: + .text start:0x8030EF68 end:0x8030F2FC + .data start:0x804D82A0 end:0x804D82C8 + +plugProjectOgawaU/DispMemberBase.cpp: + .text start:0x8030F2FC end:0x8030F5E0 + +plugProjectOgawaU/ogLib2D.cpp: + .text start:0x8030F5E0 end:0x8030F6D0 + .data start:0x804D82C8 end:0x804D82D8 + .sbss start:0x80515D80 end:0x80515D88 + +plugProjectOgawaU/ogObjSMenuMap.cpp: + .text start:0x8030F6D0 end:0x80312BDC + .ctors start:0x80472FD0 end:0x80472FD4 + .rodata start:0x8048E048 end:0x8048E1A0 + .data start:0x804D82D8 end:0x804D8460 + .bss start:0x80513B80 end:0x80513BD0 align:4 common + .sbss start:0x80515D88 end:0x80515D98 + .sdata2 start:0x8051D680 end:0x8051D768 + +plugProjectOgawaU/ogSceneSMenuMap.cpp: + .text start:0x80312BDC end:0x80312ED8 + .ctors start:0x80472FD4 end:0x80472FD8 + .rodata start:0x8048E1A0 end:0x8048E2D8 + .data start:0x804D8460 end:0x804D8580 + .sbss start:0x80515D98 end:0x80515DA0 + .sdata2 start:0x8051D768 end:0x8051D770 + +plugProjectOgawaU/ogObjSMenuItem.cpp: + .text start:0x80312ED8 end:0x80313F2C + .ctors start:0x80472FD8 end:0x80472FDC + .rodata start:0x8048E2D8 end:0x8048E3F0 + .data start:0x804D8580 end:0x804D86B8 + .bss start:0x80513BD0 end:0x80513BF0 align:4 common + .sdata2 start:0x8051D770 end:0x8051D798 + +plugProjectOgawaU/ogSceneSMenuItem.cpp: + .text start:0x80313F2C end:0x80314094 + .rodata start:0x8048E3F0 end:0x8048E418 + .data start:0x804D86B8 end:0x804D8778 + +plugProjectOgawaU/ogSceneSMenuPause.cpp: + .text start:0x80314094 end:0x80314218 + .ctors start:0x80472FDC end:0x80472FE0 + .rodata start:0x8048E418 end:0x8048E448 + .data start:0x804D8778 end:0x804D8848 + .sbss start:0x80515DA0 end:0x80515DA8 + +plugProjectOgawaU/ogObjSMenuPause.cpp: + .text start:0x80314218 end:0x803161F0 + .ctors start:0x80472FE0 end:0x80472FE4 + .rodata start:0x8048E448 end:0x8048E4F8 + .data start:0x804D8848 end:0x804D88F0 + .bss start:0x80513BF0 end:0x80513C34 align:4 common + .sdata2 start:0x8051D798 end:0x8051D7C0 + +plugProjectOgawaU/ogObjSMenuBase.cpp: + .text start:0x803161F0 end:0x803173FC + .ctors start:0x80472FE4 end:0x80472FE8 + .rodata start:0x8048E4F8 end:0x8048E5A0 + .data start:0x804D88F0 end:0x804D89C8 + .bss start:0x80513C34 end:0x80513C50 align:4 common + .sbss start:0x80515DA8 end:0x80515DB0 + .sdata2 start:0x8051D7C0 end:0x8051D810 + +plugProjectOgawaU/ogObjCourseName.cpp: + .text start:0x803173FC end:0x80317F08 + .ctors start:0x80472FE8 end:0x80472FEC + .rodata start:0x8048E5A0 end:0x8048E618 + .data start:0x804D89C8 end:0x804D8A40 + .bss start:0x80513C50 end:0x80513C60 align:4 common + .sdata2 start:0x8051D810 end:0x8051D838 + +plugProjectOgawaU/ogUtil.cpp: + .text start:0x80317F08 end:0x80318030 + .ctors start:0x80472FEC end:0x80472FF0 + .rodata start:0x8048E618 end:0x8048E630 + .data start:0x804D8A40 end:0x804D8A68 + .sbss start:0x80515DB0 end:0x80515DB8 + .sdata2 start:0x8051D838 end:0x8051D870 + +plugProjectOgawaU/ogSceneCourseName.cpp: + .text start:0x80318030 end:0x80318224 + .rodata start:0x8048E630 end:0x8048E830 + .data start:0x804D8A68 end:0x804D8B28 + .sdata2 start:0x8051D870 end:0x8051D878 + +plugProjectOgawaU/ogObjKantei.cpp: + .text start:0x80318224 end:0x80319BBC + .ctors start:0x80472FF0 end:0x80472FF4 + .rodata start:0x8048E830 end:0x8048E958 + .data start:0x804D8B28 end:0x804D8BF8 + .bss start:0x80513C60 end:0x80513CA0 align:4 common + .sdata2 start:0x8051D878 end:0x8051D8C0 + +plugProjectOgawaU/ogSceneKantei.cpp: + .text start:0x80319BBC end:0x80319CA4 + .rodata start:0x8048E958 end:0x8048E978 + .data start:0x804D8BF8 end:0x804D8C48 + +plugProjectOgawaU/ogObjSpecialItem.cpp: + .text start:0x80319CA4 end:0x8031A280 + .rodata start:0x8048E978 end:0x8048EA18 + .data start:0x804D8C48 end:0x804D8CC0 + .sdata2 start:0x8051D8C0 end:0x8051D8D8 + +plugProjectOgawaU/ogSceneSpecialItem.cpp: + .text start:0x8031A280 end:0x8031A3A8 + .rodata start:0x8048EA18 end:0x8048EA48 + .data start:0x804D8CC0 end:0x804D8D10 + +plugProjectOgawaU/ogObjFloor.cpp: + .text start:0x8031A3A8 end:0x8031BE40 + .ctors start:0x80472FF4 end:0x80472FF8 + .rodata start:0x8048EA48 end:0x8048EB20 + .data start:0x804D8D10 end:0x804D8DB8 + .bss start:0x80513CA0 end:0x80513D1C align:4 common + .sdata2 start:0x8051D8D8 end:0x8051DAF8 + +plugProjectOgawaU/ogSceneFloor.cpp: + .text start:0x8031BE40 end:0x8031BFE8 + .rodata start:0x8048EB20 end:0x8048EBB8 + .data start:0x804D8DB8 end:0x804D8E08 + .sdata2 start:0x8051DAF8 end:0x8051DB00 + +plugProjectOgawaU/ogObjCave.cpp: + .text start:0x8031BFE8 end:0x8031CC70 + .ctors start:0x80472FF8 end:0x80472FFC + .rodata start:0x8048EBB8 end:0x8048EC58 + .data start:0x804D8E08 end:0x804D8E90 + .bss start:0x80513D1C end:0x80513D68 align:4 common + .sbss start:0x80515DB8 end:0x80515DC0 + .sdata2 start:0x8051DB00 end:0x8051DB50 + +plugProjectOgawaU/ogSceneCave.cpp: + .text start:0x8031CC70 end:0x8031CD60 + .rodata start:0x8048EC58 end:0x8048EC78 + .data start:0x804D8E90 end:0x804D8EE0 + +plugProjectOgawaU/ogObjAnaDemo.cpp: + .text start:0x8031CD60 end:0x8031EA38 + .ctors start:0x80472FFC end:0x80473000 + .rodata start:0x8048EC78 end:0x8048ED38 + .data start:0x804D8EE0 end:0x804D93B0 + .bss start:0x80513D68 end:0x80513D78 align:4 common + .sdata2 start:0x8051DB50 end:0x8051DB88 + +plugProjectOgawaU/ogSceneAnaDemo.cpp: + .text start:0x8031EA38 end:0x8031EBC8 + .rodata start:0x8048ED38 end:0x8048ED90 + .data start:0x804D93B0 end:0x804D9400 + +plugProjectOgawaU/ogObjChallenge2P.cpp: + .text start:0x8031EBC8 end:0x8031FCE4 + .ctors start:0x80473000 end:0x80473004 + .rodata start:0x8048ED90 end:0x8048EE28 + .data start:0x804D9400 end:0x804D9480 + .bss start:0x80513D78 end:0x80513E08 align:4 common + .sdata2 start:0x8051DB88 end:0x8051DBC8 + +plugProjectOgawaU/ogSceneChallenge2P.cpp: + .text start:0x8031FCE4 end:0x8031FF24 + .rodata start:0x8048EE28 end:0x8048EE80 + .data start:0x804D9480 end:0x804D94D8 + +plugProjectOgawaU/ogObjContena.cpp: + .text start:0x8031FF24 end:0x80321EE8 + .ctors start:0x80473004 end:0x80473008 + .rodata start:0x8048EE80 end:0x8048EFE0 + .data start:0x804D94D8 end:0x804D9550 + .bss start:0x80513E08 end:0x80513E4C align:4 common + .sbss start:0x80515DC0 end:0x80515DC8 + .sdata2 start:0x8051DBC8 end:0x8051DC48 + +plugProjectOgawaU/ogSceneContena.cpp: + .text start:0x80321EE8 end:0x8032206C + .rodata start:0x8048EFE0 end:0x8048F000 + .data start:0x804D9550 end:0x804D95A0 + +plugProjectOgawaU/ogObjSMenuPauseDoukutu.cpp: + .text start:0x8032206C end:0x80323564 + .ctors start:0x80473008 end:0x8047300C + .rodata start:0x8048F000 end:0x8048F0E0 + .data start:0x804D95A0 end:0x804D9648 + .bss start:0x80513E4C end:0x80513E58 align:4 common + .sdata2 start:0x8051DC48 end:0x8051DC68 + +plugProjectOgawaU/ogSceneSMenuPauseDoukutu.cpp: + .text start:0x80323564 end:0x80323778 + .ctors start:0x8047300C end:0x80473010 + .rodata start:0x8048F0E0 end:0x8048F120 + .data start:0x804D9648 end:0x804D9718 + .sbss start:0x80515DC8 end:0x80515DD0 + +plugProjectOgawaU/ogObjUfo.cpp: + .text start:0x80323778 end:0x803248D4 + .ctors start:0x80473010 end:0x80473014 + .rodata start:0x8048F120 end:0x8048F168 + .data start:0x804D9718 end:0x804D9790 + .bss start:0x80513E58 end:0x80513E80 align:4 common + .sdata2 start:0x8051DC68 end:0x8051DCA8 + +plugProjectOgawaU/ogSceneUfo.cpp: + .text start:0x803248D4 end:0x80324A34 + .rodata start:0x8048F168 end:0x8048F188 + .data start:0x804D9790 end:0x804D97E0 + +plugProjectOgawaU/ogObjSave.cpp: + .text start:0x80324A34 end:0x80324D94 + .rodata start:0x8048F188 end:0x8048F1B8 + .data start:0x804D97E0 end:0x804D9858 + .sdata2 start:0x8051DCA8 end:0x8051DCB0 + +plugProjectOgawaU/ogSceneSave.cpp: + .text start:0x80324D94 end:0x80324F0C + .rodata start:0x8048F1B8 end:0x8048F1C8 + .data start:0x804D9858 end:0x804D98A8 + .sdata2 start:0x8051DCB0 end:0x8051DCB8 + +plugProjectOgawaU/ogObjFinalMsg.cpp: + .text start:0x80324F0C end:0x803258C8 + .rodata start:0x8048F1C8 end:0x8048F1D8 + .data start:0x804D98A8 end:0x804D9920 + .sdata2 start:0x8051DCB8 end:0x8051DCD8 + +plugProjectOgawaU/ogSceneFinalMsg.cpp: + .text start:0x803258C8 end:0x80325A20 + .rodata start:0x8048F1D8 end:0x8048F208 + .data start:0x804D9920 end:0x804D9970 + +plugProjectOgawaU/ogObjVs.cpp: + .text start:0x80325A20 end:0x80327C3C + .ctors start:0x80473014 end:0x80473018 + .rodata start:0x8048F208 end:0x8048F2B0 + .data start:0x804D9970 end:0x804D99F8 + .bss start:0x80513E80 end:0x80513EB4 align:4 common + .sdata2 start:0x8051DCD8 end:0x8051DD68 + +plugProjectOgawaU/ogSceneVs.cpp: + .text start:0x80327C3C end:0x80327D28 + .rodata start:0x8048F2B0 end:0x8048F2C8 + .data start:0x804D99F8 end:0x804D9A48 + +plugProjectOgawaU/ogObjChallenge1P.cpp: + .text start:0x80327D28 end:0x80328C10 + .ctors start:0x80473018 end:0x8047301C + .rodata start:0x8048F2C8 end:0x8048F370 + .data start:0x804D9A48 end:0x804D9AD0 + .bss start:0x80513EB4 end:0x80513F20 align:4 common + .sbss start:0x80515DD0 end:0x80515DD8 + .sdata2 start:0x8051DD68 end:0x8051DDA8 + +plugProjectOgawaU/ogSceneChallenge1P.cpp: + .text start:0x80328C10 end:0x80328DE4 + .rodata start:0x8048F370 end:0x8048F3B0 + .data start:0x804D9AD0 end:0x804D9B28 + +plugProjectOgawaU/ogScaleMgr.cpp: + .text start:0x80328DE4 end:0x80329170 + .sdata2 start:0x8051DDA8 end:0x8051DDD0 + +plugProjectOgawaU/ogObjSMenuPauseVs.cpp: + .text start:0x80329170 end:0x80329CDC + .rodata start:0x8048F3B0 end:0x8048F3C0 + .data start:0x804D9B28 end:0x804D9BE0 + .sdata2 start:0x8051DDD0 end:0x8051DDE8 + +plugProjectOgawaU/ogSceneSMenuPauseVs.cpp: + .text start:0x80329CDC end:0x80329EF8 + .ctors start:0x8047301C end:0x80473020 + .rodata start:0x8048F3C0 end:0x8048F3F0 + .data start:0x804D9BE0 end:0x804D9C40 + .sbss start:0x80515DD8 end:0x80515DE0 + +plugProjectOgawaU/ogFuriko.cpp: + .text start:0x80329EF8 end:0x8032A734 + .rodata start:0x8048F3F0 end:0x8048F418 + .data start:0x804D9C40 end:0x804D9C60 + .sdata2 start:0x8051DDE8 end:0x8051DE08 + +plugProjectOgawaU/ogCounterSlot.cpp: + .text start:0x8032A734 end:0x8032B320 + .rodata start:0x8048F418 end:0x8048F448 + .data start:0x804D9C60 end:0x804D9C90 + .sdata2 start:0x8051DE08 end:0x8051DE48 + +plugProjectOgawaU/ogObjWorldMapInfoWindow0.cpp: + .text start:0x8032B320 end:0x8032BA84 + .rodata start:0x8048F448 end:0x8048F4A8 + .data start:0x804D9C90 end:0x804D9D60 + .sdata2 start:0x8051DE48 end:0x8051DE58 + +plugProjectOgawaU/ogSceneWorldMapInfoWindow0.cpp: + .text start:0x8032BA84 end:0x8032BC28 + .ctors start:0x80473020 end:0x80473024 + .rodata start:0x8048F4A8 end:0x8048F4E8 + .data start:0x804D9D60 end:0x804D9DC0 + .sbss start:0x80515DE0 end:0x80515DE8 + +plugProjectOgawaU/ogObjWorldMapInfoWindow1.cpp: + .text start:0x8032BC28 end:0x8032C1E8 + .rodata start:0x8048F4E8 end:0x8048F510 + .data start:0x804D9DC0 end:0x804D9E90 + .sdata2 start:0x8051DE58 end:0x8051DE68 + +plugProjectOgawaU/ogSceneWorldMapInfoWindow1.cpp: + .text start:0x8032C1E8 end:0x8032C38C + .ctors start:0x80473024 end:0x80473028 + .rodata start:0x8048F510 end:0x8048F550 + .data start:0x804D9E90 end:0x804D9EF0 + .sbss start:0x80515DE8 end:0x80515DF0 + +plugProjectOgawaU/ogTotalPokoScreen.cpp: + .text start:0x8032C38C end:0x8032C880 + .data start:0x804D9EF0 end:0x804D9F98 + .sdata2 start:0x8051DE68 end:0x8051DE80 + +plugProjectOgawaU/ogObjChallengeBase.cpp: + .text start:0x8032C880 end:0x8032CD10 + .ctors start:0x80473028 end:0x8047302C + .data start:0x804D9F98 end:0x804DA020 + .bss start:0x80513F20 end:0x80513F3C align:4 common + .sbss start:0x80515DF0 end:0x80515DF8 + .sdata2 start:0x8051DE80 end:0x8051DE90 + +plugProjectOgawaU/ogSceneChallengeBase.cpp: + .text start:0x8032CD10 end:0x8032CDF8 + .data start:0x804DA020 end:0x804DA078 + .sdata2 start:0x8051DE90 end:0x8051DEA0 + +plugProjectOgawaU/ogCallBackPicture.cpp: + .text start:0x8032CDF8 end:0x8032D664 + .rodata start:0x8048F550 end:0x8048F5B0 + .data start:0x804DA078 end:0x804DA098 + .sdata2 start:0x8051DEA0 end:0x8051DEB8 + +plugProjectOgawaU/ogDrawAfter.cpp: + .text start:0x8032D664 end:0x8032D8C8 + .data start:0x804DA098 end:0x804DA0B8 + +plugProjectOgawaU/ogOtakaraSensor.cpp: + .text start:0x8032D8C8 end:0x8032EA38 + .rodata start:0x8048F5B0 end:0x8048F640 + .data start:0x804DA0B8 end:0x804DA100 + .sdata2 start:0x8051DEB8 end:0x8051DF48 + +plugProjectOgawaU/ogTitleMsg.cpp: + .text start:0x8032EA38 end:0x803302C0 + .data start:0x804DA100 end:0x804DA268 + .sbss start:0x80515DF8 end:0x80515E00 + .sdata2 start:0x8051DF48 end:0x8051DFB0 + .sbss2 start:0x80520DD8 end:0x80520DE0 + +plugProjectOgawaU/ogAngleMgr.cpp: + .text start:0x803302C0 end:0x80330524 + .sdata2 start:0x8051DFB0 end:0x8051DFD0 + +plugProjectOgawaU/ogSceneSMenuCont.cpp: + .text start:0x80330524 end:0x8033068C + .rodata start:0x8048F640 end:0x8048F670 + .data start:0x804DA268 end:0x804DA318 + +plugProjectOgawaU/ogObjSMenuCont.cpp: + .text start:0x8033068C end:0x80330D54 + .ctors start:0x8047302C end:0x80473030 + .rodata start:0x8048F670 end:0x8048F6E8 + .data start:0x804DA318 end:0x804DA3C0 + .sbss start:0x80515E00 end:0x80515E08 + .sdata2 start:0x8051DFD0 end:0x8051DFE0 + +plugProjectHikinoU/PSSeq.cpp: + .text start:0x80330D54 end:0x80333FE4 + .text start:0x80333FE4 end:0x803340A4 + .text start:0x803340A4 end:0x803341EC + .text start:0x803341EC end:0x80334264 + .text start:0x80334264 end:0x8033429C + .text start:0x8033429C end:0x8033429C + .rodata start:0x8048F6E8 end:0x8048F7B8 + .data start:0x804DA3C0 end:0x804DA860 + .sbss start:0x80515E08 end:0x80515E10 + .sdata2 start:0x8051DFE0 end:0x8051E000 + +plugProjectHikinoU/PSGame.cpp: + .text start:0x8033429C end:0x803380E0 + .text start:0x803380E0 end:0x80338220 + .text start:0x80338220 end:0x80338230 + .text start:0x80338230 end:0x80338230 + .text start:0x80338230 end:0x8033826C + .text start:0x8033826C end:0x80338320 + .text start:0x80338320 end:0x803383A0 + .rodata start:0x8048F7B8 end:0x8048FCC8 + .data start:0x804DA860 end:0x804DA9D8 + .bss start:0x80513F3C end:0x80513F5C align:4 common + .sbss start:0x80515E10 end:0x80515E18 + .sdata2 start:0x8051E000 end:0x8051E090 + +plugProjectHikinoU/PSSystemIF.cpp: + .text start:0x803383A0 end:0x80338B4C + .text start:0x80338B4C end:0x80338CE8 + .text start:0x80338CE8 end:0x80338CE8 + .text start:0x80338CE8 end:0x80338DE8 + .ctors start:0x80473030 end:0x80473034 + .rodata start:0x8048FCC8 end:0x8048FD00 + .data start:0x804DA9D8 end:0x804DAA18 + .sdata start:0x80514AE8 end:0x80514AF0 + .sbss start:0x80515E18 end:0x80515E28 + .sdata2 start:0x8051E090 end:0x8051E0A0 + +plugProjectHikinoU/PSAutoBgm.cpp: + .text start:0x80338DE8 end:0x8033C59C + .text start:0x8033C59C end:0x8033D110 + .text start:0x8033D110 end:0x8033D4A0 + .text start:0x8033D4A0 end:0x8033D4A0 + .text start:0x8033D4A0 end:0x8033D4A0 + .text start:0x8033D4A0 end:0x8033D4A4 + .text start:0x8033D4A4 end:0x8033D76C + .text start:0x8033D76C end:0x8033D76C + .rodata start:0x8048FD00 end:0x8048FD90 + .data start:0x804DAA18 end:0x804DACA8 + .sbss start:0x80515E28 end:0x80515E30 + .sdata2 start:0x8051E0A0 end:0x8051E0B8 + +plugProjectHikinoU/PSBnkMgr.cpp: + .text start:0x8033D76C end:0x8033DD14 + .text start:0x8033DD14 end:0x8033E22C + .rodata start:0x8048FD90 end:0x8048FDC0 + .data start:0x804DACA8 end:0x804DACC0 + .sbss start:0x80515E30 end:0x80515E38 + +plugProjectHikinoU/PSTaskBase.cpp: + .text start:0x8033E22C end:0x8033E5E0 + .text start:0x8033E5E0 end:0x8033E6E8 + .rodata start:0x8048FDC0 end:0x8048FDF0 + +plugProjectHikinoU/PSBgmTask.cpp: + .text start:0x8033E6E8 end:0x8033EECC + .text start:0x8033EECC end:0x8033EECC + .rodata start:0x8048FDF0 end:0x8048FEB0 + .data start:0x804DACC0 end:0x804DAD28 + .sbss start:0x80515E38 end:0x80515E40 + .sdata2 start:0x8051E0B8 end:0x8051E0C8 + +plugProjectHikinoU/PSCreatureMgr.cpp: + .text start:0x8033EECC end:0x8033EED0 + +plugProjectHikinoU/PSAutoBgm_MeloArranger.cpp: + .text start:0x8033EED0 end:0x8033F044 + .text start:0x8033F044 end:0x8033F17C + .text start:0x8033F17C end:0x8033F18C + .rodata start:0x8048FEB0 end:0x8048FED8 + .data start:0x804DAD28 end:0x804DAD80 + +plugProjectHikinoU/PSSe.cpp: + .text start:0x8033F18C end:0x803407A4 + .text start:0x803407A4 end:0x803407F4 + .text start:0x803407F4 end:0x803407F8 + .text start:0x803407F8 end:0x8034086C + .text start:0x8034086C end:0x8034086C + .rodata start:0x8048FED8 end:0x8048FFA0 + .data start:0x804DAD80 end:0x804DAE00 + .sdata start:0x80514AF0 end:0x80514B08 + .sdata2 start:0x8051E0C8 end:0x8051E100 + +plugProjectHikinoU/PSSeBase.cpp: + .text start:0x8034086C end:0x803414B0 + .text start:0x803414B0 end:0x803414B0 + .rodata start:0x8048FFA0 end:0x8048FFC0 + .data start:0x804DAE00 end:0x804DAE40 + .sdata2 start:0x8051E100 end:0x8051E118 + +plugProjectHikinoU/PSScene.cpp: + .text start:0x803414B0 end:0x8034227C + .text start:0x8034227C end:0x8034227C + .text start:0x8034227C end:0x8034228C + .text start:0x8034228C end:0x803422DC + .rodata start:0x8048FFC0 end:0x8048FFF8 + .data start:0x804DAE40 end:0x804DAE80 + .sbss start:0x80515E40 end:0x80515E48 + +plugProjectHikinoU/PSBgmTrack.cpp: + .text start:0x803422DC end:0x80342E80 + .text start:0x80342E80 end:0x80342E80 + .text start:0x80342E80 end:0x80342EE8 + .rodata start:0x8048FFF8 end:0x80490020 + .data start:0x804DAE80 end:0x804DAEE0 + .sdata2 start:0x8051E118 end:0x8051E130 + +plugProjectHikinoU/PSDirector.cpp: + .text start:0x80342EE8 end:0x80343EFC + .text start:0x80343EFC end:0x803440BC + .rodata start:0x80490020 end:0x80490088 + .data start:0x804DAEE0 end:0x804DAFB8 + .sbss start:0x80515E48 end:0x80515E50 + .sdata2 start:0x8051E130 end:0x8051E138 + +plugProjectMorimuraU/dayEndCount.cpp: + .text start:0x803440BC end:0x803461AC + .rodata start:0x80490088 end:0x80490120 + .data start:0x804DAFB8 end:0x804DB228 + .sdata start:0x80514B08 end:0x80514B30 + .sbss start:0x80515E50 end:0x80515E58 + .sdata2 start:0x8051E138 end:0x8051E198 + +plugProjectMorimuraU/hurryUp2D.cpp: + .text start:0x803461AC end:0x80347F7C + .ctors start:0x80473034 end:0x80473038 + .rodata start:0x80490120 end:0x80490198 + .data start:0x804DB228 end:0x804DB400 + .sdata start:0x80514B30 end:0x80514B48 + .sbss start:0x80515E58 end:0x80515E60 + .sdata2 start:0x8051E198 end:0x8051E210 + +plugProjectMorimuraU/gameOver2D.cpp: + .text start:0x80347F7C end:0x803491FC + .rodata start:0x80490198 end:0x80490388 + .data start:0x804DB400 end:0x804DB838 + .sdata2 start:0x8051E210 end:0x8051E230 + +plugProjectMorimuraU/testBase.cpp: + .text start:0x803491FC end:0x8034942C + .data start:0x804DB838 end:0x804DB8B8 + .sbss start:0x80515E60 end:0x80515E68 + .sdata2 start:0x8051E230 end:0x8051E240 + +plugProjectMorimuraU/bombState.cpp: + .text start:0x8034942C end:0x80349D98 + .ctors start:0x80473038 end:0x8047303C + .data start:0x804DB8B8 end:0x804DB990 + .sbss start:0x80515E68 end:0x80515E70 + .sdata2 start:0x8051E240 end:0x8051E260 + +plugProjectMorimuraU/bombAnimator.cpp: + .text start:0x80349D98 end:0x80349E0C + .data start:0x804DB990 end:0x804DB9B8 + +plugProjectMorimuraU/bombMgr.cpp: + .text start:0x80349E0C end:0x8034A250 + .rodata start:0x80490388 end:0x804906A8 + .data start:0x804DB9B8 end:0x804DBAA8 + .sdata2 start:0x8051E260 end:0x8051E270 + +plugProjectMorimuraU/bomb.cpp: + .text start:0x8034A250 end:0x8034B3F8 + .data start:0x804DBAA8 end:0x804DBE20 + .sdata2 start:0x8051E270 end:0x8051E2B0 + +plugProjectMorimuraU/eggState.cpp: + .text start:0x8034B3F8 end:0x8034B670 + .data start:0x804DBE20 end:0x804DBEA0 + .sdata2 start:0x8051E2B0 end:0x8051E2C0 + +plugProjectMorimuraU/eggAnimator.cpp: + .text start:0x8034B670 end:0x8034B6E4 + .data start:0x804DBEA0 end:0x804DBEC8 + +plugProjectMorimuraU/eggMgr.cpp: + .text start:0x8034B6E4 end:0x8034BB64 + .rodata start:0x804906A8 end:0x804909D8 + .data start:0x804DBEC8 end:0x804DBFB8 + .sdata2 start:0x8051E2C0 end:0x8051E2C8 + +plugProjectMorimuraU/egg.cpp: + .text start:0x8034BB64 end:0x8034C970 + .data start:0x804DBFB8 end:0x804DC2E8 + .sdata2 start:0x8051E2C8 end:0x8051E310 + +plugProjectMorimuraU/panModokiState.cpp: + .text start:0x8034C970 end:0x8034E980 + .rodata start:0x804909D8 end:0x804909E8 + .data start:0x804DC2E8 end:0x804DC4C0 + .sdata2 start:0x8051E310 end:0x8051E398 + +plugProjectMorimuraU/panModokiAnimator.cpp: + .text start:0x8034E980 end:0x8034E9F4 + .data start:0x804DC4C0 end:0x804DC4E8 + +plugProjectMorimuraU/panModokiMgr.cpp: + .text start:0x8034E9F4 end:0x8034F614 + .rodata start:0x804909E8 end:0x80490D98 + .data start:0x804DC4E8 end:0x804DC9F8 + .sdata2 start:0x8051E398 end:0x8051E3D0 + +plugProjectMorimuraU/panModoki.cpp: + .text start:0x8034F614 end:0x80353D80 + .ctors start:0x8047303C end:0x80473040 + .rodata start:0x80490D98 end:0x80490DB8 + .data start:0x804DC9F8 end:0x804DD0B8 + .sbss start:0x80515E70 end:0x80515E78 + .sdata2 start:0x8051E3D0 end:0x8051E490 + +plugProjectMorimuraU/plantsMgr.cpp: + .text start:0x80353D80 end:0x8035838C + .rodata start:0x80490DB8 end:0x80490F78 + .data start:0x804DD0B8 end:0x804E05D8 + +plugProjectMorimuraU/plantsAnimator.cpp: + .text start:0x8035838C end:0x80358400 + .data start:0x804E05D8 end:0x804E0600 + +plugProjectMorimuraU/plants.cpp: + .text start:0x80358400 end:0x803591F0 + .ctors start:0x80473040 end:0x80473044 + .rodata start:0x80490F78 end:0x80490F90 + .data start:0x804E0600 end:0x804E1940 + .sbss start:0x80515E78 end:0x80515E80 + .sdata2 start:0x8051E490 end:0x8051E4A8 + +plugProjectMorimuraU/kingChappyState.cpp: + .text start:0x803591F0 end:0x8035C2BC + .ctors start:0x80473044 end:0x80473048 + .rodata start:0x80490F90 end:0x80490FD0 + .data start:0x804E1940 end:0x804E1B78 + .sbss start:0x80515E80 end:0x80515E88 + .sdata2 start:0x8051E4A8 end:0x8051E548 + +plugProjectMorimuraU/kingChappyMgr.cpp: + .text start:0x8035C2BC end:0x8035CD1C + .rodata start:0x80490FD0 end:0x80491470 + .data start:0x804E1B78 end:0x804E1C68 + .sdata2 start:0x8051E548 end:0x8051E5A8 + +plugProjectMorimuraU/kingChappy.cpp: + .text start:0x8035CD1C end:0x8036264C + .ctors start:0x80473048 end:0x8047304C + .rodata start:0x80491470 end:0x80491510 + .data start:0x804E1C68 end:0x804E2288 + .sbss start:0x80515E88 end:0x80515E98 + .sdata2 start:0x8051E5A8 end:0x8051E6C0 + +plugProjectMorimuraU/miulinState.cpp: + .text start:0x8036264C end:0x80363F18 + .rodata start:0x80491510 end:0x80491550 + .data start:0x804E2288 end:0x804E23F0 + .sdata2 start:0x8051E6C0 end:0x8051E730 + +plugProjectMorimuraU/miulinAnimator.cpp: + .text start:0x80363F18 end:0x80363F8C + .data start:0x804E23F0 end:0x804E2418 + +plugProjectMorimuraU/miulinMgr.cpp: + .text start:0x80363F8C end:0x80364488 + .rodata start:0x80491550 end:0x804918B8 + .data start:0x804E2418 end:0x804E2508 + .sdata2 start:0x8051E730 end:0x8051E750 + +plugProjectMorimuraU/miulin.cpp: + .text start:0x80364488 end:0x80366028 + .rodata start:0x804918B8 end:0x804918F8 + .data start:0x804E2508 end:0x804E2848 + .sdata2 start:0x8051E750 end:0x8051E7B0 + +plugProjectMorimuraU/jigumoState.cpp: + .text start:0x80366028 end:0x8036888C + .ctors start:0x8047304C end:0x80473050 + .data start:0x804E2848 end:0x804E2A80 + .sbss start:0x80515E98 end:0x80515EA0 + .sdata2 start:0x8051E7B0 end:0x8051E860 + +plugProjectMorimuraU/jigumoAnimator.cpp: + .text start:0x8036888C end:0x80368900 + .data start:0x804E2A80 end:0x804E2AA8 + +plugProjectMorimuraU/jigumoMgr.cpp: + .text start:0x80368900 end:0x80368ED4 + .rodata start:0x804918F8 end:0x80491C38 + .data start:0x804E2AA8 end:0x804E2B98 + .sdata2 start:0x8051E860 end:0x8051E8A0 + +plugProjectMorimuraU/jigumo.cpp: + .text start:0x80368ED4 end:0x8036C1C8 + .rodata start:0x80491C38 end:0x80491C78 + .data start:0x804E2B98 end:0x804E2EC8 + .sbss start:0x80515EA0 end:0x80515EA8 + .sdata2 start:0x8051E8A0 end:0x8051E930 + +plugProjectMorimuraU/enemyNestMgr.cpp: + .text start:0x8036C1C8 end:0x8036CAC8 + .ctors start:0x80473050 end:0x80473054 + .rodata start:0x80491C78 end:0x80492010 + .data start:0x804E2EC8 end:0x804E2FA8 + .sbss start:0x80515EA8 end:0x80515EB0 + +plugProjectMorimuraU/enemyNest.cpp: + .text start:0x8036CAC8 end:0x8036CD24 + .data start:0x804E2FA8 end:0x804E32D0 + .sdata2 start:0x8051E930 end:0x8051E940 + +plugProjectMorimuraU/tamagoMushiState.cpp: + .text start:0x8036CD24 end:0x8036D948 + .data start:0x804E32D0 end:0x804E33F0 + .sdata2 start:0x8051E940 end:0x8051E990 + +plugProjectMorimuraU/tamagoMushiAnimator.cpp: + .text start:0x8036D948 end:0x8036D9BC + .data start:0x804E33F0 end:0x804E3418 + +plugProjectMorimuraU/tamagoMushiMgr.cpp: + .text start:0x8036D9BC end:0x8036EBDC + .rodata start:0x80492010 end:0x80492388 + .data start:0x804E3418 end:0x804E3528 + .sdata2 start:0x8051E990 end:0x8051E9F0 + +plugProjectMorimuraU/tamagoMushi.cpp: + .text start:0x8036EBDC end:0x80370C3C + .rodata start:0x80492388 end:0x804923C0 + .data start:0x804E3528 end:0x804E3868 + .sdata2 start:0x8051E9F0 end:0x8051EA60 + +plugProjectMorimuraU/zukan2D.cpp: + .text start:0x80370C3C end:0x8037C9E0 + .ctors start:0x80473054 end:0x80473058 + .rodata start:0x804923C0 end:0x80493180 + .data start:0x804E3868 end:0x804E4080 + .bss start:0x80513F5C end:0x80513F70 align:4 common + .sdata start:0x80514B48 end:0x80514B70 + .sbss start:0x80515EB0 end:0x80515EF8 + .sdata2 start:0x8051EA60 end:0x8051EB58 + +plugProjectMorimuraU/hiScore2D.cpp: + .text start:0x8037C9E0 end:0x80380A60 + .ctors start:0x80473058 end:0x8047305C + .rodata start:0x80493180 end:0x80493540 + .data start:0x804E4080 end:0x804E42C0 + .bss start:0x80513F70 end:0x80513F84 align:4 common + .sdata start:0x80514B70 end:0x80514B80 + .sbss start:0x80515EF8 end:0x80515F00 + .sdata2 start:0x8051EB58 end:0x8051EC08 + +plugProjectMorimuraU/umiMushiState.cpp: + .text start:0x80380A60 end:0x803826FC + .ctors start:0x8047305C end:0x80473060 + .rodata start:0x80493540 end:0x80493578 + .data start:0x804E42C0 end:0x804E4480 + .sbss start:0x80515F00 end:0x80515F08 + .sdata2 start:0x8051EC08 end:0x8051EC80 + +plugProjectMorimuraU/umiMushiAnimator.cpp: + .text start:0x803826FC end:0x80382770 + .data start:0x804E4480 end:0x804E44A8 + +plugProjectMorimuraU/umiMushiMgr.cpp: + .text start:0x80382770 end:0x80383134 + .rodata start:0x80493578 end:0x80493988 + .data start:0x804E44A8 end:0x804E4598 + .sdata2 start:0x8051EC80 end:0x8051ECD0 + +plugProjectMorimuraU/umiMushi.cpp: + .text start:0x80383134 end:0x8038774C + .rodata start:0x80493988 end:0x80493AA8 + .data start:0x804E4598 end:0x804E49E8 + .sbss start:0x80515F08 end:0x80515F10 + .sdata2 start:0x8051ECD0 end:0x8051ED50 + +plugProjectMorimuraU/shijimiChouState.cpp: + .text start:0x8038774C end:0x80388480 + .data start:0x804E49E8 end:0x804E4B08 + .sdata2 start:0x8051ED50 end:0x8051EDB8 + +plugProjectMorimuraU/shijimiChouAnimator.cpp: + .text start:0x80388480 end:0x803884F4 + .data start:0x804E4B08 end:0x804E4B30 + +plugProjectMorimuraU/shijimiChouMgr.cpp: + .text start:0x803884F4 end:0x80389668 + .rodata start:0x80493AA8 end:0x80493E20 + .data start:0x804E4B30 end:0x804E4C20 + .sdata2 start:0x8051EDB8 end:0x8051EE38 + +plugProjectMorimuraU/shijimiChou.cpp: + .text start:0x80389668 end:0x8038C4BC + .ctors start:0x80473060 end:0x80473064 + .rodata start:0x80493E20 end:0x80493E60 + .data start:0x804E4C20 end:0x804E4F70 + .sbss start:0x80515F10 end:0x80515F38 + .sdata2 start:0x8051EE38 end:0x8051EEC8 + +plugProjectMorimuraU/challengeSelect2D.cpp: + .text start:0x8038C4BC end:0x803933AC + .ctors start:0x80473064 end:0x80473068 + .rodata start:0x80493E60 end:0x804945C0 + .data start:0x804E4F70 end:0x804E50E8 + .sdata start:0x80514B80 end:0x80514BB0 + .sbss start:0x80515F38 end:0x80515F58 + .sdata2 start:0x8051EEC8 end:0x8051EFC0 + +plugProjectMorimuraU/challengeResult2D.cpp: + .text start:0x803933AC end:0x80399890 + .rodata start:0x804945C0 end:0x804949B8 + .data start:0x804E50E8 end:0x804E5268 + .sdata start:0x80514BB0 end:0x80514BD8 + .sbss start:0x80515F58 end:0x80515F70 + .sdata2 start:0x8051EFC0 end:0x8051F0B0 + +plugProjectMorimuraU/vsSelect2D.cpp: + .text start:0x80399890 end:0x803A1090 + .ctors start:0x80473068 end:0x8047306C + .rodata start:0x804949B8 end:0x80495098 + .data start:0x804E5268 end:0x804E5630 + .bss start:0x80513F84 end:0x80513F98 align:4 common + .sdata start:0x80514BD8 end:0x80514C08 + .sbss start:0x80515F70 end:0x80515F88 + .sdata2 start:0x8051F0B0 end:0x8051F200 + +plugProjectMorimuraU/mrUtil.cpp: + .text start:0x803A1090 end:0x803A21B8 + .rodata start:0x80495098 end:0x804950B0 + .data start:0x804E5630 end:0x804E5800 + .sdata2 start:0x8051F200 end:0x8051F238 + +plugProjectMorimuraU/scrollList.cpp: + .text start:0x803A21B8 end:0x803A36A8 + .rodata start:0x804950B0 end:0x804950D0 + .data start:0x804E5800 end:0x804E58C0 + .sdata start:0x80514C08 end:0x80514C10 + .sbss start:0x80515F88 end:0x80515F90 + .sdata2 start:0x8051F238 end:0x8051F298 + +plugProjectMorimuraU/mrWindow.cpp: + .text start:0x803A36A8 end:0x803A3B54 + .data start:0x804E58C0 end:0x804E5990 + .sdata2 start:0x8051F298 end:0x8051F2B0 + +plugProjectMorimuraU/blackManState.cpp: + .text start:0x803A3B54 end:0x803A53B8 + .ctors start:0x8047306C end:0x80473070 + .rodata start:0x804950D0 end:0x804950F8 + .data start:0x804E5990 end:0x804E5B28 + .sbss start:0x80515F90 end:0x80515F98 + .sdata2 start:0x8051F2B0 end:0x8051F328 + +plugProjectMorimuraU/blackManAnimator.cpp: + .text start:0x803A53B8 end:0x803A542C + .data start:0x804E5B28 end:0x804E5B50 + +plugProjectMorimuraU/blackManMgr.cpp: + .text start:0x803A542C end:0x803A5E14 + .rodata start:0x804950F8 end:0x80495510 + .data start:0x804E5B50 end:0x804E5C40 + .sdata2 start:0x8051F328 end:0x8051F378 + +plugProjectMorimuraU/blackMan.cpp: + .text start:0x803A5E14 end:0x803AB8C8 + .ctors start:0x80473070 end:0x80473074 + .rodata start:0x80495510 end:0x80495670 + .data start:0x804E5C40 end:0x804E6118 + .sbss start:0x80515F98 end:0x80515FA8 + .sdata2 start:0x8051F378 end:0x8051F4A8 + +plugProjectMorimuraU/tyreState.cpp: + .text start:0x803AB8C8 end:0x803ABE50 + .data start:0x804E6118 end:0x804E61F0 + .sdata2 start:0x8051F4A8 end:0x8051F4D8 + +plugProjectMorimuraU/tyreAnimator.cpp: + .text start:0x803ABE50 end:0x803ABEC4 + .data start:0x804E61F0 end:0x804E6218 + +plugProjectMorimuraU/tyreMgr.cpp: + .text start:0x803ABEC4 end:0x803AC354 + .rodata start:0x80495670 end:0x804956C0 + .data start:0x804E6218 end:0x804E6308 + .sdata2 start:0x8051F4D8 end:0x8051F4F8 + +plugProjectMorimuraU/tyre.cpp: + .text start:0x803AC354 end:0x803AE914 + .ctors start:0x80473074 end:0x80473078 + .rodata start:0x804956C0 end:0x80495720 + .data start:0x804E6308 end:0x804E66B8 + .sbss start:0x80515FA8 end:0x80515FB8 + .sdata2 start:0x8051F4F8 end:0x8051F550 + +plugProjectEbisawaU/efxBase.cpp: + .text start:0x803AE914 end:0x803B2DE8 + .ctors start:0x80473078 end:0x8047307C + .rodata start:0x80495720 end:0x80495738 + .data start:0x804E66B8 end:0x804E6AA8 + .bss start:0x804F7B50 end:0x804F7B60 + .sbss start:0x80515FB8 end:0x80515FC0 + .sdata2 start:0x8051F550 end:0x8051F560 + +plugProjectEbisawaU/efxEnemy.cpp: + .text start:0x803B2DE8 end:0x803B5820 + .rodata start:0x80495738 end:0x80495828 + .data start:0x804E6AA8 end:0x804E6F98 + .sdata2 start:0x8051F560 end:0x8051F590 + +plugProjectEbisawaU/efxObject.cpp: + .text start:0x803B5820 end:0x803B6714 + .rodata start:0x80495828 end:0x804958C8 + .data start:0x804E6F98 end:0x804E70E0 + .sdata2 start:0x8051F590 end:0x8051F5B0 + +plugProjectEbisawaU/efxPikmin.cpp: + .text start:0x803B6714 end:0x803B90C8 + .rodata start:0x804958C8 end:0x80495910 + .data start:0x804E70E0 end:0x804E72A8 + .sdata2 start:0x8051F5B0 end:0x8051F600 + +plugProjectEbisawaU/particle2dMgr.cpp: + .text start:0x803B90C8 end:0x803B9894 + .ctors start:0x8047307C end:0x80473080 + .rodata start:0x80495910 end:0x804959E8 + .data start:0x804E72A8 end:0x804E72D0 + .sbss start:0x80515FC0 end:0x80515FD0 + .sdata2 start:0x8051F600 end:0x8051F618 + +plugProjectEbisawaU/efx2dBase.cpp: + .text start:0x803B9894 end:0x803BA1F0 + .rodata start:0x804959E8 end:0x80495A08 + .data start:0x804E72D0 end:0x804E73E0 + .sdata2 start:0x8051F618 end:0x8051F620 + +plugProjectEbisawaU/efx2dEffect.cpp: + .text start:0x803BA1F0 end:0x803BAFD4 + .rodata start:0x80495A08 end:0x80495A68 + .data start:0x804E73E0 end:0x804E75C8 + .sdata2 start:0x8051F620 end:0x8051F630 + +plugProjectEbisawaU/particleMgr.cpp: + .text start:0x803BAFD4 end:0x803BCD7C + .ctors start:0x80473080 end:0x80473084 + .rodata start:0x80495A68 end:0x80495AF8 + .data start:0x804E75C8 end:0x804E7768 + .sdata start:0x80514C10 end:0x80514C20 + .sbss start:0x80515FD0 end:0x80515FE0 + .sdata2 start:0x8051F630 end:0x8051F638 + +plugProjectEbisawaU/ebiP2Title.cpp: + .text start:0x803BCD7C end:0x803C0B5C + .ctors start:0x80473084 end:0x80473088 + .rodata start:0x80495AF8 end:0x80496078 + .data start:0x804E7768 end:0x804E78F8 + .sbss start:0x80515FE0 end:0x80515FF8 + .sdata2 start:0x8051F638 end:0x8051F778 + +plugProjectEbisawaU/ebiP2TitleUnit.cpp: + .text start:0x803C0B5C end:0x803C1AA0 + .ctors start:0x80473088 end:0x8047308C + .rodata start:0x80496078 end:0x80496110 + .data start:0x804E78F8 end:0x804E7908 + .sbss start:0x80515FF8 end:0x80516000 + .sdata2 start:0x8051F778 end:0x8051F7C0 + +plugProjectEbisawaU/ebiUtility.cpp: + .text start:0x803C1AA0 end:0x803C1F20 + .sdata2 start:0x8051F7C0 end:0x8051F7D0 + +plugProjectEbisawaU/ebiP2TitleCamera.cpp: + .text start:0x803C1F20 end:0x803C1FBC + .ctors start:0x8047308C end:0x80473090 + .data start:0x804E7908 end:0x804E7918 + .sbss start:0x80516000 end:0x80516008 + .sdata2 start:0x8051F7D0 end:0x8051F7E0 + +plugProjectEbisawaU/ebiP2TitleLight.cpp: + .text start:0x803C1FBC end:0x803C22A8 + .ctors start:0x80473090 end:0x80473094 + .data start:0x804E7918 end:0x804E7948 + .sbss start:0x80516008 end:0x80516010 + .sdata2 start:0x8051F7E0 end:0x8051F7E8 + +plugProjectEbisawaU/ebiScreenMemoryCard.cpp: + .text start:0x803C22A8 end:0x803C4E70 + .rodata start:0x80496110 end:0x80496218 + .data start:0x804E7948 end:0x804E7A08 + .sdata2 start:0x8051F7E8 end:0x8051F810 + +plugProjectEbisawaU/efxTPkEffectMgr.cpp: + .text start:0x803C4E70 end:0x803C7898 + .rodata start:0x80496218 end:0x80496268 + .data start:0x804E7A08 end:0x804E7A90 + .sbss start:0x80516010 end:0x80516018 + +plugProjectEbisawaU/efxEnemyGeneral.cpp: + .text start:0x803C7898 end:0x803C9D74 + .rodata start:0x80496268 end:0x804962A8 + .data start:0x804E7A90 end:0x804E8690 + .sdata2 start:0x8051F810 end:0x8051F918 + +plugProjectEbisawaU/ebi3DGraph.cpp: + .text start:0x803C9D74 end:0x803CA058 + .rodata start:0x804962A8 end:0x804962C8 + .sdata2 start:0x8051F918 end:0x8051F930 + +plugProjectEbisawaU/ebiGeometry.cpp: + .text start:0x803CA058 end:0x803CA3BC + .sdata2 start:0x8051F930 end:0x8051F938 + +plugProjectEbisawaU/ebi2DGraph.cpp: + .text start:0x803CA3BC end:0x803CAE2C + .rodata start:0x804962C8 end:0x804962E8 + .sdata2 start:0x8051F938 end:0x8051F940 + +plugProjectEbisawaU/ebiScreenOption.cpp: + .text start:0x803CAE2C end:0x803CD754 + .rodata start:0x804962E8 end:0x804963C0 + .data start:0x804E8690 end:0x804E8718 + .sdata2 start:0x8051F940 end:0x8051F998 + +plugProjectEbisawaU/ebiScreenProgre.cpp: + .text start:0x803CD754 end:0x803CE974 + .rodata start:0x804963C0 end:0x80496440 + .data start:0x804E8718 end:0x804E8728 + .sdata2 start:0x8051F998 end:0x8051F9B8 + +plugProjectEbisawaU/ebiOptionMgr.cpp: + .text start:0x803CE974 end:0x803D0708 + .rodata start:0x80496440 end:0x80496518 + .data start:0x804E8728 end:0x804E8928 + .sdata2 start:0x8051F9B8 end:0x8051F9D8 + +plugProjectEbisawaU/ebi2DCallBack.cpp: + .text start:0x803D0708 end:0x803D1180 + .rodata start:0x80496518 end:0x80496538 + .data start:0x804E8928 end:0x804E89E0 + .sdata2 start:0x8051F9D8 end:0x8051FA00 + +plugProjectEbisawaU/ebiCardMgr.cpp: + .text start:0x803D1180 end:0x803D38CC + .rodata start:0x80496538 end:0x80496798 + .data start:0x804E89E0 end:0x804E8BD0 + .sdata2 start:0x8051FA00 end:0x8051FA20 + +plugProjectEbisawaU/ebiScreenFramework.cpp: + .text start:0x803D38CC end:0x803D3B8C + .rodata start:0x80496798 end:0x804967A8 + .data start:0x804E8BD0 end:0x804E8C20 + +plugProjectEbisawaU/ebiScreenPushStart.cpp: + .text start:0x803D3B8C end:0x803D42C0 + .rodata start:0x804967A8 end:0x80496988 + .data start:0x804E8C20 end:0x804E8C70 + .sdata2 start:0x8051FA20 end:0x8051FA58 + +plugProjectEbisawaU/ebiScreenFileSelect.cpp: + .text start:0x803D42C0 end:0x803D97A0 + .text start:0x803D97A0 end:0x803D97A0 + .text start:0x803D97A0 end:0x803D98A0 + .text start:0x803D98A0 end:0x803D9AE0 + .text start:0x803D9AE0 end:0x803D9C78 + .text start:0x803D9C78 end:0x803D9C78 + .text start:0x803D9C78 end:0x803D9C78 + .text start:0x803D9C78 end:0x803D9C90 + .text start:0x803D9C90 end:0x803D9C90 + .text start:0x803D9C90 end:0x803D9C90 + .text start:0x803D9C90 end:0x803D9D2C + .text start:0x803D9D2C end:0x803D9D2C + .text start:0x803D9D2C end:0x803D9D5C + .rodata start:0x80496988 end:0x80496BD8 + .data start:0x804E8C70 end:0x804E8E70 + .sdata2 start:0x8051FA58 end:0x8051FAA8 + +plugProjectEbisawaU/ebiScreenTitleMenu.cpp: + .text start:0x803D9D5C end:0x803DB20C + .rodata start:0x80496BD8 end:0x80496C70 + .data start:0x804E8E70 end:0x804E8EC0 + .sdata2 start:0x8051FAA8 end:0x8051FAE0 + +plugProjectEbisawaU/ebiSaveMgr.cpp: + .text start:0x803DB20C end:0x803DD124 + .rodata start:0x80496C70 end:0x80496D10 + .data start:0x804E8EC0 end:0x804E91B8 + .sbss start:0x80516018 end:0x80516020 + .sdata2 start:0x8051FAE0 end:0x8051FB08 + +plugProjectEbisawaU/ebiScreenSaveMenu.cpp: + .text start:0x803DD124 end:0x803DE33C + .rodata start:0x80496D10 end:0x80496DB8 + .data start:0x804E91B8 end:0x804E9208 + .sdata2 start:0x8051FB08 end:0x8051FB38 + +plugProjectEbisawaU/ebiScreenFileSelect_Mgr.cpp: + .text start:0x803DE33C end:0x803E051C + .text start:0x803E051C end:0x803E051C + .text start:0x803E051C end:0x803E0530 + .text start:0x803E0530 end:0x803E135C + .text start:0x803E135C end:0x803E135C + .text start:0x803E135C end:0x803E135C + .text start:0x803E135C end:0x803E135C + .text start:0x803E135C end:0x803E135C + .rodata start:0x80496DB8 end:0x80496EB0 + .data start:0x804E9208 end:0x804E95B8 + .sdata2 start:0x8051FB38 end:0x8051FB58 + +plugProjectEbisawaU/ebiFileSelectMgr.cpp: + .text start:0x803E135C end:0x803E259C + .rodata start:0x80496EB0 end:0x80496FB8 + .data start:0x804E95B8 end:0x804E9808 + .sbss start:0x80516020 end:0x80516028 + .sdata2 start:0x8051FB58 end:0x8051FB60 + +plugProjectEbisawaU/ebiCardMgr_Load.cpp: + .text start:0x803E259C end:0x803E39E8 + .rodata start:0x80496FB8 end:0x80496FD8 + .data start:0x804E9808 end:0x804E9D30 + +plugProjectEbisawaU/ebiP2TitleCoordMgr.cpp: + .text start:0x803E39E8 end:0x803E3E64 + .rodata start:0x80496FD8 end:0x80496FF8 + .sdata2 start:0x8051FB60 end:0x8051FBA0 + +plugProjectEbisawaU/ebiP2TitlePikmin.cpp: + .text start:0x803E3E64 end:0x803E6C58 + .text start:0x803E6C58 end:0x803E73AC + .text start:0x803E73AC end:0x803E73AC + .text start:0x803E73AC end:0x803E73D4 + .ctors start:0x80473094 end:0x80473098 + .rodata start:0x80496FF8 end:0x80497340 + .data start:0x804E9D30 end:0x804E9D50 + .sbss start:0x80516028 end:0x80516038 + .sdata2 start:0x8051FBA0 end:0x8051FC40 + +plugProjectEbisawaU/ebiP2TitleKogane.cpp: + .text start:0x803E73D4 end:0x803E82E0 + .text start:0x803E82E0 end:0x803E8628 + .text start:0x803E8628 end:0x803E862C + .text start:0x803E862C end:0x803E862C + .text start:0x803E862C end:0x803E8654 + .ctors start:0x80473098 end:0x8047309C + .rodata start:0x80497340 end:0x804974C8 + .data start:0x804E9D50 end:0x804E9DA0 + .sbss start:0x80516038 end:0x80516040 + .sdata2 start:0x8051FC40 end:0x8051FCA8 + +plugProjectEbisawaU/ebiP2TitleChappy.cpp: + .text start:0x803E8654 end:0x803E98F4 + .text start:0x803E98F4 end:0x803E9CB4 + .text start:0x803E9CB4 end:0x803E9CB4 + .text start:0x803E9CB4 end:0x803E9CB4 + .text start:0x803E9CB4 end:0x803E9CDC + .ctors start:0x8047309C end:0x804730A0 + .rodata start:0x804974C8 end:0x80497690 + .data start:0x804E9DA0 end:0x804E9E08 + .sbss start:0x80516040 end:0x80516048 + .sdata2 start:0x8051FCA8 end:0x8051FD38 + +plugProjectEbisawaU/ebiScreenTMBack.cpp: + .text start:0x803E9CDC end:0x803EA1D4 + .text start:0x803EA1D4 end:0x803EA1D4 + .text start:0x803EA1D4 end:0x803EA1EC + .text start:0x803EA1EC end:0x803EA1EC + .rodata start:0x80497690 end:0x80497720 + .data start:0x804E9E08 end:0x804E9EA0 + .sdata2 start:0x8051FD38 end:0x8051FD50 + +plugProjectEbisawaU/ebiMainTitleMgr.cpp: + .text start:0x803EA1EC end:0x803EB170 + .text start:0x803EB170 end:0x803EB170 + .text start:0x803EB170 end:0x803EB1E0 + .text start:0x803EB1E0 end:0x803EB1E4 + .text start:0x803EB1E4 end:0x803EB1F8 + .text start:0x803EB1F8 end:0x803EB1F8 + .text start:0x803EB1F8 end:0x803EB220 + .ctors start:0x804730A0 end:0x804730A4 + .rodata start:0x80497720 end:0x804977B0 + .data start:0x804E9EA0 end:0x804E9EE8 + .sbss start:0x80516048 end:0x80516050 + .sdata2 start:0x8051FD50 end:0x8051FD70 + +plugProjectEbisawaU/ebiP2TitleFog.cpp: + .text start:0x803EB220 end:0x803EB3DC + .ctors start:0x804730A4 end:0x804730A8 + .data start:0x804E9EE8 end:0x804E9EF8 + .sbss start:0x80516050 end:0x80516058 + .sdata2 start:0x8051FD70 end:0x8051FD78 + +plugProjectEbisawaU/efxEnemyBoss.cpp: + .text start:0x803EB3DC end:0x803ECB10 + .text start:0x803ECB10 end:0x803ECBBC + .text start:0x803ECBBC end:0x803ECBBC + .text start:0x803ECBBC end:0x803ECBBC + .rodata start:0x804977B0 end:0x80497818 + .data start:0x804E9EF8 end:0x804EA0C8 + .sdata2 start:0x8051FD78 end:0x8051FD98 + +plugProjectEbisawaU/ebiCardEReader.cpp: + .text start:0x803ECBBC end:0x803ED324 + .rodata start:0x80497818 end:0x804978B8 + .data start:0x804EA0C8 end:0x804EA0D8 + .sdata start:0x80514C20 end:0x80514C28 + .sbss start:0x80516058 end:0x80516060 + .sdata2 start:0x8051FD98 end:0x8051FDA0 + +plugProjectEbisawaU/ebiScreenOmake.cpp: + .text start:0x803ED324 end:0x803EEBA0 + .text start:0x803EEBA0 end:0x803EEBA0 + .text start:0x803EEBA0 end:0x803EEC5C + .text start:0x803EEC5C end:0x803EEC5C + .text start:0x803EEC5C end:0x803EEC5C + .text start:0x803EEC5C end:0x803EEC64 + .text start:0x803EEC64 end:0x803EEC64 + .text start:0x803EEC64 end:0x803EEC64 + .rodata start:0x804978B8 end:0x80497940 + .data start:0x804EA0D8 end:0x804EA140 + .sdata2 start:0x8051FDA0 end:0x8051FDE0 + +plugProjectEbisawaU/ebiOmakeMgr.cpp: + .text start:0x803EEC64 end:0x803EF970 + .text start:0x803EF970 end:0x803EF970 + .text start:0x803EF970 end:0x803EF978 + .text start:0x803EF978 end:0x803F0314 + .text start:0x803F0314 end:0x803F0314 + .text start:0x803F0314 end:0x803F0314 + .text start:0x803F0314 end:0x803F0320 + .text start:0x803F0320 end:0x803F0320 + .rodata start:0x80497940 end:0x804979E0 + .data start:0x804EA140 end:0x804EA240 + .sdata2 start:0x8051FDE0 end:0x8051FDF0 + +plugProjectEbisawaU/ebiScreenOmakeCardE.cpp: + .text start:0x803F0320 end:0x803F0D64 + .text start:0x803F0D64 end:0x803F0D64 + .text start:0x803F0D64 end:0x803F0D70 + .text start:0x803F0D70 end:0x803F0D70 + .text start:0x803F0D70 end:0x803F0D70 + .text start:0x803F0D70 end:0x803F0D70 + .rodata start:0x804979E0 end:0x80497A88 + .data start:0x804EA240 end:0x804EA290 + .sdata2 start:0x8051FDF0 end:0x8051FE08 + +plugProjectEbisawaU/ebiScreenOmakeGame.cpp: + .text start:0x803F0D70 end:0x803F1AF0 + .text start:0x803F1AF0 end:0x803F1AF0 + .text start:0x803F1AF0 end:0x803F1AF0 + .text start:0x803F1AF0 end:0x803F1AF0 + .text start:0x803F1AF0 end:0x803F1AF0 + .text start:0x803F1AF0 end:0x803F1AFC + .text start:0x803F1AFC end:0x803F1AFC + .text start:0x803F1AFC end:0x803F1AFC + .rodata start:0x80497A88 end:0x80497B10 + .data start:0x804EA290 end:0x804EA2E0 + .sdata2 start:0x8051FE08 end:0x8051FE30 + +plugProjectEbisawaU/ebiScreenInfoWindow.cpp: + .text start:0x803F1AFC end:0x803F1AFC + .text start:0x803F1AFC end:0x803F1AFC + .text start:0x803F1AFC end:0x803F1AFC + .text start:0x803F1AFC end:0x803F1AFC + .text start:0x803F1AFC end:0x803F1B80 + .text start:0x803F1B80 end:0x803F1B80 + .text start:0x803F1B80 end:0x803F1B80 + .text start:0x803F1B80 end:0x803F1B80 + .text start:0x803F1B80 end:0x803F1B80 + .text start:0x803F1B80 end:0x803F1B80 + +plugProjectKonoU/khWorldMap.cpp: + .text start:0x803F1B80 end:0x803F8710 + .ctors start:0x804730A8 end:0x804730AC + .rodata start:0x80497B10 end:0x80498200 + .data start:0x804EA2E0 end:0x804EA4A0 + .bss start:0x80513F98 end:0x80514014 align:4 common + .sdata2 start:0x8051FE30 end:0x8051FEE8 + +plugProjectKonoU/khCaveResult.cpp: + .text start:0x803F8710 end:0x803FBB50 + .ctors start:0x804730AC end:0x804730B0 + .rodata start:0x80498200 end:0x80498360 + .data start:0x804EA4A0 end:0x804EA5A8 + .bss start:0x80514014 end:0x80514050 align:4 common + .sdata2 start:0x8051FEE8 end:0x8051FF78 + .sbss2 start:0x80520DE0 end:0x80520DE8 + +plugProjectKonoU/khSceneLoader.cpp: + .text start:0x803FBB50 end:0x803FBF68 + .rodata start:0x80498360 end:0x804983B0 + .data start:0x804EA5A8 end:0x804EA718 + +plugProjectKonoU/newGame2DMgr.cpp: + .text start:0x803FBF68 end:0x80400254 + .rodata start:0x804983B0 end:0x80498458 + .data start:0x804EA718 end:0x804EA7B8 + .sbss start:0x80516060 end:0x80516068 + .sdata2 start:0x8051FF78 end:0x8051FF88 + +plugProjectKonoU/newScreenMgr.cpp: + .text start:0x80400254 end:0x804012E4 + .rodata start:0x80498458 end:0x80498510 + .data start:0x804EA7B8 end:0x804EAAD8 + .sdata2 start:0x8051FF88 end:0x8051FF98 + +plugProjectKonoU/khReadyGo.cpp: + .text start:0x804012E4 end:0x80401DB4 + .ctors start:0x804730B0 end:0x804730B4 + .rodata start:0x80498510 end:0x804985F8 + .data start:0x804EAAD8 end:0x804EABE0 + .bss start:0x80514050 end:0x80514068 align:4 common + .sbss start:0x80516068 end:0x80516070 + .sdata2 start:0x8051FF98 end:0x8051FFC8 + +plugProjectKonoU/khFinalFloor.cpp: + .text start:0x80401DB4 end:0x804028C8 + .ctors start:0x804730B4 end:0x804730B8 + .rodata start:0x804985F8 end:0x804986D0 + .data start:0x804EABE0 end:0x804EACB8 + .bss start:0x80514068 end:0x80514074 align:4 common + .sbss start:0x80516070 end:0x80516078 + .sdata2 start:0x8051FFC8 end:0x8051FFE8 + +plugProjectKonoU/khDayEndResult.cpp: + .text start:0x804028C8 end:0x8040B470 + .ctors start:0x804730B8 end:0x804730BC + .rodata start:0x804986D0 end:0x80498B50 + .data start:0x804EACB8 end:0x804EB0F8 + .bss start:0x80514074 end:0x805140C8 align:4 common + .sbss start:0x80516078 end:0x80516080 + .sdata2 start:0x8051FFE8 end:0x805200C0 + .sbss2 start:0x80520DE8 end:0x80520DF0 + +plugProjectKonoU/khUtil.cpp: + .text start:0x8040B470 end:0x8040C264 + .rodata start:0x80498B50 end:0x80498B78 + .data start:0x804EB0F8 end:0x804EB140 + .sdata2 start:0x805200C0 end:0x805200D8 + +plugProjectKonoU/khFinalResult.cpp: + .text start:0x8040C264 end:0x8040F25C + .ctors start:0x804730BC end:0x804730C0 + .rodata start:0x80498B78 end:0x80499000 + .data start:0x804EB140 end:0x804EB220 + .bss start:0x805140C8 end:0x805140EC align:4 common + .sdata2 start:0x805200D8 end:0x80520128 + +plugProjectKonoU/khPayDept.cpp: + .text start:0x8040F25C end:0x8040FD64 + .ctors start:0x804730C0 end:0x804730C4 + .rodata start:0x80499000 end:0x804991F8 + .data start:0x804EB220 end:0x804EB328 + .sbss start:0x80516080 end:0x80516088 + .sdata2 start:0x80520128 end:0x80520148 + +plugProjectKonoU/khWinLose.cpp: + .text start:0x8040FD64 end:0x80410790 + .ctors start:0x804730C4 end:0x804730C8 + .rodata start:0x804991F8 end:0x80499390 + .data start:0x804EB328 end:0x804EB3A0 + .bss start:0x805140EC end:0x80514108 align:4 common + .sdata2 start:0x80520148 end:0x80520180 + .sbss2 start:0x80520DF0 end:0x80520DF8 + +plugProjectKonoU/khWinLoseReason.cpp: + .text start:0x80410790 end:0x8041105C + .ctors start:0x804730C8 end:0x804730CC + .rodata start:0x80499390 end:0x80499470 + .data start:0x804EB3A0 end:0x804EB468 + .bss start:0x80514108 end:0x80514124 align:4 common + .sdata2 start:0x80520180 end:0x80520190 + +plugProjectKonoU/khMailSaveData.cpp: + .text start:0x8041105C end:0x80411230 + +sysBootupU/sysBootup.cpp: + .text start:0x80411230 end:0x80411280 + .rodata start:0x80499470 end:0x80499490 + +sysCommonU/node.cpp: + .text start:0x80411280 end:0x804117AC + .rodata start:0x80499490 end:0x804994E8 + .data start:0x804EB468 end:0x804EB490 + .sdata2 start:0x80520190 end:0x805201A8 + +sysCommonU/sysMath.cpp: + .text start:0x804117AC end:0x804132D0 + .ctors start:0x804730CC end:0x804730D0 + .rodata start:0x804994E8 end:0x80499500 + .bss start:0x80514124 end:0x80514130 align:4 common + .sbss start:0x80516088 end:0x80516090 + .sdata2 start:0x805201A8 end:0x80520208 + +sysCommonU/id32.cpp: + .text start:0x804132D0 end:0x804136D4 + .ctors start:0x804730D0 end:0x804730D4 + .bss start:0x80514130 end:0x8051413C align:4 common + .sdata2 start:0x80520208 end:0x80520210 + +sysCommonU/parameters.cpp: + .text start:0x804136D4 end:0x80413E68 + .data start:0x804EB490 end:0x804EB4D0 + .sdata2 start:0x80520210 end:0x80520220 + +sysCommonU/stream.cpp: + .text start:0x80413E68 end:0x80415B20 + .rodata start:0x80499500 end:0x80499648 + .data start:0x804EB4D0 end:0x804EB500 + .sdata2 start:0x80520220 end:0x80520248 + +sysCommonU/geometry.cpp: + .text start:0x80415B20 end:0x8041A0AC + .rodata start:0x80499648 end:0x80499658 + .data start:0x804EB500 end:0x804EB638 + .sbss start:0x80516090 end:0x80516098 + .sdata2 start:0x80520248 end:0x80520290 + +sysCommonU/mapCollision.cpp: + .text start:0x8041A0AC end:0x8041A20C + .data start:0x804EB638 end:0x804EB658 + .sdata2 start:0x80520290 end:0x80520298 + +sysCommonU/camera.cpp: + .text start:0x8041A20C end:0x8041BDA8 + .ctors start:0x804730D4 end:0x804730D8 + .data start:0x804EB658 end:0x804EB830 + .sbss start:0x80516098 end:0x805160A0 + .sdata2 start:0x80520298 end:0x805202E0 + +sysCommonU/tagparams.cpp: + .text start:0x8041BDA8 end:0x8041C224 + .data start:0x804EB830 end:0x804EB860 + .sdata2 start:0x805202E0 end:0x805202E8 + +sysCommonU/sysTemplates.cpp: + .text start:0x8041C224 end:0x8041C4B0 + +sysCommonU/mapCode.cpp: + .text start:0x8041C4B0 end:0x8041CA48 + .rodata start:0x80499658 end:0x80499668 + .data start:0x804EB860 end:0x804EB920 + .sdata2 start:0x805202E8 end:0x805202F0 + +sysCommonU/geomIntersection.cpp: + .text start:0x8041CA48 end:0x8041CF38 + .sdata2 start:0x805202F0 end:0x805202F8 + +sysCommonU/geomOBBTree.cpp: + .text start:0x8041CF38 end:0x80420024 + .data start:0x804EB920 end:0x804EB950 + .sbss start:0x805160A0 end:0x805160A8 + .sdata2 start:0x805202F8 end:0x80520320 + +sysCommonU/geomTraceMove.cpp: + .text start:0x80420024 end:0x804216A4 + .sdata2 start:0x80520320 end:0x80520328 + +sysCommonU/geomCylinder.cpp: + .text start:0x804216A4 end:0x80421B48 + .sdata2 start:0x80520328 end:0x80520338 + +sysCommonU/geomClone.cpp: + .text start:0x80421B48 end:0x80421F40 + .data start:0x804EB950 end:0x804EB980 + .sdata2 start:0x80520338 end:0x80520340 + +sysGCU/system.cpp: + .text start:0x80421F40 end:0x804237EC + .ctors start:0x804730D8 end:0x804730DC + .rodata start:0x80499668 end:0x80499890 + .data start:0x804EB980 end:0x804EBAC0 + .bss start:0x804F7B60 end:0x804F7B78 + .sdata start:0x80514C28 end:0x80514C30 + .sbss start:0x805160A8 end:0x805160B8 + .sdata2 start:0x80520340 end:0x80520380 + +sysGCU/section.cpp: + .text start:0x804237EC end:0x80424314 + .ctors start:0x804730DC end:0x804730E0 + .rodata start:0x80499890 end:0x804998E8 + .data start:0x804EBAC0 end:0x804EBB30 + .sbss start:0x805160B8 end:0x805160C8 + .sdata2 start:0x80520380 end:0x805203A0 + +sysGCU/gameflow.cpp: + .text start:0x80424314 end:0x8042473C + .ctors start:0x804730E0 end:0x804730E4 + .rodata start:0x804998E8 end:0x80499AA0 + .data start:0x804EBB30 end:0x804EBC78 + .sdata start:0x80514C30 end:0x80514C38 + .sbss start:0x805160C8 end:0x805160D0 + .sdata2 start:0x805203A0 end:0x805203E8 + +sysGCU/menuSection.cpp: + .text start:0x8042473C end:0x80424988 + .rodata start:0x80499AA0 end:0x80499AB8 + .data start:0x804EBC78 end:0x804EBCC8 + .sdata2 start:0x805203E8 end:0x805203F0 + +sysGCU/dvdThread.cpp: + .text start:0x80424988 end:0x80424F88 + .rodata start:0x80499AB8 end:0x80499AD8 + .data start:0x804EBCC8 end:0x804EBCD8 + .sdata2 start:0x805203F0 end:0x805203F8 + +sysGCU/appThread.cpp: + .text start:0x80424F88 end:0x80424FC4 + +sysGCU/controller.cpp: + .text start:0x80424FC4 end:0x80425000 + +sysGCU/graphics.cpp: + .text start:0x80425000 end:0x80428100 + .ctors start:0x804730E4 end:0x804730E8 + .rodata start:0x80499AD8 end:0x80499AF8 + .data start:0x804EBCD8 end:0x804EBD08 + .sbss start:0x805160D0 end:0x805160E0 + .sdata2 start:0x805203F8 end:0x80520450 + +sysGCU/matMath.cpp: + .text start:0x80428100 end:0x80428DC0 + .sdata2 start:0x80520450 end:0x80520468 + +sysGCU/sysShape.cpp: + .text start:0x80428DC0 end:0x80429F20 + .ctors start:0x804730E8 end:0x804730EC + .rodata start:0x80499AF8 end:0x80499BC0 + .data start:0x804EBD08 end:0x804EBD50 + .sbss start:0x805160E0 end:0x805160F0 + .sdata2 start:0x80520468 end:0x80520488 + +sysGCU/reset.cpp: + .text start:0x80429F20 end:0x8042A484 + .rodata start:0x80499BC0 end:0x80499C48 + .data start:0x804EBD50 end:0x804EBD60 + .sdata2 start:0x80520488 end:0x805204B0 + +sysGCU/dvdStatus.cpp: + .text start:0x8042A484 end:0x8042A96C + .rodata start:0x80499C48 end:0x80499CB0 + .data start:0x804EBD60 end:0x804EBD80 + .sdata2 start:0x805204B0 end:0x805204C8 + +sysGCU/sysTimers.cpp: + .text start:0x8042A96C end:0x8042AC70 + .rodata start:0x80499CB0 end:0x80499D08 + .data start:0x804EBD80 end:0x804EBDA0 + .sbss start:0x805160F0 end:0x805160F8 + .sdata2 start:0x805204C8 end:0x805204D8 + +sysGCU/modelMgr.cpp: + .text start:0x8042AC70 end:0x8042B134 + .rodata start:0x80499D08 end:0x80499D88 + +sysGCU/heapStatus.cpp: + .text start:0x8042B134 end:0x8042B5DC + .rodata start:0x80499D88 end:0x80499D98 + .data start:0x804EBDA0 end:0x804EBDC8 + .sdata2 start:0x805204D8 end:0x805204E8 + +sysGCU/light.cpp: + .text start:0x8042B5DC end:0x8042BE7C + .ctors start:0x804730EC end:0x804730F0 + .rodata start:0x80499D98 end:0x80499DB0 + .data start:0x804EBDC8 end:0x804EBE18 + .sbss start:0x805160F8 end:0x80516100 + .sdata2 start:0x805204E8 end:0x80520528 + +sysGCU/wipe.cpp: + .text start:0x8042BE7C end:0x8042C870 + .ctors start:0x804730F0 end:0x804730F4 + .data start:0x804EBE18 end:0x804EBEF0 + .sbss start:0x80516100 end:0x80516108 + .sdata2 start:0x80520528 end:0x80520550 + +sysGCU/moviePlayer.cpp: + .text start:0x8042C870 end:0x8042EAD0 + .ctors start:0x804730F4 end:0x804730F8 + .rodata start:0x80499DB0 end:0x80499FF8 + .data start:0x804EBEF0 end:0x804EBF58 + .sbss start:0x80516108 end:0x80516118 + .sdata2 start:0x80520550 end:0x805205B8 + +sysGCU/JSTObjectActor.cpp: + .text start:0x8042EAD0 end:0x8042F854 + .ctors start:0x804730F8 end:0x804730FC + .rodata start:0x80499FF8 end:0x8049A0B0 + .data start:0x804EBF58 end:0x804EC050 + .sbss start:0x80516118 end:0x80516120 + .sdata2 start:0x805205B8 end:0x805205D8 + +sysGCU/JSTObjectCamera.cpp: + .text start:0x8042F854 end:0x8042FF18 + .ctors start:0x804730FC end:0x80473100 + .data start:0x804EC050 end:0x804EC130 + .sbss start:0x80516120 end:0x80516130 + .sdata2 start:0x805205D8 end:0x805205F8 + +sysGCU/JSTObjectGameActor.cpp: + .text start:0x8042FF18 end:0x80430AC4 + .ctors start:0x80473100 end:0x80473104 + .rodata start:0x8049A0B0 end:0x8049A1A0 + .data start:0x804EC130 end:0x804EC208 + .sbss start:0x80516130 end:0x80516138 + .sdata2 start:0x805205F8 end:0x80520608 + +sysGCU/JSTObjectSystem.cpp: + .text start:0x80430AC4 end:0x80431528 + .ctors start:0x80473104 end:0x80473108 + .rodata start:0x8049A1A0 end:0x8049A1D8 + .data start:0x804EC208 end:0x804EC298 + .sbss start:0x80516138 end:0x80516148 + +sysGCU/JSTFindCreature.cpp: + .text start:0x80431528 end:0x804319A0 + .ctors start:0x80473108 end:0x8047310C + .rodata start:0x8049A1D8 end:0x8049A250 + .data start:0x804EC298 end:0x804EC2A8 + .sbss start:0x80516148 end:0x80516150 + .sdata2 start:0x80520608 end:0x80520638 + +sysGCU/movieConfig.cpp: + .text start:0x804319A0 end:0x804322E0 + .ctors start:0x8047310C end:0x80473110 + .rodata start:0x8049A250 end:0x8049A2C8 + .data start:0x804EC2A8 end:0x804EC2E8 + .sbss start:0x80516150 end:0x80516160 + .sdata2 start:0x80520638 end:0x80520650 + +sysGCU/gameConfig.cpp: + .text start:0x804322E0 end:0x80432AB8 + .ctors start:0x80473110 end:0x80473114 + .rodata start:0x8049A2C8 end:0x8049A4B0 + .data start:0x804EC2E8 end:0x804EC2F8 + .bss start:0x804F7B78 end:0x804F7B88 + .bss start:0x8051413C end:0x805143B8 align:4 common + .sdata2 start:0x80520650 end:0x805206A0 + +sysGCU/fogMgr.cpp: + .text start:0x80432AB8 end:0x80432C88 + .ctors start:0x80473114 end:0x80473118 + .rodata start:0x8049A4B0 end:0x8049A4C8 + .data start:0x804EC2F8 end:0x804EC308 + .sbss start:0x80516160 end:0x80516168 + .sdata2 start:0x805206A0 end:0x805206B0 + +sysGCU/aramMgr.cpp: + .text start:0x80432C88 end:0x80433248 + .rodata start:0x8049A4C8 end:0x8049A4E0 + .data start:0x804EC308 end:0x804EC318 + .sbss start:0x80516168 end:0x80516170 + .sdata2 start:0x805206B0 end:0x805206C0 + +sysGCU/resourceMgr.cpp: + .text start:0x80433248 end:0x804340E0 + .rodata start:0x8049A4E0 end:0x8049A520 + .data start:0x804EC318 end:0x804EC3A8 + +sysGCU/resourceMgr2D.cpp: + .text start:0x804340E0 end:0x80434190 + .rodata start:0x8049A520 end:0x8049A540 + .data start:0x804EC3A8 end:0x804EC3B8 + .sbss start:0x80516170 end:0x80516178 + +sysGCU/sysMaterialAnim.cpp: + .text start:0x80434190 end:0x80434C30 + .rodata start:0x8049A540 end:0x8049A560 + .data start:0x804EC3B8 end:0x804EC440 + .sdata2 start:0x805206C0 end:0x805206D0 + +sysGCU/P2DScreen.cpp: + .text start:0x80434C30 end:0x804350CC + .rodata start:0x8049A560 end:0x8049A580 + .data start:0x804EC440 end:0x804EC580 + .sdata2 start:0x805206D0 end:0x805206F8 + +sysGCU/movieMessage.cpp: + .text start:0x804350CC end:0x80437040 + .ctors start:0x80473118 end:0x8047311C + .rodata start:0x8049A580 end:0x8049A6F8 + .data start:0x804EC580 end:0x804EC750 + .sbss start:0x80516178 end:0x80516180 + .sdata2 start:0x805206F8 end:0x805207A0 + +sysGCU/moviePlayerPauseAndDraw.cpp: + .text start:0x80437040 end:0x80437570 + .ctors start:0x8047311C end:0x80473120 + .data start:0x804EC750 end:0x804EC760 + .sbss start:0x80516180 end:0x80516188 + +sysGCU/JSTObjectSpecialActor.cpp: + .text start:0x80437570 end:0x804379B4 + .ctors start:0x80473120 end:0x80473124 + .rodata start:0x8049A6F8 end:0x8049A750 + .data start:0x804EC760 end:0x804EC838 + .sbss start:0x80516188 end:0x80516190 + .sdata2 start:0x805207A0 end:0x805207A8 + +sysGCU/messageSequence.cpp: + .text start:0x804379B4 end:0x8043801C + .rodata start:0x8049A750 end:0x8049A770 + .data start:0x804EC838 end:0x804EC8B0 + .sdata2 start:0x805207A8 end:0x805207D0 + +sysGCU/messageMgr.cpp: + .text start:0x8043801C end:0x80438BA4 + .ctors start:0x80473124 end:0x80473128 + .rodata start:0x8049A770 end:0x8049AA38 + .data start:0x804EC8B0 end:0x804EC930 + .sbss start:0x80516190 end:0x805161A0 + .sdata2 start:0x805207D0 end:0x805207E8 + +sysGCU/messageObj.cpp: + .text start:0x80438BA4 end:0x80439360 + .rodata start:0x8049AA38 end:0x8049AA88 + .data start:0x804EC930 end:0x804EC978 + .sdata2 start:0x805207E8 end:0x805207F8 + +sysGCU/messageRendering.cpp: + .text start:0x80439360 end:0x8043D49C + .rodata start:0x8049AA88 end:0x8049AAC0 + .data start:0x804EC978 end:0x804ECAE0 + .bss start:0x804F7B88 end:0x804F7BB0 + .sdata2 start:0x805207F8 end:0x80520828 + +sysGCU/message.cpp: + .text start:0x8043D49C end:0x8043D60C + +sysGCU/modelEffect.cpp: + .text start:0x8043D60C end:0x8043DC88 + .ctors start:0x80473128 end:0x8047312C + .rodata start:0x8049AAC0 end:0x8049AAE0 + .data start:0x804ECAE0 end:0x804ECB20 + .sbss start:0x805161A0 end:0x805161A8 + +sysGCU/messageReference.cpp: + .text start:0x8043DC88 end:0x8043DD5C + .data start:0x804ECB20 end:0x804ECB30 + .bss start:0x804F7BB0 end:0x804F7CC0 + .sbss start:0x805161A8 end:0x805161B0 + .sdata2 start:0x80520828 end:0x80520838 + +sysGCU/simpleMessage.cpp: + .text start:0x8043DD5C end:0x8043DE4C + +sysGCU/sysShapeAnimation.cpp: + .text start:0x8043DE4C end:0x8043E348 + .ctors start:0x8047312C end:0x80473130 + .rodata start:0x8049AAE0 end:0x8049AB30 + .data start:0x804ECB30 end:0x804ECB40 + .sbss start:0x805161B0 end:0x805161B8 + .sdata2 start:0x80520838 end:0x80520848 + +sysGCU/sysShapeModel.cpp: + .text start:0x8043E348 end:0x8043F2F8 + .ctors start:0x80473130 end:0x80473134 + .rodata start:0x8049AB30 end:0x8049AB48 + .data start:0x804ECB40 end:0x804ECB90 + .sdata start:0x80514C38 end:0x80514C40 + .sbss start:0x805161B8 end:0x805161C8 + .sdata2 start:0x80520848 end:0x80520860 + +sysGCU/windowMessage.cpp: + .text start:0x8043F2F8 end:0x80440760 + .ctors start:0x80473134 end:0x80473138 + .rodata start:0x8049AB48 end:0x8049ABA8 + .data start:0x804ECB90 end:0x804ECD00 + .sbss start:0x805161C8 end:0x805161D0 + .sdata2 start:0x80520860 end:0x805208B8 + +sysGCU/memoryCard.cpp: + .text start:0x80440760 end:0x80442A1C + .rodata start:0x8049ABA8 end:0x8049AC58 + .data start:0x804ECD00 end:0x804ECE98 + .bss start:0x804F7CC0 end:0x80501CC0 + +sysGCU/pikmin2MemoryCardMgr.cpp: + .text start:0x80442A1C end:0x80446DD8 + .rodata start:0x8049AC58 end:0x8049AD60 + .data start:0x804ECE98 end:0x804ECF28 + .sdata start:0x80514C40 end:0x80514C48 + .sdata2 start:0x805208B8 end:0x805208C0 + +sysGCU/commonSaveData.cpp: + .text start:0x80446DD8 end:0x8044752C + .rodata start:0x8049AD60 end:0x8049ADA8 + .sdata2 start:0x805208C0 end:0x805208E0 + +sysGCU/bootSection.cpp: + .text start:0x8044752C end:0x80449EEC + .ctors start:0x80473138 end:0x8047313C + .rodata start:0x8049ADA8 end:0x8049AFA0 + .data start:0x804ECF28 end:0x804ED0E8 + .bss start:0x805143B8 end:0x805143D0 align:4 common + .sdata start:0x80514C48 end:0x80514C50 + .sbss start:0x805161D0 end:0x805161E0 + .sdata2 start:0x805208E0 end:0x805209B0 + +sysGCU/titleSection.cpp: + .text start:0x80449EEC end:0x8044C3D0 + .ctors start:0x8047313C end:0x80473140 + .rodata start:0x8049AFA0 end:0x8049B208 + .data start:0x804ED0E8 end:0x804ED1F8 + .sdata start:0x80514C50 end:0x80514C58 + .sbss start:0x805161E0 end:0x805161E8 + .sdata2 start:0x805209B0 end:0x805209D8 + +sysGCU/loadResource.cpp: + .text start:0x8044C3D0 end:0x8044C97C + .rodata start:0x8049B208 end:0x8049B260 + .data start:0x804ED1F8 end:0x804ED218 + .sbss start:0x805161E8 end:0x805161F0 + .sdata2 start:0x805209D8 end:0x805209E0 + +sysGCU/rootMenuSection.cpp: + .text start:0x8044C97C end:0x8044CA68 + .data start:0x804ED218 end:0x804ED268 + +sysGCU/demoSection.cpp: + .text start:0x8044CA68 end:0x8044D174 + .rodata start:0x8049B260 end:0x8049B310 + .data start:0x804ED268 end:0x804ED300 + .sdata start:0x80514C58 end:0x80514C68 + .sdata2 start:0x805209E0 end:0x80520A00 + +sysGCU/THPAudioDecode.c: + .text start:0x8044D174 end:0x8044D534 + .bss start:0x80501CC0 end:0x80503040 + .sbss start:0x805161F0 end:0x805161F8 + +sysGCU/THPDraw.c: + .text start:0x8044D534 end:0x8044DCE8 + .sdata2 start:0x80520A00 end:0x80520A28 + +sysGCU/THPPlayer.c: + .text start:0x8044DCE8 end:0x8044F43C + .rodata start:0x8049B310 end:0x8049B3B0 + .data start:0x804ED300 end:0x804ED400 + .bss start:0x80503040 end:0x80504260 + .bss start:0x805143D0 end:0x805145A0 align:4 common + .sbss start:0x805161F8 end:0x80516210 + .sdata2 start:0x80520A28 end:0x80520A40 + +sysGCU/THPRead.c: + .text start:0x8044F43C end:0x8044F764 + .bss start:0x80504260 end:0x80505650 + .sbss start:0x80516210 end:0x80516218 + +sysGCU/THPVideoDecode.c: + .text start:0x8044F764 end:0x8044FCA0 + .bss start:0x80505650 end:0x805069C0 + .sbss start:0x80516218 end:0x80516220 + +sysGCU/pikmin2THPPlayer.cpp: + .text start:0x8044FCA0 end:0x80450798 + .rodata start:0x8049B3B0 end:0x8049B748 + .data start:0x804ED400 end:0x804ED448 + .sdata2 start:0x80520A40 end:0x80520A50 + +sysGCU/captionMgr.cpp: + .text start:0x80450798 end:0x80450E70 + .rodata start:0x8049B748 end:0x8049B780 + .data start:0x804ED448 end:0x804ED470 + .sdata2 start:0x80520A50 end:0x80520A60 + +sysGCU/captionMessage.cpp: + .text start:0x80450E70 end:0x80451640 + .rodata start:0x8049B780 end:0x8049B7A0 + .data start:0x804ED470 end:0x804ED5C0 + .sdata2 start:0x80520A60 end:0x80520AA0 + +sysGCU/screenScene.cpp: + .text start:0x80451640 end:0x804521B0 + .rodata start:0x8049B7A0 end:0x8049B7C8 + .data start:0x804ED5C0 end:0x804ED638 + .sdata2 start:0x80520AA0 end:0x80520AB0 + +sysGCU/screenMgr.cpp: + .text start:0x804521B0 end:0x80453998 + .ctors start:0x80473140 end:0x80473144 + .rodata start:0x8049B7C8 end:0x8049B958 + .data start:0x804ED638 end:0x804ED698 + .sbss start:0x80516220 end:0x80516230 + .sdata2 start:0x80520AB0 end:0x80520AB8 + +sysGCU/screenObj.cpp: + .text start:0x80453998 end:0x80454384 + .rodata start:0x8049B958 end:0x8049B978 + .data start:0x804ED698 end:0x804ED710 + .sdata2 start:0x80520AB8 end:0x80520AC8 + +sysGCU/JSTObjectParticleActor.cpp: + .text start:0x80454384 end:0x80454BE0 + .ctors start:0x80473144 end:0x80473148 + .rodata start:0x8049B978 end:0x8049B9A0 + .data start:0x804ED710 end:0x804ED808 + .sbss start:0x80516230 end:0x80516238 + .sdata2 start:0x80520AC8 end:0x80520AF0 + +sysGCU/moviePlayerAudio.cpp: + .text start:0x80454BE0 end:0x80454E38 + .ctors start:0x80473148 end:0x8047314C + .data start:0x804ED808 end:0x804ED828 + .sbss start:0x80516238 end:0x80516240 + +sysGCU/illustratedBookMessage.cpp: + .text start:0x80454E38 end:0x804555B0 + .rodata start:0x8049B9A0 end:0x8049B9D8 + .data start:0x804ED828 end:0x804ED9F0 + .sdata2 start:0x80520AF0 end:0x80520B10 + +sysGCU/sysDrawBuffer.cpp: + .text start:0x804555B0 end:0x80455AE0 + .rodata start:0x8049B9D8 end:0x8049BA08 + .data start:0x804ED9F0 end:0x804EDA10 + +sysGCU/dvdErrorMessage.cpp: + .rodata start:0x8049BA08 end:0x8049C310 + .data start:0x804EDA10 end:0x804EDAA0 + +sysGCU/pikmin2AramMgr.cpp: + .text start:0x80455AE0 end:0x80455F78 + .rodata start:0x8049C310 end:0x8049CC78 + .data start:0x804EDAA0 end:0x804EDBA0 + .sbss start:0x80516240 end:0x80516248 + .sdata2 start:0x80520B10 end:0x80520B18 + +sysGCU/messageAnalyzer.cpp: + .text start:0x80455F78 end:0x80456034 + .data start:0x804EDBA0 end:0x804EDC08 + +utilityU/menu.cpp: + .text start:0x80456034 end:0x804569A8 + .rodata start:0x8049CC78 end:0x8049CC98 + .data start:0x804EDC08 end:0x804EDC90 + .sdata2 start:0x80520B18 end:0x80520B30 + +utilityU/PSMainSide_Director.cpp: + .text start:0x804569A8 end:0x80459460 + .text start:0x80459460 end:0x80459460 + .text start:0x80459460 end:0x80459464 + .text start:0x80459464 end:0x80459464 + .text start:0x80459464 end:0x8045946C + .text start:0x8045946C end:0x80459474 + .text start:0x80459474 end:0x80459474 + .text start:0x80459474 end:0x80459474 + .text start:0x80459474 end:0x80459474 + .text start:0x80459474 end:0x80459A84 + .text start:0x80459A84 end:0x80459A84 + .rodata start:0x8049CC98 end:0x8049CD68 + .data start:0x804EDC90 end:0x804EE098 + .sdata2 start:0x80520B30 end:0x80520B50 + +utilityU/PSMainSide_Factory.cpp: + .text start:0x80459A84 end:0x8045CBD8 + .text start:0x8045CBD8 end:0x8045CBD8 + .text start:0x8045CBD8 end:0x8045CC38 + .text start:0x8045CC38 end:0x8045CC38 + .text start:0x8045CC38 end:0x8045CCEC + .text start:0x8045CCEC end:0x8045CCEC + .text start:0x8045CCEC end:0x8045CCEC + .text start:0x8045CCEC end:0x8045CD14 + .ctors start:0x8047314C end:0x80473150 + .rodata start:0x8049CD68 end:0x8049CEA0 + .data start:0x804EE098 end:0x804EE2B0 + .sbss start:0x80516248 end:0x80516250 + .sdata2 start:0x80520B50 end:0x80520B80 + +utilityU/PSMainSide_ObjSound.cpp: + .text start:0x8045CD14 end:0x80463254 + .text start:0x80463254 end:0x80463254 + .text start:0x80463254 end:0x80463264 + .text start:0x80463264 end:0x80463C40 + .text start:0x80463C40 end:0x80463C40 + .text start:0x80463C40 end:0x80463C40 + .text start:0x80463C40 end:0x80463D38 + .text start:0x80463D38 end:0x80463D38 + .text start:0x80463D38 end:0x80463E98 + .rodata start:0x8049CEA0 end:0x8049CF80 + .data start:0x804EE2B0 end:0x804EF190 + .sbss start:0x80516250 end:0x80516258 + .sdata2 start:0x80520B80 end:0x80520BC0 + +utilityU/PSMainSide_Demo.cpp: + .text start:0x80463E98 end:0x804673CC + .text start:0x804673CC end:0x804674D8 + .text start:0x804674D8 end:0x804674E0 + .rodata start:0x8049CF80 end:0x8049D808 + .data start:0x804EF190 end:0x804EF1A8 + .sdata2 start:0x80520BC0 end:0x80520BC8 + +utilityU/PSMainSide_Scene.cpp: + .text start:0x804674E0 end:0x8046BF00 + .text start:0x8046BF00 end:0x8046BF00 + .text start:0x8046BF00 end:0x8046BF00 + .text start:0x8046BF00 end:0x8046BF00 + .text start:0x8046BF00 end:0x8046BF70 + .text start:0x8046BF70 end:0x8046BF70 + .text start:0x8046BF70 end:0x8046C184 + .text start:0x8046C184 end:0x8046C4A0 + .text start:0x8046C4A0 end:0x8046C568 + .ctors start:0x80473150 end:0x80473154 + .rodata start:0x8049D808 end:0x8049D8A8 + .data start:0x804EF1A8 end:0x804EF618 + .sbss start:0x80516258 end:0x80516260 + .sdata2 start:0x80520BC8 end:0x80520BE8 + +utilityU/PSMainSide_BossMgr.cpp: + .text start:0x8046C568 end:0x8046CFF4 + .text start:0x8046CFF4 end:0x8046CFF4 + .text start:0x8046CFF4 end:0x8046CFF4 + .rodata start:0x8049D8A8 end:0x8049D908 + .data start:0x804EF618 end:0x804EF630 + .sdata2 start:0x80520BE8 end:0x80520C10 + +utilityU/PSMainSide_Se.cpp: + .text start:0x8046CFF4 end:0x8046F0CC + .text start:0x8046F0CC end:0x8046F0CC + .text start:0x8046F0CC end:0x8046F0CC + .text start:0x8046F0CC end:0x8046F0CC + .text start:0x8046F0CC end:0x8046F0CC + .text start:0x8046F0CC end:0x8046F0FC + .text start:0x8046F0FC end:0x8046F16C + .rodata start:0x8049D908 end:0x8049D980 + .data start:0x804EF630 end:0x804EF7C0 + .sdata start:0x80514C68 end:0x80514C90 + .sbss start:0x80516260 end:0x80516270 + .sdata2 start:0x80520C10 end:0x80520C90 + +utilityU/PSMainSide_DirectorMgr.cpp: + .text start:0x8046F16C end:0x80470BF8 + .text start:0x80470BF8 end:0x80470C0C + .text start:0x80470C0C end:0x80470C94 + .text start:0x80470C94 end:0x80470C94 + .text start:0x80470C94 end:0x80470D44 + .text start:0x80470D44 end:0x80470D4C + .text start:0x80470D4C end:0x80470DBC + .rodata start:0x8049D980 end:0x8049DB30 + .data start:0x804EF7C0 end:0x804EF8E8 + .sdata2 start:0x80520C90 end:0x80520CC0 + +utilityU/PSMainSide_Sound.cpp: + .text start:0x80470DBC end:0x80471758 + .text start:0x80471758 end:0x80471758 + .text start:0x80471758 end:0x80471780 + .ctors start:0x80473154 end:0x80473158 + .rodata start:0x8049DB30 end:0x8049DD78 + .data start:0x804EF8E8 end:0x804EF9E8 + .sdata start:0x80514C90 end:0x80514CA8 + .sbss start:0x80516270 end:0x80516280 + .sdata2 start:0x80520CC0 end:0x80520CE0 + +utilityU/PSMainSide_TrackMap.cpp: + .text start:0x80471780 end:0x80472238 + .text start:0x80472238 end:0x80472348 + .text start:0x80472348 end:0x80472350 + .rodata start:0x8049DD78 end:0x8049DFF0 + .data start:0x804EF9E8 end:0x804EFA08 + .sdata2 start:0x80520CE0 end:0x80520CE8 + +utilityU/PSMainSide_CreaturePrm.cpp: + .text start:0x80472350 end:0x80472664 + .text start:0x80472664 end:0x80472754 + .ctors start:0x80473158 end:0x8047315C + .rodata start:0x8049DFF0 end:0x8049E0C8 + .data start:0x804EFA08 end:0x804EFB10 + .bss start:0x805069C0 end:0x805069CC + .bss start:0x805145A0 end:0x805145BC align:4 common + .sdata start:0x80514CA8 end:0x80514CB8 + .sbss start:0x80516280 end:0x80516284 + .sdata2 start:0x80520CE8 end:0x80520D58 + +utilityU/PSMainSide_ObjCalc.cpp: + .text start:0x80472754 end:0x80472CA4 + .text start:0x80472CA4 end:0x80472CA4 + .text start:0x80472CA4 end:0x80472D18 + .text start:0x80472D18 end:0x80472D8C + .text start:0x80472D8C end:0x80472D94 + .rodata start:0x8049E0C8 end:0x8049E112 + .data start:0x804EFB10 end:0x804EFB48 + .sdata2 start:0x80520D58 end:0x80520D60 diff --git a/config/GPVE01_D17/symbols.txt b/config/GPVE01_D17/symbols.txt new file mode 100644 index 000000000..48ad24adf --- /dev/null +++ b/config/GPVE01_D17/symbols.txt @@ -0,0 +1,48089 @@ +TRK_memset = .init:0x80003100; // type:function size:0x30 scope:global align:4 +TRK_memcpy = .init:0x80003130; // type:function size:0x24 scope:global align:4 +gTRKInterruptVectorTable = .init:0x80003154; // type:label scope:global +gTRKInterruptVectorTableEnd = .init:0x80005088; // type:label scope:global +__TRK_reset = .init:0x80005088; // type:function size:0x2C scope:global align:4 +memset = .init:0x800050B4; // type:function size:0x30 scope:global align:4 +__fill_mem = .init:0x800050E4; // type:function size:0xB8 scope:global align:4 +memcpy = .init:0x8000519C; // type:function size:0x50 scope:global align:4 +__check_pad3 = .init:0x800051EC; // type:function size:0x40 scope:local align:4 +__set_debug_bba = .init:0x8000522C; // type:function size:0xC scope:local align:4 +__get_debug_bba = .init:0x80005238; // type:function size:0x8 scope:local align:4 +__start = .init:0x80005240; // type:function size:0x15C scope:weak align:4 +__init_registers = .init:0x8000539C; // type:function size:0x90 scope:local align:4 +__init_data = .init:0x8000542C; // type:function size:0xC0 scope:local align:4 +__init_hardware = .init:0x800054EC; // type:function size:0x24 scope:global align:4 +__flush_cache = .init:0x80005510; // type:function size:0x34 scope:global align:4 +_rom_copy_info = .init:0x80005544; // type:object size:0x84 scope:global data:4byte +_bss_init_info = .init:0x800055C8; // type:object size:0x20 scope:global data:4byte +@205 = extab:0x80005600; // type:object size:0x8 scope:local align:4 +@210 = extab:0x80005608; // type:object size:0x8 scope:local align:4 +@231 = extab:0x80005610; // type:object size:0x18 scope:local align:4 +@239 = extab:0x80005628; // type:object size:0x8 scope:local align:4 +@262 = extab:0x80005630; // type:object size:0x18 scope:local align:4 +@206 = extabindex:0x80005660; // type:object size:0xC scope:local align:4 +@211 = extabindex:0x8000566C; // type:object size:0xC scope:local align:4 +@232 = extabindex:0x80005678; // type:object size:0xC scope:local align:4 +@240 = extabindex:0x80005684; // type:object size:0xC scope:local align:4 +@263 = extabindex:0x80005690; // type:object size:0xC scope:local align:4 +_eti_init_info = extabindex:0x8000569C; // type:object size:0x20 scope:global +__ct__Q217JStudio_JParticle17TAdaptor_particleFP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x800056C0; // type:function size:0xE8 scope:global align:4 +__dt__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_Fv = .text:0x800057A8; // type:function size:0x60 scope:weak align:4 +__ct__Q27JStudio14TVariableValueFv = .text:0x80005808; // type:function size:0x18 scope:weak align:4 +__dt__Q217JStudio_JParticle17TAdaptor_particleFv = .text:0x80005820; // type:function size:0x98 scope:global align:4 +adaptor_do_prepare__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObject = .text:0x800058B8; // type:function size:0x144 scope:global align:4 +adaptor_do_end__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObject = .text:0x800059FC; // type:function size:0x4 scope:global align:4 +adaptor_do_update__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObjectUl = .text:0x80005A00; // type:function size:0xB0 scope:global align:4 +adaptor_do_BEGIN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005AB0; // type:function size:0x30 scope:global align:4 +adaptor_do_BEGIN_FADE_IN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005AE0; // type:function size:0x48 scope:global align:4 +adaptor_do_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005B28; // type:function size:0x2C scope:global align:4 +adaptor_do_END_FADE_OUT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005B54; // type:function size:0x48 scope:global align:4 +adaptor_do_PARTICLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005B9C; // type:function size:0x14 scope:global align:4 +adaptor_do_PARENT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005BB0; // type:function size:0x68 scope:global align:4 +adaptor_do_PARENT_NODE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005C18; // type:function size:0x80 scope:global align:4 +adaptor_do_PARENT_ENABLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80005C98; // type:function size:0x20 scope:global align:4 +execute__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_FP14JPABaseEmitter = .text:0x80005CB8; // type:function size:0x35C scope:global align:4 +beginParticle_fadeIn___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x80006014; // type:function size:0xE4 scope:global align:4 +endParticle_fadeOut___Q217JStudio_JParticle17TAdaptor_particleFUl = .text:0x800060F8; // type:function size:0x118 scope:global align:4 +executeAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80006210; // type:function size:0x4 scope:weak align:4 +draw__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80006214; // type:function size:0x4 scope:weak align:4 +drawAfter__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x80006218; // type:function size:0x4 scope:weak align:4 +execute__18JPAEmitterCallBackFP14JPABaseEmitter = .text:0x8000621C; // type:function size:0x4 scope:weak align:4 +createObject_PARTICLE_JPA___Q217JStudio_JParticle21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectP17JPAEmitterManagerPCQ26JStage7TSystem = .text:0x80006220; // type:function size:0xCC scope:local align:4 +__dt__Q217JStudio_JParticle13TCreateObjectFv = .text:0x800062EC; // type:function size:0x60 scope:global align:4 +create__Q217JStudio_JParticle13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8000634C; // type:function size:0x78 scope:global align:4 +toMessageIndex_messageID__Q28JMessage9TResourceCFUlUlPb = .text:0x800063C4; // type:function size:0x1E4 scope:global align:4 +__dt__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x800065A8; // type:function size:0x74 scope:global align:4 +Get_groupID__Q38JMessage18TResourceContainer10TCResourceFUs = .text:0x8000661C; // type:function size:0x84 scope:global align:4 +Do_create__Q38JMessage18TResourceContainer10TCResourceFv = .text:0x800066A0; // type:function size:0x4C scope:global align:4 +Do_destroy__Q38JMessage18TResourceContainer10TCResourceFPQ28JMessage9TResource = .text:0x800066EC; // type:function size:0x24 scope:global align:4 +__ct__Q28JMessage18TResourceContainerFv = .text:0x80006710; // type:function size:0x48 scope:global align:4 +isLeadByte_1Byte__7JUTFontFi = .text:0x80006758; // type:function size:0x8 scope:weak align:4 +isLeadByte_2Byte__7JUTFontFi = .text:0x80006760; // type:function size:0x8 scope:weak align:4 +isLeadByte_ShiftJIS__7JUTFontFi = .text:0x80006768; // type:function size:0x30 scope:weak align:4 +__ct__Q28JMessage6TParseFPQ28JMessage18TResourceContainer = .text:0x80006798; // type:function size:0x28 scope:global align:4 +__dt__Q28JMessage6TParseFv = .text:0x800067C0; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x80006820; // type:function size:0x18C scope:global align:4 +parseBlock_next__Q28JMessage6TParseFPPCvPUlUl = .text:0x800069AC; // type:function size:0x17C scope:global align:4 +__ct__Q28JMessage12TParse_colorFPQ28JMessage18TResourceContainer = .text:0x80006B28; // type:function size:0x20 scope:global align:4 +__dt__Q28JMessage12TParse_colorFv = .text:0x80006B48; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x80006BA8; // type:function size:0xBC scope:global align:4 +parseBlock_next__Q28JMessage12TParse_colorFPPCvPUlUl = .text:0x80006C64; // type:function size:0x54 scope:global align:4 +lower_bound__3stdFPCUlPCUlRCUl = .text:0x80006CB8; // type:function size:0x54 scope:weak align:4 +__dt__Q28JMessage10TReferenceFv = .text:0x80006D0C; // type:function size:0x48 scope:global align:4 +do_word__Q28JMessage10TReferenceCFUl = .text:0x80006D54; // type:function size:0x8 scope:global align:4 +__dt__Q28JMessage10TProcessorFv = .text:0x80006D5C; // type:function size:0x48 scope:global align:4 +setBegin_messageCode__Q28JMessage10TProcessorFUsUs = .text:0x80006DA4; // type:function size:0xBC scope:global align:4 +setBegin_messageID__Q28JMessage10TProcessorFUlUlPb = .text:0x80006E60; // type:function size:0x44 scope:global align:4 +setBegin_messageCode__Q28JMessage10TProcessorFUl = .text:0x80006EA4; // type:function size:0xC0 scope:weak align:4 +getResource_groupID__Q28JMessage10TProcessorCFUs = .text:0x80006F64; // type:function size:0x80 scope:global align:4 +toMessageCode_messageID__Q28JMessage10TProcessorCFUlUlPb = .text:0x80006FE4; // type:function size:0x150 scope:global align:4 +do_reset__Q28JMessage10TProcessorFv = .text:0x80007134; // type:function size:0x4 scope:global align:4 +do_character__Q28JMessage10TProcessorFi = .text:0x80007138; // type:function size:0x4 scope:global align:4 +do_tag__Q28JMessage10TProcessorFUlPCvUl = .text:0x8000713C; // type:function size:0x8 scope:global align:4 +do_systemTagCode__Q28JMessage10TProcessorFUsPCvUl = .text:0x80007144; // type:function size:0x8 scope:global align:4 +do_select_begin__Q28JMessage10TProcessorFUl = .text:0x8000714C; // type:function size:0x4 scope:global align:4 +do_select_end__Q28JMessage10TProcessorFv = .text:0x80007150; // type:function size:0x4 scope:global align:4 +do_select_separate__Q28JMessage10TProcessorFv = .text:0x80007154; // type:function size:0x4 scope:global align:4 +reset___Q28JMessage10TProcessorFPCc = .text:0x80007158; // type:function size:0x64 scope:global align:4 +do_setBegin_isReady___Q28JMessage10TProcessorCFv = .text:0x800071BC; // type:function size:0x8 scope:global align:4 +do_tag___Q28JMessage10TProcessorFUlPCvUl = .text:0x800071C4; // type:function size:0x260 scope:global align:4 +on_message_limited__Q28JMessage10TProcessorCFUs = .text:0x80007424; // type:function size:0x50 scope:weak align:4 +do_systemTagCode___Q28JMessage10TProcessorFUsPCvUl = .text:0x80007474; // type:function size:0xD0 scope:global align:4 +on_message__Q28JMessage10TProcessorCFUl = .text:0x80007544; // type:function size:0x20 scope:weak align:4 +getMessageText_messageCode__Q28JMessage10TProcessorCFUl = .text:0x80007564; // type:function size:0xEC scope:weak align:4 +process_onCharacterEnd_normal___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x80007650; // type:function size:0x60 scope:global align:4 +process_onCharacterEnd_select___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x800076B0; // type:function size:0xFC scope:global align:4 +process_onSelect_limited___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x800077AC; // type:function size:0x1C scope:global align:4 +process_onSelect___Q28JMessage10TProcessorFPQ28JMessage10TProcessor = .text:0x800077C8; // type:function size:0x1C scope:global align:4 +__ct__Q28JMessage18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x800077E4; // type:function size:0x44 scope:global align:4 +__dt__Q28JMessage18TSequenceProcessorFv = .text:0x80007828; // type:function size:0x5C scope:global align:4 +process__Q28JMessage18TSequenceProcessorFPCc = .text:0x80007884; // type:function size:0x278 scope:global align:4 +on_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007AFC; // type:function size:0x2C scope:global align:4 +on_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007B28; // type:function size:0x2C scope:global align:4 +on_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007B54; // type:function size:0x9C scope:global align:4 +on_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x80007BF0; // type:function size:0x2C scope:global align:4 +on_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007C1C; // type:function size:0x9C scope:global align:4 +do_begin__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007CB8; // type:function size:0x4 scope:global align:4 +do_end__Q28JMessage18TSequenceProcessorFv = .text:0x80007CBC; // type:function size:0x4 scope:global align:4 +do_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007CC0; // type:function size:0x8 scope:global align:4 +do_jump_isReady__Q28JMessage18TSequenceProcessorFv = .text:0x80007CC8; // type:function size:0x8 scope:global align:4 +do_jump__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007CD0; // type:function size:0x4 scope:global align:4 +do_branch_query__Q28JMessage18TSequenceProcessorFUs = .text:0x80007CD4; // type:function size:0x4 scope:global align:4 +do_branch_queryResult__Q28JMessage18TSequenceProcessorFv = .text:0x80007CD8; // type:function size:0x8 scope:global align:4 +do_branch__Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007CE0; // type:function size:0x4 scope:global align:4 +do_reset___Q28JMessage18TSequenceProcessorFPCc = .text:0x80007CE4; // type:function size:0x1C scope:global align:4 +do_setBegin_isReady___Q28JMessage18TSequenceProcessorCFv = .text:0x80007D00; // type:function size:0x10 scope:global align:4 +do_begin___Q28JMessage18TSequenceProcessorFPCvPCc = .text:0x80007D10; // type:function size:0x2C scope:global align:4 +do_end___Q28JMessage18TSequenceProcessorFv = .text:0x80007D3C; // type:function size:0x34 scope:global align:4 +do_tag___Q28JMessage18TSequenceProcessorFUlPCvUl = .text:0x80007D70; // type:function size:0x140 scope:global align:4 +do_systemTagCode___Q28JMessage18TSequenceProcessorFUsPCvUl = .text:0x80007EB0; // type:function size:0x64 scope:global align:4 +process_onJump_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x80007F14; // type:function size:0x6C scope:global align:4 +process_onJump___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor = .text:0x80007F80; // type:function size:0x64 scope:global align:4 +process_onBranch_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x80007FE4; // type:function size:0x70 scope:global align:4 +process_onBranch___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl = .text:0x80008054; // type:function size:0x6C scope:global align:4 +__ct__Q28JMessage19TRenderingProcessorFPCQ28JMessage10TReference = .text:0x800080C0; // type:function size:0x3C scope:global align:4 +__dt__Q28JMessage19TRenderingProcessorFv = .text:0x800080FC; // type:function size:0x5C scope:global align:4 +process__Q28JMessage19TRenderingProcessorFPCc = .text:0x80008158; // type:function size:0x174 scope:global align:4 +do_begin__Q28JMessage19TRenderingProcessorFPCvPCc = .text:0x800082CC; // type:function size:0x4 scope:global align:4 +do_end__Q28JMessage19TRenderingProcessorFv = .text:0x800082D0; // type:function size:0x4 scope:global align:4 +do_reset___Q28JMessage19TRenderingProcessorFPCc = .text:0x800082D4; // type:function size:0x4 scope:global align:4 +do_begin___Q28JMessage19TRenderingProcessorFPCvPCc = .text:0x800082D8; // type:function size:0x2C scope:global align:4 +do_end___Q28JMessage19TRenderingProcessorFv = .text:0x80008304; // type:function size:0x2C scope:global align:4 +do_tag___Q28JMessage19TRenderingProcessorFUlPCvUl = .text:0x80008330; // type:function size:0x34 scope:global align:4 +do_systemTagCode___Q28JMessage19TRenderingProcessorFUsPCvUl = .text:0x80008364; // type:function size:0x40 scope:global align:4 +__ct__Q28JMessage8TControlFv = .text:0x800083A4; // type:function size:0x44 scope:global align:4 +__dt__Q28JMessage8TControlFv = .text:0x800083E8; // type:function size:0x48 scope:global align:4 +reset__Q28JMessage8TControlFv = .text:0x80008430; // type:function size:0x68 scope:global align:4 +update__Q28JMessage8TControlFv = .text:0x80008498; // type:function size:0x88 scope:global align:4 +render__Q28JMessage8TControlFv = .text:0x80008520; // type:function size:0x15C scope:global align:4 +setMessageCode__Q28JMessage8TControlFUsUs = .text:0x8000867C; // type:function size:0xDC scope:global align:4 +setMessageID__Q28JMessage8TControlFUlUlPb = .text:0x80008758; // type:function size:0xFC scope:global align:4 +setMessageCode_inSequence___Q28JMessage8TControlFPCQ28JMessage10TProcessorUsUs = .text:0x80008854; // type:function size:0xE8 scope:global align:4 +getData__Q47JStudio3stb4data16TParse_TSequenceCFPQ57JStudio3stb4data16TParse_TSequence5TData = .text:0x8000893C; // type:function size:0x4C scope:global align:4 +getData__Q47JStudio3stb4data17TParse_TParagraphCFPQ57JStudio3stb4data17TParse_TParagraph5TData = .text:0x80008988; // type:function size:0x78 scope:global align:4 +getData__Q47JStudio3stb4data22TParse_TParagraph_dataCFPQ57JStudio3stb4data22TParse_TParagraph_data5TData = .text:0x80008A00; // type:function size:0x80 scope:global align:4 +extrapolateParameter_raw__Q27JStudio13functionvalueFdd = .text:0x80008A80; // type:function size:0x4 scope:weak align:4 +extrapolateParameter_repeat__Q27JStudio13functionvalueFdd = .text:0x80008A84; // type:function size:0x3C scope:weak align:4 +extrapolateParameter_clamp__Q27JStudio13functionvalueFdd = .text:0x80008AC0; // type:function size:0x2C scope:weak align:4 +toFunction_outside__Q27JStudio14TFunctionValueFi = .text:0x80008AEC; // type:function size:0x48 scope:global align:4 +__dt__Q27JStudio14TFunctionValueFv = .text:0x80008B34; // type:function size:0x48 scope:global align:4 +extrapolateParameter_turn__Q27JStudio13functionvalueFdd = .text:0x80008B7C; // type:function size:0x60 scope:global align:4 +range_set__Q27JStudio29TFunctionValueAttribute_rangeFdd = .text:0x80008BDC; // type:function size:0x14 scope:global align:4 +__ct__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008BF0; // type:function size:0x64 scope:global align:4 +getType__Q27JStudio24TFunctionValue_compositeCFv = .text:0x80008C54; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008C5C; // type:function size:0x20 scope:global align:4 +initialize__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008C7C; // type:function size:0x4C scope:global align:4 +prepare__Q27JStudio24TFunctionValue_compositeFv = .text:0x80008CC8; // type:function size:0x4 scope:global align:4 +getValue__Q27JStudio24TFunctionValue_compositeFd = .text:0x80008CCC; // type:function size:0x34 scope:global align:4 +composite_raw__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008D00; // type:function size:0x6C scope:global align:4 +composite_index__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008D6C; // type:function size:0x16C scope:global align:4 +composite_parameter__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008ED8; // type:function size:0x68 scope:global align:4 +composite_add__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008F40; // type:function size:0x84 scope:global align:4 +composite_subtract__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80008FC4; // type:function size:0xE8 scope:global align:4 +composite_multiply__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x800090AC; // type:function size:0x84 scope:global align:4 +composite_divide__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad = .text:0x80009130; // type:function size:0xE8 scope:global align:4 +__ct__Q27JStudio23TFunctionValue_constantFv = .text:0x80009218; // type:function size:0x28 scope:global align:4 +getType__Q27JStudio23TFunctionValue_constantCFv = .text:0x80009240; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio23TFunctionValue_constantFv = .text:0x80009248; // type:function size:0x14 scope:global align:4 +initialize__Q27JStudio23TFunctionValue_constantFv = .text:0x8000925C; // type:function size:0x10 scope:global align:4 +prepare__Q27JStudio23TFunctionValue_constantFv = .text:0x8000926C; // type:function size:0x4 scope:global align:4 +getValue__Q27JStudio23TFunctionValue_constantFd = .text:0x80009270; // type:function size:0x8 scope:global align:4 +__ct__Q27JStudio25TFunctionValue_transitionFv = .text:0x80009278; // type:function size:0x74 scope:global align:4 +getType__Q27JStudio25TFunctionValue_transitionCFv = .text:0x800092EC; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio25TFunctionValue_transitionFv = .text:0x800092F4; // type:function size:0x30 scope:global align:4 +initialize__Q27JStudio25TFunctionValue_transitionFv = .text:0x80009324; // type:function size:0x48 scope:global align:4 +prepare__Q27JStudio25TFunctionValue_transitionFv = .text:0x8000936C; // type:function size:0xA8 scope:global align:4 +getValue__Q27JStudio25TFunctionValue_transitionFd = .text:0x80009414; // type:function size:0x250 scope:global align:4 +__ct__Q27JStudio19TFunctionValue_listFv = .text:0x80009664; // type:function size:0x78 scope:global align:4 +getType__Q27JStudio19TFunctionValue_listCFv = .text:0x800096DC; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio19TFunctionValue_listFv = .text:0x800096E4; // type:function size:0x30 scope:global align:4 +initialize__Q27JStudio19TFunctionValue_listFv = .text:0x80009714; // type:function size:0x4C scope:global align:4 +prepare__Q27JStudio19TFunctionValue_listFv = .text:0x80009760; // type:function size:0x128 scope:global align:4 +getValue__Q27JStudio19TFunctionValue_listFd = .text:0x80009888; // type:function size:0x530 scope:global align:4 +update_INTERPOLATE_NONE___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009DB8; // type:function size:0x14 scope:global align:4 +update_INTERPOLATE_LINEAR___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009DCC; // type:function size:0x30 scope:global align:4 +update_INTERPOLATE_PLATEAU___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009DFC; // type:function size:0x7C scope:global align:4 +update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_ = .text:0x80009E78; // type:function size:0xB4 scope:global align:4 +__ct__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x80009F2C; // type:function size:0x84 scope:global align:4 +getType__Q27JStudio29TFunctionValue_list_parameterCFv = .text:0x80009FB0; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x80009FB8; // type:function size:0x30 scope:global align:4 +data_set__Q27JStudio29TFunctionValue_list_parameterFPCfUl = .text:0x80009FE8; // type:function size:0x30 scope:global align:4 +initialize__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8000A018; // type:function size:0x58 scope:global align:4 +prepare__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8000A070; // type:function size:0x128 scope:global align:4 +getValue__Q27JStudio29TFunctionValue_list_parameterFd = .text:0x8000A198; // type:function size:0x538 scope:global align:4 +findUpperBound_binary_current__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCd = .text:0x8000A6D0; // type:function size:0x5C scope:local align:4 +findUpperBound_binary_current>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less = .text:0x8000A72C; // type:function size:0x22C scope:local align:4 +update_INTERPOLATE_NONE___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000A958; // type:function size:0xC scope:global align:4 +update_INTERPOLATE_LINEAR___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000A964; // type:function size:0x30 scope:global align:4 +update_INTERPOLATE_PLATEAU___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000A994; // type:function size:0x6C scope:global align:4 +update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd = .text:0x8000AA00; // type:function size:0x260 scope:global align:4 +__ct__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000AC60; // type:function size:0x98 scope:global align:4 +getType__Q27JStudio22TFunctionValue_hermiteCFv = .text:0x8000ACF8; // type:function size:0x8 scope:global align:4 +getAttributeSet__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000AD00; // type:function size:0x20 scope:global align:4 +data_set__Q27JStudio22TFunctionValue_hermiteFPCfUlUl = .text:0x8000AD20; // type:function size:0x50 scope:global align:4 +initialize__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000AD70; // type:function size:0x6C scope:global align:4 +prepare__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000ADDC; // type:function size:0xA8 scope:global align:4 +getValue__Q27JStudio22TFunctionValue_hermiteFd = .text:0x8000AE84; // type:function size:0x5D0 scope:global align:4 +findUpperBound_binary_current__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCd = .text:0x8000B454; // type:function size:0x84 scope:local align:4 +findUpperBound_binary_current>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less = .text:0x8000B4D8; // type:function size:0x2E4 scope:local align:4 +__dt__Q27JStudio22TFunctionValue_hermiteFv = .text:0x8000B7BC; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio29TFunctionValue_list_parameterFv = .text:0x8000B818; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio19TFunctionValue_listFv = .text:0x8000B874; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio25TFunctionValue_transitionFv = .text:0x8000B8D0; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio23TFunctionValue_constantFv = .text:0x8000B92C; // type:function size:0x5C scope:weak align:4 +__dt__Q27JStudio24TFunctionValue_compositeFv = .text:0x8000B988; // type:function size:0x88 scope:weak align:4 +upper_bound>__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less = .text:0x8000BA10; // type:function size:0x80 scope:weak align:4 +upper_bound>__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less = .text:0x8000BA90; // type:function size:0xB8 scope:weak align:4 +prepare__Q37JStudio3fvb7TObjectFRCQ47JStudio3fvb4data13TParse_TBlockPQ37JStudio3fvb8TControl = .text:0x8000BB48; // type:function size:0x21C scope:global align:4 +getCompositeData_raw___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD64; // type:function size:0xC scope:local align:4 +getCompositeData_index___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD70; // type:function size:0xC scope:local align:4 +getCompositeData_parameter___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD7C; // type:function size:0xC scope:local align:4 +getCompositeData_add___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD88; // type:function size:0xC scope:local align:4 +getCompositeData_subtract___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BD94; // type:function size:0xC scope:local align:4 +getCompositeData_multiply___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BDA0; // type:function size:0xC scope:local align:4 +getCompositeData_divide___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv = .text:0x8000BDAC; // type:function size:0xC scope:local align:4 +prepare_data___Q37JStudio3fvb17TObject_compositeFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BDB8; // type:function size:0x6C scope:global align:4 +prepare_data___Q37JStudio3fvb16TObject_constantFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE24; // type:function size:0x10 scope:global align:4 +prepare_data___Q37JStudio3fvb18TObject_transitionFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE34; // type:function size:0x18 scope:global align:4 +prepare_data___Q37JStudio3fvb12TObject_listFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE4C; // type:function size:0x20 scope:global align:4 +prepare_data___Q37JStudio3fvb22TObject_list_parameterFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE6C; // type:function size:0x30 scope:global align:4 +prepare_data___Q37JStudio3fvb15TObject_hermiteFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl = .text:0x8000BE9C; // type:function size:0x38 scope:global align:4 +__ct__Q37JStudio3fvb8TControlFv = .text:0x8000BED4; // type:function size:0x30 scope:global align:4 +__dt__Q37JStudio3fvb8TControlFv = .text:0x8000BF04; // type:function size:0x6C scope:global align:4 +getObject__Q37JStudio3fvb8TControlFPCvUl = .text:0x8000BF70; // type:function size:0x94 scope:global align:4 +find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal = .text:0x8000C004; // type:function size:0x9C scope:local align:4 +getObject_index__Q37JStudio3fvb8TControlFUl = .text:0x8000C0A0; // type:function size:0x7C scope:global align:4 +__dt__Q37JStudio3fvb8TFactoryFv = .text:0x8000C11C; // type:function size:0x48 scope:global align:4 +create__Q37JStudio3fvb8TFactoryFRCQ47JStudio3fvb4data13TParse_TBlock = .text:0x8000C164; // type:function size:0x308 scope:global align:4 +destroy__Q37JStudio3fvb8TFactoryFPQ37JStudio3fvb7TObject = .text:0x8000C46C; // type:function size:0x3C scope:global align:4 +__ct__Q37JStudio3fvb6TParseFPQ37JStudio3fvb8TControl = .text:0x8000C4A8; // type:function size:0x20 scope:global align:4 +__dt__Q37JStudio3fvb6TParseFv = .text:0x8000C4C8; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x8000C528; // type:function size:0x98 scope:global align:4 +parseBlock_next__Q37JStudio3fvb6TParseFPPCvPUlUl = .text:0x8000C5C0; // type:function size:0x118 scope:global align:4 +__dt__Q37JStudio3fvb15TObject_hermiteFv = .text:0x8000C6D8; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb22TObject_list_parameterFv = .text:0x8000C764; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb12TObject_listFv = .text:0x8000C7F0; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb18TObject_transitionFv = .text:0x8000C87C; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb16TObject_constantFv = .text:0x8000C908; // type:function size:0x8C scope:weak align:4 +__dt__Q37JStudio3fvb17TObject_compositeFv = .text:0x8000C994; // type:function size:0xA8 scope:weak align:4 +getData__Q47JStudio3fvb4data17TParse_TParagraphCFPQ57JStudio3fvb4data17TParse_TParagraph5TData = .text:0x8000CA3C; // type:function size:0x68 scope:global align:4 +__ct__Q27JStudio8TControlFv = .text:0x8000CAA4; // type:function size:0x90 scope:global align:4 +__dt__Q27JStudio8TControlFv = .text:0x8000CB34; // type:function size:0x70 scope:global align:4 +transformOnSet_setOrigin__Q27JStudio8TControlFRC3Vecf = .text:0x8000CBA4; // type:function size:0x80 scope:global align:4 +transformOnGet_setOrigin__Q27JStudio8TControlFRC3Vecf = .text:0x8000CC24; // type:function size:0x94 scope:global align:4 +__dt__Q27JStudio13TCreateObjectFv = .text:0x8000CCB8; // type:function size:0x48 scope:global align:4 +__dt__Q27JStudio8TFactoryFv = .text:0x8000CD00; // type:function size:0x84 scope:global align:4 +appendCreateObject__Q27JStudio8TFactoryFPQ27JStudio13TCreateObject = .text:0x8000CD84; // type:function size:0x50 scope:global align:4 +create__Q27JStudio8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x8000CDD4; // type:function size:0xB4 scope:global align:4 +__ct__Q27JStudio6TParseFPQ27JStudio8TControl = .text:0x8000CE88; // type:function size:0x54 scope:global align:4 +__dt__Q27JStudio6TParseFv = .text:0x8000CEDC; // type:function size:0x70 scope:global align:4 +parseHeader__Q27JStudio6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x8000CF4C; // type:function size:0x78 scope:global align:4 +parseBlock_block__Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x8000CFC4; // type:function size:0x44 scope:global align:4 +parseBlock_block_fvb___Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x8000D008; // type:function size:0x60 scope:global align:4 +__dt__Q37JStudio14TVariableValue7TOutputFv = .text:0x8000D068; // type:function size:0x48 scope:global align:4 +update_immediate___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x8000D0B0; // type:function size:0x14 scope:global align:4 +update_time___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x8000D0C4; // type:function size:0x3C scope:global align:4 +update_functionValue___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued = .text:0x8000D100; // type:function size:0x64 scope:global align:4 +__dt__Q37JStudio14TVariableValue13TOutput_none_Fv = .text:0x8000D164; // type:function size:0x5C scope:global align:4 +__cl__Q37JStudio14TVariableValue13TOutput_none_CFfPQ27JStudio8TAdaptor = .text:0x8000D1C0; // type:function size:0x4 scope:global align:4 +adaptor_do_prepare__Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x8000D1C4; // type:function size:0x4 scope:global align:4 +adaptor_do_begin__Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x8000D1C8; // type:function size:0x4 scope:global align:4 +adaptor_do_end__Q27JStudio8TAdaptorFPCQ27JStudio7TObject = .text:0x8000D1CC; // type:function size:0x4 scope:global align:4 +adaptor_do_update__Q27JStudio8TAdaptorFPCQ27JStudio7TObjectUl = .text:0x8000D1D0; // type:function size:0x4 scope:global align:4 +adaptor_do_data__Q27JStudio8TAdaptorFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x8000D1D4; // type:function size:0x4 scope:global align:4 +adaptor_setVariableValue__Q27JStudio8TAdaptorFPQ27JStudio7TObjectUlQ37JStudio4data15TEOperationDataPCvUl = .text:0x8000D1D8; // type:function size:0xA0 scope:global align:4 +adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFPCQ37JStudio8TAdaptor27TSetVariableValue_immediate = .text:0x8000D278; // type:function size:0x44 scope:global align:4 +adaptor_setVariableValue_Vec__Q27JStudio8TAdaptorFPCUlRC3Vec = .text:0x8000D2BC; // type:function size:0x70 scope:global align:4 +adaptor_getVariableValue_Vec__Q27JStudio8TAdaptorCFP3VecPCUl = .text:0x8000D32C; // type:function size:0x38 scope:global align:4 +adaptor_setVariableValue_GXColor__Q27JStudio8TAdaptorFPCUlRC8_GXColor = .text:0x8000D364; // type:function size:0xE0 scope:global align:4 +adaptor_getVariableValue_GXColor__Q27JStudio8TAdaptorCFP8_GXColorPCUl = .text:0x8000D444; // type:function size:0x14C scope:global align:4 +adaptor_setVariableValue_VOID___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D590; // type:function size:0x18 scope:global align:4 +adaptor_setVariableValue_IMMEDIATE___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D5A8; // type:function size:0x2C scope:global align:4 +adaptor_setVariableValue_TIME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D5D4; // type:function size:0x2C scope:global align:4 +adaptor_setVariableValue_FVR_NAME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D600; // type:function size:0x70 scope:global align:4 +adaptor_setVariableValue_FVR_INDEX___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl = .text:0x8000D670; // type:function size:0x6C scope:global align:4 +do_begin__Q27JStudio7TObjectFv = .text:0x8000D6DC; // type:function size:0x3C scope:global align:4 +do_end__Q27JStudio7TObjectFv = .text:0x8000D718; // type:function size:0x3C scope:global align:4 +do_wait__Q27JStudio7TObjectFUl = .text:0x8000D754; // type:function size:0xEC scope:global align:4 +do_data__Q27JStudio7TObjectFPCvUlPCvUl = .text:0x8000D840; // type:function size:0x5C scope:global align:4 +__dt__Q27JStudio14TAdaptor_actorFv = .text:0x8000D89C; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio13TObject_actorFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_actor = .text:0x8000D8F8; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio13TObject_actorFUlPCvUl = .text:0x8000D950; // type:function size:0x484 scope:global align:4 +__dt__Q27JStudio21TAdaptor_ambientLightFv = .text:0x8000DDD4; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio20TObject_ambientLightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio21TAdaptor_ambientLight = .text:0x8000DE30; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio20TObject_ambientLightFUlPCvUl = .text:0x8000DE88; // type:function size:0x1DC scope:global align:4 +__dt__Q27JStudio15TAdaptor_cameraFv = .text:0x8000E064; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio14TObject_cameraFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio15TAdaptor_camera = .text:0x8000E0C0; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio14TObject_cameraFUlPCvUl = .text:0x8000E118; // type:function size:0x3F8 scope:global align:4 +__dt__Q27JStudio12TAdaptor_fogFv = .text:0x8000E510; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio11TObject_fogFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio12TAdaptor_fog = .text:0x8000E56C; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio11TObject_fogFUlPCvUl = .text:0x8000E5C4; // type:function size:0x1E8 scope:global align:4 +__dt__Q27JStudio14TAdaptor_lightFv = .text:0x8000E7AC; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio13TObject_lightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_light = .text:0x8000E808; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio13TObject_lightFUlPCvUl = .text:0x8000E860; // type:function size:0x370 scope:global align:4 +__dt__Q27JStudio16TAdaptor_messageFv = .text:0x8000EBD0; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio15TObject_messageFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio16TAdaptor_message = .text:0x8000EC2C; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio15TObject_messageFUlPCvUl = .text:0x8000EC84; // type:function size:0x90 scope:global align:4 +__dt__Q27JStudio17TAdaptor_particleFv = .text:0x8000ED14; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio16TObject_particleFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio17TAdaptor_particle = .text:0x8000ED70; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio16TObject_particleFUlPCvUl = .text:0x8000EDC8; // type:function size:0x458 scope:global align:4 +__dt__Q27JStudio14TAdaptor_soundFv = .text:0x8000F220; // type:function size:0x5C scope:global align:4 +__ct__Q27JStudio13TObject_soundFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_sound = .text:0x8000F27C; // type:function size:0x58 scope:global align:4 +do_paragraph__Q27JStudio13TObject_soundFUlPCvUl = .text:0x8000F2D4; // type:function size:0x3F8 scope:global align:4 +__dt__Q27JStudio13TObject_soundFv = .text:0x8000F6CC; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio16TObject_particleFv = .text:0x8000F760; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio15TObject_messageFv = .text:0x8000F7F4; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio13TObject_lightFv = .text:0x8000F888; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio11TObject_fogFv = .text:0x8000F91C; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio14TObject_cameraFv = .text:0x8000F9B0; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio20TObject_ambientLightFv = .text:0x8000FA44; // type:function size:0x94 scope:weak align:4 +__dt__Q27JStudio13TObject_actorFv = .text:0x8000FAD8; // type:function size:0x94 scope:weak align:4 +__sinit_jstudio-object_cpp = .text:0x8000FB6C; // type:function size:0x284 scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8000FDF0; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_Fv = .text:0x8000FE4C; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8000FEA8; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_Fv = .text:0x8000FF04; // type:function size:0x5C scope:local align:4 +__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv = .text:0x8000FF60; // type:function size:0x5C scope:local align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8000FFBC; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x80010018; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x80010074; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x800100D0; // type:function size:0x5C scope:weak align:4 +__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor = .text:0x8001012C; // type:function size:0x5C scope:weak align:4 +isEqual__Q37JStudio6object7TIDDataFRCQ37JStudio6object7TIDDataRCQ37JStudio6object7TIDData = .text:0x80010188; // type:function size:0xF0 scope:global align:4 +__ct__Q37JStudio3stb7TObjectFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80010278; // type:function size:0x70 scope:global align:4 +__dt__Q37JStudio3stb7TObjectFv = .text:0x800102E8; // type:function size:0x48 scope:global align:4 +forward__Q37JStudio3stb7TObjectFUl = .text:0x80010330; // type:function size:0x238 scope:global align:4 +do_begin__Q37JStudio3stb7TObjectFv = .text:0x80010568; // type:function size:0x4 scope:global align:4 +do_end__Q37JStudio3stb7TObjectFv = .text:0x8001056C; // type:function size:0x4 scope:global align:4 +do_paragraph__Q37JStudio3stb7TObjectFUlPCvUl = .text:0x80010570; // type:function size:0x4 scope:global align:4 +do_wait__Q37JStudio3stb7TObjectFUl = .text:0x80010574; // type:function size:0x4 scope:global align:4 +do_data__Q37JStudio3stb7TObjectFPCvUlPCvUl = .text:0x80010578; // type:function size:0x4 scope:global align:4 +process_sequence___Q37JStudio3stb7TObjectFv = .text:0x8001057C; // type:function size:0x1A4 scope:global align:4 +process_paragraph_reserved___Q37JStudio3stb7TObjectFUlPCvUl = .text:0x80010720; // type:function size:0x13C scope:global align:4 +__ct__Q37JStudio3stb8TControlFv = .text:0x8001085C; // type:function size:0x94 scope:global align:4 +__dt__Q37JStudio3stb15TObject_controlFv = .text:0x800108F0; // type:function size:0x5C scope:weak align:4 +__dt__Q37JStudio3stb8TControlFv = .text:0x8001094C; // type:function size:0x9C scope:global align:4 +getObject__Q37JStudio3stb8TControlFPCvUl = .text:0x800109E8; // type:function size:0x94 scope:global align:4 +find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal = .text:0x80010A7C; // type:function size:0x9C scope:local align:4 +forward__Q37JStudio3stb8TControlFUl = .text:0x80010B18; // type:function size:0xF0 scope:global align:4 +__dt__Q37JStudio3stb8TFactoryFv = .text:0x80010C08; // type:function size:0x48 scope:global align:4 +create__Q37JStudio3stb8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80010C50; // type:function size:0x8 scope:global align:4 +destroy__Q37JStudio3stb8TFactoryFPQ37JStudio3stb7TObject = .text:0x80010C58; // type:function size:0x3C scope:global align:4 +__ct__Q37JStudio3stb6TParseFPQ37JStudio3stb8TControl = .text:0x80010C94; // type:function size:0x20 scope:global align:4 +__dt__Q37JStudio3stb6TParseFv = .text:0x80010CB4; // type:function size:0x60 scope:global align:4 +parseHeader_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80010D14; // type:function size:0xC8 scope:global align:4 +parseBlock_next__Q37JStudio3stb6TParseFPPCvPUlUl = .text:0x80010DDC; // type:function size:0x54 scope:global align:4 +parseHeader__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl = .text:0x80010E30; // type:function size:0x8 scope:global align:4 +parseBlock_block__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl = .text:0x80010E38; // type:function size:0x38 scope:global align:4 +parseBlock_object__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data20TParse_TBlock_objectUl = .text:0x80010E70; // type:function size:0x154 scope:global align:4 +getTransformation_SRxyzT__Q27JStudio4mathFPA4_fRC3VecRC3VecRC3Vec = .text:0x80010FC4; // type:function size:0x1B0 scope:global align:4 +getFromTransformation_SRxyzT__Q27JStudio4mathFP3VecP3VecP3VecPA4_Cf = .text:0x80011174; // type:function size:0x254 scope:global align:4 +__ct__Q214JStudio_JStage14TAdaptor_lightFPCQ26JStage7TSystemPQ26JStage6TLight = .text:0x800113C8; // type:function size:0xA8 scope:global align:4 +__dt__Q214JStudio_JStage14TAdaptor_lightFv = .text:0x80011470; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject = .text:0x800114E8; // type:function size:0x48 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject = .text:0x80011530; // type:function size:0x2AC scope:global align:4 +adaptor_do_end__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject = .text:0x800117DC; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObjectUl = .text:0x80011830; // type:function size:0x1C8 scope:global align:4 +adaptor_do_data__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x800119F8; // type:function size:0x34 scope:global align:4 +adaptor_do_FACULTY__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80011A2C; // type:function size:0x78 scope:global align:4 +adaptor_do_ENABLE__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80011AA4; // type:function size:0x24 scope:global align:4 +__cl__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFfPQ27JStudio8TAdaptor = .text:0x80011AC8; // type:function size:0xC scope:global align:4 +__dt__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_Fv = .text:0x80011AD4; // type:function size:0x60 scope:weak align:4 +__sinit_object-light_cpp = .text:0x80011B34; // type:function size:0x298 scope:local align:4 +transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80011DCC; // type:function size:0x98 scope:global align:4 +transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80011E64; // type:function size:0x98 scope:global align:4 +transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl = .text:0x80011EFC; // type:function size:0xA4 scope:global align:4 +transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl = .text:0x80011FA0; // type:function size:0xA4 scope:global align:4 +adaptor_data___Q214JStudio_JStage16TAdaptor_object_FPQ26JStage7TObjectPCvUlPCvUl = .text:0x80012044; // type:function size:0x48 scope:global align:4 +adaptor_findJSGObject___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TSystemPCc = .text:0x8001208C; // type:function size:0x4C scope:global align:4 +adaptor_findJSGObjectNode___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TObjectPCc = .text:0x800120D8; // type:function size:0x2C scope:global align:4 +adaptor_ENABLE___Q214JStudio_JStage16TAdaptor_object_FPQ26JStage7TObjectQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012104; // type:function size:0x94 scope:global align:4 +__ct__Q214JStudio_JStage14TAdaptor_actorFPCQ26JStage7TSystemPQ26JStage6TActor = .text:0x80012198; // type:function size:0xC8 scope:global align:4 +__dt__Q214JStudio_JStage14TAdaptor_actorFv = .text:0x80012260; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject = .text:0x800122D8; // type:function size:0x8C scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject = .text:0x80012364; // type:function size:0x130 scope:global align:4 +adaptor_do_end__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject = .text:0x80012494; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObjectUl = .text:0x800124E8; // type:function size:0x44 scope:global align:4 +adaptor_do_data__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x8001252C; // type:function size:0x34 scope:global align:4 +adaptor_do_SHAPE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012560; // type:function size:0x54 scope:global align:4 +adaptor_do_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800125B4; // type:function size:0x54 scope:global align:4 +adaptor_do_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012608; // type:function size:0x14 scope:global align:4 +adaptor_do_TEXTURE_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8001261C; // type:function size:0x54 scope:global align:4 +adaptor_do_TEXTURE_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012670; // type:function size:0x14 scope:global align:4 +adaptor_do_PARENT__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012684; // type:function size:0x44 scope:global align:4 +adaptor_do_PARENT_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800126C8; // type:function size:0x5C scope:global align:4 +adaptor_do_PARENT_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012724; // type:function size:0x88 scope:global align:4 +adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800127AC; // type:function size:0x14 scope:global align:4 +adaptor_do_RELATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800127C0; // type:function size:0x44 scope:global align:4 +adaptor_do_RELATION_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012804; // type:function size:0x5C scope:global align:4 +adaptor_do_RELATION_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80012860; // type:function size:0x58 scope:global align:4 +setJSG_ID___Q214JStudio_JStage14TAdaptor_actorFMQ26JStage6TActorFPCvPvUl_vQ37JStudio4data15TEOperationDataPCvUl = .text:0x800128B8; // type:function size:0x3C scope:global align:4 +setJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x800128F4; // type:function size:0x178 scope:global align:4 +getJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl = .text:0x80012A6C; // type:function size:0x17C scope:global align:4 +__cl__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFfPQ27JStudio8TAdaptor = .text:0x80012BE8; // type:function size:0xE4 scope:global align:4 +__dt__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_Fv = .text:0x80012CCC; // type:function size:0x60 scope:weak align:4 +__sinit_object-actor_cpp = .text:0x80012D2C; // type:function size:0x3D0 scope:local align:4 +__dt__Q214JStudio_JStage81TVariableValueOutput_object_Fv = .text:0x800130FC; // type:function size:0x60 scope:weak align:4 +__cl__Q214JStudio_JStage81TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x8001315C; // type:function size:0x30 scope:weak align:4 +__ct__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ26JStage7TSystemPQ26JStage13TAmbientLight = .text:0x8001318C; // type:function size:0xA0 scope:global align:4 +__dt__Q214JStudio_JStage21TAdaptor_ambientLightFv = .text:0x8001322C; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject = .text:0x800132A4; // type:function size:0x4 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject = .text:0x800132A8; // type:function size:0x8C scope:global align:4 +adaptor_do_end__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject = .text:0x80013334; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObjectUl = .text:0x80013388; // type:function size:0x6C scope:global align:4 +adaptor_do_data__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x800133F4; // type:function size:0x34 scope:global align:4 +__ct__Q214JStudio_JStage15TAdaptor_cameraFPCQ26JStage7TSystemPQ26JStage7TCamera = .text:0x80013428; // type:function size:0xC4 scope:global align:4 +__dt__Q214JStudio_JStage15TAdaptor_cameraFv = .text:0x800134EC; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject = .text:0x80013564; // type:function size:0x48 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject = .text:0x800135AC; // type:function size:0xE8 scope:global align:4 +adaptor_do_end__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject = .text:0x80013694; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObjectUl = .text:0x800136E8; // type:function size:0x5C scope:global align:4 +adaptor_do_data__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x80013744; // type:function size:0x34 scope:global align:4 +adaptor_do_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80013778; // type:function size:0x44 scope:global align:4 +adaptor_do_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800137BC; // type:function size:0x5C scope:global align:4 +adaptor_do_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80013818; // type:function size:0x80 scope:global align:4 +adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80013898; // type:function size:0x14 scope:global align:4 +adaptor_do_TARGET_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800138AC; // type:function size:0x44 scope:global align:4 +adaptor_do_TARGET_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800138F0; // type:function size:0x5C scope:global align:4 +adaptor_do_TARGET_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl = .text:0x8001394C; // type:function size:0x20 scope:global align:4 +setJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x8001396C; // type:function size:0xFC scope:global align:4 +getJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80013A68; // type:function size:0x108 scope:global align:4 +setJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80013B70; // type:function size:0xE0 scope:global align:4 +getJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl = .text:0x80013C50; // type:function size:0xE4 scope:global align:4 +__sinit_object-camera_cpp = .text:0x80013D34; // type:function size:0x370 scope:local align:4 +__dt__Q214JStudio_JStage83TVariableValueOutput_object_Fv = .text:0x800140A4; // type:function size:0x60 scope:weak align:4 +__cl__Q214JStudio_JStage83TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x80014104; // type:function size:0x30 scope:weak align:4 +__ct__Q214JStudio_JStage12TAdaptor_fogFPCQ26JStage7TSystemPQ26JStage4TFog = .text:0x80014134; // type:function size:0xA0 scope:global align:4 +__dt__Q214JStudio_JStage12TAdaptor_fogFv = .text:0x800141D4; // type:function size:0x78 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject = .text:0x8001424C; // type:function size:0x48 scope:global align:4 +adaptor_do_begin__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject = .text:0x80014294; // type:function size:0xF4 scope:global align:4 +adaptor_do_end__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject = .text:0x80014388; // type:function size:0x54 scope:global align:4 +adaptor_do_update__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObjectUl = .text:0x800143DC; // type:function size:0x6C scope:global align:4 +adaptor_do_data__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObjectPCvUlPCvUl = .text:0x80014448; // type:function size:0x34 scope:global align:4 +__sinit_object-fog_cpp = .text:0x8001447C; // type:function size:0x228 scope:local align:4 +__dt__Q214JStudio_JStage77TVariableValueOutput_object_Fv = .text:0x800146A4; // type:function size:0x60 scope:weak align:4 +__cl__Q214JStudio_JStage77TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor = .text:0x80014704; // type:function size:0x30 scope:weak align:4 +__dt__Q214JStudio_JStage13TCreateObjectFv = .text:0x80014734; // type:function size:0x60 scope:global align:4 +create__Q214JStudio_JStage13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80014794; // type:function size:0x194 scope:global align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014928; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x800149F4; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014AC0; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014B8C; // type:function size:0xCC scope:weak align:4 +createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem = .text:0x80014C58; // type:function size:0xCC scope:weak align:4 +__ct__Q216JStudio_JMessage16TAdaptor_messageFPQ28JMessage8TControl = .text:0x80014D24; // type:function size:0x38 scope:global align:4 +__dt__Q216JStudio_JMessage16TAdaptor_messageFv = .text:0x80014D5C; // type:function size:0x60 scope:global align:4 +adaptor_do_MESSAGE__Q216JStudio_JMessage16TAdaptor_messageFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80014DBC; // type:function size:0x3C scope:global align:4 +createObject_MESSAGE_JMS___Q216JStudio_JMessage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ28JMessage8TControl = .text:0x80014DF8; // type:function size:0xBC scope:local align:4 +create__Q216JStudio_JMessage18TCreateObject_baseFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80014EB4; // type:function size:0xAC scope:global align:4 +__dt__Q216JStudio_JMessage13TCreateObjectFv = .text:0x80014F60; // type:function size:0x70 scope:global align:4 +find__Q216JStudio_JMessage13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80014FD0; // type:function size:0x8 scope:global align:4 +__ct__Q214JStudio_JAudio14TAdaptor_soundFP8JAIBasicPCQ26JStage7TSystem = .text:0x80014FD8; // type:function size:0xC8 scope:global align:4 +__dt__Q214JStudio_JAudio14TAdaptor_soundFv = .text:0x800150A0; // type:function size:0x84 scope:global align:4 +adaptor_do_prepare__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObject = .text:0x80015124; // type:function size:0xCC scope:global align:4 +adaptor_do_end__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObject = .text:0x800151F0; // type:function size:0x58 scope:global align:4 +adaptor_do_update__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObjectUl = .text:0x80015248; // type:function size:0x14C scope:global align:4 +adaptor_do_SOUND__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015394; // type:function size:0xA4 scope:global align:4 +adaptor_do_BEGIN__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015438; // type:function size:0x30 scope:global align:4 +adaptor_do_BEGIN_FADE_IN__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015468; // type:function size:0x48 scope:global align:4 +adaptor_do_END__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800154B0; // type:function size:0x30 scope:global align:4 +adaptor_do_END_FADE_OUT__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x800154E0; // type:function size:0x48 scope:global align:4 +adaptor_do_PARENT__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015528; // type:function size:0x68 scope:global align:4 +adaptor_do_PARENT_NODE__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015590; // type:function size:0x80 scope:global align:4 +adaptor_do_PARENT_ENABLE__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015610; // type:function size:0x20 scope:global align:4 +adaptor_do_LOCATED__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl = .text:0x80015630; // type:function size:0x28 scope:global align:4 +__cl__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_CFfPQ27JStudio8TAdaptor = .text:0x80015658; // type:function size:0x40 scope:global align:4 +beginSound_fadeIn___Q214JStudio_JAudio14TAdaptor_soundFUl = .text:0x80015698; // type:function size:0xD8 scope:global align:4 +endSound_fadeOut___Q214JStudio_JAudio14TAdaptor_soundFUl = .text:0x80015770; // type:function size:0x50 scope:global align:4 +__dt__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_Fv = .text:0x800157C0; // type:function size:0x60 scope:weak align:4 +prepareSoundVecT<8JAISound>__8JAIBasicFUlPP8JAISoundP3VecUlUlUc = .text:0x80015820; // type:function size:0x4C scope:weak align:4 +startSoundVecT<8JAISound>__8JAIBasicFUlPP8JAISoundP3VecUlUlUc = .text:0x8001586C; // type:function size:0x60 scope:weak align:4 +startSoundActorT<8JAISound>__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUc = .text:0x800158CC; // type:function size:0x68 scope:weak align:4 +__sinit_object-sound_cpp = .text:0x80015934; // type:function size:0x310 scope:local align:4 +createObject_SOUND_JAI___Q214JStudio_JAudio21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectP8JAIBasicPCQ26JStage7TSystem = .text:0x80015C44; // type:function size:0xCC scope:local align:4 +__dt__Q214JStudio_JAudio13TCreateObjectFv = .text:0x80015D10; // type:function size:0x60 scope:global align:4 +create__Q214JStudio_JAudio13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80015D70; // type:function size:0x78 scope:global align:4 +getUseMtxNum__11J3DShapeMtxCFv = .text:0x80015DE8; // type:function size:0x8 scope:weak align:4 +J3DUNewMtxCalcAnm__FUlP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransform14J3DMtxCalcFlag = .text:0x80015DF0; // type:function size:0x590 scope:global align:4 +setWeight__10J3DMtxCalcFUcf = .text:0x80016380; // type:function size:0x4 scope:weak align:4 +setAnmTransform__10J3DMtxCalcFUcP15J3DAnmTransform = .text:0x80016384; // type:function size:0x4 scope:weak align:4 +__dt__22J3DMtxCalcBlendAnmBaseFv = .text:0x80016388; // type:function size:0x5C scope:weak align:4 +__dt__10J3DMtxCalcFv = .text:0x800163E4; // type:function size:0x48 scope:weak align:4 +calcBlend__15J3DMtxCalcBlendFP3VecP3VecPP15J3DAnmTransformPf = .text:0x8001642C; // type:function size:0x348 scope:global align:4 +calcBlend__28J3DMtxCalcBlendSharedMotionTFP3VecP3VecPP15J3DAnmTransformPf = .text:0x80016774; // type:function size:0x390 scope:global align:4 +calcScaleBlend__24J3DMtxCalcScaleBlendMayaFRC3VecRC3Vec = .text:0x80016B04; // type:function size:0x198 scope:global align:4 +setAnmTransform__22J3DMtxCalcBlendAnmBaseFP15J3DAnmTransform = .text:0x80016C9C; // type:function size:0x8 scope:weak align:4 +getAnmTransform__22J3DMtxCalcBlendAnmBaseFUc = .text:0x80016CA4; // type:function size:0x10 scope:weak align:4 +getAnmTransform__22J3DMtxCalcBlendAnmBaseFv = .text:0x80016CB4; // type:function size:0x8 scope:weak align:4 +getWeight__22J3DMtxCalcBlendAnmBaseCFUc = .text:0x80016CBC; // type:function size:0x10 scope:weak align:4 +setAnmTransform__22J3DMtxCalcBlendAnmBaseFUcP15J3DAnmTransform = .text:0x80016CCC; // type:function size:0x10 scope:weak align:4 +setWeight__22J3DMtxCalcBlendAnmBaseFUcf = .text:0x80016CDC; // type:function size:0x10 scope:weak align:4 +setAnmTransform__10J3DMtxCalcFP15J3DAnmTransform = .text:0x80016CEC; // type:function size:0x4 scope:weak align:4 +getAnmTransform__10J3DMtxCalcFUc = .text:0x80016CF0; // type:function size:0x8 scope:weak align:4 +getAnmTransform__10J3DMtxCalcFv = .text:0x80016CF8; // type:function size:0x8 scope:weak align:4 +getWeight__10J3DMtxCalcCFUc = .text:0x80016D00; // type:function size:0x8 scope:weak align:4 +__dt__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80016D08; // type:function size:0x6C scope:weak align:4 +init__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80016D74; // type:function size:0x28 scope:weak align:4 +setWeight__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcf = .text:0x80016D9C; // type:function size:0x10 scope:weak align:4 +setAnmTransform__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcP15J3DAnmTransform = .text:0x80016DAC; // type:function size:0x10 scope:weak align:4 +__dt__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80016DBC; // type:function size:0x6C scope:weak align:4 +init__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x80016E28; // type:function size:0x28 scope:weak align:4 +setWeight__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcf = .text:0x80016E50; // type:function size:0x10 scope:weak align:4 +setAnmTransform__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcP15J3DAnmTransform = .text:0x80016E60; // type:function size:0x10 scope:weak align:4 +__dt__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80016E70; // type:function size:0x6C scope:weak align:4 +init__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x80016EDC; // type:function size:0x4C scope:weak align:4 +setWeight__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcf = .text:0x80016F28; // type:function size:0x10 scope:weak align:4 +setAnmTransform__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcP15J3DAnmTransform = .text:0x80016F38; // type:function size:0x10 scope:weak align:4 +__dt__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80016F48; // type:function size:0x6C scope:weak align:4 +init__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x80016FB4; // type:function size:0x4C scope:weak align:4 +setWeight__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcf = .text:0x80017000; // type:function size:0x10 scope:weak align:4 +setAnmTransform__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcP15J3DAnmTransform = .text:0x80017010; // type:function size:0x10 scope:weak align:4 +__dt__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x80017020; // type:function size:0x6C scope:weak align:4 +init__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x8001708C; // type:function size:0x28 scope:weak align:4 +setWeight__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcf = .text:0x800170B4; // type:function size:0x10 scope:weak align:4 +setAnmTransform__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcP15J3DAnmTransform = .text:0x800170C4; // type:function size:0x10 scope:weak align:4 +__dt__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x800170D4; // type:function size:0x6C scope:weak align:4 +init__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x80017140; // type:function size:0x28 scope:weak align:4 +setWeight__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcf = .text:0x80017168; // type:function size:0x10 scope:weak align:4 +setAnmTransform__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcP15J3DAnmTransform = .text:0x80017178; // type:function size:0x10 scope:weak align:4 +calc__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x80017188; // type:function size:0x134 scope:weak align:4 +calc__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x800172BC; // type:function size:0x134 scope:weak align:4 +calc__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x800173F0; // type:function size:0x1A4 scope:weak align:4 +calc__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80017594; // type:function size:0x1A4 scope:weak align:4 +calc__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80017738; // type:function size:0x4C scope:weak align:4 +calc__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80017784; // type:function size:0x4C scope:weak align:4 +__ct__10JUTTextureFv = .text:0x800177D0; // type:function size:0x1C scope:weak align:4 +__dt__24J3DUMtxAnmCacheTableBaseFv = .text:0x800177EC; // type:function size:0x5C scope:global align:4 +__ct__20J3DUMtxAnmCacheTableFP8J3DModelP15J3DAnmTransform = .text:0x80017848; // type:function size:0x84 scope:global align:4 +init<20J3DUMtxAnmCacheTable>__26@unnamed@J3DUMtxCache_cpp@FP8J3DModelP15J3DAnmTransformP20J3DUMtxAnmCacheTable = .text:0x800178CC; // type:function size:0x144 scope:weak align:4 +create__7JKRAramFUlUllll = .text:0x80017A10; // type:function size:0x94 scope:global align:4 +__ct__7JKRAramFUlUll = .text:0x80017AA4; // type:function size:0x11C scope:global align:4 +__dt__7JKRAramFv = .text:0x80017BC0; // type:function size:0x90 scope:global align:4 +run__7JKRAramFv = .text:0x80017C50; // type:function size:0x70 scope:global align:4 +mainRamToAram__7JKRAramFPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80017CC0; // type:function size:0x28C scope:global align:4 +aramToMainRam__7JKRAramFUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80017F4C; // type:function size:0x2DC scope:global align:4 +aramToMainRam__7JKRAramFP12JKRAramBlockPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80018228; // type:function size:0x10C scope:global align:4 +JKRDecompressFromAramToMainRam__FUlPvUlUlUlPUl = .text:0x80018334; // type:function size:0x168 scope:global align:4 +decompSZS_subroutine__FPUcPUc = .text:0x8001849C; // type:function size:0x2A8 scope:local align:4 +firstSrcData__Fv = .text:0x80018744; // type:function size:0xA4 scope:local align:4 +nextSrcData__FPUc = .text:0x800187E8; // type:function size:0xD8 scope:local align:4 +__sinit_JKRAram_cpp = .text:0x800188C0; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRAMCommand>Fv = .text:0x80018904; // type:function size:0x54 scope:weak align:4 +__ct__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80018958; // type:function size:0xB0 scope:global align:4 +__dt__14JKRAramArchiveFv = .text:0x80018A08; // type:function size:0x150 scope:global align:4 +__dt__7JKRFileFv = .text:0x80018B58; // type:function size:0x60 scope:weak align:4 +open__14JKRAramArchiveFl = .text:0x80018BB8; // type:function size:0x334 scope:global align:4 +fetchResource__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80018EEC; // type:function size:0x124 scope:global align:4 +fetchResource__14JKRAramArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80019010; // type:function size:0xF8 scope:global align:4 +fetchResource_subroutine__14JKRAramArchiveFUlUlPUcUli = .text:0x80019108; // type:function size:0xBC scope:global align:4 +fetchResource_subroutine__14JKRAramArchiveFUlUlP7JKRHeapiPPUc = .text:0x800191C4; // type:function size:0x14C scope:global align:4 +getExpandedResSize__14JKRAramArchiveCFPCv = .text:0x80019310; // type:function size:0x134 scope:global align:4 +__ct__12JKRAramBlockFUlUlUlUcb = .text:0x80019444; // type:function size:0x6C scope:global align:4 +__dt__12JKRAramBlockFv = .text:0x800194B0; // type:function size:0xBC scope:global align:4 +allocHead__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x8001956C; // type:function size:0xA8 scope:global align:4 +allocTail__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x80019614; // type:function size:0xB4 scope:global align:4 +__ct__11JKRAramHeapFUlUl = .text:0x800196C8; // type:function size:0xD8 scope:global align:4 +__dt__11JKRAramHeapFv = .text:0x800197A0; // type:function size:0xA8 scope:global align:4 +alloc__11JKRAramHeapFUlQ211JKRAramHeap10EAllocMode = .text:0x80019848; // type:function size:0x80 scope:global align:4 +allocFromHead__11JKRAramHeapFUl = .text:0x800198C8; // type:function size:0x88 scope:global align:4 +allocFromTail__11JKRAramHeapFUl = .text:0x80019950; // type:function size:0x78 scope:global align:4 +getFreeSize__11JKRAramHeapFv = .text:0x800199C8; // type:function size:0x78 scope:global align:4 +__sinit_JKRAramHeap_cpp = .text:0x80019A40; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRAramBlock>Fv = .text:0x80019A84; // type:function size:0x54 scope:weak align:4 +sendCommand__12JKRAramPieceFP12JKRAMCommand = .text:0x80019AD8; // type:function size:0x20 scope:global align:4 +orderSync__12JKRAramPieceFiUlUlUlP12JKRAramBlock = .text:0x80019AF8; // type:function size:0x1AC scope:global align:4 +startDMA__12JKRAramPieceFP12JKRAMCommand = .text:0x80019CA4; // type:function size:0x78 scope:global align:4 +doneDMA__12JKRAramPieceFUl = .text:0x80019D1C; // type:function size:0xA8 scope:global align:4 +__ct__12JKRAMCommandFv = .text:0x80019DC4; // type:function size:0x70 scope:global align:4 +__dt__12JKRAMCommandFv = .text:0x80019E34; // type:function size:0xA8 scope:global align:4 +__sinit_JKRAramPiece_cpp = .text:0x80019EDC; // type:function size:0x44 scope:local align:4 +create__13JKRAramStreamFl = .text:0x80019F20; // type:function size:0x70 scope:global align:4 +__ct__13JKRAramStreamFl = .text:0x80019F90; // type:function size:0x50 scope:global align:4 +__dt__13JKRAramStreamFv = .text:0x80019FE0; // type:function size:0x60 scope:global align:4 +run__13JKRAramStreamFv = .text:0x8001A040; // type:function size:0x70 scope:global align:4 +readFromAram__13JKRAramStreamFv = .text:0x8001A0B0; // type:function size:0x8 scope:global align:4 +writeToAram__13JKRAramStreamFP20JKRAramStreamCommand = .text:0x8001A0B8; // type:function size:0x1EC scope:global align:4 +getAvailable__20JSURandomInputStreamCFv = .text:0x8001A2A4; // type:function size:0x5C scope:weak align:4 +write_StreamToAram_Async__13JKRAramStreamFP18JSUFileInputStreamUlUlUlPUl = .text:0x8001A300; // type:function size:0xC8 scope:global align:4 +sync__13JKRAramStreamFP20JKRAramStreamCommandi = .text:0x8001A3C8; // type:function size:0x94 scope:global align:4 +setTransBuffer__13JKRAramStreamFPUcUlP7JKRHeap = .text:0x8001A45C; // type:function size:0x54 scope:global align:4 +__ct__20JKRAramStreamCommandFv = .text:0x8001A4B0; // type:function size:0xC scope:global align:4 +__ct__10JKRArchiveFlQ210JKRArchive10EMountMode = .text:0x8001A4BC; // type:function size:0xA8 scope:global align:4 +__dt__10JKRArchiveFv = .text:0x8001A564; // type:function size:0x60 scope:global align:4 +isSameName__10JKRArchiveCFRQ210JKRArchive8CArcNameUlUs = .text:0x8001A5C4; // type:function size:0x4C scope:global align:4 +findDirectory__10JKRArchiveCFPCcUl = .text:0x8001A610; // type:function size:0x31C scope:global align:4 +__ct__Q210JKRArchive8CArcNameFPPCcc = .text:0x8001A92C; // type:function size:0x44 scope:weak align:4 +getString__Q210JKRArchive8CArcNameCFv = .text:0x8001A970; // type:function size:0x8 scope:weak align:4 +getHash__Q210JKRArchive8CArcNameCFv = .text:0x8001A978; // type:function size:0x8 scope:weak align:4 +findTypeResource__10JKRArchiveCFUlPCc = .text:0x8001A980; // type:function size:0xF4 scope:global align:4 +findFsResource__10JKRArchiveCFPCcUl = .text:0x8001AA74; // type:function size:0x340 scope:global align:4 +findIdxResource__10JKRArchiveCFUl = .text:0x8001ADB4; // type:function size:0x28 scope:global align:4 +findNameResource__10JKRArchiveCFPCc = .text:0x8001ADDC; // type:function size:0xA4 scope:global align:4 +findPtrResource__10JKRArchiveCFPCv = .text:0x8001AE80; // type:function size:0x34 scope:global align:4 +findIdResource__10JKRArchiveCFUs = .text:0x8001AEB4; // type:function size:0x80 scope:global align:4 +store__Q210JKRArchive8CArcNameFPCc = .text:0x8001AF34; // type:function size:0x98 scope:global align:4 +store__Q210JKRArchive8CArcNameFPCcc = .text:0x8001AFCC; // type:function size:0xC8 scope:global align:4 +setExpandSize__10JKRArchiveFPQ210JKRArchive12SDIFileEntryUl = .text:0x8001B094; // type:function size:0x4C scope:global align:4 +getExpandSize__10JKRArchiveCFPQ210JKRArchive12SDIFileEntry = .text:0x8001B0E0; // type:function size:0x50 scope:global align:4 +mount__10JKRArchiveFPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x8001B130; // type:function size:0x64 scope:global align:4 +mount__10JKRArchiveFPvP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x8001B194; // type:function size:0xD8 scope:global align:4 +mount__10JKRArchiveFlQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x8001B26C; // type:function size:0x1D8 scope:global align:4 +becomeCurrent__10JKRArchiveFPCc = .text:0x8001B444; // type:function size:0x88 scope:global align:4 +getDirEntry__10JKRArchiveCFPQ210JKRArchive9SDirEntryUl = .text:0x8001B4CC; // type:function size:0x78 scope:global align:4 +getGlbResource__10JKRArchiveFUlPCcP10JKRArchive = .text:0x8001B544; // type:function size:0xB8 scope:global align:4 +getResource__10JKRArchiveFPCc = .text:0x8001B5FC; // type:function size:0x7C scope:global align:4 +getResource__10JKRArchiveFUlPCc = .text:0x8001B678; // type:function size:0x80 scope:global align:4 +getIdxResource__10JKRArchiveFUl = .text:0x8001B6F8; // type:function size:0x54 scope:global align:4 +readResource__10JKRArchiveFPvUlUlPCc = .text:0x8001B74C; // type:function size:0xAC scope:global align:4 +readResource__10JKRArchiveFPvUlPCc = .text:0x8001B7F8; // type:function size:0xA4 scope:global align:4 +readResource__10JKRArchiveFPvUlUs = .text:0x8001B89C; // type:function size:0x7C scope:global align:4 +removeResourceAll__10JKRArchiveFv = .text:0x8001B918; // type:function size:0x98 scope:global align:4 +removeResource__10JKRArchiveFPv = .text:0x8001B9B0; // type:function size:0x60 scope:global align:4 +detachResource__10JKRArchiveFPv = .text:0x8001BA10; // type:function size:0x3C scope:global align:4 +getResSize__10JKRArchiveCFPCv = .text:0x8001BA4C; // type:function size:0x34 scope:global align:4 +countFile__10JKRArchiveCFPCc = .text:0x8001BA80; // type:function size:0x60 scope:global align:4 +getFirstFile__10JKRArchiveCFPCc = .text:0x8001BAE0; // type:function size:0xAC scope:global align:4 +getExpandedResSize__10JKRArchiveCFPCv = .text:0x8001BB8C; // type:function size:0x2C scope:weak align:4 +__ct__14JKRCompArchiveFlQ210JKRArchive15EMountDirection = .text:0x8001BBB8; // type:function size:0xB0 scope:global align:4 +__dt__14JKRCompArchiveFv = .text:0x8001BC68; // type:function size:0x150 scope:global align:4 +open__14JKRCompArchiveFl = .text:0x8001BDB8; // type:function size:0x57C scope:global align:4 +fetchResource__14JKRCompArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001C334; // type:function size:0x190 scope:global align:4 +fetchResource__14JKRCompArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001C4C4; // type:function size:0x194 scope:global align:4 +removeResourceAll__14JKRCompArchiveFv = .text:0x8001C658; // type:function size:0xA4 scope:global align:4 +removeResource__14JKRCompArchiveFPv = .text:0x8001C6FC; // type:function size:0x74 scope:global align:4 +getExpandedResSize__14JKRCompArchiveCFPCv = .text:0x8001C770; // type:function size:0x1C4 scope:global align:4 +create__9JKRDecompFl = .text:0x8001C934; // type:function size:0x60 scope:global align:4 +__ct__9JKRDecompFl = .text:0x8001C994; // type:function size:0x50 scope:global align:4 +__dt__9JKRDecompFv = .text:0x8001C9E4; // type:function size:0x60 scope:global align:4 +run__9JKRDecompFv = .text:0x8001CA44; // type:function size:0xC8 scope:global align:4 +sendCommand__9JKRDecompFP16JKRDecompCommand = .text:0x8001CB0C; // type:function size:0x30 scope:global align:4 +orderSync__9JKRDecompFPUcPUcUlUl = .text:0x8001CB3C; // type:function size:0xA0 scope:global align:4 +decode__9JKRDecompFPUcPUcUlUl = .text:0x8001CBDC; // type:function size:0x8C scope:global align:4 +decodeSZP__9JKRDecompFPUcPUcUlUl = .text:0x8001CC68; // type:function size:0x1A4 scope:global align:4 +decodeSZS__9JKRDecompFPUcPUcUlUl = .text:0x8001CE0C; // type:function size:0xE4 scope:global align:4 +checkCompressed__9JKRDecompFPUc = .text:0x8001CEF0; // type:function size:0x50 scope:global align:4 +__ct__16JKRDecompCommandFv = .text:0x8001CF40; // type:function size:0x50 scope:global align:4 +__dt__16JKRDecompCommandFv = .text:0x8001CF90; // type:function size:0x3C scope:global align:4 +__ct__11JKRDisposerFv = .text:0x8001CFCC; // type:function size:0x68 scope:global align:4 +__dt__11JKRDisposerFv = .text:0x8001D034; // type:function size:0x84 scope:global align:4 +__ct__10JKRDvdFileFv = .text:0x8001D0B8; // type:function size:0x74 scope:global align:4 +__ct__10JKRDvdFileFPCc = .text:0x8001D12C; // type:function size:0xB0 scope:global align:4 +__ct__10JKRDvdFileFl = .text:0x8001D1DC; // type:function size:0xB0 scope:global align:4 +__dt__10JKRDvdFileFv = .text:0x8001D28C; // type:function size:0x9C scope:global align:4 +initiate__10JKRDvdFileFv = .text:0x8001D328; // type:function size:0x6C scope:global align:4 +open__10JKRDvdFileFPCc = .text:0x8001D394; // type:function size:0x78 scope:global align:4 +open__10JKRDvdFileFl = .text:0x8001D40C; // type:function size:0x78 scope:global align:4 +close__10JKRDvdFileFv = .text:0x8001D484; // type:function size:0x7C scope:global align:4 +readData__10JKRDvdFileFPvll = .text:0x8001D500; // type:function size:0xC4 scope:global align:4 +writeData__10JKRDvdFileFPCvll = .text:0x8001D5C4; // type:function size:0x8 scope:global align:4 +sync__10JKRDvdFileFv = .text:0x8001D5CC; // type:function size:0x54 scope:global align:4 +doneProcess__10JKRDvdFileFlP11DVDFileInfo = .text:0x8001D620; // type:function size:0x30 scope:global align:4 +getFileSize__10JKRDvdFileCFv = .text:0x8001D650; // type:function size:0x8 scope:weak align:4 +__sinit_JKRDvdFile_cpp = .text:0x8001D658; // type:function size:0x44 scope:local align:4 +__dt__21JSUList<10JKRDvdFile>Fv = .text:0x8001D69C; // type:function size:0x54 scope:weak align:4 +loadToAram__16JKRDvdAramRipperFPCcUl15JKRExpandSwitchUlUlPUl = .text:0x8001D6F0; // type:function size:0x9C scope:global align:4 +loadToAram__16JKRDvdAramRipperFlUl15JKRExpandSwitchUlUlPUl = .text:0x8001D78C; // type:function size:0x9C scope:global align:4 +loadToAram__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchUlUlPUl = .text:0x8001D828; // type:function size:0xA4 scope:global align:4 +loadToAram_Async__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchPFUl_vUlUlPUl = .text:0x8001D8CC; // type:function size:0xAC scope:global align:4 +callCommand_Async__16JKRDvdAramRipperFP12JKRADCommand = .text:0x8001D978; // type:function size:0x350 scope:global align:4 +__dt__18JSUFileInputStreamFv = .text:0x8001DCC8; // type:function size:0x70 scope:weak align:4 +syncAram__16JKRDvdAramRipperFP12JKRADCommandi = .text:0x8001DD38; // type:function size:0xE0 scope:global align:4 +__ct__12JKRADCommandFv = .text:0x8001DE18; // type:function size:0x40 scope:global align:4 +__dt__12JKRADCommandFv = .text:0x8001DE58; // type:function size:0x8C scope:global align:4 +JKRDecompressFromDVDToAram__FP10JKRDvdFileUlUlUlUlUlPUl = .text:0x8001DEE4; // type:function size:0x178 scope:global align:4 +decompSZS_subroutine__FPUcUl = .text:0x8001E05C; // type:function size:0x280 scope:local align:4 +firstSrcData__Fv = .text:0x8001E2DC; // type:function size:0xB4 scope:local align:4 +nextSrcData__FPUc = .text:0x8001E390; // type:function size:0xEC scope:local align:4 +dmaBufferFlush__FUl = .text:0x8001E47C; // type:function size:0x68 scope:local align:4 +__sinit_JKRDvdAramRipper_cpp = .text:0x8001E4E4; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRADCommand>Fv = .text:0x8001E528; // type:function size:0x54 scope:weak align:4 +__ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection = .text:0x8001E57C; // type:function size:0xB0 scope:global align:4 +__dt__13JKRDvdArchiveFv = .text:0x8001E62C; // type:function size:0x12C scope:global align:4 +open__13JKRDvdArchiveFl = .text:0x8001E758; // type:function size:0x2AC scope:global align:4 +fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001EA04; // type:function size:0x128 scope:global align:4 +fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x8001EB2C; // type:function size:0xFC scope:global align:4 +fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii = .text:0x8001EC28; // type:function size:0x200 scope:global align:4 +fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc = .text:0x8001EE28; // type:function size:0x21C scope:global align:4 +getExpandedResSize__13JKRDvdArchiveCFPCv = .text:0x8001F044; // type:function size:0x144 scope:global align:4 +loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8001F188; // type:function size:0xB4 scope:global align:4 +loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8001F23C; // type:function size:0xB4 scope:global align:4 +loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl = .text:0x8001F2F0; // type:function size:0x4AC scope:global align:4 +JKRDecompressFromDVD__FP10JKRDvdFilePvUlUlUlUlPUl = .text:0x8001F79C; // type:function size:0x174 scope:global align:4 +decompSZS_subroutine__FPUcPUc = .text:0x8001F910; // type:function size:0x2B8 scope:local align:4 +firstSrcData__Fv = .text:0x8001FBC8; // type:function size:0xD4 scope:local align:4 +nextSrcData__FPUc = .text:0x8001FC9C; // type:function size:0x10C scope:local align:4 +isErrorRetry__12JKRDvdRipperFv = .text:0x8001FDA8; // type:function size:0x8 scope:weak align:4 +__sinit_JKRDvdRipper_cpp = .text:0x8001FDB0; // type:function size:0x44 scope:local align:4 +__dt__23JSUList<12JKRDMCommand>Fv = .text:0x8001FDF4; // type:function size:0x54 scope:weak align:4 +createRoot__10JKRExpHeapFib = .text:0x8001FE48; // type:function size:0x80 scope:global align:4 +create__10JKRExpHeapFUlP7JKRHeapb = .text:0x8001FEC8; // type:function size:0xE4 scope:global align:4 +do_destroy__10JKRExpHeapFv = .text:0x8001FFAC; // type:function size:0x84 scope:global align:4 +__ct__10JKRExpHeapFPvUlP7JKRHeapb = .text:0x80020030; // type:function size:0x98 scope:global align:4 +__dt__10JKRExpHeapFv = .text:0x800200C8; // type:function size:0x68 scope:global align:4 +do_alloc__10JKRExpHeapFUli = .text:0x80020130; // type:function size:0x11C scope:global align:4 +allocFromHead__10JKRExpHeapFUli = .text:0x8002024C; // type:function size:0x254 scope:global align:4 +allocFromHead__10JKRExpHeapFUl = .text:0x800204A0; // type:function size:0xE4 scope:global align:4 +allocFromTail__10JKRExpHeapFUli = .text:0x80020584; // type:function size:0x158 scope:global align:4 +allocFromTail__10JKRExpHeapFUl = .text:0x800206DC; // type:function size:0xE0 scope:global align:4 +do_free__10JKRExpHeapFPv = .text:0x800207BC; // type:function size:0x74 scope:global align:4 +freeGroup__10JKRExpHeapFUc = .text:0x80020830; // type:function size:0x94 scope:global align:4 +do_freeAll__10JKRExpHeapFv = .text:0x800208C4; // type:function size:0x7C scope:global align:4 +do_freeTail__10JKRExpHeapFv = .text:0x80020940; // type:function size:0x90 scope:global align:4 +do_fillFreeArea__10JKRExpHeapFv = .text:0x800209D0; // type:function size:0x4 scope:global align:4 +do_changeGroupID__10JKRExpHeapFUc = .text:0x800209D4; // type:function size:0x58 scope:global align:4 +do_resize__10JKRExpHeapFPvUl = .text:0x80020A2C; // type:function size:0x1BC scope:global align:4 +do_getSize__10JKRExpHeapFPv = .text:0x80020BE8; // type:function size:0x88 scope:global align:4 +do_getFreeSize__10JKRExpHeapFv = .text:0x80020C70; // type:function size:0x6C scope:global align:4 +do_getMaxFreeBlock__10JKRExpHeapFv = .text:0x80020CDC; // type:function size:0x74 scope:global align:4 +do_getTotalFreeSize__10JKRExpHeapFv = .text:0x80020D50; // type:function size:0x64 scope:global align:4 +appendUsedList__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80020DB4; // type:function size:0x98 scope:global align:4 +setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock = .text:0x80020E4C; // type:function size:0x4C scope:global align:4 +removeFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80020E98; // type:function size:0x34 scope:global align:4 +recycleFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80020ECC; // type:function size:0x1E4 scope:global align:4 +joinTwoBlocks__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x800210B0; // type:function size:0x104 scope:global align:4 +check__10JKRExpHeapFv = .text:0x800211B4; // type:function size:0x1E0 scope:global align:4 +dump__10JKRExpHeapFv = .text:0x80021394; // type:function size:0x1C8 scope:global align:4 +dump_sort__10JKRExpHeapFv = .text:0x8002155C; // type:function size:0x1F8 scope:global align:4 +initiate__Q210JKRExpHeap9CMemBlockFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockUlUcUc = .text:0x80021754; // type:function size:0x20 scope:global align:4 +allocFore__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x80021774; // type:function size:0x44 scope:global align:4 +allocBack__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x800217B8; // type:function size:0x58 scope:global align:4 +free__Q210JKRExpHeap9CMemBlockFP10JKRExpHeap = .text:0x80021810; // type:function size:0x60 scope:global align:4 +getHeapBlock__Q210JKRExpHeap9CMemBlockFPv = .text:0x80021870; // type:function size:0x1C scope:global align:4 +state_register__10JKRExpHeapCFPQ27JKRHeap6TStateUl = .text:0x8002188C; // type:function size:0xF4 scope:global align:4 +state_compare__10JKRExpHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x80021980; // type:function size:0x30 scope:global align:4 +getHeapType__10JKRExpHeapFv = .text:0x800219B0; // type:function size:0xC scope:weak align:4 +do_getCurrentGroupId__10JKRExpHeapFv = .text:0x800219BC; // type:function size:0x8 scope:weak align:4 +mount__12JKRFileCacheFPCcP7JKRHeapPCc = .text:0x800219C4; // type:function size:0xF8 scope:global align:4 +__ct__12JKRFileCacheFPCcPCc = .text:0x80021ABC; // type:function size:0x1C0 scope:global align:4 +__dt__12JKRFileCacheFv = .text:0x80021C7C; // type:function size:0xD4 scope:global align:4 +becomeCurrent__12JKRFileCacheFPCc = .text:0x80021D50; // type:function size:0x98 scope:global align:4 +getResource__12JKRFileCacheFPCc = .text:0x80021DE8; // type:function size:0x118 scope:global align:4 +getResource__12JKRFileCacheFUlPCc = .text:0x80021F00; // type:function size:0x90 scope:global align:4 +readResource__12JKRFileCacheFPvUlPCc = .text:0x80021F90; // type:function size:0xD4 scope:global align:4 +readResource__12JKRFileCacheFPvUlUlPCc = .text:0x80022064; // type:function size:0x90 scope:global align:4 +removeResourceAll__12JKRFileCacheFv = .text:0x800220F4; // type:function size:0x90 scope:global align:4 +removeResource__12JKRFileCacheFPv = .text:0x80022184; // type:function size:0x9C scope:global align:4 +detachResource__12JKRFileCacheFPv = .text:0x80022220; // type:function size:0x74 scope:global align:4 +getResSize__12JKRFileCacheCFPCv = .text:0x80022294; // type:function size:0x34 scope:global align:4 +countFile__12JKRFileCacheCFPCc = .text:0x800222C8; // type:function size:0x7C scope:global align:4 +getFirstFile__12JKRFileCacheCFPCc = .text:0x80022344; // type:function size:0x9C scope:global align:4 +__dt__13JKRFileFinderFv = .text:0x800223E0; // type:function size:0x48 scope:weak align:4 +findCacheBlock__12JKRFileCacheCFPCv = .text:0x80022428; // type:function size:0x2C scope:global align:4 +findCacheBlock__12JKRFileCacheCFUl = .text:0x80022454; // type:function size:0x2C scope:global align:4 +findFile__12JKRFileCacheCFPcPCc = .text:0x80022480; // type:function size:0x3E8 scope:global align:4 +getDvdPathName__12JKRFileCacheCFPCc = .text:0x80022868; // type:function size:0x110 scope:global align:4 +convStrLower__12JKRFileCacheCFPc = .text:0x80022978; // type:function size:0x48 scope:global align:4 +__ct__Q212JKRFileCache11CCacheBlockFUlUlPCv = .text:0x800229C0; // type:function size:0x6C scope:global align:4 +getFsResource__12JKRFileCacheFPCc = .text:0x80022A2C; // type:function size:0x2C scope:weak align:4 +getNameResource__12JKRFileCacheFUlPCc = .text:0x80022A58; // type:function size:0x2C scope:weak align:4 +readFsResource__12JKRFileCacheFPvUlPCc = .text:0x80022A84; // type:function size:0x2C scope:weak align:4 +readNameResource__12JKRFileCacheFPvUlUlPCc = .text:0x80022AB0; // type:function size:0x2C scope:weak align:4 +__ct__12JKRArcFinderFP10JKRArchivell = .text:0x80022ADC; // type:function size:0x8C scope:global align:4 +findNextFile__12JKRArcFinderFv = .text:0x80022B68; // type:function size:0xAC scope:global align:4 +__ct__12JKRDvdFinderFPCc = .text:0x80022C14; // type:function size:0x88 scope:global align:4 +__dt__12JKRDvdFinderFv = .text:0x80022C9C; // type:function size:0x80 scope:global align:4 +findNextFile__12JKRDvdFinderFv = .text:0x80022D1C; // type:function size:0xA4 scope:global align:4 +__dt__12JKRArcFinderFv = .text:0x80022DC0; // type:function size:0x5C scope:weak align:4 +read__7JKRFileFPvll = .text:0x80022E1C; // type:function size:0x7C scope:global align:4 +__ct__13JKRFileLoaderFv = .text:0x80022E98; // type:function size:0x58 scope:global align:4 +__dt__13JKRFileLoaderFv = .text:0x80022EF0; // type:function size:0x8C scope:global align:4 +unmount__13JKRFileLoaderFv = .text:0x80022F7C; // type:function size:0x50 scope:global align:4 +getGlbResource__13JKRFileLoaderFPCc = .text:0x80022FCC; // type:function size:0x4C scope:global align:4 +getGlbResource__13JKRFileLoaderFPCcP13JKRFileLoader = .text:0x80023018; // type:function size:0x98 scope:global align:4 +findVolume__13JKRFileLoaderFPPCc = .text:0x800230B0; // type:function size:0x8C scope:global align:4 +fetchVolumeName__13JKRFileLoaderFPclPCc = .text:0x8002313C; // type:function size:0xE0 scope:global align:4 +__sinit_JKRFileLoader_cpp = .text:0x8002321C; // type:function size:0x44 scope:local align:4 +__dt__24JSUList<13JKRFileLoader>Fv = .text:0x80023260; // type:function size:0x54 scope:weak align:4 +__ct__7JKRHeapFPvUlP7JKRHeapb = .text:0x800232B4; // type:function size:0x124 scope:global align:4 +__dt__7JKRHeapFv = .text:0x800233D8; // type:function size:0x114 scope:global align:4 +initArena__7JKRHeapFPPcPUli = .text:0x800234EC; // type:function size:0xA8 scope:global align:4 +becomeSystemHeap__7JKRHeapFv = .text:0x80023594; // type:function size:0x10 scope:global align:4 +becomeCurrentHeap__7JKRHeapFv = .text:0x800235A4; // type:function size:0x10 scope:global align:4 +destroy__7JKRHeapFv = .text:0x800235B4; // type:function size:0x2C scope:global align:4 +alloc__7JKRHeapFUliP7JKRHeap = .text:0x800235E0; // type:function size:0x60 scope:global align:4 +alloc__7JKRHeapFUli = .text:0x80023640; // type:function size:0x2C scope:global align:4 +free__7JKRHeapFPvP7JKRHeap = .text:0x8002366C; // type:function size:0x48 scope:global align:4 +free__7JKRHeapFPv = .text:0x800236B4; // type:function size:0x2C scope:global align:4 +callAllDisposer__7JKRHeapFv = .text:0x800236E0; // type:function size:0x50 scope:global align:4 +freeAll__7JKRHeapFv = .text:0x80023730; // type:function size:0x2C scope:global align:4 +freeTail__7JKRHeapFv = .text:0x8002375C; // type:function size:0x2C scope:global align:4 +resize__7JKRHeapFPvUl = .text:0x80023788; // type:function size:0x2C scope:global align:4 +getFreeSize__7JKRHeapFv = .text:0x800237B4; // type:function size:0x2C scope:global align:4 +getTotalFreeSize__7JKRHeapFv = .text:0x800237E0; // type:function size:0x2C scope:global align:4 +changeGroupID__7JKRHeapFUc = .text:0x8002380C; // type:function size:0x2C scope:global align:4 +do_changeGroupID__7JKRHeapFUc = .text:0x80023838; // type:function size:0x8 scope:weak align:4 +getCurrentGroupId__7JKRHeapFv = .text:0x80023840; // type:function size:0x2C scope:global align:4 +do_getCurrentGroupId__7JKRHeapFv = .text:0x8002386C; // type:function size:0x8 scope:weak align:4 +getMaxAllocatableSize__7JKRHeapFi = .text:0x80023874; // type:function size:0x80 scope:global align:4 +findFromRoot__7JKRHeapFPv = .text:0x800238F4; // type:function size:0x3C scope:global align:4 +find__7JKRHeapCFPv = .text:0x80023930; // type:function size:0x270 scope:global align:4 +getNextChild__17JSUTree<7JKRHeap>CFv = .text:0x80023BA0; // type:function size:0x14 scope:weak align:4 +__ne__25JSUTreeIterator<7JKRHeap>CFPC17JSUTree<7JKRHeap> = .text:0x80023BB4; // type:function size:0x18 scope:weak align:4 +getEndChild__17JSUTree<7JKRHeap>CFv = .text:0x80023BCC; // type:function size:0x8 scope:weak align:4 +__pp__25JSUTreeIterator<7JKRHeap>Fv = .text:0x80023BD4; // type:function size:0x1C scope:weak align:4 +__rf__25JSUTreeIterator<7JKRHeap>CFv = .text:0x80023BF0; // type:function size:0xC scope:weak align:4 +__ct__25JSUTreeIterator<7JKRHeap>FP17JSUTree<7JKRHeap> = .text:0x80023BFC; // type:function size:0x8 scope:weak align:4 +getNumChildren__17JSUTree<7JKRHeap>CFv = .text:0x80023C04; // type:function size:0x8 scope:weak align:4 +getFirstChild__17JSUTree<7JKRHeap>CFv = .text:0x80023C0C; // type:function size:0x14 scope:weak align:4 +getFirstLink__10JSUPtrListCFv = .text:0x80023C20; // type:function size:0x8 scope:weak align:4 +dispose__7JKRHeapFPvUl = .text:0x80023C28; // type:function size:0xA8 scope:global align:4 +dispose__7JKRHeapFPvPv = .text:0x80023CD0; // type:function size:0xA4 scope:global align:4 +dispose__7JKRHeapFv = .text:0x80023D74; // type:function size:0x50 scope:global align:4 +copyMemory__7JKRHeapFPvPvUl = .text:0x80023DC4; // type:function size:0x8C scope:global align:4 +JKRDefaultMemoryErrorRoutine__FPvUli = .text:0x80023E50; // type:function size:0x34 scope:local align:4 +setErrorHandler__7JKRHeapFPFPvUli_v = .text:0x80023E84; // type:function size:0x20 scope:global align:4 +__nw__FUl = .text:0x80023EA4; // type:function size:0x4C scope:global align:4 +__nw__FUli = .text:0x80023EF0; // type:function size:0x50 scope:global align:4 +__nw__FUlP7JKRHeapi = .text:0x80023F40; // type:function size:0x6C scope:global align:4 +__nwa__FUl = .text:0x80023FAC; // type:function size:0x4C scope:global align:4 +__nwa__FUli = .text:0x80023FF8; // type:function size:0x50 scope:global align:4 +__nwa__FUlP7JKRHeapi = .text:0x80024048; // type:function size:0x6C scope:global align:4 +__dl__FPv = .text:0x800240B4; // type:function size:0x24 scope:global align:4 +__dla__FPv = .text:0x800240D8; // type:function size:0x24 scope:global align:4 +__dt__Q27JKRHeap6TStateFv = .text:0x800240FC; // type:function size:0x414 scope:global align:4 +dump__Q27JKRHeap6TStateCFv = .text:0x80024510; // type:function size:0x34 scope:weak align:4 +isVerbose__Q27JKRHeap6TStateFv = .text:0x80024544; // type:function size:0x8 scope:weak align:4 +__ct__Q27JKRHeap6TStateFPC7JKRHeapUlb = .text:0x8002454C; // type:function size:0x80 scope:weak align:4 +isCompareOnDestructed__Q27JKRHeap6TStateCFv = .text:0x800245CC; // type:function size:0x8 scope:weak align:4 +__ct__Q37JKRHeap6TState9TLocationFv = .text:0x800245D4; // type:function size:0x14 scope:weak align:4 +__ct__Q37JKRHeap6TState9TArgumentFPC7JKRHeapUlb = .text:0x800245E8; // type:function size:0x20 scope:weak align:4 +getHeap__Q27JKRHeap6TStateCFv = .text:0x80024608; // type:function size:0x8 scope:weak align:4 +getId__Q27JKRHeap6TStateCFv = .text:0x80024610; // type:function size:0x8 scope:weak align:4 +state_register__7JKRHeapCFPQ27JKRHeap6TStateUl = .text:0x80024618; // type:function size:0x4 scope:global align:4 +state_compare__7JKRHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x8002461C; // type:function size:0x18 scope:global align:4 +state_dumpDifference__7JKRHeapFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x80024634; // type:function size:0x4 scope:global align:4 +state_dump__7JKRHeapCFRCQ27JKRHeap6TState = .text:0x80024638; // type:function size:0x4 scope:global align:4 +dump_sort__7JKRHeapFv = .text:0x8002463C; // type:function size:0x8 scope:weak align:4 +__ct__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80024644; // type:function size:0xBC scope:global align:4 +__ct__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x80024700; // type:function size:0xC8 scope:global align:4 +__dt__13JKRMemArchiveFv = .text:0x800247C8; // type:function size:0xA8 scope:global align:4 +open__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80024870; // type:function size:0x168 scope:global align:4 +open__13JKRMemArchiveFPvUl15JKRMemBreakFlag = .text:0x800249D8; // type:function size:0xAC scope:global align:4 +fetchResource__13JKRMemArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x80024A84; // type:function size:0x34 scope:global align:4 +fetchResource__13JKRMemArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl = .text:0x80024AB8; // type:function size:0xC8 scope:global align:4 +removeResourceAll__13JKRMemArchiveFv = .text:0x80024B80; // type:function size:0x50 scope:global align:4 +removeResource__13JKRMemArchiveFPv = .text:0x80024BD0; // type:function size:0x3C scope:global align:4 +fetchResource_subroutine__13JKRMemArchiveFPUcUlPUcUli = .text:0x80024C0C; // type:function size:0xD4 scope:global align:4 +getExpandedResSize__13JKRMemArchiveCFPCv = .text:0x80024CE0; // type:function size:0x90 scope:global align:4 +create__12JKRSolidHeapFUlP7JKRHeapb = .text:0x80024D70; // type:function size:0xB4 scope:global align:4 +do_destroy__12JKRSolidHeapFv = .text:0x80024E24; // type:function size:0x60 scope:global align:4 +__ct__12JKRSolidHeapFPvUlP7JKRHeapb = .text:0x80024E84; // type:function size:0x5C scope:global align:4 +__dt__12JKRSolidHeapFv = .text:0x80024EE0; // type:function size:0x68 scope:global align:4 +adjustSize__12JKRSolidHeapFv = .text:0x80024F48; // type:function size:0xC4 scope:global align:4 +do_alloc__12JKRSolidHeapFUli = .text:0x8002500C; // type:function size:0xB0 scope:global align:4 +allocFromHead__12JKRSolidHeapFUli = .text:0x800250BC; // type:function size:0xD8 scope:global align:4 +allocFromTail__12JKRSolidHeapFUli = .text:0x80025194; // type:function size:0xD0 scope:global align:4 +do_free__12JKRSolidHeapFPv = .text:0x80025264; // type:function size:0x2C scope:global align:4 +do_freeAll__12JKRSolidHeapFv = .text:0x80025290; // type:function size:0x60 scope:global align:4 +do_freeTail__12JKRSolidHeapFv = .text:0x800252F0; // type:function size:0x8C scope:global align:4 +do_fillFreeArea__12JKRSolidHeapFv = .text:0x8002537C; // type:function size:0x4 scope:global align:4 +do_resize__12JKRSolidHeapFPvUl = .text:0x80025380; // type:function size:0x30 scope:global align:4 +do_getSize__12JKRSolidHeapFPv = .text:0x800253B0; // type:function size:0x30 scope:global align:4 +check__12JKRSolidHeapFv = .text:0x800253E0; // type:function size:0x8C scope:global align:4 +dump__12JKRSolidHeapFv = .text:0x8002546C; // type:function size:0x104 scope:global align:4 +state_register__12JKRSolidHeapCFPQ27JKRHeap6TStateUl = .text:0x80025570; // type:function size:0x5C scope:global align:4 +state_compare__12JKRSolidHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x800255CC; // type:function size:0x30 scope:global align:4 +getHeapType__12JKRSolidHeapFv = .text:0x800255FC; // type:function size:0xC scope:weak align:4 +do_getFreeSize__12JKRSolidHeapFv = .text:0x80025608; // type:function size:0x8 scope:weak align:4 +do_getMaxFreeBlock__12JKRSolidHeapFv = .text:0x80025610; // type:function size:0x8 scope:weak align:4 +do_getTotalFreeSize__12JKRSolidHeapFv = .text:0x80025618; // type:function size:0x20 scope:weak align:4 +__ct__9JKRThreadFUlii = .text:0x80025638; // type:function size:0xB8 scope:global align:4 +__ct__9JKRThreadFP7JKRHeapUlii = .text:0x800256F0; // type:function size:0xA0 scope:global align:4 +__ct__9JKRThreadFP8OSThreadi = .text:0x80025790; // type:function size:0xA8 scope:global align:4 +__dt__9JKRThreadFv = .text:0x80025838; // type:function size:0xD8 scope:global align:4 +setCommon_mesgQueue__9JKRThreadFP7JKRHeapi = .text:0x80025910; // type:function size:0x70 scope:global align:4 +setCommon_heapSpecified__9JKRThreadFP7JKRHeapUli = .text:0x80025980; // type:function size:0x90 scope:global align:4 +start__9JKRThreadFPv = .text:0x80025A10; // type:function size:0x2C scope:global align:4 +run__9JKRThreadFv = .text:0x80025A3C; // type:function size:0x8 scope:weak align:4 +loopProc__15JKRThreadSwitchFv = .text:0x80025A44; // type:function size:0x184 scope:global align:4 +__dt__7JKRTaskFv = .text:0x80025BC8; // type:function size:0x110 scope:global align:4 +create__7JKRTaskFiiUlP7JKRHeap = .text:0x80025CD8; // type:function size:0x2A4 scope:global align:4 +run__7JKRTaskFv = .text:0x80025F7C; // type:function size:0x9C scope:global align:4 +request__7JKRTaskFPFPv_vPvPv = .text:0x80026018; // type:function size:0xB0 scope:global align:4 +__sinit_JKRThread_cpp = .text:0x800260C8; // type:function size:0x70 scope:local align:4 +__dt__17JSUList<7JKRTask>Fv = .text:0x80026138; // type:function size:0x54 scope:weak align:4 +__dt__19JSUList<9JKRThread>Fv = .text:0x8002618C; // type:function size:0x54 scope:weak align:4 +write__15JSUOutputStreamFPCvl = .text:0x800261E0; // type:function size:0x58 scope:global align:4 +write__15JSUOutputStreamFPCc = .text:0x80026238; // type:function size:0xF8 scope:global align:4 +__dt__10JSUIosBaseFv = .text:0x80026330; // type:function size:0x48 scope:weak align:4 +__dt__14JSUInputStreamFv = .text:0x80026378; // type:function size:0x5C scope:global align:4 +read__14JSUInputStreamFPvl = .text:0x800263D4; // type:function size:0x58 scope:global align:4 +read__14JSUInputStreamFPc = .text:0x8002642C; // type:function size:0xB0 scope:global align:4 +skip__14JSUInputStreamFl = .text:0x800264DC; // type:function size:0x88 scope:global align:4 +align__20JSURandomInputStreamFl = .text:0x80026564; // type:function size:0x8C scope:global align:4 +skip__20JSURandomInputStreamFl = .text:0x800265F0; // type:function size:0x5C scope:global align:4 +peek__20JSURandomInputStreamFPvl = .text:0x8002664C; // type:function size:0xBC scope:global align:4 +seek__20JSURandomInputStreamFl17JSUStreamSeekFrom = .text:0x80026708; // type:function size:0x44 scope:global align:4 +__dt__20JSURandomInputStreamFv = .text:0x8002674C; // type:function size:0x6C scope:weak align:4 +__ct__10JSUPtrLinkFPv = .text:0x800267B8; // type:function size:0x18 scope:global align:4 +__dt__10JSUPtrLinkFv = .text:0x800267D0; // type:function size:0x60 scope:global align:4 +__ct__10JSUPtrListFb = .text:0x80026830; // type:function size:0x38 scope:global align:4 +__dt__10JSUPtrListFv = .text:0x80026868; // type:function size:0x68 scope:global align:4 +initiate__10JSUPtrListFv = .text:0x800268D0; // type:function size:0x14 scope:global align:4 +append__10JSUPtrListFP10JSUPtrLink = .text:0x800268E4; // type:function size:0xB8 scope:global align:4 +prepend__10JSUPtrListFP10JSUPtrLink = .text:0x8002699C; // type:function size:0xB8 scope:global align:4 +insert__10JSUPtrListFP10JSUPtrLinkP10JSUPtrLink = .text:0x80026A54; // type:function size:0x1D0 scope:global align:4 +remove__10JSUPtrListFP10JSUPtrLink = .text:0x80026C24; // type:function size:0xB0 scope:global align:4 +getNthLink__10JSUPtrListCFUl = .text:0x80026CD4; // type:function size:0x88 scope:global align:4 +setBuffer__20JSUMemoryInputStreamFPCvl = .text:0x80026D5C; // type:function size:0x14 scope:global align:4 +readData__20JSUMemoryInputStreamFPvl = .text:0x80026D70; // type:function size:0x78 scope:global align:4 +seekPos__20JSUMemoryInputStreamFl17JSUStreamSeekFrom = .text:0x80026DE8; // type:function size:0x7C scope:global align:4 +__dt__20JSUMemoryInputStreamFv = .text:0x80026E64; // type:function size:0x70 scope:weak align:4 +getLength__20JSUMemoryInputStreamCFv = .text:0x80026ED4; // type:function size:0x8 scope:weak align:4 +getPosition__20JSUMemoryInputStreamCFv = .text:0x80026EDC; // type:function size:0x8 scope:weak align:4 +__ct__18JSUFileInputStreamFP7JKRFile = .text:0x80026EE4; // type:function size:0x44 scope:global align:4 +readData__18JSUFileInputStreamFPvl = .text:0x80026F28; // type:function size:0xE0 scope:global align:4 +seekPos__18JSUFileInputStreamFl17JSUStreamSeekFrom = .text:0x80027008; // type:function size:0xE8 scope:global align:4 +getLength__18JSUFileInputStreamCFv = .text:0x800270F0; // type:function size:0x30 scope:weak align:4 +getPosition__18JSUFileInputStreamCFv = .text:0x80027120; // type:function size:0x8 scope:weak align:4 +parseVariableUInt_16_32_following__Q27JGadget6binaryFPCvPUlPUlPQ37JGadget6binary5TEBit = .text:0x80027128; // type:function size:0x68 scope:global align:4 +__dt__Q37JGadget6binary19TParse_header_blockFv = .text:0x80027190; // type:function size:0x48 scope:global align:4 +parse_next__Q37JGadget6binary19TParse_header_blockFPPCvUl = .text:0x800271D8; // type:function size:0x10C scope:global align:4 +__dt__Q27JGadget13TNodeLinkListFv = .text:0x800272E4; // type:function size:0x3C scope:global align:4 +Insert__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorPQ27JGadget13TLinkListNode = .text:0x80027320; // type:function size:0x2C scope:global align:4 +Erase__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x8002734C; // type:function size:0x24 scope:global align:4 +Remove__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x80027370; // type:function size:0x2C scope:global align:4 +remove_if>__Q27JGadget13TNodeLinkListFQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_ = .text:0x8002739C; // type:function size:0xE8 scope:local align:4 +__ct__Q27JGadget18TList_pointer_voidFRCQ27JGadget14TAllocator = .text:0x80027484; // type:function size:0x20 scope:global align:4 +__dt__Q27JGadget18TList_pointer_voidFv = .text:0x800274A4; // type:function size:0xC0 scope:global align:4 +insert__Q27JGadget18TList_pointer_voidFQ37JGadget36TList>8iteratorRCPv = .text:0x80027564; // type:function size:0x98 scope:global align:4 +erase__Q27JGadget18TList_pointer_voidFQ37JGadget36TList>8iterator = .text:0x800275FC; // type:function size:0x70 scope:global align:4 +extend_default__Q27JGadget6vectorFUlUlUl = .text:0x8002766C; // type:function size:0x8 scope:global align:4 +__ct__Q27JGadget20TVector_pointer_voidFRCQ27JGadget14TAllocator = .text:0x80027674; // type:function size:0x2C scope:global align:4 +insert__Q27JGadget38TVector>FPPvUlRCPv = .text:0x800276A0; // type:function size:0x78 scope:weak align:4 +Insert_raw__Q27JGadget38TVector>FPPvUl = .text:0x80027718; // type:function size:0x470 scope:weak align:4 +__dt__Q27JGadget20TVector_pointer_voidFv = .text:0x80027B88; // type:function size:0x108 scope:global align:4 +insert__Q27JGadget20TVector_pointer_voidFPPvRCPv = .text:0x80027C90; // type:function size:0x20 scope:global align:4 +insert__Q27JGadget38TVector>FPPvRCPv = .text:0x80027CB0; // type:function size:0x58 scope:weak align:4 +erase__Q27JGadget20TVector_pointer_voidFPPvPPv = .text:0x80027D08; // type:function size:0xB8 scope:global align:4 +create__12JUTAssertionFv = .text:0x80027DC0; // type:function size:0x4 scope:global align:4 +flushMessage__12JUTAssertionFv = .text:0x80027DC4; // type:function size:0xEC scope:global align:4 +flushMessage_dbPrint__12JUTAssertionFv = .text:0x80027EB0; // type:function size:0x214 scope:global align:4 +setMessageCount__12JUTAssertionFi = .text:0x800280C4; // type:function size:0x18 scope:global align:4 +create__10JUTConsoleFUiUiP7JKRHeap = .text:0x800280DC; // type:function size:0x88 scope:global align:4 +create__10JUTConsoleFUiPvUl = .text:0x80028164; // type:function size:0x98 scope:global align:4 +__ct__10JUTConsoleFUiUib = .text:0x800281FC; // type:function size:0x100 scope:global align:4 +__dt__10JUTConsoleFv = .text:0x800282FC; // type:function size:0x70 scope:global align:4 +getObjectSizeFromBufferSize__10JUTConsoleFUiUi = .text:0x8002836C; // type:function size:0x10 scope:global align:4 +getLineFromObjectSize__10JUTConsoleFUlUi = .text:0x8002837C; // type:function size:0x10 scope:global align:4 +clear__10JUTConsoleFv = .text:0x8002838C; // type:function size:0x5C scope:global align:4 +doDraw__10JUTConsoleCFQ210JUTConsole12EConsoleType = .text:0x800283E8; // type:function size:0x55C scope:global align:4 +__dt__13J2DOrthoGraphFv = .text:0x80028944; // type:function size:0x5C scope:weak align:4 +print_f__10JUTConsoleFPCce = .text:0x800289A0; // type:function size:0x8C scope:global align:4 +print__10JUTConsoleFPCc = .text:0x80028A2C; // type:function size:0x300 scope:global align:4 +JUTConsole_print_f_va_ = .text:0x80028D2C; // type:function size:0x48 scope:global align:4 +scroll__10JUTConsoleFi = .text:0x80028D74; // type:function size:0xDC scope:global align:4 +getUsedLine__10JUTConsoleCFv = .text:0x80028E50; // type:function size:0x24 scope:global align:4 +getLineOffset__10JUTConsoleCFv = .text:0x80028E74; // type:function size:0x24 scope:global align:4 +createManager__17JUTConsoleManagerFP7JKRHeap = .text:0x80028E98; // type:function size:0x68 scope:global align:4 +appendConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80028F00; // type:function size:0x70 scope:global align:4 +removeConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80028F70; // type:function size:0xC8 scope:global align:4 +draw__17JUTConsoleManagerCFv = .text:0x80029038; // type:function size:0xCC scope:global align:4 +drawDirect__17JUTConsoleManagerCFb = .text:0x80029104; // type:function size:0x7C scope:global align:4 +setDirectConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80029180; // type:function size:0x124 scope:global align:4 +JUTSetReportConsole = .text:0x800292A4; // type:function size:0x8 scope:global align:4 +JUTGetReportConsole = .text:0x800292AC; // type:function size:0x8 scope:global align:4 +JUTSetWarningConsole = .text:0x800292B4; // type:function size:0x8 scope:global align:4 +JUTGetWarningConsole = .text:0x800292BC; // type:function size:0x8 scope:global align:4 +JUTReportConsole_f = .text:0x800292C4; // type:function size:0xDC scope:global align:4 +JUTReportConsole = .text:0x800293A0; // type:function size:0x2C scope:global align:4 +JUTWarningConsole_f = .text:0x800293CC; // type:function size:0xDC scope:global align:4 +JUTWarningConsole = .text:0x800294A8; // type:function size:0x2C scope:global align:4 +start__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x800294D4; // type:function size:0xAC scope:global align:4 +changeFont__10JUTDbPrintFP7JUTFont = .text:0x80029580; // type:function size:0x18 scope:global align:4 +flush__10JUTDbPrintFv = .text:0x80029598; // type:function size:0x38 scope:global align:4 +flush__10JUTDbPrintFiiii = .text:0x800295D0; // type:function size:0x174 scope:global align:4 +drawString__10JUTDbPrintFiiiPCUc = .text:0x80029744; // type:function size:0xE8 scope:global align:4 +__ct__13JUTDirectFileFv = .text:0x8002982C; // type:function size:0x24 scope:global align:4 +__dt__13JUTDirectFileFv = .text:0x80029850; // type:function size:0x44 scope:global align:4 +fopen__13JUTDirectFileFPCc = .text:0x80029894; // type:function size:0xA8 scope:global align:4 +fclose__13JUTDirectFileFv = .text:0x8002993C; // type:function size:0x60 scope:global align:4 +fgets__13JUTDirectFileFPvi = .text:0x8002999C; // type:function size:0x230 scope:global align:4 +start__14JUTDirectPrintFv = .text:0x80029BCC; // type:function size:0x74 scope:global align:4 +erase__14JUTDirectPrintFiiii = .text:0x80029C40; // type:function size:0xF8 scope:global align:4 +drawChar__14JUTDirectPrintFiii = .text:0x80029D38; // type:function size:0x254 scope:global align:4 +changeFrameBuffer__14JUTDirectPrintFPvUsUs = .text:0x80029F8C; // type:function size:0x34 scope:global align:4 +drawString__14JUTDirectPrintFUsUsPc = .text:0x80029FC0; // type:function size:0x2C scope:global align:4 +drawString_f__14JUTDirectPrintFUsUsPCce = .text:0x80029FEC; // type:function size:0x174 scope:global align:4 +setCharColor__14JUTDirectPrintFQ28JUtility6TColor = .text:0x8002A160; // type:function size:0x30 scope:global align:4 +setCharColor__14JUTDirectPrintFUcUcUc = .text:0x8002A190; // type:function size:0x17C scope:global align:4 +create__12JUTExceptionFP14JUTDirectPrint = .text:0x8002A30C; // type:function size:0x110 scope:global align:4 +run__12JUTExceptionFv = .text:0x8002A41C; // type:function size:0x120 scope:global align:4 +errorHandler__12JUTExceptionFUsP9OSContextUlUl = .text:0x8002A53C; // type:function size:0x104 scope:global align:4 +panic_f__12JUTExceptionFPCciPCce = .text:0x8002A640; // type:function size:0x1A0 scope:global align:4 +setFPException__12JUTExceptionFUl = .text:0x8002A7E0; // type:function size:0x48 scope:global align:4 +showFloat__12JUTExceptionFP9OSContext = .text:0x8002A828; // type:function size:0x770 scope:global align:4 +showStack__12JUTExceptionFP9OSContext = .text:0x8002AF98; // type:function size:0xFC scope:global align:4 +showMainInfo__12JUTExceptionFUsP9OSContextUlUl = .text:0x8002B094; // type:function size:0x244 scope:global align:4 +showMapInfo_subroutine__12JUTExceptionFUlb = .text:0x8002B2D8; // type:function size:0x258 scope:global align:4 +showGPRMap__12JUTExceptionFP9OSContext = .text:0x8002B530; // type:function size:0x2F4 scope:global align:4 +printDebugInfo__12JUTExceptionFQ212JUTException9EInfoPageUsP9OSContextUlUl = .text:0x8002B824; // type:function size:0x3AC scope:global align:4 +readPad__12JUTExceptionFPUlPUl = .text:0x8002BBD0; // type:function size:0x570 scope:global align:4 +printContext__12JUTExceptionFUsP9OSContextUlUl = .text:0x8002C140; // type:function size:0x4E4 scope:global align:4 +waitTime__12JUTExceptionFl = .text:0x8002C624; // type:function size:0x88 scope:global align:4 +createFB__12JUTExceptionFv = .text:0x8002C6AC; // type:function size:0xF4 scope:global align:4 +setPreUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x8002C7A0; // type:function size:0x10 scope:global align:4 +appendMapFile__12JUTExceptionFPCc = .text:0x8002C7B0; // type:function size:0x94 scope:global align:4 +queryMapAddress__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x8002C844; // type:function size:0xE0 scope:global align:4 +queryMapAddress_single__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x8002C924; // type:function size:0x33C scope:global align:4 +createConsole__12JUTExceptionFPvUl = .text:0x8002CC60; // type:function size:0xE0 scope:global align:4 +__ct__13JUTExternalFBFP16_GXRenderModeObj8_GXGammaPvUl = .text:0x8002CD40; // type:function size:0x20 scope:global align:4 +__dt__12JUTExceptionFv = .text:0x8002CD60; // type:function size:0x60 scope:weak align:4 +__sinit_JUTException_cpp = .text:0x8002CDC0; // type:function size:0x48 scope:local align:4 +__dt__39JSUListFv = .text:0x8002CE08; // type:function size:0x54 scope:weak align:4 +__ct__8JUTFaderFiiiiQ28JUtility6TColor = .text:0x8002CE5C; // type:function size:0xAC scope:global align:4 +control__8JUTFaderFv = .text:0x8002CF08; // type:function size:0x100 scope:global align:4 +draw__8JUTFaderFv = .text:0x8002D008; // type:function size:0x90 scope:global align:4 +startFadeIn__8JUTFaderFi = .text:0x8002D098; // type:function size:0x30 scope:global align:4 +startFadeOut__8JUTFaderFi = .text:0x8002D0C8; // type:function size:0x34 scope:global align:4 +__dt__8JUTFaderFv = .text:0x8002D0FC; // type:function size:0x48 scope:weak align:4 +__ct__7JUTFontFv = .text:0x8002D144; // type:function size:0x2C scope:global align:4 +initialize_state__7JUTFontFv = .text:0x8002D170; // type:function size:0x4C scope:global align:4 +setCharColor__7JUTFontFQ28JUtility6TColor = .text:0x8002D1BC; // type:function size:0x54 scope:global align:4 +setGradColor__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8002D210; // type:function size:0x64 scope:global align:4 +drawString_size_scale__7JUTFontFffffPCcUlb = .text:0x8002D274; // type:function size:0x118 scope:global align:4 +__dt__7JUTFontFv = .text:0x8002D38C; // type:function size:0x48 scope:weak align:4 +setGX__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8002D3D4; // type:function size:0x2C scope:weak align:4 +getCellWidth__7JUTFontCFv = .text:0x8002D400; // type:function size:0x2C scope:weak align:4 +getCellHeight__7JUTFontCFv = .text:0x8002D42C; // type:function size:0x2C scope:weak align:4 +__ct__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x8002D458; // type:function size:0xD4 scope:global align:4 +__dt__10JUTGamePadFv = .text:0x8002D52C; // type:function size:0xAC scope:global align:4 +initList__10JUTGamePadFv = .text:0x8002D5D8; // type:function size:0x3C scope:global align:4 +init__10JUTGamePadFv = .text:0x8002D614; // type:function size:0x38 scope:global align:4 +clear__10JUTGamePadFv = .text:0x8002D64C; // type:function size:0x14 scope:global align:4 +read__10JUTGamePadFv = .text:0x8002D660; // type:function size:0x2C8 scope:global align:4 +assign__10JUTGamePadFv = .text:0x8002D928; // type:function size:0xA8 scope:global align:4 +checkResetCallback__10JUTGamePadFx = .text:0x8002D9D0; // type:function size:0x6C scope:global align:4 +update__10JUTGamePadFv = .text:0x8002DA3C; // type:function size:0x32C scope:global align:4 +checkResetSwitch__10JUTGamePadFv = .text:0x8002DD68; // type:function size:0x80 scope:global align:4 +clearForReset__10JUTGamePadFv = .text:0x8002DDE8; // type:function size:0x2C scope:global align:4 +clear__Q210JUTGamePad7CButtonFv = .text:0x8002DE14; // type:function size:0x3C scope:global align:4 +update__Q210JUTGamePad7CButtonFPC9PADStatusUl = .text:0x8002DE50; // type:function size:0x190 scope:global align:4 +clear__Q210JUTGamePad6CStickFv = .text:0x8002DFE0; // type:function size:0x1C scope:global align:4 +update__Q210JUTGamePad6CStickFScScQ210JUTGamePad10EStickModeQ210JUTGamePad11EWhichStickUl = .text:0x8002DFFC; // type:function size:0x2B8 scope:global align:4 +getButton__Q210JUTGamePad6CStickFUl = .text:0x8002E2B4; // type:function size:0xB4 scope:global align:4 +clear__Q210JUTGamePad7CRumbleFP10JUTGamePad = .text:0x8002E368; // type:function size:0x74 scope:global align:4 +stopMotor__Q210JUTGamePad7CRumbleFib = .text:0x8002E3DC; // type:function size:0x70 scope:global align:4 +update__Q210JUTGamePad7CRumbleFs = .text:0x8002E44C; // type:function size:0x25C scope:global align:4 +setEnabled__Q210JUTGamePad7CRumbleFUl = .text:0x8002E6A8; // type:function size:0x124 scope:global align:4 +setRepeat__Q210JUTGamePad7CButtonFUlUlUl = .text:0x8002E7CC; // type:function size:0x1C scope:global align:4 +setButtonRepeat__10JUTGamePadFUlUlUl = .text:0x8002E7E8; // type:function size:0x4C scope:global align:4 +recalibrate__10JUTGamePadFUl = .text:0x8002E834; // type:function size:0x8C scope:global align:4 +checkCallback__19JUTGamePadLongPressFiUl = .text:0x8002E8C0; // type:function size:0x64 scope:global align:4 +__sinit_JUTGamePad_cpp = .text:0x8002E924; // type:function size:0x110 scope:local align:4 +__dt__30JSUList<19JUTGamePadLongPress>Fv = .text:0x8002EA34; // type:function size:0x54 scope:weak align:4 +__ct__Q210JUTGamePad6CStickFv = .text:0x8002EA88; // type:function size:0x1C scope:weak align:4 +__ct__Q210JUTGamePad7CButtonFv = .text:0x8002EAA4; // type:function size:0x3C scope:weak align:4 +__dt__21JSUList<10JUTGamePad>Fv = .text:0x8002EAE0; // type:function size:0x54 scope:weak align:4 +__ct__12JUTGraphFifoFUl = .text:0x8002EB34; // type:function size:0xDC scope:global align:4 +__dt__12JUTGraphFifoFv = .text:0x8002EC10; // type:function size:0xBC scope:global align:4 +__ct__10JUTNameTabFv = .text:0x8002ECCC; // type:function size:0x40 scope:global align:4 +__ct__10JUTNameTabFPC7ResNTAB = .text:0x8002ED0C; // type:function size:0x3C scope:global align:4 +setResource__10JUTNameTabFPC7ResNTAB = .text:0x8002ED48; // type:function size:0x3C scope:global align:4 +getIndex__10JUTNameTabCFPCc = .text:0x8002ED84; // type:function size:0x98 scope:global align:4 +getName__10JUTNameTabCFUs = .text:0x8002EE1C; // type:function size:0x30 scope:global align:4 +calcKeyCode__10JUTNameTabCFPCc = .text:0x8002EE4C; // type:function size:0x30 scope:global align:4 +__dt__10JUTNameTabFv = .text:0x8002EE7C; // type:function size:0x48 scope:weak align:4 +storeTLUT__10JUTPaletteF7_GXTlutP7ResTLUT = .text:0x8002EEC4; // type:function size:0x98 scope:global align:4 +storeTLUT__10JUTPaletteF7_GXTlut10_GXTlutFmt15JUTTransparencyUsPv = .text:0x8002EF5C; // type:function size:0x40 scope:global align:4 +load__10JUTPaletteFv = .text:0x8002EF9C; // type:function size:0x44 scope:global align:4 +__ct__Q210JUTProcBar5CTimeFv = .text:0x8002EFE0; // type:function size:0x14 scope:weak align:4 +create__10JUTProcBarFv = .text:0x8002EFF4; // type:function size:0x130 scope:global align:4 +destroy__10JUTProcBarFv = .text:0x8002F124; // type:function size:0x40 scope:global align:4 +clear__10JUTProcBarFv = .text:0x8002F164; // type:function size:0xD0 scope:global align:4 +draw__10JUTProcBarFv = .text:0x8002F234; // type:function size:0x34 scope:global align:4 +drawProcessBar__10JUTProcBarFv = .text:0x8002F268; // type:function size:0x1814 scope:global align:4 +drawHeapBar__10JUTProcBarFv = .text:0x80030A7C; // type:function size:0x704 scope:global align:4 +__ct__10JUTResFontFv = .text:0x80031180; // type:function size:0x4C scope:global align:4 +__ct__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x800311CC; // type:function size:0x74 scope:global align:4 +__dt__10JUTResFontFv = .text:0x80031240; // type:function size:0x8C scope:global align:4 +deleteMemBlocks_ResFont__10JUTResFontFv = .text:0x800312CC; // type:function size:0x24 scope:global align:4 +initialize_state__10JUTResFontFv = .text:0x800312F0; // type:function size:0x2C scope:global align:4 +initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8003131C; // type:function size:0x80 scope:global align:4 +protected_initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8003139C; // type:function size:0x138 scope:global align:4 +countBlock__10JUTResFontFv = .text:0x800314D4; // type:function size:0x10C scope:global align:4 +setBlock__10JUTResFontFv = .text:0x800315E0; // type:function size:0x13C scope:global align:4 +setGX__10JUTResFontFv = .text:0x8003171C; // type:function size:0xF8 scope:global align:4 +setGX__10JUTResFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80031814; // type:function size:0x240 scope:global align:4 +drawChar_scale__10JUTResFontFffffib = .text:0x80031A54; // type:function size:0x404 scope:global align:4 +getDescent__10JUTResFontCFv = .text:0x80031E58; // type:function size:0xC scope:weak align:4 +getHeight__10JUTResFontCFv = .text:0x80031E64; // type:function size:0x5C scope:weak align:4 +getAscent__10JUTResFontCFv = .text:0x80031EC0; // type:function size:0xC scope:weak align:4 +loadFont__10JUTResFontFi11_GXTexMapIDPQ27JUTFont6TWidth = .text:0x80031ECC; // type:function size:0x88 scope:global align:4 +getWidthEntry__10JUTResFontCFiPQ27JUTFont6TWidth = .text:0x80031F54; // type:function size:0xC0 scope:global align:4 +getCellWidth__10JUTResFontCFv = .text:0x80032014; // type:function size:0x4C scope:global align:4 +getWidth__10JUTResFontCFv = .text:0x80032060; // type:function size:0xC scope:weak align:4 +getCellHeight__10JUTResFontCFv = .text:0x8003206C; // type:function size:0x4C scope:global align:4 +isLeadByte__10JUTResFontCFi = .text:0x800320B8; // type:function size:0x30 scope:global align:4 +getFontCode__10JUTResFontCFi = .text:0x800320E8; // type:function size:0x1AC scope:global align:4 +getFontType__10JUTResFontCFv = .text:0x80032294; // type:function size:0xC scope:weak align:4 +loadImage__10JUTResFontFi11_GXTexMapID = .text:0x800322A0; // type:function size:0x180 scope:global align:4 +convertSjis__10JUTResFontCFiPUs = .text:0x80032420; // type:function size:0x44 scope:global align:4 +getResFont__10JUTResFontCFv = .text:0x80032464; // type:function size:0x8 scope:weak align:4 +getLeading__10JUTResFontCFv = .text:0x8003246C; // type:function size:0xC scope:weak align:4 +getResource__15JUTResReferenceFP14JSUInputStreamUlP10JKRArchive = .text:0x80032478; // type:function size:0xB8 scope:global align:4 +getResource__15JUTResReferenceFPCvUlP10JKRArchive = .text:0x80032530; // type:function size:0xA4 scope:global align:4 +getResource__15JUTResReferenceFUlP10JKRArchive = .text:0x800325D4; // type:function size:0x78 scope:global align:4 +__ct__10JUTRomFontFP7JKRHeap = .text:0x8003264C; // type:function size:0x54 scope:global align:4 +initiate__10JUTRomFontFP7JKRHeap = .text:0x800326A0; // type:function size:0x54 scope:global align:4 +__dt__10JUTRomFontFv = .text:0x800326F4; // type:function size:0x9C scope:global align:4 +loadImage__10JUTRomFontFP7JKRHeap = .text:0x80032790; // type:function size:0xCC scope:global align:4 +setGX__10JUTRomFontFv = .text:0x8003285C; // type:function size:0xF8 scope:global align:4 +drawChar_scale__10JUTRomFontFffffib = .text:0x80032954; // type:function size:0x480 scope:global align:4 +getHeight__10JUTRomFontCFv = .text:0x80032DD4; // type:function size:0x5C scope:weak align:4 +getDescent__10JUTRomFontCFv = .text:0x80032E30; // type:function size:0xC scope:weak align:4 +getAscent__10JUTRomFontCFv = .text:0x80032E3C; // type:function size:0xC scope:weak align:4 +getCellHeight__10JUTRomFontCFv = .text:0x80032E48; // type:function size:0xC scope:weak align:4 +getCellWidth__10JUTRomFontCFv = .text:0x80032E54; // type:function size:0xC scope:weak align:4 +getWidthEntry__10JUTRomFontCFiPQ27JUTFont6TWidth = .text:0x80032E60; // type:function size:0x60 scope:global align:4 +isLeadByte__10JUTRomFontCFi = .text:0x80032EC0; // type:function size:0x30 scope:global align:4 +getWidth__10JUTRomFontCFv = .text:0x80032EF0; // type:function size:0xC scope:weak align:4 +getLeading__10JUTRomFontCFv = .text:0x80032EFC; // type:function size:0xC scope:weak align:4 +getResFont__10JUTRomFontCFv = .text:0x80032F08; // type:function size:0x8 scope:weak align:4 +getFontType__10JUTRomFontCFv = .text:0x80032F10; // type:function size:0xC scope:weak align:4 +__ct__10JUTTextureFii9_GXTexFmt = .text:0x80032F1C; // type:function size:0xF4 scope:global align:4 +__dt__10JUTTextureFv = .text:0x80033010; // type:function size:0x74 scope:global align:4 +storeTIMG__10JUTTextureFPC7ResTIMGUc = .text:0x80033084; // type:function size:0x1AC scope:global align:4 +storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette = .text:0x80033230; // type:function size:0x34 scope:global align:4 +storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette7_GXTlut = .text:0x80033264; // type:function size:0x138 scope:global align:4 +attachPalette__10JUTTextureFP10JUTPalette = .text:0x8003339C; // type:function size:0x58 scope:global align:4 +init__10JUTTextureFv = .text:0x800333F4; // type:function size:0x50 scope:global align:4 +initTexObj__10JUTTextureFv = .text:0x80033444; // type:function size:0xF0 scope:global align:4 +initTexObj__10JUTTextureF7_GXTlut = .text:0x80033534; // type:function size:0xFC scope:global align:4 +load__10JUTTextureF11_GXTexMapID = .text:0x80033630; // type:function size:0x50 scope:global align:4 +capture__10JUTTextureFii9_GXTexFmtbUc = .text:0x80033680; // type:function size:0xC4 scope:global align:4 +createManager__8JUTVideoFPC16_GXRenderModeObj = .text:0x80033744; // type:function size:0x58 scope:global align:4 +destroyManager__8JUTVideoFv = .text:0x8003379C; // type:function size:0x48 scope:global align:4 +__ct__8JUTVideoFPC16_GXRenderModeObj = .text:0x800337E4; // type:function size:0xF4 scope:global align:4 +__dt__8JUTVideoFv = .text:0x800338D8; // type:function size:0x68 scope:global align:4 +preRetraceProc__8JUTVideoFUl = .text:0x80033940; // type:function size:0x228 scope:global align:4 +drawDoneStart__8JUTVideoFv = .text:0x80033B68; // type:function size:0x28 scope:global align:4 +dummyNoDrawWait__8JUTVideoFv = .text:0x80033B90; // type:function size:0xC scope:global align:4 +drawDoneCallback__8JUTVideoFv = .text:0x80033B9C; // type:function size:0x88 scope:global align:4 +postRetraceProc__8JUTVideoFUl = .text:0x80033C24; // type:function size:0x4C scope:global align:4 +setRenderMode__8JUTVideoFPC16_GXRenderModeObj = .text:0x80033C70; // type:function size:0x78 scope:global align:4 +waitRetraceIfNeed__8JUTVideoFv = .text:0x80033CE8; // type:function size:0x4 scope:global align:4 +setPostRetraceCallback__8JUTVideoFPFUl_v = .text:0x80033CEC; // type:function size:0x10 scope:global align:4 +clearIndex__6JUTXfbFv = .text:0x80033CFC; // type:function size:0x14 scope:global align:4 +createManager__6JUTXfbFP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80033D10; // type:function size:0xA8 scope:global align:4 +destroyManager__6JUTXfbFv = .text:0x80033DB8; // type:function size:0x90 scope:global align:4 +initiate__6JUTXfbFUsUsP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80033E48; // type:function size:0xE8 scope:global align:4 +accumeXfbSize__6JUTXfbFv = .text:0x80033F30; // type:function size:0x64 scope:global align:4 +__ct__12JUTCacheFontFPC7ResFONTUlP7JKRHeap = .text:0x80033F94; // type:function size:0x90 scope:global align:4 +__dt__12JUTCacheFontFv = .text:0x80034024; // type:function size:0x94 scope:global align:4 +deleteMemBlocks_CacheFont__12JUTCacheFontFv = .text:0x800340B8; // type:function size:0x84 scope:global align:4 +initialize_state__12JUTCacheFontFv = .text:0x8003413C; // type:function size:0x3C scope:global align:4 +getMemorySize__12JUTCacheFontFPC7ResFONTPUsPUlPUsPUlPUsPUlPUl = .text:0x80034178; // type:function size:0x188 scope:global align:4 +initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x80034300; // type:function size:0xB4 scope:global align:4 +internal_initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap = .text:0x800343B4; // type:function size:0x184 scope:global align:4 +allocArea__12JUTCacheFontFPvUlP7JKRHeap = .text:0x80034538; // type:function size:0x1C4 scope:global align:4 +allocArray__12JUTCacheFontFP7JKRHeap = .text:0x800346FC; // type:function size:0xE8 scope:global align:4 +setBlock__12JUTCacheFontFv = .text:0x800347E4; // type:function size:0x210 scope:global align:4 +loadImage__12JUTCacheFontFi11_GXTexMapID = .text:0x800349F4; // type:function size:0xBC scope:global align:4 +loadCache_char_subroutine__12JUTCacheFontFPib = .text:0x80034AB0; // type:function size:0x298 scope:global align:4 +loadCache_string__12JUTCacheFontFPCcb = .text:0x80034D48; // type:function size:0xC8 scope:global align:4 +invalidiateAllCache__12JUTCacheFontFv = .text:0x80034E10; // type:function size:0x88 scope:global align:4 +unlink__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x80034E98; // type:function size:0x44 scope:global align:4 +prepend__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo = .text:0x80034EDC; // type:function size:0x2C scope:global align:4 +JMAEulerToQuat__FsssP10Quaternion = .text:0x80034F08; // type:function size:0xBC scope:global align:4 +JMAQuatLerp__FPC10QuaternionPC10QuaternionfP10Quaternion = .text:0x80034FC4; // type:function size:0xD8 scope:global align:4 +JMAMTXApplyScale__FPA4_CfPA4_ffff = .text:0x8003509C; // type:function size:0x64 scope:global align:4 +__ct__Q25JMath13TRandom_fast_FUl = .text:0x80035100; // type:function size:0x8 scope:global align:4 +atan2___Q25JMath18TAtanTable<1024,f>CFff = .text:0x80035108; // type:function size:0x258 scope:global align:4 +__sinit_JMATrigonometric_cpp = .text:0x80035360; // type:function size:0x1C0 scope:local align:4 +__ct__Q23std9pairFv = .text:0x80035520; // type:function size:0x10 scope:weak align:4 +__ct__13J2DOrthoGraphFv = .text:0x80035530; // type:function size:0x60 scope:global align:4 +__dt__14J2DGrafContextFv = .text:0x80035590; // type:function size:0x48 scope:weak align:4 +__ct__13J2DOrthoGraphFffffff = .text:0x800355D8; // type:function size:0xE4 scope:global align:4 +setPort__13J2DOrthoGraphFv = .text:0x800356BC; // type:function size:0x58 scope:global align:4 +setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2ff = .text:0x80035714; // type:function size:0x34 scope:global align:4 +setLookat__13J2DOrthoGraphFv = .text:0x80035748; // type:function size:0x3C scope:global align:4 +scissorBounds__13J2DOrthoGraphFPQ29JGeometry8TBox2PCQ29JGeometry8TBox2 = .text:0x80035784; // type:function size:0x10C scope:global align:4 +J2DDrawLine__FffffQ28JUtility6TColori = .text:0x80035890; // type:function size:0x168 scope:global align:4 +J2DFillBox__FffffQ28JUtility6TColor = .text:0x800359F8; // type:function size:0x48 scope:global align:4 +J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColor = .text:0x80035A40; // type:function size:0xCC scope:global align:4 +J2DFillBox__FffffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80035B0C; // type:function size:0x6C scope:global align:4 +J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80035B78; // type:function size:0xD0 scope:global align:4 +J2DDrawFrame__FffffQ28JUtility6TColorUc = .text:0x80035C48; // type:function size:0x4C scope:global align:4 +J2DDrawFrame__FRCQ29JGeometry8TBox2Q28JUtility6TColorUc = .text:0x80035C94; // type:function size:0xE4 scope:global align:4 +getGrafType__13J2DOrthoGraphCFv = .text:0x80035D78; // type:function size:0x8 scope:weak align:4 +place__14J2DGrafContextFffff = .text:0x80035D80; // type:function size:0x48 scope:weak align:4 +__ct__13J2DPerspGraphFv = .text:0x80035DC8; // type:function size:0x4C scope:global align:4 +set__13J2DPerspGraphFfff = .text:0x80035E14; // type:function size:0x60 scope:global align:4 +setFovy__13J2DPerspGraphFf = .text:0x80035E74; // type:function size:0x2C scope:global align:4 +setPort__13J2DPerspGraphFv = .text:0x80035EA0; // type:function size:0x68 scope:global align:4 +setLookat__13J2DPerspGraphFv = .text:0x80035F08; // type:function size:0x68 scope:global align:4 +makeLookat__13J2DPerspGraphFv = .text:0x80035F70; // type:function size:0xA0 scope:global align:4 +__dt__13J2DPerspGraphFv = .text:0x80036010; // type:function size:0x5C scope:weak align:4 +getGrafType__13J2DPerspGraphCFv = .text:0x8003606C; // type:function size:0x8 scope:weak align:4 +__ct__14J2DGrafContextFffff = .text:0x80036074; // type:function size:0xAC scope:global align:4 +setPort__14J2DGrafContextFv = .text:0x80036120; // type:function size:0x90 scope:global align:4 +setup2D__14J2DGrafContextFv = .text:0x800361B0; // type:function size:0x1DC scope:global align:4 +setScissor__14J2DGrafContextFv = .text:0x8003638C; // type:function size:0x2A8 scope:global align:4 +scissor__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80036634; // type:function size:0x24 scope:global align:4 +place__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80036658; // type:function size:0x34 scope:global align:4 +setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003668C; // type:function size:0x11C scope:global align:4 +setLineWidth__14J2DGrafContextFUc = .text:0x800367A8; // type:function size:0x2C scope:global align:4 +fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x800367D4; // type:function size:0xFC scope:global align:4 +drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x800368D0; // type:function size:0x110 scope:global align:4 +lineTo__14J2DGrafContextFQ29JGeometry8TVec2 = .text:0x800369E0; // type:function size:0x104 scope:global align:4 +getGrafType__14J2DGrafContextCFv = .text:0x80036AE4; // type:function size:0x8 scope:weak align:4 +setLookat__14J2DGrafContextFv = .text:0x80036AEC; // type:function size:0x4 scope:weak align:4 +__ct__7J2DPaneFv = .text:0x80036AF0; // type:function size:0xC0 scope:global align:4 +calcMtx__7J2DPaneFv = .text:0x80036BB0; // type:function size:0x40 scope:weak align:4 +makeMatrix__7J2DPaneFff = .text:0x80036BF0; // type:function size:0x3C scope:weak align:4 +initiate__7J2DPaneFv = .text:0x80036C2C; // type:function size:0x88 scope:global align:4 +__ct__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x80036CB4; // type:function size:0x88 scope:global align:4 +initialize__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2 = .text:0x80036D3C; // type:function size:0x120 scope:global align:4 +__ct__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x80036E5C; // type:function size:0x78 scope:global align:4 +initialize__7J2DPaneFUxRCQ29JGeometry8TBox2 = .text:0x80036ED4; // type:function size:0xF4 scope:global align:4 +__ct__7J2DPaneFP7J2DPaneP20JSURandomInputStreamUc = .text:0x80036FC8; // type:function size:0x120 scope:global align:4 +makePaneStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x800370E8; // type:function size:0x340 scope:global align:4 +changeUseTrans__7J2DPaneFP7J2DPane = .text:0x80037428; // type:function size:0x1BC scope:global align:4 +__dt__7J2DPaneFv = .text:0x800375E4; // type:function size:0xE0 scope:global align:4 +appendChild__7J2DPaneFP7J2DPane = .text:0x800376C4; // type:function size:0xB8 scope:global align:4 +prependChild__7J2DPaneFP7J2DPane = .text:0x8003777C; // type:function size:0xB8 scope:global align:4 +removeChild__7J2DPaneFP7J2DPane = .text:0x80037834; // type:function size:0xA4 scope:global align:4 +draw__7J2DPaneFffPC14J2DGrafContextbb = .text:0x800378D8; // type:function size:0x658 scope:global align:4 +drawSelf__7J2DPaneFffPA3_A4_f = .text:0x80037F30; // type:function size:0x4 scope:weak align:4 +rewriteAlpha__7J2DPaneFv = .text:0x80037F34; // type:function size:0x4 scope:weak align:4 +place__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80037F38; // type:function size:0x248 scope:global align:4 +move__7J2DPaneFff = .text:0x80038180; // type:function size:0x54 scope:global align:4 +add__7J2DPaneFff = .text:0x800381D4; // type:function size:0x44 scope:global align:4 +resize__7J2DPaneFff = .text:0x80038218; // type:function size:0x108 scope:global align:4 +getBounds__7J2DPaneFv = .text:0x80038320; // type:function size:0xE0 scope:global align:4 +rotate__7J2DPaneFff13J2DRotateAxisf = .text:0x80038400; // type:function size:0x30 scope:global align:4 +rotate__7J2DPaneFf = .text:0x80038430; // type:function size:0x58 scope:global align:4 +clip__7J2DPaneFRCQ29JGeometry8TBox2 = .text:0x80038488; // type:function size:0x7C scope:global align:4 +search__7J2DPaneFUx = .text:0x80038504; // type:function size:0xB0 scope:global align:4 +gather__7J2DPaneFPP7J2DPaneUxUxiRi = .text:0x800385B4; // type:function size:0x310 scope:global align:4 +getNextChild__17JSUTree<7J2DPane>CFv = .text:0x800388C4; // type:function size:0x14 scope:weak align:4 +__ne__25JSUTreeIterator<7J2DPane>CFPC17JSUTree<7J2DPane> = .text:0x800388D8; // type:function size:0x18 scope:weak align:4 +getEndChild__17JSUTree<7J2DPane>CFv = .text:0x800388F0; // type:function size:0x8 scope:weak align:4 +__pp__25JSUTreeIterator<7J2DPane>Fv = .text:0x800388F8; // type:function size:0x1C scope:weak align:4 +__ct__25JSUTreeIterator<7J2DPane>FP17JSUTree<7J2DPane> = .text:0x80038914; // type:function size:0x8 scope:weak align:4 +__rf__25JSUTreeIterator<7J2DPane>CFv = .text:0x8003891C; // type:function size:0xC scope:weak align:4 +getFirstChild__17JSUTree<7J2DPane>CFv = .text:0x80038928; // type:function size:0x14 scope:weak align:4 +getObject__17JSUTree<7J2DPane>CFv = .text:0x8003893C; // type:function size:0x8 scope:weak align:4 +searchUserInfo__7J2DPaneFUx = .text:0x80038944; // type:function size:0xB0 scope:global align:4 +isUsed__7J2DPaneFPC7ResTIMG = .text:0x800389F4; // type:function size:0x88 scope:global align:4 +isUsed__7J2DPaneFPC7ResFONT = .text:0x80038A7C; // type:function size:0x88 scope:global align:4 +makeMatrix__7J2DPaneFffff = .text:0x80038B04; // type:function size:0x140 scope:global align:4 +setCullBack__7J2DPaneF11_GXCullMode = .text:0x80038C44; // type:function size:0x78 scope:global align:4 +setBasePosition__7J2DPaneF15J2DBasePosition = .text:0x80038CBC; // type:function size:0xF0 scope:global align:4 +setInfluencedAlpha__7J2DPaneFbb = .text:0x80038DAC; // type:function size:0x1E4 scope:global align:4 +setAlpha__7J2DPaneFUc = .text:0x80038F90; // type:function size:0x8 scope:weak align:4 +getGlbVtx__7J2DPaneCFUc = .text:0x80038F98; // type:function size:0xD8 scope:global align:4 +getFirstChildPane__7J2DPaneFv = .text:0x80039070; // type:function size:0x38 scope:global align:4 +getNextChildPane__7J2DPaneFv = .text:0x800390A8; // type:function size:0x38 scope:global align:4 +getParentPane__7J2DPaneFv = .text:0x800390E0; // type:function size:0x1C scope:global align:4 +makePaneExStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream = .text:0x800390FC; // type:function size:0x20C scope:global align:4 +J2DCast_F32_to_S16__7J2DPaneFfUc = .text:0x80039308; // type:function size:0xB8 scope:global align:4 +getPointer__7J2DPaneFP20JSURandomInputStreamUlP10JKRArchive = .text:0x800393C0; // type:function size:0x14C scope:global align:4 +setAnimation__7J2DPaneFP10J2DAnmBase = .text:0x8003950C; // type:function size:0xD0 scope:global align:4 +setAnimation__7J2DPaneFP15J2DAnmTevRegKey = .text:0x800395DC; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x800395E0; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP16J2DAnmTexPattern = .text:0x800395E4; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP19J2DAnmTextureSRTKey = .text:0x800395E8; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x800395EC; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP11J2DAnmColor = .text:0x800395F0; // type:function size:0x4 scope:weak align:4 +setAnimation__7J2DPaneFP15J2DAnmTransform = .text:0x800395F4; // type:function size:0x8 scope:global align:4 +animationTransform__7J2DPaneFv = .text:0x800395FC; // type:function size:0x38 scope:global align:4 +clearAnmTransform__7J2DPaneFv = .text:0x80039634; // type:function size:0x7C scope:global align:4 +animationTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x800396B0; // type:function size:0xA0 scope:global align:4 +setVisibileAnimation__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x80039750; // type:function size:0x88 scope:global align:4 +setAnimationVF__7J2DPaneFP20J2DAnmVisibilityFull = .text:0x800397D8; // type:function size:0x2C scope:weak align:4 +setVtxColorAnimation__7J2DPaneFP14J2DAnmVtxColor = .text:0x80039804; // type:function size:0x88 scope:global align:4 +setAnimationVC__7J2DPaneFP14J2DAnmVtxColor = .text:0x8003988C; // type:function size:0x2C scope:weak align:4 +animationPane__7J2DPaneFPC15J2DAnmTransform = .text:0x800398B8; // type:function size:0xA0 scope:global align:4 +updateTransform__7J2DPaneFPC15J2DAnmTransform = .text:0x80039958; // type:function size:0x108 scope:global align:4 +getTransform__15J2DAnmTransformCFUsP16J3DTransformInfo = .text:0x80039A60; // type:function size:0x4 scope:weak align:4 +getTypeID__7J2DPaneCFv = .text:0x80039A64; // type:function size:0x8 scope:weak align:4 +setCullBack__7J2DPaneFb = .text:0x80039A6C; // type:function size:0x3C scope:weak align:4 +setConnectParent__7J2DPaneFb = .text:0x80039AA8; // type:function size:0x10 scope:weak align:4 +update__7J2DPaneFv = .text:0x80039AB8; // type:function size:0x4 scope:weak align:4 +drawSelf__7J2DPaneFff = .text:0x80039ABC; // type:function size:0x4 scope:weak align:4 +__sinit_J2DPane_cpp = .text:0x80039AC0; // type:function size:0x1C scope:local align:4 +__ct__10J2DPictureFv = .text:0x80039ADC; // type:function size:0xB8 scope:global align:4 +__ct__Q28JUtility6TColorFv = .text:0x80039B94; // type:function size:0xC scope:weak align:4 +__ct__Q29JGeometry8TVec2Fv = .text:0x80039BA0; // type:function size:0x4 scope:weak align:4 +__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80039BA4; // type:function size:0xCC scope:global align:4 +__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x80039C70; // type:function size:0x5EC scope:global align:4 +getTevKColor__11J2DTevBlockFUl = .text:0x8003A25C; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__11J2DTevBlockFUc = .text:0x8003A264; // type:function size:0x4 scope:weak align:4 +getTevColor__11J2DTevBlockFUl = .text:0x8003A268; // type:function size:0x8 scope:weak align:4 +getTevStageNum__11J2DTevBlockCFv = .text:0x8003A270; // type:function size:0x8 scope:weak align:4 +__ct__10J2DPictureFPC7ResTIMG = .text:0x8003A278; // type:function size:0xE8 scope:global align:4 +append__10J2DPictureFPC7ResTIMGf = .text:0x8003A360; // type:function size:0x30 scope:weak align:4 +insert__10J2DPictureFPC7ResTIMGUcf = .text:0x8003A390; // type:function size:0x34 scope:weak align:4 +__ct__10J2DPictureFPCc = .text:0x8003A3C4; // type:function size:0xE8 scope:global align:4 +append__10J2DPictureFPCcf = .text:0x8003A4AC; // type:function size:0x30 scope:weak align:4 +insert__10J2DPictureFPCcUcf = .text:0x8003A4DC; // type:function size:0x34 scope:weak align:4 +__ct__10J2DPictureFP10JUTTexture = .text:0x8003A510; // type:function size:0xE8 scope:global align:4 +append__10J2DPictureFP10JUTTexturef = .text:0x8003A5F8; // type:function size:0x30 scope:weak align:4 +__ct__10J2DPictureFUxRCQ29JGeometry8TBox2 = .text:0x8003A628; // type:function size:0xEC scope:global align:4 +setBlendRatio__10J2DPictureFffffffff = .text:0x8003A714; // type:function size:0x9C scope:weak align:4 +private_readStream__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8003A7B0; // type:function size:0x3F4 scope:global align:4 +initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x8003ABA4; // type:function size:0x94 scope:global align:4 +private_initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT = .text:0x8003AC38; // type:function size:0x13C scope:global align:4 +initinfo__10J2DPictureFv = .text:0x8003AD74; // type:function size:0x16C scope:global align:4 +__dt__10J2DPictureFv = .text:0x8003AEE0; // type:function size:0x9C scope:global align:4 +prepareTexture__10J2DPictureFUc = .text:0x8003AF7C; // type:function size:0xE0 scope:global align:4 +insert__10J2DPictureFPC7ResTIMGP10JUTPaletteUcf = .text:0x8003B05C; // type:function size:0x32C scope:global align:4 +insert__10J2DPictureFPCcP10JUTPaletteUcf = .text:0x8003B388; // type:function size:0x78 scope:global align:4 +insert__10J2DPictureFP10JUTTextureUcf = .text:0x8003B400; // type:function size:0x1D8 scope:global align:4 +remove__10J2DPictureFUc = .text:0x8003B5D8; // type:function size:0x130 scope:global align:4 +remove__10J2DPictureFP10JUTTexture = .text:0x8003B708; // type:function size:0x60 scope:global align:4 +changeTexture__10J2DPictureFPC7ResTIMGUc = .text:0x8003B768; // type:function size:0xE8 scope:global align:4 +getTexture__10J2DPictureCFUc = .text:0x8003B850; // type:function size:0x24 scope:weak align:4 +changeTexture__10J2DPictureFPCcUc = .text:0x8003B874; // type:function size:0x58 scope:global align:4 +changeTexture__10J2DPictureFPC7ResTIMGUcP10JUTPalette = .text:0x8003B8CC; // type:function size:0x108 scope:global align:4 +append__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8003B9D4; // type:function size:0x30 scope:weak align:4 +changeTexture__10J2DPictureFPCcUcP10JUTPalette = .text:0x8003BA04; // type:function size:0x68 scope:global align:4 +drawSelf__10J2DPictureFff = .text:0x8003BA6C; // type:function size:0x68 scope:global align:4 +drawSelf__10J2DPictureFffPA3_A4_f = .text:0x8003BAD4; // type:function size:0x6C scope:global align:4 +drawFullSet__10J2DPictureFffffPA3_A4_f = .text:0x8003BB40; // type:function size:0x74 scope:global align:4 +draw__10J2DPictureFffffbbb = .text:0x8003BBB4; // type:function size:0x2F4 scope:global align:4 +load__10J2DPictureFUc = .text:0x8003BEA8; // type:function size:0x34 scope:weak align:4 +load__10J2DPictureF11_GXTexMapIDUc = .text:0x8003BEDC; // type:function size:0x4C scope:weak align:4 +drawOut__10J2DPictureFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x8003BF28; // type:function size:0x3FC scope:global align:4 +drawTexCoord__10J2DPictureFffffssssssssPA3_A4_f = .text:0x8003C324; // type:function size:0x23C scope:global align:4 +setTevMode__10J2DPictureFv = .text:0x8003C560; // type:function size:0x4A0 scope:global align:4 +setBlendColorRatio__10J2DPictureFffffffff = .text:0x8003CA00; // type:function size:0x30 scope:global align:4 +setBlendAlphaRatio__10J2DPictureFffffffff = .text:0x8003CA30; // type:function size:0x30 scope:global align:4 +setBlendKonstColor__10J2DPictureFv = .text:0x8003CA60; // type:function size:0x150 scope:global align:4 +setBlendKonstAlpha__10J2DPictureFv = .text:0x8003CBB0; // type:function size:0x150 scope:global align:4 +getNewColor__10J2DPictureFPQ28JUtility6TColor = .text:0x8003CD00; // type:function size:0x124 scope:global align:4 +setTexCoord__10J2DPictureFPCQ29JGeometry8TVec2 = .text:0x8003CE24; // type:function size:0x44 scope:global align:4 +setTexCoord__10J2DPictureFPC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8003CE68; // type:function size:0x3C scope:global align:4 +setTexCoord__10J2DPictureFPQ29JGeometry8TVec2PC10JUTTexture10J2DBinding9J2DMirrorb = .text:0x8003CEA4; // type:function size:0x318 scope:global align:4 +isUsed__10J2DPictureFPC7ResTIMG = .text:0x8003D1BC; // type:function size:0x64 scope:global align:4 +getUsableTlut__10J2DPictureFUc = .text:0x8003D220; // type:function size:0xD0 scope:global align:4 +getTlutID__10J2DPictureFPC7ResTIMGUc = .text:0x8003D2F0; // type:function size:0x34 scope:global align:4 +getTypeID__10J2DPictureCFv = .text:0x8003D324; // type:function size:0x8 scope:weak align:4 +append__10J2DPictureFPCcP10JUTPalettef = .text:0x8003D32C; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFP10JUTTexturef = .text:0x8003D35C; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPCcP10JUTPalettef = .text:0x8003D38C; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPCcf = .text:0x8003D3BC; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPC7ResTIMGP10JUTPalettef = .text:0x8003D3EC; // type:function size:0x30 scope:weak align:4 +prepend__10J2DPictureFPC7ResTIMGf = .text:0x8003D41C; // type:function size:0x30 scope:weak align:4 +remove__10J2DPictureFv = .text:0x8003D44C; // type:function size:0x38 scope:weak align:4 +draw__10J2DPictureFffUcbbb = .text:0x8003D484; // type:function size:0x98 scope:weak align:4 +draw__10J2DPictureFffbbb = .text:0x8003D51C; // type:function size:0x40 scope:weak align:4 +drawOut__10J2DPictureFffffffff = .text:0x8003D55C; // type:function size:0x64 scope:weak align:4 +drawOut__10J2DPictureFffffff = .text:0x8003D5C0; // type:function size:0xAC scope:weak align:4 +getTextureCount__10J2DPictureCFv = .text:0x8003D66C; // type:function size:0x8 scope:weak align:4 +setBlack__10J2DPictureFQ28JUtility6TColor = .text:0x8003D674; // type:function size:0x28 scope:weak align:4 +setWhite__10J2DPictureFQ28JUtility6TColor = .text:0x8003D69C; // type:function size:0x28 scope:weak align:4 +setBlackWhite__10J2DPictureFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003D6C4; // type:function size:0x48 scope:weak align:4 +getBlack__10J2DPictureCFv = .text:0x8003D70C; // type:function size:0xC scope:weak align:4 +getWhite__10J2DPictureCFv = .text:0x8003D718; // type:function size:0xC scope:weak align:4 +getMaterial__10J2DPictureCFv = .text:0x8003D724; // type:function size:0x8 scope:weak align:4 +isUsed__10J2DPictureFPC7ResFONT = .text:0x8003D72C; // type:function size:0x20 scope:weak align:4 +rewriteAlpha__10J2DPictureFv = .text:0x8003D74C; // type:function size:0x4 scope:weak align:4 +__ct__8J2DPrintFP7JUTFontf = .text:0x8003D750; // type:function size:0x94 scope:global align:4 +__ct__8J2DPrintFP7JUTFontQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003D7E4; // type:function size:0x98 scope:global align:4 +__ct__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x8003D87C; // type:function size:0x94 scope:global align:4 +__dt__8J2DPrintFv = .text:0x8003D910; // type:function size:0x48 scope:global align:4 +initiate__8J2DPrintFv = .text:0x8003D958; // type:function size:0x54 scope:global align:4 +private_initiate__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorb = .text:0x8003D9AC; // type:function size:0x1E8 scope:global align:4 +setFont__8J2DPrintFP7JUTFont = .text:0x8003DB94; // type:function size:0x44 scope:global align:4 +setBuffer__8J2DPrintFUl = .text:0x8003DBD8; // type:function size:0x6C scope:global align:4 +setFontSize__8J2DPrintFv = .text:0x8003DC44; // type:function size:0x98 scope:global align:4 +locate__8J2DPrintFff = .text:0x8003DCDC; // type:function size:0x1C scope:global align:4 +print__8J2DPrintFffPCce = .text:0x8003DCF8; // type:function size:0x114 scope:global align:4 +print__8J2DPrintFffUcPCce = .text:0x8003DE0C; // type:function size:0x120 scope:global align:4 +getWidth__8J2DPrintFPCce = .text:0x8003DF2C; // type:function size:0xEC scope:global align:4 +printReturn__8J2DPrintFPCcff18J2DTextBoxHBinding18J2DTextBoxVBindingffUc = .text:0x8003E018; // type:function size:0x31C scope:global align:4 +parse__8J2DPrintFPCUciiPUsRQ28J2DPrint5TSizeUcb = .text:0x8003E334; // type:function size:0x7BC scope:global align:4 +doCtrlCode__8J2DPrintFi = .text:0x8003EAF0; // type:function size:0x128 scope:global align:4 +doEscapeCode__8J2DPrintFPPCUcUc = .text:0x8003EC18; // type:function size:0x5A0 scope:global align:4 +initchar__8J2DPrintFv = .text:0x8003F1B8; // type:function size:0x74 scope:global align:4 +getNumberS32__8J2DPrintFPPCUclli = .text:0x8003F22C; // type:function size:0x114 scope:global align:4 +getNumberF32__8J2DPrintFPPCUcffi = .text:0x8003F340; // type:function size:0x134 scope:global align:4 +__ct__9J2DScreenFv = .text:0x8003F474; // type:function size:0xA8 scope:global align:4 +__dt__9J2DScreenFv = .text:0x8003F51C; // type:function size:0x68 scope:global align:4 +clean__9J2DScreenFv = .text:0x8003F584; // type:function size:0xA0 scope:global align:4 +set__9J2DScreenFPCcUlP10JKRArchive = .text:0x8003F624; // type:function size:0x104 scope:global align:4 +set__9J2DScreenFP20JSURandomInputStreamUl = .text:0x8003F728; // type:function size:0x24 scope:global align:4 +private_set__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x8003F74C; // type:function size:0x140 scope:global align:4 +checkSignature__9J2DScreenFP20JSURandomInputStream = .text:0x8003F88C; // type:function size:0x60 scope:global align:4 +getScreenInformation__9J2DScreenFP20JSURandomInputStream = .text:0x8003F8EC; // type:function size:0xFC scope:global align:4 +makeHierarchyPanes__9J2DScreenFP7J2DPaneP20JSURandomInputStreamUlP10JKRArchive = .text:0x8003F9E8; // type:function size:0x560 scope:global align:4 +createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUl = .text:0x8003FF48; // type:function size:0x30 scope:weak align:4 +createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUlP10JKRArchive = .text:0x8003FF78; // type:function size:0x334 scope:global align:4 +draw__9J2DScreenFffPC14J2DGrafContext = .text:0x800402AC; // type:function size:0x1CC scope:global align:4 +search__9J2DScreenFUx = .text:0x80040478; // type:function size:0x40 scope:global align:4 +gather__9J2DScreenFPP7J2DPaneUxUxi = .text:0x800404B8; // type:function size:0x30 scope:global align:4 +searchUserInfo__9J2DScreenFUx = .text:0x800404E8; // type:function size:0x40 scope:global align:4 +drawSelf__9J2DScreenFffPA3_A4_f = .text:0x80040528; // type:function size:0x158 scope:global align:4 +getResReference__9J2DScreenFP20JSURandomInputStreamUl = .text:0x80040680; // type:function size:0xF4 scope:global align:4 +createMaterial__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive = .text:0x80040774; // type:function size:0x2F0 scope:global align:4 +getMaterial__9J2DScreenFUs = .text:0x80040A64; // type:function size:0x38 scope:global align:4 +isUsed__9J2DScreenFPC7ResTIMG = .text:0x80040A9C; // type:function size:0x20 scope:global align:4 +isUsed__9J2DScreenFPC7ResFONT = .text:0x80040ABC; // type:function size:0x20 scope:global align:4 +getNameResource__9J2DScreenFPCc = .text:0x80040ADC; // type:function size:0x50 scope:global align:4 +animation__9J2DScreenFv = .text:0x80040B2C; // type:function size:0x74 scope:global align:4 +setAnimation__9J2DScreenFP11J2DAnmColor = .text:0x80040BA0; // type:function size:0xA4 scope:global align:4 +setAnimation__9J2DScreenFP19J2DAnmTextureSRTKey = .text:0x80040C44; // type:function size:0xBC scope:global align:4 +setAnimation__9J2DScreenFP16J2DAnmTexPattern = .text:0x80040D00; // type:function size:0xA4 scope:global align:4 +setAnimation__9J2DScreenFP15J2DAnmTevRegKey = .text:0x80040DA4; // type:function size:0xEC scope:global align:4 +setAnimation__9J2DScreenFP14J2DAnmVtxColor = .text:0x80040E90; // type:function size:0x20 scope:global align:4 +setAnimation__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x80040EB0; // type:function size:0x20 scope:global align:4 +getTypeID__9J2DScreenCFv = .text:0x80040ED0; // type:function size:0x8 scope:weak align:4 +calcMtx__9J2DScreenFv = .text:0x80040ED8; // type:function size:0x34 scope:weak align:4 +setAnimation__9J2DScreenFP15J2DAnmTransform = .text:0x80040F0C; // type:function size:0x20 scope:weak align:4 +setAnimation__9J2DScreenFP10J2DAnmBase = .text:0x80040F2C; // type:function size:0x20 scope:weak align:4 +clearAnmTransform__9J2DScreenFv = .text:0x80040F4C; // type:function size:0x20 scope:weak align:4 +setAnimationVF__9J2DScreenFP20J2DAnmVisibilityFull = .text:0x80040F6C; // type:function size:0x4 scope:weak align:4 +setAnimationVC__9J2DScreenFP14J2DAnmVtxColor = .text:0x80040F70; // type:function size:0x4 scope:weak align:4 +__ct__10J2DTextBoxFv = .text:0x80040F74; // type:function size:0x78 scope:global align:4 +__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80040FEC; // type:function size:0x94 scope:global align:4 +__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80041080; // type:function size:0x460 scope:global align:4 +setFontUndeleteFlag__11J2DTevBlockFv = .text:0x800414E0; // type:function size:0x4 scope:weak align:4 +getFont__11J2DTevBlockFv = .text:0x800414E4; // type:function size:0x8 scope:weak align:4 +__ct__10J2DTextBoxFUxRCQ29JGeometry8TBox2PC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x800414EC; // type:function size:0x8C scope:global align:4 +initiate__10J2DTextBoxFPC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding = .text:0x80041578; // type:function size:0x228 scope:global align:4 +private_readStream__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x800417A0; // type:function size:0x350 scope:global align:4 +__dt__10J2DTextBoxFv = .text:0x80041AF0; // type:function size:0x98 scope:global align:4 +getFont__10J2DTextBoxCFv = .text:0x80041B88; // type:function size:0x8 scope:weak align:4 +setFont__10J2DTextBoxFP7JUTFont = .text:0x80041B90; // type:function size:0x70 scope:global align:4 +draw__10J2DTextBoxFff = .text:0x80041C00; // type:function size:0x1A4 scope:global align:4 +draw__10J2DTextBoxFfff18J2DTextBoxHBinding = .text:0x80041DA4; // type:function size:0x1D0 scope:global align:4 +setString__10J2DTextBoxFPCce = .text:0x80041F74; // type:function size:0xF4 scope:global align:4 +setConnectParent__10J2DTextBoxFb = .text:0x80042068; // type:function size:0x78 scope:global align:4 +drawSelf__10J2DTextBoxFff = .text:0x800420E0; // type:function size:0x68 scope:global align:4 +drawSelf__10J2DTextBoxFffPA3_A4_f = .text:0x80042148; // type:function size:0x1A8 scope:global align:4 +resize__10J2DTextBoxFff = .text:0x800422F0; // type:function size:0x104 scope:global align:4 +isUsed__10J2DTextBoxFPC7ResFONT = .text:0x800423F4; // type:function size:0x6C scope:global align:4 +getTypeID__10J2DTextBoxCFv = .text:0x80042460; // type:function size:0x8 scope:weak align:4 +setBlack__10J2DTextBoxFQ28JUtility6TColor = .text:0x80042468; // type:function size:0x28 scope:weak align:4 +setWhite__10J2DTextBoxFQ28JUtility6TColor = .text:0x80042490; // type:function size:0x28 scope:weak align:4 +setBlackWhite__10J2DTextBoxFQ28JUtility6TColorQ28JUtility6TColor = .text:0x800424B8; // type:function size:0x48 scope:weak align:4 +getBlack__10J2DTextBoxCFv = .text:0x80042500; // type:function size:0xC scope:weak align:4 +getWhite__10J2DTextBoxCFv = .text:0x8004250C; // type:function size:0xC scope:weak align:4 +getMaterial__10J2DTextBoxCFv = .text:0x80042518; // type:function size:0x8 scope:weak align:4 +isUsed__10J2DTextBoxFPC7ResTIMG = .text:0x80042520; // type:function size:0x20 scope:weak align:4 +rewriteAlpha__10J2DTextBoxFv = .text:0x80042540; // type:function size:0x4 scope:weak align:4 +__ct__9J2DWindowFv = .text:0x80042544; // type:function size:0xF8 scope:global align:4 +__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x8004263C; // type:function size:0xAC scope:global align:4 +__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial = .text:0x800426E8; // type:function size:0x560 scope:global align:4 +private_readStream__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive = .text:0x80042C48; // type:function size:0x4E4 scope:global align:4 +initinfo2__9J2DWindowFv = .text:0x8004312C; // type:function size:0x27C scope:global align:4 +__dt__9J2DWindowFv = .text:0x800433A8; // type:function size:0xA8 scope:global align:4 +draw__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x80043450; // type:function size:0x134 scope:global align:4 +draw_private__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80043584; // type:function size:0x484 scope:global align:4 +draw__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80043A08; // type:function size:0x138 scope:global align:4 +resize__9J2DWindowFff = .text:0x80043B40; // type:function size:0x12C scope:global align:4 +setContentsColor__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80043C6C; // type:function size:0xAC scope:global align:4 +drawSelf__9J2DWindowFff = .text:0x80043D18; // type:function size:0x68 scope:global align:4 +drawSelf__9J2DWindowFffPA3_A4_f = .text:0x80043D80; // type:function size:0xF8 scope:global align:4 +drawContents__9J2DWindowFRCQ29JGeometry8TBox2 = .text:0x80043E78; // type:function size:0x33C scope:global align:4 +drawFrameTexture__9J2DWindowFP10JUTTextureffffUsUsUsUsb = .text:0x800441B4; // type:function size:0x180 scope:global align:4 +drawFrameTexture__9J2DWindowFP10JUTTextureffbbb = .text:0x80044334; // type:function size:0x22C scope:global align:4 +drawContentsTexture__9J2DWindowFffff = .text:0x80044560; // type:function size:0x360 scope:global align:4 +setTevMode__9J2DWindowFP10JUTTextureQ28JUtility6TColorQ28JUtility6TColor = .text:0x800448C0; // type:function size:0x2D8 scope:global align:4 +getFrameTexture__9J2DWindowCFUcUc = .text:0x80044B98; // type:function size:0x7C scope:global align:4 +isUsed__9J2DWindowFPC7ResTIMG = .text:0x80044C14; // type:function size:0xB8 scope:global align:4 +getTypeID__9J2DWindowCFv = .text:0x80044CCC; // type:function size:0x8 scope:weak align:4 +draw__9J2DWindowFffff = .text:0x80044CD4; // type:function size:0x48 scope:weak align:4 +setBlack__9J2DWindowFQ28JUtility6TColor = .text:0x80044D1C; // type:function size:0x28 scope:weak align:4 +setWhite__9J2DWindowFQ28JUtility6TColor = .text:0x80044D44; // type:function size:0x28 scope:weak align:4 +setBlackWhite__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80044D6C; // type:function size:0x48 scope:weak align:4 +getBlack__9J2DWindowCFv = .text:0x80044DB4; // type:function size:0xC scope:weak align:4 +getWhite__9J2DWindowCFv = .text:0x80044DC0; // type:function size:0xC scope:weak align:4 +getContentsTexture__9J2DWindowCFUc = .text:0x80044DCC; // type:function size:0x18 scope:weak align:4 +getMaterial__9J2DWindowCFRQ29J2DWindow9TMaterial = .text:0x80044DE4; // type:function size:0x1C scope:weak align:4 +getFrameMaterial__9J2DWindowCFUc = .text:0x80044E00; // type:function size:0x8 scope:weak align:4 +getContentsMaterial__9J2DWindowCFv = .text:0x80044E08; // type:function size:0x8 scope:weak align:4 +isUsed__9J2DWindowFPC7ResFONT = .text:0x80044E10; // type:function size:0x20 scope:weak align:4 +rewriteAlpha__9J2DWindowFv = .text:0x80044E30; // type:function size:0x4 scope:weak align:4 +__ct__11J2DWindowExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80044E34; // type:function size:0x2E8 scope:global align:4 +getTevStage__11J2DTevBlockFUl = .text:0x8004511C; // type:function size:0x8 scope:weak align:4 +setTevOrder__11J2DTevBlockFUl11J2DTevOrder = .text:0x80045124; // type:function size:0x4 scope:weak align:4 +insertTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80045128; // type:function size:0x8 scope:weak align:4 +setTevKAlphaSel__11J2DTevBlockFUlUc = .text:0x80045130; // type:function size:0x4 scope:weak align:4 +setTevKColorSel__11J2DTevBlockFUlUc = .text:0x80045134; // type:function size:0x4 scope:weak align:4 +setTevStageNum__11J2DTevBlockFUc = .text:0x80045138; // type:function size:0x4 scope:weak align:4 +setMinSize__11J2DWindowExFv = .text:0x8004513C; // type:function size:0x1C4 scope:global align:4 +__dt__11J2DWindowExFv = .text:0x80045300; // type:function size:0xF8 scope:global align:4 +drawSelf__11J2DWindowExFffPA3_A4_f = .text:0x800453F8; // type:function size:0xA0 scope:global align:4 +draw_private__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x80045498; // type:function size:0x6F0 scope:global align:4 +drawContents__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x80045B88; // type:function size:0x42C scope:global align:4 +drawFrameTexture__11J2DWindowExFffffUsUsUsUsP11J2DMaterialb = .text:0x80045FB4; // type:function size:0x264 scope:global align:4 +draw__11J2DWindowExFRCQ29JGeometry8TBox2 = .text:0x80046218; // type:function size:0x194 scope:global align:4 +draw__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x800463AC; // type:function size:0x128 scope:global align:4 +setTevStage__11J2DWindowExFb = .text:0x800464D4; // type:function size:0x124 scope:global align:4 +setStage__11J2DWindowExFP11J2DTevStageQ211J2DWindowEx10stage_enum = .text:0x800465F8; // type:function size:0x2BC scope:global align:4 +setBlack__11J2DWindowExFQ28JUtility6TColor = .text:0x800468B4; // type:function size:0x88 scope:global align:4 +setWhite__11J2DWindowExFQ28JUtility6TColor = .text:0x8004693C; // type:function size:0x88 scope:global align:4 +setBlackWhite__11J2DWindowExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x800469C4; // type:function size:0x2EC scope:global align:4 +setTevColor__11J2DTevBlockFUl13J2DGXColorS10 = .text:0x80046CB0; // type:function size:0x4 scope:weak align:4 +getBlackWhite__11J2DWindowExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80046CB4; // type:function size:0x194 scope:global align:4 +isSetBlackWhite__11J2DWindowExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80046E48; // type:function size:0x98 scope:global align:4 +getBlack__11J2DWindowExCFv = .text:0x80046EE0; // type:function size:0x60 scope:global align:4 +getWhite__11J2DWindowExCFv = .text:0x80046F40; // type:function size:0x60 scope:global align:4 +setAlpha__11J2DWindowExFUc = .text:0x80046FA0; // type:function size:0x84 scope:global align:4 +setCullBack__11J2DWindowExF11_GXCullMode = .text:0x80047024; // type:function size:0x78 scope:global align:4 +rewriteAlpha__11J2DWindowExFv = .text:0x8004709C; // type:function size:0x18 scope:global align:4 +getFrameTexture__11J2DWindowExCFUcUc = .text:0x800470B4; // type:function size:0x68 scope:global align:4 +getFrameMaterial__11J2DWindowExCFUc = .text:0x8004711C; // type:function size:0x24 scope:weak align:4 +getContentsTexture__11J2DWindowExCFUc = .text:0x80047140; // type:function size:0x68 scope:global align:4 +getContentsMaterial__11J2DWindowExCFv = .text:0x800471A8; // type:function size:0x8 scope:weak align:4 +isUsed__11J2DWindowExFPC7ResTIMG = .text:0x800471B0; // type:function size:0x118 scope:global align:4 +setAnimation__11J2DWindowExFP11J2DAnmColor = .text:0x800472C8; // type:function size:0x90 scope:global align:4 +setAnimation__11J2DWindowExFP19J2DAnmTextureSRTKey = .text:0x80047358; // type:function size:0x90 scope:global align:4 +setAnimation__11J2DWindowExFP16J2DAnmTexPattern = .text:0x800473E8; // type:function size:0x90 scope:global align:4 +setAnimation__11J2DWindowExFP15J2DAnmTevRegKey = .text:0x80047478; // type:function size:0x90 scope:global align:4 +isNeedSetAnm__11J2DWindowExFUc = .text:0x80047508; // type:function size:0x5C scope:global align:4 +setAnimation__11J2DWindowExFP20J2DAnmVisibilityFull = .text:0x80047564; // type:function size:0x8 scope:global align:4 +setAnimation__11J2DWindowExFP14J2DAnmVtxColor = .text:0x8004756C; // type:function size:0xE0 scope:global align:4 +animationPane__11J2DWindowExFPC15J2DAnmTransform = .text:0x8004764C; // type:function size:0x1AC scope:global align:4 +getColor__14J2DAnmVtxColorCFUcUsP8_GXColor = .text:0x800477F8; // type:function size:0x4 scope:weak align:4 +getMaterial__11J2DWindowExCFRQ29J2DWindow9TMaterial = .text:0x800477FC; // type:function size:0x2C scope:weak align:4 +draw__11J2DWindowExFffff = .text:0x80047828; // type:function size:0x58 scope:weak align:4 +setCullBack__11J2DWindowExFb = .text:0x80047880; // type:function size:0x3C scope:weak align:4 +isUsed__11J2DWindowExFPC7ResFONT = .text:0x800478BC; // type:function size:0x20 scope:weak align:4 +setAnimation__11J2DWindowExFP15J2DAnmTransform = .text:0x800478DC; // type:function size:0x20 scope:weak align:4 +setAnimation__11J2DWindowExFP10J2DAnmBase = .text:0x800478FC; // type:function size:0x20 scope:weak align:4 +load__20J2DAnmLoaderDataBaseFPCv = .text:0x8004791C; // type:function size:0x79C scope:global align:4 +__dt__14J2DAnmVtxColorFv = .text:0x800480B8; // type:function size:0x5C scope:weak align:4 +__dt__11J2DAnmColorFv = .text:0x80048114; // type:function size:0x74 scope:weak align:4 +__dt__15J2DAnmTransformFv = .text:0x80048188; // type:function size:0x5C scope:weak align:4 +__dt__10J2DAnmBaseFv = .text:0x800481E4; // type:function size:0x48 scope:weak align:4 +__ct__19J2DAnmKeyLoader_v15Fv = .text:0x8004822C; // type:function size:0x1C scope:global align:4 +__dt__12J2DAnmLoaderFv = .text:0x80048248; // type:function size:0x48 scope:weak align:4 +__dt__19J2DAnmKeyLoader_v15Fv = .text:0x80048290; // type:function size:0x5C scope:global align:4 +load__19J2DAnmKeyLoader_v15FPCv = .text:0x800482EC; // type:function size:0x104 scope:global align:4 +setResource__19J2DAnmKeyLoader_v15FP10J2DAnmBasePCv = .text:0x800483F0; // type:function size:0x154 scope:global align:4 +readAnmTransform__19J2DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x80048544; // type:function size:0x28 scope:global align:4 +setAnmTransform__19J2DAnmKeyLoader_v15FP18J2DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x8004856C; // type:function size:0x9C scope:global align:4 +readAnmTextureSRT__19J2DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x80048608; // type:function size:0x28 scope:global align:4 +setAnmTextureSRT__19J2DAnmKeyLoader_v15FP19J2DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x80048630; // type:function size:0x1EC scope:global align:4 +readAnmColor__19J2DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x8004881C; // type:function size:0x28 scope:global align:4 +setAnmColor__19J2DAnmKeyLoader_v15FP14J2DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x80048844; // type:function size:0xEC scope:global align:4 +readAnmVtxColor__19J2DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x80048930; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__19J2DAnmKeyLoader_v15FP17J2DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x80048958; // type:function size:0xFC scope:global align:4 +load__20J2DAnmFullLoader_v15FPCv = .text:0x80048A54; // type:function size:0x104 scope:global align:4 +setResource__20J2DAnmFullLoader_v15FP10J2DAnmBasePCv = .text:0x80048B58; // type:function size:0x154 scope:global align:4 +__ct__20J2DAnmFullLoader_v15Fv = .text:0x80048CAC; // type:function size:0x1C scope:global align:4 +__dt__20J2DAnmFullLoader_v15Fv = .text:0x80048CC8; // type:function size:0x5C scope:global align:4 +readAnmTransform__20J2DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x80048D24; // type:function size:0x28 scope:global align:4 +setAnmTransform__20J2DAnmFullLoader_v15FP19J2DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x80048D4C; // type:function size:0x94 scope:global align:4 +readAnmColor__20J2DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x80048DE0; // type:function size:0x28 scope:global align:4 +setAnmColor__20J2DAnmFullLoader_v15FP15J2DAnmColorFullPC19J3DAnmColorFullData = .text:0x80048E08; // type:function size:0xCC scope:global align:4 +readAnmTexPattern__20J2DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x80048ED4; // type:function size:0x28 scope:global align:4 +setAnmTexPattern__20J2DAnmFullLoader_v15FP16J2DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x80048EFC; // type:function size:0xA4 scope:global align:4 +readAnmTevReg__19J2DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x80048FA0; // type:function size:0x28 scope:global align:4 +setAnmTevReg__19J2DAnmKeyLoader_v15FP15J2DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x80048FC8; // type:function size:0x18C scope:global align:4 +readAnmVisibility__20J2DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x80049154; // type:function size:0x28 scope:global align:4 +setAnmVisibility__20J2DAnmFullLoader_v15FP20J2DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x8004917C; // type:function size:0x7C scope:global align:4 +readAnmVtxColor__20J2DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x800491F8; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__20J2DAnmFullLoader_v15FP18J2DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x80049220; // type:function size:0xFC scope:global align:4 +__dt__20J2DAnmVisibilityFullFv = .text:0x8004931C; // type:function size:0x5C scope:weak align:4 +searchUpdateMaterialID__10J2DAnmBaseFP9J2DScreen = .text:0x80049378; // type:function size:0x4 scope:weak align:4 +JSUConvertOffsetToPtr<25J3DAnmVisibilityFullTable>__FPCvPCv = .text:0x8004937C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DAnmKRegKeyTable>__FPCvPCv = .text:0x80049394; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DAnmCRegKeyTable>__FPCvPCv = .text:0x800493AC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<25J3DAnmTexPatternFullTable>__FPCvPCv = .text:0x800493C4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<20J3DAnmColorFullTable>__FPCvPCv = .text:0x800493DC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<24J3DAnmTransformFullTable>__FPCvPCv = .text:0x800493F4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J3DAnmVtxColorIndexData>__FPCvPCv = .text:0x8004940C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J3DAnmColorKeyTable>__FPCvPCv = .text:0x80049424; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<3Vec>__FPCvPCv = .text:0x8004943C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80049454; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<7ResNTAB>__FPCvPCv = .text:0x8004946C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80049484; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x8004949C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x800494B4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J3DAnmTransformKeyTable>__FPCvPCv = .text:0x800494CC; // type:function size:0x18 scope:weak align:4 +getTexNo__11J2DTevBlockCFUl = .text:0x800494E4; // type:function size:0xC scope:weak align:4 +setTexNo__11J2DTevBlockFUlUs = .text:0x800494F0; // type:function size:0x4 scope:weak align:4 +getTevSwapModeTable__11J2DTevBlockFUl = .text:0x800494F4; // type:function size:0x8 scope:weak align:4 +getTevOrder__11J2DTevBlockFUl = .text:0x800494FC; // type:function size:0x8 scope:weak align:4 +getFontNo__11J2DTevBlockCFv = .text:0x80049504; // type:function size:0xC scope:weak align:4 +getIndTexStageNum__11J2DIndBlockCFv = .text:0x80049510; // type:function size:0x8 scope:weak align:4 +__dt__Q211J2DBloSaver19CTextureNameConnectFv = .text:0x80049518; // type:function size:0x50 scope:global align:4 +clear__Q211J2DBloSaver19CTextureNameConnectFv = .text:0x80049568; // type:function size:0x70 scope:global align:4 +__ct__11J2DTevStageFv = .text:0x800495D8; // type:function size:0x68 scope:weak align:4 +setTevStageInfo__11J2DTevStageFRC15J2DTevStageInfo = .text:0x80049640; // type:function size:0x1E0 scope:weak align:4 +__sinit_J2DBloSaver_cpp = .text:0x80049820; // type:function size:0x3C scope:local align:4 +get__13J2DDataManageFPCc = .text:0x8004985C; // type:function size:0x64 scope:global align:4 +get__13J2DDataManageFP14JSUInputStream = .text:0x800498C0; // type:function size:0xC8 scope:global align:4 +getResReference__15J2DResReferenceCFUs = .text:0x80049988; // type:function size:0x34 scope:global align:4 +getName__15J2DResReferenceCFUs = .text:0x800499BC; // type:function size:0x164 scope:global align:4 +initialize__13J2DColorBlockFv = .text:0x80049B20; // type:function size:0xAC scope:global align:4 +setGX__13J2DColorBlockFv = .text:0x80049BCC; // type:function size:0xF4 scope:global align:4 +initialize__14J2DTexGenBlockFv = .text:0x80049CC0; // type:function size:0xF0 scope:global align:4 +setGX__14J2DTexGenBlockFv = .text:0x80049DB0; // type:function size:0xB4 scope:global align:4 +__dt__14J2DTexGenBlockFv = .text:0x80049E64; // type:function size:0x90 scope:global align:4 +setTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x80049EF4; // type:function size:0x158 scope:global align:4 +getTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx = .text:0x8004A04C; // type:function size:0xB8 scope:global align:4 +getTexture__11J2DTevBlockFUl = .text:0x8004A104; // type:function size:0x8 scope:global align:4 +getPalette__11J2DTevBlockFUl = .text:0x8004A10C; // type:function size:0x8 scope:global align:4 +__ct__12J2DTevBlock1Fv = .text:0x8004A114; // type:function size:0x10C scope:global align:4 +__ct__14J2DIndTevStageFv = .text:0x8004A220; // type:function size:0x94 scope:weak align:4 +__ct__19J2DTevSwapModeTableFv = .text:0x8004A2B4; // type:function size:0xC scope:weak align:4 +__ct__13J2DGXColorS10Fv = .text:0x8004A2C0; // type:function size:0x4 scope:weak align:4 +__ct__11J2DTevOrderFv = .text:0x8004A2C4; // type:function size:0x20 scope:weak align:4 +__dt__11J2DTevBlockFv = .text:0x8004A2E4; // type:function size:0x48 scope:weak align:4 +__dt__12J2DTevBlock1Fv = .text:0x8004A32C; // type:function size:0xB8 scope:global align:4 +initialize__12J2DTevBlock1Fv = .text:0x8004A3E4; // type:function size:0x278 scope:global align:4 +prepareTexture__12J2DTevBlock1FUc = .text:0x8004A65C; // type:function size:0xBC scope:global align:4 +insertTexture__12J2DTevBlock1FUlPC7ResTIMGP10JUTPalette = .text:0x8004A718; // type:function size:0x134 scope:global align:4 +insertTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8004A84C; // type:function size:0xA8 scope:global align:4 +setTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x8004A8F4; // type:function size:0x198 scope:global align:4 +setTexture__12J2DTevBlock1FUlP10JUTTexture = .text:0x8004AA8C; // type:function size:0x8C scope:global align:4 +removeTexture__12J2DTevBlock1FUl = .text:0x8004AB18; // type:function size:0x7C scope:global align:4 +setFont__12J2DTevBlock1FP7ResFONT = .text:0x8004AB94; // type:function size:0xBC scope:global align:4 +setFont__12J2DTevBlock1FP7JUTFont = .text:0x8004AC50; // type:function size:0x80 scope:global align:4 +setPalette__12J2DTevBlock1FUlPC7ResTLUT = .text:0x8004ACD0; // type:function size:0xC8 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock1FUcb = .text:0x8004AD98; // type:function size:0x10 scope:global align:4 +setGX__12J2DTevBlock1Fv = .text:0x8004ADA8; // type:function size:0x24C scope:global align:4 +loadTexture__12J2DTevBlock1F11_GXTexMapIDUl = .text:0x8004AFF4; // type:function size:0x48 scope:global align:4 +__ct__12J2DTevBlock2Fv = .text:0x8004B03C; // type:function size:0x110 scope:global align:4 +__dt__12J2DTevBlock2Fv = .text:0x8004B14C; // type:function size:0xD8 scope:global align:4 +initialize__12J2DTevBlock2Fv = .text:0x8004B224; // type:function size:0x350 scope:global align:4 +prepareTexture__12J2DTevBlock2FUc = .text:0x8004B574; // type:function size:0xE0 scope:global align:4 +insertTexture__12J2DTevBlock2FUlPC7ResTIMGP10JUTPalette = .text:0x8004B654; // type:function size:0x2CC scope:global align:4 +insertTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x8004B920; // type:function size:0x168 scope:global align:4 +setTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x8004BA88; // type:function size:0x21C scope:global align:4 +setTexture__12J2DTevBlock2FUlP10JUTTexture = .text:0x8004BCA4; // type:function size:0xA8 scope:global align:4 +removeTexture__12J2DTevBlock2FUl = .text:0x8004BD4C; // type:function size:0xD4 scope:global align:4 +setFont__12J2DTevBlock2FP7ResFONT = .text:0x8004BE20; // type:function size:0xBC scope:global align:4 +setFont__12J2DTevBlock2FP7JUTFont = .text:0x8004BEDC; // type:function size:0x80 scope:global align:4 +setPalette__12J2DTevBlock2FUlPC7ResTLUT = .text:0x8004BF5C; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock2FUcb = .text:0x8004C02C; // type:function size:0x88 scope:global align:4 +setGX__12J2DTevBlock2Fv = .text:0x8004C0B4; // type:function size:0x2E8 scope:global align:4 +loadTexture__12J2DTevBlock2F11_GXTexMapIDUl = .text:0x8004C39C; // type:function size:0x48 scope:global align:4 +__ct__12J2DTevBlock4Fv = .text:0x8004C3E4; // type:function size:0x118 scope:global align:4 +__dt__12J2DTevBlock4Fv = .text:0x8004C4FC; // type:function size:0xD0 scope:global align:4 +initialize__12J2DTevBlock4Fv = .text:0x8004C5CC; // type:function size:0x3BC scope:global align:4 +prepareTexture__12J2DTevBlock4FUc = .text:0x8004C988; // type:function size:0xE0 scope:global align:4 +insertTexture__12J2DTevBlock4FUlPC7ResTIMGP10JUTPalette = .text:0x8004CA68; // type:function size:0x3AC scope:global align:4 +insertTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x8004CE14; // type:function size:0x198 scope:global align:4 +setTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x8004CFAC; // type:function size:0x2E4 scope:global align:4 +setTexture__12J2DTevBlock4FUlP10JUTTexture = .text:0x8004D290; // type:function size:0xA8 scope:global align:4 +removeTexture__12J2DTevBlock4FUl = .text:0x8004D338; // type:function size:0x210 scope:global align:4 +setFont__12J2DTevBlock4FP7ResFONT = .text:0x8004D548; // type:function size:0xBC scope:global align:4 +setFont__12J2DTevBlock4FP7JUTFont = .text:0x8004D604; // type:function size:0x80 scope:global align:4 +setPalette__12J2DTevBlock4FUlPC7ResTLUT = .text:0x8004D684; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock4FUcb = .text:0x8004D754; // type:function size:0x88 scope:global align:4 +setGX__12J2DTevBlock4Fv = .text:0x8004D7DC; // type:function size:0x2E8 scope:global align:4 +loadTexture__12J2DTevBlock4F11_GXTexMapIDUl = .text:0x8004DAC4; // type:function size:0x48 scope:global align:4 +__ct__12J2DTevBlock8Fv = .text:0x8004DB0C; // type:function size:0x128 scope:global align:4 +__dt__12J2DTevBlock8Fv = .text:0x8004DC34; // type:function size:0xD0 scope:global align:4 +initialize__12J2DTevBlock8Fv = .text:0x8004DD04; // type:function size:0x4A0 scope:global align:4 +prepareTexture__12J2DTevBlock8FUc = .text:0x8004E1A4; // type:function size:0xE0 scope:global align:4 +insertTexture__12J2DTevBlock8FUlPC7ResTIMGP10JUTPalette = .text:0x8004E284; // type:function size:0x3C8 scope:global align:4 +insertTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x8004E64C; // type:function size:0x198 scope:global align:4 +setTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x8004E7E4; // type:function size:0x2E4 scope:global align:4 +setTexture__12J2DTevBlock8FUlP10JUTTexture = .text:0x8004EAC8; // type:function size:0xA8 scope:global align:4 +removeTexture__12J2DTevBlock8FUl = .text:0x8004EB70; // type:function size:0x210 scope:global align:4 +setFont__12J2DTevBlock8FP7ResFONT = .text:0x8004ED80; // type:function size:0xB4 scope:global align:4 +setFont__12J2DTevBlock8FP7JUTFont = .text:0x8004EE34; // type:function size:0x7C scope:global align:4 +setPalette__12J2DTevBlock8FUlPC7ResTLUT = .text:0x8004EEB0; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__12J2DTevBlock8FUcb = .text:0x8004EF80; // type:function size:0x6C scope:global align:4 +setGX__12J2DTevBlock8Fv = .text:0x8004EFEC; // type:function size:0x2E8 scope:global align:4 +loadTexture__12J2DTevBlock8F11_GXTexMapIDUl = .text:0x8004F2D4; // type:function size:0x48 scope:global align:4 +__ct__13J2DTevBlock16Fv = .text:0x8004F31C; // type:function size:0x128 scope:global align:4 +__dt__13J2DTevBlock16Fv = .text:0x8004F444; // type:function size:0xD0 scope:global align:4 +initialize__13J2DTevBlock16Fv = .text:0x8004F514; // type:function size:0x550 scope:global align:4 +prepareTexture__13J2DTevBlock16FUc = .text:0x8004FA64; // type:function size:0xE0 scope:global align:4 +insertTexture__13J2DTevBlock16FUlPC7ResTIMGP10JUTPalette = .text:0x8004FB44; // type:function size:0x3C8 scope:global align:4 +insertTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x8004FF0C; // type:function size:0x198 scope:global align:4 +setTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x800500A4; // type:function size:0x2E4 scope:global align:4 +setTexture__13J2DTevBlock16FUlP10JUTTexture = .text:0x80050388; // type:function size:0xA8 scope:global align:4 +removeTexture__13J2DTevBlock16FUl = .text:0x80050430; // type:function size:0x210 scope:global align:4 +setFont__13J2DTevBlock16FP7ResFONT = .text:0x80050640; // type:function size:0xB4 scope:global align:4 +setFont__13J2DTevBlock16FP7JUTFont = .text:0x800506F4; // type:function size:0x7C scope:global align:4 +setPalette__13J2DTevBlock16FUlPC7ResTLUT = .text:0x80050770; // type:function size:0xD0 scope:global align:4 +shiftDeleteFlag__13J2DTevBlock16FUcb = .text:0x80050840; // type:function size:0x6C scope:global align:4 +setGX__13J2DTevBlock16Fv = .text:0x800508AC; // type:function size:0x2E8 scope:global align:4 +loadTexture__13J2DTevBlock16F11_GXTexMapIDUl = .text:0x80050B94; // type:function size:0x48 scope:global align:4 +initialize__15J2DIndBlockFullFv = .text:0x80050BDC; // type:function size:0x148 scope:global align:4 +setGX__15J2DIndBlockFullFv = .text:0x80050D24; // type:function size:0xCC scope:global align:4 +initialize__10J2DPEBlockFv = .text:0x80050DF0; // type:function size:0x44 scope:global align:4 +setGX__10J2DPEBlockFv = .text:0x80050E34; // type:function size:0x60 scope:global align:4 +getType__15J2DIndBlockFullFv = .text:0x80050E94; // type:function size:0xC scope:weak align:4 +setIndTexStageNum__15J2DIndBlockFullFUc = .text:0x80050EA0; // type:function size:0x8 scope:weak align:4 +getIndTexStageNum__15J2DIndBlockFullCFv = .text:0x80050EA8; // type:function size:0x8 scope:weak align:4 +setIndTexOrder__15J2DIndBlockFullFUl14J2DIndTexOrder = .text:0x80050EB0; // type:function size:0x1C scope:weak align:4 +getIndTexOrder__15J2DIndBlockFullFUl = .text:0x80050ECC; // type:function size:0x14 scope:weak align:4 +setIndTexMtx__15J2DIndBlockFullFUl12J2DIndTexMtx = .text:0x80050EE0; // type:function size:0x44 scope:weak align:4 +getIndTexMtx__15J2DIndBlockFullFUl = .text:0x80050F24; // type:function size:0x14 scope:weak align:4 +setIndTexCoordScale__15J2DIndBlockFullFUl19J2DIndTexCoordScale = .text:0x80050F38; // type:function size:0x1C scope:weak align:4 +getIndTexCoordScale__15J2DIndBlockFullFUl = .text:0x80050F54; // type:function size:0x14 scope:weak align:4 +__dt__15J2DIndBlockFullFv = .text:0x80050F68; // type:function size:0x9C scope:weak align:4 +__dt__12J2DIndTexMtxFv = .text:0x80051004; // type:function size:0x3C scope:weak align:4 +__dt__19J2DIndTexCoordScaleFv = .text:0x80051040; // type:function size:0x3C scope:weak align:4 +initialize__11J2DIndBlockFv = .text:0x8005107C; // type:function size:0x4 scope:weak align:4 +setGX__11J2DIndBlockFv = .text:0x80051080; // type:function size:0x4 scope:weak align:4 +setIndTexStageNum__11J2DIndBlockFUc = .text:0x80051084; // type:function size:0x4 scope:weak align:4 +setIndTexOrder__11J2DIndBlockFUl14J2DIndTexOrder = .text:0x80051088; // type:function size:0x4 scope:weak align:4 +getIndTexOrder__11J2DIndBlockFUl = .text:0x8005108C; // type:function size:0x8 scope:weak align:4 +setIndTexMtx__11J2DIndBlockFUl12J2DIndTexMtx = .text:0x80051094; // type:function size:0x4 scope:weak align:4 +getIndTexMtx__11J2DIndBlockFUl = .text:0x80051098; // type:function size:0x8 scope:weak align:4 +setIndTexCoordScale__11J2DIndBlockFUl19J2DIndTexCoordScale = .text:0x800510A0; // type:function size:0x4 scope:weak align:4 +getIndTexCoordScale__11J2DIndBlockFUl = .text:0x800510A4; // type:function size:0x8 scope:weak align:4 +__dt__11J2DIndBlockFv = .text:0x800510AC; // type:function size:0x48 scope:weak align:4 +getType__13J2DTevBlock16Fv = .text:0x800510F4; // type:function size:0xC scope:weak align:4 +getMaxStage__13J2DTevBlock16Fv = .text:0x80051100; // type:function size:0x8 scope:weak align:4 +setTexNo__13J2DTevBlock16FUlUs = .text:0x80051108; // type:function size:0x10 scope:weak align:4 +getTexNo__13J2DTevBlock16CFUl = .text:0x80051118; // type:function size:0x10 scope:weak align:4 +setFontNo__13J2DTevBlock16FUs = .text:0x80051128; // type:function size:0x8 scope:weak align:4 +getFontNo__13J2DTevBlock16CFv = .text:0x80051130; // type:function size:0x8 scope:weak align:4 +setTevOrder__13J2DTevBlock16FUl11J2DTevOrder = .text:0x80051138; // type:function size:0x24 scope:weak align:4 +getTevOrder__13J2DTevBlock16FUl = .text:0x8005115C; // type:function size:0x14 scope:weak align:4 +setTevColor__13J2DTevBlock16FUl13J2DGXColorS10 = .text:0x80051170; // type:function size:0x2C scope:weak align:4 +getTevColor__13J2DTevBlock16FUl = .text:0x8005119C; // type:function size:0x14 scope:weak align:4 +setTevKColor__13J2DTevBlock16FUlQ28JUtility6TColor = .text:0x800511B0; // type:function size:0x2C scope:weak align:4 +getTevKColor__13J2DTevBlock16FUl = .text:0x800511DC; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__13J2DTevBlock16FUlUc = .text:0x800511F0; // type:function size:0xC scope:weak align:4 +getTevKColorSel__13J2DTevBlock16FUl = .text:0x800511FC; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__13J2DTevBlock16FUlUc = .text:0x80051208; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__13J2DTevBlock16FUl = .text:0x80051214; // type:function size:0xC scope:weak align:4 +setTevStageNum__13J2DTevBlock16FUc = .text:0x80051220; // type:function size:0x8 scope:weak align:4 +getTevStageNum__13J2DTevBlock16CFv = .text:0x80051228; // type:function size:0x8 scope:weak align:4 +setTevStage__13J2DTevBlock16FUl11J2DTevStage = .text:0x80051230; // type:function size:0x3C scope:weak align:4 +getTevStage__13J2DTevBlock16FUl = .text:0x8005126C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__13J2DTevBlock16FUl18J2DTevSwapModeInfo = .text:0x80051280; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__13J2DTevBlock16FUl19J2DTevSwapModeTable = .text:0x800512B8; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__13J2DTevBlock16FUl = .text:0x800512C8; // type:function size:0x10 scope:weak align:4 +setIndTevStage__13J2DTevBlock16FUl14J2DIndTevStage = .text:0x800512D8; // type:function size:0x14 scope:weak align:4 +getIndTevStage__13J2DTevBlock16FUl = .text:0x800512EC; // type:function size:0x14 scope:weak align:4 +insertTexture__13J2DTevBlock16FUlPC7ResTIMG = .text:0x80051300; // type:function size:0x30 scope:weak align:4 +getTexture__13J2DTevBlock16FUl = .text:0x80051330; // type:function size:0x20 scope:weak align:4 +getPalette__13J2DTevBlock16FUl = .text:0x80051350; // type:function size:0x20 scope:weak align:4 +getFont__13J2DTevBlock16Fv = .text:0x80051370; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__13J2DTevBlock16FUc = .text:0x80051378; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__13J2DTevBlock16Fv = .text:0x80051388; // type:function size:0xC scope:weak align:4 +getType__12J2DTevBlock8Fv = .text:0x80051394; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock8Fv = .text:0x800513A0; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock8FUlUs = .text:0x800513A8; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock8CFUl = .text:0x800513B8; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock8FUs = .text:0x800513C8; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock8CFv = .text:0x800513D0; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock8FUl11J2DTevOrder = .text:0x800513D8; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock8FUl = .text:0x800513FC; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock8FUl13J2DGXColorS10 = .text:0x80051410; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock8FUl = .text:0x8005143C; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock8FUlQ28JUtility6TColor = .text:0x80051450; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock8FUl = .text:0x8005147C; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock8FUlUc = .text:0x80051490; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock8FUl = .text:0x8005149C; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock8FUlUc = .text:0x800514A8; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock8FUl = .text:0x800514B4; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock8FUc = .text:0x800514C0; // type:function size:0x8 scope:weak align:4 +getTevStageNum__12J2DTevBlock8CFv = .text:0x800514C8; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock8FUl11J2DTevStage = .text:0x800514D0; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock8FUl = .text:0x8005150C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock8FUl18J2DTevSwapModeInfo = .text:0x80051520; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock8FUl19J2DTevSwapModeTable = .text:0x80051558; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock8FUl = .text:0x80051568; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock8FUl14J2DIndTevStage = .text:0x80051578; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock8FUl = .text:0x8005158C; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock8FUlPC7ResTIMG = .text:0x800515A0; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock8FUl = .text:0x800515D0; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock8FUl = .text:0x800515F0; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock8Fv = .text:0x80051610; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock8FUc = .text:0x80051618; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock8Fv = .text:0x80051628; // type:function size:0xC scope:weak align:4 +getType__12J2DTevBlock4Fv = .text:0x80051634; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock4Fv = .text:0x80051640; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock4FUlUs = .text:0x80051648; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock4CFUl = .text:0x80051658; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock4FUs = .text:0x80051668; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock4CFv = .text:0x80051670; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock4FUl11J2DTevOrder = .text:0x80051678; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock4FUl = .text:0x8005169C; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock4FUl13J2DGXColorS10 = .text:0x800516B0; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock4FUl = .text:0x800516DC; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock4FUlQ28JUtility6TColor = .text:0x800516F0; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock4FUl = .text:0x8005171C; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock4FUlUc = .text:0x80051730; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock4FUl = .text:0x8005173C; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock4FUlUc = .text:0x80051748; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock4FUl = .text:0x80051754; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock4FUc = .text:0x80051760; // type:function size:0x8 scope:weak align:4 +getTevStageNum__12J2DTevBlock4CFv = .text:0x80051768; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock4FUl11J2DTevStage = .text:0x80051770; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock4FUl = .text:0x800517AC; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock4FUl18J2DTevSwapModeInfo = .text:0x800517C0; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock4FUl19J2DTevSwapModeTable = .text:0x800517F8; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock4FUl = .text:0x80051808; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock4FUl14J2DIndTevStage = .text:0x80051818; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock4FUl = .text:0x8005182C; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock4FUlPC7ResTIMG = .text:0x80051840; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock4FUl = .text:0x80051870; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock4FUl = .text:0x80051890; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock4Fv = .text:0x800518B0; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock4FUc = .text:0x800518B8; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock4Fv = .text:0x800518C8; // type:function size:0x10 scope:weak align:4 +getType__12J2DTevBlock2Fv = .text:0x800518D8; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock2Fv = .text:0x800518E4; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock2FUlUs = .text:0x800518EC; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock2CFUl = .text:0x800518FC; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock2FUs = .text:0x8005190C; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock2CFv = .text:0x80051914; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock2FUl11J2DTevOrder = .text:0x8005191C; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock2FUl = .text:0x80051940; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock2FUl13J2DGXColorS10 = .text:0x80051954; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock2FUl = .text:0x80051980; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock2FUlQ28JUtility6TColor = .text:0x80051994; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock2FUl = .text:0x800519C0; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock2FUlUc = .text:0x800519D4; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock2FUl = .text:0x800519E0; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock2FUlUc = .text:0x800519EC; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock2FUl = .text:0x800519F8; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock2FUc = .text:0x80051A04; // type:function size:0x8 scope:weak align:4 +getTevStageNum__12J2DTevBlock2CFv = .text:0x80051A0C; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock2FUl11J2DTevStage = .text:0x80051A14; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock2FUl = .text:0x80051A50; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock2FUl18J2DTevSwapModeInfo = .text:0x80051A64; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock2FUl19J2DTevSwapModeTable = .text:0x80051A9C; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock2FUl = .text:0x80051AAC; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock2FUl14J2DIndTevStage = .text:0x80051ABC; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock2FUl = .text:0x80051AD0; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock2FUlPC7ResTIMG = .text:0x80051AE4; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock2FUl = .text:0x80051B14; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock2FUl = .text:0x80051B34; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock2Fv = .text:0x80051B54; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock2FUc = .text:0x80051B5C; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock2Fv = .text:0x80051B6C; // type:function size:0x10 scope:weak align:4 +getType__12J2DTevBlock1Fv = .text:0x80051B7C; // type:function size:0xC scope:weak align:4 +getMaxStage__12J2DTevBlock1Fv = .text:0x80051B88; // type:function size:0x8 scope:weak align:4 +setTexNo__12J2DTevBlock1FUlUs = .text:0x80051B90; // type:function size:0x10 scope:weak align:4 +getTexNo__12J2DTevBlock1CFUl = .text:0x80051BA0; // type:function size:0x10 scope:weak align:4 +setFontNo__12J2DTevBlock1FUs = .text:0x80051BB0; // type:function size:0x8 scope:weak align:4 +getFontNo__12J2DTevBlock1CFv = .text:0x80051BB8; // type:function size:0x8 scope:weak align:4 +setTevOrder__12J2DTevBlock1FUl11J2DTevOrder = .text:0x80051BC0; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J2DTevBlock1FUl = .text:0x80051BE4; // type:function size:0x14 scope:weak align:4 +setTevColor__12J2DTevBlock1FUl13J2DGXColorS10 = .text:0x80051BF8; // type:function size:0x2C scope:weak align:4 +getTevColor__12J2DTevBlock1FUl = .text:0x80051C24; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J2DTevBlock1FUlQ28JUtility6TColor = .text:0x80051C38; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J2DTevBlock1FUl = .text:0x80051C64; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J2DTevBlock1FUlUc = .text:0x80051C78; // type:function size:0xC scope:weak align:4 +getTevKColorSel__12J2DTevBlock1FUl = .text:0x80051C84; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J2DTevBlock1FUlUc = .text:0x80051C90; // type:function size:0xC scope:weak align:4 +getTevKAlphaSel__12J2DTevBlock1FUl = .text:0x80051C9C; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J2DTevBlock1FUc = .text:0x80051CA8; // type:function size:0x4 scope:weak align:4 +getTevStageNum__12J2DTevBlock1CFv = .text:0x80051CAC; // type:function size:0x8 scope:weak align:4 +setTevStage__12J2DTevBlock1FUl11J2DTevStage = .text:0x80051CB4; // type:function size:0x3C scope:weak align:4 +getTevStage__12J2DTevBlock1FUl = .text:0x80051CF0; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J2DTevBlock1FUl18J2DTevSwapModeInfo = .text:0x80051D04; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J2DTevBlock1FUl19J2DTevSwapModeTable = .text:0x80051D3C; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J2DTevBlock1FUl = .text:0x80051D4C; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J2DTevBlock1FUl14J2DIndTevStage = .text:0x80051D5C; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J2DTevBlock1FUl = .text:0x80051D70; // type:function size:0x14 scope:weak align:4 +insertTexture__12J2DTevBlock1FUlPC7ResTIMG = .text:0x80051D84; // type:function size:0x30 scope:weak align:4 +getTexture__12J2DTevBlock1FUl = .text:0x80051DB4; // type:function size:0x20 scope:weak align:4 +getPalette__12J2DTevBlock1FUl = .text:0x80051DD4; // type:function size:0x20 scope:weak align:4 +getFont__12J2DTevBlock1Fv = .text:0x80051DF4; // type:function size:0x8 scope:weak align:4 +setUndeleteFlag__12J2DTevBlock1FUc = .text:0x80051DFC; // type:function size:0x10 scope:weak align:4 +setFontUndeleteFlag__12J2DTevBlock1Fv = .text:0x80051E0C; // type:function size:0x10 scope:weak align:4 +initialize__11J2DTevBlockFv = .text:0x80051E1C; // type:function size:0x4 scope:weak align:4 +setGX__11J2DTevBlockFv = .text:0x80051E20; // type:function size:0x4 scope:weak align:4 +loadTexture__11J2DTevBlockF11_GXTexMapIDUl = .text:0x80051E24; // type:function size:0x4 scope:weak align:4 +setFontNo__11J2DTevBlockFUs = .text:0x80051E28; // type:function size:0x4 scope:weak align:4 +setTevKColor__11J2DTevBlockFUlQ28JUtility6TColor = .text:0x80051E2C; // type:function size:0x4 scope:weak align:4 +getTevKColorSel__11J2DTevBlockFUl = .text:0x80051E30; // type:function size:0x8 scope:weak align:4 +getTevKAlphaSel__11J2DTevBlockFUl = .text:0x80051E38; // type:function size:0x8 scope:weak align:4 +setTevStage__11J2DTevBlockFUl11J2DTevStage = .text:0x80051E40; // type:function size:0x4 scope:weak align:4 +setTevSwapModeInfo__11J2DTevBlockFUl18J2DTevSwapModeInfo = .text:0x80051E44; // type:function size:0x4 scope:weak align:4 +setTevSwapModeTable__11J2DTevBlockFUl19J2DTevSwapModeTable = .text:0x80051E48; // type:function size:0x4 scope:weak align:4 +setIndTevStage__11J2DTevBlockFUl14J2DIndTevStage = .text:0x80051E4C; // type:function size:0x4 scope:weak align:4 +getIndTevStage__11J2DTevBlockFUl = .text:0x80051E50; // type:function size:0x8 scope:weak align:4 +insertTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80051E58; // type:function size:0x8 scope:weak align:4 +insertTexture__11J2DTevBlockFUlPC7ResTIMGP10JUTPalette = .text:0x80051E60; // type:function size:0x8 scope:weak align:4 +setTexture__11J2DTevBlockFUlP10JUTTexture = .text:0x80051E68; // type:function size:0x8 scope:weak align:4 +setTexture__11J2DTevBlockFUlPC7ResTIMG = .text:0x80051E70; // type:function size:0x8 scope:weak align:4 +removeTexture__11J2DTevBlockFUl = .text:0x80051E78; // type:function size:0x8 scope:weak align:4 +setFont__11J2DTevBlockFP7JUTFont = .text:0x80051E80; // type:function size:0x8 scope:weak align:4 +setFont__11J2DTevBlockFP7ResFONT = .text:0x80051E88; // type:function size:0x8 scope:weak align:4 +setPalette__11J2DTevBlockFUlPC7ResTLUT = .text:0x80051E90; // type:function size:0x8 scope:weak align:4 +prepareTexture__11J2DTevBlockFUc = .text:0x80051E98; // type:function size:0x8 scope:weak align:4 +shiftDeleteFlag__11J2DTevBlockFUcb = .text:0x80051EA0; // type:function size:0x4 scope:weak align:4 +__ct__11J2DMaterialFv = .text:0x80051EA4; // type:function size:0x120 scope:global align:4 +__ct__11J2DTexCoordFv = .text:0x80051FC4; // type:function size:0x20 scope:weak align:4 +__dt__13J2DColorBlockFv = .text:0x80051FE4; // type:function size:0x48 scope:weak align:4 +__ct__12J2DColorChanFv = .text:0x8005202C; // type:function size:0x10 scope:weak align:4 +__ct__11J2DMaterialFUl = .text:0x8005203C; // type:function size:0x14C scope:global align:4 +__dt__11J2DMaterialFv = .text:0x80052188; // type:function size:0xC0 scope:global align:4 +setGX__11J2DMaterialFv = .text:0x80052248; // type:function size:0x84 scope:global align:4 +createTevBlock__11J2DMaterialFib = .text:0x800522CC; // type:function size:0x1B4 scope:global align:4 +createIndBlock__11J2DMaterialFib = .text:0x80052480; // type:function size:0x1D8 scope:global align:4 +__ct__19J2DIndTexCoordScaleFv = .text:0x80052658; // type:function size:0x18 scope:weak align:4 +__ct__12J2DIndTexMtxFv = .text:0x80052670; // type:function size:0x40 scope:weak align:4 +__ct__14J2DIndTexOrderFv = .text:0x800526B0; // type:function size:0x18 scope:weak align:4 +makeAnmPointer__11J2DMaterialFv = .text:0x800526C8; // type:function size:0xC8 scope:global align:4 +setAnimation__11J2DMaterialFP11J2DAnmColor = .text:0x80052790; // type:function size:0x144 scope:global align:4 +setAnimation__11J2DMaterialFP19J2DAnmTextureSRTKey = .text:0x800528D4; // type:function size:0x1A4 scope:global align:4 +setAnimation__11J2DMaterialFP16J2DAnmTexPattern = .text:0x80052A78; // type:function size:0x194 scope:global align:4 +setAnimation__11J2DMaterialFP15J2DAnmTevRegKey = .text:0x80052C0C; // type:function size:0x1FC scope:global align:4 +animation__11J2DMaterialFv = .text:0x80052E08; // type:function size:0x470 scope:global align:4 +getColor__11J2DAnmColorCFUsP8_GXColor = .text:0x80053278; // type:function size:0x4 scope:weak align:4 +setGX__15J2DIndBlockNullFv = .text:0x8005327C; // type:function size:0x4 scope:weak align:4 +getType__15J2DIndBlockNullFv = .text:0x80053280; // type:function size:0xC scope:weak align:4 +__dt__15J2DIndBlockNullFv = .text:0x8005328C; // type:function size:0x5C scope:weak align:4 +__ct__18J2DMaterialFactoryFRC16J2DMaterialBlock = .text:0x800532E8; // type:function size:0x1C4 scope:global align:4 +create__18J2DMaterialFactoryCFP11J2DMaterialiUlP15J2DResReferenceP15J2DResReferenceP10JKRArchive = .text:0x800534AC; // type:function size:0x9C8 scope:global align:4 +newMatColor__18J2DMaterialFactoryCFii = .text:0x80053E74; // type:function size:0x9C scope:global align:4 +newColorChanNum__18J2DMaterialFactoryCFi = .text:0x80053F10; // type:function size:0x38 scope:global align:4 +newColorChan__18J2DMaterialFactoryCFii = .text:0x80053F48; // type:function size:0x54 scope:global align:4 +newTexGenNum__18J2DMaterialFactoryCFi = .text:0x80053F9C; // type:function size:0x38 scope:global align:4 +newTexCoord__18J2DMaterialFactoryCFii = .text:0x80053FD4; // type:function size:0x74 scope:global align:4 +newTexMtx__18J2DMaterialFactoryCFii = .text:0x80054048; // type:function size:0xEC scope:global align:4 +newCullMode__18J2DMaterialFactoryCFi = .text:0x80054134; // type:function size:0x40 scope:global align:4 +newTexNo__18J2DMaterialFactoryCFii = .text:0x80054174; // type:function size:0x48 scope:global align:4 +newFontNo__18J2DMaterialFactoryCFi = .text:0x800541BC; // type:function size:0x40 scope:global align:4 +newTevOrder__18J2DMaterialFactoryCFii = .text:0x800541FC; // type:function size:0x74 scope:global align:4 +newTevColor__18J2DMaterialFactoryCFii = .text:0x80054270; // type:function size:0x98 scope:global align:4 +newTevKColor__18J2DMaterialFactoryCFii = .text:0x80054308; // type:function size:0x9C scope:global align:4 +newTevStageNum__18J2DMaterialFactoryCFi = .text:0x800543A4; // type:function size:0x38 scope:global align:4 +newTevStage__18J2DMaterialFactoryCFii = .text:0x800543DC; // type:function size:0x60 scope:global align:4 +__ct__11J2DTevStageFRC15J2DTevStageInfo = .text:0x8005443C; // type:function size:0x60 scope:weak align:4 +newTevSwapModeTable__18J2DMaterialFactoryCFii = .text:0x8005449C; // type:function size:0x9C scope:global align:4 +newIndTexStageNum__18J2DMaterialFactoryCFi = .text:0x80054538; // type:function size:0x30 scope:global align:4 +newIndTexOrder__18J2DMaterialFactoryCFii = .text:0x80054568; // type:function size:0x68 scope:global align:4 +newIndTexMtx__18J2DMaterialFactoryCFii = .text:0x800545D0; // type:function size:0xEC scope:global align:4 +newIndTevStage__18J2DMaterialFactoryCFii = .text:0x800546BC; // type:function size:0x14C scope:global align:4 +newIndTexCoordScale__18J2DMaterialFactoryCFii = .text:0x80054808; // type:function size:0x68 scope:global align:4 +newAlphaComp__18J2DMaterialFactoryCFi = .text:0x80054870; // type:function size:0x7C scope:global align:4 +newBlend__18J2DMaterialFactoryCFi = .text:0x800548EC; // type:function size:0x7C scope:global align:4 +newDither__18J2DMaterialFactoryCFi = .text:0x80054968; // type:function size:0x38 scope:global align:4 +JSUConvertOffsetToPtr<12J2DBlendInfo>__FPCvPCv = .text:0x800549A0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J2DAlphaCompInfo>__FPCvPCv = .text:0x800549B8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J2DTevSwapModeTableInfo>__FPCvPCv = .text:0x800549D0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J2DTevSwapModeInfo>__FPCvPCv = .text:0x800549E8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J2DTevStageInfo>__FPCvPCv = .text:0x80054A00; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<11_GXColorS10>__FPCvPCv = .text:0x80054A18; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J2DTevOrderInfo>__FPCvPCv = .text:0x80054A30; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<13J2DTexMtxInfo>__FPCvPCv = .text:0x80054A48; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J2DTexCoordInfo>__FPCvPCv = .text:0x80054A60; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J2DColorChanInfo>__FPCvPCv = .text:0x80054A78; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<8_GXColor>__FPCvPCv = .text:0x80054A90; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<11_GXCullMode>__FPCvPCv = .text:0x80054AA8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<14J2DIndInitData>__FPCvPCv = .text:0x80054AC0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J2DMaterialInitData>__FPCvPCv = .text:0x80054AD8; // type:function size:0x18 scope:weak align:4 +__ct__12J2DPictureExFv = .text:0x80054AF0; // type:function size:0x48 scope:global align:4 +__ct__12J2DPictureExFPC7ResTIMGUl = .text:0x80054B38; // type:function size:0x7C scope:global align:4 +append__12J2DPictureExFPC7ResTIMGf = .text:0x80054BB4; // type:function size:0x30 scope:weak align:4 +append__12J2DPictureExFPCcf = .text:0x80054BE4; // type:function size:0x30 scope:weak align:4 +initiate__12J2DPictureExFPC7ResTIMGPC7ResTLUT = .text:0x80054C14; // type:function size:0xAC scope:global align:4 +initialize__12J2DPictureExFUl = .text:0x80054CC0; // type:function size:0xD0 scope:global align:4 +__ct__12J2DPictureExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x80054D90; // type:function size:0x29C scope:global align:4 +__ct__12J2DPictureExFUxRCQ29JGeometry8TBox2PC7ResTIMGUl = .text:0x8005502C; // type:function size:0x110 scope:global align:4 +__ct__12J2DPictureExFUxRCQ29JGeometry8TBox2PCcUl = .text:0x8005513C; // type:function size:0x110 scope:global align:4 +__dt__12J2DPictureExFv = .text:0x8005524C; // type:function size:0x90 scope:global align:4 +prepareTexture__12J2DPictureExFUc = .text:0x800552DC; // type:function size:0xF8 scope:global align:4 +drawSelf__12J2DPictureExFffPA3_A4_f = .text:0x800553D4; // type:function size:0xCC scope:global align:4 +drawFullSet__12J2DPictureExFffffPA3_A4_f = .text:0x800554A0; // type:function size:0x5C scope:global align:4 +drawTexCoord__12J2DPictureExFffffssssssssPA3_A4_f = .text:0x800554FC; // type:function size:0x2B4 scope:global align:4 +append__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x800557B0; // type:function size:0x48 scope:global align:4 +append__12J2DPictureExFPCcP10JUTPalettef = .text:0x800557F8; // type:function size:0x48 scope:global align:4 +append__12J2DPictureExFP10JUTTexturef = .text:0x80055840; // type:function size:0x48 scope:global align:4 +insert__12J2DPictureExFPC7ResTIMGP10JUTPaletteUcf = .text:0x80055888; // type:function size:0xB4 scope:global align:4 +insert__12J2DPictureExFPCcP10JUTPaletteUcf = .text:0x8005593C; // type:function size:0x78 scope:global align:4 +insert__12J2DPictureExFP10JUTTextureUcf = .text:0x800559B4; // type:function size:0xA4 scope:global align:4 +insertCommon__12J2DPictureExFUcf = .text:0x80055A58; // type:function size:0x334 scope:global align:4 +isInsert__12J2DPictureExCFUc = .text:0x80055D8C; // type:function size:0xF8 scope:global align:4 +remove__12J2DPictureExFUc = .text:0x80055E84; // type:function size:0x1AC scope:global align:4 +remove__12J2DPictureExFv = .text:0x80056030; // type:function size:0x64 scope:global align:4 +remove__12J2DPictureExFP10JUTTexture = .text:0x80056094; // type:function size:0xC8 scope:global align:4 +isRemove__12J2DPictureExCFUc = .text:0x8005615C; // type:function size:0x54 scope:global align:4 +draw__12J2DPictureExFffUcbbb = .text:0x800561B0; // type:function size:0x124 scope:global align:4 +draw__12J2DPictureExFffffbbb = .text:0x800562D4; // type:function size:0x5A8 scope:global align:4 +drawOut__12J2DPictureExFffffff = .text:0x8005687C; // type:function size:0x168 scope:global align:4 +drawOut__12J2DPictureExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2 = .text:0x800569E4; // type:function size:0x3E8 scope:global align:4 +load__12J2DPictureExF11_GXTexMapIDUc = .text:0x80056DCC; // type:function size:0x48 scope:global align:4 +setTevOrder__12J2DPictureExFUcUcb = .text:0x80056E14; // type:function size:0x1FC scope:global align:4 +setTevStage__12J2DPictureExFUcUcb = .text:0x80057010; // type:function size:0x2BC scope:global align:4 +setStage__12J2DPictureExFP11J2DTevStageQ212J2DPictureEx10stage_enum = .text:0x800572CC; // type:function size:0x300 scope:global align:4 +setTevKColor__12J2DPictureExFUc = .text:0x800575CC; // type:function size:0x4A4 scope:global align:4 +setTevKColorSel__12J2DPictureExFUc = .text:0x80057A70; // type:function size:0xB0 scope:global align:4 +setTevKAlphaSel__12J2DPictureExFUc = .text:0x80057B20; // type:function size:0xB0 scope:global align:4 +shiftSetBlendRatio__12J2DPictureExFUcfbb = .text:0x80057BD0; // type:function size:0x118 scope:global align:4 +setBlendColorRatio__12J2DPictureExFffffffff = .text:0x80057CE8; // type:function size:0x58 scope:global align:4 +setBlendAlphaRatio__12J2DPictureExFffffffff = .text:0x80057D40; // type:function size:0x58 scope:global align:4 +changeTexture__12J2DPictureExFPC7ResTIMGUc = .text:0x80057D98; // type:function size:0x140 scope:global align:4 +changeTexture__12J2DPictureExFPCcUc = .text:0x80057ED8; // type:function size:0x58 scope:global align:4 +changeTexture__12J2DPictureExFPC7ResTIMGUcP10JUTPalette = .text:0x80057F30; // type:function size:0x160 scope:global align:4 +changeTexture__12J2DPictureExFPCcUcP10JUTPalette = .text:0x80058090; // type:function size:0x68 scope:global align:4 +getTexture__12J2DPictureExCFUc = .text:0x800580F8; // type:function size:0x58 scope:global align:4 +getTextureCount__12J2DPictureExCFv = .text:0x80058150; // type:function size:0x20 scope:global align:4 +setBlack__12J2DPictureExFQ28JUtility6TColor = .text:0x80058170; // type:function size:0x88 scope:global align:4 +setWhite__12J2DPictureExFQ28JUtility6TColor = .text:0x800581F8; // type:function size:0x88 scope:global align:4 +setBlackWhite__12J2DPictureExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80058280; // type:function size:0x454 scope:global align:4 +getBlackWhite__12J2DPictureExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x800586D4; // type:function size:0x1C4 scope:global align:4 +isSetBlackWhite__12J2DPictureExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x80058898; // type:function size:0xDC scope:global align:4 +getBlack__12J2DPictureExCFv = .text:0x80058974; // type:function size:0x60 scope:global align:4 +getWhite__12J2DPictureExCFv = .text:0x800589D4; // type:function size:0x60 scope:global align:4 +setAlpha__12J2DPictureExFUc = .text:0x80058A34; // type:function size:0x20 scope:global align:4 +setCullBack__12J2DPictureExF11_GXCullMode = .text:0x80058A54; // type:function size:0x34 scope:global align:4 +rewriteAlpha__12J2DPictureExFv = .text:0x80058A88; // type:function size:0x18 scope:global align:4 +isUsed__12J2DPictureExFPC7ResTIMG = .text:0x80058AA0; // type:function size:0xA8 scope:global align:4 +setAnimation__12J2DPictureExFP11J2DAnmColor = .text:0x80058B48; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP19J2DAnmTextureSRTKey = .text:0x80058B74; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP16J2DAnmTexPattern = .text:0x80058BA0; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP15J2DAnmTevRegKey = .text:0x80058BCC; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DPictureExFP20J2DAnmVisibilityFull = .text:0x80058BF8; // type:function size:0x8 scope:global align:4 +setAnimation__12J2DPictureExFP14J2DAnmVtxColor = .text:0x80058C00; // type:function size:0xE0 scope:global align:4 +animationPane__12J2DPictureExFPC15J2DAnmTransform = .text:0x80058CE0; // type:function size:0x164 scope:global align:4 +getUsableTlut__12J2DPictureExFUc = .text:0x80058E44; // type:function size:0x104 scope:global align:4 +getMaterial__12J2DPictureExCFv = .text:0x80058F48; // type:function size:0x8 scope:weak align:4 +prepend__12J2DPictureExFP10JUTTexturef = .text:0x80058F50; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPCcP10JUTPalettef = .text:0x80058F80; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPCcf = .text:0x80058FB0; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPC7ResTIMGP10JUTPalettef = .text:0x80058FE0; // type:function size:0x30 scope:weak align:4 +prepend__12J2DPictureExFPC7ResTIMGf = .text:0x80059010; // type:function size:0x30 scope:weak align:4 +insert__12J2DPictureExFPCcUcf = .text:0x80059040; // type:function size:0x34 scope:weak align:4 +insert__12J2DPictureExFPC7ResTIMGUcf = .text:0x80059074; // type:function size:0x34 scope:weak align:4 +draw__12J2DPictureExFffbbb = .text:0x800590A8; // type:function size:0x40 scope:weak align:4 +drawOut__12J2DPictureExFffffffff = .text:0x800590E8; // type:function size:0x64 scope:weak align:4 +load__12J2DPictureExFUc = .text:0x8005914C; // type:function size:0x34 scope:weak align:4 +setCullBack__12J2DPictureExFb = .text:0x80059180; // type:function size:0x3C scope:weak align:4 +isUsed__12J2DPictureExFPC7ResFONT = .text:0x800591BC; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DPictureExFP15J2DAnmTransform = .text:0x800591DC; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DPictureExFP10J2DAnmBase = .text:0x800591FC; // type:function size:0x20 scope:weak align:4 +load__9J2DTexMtxFUl = .text:0x8005921C; // type:function size:0x30 scope:global align:4 +calc__9J2DTexMtxFv = .text:0x8005924C; // type:function size:0x68 scope:global align:4 +getTextureMtx__9J2DTexMtxFRC17J2DTextureSRTInfo3VecPA4_f = .text:0x800592B4; // type:function size:0x190 scope:global align:4 +getTextureMtxMaya__9J2DTexMtxFRC17J2DTextureSRTInfoPA4_f = .text:0x80059444; // type:function size:0x180 scope:global align:4 +load__14J2DIndTevStageFUc = .text:0x800595C4; // type:function size:0x54 scope:global align:4 +load__12J2DIndTexMtxFUc = .text:0x80059618; // type:function size:0x30 scope:global align:4 +load__19J2DIndTexCoordScaleFUc = .text:0x80059648; // type:function size:0x30 scope:global align:4 +load__14J2DIndTexOrderFUc = .text:0x80059678; // type:function size:0x30 scope:global align:4 +__ct__12J2DTextBoxExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial = .text:0x800596A8; // type:function size:0x330 scope:global align:4 +__dt__12J2DTextBoxExFv = .text:0x800599D8; // type:function size:0x90 scope:global align:4 +drawSelf__12J2DTextBoxExFffPA3_A4_f = .text:0x80059A68; // type:function size:0x300 scope:global align:4 +draw__12J2DTextBoxExFff = .text:0x80059D68; // type:function size:0x240 scope:global align:4 +draw__12J2DTextBoxExFfff18J2DTextBoxHBinding = .text:0x80059FA8; // type:function size:0x26C scope:global align:4 +setFont__12J2DTextBoxExFP7JUTFont = .text:0x8005A214; // type:function size:0x64 scope:global align:4 +getFont__12J2DTextBoxExCFv = .text:0x8005A278; // type:function size:0x4C scope:global align:4 +setTevStage__12J2DTextBoxExFb = .text:0x8005A2C4; // type:function size:0xA4 scope:global align:4 +setStage__12J2DTextBoxExFP11J2DTevStageQ212J2DTextBoxEx10stage_enum = .text:0x8005A368; // type:function size:0x2B0 scope:global align:4 +setBlack__12J2DTextBoxExFQ28JUtility6TColor = .text:0x8005A618; // type:function size:0x88 scope:global align:4 +setWhite__12J2DTextBoxExFQ28JUtility6TColor = .text:0x8005A6A0; // type:function size:0x88 scope:global align:4 +setBlackWhite__12J2DTextBoxExFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8005A728; // type:function size:0x224 scope:global align:4 +getBlackWhite__12J2DTextBoxExCFPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x8005A94C; // type:function size:0x194 scope:global align:4 +isSetBlackWhite__12J2DTextBoxExCFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8005AAE0; // type:function size:0x94 scope:global align:4 +getBlack__12J2DTextBoxExCFv = .text:0x8005AB74; // type:function size:0x60 scope:global align:4 +getWhite__12J2DTextBoxExCFv = .text:0x8005ABD4; // type:function size:0x60 scope:global align:4 +setAlpha__12J2DTextBoxExFUc = .text:0x8005AC34; // type:function size:0x20 scope:global align:4 +setCullBack__12J2DTextBoxExF11_GXCullMode = .text:0x8005AC54; // type:function size:0x34 scope:global align:4 +rewriteAlpha__12J2DTextBoxExFv = .text:0x8005AC88; // type:function size:0x18 scope:global align:4 +isUsed__12J2DTextBoxExFPC7ResFONT = .text:0x8005ACA0; // type:function size:0x8C scope:global align:4 +setAnimation__12J2DTextBoxExFP11J2DAnmColor = .text:0x8005AD2C; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP19J2DAnmTextureSRTKey = .text:0x8005AD58; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP16J2DAnmTexPattern = .text:0x8005AD84; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP15J2DAnmTevRegKey = .text:0x8005ADB0; // type:function size:0x2C scope:global align:4 +setAnimation__12J2DTextBoxExFP20J2DAnmVisibilityFull = .text:0x8005ADDC; // type:function size:0x8 scope:global align:4 +animationPane__12J2DTextBoxExFPC15J2DAnmTransform = .text:0x8005ADE4; // type:function size:0x80 scope:global align:4 +getMaterial__12J2DTextBoxExCFv = .text:0x8005AE64; // type:function size:0x8 scope:weak align:4 +setCullBack__12J2DTextBoxExFb = .text:0x8005AE6C; // type:function size:0x3C scope:weak align:4 +isUsed__12J2DTextBoxExFPC7ResTIMG = .text:0x8005AEA8; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DTextBoxExFP14J2DAnmVtxColor = .text:0x8005AEC8; // type:function size:0x4 scope:weak align:4 +setAnimation__12J2DTextBoxExFP15J2DAnmTransform = .text:0x8005AECC; // type:function size:0x20 scope:weak align:4 +setAnimation__12J2DTextBoxExFP10J2DAnmBase = .text:0x8005AEEC; // type:function size:0x20 scope:weak align:4 +getTransform__19J2DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x8005AF0C; // type:function size:0x56C scope:global align:4 +calcTransform__18J2DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x8005B478; // type:function size:0x420 scope:global align:4 +searchUpdateMaterialID__11J2DAnmColorFP9J2DScreen = .text:0x8005B898; // type:function size:0xAC scope:global align:4 +getColor__15J2DAnmColorFullCFUsP8_GXColor = .text:0x8005B944; // type:function size:0x238 scope:global align:4 +getColor__14J2DAnmColorKeyCFUsP8_GXColor = .text:0x8005BB7C; // type:function size:0x2CC scope:global align:4 +getColor__18J2DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x8005BE48; // type:function size:0x240 scope:global align:4 +getColor__17J2DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x8005C088; // type:function size:0x2F4 scope:global align:4 +calcTransform__19J2DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x8005C37C; // type:function size:0x268 scope:global align:4 +searchUpdateMaterialID__19J2DAnmTextureSRTKeyFP9J2DScreen = .text:0x8005C5E4; // type:function size:0xCC scope:global align:4 +searchUpdateMaterialID__16J2DAnmTexPatternFP9J2DScreen = .text:0x8005C6B0; // type:function size:0x1D4 scope:global align:4 +__ct__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8005C884; // type:function size:0x10 scope:weak align:4 +__dt__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv = .text:0x8005C894; // type:function size:0x54 scope:weak align:4 +getTexNo__16J2DAnmTexPatternCFUsPUs = .text:0x8005C8E8; // type:function size:0xB4 scope:global align:4 +getResTIMG__16J2DAnmTexPatternCFUs = .text:0x8005C99C; // type:function size:0xC4 scope:global align:4 +getPalette__16J2DAnmTexPatternCFUs = .text:0x8005CA60; // type:function size:0xC8 scope:global align:4 +getVisibility__20J2DAnmVisibilityFullCFUsPUc = .text:0x8005CB28; // type:function size:0xA8 scope:global align:4 +getTevColorReg__15J2DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x8005CBD0; // type:function size:0x2CC scope:global align:4 +getTevKonstReg__15J2DAnmTevRegKeyCFUsP8_GXColor = .text:0x8005CE9C; // type:function size:0x2CC scope:global align:4 +searchUpdateMaterialID__15J2DAnmTevRegKeyFP9J2DScreen = .text:0x8005D168; // type:function size:0x10C scope:global align:4 +__dt__15J2DAnmTevRegKeyFv = .text:0x8005D274; // type:function size:0x88 scope:weak align:4 +__dt__16J2DAnmTexPatternFv = .text:0x8005D2FC; // type:function size:0x90 scope:weak align:4 +__dt__19J2DAnmTextureSRTKeyFv = .text:0x8005D38C; // type:function size:0x88 scope:weak align:4 +__dt__17J2DAnmVtxColorKeyFv = .text:0x8005D414; // type:function size:0x6C scope:weak align:4 +__dt__18J2DAnmVtxColorFullFv = .text:0x8005D480; // type:function size:0x6C scope:weak align:4 +__dt__14J2DAnmColorKeyFv = .text:0x8005D4EC; // type:function size:0x84 scope:weak align:4 +__dt__15J2DAnmColorFullFv = .text:0x8005D570; // type:function size:0x84 scope:weak align:4 +__dt__18J2DAnmTransformKeyFv = .text:0x8005D5F4; // type:function size:0x6C scope:weak align:4 +getTransform__18J2DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x8005D660; // type:function size:0x30 scope:weak align:4 +__dt__19J2DAnmTransformFullFv = .text:0x8005D690; // type:function size:0x6C scope:weak align:4 +J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs = .text:0x8005D6FC; // type:function size:0x234 scope:local align:4 +J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf = .text:0x8005D930; // type:function size:0x17C scope:local align:4 +__ct__6J3DSysFv = .text:0x8005DAAC; // type:function size:0x114 scope:global align:4 +loadPosMtxIndx__6J3DSysCFiUs = .text:0x8005DBC0; // type:function size:0x24 scope:global align:4 +loadNrmMtxIndx__6J3DSysCFiUs = .text:0x8005DBE4; // type:function size:0x28 scope:global align:4 +drawInit__6J3DSysFv = .text:0x8005DC0C; // type:function size:0x7B8 scope:global align:4 +reinitGX__6J3DSysFv = .text:0x8005E3C4; // type:function size:0x5C scope:global align:4 +reinitGenMode__6J3DSysFv = .text:0x8005E420; // type:function size:0x4C scope:global align:4 +reinitLighting__6J3DSysFv = .text:0x8005E46C; // type:function size:0xAC scope:global align:4 +reinitTransform__6J3DSysFv = .text:0x8005E518; // type:function size:0x104 scope:global align:4 +reinitTexture__6J3DSysFv = .text:0x8005E61C; // type:function size:0xA4 scope:global align:4 +reinitTevStages__6J3DSysFv = .text:0x8005E6C0; // type:function size:0x308 scope:global align:4 +reinitIndStages__6J3DSysFv = .text:0x8005E9C8; // type:function size:0xF8 scope:global align:4 +reinitPixelProc__6J3DSysFv = .text:0x8005EAC0; // type:function size:0x94 scope:global align:4 +ErrorReport__6J3DSysCF10J3DErrType = .text:0x8005EB54; // type:function size:0x4 scope:global align:4 +__sinit_J3DSys_cpp = .text:0x8005EB58; // type:function size:0x28 scope:local align:4 +__ct__13J3DVertexDataFv = .text:0x8005EB80; // type:function size:0x68 scope:global align:4 +setVertexData__15J3DVertexBufferFP13J3DVertexData = .text:0x8005EBE8; // type:function size:0x60 scope:global align:4 +init__15J3DVertexBufferFv = .text:0x8005EC48; // type:function size:0x58 scope:global align:4 +__dt__15J3DVertexBufferFv = .text:0x8005ECA0; // type:function size:0x3C scope:global align:4 +setArray__15J3DVertexBufferCFv = .text:0x8005ECDC; // type:function size:0x24 scope:global align:4 +copyVtxColorArray__15J3DVertexBufferF19J3DDeformAttachFlag = .text:0x8005ED00; // type:function size:0x128 scope:global align:4 +__ct__14J3DDrawMtxDataFv = .text:0x8005EE28; // type:function size:0x14 scope:global align:4 +__dt__14J3DDrawMtxDataFv = .text:0x8005EE3C; // type:function size:0x3C scope:global align:4 +J3DCalcBBoardMtx__FPA4_f = .text:0x8005EE78; // type:function size:0xF0 scope:global align:4 +J3DCalcYBBoardMtx__FPA4_f = .text:0x8005EF68; // type:function size:0x13C scope:global align:4 +J3DPSCalcInverseTranspose__FPA4_fPA3_f = .text:0x8005F0A4; // type:function size:0xC8 scope:global align:4 +J3DGetTranslateRotateMtx__FRC16J3DTransformInfoPA4_f = .text:0x8005F16C; // type:function size:0xB0 scope:global align:4 +J3DGetTranslateRotateMtx__FsssfffPA4_f = .text:0x8005F21C; // type:function size:0xB0 scope:global align:4 +J3DGetTextureMtx__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x8005F2CC; // type:function size:0xAC scope:global align:4 +J3DGetTextureMtxOld__FRC17J3DTextureSRTInfoRC3VecPA4_f = .text:0x8005F378; // type:function size:0xAC scope:global align:4 +J3DGetTextureMtxMaya__FRC17J3DTextureSRTInfoPA4_f = .text:0x8005F424; // type:function size:0xA8 scope:global align:4 +J3DGetTextureMtxMayaOld__FRC17J3DTextureSRTInfoPA4_f = .text:0x8005F4CC; // type:function size:0xA8 scope:global align:4 +J3DScaleNrmMtx__FPA4_fRC3Vec = .text:0x8005F574; // type:function size:0x64 scope:global align:4 +J3DScaleNrmMtx33__FPA3_fRC3Vec = .text:0x8005F5D8; // type:function size:0x54 scope:global align:4 +J3DMtxProjConcat__FPA4_fPA4_fPA4_f = .text:0x8005F62C; // type:function size:0x124 scope:global align:4 +J3DPSMtxArrayConcat__FPA4_fPA4_fPA4_fUl = .text:0x8005F750; // type:function size:0xDC scope:global align:4 +newDisplayList__17J3DDisplayListObjFUl = .text:0x8005F82C; // type:function size:0x60 scope:global align:4 +newSingleDisplayList__17J3DDisplayListObjFUl = .text:0x8005F88C; // type:function size:0x58 scope:global align:4 +single_To_Double__17J3DDisplayListObjFv = .text:0x8005F8E4; // type:function size:0x68 scope:global align:4 +setSingleDisplayList__17J3DDisplayListObjFPvUl = .text:0x8005F94C; // type:function size:0x20 scope:global align:4 +callDL__17J3DDisplayListObjCFv = .text:0x8005F96C; // type:function size:0x2C scope:global align:4 +beginDL__17J3DDisplayListObjFv = .text:0x8005F998; // type:function size:0x60 scope:global align:4 +endDL__17J3DDisplayListObjFv = .text:0x8005F9F8; // type:function size:0x5C scope:global align:4 +beginPatch__17J3DDisplayListObjFv = .text:0x8005FA54; // type:function size:0x60 scope:global align:4 +endPatch__17J3DDisplayListObjFv = .text:0x8005FAB4; // type:function size:0x3C scope:global align:4 +entry__9J3DPacketFP13J3DDrawBuffer = .text:0x8005FAF0; // type:function size:0x8 scope:global align:4 +addChildPacket__9J3DPacketFP9J3DPacket = .text:0x8005FAF8; // type:function size:0x20 scope:global align:4 +draw__9J3DPacketFv = .text:0x8005FB18; // type:function size:0x4 scope:weak align:4 +__dt__9J3DPacketFv = .text:0x8005FB1C; // type:function size:0x48 scope:weak align:4 +__dt__13J3DDrawPacketFv = .text:0x8005FB64; // type:function size:0x5C scope:global align:4 +newDisplayList__13J3DDrawPacketFUl = .text:0x8005FBC0; // type:function size:0xA4 scope:global align:4 +newSingleDisplayList__13J3DDrawPacketFUl = .text:0x8005FC64; // type:function size:0x9C scope:global align:4 +draw__13J3DDrawPacketFv = .text:0x8005FD00; // type:function size:0x2C scope:global align:4 +__ct__12J3DMatPacketFv = .text:0x8005FD2C; // type:function size:0x5C scope:global align:4 +__dt__12J3DMatPacketFv = .text:0x8005FD88; // type:function size:0x6C scope:global align:4 +addShapePacket__12J3DMatPacketFP14J3DShapePacket = .text:0x8005FDF4; // type:function size:0x20 scope:global align:4 +beginDiff__12J3DMatPacketFv = .text:0x8005FE14; // type:function size:0x64 scope:global align:4 +endDiff__12J3DMatPacketFv = .text:0x8005FE78; // type:function size:0x60 scope:global align:4 +isSame__12J3DMatPacketCFP12J3DMatPacket = .text:0x8005FED8; // type:function size:0x24 scope:global align:4 +draw__12J3DMatPacketFv = .text:0x8005FEFC; // type:function size:0x94 scope:global align:4 +__ct__14J3DShapePacketFv = .text:0x8005FF90; // type:function size:0x58 scope:global align:4 +__dt__14J3DShapePacketFv = .text:0x8005FFE8; // type:function size:0x6C scope:global align:4 +calcDifferedBufferSize__14J3DShapePacketFUl = .text:0x80060054; // type:function size:0x274 scope:global align:4 +getTevStageNum__11J3DTevBlockCFv = .text:0x800602C8; // type:function size:0x8 scope:weak align:4 +getTexGenNum__14J3DTexGenBlockCFv = .text:0x800602D0; // type:function size:0x8 scope:weak align:4 +newDifferedDisplayList__14J3DShapePacketFUl = .text:0x800602D8; // type:function size:0xBC scope:global align:4 +newDifferedTexMtx__14J3DShapePacketF14J3DTexDiffFlag = .text:0x80060394; // type:function size:0x114 scope:global align:4 +draw__14J3DShapePacketFv = .text:0x800604A8; // type:function size:0x1B0 scope:global align:4 +drawFast__14J3DShapePacketFv = .text:0x80060658; // type:function size:0x198 scope:global align:4 +entry__12J3DMatPacketFP13J3DDrawBuffer = .text:0x800607F0; // type:function size:0x60 scope:weak align:4 +initialize__8J3DShapeFv = .text:0x80060850; // type:function size:0x70 scope:global align:4 +calcNBTScale__8J3DShapeFRC3VecPA3_A3_fPA3_A3_f = .text:0x800608C0; // type:function size:0x78 scope:global align:4 +countBumpMtxNum__8J3DShapeCFv = .text:0x80060938; // type:function size:0x80 scope:global align:4 +isSameVcdVatCmd__8J3DShapeFP8J3DShape = .text:0x800609B8; // type:function size:0xEC scope:global align:4 +makeVtxArrayCmd__8J3DShapeFv = .text:0x80060AA4; // type:function size:0x2FC scope:global align:4 +makeVcdVatCmd__8J3DShapeFv = .text:0x80060DA0; // type:function size:0xA0 scope:global align:4 +loadPreDrawSetting__8J3DShapeCFv = .text:0x80060E40; // type:function size:0xA0 scope:global align:4 +drawFast__8J3DShapeCFv = .text:0x80060EE0; // type:function size:0x278 scope:global align:4 +draw__8J3DShapeCFv = .text:0x80061158; // type:function size:0xB8 scope:global align:4 +simpleDraw__8J3DShapeCFv = .text:0x80061210; // type:function size:0x160 scope:global align:4 +simpleDrawCache__8J3DShapeCFv = .text:0x80061370; // type:function size:0x170 scope:global align:4 +createColorBlock__11J3DMaterialFUl = .text:0x800614E0; // type:function size:0x200 scope:global align:4 +__dt__21J3DColorBlockLightOffFv = .text:0x800616E0; // type:function size:0x5C scope:weak align:4 +__ct__12J3DColorChanFv = .text:0x8006173C; // type:function size:0xB4 scope:weak align:4 +__ct__10J3DGXColorFv = .text:0x800617F0; // type:function size:0x4 scope:weak align:4 +__dt__13J3DColorBlockFv = .text:0x800617F4; // type:function size:0x48 scope:weak align:4 +createTexGenBlock__11J3DMaterialFUl = .text:0x8006183C; // type:function size:0x164 scope:global align:4 +__dt__21J3DTexGenBlockPatchedFv = .text:0x800619A0; // type:function size:0x5C scope:weak align:4 +__ct__11J3DTexCoordFv = .text:0x800619FC; // type:function size:0x28 scope:weak align:4 +__dt__14J3DTexGenBlockFv = .text:0x80061A24; // type:function size:0x48 scope:weak align:4 +createTevBlock__11J3DMaterialFi = .text:0x80061A6C; // type:function size:0x374 scope:global align:4 +__ct__19J3DTevSwapModeTableFv = .text:0x80061DE0; // type:function size:0xC scope:weak align:4 +__ct__13J3DGXColorS10Fv = .text:0x80061DEC; // type:function size:0x4 scope:weak align:4 +__ct__14J3DIndTevStageFv = .text:0x80061DF0; // type:function size:0xE4 scope:weak align:4 +__ct__11J3DTevStageFv = .text:0x80061ED4; // type:function size:0x68 scope:weak align:4 +setTevStageInfo__11J3DTevStageFRC15J3DTevStageInfo = .text:0x80061F3C; // type:function size:0x1D8 scope:weak align:4 +__ct__11J3DTevOrderFv = .text:0x80062114; // type:function size:0x20 scope:weak align:4 +__dt__11J3DTevBlockFv = .text:0x80062134; // type:function size:0x48 scope:weak align:4 +createIndBlock__11J3DMaterialFi = .text:0x8006217C; // type:function size:0xE8 scope:global align:4 +__dt__19J3DIndTexCoordScaleFv = .text:0x80062264; // type:function size:0x3C scope:weak align:4 +__ct__19J3DIndTexCoordScaleFv = .text:0x800622A0; // type:function size:0x18 scope:weak align:4 +__dt__12J3DIndTexMtxFv = .text:0x800622B8; // type:function size:0x3C scope:weak align:4 +__ct__12J3DIndTexMtxFv = .text:0x800622F4; // type:function size:0x40 scope:weak align:4 +__ct__14J3DIndTexOrderFv = .text:0x80062334; // type:function size:0x18 scope:weak align:4 +__dt__11J3DIndBlockFv = .text:0x8006234C; // type:function size:0x48 scope:weak align:4 +createPEBlock__11J3DMaterialFUlUl = .text:0x80062394; // type:function size:0x27C scope:global align:4 +__dt__10J3DPEBlockFv = .text:0x80062610; // type:function size:0x48 scope:weak align:4 +calcSizeColorBlock__11J3DMaterialFUl = .text:0x80062658; // type:function size:0x50 scope:global align:4 +calcSizeTexGenBlock__11J3DMaterialFUl = .text:0x800626A8; // type:function size:0x2C scope:global align:4 +calcSizeTevBlock__11J3DMaterialFi = .text:0x800626D4; // type:function size:0x48 scope:global align:4 +calcSizeIndBlock__11J3DMaterialFi = .text:0x8006271C; // type:function size:0x14 scope:global align:4 +calcSizePEBlock__11J3DMaterialFUlUl = .text:0x80062730; // type:function size:0x68 scope:global align:4 +initialize__11J3DMaterialFv = .text:0x80062798; // type:function size:0x50 scope:global align:4 +countDLSize__11J3DMaterialFv = .text:0x800627E8; // type:function size:0xBC scope:global align:4 +countDLSize__14J3DTexGenBlockFv = .text:0x800628A4; // type:function size:0x8 scope:weak align:4 +countDLSize__13J3DColorBlockFv = .text:0x800628AC; // type:function size:0x8 scope:weak align:4 +countDLSize__11J3DTevBlockFv = .text:0x800628B4; // type:function size:0x8 scope:weak align:4 +countDLSize__11J3DIndBlockFv = .text:0x800628BC; // type:function size:0x8 scope:weak align:4 +countDLSize__10J3DPEBlockFv = .text:0x800628C4; // type:function size:0x8 scope:weak align:4 +load__13J3DColorBlockFv = .text:0x800628CC; // type:function size:0x4 scope:weak align:4 +getCullMode__13J3DColorBlockCFv = .text:0x800628D0; // type:function size:0x8 scope:weak align:4 +getIndTexStageNum__11J3DIndBlockCFv = .text:0x800628D8; // type:function size:0x8 scope:weak align:4 +getColorChanNum__13J3DColorBlockCFv = .text:0x800628E0; // type:function size:0x8 scope:weak align:4 +load__11J3DTevBlockFv = .text:0x800628E8; // type:function size:0x4 scope:weak align:4 +makeDisplayList__11J3DMaterialFv = .text:0x800628EC; // type:function size:0x2F8 scope:global align:4 +makeSharedDisplayList__11J3DMaterialFv = .text:0x80062BE4; // type:function size:0x2D4 scope:global align:4 +load__11J3DMaterialFv = .text:0x80062EB8; // type:function size:0x50 scope:global align:4 +getNBTScale__14J3DTexGenBlockFv = .text:0x80062F08; // type:function size:0x8 scope:weak align:4 +loadSharedDL__11J3DMaterialFv = .text:0x80062F10; // type:function size:0x64 scope:global align:4 +patch__11J3DMaterialFv = .text:0x80062F74; // type:function size:0x98 scope:global align:4 +patch__13J3DColorBlockFv = .text:0x8006300C; // type:function size:0x4 scope:weak align:4 +patch__11J3DTevBlockFv = .text:0x80063010; // type:function size:0x4 scope:weak align:4 +diff__11J3DMaterialFUl = .text:0x80063014; // type:function size:0x1FC scope:global align:4 +diff__13J3DColorBlockFUl = .text:0x80063210; // type:function size:0x4 scope:weak align:4 +diff__10J3DPEBlockFUl = .text:0x80063214; // type:function size:0x4 scope:weak align:4 +calc__11J3DMaterialFPA4_Cf = .text:0x80063218; // type:function size:0x78 scope:global align:4 +calcDiffTexMtx__11J3DMaterialFPA4_Cf = .text:0x80063290; // type:function size:0x5C scope:global align:4 +setCurrentMtx__11J3DMaterialFv = .text:0x800632EC; // type:function size:0x18 scope:global align:4 +calcCurrentMtx__11J3DMaterialFv = .text:0x80063304; // type:function size:0x294 scope:global align:4 +getTexCoord__14J3DTexGenBlockFUl = .text:0x80063598; // type:function size:0x8 scope:weak align:4 +reset__10J3DPEBlockFP10J3DPEBlock = .text:0x800635A0; // type:function size:0x4 scope:weak align:4 +reset__11J3DIndBlockFP11J3DIndBlock = .text:0x800635A4; // type:function size:0x4 scope:weak align:4 +reset__11J3DTevBlockFP11J3DTevBlock = .text:0x800635A8; // type:function size:0x4 scope:weak align:4 +reset__14J3DTexGenBlockFP14J3DTexGenBlock = .text:0x800635AC; // type:function size:0x4 scope:weak align:4 +reset__13J3DColorBlockFP13J3DColorBlock = .text:0x800635B0; // type:function size:0x4 scope:weak align:4 +reset__11J3DMaterialFv = .text:0x800635B4; // type:function size:0xE4 scope:global align:4 +change__11J3DMaterialFv = .text:0x80063698; // type:function size:0x20 scope:global align:4 +newSharedDisplayList__11J3DMaterialFUl = .text:0x800636B8; // type:function size:0x94 scope:global align:4 +newSingleSharedDisplayList__11J3DMaterialFUl = .text:0x8006374C; // type:function size:0x94 scope:global align:4 +initialize__18J3DPatchedMaterialFv = .text:0x800637E0; // type:function size:0x50 scope:global align:4 +makeDisplayList__18J3DPatchedMaterialFv = .text:0x80063830; // type:function size:0x4 scope:global align:4 +makeSharedDisplayList__18J3DPatchedMaterialFv = .text:0x80063834; // type:function size:0x4 scope:global align:4 +load__18J3DPatchedMaterialFv = .text:0x80063838; // type:function size:0x1C scope:global align:4 +loadSharedDL__18J3DPatchedMaterialFv = .text:0x80063854; // type:function size:0x40 scope:global align:4 +reset__18J3DPatchedMaterialFv = .text:0x80063894; // type:function size:0x4 scope:global align:4 +change__18J3DPatchedMaterialFv = .text:0x80063898; // type:function size:0x4 scope:global align:4 +initialize__17J3DLockedMaterialFv = .text:0x8006389C; // type:function size:0x50 scope:global align:4 +makeDisplayList__17J3DLockedMaterialFv = .text:0x800638EC; // type:function size:0x4 scope:global align:4 +makeSharedDisplayList__17J3DLockedMaterialFv = .text:0x800638F0; // type:function size:0x4 scope:global align:4 +load__17J3DLockedMaterialFv = .text:0x800638F4; // type:function size:0x1C scope:global align:4 +loadSharedDL__17J3DLockedMaterialFv = .text:0x80063910; // type:function size:0x40 scope:global align:4 +patch__17J3DLockedMaterialFv = .text:0x80063950; // type:function size:0x4 scope:global align:4 +diff__17J3DLockedMaterialFUl = .text:0x80063954; // type:function size:0x4 scope:global align:4 +calc__17J3DLockedMaterialFPA4_Cf = .text:0x80063958; // type:function size:0x4 scope:global align:4 +reset__17J3DLockedMaterialFv = .text:0x8006395C; // type:function size:0x4 scope:global align:4 +change__17J3DLockedMaterialFv = .text:0x80063960; // type:function size:0x4 scope:global align:4 +patch__10J3DPEBlockFv = .text:0x80063964; // type:function size:0x4 scope:weak align:4 +diffFog__10J3DPEBlockFv = .text:0x80063968; // type:function size:0x4 scope:weak align:4 +diffBlend__10J3DPEBlockFv = .text:0x8006396C; // type:function size:0x4 scope:weak align:4 +setFog__10J3DPEBlockFP6J3DFog = .text:0x80063970; // type:function size:0x4 scope:weak align:4 +setFog__10J3DPEBlockF6J3DFog = .text:0x80063974; // type:function size:0x4 scope:weak align:4 +getFog__10J3DPEBlockFv = .text:0x80063978; // type:function size:0x8 scope:weak align:4 +setAlphaComp__10J3DPEBlockFRC12J3DAlphaComp = .text:0x80063980; // type:function size:0x4 scope:weak align:4 +setAlphaComp__10J3DPEBlockFPC12J3DAlphaComp = .text:0x80063984; // type:function size:0x4 scope:weak align:4 +getAlphaComp__10J3DPEBlockFv = .text:0x80063988; // type:function size:0x8 scope:weak align:4 +setBlend__10J3DPEBlockFRC8J3DBlend = .text:0x80063990; // type:function size:0x4 scope:weak align:4 +setBlend__10J3DPEBlockFPC8J3DBlend = .text:0x80063994; // type:function size:0x4 scope:weak align:4 +getBlend__10J3DPEBlockFv = .text:0x80063998; // type:function size:0x8 scope:weak align:4 +setZMode__10J3DPEBlockF8J3DZMode = .text:0x800639A0; // type:function size:0x4 scope:weak align:4 +setZMode__10J3DPEBlockFPC8J3DZMode = .text:0x800639A4; // type:function size:0x4 scope:weak align:4 +getZMode__10J3DPEBlockFv = .text:0x800639A8; // type:function size:0x8 scope:weak align:4 +setZCompLoc__10J3DPEBlockFUc = .text:0x800639B0; // type:function size:0x4 scope:weak align:4 +setZCompLoc__10J3DPEBlockFPCUc = .text:0x800639B4; // type:function size:0x4 scope:weak align:4 +getZCompLoc__10J3DPEBlockCFv = .text:0x800639B8; // type:function size:0x8 scope:weak align:4 +setDither__10J3DPEBlockFUc = .text:0x800639C0; // type:function size:0x4 scope:weak align:4 +setDither__10J3DPEBlockFPCUc = .text:0x800639C4; // type:function size:0x4 scope:weak align:4 +getDither__10J3DPEBlockCFv = .text:0x800639C8; // type:function size:0x8 scope:weak align:4 +getFogOffset__10J3DPEBlockCFv = .text:0x800639D0; // type:function size:0x8 scope:weak align:4 +setFogOffset__10J3DPEBlockFUl = .text:0x800639D8; // type:function size:0x4 scope:weak align:4 +diff__15J3DIndBlockNullFUl = .text:0x800639DC; // type:function size:0x4 scope:weak align:4 +load__15J3DIndBlockNullFv = .text:0x800639E0; // type:function size:0x4 scope:weak align:4 +reset__15J3DIndBlockNullFP11J3DIndBlock = .text:0x800639E4; // type:function size:0x4 scope:weak align:4 +getType__15J3DIndBlockNullFv = .text:0x800639E8; // type:function size:0xC scope:weak align:4 +__dt__15J3DIndBlockNullFv = .text:0x800639F4; // type:function size:0x5C scope:weak align:4 +setIndTexStageNum__11J3DIndBlockFUc = .text:0x80063A50; // type:function size:0x4 scope:weak align:4 +setIndTexOrder__11J3DIndBlockFUlPC14J3DIndTexOrder = .text:0x80063A54; // type:function size:0x4 scope:weak align:4 +setIndTexOrder__11J3DIndBlockFUl14J3DIndTexOrder = .text:0x80063A58; // type:function size:0x4 scope:weak align:4 +getIndTexOrder__11J3DIndBlockFUl = .text:0x80063A5C; // type:function size:0x8 scope:weak align:4 +setIndTexMtx__11J3DIndBlockFUl12J3DIndTexMtx = .text:0x80063A64; // type:function size:0x4 scope:weak align:4 +setIndTexMtx__11J3DIndBlockFUlPC12J3DIndTexMtx = .text:0x80063A68; // type:function size:0x4 scope:weak align:4 +getIndTexMtx__11J3DIndBlockFUl = .text:0x80063A6C; // type:function size:0x8 scope:weak align:4 +setIndTexCoordScale__11J3DIndBlockFUl19J3DIndTexCoordScale = .text:0x80063A74; // type:function size:0x4 scope:weak align:4 +setIndTexCoordScale__11J3DIndBlockFUlPC19J3DIndTexCoordScale = .text:0x80063A78; // type:function size:0x4 scope:weak align:4 +getIndTexCoordScale__11J3DIndBlockFUl = .text:0x80063A7C; // type:function size:0x8 scope:weak align:4 +setTexGenNum__14J3DTexGenBlockFUl = .text:0x80063A84; // type:function size:0x4 scope:weak align:4 +setTexGenNum__14J3DTexGenBlockFPCUl = .text:0x80063A88; // type:function size:0x4 scope:weak align:4 +setTexCoord__14J3DTexGenBlockFUlPC11J3DTexCoord = .text:0x80063A8C; // type:function size:0x4 scope:weak align:4 +setTexMtx__14J3DTexGenBlockFUlP9J3DTexMtx = .text:0x80063A90; // type:function size:0x4 scope:weak align:4 +getTexMtx__14J3DTexGenBlockFUl = .text:0x80063A94; // type:function size:0x8 scope:weak align:4 +setNBTScale__14J3DTexGenBlockF11J3DNBTScale = .text:0x80063A9C; // type:function size:0x4 scope:weak align:4 +setNBTScale__14J3DTexGenBlockFPC11J3DNBTScale = .text:0x80063AA0; // type:function size:0x4 scope:weak align:4 +getTexMtxOffset__14J3DTexGenBlockCFv = .text:0x80063AA4; // type:function size:0x8 scope:weak align:4 +setTexMtxOffset__14J3DTexGenBlockFUl = .text:0x80063AAC; // type:function size:0x4 scope:weak align:4 +patchMatColor__13J3DColorBlockFv = .text:0x80063AB0; // type:function size:0x4 scope:weak align:4 +patchLight__13J3DColorBlockFv = .text:0x80063AB4; // type:function size:0x4 scope:weak align:4 +diffMatColor__13J3DColorBlockFv = .text:0x80063AB8; // type:function size:0x4 scope:weak align:4 +diffLight__13J3DColorBlockFv = .text:0x80063ABC; // type:function size:0x4 scope:weak align:4 +setMatColor__13J3DColorBlockFUl10J3DGXColor = .text:0x80063AC0; // type:function size:0x4 scope:weak align:4 +setMatColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x80063AC4; // type:function size:0x4 scope:weak align:4 +getMatColor__13J3DColorBlockFUl = .text:0x80063AC8; // type:function size:0x8 scope:weak align:4 +setAmbColor__13J3DColorBlockFUl10J3DGXColor = .text:0x80063AD0; // type:function size:0x4 scope:weak align:4 +setAmbColor__13J3DColorBlockFUlPC10J3DGXColor = .text:0x80063AD4; // type:function size:0x4 scope:weak align:4 +getAmbColor__13J3DColorBlockFUl = .text:0x80063AD8; // type:function size:0x8 scope:weak align:4 +setColorChanNum__13J3DColorBlockFPCUc = .text:0x80063AE0; // type:function size:0x4 scope:weak align:4 +setColorChanNum__13J3DColorBlockFUc = .text:0x80063AE4; // type:function size:0x4 scope:weak align:4 +setColorChan__13J3DColorBlockFUlPC12J3DColorChan = .text:0x80063AE8; // type:function size:0x4 scope:weak align:4 +setColorChan__13J3DColorBlockFUlRC12J3DColorChan = .text:0x80063AEC; // type:function size:0x4 scope:weak align:4 +getColorChan__13J3DColorBlockFUl = .text:0x80063AF0; // type:function size:0x8 scope:weak align:4 +setLight__13J3DColorBlockFUlP11J3DLightObj = .text:0x80063AF8; // type:function size:0x4 scope:weak align:4 +getLight__13J3DColorBlockFUl = .text:0x80063AFC; // type:function size:0x8 scope:weak align:4 +setCullMode__13J3DColorBlockFUc = .text:0x80063B04; // type:function size:0x4 scope:weak align:4 +setCullMode__13J3DColorBlockFPCUc = .text:0x80063B08; // type:function size:0x4 scope:weak align:4 +getMatColorOffset__13J3DColorBlockCFv = .text:0x80063B0C; // type:function size:0x8 scope:weak align:4 +getColorChanOffset__13J3DColorBlockCFv = .text:0x80063B14; // type:function size:0x8 scope:weak align:4 +setMatColorOffset__13J3DColorBlockFUl = .text:0x80063B1C; // type:function size:0x4 scope:weak align:4 +setColorChanOffset__13J3DColorBlockFUl = .text:0x80063B20; // type:function size:0x4 scope:weak align:4 +load__11J3DLightObjCFUl = .text:0x80063B24; // type:function size:0xB4 scope:global align:4 +loadTexCoordGens__FUlP11J3DTexCoord = .text:0x80063BD8; // type:function size:0x530 scope:global align:4 +load__9J3DTexMtxCFUl = .text:0x80064108; // type:function size:0x3C scope:global align:4 +loadTexMtx__9J3DTexMtxCFUl = .text:0x80064144; // type:function size:0x64 scope:weak align:4 +J3DGDLoadTexMtxImm__FPA4_fUl13_GXTexMtxType = .text:0x800641A8; // type:function size:0x580 scope:weak align:4 +loadPostTexMtx__9J3DTexMtxCFUl = .text:0x80064728; // type:function size:0x60 scope:weak align:4 +J3DGDLoadPostTexMtxImm__FPA4_fUl = .text:0x80064788; // type:function size:0x56C scope:weak align:4 +calc__9J3DTexMtxFPA4_Cf = .text:0x80064CF4; // type:function size:0x20 scope:global align:4 +calcTexMtx__9J3DTexMtxFPA4_Cf = .text:0x80064D14; // type:function size:0x2EC scope:global align:4 +calcPostTexMtx__9J3DTexMtxFPA4_Cf = .text:0x80065000; // type:function size:0x358 scope:global align:4 +isTexNoReg__FPv = .text:0x80065358; // type:function size:0x24 scope:global align:4 +getTexNoReg__FPv = .text:0x8006537C; // type:function size:0xC scope:global align:4 +loadTexNo__FUlRCUs = .text:0x80065388; // type:function size:0x1B8 scope:global align:4 +patchTexNo_PtrToIdx__FUlRCUs = .text:0x80065540; // type:function size:0x24 scope:global align:4 +loadNBTScale__FR11J3DNBTScale = .text:0x80065564; // type:function size:0x34 scope:global align:4 +makeTexCoordTable__Fv = .text:0x80065598; // type:function size:0x160 scope:global align:4 +makeAlphaCmpTable__Fv = .text:0x800656F8; // type:function size:0x130 scope:global align:4 +makeZModeTable__Fv = .text:0x80065828; // type:function size:0x138 scope:global align:4 +makeTevSwapTable__Fv = .text:0x80065960; // type:function size:0x44 scope:global align:4 +initialize__13J3DDrawBufferFv = .text:0x800659A4; // type:function size:0x68 scope:global align:4 +allocBuffer__13J3DDrawBufferFUl = .text:0x80065A0C; // type:function size:0x84 scope:global align:4 +frameInit__13J3DDrawBufferFv = .text:0x80065A90; // type:function size:0xEC scope:global align:4 +entryMatSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065B7C; // type:function size:0x158 scope:global align:4 +getTexNo__11J3DTevBlockCFUl = .text:0x80065CD4; // type:function size:0xC scope:weak align:4 +entryMatAnmSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065CE0; // type:function size:0x1E8 scope:global align:4 +entryZSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065EC8; // type:function size:0x11C scope:global align:4 +entryModelSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80065FE4; // type:function size:0x50 scope:global align:4 +entryInvalidSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80066034; // type:function size:0x54 scope:global align:4 +entryNonSort__13J3DDrawBufferFP12J3DMatPacket = .text:0x80066088; // type:function size:0x34 scope:global align:4 +draw__13J3DDrawBufferCFv = .text:0x800660BC; // type:function size:0x54 scope:global align:4 +drawHead__13J3DDrawBufferCFv = .text:0x80066110; // type:function size:0x84 scope:global align:4 +drawTail__13J3DDrawBufferCFv = .text:0x80066194; // type:function size:0x84 scope:global align:4 +__sinit_J3DDrawBuffer_cpp = .text:0x80066218; // type:function size:0xE4 scope:local align:4 +initialize__8J3DModelFv = .text:0x800662FC; // type:function size:0x84 scope:global align:4 +entryModelData__8J3DModelFP12J3DModelDataUlUl = .text:0x80066380; // type:function size:0xC4 scope:global align:4 +createShapePacket__8J3DModelFP12J3DModelData = .text:0x80066444; // type:function size:0xBC scope:global align:4 +createMatPacket__8J3DModelFP12J3DModelDataUl = .text:0x80066500; // type:function size:0x1D8 scope:global align:4 +newDifferedDisplayList__8J3DModelFUl = .text:0x800666D8; // type:function size:0x90 scope:global align:4 +newDifferedTexMtx__8J3DModelF14J3DTexDiffFlag = .text:0x80066768; // type:function size:0x8C scope:global align:4 +lock__8J3DModelFv = .text:0x800667F4; // type:function size:0x130 scope:global align:4 +makeDL__8J3DModelFv = .text:0x80066924; // type:function size:0xA4 scope:global align:4 +calcMaterial__8J3DModelFv = .text:0x800669C8; // type:function size:0x164 scope:global align:4 +calcDiffTexMtx__8J3DModelFv = .text:0x80066B2C; // type:function size:0x140 scope:global align:4 +diff__8J3DModelFv = .text:0x80066C6C; // type:function size:0x9C scope:global align:4 +setVtxColorCalc__8J3DModelFP15J3DVtxColorCalc19J3DDeformAttachFlag = .text:0x80066D08; // type:function size:0x34 scope:global align:4 +calcWeightEnvelopeMtx__8J3DModelFv = .text:0x80066D3C; // type:function size:0x4C scope:global align:4 +update__8J3DModelFv = .text:0x80066D88; // type:function size:0x4C scope:global align:4 +calc__8J3DModelFv = .text:0x80066DD4; // type:function size:0x1E0 scope:global align:4 +entry__8J3DModelFv = .text:0x80066FB4; // type:function size:0xF4 scope:global align:4 +viewCalc__8J3DModelFv = .text:0x800670A8; // type:function size:0x368 scope:global align:4 +calcNrmMtx__8J3DModelFv = .text:0x80067410; // type:function size:0x24 scope:global align:4 +calcBumpMtx__8J3DModelFv = .text:0x80067434; // type:function size:0x100 scope:global align:4 +calcBBoardMtx__8J3DModelFv = .text:0x80067534; // type:function size:0x34 scope:global align:4 +prepareShapePackets__8J3DModelFv = .text:0x80067568; // type:function size:0x64 scope:global align:4 +__dt__8J3DModelFv = .text:0x800675CC; // type:function size:0x64 scope:weak align:4 +__dt__12J3DMtxBufferFv = .text:0x80067630; // type:function size:0x48 scope:weak align:4 +init__12J3DFrameCtrlFs = .text:0x80067678; // type:function size:0x30 scope:global align:4 +update__12J3DFrameCtrlFv = .text:0x800676A8; // type:function size:0x474 scope:global align:4 +getTransform__19J3DAnmTransformFullCFUsP16J3DTransformInfo = .text:0x80067B1C; // type:function size:0x360 scope:global align:4 +calcTransform__18J3DAnmTransformKeyCFfUsP16J3DTransformInfo = .text:0x80067E7C; // type:function size:0x420 scope:global align:4 +calcTransform__19J3DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo = .text:0x8006829C; // type:function size:0x268 scope:global align:4 +getWeight__17J3DAnmClusterFullCFUs = .text:0x80068504; // type:function size:0x94 scope:global align:4 +getWeight__16J3DAnmClusterKeyCFUs = .text:0x80068598; // type:function size:0x84 scope:global align:4 +getColor__18J3DAnmVtxColorFullCFUcUsP8_GXColor = .text:0x8006861C; // type:function size:0x178 scope:global align:4 +getColor__17J3DAnmVtxColorKeyCFUcUsP8_GXColor = .text:0x80068794; // type:function size:0x2F4 scope:global align:4 +searchUpdateMaterialID__11J3DAnmColorFP12J3DModelData = .text:0x80068A88; // type:function size:0xA8 scope:global align:4 +getColor__15J3DAnmColorFullCFUsP8_GXColor = .text:0x80068B30; // type:function size:0x170 scope:global align:4 +getColor__14J3DAnmColorKeyCFUsP8_GXColor = .text:0x80068CA0; // type:function size:0x2CC scope:global align:4 +getTexNo__16J3DAnmTexPatternCFUsPUs = .text:0x80068F6C; // type:function size:0xB4 scope:global align:4 +searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP12J3DModelData = .text:0x80069020; // type:function size:0x124 scope:global align:4 +getTevColorReg__15J3DAnmTevRegKeyCFUsP11_GXColorS10 = .text:0x80069144; // type:function size:0x2CC scope:global align:4 +getTevKonstReg__15J3DAnmTevRegKeyCFUsP8_GXColor = .text:0x80069410; // type:function size:0x2CC scope:global align:4 +searchUpdateMaterialID__15J3DAnmTevRegKeyFP12J3DModelData = .text:0x800696DC; // type:function size:0x10C scope:global align:4 +__dt__14J3DAnmColorKeyFv = .text:0x800697E8; // type:function size:0x84 scope:weak align:4 +getKind__14J3DAnmColorKeyCFv = .text:0x8006986C; // type:function size:0x8 scope:weak align:4 +__dt__10J3DAnmBaseFv = .text:0x80069874; // type:function size:0x48 scope:weak align:4 +__dt__11J3DAnmColorFv = .text:0x800698BC; // type:function size:0x74 scope:weak align:4 +getKind__11J3DAnmColorCFv = .text:0x80069930; // type:function size:0x8 scope:weak align:4 +getColor__11J3DAnmColorCFUsP8_GXColor = .text:0x80069938; // type:function size:0x4 scope:weak align:4 +__dt__15J3DAnmColorFullFv = .text:0x8006993C; // type:function size:0x84 scope:weak align:4 +getKind__15J3DAnmColorFullCFv = .text:0x800699C0; // type:function size:0x8 scope:weak align:4 +__dt__17J3DAnmVtxColorKeyFv = .text:0x800699C8; // type:function size:0x6C scope:weak align:4 +getKind__17J3DAnmVtxColorKeyCFv = .text:0x80069A34; // type:function size:0x8 scope:weak align:4 +__dt__14J3DAnmVtxColorFv = .text:0x80069A3C; // type:function size:0x5C scope:weak align:4 +getKind__14J3DAnmVtxColorCFv = .text:0x80069A98; // type:function size:0x8 scope:weak align:4 +getColor__14J3DAnmVtxColorCFUcUsP8_GXColor = .text:0x80069AA0; // type:function size:0x4 scope:weak align:4 +__dt__18J3DAnmVtxColorFullFv = .text:0x80069AA4; // type:function size:0x6C scope:weak align:4 +getKind__18J3DAnmVtxColorFullCFv = .text:0x80069B10; // type:function size:0x8 scope:weak align:4 +__dt__16J3DAnmClusterKeyFv = .text:0x80069B18; // type:function size:0x6C scope:weak align:4 +getKind__16J3DAnmClusterKeyCFv = .text:0x80069B84; // type:function size:0x8 scope:weak align:4 +__dt__13J3DAnmClusterFv = .text:0x80069B8C; // type:function size:0x5C scope:weak align:4 +getKind__13J3DAnmClusterCFv = .text:0x80069BE8; // type:function size:0x8 scope:weak align:4 +getWeight__13J3DAnmClusterCFUs = .text:0x80069BF0; // type:function size:0x8 scope:weak align:4 +__dt__17J3DAnmClusterFullFv = .text:0x80069BF8; // type:function size:0x6C scope:weak align:4 +getKind__17J3DAnmClusterFullCFv = .text:0x80069C64; // type:function size:0x8 scope:weak align:4 +__dt__19J3DAnmTransformFullFv = .text:0x80069C6C; // type:function size:0x6C scope:weak align:4 +getKind__19J3DAnmTransformFullCFv = .text:0x80069CD8; // type:function size:0x8 scope:weak align:4 +__dt__15J3DAnmTransformFv = .text:0x80069CE0; // type:function size:0x5C scope:weak align:4 +getKind__15J3DAnmTransformCFv = .text:0x80069D3C; // type:function size:0x8 scope:weak align:4 +J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs = .text:0x80069D44; // type:function size:0x234 scope:local align:4 +J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf = .text:0x80069F78; // type:function size:0x17C scope:local align:4 +initialize__14J3DMaterialAnmFv = .text:0x8006A0F4; // type:function size:0x70 scope:global align:4 +calc__14J3DMaterialAnmCFP11J3DMaterial = .text:0x8006A164; // type:function size:0x1EC scope:global align:4 +getTevKColor__11J3DTevBlockFUl = .text:0x8006A350; // type:function size:0x8 scope:weak align:4 +getTevColor__11J3DTevBlockFUl = .text:0x8006A358; // type:function size:0x8 scope:weak align:4 +setTexNo__11J3DTevBlockFUlUs = .text:0x8006A360; // type:function size:0x4 scope:weak align:4 +calc__11J3DTexNoAnmCFPUs = .text:0x8006A364; // type:function size:0x30 scope:weak align:4 +__dt__14J3DMaterialAnmFv = .text:0x8006A394; // type:function size:0xD0 scope:weak align:4 +__dt__14J3DMatColorAnmFv = .text:0x8006A464; // type:function size:0x3C scope:weak align:4 +__dt__12J3DTexMtxAnmFv = .text:0x8006A4A0; // type:function size:0x3C scope:weak align:4 +__dt__11J3DTexNoAnmFv = .text:0x8006A4DC; // type:function size:0x48 scope:weak align:4 +__dt__14J3DTevColorAnmFv = .text:0x8006A524; // type:function size:0x3C scope:weak align:4 +__dt__15J3DTevKColorAnmFv = .text:0x8006A560; // type:function size:0x3C scope:weak align:4 +deform__13J3DDeformDataFP8J3DModel = .text:0x8006A59C; // type:function size:0x24 scope:global align:4 +deform__13J3DDeformDataFP15J3DVertexBuffer = .text:0x8006A5C0; // type:function size:0xD4 scope:global align:4 +deform__11J3DDeformerFP15J3DVertexBufferUs = .text:0x8006A694; // type:function size:0x168 scope:global align:4 +deform_VtxPosF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8006A7FC; // type:function size:0x26C scope:global align:4 +deform_VtxNrmF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf = .text:0x8006AA68; // type:function size:0x470 scope:global align:4 +deform__11J3DDeformerFP15J3DVertexBufferUsPf = .text:0x8006AED8; // type:function size:0x1CC scope:global align:4 +normalizeWeight__11J3DDeformerFiPf = .text:0x8006B0A4; // type:function size:0x15C scope:global align:4 +init__25J3DMtxCalcJ3DSysInitBasicFRC3VecRA3_A4_Cf = .text:0x8006B200; // type:function size:0x98 scope:global align:4 +init__24J3DMtxCalcJ3DSysInitMayaFRC3VecRA3_A4_Cf = .text:0x8006B298; // type:function size:0x98 scope:global align:4 +calcTransform__28J3DMtxCalcCalcTransformBasicFRC16J3DTransformInfo = .text:0x8006B330; // type:function size:0x118 scope:global align:4 +calcTransform__32J3DMtxCalcCalcTransformSoftimageFRC16J3DTransformInfo = .text:0x8006B448; // type:function size:0x168 scope:global align:4 +calcTransform__27J3DMtxCalcCalcTransformMayaFRC16J3DTransformInfo = .text:0x8006B5B0; // type:function size:0x178 scope:global align:4 +J3DNewMtxCalcAnm__FUlP15J3DAnmTransform = .text:0x8006B728; // type:function size:0x104 scope:global align:4 +__dt__17J3DMtxCalcAnmBaseFv = .text:0x8006B82C; // type:function size:0x5C scope:weak align:4 +appendChild__8J3DJointFP8J3DJoint = .text:0x8006B888; // type:function size:0x34 scope:global align:4 +__ct__8J3DJointFv = .text:0x8006B8BC; // type:function size:0xFC scope:global align:4 +entryIn__8J3DJointFv = .text:0x8006B9B8; // type:function size:0x19C scope:global align:4 +recursiveCalc__8J3DJointFv = .text:0x8006BB54; // type:function size:0x1A8 scope:global align:4 +getAnmTransform__17J3DMtxCalcAnmBaseFv = .text:0x8006BCFC; // type:function size:0x8 scope:weak align:4 +setAnmTransform__17J3DMtxCalcAnmBaseFP15J3DAnmTransform = .text:0x8006BD04; // type:function size:0x8 scope:weak align:4 +__dt__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8006BD0C; // type:function size:0x6C scope:weak align:4 +init__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x8006BD78; // type:function size:0x94 scope:weak align:4 +setAnmTransform__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FP15J3DAnmTransform = .text:0x8006BE0C; // type:function size:0x8 scope:weak align:4 +__dt__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x8006BE14; // type:function size:0x6C scope:weak align:4 +init__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x8006BE80; // type:function size:0x4C scope:weak align:4 +setAnmTransform__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FP15J3DAnmTransform = .text:0x8006BECC; // type:function size:0x8 scope:weak align:4 +__dt__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x8006BED4; // type:function size:0x6C scope:weak align:4 +init__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x8006BF40; // type:function size:0x98 scope:weak align:4 +setAnmTransform__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>FP15J3DAnmTransform = .text:0x8006BFD8; // type:function size:0x8 scope:weak align:4 +calc__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x8006BFE0; // type:function size:0x178 scope:weak align:4 +calc__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x8006C158; // type:function size:0x1C4 scope:weak align:4 +calc__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x8006C31C; // type:function size:0x88 scope:weak align:4 +__ct__18J3DMaterialFactoryFRC16J3DMaterialBlock = .text:0x8006C3A4; // type:function size:0x248 scope:global align:4 +__ct__18J3DMaterialFactoryFRC18J3DMaterialDLBlock = .text:0x8006C5EC; // type:function size:0x88 scope:global align:4 +countUniqueMaterials__18J3DMaterialFactoryFv = .text:0x8006C674; // type:function size:0x48 scope:global align:4 +create__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x8006C6BC; // type:function size:0x7C scope:global align:4 +createNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006C738; // type:function size:0xA0C scope:global align:4 +setIndTevStage__11J3DTevBlockFUl14J3DIndTevStage = .text:0x8006D144; // type:function size:0x4 scope:weak align:4 +setTevKAlphaSel__11J3DTevBlockFUlUc = .text:0x8006D148; // type:function size:0x4 scope:weak align:4 +setTevKColorSel__11J3DTevBlockFUlUc = .text:0x8006D14C; // type:function size:0x4 scope:weak align:4 +setTevSwapModeTable__11J3DTevBlockFUl19J3DTevSwapModeTable = .text:0x8006D150; // type:function size:0x4 scope:weak align:4 +setTevColor__11J3DTevBlockFUl13J3DGXColorS10 = .text:0x8006D154; // type:function size:0x4 scope:weak align:4 +setTevKColor__11J3DTevBlockFUl10J3DGXColor = .text:0x8006D158; // type:function size:0x4 scope:weak align:4 +getTevStage__11J3DTevBlockFUl = .text:0x8006D15C; // type:function size:0x8 scope:weak align:4 +setTevStage__11J3DTevBlockFUl11J3DTevStage = .text:0x8006D164; // type:function size:0x4 scope:weak align:4 +setTevOrder__11J3DTevBlockFUl11J3DTevOrder = .text:0x8006D168; // type:function size:0x4 scope:weak align:4 +setTevStageNum__11J3DTevBlockFUc = .text:0x8006D16C; // type:function size:0x4 scope:weak align:4 +createPatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006D170; // type:function size:0x924 scope:global align:4 +__dt__11J3DMaterialFv = .text:0x8006DA94; // type:function size:0x48 scope:weak align:4 +modifyPatchedCurrentMtx__18J3DMaterialFactoryCFP11J3DMateriali = .text:0x8006DADC; // type:function size:0x1A4 scope:global align:4 +createLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006DC80; // type:function size:0x2B8 scope:global align:4 +setTevRegOffset__11J3DTevBlockFUl = .text:0x8006DF38; // type:function size:0x4 scope:weak align:4 +setTexNoOffset__11J3DTevBlockFUl = .text:0x8006DF3C; // type:function size:0x8 scope:weak align:4 +calcSize__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl = .text:0x8006DF44; // type:function size:0x80 scope:global align:4 +calcSizeNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006DFC4; // type:function size:0x258 scope:global align:4 +calcSizePatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006E21C; // type:function size:0x13C scope:global align:4 +calcSizeLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl = .text:0x8006E358; // type:function size:0x18 scope:global align:4 +newMatColor__18J3DMaterialFactoryCFii = .text:0x8006E370; // type:function size:0x90 scope:global align:4 +newColorChanNum__18J3DMaterialFactoryCFi = .text:0x8006E400; // type:function size:0x38 scope:global align:4 +newColorChan__18J3DMaterialFactoryCFii = .text:0x8006E438; // type:function size:0x194 scope:global align:4 +newAmbColor__18J3DMaterialFactoryCFii = .text:0x8006E5CC; // type:function size:0x90 scope:global align:4 +newTexGenNum__18J3DMaterialFactoryCFi = .text:0x8006E65C; // type:function size:0x38 scope:global align:4 +newTexCoord__18J3DMaterialFactoryCFii = .text:0x8006E694; // type:function size:0x84 scope:global align:4 +newTexMtx__18J3DMaterialFactoryCFii = .text:0x8006E718; // type:function size:0x158 scope:global align:4 +newCullMode__18J3DMaterialFactoryCFi = .text:0x8006E870; // type:function size:0x40 scope:global align:4 +newTexNo__18J3DMaterialFactoryCFii = .text:0x8006E8B0; // type:function size:0x48 scope:global align:4 +newTevOrder__18J3DMaterialFactoryCFii = .text:0x8006E8F8; // type:function size:0x74 scope:global align:4 +newTevColor__18J3DMaterialFactoryCFii = .text:0x8006E96C; // type:function size:0x98 scope:global align:4 +newTevKColor__18J3DMaterialFactoryCFii = .text:0x8006EA04; // type:function size:0x90 scope:global align:4 +newTevStageNum__18J3DMaterialFactoryCFi = .text:0x8006EA94; // type:function size:0x38 scope:global align:4 +newTevStage__18J3DMaterialFactoryCFii = .text:0x8006EACC; // type:function size:0x60 scope:global align:4 +__ct__11J3DTevStageFRC15J3DTevStageInfo = .text:0x8006EB2C; // type:function size:0x60 scope:weak align:4 +newTevSwapModeTable__18J3DMaterialFactoryCFii = .text:0x8006EB8C; // type:function size:0x9C scope:global align:4 +newIndTexStageNum__18J3DMaterialFactoryCFi = .text:0x8006EC28; // type:function size:0x28 scope:global align:4 +newIndTexOrder__18J3DMaterialFactoryCFii = .text:0x8006EC50; // type:function size:0x60 scope:global align:4 +newIndTexMtx__18J3DMaterialFactoryCFii = .text:0x8006ECB0; // type:function size:0xE0 scope:global align:4 +newIndTevStage__18J3DMaterialFactoryCFii = .text:0x8006ED90; // type:function size:0x194 scope:global align:4 +newIndTexCoordScale__18J3DMaterialFactoryCFii = .text:0x8006EF24; // type:function size:0x60 scope:global align:4 +newFog__18J3DMaterialFactoryCFi = .text:0x8006EF84; // type:function size:0x24C scope:global align:4 +newAlphaComp__18J3DMaterialFactoryCFi = .text:0x8006F1D0; // type:function size:0x80 scope:global align:4 +newBlend__18J3DMaterialFactoryCFi = .text:0x8006F250; // type:function size:0x7C scope:global align:4 +newZMode__18J3DMaterialFactoryCFi = .text:0x8006F2CC; // type:function size:0x60 scope:global align:4 +newZCompLoc__18J3DMaterialFactoryCFi = .text:0x8006F32C; // type:function size:0x38 scope:global align:4 +newDither__18J3DMaterialFactoryCFi = .text:0x8006F364; // type:function size:0x38 scope:global align:4 +newNBTScale__18J3DMaterialFactoryCFi = .text:0x8006F39C; // type:function size:0xA8 scope:global align:4 +load__14J3DPEBlockNullFv = .text:0x8006F444; // type:function size:0x4 scope:weak align:4 +getType__14J3DPEBlockNullFv = .text:0x8006F448; // type:function size:0xC scope:weak align:4 +__dt__14J3DPEBlockNullFv = .text:0x8006F454; // type:function size:0x5C scope:weak align:4 +reset__15J3DTevBlockNullFP11J3DTevBlock = .text:0x8006F4B0; // type:function size:0x4 scope:weak align:4 +ptrToIndex__15J3DTevBlockNullFv = .text:0x8006F4B4; // type:function size:0x4 scope:weak align:4 +indexToPtr__15J3DTevBlockNullFv = .text:0x8006F4B8; // type:function size:0x24 scope:weak align:4 +getType__15J3DTevBlockNullFv = .text:0x8006F4DC; // type:function size:0xC scope:weak align:4 +__dt__15J3DTevBlockNullFv = .text:0x8006F4E8; // type:function size:0x5C scope:weak align:4 +diffTexNo__11J3DTevBlockFv = .text:0x8006F544; // type:function size:0x4 scope:weak align:4 +diffTevReg__11J3DTevBlockFv = .text:0x8006F548; // type:function size:0x4 scope:weak align:4 +diffTexCoordScale__11J3DTevBlockFv = .text:0x8006F54C; // type:function size:0x4 scope:weak align:4 +diffTevStage__11J3DTevBlockFv = .text:0x8006F550; // type:function size:0x4 scope:weak align:4 +diffTevStageIndirect__11J3DTevBlockFv = .text:0x8006F554; // type:function size:0x4 scope:weak align:4 +patchTexNo__11J3DTevBlockFv = .text:0x8006F558; // type:function size:0x4 scope:weak align:4 +patchTevReg__11J3DTevBlockFv = .text:0x8006F55C; // type:function size:0x4 scope:weak align:4 +patchTexNoAndTexCoordScale__11J3DTevBlockFv = .text:0x8006F560; // type:function size:0x4 scope:weak align:4 +setTexNo__11J3DTevBlockFUlPCUs = .text:0x8006F564; // type:function size:0x4 scope:weak align:4 +setTevOrder__11J3DTevBlockFUlPC11J3DTevOrder = .text:0x8006F568; // type:function size:0x4 scope:weak align:4 +getTevOrder__11J3DTevBlockFUl = .text:0x8006F56C; // type:function size:0x8 scope:weak align:4 +setTevColor__11J3DTevBlockFUlPC13J3DGXColorS10 = .text:0x8006F574; // type:function size:0x4 scope:weak align:4 +setTevKColor__11J3DTevBlockFUlPC10J3DGXColor = .text:0x8006F578; // type:function size:0x4 scope:weak align:4 +setTevKColorSel__11J3DTevBlockFUlPCUc = .text:0x8006F57C; // type:function size:0x4 scope:weak align:4 +getTevKColorSel__11J3DTevBlockFUl = .text:0x8006F580; // type:function size:0x8 scope:weak align:4 +setTevKAlphaSel__11J3DTevBlockFUlPCUc = .text:0x8006F588; // type:function size:0x4 scope:weak align:4 +getTevKAlphaSel__11J3DTevBlockFUl = .text:0x8006F58C; // type:function size:0x8 scope:weak align:4 +setTevStageNum__11J3DTevBlockFPCUc = .text:0x8006F594; // type:function size:0x4 scope:weak align:4 +setTevStage__11J3DTevBlockFUlPC11J3DTevStage = .text:0x8006F598; // type:function size:0x4 scope:weak align:4 +setTevSwapModeInfo__11J3DTevBlockFUl18J3DTevSwapModeInfo = .text:0x8006F59C; // type:function size:0x4 scope:weak align:4 +setTevSwapModeInfo__11J3DTevBlockFUlPC18J3DTevSwapModeInfo = .text:0x8006F5A0; // type:function size:0x4 scope:weak align:4 +setTevSwapModeTable__11J3DTevBlockFUlPC19J3DTevSwapModeTable = .text:0x8006F5A4; // type:function size:0x4 scope:weak align:4 +getTevSwapModeTable__11J3DTevBlockFUl = .text:0x8006F5A8; // type:function size:0x8 scope:weak align:4 +setIndTevStage__11J3DTevBlockFUlPC14J3DIndTevStage = .text:0x8006F5B0; // type:function size:0x4 scope:weak align:4 +getIndTevStage__11J3DTevBlockFUl = .text:0x8006F5B4; // type:function size:0x8 scope:weak align:4 +getTexNoOffset__11J3DTevBlockCFv = .text:0x8006F5BC; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__11J3DTevBlockCFv = .text:0x8006F5C4; // type:function size:0x8 scope:weak align:4 +calc__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5CC; // type:function size:0x4 scope:weak align:4 +calcWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5D0; // type:function size:0x4 scope:weak align:4 +calcPostTexMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5D4; // type:function size:0x4 scope:weak align:4 +calcPostTexMtxWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf = .text:0x8006F5D8; // type:function size:0x4 scope:weak align:4 +load__18J3DTexGenBlockNullFv = .text:0x8006F5DC; // type:function size:0x4 scope:weak align:4 +patch__18J3DTexGenBlockNullFv = .text:0x8006F5E0; // type:function size:0x4 scope:weak align:4 +diff__18J3DTexGenBlockNullFUl = .text:0x8006F5E4; // type:function size:0x4 scope:weak align:4 +diffTexMtx__18J3DTexGenBlockNullFv = .text:0x8006F5E8; // type:function size:0x4 scope:weak align:4 +diffTexGen__18J3DTexGenBlockNullFv = .text:0x8006F5EC; // type:function size:0x4 scope:weak align:4 +getType__18J3DTexGenBlockNullFv = .text:0x8006F5F0; // type:function size:0xC scope:weak align:4 +__dt__18J3DTexGenBlockNullFv = .text:0x8006F5FC; // type:function size:0x5C scope:weak align:4 +getType__17J3DColorBlockNullFv = .text:0x8006F658; // type:function size:0xC scope:weak align:4 +__dt__17J3DColorBlockNullFv = .text:0x8006F664; // type:function size:0x5C scope:weak align:4 +JSUConvertOffsetToPtr<17J3DCurrentMtxInfo>__FPCvPCv = .text:0x8006F6C0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DPatchingInfo>__FPCvPCv = .text:0x8006F6D8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DDisplayListInit>__FPCvPCv = .text:0x8006F6F0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DNBTScaleInfo>__FPCvPCv = .text:0x8006F708; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<12J3DZModeInfo>__FPCvPCv = .text:0x8006F720; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<12J3DBlendInfo>__FPCvPCv = .text:0x8006F738; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DAlphaCompInfo>__FPCvPCv = .text:0x8006F750; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<10J3DFogInfo>__FPCvPCv = .text:0x8006F768; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<23J3DTevSwapModeTableInfo>__FPCvPCv = .text:0x8006F780; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<18J3DTevSwapModeInfo>__FPCvPCv = .text:0x8006F798; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DTevStageInfo>__FPCvPCv = .text:0x8006F7B0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DTevOrderInfo>__FPCvPCv = .text:0x8006F7C8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<13J3DTexMtxInfo>__FPCvPCv = .text:0x8006F7E0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DTexCoord2Info>__FPCvPCv = .text:0x8006F7F8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<15J3DTexCoordInfo>__FPCvPCv = .text:0x8006F810; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<12J3DLightInfo>__FPCvPCv = .text:0x8006F828; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DColorChanInfo>__FPCvPCv = .text:0x8006F840; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<14J3DIndInitData>__FPCvPCv = .text:0x8006F858; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J3DMaterialInitData>__FPCvPCv = .text:0x8006F870; // type:function size:0x18 scope:weak align:4 +getType__11J3DShapeMtxCFv = .text:0x8006F888; // type:function size:0xC scope:weak align:4 +load__22J3DModelLoaderDataBaseFPCvUl = .text:0x8006F894; // type:function size:0x154 scope:global align:4 +__dt__18J3DModelLoader_v26Fv = .text:0x8006F9E8; // type:function size:0x5C scope:weak align:4 +__dt__18J3DModelLoader_v21Fv = .text:0x8006FA44; // type:function size:0x5C scope:weak align:4 +__dt__14J3DModelLoaderFv = .text:0x8006FAA0; // type:function size:0x48 scope:weak align:4 +loadBinaryDisplayList__22J3DModelLoaderDataBaseFPCvUl = .text:0x8006FAE8; // type:function size:0xBC scope:global align:4 +load__14J3DModelLoaderFPCvUl = .text:0x8006FBA4; // type:function size:0x2BC scope:global align:4 +readMaterial_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x8006FE60; // type:function size:0x4 scope:weak align:4 +readMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x8006FE64; // type:function size:0x4 scope:weak align:4 +loadMaterialTable__14J3DModelLoaderFPCv = .text:0x8006FE68; // type:function size:0x148 scope:global align:4 +readMaterialTable_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul = .text:0x8006FFB0; // type:function size:0x4 scope:weak align:4 +readMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x8006FFB4; // type:function size:0x4 scope:weak align:4 +loadBinaryDisplayList__14J3DModelLoaderFPCvUl = .text:0x8006FFB8; // type:function size:0x2A4 scope:global align:4 +setupBBoardInfo__14J3DModelLoaderFv = .text:0x8007025C; // type:function size:0x14C scope:global align:4 +readInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x800703A8; // type:function size:0x168 scope:global align:4 +__dt__19J3DMtxCalcNoAnmBaseFv = .text:0x80070510; // type:function size:0x5C scope:weak align:4 +readVertex__14J3DModelLoaderFPC14J3DVertexBlock = .text:0x8007056C; // type:function size:0x238 scope:global align:4 +readEnvelop__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x800707A4; // type:function size:0x98 scope:global align:4 +readDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x8007083C; // type:function size:0xB8 scope:global align:4 +readJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x800708F4; // type:function size:0xEC scope:global align:4 +readMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x800709E0; // type:function size:0x274 scope:global align:4 +__ct__11J3DMaterialFv = .text:0x80070C54; // type:function size:0x54 scope:weak align:4 +readMaterial_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x80070CA8; // type:function size:0x25C scope:global align:4 +readShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x80070F04; // type:function size:0x11C scope:global align:4 +readTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x80071020; // type:function size:0xC4 scope:global align:4 +readMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x800710E4; // type:function size:0x14C scope:global align:4 +readMaterialTable_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul = .text:0x80071230; // type:function size:0x14C scope:global align:4 +readTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x8007137C; // type:function size:0xC4 scope:global align:4 +readPatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x80071440; // type:function size:0x150 scope:global align:4 +readMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x80071590; // type:function size:0x1BC scope:global align:4 +modifyMaterial__14J3DModelLoaderFUl = .text:0x8007174C; // type:function size:0x7C scope:global align:4 +calcSizeMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x800717C8; // type:function size:0x8 scope:weak align:4 +calcSizeMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x800717D0; // type:function size:0x8 scope:weak align:4 +__dt__10J3DTextureFv = .text:0x800717D8; // type:function size:0x48 scope:weak align:4 +__dt__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x80071820; // type:function size:0x6C scope:weak align:4 +init__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf = .text:0x8007188C; // type:function size:0x28 scope:weak align:4 +calc__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv = .text:0x800718B4; // type:function size:0x28 scope:weak align:4 +__dt__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x800718DC; // type:function size:0x6C scope:weak align:4 +init__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf = .text:0x80071948; // type:function size:0x4C scope:weak align:4 +calc__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv = .text:0x80071994; // type:function size:0x28 scope:weak align:4 +__dt__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x800719BC; // type:function size:0x6C scope:weak align:4 +init__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf = .text:0x80071A28; // type:function size:0x28 scope:weak align:4 +calc__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv = .text:0x80071A50; // type:function size:0x28 scope:weak align:4 +JSUConvertOffsetToPtr<7ResTIMG>__FPCvPCv = .text:0x80071A78; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80071A90; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvPCv = .text:0x80071AA8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<17_GXVtxAttrFmtList>__FPCvPCv = .text:0x80071AC0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<17J3DModelHierarchy>__FPCvPCv = .text:0x80071AD8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<16J3DShapeInitData>__FPCvUl = .text:0x80071AF0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80071B08; // type:function size:0x18 scope:weak align:4 +__ct__15J3DJointFactoryFRC13J3DJointBlock = .text:0x80071B20; // type:function size:0x58 scope:global align:4 +create__15J3DJointFactoryFi = .text:0x80071B78; // type:function size:0x180 scope:global align:4 +JSUConvertOffsetToPtr<16J3DJointInitData>__FPCvUl = .text:0x80071CF8; // type:function size:0x18 scope:weak align:4 +__ct__15J3DShapeFactoryFRC13J3DShapeBlock = .text:0x80071D10; // type:function size:0xB0 scope:global align:4 +create__15J3DShapeFactoryFiUlP14_GXVtxDescList = .text:0x80071DC0; // type:function size:0x1B4 scope:global align:4 +newShapeMtx__15J3DShapeFactoryCFUlii = .text:0x80071F74; // type:function size:0x24C scope:global align:4 +__dt__21J3DShapeMtxConcatViewFv = .text:0x800721C0; // type:function size:0x5C scope:weak align:4 +__dt__11J3DShapeMtxFv = .text:0x8007221C; // type:function size:0x48 scope:weak align:4 +newShapeDraw__15J3DShapeFactoryCFii = .text:0x80072264; // type:function size:0x8C scope:global align:4 +allocVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x800722F0; // type:function size:0x10C scope:global align:4 +calcSize__15J3DShapeFactoryFiUl = .text:0x800723FC; // type:function size:0x8C scope:global align:4 +calcSizeVcdVatCmdBuffer__15J3DShapeFactoryFUl = .text:0x80072488; // type:function size:0x10 scope:global align:4 +calcSizeShapeMtx__15J3DShapeFactoryCFUlii = .text:0x80072498; // type:function size:0xA8 scope:global align:4 +JSUConvertOffsetToPtr<20J3DShapeDrawInitData>__FPCvUl = .text:0x80072540; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<19J3DShapeMtxInitData>__FPCvUl = .text:0x80072558; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80072570; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<14_GXVtxDescList>__FPCvUl = .text:0x80072588; // type:function size:0x18 scope:weak align:4 +load__20J3DAnmLoaderDataBaseFPCv = .text:0x800725A0; // type:function size:0x8C4 scope:global align:4 +__ct__20J3DAnmFullLoader_v15Fv = .text:0x80072E64; // type:function size:0x1C scope:global align:4 +__dt__12J3DAnmLoaderFv = .text:0x80072E80; // type:function size:0x48 scope:weak align:4 +__dt__20J3DAnmFullLoader_v15Fv = .text:0x80072EC8; // type:function size:0x5C scope:global align:4 +__ct__19J3DAnmKeyLoader_v15Fv = .text:0x80072F24; // type:function size:0x1C scope:global align:4 +__dt__19J3DAnmKeyLoader_v15Fv = .text:0x80072F40; // type:function size:0x5C scope:global align:4 +load__20J3DAnmFullLoader_v15FPCv = .text:0x80072F9C; // type:function size:0x128 scope:global align:4 +setResource__20J3DAnmFullLoader_v15FP10J3DAnmBasePCv = .text:0x800730C4; // type:function size:0x140 scope:global align:4 +readAnmTransform__20J3DAnmFullLoader_v15FPC23J3DAnmTransformFullData = .text:0x80073204; // type:function size:0x28 scope:global align:4 +setAnmTransform__20J3DAnmFullLoader_v15FP19J3DAnmTransformFullPC23J3DAnmTransformFullData = .text:0x8007322C; // type:function size:0x94 scope:global align:4 +readAnmColor__20J3DAnmFullLoader_v15FPC19J3DAnmColorFullData = .text:0x800732C0; // type:function size:0x28 scope:global align:4 +setAnmColor__20J3DAnmFullLoader_v15FP15J3DAnmColorFullPC19J3DAnmColorFullData = .text:0x800732E8; // type:function size:0xCC scope:global align:4 +readAnmTexPattern__20J3DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData = .text:0x800733B4; // type:function size:0x28 scope:global align:4 +setAnmTexPattern__20J3DAnmFullLoader_v15FP16J3DAnmTexPatternPC24J3DAnmTexPatternFullData = .text:0x800733DC; // type:function size:0xA4 scope:global align:4 +readAnmVisibility__20J3DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData = .text:0x80073480; // type:function size:0x28 scope:global align:4 +setAnmVisibility__20J3DAnmFullLoader_v15FP20J3DAnmVisibilityFullPC24J3DAnmVisibilityFullData = .text:0x800734A8; // type:function size:0x7C scope:global align:4 +readAnmCluster__20J3DAnmFullLoader_v15FPC21J3DAnmClusterFullData = .text:0x80073524; // type:function size:0x28 scope:global align:4 +setAnmCluster__20J3DAnmFullLoader_v15FP17J3DAnmClusterFullPC21J3DAnmClusterFullData = .text:0x8007354C; // type:function size:0x6C scope:global align:4 +readAnmVtxColor__20J3DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData = .text:0x800735B8; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__20J3DAnmFullLoader_v15FP18J3DAnmVtxColorFullPC22J3DAnmVtxColorFullData = .text:0x800735E0; // type:function size:0x170 scope:global align:4 +load__19J3DAnmKeyLoader_v15FPCv = .text:0x80073750; // type:function size:0x128 scope:global align:4 +setResource__19J3DAnmKeyLoader_v15FP10J3DAnmBasePCv = .text:0x80073878; // type:function size:0x140 scope:global align:4 +readAnmTransform__19J3DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData = .text:0x800739B8; // type:function size:0x28 scope:global align:4 +setAnmTransform__19J3DAnmKeyLoader_v15FP18J3DAnmTransformKeyPC22J3DAnmTransformKeyData = .text:0x800739E0; // type:function size:0x9C scope:global align:4 +readAnmTextureSRT__19J3DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData = .text:0x80073A7C; // type:function size:0x28 scope:global align:4 +setAnmTextureSRT__19J3DAnmKeyLoader_v15FP19J3DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData = .text:0x80073AA4; // type:function size:0x1D8 scope:global align:4 +readAnmColor__19J3DAnmKeyLoader_v15FPC18J3DAnmColorKeyData = .text:0x80073C7C; // type:function size:0x28 scope:global align:4 +setAnmColor__19J3DAnmKeyLoader_v15FP14J3DAnmColorKeyPC18J3DAnmColorKeyData = .text:0x80073CA4; // type:function size:0xEC scope:global align:4 +readAnmCluster__19J3DAnmKeyLoader_v15FPC20J3DAnmClusterKeyData = .text:0x80073D90; // type:function size:0x28 scope:global align:4 +setAnmCluster__19J3DAnmKeyLoader_v15FP16J3DAnmClusterKeyPC20J3DAnmClusterKeyData = .text:0x80073DB8; // type:function size:0x6C scope:global align:4 +readAnmTevReg__19J3DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData = .text:0x80073E24; // type:function size:0x28 scope:global align:4 +setAnmTevReg__19J3DAnmKeyLoader_v15FP15J3DAnmTevRegKeyPC19J3DAnmTevRegKeyData = .text:0x80073E4C; // type:function size:0x18C scope:global align:4 +readAnmVtxColor__19J3DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData = .text:0x80073FD8; // type:function size:0x28 scope:global align:4 +setAnmVtxColor__19J3DAnmKeyLoader_v15FP17J3DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData = .text:0x80074000; // type:function size:0x170 scope:global align:4 +__dt__20J3DAnmVisibilityFullFv = .text:0x80074170; // type:function size:0x5C scope:weak align:4 +getKind__20J3DAnmVisibilityFullCFv = .text:0x800741CC; // type:function size:0x8 scope:weak align:4 +__dt__16J3DAnmTexPatternFv = .text:0x800741D4; // type:function size:0x74 scope:weak align:4 +getKind__16J3DAnmTexPatternCFv = .text:0x80074248; // type:function size:0x8 scope:weak align:4 +__dt__15J3DAnmTevRegKeyFv = .text:0x80074250; // type:function size:0x88 scope:weak align:4 +getKind__15J3DAnmTevRegKeyCFv = .text:0x800742D8; // type:function size:0x8 scope:weak align:4 +__dt__19J3DAnmTextureSRTKeyFv = .text:0x800742E0; // type:function size:0x88 scope:weak align:4 +getKind__19J3DAnmTextureSRTKeyCFv = .text:0x80074368; // type:function size:0x8 scope:weak align:4 +__dt__18J3DAnmTransformKeyFv = .text:0x80074370; // type:function size:0x6C scope:weak align:4 +getKind__18J3DAnmTransformKeyCFv = .text:0x800743DC; // type:function size:0x8 scope:weak align:4 +getTransform__18J3DAnmTransformKeyCFUsP16J3DTransformInfo = .text:0x800743E4; // type:function size:0x24 scope:weak align:4 +JSUConvertOffsetToPtr<21J3DAnmClusterKeyTable>__FPCvPCv = .text:0x80074408; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr<22J3DAnmClusterFullTable>__FPCvPCv = .text:0x80074420; // type:function size:0x18 scope:weak align:4 +getUseMtxIndex__11J3DShapeMtxCFUs = .text:0x80074438; // type:function size:0x8 scope:weak align:4 +J3DGDSetGenMode__FUcUcUcUc11_GXCullMode = .text:0x80074440; // type:function size:0x170 scope:global align:4 +J3DGDSetGenMode_3Param__FUcUcUc = .text:0x800745B0; // type:function size:0x15C scope:global align:4 +J3DGDSetLightAttn__F10_GXLightIDffffff = .text:0x8007470C; // type:function size:0x318 scope:global align:4 +J3DGDSetLightColor__F10_GXLightID8_GXColor = .text:0x80074A24; // type:function size:0x110 scope:global align:4 +J3DGDSetLightPos__F10_GXLightIDfff = .text:0x80074B34; // type:function size:0x1EC scope:global align:4 +J3DGDSetLightDir__F10_GXLightIDfff = .text:0x80074D20; // type:function size:0x1EC scope:global align:4 +J3DGDSetVtxAttrFmtv__F9_GXVtxFmtPC17_GXVtxAttrFmtListb = .text:0x80074F0C; // type:function size:0x548 scope:global align:4 +J3DGDSetTexCoordGen__F13_GXTexGenType12_GXTexGenSrc = .text:0x80075454; // type:function size:0x1D0 scope:global align:4 +J3DGDSetTexCoordScale2__F13_GXTexCoordIDUsUcUcUsUcUc = .text:0x80075624; // type:function size:0x1FC scope:global align:4 +J3DGDSetTexLookupMode__F11_GXTexMapID14_GXTexWrapMode14_GXTexWrapMode12_GXTexFilter12_GXTexFilterfffUcUc13_GXAnisotropy = .text:0x80075820; // type:function size:0x1AC scope:global align:4 +J3DGDSetTexImgAttr__F11_GXTexMapIDUsUs9_GXTexFmt = .text:0x800759CC; // type:function size:0xA8 scope:global align:4 +J3DGDSetTexImgPtr__F11_GXTexMapIDPv = .text:0x80075A74; // type:function size:0x90 scope:global align:4 +J3DGDSetTexImgPtrRaw__F11_GXTexMapIDUl = .text:0x80075B04; // type:function size:0xD4 scope:global align:4 +J3DGDSetTexTlut__F11_GXTexMapIDUl10_GXTlutFmt = .text:0x80075BD8; // type:function size:0x98 scope:global align:4 +J3DGDLoadTlut__FPvUl11_GXTlutSize = .text:0x80075C70; // type:function size:0x2C8 scope:global align:4 +J3DGDSetIndTexMtx__F14_GXIndTexMtxIDPA3_fSc = .text:0x80075F38; // type:function size:0x2D8 scope:global align:4 +J3DGDSetIndTexCoordScale__F16_GXIndTexStageID14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale = .text:0x80076210; // type:function size:0xF0 scope:global align:4 +J3DGDSetIndTexOrder__FUl13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID = .text:0x80076300; // type:function size:0x1F8 scope:global align:4 +J3DGDSetTevOrder__F13_GXTevStageID13_GXTexCoordID11_GXTexMapID12_GXChannelID13_GXTexCoordID11_GXTexMapID12_GXChannelID = .text:0x800764F8; // type:function size:0x188 scope:global align:4 +J3DGDSetTevKColor__F14_GXTevKColorID8_GXColor = .text:0x80076680; // type:function size:0x168 scope:global align:4 +J3DGDSetTevColorS10__F11_GXTevRegID11_GXColorS10 = .text:0x800767E8; // type:function size:0x234 scope:global align:4 +J3DGDSetFog__F10_GXFogTypeffff8_GXColor = .text:0x80076A1C; // type:function size:0x360 scope:global align:4 +J3DGDSetFogRangeAdj__FUcUsP14_GXFogAdjTable = .text:0x80076D7C; // type:function size:0x13C scope:global align:4 +J3DFifoLoadPosMtxImm__FPA4_fUl = .text:0x80076EB8; // type:function size:0x80 scope:global align:4 +J3DFifoLoadNrmMtxImm__FPA4_fUl = .text:0x80076F38; // type:function size:0x6C scope:global align:4 +J3DFifoLoadNrmMtxImm3x3__FPA3_fUl = .text:0x80076FA4; // type:function size:0x6C scope:global align:4 +J3DFifoLoadNrmMtxToTexMtx__FPA4_fUl = .text:0x80077010; // type:function size:0x98 scope:global align:4 +J3DFifoLoadNrmMtxToTexMtx3x3__FPA3_fUl = .text:0x800770A8; // type:function size:0x98 scope:global align:4 +J3DFifoLoadTexCached__F11_GXTexMapIDUl15_GXTexCacheSizeUl15_GXTexCacheSize = .text:0x80077140; // type:function size:0x80 scope:global align:4 +initialize__21J3DColorBlockLightOffFv = .text:0x800771C0; // type:function size:0x48 scope:global align:4 +initialize__22J3DColorBlockAmbientOnFv = .text:0x80077208; // type:function size:0x7C scope:global align:4 +initialize__20J3DColorBlockLightOnFv = .text:0x80077284; // type:function size:0x9C scope:global align:4 +initialize__21J3DTexGenBlockPatchedFv = .text:0x80077320; // type:function size:0x30 scope:global align:4 +initialize__15J3DTexGenBlock4Fv = .text:0x80077350; // type:function size:0x20 scope:global align:4 +initialize__19J3DTexGenBlockBasicFv = .text:0x80077370; // type:function size:0x30 scope:global align:4 +initialize__15J3DTevBlockNullFv = .text:0x800773A0; // type:function size:0xC scope:global align:4 +initialize__18J3DTevBlockPatchedFv = .text:0x800773AC; // type:function size:0x18C scope:global align:4 +initialize__12J3DTevBlock1Fv = .text:0x80077538; // type:function size:0x28 scope:global align:4 +initialize__12J3DTevBlock2Fv = .text:0x80077560; // type:function size:0x110 scope:global align:4 +initialize__12J3DTevBlock4Fv = .text:0x80077670; // type:function size:0x140 scope:global align:4 +initialize__13J3DTevBlock16Fv = .text:0x800777B0; // type:function size:0x24C scope:global align:4 +initialize__15J3DIndBlockFullFv = .text:0x800779FC; // type:function size:0xC scope:global align:4 +initialize__16J3DPEBlockFogOffFv = .text:0x80077A08; // type:function size:0x24 scope:global align:4 +initialize__14J3DPEBlockFullFv = .text:0x80077A2C; // type:function size:0x2C scope:global align:4 +countDLSize__21J3DColorBlockLightOffFv = .text:0x80077A58; // type:function size:0x8 scope:global align:4 +countDLSize__22J3DColorBlockAmbientOnFv = .text:0x80077A60; // type:function size:0x8 scope:global align:4 +countDLSize__20J3DColorBlockLightOnFv = .text:0x80077A68; // type:function size:0x8 scope:global align:4 +countDLSize__21J3DTexGenBlockPatchedFv = .text:0x80077A70; // type:function size:0x8 scope:global align:4 +countDLSize__15J3DTexGenBlock4Fv = .text:0x80077A78; // type:function size:0x8 scope:global align:4 +countDLSize__19J3DTexGenBlockBasicFv = .text:0x80077A80; // type:function size:0x8 scope:global align:4 +countDLSize__18J3DTevBlockPatchedFv = .text:0x80077A88; // type:function size:0x8 scope:global align:4 +countDLSize__12J3DTevBlock1Fv = .text:0x80077A90; // type:function size:0x8 scope:global align:4 +countDLSize__12J3DTevBlock2Fv = .text:0x80077A98; // type:function size:0x8 scope:global align:4 +countDLSize__12J3DTevBlock4Fv = .text:0x80077AA0; // type:function size:0x8 scope:global align:4 +countDLSize__13J3DTevBlock16Fv = .text:0x80077AA8; // type:function size:0x8 scope:global align:4 +countDLSize__15J3DIndBlockFullFv = .text:0x80077AB0; // type:function size:0x8 scope:global align:4 +countDLSize__13J3DPEBlockOpaFv = .text:0x80077AB8; // type:function size:0x8 scope:global align:4 +countDLSize__17J3DPEBlockTexEdgeFv = .text:0x80077AC0; // type:function size:0x8 scope:global align:4 +countDLSize__13J3DPEBlockXluFv = .text:0x80077AC8; // type:function size:0x8 scope:global align:4 +countDLSize__16J3DPEBlockFogOffFv = .text:0x80077AD0; // type:function size:0x8 scope:global align:4 +countDLSize__14J3DPEBlockFullFv = .text:0x80077AD8; // type:function size:0x8 scope:global align:4 +load__21J3DColorBlockLightOffFv = .text:0x80077AE0; // type:function size:0x558 scope:global align:4 +load__22J3DColorBlockAmbientOnFv = .text:0x80078038; // type:function size:0x680 scope:global align:4 +load__20J3DColorBlockLightOnFv = .text:0x800786B8; // type:function size:0x6B0 scope:global align:4 +patch__21J3DColorBlockLightOffFv = .text:0x80078D68; // type:function size:0x4C scope:global align:4 +patchMatColor__21J3DColorBlockLightOffFv = .text:0x80078DB4; // type:function size:0x1AC scope:global align:4 +patchLight__21J3DColorBlockLightOffFv = .text:0x80078F60; // type:function size:0x438 scope:global align:4 +patch__20J3DColorBlockLightOnFv = .text:0x80079398; // type:function size:0x4C scope:global align:4 +patchMatColor__20J3DColorBlockLightOnFv = .text:0x800793E4; // type:function size:0x1AC scope:global align:4 +patchLight__20J3DColorBlockLightOnFv = .text:0x80079590; // type:function size:0x464 scope:global align:4 +diff__21J3DColorBlockLightOffFUl = .text:0x800799F4; // type:function size:0x68 scope:global align:4 +diffMatColor__21J3DColorBlockLightOffFv = .text:0x80079A5C; // type:function size:0x17C scope:global align:4 +diffLight__21J3DColorBlockLightOffFv = .text:0x80079BD8; // type:function size:0x404 scope:global align:4 +diff__20J3DColorBlockLightOnFUl = .text:0x80079FDC; // type:function size:0x70 scope:global align:4 +diffMatColor__20J3DColorBlockLightOnFv = .text:0x8007A04C; // type:function size:0x17C scope:global align:4 +diffLight__20J3DColorBlockLightOnFv = .text:0x8007A1C8; // type:function size:0x434 scope:global align:4 +load__15J3DTexGenBlock4Fv = .text:0x8007A5FC; // type:function size:0xA8 scope:global align:4 +load__19J3DTexGenBlockBasicFv = .text:0x8007A6A4; // type:function size:0xA8 scope:global align:4 +patch__21J3DTexGenBlockPatchedFv = .text:0x8007A74C; // type:function size:0x90 scope:global align:4 +patch__15J3DTexGenBlock4Fv = .text:0x8007A7DC; // type:function size:0xAC scope:global align:4 +patch__19J3DTexGenBlockBasicFv = .text:0x8007A888; // type:function size:0xAC scope:global align:4 +diff__21J3DTexGenBlockPatchedFUl = .text:0x8007A934; // type:function size:0x68 scope:global align:4 +diffTexMtx__21J3DTexGenBlockPatchedFv = .text:0x8007A99C; // type:function size:0x58 scope:global align:4 +diffTexGen__21J3DTexGenBlockPatchedFv = .text:0x8007A9F4; // type:function size:0x34 scope:global align:4 +load__12J3DTevBlock1Fv = .text:0x8007AA28; // type:function size:0x240 scope:global align:4 +load__12J3DTevBlock2Fv = .text:0x8007AC68; // type:function size:0x504 scope:global align:4 +load__12J3DTevBlock4Fv = .text:0x8007B16C; // type:function size:0x528 scope:global align:4 +load__13J3DTevBlock16Fv = .text:0x8007B694; // type:function size:0x52C scope:global align:4 +patchTexNo__18J3DTevBlockPatchedFv = .text:0x8007BBC0; // type:function size:0x94 scope:global align:4 +patchTevReg__18J3DTevBlockPatchedFv = .text:0x8007BC54; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__18J3DTevBlockPatchedFv = .text:0x8007BD24; // type:function size:0x16C scope:global align:4 +patch__18J3DTevBlockPatchedFv = .text:0x8007BE90; // type:function size:0x4C scope:global align:4 +patchTexNo__12J3DTevBlock1Fv = .text:0x8007BEDC; // type:function size:0x6C scope:global align:4 +patchTevReg__12J3DTevBlock1Fv = .text:0x8007BF48; // type:function size:0x4 scope:global align:4 +patchTexNoAndTexCoordScale__12J3DTevBlock1Fv = .text:0x8007BF4C; // type:function size:0xE4 scope:global align:4 +patch__12J3DTevBlock1Fv = .text:0x8007C030; // type:function size:0x2C scope:global align:4 +patchTexNo__12J3DTevBlock2Fv = .text:0x8007C05C; // type:function size:0x94 scope:global align:4 +patchTevReg__12J3DTevBlock2Fv = .text:0x8007C0F0; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__12J3DTevBlock2Fv = .text:0x8007C1C0; // type:function size:0x15C scope:global align:4 +patch__12J3DTevBlock2Fv = .text:0x8007C31C; // type:function size:0x4C scope:global align:4 +patchTexNo__12J3DTevBlock4Fv = .text:0x8007C368; // type:function size:0x94 scope:global align:4 +patchTevReg__12J3DTevBlock4Fv = .text:0x8007C3FC; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__12J3DTevBlock4Fv = .text:0x8007C4CC; // type:function size:0x16C scope:global align:4 +patch__12J3DTevBlock4Fv = .text:0x8007C638; // type:function size:0x4C scope:global align:4 +patchTexNo__13J3DTevBlock16Fv = .text:0x8007C684; // type:function size:0x94 scope:global align:4 +patchTevReg__13J3DTevBlock16Fv = .text:0x8007C718; // type:function size:0xD0 scope:global align:4 +patchTexNoAndTexCoordScale__13J3DTevBlock16Fv = .text:0x8007C7E8; // type:function size:0x16C scope:global align:4 +patch__13J3DTevBlock16Fv = .text:0x8007C954; // type:function size:0x4C scope:global align:4 +diff__11J3DTevBlockFUl = .text:0x8007C9A0; // type:function size:0xBC scope:global align:4 +diffTexNo__18J3DTevBlockPatchedFv = .text:0x8007CA5C; // type:function size:0x5C scope:global align:4 +diffTevStage__18J3DTevBlockPatchedFv = .text:0x8007CAB8; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__18J3DTevBlockPatchedFv = .text:0x8007CBC0; // type:function size:0xA8 scope:global align:4 +diffTevReg__18J3DTevBlockPatchedFv = .text:0x8007CC68; // type:function size:0x98 scope:global align:4 +diffTexCoordScale__18J3DTevBlockPatchedFv = .text:0x8007CD00; // type:function size:0xEC scope:global align:4 +diffTexNo__12J3DTevBlock1Fv = .text:0x8007CDEC; // type:function size:0x34 scope:global align:4 +diffTevReg__12J3DTevBlock1Fv = .text:0x8007CE20; // type:function size:0x4 scope:global align:4 +diffTevStage__12J3DTevBlock1Fv = .text:0x8007CE24; // type:function size:0xF0 scope:global align:4 +diffTevStageIndirect__12J3DTevBlock1Fv = .text:0x8007CF14; // type:function size:0x80 scope:global align:4 +diffTexCoordScale__12J3DTevBlock1Fv = .text:0x8007CF94; // type:function size:0x68 scope:global align:4 +diffTexNo__12J3DTevBlock2Fv = .text:0x8007CFFC; // type:function size:0x5C scope:global align:4 +diffTevReg__12J3DTevBlock2Fv = .text:0x8007D058; // type:function size:0x98 scope:global align:4 +diffTevStage__12J3DTevBlock2Fv = .text:0x8007D0F0; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__12J3DTevBlock2Fv = .text:0x8007D1F8; // type:function size:0xA8 scope:global align:4 +diffTexCoordScale__12J3DTevBlock2Fv = .text:0x8007D2A0; // type:function size:0xC4 scope:global align:4 +diffTexNo__12J3DTevBlock4Fv = .text:0x8007D364; // type:function size:0x5C scope:global align:4 +diffTevReg__12J3DTevBlock4Fv = .text:0x8007D3C0; // type:function size:0x98 scope:global align:4 +diffTevStage__12J3DTevBlock4Fv = .text:0x8007D458; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__12J3DTevBlock4Fv = .text:0x8007D560; // type:function size:0xA8 scope:global align:4 +diffTexCoordScale__12J3DTevBlock4Fv = .text:0x8007D608; // type:function size:0xEC scope:global align:4 +diffTexNo__13J3DTevBlock16Fv = .text:0x8007D6F4; // type:function size:0x5C scope:global align:4 +diffTevReg__13J3DTevBlock16Fv = .text:0x8007D750; // type:function size:0x98 scope:global align:4 +diffTevStage__13J3DTevBlock16Fv = .text:0x8007D7E8; // type:function size:0x108 scope:global align:4 +diffTevStageIndirect__13J3DTevBlock16Fv = .text:0x8007D8F0; // type:function size:0xA8 scope:global align:4 +diffTexCoordScale__13J3DTevBlock16Fv = .text:0x8007D998; // type:function size:0xEC scope:global align:4 +ptrToIndex__13J3DTevBlock16Fv = .text:0x8007DA84; // type:function size:0xD4 scope:global align:4 +ptrToIndex__18J3DTevBlockPatchedFv = .text:0x8007DB58; // type:function size:0xD4 scope:global align:4 +indexToPtr_private__11J3DTevBlockFUl = .text:0x8007DC2C; // type:function size:0x9C scope:global align:4 +load__15J3DIndBlockFullFv = .text:0x8007DCC8; // type:function size:0x200 scope:global align:4 +diff__15J3DIndBlockFullFUl = .text:0x8007DEC8; // type:function size:0xDC scope:global align:4 +load__13J3DPEBlockOpaFv = .text:0x8007DFA4; // type:function size:0x2C8 scope:global align:4 +load__17J3DPEBlockTexEdgeFv = .text:0x8007E26C; // type:function size:0x2E0 scope:global align:4 +load__13J3DPEBlockXluFv = .text:0x8007E54C; // type:function size:0x2D4 scope:global align:4 +load__16J3DPEBlockFogOffFv = .text:0x8007E820; // type:function size:0x49C scope:global align:4 +diffBlend__16J3DPEBlockFogOffFv = .text:0x8007ECBC; // type:function size:0x2F8 scope:global align:4 +load__14J3DPEBlockFullFv = .text:0x8007EFB4; // type:function size:0x4E4 scope:global align:4 +patch__14J3DPEBlockFullFv = .text:0x8007F498; // type:function size:0xB0 scope:global align:4 +diffFog__14J3DPEBlockFullFv = .text:0x8007F548; // type:function size:0x78 scope:global align:4 +diffBlend__14J3DPEBlockFullFv = .text:0x8007F5C0; // type:function size:0x2F8 scope:global align:4 +diff__14J3DPEBlockFullFUl = .text:0x8007F8B8; // type:function size:0x68 scope:global align:4 +reset__21J3DColorBlockLightOffFP13J3DColorBlock = .text:0x8007F920; // type:function size:0xE4 scope:global align:4 +reset__22J3DColorBlockAmbientOnFP13J3DColorBlock = .text:0x8007FA04; // type:function size:0x154 scope:global align:4 +reset__20J3DColorBlockLightOnFP13J3DColorBlock = .text:0x8007FB58; // type:function size:0x154 scope:global align:4 +reset__21J3DTexGenBlockPatchedFP14J3DTexGenBlock = .text:0x8007FCAC; // type:function size:0x11C scope:global align:4 +reset__15J3DTexGenBlock4FP14J3DTexGenBlock = .text:0x8007FDC8; // type:function size:0x150 scope:global align:4 +reset__19J3DTexGenBlockBasicFP14J3DTexGenBlock = .text:0x8007FF18; // type:function size:0x150 scope:global align:4 +reset__18J3DTevBlockPatchedFP11J3DTevBlock = .text:0x80080068; // type:function size:0x1B8 scope:global align:4 +reset__12J3DTevBlock1FP11J3DTevBlock = .text:0x80080220; // type:function size:0xE8 scope:global align:4 +reset__12J3DTevBlock2FP11J3DTevBlock = .text:0x80080308; // type:function size:0x308 scope:global align:4 +reset__12J3DTevBlock4FP11J3DTevBlock = .text:0x80080610; // type:function size:0x4E0 scope:global align:4 +reset__13J3DTevBlock16FP11J3DTevBlock = .text:0x80080AF0; // type:function size:0x27C scope:global align:4 +reset__15J3DIndBlockFullFP11J3DIndBlock = .text:0x80080D6C; // type:function size:0x144 scope:global align:4 +reset__16J3DPEBlockFogOffFP10J3DPEBlock = .text:0x80080EB0; // type:function size:0x100 scope:global align:4 +reset__14J3DPEBlockFullFP10J3DPEBlock = .text:0x80080FB0; // type:function size:0x1D8 scope:global align:4 +calc__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80081188; // type:function size:0x1B0 scope:global align:4 +calcWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80081338; // type:function size:0x140 scope:global align:4 +calcPostTexMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x80081478; // type:function size:0x140 scope:global align:4 +calcPostTexMtxWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf = .text:0x800815B8; // type:function size:0x118 scope:global align:4 +getType__14J3DPEBlockFullFv = .text:0x800816D0; // type:function size:0xC scope:weak align:4 +setFog__14J3DPEBlockFullFP6J3DFog = .text:0x800816DC; // type:function size:0xAC scope:weak align:4 +setFog__14J3DPEBlockFullF6J3DFog = .text:0x80081788; // type:function size:0xAC scope:weak align:4 +getFog__14J3DPEBlockFullFv = .text:0x80081834; // type:function size:0x8 scope:weak align:4 +setAlphaComp__14J3DPEBlockFullFRC12J3DAlphaComp = .text:0x8008183C; // type:function size:0x1C scope:weak align:4 +setAlphaComp__14J3DPEBlockFullFPC12J3DAlphaComp = .text:0x80081858; // type:function size:0x1C scope:weak align:4 +getAlphaComp__14J3DPEBlockFullFv = .text:0x80081874; // type:function size:0x8 scope:weak align:4 +setBlend__14J3DPEBlockFullFRC8J3DBlend = .text:0x8008187C; // type:function size:0x24 scope:weak align:4 +setBlend__14J3DPEBlockFullFPC8J3DBlend = .text:0x800818A0; // type:function size:0x24 scope:weak align:4 +getBlend__14J3DPEBlockFullFv = .text:0x800818C4; // type:function size:0x8 scope:weak align:4 +setZMode__14J3DPEBlockFullF8J3DZMode = .text:0x800818CC; // type:function size:0xC scope:weak align:4 +setZMode__14J3DPEBlockFullFPC8J3DZMode = .text:0x800818D8; // type:function size:0xC scope:weak align:4 +getZMode__14J3DPEBlockFullFv = .text:0x800818E4; // type:function size:0x8 scope:weak align:4 +setZCompLoc__14J3DPEBlockFullFUc = .text:0x800818EC; // type:function size:0x8 scope:weak align:4 +setZCompLoc__14J3DPEBlockFullFPCUc = .text:0x800818F4; // type:function size:0xC scope:weak align:4 +getZCompLoc__14J3DPEBlockFullCFv = .text:0x80081900; // type:function size:0x8 scope:weak align:4 +setDither__14J3DPEBlockFullFUc = .text:0x80081908; // type:function size:0x8 scope:weak align:4 +setDither__14J3DPEBlockFullFPCUc = .text:0x80081910; // type:function size:0xC scope:weak align:4 +getDither__14J3DPEBlockFullCFv = .text:0x8008191C; // type:function size:0x8 scope:weak align:4 +getFogOffset__14J3DPEBlockFullCFv = .text:0x80081924; // type:function size:0x8 scope:weak align:4 +setFogOffset__14J3DPEBlockFullFUl = .text:0x8008192C; // type:function size:0x8 scope:weak align:4 +__dt__14J3DPEBlockFullFv = .text:0x80081934; // type:function size:0x5C scope:weak align:4 +diff__16J3DPEBlockFogOffFUl = .text:0x80081990; // type:function size:0x34 scope:weak align:4 +getType__16J3DPEBlockFogOffFv = .text:0x800819C4; // type:function size:0xC scope:weak align:4 +setAlphaComp__16J3DPEBlockFogOffFRC12J3DAlphaComp = .text:0x800819D0; // type:function size:0x1C scope:weak align:4 +setAlphaComp__16J3DPEBlockFogOffFPC12J3DAlphaComp = .text:0x800819EC; // type:function size:0x1C scope:weak align:4 +getAlphaComp__16J3DPEBlockFogOffFv = .text:0x80081A08; // type:function size:0x8 scope:weak align:4 +setBlend__16J3DPEBlockFogOffFRC8J3DBlend = .text:0x80081A10; // type:function size:0x24 scope:weak align:4 +setBlend__16J3DPEBlockFogOffFPC8J3DBlend = .text:0x80081A34; // type:function size:0x24 scope:weak align:4 +getBlend__16J3DPEBlockFogOffFv = .text:0x80081A58; // type:function size:0x8 scope:weak align:4 +setZMode__16J3DPEBlockFogOffF8J3DZMode = .text:0x80081A60; // type:function size:0xC scope:weak align:4 +setZMode__16J3DPEBlockFogOffFPC8J3DZMode = .text:0x80081A6C; // type:function size:0xC scope:weak align:4 +getZMode__16J3DPEBlockFogOffFv = .text:0x80081A78; // type:function size:0x8 scope:weak align:4 +setZCompLoc__16J3DPEBlockFogOffFUc = .text:0x80081A80; // type:function size:0x8 scope:weak align:4 +setZCompLoc__16J3DPEBlockFogOffFPCUc = .text:0x80081A88; // type:function size:0xC scope:weak align:4 +getZCompLoc__16J3DPEBlockFogOffCFv = .text:0x80081A94; // type:function size:0x8 scope:weak align:4 +setDither__16J3DPEBlockFogOffFUc = .text:0x80081A9C; // type:function size:0x8 scope:weak align:4 +setDither__16J3DPEBlockFogOffFPCUc = .text:0x80081AA4; // type:function size:0xC scope:weak align:4 +getDither__16J3DPEBlockFogOffCFv = .text:0x80081AB0; // type:function size:0x8 scope:weak align:4 +__dt__16J3DPEBlockFogOffFv = .text:0x80081AB8; // type:function size:0x5C scope:weak align:4 +indexToPtr__13J3DTevBlock16Fv = .text:0x80081B14; // type:function size:0xA0 scope:weak align:4 +getType__13J3DTevBlock16Fv = .text:0x80081BB4; // type:function size:0xC scope:weak align:4 +setTexNo__13J3DTevBlock16FUlUs = .text:0x80081BC0; // type:function size:0x10 scope:weak align:4 +setTexNo__13J3DTevBlock16FUlPCUs = .text:0x80081BD0; // type:function size:0x14 scope:weak align:4 +getTexNo__13J3DTevBlock16CFUl = .text:0x80081BE4; // type:function size:0x10 scope:weak align:4 +setTevOrder__13J3DTevBlock16FUl11J3DTevOrder = .text:0x80081BF4; // type:function size:0x24 scope:weak align:4 +setTevOrder__13J3DTevBlock16FUlPC11J3DTevOrder = .text:0x80081C18; // type:function size:0x24 scope:weak align:4 +getTevOrder__13J3DTevBlock16FUl = .text:0x80081C3C; // type:function size:0x14 scope:weak align:4 +setTevColor__13J3DTevBlock16FUl13J3DGXColorS10 = .text:0x80081C50; // type:function size:0x2C scope:weak align:4 +setTevColor__13J3DTevBlock16FUlPC13J3DGXColorS10 = .text:0x80081C7C; // type:function size:0x2C scope:weak align:4 +getTevColor__13J3DTevBlock16FUl = .text:0x80081CA8; // type:function size:0x14 scope:weak align:4 +setTevKColor__13J3DTevBlock16FUl10J3DGXColor = .text:0x80081CBC; // type:function size:0x2C scope:weak align:4 +setTevKColor__13J3DTevBlock16FUlPC10J3DGXColor = .text:0x80081CE8; // type:function size:0x2C scope:weak align:4 +getTevKColor__13J3DTevBlock16FUl = .text:0x80081D14; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__13J3DTevBlock16FUlUc = .text:0x80081D28; // type:function size:0xC scope:weak align:4 +setTevKColorSel__13J3DTevBlock16FUlPCUc = .text:0x80081D34; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__13J3DTevBlock16FUl = .text:0x80081D44; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__13J3DTevBlock16FUlUc = .text:0x80081D50; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__13J3DTevBlock16FUlPCUc = .text:0x80081D5C; // type:function size:0x10 scope:weak align:4 +getTevKAlphaSel__13J3DTevBlock16FUl = .text:0x80081D6C; // type:function size:0xC scope:weak align:4 +setTevStageNum__13J3DTevBlock16FUc = .text:0x80081D78; // type:function size:0x8 scope:weak align:4 +setTevStageNum__13J3DTevBlock16FPCUc = .text:0x80081D80; // type:function size:0xC scope:weak align:4 +getTevStageNum__13J3DTevBlock16CFv = .text:0x80081D8C; // type:function size:0x8 scope:weak align:4 +setTevStage__13J3DTevBlock16FUl11J3DTevStage = .text:0x80081D94; // type:function size:0x3C scope:weak align:4 +setTevStage__13J3DTevBlock16FUlPC11J3DTevStage = .text:0x80081DD0; // type:function size:0x3C scope:weak align:4 +getTevStage__13J3DTevBlock16FUl = .text:0x80081E0C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__13J3DTevBlock16FUl18J3DTevSwapModeInfo = .text:0x80081E20; // type:function size:0x38 scope:weak align:4 +setTevSwapModeInfo__13J3DTevBlock16FUlPC18J3DTevSwapModeInfo = .text:0x80081E58; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__13J3DTevBlock16FUl19J3DTevSwapModeTable = .text:0x80081E90; // type:function size:0x10 scope:weak align:4 +setTevSwapModeTable__13J3DTevBlock16FUlPC19J3DTevSwapModeTable = .text:0x80081EA0; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__13J3DTevBlock16FUl = .text:0x80081EB0; // type:function size:0x10 scope:weak align:4 +setIndTevStage__13J3DTevBlock16FUl14J3DIndTevStage = .text:0x80081EC0; // type:function size:0x14 scope:weak align:4 +setIndTevStage__13J3DTevBlock16FUlPC14J3DIndTevStage = .text:0x80081ED4; // type:function size:0x14 scope:weak align:4 +getIndTevStage__13J3DTevBlock16FUl = .text:0x80081EE8; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__13J3DTevBlock16CFv = .text:0x80081EFC; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__13J3DTevBlock16CFv = .text:0x80081F04; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__13J3DTevBlock16FUl = .text:0x80081F0C; // type:function size:0x8 scope:weak align:4 +__dt__13J3DTevBlock16Fv = .text:0x80081F14; // type:function size:0x5C scope:weak align:4 +ptrToIndex__12J3DTevBlock4Fv = .text:0x80081F70; // type:function size:0x4 scope:weak align:4 +indexToPtr__12J3DTevBlock4Fv = .text:0x80081F74; // type:function size:0xA0 scope:weak align:4 +getType__12J3DTevBlock4Fv = .text:0x80082014; // type:function size:0xC scope:weak align:4 +setTexNo__12J3DTevBlock4FUlUs = .text:0x80082020; // type:function size:0x10 scope:weak align:4 +setTexNo__12J3DTevBlock4FUlPCUs = .text:0x80082030; // type:function size:0x14 scope:weak align:4 +getTexNo__12J3DTevBlock4CFUl = .text:0x80082044; // type:function size:0x10 scope:weak align:4 +setTevOrder__12J3DTevBlock4FUl11J3DTevOrder = .text:0x80082054; // type:function size:0x24 scope:weak align:4 +setTevOrder__12J3DTevBlock4FUlPC11J3DTevOrder = .text:0x80082078; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J3DTevBlock4FUl = .text:0x8008209C; // type:function size:0x14 scope:weak align:4 +setTevColor__12J3DTevBlock4FUl13J3DGXColorS10 = .text:0x800820B0; // type:function size:0x2C scope:weak align:4 +setTevColor__12J3DTevBlock4FUlPC13J3DGXColorS10 = .text:0x800820DC; // type:function size:0x2C scope:weak align:4 +getTevColor__12J3DTevBlock4FUl = .text:0x80082108; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J3DTevBlock4FUl10J3DGXColor = .text:0x8008211C; // type:function size:0x2C scope:weak align:4 +setTevKColor__12J3DTevBlock4FUlPC10J3DGXColor = .text:0x80082148; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J3DTevBlock4FUl = .text:0x80082174; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J3DTevBlock4FUlUc = .text:0x80082188; // type:function size:0xC scope:weak align:4 +setTevKColorSel__12J3DTevBlock4FUlPCUc = .text:0x80082194; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__12J3DTevBlock4FUl = .text:0x800821A4; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock4FUlUc = .text:0x800821B0; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock4FUlPCUc = .text:0x800821BC; // type:function size:0x10 scope:weak align:4 +getTevKAlphaSel__12J3DTevBlock4FUl = .text:0x800821CC; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J3DTevBlock4FUc = .text:0x800821D8; // type:function size:0x8 scope:weak align:4 +setTevStageNum__12J3DTevBlock4FPCUc = .text:0x800821E0; // type:function size:0xC scope:weak align:4 +getTevStageNum__12J3DTevBlock4CFv = .text:0x800821EC; // type:function size:0x8 scope:weak align:4 +setTevStage__12J3DTevBlock4FUl11J3DTevStage = .text:0x800821F4; // type:function size:0x3C scope:weak align:4 +setTevStage__12J3DTevBlock4FUlPC11J3DTevStage = .text:0x80082230; // type:function size:0x3C scope:weak align:4 +getTevStage__12J3DTevBlock4FUl = .text:0x8008226C; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock4FUl18J3DTevSwapModeInfo = .text:0x80082280; // type:function size:0x38 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock4FUlPC18J3DTevSwapModeInfo = .text:0x800822B8; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock4FUl19J3DTevSwapModeTable = .text:0x800822F0; // type:function size:0x10 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock4FUlPC19J3DTevSwapModeTable = .text:0x80082300; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J3DTevBlock4FUl = .text:0x80082310; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J3DTevBlock4FUl14J3DIndTevStage = .text:0x80082320; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock4FUlPC14J3DIndTevStage = .text:0x80082334; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J3DTevBlock4FUl = .text:0x80082348; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__12J3DTevBlock4CFv = .text:0x8008235C; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__12J3DTevBlock4CFv = .text:0x80082364; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__12J3DTevBlock4FUl = .text:0x8008236C; // type:function size:0x8 scope:weak align:4 +__dt__12J3DTevBlock4Fv = .text:0x80082374; // type:function size:0x5C scope:weak align:4 +ptrToIndex__12J3DTevBlock2Fv = .text:0x800823D0; // type:function size:0x4 scope:weak align:4 +indexToPtr__12J3DTevBlock2Fv = .text:0x800823D4; // type:function size:0xA0 scope:weak align:4 +getType__12J3DTevBlock2Fv = .text:0x80082474; // type:function size:0xC scope:weak align:4 +setTexNo__12J3DTevBlock2FUlUs = .text:0x80082480; // type:function size:0x10 scope:weak align:4 +setTexNo__12J3DTevBlock2FUlPCUs = .text:0x80082490; // type:function size:0x14 scope:weak align:4 +getTexNo__12J3DTevBlock2CFUl = .text:0x800824A4; // type:function size:0x10 scope:weak align:4 +setTevOrder__12J3DTevBlock2FUl11J3DTevOrder = .text:0x800824B4; // type:function size:0x24 scope:weak align:4 +setTevOrder__12J3DTevBlock2FUlPC11J3DTevOrder = .text:0x800824D8; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J3DTevBlock2FUl = .text:0x800824FC; // type:function size:0x14 scope:weak align:4 +setTevColor__12J3DTevBlock2FUl13J3DGXColorS10 = .text:0x80082510; // type:function size:0x2C scope:weak align:4 +setTevColor__12J3DTevBlock2FUlPC13J3DGXColorS10 = .text:0x8008253C; // type:function size:0x2C scope:weak align:4 +getTevColor__12J3DTevBlock2FUl = .text:0x80082568; // type:function size:0x14 scope:weak align:4 +setTevKColor__12J3DTevBlock2FUl10J3DGXColor = .text:0x8008257C; // type:function size:0x2C scope:weak align:4 +setTevKColor__12J3DTevBlock2FUlPC10J3DGXColor = .text:0x800825A8; // type:function size:0x2C scope:weak align:4 +getTevKColor__12J3DTevBlock2FUl = .text:0x800825D4; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__12J3DTevBlock2FUlUc = .text:0x800825E8; // type:function size:0xC scope:weak align:4 +setTevKColorSel__12J3DTevBlock2FUlPCUc = .text:0x800825F4; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__12J3DTevBlock2FUl = .text:0x80082604; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock2FUlUc = .text:0x80082610; // type:function size:0xC scope:weak align:4 +setTevKAlphaSel__12J3DTevBlock2FUlPCUc = .text:0x8008261C; // type:function size:0x10 scope:weak align:4 +getTevKAlphaSel__12J3DTevBlock2FUl = .text:0x8008262C; // type:function size:0xC scope:weak align:4 +setTevStageNum__12J3DTevBlock2FUc = .text:0x80082638; // type:function size:0x8 scope:weak align:4 +setTevStageNum__12J3DTevBlock2FPCUc = .text:0x80082640; // type:function size:0xC scope:weak align:4 +getTevStageNum__12J3DTevBlock2CFv = .text:0x8008264C; // type:function size:0x8 scope:weak align:4 +setTevStage__12J3DTevBlock2FUl11J3DTevStage = .text:0x80082654; // type:function size:0x3C scope:weak align:4 +setTevStage__12J3DTevBlock2FUlPC11J3DTevStage = .text:0x80082690; // type:function size:0x3C scope:weak align:4 +getTevStage__12J3DTevBlock2FUl = .text:0x800826CC; // type:function size:0x14 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock2FUl18J3DTevSwapModeInfo = .text:0x800826E0; // type:function size:0x38 scope:weak align:4 +setTevSwapModeInfo__12J3DTevBlock2FUlPC18J3DTevSwapModeInfo = .text:0x80082718; // type:function size:0x38 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock2FUl19J3DTevSwapModeTable = .text:0x80082750; // type:function size:0x10 scope:weak align:4 +setTevSwapModeTable__12J3DTevBlock2FUlPC19J3DTevSwapModeTable = .text:0x80082760; // type:function size:0x10 scope:weak align:4 +getTevSwapModeTable__12J3DTevBlock2FUl = .text:0x80082770; // type:function size:0x10 scope:weak align:4 +setIndTevStage__12J3DTevBlock2FUl14J3DIndTevStage = .text:0x80082780; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock2FUlPC14J3DIndTevStage = .text:0x80082794; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J3DTevBlock2FUl = .text:0x800827A8; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__12J3DTevBlock2CFv = .text:0x800827BC; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__12J3DTevBlock2CFv = .text:0x800827C4; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__12J3DTevBlock2FUl = .text:0x800827CC; // type:function size:0x8 scope:weak align:4 +__dt__12J3DTevBlock2Fv = .text:0x800827D4; // type:function size:0x5C scope:weak align:4 +ptrToIndex__12J3DTevBlock1Fv = .text:0x80082830; // type:function size:0x4 scope:weak align:4 +indexToPtr__12J3DTevBlock1Fv = .text:0x80082834; // type:function size:0xA0 scope:weak align:4 +getType__12J3DTevBlock1Fv = .text:0x800828D4; // type:function size:0xC scope:weak align:4 +setTexNo__12J3DTevBlock1FUlUs = .text:0x800828E0; // type:function size:0x10 scope:weak align:4 +setTexNo__12J3DTevBlock1FUlPCUs = .text:0x800828F0; // type:function size:0x14 scope:weak align:4 +getTexNo__12J3DTevBlock1CFUl = .text:0x80082904; // type:function size:0x10 scope:weak align:4 +setTevOrder__12J3DTevBlock1FUl11J3DTevOrder = .text:0x80082914; // type:function size:0x24 scope:weak align:4 +setTevOrder__12J3DTevBlock1FUlPC11J3DTevOrder = .text:0x80082938; // type:function size:0x24 scope:weak align:4 +getTevOrder__12J3DTevBlock1FUl = .text:0x8008295C; // type:function size:0x14 scope:weak align:4 +setTevStageNum__12J3DTevBlock1FUc = .text:0x80082970; // type:function size:0x4 scope:weak align:4 +setTevStageNum__12J3DTevBlock1FPCUc = .text:0x80082974; // type:function size:0x4 scope:weak align:4 +getTevStageNum__12J3DTevBlock1CFv = .text:0x80082978; // type:function size:0x8 scope:weak align:4 +setTevStage__12J3DTevBlock1FUl11J3DTevStage = .text:0x80082980; // type:function size:0x3C scope:weak align:4 +setTevStage__12J3DTevBlock1FUlPC11J3DTevStage = .text:0x800829BC; // type:function size:0x3C scope:weak align:4 +getTevStage__12J3DTevBlock1FUl = .text:0x800829F8; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock1FUl14J3DIndTevStage = .text:0x80082A0C; // type:function size:0x14 scope:weak align:4 +setIndTevStage__12J3DTevBlock1FUlPC14J3DIndTevStage = .text:0x80082A20; // type:function size:0x14 scope:weak align:4 +getIndTevStage__12J3DTevBlock1FUl = .text:0x80082A34; // type:function size:0x14 scope:weak align:4 +getTexNoOffset__12J3DTevBlock1CFv = .text:0x80082A48; // type:function size:0x8 scope:weak align:4 +__dt__12J3DTevBlock1Fv = .text:0x80082A50; // type:function size:0x5C scope:weak align:4 +load__18J3DTevBlockPatchedFv = .text:0x80082AAC; // type:function size:0x4 scope:weak align:4 +indexToPtr__18J3DTevBlockPatchedFv = .text:0x80082AB0; // type:function size:0xA0 scope:weak align:4 +getType__18J3DTevBlockPatchedFv = .text:0x80082B50; // type:function size:0xC scope:weak align:4 +setTevStageNum__18J3DTevBlockPatchedFUc = .text:0x80082B5C; // type:function size:0x8 scope:weak align:4 +setTevStageNum__18J3DTevBlockPatchedFPCUc = .text:0x80082B64; // type:function size:0xC scope:weak align:4 +getTevStageNum__18J3DTevBlockPatchedCFv = .text:0x80082B70; // type:function size:0x8 scope:weak align:4 +setTexNo__18J3DTevBlockPatchedFUlUs = .text:0x80082B78; // type:function size:0x10 scope:weak align:4 +setTexNo__18J3DTevBlockPatchedFUlPCUs = .text:0x80082B88; // type:function size:0x14 scope:weak align:4 +getTexNo__18J3DTevBlockPatchedCFUl = .text:0x80082B9C; // type:function size:0x10 scope:weak align:4 +setTevOrder__18J3DTevBlockPatchedFUl11J3DTevOrder = .text:0x80082BAC; // type:function size:0x24 scope:weak align:4 +setTevOrder__18J3DTevBlockPatchedFUlPC11J3DTevOrder = .text:0x80082BD0; // type:function size:0x24 scope:weak align:4 +getTevOrder__18J3DTevBlockPatchedFUl = .text:0x80082BF4; // type:function size:0x14 scope:weak align:4 +setTevStage__18J3DTevBlockPatchedFUl11J3DTevStage = .text:0x80082C08; // type:function size:0x3C scope:weak align:4 +setTevStage__18J3DTevBlockPatchedFUlPC11J3DTevStage = .text:0x80082C44; // type:function size:0x3C scope:weak align:4 +getTevStage__18J3DTevBlockPatchedFUl = .text:0x80082C80; // type:function size:0x14 scope:weak align:4 +setIndTevStage__18J3DTevBlockPatchedFUl14J3DIndTevStage = .text:0x80082C94; // type:function size:0x14 scope:weak align:4 +setIndTevStage__18J3DTevBlockPatchedFUlPC14J3DIndTevStage = .text:0x80082CA8; // type:function size:0x14 scope:weak align:4 +getIndTevStage__18J3DTevBlockPatchedFUl = .text:0x80082CBC; // type:function size:0x14 scope:weak align:4 +setTevColor__18J3DTevBlockPatchedFUl13J3DGXColorS10 = .text:0x80082CD0; // type:function size:0x2C scope:weak align:4 +setTevColor__18J3DTevBlockPatchedFUlPC13J3DGXColorS10 = .text:0x80082CFC; // type:function size:0x2C scope:weak align:4 +getTevColor__18J3DTevBlockPatchedFUl = .text:0x80082D28; // type:function size:0x14 scope:weak align:4 +setTevKColor__18J3DTevBlockPatchedFUl10J3DGXColor = .text:0x80082D3C; // type:function size:0x2C scope:weak align:4 +setTevKColor__18J3DTevBlockPatchedFUlPC10J3DGXColor = .text:0x80082D68; // type:function size:0x2C scope:weak align:4 +getTevKColor__18J3DTevBlockPatchedFUl = .text:0x80082D94; // type:function size:0x14 scope:weak align:4 +setTevKColorSel__18J3DTevBlockPatchedFUlUc = .text:0x80082DA8; // type:function size:0xC scope:weak align:4 +setTevKColorSel__18J3DTevBlockPatchedFUlPCUc = .text:0x80082DB4; // type:function size:0x10 scope:weak align:4 +getTevKColorSel__18J3DTevBlockPatchedFUl = .text:0x80082DC4; // type:function size:0xC scope:weak align:4 +getTexNoOffset__18J3DTevBlockPatchedCFv = .text:0x80082DD0; // type:function size:0x8 scope:weak align:4 +getTevRegOffset__18J3DTevBlockPatchedCFv = .text:0x80082DD8; // type:function size:0x8 scope:weak align:4 +setTevRegOffset__18J3DTevBlockPatchedFUl = .text:0x80082DE0; // type:function size:0x8 scope:weak align:4 +__dt__18J3DTevBlockPatchedFv = .text:0x80082DE8; // type:function size:0x5C scope:weak align:4 +getType__19J3DTexGenBlockBasicFv = .text:0x80082E44; // type:function size:0xC scope:weak align:4 +setNBTScale__19J3DTexGenBlockBasicF11J3DNBTScale = .text:0x80082E50; // type:function size:0x24 scope:weak align:4 +setNBTScale__19J3DTexGenBlockBasicFPC11J3DNBTScale = .text:0x80082E74; // type:function size:0x24 scope:weak align:4 +getNBTScale__19J3DTexGenBlockBasicFv = .text:0x80082E98; // type:function size:0x8 scope:weak align:4 +__dt__19J3DTexGenBlockBasicFv = .text:0x80082EA0; // type:function size:0x6C scope:weak align:4 +setTexGenNum__21J3DTexGenBlockPatchedFUl = .text:0x80082F0C; // type:function size:0x8 scope:weak align:4 +setTexGenNum__21J3DTexGenBlockPatchedFPCUl = .text:0x80082F14; // type:function size:0xC scope:weak align:4 +getTexGenNum__21J3DTexGenBlockPatchedCFv = .text:0x80082F20; // type:function size:0x8 scope:weak align:4 +setTexCoord__21J3DTexGenBlockPatchedFUlPC11J3DTexCoord = .text:0x80082F28; // type:function size:0x24 scope:weak align:4 +getTexCoord__21J3DTexGenBlockPatchedFUl = .text:0x80082F4C; // type:function size:0x14 scope:weak align:4 +setTexMtx__21J3DTexGenBlockPatchedFUlP9J3DTexMtx = .text:0x80082F60; // type:function size:0x10 scope:weak align:4 +getTexMtx__21J3DTexGenBlockPatchedFUl = .text:0x80082F70; // type:function size:0x10 scope:weak align:4 +getTexMtxOffset__21J3DTexGenBlockPatchedCFv = .text:0x80082F80; // type:function size:0x8 scope:weak align:4 +setTexMtxOffset__21J3DTexGenBlockPatchedFUl = .text:0x80082F88; // type:function size:0x8 scope:weak align:4 +getType__15J3DTexGenBlock4Fv = .text:0x80082F90; // type:function size:0xC scope:weak align:4 +setNBTScale__15J3DTexGenBlock4F11J3DNBTScale = .text:0x80082F9C; // type:function size:0x24 scope:weak align:4 +setNBTScale__15J3DTexGenBlock4FPC11J3DNBTScale = .text:0x80082FC0; // type:function size:0x24 scope:weak align:4 +getNBTScale__15J3DTexGenBlock4Fv = .text:0x80082FE4; // type:function size:0x8 scope:weak align:4 +__dt__15J3DTexGenBlock4Fv = .text:0x80082FEC; // type:function size:0x6C scope:weak align:4 +load__21J3DTexGenBlockPatchedFv = .text:0x80083058; // type:function size:0x4 scope:weak align:4 +getType__21J3DTexGenBlockPatchedFv = .text:0x8008305C; // type:function size:0xC scope:weak align:4 +getType__20J3DColorBlockLightOnFv = .text:0x80083068; // type:function size:0xC scope:weak align:4 +setMatColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x80083074; // type:function size:0x2C scope:weak align:4 +setMatColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x800830A0; // type:function size:0x2C scope:weak align:4 +getMatColor__20J3DColorBlockLightOnFUl = .text:0x800830CC; // type:function size:0x14 scope:weak align:4 +setAmbColor__20J3DColorBlockLightOnFUl10J3DGXColor = .text:0x800830E0; // type:function size:0x2C scope:weak align:4 +setAmbColor__20J3DColorBlockLightOnFUlPC10J3DGXColor = .text:0x8008310C; // type:function size:0x2C scope:weak align:4 +getAmbColor__20J3DColorBlockLightOnFUl = .text:0x80083138; // type:function size:0x14 scope:weak align:4 +setColorChanNum__20J3DColorBlockLightOnFPCUc = .text:0x8008314C; // type:function size:0xC scope:weak align:4 +setColorChanNum__20J3DColorBlockLightOnFUc = .text:0x80083158; // type:function size:0x8 scope:weak align:4 +getColorChanNum__20J3DColorBlockLightOnCFv = .text:0x80083160; // type:function size:0x8 scope:weak align:4 +setColorChan__20J3DColorBlockLightOnFUlPC12J3DColorChan = .text:0x80083168; // type:function size:0x14 scope:weak align:4 +setColorChan__20J3DColorBlockLightOnFUlRC12J3DColorChan = .text:0x8008317C; // type:function size:0x14 scope:weak align:4 +getColorChan__20J3DColorBlockLightOnFUl = .text:0x80083190; // type:function size:0x14 scope:weak align:4 +setLight__20J3DColorBlockLightOnFUlP11J3DLightObj = .text:0x800831A4; // type:function size:0x10 scope:weak align:4 +getLight__20J3DColorBlockLightOnFUl = .text:0x800831B4; // type:function size:0x10 scope:weak align:4 +setCullMode__20J3DColorBlockLightOnFUc = .text:0x800831C4; // type:function size:0x8 scope:weak align:4 +setCullMode__20J3DColorBlockLightOnFPCUc = .text:0x800831CC; // type:function size:0xC scope:weak align:4 +getCullMode__20J3DColorBlockLightOnCFv = .text:0x800831D8; // type:function size:0x8 scope:weak align:4 +getMatColorOffset__20J3DColorBlockLightOnCFv = .text:0x800831E0; // type:function size:0x8 scope:weak align:4 +getColorChanOffset__20J3DColorBlockLightOnCFv = .text:0x800831E8; // type:function size:0x8 scope:weak align:4 +setMatColorOffset__20J3DColorBlockLightOnFUl = .text:0x800831F0; // type:function size:0x8 scope:weak align:4 +setColorChanOffset__20J3DColorBlockLightOnFUl = .text:0x800831F8; // type:function size:0x8 scope:weak align:4 +__dt__20J3DColorBlockLightOnFv = .text:0x80083200; // type:function size:0x5C scope:weak align:4 +getType__22J3DColorBlockAmbientOnFv = .text:0x8008325C; // type:function size:0xC scope:weak align:4 +setAmbColor__22J3DColorBlockAmbientOnFUl10J3DGXColor = .text:0x80083268; // type:function size:0x2C scope:weak align:4 +setAmbColor__22J3DColorBlockAmbientOnFUlPC10J3DGXColor = .text:0x80083294; // type:function size:0x2C scope:weak align:4 +getAmbColor__22J3DColorBlockAmbientOnFUl = .text:0x800832C0; // type:function size:0x14 scope:weak align:4 +__dt__22J3DColorBlockAmbientOnFv = .text:0x800832D4; // type:function size:0x6C scope:weak align:4 +setMatColor__21J3DColorBlockLightOffFUl10J3DGXColor = .text:0x80083340; // type:function size:0x2C scope:weak align:4 +setMatColor__21J3DColorBlockLightOffFUlPC10J3DGXColor = .text:0x8008336C; // type:function size:0x2C scope:weak align:4 +getMatColor__21J3DColorBlockLightOffFUl = .text:0x80083398; // type:function size:0x14 scope:weak align:4 +setColorChanNum__21J3DColorBlockLightOffFPCUc = .text:0x800833AC; // type:function size:0xC scope:weak align:4 +setColorChanNum__21J3DColorBlockLightOffFUc = .text:0x800833B8; // type:function size:0x8 scope:weak align:4 +getColorChanNum__21J3DColorBlockLightOffCFv = .text:0x800833C0; // type:function size:0x8 scope:weak align:4 +setColorChan__21J3DColorBlockLightOffFUlPC12J3DColorChan = .text:0x800833C8; // type:function size:0x14 scope:weak align:4 +setColorChan__21J3DColorBlockLightOffFUlRC12J3DColorChan = .text:0x800833DC; // type:function size:0x14 scope:weak align:4 +getColorChan__21J3DColorBlockLightOffFUl = .text:0x800833F0; // type:function size:0x14 scope:weak align:4 +setCullMode__21J3DColorBlockLightOffFUc = .text:0x80083404; // type:function size:0x8 scope:weak align:4 +setCullMode__21J3DColorBlockLightOffFPCUc = .text:0x8008340C; // type:function size:0xC scope:weak align:4 +getCullMode__21J3DColorBlockLightOffCFv = .text:0x80083418; // type:function size:0x8 scope:weak align:4 +getMatColorOffset__21J3DColorBlockLightOffCFv = .text:0x80083420; // type:function size:0x8 scope:weak align:4 +getColorChanOffset__21J3DColorBlockLightOffCFv = .text:0x80083428; // type:function size:0x8 scope:weak align:4 +setMatColorOffset__21J3DColorBlockLightOffFUl = .text:0x80083430; // type:function size:0x8 scope:weak align:4 +setColorChanOffset__21J3DColorBlockLightOffFUl = .text:0x80083438; // type:function size:0x8 scope:weak align:4 +getType__13J3DPEBlockXluFv = .text:0x80083440; // type:function size:0xC scope:weak align:4 +__dt__13J3DPEBlockXluFv = .text:0x8008344C; // type:function size:0x5C scope:weak align:4 +getType__17J3DPEBlockTexEdgeFv = .text:0x800834A8; // type:function size:0xC scope:weak align:4 +__dt__17J3DPEBlockTexEdgeFv = .text:0x800834B4; // type:function size:0x5C scope:weak align:4 +getType__13J3DPEBlockOpaFv = .text:0x80083510; // type:function size:0xC scope:weak align:4 +__dt__13J3DPEBlockOpaFv = .text:0x8008351C; // type:function size:0x5C scope:weak align:4 +getType__15J3DIndBlockFullFv = .text:0x80083578; // type:function size:0xC scope:weak align:4 +setIndTexStageNum__15J3DIndBlockFullFUc = .text:0x80083584; // type:function size:0x8 scope:weak align:4 +getIndTexStageNum__15J3DIndBlockFullCFv = .text:0x8008358C; // type:function size:0x8 scope:weak align:4 +setIndTexOrder__15J3DIndBlockFullFUl14J3DIndTexOrder = .text:0x80083594; // type:function size:0x1C scope:weak align:4 +setIndTexOrder__15J3DIndBlockFullFUlPC14J3DIndTexOrder = .text:0x800835B0; // type:function size:0x1C scope:weak align:4 +getIndTexOrder__15J3DIndBlockFullFUl = .text:0x800835CC; // type:function size:0x14 scope:weak align:4 +setIndTexMtx__15J3DIndBlockFullFUl12J3DIndTexMtx = .text:0x800835E0; // type:function size:0x44 scope:weak align:4 +setIndTexMtx__15J3DIndBlockFullFUlPC12J3DIndTexMtx = .text:0x80083624; // type:function size:0x44 scope:weak align:4 +getIndTexMtx__15J3DIndBlockFullFUl = .text:0x80083668; // type:function size:0x14 scope:weak align:4 +setIndTexCoordScale__15J3DIndBlockFullFUl19J3DIndTexCoordScale = .text:0x8008367C; // type:function size:0x1C scope:weak align:4 +setIndTexCoordScale__15J3DIndBlockFullFUlPC19J3DIndTexCoordScale = .text:0x80083698; // type:function size:0x1C scope:weak align:4 +getIndTexCoordScale__15J3DIndBlockFullFUl = .text:0x800836B4; // type:function size:0x14 scope:weak align:4 +__dt__15J3DIndBlockFullFv = .text:0x800836C8; // type:function size:0x9C scope:weak align:4 +getType__21J3DColorBlockLightOffFv = .text:0x80083764; // type:function size:0xC scope:weak align:4 +__sinit_J3DMatBlock_cpp = .text:0x80083770; // type:function size:0x24 scope:local align:4 +clear__12J3DModelDataFv = .text:0x80083794; // type:function size:0x18 scope:global align:4 +__ct__12J3DModelDataFv = .text:0x800837AC; // type:function size:0x80 scope:global align:4 +__dt__13J3DShapeTableFv = .text:0x8008382C; // type:function size:0x48 scope:weak align:4 +__dt__12J3DJointTreeFv = .text:0x80083874; // type:function size:0x64 scope:weak align:4 +newSharedDisplayList__12J3DModelDataFUl = .text:0x800838D8; // type:function size:0x94 scope:global align:4 +indexToPtr__12J3DModelDataFv = .text:0x8008396C; // type:function size:0xC4 scope:global align:4 +makeSharedDL__12J3DModelDataFv = .text:0x80083A30; // type:function size:0x80 scope:global align:4 +simpleCalcMaterial__12J3DModelDataFUsPA4_f = .text:0x80083AB0; // type:function size:0xC8 scope:global align:4 +syncJ3DSysFlags__12J3DModelDataCFv = .text:0x80083B78; // type:function size:0x3C scope:global align:4 +__dt__12J3DModelDataFv = .text:0x80083BB4; // type:function size:0x98 scope:weak align:4 +clear__16J3DMaterialTableFv = .text:0x80083C4C; // type:function size:0x28 scope:global align:4 +__ct__16J3DMaterialTableFv = .text:0x80083C74; // type:function size:0x34 scope:global align:4 +__dt__16J3DMaterialTableFv = .text:0x80083CA8; // type:function size:0x48 scope:global align:4 +__ct__14J3DMatColorAnmFv = .text:0x80083CF0; // type:function size:0x18 scope:weak align:4 +__ct__11J3DTexNoAnmFv = .text:0x80083D08; // type:function size:0x24 scope:weak align:4 +allocTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKeyPP12J3DTexMtxAnm = .text:0x80083D2C; // type:function size:0x1C4 scope:global align:4 +__ct__12J3DTexMtxAnmFv = .text:0x80083EF0; // type:function size:0x18 scope:weak align:4 +allocTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKeyPP14J3DTevColorAnmPP15J3DTevKColorAnm = .text:0x80083F08; // type:function size:0x32C scope:global align:4 +__ct__15J3DTevKColorAnmFv = .text:0x80084234; // type:function size:0x18 scope:weak align:4 +__ct__14J3DTevColorAnmFv = .text:0x8008424C; // type:function size:0x18 scope:weak align:4 +removeTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x80084264; // type:function size:0xAC scope:global align:4 +removeTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x80084310; // type:function size:0x11C scope:global align:4 +entryMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor = .text:0x8008442C; // type:function size:0xBC scope:global align:4 +entryTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey = .text:0x800844E8; // type:function size:0x380 scope:global align:4 +entryTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey = .text:0x80084868; // type:function size:0x198 scope:global align:4 +__ct__22J3DMaterialFactory_v21FRC20J3DMaterialBlock_v21 = .text:0x80084A00; // type:function size:0x1E0 scope:global align:4 +countUniqueMaterials__22J3DMaterialFactory_v21Fv = .text:0x80084BE0; // type:function size:0x4C scope:global align:4 +create__22J3DMaterialFactory_v21CFP11J3DMaterialiUl = .text:0x80084C2C; // type:function size:0x838 scope:global align:4 +newMatColor__22J3DMaterialFactory_v21CFii = .text:0x80085464; // type:function size:0x90 scope:global align:4 +newColorChanNum__22J3DMaterialFactory_v21CFi = .text:0x800854F4; // type:function size:0x38 scope:global align:4 +newColorChan__22J3DMaterialFactory_v21CFii = .text:0x8008552C; // type:function size:0x194 scope:global align:4 +newTexGenNum__22J3DMaterialFactory_v21CFi = .text:0x800856C0; // type:function size:0x38 scope:global align:4 +newTexCoord__22J3DMaterialFactory_v21CFii = .text:0x800856F8; // type:function size:0x84 scope:global align:4 +newTexMtx__22J3DMaterialFactory_v21CFii = .text:0x8008577C; // type:function size:0x158 scope:global align:4 +newCullMode__22J3DMaterialFactory_v21CFi = .text:0x800858D4; // type:function size:0x40 scope:global align:4 +newTexNo__22J3DMaterialFactory_v21CFii = .text:0x80085914; // type:function size:0x48 scope:global align:4 +newTevOrder__22J3DMaterialFactory_v21CFii = .text:0x8008595C; // type:function size:0x74 scope:global align:4 +newTevColor__22J3DMaterialFactory_v21CFii = .text:0x800859D0; // type:function size:0x98 scope:global align:4 +newTevKColor__22J3DMaterialFactory_v21CFii = .text:0x80085A68; // type:function size:0x90 scope:global align:4 +newTevStageNum__22J3DMaterialFactory_v21CFi = .text:0x80085AF8; // type:function size:0x38 scope:global align:4 +newTevStage__22J3DMaterialFactory_v21CFii = .text:0x80085B30; // type:function size:0x60 scope:global align:4 +newTevSwapModeTable__22J3DMaterialFactory_v21CFii = .text:0x80085B90; // type:function size:0x9C scope:global align:4 +newFog__22J3DMaterialFactory_v21CFi = .text:0x80085C2C; // type:function size:0x24C scope:global align:4 +newAlphaComp__22J3DMaterialFactory_v21CFi = .text:0x80085E78; // type:function size:0x80 scope:global align:4 +newBlend__22J3DMaterialFactory_v21CFi = .text:0x80085EF8; // type:function size:0x7C scope:global align:4 +newZMode__22J3DMaterialFactory_v21CFi = .text:0x80085F74; // type:function size:0x60 scope:global align:4 +newZCompLoc__22J3DMaterialFactory_v21CFi = .text:0x80085FD4; // type:function size:0x38 scope:global align:4 +newDither__22J3DMaterialFactory_v21CFi = .text:0x8008600C; // type:function size:0x38 scope:global align:4 +newNBTScale__22J3DMaterialFactory_v21CFi = .text:0x80086044; // type:function size:0xA8 scope:global align:4 +JSUConvertOffsetToPtr<23J3DMaterialInitData_v21>__FPCvPCv = .text:0x800860EC; // type:function size:0x18 scope:weak align:4 +resetMtxLoadCache__11J3DShapeMtxFv = .text:0x80086104; // type:function size:0x3C scope:global align:4 +loadMtxIndx_PNGP__11J3DShapeMtxCFiUs = .text:0x80086140; // type:function size:0x44 scope:global align:4 +loadMtxIndx_PCPU__11J3DShapeMtxCFiUs = .text:0x80086184; // type:function size:0x60 scope:global align:4 +loadMtxIndx_NCPU__11J3DShapeMtxCFiUs = .text:0x800861E4; // type:function size:0x4C scope:global align:4 +loadMtxIndx_PNCPU__11J3DShapeMtxCFiUs = .text:0x80086230; // type:function size:0x58 scope:global align:4 +loadExecute__17J3DDifferedTexMtxFPA4_Cf = .text:0x80086288; // type:function size:0x588 scope:global align:4 +loadMtxConcatView_PNGP__21J3DShapeMtxConcatViewCFiUs = .text:0x80086810; // type:function size:0xA8 scope:global align:4 +loadMtxConcatView_PCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x800868B8; // type:function size:0xB4 scope:global align:4 +loadMtxConcatView_NCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x8008696C; // type:function size:0xA8 scope:global align:4 +loadMtxConcatView_PNCPU__21J3DShapeMtxConcatViewCFiUs = .text:0x80086A14; // type:function size:0xB4 scope:global align:4 +loadMtxConcatView_PNGP_LOD__21J3DShapeMtxConcatViewCFiUs = .text:0x80086AC8; // type:function size:0xD4 scope:global align:4 +load__11J3DShapeMtxCFv = .text:0x80086B9C; // type:function size:0x5C scope:global align:4 +calcNBTScale__11J3DShapeMtxFRC3VecPA3_A3_fPA3_A3_f = .text:0x80086BF8; // type:function size:0x64 scope:global align:4 +load__21J3DShapeMtxConcatViewCFv = .text:0x80086C5C; // type:function size:0xD4 scope:global align:4 +loadNrmMtx__21J3DShapeMtxConcatViewCFiUsPA4_f = .text:0x80086D30; // type:function size:0x124 scope:global align:4 +load__16J3DShapeMtxMultiCFv = .text:0x80086E54; // type:function size:0xAC scope:global align:4 +calcNBTScale__16J3DShapeMtxMultiFRC3VecPA3_A3_fPA3_A3_f = .text:0x80086F00; // type:function size:0xB0 scope:global align:4 +load__26J3DShapeMtxMultiConcatViewCFv = .text:0x80086FB0; // type:function size:0x1EC scope:global align:4 +loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUsPA4_f = .text:0x8008719C; // type:function size:0x138 scope:global align:4 +load__27J3DShapeMtxBBoardConcatViewCFv = .text:0x800872D4; // type:function size:0x134 scope:global align:4 +load__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x80087408; // type:function size:0x13C scope:global align:4 +__dt__28J3DShapeMtxYBBoardConcatViewFv = .text:0x80087544; // type:function size:0x6C scope:weak align:4 +getType__28J3DShapeMtxYBBoardConcatViewCFv = .text:0x800875B0; // type:function size:0xC scope:weak align:4 +loadNrmMtx__21J3DShapeMtxConcatViewCFiUs = .text:0x800875BC; // type:function size:0x4 scope:weak align:4 +__dt__27J3DShapeMtxBBoardConcatViewFv = .text:0x800875C0; // type:function size:0x6C scope:weak align:4 +getType__27J3DShapeMtxBBoardConcatViewCFv = .text:0x8008762C; // type:function size:0xC scope:weak align:4 +__dt__26J3DShapeMtxMultiConcatViewFv = .text:0x80087638; // type:function size:0x6C scope:weak align:4 +getType__26J3DShapeMtxMultiConcatViewCFv = .text:0x800876A4; // type:function size:0xC scope:weak align:4 +getUseMtxNum__26J3DShapeMtxMultiConcatViewCFv = .text:0x800876B0; // type:function size:0x8 scope:weak align:4 +getUseMtxIndex__26J3DShapeMtxMultiConcatViewCFUs = .text:0x800876B8; // type:function size:0x10 scope:weak align:4 +loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUs = .text:0x800876C8; // type:function size:0x4 scope:weak align:4 +__dt__16J3DShapeMtxMultiFv = .text:0x800876CC; // type:function size:0x5C scope:weak align:4 +getType__16J3DShapeMtxMultiCFv = .text:0x80087728; // type:function size:0xC scope:weak align:4 +getUseMtxNum__16J3DShapeMtxMultiCFv = .text:0x80087734; // type:function size:0x8 scope:weak align:4 +getUseMtxIndex__16J3DShapeMtxMultiCFUs = .text:0x8008773C; // type:function size:0x10 scope:weak align:4 +getType__21J3DShapeMtxConcatViewCFv = .text:0x8008774C; // type:function size:0xC scope:weak align:4 +__sinit_J3DShapeMtx_cpp = .text:0x80087758; // type:function size:0x1A8 scope:local align:4 +countMaterialNum__14J3DModelLoaderFPCv = .text:0x80087900; // type:function size:0x40 scope:global align:4 +calcLoadSize__14J3DModelLoaderFPCvUl = .text:0x80087940; // type:function size:0x1B0 scope:global align:4 +calcLoadMaterialTableSize__14J3DModelLoaderFPCv = .text:0x80087AF0; // type:function size:0xCC scope:global align:4 +calcLoadBinaryDisplayListSize__14J3DModelLoaderFPCvUl = .text:0x80087BBC; // type:function size:0x210 scope:global align:4 +calcSizeInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl = .text:0x80087DCC; // type:function size:0x90 scope:global align:4 +calcSizeJoint__14J3DModelLoaderFPC13J3DJointBlock = .text:0x80087E5C; // type:function size:0x2C scope:global align:4 +calcSizeEnvelope__14J3DModelLoaderFPC16J3DEnvelopeBlock = .text:0x80087E88; // type:function size:0x10 scope:global align:4 +calcSizeDraw__14J3DModelLoaderFPC12J3DDrawBlock = .text:0x80087E98; // type:function size:0x14 scope:global align:4 +calcSizeMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x80087EAC; // type:function size:0xE4 scope:global align:4 +calcSizeShape__14J3DModelLoaderFPC13J3DShapeBlockUl = .text:0x80087F90; // type:function size:0xB4 scope:global align:4 +calcSizeTexture__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x80088044; // type:function size:0x1C scope:global align:4 +calcSizeMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl = .text:0x80088060; // type:function size:0xA0 scope:global align:4 +calcSizeTextureTable__14J3DModelLoaderFPC15J3DTextureBlock = .text:0x80088100; // type:function size:0x1C scope:global align:4 +calcSizePatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl = .text:0x8008811C; // type:function size:0xA0 scope:global align:4 +calcSizeMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl = .text:0x800881BC; // type:function size:0xD0 scope:global align:4 +__ct__12J3DJointTreeFv = .text:0x8008828C; // type:function size:0x84 scope:global align:4 +makeHierarchy__12J3DJointTreeFP8J3DJointPPC17J3DModelHierarchyP16J3DMaterialTableP13J3DShapeTable = .text:0x80088310; // type:function size:0x15C scope:global align:4 +findImportantMtxIndex__12J3DJointTreeFv = .text:0x8008846C; // type:function size:0x174 scope:global align:4 +calc__12J3DJointTreeFP12J3DMtxBufferRC3VecRA3_A4_Cf = .text:0x800885E0; // type:function size:0x70 scope:global align:4 +setMtxBuffer__10J3DMtxCalcFP12J3DMtxBuffer = .text:0x80088650; // type:function size:0x8 scope:weak align:4 +deform__13J3DSkinDeformFP8J3DModel = .text:0x80088658; // type:function size:0x88 scope:global align:4 +calc__15J3DVtxColorCalcFP8J3DModel = .text:0x800886E0; // type:function size:0x30 scope:global align:4 +calc__15J3DVtxColorCalcFP15J3DVertexBuffer = .text:0x80088710; // type:function size:0xF4 scope:global align:4 +__dt__15J3DVtxColorCalcFv = .text:0x80088804; // type:function size:0x48 scope:weak align:4 +__ct__12J3DShapeDrawFPCUcUl = .text:0x8008884C; // type:function size:0x18 scope:global align:4 +draw__12J3DShapeDrawCFv = .text:0x80088864; // type:function size:0x2C scope:global align:4 +__dt__12J3DShapeDrawFv = .text:0x80088890; // type:function size:0x48 scope:weak align:4 +initialize__12J3DMtxBufferFv = .text:0x800888D8; // type:function size:0x40 scope:global align:4 +create__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80088918; // type:function size:0x11C scope:global align:4 +createAnmMtx__12J3DMtxBufferFP12J3DModelData = .text:0x80088A34; // type:function size:0x5C scope:global align:4 +createWeightEnvelopeMtx__12J3DMtxBufferFP12J3DModelData = .text:0x80088A90; // type:function size:0x5C scope:global align:4 +setNoUseDrawMtx__12J3DMtxBufferFv = .text:0x80088AEC; // type:function size:0x2C scope:global align:4 +createDoubleDrawMtx__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80088B18; // type:function size:0xE0 scope:global align:4 +createBumpMtxArray__12J3DMtxBufferFP12J3DModelDataUl = .text:0x80088BF8; // type:function size:0x214 scope:global align:4 +calcWeightEnvelopeMtx__12J3DMtxBufferFv = .text:0x80088E0C; // type:function size:0x220 scope:global align:4 +calcDrawMtx__12J3DMtxBufferFUlRC3VecRA3_A4_Cf = .text:0x8008902C; // type:function size:0x304 scope:global align:4 +calcNrmMtx__12J3DMtxBufferFv = .text:0x80089330; // type:function size:0x1BC scope:global align:4 +calcBBoardMtx__12J3DMtxBufferFv = .text:0x800894EC; // type:function size:0x178 scope:global align:4 +initShapeNodes__13J3DShapeTableFP14J3DDrawMtxDataP13J3DVertexData = .text:0x80089664; // type:function size:0x64 scope:global align:4 +sortVcdVatCmd__13J3DShapeTableFv = .text:0x800896C8; // type:function size:0x94 scope:global align:4 +init__9JFWSystemFv = .text:0x8008975C; // type:function size:0x350 scope:global align:4 +__dt__10JFWDisplayFv = .text:0x80089AAC; // type:function size:0x7C scope:global align:4 +createManager__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x80089B28; // type:function size:0x11C scope:global align:4 +destroyManager__10JFWDisplayFv = .text:0x80089C44; // type:function size:0x44 scope:global align:4 +beginRender__10JFWDisplayFv = .text:0x80089C88; // type:function size:0x478 scope:global align:4 +endRender__10JFWDisplayFv = .text:0x8008A100; // type:function size:0x340 scope:global align:4 +endFrame__10JFWDisplayFv = .text:0x8008A440; // type:function size:0x198 scope:global align:4 +waitBlanking__10JFWDisplayFi = .text:0x8008A5D8; // type:function size:0x50 scope:global align:4 +waitForTick__FUlUs = .text:0x8008A628; // type:function size:0x120 scope:local align:4 +JFWThreadAlarmHandler__FP7OSAlarmP9OSContext = .text:0x8008A748; // type:function size:0x40 scope:local align:4 +threadSleep__10JFWDisplayFx = .text:0x8008A788; // type:function size:0xBC scope:global align:4 +clearEfb_init__10JFWDisplayFv = .text:0x8008A844; // type:function size:0x74 scope:global align:4 +clearEfb__10JFWDisplayF8_GXColor = .text:0x8008A8B8; // type:function size:0x44 scope:global align:4 +clearEfb__10JFWDisplayFiiii8_GXColor = .text:0x8008A8FC; // type:function size:0x370 scope:global align:4 +calcCombinationRatio__10JFWDisplayFv = .text:0x8008AC6C; // type:function size:0x8C scope:global align:4 +JFWDrawDoneAlarm__Fv = .text:0x8008ACF8; // type:function size:0xF0 scope:local align:4 +JFWGXAbortAlarmHandler__FP7OSAlarmP9OSContext = .text:0x8008ADE8; // type:function size:0x40 scope:local align:4 +diagnoseGpHang__Fv = .text:0x8008AE28; // type:function size:0x1BC scope:local align:4 +setForOSResetSystem__10JFWDisplayFv = .text:0x8008AFE4; // type:function size:0x94 scope:global align:4 +__sinit_JFWDisplay_cpp = .text:0x8008B078; // type:function size:0x48 scope:local align:4 +__dt__18JSUList<8JFWAlarm>Fv = .text:0x8008B0C0; // type:function size:0x54 scope:weak align:4 +JPASetPointSize__FP18JPAEmitterWorkData = .text:0x8008B114; // type:function size:0x3C scope:global align:4 +JPASetLineWidth__FP18JPAEmitterWorkData = .text:0x8008B150; // type:function size:0x3C scope:global align:4 +JPASetPointSize__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B18C; // type:function size:0x44 scope:global align:4 +JPASetLineWidth__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B1D0; // type:function size:0x44 scope:global align:4 +JPARegistPrm__FP18JPAEmitterWorkData = .text:0x8008B214; // type:function size:0x9C scope:global align:4 +JPARegistEnv__FP18JPAEmitterWorkData = .text:0x8008B2B0; // type:function size:0x84 scope:global align:4 +JPARegistPrmEnv__FP18JPAEmitterWorkData = .text:0x8008B334; // type:function size:0x118 scope:global align:4 +JPARegistAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B44C; // type:function size:0xB0 scope:global align:4 +JPARegistPrmAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B4FC; // type:function size:0xB0 scope:global align:4 +JPARegistPrmAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B5AC; // type:function size:0x134 scope:global align:4 +JPARegistAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B6E0; // type:function size:0x124 scope:global align:4 +JPARegistEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B804; // type:function size:0x84 scope:global align:4 +JPACalcClrIdxNormal__FP18JPAEmitterWorkData = .text:0x8008B888; // type:function size:0x2C scope:global align:4 +JPACalcClrIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B8B4; // type:function size:0x28 scope:global align:4 +JPACalcClrIdxRepeat__FP18JPAEmitterWorkData = .text:0x8008B8DC; // type:function size:0x30 scope:global align:4 +JPACalcClrIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B90C; // type:function size:0x3C scope:global align:4 +JPACalcClrIdxReverse__FP18JPAEmitterWorkData = .text:0x8008B948; // type:function size:0x40 scope:global align:4 +JPACalcClrIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B988; // type:function size:0x4C scope:global align:4 +JPACalcClrIdxMerge__FP18JPAEmitterWorkData = .text:0x8008B9D4; // type:function size:0xC scope:global align:4 +JPACalcClrIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008B9E0; // type:function size:0x70 scope:global align:4 +JPACalcClrIdxRandom__FP18JPAEmitterWorkData = .text:0x8008BA50; // type:function size:0xC scope:global align:4 +JPACalcClrIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BA5C; // type:function size:0x34 scope:global align:4 +JPACalcPrm__FP18JPAEmitterWorkData = .text:0x8008BA90; // type:function size:0x40 scope:global align:4 +JPACalcPrm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BAD0; // type:function size:0x3C scope:global align:4 +JPACalcEnv__FP18JPAEmitterWorkData = .text:0x8008BB0C; // type:function size:0x40 scope:global align:4 +JPACalcEnv__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BB4C; // type:function size:0x3C scope:global align:4 +JPACalcColorCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BB88; // type:function size:0x48 scope:global align:4 +JPAGenTexCrdMtxIdt__FP18JPAEmitterWorkData = .text:0x8008BBD0; // type:function size:0x38 scope:global align:4 +JPAGenTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8008BC08; // type:function size:0x38 scope:global align:4 +JPAGenTexCrdMtxPrj__FP18JPAEmitterWorkData = .text:0x8008BC40; // type:function size:0x38 scope:global align:4 +JPAGenCalcTexCrdMtxAnm__FP18JPAEmitterWorkData = .text:0x8008BC78; // type:function size:0x198 scope:global align:4 +JPALoadCalcTexCrdMtxAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008BE10; // type:function size:0x170 scope:global align:4 +JPALoadTex__FP18JPAEmitterWorkData = .text:0x8008BF80; // type:function size:0x54 scope:global align:4 +JPALoadTexAnm__FP18JPAEmitterWorkData = .text:0x8008BFD4; // type:function size:0x50 scope:global align:4 +JPALoadTexAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C024; // type:function size:0x4C scope:global align:4 +JPACalcTexIdxNormal__FP18JPAEmitterWorkData = .text:0x8008C070; // type:function size:0x3C scope:global align:4 +JPACalcTexIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C0AC; // type:function size:0x38 scope:global align:4 +JPACalcTexIdxRepeat__FP18JPAEmitterWorkData = .text:0x8008C0E4; // type:function size:0x38 scope:global align:4 +JPACalcTexIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C11C; // type:function size:0x44 scope:global align:4 +JPACalcTexIdxReverse__FP18JPAEmitterWorkData = .text:0x8008C160; // type:function size:0x50 scope:global align:4 +JPACalcTexIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C1B0; // type:function size:0x5C scope:global align:4 +JPACalcTexIdxMerge__FP18JPAEmitterWorkData = .text:0x8008C20C; // type:function size:0x1C scope:global align:4 +JPACalcTexIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C228; // type:function size:0x78 scope:global align:4 +JPACalcTexIdxRandom__FP18JPAEmitterWorkData = .text:0x8008C2A0; // type:function size:0x1C scope:global align:4 +JPACalcTexIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C2BC; // type:function size:0x3C scope:global align:4 +JPALoadPosMtxCam__FP18JPAEmitterWorkData = .text:0x8008C2F8; // type:function size:0x28 scope:global align:4 +noLoadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8008C320; // type:function size:0x4 scope:local align:4 +loadPrj__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8008C324; // type:function size:0x38 scope:local align:4 +loadPrjAnm__FPC18JPAEmitterWorkDataPA4_Cf = .text:0x8008C35C; // type:function size:0x1AC scope:local align:4 +JPADrawBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C508; // type:function size:0xE8 scope:global align:4 +JPADrawRotBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C5F0; // type:function size:0x118 scope:global align:4 +JPADrawYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C708; // type:function size:0xFC scope:global align:4 +JPADrawRotYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008C804; // type:function size:0x130 scope:global align:4 +dirTypeVel__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C934; // type:function size:0x1C scope:local align:4 +dirTypePos__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C950; // type:function size:0x1C scope:local align:4 +dirTypePosInv__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C96C; // type:function size:0x40 scope:local align:4 +dirTypeEmtrDir__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C9AC; // type:function size:0x1C scope:local align:4 +dirTypePrevPtcl__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3 = .text:0x8008C9C8; // type:function size:0xC0 scope:local align:4 +rotTypeY__FffRA3_A4_f = .text:0x8008CA88; // type:function size:0x40 scope:local align:4 +rotTypeX__FffRA3_A4_f = .text:0x8008CAC8; // type:function size:0x40 scope:local align:4 +rotTypeZ__FffRA3_A4_f = .text:0x8008CB08; // type:function size:0x40 scope:local align:4 +rotTypeXYZ__FffRA3_A4_f = .text:0x8008CB48; // type:function size:0x5C scope:local align:4 +basePlaneTypeXY__FPA4_fff = .text:0x8008CBA4; // type:function size:0x4C scope:local align:4 +basePlaneTypeXZ__FPA4_fff = .text:0x8008CBF0; // type:function size:0x4C scope:local align:4 +basePlaneTypeX__FPA4_fff = .text:0x8008CC3C; // type:function size:0x70 scope:local align:4 +JPADrawDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008CCAC; // type:function size:0x350 scope:global align:4 +JPADrawRotDirection__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008CFFC; // type:function size:0x3FC scope:global align:4 +JPADrawDBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D3F8; // type:function size:0x208 scope:global align:4 +JPADrawRotation__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D600; // type:function size:0x150 scope:global align:4 +JPADrawPoint__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D750; // type:function size:0x9C scope:global align:4 +JPADrawLine__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008D7EC; // type:function size:0x1B8 scope:global align:4 +getNext__FP26JPANode<15JPABaseParticle> = .text:0x8008D9A4; // type:function size:0x8 scope:local align:4 +getPrev__FP26JPANode<15JPABaseParticle> = .text:0x8008D9AC; // type:function size:0x8 scope:local align:4 +JPADrawStripe__FP18JPAEmitterWorkData = .text:0x8008D9B4; // type:function size:0x588 scope:global align:4 +JPADrawStripeX__FP18JPAEmitterWorkData = .text:0x8008DF3C; // type:function size:0x9AC scope:global align:4 +JPADrawEmitterCallBackB__FP18JPAEmitterWorkData = .text:0x8008E8E8; // type:function size:0x3C scope:global align:4 +JPADrawParticleCallBack__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008E924; // type:function size:0x44 scope:global align:4 +draw__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x8008E968; // type:function size:0x4 scope:weak align:4 +makeColorTable__FPP8_GXColorPC16JPAClrAnmKeyDataUcsP7JKRHeap = .text:0x8008E96C; // type:function size:0x284 scope:local align:4 +__ct__12JPABaseShapeFPCUcP7JKRHeap = .text:0x8008EBF0; // type:function size:0x114 scope:global align:4 +setGX__12JPABaseShapeCFP18JPAEmitterWorkData = .text:0x8008ED04; // type:function size:0x140 scope:global align:4 +JPARegistChildPrmEnv__FP18JPAEmitterWorkData = .text:0x8008EE44; // type:function size:0x128 scope:global align:4 +JPACalcChildAlphaOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008EF6C; // type:function size:0x2C scope:global align:4 +JPACalcChildScaleOut__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8008EF98; // type:function size:0x30 scope:global align:4 +__ct__13JPAChildShapeFPCUc = .text:0x8008EFC8; // type:function size:0x8 scope:global align:4 +JPAVolumePoint__FP18JPAEmitterWorkData = .text:0x8008EFD0; // type:function size:0xDC scope:local align:4 +JPAVolumeLine__FP18JPAEmitterWorkData = .text:0x8008F0AC; // type:function size:0x11C scope:local align:4 +JPAVolumeCircle__FP18JPAEmitterWorkData = .text:0x8008F1C8; // type:function size:0x1B4 scope:local align:4 +JPAVolumeCube__FP18JPAEmitterWorkData = .text:0x8008F37C; // type:function size:0x118 scope:local align:4 +JPAVolumeSphere__FP18JPAEmitterWorkData = .text:0x8008F494; // type:function size:0x28C scope:local align:4 +JPAVolumeCylinder__FP18JPAEmitterWorkData = .text:0x8008F720; // type:function size:0x184 scope:local align:4 +JPAVolumeTorus__FP18JPAEmitterWorkData = .text:0x8008F8A4; // type:function size:0x128 scope:local align:4 +__ct__16JPADynamicsBlockFPCUc = .text:0x8008F9CC; // type:function size:0x34 scope:global align:4 +init__16JPADynamicsBlockFv = .text:0x8008FA00; // type:function size:0x9C scope:global align:4 +create__16JPADynamicsBlockFP18JPAEmitterWorkData = .text:0x8008FA9C; // type:function size:0x200 scope:global align:4 +__dt__18JPAEmitterCallBackFv = .text:0x8008FC9C; // type:function size:0x48 scope:global align:4 +init__14JPABaseEmitterFP17JPAEmitterManagerP11JPAResource = .text:0x8008FCE4; // type:function size:0x35C scope:global align:4 +createParticle__14JPABaseEmitterFv = .text:0x80090040; // type:function size:0x11C scope:global align:4 +createChild__14JPABaseEmitterFP15JPABaseParticle = .text:0x8009015C; // type:function size:0xFC scope:global align:4 +deleteAllParticle__14JPABaseEmitterFv = .text:0x80090258; // type:function size:0x174 scope:global align:4 +processTillStartFrame__14JPABaseEmitterFv = .text:0x800903CC; // type:function size:0x40 scope:global align:4 +processTermination__14JPABaseEmitterFv = .text:0x8009040C; // type:function size:0x9C scope:global align:4 +calcEmitterGlobalPosition__14JPABaseEmitterCFPQ29JGeometry8TVec3 = .text:0x800904A8; // type:function size:0x80 scope:global align:4 +getCurrentCreateNumber__14JPABaseEmitterCFv = .text:0x80090528; // type:function size:0x10 scope:global align:4 +__ct__17JPAEmitterManagerFUlUlP7JKRHeapUcUc = .text:0x80090538; // type:function size:0x1FC scope:global align:4 +__ct__25JSUList<14JPABaseEmitter>Fv = .text:0x80090734; // type:function size:0x30 scope:weak align:4 +__dt__26JPANode<15JPABaseParticle>Fv = .text:0x80090764; // type:function size:0x3C scope:weak align:4 +__ct__26JPANode<15JPABaseParticle>Fv = .text:0x800907A0; // type:function size:0x10 scope:weak align:4 +__dt__14JPABaseEmitterFv = .text:0x800907B0; // type:function size:0x60 scope:weak align:4 +__ct__14JPABaseEmitterFv = .text:0x80090810; // type:function size:0x58 scope:weak align:4 +__dt__25JSUList<14JPABaseEmitter>Fv = .text:0x80090868; // type:function size:0x54 scope:weak align:4 +createSimpleEmitterID__17JPAEmitterManagerFRCQ29JGeometry8TVec3UsUcUcP18JPAEmitterCallBackP19JPAParticleCallBack = .text:0x800908BC; // type:function size:0xDC scope:global align:4 +calc__17JPAEmitterManagerFv = .text:0x80090998; // type:function size:0xB0 scope:global align:4 +draw__17JPAEmitterManagerFPC11JPADrawInfoUc = .text:0x80090A48; // type:function size:0x200 scope:global align:4 +forceDeleteAllEmitter__17JPAEmitterManagerFv = .text:0x80090C48; // type:function size:0x58 scope:global align:4 +forceDeleteGroupEmitter__17JPAEmitterManagerFUc = .text:0x80090CA0; // type:function size:0x60 scope:global align:4 +forceDeleteEmitter__17JPAEmitterManagerFP14JPABaseEmitter = .text:0x80090D00; // type:function size:0x6C scope:global align:4 +entryResourceManager__17JPAEmitterManagerFP18JPAResourceManagerUc = .text:0x80090D6C; // type:function size:0x10 scope:global align:4 +clearResourceManager__17JPAEmitterManagerFUc = .text:0x80090D7C; // type:function size:0xC8 scope:global align:4 +calcYBBCam__17JPAEmitterManagerFv = .text:0x80090E44; // type:function size:0xE8 scope:global align:4 +JPALoadExTex__FP18JPAEmitterWorkData = .text:0x80090F2C; // type:function size:0xFC scope:global align:4 +__ct__13JPAExTexShapeFPCUc = .text:0x80091028; // type:function size:0x8 scope:global align:4 +JPACalcScaleX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091030; // type:function size:0x70 scope:global align:4 +JPACalcScaleY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x800910A0; // type:function size:0x70 scope:global align:4 +JPACalcScaleCopy__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091110; // type:function size:0xC scope:global align:4 +JPACalcScaleAnmNormal__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8009111C; // type:function size:0xC scope:global align:4 +JPACalcScaleAnmRepeatX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091128; // type:function size:0x64 scope:global align:4 +JPACalcScaleAnmRepeatY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8009118C; // type:function size:0x64 scope:global align:4 +JPACalcScaleAnmReverseX__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x800911F0; // type:function size:0x8C scope:global align:4 +JPACalcScaleAnmReverseY__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x8009127C; // type:function size:0x8C scope:global align:4 +JPACalcAlphaAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091308; // type:function size:0x80 scope:global align:4 +JPACalcAlphaFlickAnm__FP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80091388; // type:function size:0xE4 scope:global align:4 +__ct__13JPAExtraShapeFPCUc = .text:0x8009146C; // type:function size:0x34 scope:global align:4 +init__13JPAExtraShapeFv = .text:0x800914A0; // type:function size:0x100 scope:global align:4 +prepare__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x800915A0; // type:function size:0xA8 scope:global align:4 +calc__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091648; // type:function size:0x1BC scope:global align:4 +prepare__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80091804; // type:function size:0x150 scope:global align:4 +calc__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091954; // type:function size:0x25C scope:global align:4 +prepare__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80091BB0; // type:function size:0x60 scope:global align:4 +calc__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091C10; // type:function size:0x288 scope:global align:4 +prepare__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80091E98; // type:function size:0x84 scope:global align:4 +calc__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80091F1C; // type:function size:0x32C scope:global align:4 +prepare__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80092248; // type:function size:0xF4 scope:global align:4 +calc__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x8009233C; // type:function size:0x2F0 scope:global align:4 +prepare__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x8009262C; // type:function size:0x28C scope:global align:4 +calc__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x800928B8; // type:function size:0x39C scope:global align:4 +calc__14JPAFieldRandomFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80092C54; // type:function size:0x2B0 scope:global align:4 +calc__12JPAFieldDragFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x80092F04; // type:function size:0xD8 scope:global align:4 +prepare__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80092FDC; // type:function size:0x130 scope:global align:4 +calc__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle = .text:0x8009310C; // type:function size:0x288 scope:global align:4 +__ct__13JPAFieldBlockFPCUcP7JKRHeap = .text:0x80093394; // type:function size:0x38 scope:global align:4 +init__13JPAFieldBlockFP7JKRHeap = .text:0x800933CC; // type:function size:0x2EC scope:global align:4 +__dt__12JPAFieldBaseFv = .text:0x800936B8; // type:function size:0x48 scope:weak align:4 +prepare__12JPAFieldBaseFP18JPAEmitterWorkDataP13JPAFieldBlock = .text:0x80093700; // type:function size:0x4 scope:weak align:4 +__dt__12JPAFieldSpinFv = .text:0x80093704; // type:function size:0x5C scope:weak align:4 +__dt__12JPAFieldDragFv = .text:0x80093760; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldRandomFv = .text:0x800937BC; // type:function size:0x5C scope:weak align:4 +__dt__18JPAFieldConvectionFv = .text:0x80093818; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldVortexFv = .text:0x80093874; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldNewtonFv = .text:0x800938D0; // type:function size:0x5C scope:weak align:4 +__dt__14JPAFieldMagnetFv = .text:0x8009392C; // type:function size:0x5C scope:weak align:4 +__dt__11JPAFieldAirFv = .text:0x80093988; // type:function size:0x5C scope:weak align:4 +__dt__15JPAFieldGravityFv = .text:0x800939E4; // type:function size:0x5C scope:weak align:4 +__ct__11JPAKeyBlockFPCUc = .text:0x80093A40; // type:function size:0x10 scope:global align:4 +calc__11JPAKeyBlockFf = .text:0x80093A50; // type:function size:0x94 scope:global align:4 +JPAGetDirMtx__FRCQ29JGeometry8TVec3PA4_f = .text:0x80093AE4; // type:function size:0x100 scope:global align:4 +JPAGetYZRotateMtx__FssPA4_f = .text:0x80093BE4; // type:function size:0x74 scope:global align:4 +JPAGetXYZRotateMtx__FsssPA4_f = .text:0x80093C58; // type:function size:0x9C scope:global align:4 +JPASetRMtxfromMtx__FPA4_CfPA4_f = .text:0x80093CF4; // type:function size:0x28 scope:global align:4 +JPASetRMtxTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3 = .text:0x80093D1C; // type:function size:0x28 scope:global align:4 +JPASetRMtxSTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3PQ29JGeometry8TVec3 = .text:0x80093D44; // type:function size:0x21C scope:global align:4 +JPACalcKeyAnmValue__FfUsPCf = .text:0x80093F60; // type:function size:0xC8 scope:global align:4 +__dt__19JPAParticleCallBackFv = .text:0x80094028; // type:function size:0x48 scope:global align:4 +init_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80094070; // type:function size:0x8C4 scope:global align:4 +init_c__15JPABaseParticleFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80094934; // type:function size:0x6A8 scope:global align:4 +calc_p__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80094FDC; // type:function size:0x2A8 scope:global align:4 +execute__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle = .text:0x80095284; // type:function size:0x4 scope:weak align:4 +calc_c__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80095288; // type:function size:0x278 scope:global align:4 +canCreateChild__15JPABaseParticleFP18JPAEmitterWorkData = .text:0x80095500; // type:function size:0x80 scope:global align:4 +getCalcCurrentPositionX__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x80095580; // type:function size:0x24 scope:global align:4 +getCalcCurrentPositionY__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x800955A4; // type:function size:0x24 scope:global align:4 +getCalcCurrentPositionZ__15JPABaseParticleCFPC14JPABaseEmitter = .text:0x800955C8; // type:function size:0x24 scope:global align:4 +__ct__11JPAResourceFv = .text:0x800955EC; // type:function size:0x70 scope:global align:4 +init__11JPAResourceFP7JKRHeap = .text:0x8009565C; // type:function size:0x1540 scope:global align:4 +calc__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x80096B9C; // type:function size:0x55C scope:global align:4 +draw__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter = .text:0x800970F8; // type:function size:0xF0 scope:global align:4 +drawP__11JPAResourceFP18JPAEmitterWorkData = .text:0x800971E8; // type:function size:0x334 scope:global align:4 +drawC__11JPAResourceFP18JPAEmitterWorkData = .text:0x8009751C; // type:function size:0x2F0 scope:global align:4 +setPTev__11JPAResourceFv = .text:0x8009780C; // type:function size:0x278 scope:global align:4 +setCTev__11JPAResourceFP18JPAEmitterWorkData = .text:0x80097A84; // type:function size:0x164 scope:global align:4 +calc_p__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80097BE8; // type:function size:0x74 scope:global align:4 +calc_c__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80097C5C; // type:function size:0x74 scope:global align:4 +calcField__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle = .text:0x80097CD0; // type:function size:0x74 scope:global align:4 +calcKey__11JPAResourceFP18JPAEmitterWorkData = .text:0x80097D44; // type:function size:0x138 scope:global align:4 +calcWorkData_c__11JPAResourceFP18JPAEmitterWorkData = .text:0x80097E7C; // type:function size:0x1DC scope:global align:4 +calcWorkData_d__11JPAResourceFP18JPAEmitterWorkData = .text:0x80098058; // type:function size:0x80 scope:global align:4 +__ct__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x800980D8; // type:function size:0x40 scope:global align:4 +load_jpc__17JPAResourceLoaderFPCUcP18JPAResourceManager = .text:0x80098118; // type:function size:0x3B8 scope:global align:4 +__ct__18JPAResourceManagerFPCvP7JKRHeap = .text:0x800984D0; // type:function size:0x58 scope:global align:4 +getResource__18JPAResourceManagerCFUs = .text:0x80098528; // type:function size:0x40 scope:global align:4 +swapTexture__18JPAResourceManagerFPC7ResTIMGPCc = .text:0x80098568; // type:function size:0x9C scope:global align:4 +registRes__18JPAResourceManagerFP11JPAResource = .text:0x80098604; // type:function size:0x20 scope:global align:4 +registTex__18JPAResourceManagerFP10JPATexture = .text:0x80098624; // type:function size:0x20 scope:global align:4 +getResUserWork__18JPAResourceManagerCFUs = .text:0x80098644; // type:function size:0x5C scope:global align:4 +__ct__10JPATextureFPCUc = .text:0x800986A0; // type:function size:0x68 scope:global align:4 +__dt__10JPATextureFv = .text:0x80098708; // type:function size:0x64 scope:weak align:4 +__dt__Q26JStage7TSystemFv = .text:0x8009876C; // type:function size:0x60 scope:global align:4 +JSGFGetType__Q26JStage7TSystemCFv = .text:0x800987CC; // type:function size:0x8 scope:global align:4 +JSGFindObject__Q26JStage7TSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x800987D4; // type:function size:0x8 scope:global align:4 +JSGCreateObject__Q26JStage7TSystemFPCcQ26JStage8TEObjectUl = .text:0x800987DC; // type:function size:0x8 scope:global align:4 +JSGDestroyObject__Q26JStage7TSystemFPQ26JStage7TObject = .text:0x800987E4; // type:function size:0x4 scope:global align:4 +JSGGetSystemData__Q26JStage7TSystemFUl = .text:0x800987E8; // type:function size:0x8 scope:global align:4 +JSGSetSystemData__Q26JStage7TSystemFUlUl = .text:0x800987F0; // type:function size:0x4 scope:global align:4 +__dt__Q26JStage7TCameraFv = .text:0x800987F4; // type:function size:0x60 scope:global align:4 +JSGFGetType__Q26JStage7TCameraCFv = .text:0x80098854; // type:function size:0x8 scope:global align:4 +JSGGetProjectionType__Q26JStage7TCameraCFv = .text:0x8009885C; // type:function size:0x8 scope:global align:4 +JSGSetProjectionType__Q26JStage7TCameraFQ26JStage18TECameraProjection = .text:0x80098864; // type:function size:0x4 scope:global align:4 +JSGGetProjectionNear__Q26JStage7TCameraCFv = .text:0x80098868; // type:function size:0x8 scope:global align:4 +JSGSetProjectionNear__Q26JStage7TCameraFf = .text:0x80098870; // type:function size:0x4 scope:global align:4 +JSGGetProjectionFar__Q26JStage7TCameraCFv = .text:0x80098874; // type:function size:0xC scope:global align:4 +JSGSetProjectionFar__Q26JStage7TCameraFf = .text:0x80098880; // type:function size:0x4 scope:global align:4 +JSGGetProjectionFovy__Q26JStage7TCameraCFv = .text:0x80098884; // type:function size:0x8 scope:global align:4 +JSGSetProjectionFovy__Q26JStage7TCameraFf = .text:0x8009888C; // type:function size:0x4 scope:global align:4 +JSGGetProjectionAspect__Q26JStage7TCameraCFv = .text:0x80098890; // type:function size:0x8 scope:global align:4 +JSGSetProjectionAspect__Q26JStage7TCameraFf = .text:0x80098898; // type:function size:0x4 scope:global align:4 +JSGGetProjectionField__Q26JStage7TCameraCFPf = .text:0x8009889C; // type:function size:0x4 scope:global align:4 +JSGSetProjectionField__Q26JStage7TCameraFPCf = .text:0x800988A0; // type:function size:0x4 scope:global align:4 +JSGGetViewType__Q26JStage7TCameraCFv = .text:0x800988A4; // type:function size:0x8 scope:global align:4 +JSGSetViewType__Q26JStage7TCameraFQ26JStage12TECameraView = .text:0x800988AC; // type:function size:0x4 scope:global align:4 +JSGGetViewPosition__Q26JStage7TCameraCFP3Vec = .text:0x800988B0; // type:function size:0x4 scope:global align:4 +JSGSetViewPosition__Q26JStage7TCameraFRC3Vec = .text:0x800988B4; // type:function size:0x4 scope:global align:4 +JSGGetViewUpVector__Q26JStage7TCameraCFP3Vec = .text:0x800988B8; // type:function size:0x4 scope:global align:4 +JSGSetViewUpVector__Q26JStage7TCameraFRC3Vec = .text:0x800988BC; // type:function size:0x4 scope:global align:4 +JSGGetViewTargetPosition__Q26JStage7TCameraCFP3Vec = .text:0x800988C0; // type:function size:0x4 scope:global align:4 +JSGSetViewTargetPosition__Q26JStage7TCameraFRC3Vec = .text:0x800988C4; // type:function size:0x4 scope:global align:4 +JSGGetViewRoll__Q26JStage7TCameraCFv = .text:0x800988C8; // type:function size:0x8 scope:global align:4 +JSGSetViewRoll__Q26JStage7TCameraFf = .text:0x800988D0; // type:function size:0x4 scope:global align:4 +__dt__Q26JStage7TObjectFv = .text:0x800988D4; // type:function size:0x48 scope:global align:4 +JSGGetName__Q26JStage7TObjectCFv = .text:0x8009891C; // type:function size:0x8 scope:global align:4 +JSGUpdate__Q26JStage7TObjectFv = .text:0x80098924; // type:function size:0x4 scope:global align:4 +JSGGetFlag__Q26JStage7TObjectCFv = .text:0x80098928; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q26JStage7TObjectFUl = .text:0x80098930; // type:function size:0x4 scope:global align:4 +JSGGetData__Q26JStage7TObjectCFUlPvUl = .text:0x80098934; // type:function size:0x8 scope:global align:4 +JSGSetData__Q26JStage7TObjectFUlPCvUl = .text:0x8009893C; // type:function size:0x4 scope:global align:4 +JSGGetParent__Q26JStage7TObjectCFPPQ26JStage7TObjectPUl = .text:0x80098940; // type:function size:0x4 scope:global align:4 +JSGSetParent__Q26JStage7TObjectFPQ26JStage7TObjectUl = .text:0x80098944; // type:function size:0x4 scope:global align:4 +JSGSetRelation__Q26JStage7TObjectFbPQ26JStage7TObjectUl = .text:0x80098948; // type:function size:0x4 scope:global align:4 +JSGFindNodeID__Q26JStage7TObjectCFPCc = .text:0x8009894C; // type:function size:0x8 scope:global align:4 +JSGGetNodeTransformation__Q26JStage7TObjectCFUlPA4_f = .text:0x80098954; // type:function size:0x3C scope:global align:4 +__dt__Q26JStage6TActorFv = .text:0x80098990; // type:function size:0x60 scope:global align:4 +JSGFGetType__Q26JStage6TActorCFv = .text:0x800989F0; // type:function size:0x8 scope:global align:4 +JSGGetTranslation__Q26JStage6TActorCFP3Vec = .text:0x800989F8; // type:function size:0x4 scope:global align:4 +JSGSetTranslation__Q26JStage6TActorFRC3Vec = .text:0x800989FC; // type:function size:0x4 scope:global align:4 +JSGGetScaling__Q26JStage6TActorCFP3Vec = .text:0x80098A00; // type:function size:0x4 scope:global align:4 +JSGSetScaling__Q26JStage6TActorFRC3Vec = .text:0x80098A04; // type:function size:0x4 scope:global align:4 +JSGGetRotation__Q26JStage6TActorCFP3Vec = .text:0x80098A08; // type:function size:0x4 scope:global align:4 +JSGSetRotation__Q26JStage6TActorFRC3Vec = .text:0x80098A0C; // type:function size:0x4 scope:global align:4 +JSGGetShape__Q26JStage6TActorCFv = .text:0x80098A10; // type:function size:0x8 scope:global align:4 +JSGSetShape__Q26JStage6TActorFUl = .text:0x80098A18; // type:function size:0x4 scope:global align:4 +JSGGetAnimation__Q26JStage6TActorCFv = .text:0x80098A1C; // type:function size:0x8 scope:global align:4 +JSGSetAnimation__Q26JStage6TActorFUl = .text:0x80098A24; // type:function size:0x4 scope:global align:4 +JSGGetAnimationFrame__Q26JStage6TActorCFv = .text:0x80098A28; // type:function size:0x8 scope:global align:4 +JSGSetAnimationFrame__Q26JStage6TActorFf = .text:0x80098A30; // type:function size:0x4 scope:global align:4 +JSGGetAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80098A34; // type:function size:0x8 scope:global align:4 +JSGGetAnimationTransition__Q26JStage6TActorCFv = .text:0x80098A3C; // type:function size:0x8 scope:global align:4 +JSGSetAnimationTransition__Q26JStage6TActorFf = .text:0x80098A44; // type:function size:0x4 scope:global align:4 +JSGGetTextureAnimation__Q26JStage6TActorCFv = .text:0x80098A48; // type:function size:0x8 scope:global align:4 +JSGSetTextureAnimation__Q26JStage6TActorFUl = .text:0x80098A50; // type:function size:0x4 scope:global align:4 +JSGGetTextureAnimationFrame__Q26JStage6TActorCFv = .text:0x80098A54; // type:function size:0x8 scope:global align:4 +JSGSetTextureAnimationFrame__Q26JStage6TActorFf = .text:0x80098A5C; // type:function size:0x4 scope:global align:4 +JSGGetTextureAnimationFrameMax__Q26JStage6TActorCFv = .text:0x80098A60; // type:function size:0x8 scope:global align:4 +getGroupCount__11JASWSParserFPv = .text:0x80098A68; // type:function size:0x28 scope:global align:4 +createBasicWaveBank__11JASWSParserFPv = .text:0x80098A90; // type:function size:0x204 scope:global align:4 +createSimpleWaveBank__11JASWSParserFPv = .text:0x80098C94; // type:function size:0x1F8 scope:global align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098E8C; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098EA4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098EBC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098ED4; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098EEC; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098F04; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x80098F1C; // type:function size:0x18 scope:weak align:4 +init__10JASBankMgrFi = .text:0x80098F34; // type:function size:0x138 scope:global align:4 +registBankBNK__10JASBankMgrFiPv = .text:0x8009906C; // type:function size:0x68 scope:global align:4 +getPhysicalNumber__10JASBankMgrFUs = .text:0x800990D4; // type:function size:0x10 scope:global align:4 +setVir2PhyTable__10JASBankMgrFUli = .text:0x800990E4; // type:function size:0x18 scope:global align:4 +assignWaveBank__10JASBankMgrFii = .text:0x800990FC; // type:function size:0x84 scope:global align:4 +noteOn__10JASBankMgrFiiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x80099180; // type:function size:0x360 scope:global align:4 +noteOnOsc__10JASBankMgrFiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x800994E0; // type:function size:0x174 scope:local align:4 +gateOn__10JASBankMgrFP10JASChannelUcUc = .text:0x80099654; // type:function size:0xA8 scope:global align:4 +__ct__12JASBasicBankFv = .text:0x800996FC; // type:function size:0x2C scope:global align:4 +__dt__7JASBankFv = .text:0x80099728; // type:function size:0x48 scope:weak align:4 +__dt__12JASBasicBankFv = .text:0x80099770; // type:function size:0x74 scope:global align:4 +setInstCount__12JASBasicBankFUl = .text:0x800997E4; // type:function size:0x64 scope:global align:4 +setInst__12JASBasicBankFiP7JASInst = .text:0x80099848; // type:function size:0x10 scope:global align:4 +getInst__12JASBasicBankCFi = .text:0x80099858; // type:function size:0x24 scope:global align:4 +getType__12JASBasicBankCFv = .text:0x8009987C; // type:function size:0xC scope:weak align:4 +__ct__12JASBasicInstFv = .text:0x80099888; // type:function size:0x44 scope:global align:4 +__dt__7JASInstFv = .text:0x800998CC; // type:function size:0x48 scope:weak align:4 +__dt__12JASBasicInstFv = .text:0x80099914; // type:function size:0x8C scope:global align:4 +getParam__12JASBasicInstCFiiP12JASInstParam = .text:0x800999A0; // type:function size:0x1E8 scope:global align:4 +getKeymapIndex__12JASBasicInstCFi = .text:0x80099B88; // type:function size:0x8 scope:global align:4 +setKeyRegionCount__12JASBasicInstFUl = .text:0x80099B90; // type:function size:0x84 scope:global align:4 +__ct__Q212JASBasicInst7TKeymapFv = .text:0x80099C14; // type:function size:0x18 scope:weak align:4 +setEffectCount__12JASBasicInstFUl = .text:0x80099C2C; // type:function size:0x78 scope:global align:4 +setEffect__12JASBasicInstFiP13JASInstEffect = .text:0x80099CA4; // type:function size:0x10 scope:global align:4 +setOscCount__12JASBasicInstFUl = .text:0x80099CB4; // type:function size:0x78 scope:global align:4 +setOsc__12JASBasicInstFiPQ213JASOscillator4Data = .text:0x80099D2C; // type:function size:0x10 scope:global align:4 +getKeyRegion__12JASBasicInstFi = .text:0x80099D3C; // type:function size:0x24 scope:global align:4 +__dt__Q212JASBasicInst7TKeymapFv = .text:0x80099D60; // type:function size:0x54 scope:global align:4 +setVeloRegionCount__Q212JASBasicInst7TKeymapFUl = .text:0x80099DB4; // type:function size:0x58 scope:global align:4 +getVeloRegion__Q212JASBasicInst7TKeymapFi = .text:0x80099E0C; // type:function size:0x24 scope:global align:4 +getVeloRegion__Q212JASBasicInst7TKeymapCFi = .text:0x80099E30; // type:function size:0x24 scope:global align:4 +getType__12JASBasicInstCFv = .text:0x80099E54; // type:function size:0xC scope:weak align:4 +__ct__16JASBasicWaveBankFv = .text:0x80099E60; // type:function size:0x60 scope:global align:4 +__dt__11JASWaveBankFv = .text:0x80099EC0; // type:function size:0x48 scope:weak align:4 +__dt__16JASBasicWaveBankFv = .text:0x80099F08; // type:function size:0xBC scope:global align:4 +getWaveGroup__16JASBasicWaveBankFi = .text:0x80099FC4; // type:function size:0x24 scope:global align:4 +setGroupCount__16JASBasicWaveBankFUl = .text:0x80099FE8; // type:function size:0xE8 scope:global align:4 +setWaveTableSize__16JASBasicWaveBankFUl = .text:0x8009A0D0; // type:function size:0x64 scope:global align:4 +getWaveHandle__16JASBasicWaveBankCFUl = .text:0x8009A134; // type:function size:0x30 scope:global align:4 +__ct__Q216JASBasicWaveBank10TWaveGroupFP16JASBasicWaveBank = .text:0x8009A164; // type:function size:0x58 scope:global align:4 +__dt__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x8009A1BC; // type:function size:0xB4 scope:global align:4 +__dt__Q216JASBasicWaveBank9TWaveInfoFv = .text:0x8009A270; // type:function size:0x60 scope:weak align:4 +setWaveCount__Q216JASBasicWaveBank10TWaveGroupFUl = .text:0x8009A2D0; // type:function size:0x1BC scope:global align:4 +__ct__Q216JASBasicWaveBank9TWaveInfoFv = .text:0x8009A48C; // type:function size:0x30 scope:weak align:4 +__dt__Q216JASBasicWaveBank11TWaveHandleFv = .text:0x8009A4BC; // type:function size:0x5C scope:weak align:4 +__dt__13JASWaveHandleFv = .text:0x8009A518; // type:function size:0x48 scope:weak align:4 +setWaveInfo__Q216JASBasicWaveBank10TWaveGroupFiUlRC11JASWaveInfo = .text:0x8009A560; // type:function size:0x90 scope:global align:4 +onLoadDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x8009A5F0; // type:function size:0xA0 scope:global align:4 +onEraseDone__Q216JASBasicWaveBank10TWaveGroupFv = .text:0x8009A690; // type:function size:0xE8 scope:global align:4 +getWaveID__Q216JASBasicWaveBank10TWaveGroupCFi = .text:0x8009A778; // type:function size:0x14 scope:global align:4 +getWaveInfo__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x8009A78C; // type:function size:0x8 scope:weak align:4 +getWavePtr__Q216JASBasicWaveBank11TWaveHandleCFv = .text:0x8009A794; // type:function size:0x24 scope:weak align:4 +getWaveArc__16JASBasicWaveBankFi = .text:0x8009A7B8; // type:function size:0x24 scope:weak align:4 +createBasicBank__12JASBNKParserFPv = .text:0x8009A7DC; // type:function size:0x6D0 scope:global align:4 +findOscPtr__12JASBNKParserFP12JASBasicBankPQ212JASBNKParser7THeaderPQ212JASBNKParser4TOsc = .text:0x8009AEAC; // type:function size:0x120 scope:local align:4 +getOscTableEndPtr__12JASBNKParserFPs = .text:0x8009AFCC; // type:function size:0x14 scope:local align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009AFE0; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009AFF8; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B010; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B028; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B040; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B058; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B070; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B088; // type:function size:0x18 scope:weak align:4 +JSUConvertOffsetToPtr__FPCvUl = .text:0x8009B0A0; // type:function size:0x18 scope:weak align:4 +getParam__10JASDrumSetCFiiP12JASInstParam = .text:0x8009B0B8; // type:function size:0x1FC scope:global align:4 +getPerc__10JASDrumSetFi = .text:0x8009B2B4; // type:function size:0x14 scope:global align:4 +__ct__Q210JASDrumSet5TPercFv = .text:0x8009B2C8; // type:function size:0x34 scope:global align:4 +__dt__Q210JASDrumSet5TPercFv = .text:0x8009B2FC; // type:function size:0x5C scope:global align:4 +setEffectCount__Q210JASDrumSet5TPercFUl = .text:0x8009B358; // type:function size:0x78 scope:global align:4 +setVeloRegionCount__Q210JASDrumSet5TPercFUl = .text:0x8009B3D0; // type:function size:0x58 scope:global align:4 +getVeloRegion__Q210JASDrumSet5TPercFi = .text:0x8009B428; // type:function size:0x10 scope:global align:4 +setEffect__Q210JASDrumSet5TPercFiP13JASInstEffect = .text:0x8009B438; // type:function size:0x10 scope:global align:4 +setRelease__Q210JASDrumSet5TPercFUl = .text:0x8009B448; // type:function size:0x8 scope:global align:4 +__dt__10JASDrumSetFv = .text:0x8009B450; // type:function size:0x84 scope:weak align:4 +getType__10JASDrumSetCFv = .text:0x8009B4D4; // type:function size:0xC scope:weak align:4 +setTarget__13JASInstEffectFi = .text:0x8009B4E0; // type:function size:0x8 scope:global align:4 +getY__11JASInstRandCFii = .text:0x8009B4E8; // type:function size:0xA4 scope:global align:4 +getY__12JASInstSenseCFii = .text:0x8009B58C; // type:function size:0x124 scope:global align:4 +setParams__12JASInstSenseFiiff = .text:0x8009B6B0; // type:function size:0x14 scope:global align:4 +__ct__17JASSimpleWaveBankFv = .text:0x8009B6C4; // type:function size:0x60 scope:global align:4 +__dt__17JASSimpleWaveBankFv = .text:0x8009B724; // type:function size:0xD4 scope:global align:4 +__dt__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x8009B7F8; // type:function size:0x5C scope:weak align:4 +setWaveTableSize__17JASSimpleWaveBankFUl = .text:0x8009B854; // type:function size:0x84 scope:global align:4 +__ct__Q217JASSimpleWaveBank11TWaveHandleFv = .text:0x8009B8D8; // type:function size:0x24 scope:weak align:4 +getWaveHandle__17JASSimpleWaveBankCFUl = .text:0x8009B8FC; // type:function size:0x24 scope:global align:4 +setWaveInfo__17JASSimpleWaveBankFUlRC11JASWaveInfo = .text:0x8009B920; // type:function size:0x94 scope:global align:4 +getWaveArc__17JASSimpleWaveBankFi = .text:0x8009B9B4; // type:function size:0x20 scope:global align:4 +getWaveInfo__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x8009B9D4; // type:function size:0x8 scope:weak align:4 +getWavePtr__Q217JASSimpleWaveBank11TWaveHandleCFv = .text:0x8009B9DC; // type:function size:0x24 scope:weak align:4 +onLoadDone__10JASWaveArcFv = .text:0x8009BA00; // type:function size:0x4 scope:weak align:4 +onEraseDone__10JASWaveArcFv = .text:0x8009BA04; // type:function size:0x4 scope:weak align:4 +init__16JASWaveArcLoaderFP7JASHeap = .text:0x8009BA08; // type:function size:0x2C scope:global align:4 +setCurrentDir__16JASWaveArcLoaderFPCc = .text:0x8009BA34; // type:function size:0x60 scope:global align:4 +__ct__10JASWaveArcFv = .text:0x8009BA94; // type:function size:0x6C scope:global align:4 +__dt__7JASHeapFv = .text:0x8009BB00; // type:function size:0x78 scope:weak align:4 +loadToAramCallback__10JASWaveArcFPv = .text:0x8009BB78; // type:function size:0xC8 scope:global align:4 +load__10JASWaveArcFP7JASHeap = .text:0x8009BC40; // type:function size:0x128 scope:global align:4 +loadTail__10JASWaveArcFP7JASHeap = .text:0x8009BD68; // type:function size:0x128 scope:global align:4 +erase__10JASWaveArcFv = .text:0x8009BE90; // type:function size:0x24 scope:global align:4 +onDispose__10JASWaveArcFv = .text:0x8009BEB4; // type:function size:0x94 scope:global align:4 +setFileName__10JASWaveArcFPCc = .text:0x8009BF48; // type:function size:0xE4 scope:global align:4 +onDispose__11JASDisposerFv = .text:0x8009C02C; // type:function size:0x4 scope:weak align:4 +getCurrentHeap__11JASWaveBankFv = .text:0x8009C030; // type:function size:0x14 scope:global align:4 +init__14JASWaveBankMgrFi = .text:0x8009C044; // type:function size:0x54 scope:global align:4 +getWaveBank__14JASWaveBankMgrFi = .text:0x8009C098; // type:function size:0x34 scope:global align:4 +registWaveBankWS__14JASWaveBankMgrFiPv = .text:0x8009C0CC; // type:function size:0x80 scope:global align:4 +loadWave__14JASWaveBankMgrFiiP7JASHeap = .text:0x8009C14C; // type:function size:0x90 scope:global align:4 +loadWaveTail__14JASWaveBankMgrFiiP7JASHeap = .text:0x8009C1DC; // type:function size:0x90 scope:global align:4 +eraseWave__14JASWaveBankMgrFii = .text:0x8009C26C; // type:function size:0x90 scope:global align:4 +getCurrentHeap__7JASBankFv = .text:0x8009C2FC; // type:function size:0x14 scope:global align:4 +init__12JASTrackPortFv = .text:0x8009C310; // type:function size:0x88 scope:global align:4 +readImport__12JASTrackPortFi = .text:0x8009C398; // type:function size:0x18 scope:global align:4 +readExport__12JASTrackPortFi = .text:0x8009C3B0; // type:function size:0x1C scope:global align:4 +writeImport__12JASTrackPortFiUs = .text:0x8009C3CC; // type:function size:0x18 scope:global align:4 +writeExport__12JASTrackPortFiUs = .text:0x8009C3E4; // type:function size:0x1C scope:global align:4 +__ct__13JASOuterParamFv = .text:0x8009C400; // type:function size:0x4C scope:global align:4 +initExtBuffer__13JASOuterParamFv = .text:0x8009C44C; // type:function size:0x10 scope:global align:4 +setOuterSwitch__13JASOuterParamFUs = .text:0x8009C45C; // type:function size:0x8 scope:global align:4 +checkOuterSwitch__13JASOuterParamFUs = .text:0x8009C464; // type:function size:0x1C scope:global align:4 +setOuterUpdate__13JASOuterParamFUs = .text:0x8009C480; // type:function size:0x8 scope:global align:4 +getOuterUpdate__13JASOuterParamFv = .text:0x8009C488; // type:function size:0x8 scope:global align:4 +getIntFirFilter__13JASOuterParamFUc = .text:0x8009C490; // type:function size:0x10 scope:global align:4 +setParam__13JASOuterParamFUcf = .text:0x8009C4A0; // type:function size:0x9C scope:global align:4 +onSwitch__13JASOuterParamFUs = .text:0x8009C53C; // type:function size:0x1C scope:global align:4 +setFirFilter__13JASOuterParamFPs = .text:0x8009C558; // type:function size:0x5C scope:global align:4 +extend8to16__9JASPlayerFUc = .text:0x8009C5B4; // type:function size:0x1C scope:global align:4 +pitchToCent__9JASPlayerFff = .text:0x8009C5D0; // type:function size:0xD4 scope:global align:4 +getRandomS32__9JASPlayerFv = .text:0x8009C6A4; // type:function size:0x70 scope:global align:4 +__ct__16JASRegisterParamFv = .text:0x8009C714; // type:function size:0x50 scope:global align:4 +init__16JASRegisterParamFv = .text:0x8009C764; // type:function size:0x68 scope:global align:4 +inherit__16JASRegisterParamFRC16JASRegisterParam = .text:0x8009C7CC; // type:function size:0x70 scope:global align:4 +getBankNumber__16JASRegisterParamCFv = .text:0x8009C83C; // type:function size:0x10 scope:global align:4 +getProgramNumber__16JASRegisterParamCFv = .text:0x8009C84C; // type:function size:0xC scope:global align:4 +init__10JASSeqCtrlFv = .text:0x8009C858; // type:function size:0x60 scope:global align:4 +start__10JASSeqCtrlFPvUl = .text:0x8009C8B8; // type:function size:0x14 scope:global align:4 +loopEnd__10JASSeqCtrlFv = .text:0x8009C8CC; // type:function size:0x6C scope:global align:4 +waitCountDown__10JASSeqCtrlFv = .text:0x8009C938; // type:function size:0x30 scope:global align:4 +callIntr__10JASSeqCtrlFPv = .text:0x8009C968; // type:function size:0x38 scope:global align:4 +retIntr__10JASSeqCtrlFv = .text:0x8009C9A0; // type:function size:0x34 scope:global align:4 +get16__10JASSeqCtrlCFUl = .text:0x8009C9D4; // type:function size:0x18 scope:global align:4 +get24__10JASSeqCtrlCFUl = .text:0x8009C9EC; // type:function size:0x28 scope:global align:4 +get32__10JASSeqCtrlCFUl = .text:0x8009CA14; // type:function size:0x38 scope:global align:4 +read16__10JASSeqCtrlFv = .text:0x8009CA4C; // type:function size:0x28 scope:global align:4 +read24__10JASSeqCtrlFv = .text:0x8009CA74; // type:function size:0x44 scope:global align:4 +cmdOpenTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8009CAB8; // type:function size:0x58 scope:global align:4 +cmdOpenTrackBros__12JASSeqParserFP8JASTrackPUl = .text:0x8009CB10; // type:function size:0x68 scope:global align:4 +cmdCall__12JASSeqParserFP8JASTrackPUl = .text:0x8009CB78; // type:function size:0x108 scope:global align:4 +cmdRet__12JASSeqParserFP8JASTrackPUl = .text:0x8009CC80; // type:function size:0x84 scope:global align:4 +cmdJmp__12JASSeqParserFP8JASTrackPUl = .text:0x8009CD04; // type:function size:0x144 scope:global align:4 +cmdLoopS__12JASSeqParserFP8JASTrackPUl = .text:0x8009CE48; // type:function size:0x3C scope:global align:4 +cmdLoopE__12JASSeqParserFP8JASTrackPUl = .text:0x8009CE84; // type:function size:0x28 scope:global align:4 +cmdReadPort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CEAC; // type:function size:0x58 scope:global align:4 +cmdWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CF04; // type:function size:0x34 scope:global align:4 +cmdParentWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CF38; // type:function size:0x38 scope:global align:4 +cmdChildWritePort__12JASSeqParserFP8JASTrackPUl = .text:0x8009CF70; // type:function size:0x44 scope:global align:4 +cmdCheckPortImport__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFB4; // type:function size:0x18 scope:global align:4 +cmdCheckPortExport__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFCC; // type:function size:0x18 scope:global align:4 +cmdWait__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFE4; // type:function size:0x18 scope:global align:4 +cmdSetLastNote__12JASSeqParserFP8JASTrackPUl = .text:0x8009CFFC; // type:function size:0x48 scope:global align:4 +cmdTimeRelate__12JASSeqParserFP8JASTrackPUl = .text:0x8009D044; // type:function size:0x1C scope:global align:4 +cmdSimpleOsc__12JASSeqParserFP8JASTrackPUl = .text:0x8009D060; // type:function size:0x30 scope:global align:4 +cmdSimpleEnv__12JASSeqParserFP8JASTrackPUl = .text:0x8009D090; // type:function size:0x34 scope:global align:4 +cmdSimpleADSR__12JASSeqParserFP8JASTrackPUl = .text:0x8009D0C4; // type:function size:0x70 scope:global align:4 +cmdTranspose__12JASSeqParserFP8JASTrackPUl = .text:0x8009D134; // type:function size:0x10 scope:global align:4 +cmdCloseTrack__12JASSeqParserFP8JASTrackPUl = .text:0x8009D144; // type:function size:0x54 scope:global align:4 +cmdOutSwitch__12JASSeqParserFP8JASTrackPUl = .text:0x8009D198; // type:function size:0x54 scope:global align:4 +cmdUpdateSync__12JASSeqParserFP8JASTrackPUl = .text:0x8009D1EC; // type:function size:0x2C scope:global align:4 +cmdBusConnect__12JASSeqParserFP8JASTrackPUl = .text:0x8009D218; // type:function size:0x30 scope:global align:4 +cmdPauseStatus__12JASSeqParserFP8JASTrackPUl = .text:0x8009D248; // type:function size:0x10 scope:global align:4 +cmdVolumeMode__12JASSeqParserFP8JASTrackPUl = .text:0x8009D258; // type:function size:0x10 scope:global align:4 +cmdSetInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8009D268; // type:function size:0x38 scope:global align:4 +cmdDisInterrupt__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2A0; // type:function size:0x2C scope:global align:4 +cmdClrI__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2CC; // type:function size:0x18 scope:global align:4 +cmdSetI__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2E4; // type:function size:0x10 scope:global align:4 +cmdRetI__12JASSeqParserFP8JASTrackPUl = .text:0x8009D2F4; // type:function size:0x50 scope:global align:4 +cmdIntTimer__12JASSeqParserFP8JASTrackPUl = .text:0x8009D344; // type:function size:0x1C scope:global align:4 +cmdSyncCPU__12JASSeqParserFP8JASTrackPUl = .text:0x8009D360; // type:function size:0x58 scope:global align:4 +cmdFlushAll__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3B8; // type:function size:0x8 scope:global align:4 +cmdFlushRelease__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3C0; // type:function size:0x8 scope:global align:4 +cmdTimeBase__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3C8; // type:function size:0x30 scope:global align:4 +cmdTempo__12JASSeqParserFP8JASTrackPUl = .text:0x8009D3F8; // type:function size:0x30 scope:global align:4 +cmdFinish__12JASSeqParserFP8JASTrackPUl = .text:0x8009D428; // type:function size:0x8 scope:global align:4 +cmdNop__12JASSeqParserFP8JASTrackPUl = .text:0x8009D430; // type:function size:0x8 scope:global align:4 +cmdPanPowSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D438; // type:function size:0x84 scope:global align:4 +cmdFIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D4BC; // type:function size:0x34 scope:global align:4 +cmdEXTSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D4F0; // type:function size:0x54 scope:global align:4 +cmdPanSwSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D544; // type:function size:0xF8 scope:global align:4 +cmdOscRoute__12JASSeqParserFP8JASTrackPUl = .text:0x8009D63C; // type:function size:0x1C scope:global align:4 +cmdVibDepth__12JASSeqParserFP8JASTrackPUl = .text:0x8009D658; // type:function size:0x48 scope:global align:4 +cmdVibDepthMidi__12JASSeqParserFP8JASTrackPUl = .text:0x8009D6A0; // type:function size:0x38 scope:global align:4 +cmdVibPitch__12JASSeqParserFP8JASTrackPUl = .text:0x8009D6D8; // type:function size:0x48 scope:global align:4 +cmdIIRSet__12JASSeqParserFP8JASTrackPUl = .text:0x8009D720; // type:function size:0xF4 scope:global align:4 +cmdIIRCutOff__12JASSeqParserFP8JASTrackPUl = .text:0x8009D814; // type:function size:0xF8 scope:global align:4 +cmdOscFull__12JASSeqParserFP8JASTrackPUl = .text:0x8009D90C; // type:function size:0x3C scope:global align:4 +cmdCheckWave__12JASSeqParserFP8JASTrackPUl = .text:0x8009D948; // type:function size:0x10 scope:global align:4 +cmdPrintf__12JASSeqParserFP8JASTrackPUl = .text:0x8009D958; // type:function size:0x214 scope:global align:4 +cmdSetParam__12JASSeqParserFP8JASTrackUc = .text:0x8009DB6C; // type:function size:0x18C scope:global align:4 +cmdNoteOn__12JASSeqParserFP8JASTrackUc = .text:0x8009DCF8; // type:function size:0x3D4 scope:global align:4 +conditionCheck__12JASSeqParserFP8JASTrackUc = .text:0x8009E0CC; // type:function size:0xB4 scope:global align:4 +parseSeq__12JASSeqParserFP8JASTrack = .text:0x8009E180; // type:function size:0x6D4 scope:global align:4 +__sinit_JASSeqParser_cpp = .text:0x8009E854; // type:function size:0x740 scope:local align:4 +__ct__8JASTrackFv = .text:0x8009EF94; // type:function size:0x12C scope:global align:4 +__ct__Q28JASTrack11TimedParam_Fv = .text:0x8009F0C0; // type:function size:0x4C scope:weak align:4 +__ct__Q28JASTrack10MoveParam_Fv = .text:0x8009F10C; // type:function size:0x18 scope:weak align:4 +__ct__Q28JASTrack12AInnerParam_Fv = .text:0x8009F124; // type:function size:0x130 scope:weak align:4 +init__8JASTrackFv = .text:0x8009F254; // type:function size:0x1E8 scope:global align:4 +mainProc__8JASTrackFv = .text:0x8009F43C; // type:function size:0x20C scope:global align:4 +setInterrupt__8JASTrackFUs = .text:0x8009F648; // type:function size:0x28 scope:global align:4 +tryInterrupt__8JASTrackFv = .text:0x8009F670; // type:function size:0x60 scope:global align:4 +assignExtBuffer__8JASTrackFP13JASOuterParam = .text:0x8009F6D0; // type:function size:0x8 scope:global align:4 +initTimed__8JASTrackFv = .text:0x8009F6D8; // type:function size:0xCC scope:global align:4 +connectBus__8JASTrackFii = .text:0x8009F7A4; // type:function size:0x10 scope:global align:4 +noteOn__8JASTrackFUclllUl = .text:0x8009F7B4; // type:function size:0x1A4 scope:global align:4 +overwriteOsc__8JASTrackFP10JASChannel = .text:0x8009F958; // type:function size:0xA4 scope:global align:4 +noteOff__8JASTrackFUcUs = .text:0x8009F9FC; // type:function size:0x68 scope:global align:4 +gateOn__8JASTrackFUclll = .text:0x8009FA64; // type:function size:0x64 scope:global align:4 +checkNoteStop__8JASTrackFl = .text:0x8009FAC8; // type:function size:0x2C scope:global align:4 +oscSetupFull__8JASTrackFUcUlUl = .text:0x8009FAF4; // type:function size:0xE0 scope:global align:4 +oscSetupSimpleEnv__8JASTrackFUcUl = .text:0x8009FBD4; // type:function size:0x70 scope:global align:4 +oscSetupSimple__8JASTrackFUc = .text:0x8009FC44; // type:function size:0xDC scope:global align:4 +updateTimedParam__8JASTrackFv = .text:0x8009FD20; // type:function size:0xE8 scope:global align:4 +updateTrackAll__8JASTrackFv = .text:0x8009FE08; // type:function size:0x3E8 scope:global align:4 +updateTrack__8JASTrackFUl = .text:0x800A01F0; // type:function size:0x4E0 scope:global align:4 +updateTempo__8JASTrackFv = .text:0x800A06D0; // type:function size:0x3B4 scope:global align:4 +getTempo__13JASOuterParamCFv = .text:0x800A0A84; // type:function size:0x8 scope:weak align:4 +updateSeq__8JASTrackFUlb = .text:0x800A0A8C; // type:function size:0x294 scope:global align:4 +seqTimeToDspTime__8JASTrackFlUc = .text:0x800A0D20; // type:function size:0xD8 scope:global align:4 +setParam__8JASTrackFifi = .text:0x800A0DF8; // type:function size:0x84 scope:global align:4 +setSeqData__8JASTrackFPUcl = .text:0x800A0E7C; // type:function size:0x64 scope:global align:4 +startSeq__8JASTrackFv = .text:0x800A0EE0; // type:function size:0x78 scope:global align:4 +stopSeq__8JASTrackFv = .text:0x800A0F58; // type:function size:0xFC scope:global align:4 +stopSeqMain__8JASTrackFv = .text:0x800A1054; // type:function size:0x3C scope:global align:4 +close__8JASTrackFv = .text:0x800A1090; // type:function size:0x1D4 scope:global align:4 +setNoteMask__8JASTrackFUc = .text:0x800A1264; // type:function size:0x80 scope:global align:4 +muteTrack__8JASTrackFb = .text:0x800A12E4; // type:function size:0x234 scope:global align:4 +start__8JASTrackFPvUl = .text:0x800A1518; // type:function size:0x44 scope:global align:4 +openChild__8JASTrackFUcUc = .text:0x800A155C; // type:function size:0x1DC scope:global align:4 +exchangeRegisterValue__8JASTrackFUc = .text:0x800A1738; // type:function size:0x40 scope:global align:4 +readReg32__8JASTrackFUc = .text:0x800A1778; // type:function size:0x94 scope:global align:4 +readReg16__8JASTrackFUc = .text:0x800A180C; // type:function size:0x218 scope:global align:4 +writeRegDirect__8JASTrackFUcUs = .text:0x800A1A24; // type:function size:0xD0 scope:global align:4 +writeRegParam__8JASTrackFUc = .text:0x800A1AF4; // type:function size:0x5B0 scope:global align:4 +readSelfPort__8JASTrackFi = .text:0x800A20A4; // type:function size:0x24 scope:global align:4 +writeSelfPort__8JASTrackFiUs = .text:0x800A20C8; // type:function size:0x24 scope:global align:4 +writePortAppDirect__8JASTrackFUlUs = .text:0x800A20EC; // type:function size:0x68 scope:global align:4 +readPortAppDirect__8JASTrackFUlPUs = .text:0x800A2154; // type:function size:0x38 scope:global align:4 +writePortApp__8JASTrackFUlUs = .text:0x800A218C; // type:function size:0xB4 scope:global align:4 +readPortApp__8JASTrackFUlPUs = .text:0x800A2240; // type:function size:0x84 scope:global align:4 +pause__8JASTrackFbb = .text:0x800A22C4; // type:function size:0x168 scope:global align:4 +getTranspose__8JASTrackCFv = .text:0x800A242C; // type:function size:0x170 scope:global align:4 +setTempo__8JASTrackFUs = .text:0x800A259C; // type:function size:0x3C scope:global align:4 +setTimebase__8JASTrackFUs = .text:0x800A25D8; // type:function size:0x30 scope:global align:4 +panCalc__8JASTrackFfffUc = .text:0x800A2608; // type:function size:0x50 scope:global align:4 +rootCallback__8JASTrackFPv = .text:0x800A2658; // type:function size:0xE8 scope:global align:4 +registerSeqCallback__8JASTrackFPFP8JASTrackUs_Us = .text:0x800A2740; // type:function size:0x8 scope:global align:4 +newMemPool__8JASTrackFi = .text:0x800A2748; // type:function size:0xD4 scope:global align:4 +__ct__10JASVibrateFv = .text:0x800A281C; // type:function size:0x30 scope:global align:4 +init__10JASVibrateFv = .text:0x800A284C; // type:function size:0x18 scope:global align:4 +incCounter__10JASVibrateFv = .text:0x800A2864; // type:function size:0x34 scope:global align:4 +getValue__10JASVibrateCFv = .text:0x800A2898; // type:function size:0xA4 scope:global align:4 +channelUpdateCallback__8JASTrackFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x800A293C; // type:function size:0xB0 scope:global align:4 +init__10JASIntrMgrFv = .text:0x800A29EC; // type:function size:0x44 scope:global align:4 +request__10JASIntrMgrFUl = .text:0x800A2A30; // type:function size:0x24 scope:global align:4 +setIntr__10JASIntrMgrFUlPv = .text:0x800A2A54; // type:function size:0x24 scope:global align:4 +resetInter__10JASIntrMgrFUl = .text:0x800A2A78; // type:function size:0x18 scope:global align:4 +checkIntr__10JASIntrMgrFv = .text:0x800A2A90; // type:function size:0x6C scope:global align:4 +timerProcess__10JASIntrMgrFv = .text:0x800A2AFC; // type:function size:0x70 scope:global align:4 +init__13JASOscillatorFv = .text:0x800A2B6C; // type:function size:0x34 scope:global align:4 +initStart__13JASOscillatorFPCQ213JASOscillator4Data = .text:0x800A2BA0; // type:function size:0x88 scope:global align:4 +incCounter__13JASOscillatorFv = .text:0x800A2C28; // type:function size:0xC8 scope:global align:4 +getValue__13JASOscillatorCFv = .text:0x800A2CF0; // type:function size:0x2C scope:global align:4 +release__13JASOscillatorFv = .text:0x800A2D1C; // type:function size:0x168 scope:global align:4 +calc__13JASOscillatorFPCs = .text:0x800A2E84; // type:function size:0x374 scope:global align:4 +__ct__10JASChannelFPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv = .text:0x800A31F8; // type:function size:0x160 scope:global align:4 +__ct__13JASOscillatorFv = .text:0x800A3358; // type:function size:0x30 scope:weak align:4 +__dt__109JASPoolAllocObject<10JASChannel,Q217JASCreationPolicy15NewFromRootHeap,Q217JASThreadingModel14SingleThreaded>Fv = .text:0x800A3388; // type:function size:0xA4 scope:weak align:4 +__dt__10JASChannelFv = .text:0x800A342C; // type:function size:0x10C scope:global align:4 +setOscInit__10JASChannelFiPCQ213JASOscillator4Data = .text:0x800A3538; // type:function size:0x34 scope:global align:4 +setMixConfig__10JASChannelFiUs = .text:0x800A356C; // type:function size:0x10 scope:global align:4 +directReleaseOsc__10JASChannelFUs = .text:0x800A357C; // type:function size:0x8 scope:global align:4 +copyOsc__10JASChannelFiPQ213JASOscillator4Data = .text:0x800A3584; // type:function size:0x48 scope:global align:4 +overwriteOsc__10JASChannelFiPQ213JASOscillator4Data = .text:0x800A35CC; // type:function size:0x34 scope:global align:4 +setKeySweepTarget__10JASChannelFUcUl = .text:0x800A3600; // type:function size:0x88 scope:global align:4 +setPauseFlag__10JASChannelFb = .text:0x800A3688; // type:function size:0x8 scope:global align:4 +setPanPower__10JASChannelFfff = .text:0x800A3690; // type:function size:0x24 scope:global align:4 +play__10JASChannelFv = .text:0x800A36B4; // type:function size:0x84 scope:global align:4 +playForce__10JASChannelFv = .text:0x800A3738; // type:function size:0x84 scope:global align:4 +release__10JASChannelFUs = .text:0x800A37BC; // type:function size:0x98 scope:global align:4 +updateEffectorParam__10JASChannelFPQ26JASDsp8TChannelPUsRCQ210JASChannel14EffectOscParam = .text:0x800A3854; // type:function size:0x25C scope:global align:4 +dspUpdateCallback__10JASChannelFUlPQ26JASDsp8TChannelPv = .text:0x800A3AB0; // type:function size:0xA0 scope:global align:4 +initialUpdateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x800A3B50; // type:function size:0x2A4 scope:global align:4 +updateDSPChannel__10JASChannelFPQ26JASDsp8TChannel = .text:0x800A3DF4; // type:function size:0x2BC scope:global align:4 +calcEffect__10JASChannelFPCQ210JASChannel9PanVectorPCQ210JASChannel9PanVectorUc = .text:0x800A40B0; // type:function size:0xC0 scope:global align:4 +calcPan__10JASChannelFPCQ210JASChannel9PanVectorPCQ210JASChannel9PanVectorUc = .text:0x800A4170; // type:function size:0xFC scope:global align:4 +updateAutoMixer__10JASChannelFPQ26JASDsp8TChannelffff = .text:0x800A426C; // type:function size:0x120 scope:global align:4 +updateMixer__10JASChannelFffffPUs = .text:0x800A438C; // type:function size:0x3D4 scope:global align:4 +sweepProc__10JASChannelFv = .text:0x800A4760; // type:function size:0x54 scope:global align:4 +free__10JASChannelFv = .text:0x800A47B4; // type:function size:0x10 scope:global align:4 +@16@__dt__10JASChannelFv = .text:0x800A47C4; // type:function size:0x8 scope:weak align:4 +key2pitch_c5__9JASDriverFi = .text:0x800A47CC; // type:function size:0x30 scope:global align:4 +setLevel__9JASDriverFfff = .text:0x800A47FC; // type:function size:0x50 scope:global align:4 +setMixerLevel__9JASDriverFff = .text:0x800A484C; // type:function size:0x3C scope:global align:4 +setAutoLevel__9JASDriverFf = .text:0x800A4888; // type:function size:0x24 scope:global align:4 +setDSPLevel__9JASDriverFf = .text:0x800A48AC; // type:function size:0x20 scope:global align:4 +getChannelLevel__9JASDriverFv = .text:0x800A48CC; // type:function size:0x8 scope:global align:4 +getAutoLevel__9JASDriverFv = .text:0x800A48D4; // type:function size:0x8 scope:global align:4 +getAutoLevel_f32__9JASDriverFv = .text:0x800A48DC; // type:function size:0x30 scope:global align:4 +getDSPLevel_f32__9JASDriverFv = .text:0x800A490C; // type:function size:0x20 scope:global align:4 +setOutputMode__9JASDriverFUl = .text:0x800A492C; // type:function size:0x8 scope:global align:4 +getOutputMode__9JASDriverFv = .text:0x800A4934; // type:function size:0x8 scope:global align:4 +rejectCallback__9JASDriverFPFPv_lPv = .text:0x800A493C; // type:function size:0x90 scope:global align:4 +registerDspSyncCallback__9JASDriverFPFPv_lPv = .text:0x800A49CC; // type:function size:0x34 scope:global align:4 +registerSubFrameCallback__9JASDriverFPFPv_lPv = .text:0x800A4A00; // type:function size:0x34 scope:global align:4 +subframeCallback__9JASDriverFv = .text:0x800A4A34; // type:function size:0x28 scope:global align:4 +DSPSyncCallback__9JASDriverFv = .text:0x800A4A5C; // type:function size:0x28 scope:global align:4 +updateDacCallback__9JASDriverFv = .text:0x800A4A84; // type:function size:0x28 scope:global align:4 +__sinit_JASDriverIF_cpp = .text:0x800A4AAC; // type:function size:0x80 scope:local align:4 +__ct__Q214JASCallbackMgr9TCallbackFv = .text:0x800A4B2C; // type:function size:0x10 scope:weak align:4 +__ct__13JASDSPChannelFv = .text:0x800A4B3C; // type:function size:0x2C scope:global align:4 +free__13JASDSPChannelFv = .text:0x800A4B68; // type:function size:0x10 scope:global align:4 +start__13JASDSPChannelFv = .text:0x800A4B78; // type:function size:0x10 scope:global align:4 +drop__13JASDSPChannelFv = .text:0x800A4B88; // type:function size:0x88 scope:global align:4 +initAll__13JASDSPChannelFv = .text:0x800A4C10; // type:function size:0x84 scope:global align:4 +alloc__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x800A4C94; // type:function size:0xDC scope:global align:4 +allocForce__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv = .text:0x800A4D70; // type:function size:0xE4 scope:global align:4 +setPriority__13JASDSPChannelFUc = .text:0x800A4E54; // type:function size:0xC scope:global align:4 +getLowestChannel__13JASDSPChannelFi = .text:0x800A4E60; // type:function size:0xDC scope:global align:4 +updateProc__13JASDSPChannelFv = .text:0x800A4F3C; // type:function size:0x1E4 scope:global align:4 +updateAll__13JASDSPChannelFv = .text:0x800A5120; // type:function size:0x74 scope:global align:4 +killActiveChannel__13JASDSPChannelFv = .text:0x800A5194; // type:function size:0x160 scope:global align:4 +getHandle__13JASDSPChannelFUl = .text:0x800A52F4; // type:function size:0x10 scope:global align:4 +boot__6JASDspFPFPv_v = .text:0x800A5304; // type:function size:0x4C scope:global align:4 +releaseHalt__6JASDspFUl = .text:0x800A5350; // type:function size:0x20 scope:global align:4 +finishWork__6JASDspFUs = .text:0x800A5370; // type:function size:0x20 scope:global align:4 +syncFrame__6JASDspFUlUlUl = .text:0x800A5390; // type:function size:0x20 scope:global align:4 +setDSPMixerLevel__6JASDspFf = .text:0x800A53B0; // type:function size:0x24 scope:global align:4 +getDSPMixerLevel__6JASDspFv = .text:0x800A53D4; // type:function size:0x8 scope:global align:4 +getDSPHandle__6JASDspFi = .text:0x800A53DC; // type:function size:0x10 scope:global align:4 +invalChannelAll__6JASDspFv = .text:0x800A53EC; // type:function size:0x28 scope:global align:4 +initBuffer__6JASDspFv = .text:0x800A5414; // type:function size:0xC4 scope:global align:4 +setFXLine__6JASDspFUcPsPQ26JASDsp13FxlineConfig_ = .text:0x800A54D8; // type:function size:0x154 scope:global align:4 +init__Q26JASDsp8TChannelFv = .text:0x800A562C; // type:function size:0x3C scope:global align:4 +playStart__Q26JASDsp8TChannelFv = .text:0x800A5668; // type:function size:0xA0 scope:global align:4 +playStop__Q26JASDsp8TChannelFv = .text:0x800A5708; // type:function size:0xC scope:global align:4 +replyFinishRequest__Q26JASDsp8TChannelFv = .text:0x800A5714; // type:function size:0x10 scope:global align:4 +forceStop__Q26JASDsp8TChannelFv = .text:0x800A5724; // type:function size:0xC scope:global align:4 +isFinish__Q26JASDsp8TChannelCFv = .text:0x800A5730; // type:function size:0x14 scope:global align:4 +setWaveInfo__Q26JASDsp8TChannelFRC11JASWaveInfoUlUl = .text:0x800A5744; // type:function size:0x150 scope:global align:4 +setOscInfo__Q26JASDsp8TChannelFUl = .text:0x800A5894; // type:function size:0x18 scope:global align:4 +initAutoMixer__Q26JASDsp8TChannelFv = .text:0x800A58AC; // type:function size:0x2C scope:global align:4 +setAutoMixer__Q26JASDsp8TChannelFUsUcUcUcUc = .text:0x800A58D8; // type:function size:0x2C scope:global align:4 +setPitch__Q26JASDsp8TChannelFUs = .text:0x800A5904; // type:function size:0x18 scope:global align:4 +setMixerInitDelayMax__Q26JASDsp8TChannelFUc = .text:0x800A591C; // type:function size:0xC scope:global align:4 +setMixerInitVolume__Q26JASDsp8TChannelFUcs = .text:0x800A5928; // type:function size:0x20 scope:global align:4 +setMixerInitDelaySamples__Q26JASDsp8TChannelFUcUc = .text:0x800A5948; // type:function size:0x18 scope:global align:4 +setMixerDelaySamples__Q26JASDsp8TChannelFUcUc = .text:0x800A5960; // type:function size:0x20 scope:global align:4 +setMixerVolume__Q26JASDsp8TChannelFUcs = .text:0x800A5980; // type:function size:0x2C scope:global align:4 +setPauseFlag__Q26JASDsp8TChannelFUc = .text:0x800A59AC; // type:function size:0xC scope:global align:4 +flush__Q26JASDsp8TChannelFv = .text:0x800A59B8; // type:function size:0x24 scope:global align:4 +initFilter__Q26JASDsp8TChannelFv = .text:0x800A59DC; // type:function size:0x48 scope:global align:4 +setFilterMode__Q26JASDsp8TChannelFUs = .text:0x800A5A24; // type:function size:0x38 scope:global align:4 +setIIRFilterParam__Q26JASDsp8TChannelFPs = .text:0x800A5A5C; // type:function size:0x24 scope:global align:4 +setFIR8FilterParam__Q26JASDsp8TChannelFPs = .text:0x800A5A80; // type:function size:0x44 scope:global align:4 +setDistFilter__Q26JASDsp8TChannelFs = .text:0x800A5AC4; // type:function size:0x8 scope:global align:4 +setBusConnect__Q26JASDsp8TChannelFUcUc = .text:0x800A5ACC; // type:function size:0x20 scope:global align:4 +DSP_CreateMap2__FUl = .text:0x800A5AEC; // type:function size:0x90 scope:global align:4 +create__14JASAudioThreadFl = .text:0x800A5B7C; // type:function size:0x74 scope:global align:4 +stop__14JASAudioThreadFv = .text:0x800A5BF0; // type:function size:0x38 scope:global align:4 +run__14JASAudioThreadFv = .text:0x800A5C28; // type:function size:0x17C scope:global align:4 +DMACallback__14JASAudioThreadFv = .text:0x800A5DA4; // type:function size:0x48 scope:global align:4 +DSPCallback__14JASAudioThreadFPv = .text:0x800A5DEC; // type:function size:0x64 scope:global align:4 +__dt__14JASAudioThreadFv = .text:0x800A5E50; // type:function size:0x60 scope:weak align:4 +imixcopy__7JASCalcFPCsPCsPsUl = .text:0x800A5EB0; // type:function size:0xD4 scope:global align:4 +bcopy__7JASCalcFPCvPvUl = .text:0x800A5F84; // type:function size:0x2D4 scope:global align:4 +bzero__7JASCalcFPvUl = .text:0x800A6258; // type:function size:0x274 scope:global align:4 +clamp__7JASCalcFl = .text:0x800A64CC; // type:function size:0x28 scope:weak align:4 +regist__14JASCallbackMgrFPFPv_lPv = .text:0x800A64F4; // type:function size:0x9C scope:global align:4 +reject__14JASCallbackMgrFPFPv_lPv = .text:0x800A6590; // type:function size:0x110 scope:global align:4 +callback__14JASCallbackMgrFv = .text:0x800A66A0; // type:function size:0x78 scope:global align:4 +addPortCmdOnce__10JASPortCmdFv = .text:0x800A6718; // type:function size:0x5C scope:global align:4 +setPortCmd__10JASPortCmdFPFP11JASPortArgs_vP11JASPortArgs = .text:0x800A6774; // type:function size:0x24 scope:global align:4 +execAllCommand__10JASPortCmdFv = .text:0x800A6798; // type:function size:0x34 scope:global align:4 +execCommandOnce__Q210JASPortCmd9TPortHeadFv = .text:0x800A67CC; // type:function size:0x88 scope:global align:4 +execCommandStay__Q210JASPortCmd9TPortHeadFv = .text:0x800A6854; // type:function size:0x68 scope:global align:4 +__sinit_JASCmdStack_cpp = .text:0x800A68BC; // type:function size:0x6C scope:local align:4 +__dt__Q210JASPortCmd9TPortHeadFv = .text:0x800A6928; // type:function size:0x58 scope:weak align:4 +getThreadPointer__6JASDvdFv = .text:0x800A6980; // type:function size:0x8 scope:global align:4 +createThread__6JASDvdFliUl = .text:0x800A6988; // type:function size:0x7C scope:global align:4 +checkPassDvdT__6JASDvdFUlPUlPFUl_v = .text:0x800A6A04; // type:function size:0x44 scope:global align:4 +dvdThreadCheckBack__6JASDvdFPv = .text:0x800A6A48; // type:function size:0x48 scope:local align:4 +__ct__7JASHeapFP11JASDisposer = .text:0x800A6A90; // type:function size:0x74 scope:global align:4 +alloc__7JASHeapFP7JASHeapUl = .text:0x800A6B04; // type:function size:0x1D0 scope:global align:4 +allocTail__7JASHeapFP7JASHeapUl = .text:0x800A6CD4; // type:function size:0xE8 scope:global align:4 +free__7JASHeapFv = .text:0x800A6DBC; // type:function size:0x124 scope:global align:4 +insertChild__7JASHeapFP7JASHeapP7JASHeapPvUlb = .text:0x800A6EE0; // type:function size:0xE0 scope:global align:4 +getTailHeap__7JASHeapFv = .text:0x800A6FC0; // type:function size:0x8C scope:global align:4 +getTailOffset__7JASHeapFv = .text:0x800A704C; // type:function size:0xC4 scope:global align:4 +getCurOffset__7JASHeapFv = .text:0x800A7110; // type:function size:0x68 scope:global align:4 +__ct__17JASGenericMemPoolFv = .text:0x800A7178; // type:function size:0x14 scope:global align:4 +newMemPool__17JASGenericMemPoolFUli = .text:0x800A718C; // type:function size:0x94 scope:global align:4 +alloc__17JASGenericMemPoolFUl = .text:0x800A7220; // type:function size:0x44 scope:global align:4 +free__17JASGenericMemPoolFPvUl = .text:0x800A7264; // type:function size:0x34 scope:global align:4 +setupRootHeap__9JASKernelFP12JKRSolidHeapUl = .text:0x800A7298; // type:function size:0x118 scope:global align:4 +getSystemHeap__9JASKernelFv = .text:0x800A73B0; // type:function size:0x8 scope:global align:4 +getCommandHeap__9JASKernelFv = .text:0x800A73B8; // type:function size:0x8 scope:global align:4 +setupAramHeap__9JASKernelFUlUl = .text:0x800A73C0; // type:function size:0x7C scope:global align:4 +getAramHeap__9JASKernelFv = .text:0x800A743C; // type:function size:0xC scope:global align:4 +__sinit_JASHeapCtrl_cpp = .text:0x800A7448; // type:function size:0x80 scope:local align:4 +probeStart__9JASKernelFlPc = .text:0x800A74C8; // type:function size:0x60 scope:global align:4 +probeFinish__9JASKernelFl = .text:0x800A7528; // type:function size:0x13C scope:global align:4 +getResSize__15JASResArcLoaderFP10JKRArchiveUs = .text:0x800A7664; // type:function size:0x34 scope:global align:4 +loadResourceCallback__15JASResArcLoaderFPv = .text:0x800A7698; // type:function size:0x9C scope:local align:4 +loadResource__15JASResArcLoaderFP10JKRArchiveUsPUcUl = .text:0x800A7734; // type:function size:0xD0 scope:global align:4 +loadResourceAsync__15JASResArcLoaderFP10JKRArchiveUsPUcUlPFUlUl_vUl = .text:0x800A7804; // type:function size:0x5C scope:global align:4 +JASReport__FPCce = .text:0x800A7860; // type:function size:0xFC scope:global align:4 +initAI__9JASDriverFPFv_v = .text:0x800A795C; // type:function size:0x13C scope:global align:4 +startDMA__9JASDriverFv = .text:0x800A7A98; // type:function size:0x20 scope:global align:4 +stopDMA__9JASDriverFv = .text:0x800A7AB8; // type:function size:0x20 scope:global align:4 +updateDac__9JASDriverFv = .text:0x800A7AD8; // type:function size:0x15C scope:global align:4 +updateDSP__9JASDriverFv = .text:0x800A7C34; // type:function size:0xF0 scope:global align:4 +readDspBuffer__9JASDriverFPsUl = .text:0x800A7D24; // type:function size:0x310 scope:global align:4 +finishDSPFrame__9JASDriverFv = .text:0x800A8034; // type:function size:0x1A4 scope:global align:4 +registerMixCallback__9JASDriverFPFl_Ps10JASMixMode = .text:0x800A81D8; // type:function size:0xC scope:global align:4 +getDacRate__9JASDriverFv = .text:0x800A81E4; // type:function size:0x8 scope:global align:4 +getSubFrames__9JASDriverFv = .text:0x800A81EC; // type:function size:0x8 scope:global align:4 +getDacSize__9JASDriverFv = .text:0x800A81F4; // type:function size:0xC scope:local align:4 +getFrameSamples__9JASDriverFv = .text:0x800A8200; // type:function size:0xC scope:local align:4 +mixMonoTrack__9JASDriverFPsUlPFl_Ps = .text:0x800A820C; // type:function size:0xC0 scope:local align:4 +mixMonoTrackWide__9JASDriverFPsUlPFl_Ps = .text:0x800A82CC; // type:function size:0xC0 scope:local align:4 +mixExtraTrack__9JASDriverFPsUlPFl_Ps = .text:0x800A838C; // type:function size:0xE0 scope:local align:4 +mixInterleaveTrack__9JASDriverFPsUlPFl_Ps = .text:0x800A846C; // type:function size:0x8C scope:local align:4 +__ct__17JASChannelUpdaterFv = .text:0x800A84F8; // type:function size:0x30 scope:global align:4 +init__17JASChannelUpdaterFv = .text:0x800A8528; // type:function size:0xC0 scope:global align:4 +initialUpdateChannel__17JASChannelUpdaterFP10JASChannelPQ26JASDsp8TChannel = .text:0x800A85E8; // type:function size:0x164 scope:global align:4 +updateChannel__17JASChannelUpdaterFP10JASChannelPQ26JASDsp8TChannel = .text:0x800A874C; // type:function size:0xE8 scope:global align:4 +__ct__13JASTaskThreadFiiUl = .text:0x800A8834; // type:function size:0x60 scope:global align:4 +__dt__13JASTaskThreadFv = .text:0x800A8894; // type:function size:0x128 scope:global align:4 +sendCmdMsg__13JASTaskThreadFPFPv_vPCvUl = .text:0x800A89BC; // type:function size:0x260 scope:global align:4 +sendCmdMsg__13JASTaskThreadFPFPv_vPv = .text:0x800A8C1C; // type:function size:0x234 scope:global align:4 +run__13JASTaskThreadFv = .text:0x800A8E50; // type:function size:0x148 scope:global align:4 +initSystem__13JASAramStreamFUlUl = .text:0x800A8F98; // type:function size:0x90 scope:global align:4 +__ct__13JASAramStreamFv = .text:0x800A9028; // type:function size:0x158 scope:global align:4 +init__13JASAramStreamFUlUlPFUlP13JASAramStreamPv_vPv = .text:0x800A9180; // type:function size:0xF8 scope:global align:4 +prepare__13JASAramStreamFli = .text:0x800A9278; // type:function size:0xB8 scope:global align:4 +start__13JASAramStreamFv = .text:0x800A9330; // type:function size:0x34 scope:global align:4 +stop__13JASAramStreamFUs = .text:0x800A9364; // type:function size:0x38 scope:global align:4 +pause__13JASAramStreamFb = .text:0x800A939C; // type:function size:0x48 scope:global align:4 +cancel__13JASAramStreamFv = .text:0x800A93E4; // type:function size:0x44 scope:global align:4 +headerLoadTask__13JASAramStreamFPv = .text:0x800A9428; // type:function size:0x30 scope:global align:4 +firstLoadTask__13JASAramStreamFPv = .text:0x800A9458; // type:function size:0xDC scope:global align:4 +loadToAramTask__13JASAramStreamFPv = .text:0x800A9534; // type:function size:0x20 scope:global align:4 +finishTask__13JASAramStreamFPv = .text:0x800A9554; // type:function size:0x60 scope:global align:4 +prepareFinishTask__13JASAramStreamFPv = .text:0x800A95B4; // type:function size:0x58 scope:global align:4 +headerLoad__13JASAramStreamFUli = .text:0x800A960C; // type:function size:0x1CC scope:global align:4 +load__13JASAramStreamFv = .text:0x800A97D8; // type:function size:0x2B4 scope:global align:4 +channelProcCallback__13JASAramStreamFPv = .text:0x800A9A8C; // type:function size:0x20 scope:global align:4 +dvdErrorCheck__13JASAramStreamFPv = .text:0x800A9AAC; // type:function size:0x5C scope:global align:4 +channelCallback__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannelPv = .text:0x800A9B08; // type:function size:0x3C scope:global align:4 +updateChannel__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannel = .text:0x800A9B44; // type:function size:0x758 scope:global align:4 +channelProc__13JASAramStreamFv = .text:0x800AA29C; // type:function size:0x1E4 scope:global align:4 +channelStart__13JASAramStreamFv = .text:0x800AA480; // type:function size:0x240 scope:global align:4 +channelStop__13JASAramStreamFUs = .text:0x800AA6C0; // type:function size:0x78 scope:global align:4 +DSPReleaseHalt2__FUl = .text:0x800AA740; // type:function size:0x48 scope:global align:32 +setup_callback__FUs = .text:0x800AA7A0; // type:function size:0xC scope:local align:32 +DsetupTable__FUlUlUlUlUl = .text:0x800AA7C0; // type:function size:0x64 scope:global align:32 +DsetMixerLevel__Ff = .text:0x800AA840; // type:function size:0x24 scope:global align:32 +DsyncFrame__FUlUlUl = .text:0x800AA880; // type:function size:0x48 scope:global align:32 +DspHandShake__FPv = .text:0x800AA8E0; // type:function size:0x38 scope:local align:32 +DspBoot__FPFPv_v = .text:0x800AA920; // type:function size:0xAC scope:global align:32 +DSPSendCommands2__FPUlUlPFUs_v = .text:0x800AA9E0; // type:function size:0xE8 scope:global align:32 +DspInitWork__Fv = .text:0x800AAAE0; // type:function size:0x2C scope:local align:32 +DspStartWork__FUlPFUs_v = .text:0x800AAB20; // type:function size:0x48 scope:global align:32 +DspFinishWork__FUs = .text:0x800AAB80; // type:function size:0x68 scope:global align:32 +DSPAddTask = .text:0x800AAC00; // type:function size:0x60 scope:global align:32 +DSPAddPriorTask__FP15STRUCT_DSP_TASK = .text:0x800AAC60; // type:function size:0x7C scope:global align:32 +__DSPHandler = .text:0x800AACE0; // type:function size:0x304 scope:global align:32 +DsyncFrame2__FUlUlUl = .text:0x800AB000; // type:function size:0x50 scope:global align:32 +Dsp_Update_Request__Fv = .text:0x800AB060; // type:function size:0x40 scope:local align:32 +Dsp_Running_Check__Fv = .text:0x800AB0A0; // type:function size:0x14 scope:global align:32 +Dsp_Running_Start__Fv = .text:0x800AB0C0; // type:function size:0xC scope:global align:32 +handleStop__13JAIAnimeSoundFUcUl = .text:0x800AB0CC; // type:function size:0x3C scope:global align:4 +__ct__13JAIAnimeSoundFP3VecP7JKRHeapUc = .text:0x800AB108; // type:function size:0x188 scope:global align:4 +initActorAnimSound__13JAIAnimeSoundFP17JAIAnimeSoundDataUlff = .text:0x800AB290; // type:function size:0x194 scope:global align:4 +checkLoopStartCount__13JAIAnimeSoundFf = .text:0x800AB424; // type:function size:0x40 scope:global align:4 +checkLoopEndCount__13JAIAnimeSoundFf = .text:0x800AB464; // type:function size:0x48 scope:global align:4 +setAnimSoundActor__13JAIAnimeSoundFPQ27JAInter5ActorffUc = .text:0x800AB4AC; // type:function size:0x504 scope:global align:4 +playActorAnimSound__13JAIAnimeSoundFPQ27JAInter5ActorfUc = .text:0x800AB9B0; // type:function size:0x280 scope:global align:4 +startAnimSound__13JAIAnimeSoundFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x800ABC30; // type:function size:0x4C scope:global align:4 +setSpeedModifySound__13JAIAnimeSoundFP8JAISoundP22JAIAnimeFrameSoundDataf = .text:0x800ABC7C; // type:function size:0x13C scope:global align:4 +__dt__13JAIAnimeSoundFv = .text:0x800ABDB8; // type:function size:0x60 scope:weak align:4 +enable__Q27JAInter10ObjectBaseFv = .text:0x800ABE18; // type:function size:0xC scope:weak align:4 +setInitCallback__Q27JAInter8BankWaveFPFv_v = .text:0x800ABE24; // type:function size:0x8 scope:global align:4 +setFirstLoadCallback__Q27JAInter8BankWaveFPFv_v = .text:0x800ABE2C; // type:function size:0x8 scope:global align:4 +setSecondLoadCallback__Q27JAInter8BankWaveFPFv_v = .text:0x800ABE34; // type:function size:0x8 scope:global align:4 +init__Q27JAInter8BankWaveFv = .text:0x800ABE3C; // type:function size:0x148 scope:global align:4 +loadFirstStayWave__Q27JAInter8BankWaveFv = .text:0x800ABF84; // type:function size:0x94 scope:global align:4 +loadSecondStayWave__Q27JAInter8BankWaveFv = .text:0x800AC018; // type:function size:0x94 scope:global align:4 +finishSceneSet__Q27JAInter8BankWaveFUl = .text:0x800AC0AC; // type:function size:0x18 scope:global align:4 +loadGroupWave__Q27JAInter8BankWaveFll = .text:0x800AC0C4; // type:function size:0x74 scope:global align:4 +__ct__8JAIBasicFv = .text:0x800AC138; // type:function size:0x7C scope:global align:4 +initDriver__8JAIBasicFP12JKRSolidHeapUlUc = .text:0x800AC1B4; // type:function size:0x20 scope:global align:4 +initInterface__8JAIBasicFUc = .text:0x800AC1D4; // type:function size:0x20 scope:global align:4 +initInterfaceMain__8JAIBasicFv = .text:0x800AC1F4; // type:function size:0xC0 scope:global align:4 +initHeap__8JAIBasicFv = .text:0x800AC2B4; // type:function size:0x5C scope:global align:4 +initArchive__8JAIBasicFv = .text:0x800AC310; // type:function size:0x4C scope:global align:4 +initResourcePath__8JAIBasicFv = .text:0x800AC35C; // type:function size:0xC8 scope:global align:4 +setCameraInfo__8JAIBasicFP3VecP3VecPA4_fUl = .text:0x800AC424; // type:function size:0x34 scope:global align:4 +setRegisterTrackCallback__8JAIBasicFv = .text:0x800AC458; // type:function size:0x28 scope:global align:4 +initAudioThread__8JAIBasicFP12JKRSolidHeapUlUc = .text:0x800AC480; // type:function size:0x98 scope:global align:4 +initCamera__8JAIBasicFv = .text:0x800AC518; // type:function size:0x158 scope:global align:4 +__defctor__Q27JAInter6CameraFv = .text:0x800AC670; // type:function size:0x14 scope:weak align:4 +setInitFileLoadSwitch__8JAIBasicFUc = .text:0x800AC684; // type:function size:0x8 scope:global align:4 +initReadFile__8JAIBasicFv = .text:0x800AC68C; // type:function size:0x6C scope:global align:4 +processFrameWork__8JAIBasicFv = .text:0x800AC6F8; // type:function size:0x64 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC75C; // type:function size:0x64 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP11JAISequencePQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC7C0; // type:function size:0x84 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP5JAISePQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC844; // type:function size:0x64 scope:global align:4 +startSoundBasic__8JAIBasicFUlPP9JAIStreamPQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo = .text:0x800AC8A8; // type:function size:0x58 scope:global align:4 +stopSoundHandle__8JAIBasicFP8JAISoundUl = .text:0x800AC900; // type:function size:0x88 scope:global align:4 +stopAllSe__8JAIBasicFUc = .text:0x800AC988; // type:function size:0xAC scope:global align:4 +stop__9JAIStreamFUl = .text:0x800ACA34; // type:function size:0x20 scope:weak align:4 +stop__11JAISequenceFUl = .text:0x800ACA54; // type:function size:0x20 scope:weak align:4 +getMapInfoFxline__8JAIBasicFUl = .text:0x800ACA74; // type:function size:0x10 scope:global align:4 +getMapInfoGround__8JAIBasicFUl = .text:0x800ACA84; // type:function size:0x10 scope:global align:4 +getMapInfoFxParameter__8JAIBasicFUl = .text:0x800ACA94; // type:function size:0x18 scope:global align:4 +getSoundOffsetNumberFromID__8JAIBasicFUl = .text:0x800ACAAC; // type:function size:0x50 scope:global align:4 +setParameterSeqSync__8JAIBasicFP8JASTrackUs = .text:0x800ACAFC; // type:function size:0x1DC scope:global align:4 +setSeExtParameter__8JAIBasicFP8JAISound = .text:0x800ACCD8; // type:function size:0x104 scope:global align:4 +makeSequence__8JAIBasicFv = .text:0x800ACDDC; // type:function size:0x70 scope:global align:4 +makeSe__8JAIBasicFv = .text:0x800ACE4C; // type:function size:0x70 scope:global align:4 +makeStream__8JAIBasicFv = .text:0x800ACEBC; // type:function size:0x70 scope:global align:4 +stopAudio__8JAIBasicFUlb = .text:0x800ACF2C; // type:function size:0xDC scope:global align:4 +checkAudioStopStatus__8JAIBasicFv = .text:0x800AD008; // type:function size:0x34 scope:global align:4 +stopCallBack__8JAIBasicFPv = .text:0x800AD03C; // type:function size:0x168 scope:global align:4 +transInitDataFile__7JAInterFPUcUl = .text:0x800AD1A4; // type:function size:0xF4 scope:global align:4 +loadTmpDVDFile__7JAInterFPcPPUc = .text:0x800AD298; // type:function size:0xE4 scope:global align:4 +deleteTmpDVDFile__7JAInterFPPUc = .text:0x800AD37C; // type:function size:0x30 scope:global align:4 +routeToTrack__7JAInterFUl = .text:0x800AD3AC; // type:function size:0x40 scope:global align:4 +__sinit_JAIConst_cpp = .text:0x800AD3EC; // type:function size:0x84 scope:local align:4 +init__Q27JAInter14DummyObjectMgrFv = .text:0x800AD470; // type:function size:0xDC scope:global align:4 +getPointer__Q27JAInter14DummyObjectMgrFUl = .text:0x800AD54C; // type:function size:0x68 scope:global align:4 +check__Q27JAInter14DummyObjectMgrFv = .text:0x800AD5B4; // type:function size:0xF8 scope:global align:4 +init__Q27JAInter2FxFv = .text:0x800AD6AC; // type:function size:0x160 scope:global align:4 +setSceneMax__Q27JAInter2FxFUc = .text:0x800AD80C; // type:function size:0x8 scope:global align:4 +setBufferMax__Q27JAInter2FxFUlUlUlUl = .text:0x800AD814; // type:function size:0x24 scope:global align:4 +setTablePointer__Q27JAInter2FxFPPv = .text:0x800AD838; // type:function size:0x8 scope:global align:4 +setBufferPointer__Q27JAInter2FxFUcPs = .text:0x800AD840; // type:function size:0x10 scope:global align:4 +setScenePointer__Q27JAInter2FxFUcPv = .text:0x800AD850; // type:function size:0x10 scope:global align:4 +getSceneMax__Q27JAInter2FxFv = .text:0x800AD860; // type:function size:0x8 scope:global align:4 +getBufferSizeMax__Q27JAInter2FxFUc = .text:0x800AD868; // type:function size:0x10 scope:global align:4 +getBufferPointer__Q27JAInter2FxFUc = .text:0x800AD878; // type:function size:0x10 scope:global align:4 +getFxconfigTable__Q27JAInter2FxFv = .text:0x800AD888; // type:function size:0x8 scope:global align:4 +clearAllBuffer__Q27JAInter2FxFv = .text:0x800AD890; // type:function size:0xA0 scope:global align:4 +setParamInitDataPointer__18JAIGlobalParameterFPv = .text:0x800AD930; // type:function size:0x14 scope:global align:4 +setParamSoundSceneMax__18JAIGlobalParameterFUl = .text:0x800AD944; // type:function size:0x8 scope:global align:4 +setParamSeTrackMax__18JAIGlobalParameterFUl = .text:0x800AD94C; // type:function size:0x8 scope:global align:4 +setParamSeqPlayTrackMax__18JAIGlobalParameterFUl = .text:0x800AD954; // type:function size:0x10 scope:global align:4 +setParamSeqControlBufferMax__18JAIGlobalParameterFUl = .text:0x800AD964; // type:function size:0x8 scope:global align:4 +setParamAutoHeapMax__18JAIGlobalParameterFUl = .text:0x800AD96C; // type:function size:0x8 scope:global align:4 +setParamStayHeapMax__18JAIGlobalParameterFUl = .text:0x800AD974; // type:function size:0x8 scope:global align:4 +setParamDistanceMax__18JAIGlobalParameterFf = .text:0x800AD97C; // type:function size:0x8 scope:global align:4 +setParamMaxVolumeDistance__18JAIGlobalParameterFf = .text:0x800AD984; // type:function size:0x8 scope:global align:4 +setParamMinDistanceVolume__18JAIGlobalParameterFf = .text:0x800AD98C; // type:function size:0x8 scope:global align:4 +setParamStreamInsideBufferCut__18JAIGlobalParameterFb = .text:0x800AD994; // type:function size:0x14 scope:global align:4 +setParamAutoHeapRoomSize__18JAIGlobalParameterFUl = .text:0x800AD9A8; // type:function size:0x8 scope:global align:4 +setParamStayHeapSize__18JAIGlobalParameterFUl = .text:0x800AD9B0; // type:function size:0x8 scope:global align:4 +setParamInitDataFileName__18JAIGlobalParameterFPc = .text:0x800AD9B8; // type:function size:0x8 scope:global align:4 +setParamSequenceArchivesFileName__18JAIGlobalParameterFPc = .text:0x800AD9C0; // type:function size:0x8 scope:global align:4 +setParamDistanceParameterMoveTime__18JAIGlobalParameterFUc = .text:0x800AD9C8; // type:function size:0x8 scope:global align:4 +setParamAudioCameraMax__18JAIGlobalParameterFUl = .text:0x800AD9D0; // type:function size:0x8 scope:global align:4 +setParamSystemTrackMax__18JAIGlobalParameterFl = .text:0x800AD9D8; // type:function size:0x8 scope:global align:4 +setParamSystemRootTrackMax__18JAIGlobalParameterFl = .text:0x800AD9E0; // type:function size:0x8 scope:global align:4 +setParamSoundOutputMode__18JAIGlobalParameterFUl = .text:0x800AD9E8; // type:function size:0x68 scope:global align:4 +getParamSeCategoryMax__18JAIGlobalParameterFv = .text:0x800ADA50; // type:function size:0x24 scope:global align:4 +getParamSoundSceneMax__18JAIGlobalParameterFv = .text:0x800ADA74; // type:function size:0x8 scope:global align:4 +getParamSeRegistMax__18JAIGlobalParameterFv = .text:0x800ADA7C; // type:function size:0x8 scope:global align:4 +getParamSeTrackMax__18JAIGlobalParameterFv = .text:0x800ADA84; // type:function size:0x8 scope:global align:4 +getParamSeqTrackMax__18JAIGlobalParameterFv = .text:0x800ADA8C; // type:function size:0x8 scope:global align:4 +getParamSeqControlBufferMax__18JAIGlobalParameterFv = .text:0x800ADA94; // type:function size:0x8 scope:global align:4 +getParamAutoHeapMax__18JAIGlobalParameterFv = .text:0x800ADA9C; // type:function size:0x8 scope:global align:4 +getParamStayHeapMax__18JAIGlobalParameterFv = .text:0x800ADAA4; // type:function size:0x8 scope:global align:4 +getParamSeqPlayTrackMax__18JAIGlobalParameterFv = .text:0x800ADAAC; // type:function size:0x8 scope:global align:4 +getParamDistanceMax__18JAIGlobalParameterFv = .text:0x800ADAB4; // type:function size:0x8 scope:global align:4 +getParamMaxVolumeDistance__18JAIGlobalParameterFv = .text:0x800ADABC; // type:function size:0x8 scope:global align:4 +getParamMinDistanceVolume__18JAIGlobalParameterFv = .text:0x800ADAC4; // type:function size:0x8 scope:global align:4 +getParamStreamDecodedBufferBlocks__18JAIGlobalParameterFv = .text:0x800ADACC; // type:function size:0x20 scope:global align:4 +getParamAutoHeapRoomSize__18JAIGlobalParameterFv = .text:0x800ADAEC; // type:function size:0x8 scope:global align:4 +getParamStayHeapSize__18JAIGlobalParameterFv = .text:0x800ADAF4; // type:function size:0x8 scope:global align:4 +getParamSeDolbyCenterValue__18JAIGlobalParameterFv = .text:0x800ADAFC; // type:function size:0x8 scope:global align:4 +getParamInitDataFileName__18JAIGlobalParameterFv = .text:0x800ADB04; // type:function size:0x8 scope:global align:4 +getParamWavePath__18JAIGlobalParameterFv = .text:0x800ADB0C; // type:function size:0x8 scope:global align:4 +getParamSequenceArchivesPath__18JAIGlobalParameterFv = .text:0x800ADB14; // type:function size:0x8 scope:global align:4 +getParamStreamPath__18JAIGlobalParameterFv = .text:0x800ADB1C; // type:function size:0x8 scope:global align:4 +getParamAudioResPath__18JAIGlobalParameterFv = .text:0x800ADB24; // type:function size:0x8 scope:global align:4 +getParamSequenceArchivesFileName__18JAIGlobalParameterFv = .text:0x800ADB2C; // type:function size:0x8 scope:global align:4 +getParamDopplarMoveTime__18JAIGlobalParameterFv = .text:0x800ADB34; // type:function size:0x8 scope:global align:4 +getParamDistanceParameterMoveTime__18JAIGlobalParameterFv = .text:0x800ADB3C; // type:function size:0x8 scope:global align:4 +getParamDummyObjectLifeTime__18JAIGlobalParameterFv = .text:0x800ADB44; // type:function size:0x8 scope:global align:4 +getParamDummyObjectMax__18JAIGlobalParameterFv = .text:0x800ADB4C; // type:function size:0x8 scope:global align:4 +getParamSeqMuteVolumeSePlay__18JAIGlobalParameterFv = .text:0x800ADB54; // type:function size:0x8 scope:global align:4 +getParamSeqMuteMoveSpeedSePlay__18JAIGlobalParameterFv = .text:0x800ADB5C; // type:function size:0x8 scope:global align:4 +getParamAudioCameraMax__18JAIGlobalParameterFv = .text:0x800ADB64; // type:function size:0x8 scope:global align:4 +getParamSeqParameterLines__18JAIGlobalParameterFv = .text:0x800ADB6C; // type:function size:0x8 scope:global align:4 +getParamStreamParameterLines__18JAIGlobalParameterFv = .text:0x800ADB74; // type:function size:0x8 scope:global align:4 +getParamSeDistanceWaitMax__18JAIGlobalParameterFv = .text:0x800ADB7C; // type:function size:0x8 scope:global align:4 +setWsInitCallback__Q27JAInter8InitDataFPFPUl_v = .text:0x800ADB84; // type:function size:0x8 scope:global align:4 +setBnkInitCallback__Q27JAInter8InitDataFPFPUl_v = .text:0x800ADB8C; // type:function size:0x8 scope:global align:4 +checkInitDataFile__Q27JAInter8InitDataFv = .text:0x800ADB94; // type:function size:0xE4 scope:global align:4 +checkInitDataOnMemory__Q27JAInter8InitDataFv = .text:0x800ADC78; // type:function size:0x264 scope:global align:4 +initBnkList__Q27JAInter8InitDataFPUl = .text:0x800ADEDC; // type:function size:0xCC scope:global align:4 +initWsList__Q27JAInter8InitDataFPUl = .text:0x800ADFA8; // type:function size:0xD8 scope:global align:4 +init__Q27JAInter5SeMgrFv = .text:0x800AE080; // type:function size:0x3A4 scope:global align:4 +__ct__Q27JAInter11SeParameterFv = .text:0x800AE424; // type:function size:0xF0 scope:weak align:4 +__ct__Q27JAInter19MoveParaSetInitZeroFv = .text:0x800AE514; // type:function size:0x18 scope:weak align:4 +__ct__Q27JAInter19MoveParaSetInitHalfFv = .text:0x800AE52C; // type:function size:0x18 scope:weak align:4 +__defctor__Q27JAInter11MoveParaSetFv = .text:0x800AE544; // type:function size:0x18 scope:weak align:4 +startSeSequence__Q27JAInter5SeMgrFv = .text:0x800AE55C; // type:function size:0x50 scope:global align:4 +processGFrameSe__Q27JAInter5SeMgrFv = .text:0x800AE5AC; // type:function size:0x34 scope:global align:4 +checkNextFrameSe__Q27JAInter5SeMgrFv = .text:0x800AE5E0; // type:function size:0x7E4 scope:global align:4 +checkPlayingSe__Q27JAInter5SeMgrFv = .text:0x800AEDC4; // type:function size:0x488 scope:global align:4 +setVolume__5JAISeFfUlUc = .text:0x800AF24C; // type:function size:0x30 scope:weak align:4 +setSeqMuteFromSeStart__Q27JAInter5SeMgrFP8JAISound = .text:0x800AF27C; // type:function size:0xF0 scope:global align:4 +setVolume__11JAISequenceFfUlUc = .text:0x800AF36C; // type:function size:0x2C scope:weak align:4 +checkSeMovePara__Q27JAInter5SeMgrFv = .text:0x800AF398; // type:function size:0xD4 scope:global align:4 +sendSeAllParameter__Q27JAInter5SeMgrFP5JAISe = .text:0x800AF46C; // type:function size:0x168 scope:global align:4 +checkPlayingSeUpdateMultiplication__Q27JAInter5SeMgrFP5JAISePQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetfUcPf = .text:0x800AF5D4; // type:function size:0x10C scope:global align:4 +checkPlayingSeUpdateAddition__Q27JAInter5SeMgrFP5JAISePQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetUcPff = .text:0x800AF6E0; // type:function size:0x14C scope:global align:4 +changeIDToCategory__Q27JAInter5SeMgrFUl = .text:0x800AF82C; // type:function size:0x8 scope:global align:4 +releaseSeRegist__Q27JAInter5SeMgrFP5JAISe = .text:0x800AF834; // type:function size:0x1D0 scope:global align:4 +storeSeBuffer__Q27JAInter5SeMgrFPP5JAISePQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800AFA04; // type:function size:0x6EC scope:global align:4 +stop__5JAISeFUl = .text:0x800B00F0; // type:function size:0x20 scope:weak align:4 +releaseSeBuffer__Q27JAInter5SeMgrFP5JAISeUl = .text:0x800B0110; // type:function size:0x208 scope:global align:4 +setSeSequenceStartCallback__Q27JAInter5SeMgrFPFv_v = .text:0x800B0318; // type:function size:0x8 scope:global align:4 +init__Q27JAInter7HeapMgrFUcUlUcUl = .text:0x800B0320; // type:function size:0x254 scope:global align:4 +getAutoHeapPointer__Q27JAInter7HeapMgrFv = .text:0x800B0574; // type:function size:0x8 scope:global align:4 +checkOnMemory__Q27JAInter7HeapMgrFUlPUc = .text:0x800B057C; // type:function size:0x100 scope:global align:4 +releaseAutoHeapPointer__Q27JAInter7HeapMgrFUc = .text:0x800B067C; // type:function size:0x24 scope:global align:4 +checkUsefulAutoHeapPosition__Q27JAInter7HeapMgrFv = .text:0x800B06A0; // type:function size:0xE8 scope:global align:4 +getFreeAutoHeapPointer__Q27JAInter7HeapMgrFUcUl = .text:0x800B0788; // type:function size:0x48 scope:global align:4 +checkUsefulStayHeapPosition__Q27JAInter7HeapMgrFv = .text:0x800B07D0; // type:function size:0xC scope:global align:4 +getFreeStayHeapPointer__Q27JAInter7HeapMgrFUlUl = .text:0x800B07DC; // type:function size:0x108 scope:global align:4 +setAutoHeapLoadedFlag__Q27JAInter7HeapMgrFUcUc = .text:0x800B08E4; // type:function size:0x14 scope:global align:4 +setStayHeapLoadedFlag__Q27JAInter7HeapMgrFUcUc = .text:0x800B08F8; // type:function size:0x14 scope:global align:4 +__ct__Q27JAInter9HeapBlockFv = .text:0x800B090C; // type:function size:0x18 scope:global align:4 +init__Q27JAInter11SequenceMgrFv = .text:0x800B0924; // type:function size:0x488 scope:global align:4 +__ct__Q27JAInter7MuteBitFv = .text:0x800B0DAC; // type:function size:0x20 scope:weak align:4 +__ct__Q27JAInter13SeqUpdateDataFv = .text:0x800B0DCC; // type:function size:0x12C scope:global align:4 +__dt__Q27JAInter15PlayerParameterFv = .text:0x800B0EF8; // type:function size:0x68 scope:weak align:4 +__ct__Q27JAInter15PlayerParameterFv = .text:0x800B0F60; // type:function size:0x50 scope:weak align:4 +__dt__10JASPortCmdFv = .text:0x800B0FB0; // type:function size:0x58 scope:weak align:4 +getArchiveName__Q27JAInter11SequenceMgrFPc = .text:0x800B1008; // type:function size:0x6C scope:global align:4 +setArchivePointer__Q27JAInter11SequenceMgrFP10JKRArchive = .text:0x800B1074; // type:function size:0x8 scope:global align:4 +getArchivePointer__Q27JAInter11SequenceMgrFv = .text:0x800B107C; // type:function size:0x8 scope:global align:4 +setCustomHeapCallback__Q27JAInter11SequenceMgrFPFUlUsP11JAISequence_Q37JAInter11SequenceMgr14CustomHeapInfo = .text:0x800B1084; // type:function size:0x8 scope:global align:4 +processGFrameSequence__Q27JAInter11SequenceMgrFv = .text:0x800B108C; // type:function size:0x38 scope:global align:4 +checkEntriedSeq__Q27JAInter11SequenceMgrFv = .text:0x800B10C4; // type:function size:0x430 scope:global align:4 +checkFadeoutSeq__Q27JAInter11SequenceMgrFv = .text:0x800B14F4; // type:function size:0xB8 scope:global align:4 +getVolume__11JAISequenceFUc = .text:0x800B15AC; // type:function size:0x20 scope:weak align:4 +checkStoppedSeq__Q27JAInter11SequenceMgrFv = .text:0x800B15CC; // type:function size:0xA4 scope:global align:4 +checkPlayingSeq__Q27JAInter11SequenceMgrFv = .text:0x800B1670; // type:function size:0xEC scope:global align:4 +checkStartedSeq__Q27JAInter11SequenceMgrFv = .text:0x800B175C; // type:function size:0xA0 scope:global align:4 +checkReadSeq__Q27JAInter11SequenceMgrFv = .text:0x800B17FC; // type:function size:0x224 scope:global align:4 +checkSeqWave__Q27JAInter11SequenceMgrFv = .text:0x800B1A20; // type:function size:0xD8 scope:global align:4 +checkPlayingSeqTrack__Q27JAInter11SequenceMgrFUl = .text:0x800B1AF8; // type:function size:0x1078 scope:global align:4 +setPitch__11JAISequenceFfUlUc = .text:0x800B2B70; // type:function size:0x2C scope:weak align:4 +setPan__11JAISequenceFfUlUc = .text:0x800B2B9C; // type:function size:0x2C scope:weak align:4 +stopSeq__Q27JAInter11SequenceMgrFP11JAISequence = .text:0x800B2BC8; // type:function size:0x130 scope:global align:4 +checkDvdLoadArc__Q27JAInter11SequenceMgrFUlUl = .text:0x800B2CF8; // type:function size:0xE4 scope:global align:4 +checkCustomDvdLoadArc__Q27JAInter11SequenceMgrFUlUl = .text:0x800B2DDC; // type:function size:0x9C scope:global align:4 +storeSeqBuffer__Q27JAInter11SequenceMgrFPP11JAISequencePQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800B2E78; // type:function size:0x430 scope:global align:4 +init__Q27JAInter12SeqParameterFv = .text:0x800B32A8; // type:function size:0x388 scope:weak align:4 +releaseSeqBuffer__Q27JAInter11SequenceMgrFP11JAISequenceUl = .text:0x800B3630; // type:function size:0x1D8 scope:global align:4 +getPlayTrackInfo__Q27JAInter11SequenceMgrFUl = .text:0x800B3808; // type:function size:0x10 scope:global align:4 +__ct__11JAISequenceFv = .text:0x800B3818; // type:function size:0xEC scope:global align:4 +__ct__5JAISeFv = .text:0x800B3904; // type:function size:0x154 scope:global align:4 +__ct__9JAIStreamFv = .text:0x800B3A58; // type:function size:0xAC scope:global align:4 +getSeCategoryNumber__5JAISeFv = .text:0x800B3B04; // type:function size:0x24 scope:global align:4 +getSwBit__8JAISoundFv = .text:0x800B3B28; // type:function size:0xC scope:global align:4 +checkSwBit__8JAISoundFUl = .text:0x800B3B34; // type:function size:0x10 scope:global align:4 +getInfoPriority__8JAISoundFv = .text:0x800B3B44; // type:function size:0xC scope:global align:4 +clearMainSoundPPointer__8JAISoundFv = .text:0x800B3B50; // type:function size:0x18 scope:global align:4 +release__8JAISoundFv = .text:0x800B3B68; // type:function size:0x14 scope:global align:4 +start__8JAISoundFUl = .text:0x800B3B7C; // type:function size:0x4C scope:global align:4 +stop__8JAISoundFUl = .text:0x800B3BC8; // type:function size:0x30 scope:global align:4 +setPrepareFlag__8JAISoundFUc = .text:0x800B3BF8; // type:function size:0x78 scope:global align:4 +setPrepareFlag__9JAIStreamFUc = .text:0x800B3C70; // type:function size:0x20 scope:weak align:4 +setPrepareFlag__11JAISequenceFUc = .text:0x800B3C90; // type:function size:0x20 scope:weak align:4 +checkReady__8JAISoundFv = .text:0x800B3CB0; // type:function size:0x78 scope:global align:4 +checkReady__9JAIStreamFv = .text:0x800B3D28; // type:function size:0x20 scope:weak align:4 +checkReady__11JAISequenceFv = .text:0x800B3D48; // type:function size:0x20 scope:weak align:4 +setDistanceVolumeCommon__8JAISoundFfUc = .text:0x800B3D68; // type:function size:0x154 scope:global align:4 +setDistancePanCommon__8JAISoundFv = .text:0x800B3EBC; // type:function size:0x15C scope:global align:4 +setPositionDopplarCommon__8JAISoundFUl = .text:0x800B4018; // type:function size:0x270 scope:global align:4 +setDistanceDolbyCommon__8JAISoundFv = .text:0x800B4288; // type:function size:0x74 scope:global align:4 +setSeqInterVolume__11JAISequenceFUcfUl = .text:0x800B42FC; // type:function size:0x88 scope:global align:4 +setSeqInterPan__11JAISequenceFUcfUl = .text:0x800B4384; // type:function size:0x88 scope:global align:4 +setSeqInterPitch__11JAISequenceFUcfUl = .text:0x800B440C; // type:function size:0x88 scope:global align:4 +setTrackInterruptSwitch__11JAISequenceFUcUc = .text:0x800B4494; // type:function size:0x28 scope:global align:4 +setTrackFxmix__11JAISequenceFUcfUl = .text:0x800B44BC; // type:function size:0xB0 scope:global align:4 +setTrackPortData__11JAISequenceFUcUcUs = .text:0x800B456C; // type:function size:0xD0 scope:global align:4 +setSeInterVolume__5JAISeFUcfUlUc = .text:0x800B463C; // type:function size:0x158 scope:global align:4 +setSeInterPan__5JAISeFUcfUlUc = .text:0x800B4794; // type:function size:0x158 scope:global align:4 +setSeInterDolby__5JAISeFUcfUlUc = .text:0x800B48EC; // type:function size:0x158 scope:global align:4 +setSeDistanceParameters__5JAISeFv = .text:0x800B4A44; // type:function size:0x12C scope:global align:4 +setFxmix__5JAISeFfUlUc = .text:0x800B4B70; // type:function size:0x30 scope:weak align:4 +setSeDistanceVolume__5JAISeFUc = .text:0x800B4BA0; // type:function size:0x70 scope:global align:4 +setSeDistancePan__5JAISeFUc = .text:0x800B4C10; // type:function size:0x74 scope:global align:4 +setSeDistancePitch__5JAISeFUc = .text:0x800B4C84; // type:function size:0x138 scope:global align:4 +setSePositionDopplar__5JAISeFv = .text:0x800B4DBC; // type:function size:0x80 scope:global align:4 +setSeDistanceFxmix__5JAISeFUc = .text:0x800B4E3C; // type:function size:0xC8 scope:global align:4 +setSeDistanceFir__5JAISeFUc = .text:0x800B4F04; // type:function size:0x4 scope:global align:4 +setSeDistanceDolby__5JAISeFUc = .text:0x800B4F08; // type:function size:0xA4 scope:global align:4 +setStreamPrepareFlag__9JAIStreamFUc = .text:0x800B4FAC; // type:function size:0xC scope:global align:4 +checkStreamReady__9JAIStreamFv = .text:0x800B4FB8; // type:function size:0x40 scope:global align:4 +setChannelVolume__9JAIStreamFUcfUl = .text:0x800B4FF8; // type:function size:0xA0 scope:global align:4 +setChannelPan__9JAIStreamFUcfUl = .text:0x800B5098; // type:function size:0xA0 scope:global align:4 +setPauseMode__8JAISoundFUcUc = .text:0x800B5138; // type:function size:0x1E8 scope:global align:4 +setVolume__9JAIStreamFfUlUc = .text:0x800B5320; // type:function size:0x84 scope:weak align:4 +setVolumeU7__11JAISequenceFUcUlUc = .text:0x800B53A4; // type:function size:0xAC scope:weak align:4 +setSeqPrepareFlag__11JAISequenceFUc = .text:0x800B5450; // type:function size:0xC scope:global align:4 +checkSeqReady__11JAISequenceFv = .text:0x800B545C; // type:function size:0x2C scope:global align:4 +getSeqInterVolume__11JAISequenceFUc = .text:0x800B5488; // type:function size:0x2C scope:global align:4 +getTrackPortRoute__8JAISoundFUcUc = .text:0x800B54B4; // type:function size:0x3C scope:global align:4 +checkSoundHandle__8JAISoundFUlPv = .text:0x800B54F0; // type:function size:0x88 scope:global align:4 +getFadeCounter__11JAISequenceFv = .text:0x800B5578; // type:function size:0x4C scope:global align:4 +getFadeCounter__5JAISeFv = .text:0x800B55C4; // type:function size:0xC scope:global align:4 +getFadeCounter__9JAIStreamFv = .text:0x800B55D0; // type:function size:0x24 scope:global align:4 +initParameter__8JAISoundFPvPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800B55F4; // type:function size:0xE8 scope:global align:4 +init__Q27JAInter9LinkSoundFv = .text:0x800B56DC; // type:function size:0x70 scope:global align:4 +getSound__Q27JAInter9LinkSoundFv = .text:0x800B574C; // type:function size:0x7C scope:global align:4 +onGet__8JAISoundFv = .text:0x800B57C8; // type:function size:0x4 scope:weak align:4 +releaseSound__Q27JAInter9LinkSoundFP8JAISound = .text:0x800B57CC; // type:function size:0x68 scope:global align:4 +onRelease__8JAISoundFv = .text:0x800B5834; // type:function size:0x4 scope:weak align:4 +set__Q27JAInter11MoveParaSetFfUl = .text:0x800B5838; // type:function size:0x98 scope:global align:4 +move__Q27JAInter11MoveParaSetFv = .text:0x800B58D0; // type:function size:0x4C scope:global align:4 +getVolume__9JAIStreamFUc = .text:0x800B591C; // type:function size:0x2C scope:weak align:4 +setPan__9JAIStreamFfUlUc = .text:0x800B5948; // type:function size:0xE4 scope:weak align:4 +getPan__9JAIStreamFUc = .text:0x800B5A2C; // type:function size:0x30 scope:weak align:4 +setPitch__9JAIStreamFfUlUc = .text:0x800B5A5C; // type:function size:0xE4 scope:weak align:4 +getPitch__9JAIStreamFUc = .text:0x800B5B40; // type:function size:0x30 scope:weak align:4 +setFxmix__9JAIStreamFfUlUc = .text:0x800B5B70; // type:function size:0xE4 scope:weak align:4 +getFxmix__9JAIStreamFUc = .text:0x800B5C54; // type:function size:0x30 scope:weak align:4 +setDolby__9JAIStreamFfUlUc = .text:0x800B5C84; // type:function size:0xE4 scope:weak align:4 +getDolby__9JAIStreamFUc = .text:0x800B5D68; // type:function size:0x30 scope:weak align:4 +setVolumeU7__9JAIStreamFUcUlUc = .text:0x800B5D98; // type:function size:0x58 scope:weak align:4 +getVolumeU7__9JAIStreamFUc = .text:0x800B5DF0; // type:function size:0x40 scope:weak align:4 +setPanU7__9JAIStreamFUcUlUc = .text:0x800B5E30; // type:function size:0x58 scope:weak align:4 +getPanU7__9JAIStreamFUc = .text:0x800B5E88; // type:function size:0x40 scope:weak align:4 +setFxmixU7__9JAIStreamFUcUlUc = .text:0x800B5EC8; // type:function size:0x58 scope:weak align:4 +getFxmixU7__9JAIStreamFUc = .text:0x800B5F20; // type:function size:0x40 scope:weak align:4 +setDolbyU7__9JAIStreamFUcUlUc = .text:0x800B5F60; // type:function size:0x58 scope:weak align:4 +getDolbyU7__9JAIStreamFUc = .text:0x800B5FB8; // type:function size:0x40 scope:weak align:4 +setPortData__9JAIStreamFUcUs = .text:0x800B5FF8; // type:function size:0x4 scope:weak align:4 +getPortData__9JAIStreamFUc = .text:0x800B5FFC; // type:function size:0xC scope:weak align:4 +setTempoProportion__8JAISoundFfUl = .text:0x800B6008; // type:function size:0x4 scope:weak align:4 +getTempoProportion__8JAISoundFv = .text:0x800B600C; // type:function size:0x8 scope:weak align:4 +setDirectVolume__8JAISoundFfUl = .text:0x800B6014; // type:function size:0x30 scope:weak align:4 +setDirectPan__8JAISoundFfUl = .text:0x800B6044; // type:function size:0x30 scope:weak align:4 +setDirectPitch__8JAISoundFfUl = .text:0x800B6074; // type:function size:0x30 scope:weak align:4 +setDirectFxmix__8JAISoundFfUl = .text:0x800B60A4; // type:function size:0x30 scope:weak align:4 +setDirectDolby__8JAISoundFfUl = .text:0x800B60D4; // type:function size:0x30 scope:weak align:4 +setDemoVolume__8JAISoundFfUl = .text:0x800B6104; // type:function size:0x30 scope:weak align:4 +setDemoPan__8JAISoundFfUl = .text:0x800B6134; // type:function size:0x30 scope:weak align:4 +setDemoPitch__8JAISoundFfUl = .text:0x800B6164; // type:function size:0x30 scope:weak align:4 +setDemoFxmix__8JAISoundFfUl = .text:0x800B6194; // type:function size:0x30 scope:weak align:4 +setDemoDolby__8JAISoundFfUl = .text:0x800B61C4; // type:function size:0x30 scope:weak align:4 +setDemoVolumeU7__8JAISoundFUcUl = .text:0x800B61F4; // type:function size:0x30 scope:weak align:4 +setDemoPanU7__8JAISoundFUcUl = .text:0x800B6224; // type:function size:0x30 scope:weak align:4 +setDemoFxmixU7__8JAISoundFUcUl = .text:0x800B6254; // type:function size:0x30 scope:weak align:4 +setDemoDolbyU7__8JAISoundFUcUl = .text:0x800B6284; // type:function size:0x30 scope:weak align:4 +setDistanceParameterMoveTime__8JAISoundFUc = .text:0x800B62B4; // type:function size:0x8 scope:weak align:4 +setAdjustPriority__8JAISoundFs = .text:0x800B62BC; // type:function size:0x8 scope:weak align:4 +getVolume__5JAISeFUc = .text:0x800B62C4; // type:function size:0x10 scope:weak align:4 +setPan__5JAISeFfUlUc = .text:0x800B62D4; // type:function size:0x90 scope:weak align:4 +getPan__5JAISeFUc = .text:0x800B6364; // type:function size:0x10 scope:weak align:4 +setPitch__5JAISeFfUlUc = .text:0x800B6374; // type:function size:0x90 scope:weak align:4 +getPitch__5JAISeFUc = .text:0x800B6404; // type:function size:0x10 scope:weak align:4 +getFxmix__5JAISeFUc = .text:0x800B6414; // type:function size:0x10 scope:weak align:4 +setDolby__5JAISeFfUlUc = .text:0x800B6424; // type:function size:0x90 scope:weak align:4 +getDolby__5JAISeFUc = .text:0x800B64B4; // type:function size:0x10 scope:weak align:4 +setVolumeU7__5JAISeFUcUlUc = .text:0x800B64C4; // type:function size:0xB4 scope:weak align:4 +getVolumeU7__5JAISeFUc = .text:0x800B6578; // type:function size:0x2C scope:weak align:4 +setPanU7__5JAISeFUcUlUc = .text:0x800B65A4; // type:function size:0xB4 scope:weak align:4 +getPanU7__5JAISeFUc = .text:0x800B6658; // type:function size:0x2C scope:weak align:4 +setFxmixU7__5JAISeFUcUlUc = .text:0x800B6684; // type:function size:0xB4 scope:weak align:4 +getFxmixU7__5JAISeFUc = .text:0x800B6738; // type:function size:0x2C scope:weak align:4 +setDolbyU7__5JAISeFUcUlUc = .text:0x800B6764; // type:function size:0xB4 scope:weak align:4 +getDolbyU7__5JAISeFUc = .text:0x800B6818; // type:function size:0x2C scope:weak align:4 +setPortData__5JAISeFUcUs = .text:0x800B6844; // type:function size:0x130 scope:weak align:4 +getPortData__5JAISeFUc = .text:0x800B6974; // type:function size:0xAC scope:weak align:4 +getPan__11JAISequenceFUc = .text:0x800B6A20; // type:function size:0x30 scope:weak align:4 +getPitch__11JAISequenceFUc = .text:0x800B6A50; // type:function size:0x30 scope:weak align:4 +setFxmix__11JAISequenceFfUlUc = .text:0x800B6A80; // type:function size:0xE4 scope:weak align:4 +getFxmix__11JAISequenceFUc = .text:0x800B6B64; // type:function size:0x30 scope:weak align:4 +setDolby__11JAISequenceFfUlUc = .text:0x800B6B94; // type:function size:0x110 scope:weak align:4 +getDolby__11JAISequenceFUc = .text:0x800B6CA4; // type:function size:0x30 scope:weak align:4 +setTempoProportion__11JAISequenceFfUl = .text:0x800B6CD4; // type:function size:0x98 scope:weak align:4 +getTempoProportion__11JAISequenceFv = .text:0x800B6D6C; // type:function size:0x24 scope:weak align:4 +getVolumeU7__11JAISequenceFUc = .text:0x800B6D90; // type:function size:0x48 scope:weak align:4 +setPanU7__11JAISequenceFUcUlUc = .text:0x800B6DD8; // type:function size:0x148 scope:weak align:4 +getPanU7__11JAISequenceFUc = .text:0x800B6F20; // type:function size:0x4C scope:weak align:4 +setFxmixU7__11JAISequenceFUcUlUc = .text:0x800B6F6C; // type:function size:0x148 scope:weak align:4 +getFxmixU7__11JAISequenceFUc = .text:0x800B70B4; // type:function size:0x4C scope:weak align:4 +setDolbyU7__11JAISequenceFUcUlUc = .text:0x800B7100; // type:function size:0x134 scope:weak align:4 +getDolbyU7__11JAISequenceFUc = .text:0x800B7234; // type:function size:0x4C scope:weak align:4 +setPortData__11JAISequenceFUcUs = .text:0x800B7280; // type:function size:0x17C scope:weak align:4 +getPortData__11JAISequenceFUc = .text:0x800B73FC; // type:function size:0x30 scope:weak align:4 +init__Q27JAInter10SoundTableFPUcUl = .text:0x800B742C; // type:function size:0xCC scope:global align:4 +getInfoPointer__Q27JAInter10SoundTableFUl = .text:0x800B74F8; // type:function size:0xC4 scope:global align:4 +getInfoFormat__Q27JAInter10SoundTableFUl = .text:0x800B75BC; // type:function size:0x58 scope:global align:4 +getCategotyMax__Q27JAInter10SoundTableFv = .text:0x800B7614; // type:function size:0x8 scope:global align:4 +getSoundMax__Q27JAInter10SoundTableFUc = .text:0x800B761C; // type:function size:0x10 scope:global align:4 +init__Q27JAInter9StreamMgrFv = .text:0x800B762C; // type:function size:0x31C scope:global align:4 +storeStreamBuffer__Q27JAInter9StreamMgrFPP9JAIStreamPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x800B7948; // type:function size:0x358 scope:global align:4 +releaseStreamBuffer__Q27JAInter9StreamMgrFP9JAIStreamUl = .text:0x800B7CA0; // type:function size:0x88 scope:global align:4 +checkSystem__Q27JAInter9StreamMgrFv = .text:0x800B7D28; // type:function size:0x1AC scope:global align:4 +PlayingStream__Q27JAInter9StreamMgrFv = .text:0x800B7ED4; // type:function size:0xA00 scope:global align:4 +changeCallback__Q27JAInter9StreamMgrFv = .text:0x800B88D4; // type:function size:0xA8 scope:global align:4 +processGFrameStream__Q27JAInter9StreamMgrFv = .text:0x800B897C; // type:function size:0x30 scope:global align:4 +checkEntriedStream__Q27JAInter9StreamMgrFv = .text:0x800B89AC; // type:function size:0xE8 scope:global align:4 +systemCallBack__Q27JAInter9StreamMgrFUlP13JASAramStreamPv = .text:0x800B8A94; // type:function size:0x70 scope:global align:4 +prepareSystem__Q27JAInter9StreamMgrFl = .text:0x800B8B04; // type:function size:0xC8 scope:global align:4 +playDirect__Q27JAInter9StreamMgrFPc = .text:0x800B8BCC; // type:function size:0x198 scope:global align:4 +stopDirect__Q27JAInter9StreamMgrFv = .text:0x800B8D64; // type:function size:0x3C scope:global align:4 +initChannel__Q27JAInter9StreamMgrFv = .text:0x800B8DA0; // type:function size:0xEC scope:global align:4 +getStreamObjectPointer__Q27JAInter9StreamMgrFv = .text:0x800B8E8C; // type:function size:0x8 scope:global align:4 +getSystemStatus__Q27JAInter9StreamMgrFv = .text:0x800B8E94; // type:function size:0x8 scope:global align:4 +getDecodedBufferBlocks__Q27JAInter9StreamMgrFv = .text:0x800B8E9C; // type:function size:0x8 scope:global align:4 +getDecodedBufferSize__Q27JAInter9StreamMgrFUl = .text:0x800B8EA4; // type:function size:0x18 scope:global align:4 +getChannelMax__Q27JAInter9StreamMgrFv = .text:0x800B8EBC; // type:function size:0x8 scope:global align:4 +checkFileExsistence__Q27JAInter15SystemInterfaceFPc = .text:0x800B8EC4; // type:function size:0x30 scope:global align:4 +checkSeqActiveFlag__Q27JAInter15SystemInterfaceFP8JASTrack = .text:0x800B8EF4; // type:function size:0xEC scope:global align:4 +trackToSeqp__Q27JAInter15SystemInterfaceFP11JAISequenceUc = .text:0x800B8FE0; // type:function size:0x4C scope:global align:4 +setSeqPortargsF32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcf = .text:0x800B902C; // type:function size:0x1C scope:global align:4 +setSeqPortargsU32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcUl = .text:0x800B9048; // type:function size:0x1C scope:global align:4 +rootInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData = .text:0x800B9064; // type:function size:0x58 scope:global align:4 +trackInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData = .text:0x800B90BC; // type:function size:0x88 scope:global align:4 +outerInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataP8JASTrackUlUsUc = .text:0x800B9144; // type:function size:0x288 scope:global align:4 +setSePortParameter__Q27JAInter15SystemInterfaceFP11JASPortArgs = .text:0x800B93CC; // type:function size:0x1BC scope:global align:4 +__sinit_JAISystemInterface_cpp = .text:0x800B9588; // type:function size:0x54 scope:local align:4 +__dt__Q27JAInter10ObjectBaseFv = .text:0x800B95DC; // type:function size:0x74 scope:global align:4 +startSound__Q27JAInter10ObjectBaseFUlUl = .text:0x800B9650; // type:function size:0x164 scope:global align:4 +handleStop__Q27JAInter10ObjectBaseFUcUl = .text:0x800B97B4; // type:function size:0x44 scope:global align:4 +startSound__Q27JAInter10ObjectBaseFUcUlUl = .text:0x800B97F8; // type:function size:0x48 scope:global align:4 +startSound__Q27JAInter10ObjectBaseFPP8JAISoundUlUl = .text:0x800B9840; // type:function size:0x44 scope:global align:4 +stopSound__Q27JAInter10ObjectBaseFUlUl = .text:0x800B9884; // type:function size:0x60 scope:global align:4 +stopAllSound__Q27JAInter10ObjectBaseFv = .text:0x800B98E4; // type:function size:0x68 scope:global align:4 +disable__Q27JAInter10ObjectBaseFv = .text:0x800B994C; // type:function size:0x44 scope:global align:4 +dispose__Q27JAInter10ObjectBaseFv = .text:0x800B9990; // type:function size:0x40 scope:global align:4 +getFreeSoundHandlePointer__Q27JAInter10ObjectBaseFv = .text:0x800B99D0; // type:function size:0x5C scope:global align:4 +getUseSoundHandlePointer__Q27JAInter10ObjectBaseFUl = .text:0x800B9A2C; // type:function size:0x54 scope:global align:4 +getUseSoundHandleNo__Q27JAInter10ObjectBaseFUl = .text:0x800B9A80; // type:function size:0x4C scope:global align:4 +__ct__Q27JAInter6ObjectFP3VecP7JKRHeapUc = .text:0x800B9ACC; // type:function size:0xF4 scope:global align:4 +__dt__Q27JAInter6ObjectFv = .text:0x800B9BC0; // type:function size:0x84 scope:global align:4 +startSound__Q27JAInter6ObjectFUlUl = .text:0x800B9C44; // type:function size:0x21C scope:global align:4 +disable__Q27JAInter6ObjectFv = .text:0x800B9E60; // type:function size:0x158 scope:global align:4 +loop__Q27JAInter6ObjectFv = .text:0x800B9FB8; // type:function size:0x214 scope:global align:4 +__ct__10JADHioNodeFPCc = .text:0x800BA1CC; // type:function size:0x10 scope:global align:4 +__dt__10JADHioNodeFv = .text:0x800BA1DC; // type:function size:0x48 scope:global align:4 +linearTransform__7JALCalcFfffffb = .text:0x800BA224; // type:function size:0x64 scope:global align:4 +getParamByExp__7JALCalcFffffffQ27JALCalc9CurveSign = .text:0x800BA288; // type:function size:0x18C scope:global align:4 +getRandom__7JALCalcFfff = .text:0x800BA414; // type:function size:0xC0 scope:global align:4 +getRandom_0_1__7JALCalcFv = .text:0x800BA4D4; // type:function size:0x70 scope:global align:4 +__ct__Q210JADUtility10PrmSetBaseFb = .text:0x800BA544; // type:function size:0xAC scope:global align:4 +load__Q210JADUtility10PrmSetBaseFR20JSUMemoryInputStream = .text:0x800BA5F0; // type:function size:0x98 scope:global align:4 +load__Q210JADUtility7PrmBaseFR20JSUMemoryInputStream = .text:0x800BA688; // type:function size:0x40 scope:weak align:4 +__dt__Q210JADUtility10PrmSetBaseFv = .text:0x800BA6C8; // type:function size:0xE8 scope:weak align:4 +appendAfter__Q210JADUtility10PrmSetBaseFv = .text:0x800BA7B0; // type:function size:0x4 scope:weak align:4 +afterRemovingChildButton__Q210JADUtility10PrmSetBaseFPQ210JADUtility10PrmSetBase = .text:0x800BA7B4; // type:function size:0x4 scope:weak align:4 +afterRemovingThisButton__Q210JADUtility10PrmSetBaseFPQ210JADUtility10PrmSetBase = .text:0x800BA7B8; // type:function size:0x4 scope:weak align:4 +getEraseLink__Q210JADUtility10PrmSetBaseFv = .text:0x800BA7BC; // type:function size:0x8 scope:weak align:4 +afterGetFromFree__Q210JADUtility10PrmSetBaseFv = .text:0x800BA7C4; // type:function size:0x4 scope:weak align:4 +beforeRemovingChild__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase = .text:0x800BA7C8; // type:function size:0x4 scope:weak align:4 +beforeRemovingThis__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase = .text:0x800BA7CC; // type:function size:0x4 scope:weak align:4 +afterRemovingChildButton__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase = .text:0x800BA7D0; // type:function size:0x4 scope:weak align:4 +afterRemovingThisButton__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBasePQ210JADUtility10PrmSetBase = .text:0x800BA7D4; // type:function size:0x4 scope:weak align:4 +__ct__Q210JADUtility11DataMgrBaseFv = .text:0x800BA7D8; // type:function size:0x44 scope:global align:4 +__dt__Q210JADUtility11DataMgrBaseFv = .text:0x800BA81C; // type:function size:0x78 scope:global align:4 +__dt__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BA894; // type:function size:0xC8 scope:global align:4 +isTempBuffaMode__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BA95C; // type:function size:0x8 scope:weak align:4 +initInstanceExt__Q210JADUtility15DataLoadMgrNodeFPvl = .text:0x800BA964; // type:function size:0xF0 scope:global align:4 +setFlagsAsExternal__Q210JADUtility15DataLoadMgrNodeFPv = .text:0x800BAA54; // type:function size:0x14 scope:global align:4 +__ct__Q210JADUtility11DataMgrNodeFv = .text:0x800BAA68; // type:function size:0x15C scope:global align:4 +__dt__Q210JADUtility6StrPrmFv = .text:0x800BABC4; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility10PrmHioFv = .text:0x800BAC6C; // type:function size:0x98 scope:weak align:4 +__dt__Q210JADUtility7PrmFv = .text:0x800BAD04; // type:function size:0x88 scope:weak align:4 +__dt__Q210JADUtility7PrmBaseFv = .text:0x800BAD8C; // type:function size:0x78 scope:weak align:4 +save__Q210JADUtility6StrPrmFR21JSUMemoryOutputStream = .text:0x800BAE04; // type:function size:0xA0 scope:weak align:4 +load__Q210JADUtility6StrPrmFR20JSUMemoryInputStream = .text:0x800BAEA4; // type:function size:0xA0 scope:weak align:4 +save__Q210JADUtility7PrmBaseFR21JSUMemoryOutputStream = .text:0x800BAF44; // type:function size:0x78 scope:weak align:4 +__dt__Q210JADUtility11DataMgrNodeFv = .text:0x800BAFBC; // type:function size:0x164 scope:weak align:4 +getPath__Q210JADUtility11DataMgrNodeFv = .text:0x800BB120; // type:function size:0x8 scope:weak align:4 +setPath__Q210JADUtility11DataMgrNodeFPc = .text:0x800BB128; // type:function size:0x50 scope:weak align:4 +init__Q210JADUtility11DataMgrNodeFv = .text:0x800BB178; // type:function size:0x44 scope:weak align:4 +init__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BB1BC; // type:function size:0x44 scope:weak align:4 +init__Q210JADUtility11DataMgrBaseFv = .text:0x800BB200; // type:function size:0x3C scope:weak align:4 +save__Q210JADUtility7PrmFR21JSUMemoryOutputStream = .text:0x800BB23C; // type:function size:0x84 scope:weak align:4 +load__Q210JADUtility7PrmFR20JSUMemoryInputStream = .text:0x800BB2C0; // type:function size:0x60 scope:weak align:4 +@532@28@init__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BB320; // type:function size:0x14 scope:weak align:4 +@532@28@__dt__Q210JADUtility15DataLoadMgrNodeFv = .text:0x800BB334; // type:function size:0x14 scope:weak align:4 +@592@28@init__Q210JADUtility11DataMgrNodeFv = .text:0x800BB348; // type:function size:0x14 scope:weak align:4 +@592@28@__dt__Q210JADUtility11DataMgrNodeFv = .text:0x800BB35C; // type:function size:0x14 scope:weak align:4 +TRKNubMainLoop = .text:0x800BB370; // type:function size:0xF8 scope:global align:4 +TRKDestructEvent = .text:0x800BB468; // type:function size:0x24 scope:global align:4 +TRKConstructEvent = .text:0x800BB48C; // type:function size:0x18 scope:global align:4 +TRKPostEvent = .text:0x800BB4A4; // type:function size:0xE0 scope:global align:4 +TRKGetNextEvent = .text:0x800BB584; // type:function size:0xB4 scope:global align:4 +TRKInitializeEventQueue = .text:0x800BB638; // type:function size:0x58 scope:global align:4 +TRKNubWelcome = .text:0x800BB690; // type:function size:0x28 scope:global align:4 +TRKTerminateNub = .text:0x800BB6B8; // type:function size:0x24 scope:global align:4 +TRKInitializeNub = .text:0x800BB6DC; // type:function size:0x14C scope:global align:4 +TRKMessageSend = .text:0x800BB828; // type:function size:0x44 scope:global align:4 +TRKReadBuffer_ui32 = .text:0x800BB86C; // type:function size:0xF0 scope:global align:4 +TRKReadBuffer_ui8 = .text:0x800BB95C; // type:function size:0x98 scope:global align:4 +TRKReadBuffer1_ui64 = .text:0x800BB9F4; // type:function size:0xE8 scope:global align:4 +TRKAppendBuffer_ui32 = .text:0x800BBADC; // type:function size:0xFC scope:global align:4 +TRKAppendBuffer_ui8 = .text:0x800BBBD8; // type:function size:0x68 scope:global align:4 +TRKAppendBuffer1_ui64 = .text:0x800BBC40; // type:function size:0xFC scope:global align:4 +TRKReadBuffer = .text:0x800BBD3C; // type:function size:0x8C scope:global align:4 +TRKAppendBuffer = .text:0x800BBDC8; // type:function size:0xA4 scope:global align:4 +TRKSetBufferPosition = .text:0x800BBE6C; // type:function size:0x30 scope:global align:4 +TRKResetBuffer = .text:0x800BBE9C; // type:function size:0x40 scope:global align:4 +TRKReleaseBuffer = .text:0x800BBEDC; // type:function size:0x64 scope:global align:4 +TRKGetBuffer = .text:0x800BBF40; // type:function size:0x2C scope:global align:4 +TRKGetFreeBuffer = .text:0x800BBF6C; // type:function size:0xC8 scope:global align:4 +TRKInitializeMessageBuffers = .text:0x800BC034; // type:function size:0x74 scope:global align:4 +TRKTerminateSerialHandler = .text:0x800BC0A8; // type:function size:0x8 scope:global align:4 +TRKInitializeSerialHandler = .text:0x800BC0B0; // type:function size:0xC4 scope:global align:4 +TRKProcessInput = .text:0x800BC174; // type:function size:0x50 scope:global align:4 +TRKGetInput = .text:0x800BC1C4; // type:function size:0x60 scope:global align:4 +TRKTestForPacket = .text:0x800BC224; // type:function size:0x13C scope:global align:4 +usr_put_initialize = .text:0x800BC360; // type:function size:0x4 scope:global align:4 +usr_puts_serial = .text:0x800BC364; // type:function size:0x88 scope:global align:4 +TRKDispatchMessage = .text:0x800BC3EC; // type:function size:0x170 scope:global align:4 +TRKInitializeDispatcher = .text:0x800BC55C; // type:function size:0x8 scope:global align:4 +TRKDoSetOption = .text:0x800BC564; // type:function size:0xA8 scope:global align:4 +TRKDoStop = .text:0x800BC60C; // type:function size:0xA8 scope:global align:4 +TRKDoStep = .text:0x800BC6B4; // type:function size:0x220 scope:global align:4 +TRKDoContinue = .text:0x800BC8D4; // type:function size:0xB0 scope:global align:4 +TRKDoWriteRegisters = .text:0x800BC984; // type:function size:0x290 scope:global align:4 +TRKDoReadRegisters = .text:0x800BCC14; // type:function size:0x2E0 scope:global align:4 +TRKDoWriteMemory = .text:0x800BCEF4; // type:function size:0x23C scope:global align:4 +TRKDoReadMemory = .text:0x800BD130; // type:function size:0x244 scope:global align:4 +TRKDoSupportMask = .text:0x800BD374; // type:function size:0x8 scope:global align:4 +TRKDoVersions = .text:0x800BD37C; // type:function size:0x8 scope:global align:4 +TRKDoOverride = .text:0x800BD384; // type:function size:0x58 scope:global align:4 +TRKDoReset = .text:0x800BD3DC; // type:function size:0x58 scope:global align:4 +TRKDoDisconnect = .text:0x800BD434; // type:function size:0x78 scope:global align:4 +TRKDoConnect = .text:0x800BD4AC; // type:function size:0x64 scope:global align:4 +SetTRKConnected = .text:0x800BD510; // type:function size:0xC scope:global align:4 +GetTRKConnected = .text:0x800BD51C; // type:function size:0x10 scope:global align:4 +OutputData = .text:0x800BD52C; // type:function size:0xA8 scope:global align:4 +HandlePositionFileSupportRequest = .text:0x800BD5D4; // type:function size:0x110 scope:global align:4 +HandleCloseFileSupportRequest = .text:0x800BD6E4; // type:function size:0xE8 scope:global align:4 +HandleOpenFileSupportRequest = .text:0x800BD7CC; // type:function size:0x11C scope:global align:4 +TRKRequestSend = .text:0x800BD8E8; // type:function size:0x1E0 scope:global align:4 +TRKSuppAccessFile = .text:0x800BDAC8; // type:function size:0x220 scope:global align:4 +TRKReleaseMutex = .text:0x800BDCE8; // type:function size:0x8 scope:global align:4 +TRKAcquireMutex = .text:0x800BDCF0; // type:function size:0x8 scope:global align:4 +TRKInitializeMutex = .text:0x800BDCF8; // type:function size:0x8 scope:global align:4 +TRKDoNotifyStopped = .text:0x800BDD00; // type:function size:0x98 scope:global align:4 +TRK_flush_cache = .text:0x800BDD98; // type:function size:0x38 scope:global align:4 +TRK_fill_mem = .text:0x800BDDD0; // type:function size:0xB8 scope:local align:4 +__TRK_get_MSR = .text:0x800BDE88; // type:function size:0x8 scope:global align:4 +__TRK_set_MSR = .text:0x800BDE90; // type:function size:0x8 scope:global align:4 +TRK_ppc_memcpy = .text:0x800BDE98; // type:function size:0x3C scope:local align:4 +TRKInterruptHandler = .text:0x800BDED4; // type:function size:0x194 scope:global align:4 +TRKExceptionHandler = .text:0x800BE068; // type:function size:0x9C scope:global align:4 +TRKSwapAndGo = .text:0x800BE104; // type:function size:0xC4 scope:global align:4 +TRKInterruptHandlerEnableInterrupts = .text:0x800BE1C8; // type:function size:0x54 scope:global align:4 +ReadFPSCR = .text:0x800BE21C; // type:function size:0x24 scope:global align:4 +WriteFPSCR = .text:0x800BE240; // type:function size:0x24 scope:global align:4 +TRKTargetAccessARAM = .text:0x800BE264; // type:function size:0xC4 scope:global align:4 +TRKTargetSetInputPendingPtr = .text:0x800BE328; // type:function size:0x10 scope:global align:4 +TRKTargetStop = .text:0x800BE338; // type:function size:0x18 scope:global align:4 +TRKTargetSetStopped = .text:0x800BE350; // type:function size:0x10 scope:global align:4 +TRKTargetStopped = .text:0x800BE360; // type:function size:0x10 scope:global align:4 +TRKTargetSupportRequest = .text:0x800BE370; // type:function size:0x200 scope:global align:4 +TRKTargetGetPC = .text:0x800BE570; // type:function size:0x10 scope:global align:4 +TRKTargetStepOutOfRange = .text:0x800BE580; // type:function size:0xB8 scope:global align:4 +TRKTargetSingleStep = .text:0x800BE638; // type:function size:0xAC scope:global align:4 +TRKTargetAddExceptionInfo = .text:0x800BE6E4; // type:function size:0x84 scope:global align:4 +TRKTargetAddStopInfo = .text:0x800BE768; // type:function size:0x8C scope:global align:4 +TRKTargetInterrupt = .text:0x800BE7F4; // type:function size:0x190 scope:global align:4 +TRKPostInterruptEvent = .text:0x800BE984; // type:function size:0xAC scope:global align:4 +TRKTargetAccessExtended2 = .text:0x800BEA30; // type:function size:0x438 scope:global align:4 +TRKTargetAccessExtended1 = .text:0x800BEE68; // type:function size:0x170 scope:global align:4 +TRKTargetAccessFP = .text:0x800BEFD8; // type:function size:0x50C scope:global align:4 +TRKTargetAccessDefault = .text:0x800BF4E4; // type:function size:0xF4 scope:global align:4 +TRKTargetReadInstruction = .text:0x800BF5D8; // type:function size:0x4C scope:global align:4 +TRKTargetAccessMemory = .text:0x800BF624; // type:function size:0x14C scope:global align:4 +TRKValidMemory32 = .text:0x800BF770; // type:function size:0x2A4 scope:global align:4 +TRKAccessFile = .text:0x800BFA20; // type:label scope:global +TRKOpenFile = .text:0x800BFA28; // type:label scope:global +TRKCloseFile = .text:0x800BFA30; // type:label scope:global +TRKPositionFile = .text:0x800BFA38; // type:label scope:global +TRKSaveExtended1Block = .text:0x800BFA40; // type:function size:0x1B8 scope:global align:4 +TRKRestoreExtended1Block = .text:0x800BFBF8; // type:function size:0x1B8 scope:global align:4 +InitMetroTRK = .text:0x800BFDB0; // type:function size:0x98 scope:global align:4 +InitMetroTRK_BBA = .text:0x800BFE48; // type:function size:0x94 scope:global align:4 +TRK__write_aram = .text:0x800BFEDC; // type:function size:0x1EC scope:global align:4 +TRK__read_aram = .text:0x800C00C8; // type:function size:0x134 scope:global align:4 +TRKInitializeTarget = .text:0x800C01FC; // type:function size:0x4C scope:global align:4 +__TRK_copy_vectors = .text:0x800C0248; // type:function size:0x12C scope:global align:4 +TRKTargetTranslate = .text:0x800C0374; // type:function size:0x58 scope:global align:4 +EnableMetroTRKInterrupts = .text:0x800C03CC; // type:function size:0x20 scope:global align:4 +TRK_main = .text:0x800C03EC; // type:function size:0x58 scope:global align:4 +TRKLoadContext = .text:0x800C0444; // type:function size:0x88 scope:global align:4 +TRKUARTInterruptHandler = .text:0x800C04CC; // type:function size:0x4 scope:global align:4 +InitializeProgramEndTrap = .text:0x800C04D0; // type:function size:0x58 scope:global align:4 +TRK_board_display = .text:0x800C0528; // type:function size:0x30 scope:global align:4 +UnreserveEXI2Port = .text:0x800C0558; // type:function size:0x30 scope:global align:4 +ReserveEXI2Port = .text:0x800C0588; // type:function size:0x30 scope:global align:4 +TRKWriteUARTN = .text:0x800C05B8; // type:function size:0x3C scope:global align:4 +TRKReadUARTN = .text:0x800C05F4; // type:function size:0x3C scope:global align:4 +TRKPollUART = .text:0x800C0630; // type:function size:0x30 scope:global align:4 +EnableEXI2Interrupts = .text:0x800C0660; // type:function size:0x48 scope:global align:4 +TRKInitializeIntDrivenUART = .text:0x800C06A8; // type:function size:0x50 scope:global align:4 +InitMetroTRKCommTable = .text:0x800C06F8; // type:function size:0x26C scope:global align:4 +TRKEXICallBack = .text:0x800C0964; // type:function size:0x38 scope:global align:4 +TRKTargetContinue = .text:0x800C099C; // type:function size:0x34 scope:global align:4 +GetUseSerialIO = .text:0x800C09D0; // type:function size:0x10 scope:global align:4 +SetUseSerialIO = .text:0x800C09E0; // type:function size:0xC scope:global align:4 +__close_console = .text:0x800C09EC; // type:function size:0x84 scope:global align:4 +__TRK_write_console = .text:0x800C0A70; // type:function size:0xBC scope:global align:4 +__read_console = .text:0x800C0B2C; // type:function size:0xBC scope:global align:4 +udp_cc_post_stop = .text:0x800C0BE8; // type:function size:0x8 scope:weak align:4 +udp_cc_pre_continue = .text:0x800C0BF0; // type:function size:0x8 scope:weak align:4 +udp_cc_peek = .text:0x800C0BF8; // type:function size:0x8 scope:weak align:4 +udp_cc_write = .text:0x800C0C00; // type:function size:0x8 scope:weak align:4 +udp_cc_read = .text:0x800C0C08; // type:function size:0x8 scope:weak align:4 +udp_cc_close = .text:0x800C0C10; // type:function size:0x8 scope:weak align:4 +udp_cc_open = .text:0x800C0C18; // type:function size:0x8 scope:weak align:4 +udp_cc_shutdown = .text:0x800C0C20; // type:function size:0x8 scope:weak align:4 +udp_cc_initialize = .text:0x800C0C28; // type:function size:0x8 scope:weak align:4 +ddh_cc_initinterrupts = .text:0x800C0C30; // type:function size:0x24 scope:global align:4 +ddh_cc_peek = .text:0x800C0C54; // type:function size:0x70 scope:global align:4 +ddh_cc_post_stop = .text:0x800C0CC4; // type:function size:0x24 scope:global align:4 +ddh_cc_pre_continue = .text:0x800C0CE8; // type:function size:0x24 scope:global align:4 +ddh_cc_write = .text:0x800C0D0C; // type:function size:0xC0 scope:global align:4 +ddh_cc_read = .text:0x800C0DCC; // type:function size:0xEC scope:global align:4 +ddh_cc_close = .text:0x800C0EB8; // type:function size:0x8 scope:global align:4 +ddh_cc_open = .text:0x800C0EC0; // type:function size:0x24 scope:global align:4 +ddh_cc_shutdown = .text:0x800C0EE4; // type:function size:0x8 scope:global align:4 +ddh_cc_initialize = .text:0x800C0EEC; // type:function size:0x88 scope:global align:4 +CircleBufferReadBytes = .text:0x800C0F74; // type:function size:0x108 scope:global align:4 +CircleBufferWriteBytes = .text:0x800C107C; // type:function size:0x108 scope:global align:4 +CircleBufferInitialize = .text:0x800C1184; // type:function size:0x50 scope:global align:4 +CBGetBytesAvailableForRead = .text:0x800C11D4; // type:function size:0x8 scope:global align:4 +gdev_cc_initinterrupts = .text:0x800C11DC; // type:function size:0x24 scope:global align:4 +gdev_cc_peek = .text:0x800C1200; // type:function size:0x70 scope:global align:4 +gdev_cc_post_stop = .text:0x800C1270; // type:function size:0x24 scope:global align:4 +gdev_cc_pre_continue = .text:0x800C1294; // type:function size:0x24 scope:global align:4 +gdev_cc_write = .text:0x800C12B8; // type:function size:0xC0 scope:global align:4 +gdev_cc_read = .text:0x800C1378; // type:function size:0xF4 scope:global align:4 +gdev_cc_close = .text:0x800C146C; // type:function size:0x8 scope:global align:4 +gdev_cc_open = .text:0x800C1474; // type:function size:0x24 scope:global align:4 +gdev_cc_shutdown = .text:0x800C1498; // type:function size:0x8 scope:global align:4 +gdev_cc_initialize = .text:0x800C14A0; // type:function size:0x88 scope:global align:4 +MWTRACE = .text:0x800C1528; // type:function size:0x50 scope:global align:4 +MWExitCriticalSection = .text:0x800C1578; // type:function size:0x24 scope:global align:4 +MWEnterCriticalSection = .text:0x800C159C; // type:function size:0x30 scope:global align:4 +MWInitializeCriticalSection = .text:0x800C15CC; // type:function size:0x4 scope:global align:4 +__va_arg = .text:0x800C15D0; // type:function size:0xC8 scope:global align:4 +__destroy_global_chain = .text:0x800C1698; // type:function size:0x48 scope:global align:4 +__register_global_object = .text:0x800C16E0; // type:function size:0x18 scope:global align:4 +__copy = .text:0x800C16F8; // type:function size:0x30 scope:global align:4 +__destroy_new_array = .text:0x800C1728; // type:function size:0x7C scope:global align:4 +__destroy_arr = .text:0x800C17A4; // type:function size:0x78 scope:global align:4 +__construct_array = .text:0x800C181C; // type:function size:0xFC scope:global align:4 +__dt__26__partial_array_destructorFv = .text:0x800C1918; // type:function size:0xB8 scope:weak align:4 +__construct_new_array = .text:0x800C19D0; // type:function size:0x104 scope:global align:4 +__ptmf_test = .text:0x800C1AD4; // type:function size:0x30 scope:global align:4 +__ptmf_scall = .text:0x800C1B04; // type:function size:0x28 scope:global align:4 +__cvt_fp2unsigned = .text:0x800C1B2C; // type:function size:0x5C scope:global align:4 +__save_fpr = .text:0x800C1B88; // type:function size:0x4C scope:local align:4 +_savefpr_14 = .text:0x800C1B88; // type:label scope:global +_savefpr_15 = .text:0x800C1B8C; // type:label scope:global +_savefpr_16 = .text:0x800C1B90; // type:label scope:global +_savefpr_17 = .text:0x800C1B94; // type:label scope:global +_savefpr_18 = .text:0x800C1B98; // type:label scope:global +_savefpr_19 = .text:0x800C1B9C; // type:label scope:global +_savefpr_20 = .text:0x800C1BA0; // type:label scope:global +_savefpr_21 = .text:0x800C1BA4; // type:label scope:global +_savefpr_22 = .text:0x800C1BA8; // type:label scope:global +_savefpr_23 = .text:0x800C1BAC; // type:label scope:global +_savefpr_24 = .text:0x800C1BB0; // type:label scope:global +_savefpr_25 = .text:0x800C1BB4; // type:label scope:global +_savefpr_26 = .text:0x800C1BB8; // type:label scope:global +_savefpr_27 = .text:0x800C1BBC; // type:label scope:global +_savefpr_28 = .text:0x800C1BC0; // type:label scope:global +_savefpr_29 = .text:0x800C1BC4; // type:label scope:global +_savefpr_30 = .text:0x800C1BC8; // type:label scope:global +_savefpr_31 = .text:0x800C1BCC; // type:label scope:global +__restore_fpr = .text:0x800C1BD4; // type:function size:0x4C scope:local align:4 +_restfpr_14 = .text:0x800C1BD4; // type:label scope:global +_restfpr_15 = .text:0x800C1BD8; // type:label scope:global +_restfpr_16 = .text:0x800C1BDC; // type:label scope:global +_restfpr_17 = .text:0x800C1BE0; // type:label scope:global +_restfpr_18 = .text:0x800C1BE4; // type:label scope:global +_restfpr_19 = .text:0x800C1BE8; // type:label scope:global +_restfpr_20 = .text:0x800C1BEC; // type:label scope:global +_restfpr_21 = .text:0x800C1BF0; // type:label scope:global +_restfpr_22 = .text:0x800C1BF4; // type:label scope:global +_restfpr_23 = .text:0x800C1BF8; // type:label scope:global +_restfpr_24 = .text:0x800C1BFC; // type:label scope:global +_restfpr_25 = .text:0x800C1C00; // type:label scope:global +_restfpr_26 = .text:0x800C1C04; // type:label scope:global +_restfpr_27 = .text:0x800C1C08; // type:label scope:global +_restfpr_28 = .text:0x800C1C0C; // type:label scope:global +_restfpr_29 = .text:0x800C1C10; // type:label scope:global +_restfpr_30 = .text:0x800C1C14; // type:label scope:global +_restfpr_31 = .text:0x800C1C18; // type:label scope:global +__save_gpr = .text:0x800C1C20; // type:function size:0x4C scope:local align:4 +_savegpr_14 = .text:0x800C1C20; // type:label scope:global +_savegpr_15 = .text:0x800C1C24; // type:label scope:global +_savegpr_16 = .text:0x800C1C28; // type:label scope:global +_savegpr_17 = .text:0x800C1C2C; // type:label scope:global +_savegpr_18 = .text:0x800C1C30; // type:label scope:global +_savegpr_19 = .text:0x800C1C34; // type:label scope:global +_savegpr_20 = .text:0x800C1C38; // type:label scope:global +_savegpr_21 = .text:0x800C1C3C; // type:label scope:global +_savegpr_22 = .text:0x800C1C40; // type:label scope:global +_savegpr_23 = .text:0x800C1C44; // type:label scope:global +_savegpr_24 = .text:0x800C1C48; // type:label scope:global +_savegpr_25 = .text:0x800C1C4C; // type:label scope:global +_savegpr_26 = .text:0x800C1C50; // type:label scope:global +_savegpr_27 = .text:0x800C1C54; // type:label scope:global +_savegpr_28 = .text:0x800C1C58; // type:label scope:global +_savegpr_29 = .text:0x800C1C5C; // type:label scope:global +_savegpr_30 = .text:0x800C1C60; // type:label scope:global +_savegpr_31 = .text:0x800C1C64; // type:label scope:global +__restore_gpr = .text:0x800C1C6C; // type:function size:0x4C scope:local align:4 +_restgpr_14 = .text:0x800C1C6C; // type:label scope:global +_restgpr_15 = .text:0x800C1C70; // type:label scope:global +_restgpr_16 = .text:0x800C1C74; // type:label scope:global +_restgpr_17 = .text:0x800C1C78; // type:label scope:global +_restgpr_18 = .text:0x800C1C7C; // type:label scope:global +_restgpr_19 = .text:0x800C1C80; // type:label scope:global +_restgpr_20 = .text:0x800C1C84; // type:label scope:global +_restgpr_21 = .text:0x800C1C88; // type:label scope:global +_restgpr_22 = .text:0x800C1C8C; // type:label scope:global +_restgpr_23 = .text:0x800C1C90; // type:label scope:global +_restgpr_24 = .text:0x800C1C94; // type:label scope:global +_restgpr_25 = .text:0x800C1C98; // type:label scope:global +_restgpr_26 = .text:0x800C1C9C; // type:label scope:global +_restgpr_27 = .text:0x800C1CA0; // type:label scope:global +_restgpr_28 = .text:0x800C1CA4; // type:label scope:global +_restgpr_29 = .text:0x800C1CA8; // type:label scope:global +_restgpr_30 = .text:0x800C1CAC; // type:label scope:global +_restgpr_31 = .text:0x800C1CB0; // type:label scope:global +__div2u = .text:0x800C1CB8; // type:function size:0xEC scope:global align:4 +__div2i = .text:0x800C1DA4; // type:function size:0x138 scope:global align:4 +__mod2u = .text:0x800C1EDC; // type:function size:0xE4 scope:global align:4 +__mod2i = .text:0x800C1FC0; // type:function size:0x10C scope:global align:4 +__shl2i = .text:0x800C20CC; // type:function size:0x24 scope:global align:4 +__shr2u = .text:0x800C20F0; // type:function size:0x24 scope:global align:4 +__shr2i = .text:0x800C2114; // type:function size:0x28 scope:global align:4 +__cvt_ull_dbl = .text:0x800C213C; // type:function size:0x9C scope:global align:4 +__cvt_dbl_usll = .text:0x800C21D8; // type:function size:0xCC scope:global align:4 +GetR2__Fv = .text:0x800C22A4; // type:function size:0x8 scope:local align:4 +__fini_cpp_exceptions = .text:0x800C22AC; // type:function size:0x34 scope:global align:4 +__init_cpp_exceptions = .text:0x800C22E0; // type:function size:0x40 scope:global align:4 +__unregister_fragment = .text:0x800C2320; // type:function size:0x34 scope:global align:4 +__register_fragment = .text:0x800C2354; // type:function size:0x34 scope:global align:4 +__sys_free = .text:0x800C2388; // type:function size:0xB8 scope:weak align:4 +exit = .text:0x800C2440; // type:function size:0xF0 scope:global align:4 +free = .text:0x800C2530; // type:function size:0x70 scope:global align:4 +__pool_free = .text:0x800C25A0; // type:function size:0x58 scope:global align:4 +deallocate_from_fixed_pools = .text:0x800C25F8; // type:function size:0x158 scope:global align:4 +deallocate_from_var_pools = .text:0x800C2750; // type:function size:0x294 scope:local align:4 +__flush_all = .text:0x800C29E4; // type:function size:0x70 scope:global align:4 +__close_all = .text:0x800C2A54; // type:function size:0xA8 scope:global align:4 +__dec2num = .text:0x800C2AFC; // type:function size:0x1080 scope:global align:4 +__num2dec = .text:0x800C3B7C; // type:function size:0x1A4 scope:global align:4 +__num2dec_internal = .text:0x800C3D20; // type:function size:0x3B4 scope:local align:4 +__minus_dec = .text:0x800C40D4; // type:function size:0x4FC scope:local align:4 +__equals_dec = .text:0x800C45D0; // type:function size:0x10C scope:local align:4 +__two_exp = .text:0x800C46DC; // type:function size:0x1784 scope:local align:4 +__timesdec = .text:0x800C5E60; // type:function size:0x278 scope:local align:4 +div = .text:0x800C60D8; // type:function size:0x58 scope:global align:4 +abs = .text:0x800C6130; // type:function size:0x10 scope:global align:4 +__flush_buffer = .text:0x800C6140; // type:function size:0xC4 scope:global align:4 +__prep_buffer = .text:0x800C6204; // type:function size:0x34 scope:global align:4 +__end_critical_region = .text:0x800C6238; // type:function size:0x4 scope:global align:4 +__begin_critical_region = .text:0x800C623C; // type:function size:0x4 scope:global align:4 +__kill_critical_regions = .text:0x800C6240; // type:function size:0x4 scope:global align:4 +tolower = .text:0x800C6244; // type:function size:0x24 scope:weak align:4 +__fwrite = .text:0x800C6268; // type:function size:0x30C scope:global align:4 +fwrite = .text:0x800C6574; // type:function size:0x7C scope:global align:4 +fflush = .text:0x800C65F0; // type:function size:0x138 scope:global align:4 +fclose = .text:0x800C6728; // type:function size:0x1BC scope:global align:4 +fseek = .text:0x800C68E4; // type:function size:0x6C scope:global align:4 +_fseek = .text:0x800C6950; // type:function size:0x270 scope:global align:4 +ftell = .text:0x800C6BC0; // type:function size:0xE4 scope:global align:4 +wcstombs = .text:0x800C6CA4; // type:function size:0x118 scope:global align:4 +mbtowc = .text:0x800C6DBC; // type:function size:0x120 scope:global align:4 +is_utf8_complete = .text:0x800C6EDC; // type:function size:0xEC scope:local align:4 +memcmp = .text:0x800C6FC8; // type:function size:0x4C scope:global align:4 +__memrchr = .text:0x800C7014; // type:function size:0x2C scope:global align:4 +memchr = .text:0x800C7040; // type:function size:0x2C scope:global align:4 +memmove = .text:0x800C706C; // type:function size:0xCC scope:global align:4 +__copy_longs_rev_unaligned = .text:0x800C7138; // type:function size:0xAC scope:global align:4 +__copy_longs_unaligned = .text:0x800C71E4; // type:function size:0xC0 scope:global align:4 +__copy_longs_rev_aligned = .text:0x800C72A4; // type:function size:0xA8 scope:global align:4 +__copy_longs_aligned = .text:0x800C734C; // type:function size:0xBC scope:global align:4 +__stdio_atexit = .text:0x800C7408; // type:function size:0x10 scope:global align:4 +sprintf = .text:0x800C7418; // type:function size:0xE0 scope:global align:4 +snprintf = .text:0x800C74F8; // type:function size:0xD4 scope:global align:4 +vsprintf = .text:0x800C75CC; // type:function size:0x78 scope:global align:4 +vsnprintf = .text:0x800C7644; // type:function size:0x74 scope:global align:4 +vprintf = .text:0x800C76B8; // type:function size:0x98 scope:global align:4 +__StringWrite = .text:0x800C7750; // type:function size:0x6C scope:global align:4 +__FileWrite = .text:0x800C77BC; // type:function size:0x58 scope:global align:4 +__pformatter = .text:0x800C7814; // type:function size:0x774 scope:local align:4 +float2str = .text:0x800C7F88; // type:function size:0x71C scope:local align:4 +round_decimal = .text:0x800C86A4; // type:function size:0x12C scope:local align:4 +double2hex = .text:0x800C87D0; // type:function size:0x338 scope:local align:4 +longlong2str = .text:0x800C8B08; // type:function size:0x314 scope:local align:4 +long2str = .text:0x800C8E1C; // type:function size:0x258 scope:local align:4 +parse_format = .text:0x800C9074; // type:function size:0x504 scope:local align:4 +srand = .text:0x800C9578; // type:function size:0x8 scope:global align:4 +rand = .text:0x800C9580; // type:function size:0x20 scope:global align:4 +sscanf = .text:0x800C95A0; // type:function size:0xC4 scope:global align:4 +__StringRead = .text:0x800C9664; // type:function size:0x90 scope:global align:4 +__sformatter = .text:0x800C96F4; // type:function size:0x9AC scope:local align:4 +parse_format = .text:0x800CA0A0; // type:function size:0x548 scope:local align:4 +strrchr = .text:0x800CA5E8; // type:function size:0x48 scope:global align:4 +strchr = .text:0x800CA630; // type:function size:0x30 scope:global align:4 +strncmp = .text:0x800CA660; // type:function size:0x40 scope:global align:4 +strcmp = .text:0x800CA6A0; // type:function size:0x128 scope:global align:4 +strcat = .text:0x800CA7C8; // type:function size:0x2C scope:global align:4 +strncpy = .text:0x800CA7F4; // type:function size:0x44 scope:global align:4 +strcpy = .text:0x800CA838; // type:function size:0xB8 scope:global align:4 +strlen = .text:0x800CA8F0; // type:function size:0x1C scope:global align:4 +__strtold = .text:0x800CA90C; // type:function size:0x100C scope:global align:4 +strtol = .text:0x800CB918; // type:function size:0xF0 scope:global align:4 +strtoul = .text:0x800CBA08; // type:function size:0xAC scope:global align:4 +__strtoull = .text:0x800CBAB4; // type:function size:0x40C scope:global align:4 +__strtoul = .text:0x800CBEC0; // type:function size:0x378 scope:global align:4 +fwide = .text:0x800CC238; // type:function size:0x88 scope:global align:4 +__write_console = .text:0x800CC2C0; // type:function size:0xD0 scope:weak align:4 +__ieee754_asin = .text:0x800CC390; // type:function size:0x238 scope:global align:4 +__ieee754_atan2 = .text:0x800CC5C8; // type:function size:0x290 scope:global align:4 +__ieee754_exp = .text:0x800CC858; // type:function size:0x224 scope:global align:4 +__ieee754_fmod = .text:0x800CCA7C; // type:function size:0x33C scope:global align:4 +__ieee754_log = .text:0x800CCDB8; // type:function size:0x27C scope:global align:4 +__ieee754_log10 = .text:0x800CD034; // type:function size:0x110 scope:global align:4 +__ieee754_pow = .text:0x800CD144; // type:function size:0x830 scope:global align:4 +__ieee754_rem_pio2 = .text:0x800CD974; // type:function size:0x3A0 scope:global align:4 +__kernel_cos = .text:0x800CDD14; // type:function size:0xF4 scope:global align:4 +__kernel_rem_pio2 = .text:0x800CDE08; // type:function size:0xE54 scope:global align:4 +__kernel_sin = .text:0x800CEC5C; // type:function size:0xA0 scope:global align:4 +__kernel_tan = .text:0x800CECFC; // type:function size:0x214 scope:global align:4 +atan = .text:0x800CEF10; // type:function size:0x218 scope:global align:4 +ceil = .text:0x800CF128; // type:function size:0x144 scope:global align:4 +copysign = .text:0x800CF26C; // type:function size:0x28 scope:global align:4 +cos = .text:0x800CF294; // type:function size:0xD4 scope:global align:4 +floor = .text:0x800CF368; // type:function size:0x148 scope:global align:4 +frexp = .text:0x800CF4B0; // type:function size:0x8C scope:global align:4 +ldexp = .text:0x800CF53C; // type:function size:0x1C4 scope:global align:4 +modf = .text:0x800CF700; // type:function size:0xFC scope:global align:4 +sin = .text:0x800CF7FC; // type:function size:0xD8 scope:global align:4 +tan = .text:0x800CF8D4; // type:function size:0x78 scope:global align:4 +asin = .text:0x800CF94C; // type:function size:0x20 scope:global align:4 +atan2 = .text:0x800CF96C; // type:function size:0x20 scope:global align:4 +exp = .text:0x800CF98C; // type:function size:0x20 scope:global align:4 +fmod = .text:0x800CF9AC; // type:function size:0x20 scope:global align:4 +log10 = .text:0x800CF9CC; // type:function size:0x20 scope:global align:4 +pow = .text:0x800CF9EC; // type:function size:0x20 scope:global align:4 +__ieee754_sqrt = .text:0x800CFA0C; // type:function size:0x224 scope:global align:4 +tanf = .text:0x800CFC30; // type:function size:0x24 scope:weak align:4 +sinf = .text:0x800CFC54; // type:function size:0x24 scope:weak align:4 +cosf = .text:0x800CFC78; // type:function size:0x24 scope:weak align:4 +sqrt = .text:0x800CFC9C; // type:function size:0x20 scope:global align:4 +stricmp = .text:0x800CFCBC; // type:function size:0x8C scope:global align:4 +DBClose = .text:0x800CFD48; // type:function size:0x4 scope:global align:4 +DBOpen = .text:0x800CFD4C; // type:function size:0x4 scope:global align:4 +DBWrite = .text:0x800CFD50; // type:function size:0x260 scope:global align:4 +DBRead = .text:0x800CFFB0; // type:function size:0x8C scope:global align:4 +DBQueryData = .text:0x800D003C; // type:function size:0x9C scope:global align:4 +DBInitInterrupts = .text:0x800D00D8; // type:function size:0x54 scope:global align:4 +DBInitComm = .text:0x800D012C; // type:function size:0x78 scope:global align:4 +DBGHandler = .text:0x800D01A4; // type:function size:0x40 scope:local align:4 +MWCallback = .text:0x800D01E4; // type:function size:0x3C scope:local align:4 +DBGReadStatus = .text:0x800D0220; // type:function size:0xAC scope:local align:4 +DBGWrite = .text:0x800D02CC; // type:function size:0xDC scope:local align:4 +DBGRead = .text:0x800D03A8; // type:function size:0xDC scope:local align:4 +DBGReadMailbox = .text:0x800D0484; // type:function size:0xAC scope:local align:4 +DBGEXIImm = .text:0x800D0530; // type:function size:0x298 scope:local align:4 +__VIRetraceHandler = .text:0x800D07C8; // type:function size:0x274 scope:local align:4 +VISetPreRetraceCallback = .text:0x800D0A3C; // type:function size:0x44 scope:global align:4 +VISetPostRetraceCallback = .text:0x800D0A80; // type:function size:0x44 scope:global align:4 +getTiming = .text:0x800D0AC4; // type:function size:0xA0 scope:local align:4 +__VIInit = .text:0x800D0B64; // type:function size:0x200 scope:global align:4 +VIInit = .text:0x800D0D64; // type:function size:0x4B0 scope:global align:4 +VIWaitForRetrace = .text:0x800D1214; // type:function size:0x54 scope:global align:4 +setFbbRegs = .text:0x800D1268; // type:function size:0x2D4 scope:local align:4 +setVerticalRegs = .text:0x800D153C; // type:function size:0x1A0 scope:local align:4 +VIConfigure = .text:0x800D16DC; // type:function size:0x828 scope:global align:4 +VIFlush = .text:0x800D1F04; // type:function size:0x130 scope:global align:4 +VISetNextFrameBuffer = .text:0x800D2034; // type:function size:0x6C scope:global align:4 +VIGetCurrentFrameBuffer = .text:0x800D20A0; // type:function size:0x8 scope:global align:4 +VISetBlack = .text:0x800D20A8; // type:function size:0x7C scope:global align:4 +VIGetRetraceCount = .text:0x800D2124; // type:function size:0x8 scope:global align:4 +GetCurrentDisplayPosition = .text:0x800D212C; // type:function size:0x3C scope:local align:4 +getCurrentFieldEvenOdd = .text:0x800D2168; // type:function size:0x68 scope:local align:4 +VIGetNextField = .text:0x800D21D0; // type:function size:0x9C scope:global align:4 +VIGetCurrentLine = .text:0x800D226C; // type:function size:0x98 scope:global align:4 +VIGetTvFormat = .text:0x800D2304; // type:function size:0x68 scope:global align:4 +VIGetDTVStatus = .text:0x800D236C; // type:function size:0x3C scope:global align:4 +__VIDisplayPositionToXY = .text:0x800D23A8; // type:function size:0x21C scope:global align:4 +__VIGetCurrentPosition = .text:0x800D25C4; // type:function size:0x60 scope:global align:4 +EXI2_Init = .text:0x800D2624; // type:function size:0x4 scope:global align:4 +EXI2_EnableInterrupts = .text:0x800D2628; // type:function size:0x4 scope:global align:4 +EXI2_Poll = .text:0x800D262C; // type:function size:0x8 scope:global align:4 +EXI2_ReadN = .text:0x800D2634; // type:function size:0x8 scope:global align:4 +EXI2_WriteN = .text:0x800D263C; // type:function size:0x8 scope:global align:4 +EXI2_Reserve = .text:0x800D2644; // type:function size:0x4 scope:global align:4 +EXI2_Unreserve = .text:0x800D2648; // type:function size:0x4 scope:global align:4 +AMC_IsStub = .text:0x800D264C; // type:function size:0x8 scope:global align:4 +ARRegisterDMACallback = .text:0x800D2654; // type:function size:0x44 scope:global align:4 +ARGetDMAStatus = .text:0x800D2698; // type:function size:0x3C scope:global align:4 +ARStartDMA = .text:0x800D26D4; // type:function size:0xF0 scope:global align:4 +ARAlloc = .text:0x800D27C4; // type:function size:0x68 scope:global align:4 +ARInit = .text:0x800D282C; // type:function size:0xC4 scope:global align:4 +ARGetBaseAddress = .text:0x800D28F0; // type:function size:0x8 scope:global align:4 +ARGetSize = .text:0x800D28F8; // type:function size:0x8 scope:global align:4 +__ARHandler = .text:0x800D2900; // type:function size:0x78 scope:local align:4 +__ARClearInterrupt = .text:0x800D2978; // type:function size:0x20 scope:global align:4 +__ARGetInterruptStatus = .text:0x800D2998; // type:function size:0x10 scope:global align:4 +__ARChecksize = .text:0x800D29A8; // type:function size:0x17F4 scope:local align:4 +__ARQServiceQueueLo = .text:0x800D419C; // type:function size:0x100 scope:global align:4 +__ARQCallbackHack = .text:0x800D429C; // type:function size:0x4 scope:global align:4 +__ARQInterruptServiceRoutine = .text:0x800D42A0; // type:function size:0xCC scope:global align:4 +ARQInit = .text:0x800D436C; // type:function size:0x70 scope:global align:4 +ARQPostRequest = .text:0x800D43DC; // type:function size:0x15C scope:global align:4 +PPCMfmsr = .text:0x800D4538; // type:function size:0x8 scope:global align:4 +PPCMtmsr = .text:0x800D4540; // type:function size:0x8 scope:global align:4 +PPCMfhid0 = .text:0x800D4548; // type:function size:0x8 scope:global align:4 +PPCMthid0 = .text:0x800D4550; // type:function size:0x8 scope:global align:4 +PPCMfl2cr = .text:0x800D4558; // type:function size:0x8 scope:global align:4 +PPCMtl2cr = .text:0x800D4560; // type:function size:0x8 scope:global align:4 +PPCMtdec = .text:0x800D4568; // type:function size:0x8 scope:weak align:4 +PPCSync = .text:0x800D4570; // type:function size:0x8 scope:global align:4 +PPCHalt = .text:0x800D4578; // type:function size:0x14 scope:weak align:4 +PPCMtmmcr0 = .text:0x800D458C; // type:function size:0x8 scope:global align:4 +PPCMtmmcr1 = .text:0x800D4594; // type:function size:0x8 scope:global align:4 +PPCMtpmc1 = .text:0x800D459C; // type:function size:0x8 scope:global align:4 +PPCMtpmc2 = .text:0x800D45A4; // type:function size:0x8 scope:global align:4 +PPCMtpmc3 = .text:0x800D45AC; // type:function size:0x8 scope:global align:4 +PPCMtpmc4 = .text:0x800D45B4; // type:function size:0x8 scope:global align:4 +PPCMffpscr = .text:0x800D45BC; // type:function size:0x20 scope:global align:4 +PPCMtfpscr = .text:0x800D45DC; // type:function size:0x28 scope:global align:4 +PPCMfhid2 = .text:0x800D4604; // type:function size:0x8 scope:global align:4 +PPCMthid2 = .text:0x800D460C; // type:function size:0x8 scope:global align:4 +PPCMtwpar = .text:0x800D4614; // type:function size:0x8 scope:global align:4 +PPCDisableSpeculation = .text:0x800D461C; // type:function size:0x28 scope:global align:4 +PPCSetFpNonIEEEMode = .text:0x800D4644; // type:function size:0x8 scope:global align:4 +__CARDDefaultApiCallback = .text:0x800D464C; // type:function size:0x4 scope:global align:4 +__CARDSyncCallback = .text:0x800D4650; // type:function size:0x34 scope:global align:4 +__CARDExtHandler = .text:0x800D4684; // type:function size:0xD8 scope:global align:4 +__CARDExiHandler = .text:0x800D475C; // type:function size:0x118 scope:global align:4 +__CARDTxHandler = .text:0x800D4874; // type:function size:0xA8 scope:global align:4 +__CARDUnlockedHandler = .text:0x800D491C; // type:function size:0x84 scope:global align:4 +__CARDEnableInterrupt = .text:0x800D49A0; // type:function size:0xC0 scope:global align:4 +__CARDReadStatus = .text:0x800D4A60; // type:function size:0xF0 scope:global align:4 +__CARDClearStatus = .text:0x800D4B50; // type:function size:0xAC scope:global align:4 +TimeoutHandler = .text:0x800D4BFC; // type:function size:0xA4 scope:local align:4 +Retry = .text:0x800D4CA0; // type:function size:0x22C scope:local align:4 +UnlockedCallback = .text:0x800D4ECC; // type:function size:0x110 scope:local align:4 +__CARDStart = .text:0x800D4FDC; // type:function size:0x1B4 scope:local align:4 +__CARDReadSegment = .text:0x800D5190; // type:function size:0x134 scope:global align:4 +__CARDWritePage = .text:0x800D52C4; // type:function size:0x11C scope:global align:4 +__CARDEraseSector = .text:0x800D53E0; // type:function size:0xE0 scope:global align:4 +CARDInit = .text:0x800D54C0; // type:function size:0xAC scope:global align:4 +__CARDGetFontEncode = .text:0x800D556C; // type:function size:0x8 scope:global align:4 +__CARDSetDiskID = .text:0x800D5574; // type:function size:0x38 scope:global align:4 +__CARDGetControlBlock = .text:0x800D55AC; // type:function size:0xB8 scope:global align:4 +__CARDPutControlBlock = .text:0x800D5664; // type:function size:0x64 scope:global align:4 +CARDFreeBlocks = .text:0x800D56C8; // type:function size:0x150 scope:global align:4 +__CARDSync = .text:0x800D5818; // type:function size:0x98 scope:global align:4 +OnReset = .text:0x800D58B0; // type:function size:0x50 scope:local align:4 +bitrev = .text:0x800D5900; // type:function size:0x16C scope:local align:4 +ReadArrayUnlock = .text:0x800D5A6C; // type:function size:0x144 scope:local align:4 +DummyLen = .text:0x800D5BB0; // type:function size:0xC4 scope:local align:4 +__CARDUnlock = .text:0x800D5C74; // type:function size:0xB58 scope:global align:4 +InitCallback = .text:0x800D67CC; // type:function size:0x70 scope:local align:4 +DoneCallback = .text:0x800D683C; // type:function size:0x324 scope:local align:4 +BlockReadCallback = .text:0x800D6B60; // type:function size:0xDC scope:local align:4 +__CARDRead = .text:0x800D6C3C; // type:function size:0x64 scope:global align:4 +BlockWriteCallback = .text:0x800D6CA0; // type:function size:0xDC scope:local align:4 +__CARDWrite = .text:0x800D6D7C; // type:function size:0x64 scope:global align:4 +__CARDGetFatBlock = .text:0x800D6DE0; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x800D6DE8; // type:function size:0xD4 scope:local align:4 +EraseCallback = .text:0x800D6EBC; // type:function size:0xC8 scope:local align:4 +__CARDAllocBlock = .text:0x800D6F84; // type:function size:0x118 scope:global align:4 +__CARDUpdateFatBlock = .text:0x800D709C; // type:function size:0xAC scope:global align:4 +__CARDGetDirBlock = .text:0x800D7148; // type:function size:0x8 scope:global align:4 +WriteCallback = .text:0x800D7150; // type:function size:0xD0 scope:local align:4 +EraseCallback = .text:0x800D7220; // type:function size:0xC8 scope:local align:4 +__CARDUpdateDir = .text:0x800D72E8; // type:function size:0xC4 scope:global align:4 +__CARDCheckSum = .text:0x800D73AC; // type:function size:0x1B0 scope:global align:4 +VerifyID = .text:0x800D755C; // type:function size:0x284 scope:local align:4 +VerifyDir = .text:0x800D77E0; // type:function size:0x240 scope:local align:4 +VerifyFAT = .text:0x800D7A20; // type:function size:0x284 scope:local align:4 +__CARDVerify = .text:0x800D7CA4; // type:function size:0x8C scope:global align:4 +CARDCheckExAsync = .text:0x800D7D30; // type:function size:0x590 scope:global align:4 +CARDCheck = .text:0x800D82C0; // type:function size:0x54 scope:global align:4 +IsCard = .text:0x800D8314; // type:function size:0xCC scope:local align:4 +CARDProbe = .text:0x800D83E0; // type:function size:0x38 scope:global align:4 +CARDProbeEx = .text:0x800D8418; // type:function size:0x17C scope:global align:4 +DoMount = .text:0x800D8594; // type:function size:0x410 scope:local align:4 +__CARDMountCallback = .text:0x800D89A4; // type:function size:0x138 scope:global align:4 +CARDMountAsync = .text:0x800D8ADC; // type:function size:0x1A0 scope:global align:4 +CARDMount = .text:0x800D8C7C; // type:function size:0x48 scope:global align:4 +DoUnmount = .text:0x800D8CC4; // type:function size:0x9C scope:local align:4 +CARDUnmount = .text:0x800D8D60; // type:function size:0xAC scope:global align:4 +FormatCallback = .text:0x800D8E0C; // type:function size:0x144 scope:local align:4 +__CARDFormatRegionAsync = .text:0x800D8F50; // type:function size:0x658 scope:global align:4 +CARDFormat = .text:0x800D95A8; // type:function size:0x54 scope:global align:4 +__CARDCompareFileName = .text:0x800D95FC; // type:function size:0x68 scope:global align:4 +__CARDAccess = .text:0x800D9664; // type:function size:0x94 scope:global align:4 +__CARDIsWritable = .text:0x800D96F8; // type:function size:0x134 scope:global align:4 +__CARDIsReadable = .text:0x800D982C; // type:function size:0xF4 scope:global align:4 +CARDOpen = .text:0x800D9920; // type:function size:0x11C scope:global align:4 +CARDClose = .text:0x800D9A3C; // type:function size:0x54 scope:global align:4 +CreateCallbackFat = .text:0x800D9A90; // type:function size:0x130 scope:local align:4 +CARDCreateAsync = .text:0x800D9BC0; // type:function size:0x220 scope:global align:4 +CARDCreate = .text:0x800D9DE0; // type:function size:0x48 scope:global align:4 +__CARDSeek = .text:0x800D9E28; // type:function size:0x1B8 scope:global align:4 +ReadCallback = .text:0x800D9FE0; // type:function size:0x130 scope:local align:4 +CARDReadAsync = .text:0x800DA110; // type:function size:0x144 scope:global align:4 +CARDRead = .text:0x800DA254; // type:function size:0x48 scope:global align:4 +WriteCallback = .text:0x800DA29C; // type:function size:0x170 scope:local align:4 +EraseCallback = .text:0x800DA40C; // type:function size:0xB0 scope:local align:4 +CARDWriteAsync = .text:0x800DA4BC; // type:function size:0x114 scope:global align:4 +CARDWrite = .text:0x800DA5D0; // type:function size:0x48 scope:global align:4 +UpdateIconOffsets = .text:0x800DA618; // type:function size:0x1F8 scope:local align:4 +CARDGetStatus = .text:0x800DA810; // type:function size:0x114 scope:global align:4 +CARDSetStatusAsync = .text:0x800DA924; // type:function size:0x174 scope:global align:4 +CARDSetStatus = .text:0x800DAA98; // type:function size:0x48 scope:global align:4 +CARDGetSerialNo = .text:0x800DAAE0; // type:function size:0xC4 scope:global align:4 +DBInit = .text:0x800DABA4; // type:function size:0x28 scope:global align:4 +__DBExceptionDestinationAux = .text:0x800DABCC; // type:function size:0x48 scope:global align:4 +__DBExceptionDestination = .text:0x800DAC14; // type:function size:0x10 scope:global align:4 +__DBIsExceptionMarked = .text:0x800DAC24; // type:function size:0x1C scope:global align:4 +DBPrintf = .text:0x800DAC40; // type:function size:0x50 scope:global align:4 +DSPCheckMailToDSP = .text:0x800DAC90; // type:function size:0x10 scope:global align:4 +DSPCheckMailFromDSP = .text:0x800DACA0; // type:function size:0x10 scope:global align:4 +DSPReadMailFromDSP = .text:0x800DACB0; // type:function size:0x18 scope:global align:4 +DSPSendMailToDSP = .text:0x800DACC8; // type:function size:0x14 scope:global align:4 +DSPAssertInt = .text:0x800DACDC; // type:function size:0x40 scope:global align:4 +DSPInit = .text:0x800DAD1C; // type:function size:0xC4 scope:global align:4 +__DSP_debug_printf = .text:0x800DADE0; // type:function size:0x50 scope:global align:4 +__DSP_exec_task = .text:0x800DAE30; // type:function size:0x1A0 scope:global align:4 +__DSP_boot_task = .text:0x800DAFD0; // type:function size:0x18C scope:global align:4 +__DSP_insert_task = .text:0x800DB15C; // type:function size:0xA0 scope:global align:4 +__DSP_remove_task = .text:0x800DB1FC; // type:function size:0x94 scope:global align:4 +__DVDInitWA = .text:0x800DB290; // type:function size:0x40 scope:weak align:4 +__DVDInterruptHandler = .text:0x800DB2D0; // type:function size:0x2E0 scope:weak align:4 +AlarmHandler = .text:0x800DB5B0; // type:function size:0x84 scope:local align:4 +AlarmHandlerForTimeout = .text:0x800DB634; // type:function size:0x70 scope:local align:4 +Read = .text:0x800DB6A4; // type:function size:0x110 scope:local align:4 +SeekTwiceBeforeRead = .text:0x800DB7B4; // type:function size:0x80 scope:local align:4 +DVDLowRead = .text:0x800DB834; // type:function size:0x298 scope:weak align:4 +DVDLowSeek = .text:0x800DBACC; // type:function size:0x94 scope:weak align:4 +DVDLowWaitCoverClose = .text:0x800DBB60; // type:function size:0x2C scope:weak align:4 +DVDLowReadDiskID = .text:0x800DBB8C; // type:function size:0xA4 scope:weak align:4 +DVDLowStopMotor = .text:0x800DBC30; // type:function size:0x8C scope:weak align:4 +DVDLowRequestError = .text:0x800DBCBC; // type:function size:0x8C scope:weak align:4 +DVDLowInquiry = .text:0x800DBD48; // type:function size:0x9C scope:weak align:4 +DVDLowAudioStream = .text:0x800DBDE4; // type:function size:0x98 scope:weak align:4 +DVDLowRequestAudioStatus = .text:0x800DBE7C; // type:function size:0x8C scope:weak align:4 +DVDLowAudioBufferConfig = .text:0x800DBF08; // type:function size:0x9C scope:weak align:4 +DVDLowReset = .text:0x800DBFA4; // type:function size:0xBC scope:weak align:4 +DVDLowBreak = .text:0x800DC060; // type:function size:0x14 scope:weak align:4 +DVDLowClearCallback = .text:0x800DC074; // type:function size:0x1C scope:weak align:4 +__DVDLowSetWAType = .text:0x800DC090; // type:function size:0x44 scope:weak align:4 +__DVDLowTestAlarm = .text:0x800DC0D4; // type:function size:0x38 scope:global align:4 +__DVDFSInit = .text:0x800DC10C; // type:function size:0x38 scope:global align:4 +DVDConvertPathToEntrynum = .text:0x800DC144; // type:function size:0x2F4 scope:global align:4 +DVDFastOpen = .text:0x800DC438; // type:function size:0x74 scope:global align:4 +DVDOpen = .text:0x800DC4AC; // type:function size:0xC8 scope:global align:4 +DVDClose = .text:0x800DC574; // type:function size:0x24 scope:global align:4 +entryToPath = .text:0x800DC598; // type:function size:0x160 scope:local align:4 +DVDConvertEntrynumToPath = .text:0x800DC6F8; // type:function size:0x154 scope:local align:4 +DVDGetCurrentDir = .text:0x800DC84C; // type:function size:0xC4 scope:global align:4 +DVDChangeDir = .text:0x800DC910; // type:function size:0x60 scope:global align:4 +DVDReadAsyncPrio = .text:0x800DC970; // type:function size:0xC0 scope:global align:4 +cbForReadAsync = .text:0x800DCA30; // type:function size:0x30 scope:local align:4 +DVDReadPrio = .text:0x800DCA60; // type:function size:0x118 scope:global align:4 +cbForReadSync = .text:0x800DCB78; // type:function size:0x24 scope:local align:4 +DVDOpenDir = .text:0x800DCB9C; // type:function size:0xC0 scope:global align:4 +DVDReadDir = .text:0x800DCC5C; // type:function size:0xA4 scope:global align:4 +DVDCloseDir = .text:0x800DCD00; // type:function size:0x8 scope:global align:4 +defaultOptionalCommandChecker = .text:0x800DCD08; // type:function size:0x4 scope:local align:4 +DVDInit = .text:0x800DCD0C; // type:function size:0xCC scope:global align:4 +stateReadingFST = .text:0x800DCDD8; // type:function size:0x94 scope:local align:4 +cbForStateReadingFST = .text:0x800DCE6C; // type:function size:0x8C scope:local align:4 +cbForStateError = .text:0x800DCEF8; // type:function size:0xAC scope:local align:4 +stateTimeout = .text:0x800DCFA4; // type:function size:0x34 scope:local align:4 +stateGettingError = .text:0x800DCFD8; // type:function size:0x28 scope:local align:4 +CategorizeError = .text:0x800DD000; // type:function size:0xB4 scope:local align:4 +cbForStateGettingError = .text:0x800DD0B4; // type:function size:0x294 scope:local align:4 +cbForUnrecoveredError = .text:0x800DD348; // type:function size:0x68 scope:local align:4 +cbForUnrecoveredErrorRetry = .text:0x800DD3B0; // type:function size:0x98 scope:local align:4 +stateGoToRetry = .text:0x800DD448; // type:function size:0x28 scope:local align:4 +cbForStateGoToRetry = .text:0x800DD470; // type:function size:0x158 scope:local align:4 +stateCheckID = .text:0x800DD5C8; // type:function size:0xE0 scope:local align:4 +stateCheckID3 = .text:0x800DD6A8; // type:function size:0x34 scope:local align:4 +stateCheckID2a = .text:0x800DD6DC; // type:function size:0x34 scope:local align:4 +cbForStateCheckID2a = .text:0x800DD710; // type:function size:0x74 scope:local align:4 +stateCheckID2 = .text:0x800DD784; // type:function size:0x38 scope:local align:4 +cbForStateCheckID1 = .text:0x800DD7BC; // type:function size:0x114 scope:local align:4 +cbForStateCheckID2 = .text:0x800DD8D0; // type:function size:0xE4 scope:local align:4 +cbForStateCheckID3 = .text:0x800DD9B4; // type:function size:0xFC scope:local align:4 +AlarmHandler = .text:0x800DDAB0; // type:function size:0x44 scope:local align:4 +stateCoverClosed = .text:0x800DDAF4; // type:function size:0xCC scope:local align:4 +stateCoverClosed_CMD = .text:0x800DDBC0; // type:function size:0x30 scope:local align:4 +cbForStateCoverClosed = .text:0x800DDBF0; // type:function size:0x70 scope:local align:4 +stateMotorStopped = .text:0x800DDC60; // type:function size:0x28 scope:local align:4 +cbForStateMotorStopped = .text:0x800DDC88; // type:function size:0xE4 scope:local align:4 +stateReady = .text:0x800DDD6C; // type:function size:0x230 scope:local align:4 +stateBusy = .text:0x800DDF9C; // type:function size:0x320 scope:local align:4 +cbForStateBusy = .text:0x800DE2BC; // type:function size:0x638 scope:local align:4 +DVDReadAbsAsyncPrio = .text:0x800DE8F4; // type:function size:0xDC scope:global align:4 +DVDReadAbsAsyncForBS = .text:0x800DE9D0; // type:function size:0xD0 scope:global align:4 +DVDReadDiskID = .text:0x800DEAA0; // type:function size:0xD4 scope:global align:4 +DVDCancelStreamAsync = .text:0x800DEB74; // type:function size:0xBC scope:global align:4 +DVDInquiryAsync = .text:0x800DEC30; // type:function size:0xD0 scope:global align:4 +DVDReset = .text:0x800DED00; // type:function size:0x44 scope:global align:4 +DVDGetCommandBlockStatus = .text:0x800DED44; // type:function size:0x4C scope:global align:4 +DVDGetDriveStatus = .text:0x800DED90; // type:function size:0xAC scope:global align:4 +DVDSetAutoInvalidation = .text:0x800DEE3C; // type:function size:0x10 scope:global align:4 +DVDResume = .text:0x800DEE4C; // type:function size:0x50 scope:global align:4 +DVDCancelAsync = .text:0x800DEE9C; // type:function size:0x27C scope:global align:4 +DVDCancel = .text:0x800DF118; // type:function size:0xAC scope:global align:4 +cbForCancelSync = .text:0x800DF1C4; // type:function size:0x24 scope:local align:4 +DVDGetCurrentDiskID = .text:0x800DF1E8; // type:function size:0x8 scope:global align:4 +DVDCheckDisk = .text:0x800DF1F0; // type:function size:0xF8 scope:global align:4 +__DVDPrepareResetAsync = .text:0x800DF2E8; // type:function size:0x11C scope:global align:4 +__DVDTestAlarm = .text:0x800DF404; // type:function size:0x38 scope:global align:4 +__DVDClearWaitingQueue = .text:0x800DF43C; // type:function size:0x38 scope:global align:4 +__DVDPushWaitingQueue = .text:0x800DF474; // type:function size:0x68 scope:global align:4 +__DVDPopWaitingQueue = .text:0x800DF4DC; // type:function size:0xA0 scope:global align:4 +__DVDCheckWaitingQueue = .text:0x800DF57C; // type:function size:0x58 scope:global align:4 +__DVDDequeueWaitingQueue = .text:0x800DF5D4; // type:function size:0x60 scope:global align:4 +ErrorCode2Num = .text:0x800DF634; // type:function size:0x11C scope:local align:4 +__DVDStoreErrorCode = .text:0x800DF750; // type:function size:0x7C scope:global align:4 +DVDCompareDiskID = .text:0x800DF7CC; // type:function size:0xF8 scope:global align:4 +__DVDPrintFatalMessage = .text:0x800DF8C4; // type:function size:0x30 scope:global align:4 +cb = .text:0x800DF8F4; // type:function size:0xD8 scope:local align:4 +__fstLoad = .text:0x800DF9CC; // type:function size:0x168 scope:global align:4 +SetExiInterruptMask = .text:0x800DFB34; // type:function size:0xF4 scope:local align:4 +EXIImm = .text:0x800DFC28; // type:function size:0x25C scope:global align:4 +EXIImmEx = .text:0x800DFE84; // type:function size:0xA0 scope:global align:4 +EXIDma = .text:0x800DFF24; // type:function size:0xEC scope:global align:4 +EXISync = .text:0x800E0010; // type:function size:0x24C scope:global align:4 +EXIClearInterrupts = .text:0x800E025C; // type:function size:0x48 scope:global align:4 +EXISetExiCallback = .text:0x800E02A4; // type:function size:0x7C scope:global align:4 +__EXIProbe = .text:0x800E0320; // type:function size:0x174 scope:local align:4 +EXIProbe = .text:0x800E0494; // type:function size:0x80 scope:global align:4 +EXIProbeEx = .text:0x800E0514; // type:function size:0xB4 scope:global align:4 +EXIAttach = .text:0x800E05C8; // type:function size:0x10C scope:global align:4 +EXIDetach = .text:0x800E06D4; // type:function size:0xBC scope:global align:4 +EXISelect = .text:0x800E0790; // type:function size:0x12C scope:global align:4 +EXIDeselect = .text:0x800E08BC; // type:function size:0x110 scope:global align:4 +EXIIntrruptHandler = .text:0x800E09CC; // type:function size:0xC8 scope:local align:4 +TCIntrruptHandler = .text:0x800E0A94; // type:function size:0x218 scope:local align:4 +EXTIntrruptHandler = .text:0x800E0CAC; // type:function size:0xD0 scope:local align:4 +EXIInit = .text:0x800E0D7C; // type:function size:0x1D4 scope:global align:4 +EXILock = .text:0x800E0F50; // type:function size:0xF4 scope:global align:4 +EXIUnlock = .text:0x800E1044; // type:function size:0xDC scope:global align:4 +EXIGetState = .text:0x800E1120; // type:function size:0x18 scope:global align:4 +UnlockedHandler = .text:0x800E1138; // type:function size:0x28 scope:local align:4 +EXIGetID = .text:0x800E1160; // type:function size:0x3B0 scope:global align:4 +ProbeBarnacle = .text:0x800E1510; // type:function size:0x18C scope:local align:4 +__OSEnableBarnacle = .text:0x800E169C; // type:function size:0x1BC scope:global align:4 +InitializeUART = .text:0x800E1858; // type:function size:0x70 scope:global align:4 +WriteUARTN = .text:0x800E18C8; // type:function size:0x21C scope:global align:4 +GDInitGDLObj = .text:0x800E1AE4; // type:function size:0x18 scope:global align:4 +GDFlushCurrToMem = .text:0x800E1AFC; // type:function size:0x2C scope:global align:4 +GDPadCurr32 = .text:0x800E1B28; // type:function size:0xF8 scope:global align:4 +GDOverflowed = .text:0x800E1C20; // type:function size:0x30 scope:global align:4 +GDSetVtxDescv = .text:0x800E1C50; // type:function size:0x5FC scope:global align:4 +GDSetArray = .text:0x800E224C; // type:function size:0x20C scope:global align:4 +GDSetArrayRaw = .text:0x800E2458; // type:function size:0x208 scope:global align:4 +__GXDefaultTexRegionCallback = .text:0x800E2660; // type:function size:0xFC scope:local align:4 +__GXDefaultTlutRegionCallback = .text:0x800E275C; // type:function size:0x24 scope:local align:4 +__GXShutdown = .text:0x800E2780; // type:function size:0x190 scope:local align:4 +GXInit = .text:0x800E2910; // type:function size:0x798 scope:global align:4 +__GXInitGX = .text:0x800E30A8; // type:function size:0x938 scope:global align:4 +GXCPInterruptHandler = .text:0x800E39E0; // type:function size:0x134 scope:local align:4 +GXInitFifoBase = .text:0x800E3B14; // type:function size:0x6C scope:global align:4 +GXInitFifoPtrs = .text:0x800E3B80; // type:function size:0x70 scope:global align:4 +GXInitFifoLimits = .text:0x800E3BF0; // type:function size:0xC scope:global align:4 +GXSetCPUFifo = .text:0x800E3BFC; // type:function size:0x128 scope:global align:4 +GXSetGPFifo = .text:0x800E3D24; // type:function size:0x178 scope:global align:4 +GXSaveCPUFifo = .text:0x800E3E9C; // type:function size:0x34 scope:global align:4 +__GXSaveCPUFifoAux = .text:0x800E3ED0; // type:function size:0xC8 scope:global align:4 +GXGetGPStatus = .text:0x800E3F98; // type:function size:0x50 scope:global align:4 +GXSetBreakPtCallback = .text:0x800E3FE8; // type:function size:0x44 scope:global align:4 +__GXFifoInit = .text:0x800E402C; // type:function size:0x4C scope:global align:4 +__GXFifoReadEnable = .text:0x800E4078; // type:function size:0x24 scope:local align:4 +__GXFifoReadDisable = .text:0x800E409C; // type:function size:0x24 scope:local align:4 +__GXFifoLink = .text:0x800E40C0; // type:function size:0x34 scope:local align:4 +__GXWriteFifoIntEnable = .text:0x800E40F4; // type:function size:0x30 scope:local align:4 +__GXWriteFifoIntReset = .text:0x800E4124; // type:function size:0x30 scope:local align:4 +__GXCleanGPFifo = .text:0x800E4154; // type:function size:0x100 scope:global align:4 +GXGetCPUFifo = .text:0x800E4254; // type:function size:0x8 scope:global align:4 +GXGetGPFifo = .text:0x800E425C; // type:function size:0x8 scope:global align:4 +GXSetVtxDesc = .text:0x800E4264; // type:function size:0x26C scope:global align:4 +__GXSetVCD = .text:0x800E44D0; // type:function size:0xBC scope:global align:4 +__GXCalculateVLim = .text:0x800E458C; // type:function size:0x124 scope:global align:4 +GXClearVtxDesc = .text:0x800E46B0; // type:function size:0x38 scope:global align:4 +GXSetVtxAttrFmt = .text:0x800E46E8; // type:function size:0x25C scope:global align:4 +GXSetVtxAttrFmtv = .text:0x800E4944; // type:function size:0x280 scope:global align:4 +__GXSetVAT = .text:0x800E4BC4; // type:function size:0x9C scope:global align:4 +GXSetArray = .text:0x800E4C60; // type:function size:0x8C scope:global align:4 +GXInvalidateVtxCache = .text:0x800E4CEC; // type:function size:0x10 scope:global align:4 +GXSetTexCoordGen2 = .text:0x800E4CFC; // type:function size:0x280 scope:global align:4 +GXSetNumTexGens = .text:0x800E4F7C; // type:function size:0x3C scope:global align:4 +GXSetMisc = .text:0x800E4FB8; // type:function size:0x94 scope:global align:4 +GXFlush = .text:0x800E504C; // type:function size:0x5C scope:global align:4 +__GXAbort = .text:0x800E50A8; // type:function size:0x16C scope:global align:4 +GXAbortFrame = .text:0x800E5214; // type:function size:0x170 scope:global align:4 +GXSetDrawSync = .text:0x800E5384; // type:function size:0xB4 scope:global align:4 +GXSetDrawDone = .text:0x800E5438; // type:function size:0x98 scope:global align:4 +GXWaitDrawDone = .text:0x800E54D0; // type:function size:0x4C scope:global align:4 +GXDrawDone = .text:0x800E551C; // type:function size:0x80 scope:global align:4 +GXPixModeSync = .text:0x800E559C; // type:function size:0x24 scope:global align:4 +GXPokeAlphaMode = .text:0x800E55C0; // type:function size:0x14 scope:global align:4 +GXPokeAlphaRead = .text:0x800E55D4; // type:function size:0x20 scope:global align:4 +GXPokeAlphaUpdate = .text:0x800E55F4; // type:function size:0x18 scope:global align:4 +GXPokeBlendMode = .text:0x800E560C; // type:function size:0x64 scope:global align:4 +GXPokeColorUpdate = .text:0x800E5670; // type:function size:0x18 scope:global align:4 +GXPokeDstAlpha = .text:0x800E5688; // type:function size:0x24 scope:global align:4 +GXPokeDither = .text:0x800E56AC; // type:function size:0x18 scope:global align:4 +GXPokeZMode = .text:0x800E56C4; // type:function size:0x20 scope:global align:4 +GXSetDrawSyncCallback = .text:0x800E56E4; // type:function size:0x44 scope:global align:4 +GXTokenInterruptHandler = .text:0x800E5728; // type:function size:0x88 scope:local align:4 +GXSetDrawDoneCallback = .text:0x800E57B0; // type:function size:0x44 scope:global align:4 +GXFinishInterruptHandler = .text:0x800E57F4; // type:function size:0x80 scope:local align:4 +__GXPEInit = .text:0x800E5874; // type:function size:0x74 scope:global align:4 +__GXSetDirtyState = .text:0x800E58E8; // type:function size:0x80 scope:global align:4 +GXBegin = .text:0x800E5968; // type:function size:0xD0 scope:global align:4 +__GXSendFlushPrim = .text:0x800E5A38; // type:function size:0x88 scope:global align:4 +GXSetLineWidth = .text:0x800E5AC0; // type:function size:0x40 scope:global align:4 +GXSetPointSize = .text:0x800E5B00; // type:function size:0x40 scope:global align:4 +GXEnableTexOffsets = .text:0x800E5B40; // type:function size:0x48 scope:global align:4 +GXSetCullMode = .text:0x800E5B88; // type:function size:0x44 scope:global align:4 +GXSetCoPlanar = .text:0x800E5BCC; // type:function size:0x34 scope:global align:4 +__GXSetGenMode = .text:0x800E5C00; // type:function size:0x24 scope:global align:4 +GXSetDispCopySrc = .text:0x800E5C24; // type:function size:0x7C scope:global align:4 +GXSetTexCopySrc = .text:0x800E5CA0; // type:function size:0x7C scope:global align:4 +GXSetDispCopyDst = .text:0x800E5D1C; // type:function size:0x34 scope:global align:4 +GXSetTexCopyDst = .text:0x800E5D50; // type:function size:0x130 scope:global align:4 +GXSetDispCopyFrame2Field = .text:0x800E5E80; // type:function size:0x24 scope:global align:4 +GXSetCopyClamp = .text:0x800E5EA4; // type:function size:0x58 scope:global align:4 +GXGetNumXfbLines = .text:0x800E5EFC; // type:function size:0x90 scope:global align:4 +GXGetYScaleFactor = .text:0x800E5F8C; // type:function size:0x238 scope:global align:4 +GXSetDispCopyYScale = .text:0x800E61C4; // type:function size:0xCC scope:global align:4 +GXSetCopyClear = .text:0x800E6290; // type:function size:0x78 scope:global align:4 +GXSetCopyFilter = .text:0x800E6308; // type:function size:0x208 scope:global align:4 +GXSetDispCopyGamma = .text:0x800E6510; // type:function size:0x14 scope:global align:4 +GXCopyDisp = .text:0x800E6524; // type:function size:0x168 scope:global align:4 +GXCopyTex = .text:0x800E668C; // type:function size:0x18C scope:global align:4 +GXClearBoundingBox = .text:0x800E6818; // type:function size:0x38 scope:global align:4 +GXInitLightAttn = .text:0x800E6850; // type:function size:0x1C scope:global align:4 +GXInitLightSpot = .text:0x800E686C; // type:function size:0x190 scope:global align:4 +GXInitLightDistAttn = .text:0x800E69FC; // type:function size:0xD0 scope:global align:4 +GXInitLightPos = .text:0x800E6ACC; // type:function size:0x10 scope:global align:4 +GXInitLightDir = .text:0x800E6ADC; // type:function size:0x1C scope:global align:4 +GXInitSpecularDir = .text:0x800E6AF8; // type:function size:0xE4 scope:global align:4 +GXInitLightColor = .text:0x800E6BDC; // type:function size:0xC scope:global align:4 +GXLoadLightObjImm = .text:0x800E6BE8; // type:function size:0x7C scope:global align:4 +GXSetChanAmbColor = .text:0x800E6C64; // type:function size:0xF0 scope:global align:4 +GXSetChanMatColor = .text:0x800E6D54; // type:function size:0xF0 scope:global align:4 +GXSetNumChans = .text:0x800E6E44; // type:function size:0x3C scope:global align:4 +GXSetChanCtrl = .text:0x800E6E80; // type:function size:0xB8 scope:global align:4 +GXGetTexBufferSize = .text:0x800E6F38; // type:function size:0x15C scope:global align:4 +__GetImageTileCount = .text:0x800E7094; // type:function size:0xC8 scope:global align:4 +GXInitTexObj = .text:0x800E715C; // type:function size:0x24C scope:global align:4 +GXInitTexObjCI = .text:0x800E73A8; // type:function size:0x48 scope:global align:4 +GXInitTexObjLOD = .text:0x800E73F0; // type:function size:0x164 scope:global align:4 +GXGetTexObjFmt = .text:0x800E7554; // type:function size:0x8 scope:global align:4 +GXGetTexObjMipMap = .text:0x800E755C; // type:function size:0x18 scope:global align:4 +GXLoadTexObjPreLoaded = .text:0x800E7574; // type:function size:0x17C scope:global align:4 +GXLoadTexObj = .text:0x800E76F0; // type:function size:0x54 scope:global align:4 +GXInitTlutObj = .text:0x800E7744; // type:function size:0x38 scope:global align:4 +GXLoadTlut = .text:0x800E777C; // type:function size:0x98 scope:global align:4 +GXInitTexCacheRegion = .text:0x800E7814; // type:function size:0xF4 scope:global align:4 +GXInitTlutRegion = .text:0x800E7908; // type:function size:0x38 scope:global align:4 +GXInvalidateTexAll = .text:0x800E7940; // type:function size:0x48 scope:global align:4 +GXSetTexRegionCallback = .text:0x800E7988; // type:function size:0x14 scope:global align:4 +GXSetTlutRegionCallback = .text:0x800E799C; // type:function size:0x14 scope:global align:4 +__SetSURegs = .text:0x800E79B0; // type:function size:0xA0 scope:local align:4 +__GXSetSUTexRegs = .text:0x800E7A50; // type:function size:0x17C scope:global align:4 +__GXSetTmemConfig = .text:0x800E7BCC; // type:function size:0x354 scope:global align:4 +GXSetTevIndirect = .text:0x800E7F20; // type:function size:0x6C scope:global align:4 +GXSetIndTexMtx = .text:0x800E7F8C; // type:function size:0x178 scope:global align:4 +GXSetIndTexCoordScale = .text:0x800E8104; // type:function size:0x144 scope:global align:4 +GXSetIndTexOrder = .text:0x800E8248; // type:function size:0xEC scope:global align:4 +GXSetNumIndStages = .text:0x800E8334; // type:function size:0x24 scope:global align:4 +GXSetTevDirect = .text:0x800E8358; // type:function size:0x48 scope:global align:4 +GXSetTevIndWarp = .text:0x800E83A0; // type:function size:0x64 scope:global align:4 +__GXUpdateBPMask = .text:0x800E8404; // type:function size:0x4 scope:global align:4 +__GXSetIndirectMask = .text:0x800E8408; // type:function size:0x30 scope:global align:4 +__GXFlushTextureState = .text:0x800E8438; // type:function size:0x24 scope:global align:4 +GXSetTevOp = .text:0x800E845C; // type:function size:0x8C scope:global align:4 +GXSetTevColorIn = .text:0x800E84E8; // type:function size:0x44 scope:global align:4 +GXSetTevAlphaIn = .text:0x800E852C; // type:function size:0x44 scope:global align:4 +GXSetTevColorOp = .text:0x800E8570; // type:function size:0x68 scope:global align:4 +GXSetTevAlphaOp = .text:0x800E85D8; // type:function size:0x68 scope:global align:4 +GXSetTevColor = .text:0x800E8640; // type:function size:0x7C scope:global align:4 +GXSetTevColorS10 = .text:0x800E86BC; // type:function size:0x7C scope:global align:4 +GXSetTevKColor = .text:0x800E8738; // type:function size:0x74 scope:global align:4 +GXSetTevKColorSel = .text:0x800E87AC; // type:function size:0x5C scope:global align:4 +GXSetTevKAlphaSel = .text:0x800E8808; // type:function size:0x5C scope:global align:4 +GXSetTevSwapMode = .text:0x800E8864; // type:function size:0x48 scope:global align:4 +GXSetTevSwapModeTable = .text:0x800E88AC; // type:function size:0x80 scope:global align:4 +GXSetAlphaCompare = .text:0x800E892C; // type:function size:0x44 scope:global align:4 +GXSetZTexture = .text:0x800E8970; // type:function size:0x8C scope:global align:4 +GXSetTevOrder = .text:0x800E89FC; // type:function size:0x19C scope:global align:4 +GXSetNumTevStages = .text:0x800E8B98; // type:function size:0x28 scope:global align:4 +GXSetFog = .text:0x800E8BC0; // type:function size:0x224 scope:global align:4 +GXInitFogAdjTable = .text:0x800E8DE4; // type:function size:0x1B0 scope:global align:4 +GXSetFogRangeAdj = .text:0x800E8F94; // type:function size:0x124 scope:global align:4 +GXSetBlendMode = .text:0x800E90B8; // type:function size:0x54 scope:global align:4 +GXSetColorUpdate = .text:0x800E910C; // type:function size:0x2C scope:global align:4 +GXSetAlphaUpdate = .text:0x800E9138; // type:function size:0x2C scope:global align:4 +GXSetZMode = .text:0x800E9164; // type:function size:0x34 scope:global align:4 +GXSetZCompLoc = .text:0x800E9198; // type:function size:0x34 scope:global align:4 +GXSetPixelFmt = .text:0x800E91CC; // type:function size:0xD4 scope:global align:4 +GXSetDither = .text:0x800E92A0; // type:function size:0x2C scope:global align:4 +GXSetDstAlpha = .text:0x800E92CC; // type:function size:0x3C scope:global align:4 +GXSetFieldMask = .text:0x800E9308; // type:function size:0x38 scope:global align:4 +GXSetFieldMode = .text:0x800E9340; // type:function size:0x78 scope:global align:4 +GXCallDisplayList = .text:0x800E93B8; // type:function size:0x70 scope:global align:4 +GXSetProjection = .text:0x800E9428; // type:function size:0xA4 scope:global align:4 +GXSetProjectionv = .text:0x800E94CC; // type:function size:0x8C scope:global align:4 +GXLoadPosMtxImm = .text:0x800E9558; // type:function size:0x50 scope:global align:4 +GXLoadNrmMtxImm = .text:0x800E95A8; // type:function size:0x50 scope:global align:4 +GXSetCurrentMtx = .text:0x800E95F8; // type:function size:0x34 scope:global align:4 +GXLoadTexMtxImm = .text:0x800E962C; // type:function size:0xB4 scope:global align:4 +__GXSetViewport = .text:0x800E96E0; // type:function size:0x90 scope:global align:4 +GXSetViewport = .text:0x800E9770; // type:function size:0x48 scope:global align:4 +GXSetScissor = .text:0x800E97B8; // type:function size:0x78 scope:global align:4 +GXGetScissor = .text:0x800E9830; // type:function size:0x48 scope:global align:4 +GXSetScissorBoxOffset = .text:0x800E9878; // type:function size:0x40 scope:global align:4 +GXSetClipMode = .text:0x800E98B8; // type:function size:0x28 scope:global align:4 +__GXSetMatrixIndex = .text:0x800E98E0; // type:function size:0x84 scope:global align:4 +GXSetGPMetric = .text:0x800E9964; // type:function size:0x848 scope:global align:4 +GXClearGPMetric = .text:0x800EA1AC; // type:function size:0x10 scope:global align:4 +GXReadXfRasMetric = .text:0x800EA1BC; // type:function size:0xC4 scope:global align:4 +PSMTXIdentity = .text:0x800EA280; // type:function size:0x2C scope:global align:4 +PSMTXCopy = .text:0x800EA2AC; // type:function size:0x34 scope:global align:4 +PSMTXConcat = .text:0x800EA2E0; // type:function size:0xCC scope:global align:4 +PSMTXTranspose = .text:0x800EA3AC; // type:function size:0x50 scope:global align:4 +PSMTXInverse = .text:0x800EA3FC; // type:function size:0xF8 scope:global align:4 +PSMTXRotRad = .text:0x800EA4F4; // type:function size:0x70 scope:global align:4 +PSMTXRotTrig = .text:0x800EA564; // type:function size:0xB0 scope:global align:4 +__PSMTXRotAxisRadInternal = .text:0x800EA614; // type:function size:0xB0 scope:local align:4 +PSMTXRotAxisRad = .text:0x800EA6C4; // type:function size:0x70 scope:global align:4 +PSMTXTrans = .text:0x800EA734; // type:function size:0x34 scope:global align:4 +PSMTXTransApply = .text:0x800EA768; // type:function size:0x4C scope:global align:4 +PSMTXScale = .text:0x800EA7B4; // type:function size:0x28 scope:global align:4 +PSMTXScaleApply = .text:0x800EA7DC; // type:function size:0x58 scope:global align:4 +PSMTXQuat = .text:0x800EA834; // type:function size:0xA4 scope:global align:4 +C_MTXLookAt = .text:0x800EA8D8; // type:function size:0x18C scope:global align:4 +C_MTXLightPerspective = .text:0x800EAA64; // type:function size:0xCC scope:global align:4 +C_MTXLightOrtho = .text:0x800EAB30; // type:function size:0x88 scope:global align:4 +PSMTXMultVec = .text:0x800EABB8; // type:function size:0x54 scope:global align:4 +PSMTXMultVecSR = .text:0x800EAC0C; // type:function size:0x54 scope:global align:4 +PSMTXMultVecArraySR = .text:0x800EAC60; // type:function size:0x88 scope:global align:4 +C_MTXPerspective = .text:0x800EACE8; // type:function size:0xD0 scope:global align:4 +C_MTXOrtho = .text:0x800EADB8; // type:function size:0x98 scope:global align:4 +PSMTX44Copy = .text:0x800EAE50; // type:function size:0x44 scope:global align:4 +PSVECAdd = .text:0x800EAE94; // type:function size:0x24 scope:global align:4 +PSVECSubtract = .text:0x800EAEB8; // type:function size:0x24 scope:global align:4 +PSVECNormalize = .text:0x800EAEDC; // type:function size:0x44 scope:global align:4 +PSVECMag = .text:0x800EAF20; // type:function size:0x44 scope:global align:4 +PSVECCrossProduct = .text:0x800EAF64; // type:function size:0x3C scope:global align:4 +Hu_IsStub = .text:0x800EAFA0; // type:function size:0x8 scope:weak align:4 +__OSFPRInit = .text:0x800EAFA8; // type:function size:0x128 scope:global align:4 +OSGetConsoleType = .text:0x800EB0D0; // type:function size:0x28 scope:global align:4 +ClearArena = .text:0x800EB0F8; // type:function size:0x128 scope:local align:4 +InquiryCallback = .text:0x800EB220; // type:function size:0x3C scope:local align:4 +OSInit = .text:0x800EB25C; // type:function size:0x3D8 scope:global align:4 +OSExceptionInit = .text:0x800EB634; // type:function size:0x280 scope:local align:4 +__OSDBIntegrator = .text:0x800EB8B4; // type:function size:0x24 scope:local align:4 +__OSDBINTSTART = .text:0x800EB8B4; // type:label scope:global +__OSDBJump = .text:0x800EB8D8; // type:function size:0x4 scope:local align:4 +__OSDBJUMPSTART = .text:0x800EB8D8; // type:label scope:global +__OSDBJUMPEND = .text:0x800EB8DC; // type:label scope:global +__OSSetExceptionHandler = .text:0x800EB8DC; // type:function size:0x1C scope:global align:4 +__OSGetExceptionHandler = .text:0x800EB8F8; // type:function size:0x14 scope:global align:4 +OSExceptionVector = .text:0x800EB90C; // type:function size:0x9C scope:local align:4 +__OSEVStart = .text:0x800EB90C; // type:label scope:global +__DBVECTOR = .text:0x800EB964; // type:label scope:global data:4byte +__OSEVSetNumber = .text:0x800EB974; // type:label scope:global data:4byte +__OSEVEnd = .text:0x800EB9A4; // type:label scope:global +OSDefaultExceptionHandler = .text:0x800EB9A8; // type:function size:0x58 scope:global align:4 +__OSPSInit = .text:0x800EBA00; // type:function size:0x54 scope:global align:4 +__OSGetDIConfig = .text:0x800EBA54; // type:function size:0x14 scope:global align:4 +OSRegisterVersion = .text:0x800EBA68; // type:function size:0x2C scope:global align:4 +OSInitAlarm = .text:0x800EBA94; // type:function size:0x58 scope:global align:4 +OSCreateAlarm = .text:0x800EBAEC; // type:function size:0x10 scope:global align:4 +InsertAlarm = .text:0x800EBAFC; // type:function size:0x250 scope:local align:4 +OSSetAlarm = .text:0x800EBD4C; // type:function size:0x68 scope:global align:4 +OSCancelAlarm = .text:0x800EBDB4; // type:function size:0x11C scope:global align:4 +DecrementerExceptionCallback = .text:0x800EBED0; // type:function size:0x230 scope:local align:4 +DecrementerExceptionHandler = .text:0x800EC100; // type:function size:0x50 scope:local align:4 +OnReset = .text:0x800EC150; // type:function size:0xA0 scope:local align:4 +DLInsert = .text:0x800EC1F0; // type:function size:0xAC scope:local align:4 +OSFreeToHeap = .text:0x800EC29C; // type:function size:0x7C scope:global align:4 +OSSetCurrentHeap = .text:0x800EC318; // type:function size:0x10 scope:global align:4 +OSInitAlloc = .text:0x800EC328; // type:function size:0x70 scope:global align:4 +OSCreateHeap = .text:0x800EC398; // type:function size:0x6C scope:global align:4 +OSGetArenaHi = .text:0x800EC404; // type:function size:0x8 scope:global align:4 +OSGetArenaLo = .text:0x800EC40C; // type:function size:0x8 scope:global align:4 +OSSetArenaHi = .text:0x800EC414; // type:function size:0x8 scope:global align:4 +OSSetArenaLo = .text:0x800EC41C; // type:function size:0x8 scope:global align:4 +__OSInitAudioSystem = .text:0x800EC424; // type:function size:0x1BC scope:global align:4 +__OSStopAudioSystem = .text:0x800EC5E0; // type:function size:0xD8 scope:global align:4 +DCEnable = .text:0x800EC6B8; // type:function size:0x14 scope:global align:4 +DCInvalidateRange = .text:0x800EC6CC; // type:function size:0x2C scope:global align:4 +DCFlushRange = .text:0x800EC6F8; // type:function size:0x30 scope:global align:4 +DCStoreRange = .text:0x800EC728; // type:function size:0x30 scope:global align:4 +DCFlushRangeNoSync = .text:0x800EC758; // type:function size:0x2C scope:global align:4 +DCStoreRangeNoSync = .text:0x800EC784; // type:function size:0x2C scope:global align:4 +DCZeroRange = .text:0x800EC7B0; // type:function size:0x2C scope:global align:4 +ICInvalidateRange = .text:0x800EC7DC; // type:function size:0x34 scope:global align:4 +ICFlashInvalidate = .text:0x800EC810; // type:function size:0x10 scope:global align:4 +ICEnable = .text:0x800EC820; // type:function size:0x14 scope:global align:4 +__LCEnable = .text:0x800EC834; // type:function size:0xCC scope:local align:4 +LCEnable = .text:0x800EC900; // type:function size:0x38 scope:global align:4 +LCDisable = .text:0x800EC938; // type:function size:0x28 scope:global align:4 +LCStoreBlocks = .text:0x800EC960; // type:function size:0x24 scope:global align:4 +LCStoreData = .text:0x800EC984; // type:function size:0xAC scope:global align:4 +LCQueueWait = .text:0x800ECA30; // type:function size:0x14 scope:global align:4 +L2GlobalInvalidate = .text:0x800ECA44; // type:function size:0x98 scope:global align:4 +DMAErrorHandler = .text:0x800ECADC; // type:function size:0x160 scope:global align:4 +__OSCacheInit = .text:0x800ECC3C; // type:function size:0xF4 scope:global align:4 +__OSLoadFPUContext = .text:0x800ECD30; // type:function size:0x124 scope:local align:4 +__OSSaveFPUContext = .text:0x800ECE54; // type:function size:0x128 scope:local align:4 +OSSaveFPUContext = .text:0x800ECF7C; // type:function size:0x8 scope:global align:4 +OSSetCurrentContext = .text:0x800ECF84; // type:function size:0x5C scope:global align:4 +OSGetCurrentContext = .text:0x800ECFE0; // type:function size:0xC scope:global align:4 +OSSaveContext = .text:0x800ECFEC; // type:function size:0x80 scope:global align:4 +OSLoadContext = .text:0x800ED06C; // type:function size:0xD8 scope:global align:4 +OSGetStackPointer = .text:0x800ED144; // type:function size:0x8 scope:global align:4 +OSClearContext = .text:0x800ED14C; // type:function size:0x24 scope:global align:4 +OSInitContext = .text:0x800ED170; // type:function size:0xBC scope:global align:4 +OSDumpContext = .text:0x800ED22C; // type:function size:0x2A8 scope:global align:4 +OSSwitchFPUContext = .text:0x800ED4D4; // type:function size:0x84 scope:local align:4 +__OSContextInit = .text:0x800ED558; // type:function size:0x48 scope:global align:4 +OSFillFPUContext = .text:0x800ED5A0; // type:function size:0x12C scope:global align:4 +OSReport = .text:0x800ED6CC; // type:function size:0x80 scope:weak align:4 +OSPanic = .text:0x800ED74C; // type:function size:0x12C scope:weak align:4 +OSSetErrorHandler = .text:0x800ED878; // type:function size:0x218 scope:global align:4 +__OSUnhandledException = .text:0x800EDA90; // type:function size:0x2E8 scope:global align:4 +GetFontCode = .text:0x800EDD78; // type:function size:0x19C scope:local align:4 +Decode = .text:0x800EDF14; // type:function size:0x174 scope:local align:4 +OSGetFontEncode = .text:0x800EE088; // type:function size:0x58 scope:global align:4 +ReadROM = .text:0x800EE0E0; // type:function size:0x8C scope:local align:4 +OSLoadFont = .text:0x800EE16C; // type:function size:0x334 scope:global align:4 +ExpandFontSheet = .text:0x800EE4A0; // type:function size:0x3B0 scope:local align:4 +OSInitFont = .text:0x800EE850; // type:function size:0xE0 scope:global align:4 +OSGetFontTexture = .text:0x800EE930; // type:function size:0x1A8 scope:global align:4 +OSGetFontWidth = .text:0x800EEAD8; // type:function size:0x140 scope:global align:4 +OSDisableInterrupts = .text:0x800EEC18; // type:function size:0x14 scope:global align:4 +__RAS_OSDisableInterrupts_begin = .text:0x800EEC18; // type:label scope:global +__RAS_OSDisableInterrupts_end = .text:0x800EEC24; // type:label scope:global +OSEnableInterrupts = .text:0x800EEC2C; // type:function size:0x14 scope:global align:4 +OSRestoreInterrupts = .text:0x800EEC40; // type:function size:0x24 scope:global align:4 +__OSSetInterruptHandler = .text:0x800EEC64; // type:function size:0x1C scope:global align:4 +__OSGetInterruptHandler = .text:0x800EEC80; // type:function size:0x14 scope:global align:4 +__OSInterruptInit = .text:0x800EEC94; // type:function size:0x74 scope:global align:4 +SetInterruptMask = .text:0x800EED08; // type:function size:0x2D8 scope:local align:4 +__OSMaskInterrupts = .text:0x800EEFE0; // type:function size:0x88 scope:global align:4 +__OSUnmaskInterrupts = .text:0x800EF068; // type:function size:0x88 scope:global align:4 +__OSDispatchInterrupt = .text:0x800EF0F0; // type:function size:0x344 scope:global align:4 +ExternalInterruptHandler = .text:0x800EF434; // type:function size:0x50 scope:local align:4 +__OSModuleInit = .text:0x800EF484; // type:function size:0x18 scope:global align:4 +OSInitMessageQueue = .text:0x800EF49C; // type:function size:0x60 scope:global align:4 +OSSendMessage = .text:0x800EF4FC; // type:function size:0xC8 scope:global align:4 +OSReceiveMessage = .text:0x800EF5C4; // type:function size:0xDC scope:global align:4 +OSJamMessage = .text:0x800EF6A0; // type:function size:0xD4 scope:global align:4 +OnReset = .text:0x800EF774; // type:function size:0x3C scope:local align:4 +MEMIntrruptHandler = .text:0x800EF7B0; // type:function size:0x6C scope:local align:4 +OSProtectRange = .text:0x800EF81C; // type:function size:0xC4 scope:global align:4 +Config24MB = .text:0x800EF8E0; // type:function size:0x80 scope:local align:4 +Config48MB = .text:0x800EF960; // type:function size:0x80 scope:local align:4 +RealMode = .text:0x800EF9E0; // type:function size:0x18 scope:local align:4 +__OSInitMemoryProtection = .text:0x800EF9F8; // type:function size:0x118 scope:global align:4 +OSInitMutex = .text:0x800EFB10; // type:function size:0x38 scope:global align:4 +OSLockMutex = .text:0x800EFB48; // type:function size:0xDC scope:global align:4 +OSUnlockMutex = .text:0x800EFC24; // type:function size:0xC8 scope:global align:4 +__OSUnlockAllMutex = .text:0x800EFCEC; // type:function size:0x70 scope:global align:4 +OSTryLockMutex = .text:0x800EFD5C; // type:function size:0xBC scope:global align:4 +OSInitCond = .text:0x800EFE18; // type:function size:0x20 scope:global align:4 +OSWaitCond = .text:0x800EFE38; // type:function size:0xD4 scope:global align:4 +OSSignalCond = .text:0x800EFF0C; // type:function size:0x20 scope:global align:4 +Run = .text:0x800EFF2C; // type:function size:0x10 scope:local align:4 +Callback = .text:0x800EFF3C; // type:function size:0xC scope:local align:4 +__OSReboot = .text:0x800EFF48; // type:function size:0x330 scope:global align:4 +OSSetSaveRegion = .text:0x800F0278; // type:function size:0xC scope:global align:4 +OSRegisterResetFunction = .text:0x800F0284; // type:function size:0x84 scope:global align:4 +Reset = .text:0x800F0308; // type:function size:0x70 scope:local align:4 +__OSDoHotReset = .text:0x800F0378; // type:function size:0x48 scope:global align:4 +OSResetSystem = .text:0x800F03C0; // type:function size:0x2BC scope:global align:4 +OSGetResetCode = .text:0x800F067C; // type:function size:0x34 scope:global align:4 +__OSResetSWInterruptHandler = .text:0x800F06B0; // type:function size:0xF4 scope:global align:4 +OSGetResetButtonState = .text:0x800F07A4; // type:function size:0x298 scope:global align:4 +OSGetResetSwitchState = .text:0x800F0A3C; // type:function size:0x20 scope:global align:4 +WriteSramCallback = .text:0x800F0A5C; // type:function size:0x60 scope:local align:4 +WriteSram = .text:0x800F0ABC; // type:function size:0x118 scope:local align:4 +__OSInitSram = .text:0x800F0BD4; // type:function size:0x13C scope:global align:4 +__OSLockSram = .text:0x800F0D10; // type:function size:0x5C scope:global align:4 +__OSLockSramEx = .text:0x800F0D6C; // type:function size:0x5C scope:global align:4 +UnlockSram = .text:0x800F0DC8; // type:function size:0x33C scope:local align:4 +__OSUnlockSram = .text:0x800F1104; // type:function size:0x24 scope:global align:4 +__OSUnlockSramEx = .text:0x800F1128; // type:function size:0x24 scope:global align:4 +__OSSyncSram = .text:0x800F114C; // type:function size:0x10 scope:global align:4 +__OSReadROM = .text:0x800F115C; // type:function size:0x124 scope:global align:4 +OSGetSoundMode = .text:0x800F1280; // type:function size:0x80 scope:global align:4 +OSSetSoundMode = .text:0x800F1300; // type:function size:0xA4 scope:global align:4 +OSGetProgressiveMode = .text:0x800F13A4; // type:function size:0x70 scope:global align:4 +OSSetProgressiveMode = .text:0x800F1414; // type:function size:0xA4 scope:global align:4 +OSSetEuRgb60Mode = .text:0x800F14B8; // type:function size:0xA4 scope:global align:4 +OSGetWirelessID = .text:0x800F155C; // type:function size:0x84 scope:global align:4 +OSSetWirelessID = .text:0x800F15E0; // type:function size:0xAC scope:global align:4 +OSGetGbsMode = .text:0x800F168C; // type:function size:0x70 scope:global align:4 +OSSetGbsMode = .text:0x800F16FC; // type:function size:0xB8 scope:global align:4 +SystemCallVector = .text:0x800F17B4; // type:function size:0x20 scope:local align:4 +__OSSystemCallVectorStart = .text:0x800F17B4; // type:label scope:global +__OSSystemCallVectorEnd = .text:0x800F17D0; // type:label scope:global +__OSInitSystemCall = .text:0x800F17D4; // type:function size:0x64 scope:global align:4 +DefaultSwitchThreadCallback = .text:0x800F1838; // type:function size:0x4 scope:local align:4 +__OSThreadInit = .text:0x800F183C; // type:function size:0x158 scope:global align:4 +OSInitThreadQueue = .text:0x800F1994; // type:function size:0x10 scope:global align:4 +OSGetCurrentThread = .text:0x800F19A4; // type:function size:0xC scope:global align:4 +OSIsThreadTerminated = .text:0x800F19B0; // type:function size:0x34 scope:global align:4 +OSDisableScheduler = .text:0x800F19E4; // type:function size:0x40 scope:global align:4 +OSEnableScheduler = .text:0x800F1A24; // type:function size:0x40 scope:global align:4 +UnsetRun = .text:0x800F1A64; // type:function size:0x68 scope:local align:4 +__OSGetEffectivePriority = .text:0x800F1ACC; // type:function size:0x3C scope:global align:4 +SetEffectivePriority = .text:0x800F1B08; // type:function size:0x1C0 scope:local align:4 +__OSPromoteThread = .text:0x800F1CC8; // type:function size:0x50 scope:global align:4 +SelectThread = .text:0x800F1D18; // type:function size:0x228 scope:local align:4 +__OSReschedule = .text:0x800F1F40; // type:function size:0x30 scope:global align:4 +OSYieldThread = .text:0x800F1F70; // type:function size:0x3C scope:global align:4 +OSCreateThread = .text:0x800F1FAC; // type:function size:0x1E8 scope:global align:4 +OSExitThread = .text:0x800F2194; // type:function size:0xE4 scope:global align:4 +OSCancelThread = .text:0x800F2278; // type:function size:0x1BC scope:global align:4 +OSDetachThread = .text:0x800F2434; // type:function size:0xA0 scope:global align:4 +OSResumeThread = .text:0x800F24D4; // type:function size:0x288 scope:global align:4 +OSSuspendThread = .text:0x800F275C; // type:function size:0x170 scope:global align:4 +OSSleepThread = .text:0x800F28CC; // type:function size:0xEC scope:global align:4 +OSWakeupThread = .text:0x800F29B8; // type:function size:0x104 scope:global align:4 +OSGetThreadPriority = .text:0x800F2ABC; // type:function size:0x8 scope:global align:4 +OSClearStack = .text:0x800F2AC4; // type:function size:0xAC scope:global align:4 +OSGetTime = .text:0x800F2B70; // type:function size:0x18 scope:global align:4 +OSGetTick = .text:0x800F2B88; // type:function size:0x8 scope:global align:4 +__OSGetSystemTime = .text:0x800F2B90; // type:function size:0x64 scope:global align:4 +GetDates = .text:0x800F2BF4; // type:function size:0x19C scope:local align:4 +OSTicksToCalendarTime = .text:0x800F2D90; // type:function size:0x204 scope:global align:4 +__init_user = .text:0x800F2F94; // type:function size:0x20 scope:global align:4 +__init_cpp = .text:0x800F2FB4; // type:function size:0x54 scope:local align:4 +_ExitProcess = .text:0x800F3008; // type:function size:0x20 scope:global align:4 +ClampStick = .text:0x800F3028; // type:function size:0x130 scope:local align:4 +ClampCircle = .text:0x800F3158; // type:function size:0x1A8 scope:local align:4 +PADClamp = .text:0x800F3300; // type:function size:0x114 scope:global align:4 +PADClampCircle = .text:0x800F3414; // type:function size:0x10C scope:global align:4 +UpdateOrigin = .text:0x800F3520; // type:function size:0x1A4 scope:local align:4 +PADOriginCallback = .text:0x800F36C4; // type:function size:0xC4 scope:local align:4 +PADOriginUpdateCallback = .text:0x800F3788; // type:function size:0xCC scope:local align:4 +PADProbeCallback = .text:0x800F3854; // type:function size:0xD8 scope:local align:4 +PADTypeAndStatusCallback = .text:0x800F392C; // type:function size:0x32C scope:local align:4 +PADReceiveCheckCallback = .text:0x800F3C58; // type:function size:0x140 scope:local align:4 +PADReset = .text:0x800F3D98; // type:function size:0x110 scope:global align:4 +PADRecalibrate = .text:0x800F3EA8; // type:function size:0x114 scope:global align:4 +PADInit = .text:0x800F3FBC; // type:function size:0x150 scope:global align:4 +PADRead = .text:0x800F410C; // type:function size:0x300 scope:global align:4 +PADControlMotor = .text:0x800F440C; // type:function size:0xB8 scope:global align:4 +PADSetSpec = .text:0x800F44C4; // type:function size:0x60 scope:global align:4 +SPEC0_MakeStatus = .text:0x800F4524; // type:function size:0x174 scope:local align:4 +SPEC1_MakeStatus = .text:0x800F4698; // type:function size:0x174 scope:local align:4 +SPEC2_MakeStatus = .text:0x800F480C; // type:function size:0x470 scope:local align:4 +PADSetAnalogMode = .text:0x800F4C7C; // type:function size:0x74 scope:global align:4 +OnReset = .text:0x800F4CF0; // type:function size:0xBC scope:local align:4 +SamplingHandler = .text:0x800F4DAC; // type:function size:0x60 scope:local align:4 +PADSetSamplingCallback = .text:0x800F4E0C; // type:function size:0x54 scope:global align:4 +__PADDisableRecalibration = .text:0x800F4E60; // type:function size:0x7C scope:global align:4 +SIBusy = .text:0x800F4EDC; // type:function size:0x20 scope:global align:4 +SIIsChanBusy = .text:0x800F4EFC; // type:function size:0x3C scope:global align:4 +CompleteTransfer = .text:0x800F4F38; // type:function size:0x2FC scope:local align:4 +SIInterruptHandler = .text:0x800F5234; // type:function size:0x344 scope:local align:4 +SIEnablePollingInterrupt = .text:0x800F5578; // type:function size:0x98 scope:local align:4 +SIRegisterPollingHandler = .text:0x800F5610; // type:function size:0xCC scope:global align:4 +SIUnregisterPollingHandler = .text:0x800F56DC; // type:function size:0xF4 scope:global align:4 +SIInit = .text:0x800F57D0; // type:function size:0xB4 scope:global align:4 +__SITransfer = .text:0x800F5884; // type:function size:0x20C scope:local align:4 +SIGetStatus = .text:0x800F5A90; // type:function size:0x7C scope:global align:4 +SISetCommand = .text:0x800F5B0C; // type:function size:0x14 scope:global align:4 +SITransferCommands = .text:0x800F5B20; // type:function size:0x10 scope:global align:4 +SISetXY = .text:0x800F5B30; // type:function size:0x6C scope:global align:4 +SIEnablePolling = .text:0x800F5B9C; // type:function size:0x9C scope:global align:4 +SIDisablePolling = .text:0x800F5C38; // type:function size:0x6C scope:global align:4 +SIGetResponseRaw = .text:0x800F5CA4; // type:function size:0xD4 scope:local align:4 +SIGetResponse = .text:0x800F5D78; // type:function size:0xC4 scope:global align:4 +AlarmHandler = .text:0x800F5E3C; // type:function size:0x8C scope:local align:4 +SITransfer = .text:0x800F5EC8; // type:function size:0x16C scope:global align:4 +GetTypeCallback = .text:0x800F6034; // type:function size:0x298 scope:local align:4 +SIGetType = .text:0x800F62CC; // type:function size:0x1C4 scope:global align:4 +SIGetTypeAsync = .text:0x800F6490; // type:function size:0x13C scope:global align:4 +SIDecodeType = .text:0x800F65CC; // type:function size:0x14C scope:global align:4 +SIProbe = .text:0x800F6718; // type:function size:0x24 scope:global align:4 +SISetSamplingRate = .text:0x800F673C; // type:function size:0xE4 scope:global align:4 +SIRefreshSamplingRate = .text:0x800F6820; // type:function size:0x24 scope:global align:4 +AIRegisterDMACallback = .text:0x800F6844; // type:function size:0x44 scope:global align:4 +AIInitDMA = .text:0x800F6888; // type:function size:0x88 scope:global align:4 +AIStartDMA = .text:0x800F6910; // type:function size:0x18 scope:global align:4 +AIStopDMA = .text:0x800F6928; // type:function size:0x18 scope:global align:4 +AISetStreamPlayState = .text:0x800F6940; // type:function size:0xD8 scope:global align:4 +AIGetStreamPlayState = .text:0x800F6A18; // type:function size:0x10 scope:global align:4 +AISetDSPSampleRate = .text:0x800F6A28; // type:function size:0xE0 scope:global align:4 +AIGetDSPSampleRate = .text:0x800F6B08; // type:function size:0x14 scope:global align:4 +__AI_set_stream_sample_rate = .text:0x800F6B1C; // type:function size:0xD4 scope:local align:4 +AIGetStreamSampleRate = .text:0x800F6BF0; // type:function size:0x10 scope:global align:4 +AISetStreamVolLeft = .text:0x800F6C00; // type:function size:0x1C scope:global align:4 +AIGetStreamVolLeft = .text:0x800F6C1C; // type:function size:0x10 scope:global align:4 +AISetStreamVolRight = .text:0x800F6C2C; // type:function size:0x1C scope:global align:4 +AIGetStreamVolRight = .text:0x800F6C48; // type:function size:0x10 scope:global align:4 +AIInit = .text:0x800F6C58; // type:function size:0x16C scope:global align:4 +__AISHandler = .text:0x800F6DC4; // type:function size:0x7C scope:local align:4 +__AIDHandler = .text:0x800F6E40; // type:function size:0xAC scope:local align:4 +__AICallbackStackSwitch = .text:0x800F6EEC; // type:function size:0x58 scope:local align:4 +__AI_SRC_INIT = .text:0x800F6F44; // type:function size:0x1E4 scope:local align:4 +THPVideoDecode = .text:0x800F7128; // type:function size:0x244 scope:global align:4 +__THPSetupBuffers = .text:0x800F736C; // type:function size:0x44 scope:local align:4 +__THPReadFrameHeader = .text:0x800F73B0; // type:function size:0x13C scope:local align:4 +__THPReadScaneHeader = .text:0x800F74EC; // type:function size:0x11C scope:local align:4 +__THPReadQuantizationTable = .text:0x800F7608; // type:function size:0x3BC scope:local align:4 +__THPReadHuffmanTableSpecification = .text:0x800F79C4; // type:function size:0x1E0 scope:local align:4 +__THPHuffGenerateSizeTable = .text:0x800F7BA4; // type:function size:0xF0 scope:local align:4 +__THPHuffGenerateCodeTable = .text:0x800F7C94; // type:function size:0x68 scope:local align:4 +__THPHuffGenerateDecoderTables = .text:0x800F7CFC; // type:function size:0x1BC scope:local align:4 +__THPRestartDefinition = .text:0x800F7EB8; // type:function size:0x54 scope:local align:4 +__THPPrepBitStream = .text:0x800F7F0C; // type:function size:0x24C scope:local align:4 +__THPDecompressYUV = .text:0x800F8158; // type:function size:0x10C scope:local align:4 +__THPDecompressiMCURow512x448 = .text:0x800F8264; // type:function size:0x1A88 scope:local align:4 +__THPDecompressiMCURow640x480 = .text:0x800F9CEC; // type:function size:0x1A8C scope:local align:4 +__THPDecompressiMCURowNxN = .text:0x800FB778; // type:function size:0x1AAC scope:local align:4 +__THPHuffDecodeDCTCompY = .text:0x800FD224; // type:function size:0x67C scope:local align:4 +__THPHuffDecodeDCTCompU = .text:0x800FD8A0; // type:function size:0x6A8 scope:local align:4 +__THPHuffDecodeDCTCompV = .text:0x800FDF48; // type:function size:0x6A8 scope:local align:4 +THPInit = .text:0x800FE5F0; // type:function size:0xA0 scope:global align:4 +THPAudioDecode = .text:0x800FE690; // type:function size:0x3B0 scope:global align:4 +__THPAudioGetNewSample = .text:0x800FEA40; // type:function size:0x90 scope:local align:4 +__THPAudioInitialize = .text:0x800FEAD0; // type:function size:0x3C scope:local align:4 +ShortCommandProc = .text:0x800FEB0C; // type:function size:0x54 scope:local align:4 +GBAInit = .text:0x800FEB60; // type:function size:0xC0 scope:global align:4 +GBAGetStatus = .text:0x800FEC20; // type:function size:0x90 scope:global align:4 +GBAReset = .text:0x800FECB0; // type:function size:0x90 scope:global align:4 +OnReset = .text:0x800FED40; // type:function size:0x10 scope:local align:4 +ReadProc = .text:0x800FED50; // type:function size:0x60 scope:local align:4 +GBARead = .text:0x800FEDB0; // type:function size:0x94 scope:global align:4 +WriteProc = .text:0x800FEE44; // type:function size:0x30 scope:local align:4 +GBAWrite = .text:0x800FEE74; // type:function size:0xC4 scope:global align:4 +__GBAHandler = .text:0x800FEF38; // type:function size:0xDC scope:local align:4 +__GBASyncCallback = .text:0x800FF014; // type:function size:0x34 scope:global align:4 +__GBASync = .text:0x800FF048; // type:function size:0x6C scope:global align:4 +TypeAndStatusCallback = .text:0x800FF0B4; // type:function size:0x124 scope:local align:4 +__GBATransfer = .text:0x800FF1D8; // type:function size:0x74 scope:global align:4 +animation__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase = .text:0x800FF24C; // type:function size:0xF8 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x800FF344; // type:function size:0x1E0 scope:global align:4 +isAlive__Q24Game8CreatureFv = .text:0x800FF524; // type:function size:0xC scope:weak align:4 +init__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x800FF530; // type:function size:0x1A8 scope:global align:4 +update__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x800FF6D8; // type:function size:0x6C scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x800FF744; // type:function size:0x30 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM24BirthTypeDropPikminStateFPQ24Game9EnemyBase = .text:0x800FF774; // type:function size:0x1C4 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM24BirthTypeDropOlimarStateFPQ24Game9EnemyBase = .text:0x800FF938; // type:function size:0x1A8 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM26BirthTypeDropTreasureStateFPQ24Game9EnemyBase = .text:0x800FFAE0; // type:function size:0x18C scope:global align:4 +getPosition__Q24Game6PelletFv = .text:0x800FFC6C; // type:function size:0x1C scope:weak align:4 +isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM28BirthTypeDropEarthquakeStateFPQ24Game9EnemyBase = .text:0x800FFC88; // type:function size:0x8 scope:global align:4 +entry__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase = .text:0x800FFC90; // type:function size:0x24 scope:global align:4 +init__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x800FFCB4; // type:function size:0xFC scope:global align:4 +getPosition__Q24Game9EnemyBaseFv = .text:0x800FFDB0; // type:function size:0x1C scope:weak align:4 +update__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase = .text:0x800FFDCC; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase = .text:0x800FFEFC; // type:function size:0x1C scope:global align:4 +simulation__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBasef = .text:0x800FFF18; // type:function size:0x10C scope:global align:4 +getCreatureID__Q24Game9EnemyBaseFv = .text:0x80100024; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q24Game9EnemyBaseFv = .text:0x8010002C; // type:function size:0x38 scope:weak align:4 +entry__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x80100064; // type:function size:0x40 scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x801000A4; // type:function size:0x30 scope:global align:4 +updateAlways__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x801000D4; // type:function size:0x30 scope:global align:4 +update__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase = .text:0x80100104; // type:function size:0x1BC scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase = .text:0x801002C0; // type:function size:0x48 scope:global align:4 +init__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80100308; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase = .text:0x80100458; // type:function size:0x80 scope:global align:4 +updateAlways__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase = .text:0x801004D8; // type:function size:0x204 scope:global align:4 +init__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801006DC; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBase = .text:0x80100764; // type:function size:0x50 scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBase = .text:0x801007B4; // type:function size:0x158 scope:global align:4 +isFlying__Q24Game9EnemyBaseFv = .text:0x8010090C; // type:function size:0xC scope:weak align:4 +bounceProcedure__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBasePQ23Sys8Triangle = .text:0x80100918; // type:function size:0x64 scope:global align:4 +init__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010097C; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase = .text:0x80100A7C; // type:function size:0xCC scope:global align:4 +updateAlways__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase = .text:0x80100B48; // type:function size:0x118 scope:global align:4 +updateCullingOff__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase = .text:0x80100C60; // type:function size:0x74 scope:global align:4 +init__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x80100CD4; // type:function size:0x484 scope:global align:4 +__dt__Q23efx10TEnemyPiyoFv = .text:0x80101158; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TChasePosFv = .text:0x801011F4; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx5TSyncFv = .text:0x80101278; // type:function size:0x6C scope:weak align:4 +update__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x801012E4; // type:function size:0x30 scope:global align:4 +update__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase = .text:0x80101314; // type:function size:0x4 scope:weak align:4 +entry__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x80101318; // type:function size:0x30 scope:global align:4 +entry__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase = .text:0x80101348; // type:function size:0x4 scope:weak align:4 +simulation__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasef = .text:0x8010134C; // type:function size:0x30 scope:global align:4 +simulation__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBasef = .text:0x8010137C; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game9EnemyBaseFv = .text:0x80101380; // type:function size:0x370 scope:global align:4 +__dt__Q28SysShape8KeyEventFv = .text:0x801016F0; // type:function size:0x60 scope:weak align:4 +__ct__11BitFlag
      Fv = .text:0x80101750; // type:function size:0x18 scope:weak align:4 +constructor__Q24Game9EnemyBaseFv = .text:0x80101768; // type:function size:0x44 scope:global align:4 +createEffects__Q24Game9EnemyBaseFv = .text:0x801017AC; // type:function size:0x5C scope:global align:4 +fadeEffects__Q24Game9EnemyBaseFv = .text:0x80101808; // type:function size:0x5C scope:global align:4 +createInstanceEfxHamon__Q24Game9EnemyBaseFv = .text:0x80101864; // type:function size:0x50 scope:global align:4 +updateEfxHamon__Q24Game9EnemyBaseFv = .text:0x801018B4; // type:function size:0x30 scope:global align:4 +createEfxHamon__Q24Game9EnemyBaseFv = .text:0x801018E4; // type:function size:0x3C scope:global align:4 +fadeEfxHamon__Q24Game9EnemyBaseFv = .text:0x80101920; // type:function size:0x3C scope:global align:4 +setEmotionCaution__Q24Game9EnemyBaseFv = .text:0x8010195C; // type:function size:0x50 scope:global align:4 +setEmotionExcitement__Q24Game9EnemyBaseFv = .text:0x801019AC; // type:function size:0x3C scope:global align:4 +setEmotionNone__Q24Game9EnemyBaseFv = .text:0x801019E8; // type:function size:0x50 scope:global align:4 +onInit__Q24Game9EnemyBaseFPQ24Game15CreatureInitArg = .text:0x80101A38; // type:function size:0x104 scope:global align:4 +onInitPost__Q24Game9EnemyBaseFPQ24Game15CreatureInitArg = .text:0x80101B3C; // type:function size:0x218 scope:global align:4 +setOtakaraCode__Q24Game9EnemyBaseFRQ34Game9PelletMgr15OtakaraItemCode = .text:0x80101D54; // type:function size:0xA0 scope:global align:4 +setKilled__Q23PSM9EnemyBaseFv = .text:0x80101DF4; // type:function size:0x4 scope:weak align:4 +setCarcassArg__Q24Game9EnemyBaseFRQ24Game13PelletViewArg = .text:0x80101DF8; // type:function size:0xC4 scope:global align:4 +doBecomeCarcass__Q24Game9EnemyBaseFv = .text:0x80101EBC; // type:function size:0x8 scope:global align:4 +doUpdateCarcass__Q24Game9EnemyBaseFv = .text:0x80101EC4; // type:function size:0x4 scope:global align:4 +onKill__Q24Game9EnemyBaseFPQ24Game15CreatureKillArg = .text:0x80101EC8; // type:function size:0x9EC scope:global align:4 +setVelocity__Q24Game8BaseItemFR10Vector3 = .text:0x801028B4; // type:function size:0x1C scope:weak align:4 +getBoundingSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere = .text:0x801028D0; // type:function size:0x24 scope:weak align:4 +getName__Q24Game15CreatureKillArgFv = .text:0x801028F4; // type:function size:0xC scope:weak align:4 +setZukanVisible__Q24Game9EnemyBaseFb = .text:0x80102900; // type:function size:0xE0 scope:global align:4 +birth__Q24Game9EnemyBaseFR10Vector3f = .text:0x801029E0; // type:function size:0x160 scope:global align:4 +updateTrMatrix__Q24Game9EnemyBaseFv = .text:0x80102B40; // type:function size:0x78 scope:global align:4 +setParameters__Q24Game9EnemyBaseFv = .text:0x80102BB8; // type:function size:0x78 scope:global align:4 +update__Q24Game9EnemyBaseFv = .text:0x80102C30; // type:function size:0x34 scope:global align:4 +isFinishableWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x80102C64; // type:function size:0x1E0 scope:global align:4 +startStoneState__Q24Game9EnemyBaseFv = .text:0x80102E44; // type:function size:0x90 scope:global align:4 +doStartStoneState__Q24Game9EnemyBaseFv = .text:0x80102ED4; // type:function size:0x14 scope:global align:4 +doFinishStoneState__Q24Game9EnemyBaseFv = .text:0x80102EE8; // type:function size:0x4 scope:global align:4 +getWalkSmokeEffectMgr__Q24Game9EnemyBaseFv = .text:0x80102EEC; // type:function size:0x8 scope:weak align:4 +doUpdateCommon__Q24Game9EnemyBaseFv = .text:0x80102EF4; // type:function size:0x80 scope:global align:4 +doAnimation__Q24Game9EnemyBaseFv = .text:0x80102F74; // type:function size:0x34 scope:global align:4 +animation__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x80102FA8; // type:function size:0x30 scope:weak align:4 +doAnimationUpdateAnimator__Q24Game9EnemyBaseFv = .text:0x80102FD8; // type:function size:0x88 scope:global align:4 +doAnimationCullingOff__Q24Game9EnemyBaseFv = .text:0x80103060; // type:function size:0x1E0 scope:global align:4 +onSetPositionPost__Q24Game9EnemyBaseFR10Vector3 = .text:0x80103240; // type:function size:0x20 scope:weak align:4 +onSetPosition__Q24Game9EnemyBaseFR10Vector3 = .text:0x80103260; // type:function size:0x1C scope:weak align:4 +doAnimationStick__Q24Game9EnemyBaseFv = .text:0x8010327C; // type:function size:0x7C scope:global align:4 +doAnimationCullingOn__Q24Game9EnemyBaseFv = .text:0x801032F8; // type:function size:0x20 scope:global align:4 +show__Q24Game9EnemyBaseFv = .text:0x80103318; // type:function size:0x7C scope:global align:4 +hide__Q24Game9EnemyBaseFv = .text:0x80103394; // type:function size:0x54 scope:global align:4 +doEntryCarcass__Q24Game9EnemyBaseFv = .text:0x801033E8; // type:function size:0x108 scope:global align:4 +doEntryLiving__Q24Game9EnemyBaseFv = .text:0x801034F0; // type:function size:0x13C scope:global align:4 +doEntry__Q24Game9EnemyBaseFv = .text:0x8010362C; // type:function size:0x34 scope:global align:4 +doSetView__Q24Game9EnemyBaseFi = .text:0x80103660; // type:function size:0x28 scope:global align:4 +isCullingOff__Q24Game9EnemyBaseFv = .text:0x80103688; // type:function size:0x54 scope:global align:4 +doViewCalc__Q24Game9EnemyBaseFv = .text:0x801036DC; // type:function size:0x78 scope:global align:4 +doSimulationGround__Q24Game9EnemyBaseFf = .text:0x80103754; // type:function size:0xAC scope:global align:4 +doSimulationFlying__Q24Game9EnemyBaseFf = .text:0x80103800; // type:function size:0x58 scope:global align:4 +doSimulationStick__Q24Game9EnemyBaseFf = .text:0x80103858; // type:function size:0x58 scope:global align:4 +updateSpheres__Q24Game9EnemyBaseFv = .text:0x801038B0; // type:function size:0x70 scope:global align:4 +createDropEffect__Q24Game9EnemyBaseFRC10Vector3f = .text:0x80103920; // type:function size:0xB8 scope:global align:4 +createSplashDownEffect__Q24Game9EnemyBaseFRC10Vector3f = .text:0x801039D8; // type:function size:0x158 scope:global align:4 +createBounceEffect__Q24Game9EnemyBaseFRC10Vector3f = .text:0x80103B30; // type:function size:0x1DC scope:global align:4 +outWaterCallback__Q24Game9EnemyBaseFv = .text:0x80103D0C; // type:function size:0x168 scope:global align:4 +inWaterCallback__Q24Game9EnemyBaseFPQ24Game8WaterBox = .text:0x80103E74; // type:function size:0x168 scope:global align:4 +finishDropping__Q24Game9EnemyBaseFb = .text:0x80103FDC; // type:function size:0x28C scope:global align:4 +bounceProcedure__Q24Game9EnemyBaseFPQ23Sys8Triangle = .text:0x80104268; // type:function size:0x80 scope:global align:4 +bounceProcedure__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasePQ23Sys8Triangle = .text:0x801042E8; // type:function size:0x30 scope:weak align:4 +bounceProcedure__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBasePQ23Sys8Triangle = .text:0x80104318; // type:function size:0x4 scope:weak align:4 +bounceCallback__Q24Game8CreatureFPQ23Sys8Triangle = .text:0x8010431C; // type:function size:0x4 scope:weak align:4 +collisionMapAndPlat__Q24Game9EnemyBaseFf = .text:0x80104320; // type:function size:0x6D4 scope:global align:4 +constraintBoundBox__Q24Game6MapMgrFRQ23Sys6Sphere = .text:0x801049F4; // type:function size:0x4 scope:weak align:4 +hasHiddenCollision__Q24Game6MapMgrFv = .text:0x801049F8; // type:function size:0x8 scope:weak align:4 +wallCallback__Q24Game9EnemyBaseFRCQ24Game8MoveInfo = .text:0x80104A00; // type:function size:0x4 scope:weak align:4 +getOffsetForMapCollision__Q24Game9EnemyBaseFv = .text:0x80104A04; // type:function size:0x14 scope:weak align:4 +doSimulationCarcass__Q24Game9EnemyBaseFf = .text:0x80104A18; // type:function size:0x20 scope:global align:4 +doSimulation__Q24Game9EnemyBaseFf = .text:0x80104A38; // type:function size:0x34 scope:global align:4 +doSimulationConstraint__Q24Game9EnemyBaseFf = .text:0x80104A6C; // type:function size:0xD8 scope:global align:4 +gotoHell__Q24Game9EnemyBaseFv = .text:0x80104B44; // type:function size:0x70 scope:global align:4 +setAnimMgr__Q24Game9EnemyBaseFPQ28SysShape7AnimMgr = .text:0x80104BB4; // type:function size:0x30 scope:global align:4 +setPSEnemyBaseAnime__Q24Game9EnemyBaseFv = .text:0x80104BE4; // type:function size:0x1B4 scope:global align:4 +startBlend__Q24Game9EnemyBaseFiiPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener = .text:0x80104D98; // type:function size:0x1F0 scope:global align:4 +endBlend__Q24Game9EnemyBaseFv = .text:0x80104F88; // type:function size:0x50 scope:global align:4 +getTypeID__Q24Game17EnemyAnimatorBaseFv = .text:0x80104FD8; // type:function size:0xC scope:weak align:4 +startMotion__Q24Game9EnemyBaseFiPQ28SysShape14MotionListener = .text:0x80104FE4; // type:function size:0x224 scope:global align:4 +setMotionFrame__Q24Game9EnemyBaseFf = .text:0x80105208; // type:function size:0x44 scope:global align:4 +getMotionFrame__Q24Game9EnemyBaseFv = .text:0x8010524C; // type:function size:0x34 scope:global align:4 +finishMotion__Q24Game9EnemyBaseFv = .text:0x80105280; // type:function size:0x40 scope:global align:4 +onKeyEvent__Q24Game9EnemyBaseFRCQ28SysShape8KeyEvent = .text:0x801052C0; // type:function size:0x20 scope:global align:4 +stimulate__Q24Game9EnemyBaseFRQ24Game11Interaction = .text:0x801052E0; // type:function size:0x80 scope:global align:4 +actEnemy__Q24Game11InteractionFPQ24Game9EnemyBase = .text:0x80105360; // type:function size:0x8 scope:weak align:4 +actCommon__Q24Game11InteractionFPQ24Game8Creature = .text:0x80105368; // type:function size:0x8 scope:weak align:4 +lifeRecover__Q24Game9EnemyBaseFv = .text:0x80105370; // type:function size:0x30 scope:global align:4 +scaleDamageAnim__Q24Game9EnemyBaseFv = .text:0x801053A0; // type:function size:0x33C scope:global align:4 +finishScaleDamageAnim__Q24Game9EnemyBaseFv = .text:0x801056DC; // type:function size:0x24 scope:global align:4 +deathProcedure__Q24Game9EnemyBaseFv = .text:0x80105700; // type:function size:0xF8 scope:global align:4 +getCastType__Q23PSM9EnemyBaseFv = .text:0x801057F8; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q24Game9EnemyBaseFv = .text:0x80105800; // type:function size:0x2C scope:weak align:4 +setAlive__Q24Game8CreatureFb = .text:0x8010582C; // type:function size:0x28 scope:weak align:4 +createDeadBombEffect__Q24Game9EnemyBaseFv = .text:0x80105854; // type:function size:0xD8 scope:global align:4 +getThrowupItemPosition__Q24Game9EnemyBaseFP10Vector3 = .text:0x8010592C; // type:function size:0x54 scope:global align:4 +getThrowupItemVelocity__Q24Game9EnemyBaseFP10Vector3 = .text:0x80105980; // type:function size:0x18 scope:global align:4 +throwupItem__Q24Game9EnemyBaseFv = .text:0x80105998; // type:function size:0x4B0 scope:global align:4 +createKiraEffect__Q24Game6PelletFR10Vector3 = .text:0x80105E48; // type:function size:0x4 scope:weak align:4 +doDebugDraw__Q24Game9EnemyBaseFR8Graphics = .text:0x80105E4C; // type:function size:0x4 scope:global align:4 +getLifeGaugeParam__Q24Game9EnemyBaseFRQ24Game14LifeGaugeParam = .text:0x80105E50; // type:function size:0x80 scope:global align:4 +doGetLifeGaugeParam__Q24Game9EnemyBaseFRQ24Game14LifeGaugeParam = .text:0x80105ED0; // type:function size:0x40 scope:global align:4 +onStickStart__Q24Game9EnemyBaseFPQ24Game8Creature = .text:0x80105F10; // type:function size:0x50 scope:global align:4 +onStickEnd__Q24Game9EnemyBaseFPQ24Game8Creature = .text:0x80105F60; // type:function size:0x50 scope:global align:4 +injure__Q24Game9EnemyBaseFv = .text:0x80105FB0; // type:function size:0x5C scope:global align:4 +addDamage__Q24Game9EnemyBaseFff = .text:0x8010600C; // type:function size:0x40 scope:global align:4 +damageCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x8010604C; // type:function size:0x48 scope:global align:4 +pressCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x80106094; // type:function size:0x8 scope:global align:4 +flyCollisionCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x8010609C; // type:function size:0x8 scope:global align:4 +hipdropCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart = .text:0x801060A4; // type:function size:0x248 scope:global align:4 +dropCallBack__Q24Game9EnemyBaseFPQ24Game8Creature = .text:0x801062EC; // type:function size:0x8 scope:global align:4 +isBeforeAppearState__Q24Game9EnemyBaseFv = .text:0x801062F4; // type:function size:0x40 scope:global align:4 +checkBirthTypeDropEarthquake__Q24Game9EnemyBaseFv = .text:0x80106334; // type:function size:0x70 scope:global align:4 +earthquakeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef = .text:0x801063A4; // type:function size:0xEC scope:global align:4 +dopeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturei = .text:0x80106490; // type:function size:0x108 scope:global align:4 +doDopeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturei = .text:0x80106598; // type:function size:0x8 scope:weak align:4 +farmCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef = .text:0x801065A0; // type:function size:0x8 scope:global align:4 +bombCallBack__Q24Game9EnemyBaseFPQ24Game8CreatureR10Vector3f = .text:0x801065A8; // type:function size:0x48 scope:global align:4 +collisionCallback__Q24Game9EnemyBaseFRQ24Game9CollEvent = .text:0x801065F0; // type:function size:0x54 scope:global align:4 +setCollEvent__Q24Game9EnemyBaseFRQ24Game9CollEvent = .text:0x80106644; // type:function size:0x28 scope:global align:4 +resetCollEvent__Q24Game9EnemyBaseFv = .text:0x8010666C; // type:function size:0x10 scope:global align:4 +changeMaterial__Q24Game9EnemyBaseFv = .text:0x8010667C; // type:function size:0x4 scope:global align:4 +viewGetShape__Q24Game9EnemyBaseFv = .text:0x80106680; // type:function size:0x8 scope:global align:4 +viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80106688; // type:function size:0x20 scope:global align:4 +viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x801066A8; // type:function size:0x40 scope:global align:4 +startCarcassMotion__Q24Game9EnemyBaseFv = .text:0x801066E8; // type:function size:0x214 scope:weak align:4 +viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x801068FC; // type:function size:0x130 scope:global align:4 +view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80106A2C; // type:function size:0x2C scope:global align:4 +view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80106A58; // type:function size:0x40 scope:global align:4 +getCommonEffectPos__Q24Game9EnemyBaseFR10Vector3 = .text:0x80106A98; // type:function size:0xA8 scope:global align:4 +getWaterSphere__Q24Game9EnemyBaseFPQ23Sys6Sphere = .text:0x80106B40; // type:function size:0x40 scope:global align:4 +updateWaterBox__Q24Game9EnemyBaseFv = .text:0x80106B80; // type:function size:0x148 scope:global align:4 +inWater__Q24Game8WaterBoxFRQ23Sys6Sphere = .text:0x80106CC8; // type:function size:0x8 scope:weak align:4 +createPSEnemyBase__Q24Game9EnemyBaseFv = .text:0x80106CD0; // type:function size:0x27C scope:global align:4 +__dt__Q23PSM8EnemyBigFv = .text:0x80106F4C; // type:function size:0x164 scope:weak align:4 +__dt__Q23PSM9EnemyBaseFv = .text:0x801070B0; // type:function size:0x134 scope:weak align:4 +startMotion__Q24Game9EnemyBaseFv = .text:0x801071E4; // type:function size:0x1C scope:global align:4 +getMotionFrameMax__Q24Game9EnemyBaseFv = .text:0x80107200; // type:function size:0x58 scope:global align:4 +getFirstKeyFrame__Q24Game9EnemyBaseFv = .text:0x80107258; // type:function size:0x68 scope:global align:4 +stopMotion__Q24Game9EnemyBaseFv = .text:0x801072C0; // type:function size:0x20 scope:global align:4 +isFinishMotion__Q24Game9EnemyBaseFv = .text:0x801072E0; // type:function size:0x38 scope:global align:4 +isStopMotion__Q24Game9EnemyBaseFv = .text:0x80107318; // type:function size:0x10 scope:global align:4 +getCurrAnimIndex__Q24Game9EnemyBaseFv = .text:0x80107328; // type:function size:0x48 scope:global align:4 +setAnimSpeed__Q24Game9EnemyBaseFf = .text:0x80107370; // type:function size:0xC scope:global align:4 +resetAnimSpeed__Q24Game9EnemyBaseFv = .text:0x8010737C; // type:function size:0x30 scope:global align:4 +resetAnimSpeed__Q24Game17EnemyAnimatorBaseFv = .text:0x801073AC; // type:function size:0xC scope:weak align:4 +getJAIObject__Q24Game9EnemyBaseFv = .text:0x801073B8; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game9EnemyBaseFv = .text:0x801073CC; // type:function size:0x8 scope:global align:4 +getStateID__Q24Game9EnemyBaseFv = .text:0x801073D4; // type:function size:0x1C scope:global align:4 +needShadow__Q24Game9EnemyBaseFv = .text:0x801073F0; // type:function size:0xAC scope:global align:4 +isAlwaysMovieActor__Q24Game12EnemyMgrBaseFv = .text:0x8010749C; // type:function size:0x8 scope:weak align:4 +isMovieActor__Q24Game8CreatureFv = .text:0x801074A4; // type:function size:0xC scope:weak align:4 +eatWhitePikminCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef = .text:0x801074B0; // type:function size:0x234 scope:global align:4 +__dt__Q34Game10EnemyStone8DrawInfoFv = .text:0x801076E4; // type:function size:0x60 scope:weak align:4 +getDownSmokeScale__Q24Game9EnemyBaseFv = .text:0x80107744; // type:function size:0x8 scope:global align:4 +constraintOff__Q24Game9EnemyBaseFv = .text:0x8010774C; // type:function size:0x10 scope:global align:4 +hardConstraintOn__Q24Game9EnemyBaseFv = .text:0x8010775C; // type:function size:0x18 scope:global align:4 +hardConstraintOff__Q24Game9EnemyBaseFv = .text:0x80107774; // type:function size:0x28 scope:global align:4 +startMovie__Q24Game9EnemyBaseFv = .text:0x8010779C; // type:function size:0x84 scope:global align:4 +doStartMovie__Q24Game9EnemyBaseFv = .text:0x80107820; // type:function size:0x4 scope:weak align:4 +endMovie__Q24Game9EnemyBaseFv = .text:0x80107824; // type:function size:0x84 scope:global align:4 +doEndMovie__Q24Game9EnemyBaseFv = .text:0x801078A8; // type:function size:0x4 scope:weak align:4 +doStartEarthquakeState__Q24Game9EnemyBaseFf = .text:0x801078AC; // type:function size:0x94 scope:global align:4 +doFinishEarthquakeState__Q24Game9EnemyBaseFv = .text:0x80107940; // type:function size:0x4 scope:global align:4 +doStartEarthquakeFitState__Q24Game9EnemyBaseFv = .text:0x80107944; // type:function size:0x4 scope:global align:4 +doFinishEarthquakeFitState__Q24Game9EnemyBaseFv = .text:0x80107948; // type:function size:0x4 scope:global align:4 +startWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x8010794C; // type:function size:0x2C scope:global align:4 +doStartWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x80107978; // type:function size:0x4 scope:global align:4 +finishWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x8010797C; // type:function size:0x2C scope:global align:4 +doFinishWaitingBirthTypeDrop__Q24Game9EnemyBaseFv = .text:0x801079A8; // type:function size:0x64 scope:global align:4 +isBirthTypeDropGroup__Q24Game9EnemyBaseFv = .text:0x80107A0C; // type:function size:0x3C scope:global align:4 +getFitEffectPos__Q24Game9EnemyBaseFv = .text:0x80107A48; // type:function size:0x8 scope:global align:4 +setDroppingMassZero__Q24Game9EnemyBaseFv = .text:0x80107A50; // type:function size:0x18 scope:global align:4 +resetDroppingMassZero__Q24Game9EnemyBaseFv = .text:0x80107A68; // type:function size:0x18 scope:global align:4 +__dt__Q23PSM10EnemyHekoiFv = .text:0x80107A80; // type:function size:0x164 scope:weak align:4 +getCastType__Q23PSM10EnemyHekoiFv = .text:0x80107BE4; // type:function size:0x8 scope:weak align:4 +getJAIObject__Q23PSM13CreatureAnimeFv = .text:0x80107BEC; // type:function size:0x10 scope:weak align:4 +getHandleArea__Q23PSM13CreatureAnimeFUc = .text:0x80107BFC; // type:function size:0x10 scope:weak align:4 +getName__Q24Game13PelletInitArgFv = .text:0x80107C0C; // type:function size:0xC scope:weak align:4 +getName__Q24Game12EnemyKillArgFv = .text:0x80107C18; // type:function size:0xC scope:weak align:4 +getName__Q23efx8ArgScaleFv = .text:0x80107C24; // type:function size:0xC scope:weak align:4 +getName__Q34Game9ItemHoney7InitArgFv = .text:0x80107C30; // type:function size:0xC scope:weak align:4 +actPiki__Q24Game11InteractionFPQ24Game4Piki = .text:0x80107C3C; // type:function size:0x8 scope:weak align:4 +actNavi__Q24Game11InteractionFPQ24Game4Navi = .text:0x80107C44; // type:function size:0x8 scope:weak align:4 +actPellet__Q24Game11InteractionFPQ24Game6Pellet = .text:0x80107C4C; // type:function size:0x8 scope:weak align:4 +actOnyon__Q24Game11InteractionFPQ24Game5Onyon = .text:0x80107C54; // type:function size:0x8 scope:weak align:4 +actItem__Q24Game11InteractionFPQ24Game8BaseItem = .text:0x80107C5C; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game9EnemyBaseFv = .text:0x80107C64; // type:function size:0x88 scope:weak align:4 +doSimpleDraw__Q24Game9EnemyBaseFP8Viewport = .text:0x80107CEC; // type:function size:0x4 scope:weak align:4 +getCellRadius__Q24Game9EnemyBaseFv = .text:0x80107CF0; // type:function size:0xC scope:weak align:4 +getBodyRadius__Q24Game9EnemyBaseFv = .text:0x80107CFC; // type:function size:0xC scope:weak align:4 +getFaceDir__Q24Game9EnemyBaseFv = .text:0x80107D08; // type:function size:0x8 scope:weak align:4 +setVelocity__Q24Game9EnemyBaseFR10Vector3 = .text:0x80107D10; // type:function size:0x1C scope:weak align:4 +getVelocity__Q24Game9EnemyBaseFv = .text:0x80107D2C; // type:function size:0x1C scope:weak align:4 +getVelocityAt__Q24Game9EnemyBaseFR10Vector3R10Vector3 = .text:0x80107D48; // type:function size:0x34 scope:weak align:4 +isTeki__Q24Game9EnemyBaseFv = .text:0x80107D7C; // type:function size:0x8 scope:weak align:4 +getSound_PosPtr__Q24Game9EnemyBaseFv = .text:0x80107D84; // type:function size:0x8 scope:weak align:4 +initMouthSlots__Q24Game9EnemyBaseFv = .text:0x80107D8C; // type:function size:0x4 scope:weak align:4 +initWalkSmokeEffect__Q24Game9EnemyBaseFv = .text:0x80107D90; // type:function size:0x4 scope:weak align:4 +inWater__Q24Game9EnemyBaseFv = .text:0x80107D94; // type:function size:0x14 scope:weak align:4 +getEfxHamonPos__Q24Game9EnemyBaseFP10Vector3 = .text:0x80107DA8; // type:function size:0x1C scope:weak align:4 +getMouthSlots__Q24Game9EnemyBaseFv = .text:0x80107DC4; // type:function size:0x8 scope:weak align:4 +setLODSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere = .text:0x80107DCC; // type:function size:0x24 scope:weak align:4 +getLODSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere = .text:0x80107DF0; // type:function size:0x24 scope:weak align:4 +getDamageCoeStoneState__Q24Game9EnemyBaseFv = .text:0x80107E14; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimFrame__Q24Game9EnemyBaseFv = .text:0x80107E1C; // type:function size:0x34 scope:weak align:4 +getSound_CurrAnimSpeed__Q24Game9EnemyBaseFv = .text:0x80107E50; // type:function size:0xC scope:weak align:4 +sound_culling__Q24Game9EnemyBaseFv = .text:0x80107E5C; // type:function size:0x30 scope:weak align:4 +getCarcassArgHeight__Q24Game9EnemyBaseFv = .text:0x80107E8C; // type:function size:0x8 scope:weak align:4 +viewGetBaseScale__Q24Game10PelletViewFv = .text:0x80107E94; // type:function size:0x8 scope:weak align:4 +viewGetCollTreeJointIndex__Q24Game10PelletViewFv = .text:0x80107E9C; // type:function size:0x8 scope:weak align:4 +viewGetCollTreeOffset__Q24Game10PelletViewFv = .text:0x80107EA4; // type:function size:0x20 scope:weak align:4 +viewEntryShape__Q24Game10PelletViewFR7MatrixfR10Vector3 = .text:0x80107EC4; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game8CreatureFR8Graphics = .text:0x80107EC8; // type:function size:0x4 scope:weak align:4 +onInitPosition__Q24Game8CreatureFR10Vector3 = .text:0x80107ECC; // type:function size:0x4 scope:weak align:4 +getFlockMgr__Q24Game8CreatureFv = .text:0x80107ED0; // type:function size:0x8 scope:weak align:4 +onStartCapture__Q24Game8CreatureFv = .text:0x80107ED8; // type:function size:0x4 scope:weak align:4 +onUpdateCapture__Q24Game8CreatureFR7Matrixf = .text:0x80107EDC; // type:function size:0x4 scope:weak align:4 +onEndCapture__Q24Game8CreatureFv = .text:0x80107EE0; // type:function size:0x4 scope:weak align:4 +isAtari__Q24Game8CreatureFv = .text:0x80107EE4; // type:function size:0xC scope:weak align:4 +setAtari__Q24Game8CreatureFb = .text:0x80107EF0; // type:function size:0x28 scope:weak align:4 +isCollisionFlick__Q24Game8CreatureFv = .text:0x80107F18; // type:function size:0xC scope:weak align:4 +setCollisionFlick__Q24Game8CreatureFb = .text:0x80107F24; // type:function size:0x28 scope:weak align:4 +isMovieExtra__Q24Game8CreatureFv = .text:0x80107F4C; // type:function size:0xC scope:weak align:4 +isMovieMotion__Q24Game8CreatureFv = .text:0x80107F58; // type:function size:0xC scope:weak align:4 +setMovieMotion__Q24Game8CreatureFb = .text:0x80107F64; // type:function size:0x28 scope:weak align:4 +isBuried__Q24Game8CreatureFv = .text:0x80107F8C; // type:function size:0x8 scope:weak align:4 +isUnderground__Q24Game8CreatureFv = .text:0x80107F94; // type:function size:0x8 scope:weak align:4 +isLivingThing__Q24Game8CreatureFv = .text:0x80107F9C; // type:function size:0x8 scope:weak align:4 +isDebugCollision__Q24Game8CreatureFv = .text:0x80107FA4; // type:function size:0xC scope:weak align:4 +setDebugCollision__Q24Game8CreatureFb = .text:0x80107FB0; // type:function size:0x28 scope:weak align:4 +doSave__Q24Game8CreatureFR6Stream = .text:0x80107FD8; // type:function size:0x4 scope:weak align:4 +doLoad__Q24Game8CreatureFR6Stream = .text:0x80107FDC; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game8CreatureFRQ24Game9PlatEvent = .text:0x80107FE0; // type:function size:0x4 scope:weak align:4 +getSound_AILOD__Q24Game8CreatureFv = .text:0x80107FE4; // type:function size:0x8 scope:weak align:4 +on_movie_begin__Q24Game8CreatureFb = .text:0x80107FEC; // type:function size:0x4 scope:weak align:4 +on_movie_end__Q24Game8CreatureFb = .text:0x80107FF0; // type:function size:0x4 scope:weak align:4 +movieStartAnimation__Q24Game8CreatureFUl = .text:0x80107FF4; // type:function size:0x4 scope:weak align:4 +movieStartDemoAnimation__Q24Game8CreatureFPQ28SysShape8AnimInfo = .text:0x80107FF8; // type:function size:0x4 scope:weak align:4 +movieSetAnimationLastFrame__Q24Game8CreatureFv = .text:0x80107FFC; // type:function size:0x4 scope:weak align:4 +movieSetTranslation__Q24Game8CreatureFR10Vector3f = .text:0x80108000; // type:function size:0x4 scope:weak align:4 +movieSetFaceDir__Q24Game8CreatureFf = .text:0x80108004; // type:function size:0x4 scope:weak align:4 +movieGotoPosition__Q24Game8CreatureFR10Vector3 = .text:0x80108008; // type:function size:0x8 scope:weak align:4 +movieUserCommand__Q24Game8CreatureFUlPQ24Game11MoviePlayer = .text:0x80108010; // type:function size:0x4 scope:weak align:4 +getLODCylinder__Q24Game8CreatureFRQ23Sys8Cylinder = .text:0x80108014; // type:function size:0x4 scope:weak align:4 +startPick__Q24Game8CreatureFv = .text:0x80108018; // type:function size:0x4 scope:weak align:4 +endPick__Q24Game8CreatureFb = .text:0x8010801C; // type:function size:0x4 scope:weak align:4 +getMabiki__Q24Game8CreatureFv = .text:0x80108020; // type:function size:0x8 scope:weak align:4 +getFootmarks__Q24Game8CreatureFv = .text:0x80108028; // type:function size:0x8 scope:weak align:4 +onStickStartSelf__Q24Game8CreatureFPQ24Game8Creature = .text:0x80108030; // type:function size:0x4 scope:weak align:4 +onStickEndSelf__Q24Game8CreatureFPQ24Game8Creature = .text:0x80108034; // type:function size:0x4 scope:weak align:4 +isSlotFree__Q24Game8CreatureFs = .text:0x80108038; // type:function size:0x8 scope:weak align:4 +getFreeStickSlot__Q24Game8CreatureFv = .text:0x80108040; // type:function size:0x8 scope:weak align:4 +getNearFreeStickSlot__Q24Game8CreatureFR10Vector3 = .text:0x80108048; // type:function size:0x8 scope:weak align:4 +getRandomFreeStickSlot__Q24Game8CreatureFv = .text:0x80108050; // type:function size:0x8 scope:weak align:4 +onSlotStickStart__Q24Game8CreatureFPQ24Game8Creatures = .text:0x80108058; // type:function size:0x4 scope:weak align:4 +onSlotStickEnd__Q24Game8CreatureFPQ24Game8Creatures = .text:0x8010805C; // type:function size:0x4 scope:weak align:4 +calcStickSlotGlobal__Q24Game8CreatureFsR10Vector3 = .text:0x80108060; // type:function size:0x4 scope:weak align:4 +getAngularEffect__Q24Game8CreatureFR10Vector3R10Vector3 = .text:0x80108064; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q24Game8CreatureFPQ24Game8Creature = .text:0x8010806C; // type:function size:0x8 scope:weak align:4 +getSuckPos__Q24Game8CreatureFv = .text:0x80108074; // type:function size:0x38 scope:weak align:4 +getGoalPos__Q24Game8CreatureFv = .text:0x801080AC; // type:function size:0x38 scope:weak align:4 +isSuckReady__Q24Game8CreatureFv = .text:0x801080E4; // type:function size:0x8 scope:weak align:4 +isSuckArriveWait__Q24Game8CreatureFv = .text:0x801080EC; // type:function size:0x8 scope:weak align:4 +getObjType__Q24Game8CreatureFv = .text:0x801080F4; // type:function size:0x8 scope:weak align:4 +collisionUpdatable__Q24Game8CreatureFv = .text:0x801080FC; // type:function size:0x24 scope:weak align:4 +deferPikiCollision__Q24Game10CellObjectFv = .text:0x80108120; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game17EnemyAnimKeyEventFv = .text:0x80108128; // type:function size:0x70 scope:weak align:4 +view_start_carrymotion__Q24Game10PelletViewFv = .text:0x80108198; // type:function size:0x4 scope:weak align:4 +view_finish_carrymotion__Q24Game10PelletViewFv = .text:0x8010819C; // type:function size:0x4 scope:weak align:4 +viewStartPreCarryMotion__Q24Game10PelletViewFv = .text:0x801081A0; // type:function size:0x4 scope:weak align:4 +viewStartCarryMotion__Q24Game10PelletViewFv = .text:0x801081A4; // type:function size:0x4 scope:weak align:4 +viewOnPelletKilled__Q24Game10PelletViewFv = .text:0x801081A8; // type:function size:0x4 scope:weak align:4 +getCurrState__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase = .text:0x801081AC; // type:function size:0x8 scope:weak align:4 +setCurrState__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasePQ24Game13EnemyFSMState = .text:0x801081B4; // type:function size:0x8 scope:weak align:4 +exec__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081BC; // type:function size:0x4 scope:weak align:4 +resume__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081C0; // type:function size:0x4 scope:weak align:4 +restart__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081C4; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game13EnemyFSMStateFPQ24Game9EnemyBaseR8Graphics = .text:0x801081C8; // type:function size:0x4 scope:weak align:4 +init__Q24Game13EnemyFSMStateFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801081CC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase = .text:0x801081D0; // type:function size:0x4 scope:weak align:4 +getName__Q23efx12ArgEnemyTypeFv = .text:0x801081D4; // type:function size:0xC scope:weak align:4 +getName__Q23efx3ArgFv = .text:0x801081E0; // type:function size:0x8 scope:weak align:4 +simulation__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBasef = .text:0x801081E8; // type:function size:0x4 scope:weak align:4 +entry__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x801081EC; // type:function size:0x4 scope:weak align:4 +simulation__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBasef = .text:0x801081F0; // type:function size:0x4 scope:weak align:4 +animation__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase = .text:0x801081F4; // type:function size:0x4 scope:weak align:4 +__sinit_enemyBase_cpp = .text:0x801081F8; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game9EnemyBaseFRCQ28SysShape8KeyEvent = .text:0x80108220; // type:function size:0x8 scope:weak align:4 +@700@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80108228; // type:function size:0x14 scope:weak align:4 +@700@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8010823C; // type:function size:0x14 scope:weak align:4 +@700@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80108250; // type:function size:0x14 scope:weak align:4 +@700@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80108264; // type:function size:0x14 scope:weak align:4 +@700@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80108278; // type:function size:0x14 scope:weak align:4 +@700@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8010828C; // type:function size:0x14 scope:weak align:4 +@16@__dt__Q23PSM10EnemyHekoiFv = .text:0x801082A0; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM13CreatureAnimeFUcUlUl = .text:0x801082A8; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM13CreatureAnimeFPP8JAISoundUlUl = .text:0x801082B0; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM13CreatureAnimeFUlUl = .text:0x801082B8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM10EnemyHekoiFv = .text:0x801082C0; // type:function size:0x8 scope:weak align:4 +@48@startAnimSound__Q23PSM9EnemyBaseFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x801082C8; // type:function size:0x8 scope:weak align:4 +@48@playActorAnimSound__Q23PSM13CreatureAnimeFPQ27JAInter5ActorfUc = .text:0x801082D0; // type:function size:0x8 scope:weak align:4 +@184@battleOff__Q23PSM9EnemyBaseFv = .text:0x801082D8; // type:function size:0x8 scope:weak align:4 +getValue__Q34Game8Pelplant21BlendAccelerationFuncFf = .text:0x801082E0; // type:function size:0xB0 scope:global align:4 +birth__Q34Game8Pelplant3ObjFR10Vector3f = .text:0x80108390; // type:function size:0xB4 scope:global align:4 +setInitialSetting__Q34Game8Pelplant3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80108444; // type:function size:0x280 scope:global align:4 +__ct__Q34Game8Pelplant3ObjFv = .text:0x801086C4; // type:function size:0x138 scope:global align:4 +setFSM__Q34Game8Pelplant3ObjFPQ34Game8Pelplant3FSM = .text:0x801087FC; // type:function size:0x4C scope:weak align:4 +__dt__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x80108848; // type:function size:0x5C scope:weak align:4 +doUpdate__Q34Game8Pelplant3ObjFv = .text:0x801088A4; // type:function size:0x34 scope:global align:4 +updateLODSphereRadius__Q34Game8Pelplant3ObjFi = .text:0x801088D8; // type:function size:0x88 scope:global align:4 +doDirectDraw__Q34Game8Pelplant3ObjFR8Graphics = .text:0x80108960; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8Pelplant3ObjFR8Graphics = .text:0x80108964; // type:function size:0x18C scope:global align:4 +getShadowParam__Q34Game8Pelplant3ObjFRQ24Game11ShadowParam = .text:0x80108AF0; // type:function size:0xC0 scope:global align:4 +doAnimationUpdateAnimator__Q34Game8Pelplant3ObjFv = .text:0x80108BB0; // type:function size:0x90 scope:global align:4 +getHeadScale__Q34Game8Pelplant3ObjFv = .text:0x80108C40; // type:function size:0x58 scope:global align:4 +doAnimation__Q34Game8Pelplant3ObjFv = .text:0x80108C98; // type:function size:0x198 scope:global align:4 +doSimulation__Q34Game8Pelplant3ObjFf = .text:0x80108E30; // type:function size:0x4 scope:global align:4 +setPelletColor__Q34Game8Pelplant3ObjFUsb = .text:0x80108E34; // type:function size:0xF0 scope:global align:4 +changePelletColor__Q34Game8Pelplant3ObjFv = .text:0x80108F24; // type:function size:0x190 scope:global align:4 +attachPellet__Q34Game8Pelplant3ObjFv = .text:0x801090B4; // type:function size:0x110 scope:global align:4 +damageCallBack__Q34Game8Pelplant3ObjFPQ24Game8CreaturefP8CollPart = .text:0x801091C4; // type:function size:0x98 scope:global align:4 +isLivingThing__Q34Game8Pelplant3ObjFv = .text:0x8010925C; // type:function size:0xC scope:weak align:4 +farmCallBack__Q34Game8Pelplant3ObjFPQ24Game8Creaturef = .text:0x80109268; // type:function size:0x78 scope:global align:4 +onStickStart__Q34Game8Pelplant3ObjFPQ24Game8Creature = .text:0x801092E0; // type:function size:0x60 scope:global align:4 +headJointCallBack__Q34Game8Pelplant3ObjFP8J3DJointi = .text:0x80109340; // type:function size:0xF0 scope:global align:4 +neckJointCallBack__Q34Game8Pelplant3ObjFP8J3DJointi = .text:0x80109430; // type:function size:0x104 scope:global align:4 +__ct__Q34Game8Pelplant3MgrFiUc = .text:0x80109534; // type:function size:0x50 scope:global align:4 +__dt__Q24Game12EnemyMgrBaseFv = .text:0x80109584; // type:function size:0x98 scope:weak align:4 +doAlloc__Q34Game8Pelplant3MgrFv = .text:0x8010961C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8Pelplant5ParmsFv = .text:0x80109664; // type:function size:0x118 scope:weak align:4 +__ct__Q24Game14EnemyParmsBaseFv = .text:0x8010977C; // type:function size:0x1D4 scope:weak align:4 +__ct__Q34Game14EnemyParmsBase5ParmsFv = .text:0x80109950; // type:function size:0xAE0 scope:weak align:4 +__ct__11BitFlagFv = .text:0x8010A430; // type:function size:0x10 scope:weak align:4 +birth__Q34Game8Pelplant3MgrFRQ24Game13EnemyBirthArg = .text:0x8010A440; // type:function size:0x20 scope:global align:4 +onInit__Q34Game8Pelplant3ObjFPQ24Game15CreatureInitArg = .text:0x8010A460; // type:function size:0xD0 scope:global align:4 +doGetLifeGaugeParam__Q34Game8Pelplant3ObjFRQ24Game14LifeGaugeParam = .text:0x8010A530; // type:function size:0x48 scope:global align:4 +__dt__Q34Game8Pelplant3MgrFv = .text:0x8010A578; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8Pelplant3MgrFv = .text:0x8010A628; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game8Pelplant3MgrFi = .text:0x8010A630; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Pelplant3ObjFv = .text:0x8010A690; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8Pelplant3MgrFi = .text:0x8010A74C; // type:function size:0x10 scope:weak align:4 +initStoneSetting__Q34Game8Pelplant3MgrFv = .text:0x8010A75C; // type:function size:0x4 scope:weak align:4 +get__Q24Game12EnemyMgrBaseFPv = .text:0x8010A760; // type:function size:0x2C scope:weak align:4 +getJ3DModelData__Q24Game12EnemyMgrBaseCFv = .text:0x8010A78C; // type:function size:0x8 scope:weak align:4 +getGenerator__Q24Game12EnemyMgrBaseCFv = .text:0x8010A794; // type:function size:0x8 scope:weak align:4 +getMaxObjects__Q24Game12EnemyMgrBaseCFv = .text:0x8010A79C; // type:function size:0x8 scope:weak align:4 +doSimpleDraw__16GenericObjectMgrFP8Viewport = .text:0x8010A7A4; // type:function size:0x4 scope:weak align:4 +loadResources__16GenericObjectMgrFv = .text:0x8010A7A8; // type:function size:0x4 scope:weak align:4 +resetMgr__16GenericObjectMgrFv = .text:0x8010A7AC; // type:function size:0x4 scope:weak align:4 +pausable__16GenericObjectMgrFv = .text:0x8010A7B0; // type:function size:0x8 scope:weak align:4 +frozenable__16GenericObjectMgrFv = .text:0x8010A7B8; // type:function size:0x8 scope:weak align:4 +getMatrixLoadType__16GenericObjectMgrFv = .text:0x8010A7C0; // type:function size:0x8 scope:weak align:4 +getEnd__Q24Game12EnemyMgrBaseFv = .text:0x8010A7C8; // type:function size:0x8 scope:weak align:4 +getStart__Q24Game12EnemyMgrBaseFv = .text:0x8010A7D0; // type:function size:0x30 scope:weak align:4 +getObject__Q24Game12EnemyMgrBaseFPv = .text:0x8010A800; // type:function size:0x2C scope:weak align:4 +read__Q24Game14EnemyParmsBaseFR6Stream = .text:0x8010A82C; // type:function size:0x44 scope:weak align:4 +read__Q24Game13CreatureParmsFR6Stream = .text:0x8010A870; // type:function size:0x20 scope:weak align:4 +read__Q34Game8Pelplant5ParmsFR6Stream = .text:0x8010A890; // type:function size:0x50 scope:weak align:4 +__dt__16GenericContainerFv = .text:0x8010A8E0; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game13IEnemyMgrBaseFv = .text:0x8010A940; // type:function size:0x80 scope:weak align:4 +__dt__Q34Game8Pelplant14ProperAnimatorFv = .text:0x8010A9C0; // type:function size:0x6C scope:weak align:4 +animate__Q24Game22EnemyBlendAnimatorBaseFif = .text:0x8010AA2C; // type:function size:0x20 scope:weak align:4 +getTypeID__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8010AA4C; // type:function size:0xC scope:weak align:4 +getEnemyTypeID__Q34Game8Pelplant3ObjFv = .text:0x8010AA58; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x8010AA60; // type:function size:0x8 scope:weak align:4 +size__7ParmFv = .text:0x8010AA68; // type:function size:0x8 scope:weak align:4 +@728@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8010AA70; // type:function size:0x14 scope:weak align:4 +@728@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8010AA84; // type:function size:0x14 scope:weak align:4 +@728@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8010AA98; // type:function size:0x14 scope:weak align:4 +@728@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8010AAAC; // type:function size:0x14 scope:weak align:4 +@728@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8010AAC0; // type:function size:0x14 scope:weak align:4 +@728@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8010AAD4; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q24Game13IEnemyMgrBaseFv = .text:0x8010AAE8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Pelplant3MgrFv = .text:0x8010AAF0; // type:function size:0x8 scope:weak align:4 +@4@getEnd__Q24Game12EnemyMgrBaseFv = .text:0x8010AAF8; // type:function size:0x8 scope:weak align:4 +@4@getStart__Q24Game12EnemyMgrBaseFv = .text:0x8010AB00; // type:function size:0x8 scope:weak align:4 +@4@getNext__Q24Game12EnemyMgrBaseFPv = .text:0x8010AB08; // type:function size:0x8 scope:weak align:4 +@4@getObject__Q24Game12EnemyMgrBaseFPv = .text:0x8010AB10; // type:function size:0x8 scope:weak align:4 +init__Q34Game8Pelplant3FSMFPQ24Game9EnemyBase = .text:0x8010AB18; // type:function size:0x1E0 scope:global align:4 +init__Q34Game8Pelplant14StateBlendAnimFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010ACF8; // type:function size:0x3C scope:global align:4 +exec__Q34Game8Pelplant14StateBlendAnimFPQ24Game9EnemyBase = .text:0x8010AD34; // type:function size:0x7C scope:global align:4 +__ct__Q34Game8Pelplant11StateWitherFiiii = .text:0x8010ADB0; // type:function size:0x98 scope:global align:4 +init__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010AE48; // type:function size:0x70 scope:global align:4 +exec__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBase = .text:0x8010AEB8; // type:function size:0x7C scope:global align:4 +cleanup__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBase = .text:0x8010AF34; // type:function size:0x28 scope:global align:4 +__ct__Q34Game8Pelplant9StateWaitFii = .text:0x8010AF5C; // type:function size:0x88 scope:global align:4 +init__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010AFE4; // type:function size:0x144 scope:global align:4 +exec__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBase = .text:0x8010B128; // type:function size:0x278 scope:global align:4 +cleanup__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBase = .text:0x8010B3A0; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8Pelplant9StateGrowFiii = .text:0x8010B3A4; // type:function size:0x44 scope:global align:4 +init__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010B3E8; // type:function size:0x2E0 scope:global align:4 +exec__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBase = .text:0x8010B6C8; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBase = .text:0x8010B728; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8Pelplant11StateDamageFii = .text:0x8010B72C; // type:function size:0x40 scope:global align:4 +init__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010B76C; // type:function size:0x8C scope:global align:4 +exec__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBase = .text:0x8010B7F8; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBase = .text:0x8010B860; // type:function size:0x10 scope:global align:4 +__ct__Q34Game8Pelplant9StateDeadFii = .text:0x8010B870; // type:function size:0x40 scope:global align:4 +init__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010B8B0; // type:function size:0xB4 scope:global align:4 +exec__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBase = .text:0x8010B964; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBase = .text:0x8010B9CC; // type:function size:0x4 scope:global align:4 +forceKill__Q23efx8TSimple3Fv = .text:0x8010B9D0; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple3Fv = .text:0x8010B9D4; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx8TSimple2Fv = .text:0x8010B9D8; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple2Fv = .text:0x8010B9DC; // type:function size:0x4 scope:weak align:4 +actEnemy__Q24Game15InteractHipdropFPQ24Game9EnemyBase = .text:0x8010B9E0; // type:function size:0x7C scope:global align:4 +actEnemy__Q24Game18InteractEarthquakeFPQ24Game9EnemyBase = .text:0x8010BA5C; // type:function size:0x74 scope:global align:4 +actEnemy__Q24Game13InteractPressFPQ24Game9EnemyBase = .text:0x8010BAD0; // type:function size:0x40 scope:global align:4 +actEnemy__Q24Game20InteractFlyCollisionFPQ24Game9EnemyBase = .text:0x8010BB10; // type:function size:0x40 scope:global align:4 +actEnemy__Q24Game14InteractAttackFPQ24Game9EnemyBase = .text:0x8010BB50; // type:function size:0x11C scope:global align:4 +actEnemy__Q24Game12InteractDropFPQ24Game9EnemyBase = .text:0x8010BC6C; // type:function size:0x38 scope:global align:4 +actEnemy__Q24Game12InteractBombFPQ24Game9EnemyBase = .text:0x8010BCA4; // type:function size:0x78 scope:global align:4 +createEnemyMgr__Q24Game15GeneralEnemyMgrFUcii = .text:0x8010BD1C; // type:function size:0xFAC scope:global align:4 +__ct__Q24Game15GeneralEnemyMgrFv = .text:0x8010CCC8; // type:function size:0x1BC scope:global align:4 +__dt__Q24Game12EnemyMgrNodeFv = .text:0x8010CE84; // type:function size:0x68 scope:weak align:4 +killAll__Q24Game15GeneralEnemyMgrFv = .text:0x8010CEEC; // type:function size:0x78 scope:global align:4 +killAll__Q24Game12EnemyMgrNodeFPQ24Game15CreatureKillArg = .text:0x8010CF64; // type:function size:0x30 scope:weak align:4 +setupSoundViewerAndBas__Q24Game15GeneralEnemyMgrFv = .text:0x8010CF94; // type:function size:0x4C scope:global align:4 +setupSoundViewerAndBas__Q24Game12EnemyMgrNodeFv = .text:0x8010CFE0; // type:function size:0x30 scope:weak align:4 +doAnimation__Q24Game15GeneralEnemyMgrFv = .text:0x8010D010; // type:function size:0x8C scope:global align:4 +doAnimation__Q24Game12EnemyMgrNodeFv = .text:0x8010D09C; // type:function size:0x30 scope:weak align:4 +doEntry__Q24Game15GeneralEnemyMgrFv = .text:0x8010D0CC; // type:function size:0x58 scope:global align:4 +doEntry__Q24Game12EnemyMgrNodeFv = .text:0x8010D124; // type:function size:0x30 scope:weak align:4 +doSetView__Q24Game15GeneralEnemyMgrFi = .text:0x8010D154; // type:function size:0x68 scope:global align:4 +doSetView__Q24Game12EnemyMgrNodeFi = .text:0x8010D1BC; // type:function size:0x30 scope:weak align:4 +doViewCalc__Q24Game15GeneralEnemyMgrFv = .text:0x8010D1EC; // type:function size:0x58 scope:global align:4 +doViewCalc__Q24Game12EnemyMgrNodeFv = .text:0x8010D244; // type:function size:0x30 scope:weak align:4 +doSimulation__Q24Game15GeneralEnemyMgrFf = .text:0x8010D274; // type:function size:0x68 scope:global align:4 +doSimulation__Q24Game12EnemyMgrNodeFf = .text:0x8010D2DC; // type:function size:0x30 scope:weak align:4 +doDirectDraw__Q24Game15GeneralEnemyMgrFR8Graphics = .text:0x8010D30C; // type:function size:0x68 scope:global align:4 +doDirectDraw__Q24Game12EnemyMgrNodeFR8Graphics = .text:0x8010D374; // type:function size:0x30 scope:weak align:4 +doSimpleDraw__Q24Game15GeneralEnemyMgrFP8Viewport = .text:0x8010D3A4; // type:function size:0x80 scope:global align:4 +doSimpleDraw__Q24Game12EnemyMgrNodeFP8Viewport = .text:0x8010D424; // type:function size:0x30 scope:weak align:4 +getJ3DModelData__Q24Game15GeneralEnemyMgrFi = .text:0x8010D454; // type:function size:0x4C scope:global align:4 +birth__Q24Game15GeneralEnemyMgrFiRQ24Game13EnemyBirthArg = .text:0x8010D4A0; // type:function size:0xBC scope:global align:4 +getEnemyName__Q24Game15GeneralEnemyMgrFii = .text:0x8010D55C; // type:function size:0x28 scope:global align:4 +getEnemyID__Q24Game15GeneralEnemyMgrFPci = .text:0x8010D584; // type:function size:0x28 scope:global align:4 +getIEnemyMgrBase__Q24Game15GeneralEnemyMgrFi = .text:0x8010D5AC; // type:function size:0x2C scope:global align:4 +allocateEnemys__Q24Game15GeneralEnemyMgrFUci = .text:0x8010D5D8; // type:function size:0x21C scope:global align:4 +resetEnemyNum__Q24Game15GeneralEnemyMgrFv = .text:0x8010D7F4; // type:function size:0x40 scope:global align:4 +addEnemyNum__Q24Game15GeneralEnemyMgrFiUcPQ24Game14GenObjectEnemy = .text:0x8010D834; // type:function size:0x22C scope:global align:4 +getEnemyNum__Q24Game15GeneralEnemyMgrFib = .text:0x8010DA60; // type:function size:0x170 scope:global align:4 +useHeap__Q24Game15GeneralEnemyMgrFv = .text:0x8010DBD0; // type:function size:0xB4 scope:global align:4 +getEnemyMgr__Q24Game15GeneralEnemyMgrFi = .text:0x8010DC84; // type:function size:0x38 scope:global align:4 +setMovieDraw__Q24Game15GeneralEnemyMgrFb = .text:0x8010DCBC; // type:function size:0x98 scope:global align:4 +endMovie__Q24Game12EnemyMgrNodeFv = .text:0x8010DD54; // type:function size:0x30 scope:weak align:4 +startMovie__Q24Game12EnemyMgrNodeFv = .text:0x8010DD84; // type:function size:0x30 scope:weak align:4 +prepareDayendEnemies__Q24Game15GeneralEnemyMgrFv = .text:0x8010DDB4; // type:function size:0x11C scope:global align:4 +next__37GeneralMgrIteratorFv = .text:0x8010DED0; // type:function size:0x110 scope:weak align:4 +setFirst__37GeneralMgrIteratorFv = .text:0x8010DFE0; // type:function size:0x490 scope:weak align:4 +first__37GeneralMgrIteratorFv = .text:0x8010E470; // type:function size:0x2C scope:weak align:4 +createDayendEnemies__Q24Game15GeneralEnemyMgrFRQ23Sys6Sphere = .text:0x8010E49C; // type:function size:0xC84 scope:global align:4 +setDebugParm__Q24Game12EnemyMgrNodeFUl = .text:0x8010F120; // type:function size:0x30 scope:weak align:4 +resetDebugParm__Q24Game12EnemyMgrNodeFUl = .text:0x8010F150; // type:function size:0x30 scope:weak align:4 +__dt__Q24Game15GeneralEnemyMgrFv = .text:0x8010F180; // type:function size:0xB4 scope:weak align:4 +getMatrixLoadType__Q24Game12EnemyMgrNodeFv = .text:0x8010F234; // type:function size:0x8 scope:weak align:4 +doEntry__16GenericObjectMgrFv = .text:0x8010F23C; // type:function size:0x4 scope:weak align:4 +@24@getMatrixLoadType__Q24Game12EnemyMgrNodeFv = .text:0x8010F240; // type:function size:0x8 scope:weak align:4 +@24@doSimpleDraw__Q24Game12EnemyMgrNodeFP8Viewport = .text:0x8010F248; // type:function size:0x8 scope:weak align:4 +@24@doDirectDraw__Q24Game12EnemyMgrNodeFR8Graphics = .text:0x8010F250; // type:function size:0x8 scope:weak align:4 +@24@doSimulation__Q24Game12EnemyMgrNodeFf = .text:0x8010F258; // type:function size:0x8 scope:weak align:4 +@24@doViewCalc__Q24Game12EnemyMgrNodeFv = .text:0x8010F260; // type:function size:0x8 scope:weak align:4 +@24@doSetView__Q24Game12EnemyMgrNodeFi = .text:0x8010F268; // type:function size:0x8 scope:weak align:4 +@24@doEntry__Q24Game12EnemyMgrNodeFv = .text:0x8010F270; // type:function size:0x8 scope:weak align:4 +@24@doAnimation__Q24Game12EnemyMgrNodeFv = .text:0x8010F278; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q24Game15GeneralEnemyMgrFv = .text:0x8010F280; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game12KochappyBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8010F288; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game12KochappyBase14ProperAnimatorFi = .text:0x8010F290; // type:function size:0x8 scope:global align:4 +__dt__Q34Game12KochappyBase14ProperAnimatorFv = .text:0x8010F298; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game12KochappyBase14ProperAnimatorFv = .text:0x8010F2F4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Kochappy3ObjFv = .text:0x8010F2FC; // type:function size:0x130 scope:global align:4 +setFSM__Q34Game12KochappyBase3ObjFPQ34Game12KochappyBase3FSM = .text:0x8010F42C; // type:function size:0x4C scope:weak align:4 +__dt__Q24Game17EnemyAnimatorBaseFv = .text:0x8010F478; // type:function size:0x48 scope:weak align:4 +__dt__Q34Game12KochappyBase3ObjFv = .text:0x8010F4C0; // type:function size:0xBC scope:weak align:4 +changeMaterial__Q34Game8Kochappy3ObjFv = .text:0x8010F57C; // type:function size:0x1A4 scope:global align:4 +getChangeTexture__Q34Game8Kochappy3MgrFv = .text:0x8010F720; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8Kochappy3ObjFv = .text:0x8010F728; // type:function size:0xEC scope:weak align:4 +getEnemyTypeID__Q34Game8Kochappy3ObjFv = .text:0x8010F814; // type:function size:0x8 scope:weak align:4 +setAnimationSpeed__Q34Game12KochappyBase3ObjFf = .text:0x8010F81C; // type:function size:0x20 scope:weak align:4 +getMouthSlots__Q34Game12KochappyBase3ObjFv = .text:0x8010F83C; // type:function size:0x8 scope:weak align:4 +resetEnemyNonStone__Q34Game12KochappyBase3ObjFv = .text:0x8010F844; // type:function size:0x4 scope:weak align:4 +setEnemyNonStone__Q34Game12KochappyBase3ObjFv = .text:0x8010F848; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game12KochappyBase3ObjFv = .text:0x8010F84C; // type:function size:0x8 scope:weak align:4 +init__Q34Game12KochappyBase3FSMFPQ24Game9EnemyBase = .text:0x8010F854; // type:function size:0x198 scope:global align:4 +__ct__Q34Game12KochappyBase10StatePressFi = .text:0x8010F9EC; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010FA28; // type:function size:0x54 scope:global align:4 +exec__Q34Game12KochappyBase10StatePressFPQ24Game9EnemyBase = .text:0x8010FA7C; // type:function size:0x50 scope:global align:4 +__ct__Q34Game12KochappyBase9StateWaitFi = .text:0x8010FACC; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010FB08; // type:function size:0xC8 scope:global align:4 +exec__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBase = .text:0x8010FBD0; // type:function size:0x308 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBase = .text:0x8010FED8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game12KochappyBase9StateDeadFi = .text:0x8010FEFC; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8010FF38; // type:function size:0x40 scope:global align:4 +exec__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x8010FF78; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x8010FFC8; // type:function size:0x4 scope:global align:4 +__ct__Q34Game12KochappyBase9StateTurnFi = .text:0x8010FFCC; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80110008; // type:function size:0x54 scope:global align:4 +exec__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x8011005C; // type:function size:0x710 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x8011076C; // type:function size:0x24 scope:global align:4 +__ct__Q34Game12KochappyBase9StateWalkFi = .text:0x80110790; // type:function size:0x44 scope:global align:4 +init__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801107D4; // type:function size:0x80 scope:global align:4 +exec__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x80110854; // type:function size:0x6E4 scope:global align:4 +cleanup__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x80110F38; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12KochappyBase11StateAttackFi = .text:0x80110F80; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80110FBC; // type:function size:0x48 scope:global align:4 +exec__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x80111004; // type:function size:0x3F0 scope:global align:4 +cleanup__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x801113F4; // type:function size:0x24 scope:global align:4 +__ct__Q34Game12KochappyBase10StateFlickFi = .text:0x80111418; // type:function size:0x44 scope:global align:4 +init__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8011145C; // type:function size:0x94 scope:global align:4 +exec__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x801114F0; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x80111668; // type:function size:0x50 scope:global align:4 +__ct__Q34Game12KochappyBase15StateTurnToHomeFi = .text:0x801116B8; // type:function size:0x40 scope:global align:4 +init__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801116F8; // type:function size:0x120 scope:global align:4 +exec__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80111818; // type:function size:0x46C scope:global align:4 +cleanup__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80111C84; // type:function size:0x4 scope:global align:4 +__ct__Q34Game12KochappyBase11StateGoHomeFi = .text:0x80111C88; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80111CC4; // type:function size:0x64 scope:global align:4 +exec__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x80111D28; // type:function size:0x440 scope:global align:4 +cleanup__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x80112168; // type:function size:0x40 scope:global align:4 +__ct__Q34Game12KochappyBase9StateDemoFi = .text:0x801121A8; // type:function size:0x3C scope:global align:4 +init__Q34Game12KochappyBase9StateDemoFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801121E4; // type:function size:0x7C scope:global align:4 +enableTimer__Q24Game15BaseGameSectionFfUl = .text:0x80112260; // type:function size:0x4 scope:weak align:4 +getTimerType__Q24Game15BaseGameSectionFv = .text:0x80112264; // type:function size:0x8 scope:weak align:4 +__sinit_kochappyState_cpp = .text:0x8011226C; // type:function size:0x28 scope:local align:4 +__ct__Q34Game8Kochappy3MgrFiUc = .text:0x80112294; // type:function size:0x50 scope:global align:4 +__dt__Q34Game12KochappyBase3MgrFv = .text:0x801122E4; // type:function size:0xB0 scope:weak align:4 +doAlloc__Q34Game8Kochappy3MgrFv = .text:0x80112394; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12KochappyBase5ParmsFv = .text:0x801123DC; // type:function size:0x118 scope:weak align:4 +loadTexData__Q34Game8Kochappy3MgrFv = .text:0x801124F4; // type:function size:0x48 scope:global align:4 +__dt__Q34Game8Kochappy3MgrFv = .text:0x8011253C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Kochappy3MgrFv = .text:0x80112604; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game8Kochappy3MgrFi = .text:0x8011260C; // type:function size:0x60 scope:weak align:4 +getEnemy__Q34Game8Kochappy3MgrFi = .text:0x8011266C; // type:function size:0x10 scope:weak align:4 +read__Q34Game12KochappyBase5ParmsFR6Stream = .text:0x8011267C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8Kochappy3MgrFv = .text:0x801126CC; // type:function size:0x8 scope:weak align:4 +getNearestNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23Condition = .text:0x801126D4; // type:function size:0x424 scope:global align:4 +isDone__22IteratorFv = .text:0x80112AF8; // type:function size:0x4C scope:weak align:4 +getNearestPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23Condition = .text:0x80112B44; // type:function size:0x484 scope:global align:4 +getPosition__Q24Game8FakePikiFv = .text:0x80112FC8; // type:function size:0x1C scope:weak align:4 +isDone__22IteratorFv = .text:0x80112FE4; // type:function size:0x4C scope:weak align:4 +getNearestPikminOrNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23ConditionP23Condition = .text:0x80113030; // type:function size:0xC4 scope:global align:4 +stimulate__Q24Game8CreatureFRQ24Game11Interaction = .text:0x801130F4; // type:function size:0x8 scope:weak align:4 +flickStickPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition = .text:0x801130FC; // type:function size:0x36C scope:global align:4 +isDone__26IteratorFv = .text:0x80113468; // type:function size:0x4C scope:weak align:4 +flickNearbyPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition = .text:0x801134B4; // type:function size:0x2BC scope:global align:4 +flickNearbyNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition = .text:0x80113770; // type:function size:0x3A4 scope:global align:4 +eatPikmin__Q24Game9EnemyFuncFPQ24Game9EnemyBaseP23Condition = .text:0x80113B14; // type:function size:0x350 scope:global align:4 +swallowPikmin__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80113E64; // type:function size:0x3DC scope:global align:4 +attackNavi__Q24Game9EnemyFuncFPQ24Game8CreaturefffP8CollPartP23Condition = .text:0x80114240; // type:function size:0x3F8 scope:global align:4 +isStartFlick__Q24Game9EnemyFuncFPQ24Game9EnemyBaseb = .text:0x80114638; // type:function size:0xDC scope:global align:4 +isTherePikmin__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80114714; // type:function size:0x38C scope:global align:4 +isThereOlimar__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80114AA0; // type:function size:0x330 scope:global align:4 +getSurroundPikminNum__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition = .text:0x80114DD0; // type:function size:0x3C4 scope:global align:4 +getStickPikminColorNum__Q24Game9EnemyFuncFPQ24Game8Creaturei = .text:0x80115194; // type:function size:0x24C scope:global align:4 +walkToTarget__Q24Game9EnemyFuncFPQ24Game9EnemyBasePQ24Game8Creaturefff = .text:0x801153E0; // type:function size:0x1DC scope:global align:4 +walkToTarget__Q24Game9EnemyFuncFPQ24Game9EnemyBaseR10Vector3fff = .text:0x801155BC; // type:function size:0x1BC scope:global align:4 +satisfy__Q34Game9EnemyFunc25EatPikminDefaultConditionFPQ24Game4Piki = .text:0x80115778; // type:function size:0x80 scope:weak align:4 +satisfy__Q34Game9EnemyFunc21ConditionPikminNearbyFPQ24Game8Creature = .text:0x801157F8; // type:function size:0x168 scope:weak align:4 +__ml__26IteratorFv = .text:0x80115960; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x80115998; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80115A7C; // type:function size:0xDC scope:weak align:4 +__ml__22IteratorFv = .text:0x80115B58; // type:function size:0x38 scope:weak align:4 +next__22IteratorFv = .text:0x80115B90; // type:function size:0xE4 scope:weak align:4 +first__22IteratorFv = .text:0x80115C74; // type:function size:0xDC scope:weak align:4 +__ml__22IteratorFv = .text:0x80115D50; // type:function size:0x38 scope:weak align:4 +next__22IteratorFv = .text:0x80115D88; // type:function size:0xE4 scope:weak align:4 +first__22IteratorFv = .text:0x80115E6C; // type:function size:0xDC scope:weak align:4 +__sinit_enemyAction_cpp = .text:0x80115F48; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6Chappy3ObjFv = .text:0x80115F70; // type:function size:0x144 scope:global align:4 +setFSM__Q34Game10ChappyBase3ObjFPQ34Game10ChappyBase3FSM = .text:0x801160B4; // type:function size:0x4C scope:weak align:4 +__dt__Q34Game10ChappyBase3ObjFv = .text:0x80116100; // type:function size:0xBC scope:weak align:4 +changeMaterial__Q34Game6Chappy3ObjFv = .text:0x801161BC; // type:function size:0x2B0 scope:global align:4 +getChangeTexture1__Q34Game6Chappy3MgrFv = .text:0x8011646C; // type:function size:0x8 scope:weak align:4 +getChangeTexture0__Q34Game6Chappy3MgrFv = .text:0x80116474; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game6Chappy3ObjFv = .text:0x8011647C; // type:function size:0xEC scope:weak align:4 +getEnemyTypeID__Q34Game6Chappy3ObjFv = .text:0x80116568; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game10ChappyBase3ObjFv = .text:0x80116570; // type:function size:0x8 scope:weak align:4 +setAnimationSpeed__Q34Game10ChappyBase3ObjFf = .text:0x80116578; // type:function size:0x20 scope:weak align:4 +resetUnderGround__Q34Game10ChappyBase3ObjFv = .text:0x80116598; // type:function size:0x4 scope:weak align:4 +setUnderGround__Q34Game10ChappyBase3ObjFv = .text:0x8011659C; // type:function size:0x4 scope:weak align:4 +createFlickEffect__Q34Game10ChappyBase3ObjFv = .text:0x801165A0; // type:function size:0x4 scope:weak align:4 +createSmokeEffect__Q34Game10ChappyBase3ObjFv = .text:0x801165A4; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game10ChappyBase3ObjFv = .text:0x801165A8; // type:function size:0x8 scope:weak align:4 +@740@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x801165B0; // type:function size:0x14 scope:weak align:4 +@740@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x801165C4; // type:function size:0x14 scope:weak align:4 +@740@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x801165D8; // type:function size:0x14 scope:weak align:4 +@740@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x801165EC; // type:function size:0x14 scope:weak align:4 +@740@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80116600; // type:function size:0x14 scope:weak align:4 +@740@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80116614; // type:function size:0x14 scope:weak align:4 +init__Q34Game10ChappyBase3FSMFPQ24Game9EnemyBase = .text:0x80116628; // type:function size:0x150 scope:global align:4 +__ct__Q34Game10ChappyBase10StateSleepFi = .text:0x80116778; // type:function size:0x3C scope:global align:4 +init__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801167B4; // type:function size:0xBC scope:global align:4 +exec__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBase = .text:0x80116870; // type:function size:0x1B0 scope:global align:4 +cleanup__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBase = .text:0x80116A20; // type:function size:0x98 scope:global align:4 +setNextState__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBasei = .text:0x80116AB8; // type:function size:0x64 scope:global align:4 +__ct__Q34Game10ChappyBase9StateDeadFi = .text:0x80116B1C; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80116B70; // type:function size:0x40 scope:global align:4 +exec__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x80116BB0; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBase = .text:0x80116C14; // type:function size:0x4 scope:global align:4 +__ct__Q34Game10ChappyBase9StateTurnFi = .text:0x80116C18; // type:function size:0x60 scope:global align:4 +init__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80116C78; // type:function size:0x58 scope:global align:4 +exec__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x80116CD0; // type:function size:0x7F0 scope:global align:4 +cleanup__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBase = .text:0x801174C0; // type:function size:0x38 scope:global align:4 +__ct__Q34Game10ChappyBase9StateWalkFi = .text:0x801174F8; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8011754C; // type:function size:0x58 scope:global align:4 +exec__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x801175A4; // type:function size:0x7FC scope:global align:4 +cleanup__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBase = .text:0x80117DA0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10ChappyBase11StateAttackFi = .text:0x80117DE8; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80117E3C; // type:function size:0x48 scope:global align:4 +exec__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x80117E84; // type:function size:0x33C scope:global align:4 +transitState__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x801181C0; // type:function size:0x2F0 scope:global align:4 +cleanup__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase = .text:0x801184B0; // type:function size:0x24 scope:global align:4 +doDirectDraw__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBaseR8Graphics = .text:0x801184D4; // type:function size:0x4 scope:global align:4 +__ct__Q34Game10ChappyBase10StateFlickFi = .text:0x801184D8; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8011852C; // type:function size:0x78 scope:global align:4 +exec__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x801185A4; // type:function size:0x23C scope:global align:4 +cleanup__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBase = .text:0x801187E0; // type:function size:0x54 scope:global align:4 +__ct__Q34Game10ChappyBase15StateTurnToHomeFi = .text:0x80118834; // type:function size:0x64 scope:global align:4 +init__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80118898; // type:function size:0x150 scope:global align:4 +exec__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x801189E8; // type:function size:0x6AC scope:global align:4 +cleanup__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80119094; // type:function size:0x4 scope:global align:4 +__ct__Q34Game10ChappyBase11StateGoHomeFi = .text:0x80119098; // type:function size:0x54 scope:global align:4 +init__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x801190EC; // type:function size:0x2C scope:global align:4 +exec__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x80119118; // type:function size:0x5C4 scope:global align:4 +cleanup__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBase = .text:0x801196DC; // type:function size:0x14 scope:global align:4 +setAnimMgr__Q34Game10ChappyBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x801196F0; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10ChappyBase14ProperAnimatorFi = .text:0x801196F8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10ChappyBase14ProperAnimatorFv = .text:0x80119700; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10ChappyBase14ProperAnimatorFv = .text:0x8011975C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Chappy3MgrFiUc = .text:0x80119764; // type:function size:0x50 scope:global align:4 +__dt__Q34Game10ChappyBase3MgrFv = .text:0x801197B4; // type:function size:0xB0 scope:weak align:4 +loadTexData__Q34Game6Chappy3MgrFv = .text:0x80119864; // type:function size:0x6C scope:global align:4 +doAlloc__Q34Game6Chappy3MgrFv = .text:0x801198D0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10ChappyBase5ParmsFv = .text:0x80119918; // type:function size:0x12C scope:weak align:4 +read__Q34Game10ChappyBase5ParmsFR6Stream = .text:0x80119A44; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game6Chappy3MgrFv = .text:0x80119A94; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Chappy3MgrFv = .text:0x80119B5C; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game6Chappy3MgrFi = .text:0x80119B64; // type:function size:0x60 scope:weak align:4 +getEnemy__Q34Game6Chappy3MgrFi = .text:0x80119BC4; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game6Chappy3MgrFv = .text:0x80119BD4; // type:function size:0x8 scope:weak align:4 +__ct__9LifeGaugeFv = .text:0x80119BDC; // type:function size:0x34 scope:global align:4 +init__9LifeGaugeFUc = .text:0x80119C10; // type:function size:0x14 scope:global align:4 +update__9LifeGaugeFf = .text:0x80119C24; // type:function size:0x1CC scope:global align:4 +draw__9LifeGaugeFfff = .text:0x80119DF0; // type:function size:0x1BC scope:global align:4 +initLifeGaugeDraw__9LifeGaugeFv = .text:0x80119FAC; // type:function size:0x110 scope:global align:4 +drawOneTri__9LifeGaugeFP10Vector3R6Color4 = .text:0x8011A0BC; // type:function size:0xF0 scope:global align:4 +draw__13LifeGaugeListFR8Graphics = .text:0x8011A1AC; // type:function size:0x604 scope:global align:4 +__ct__12LifeGaugeMgrFv = .text:0x8011A7B0; // type:function size:0xDC scope:global align:4 +__dt__13LifeGaugeListFv = .text:0x8011A88C; // type:function size:0x98 scope:weak align:4 +createLifeGauge__12LifeGaugeMgrFPQ24Game8Creature = .text:0x8011A924; // type:function size:0x150 scope:global align:4 +activeLifeGauge__12LifeGaugeMgrFPQ24Game8Creaturef = .text:0x8011AA74; // type:function size:0xE4 scope:global align:4 +inactiveLifeGauge__12LifeGaugeMgrFPQ24Game8Creature = .text:0x8011AB58; // type:function size:0xA8 scope:global align:4 +update__12LifeGaugeMgrFv = .text:0x8011AC00; // type:function size:0x270 scope:global align:4 +draw__12LifeGaugeMgrFR8Graphics = .text:0x8011AE70; // type:function size:0x80 scope:global align:4 +loadResource__12LifeGaugeMgrFv = .text:0x8011AEF0; // type:function size:0x98 scope:global align:4 +__sinit_lifeGaugeMgr_cpp = .text:0x8011AF88; // type:function size:0x28 scope:local align:4 +disappear__9CarryInfoFv = .text:0x8011AFB0; // type:function size:0xC scope:global align:4 +update__9CarryInfoFRC14CarryInfoParam = .text:0x8011AFBC; // type:function size:0x264 scope:global align:4 +draw__9CarryInfoFR8GraphicsR14CarryInfoParam = .text:0x8011B220; // type:function size:0x4AC scope:global align:4 +drawNumber__9CarryInfoFR8GraphicsffiR6Color4f = .text:0x8011B6CC; // type:function size:0x328 scope:global align:4 +drawNumberPrim__9CarryInfoFR8GraphicsffiR6Color4f = .text:0x8011B9F4; // type:function size:0x1B4 scope:global align:4 +init__13CarryInfoListFv = .text:0x8011BBA8; // type:function size:0x4 scope:global align:4 +update__13CarryInfoListFv = .text:0x8011BBAC; // type:function size:0x4C scope:global align:4 +draw__13CarryInfoListFR8Graphics = .text:0x8011BBF8; // type:function size:0x2C scope:global align:4 +getCarryInfoParam__13PokoInfoOwnerFR14CarryInfoParam = .text:0x8011BC24; // type:function size:0x3C scope:global align:4 +isFinish__13CarryInfoListFv = .text:0x8011BC60; // type:function size:0x14 scope:weak align:4 +__ct__12CarryInfoMgrFi = .text:0x8011BC74; // type:function size:0xD4 scope:global align:4 +__dt__13PokoInfoOwnerFv = .text:0x8011BD48; // type:function size:0x6C scope:weak align:4 +__ct__13PokoInfoOwnerFv = .text:0x8011BDB4; // type:function size:0x78 scope:weak align:4 +__dt__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011BE2C; // type:function size:0x13C scope:weak align:4 +__dt__12CarryInfoMgrFv = .text:0x8011BF68; // type:function size:0x170 scope:global align:4 +appearPoko__12CarryInfoMgrFRC10Vector3i = .text:0x8011C0D8; // type:function size:0xC0 scope:global align:4 +regist__12CarryInfoMgrFP14CarryInfoOwner = .text:0x8011C198; // type:function size:0x20 scope:weak align:4 +appear__12CarryInfoMgrFP14CarryInfoOwner = .text:0x8011C1B8; // type:function size:0x40 scope:global align:4 +loadResource__12CarryInfoMgrFv = .text:0x8011C1F8; // type:function size:0x98 scope:global align:4 +draw__12CarryInfoMgrFR8Graphics = .text:0x8011C290; // type:function size:0x198 scope:global align:4 +update__12CarryInfoMgrFv = .text:0x8011C428; // type:function size:0x34 scope:global align:4 +updatePokoInfoOwners__12CarryInfoMgrFv = .text:0x8011C45C; // type:function size:0x108 scope:global align:4 +scratch__12CarryInfoMgrFP14CarryInfoOwner = .text:0x8011C564; // type:function size:0x20 scope:weak align:4 +__dt__11InfoMgrBaseFv = .text:0x8011C584; // type:function size:0x48 scope:weak align:4 +init__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C5CC; // type:function size:0x4 scope:weak align:4 +__dt__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C5D0; // type:function size:0x98 scope:weak align:4 +__dt__13CarryInfoListFv = .text:0x8011C668; // type:function size:0xA8 scope:weak align:4 +scratch__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP14CarryInfoOwner = .text:0x8011C710; // type:function size:0x44 scope:weak align:4 +update__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C754; // type:function size:0x8C scope:weak align:4 +draw__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FR8Graphics = .text:0x8011C7E0; // type:function size:0x68 scope:weak align:4 +search__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoListP14CarryInfoOwner = .text:0x8011C848; // type:function size:0x2C scope:weak align:4 +update__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv = .text:0x8011C874; // type:function size:0x4 scope:weak align:4 +draw__46InfoListBase<14CarryInfoOwner,13CarryInfoList>FR8Graphics = .text:0x8011C878; // type:function size:0x4 scope:weak align:4 +addInactiveList__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoList = .text:0x8011C87C; // type:function size:0x64 scope:weak align:4 +regist__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP14CarryInfoOwner = .text:0x8011C8E0; // type:function size:0x74 scope:weak align:4 +__ct__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fi = .text:0x8011C954; // type:function size:0x2E0 scope:weak align:4 +addActiveList__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoList = .text:0x8011CC34; // type:function size:0x5C scope:weak align:4 +__sinit_carryInfoMgr_cpp = .text:0x8011CC90; // type:function size:0x28 scope:local align:4 +@4@__dt__13PokoInfoOwnerFv = .text:0x8011CCB8; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game20GameLightTimeSettingFv = .text:0x8011CCC0; // type:function size:0x654 scope:global align:4 +__ct__Q24Game14GameFogSettingFv = .text:0x8011D314; // type:function size:0x1D4 scope:weak align:4 +read__Q24Game17GameShadowSettingFR6Stream = .text:0x8011D4E8; // type:function size:0x20 scope:weak align:4 +read__Q24Game14GameFogSettingFR6Stream = .text:0x8011D508; // type:function size:0x44 scope:weak align:4 +read__Q24Game20GameLightSettingBaseFR6Stream = .text:0x8011D54C; // type:function size:0x20 scope:weak align:4 +__dt__Q24Game20GameLightTimeSettingFv = .text:0x8011D56C; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game20GameLightSpotSettingFPc = .text:0x8011D5CC; // type:function size:0x738 scope:global align:4 +read__Q24Game20GameSpotLightSettingFR6Stream = .text:0x8011DD04; // type:function size:0x44 scope:weak align:4 +__ct__Q24Game19GameLightMgrSettingFv = .text:0x8011DD48; // type:function size:0x1E0 scope:global align:4 +__dt__Q24Game20GameLightSpotSettingFv = .text:0x8011DF28; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game19GameLightSunSettingFv = .text:0x8011DF88; // type:function size:0x7C scope:weak align:4 +updateNode__Q24Game19GameLightMgrSettingFv = .text:0x8011E004; // type:function size:0x74 scope:global align:4 +read__Q24Game19GameLightMgrSettingFR6Stream = .text:0x8011E078; // type:function size:0x2F0 scope:global align:4 +readOldVersion__Q24Game19GameLightMgrSettingF4ID32R6Stream = .text:0x8011E368; // type:function size:0x1E0 scope:global align:4 +update__Q24Game18GameLightEventNodeFPQ24Game12GameLightMgr = .text:0x8011E548; // type:function size:0x1F4 scope:global align:4 +updateCommon__Q24Game18GameLightEventNodeFPQ24Game12GameLightMgrb = .text:0x8011E73C; // type:function size:0x37C scope:global align:4 +calcColor__Q24Game18GameLightEventNodeFP6Color4 = .text:0x8011EAB8; // type:function size:0x464 scope:global align:4 +__ct__Q24Game12GameLightMgrFPc = .text:0x8011EF1C; // type:function size:0x310 scope:global align:4 +__dt__Q24Game18GameLightEventNodeFv = .text:0x8011F22C; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game18GameLightEventNodeFv = .text:0x8011F28C; // type:function size:0x9C scope:weak align:4 +__ct__10Vector3Fv = .text:0x8011F328; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game19GameLightMgrSettingFv = .text:0x8011F32C; // type:function size:0xDC scope:weak align:4 +__dt__8LightMgrFv = .text:0x8011F408; // type:function size:0x90 scope:weak align:4 +start__Q24Game12GameLightMgrFv = .text:0x8011F498; // type:function size:0x2C scope:global align:4 +createEventLight__Q24Game12GameLightMgrFRQ24Game17GameLightEventArg = .text:0x8011F4C4; // type:function size:0xBC scope:global align:4 +loadParm__Q24Game12GameLightMgrFR6Stream = .text:0x8011F580; // type:function size:0x48 scope:global align:4 +calcSetting__Q24Game12GameLightMgrFPQ24Game20GameLightTimeSettingPQ24Game20GameLightTimeSettingPQ24Game20GameLightTimeSetting = .text:0x8011F5C8; // type:function size:0x1AE8 scope:global align:4 +updateSunType__Q24Game12GameLightMgrFv = .text:0x801210B0; // type:function size:0x1F0 scope:global align:4 +updateSpotType__Q24Game12GameLightMgrFv = .text:0x801212A0; // type:function size:0xC00 scope:global align:4 +update__Q24Game12GameLightMgrFv = .text:0x80121EA0; // type:function size:0x94 scope:global align:4 +set__Q24Game12GameLightMgrFR8Graphics = .text:0x80121F34; // type:function size:0x54 scope:global align:4 +updatePosition__Q24Game12GameLightMgrFP8Viewport = .text:0x80121F88; // type:function size:0x2C0 scope:global align:4 +__dt__Q24Game12GameLightMgrFv = .text:0x80122248; // type:function size:0x154 scope:weak align:4 +__dt__15AmbientLightObjFv = .text:0x8012239C; // type:function size:0x60 scope:weak align:4 +complement__4GameFfff = .text:0x801223FC; // type:function size:0xC scope:weak align:4 +__sinit_gameLightMgr_cpp = .text:0x80122408; // type:function size:0x28 scope:local align:4 +__ct__Q24Game16FieldVtxColorMgrFP12J3DModelData = .text:0x80122430; // type:function size:0xB0 scope:global align:4 +createFieldVtxColorInfo__Q24Game16FieldVtxColorMgrFv = .text:0x801224E0; // type:function size:0x1F8 scope:global align:4 +__ct__Q24Game17FieldVtxColorInfoFv = .text:0x801226D8; // type:function size:0x1C scope:weak align:4 +initVtxColor__Q24Game16FieldVtxColorMgrFv = .text:0x801226F4; // type:function size:0x1C8 scope:global align:4 +calc__Q24Game16FieldVtxColorMgrFP15J3DVertexBuffer = .text:0x801228BC; // type:function size:0x280 scope:global align:4 +setupFieldVtxColorInfoFromStrip__Q24Game16FieldVtxColorMgrFPviiii = .text:0x80122B3C; // type:function size:0x158 scope:global align:4 +setupFieldVtxColorInfo__Q24Game16FieldVtxColorMgrFP8J3DShape = .text:0x80122C94; // type:function size:0x210 scope:global align:4 +createNewControl__Q24Game16FieldVtxColorMgrFR10Vector3ff = .text:0x80122EA4; // type:function size:0x128 scope:global align:4 +setupFieldVtxColorControl__Q24Game16FieldVtxColorMgrFPQ24Game20FieldVtxColorControlR10Vector3ff = .text:0x80122FCC; // type:function size:0x204 scope:global align:4 +__dt__Q24Game16FieldVtxColorMgrFv = .text:0x801231D0; // type:function size:0x80 scope:weak align:4 +@12@__dt__Q24Game16FieldVtxColorMgrFv = .text:0x80123250; // type:function size:0x8 scope:weak align:4 +getEnemyInfo__Q24Game13EnemyInfoFuncFii = .text:0x80123258; // type:function size:0x64 scope:global align:4 +getEnemyName__Q24Game13EnemyInfoFuncFii = .text:0x801232BC; // type:function size:0x74 scope:global align:4 +getEnemyResName__Q24Game13EnemyInfoFuncFii = .text:0x80123330; // type:function size:0xA4 scope:global align:4 +getEnemyMember__Q24Game13EnemyInfoFuncFii = .text:0x801233D4; // type:function size:0x74 scope:global align:4 +getEnemyID__Q24Game13EnemyInfoFuncFPci = .text:0x80123448; // type:function size:0x90 scope:global align:4 +setPower__Q34Game4Farm8ObstacleFf = .text:0x801234D8; // type:function size:0x30 scope:global align:4 +__ct__Q34Game4Farm4FarmFv = .text:0x80123508; // type:function size:0xBC scope:global align:4 +loadResource__Q34Game4Farm4FarmFUlPv = .text:0x801235C4; // type:function size:0x200 scope:global align:4 +update__Q34Game4Farm4FarmFv = .text:0x801237C4; // type:function size:0x4 scope:global align:4 +doAnimation__Q34Game4Farm4FarmFv = .text:0x801237C8; // type:function size:0x34 scope:global align:4 +doEntry__Q34Game4Farm4FarmFv = .text:0x801237FC; // type:function size:0x34 scope:global align:4 +doSetView__Q34Game4Farm4FarmFUl = .text:0x80123830; // type:function size:0x24 scope:global align:4 +doViewCalc__Q34Game4Farm4FarmFv = .text:0x80123854; // type:function size:0x24 scope:global align:4 +addObstacle__Q34Game4Farm4FarmFPQ24Game8Creatureff = .text:0x80123878; // type:function size:0x70 scope:global align:4 +getCreatureName__Q24Game8CreatureFv = .text:0x801238E8; // type:function size:0xC scope:weak align:4 +createNewObstacle__Q34Game4Farm4FarmFPQ24Game8Creatureff = .text:0x801238F4; // type:function size:0x114 scope:global align:4 +addPlant__Q34Game4Farm4FarmFPQ24Game8Creature = .text:0x80123A08; // type:function size:0x44 scope:global align:4 +createNewPlant__Q34Game4Farm4FarmFPQ24Game8Creature = .text:0x80123A4C; // type:function size:0xB0 scope:global align:4 +updateObjectRelation__Q34Game4Farm4FarmFb = .text:0x80123AFC; // type:function size:0x1DC scope:global align:4 +doDebugDraw__Q34Game4Farm4FarmFR8Graphics = .text:0x80123CD8; // type:function size:0x108 scope:global align:4 +initAllObjectNodes__Q34Game4Farm4FarmFv = .text:0x80123DE0; // type:function size:0xDC scope:global align:4 +__dt__Q34Game4Farm5PlantFv = .text:0x80123EBC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Farm8ObstacleFv = .text:0x80123F1C; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Farm4FarmFv = .text:0x80123F7C; // type:function size:0x7C scope:weak align:4 +__ct__Q34Game4Farm7FarmMgrFUl = .text:0x80123FF8; // type:function size:0xC0 scope:global align:4 +setupSound__Q34Game4Farm7FarmMgrFv = .text:0x801240B8; // type:function size:0x2C scope:global align:4 +doAnimation__Q34Game4Farm7FarmMgrFv = .text:0x801240E4; // type:function size:0x124 scope:global align:4 +getJAIObject__Q24Game8CreatureFv = .text:0x80124208; // type:function size:0x8 scope:weak align:4 +doEntry__Q34Game4Farm7FarmMgrFv = .text:0x80124210; // type:function size:0x68 scope:global align:4 +doSetView__Q34Game4Farm7FarmMgrFi = .text:0x80124278; // type:function size:0x5C scope:global align:4 +doViewCalc__Q34Game4Farm7FarmMgrFv = .text:0x801242D4; // type:function size:0x4C scope:global align:4 +doSimulation__Q34Game4Farm7FarmMgrFf = .text:0x80124320; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q34Game4Farm7FarmMgrFR8Graphics = .text:0x80124324; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Farm7FarmMgrFR8Graphics = .text:0x80124328; // type:function size:0x50 scope:global align:4 +addFarmBmd__Q34Game4Farm7FarmMgrFPv = .text:0x80124378; // type:function size:0x68 scope:global align:4 +createNewFarm__Q34Game4Farm7FarmMgrFPv = .text:0x801243E0; // type:function size:0x74 scope:global align:4 +addObstacle__Q34Game4Farm7FarmMgrFPQ24Game8Creatureff = .text:0x80124454; // type:function size:0x120 scope:global align:4 +addPlant__Q34Game4Farm7FarmMgrFPQ24Game8Creature = .text:0x80124574; // type:function size:0xF0 scope:global align:4 +initAllFarmObjectNodes__Q34Game4Farm7FarmMgrFv = .text:0x80124664; // type:function size:0x4C scope:global align:4 +__dt__Q34Game4Farm7FarmMgrFv = .text:0x801246B0; // type:function size:0x78 scope:weak align:4 +__sinit_farmMgr_cpp = .text:0x80124728; // type:function size:0x28 scope:local align:4 +@4@__dt__Q34Game4Farm7FarmMgrFv = .text:0x80124750; // type:function size:0x8 scope:weak align:4 +makeObjectEnemy__4GameFv = .text:0x80124758; // type:function size:0x3C scope:local align:4 +__ct__Q24Game14GenObjectEnemyFv = .text:0x80124794; // type:function size:0xD0 scope:global align:4 +initialise__Q24Game14GenObjectEnemyFv = .text:0x80124864; // type:function size:0x8C scope:global align:4 +ramSaveParameters__Q24Game14GenObjectEnemyFR6Stream = .text:0x801248F0; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game14GenObjectEnemyFR6Stream = .text:0x801248F4; // type:function size:0x4 scope:global align:4 +generate__Q24Game14GenObjectEnemyFPQ24Game9Generator = .text:0x801248F8; // type:function size:0x6B4 scope:global align:4 +birth__Q24Game14GenObjectEnemyFPQ24Game6GenArg = .text:0x80124FAC; // type:function size:0xE0 scope:global align:4 +doWrite__Q24Game14GenObjectEnemyFR6Stream = .text:0x8012508C; // type:function size:0x218 scope:global align:4 +doWrite__Q24Game18EnemyGeneratorBaseFR6Stream = .text:0x801252A4; // type:function size:0x4 scope:weak align:4 +getLatestVersion__Q24Game18EnemyGeneratorBaseFv = .text:0x801252A8; // type:function size:0xC scope:weak align:4 +doRead__Q24Game14GenObjectEnemyFR6Stream = .text:0x801252B4; // type:function size:0x1E4 scope:global align:4 +doRead__Q24Game18EnemyGeneratorBaseFR6Stream = .text:0x80125498; // type:function size:0x4 scope:weak align:4 +doReadOldVersion__Q24Game14GenObjectEnemyFR6Stream = .text:0x8012549C; // type:function size:0x470 scope:global align:4 +createEnemyGenerator__Q24Game14GenObjectEnemyFv = .text:0x8012590C; // type:function size:0xE38 scope:global align:4 +__ct__Q24Game18EnemyGeneratorBaseFPc = .text:0x80126744; // type:function size:0x6C scope:weak align:4 +getShape__Q24Game14GenObjectEnemyFv = .text:0x801267B0; // type:function size:0x2C scope:global align:4 +updateUseList__Q24Game14GenObjectEnemyFPQ24Game9Generatori = .text:0x801267DC; // type:function size:0x40 scope:global align:4 +render__Q24Game14GenObjectEnemyFR8GraphicsPQ24Game9Generator = .text:0x8012681C; // type:function size:0x31C scope:global align:4 +draw__Q24Game18EnemyGeneratorBaseFR8GraphicsPQ24Game9Generator = .text:0x80126B38; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game18EnemyGeneratorBaseFv = .text:0x80126B3C; // type:function size:0x60 scope:weak align:4 +getInitialParam__Q24Game18EnemyGeneratorBaseFv = .text:0x80126B9C; // type:function size:0x8 scope:weak align:4 +getName__Q24Game6GenArgFv = .text:0x80126BA4; // type:function size:0x8 scope:weak align:4 +update__Q24Game9GenObjectFPQ24Game9Generator = .text:0x80126BAC; // type:function size:0x4 scope:weak align:4 +generatorMakeMatrix__Q24Game9GenObjectFR7MatrixfR10Vector3 = .text:0x80126BB0; // type:function size:0x28 scope:weak align:4 +getDebugInfo__Q24Game9GenObjectFPc = .text:0x80126BD8; // type:function size:0x4 scope:weak align:4 +doEvent__Q24Game7GenBaseFUl = .text:0x80126BDC; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game7TimeMgrFv = .text:0x80126BE0; // type:function size:0x90 scope:global align:4 +__ct__Q24Game12TimeMgrParmsFv = .text:0x80126C70; // type:function size:0x34 scope:weak align:4 +__ct__Q34Game12TimeMgrParms5ParmsFv = .text:0x80126CA4; // type:function size:0x32C scope:weak align:4 +init__Q24Game7TimeMgrFv = .text:0x80126FD0; // type:function size:0xB0 scope:global align:4 +setTime__Q24Game7TimeMgrFf = .text:0x80127080; // type:function size:0x3C scope:global align:4 +setStartTime__Q24Game7TimeMgrFv = .text:0x801270BC; // type:function size:0x40 scope:global align:4 +setEndTime__Q24Game7TimeMgrFv = .text:0x801270FC; // type:function size:0x40 scope:global align:4 +updateSlot__Q24Game7TimeMgrFv = .text:0x8012713C; // type:function size:0x168 scope:global align:4 +getSunGaugeRatio__Q24Game7TimeMgrFv = .text:0x801272A4; // type:function size:0x60 scope:global align:4 +update__Q24Game7TimeMgrFv = .text:0x80127304; // type:function size:0x74 scope:global align:4 +isDayOver__Q24Game7TimeMgrFv = .text:0x80127378; // type:function size:0x18 scope:global align:4 +isDayTime__Q24Game7TimeMgrFv = .text:0x80127390; // type:function size:0x30 scope:global align:4 +getRealDayTime__Q24Game7TimeMgrFv = .text:0x801273C0; // type:function size:0x20 scope:global align:4 +loadSettingFile__Q24Game7TimeMgrFPc = .text:0x801273E0; // type:function size:0x150 scope:global align:4 +__dt__Q24Game7TimeMgrFv = .text:0x80127530; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game8Pelplant9GeneratorFv = .text:0x80127590; // type:function size:0x98 scope:global align:4 +doRead__Q34Game8Pelplant9GeneratorFR6Stream = .text:0x80127628; // type:function size:0x8C scope:global align:4 +getLatestVersion__Q34Game8Pelplant9GeneratorFv = .text:0x801276B4; // type:function size:0xC scope:weak align:4 +doReadOldVersion__Q34Game8Pelplant9GeneratorFR6Stream = .text:0x801276C0; // type:function size:0x64 scope:global align:4 +doWrite__Q34Game8Pelplant9GeneratorFR6Stream = .text:0x80127724; // type:function size:0xC8 scope:global align:4 +__dt__Q34Game8Pelplant9GeneratorFv = .text:0x801277EC; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game8Pelplant9GeneratorFv = .text:0x8012785C; // type:function size:0x8 scope:weak align:4 +actEnemy__Q24Game18InteractFarmKareroFPQ24Game9EnemyBase = .text:0x80127864; // type:function size:0x5C scope:global align:4 +actEnemy__Q24Game17InteractFarmHaeroFPQ24Game9EnemyBase = .text:0x801278C0; // type:function size:0x58 scope:global align:4 +actEnemy__Q24Game12InteractDopeFPQ24Game9EnemyBase = .text:0x80127918; // type:function size:0x3C scope:global align:4 +__ct__Q24Game17EnemyAnimatorBaseFv = .text:0x80127954; // type:function size:0x44 scope:global align:4 +animate__Q24Game17EnemyAnimatorBaseFf = .text:0x80127998; // type:function size:0x124 scope:global align:4 +animate__Q24Game17EnemyAnimatorBaseFif = .text:0x80127ABC; // type:function size:0x124 scope:global align:4 +__ct__Q34Game10EnemyStone3MgrFv = .text:0x80127BE0; // type:function size:0x88 scope:global align:4 +loadResource__Q34Game10EnemyStone3MgrFv = .text:0x80127C68; // type:function size:0x174 scope:global align:4 +__defctor__Q34Game10EnemyStone8DrawInfoFv = .text:0x80127DDC; // type:function size:0x24 scope:weak align:4 +regist__Q34Game10EnemyStone3MgrFPQ34Game10EnemyStone3Obj = .text:0x80127E00; // type:function size:0xF8 scope:global align:4 +release__Q34Game10EnemyStone3MgrFPQ34Game10EnemyStone3Obj = .text:0x80127EF8; // type:function size:0x8C scope:global align:4 +draw__Q34Game10EnemyStone3MgrFP8Viewport = .text:0x80127F84; // type:function size:0x164 scope:global align:4 +setup__Q34Game10EnemyStone4InfoFR6Stream = .text:0x801280E8; // type:function size:0x164 scope:global align:4 +__ct__Q34Game10EnemyStone7ObjInfoFv = .text:0x8012824C; // type:function size:0x14 scope:weak align:4 +init__Q34Game10EnemyStone12StateMachineFPQ34Game10EnemyStone8DrawInfo = .text:0x80128260; // type:function size:0x2D4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone12StateMachineFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80128534; // type:function size:0x38 scope:global align:4 +makeMatrix__Q34Game10EnemyStone8FSMStateFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x8012856C; // type:function size:0x24 scope:global align:4 +init__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80128590; // type:function size:0x14 scope:global align:4 +exec__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfo = .text:0x801285A4; // type:function size:0x1BC scope:global align:4 +transit__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg = .text:0x80128760; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfo = .text:0x80128790; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80128794; // type:function size:0x140 scope:global align:4 +makeMatrix__Q34Game10EnemyStone21FSMStateExpansionFullFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x801288D4; // type:function size:0xA0 scope:global align:4 +init__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80128974; // type:function size:0x14 scope:global align:4 +exec__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfo = .text:0x80128988; // type:function size:0x5C scope:global align:4 +cleanup__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfo = .text:0x801289E4; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x801289E8; // type:function size:0xDC scope:global align:4 +init__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80128AC4; // type:function size:0x24 scope:global align:4 +exec__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfo = .text:0x80128AE8; // type:function size:0x278 scope:global align:4 +cleanup__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfo = .text:0x80128D60; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80128D64; // type:function size:0x2E4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x80129048; // type:function size:0x11C scope:global align:4 +init__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80129164; // type:function size:0xC scope:global align:4 +exec__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfo = .text:0x80129170; // type:function size:0x18 scope:global align:4 +init__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x80129188; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfo = .text:0x801292CC; // type:function size:0x4 scope:global align:4 +exec__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfo = .text:0x801292D0; // type:function size:0x4 scope:global align:4 +makeMatrix__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x801292D4; // type:function size:0x24 scope:global align:4 +init__Q34Game10EnemyStone12FSMStateDeadFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x801292F8; // type:function size:0x144 scope:global align:4 +makeMatrix__Q34Game10EnemyStone12FSMStateDeadFPQ34Game10EnemyStone8DrawInfoP7Matrixf = .text:0x8012943C; // type:function size:0x24 scope:global align:4 +__ct__Q34Game10EnemyStone8DrawInfoFb = .text:0x80129460; // type:function size:0xBC scope:global align:4 +reset__Q34Game10EnemyStone8DrawInfoFv = .text:0x8012951C; // type:function size:0x64 scope:global align:4 +start__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg = .text:0x80129580; // type:function size:0x34 scope:weak align:4 +update__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x801295B4; // type:function size:0x44 scope:global align:4 +makeMatrix__Q34Game10EnemyStone8DrawInfoFP7Matrixfb = .text:0x801295F8; // type:function size:0xA8 scope:global align:4 +getStateID__Q34Game10EnemyStone8DrawInfoFv = .text:0x801296A0; // type:function size:0xC scope:global align:4 +getPosAndScale__Q34Game10EnemyStone8DrawInfoFP10Vector3Pf = .text:0x801296AC; // type:function size:0x114 scope:global align:4 +appear__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBasef = .text:0x801297C0; // type:function size:0x4C scope:global align:4 +fit__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x8012980C; // type:function size:0x4C scope:global align:4 +shake__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBasef = .text:0x80129858; // type:function size:0x4C scope:global align:4 +disappear__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x801298A4; // type:function size:0x4C scope:global align:4 +dead__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase = .text:0x801298F0; // type:function size:0x4C scope:global align:4 +init__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg = .text:0x8012993C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x80129940; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x80129944; // type:function size:0x4 scope:weak align:4 +resume__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x80129948; // type:function size:0x4 scope:weak align:4 +restart__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo = .text:0x8012994C; // type:function size:0x4 scope:weak align:4 +init__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfo = .text:0x80129950; // type:function size:0x4 scope:weak align:4 +exec__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfo = .text:0x80129954; // type:function size:0x38 scope:weak align:4 +create__Q24Game42StateMachineFi = .text:0x8012998C; // type:function size:0x64 scope:weak align:4 +transit__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg = .text:0x801299F0; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game42StateMachineFPQ24Game38FSMState = .text:0x80129A8C; // type:function size:0x84 scope:weak align:4 +__ct__Q34Game10EnemyStone3ObjFPQ24Game9EnemyBasePQ34Game10EnemyStone4Info = .text:0x80129B10; // type:function size:0xA8 scope:global align:4 +start__Q34Game10EnemyStone3ObjFv = .text:0x80129BB8; // type:function size:0x104 scope:global align:4 +shake__Q34Game10EnemyStone3ObjFv = .text:0x80129CBC; // type:function size:0xE0 scope:global align:4 +update__Q34Game10EnemyStone3ObjFv = .text:0x80129D9C; // type:function size:0x2A8 scope:global align:4 +checkDrawInfoState__Q34Game10EnemyStone3ObjFi = .text:0x8012A044; // type:function size:0x88 scope:global align:4 +dead__Q34Game10EnemyStone3ObjFv = .text:0x8012A0CC; // type:function size:0xB4 scope:global align:4 +__dt__Q34Game10EnemyStone3ObjFv = .text:0x8012A180; // type:function size:0x7C scope:weak align:4 +__sinit_enemyStoneObj_cpp = .text:0x8012A1FC; // type:function size:0x28 scope:local align:4 +loadSettingFile__Q24Game14EnemyParmsBaseFP10JKRArchivePc = .text:0x8012A224; // type:function size:0x94 scope:global align:4 +setDebugParm__Q24Game14EnemyParmsBaseFUl = .text:0x8012A2B8; // type:function size:0x24 scope:global align:4 +resetDebugParm__Q24Game14EnemyParmsBaseFUl = .text:0x8012A2DC; // type:function size:0x24 scope:global align:4 +__ct__Q34Game15WalkSmokeEffect3ObjFv = .text:0x8012A300; // type:function size:0x34 scope:global align:4 +__ct__Q34Game15WalkSmokeEffect3MgrFv = .text:0x8012A334; // type:function size:0x10 scope:global align:4 +alloc__Q34Game15WalkSmokeEffect3MgrFi = .text:0x8012A344; // type:function size:0xB4 scope:global align:4 +update__Q34Game15WalkSmokeEffect3MgrFPQ24Game9EnemyBase = .text:0x8012A3F8; // type:function size:0x1C8 scope:global align:4 +setup__Q34Game15WalkSmokeEffect3MgrFiPQ28SysShape5ModelPcf = .text:0x8012A5C0; // type:function size:0x90 scope:global align:4 +__ct__Q34Game10ChappyBase3MgrFiUc = .text:0x8012A650; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game10ChappyBase3MgrFv = .text:0x8012A6A0; // type:function size:0xC0 scope:global align:4 +loadAnimData__Q34Game10ChappyBase3MgrFv = .text:0x8012A760; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game10ChappyBase3MgrFv = .text:0x8012A800; // type:function size:0x11C scope:global align:4 +getEnemyTypeID__Q34Game10ChappyBase3MgrFv = .text:0x8012A91C; // type:function size:0x8 scope:weak align:4 +doAlloc__Q24Game12EnemyMgrBaseFv = .text:0x8012A924; // type:function size:0x4 scope:weak align:4 +@4@__dt__Q34Game10ChappyBase3MgrFv = .text:0x8012A928; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10ChappyBase3ObjFv = .text:0x8012A930; // type:function size:0x15C scope:global align:4 +birth__Q34Game10ChappyBase3ObjFR10Vector3f = .text:0x8012AA8C; // type:function size:0x44 scope:global align:4 +setInitialSetting__Q34Game10ChappyBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8012AAD0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10ChappyBase3ObjFPQ24Game15CreatureInitArg = .text:0x8012AAD4; // type:function size:0x80 scope:global align:4 +doUpdate__Q34Game10ChappyBase3ObjFv = .text:0x8012AB54; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game10ChappyBase3ObjFR8Graphics = .text:0x8012AB88; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10ChappyBase3ObjFR8Graphics = .text:0x8012AB8C; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game10ChappyBase3ObjFRQ24Game11ShadowParam = .text:0x8012ABAC; // type:function size:0xC8 scope:global align:4 +damageCallBack__Q34Game10ChappyBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8012AC74; // type:function size:0x40 scope:global align:4 +collisionCallback__Q34Game10ChappyBase3ObjFRQ24Game9CollEvent = .text:0x8012ACB4; // type:function size:0x150 scope:global align:4 +doStartStoneState__Q34Game10ChappyBase3ObjFv = .text:0x8012AE04; // type:function size:0x50 scope:global align:4 +doFinishStoneState__Q34Game10ChappyBase3ObjFv = .text:0x8012AE54; // type:function size:0x4 scope:global align:4 +getOffsetForMapCollision__Q34Game10ChappyBase3ObjFv = .text:0x8012AE58; // type:function size:0x64 scope:global align:4 +startCarcassMotion__Q34Game10ChappyBase3ObjFv = .text:0x8012AEBC; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game10ChappyBase3ObjFv = .text:0x8012AEE4; // type:function size:0xDC scope:global align:4 +initWalkSmokeEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012AFC0; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10ChappyBase3ObjFv = .text:0x8012B024; // type:function size:0x8 scope:global align:4 +isWakeup__Q34Game10ChappyBase3ObjFv = .text:0x8012B02C; // type:function size:0x200 scope:global align:4 +setCollEvent__Q34Game10ChappyBase3ObjFRQ24Game9CollEvent = .text:0x8012B22C; // type:function size:0xB0 scope:global align:4 +flickStatePikmin__Q34Game10ChappyBase3ObjFv = .text:0x8012B2DC; // type:function size:0xC8 scope:global align:4 +flickAttackBomb__Q34Game10ChappyBase3ObjFv = .text:0x8012B3A4; // type:function size:0x1A4 scope:global align:4 +flickAttackFail__Q34Game10ChappyBase3ObjFv = .text:0x8012B548; // type:function size:0x60 scope:global align:4 +eatAttackPikmin__Q34Game10ChappyBase3ObjFv = .text:0x8012B5A8; // type:function size:0x24 scope:global align:4 +createEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B5CC; // type:function size:0xB0 scope:global align:4 +__dt__Q23efx9TChaseMtxFv = .text:0x8012B67C; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B700; // type:function size:0x50 scope:global align:4 +startSleepEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B750; // type:function size:0x34 scope:global align:4 +finishSleepEffect__Q34Game10ChappyBase3ObjFv = .text:0x8012B784; // type:function size:0x30 scope:global align:4 +__dt__Q23efx9THanachoNFv = .text:0x8012B7B4; // type:function size:0x9C scope:weak align:4 +doExecuteAfter__Q23efx5TSyncFP14JPABaseEmitter = .text:0x8012B850; // type:function size:0x4 scope:weak align:4 +startDemoDrawOff__Q23efx5TSyncFv = .text:0x8012B854; // type:function size:0x10 scope:weak align:4 +endDemoDrawOn__Q23efx5TSyncFv = .text:0x8012B864; // type:function size:0x10 scope:weak align:4 +@4@executeAfter__Q23efx5TSyncFP14JPABaseEmitter = .text:0x8012B874; // type:function size:0x8 scope:weak align:4 +@4@execute__Q23efx5TSyncFP14JPABaseEmitter = .text:0x8012B87C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9THanachoNFv = .text:0x8012B884; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10BlueChappy3MgrFiUc = .text:0x8012B88C; // type:function size:0x50 scope:global align:4 +loadTexData__Q34Game10BlueChappy3MgrFv = .text:0x8012B8DC; // type:function size:0x6C scope:global align:4 +doAlloc__Q34Game10BlueChappy3MgrFv = .text:0x8012B948; // type:function size:0x48 scope:global align:4 +__dt__Q34Game10BlueChappy3MgrFv = .text:0x8012B990; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game10BlueChappy3MgrFv = .text:0x8012BA58; // type:function size:0x8 scope:weak align:4 +getChangeTexture0__Q34Game10BlueChappy3MgrFv = .text:0x8012BA60; // type:function size:0x8 scope:weak align:4 +getChangeTexture1__Q34Game10BlueChappy3MgrFv = .text:0x8012BA68; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game10BlueChappy3MgrFi = .text:0x8012BA70; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game10BlueChappy3ObjFv = .text:0x8012BAD0; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game10BlueChappy3MgrFi = .text:0x8012BBBC; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game10BlueChappy3MgrFv = .text:0x8012BBCC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10BlueChappy3ObjFv = .text:0x8012BBD4; // type:function size:0x144 scope:global align:4 +changeMaterial__Q34Game10BlueChappy3ObjFv = .text:0x8012BD18; // type:function size:0x2B0 scope:global align:4 +getEnemyTypeID__Q34Game10BlueChappy3ObjFv = .text:0x8012BFC8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12YellowChappy3MgrFiUc = .text:0x8012BFD0; // type:function size:0x58 scope:global align:4 +loadTexData__Q34Game12YellowChappy3MgrFv = .text:0x8012C028; // type:function size:0x6C scope:global align:4 +doAlloc__Q34Game12YellowChappy3MgrFv = .text:0x8012C094; // type:function size:0x48 scope:global align:4 +loadAnimData__Q34Game12YellowChappy3MgrFv = .text:0x8012C0DC; // type:function size:0x34 scope:global align:4 +__dt__Q34Game12YellowChappy3MgrFv = .text:0x8012C110; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game12YellowChappy3MgrFv = .text:0x8012C1D8; // type:function size:0x8 scope:weak align:4 +getChangeTexture0__Q34Game12YellowChappy3MgrFv = .text:0x8012C1E0; // type:function size:0x8 scope:weak align:4 +getChangeTexture1__Q34Game12YellowChappy3MgrFv = .text:0x8012C1E8; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game12YellowChappy3MgrFi = .text:0x8012C1F0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game12YellowChappy3ObjFv = .text:0x8012C250; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game12YellowChappy3MgrFi = .text:0x8012C340; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game12YellowChappy3MgrFv = .text:0x8012C350; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12YellowChappy3ObjFv = .text:0x8012C358; // type:function size:0x154 scope:global align:4 +onInit__Q34Game12YellowChappy3ObjFPQ24Game15CreatureInitArg = .text:0x8012C4AC; // type:function size:0x48 scope:global align:4 +doUpdateCommon__Q34Game12YellowChappy3ObjFv = .text:0x8012C4F4; // type:function size:0x1B0 scope:global align:4 +onKill__Q34Game12YellowChappy3ObjFPQ24Game15CreatureKillArg = .text:0x8012C6A4; // type:function size:0x40 scope:global align:4 +createEffect__Q34Game12YellowChappy3ObjFv = .text:0x8012C6E4; // type:function size:0x68 scope:global align:4 +setupEffect__Q34Game12YellowChappy3ObjFv = .text:0x8012C74C; // type:function size:0xB4 scope:global align:4 +doStartMovie__Q34Game12YellowChappy3ObjFv = .text:0x8012C800; // type:function size:0x28 scope:global align:4 +doEndMovie__Q34Game12YellowChappy3ObjFv = .text:0x8012C828; // type:function size:0x4 scope:global align:4 +changeMaterial__Q34Game12YellowChappy3ObjFv = .text:0x8012C82C; // type:function size:0x2B0 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game12YellowChappy3ObjFv = .text:0x8012CADC; // type:function size:0x4C scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game12YellowChappy3ObjFv = .text:0x8012CB28; // type:function size:0x4C scope:global align:4 +forceKill__Q23efx8TSimple1Fv = .text:0x8012CB74; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple1Fv = .text:0x8012CB78; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game12YellowChappy3ObjFv = .text:0x8012CB7C; // type:function size:0x8 scope:weak align:4 +@752@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8012CB84; // type:function size:0x14 scope:weak align:4 +@752@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8012CB98; // type:function size:0x14 scope:weak align:4 +@752@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8012CBAC; // type:function size:0x14 scope:weak align:4 +@752@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8012CBC0; // type:function size:0x14 scope:weak align:4 +@752@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8012CBD4; // type:function size:0x14 scope:weak align:4 +@752@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8012CBE8; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game12BlueKochappy3MgrFiUc = .text:0x8012CBFC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12BlueKochappy3MgrFv = .text:0x8012CC4C; // type:function size:0x48 scope:global align:4 +loadTexData__Q34Game12BlueKochappy3MgrFv = .text:0x8012CC94; // type:function size:0x48 scope:global align:4 +__dt__Q34Game12BlueKochappy3MgrFv = .text:0x8012CCDC; // type:function size:0xC8 scope:weak align:4 +getChangeTexture__Q34Game12BlueKochappy3MgrFv = .text:0x8012CDA4; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game12BlueKochappy3MgrFv = .text:0x8012CDAC; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game12BlueKochappy3MgrFi = .text:0x8012CDB4; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game12BlueKochappy3ObjFv = .text:0x8012CE14; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game12BlueKochappy3MgrFi = .text:0x8012CF00; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game12BlueKochappy3MgrFv = .text:0x8012CF10; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12BlueKochappy3ObjFv = .text:0x8012CF18; // type:function size:0x130 scope:global align:4 +changeMaterial__Q34Game12BlueKochappy3ObjFv = .text:0x8012D048; // type:function size:0x1A4 scope:global align:4 +getEnemyTypeID__Q34Game12BlueKochappy3ObjFv = .text:0x8012D1EC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14YellowKochappy3ObjFv = .text:0x8012D1F4; // type:function size:0x130 scope:global align:4 +changeMaterial__Q34Game14YellowKochappy3ObjFv = .text:0x8012D324; // type:function size:0x1A4 scope:global align:4 +getChangeTexture__Q34Game14YellowKochappy3MgrFv = .text:0x8012D4C8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game14YellowKochappy3ObjFv = .text:0x8012D4D0; // type:function size:0xEC scope:weak align:4 +getEnemyTypeID__Q34Game14YellowKochappy3ObjFv = .text:0x8012D5BC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14YellowKochappy3MgrFiUc = .text:0x8012D5C4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game14YellowKochappy3MgrFv = .text:0x8012D614; // type:function size:0x48 scope:global align:4 +loadTexData__Q34Game14YellowKochappy3MgrFv = .text:0x8012D65C; // type:function size:0x48 scope:global align:4 +__dt__Q34Game14YellowKochappy3MgrFv = .text:0x8012D6A4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game14YellowKochappy3MgrFv = .text:0x8012D76C; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game14YellowKochappy3MgrFi = .text:0x8012D774; // type:function size:0x60 scope:weak align:4 +getEnemy__Q34Game14YellowKochappy3MgrFi = .text:0x8012D7D4; // type:function size:0x10 scope:weak align:4 +@4@__dt__Q34Game14YellowKochappy3MgrFv = .text:0x8012D7E4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KochappyBase3MgrFiUc = .text:0x8012D7EC; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game12KochappyBase3MgrFv = .text:0x8012D83C; // type:function size:0xC0 scope:global align:4 +loadAnimData__Q34Game12KochappyBase3MgrFv = .text:0x8012D8FC; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game12KochappyBase3MgrFv = .text:0x8012D99C; // type:function size:0x11C scope:global align:4 +getEnemyTypeID__Q34Game12KochappyBase3MgrFv = .text:0x8012DAB8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12KochappyBase3MgrFv = .text:0x8012DAC0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KochappyBase3ObjFv = .text:0x8012DAC8; // type:function size:0x148 scope:global align:4 +birth__Q34Game12KochappyBase3ObjFR10Vector3f = .text:0x8012DC10; // type:function size:0x68 scope:global align:4 +setInitialSetting__Q34Game12KochappyBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8012DC78; // type:function size:0x4 scope:global align:4 +onInit__Q34Game12KochappyBase3ObjFPQ24Game15CreatureInitArg = .text:0x8012DC7C; // type:function size:0x68 scope:global align:4 +doUpdate__Q34Game12KochappyBase3ObjFv = .text:0x8012DCE4; // type:function size:0x88 scope:global align:4 +doDirectDraw__Q34Game12KochappyBase3ObjFR8Graphics = .text:0x8012DD6C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game12KochappyBase3ObjFR8Graphics = .text:0x8012DD70; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game12KochappyBase3ObjFRQ24Game11ShadowParam = .text:0x8012DD90; // type:function size:0x88 scope:global align:4 +bounceCallback__Q34Game12KochappyBase3ObjFPQ23Sys8Triangle = .text:0x8012DE18; // type:function size:0x40 scope:global align:4 +pressCallBack__Q34Game12KochappyBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8012DE58; // type:function size:0xA0 scope:global align:4 +doStartStoneState__Q34Game12KochappyBase3ObjFv = .text:0x8012DEF8; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game12KochappyBase3ObjFv = .text:0x8012DF18; // type:function size:0x4 scope:global align:4 +getOffsetForMapCollision__Q34Game12KochappyBase3ObjFv = .text:0x8012DF1C; // type:function size:0x64 scope:global align:4 +startCarcassMotion__Q34Game12KochappyBase3ObjFv = .text:0x8012DF80; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game12KochappyBase3ObjFv = .text:0x8012DFA8; // type:function size:0x8C scope:global align:4 +initWalkSmokeEffect__Q34Game12KochappyBase3ObjFv = .text:0x8012E034; // type:function size:0x8C scope:global align:4 +getWalkSmokeEffectMgr__Q34Game12KochappyBase3ObjFv = .text:0x8012E0C0; // type:function size:0x8 scope:global align:4 +__ct__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8012E0C8; // type:function size:0x44 scope:global align:4 +setAnimMgr__Q24Game22EnemyBlendAnimatorBaseFPQ28SysShape7AnimMgr = .text:0x8012E10C; // type:function size:0x24 scope:global align:4 +getAnimator__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8012E130; // type:function size:0x8 scope:global align:4 +getAnimator__Q24Game22EnemyBlendAnimatorBaseFi = .text:0x8012E138; // type:function size:0x14 scope:global align:4 +startBlend__Q24Game22EnemyBlendAnimatorBaseFiiPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener = .text:0x8012E14C; // type:function size:0x9C scope:global align:4 +endBlend__Q24Game22EnemyBlendAnimatorBaseFv = .text:0x8012E1E8; // type:function size:0x24 scope:global align:4 +animate__Q24Game22EnemyBlendAnimatorBaseFPQ28SysShape13BlendFunctionfff = .text:0x8012E20C; // type:function size:0x48 scope:global align:4 +animate__Q24Game22EnemyBlendAnimatorBaseFf = .text:0x8012E254; // type:function size:0xB0 scope:global align:4 +getValue__Q28SysShape14BlendLinearFunFf = .text:0x8012E304; // type:function size:0x4 scope:weak align:4 +__sinit_enemyBlendAnimatorBase_cpp = .text:0x8012E308; // type:function size:0x1C scope:local align:4 +getValue__Q28SysShape18BlendQuadraticFuncFf = .text:0x8012E324; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game15EnemyPelletInfoFv = .text:0x8012E32C; // type:function size:0x34 scope:global align:4 +write__Q24Game15EnemyPelletInfoFR6Stream = .text:0x8012E360; // type:function size:0x120 scope:global align:4 +read__Q24Game15EnemyPelletInfoFR6Stream = .text:0x8012E480; // type:function size:0x70 scope:global align:4 +__ct__Q24Game20EnemyEffectNodeHamonFv = .text:0x8012E4F0; // type:function size:0x134 scope:global align:4 +__dt__Q23efx15TEnemyHamonMIndFv = .text:0x8012E624; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TEnemyHamonMFv = .text:0x8012E6C0; // type:function size:0x9C scope:weak align:4 +__dt__Q24Game19EnemyEffectNodeBaseFv = .text:0x8012E75C; // type:function size:0x60 scope:weak align:4 +create__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012E7BC; // type:function size:0x11C scope:global align:4 +fade__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012E8D8; // type:function size:0x2C scope:global align:4 +fade__Q23efx11TEnemyHamonFv = .text:0x8012E904; // type:function size:0x44 scope:weak align:4 +fade__Q23efx19TEnemyHamonChasePosFv = .text:0x8012E948; // type:function size:0x50 scope:weak align:4 +forceKill__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012E998; // type:function size:0x2C scope:global align:4 +forceKill__Q23efx11TEnemyHamonFv = .text:0x8012E9C4; // type:function size:0x44 scope:weak align:4 +forceKill__Q23efx19TEnemyHamonChasePosFv = .text:0x8012EA08; // type:function size:0x50 scope:weak align:4 +update__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase = .text:0x8012EA58; // type:function size:0x4C scope:global align:4 +__dt__Q24Game20EnemyEffectNodeHamonFv = .text:0x8012EAA4; // type:function size:0x160 scope:weak align:4 +__ct__Q24Game13EnemyBirthArgFv = .text:0x8012EC04; // type:function size:0x70 scope:global align:4 +__ct__Q24Game12EnemyMgrBaseFiUc = .text:0x8012EC74; // type:function size:0xC4 scope:global align:4 +startMovie__Q24Game12EnemyMgrBaseFv = .text:0x8012ED38; // type:function size:0x70 scope:global align:4 +endMovie__Q24Game12EnemyMgrBaseFv = .text:0x8012EDA8; // type:function size:0x70 scope:global align:4 +alloc__Q24Game12EnemyMgrBaseFv = .text:0x8012EE18; // type:function size:0xA0 scope:global align:4 +doAnimation__Q24Game12EnemyMgrBaseFv = .text:0x8012EEB8; // type:function size:0x110 scope:global align:4 +doEntry__Q24Game12EnemyMgrBaseFv = .text:0x8012EFC8; // type:function size:0xB4 scope:global align:4 +doSetView__Q24Game12EnemyMgrBaseFi = .text:0x8012F07C; // type:function size:0x8C scope:global align:4 +doViewCalc__Q24Game12EnemyMgrBaseFv = .text:0x8012F108; // type:function size:0x7C scope:global align:4 +doSimulation__Q24Game12EnemyMgrBaseFf = .text:0x8012F184; // type:function size:0xEC scope:global align:4 +doDirectDraw__Q24Game12EnemyMgrBaseFR8Graphics = .text:0x8012F270; // type:function size:0xC4 scope:global align:4 +getNext__Q24Game12EnemyMgrBaseFPv = .text:0x8012F334; // type:function size:0x74 scope:global align:4 +birth__Q24Game12EnemyMgrBaseFRQ24Game13EnemyBirthArg = .text:0x8012F3A8; // type:function size:0x184 scope:global align:4 +getEnemyTypeID__Q24Game12EnemyMgrBaseFv = .text:0x8012F52C; // type:function size:0x8 scope:weak align:4 +kill__Q24Game12EnemyMgrBaseFPQ24Game9EnemyBase = .text:0x8012F534; // type:function size:0x164 scope:global align:4 +killAll__Q24Game12EnemyMgrBaseFPQ24Game15CreatureKillArg = .text:0x8012F698; // type:function size:0xA8 scope:global align:4 +isValidEnemyTypeID__Q24Game12EnemyMgrBaseFv = .text:0x8012F740; // type:function size:0x3C scope:global align:4 +setupSoundViewerAndBas__Q24Game12EnemyMgrBaseFv = .text:0x8012F77C; // type:function size:0x100 scope:global align:4 +init__Q24Game12EnemyMgrBaseFPQ24Game14EnemyParmsBase = .text:0x8012F87C; // type:function size:0x8C scope:global align:4 +setDebugParm__Q24Game12EnemyMgrBaseFUl = .text:0x8012F908; // type:function size:0x24 scope:global align:4 +resetDebugParm__Q24Game12EnemyMgrBaseFUl = .text:0x8012F92C; // type:function size:0x24 scope:global align:4 +createModel__Q24Game12EnemyMgrBaseFv = .text:0x8012F950; // type:function size:0xAC scope:global align:4 +initParms__Q24Game12EnemyMgrBaseFv = .text:0x8012F9FC; // type:function size:0xC0 scope:global align:4 +loadStoneSetting__Q24Game12EnemyMgrBaseFPCc = .text:0x8012FABC; // type:function size:0x78 scope:global align:4 +setupParms__Q24Game12EnemyMgrBaseFPCc = .text:0x8012FB34; // type:function size:0x90 scope:global align:4 +loadResource__Q24Game12EnemyMgrBaseFv = .text:0x8012FBC4; // type:function size:0x88 scope:global align:4 +initObjects__Q24Game12EnemyMgrBaseFv = .text:0x8012FC4C; // type:function size:0x2FC scope:global align:4 +initStoneSetting__Q24Game12EnemyMgrBaseFv = .text:0x8012FF48; // type:function size:0xC0 scope:global align:4 +loadModelData__Q24Game12EnemyMgrBaseFP10JKRArchive = .text:0x80130008; // type:function size:0xE4 scope:global align:4 +loadModelData__Q24Game12EnemyMgrBaseFv = .text:0x801300EC; // type:function size:0xC0 scope:global align:4 +loadAnimData__Q24Game12EnemyMgrBaseFv = .text:0x801301AC; // type:function size:0x154 scope:global align:4 +loadTexData__Q24Game12EnemyMgrBaseFv = .text:0x80130300; // type:function size:0x74 scope:global align:4 +doLoadBmd__Q24Game12EnemyMgrBaseFPv = .text:0x80130374; // type:function size:0x2C scope:global align:4 +doLoadBdl__Q24Game12EnemyMgrBaseFPv = .text:0x801303A0; // type:function size:0x28 scope:global align:4 +initGenerator__Q24Game12EnemyMgrBaseFv = .text:0x801303C8; // type:function size:0x90 scope:global align:4 +doAnimationAlwaysMovieActor__Q24Game12EnemyMgrBaseFv = .text:0x80130458; // type:function size:0xE8 scope:global align:4 +doEntryAlwaysMovieActor__Q24Game12EnemyMgrBaseFv = .text:0x80130540; // type:function size:0x7C scope:global align:4 +doSimulationAlwaysMovieActor__Q24Game12EnemyMgrBaseFf = .text:0x801305BC; // type:function size:0x9C scope:global align:4 +doDirectDrawAlwaysMovieActor__Q24Game12EnemyMgrBaseFR8Graphics = .text:0x80130658; // type:function size:0x8C scope:global align:4 +@4@__dt__Q24Game12EnemyMgrBaseFv = .text:0x801306E4; // type:function size:0x8 scope:weak align:4 +transit__Q24Game13EnemyFSMStateFPQ24Game9EnemyBaseiPQ24Game8StateArg = .text:0x801306EC; // type:function size:0x30 scope:global align:4 +doDirectDraw__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseR8Graphics = .text:0x8013071C; // type:function size:0x5C scope:global align:4 +start__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseiPQ24Game8StateArg = .text:0x80130778; // type:function size:0x80 scope:global align:4 +exec__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x801307F8; // type:function size:0x4C scope:global align:4 +create__Q24Game17EnemyStateMachineFi = .text:0x80130844; // type:function size:0xA4 scope:global align:4 +registerState__Q24Game17EnemyStateMachineFPQ24Game13EnemyFSMState = .text:0x801308E8; // type:function size:0x84 scope:global align:4 +getCurrID__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x8013096C; // type:function size:0x70 scope:global align:4 +getCurrName__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x801309DC; // type:function size:0x70 scope:global align:4 +transit__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseiPQ24Game8StateArg = .text:0x80130A4C; // type:function size:0x11C scope:global align:4 +setCurrState__Q24Game17EnemyStateMachineFPQ24Game9EnemyBasePQ24Game13EnemyFSMState = .text:0x80130B68; // type:function size:0x8 scope:global align:4 +getCurrState__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x80130B70; // type:function size:0x8 scope:global align:4 +init__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase = .text:0x80130B78; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game15IllustratedBook12ColorSettingFv = .text:0x80130B7C; // type:function size:0x1D0 scope:global align:4 +__ct__6Color4Fv = .text:0x80130D4C; // type:function size:0x4 scope:weak align:4 +read__Q34Game15IllustratedBook12ColorSettingFR6Stream = .text:0x80130D50; // type:function size:0x98 scope:global align:4 +update__Q34Game15IllustratedBook12ColorSettingFv = .text:0x80130DE8; // type:function size:0x8CC scope:global align:4 +__ct__Q34Game15IllustratedBook13PositionParmsFv = .text:0x801316B4; // type:function size:0x148 scope:global align:4 +read__Q34Game15IllustratedBook13PositionParmsFR6Stream = .text:0x801317FC; // type:function size:0x50 scope:global align:4 +__dt__Q34Game15IllustratedBook13PositionParmsFv = .text:0x8013184C; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook17PositionParmsListFR6Stream = .text:0x801318AC; // type:function size:0x68 scope:global align:4 +read__Q34Game15IllustratedBook11CameraParmsFR6Stream = .text:0x80131914; // type:function size:0x20 scope:global align:4 +__ct__Q34Game15IllustratedBook10EnemyParmsFv = .text:0x80131934; // type:function size:0x130 scope:global align:4 +__ct__Q34Game15IllustratedBook11CameraParmsFv = .text:0x80131A64; // type:function size:0x40 scope:weak align:4 +__ct__Q44Game15IllustratedBook11CameraParms5ParmsFv = .text:0x80131AA4; // type:function size:0x2E4 scope:weak align:4 +read__Q34Game15IllustratedBook10EnemyParmsFR6Stream = .text:0x80131D88; // type:function size:0x64 scope:global align:4 +__dt__Q34Game15IllustratedBook10EnemyParmsFv = .text:0x80131DEC; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook14EnemyModeParmsFR6Stream = .text:0x80131E4C; // type:function size:0x84 scope:global align:4 +__ct__Q34Game15IllustratedBook9ItemParmsFv = .text:0x80131ED0; // type:function size:0x148 scope:global align:4 +read__Q34Game15IllustratedBook9ItemParmsFR6Stream = .text:0x80132018; // type:function size:0x64 scope:global align:4 +__dt__Q34Game15IllustratedBook9ItemParmsFv = .text:0x8013207C; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook13ItemModeParmsFR6Stream = .text:0x801320DC; // type:function size:0x80 scope:global align:4 +__ct__Q34Game15IllustratedBook5ParmsFv = .text:0x8013215C; // type:function size:0x29C scope:global align:4 +__dt__Q34Game15IllustratedBook13ItemModeParmsFv = .text:0x801323F8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game15IllustratedBook14EnemyModeParmsFv = .text:0x80132458; // type:function size:0x7C scope:weak align:4 +__dt__Q34Game15IllustratedBook17PositionParmsListFv = .text:0x801324D4; // type:function size:0x7C scope:weak align:4 +__dt__Q34Game15IllustratedBook12ColorSettingFv = .text:0x80132550; // type:function size:0x60 scope:weak align:4 +read__Q34Game15IllustratedBook5ParmsFR6Stream = .text:0x801325B0; // type:function size:0x90 scope:global align:4 +loadFile__Q34Game15IllustratedBook5ParmsFP10JKRArchive = .text:0x80132640; // type:function size:0xD0 scope:global align:4 +__dt__Q34Game15IllustratedBook5ParmsFv = .text:0x80132710; // type:function size:0x114 scope:weak align:4 +__sinit_singleGS_ZukanParms_cpp = .text:0x80132824; // type:function size:0x28 scope:local align:4 +__ct__Q213TreasureLight3MgrFv = .text:0x8013284C; // type:function size:0x150 scope:global align:4 +update__Q213TreasureLight3MgrFv = .text:0x8013299C; // type:function size:0x4 scope:global align:4 +set__Q213TreasureLight3MgrFR8Graphics = .text:0x801329A0; // type:function size:0x44 scope:global align:4 +set__Q213TreasureLight3MgrFR7Matrixf = .text:0x801329E4; // type:function size:0x44 scope:global align:4 +setCommonProc__Q213TreasureLight3MgrFv = .text:0x80132A28; // type:function size:0x184 scope:global align:4 +drawDebugInfo__Q213TreasureLight3MgrFR8Graphics = .text:0x80132BAC; // type:function size:0x20 scope:global align:4 +__dt__Q213TreasureLight3MgrFv = .text:0x80132BCC; // type:function size:0xA0 scope:weak align:4 +__sinit_treasureLightMgr_cpp = .text:0x80132C6C; // type:function size:0x28 scope:local align:4 +update__Q214EffectAnimator3ObjFPQ23efx13TKechappyTestf = .text:0x80132C94; // type:function size:0x4 scope:weak align:4 +setup__Q214EffectAnimator6ObjMgrFPQ214EffectAnimator10ObjMgrData = .text:0x80132C98; // type:function size:0x2F8 scope:global align:4 +__dt__Q214EffectAnimator3ObjFv = .text:0x80132F90; // type:function size:0x60 scope:weak align:4 +__ct__Q214EffectAnimator3MgrFv = .text:0x80132FF0; // type:function size:0xC scope:global align:4 +setup__Q214EffectAnimator3MgrFv = .text:0x80132FFC; // type:function size:0xB4 scope:global align:4 +update__Q214EffectAnimator3MgrFPQ23efx13TKechappyTestif = .text:0x801330B0; // type:function size:0xE4 scope:global align:4 +__dt__Q214EffectAnimator9LengthObjFv = .text:0x80133194; // type:function size:0x70 scope:weak align:4 +update__Q214EffectAnimator9LengthObjFPQ23efx13TKechappyTestf = .text:0x80133204; // type:function size:0x118 scope:weak align:4 +__dt__Q214EffectAnimator10BristleObjFv = .text:0x8013331C; // type:function size:0x70 scope:weak align:4 +update__Q214EffectAnimator10BristleObjFPQ23efx13TKechappyTestf = .text:0x8013338C; // type:function size:0x118 scope:weak align:4 +__dt__Q214EffectAnimator12VibrationObjFv = .text:0x801334A4; // type:function size:0x70 scope:weak align:4 +update__Q214EffectAnimator12VibrationObjFPQ23efx13TKechappyTestf = .text:0x80133514; // type:function size:0x118 scope:weak align:4 +__ct__12PikiAnimatorFv = .text:0x8013362C; // type:function size:0x50 scope:global align:4 +setAnimMgr__12PikiAnimatorFPQ28SysShape7AnimMgr = .text:0x8013367C; // type:function size:0xC scope:global align:4 +__ct__8PlatformFv = .text:0x80133688; // type:function size:0x44 scope:global align:4 +getTriDivider__8PlatformFv = .text:0x801336CC; // type:function size:0x8 scope:global align:4 +setMapCodeAll__8PlatformFRQ27MapCode4Code = .text:0x801336D4; // type:function size:0x3C scope:global align:4 +clone__8PlatformFR7Matrixf = .text:0x80133710; // type:function size:0x84 scope:global align:4 +load__8PlatformFP13JKRFileLoaderPc = .text:0x80133794; // type:function size:0xAC scope:global align:4 +__ct__12PlatAttacherFv = .text:0x80133840; // type:function size:0x14 scope:global align:4 +setMapCodeAll__12PlatAttacherFRQ27MapCode4Code = .text:0x80133854; // type:function size:0x64 scope:global align:4 +__dt__8PlatformFv = .text:0x801338B8; // type:function size:0x60 scope:weak align:4 +read__12PlatAttacherFR6Stream = .text:0x80133918; // type:function size:0x190 scope:global align:4 +read__28ArrayContainer<10Vector3>FR6Stream = .text:0x80133AA8; // type:function size:0xB0 scope:weak align:4 +readObject__28ArrayContainer<10Vector3>FR6StreamR10Vector3 = .text:0x80133B58; // type:function size:0x4 scope:weak align:4 +alloc__28ArrayContainer<10Vector3>Fi = .text:0x80133B5C; // type:function size:0x68 scope:weak align:4 +__dt__28ArrayContainer<10Vector3>Fv = .text:0x80133BC4; // type:function size:0x80 scope:weak align:4 +__dt__23Container<10Vector3>Fv = .text:0x80133C44; // type:function size:0x70 scope:weak align:4 +getNumShapes__12PlatAttacherFv = .text:0x80133CB4; // type:function size:0x8 scope:global align:4 +getJointIndex__12PlatAttacherFi = .text:0x80133CBC; // type:function size:0x7C scope:global align:4 +getPlatform__12PlatAttacherFi = .text:0x80133D38; // type:function size:0x7C scope:global align:4 +__dt__Q23Sys11GridDividerFv = .text:0x80133DB4; // type:function size:0x90 scope:weak align:4 +__dt__Q23Sys12TriIndexListFv = .text:0x80133E44; // type:function size:0xA0 scope:weak align:4 +__dt__Q23Sys10TriDividerFv = .text:0x80133EE4; // type:function size:0x60 scope:weak align:4 +__dt__Q23Sys7OBBTreeFv = .text:0x80133F44; // type:function size:0xF8 scope:weak align:4 +__ct__8CollTreeFv = .text:0x8013403C; // type:function size:0x10 scope:global align:4 +createFromFactory__8CollTreeFPQ28SysShape9MtxObjectP15CollPartFactoryP11CollPartMgr = .text:0x8013404C; // type:function size:0x44 scope:global align:4 +createSingleSphere__8CollTreeFPQ28SysShape9MtxObjectiRQ23Sys6SphereP11CollPartMgr = .text:0x80134090; // type:function size:0x104 scope:global align:4 +release__8CollTreeFv = .text:0x80134194; // type:function size:0x44 scope:global align:4 +releaseRec__8CollTreeFP8CollPart = .text:0x801341D8; // type:function size:0x348 scope:global align:4 +getChild__8CollPartFv = .text:0x80134520; // type:function size:0x8 scope:weak align:4 +getNext__8CollPartFv = .text:0x80134528; // type:function size:0x8 scope:weak align:4 +checkCollision__8CollTreeFP8CollTreePP8CollPartPP8CollPartR10Vector3 = .text:0x80134530; // type:function size:0x3C scope:global align:4 +checkCollisionRec__8CollTreeFP8CollPartP8CollPartPP8CollPartPP8CollPartR10Vector3 = .text:0x8013456C; // type:function size:0x604 scope:global align:4 +isLeaf__8CollPartFv = .text:0x80134B70; // type:function size:0x10 scope:weak align:4 +isPrim__8CollPartFv = .text:0x80134B80; // type:function size:0x30 scope:weak align:4 +checkCollision__8CollTreeFRQ23Sys6SphereP22IDelegate1 = .text:0x80134BB0; // type:function size:0x2C scope:global align:4 +checkCollision__8CollPartFRQ23Sys6SphereP22IDelegate1 = .text:0x80134BDC; // type:function size:0x8B8 scope:global align:4 +__ct__Q23Sys4TubeFR10Vector3R10Vector3ff = .text:0x80135494; // type:function size:0x3C scope:weak align:4 +__ct__Q23Sys6SphereFR10Vector3f = .text:0x801354D0; // type:function size:0x20 scope:weak align:4 +isSphere__8CollPartFv = .text:0x801354F0; // type:function size:0x10 scope:weak align:4 +__ct__10Vector3FRC10Vector3 = .text:0x80135500; // type:function size:0x1C scope:weak align:4 +isTubeTree__8CollPartFv = .text:0x8013551C; // type:function size:0x14 scope:weak align:4 +isTube__8CollPartFv = .text:0x80135530; // type:function size:0x14 scope:weak align:4 +checkCollisionMulti__8CollTreeFP8CollTreeP47IDelegate3> = .text:0x80135544; // type:function size:0x198 scope:global align:4 +checkCollisionMulti__8CollPartFP8CollPartP47IDelegate3> = .text:0x801356DC; // type:function size:0x1F0 scope:global align:4 +collide__8CollPartFP8CollPartR10Vector3 = .text:0x801358CC; // type:function size:0x1B0 scope:global align:4 +update__8CollTreeFv = .text:0x80135A7C; // type:function size:0x2C scope:global align:4 +attachModel__8CollTreeFPQ28SysShape9MtxObject = .text:0x80135AA8; // type:function size:0x2C scope:global align:4 +attachModel__8CollPartFPQ28SysShape9MtxObject = .text:0x80135AD4; // type:function size:0x350 scope:global align:4 +getCollPart__8CollTreeFUl = .text:0x80135E24; // type:function size:0x34 scope:global align:4 +getCollPart__8CollPartFUl = .text:0x80135E58; // type:function size:0x640 scope:global align:4 +getAllCollPartToArray__8CollPartFPP8CollPartiRi = .text:0x80136498; // type:function size:0x54C scope:global align:4 +findCollPart__8CollTreeFR15FindCollPartArg = .text:0x801369E4; // type:function size:0x118 scope:global align:4 +getRandomCollPart__8CollTreeFv = .text:0x80136AFC; // type:function size:0x124 scope:global align:4 +getBoundingSphere__8CollTreeFRQ23Sys6Sphere = .text:0x80136C20; // type:function size:0x34 scope:global align:4 +__ct__8CollPartFPQ28SysShape9MtxObject = .text:0x80136C54; // type:function size:0x64 scope:global align:4 +__ct__8CollPartFv = .text:0x80136CB8; // type:function size:0x58 scope:global align:4 +init__8CollPartFPQ28SysShape9MtxObject = .text:0x80136D10; // type:function size:0x80 scope:global align:4 +isStickable__8CollPartFv = .text:0x80136D90; // type:function size:0x30 scope:global align:4 +update__8CollPartFv = .text:0x80136DC0; // type:function size:0x4E0 scope:global align:4 +getTranslation__7MatrixfFR10Vector3 = .text:0x801372A0; // type:function size:0x1C scope:weak align:4 +getBasis__7MatrixfFiR10Vector3 = .text:0x801372BC; // type:function size:0x24 scope:weak align:4 +__cl__7MatrixfFii = .text:0x801372E0; // type:function size:0x18 scope:weak align:4 +makeMatrixTo__8CollPartFR7Matrixf = .text:0x801372F8; // type:function size:0x84 scope:global align:4 +makeTubeTree__8CollPartFv = .text:0x8013737C; // type:function size:0x214 scope:global align:4 +calcStickLocal__8CollPartFR10Vector3R10Vector3 = .text:0x80137590; // type:function size:0x22C scope:global align:4 +calcStickGlobal__8CollPartFR10Vector3R10Vector3 = .text:0x801377BC; // type:function size:0x168 scope:global align:4 +calcPoseMatrix__8CollPartFR10Vector3R7Matrixf = .text:0x80137924; // type:function size:0x4C8 scope:global align:4 +setScale__8CollPartFf = .text:0x80137DEC; // type:function size:0x3F0 scope:global align:4 +getSphere__8CollPartFRQ23Sys6Sphere = .text:0x801381DC; // type:function size:0x7C scope:global align:4 +getTube__8CollPartFRQ23Sys4Tube = .text:0x80138258; // type:function size:0xB8 scope:global align:4 +draw__8CollPartFR8Graphics = .text:0x80138310; // type:function size:0x4 scope:global align:4 +__ct__13MouthCollPartFv = .text:0x80138314; // type:function size:0x134 scope:global align:4 +__dt__8CollPartFv = .text:0x80138448; // type:function size:0x60 scope:weak align:4 +getPosition__13MouthCollPartFR10Vector3 = .text:0x801384A8; // type:function size:0x48 scope:global align:4 +copyMatrixTo__13MouthCollPartFR7Matrixf = .text:0x801384F0; // type:function size:0x38 scope:global align:4 +__ct__10MouthSlotsFv = .text:0x80138528; // type:function size:0x10 scope:global align:4 +alloc__10MouthSlotsFi = .text:0x80138538; // type:function size:0x64 scope:global align:4 +__dt__13MouthCollPartFv = .text:0x8013859C; // type:function size:0x70 scope:weak align:4 +update__10MouthSlotsFv = .text:0x8013860C; // type:function size:0x64 scope:global align:4 +setup__10MouthSlotsFiPQ28SysShape5ModelPc = .text:0x80138670; // type:function size:0xE8 scope:global align:4 +getSlot__10MouthSlotsFi = .text:0x80138758; // type:function size:0x7C scope:global align:4 +load__15CollPartFactoryFPc = .text:0x801387D4; // type:function size:0x150 scope:global align:4 +load__15CollPartFactoryFP13JKRFileLoaderPc = .text:0x80138924; // type:function size:0x128 scope:global align:4 +createInstance__15CollPartFactoryFPQ28SysShape9MtxObjectP11CollPartMgr = .text:0x80138A4C; // type:function size:0x20 scope:global align:4 +createOne__11CollPartMgrFPQ28SysShape9MtxObject = .text:0x80138A6C; // type:function size:0xAC scope:global align:4 +clone__8CollPartFPQ28SysShape9MtxObjectP11CollPartMgr = .text:0x80138B18; // type:function size:0x2A8 scope:global align:4 +getChildCount__8CollPartFv = .text:0x80138DC0; // type:function size:0x20 scope:weak align:4 +read__8CollPartFR6Streamb = .text:0x80138DE0; // type:function size:0x35C scope:global align:4 +addChild__8CollPartFP8CollPart = .text:0x8013913C; // type:function size:0x20 scope:weak align:4 +setName__5CNodeFPc = .text:0x8013915C; // type:function size:0x8 scope:weak align:4 +readU16__6StreamFv = .text:0x80139164; // type:function size:0x24 scope:weak align:4 +draw__11AgeCollPartFR8Graphics = .text:0x80139188; // type:function size:0x10C scope:global align:4 +__ct__11AgeCollPartFPQ28SysShape5Model = .text:0x80139294; // type:function size:0xCC scope:global align:4 +__dt__11AgeCollPartFv = .text:0x80139360; // type:function size:0x70 scope:weak align:4 +isMouth__8CollPartFv = .text:0x801393D0; // type:function size:0x8 scope:weak align:4 +constructor__8CollPartFv = .text:0x801393D8; // type:function size:0x4 scope:weak align:4 +doAnimation__8CollPartFv = .text:0x801393DC; // type:function size:0x4 scope:weak align:4 +doEntry__8CollPartFv = .text:0x801393E0; // type:function size:0x4 scope:weak align:4 +doSetView__8CollPartFUl = .text:0x801393E4; // type:function size:0x4 scope:weak align:4 +doViewCalc__8CollPartFv = .text:0x801393E8; // type:function size:0x4 scope:weak align:4 +doSimulation__8CollPartFf = .text:0x801393EC; // type:function size:0x4 scope:weak align:4 +doDirectDraw__8CollPartFR8Graphics = .text:0x801393F0; // type:function size:0x4 scope:weak align:4 +__dt__15CollPartFactoryFv = .text:0x801393F4; // type:function size:0x70 scope:weak align:4 +isMouth__13MouthCollPartFv = .text:0x80139464; // type:function size:0x8 scope:weak align:4 +__dt__Q23Sys3OBBFv = .text:0x8013946C; // type:function size:0xD4 scope:weak align:4 +__dt__12ContainerFv = .text:0x80139540; // type:function size:0x70 scope:weak align:4 +__dt__17ArrayContainerFv = .text:0x801395B0; // type:function size:0x80 scope:weak align:4 +alloc__17ArrayContainerFi = .text:0x80139630; // type:function size:0x4C scope:weak align:4 +read__17ArrayContainerFR6Stream = .text:0x8013967C; // type:function size:0xB0 scope:weak align:4 +readObject__17ArrayContainerFR6StreamRi = .text:0x8013972C; // type:function size:0x4 scope:weak align:4 +readObject__Q23Sys9IndexListFR6StreamRi = .text:0x80139730; // type:function size:0x34 scope:weak align:4 +writeObject__Q23Sys9IndexListFR6StreamRi = .text:0x80139764; // type:function size:0x28 scope:weak align:4 +__dt__Q23Sys9IndexListFv = .text:0x8013978C; // type:function size:0x90 scope:weak align:4 +setArray__28ArrayContainer<10Vector3>FP10Vector3i = .text:0x8013981C; // type:function size:0x10 scope:weak align:4 +addOne__28ArrayContainer<10Vector3>FR10Vector3 = .text:0x8013982C; // type:function size:0x40 scope:weak align:4 +birth__24MonoObjectMgr<8CollPart>Fv = .text:0x8013986C; // type:function size:0x60 scope:weak align:4 +kill__24MonoObjectMgr<8CollPart>FP8CollPart = .text:0x801398CC; // type:function size:0x54 scope:weak align:4 +getEmptyIndex__24MonoObjectMgr<8CollPart>Fv = .text:0x80139920; // type:function size:0x3C scope:weak align:4 +writeObject__28ArrayContainer<10Vector3>FR6StreamR10Vector3 = .text:0x8013995C; // type:function size:0x4 scope:weak align:4 +write__28ArrayContainer<10Vector3>FR6Stream = .text:0x80139960; // type:function size:0xD4 scope:weak align:4 +get__28ArrayContainer<10Vector3>FPv = .text:0x80139A34; // type:function size:0x10 scope:weak align:4 +getNext__28ArrayContainer<10Vector3>FPv = .text:0x80139A44; // type:function size:0x8 scope:weak align:4 +getStart__28ArrayContainer<10Vector3>Fv = .text:0x80139A4C; // type:function size:0x8 scope:weak align:4 +getEnd__28ArrayContainer<10Vector3>Fv = .text:0x80139A54; // type:function size:0x8 scope:weak align:4 +getAt__28ArrayContainer<10Vector3>Fi = .text:0x80139A5C; // type:function size:0x10 scope:weak align:4 +getTo__28ArrayContainer<10Vector3>Fv = .text:0x80139A6C; // type:function size:0x8 scope:weak align:4 +writeObject__17ArrayContainerFR6StreamRi = .text:0x80139A74; // type:function size:0x4 scope:weak align:4 +write__17ArrayContainerFR6Stream = .text:0x80139A78; // type:function size:0xD4 scope:weak align:4 +addOne__17ArrayContainerFRi = .text:0x80139B4C; // type:function size:0x2C scope:weak align:4 +setArray__17ArrayContainerFPii = .text:0x80139B78; // type:function size:0x10 scope:weak align:4 +get__17ArrayContainerFPv = .text:0x80139B88; // type:function size:0x10 scope:weak align:4 +getNext__17ArrayContainerFPv = .text:0x80139B98; // type:function size:0x8 scope:weak align:4 +getStart__17ArrayContainerFv = .text:0x80139BA0; // type:function size:0x8 scope:weak align:4 +getEnd__17ArrayContainerFv = .text:0x80139BA8; // type:function size:0x8 scope:weak align:4 +getAt__17ArrayContainerFi = .text:0x80139BB0; // type:function size:0x10 scope:weak align:4 +getTo__17ArrayContainerFv = .text:0x80139BC0; // type:function size:0x8 scope:weak align:4 +getObject__23Container<10Vector3>FPv = .text:0x80139BC8; // type:function size:0x2C scope:weak align:4 +getAt__23Container<10Vector3>Fi = .text:0x80139BF4; // type:function size:0x8 scope:weak align:4 +getTo__23Container<10Vector3>Fv = .text:0x80139BFC; // type:function size:0x8 scope:weak align:4 +getObject__12ContainerFPv = .text:0x80139C04; // type:function size:0x2C scope:weak align:4 +getAt__12ContainerFi = .text:0x80139C30; // type:function size:0x8 scope:weak align:4 +getTo__12ContainerFv = .text:0x80139C38; // type:function size:0x8 scope:weak align:4 +__ct__13DynamicsParmsFv = .text:0x80139C40; // type:function size:0x334 scope:global align:4 +__dt__13DynamicsParmsFv = .text:0x80139F74; // type:function size:0x74 scope:global align:4 +globalInstance__13DynamicsParmsFv = .text:0x80139FE8; // type:function size:0x48 scope:global align:4 +__ct__Q24Game5RigidFv = .text:0x8013A030; // type:function size:0x54 scope:global align:4 +__ct__Q24Game11RigidConfigFv = .text:0x8013A084; // type:function size:0x34 scope:weak align:4 +initPosition__Q24Game5RigidFR10Vector3R10Vector3 = .text:0x8013A0B8; // type:function size:0x8C scope:global align:4 +initPositionIndex__Q24Game5RigidFR10Vector3iR10Vector3 = .text:0x8013A144; // type:function size:0x8C scope:global align:4 +updateMatrix__Q24Game5RigidFi = .text:0x8013A1D0; // type:function size:0x38 scope:global align:4 +computeForces__Q24Game5RigidFi = .text:0x8013A208; // type:function size:0x6C scope:global align:4 +getYDegree__FR4QuatR10Vector3 = .text:0x8013A274; // type:function size:0x268 scope:local align:4 +integrate__Q24Game5RigidFfi = .text:0x8013A4DC; // type:function size:0x678 scope:global align:4 +resolveCollision__Q24Game5RigidFiR10Vector3R10Vector3f = .text:0x8013AB54; // type:function size:0x300 scope:global align:4 +size__7ParmFv = .text:0x8013AE54; // type:function size:0x8 scope:weak align:4 +@12@__dt__13DynamicsParmsFv = .text:0x8013AE5C; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game8CreatureFv = .text:0x8013AE64; // type:function size:0x12C scope:global align:4 +__ct__Q24Game7CellLegFv = .text:0x8013AF90; // type:function size:0x18 scope:weak align:4 +init__Q24Game8CreatureFPQ24Game15CreatureInitArg = .text:0x8013AFA8; // type:function size:0x120 scope:global align:4 +onInitPost__Q24Game8CreatureFPQ24Game15CreatureInitArg = .text:0x8013B0C8; // type:function size:0x4 scope:weak align:4 +onInit__Q24Game8CreatureFPQ24Game15CreatureInitArg = .text:0x8013B0CC; // type:function size:0x4 scope:weak align:4 +kill__Q24Game8CreatureFPQ24Game15CreatureKillArg = .text:0x8013B0D0; // type:function size:0xB4 scope:global align:4 +onKill__Q24Game8CreatureFPQ24Game15CreatureKillArg = .text:0x8013B184; // type:function size:0x4 scope:weak align:4 +setPosition__Q24Game8CreatureFR10Vector3b = .text:0x8013B188; // type:function size:0xC8 scope:global align:4 +onSetPositionPost__Q24Game8CreatureFR10Vector3 = .text:0x8013B250; // type:function size:0x4 scope:weak align:4 +initPosition__Q24Game8CreatureFR10Vector3 = .text:0x8013B254; // type:function size:0xCC scope:global align:4 +getYVector__Q24Game8CreatureFR10Vector3 = .text:0x8013B320; // type:function size:0xA0 scope:global align:4 +getBodyRadius__Q24Game8CreatureFv = .text:0x8013B3C0; // type:function size:0x34 scope:global align:4 +getCellRadius__Q24Game8CreatureFv = .text:0x8013B3F4; // type:function size:0x34 scope:global align:4 +getTypeName__Q24Game8CreatureFv = .text:0x8013B428; // type:function size:0x24 scope:global align:4 +getShadowParam__Q24Game8CreatureFRQ24Game11ShadowParam = .text:0x8013B44C; // type:function size:0x8C scope:global align:4 +needShadow__Q24Game8CreatureFv = .text:0x8013B4D8; // type:function size:0xC scope:global align:4 +getLifeGaugeParam__Q24Game8CreatureFRQ24Game14LifeGaugeParam = .text:0x8013B4E4; // type:function size:0x70 scope:global align:4 +save__Q24Game8CreatureFR6StreamUc = .text:0x8013B554; // type:function size:0x90 scope:global align:4 +load__Q24Game8CreatureFR6StreamUc = .text:0x8013B5E4; // type:function size:0xE4 scope:global align:4 +calcSphereDistance__Q24Game8CreatureFPQ24Game8Creature = .text:0x8013B6C8; // type:function size:0xBC scope:global align:4 +applyAirDrag__Q24Game8CreatureFfff = .text:0x8013B784; // type:function size:0xCC scope:global align:4 +doAnimation__Q24Game8CreatureFv = .text:0x8013B850; // type:function size:0x3C scope:global align:4 +doEntry__Q24Game8CreatureFv = .text:0x8013B88C; // type:function size:0x4 scope:global align:4 +doSetView__Q24Game8CreatureFi = .text:0x8013B890; // type:function size:0x108 scope:global align:4 +doViewCalc__Q24Game8CreatureFv = .text:0x8013B998; // type:function size:0x2C scope:global align:4 +isPiki__Q24Game8CreatureFv = .text:0x8013B9C4; // type:function size:0x10 scope:global align:4 +isNavi__Q24Game8CreatureFv = .text:0x8013B9D4; // type:function size:0x14 scope:global align:4 +isTeki__Q24Game8CreatureFv = .text:0x8013B9E8; // type:function size:0x14 scope:global align:4 +isPellet__Q24Game8CreatureFv = .text:0x8013B9FC; // type:function size:0x14 scope:global align:4 +sound_culling__Q24Game8CreatureFv = .text:0x8013BA10; // type:function size:0x20 scope:global align:4 +movie_begin__Q24Game8CreatureFb = .text:0x8013BA30; // type:function size:0x9C scope:global align:4 +movie_end__Q24Game8CreatureFb = .text:0x8013BACC; // type:function size:0x50 scope:global align:4 +checkWater__Q24Game8CreatureFPQ24Game8WaterBoxRQ23Sys6Sphere = .text:0x8013BB1C; // type:function size:0xE0 scope:global align:4 +inWaterCallback__Q24Game8CreatureFPQ24Game8WaterBox = .text:0x8013BBFC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q24Game8CreatureFv = .text:0x8013BC00; // type:function size:0x4 scope:weak align:4 +checkHell__Q24Game8CreatureFRQ34Game8Creature12CheckHellArg = .text:0x8013BC04; // type:function size:0x144 scope:global align:4 +updateCell__Q24Game8CreatureFv = .text:0x8013BD48; // type:function size:0x178 scope:global align:4 +getCreatureID__Q24Game8CreatureFv = .text:0x8013BEC0; // type:function size:0x8 scope:weak align:4 +getCellPikiCount__Q24Game8CreatureFv = .text:0x8013BEC8; // type:function size:0x44 scope:global align:4 +applyImpulse__Q24Game8CreatureFR10Vector3R10Vector3 = .text:0x8013BF0C; // type:function size:0xB0 scope:global align:4 +checkCollision__Q24Game8CreatureFPQ24Game10CellObject = .text:0x8013BFBC; // type:function size:0x2E4 scope:global align:4 +resolveOneColl__Q24Game8CreatureFP8CollPartP8CollPartR10Vector3 = .text:0x8013C2A0; // type:function size:0x8CC scope:global align:4 +collisionCallback__Q24Game8CreatureFRQ24Game9CollEvent = .text:0x8013CB6C; // type:function size:0x4 scope:weak align:4 +invoke__63Delegate3>FP8CollPartP8CollPartR10Vector3 = .text:0x8013CB70; // type:function size:0x30 scope:weak align:4 +constructor__Q24Game8CreatureFv = .text:0x8013CBA0; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game8CreatureFf = .text:0x8013CBA4; // type:function size:0x4 scope:weak align:4 +inWater__Q24Game8CreatureFv = .text:0x8013CBA8; // type:function size:0x8 scope:weak align:4 +isFlying__Q24Game8CreatureFv = .text:0x8013CBB0; // type:function size:0x8 scope:weak align:4 +getPSCreature__Q24Game8CreatureFv = .text:0x8013CBB8; // type:function size:0x8 scope:weak align:4 +getSound_PosPtr__Q24Game8CreatureFv = .text:0x8013CBC0; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimFrame__Q24Game8CreatureFv = .text:0x8013CBC8; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimSpeed__Q24Game8CreatureFv = .text:0x8013CBD0; // type:function size:0x8 scope:weak align:4 +getLODSphere__Q24Game8CreatureFRQ23Sys6Sphere = .text:0x8013CBD8; // type:function size:0x2C scope:weak align:4 +onStickStart__Q24Game8CreatureFPQ24Game8Creature = .text:0x8013CC04; // type:function size:0x4 scope:weak align:4 +onStickEnd__Q24Game8CreatureFPQ24Game8Creature = .text:0x8013CC08; // type:function size:0x4 scope:weak align:4 +checkCollision__Q24Game10CellObjectFPQ24Game10CellObject = .text:0x8013CC0C; // type:function size:0x4 scope:weak align:4 +isPiki__Q24Game10CellObjectFv = .text:0x8013CC10; // type:function size:0x8 scope:weak align:4 +isNavi__Q24Game10CellObjectFv = .text:0x8013CC18; // type:function size:0x8 scope:weak align:4 +__sinit_creature_cpp = .text:0x8013CC20; // type:function size:0x28 scope:local align:4 +__ct__Q24Game8FakePikiFv = .text:0x8013CC48; // type:function size:0x12C scope:global align:4 +initFakePiki__Q24Game8FakePikiFv = .text:0x8013CD74; // type:function size:0xB8 scope:global align:4 +killFakePiki__Q24Game8FakePikiFv = .text:0x8013CE2C; // type:function size:0x28 scope:global align:4 +initAnimator__Q24Game8FakePikiFv = .text:0x8013CE54; // type:function size:0xB8 scope:global align:4 +assertMotion__Q24Game8FakePikiFi = .text:0x8013CF0C; // type:function size:0x28 scope:global align:4 +enableMotionBlend__Q24Game8FakePikiFv = .text:0x8013CF34; // type:function size:0x6C scope:global align:4 +startMotion__Q24Game8FakePikiFiiPQ28SysShape14MotionListenerPQ28SysShape14MotionListener = .text:0x8013CFA0; // type:function size:0x100 scope:global align:4 +finishMotion__Q24Game8FakePikiFv = .text:0x8013D0A0; // type:function size:0x1C scope:global align:4 +movieSetFaceDir__Q24Game8FakePikiFf = .text:0x8013D0BC; // type:function size:0x8 scope:global align:4 +setDoAnimCallback__Q24Game8FakePikiFP9IDelegate = .text:0x8013D0C4; // type:function size:0x8 scope:global align:4 +clearDoAnimCallback__Q24Game8FakePikiFv = .text:0x8013D0CC; // type:function size:0xC scope:global align:4 +updateWalkAnimation__Q24Game8FakePikiFv = .text:0x8013D0D8; // type:function size:0x3BC scope:global align:4 +sNeckCallback__Q24Game8FakePikiFP8J3DJointi = .text:0x8013D494; // type:function size:0x23C scope:global align:4 +startLookCreature__Q24Game8FakePikiFPQ24Game8Creature = .text:0x8013D6D0; // type:function size:0xC0 scope:global align:4 +updateLookCreature__Q24Game8FakePikiFv = .text:0x8013D790; // type:function size:0x70 scope:global align:4 +do_updateLookCreature__Q24Game8FakePikiFv = .text:0x8013D800; // type:function size:0x4 scope:global align:4 +finishLook__Q24Game8FakePikiFv = .text:0x8013D804; // type:function size:0x18 scope:global align:4 +updateLook__Q24Game8FakePikiFv = .text:0x8013D81C; // type:function size:0x398 scope:global align:4 +turnTo__Q24Game8FakePikiFR10Vector3 = .text:0x8013DBB4; // type:function size:0x60 scope:global align:4 +moveVelocity__Q24Game8FakePikiFv = .text:0x8013DC14; // type:function size:0x3B4 scope:global align:4 +moveRotation__Q24Game8FakePikiFv = .text:0x8013DFC8; // type:function size:0xB4 scope:global align:4 +useMoveRotation__Q24Game8FakePikiFv = .text:0x8013E07C; // type:function size:0x14 scope:weak align:4 +move__Q24Game8FakePikiFf = .text:0x8013E090; // type:function size:0x6A4 scope:global align:4 +__opi__Q34Game8GameStat11PikiCounterFv = .text:0x8013E734; // type:function size:0x3C scope:weak align:4 +inWater__Q24Game8FakePikiFv = .text:0x8013E770; // type:function size:0x14 scope:weak align:4 +wallCallback__Q24Game8FakePikiFR10Vector3 = .text:0x8013E784; // type:function size:0x4 scope:weak align:4 +useMapCollision__Q24Game8FakePikiFv = .text:0x8013E788; // type:function size:0x14 scope:weak align:4 +getMapCollisionRadius__Q24Game8FakePikiFv = .text:0x8013E79C; // type:function size:0x8 scope:weak align:4 +doEntry__Q24Game8FakePikiFv = .text:0x8013E7A4; // type:function size:0xBC scope:global align:4 +doColorChange__Q24Game8FakePikiFv = .text:0x8013E860; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game8FakePikiFv = .text:0x8013E864; // type:function size:0x494 scope:global align:4 +getBoundingSphere__Q24Game8FakePikiFRQ23Sys6Sphere = .text:0x8013ECF8; // type:function size:0x24 scope:weak align:4 +useMoveVelocity__Q24Game8FakePikiFv = .text:0x8013ED1C; // type:function size:0x14 scope:weak align:4 +updateTrMatrix__Q24Game8FakePikiFv = .text:0x8013ED30; // type:function size:0x78 scope:global align:4 +useUpdateTrMatrix__Q24Game8FakePikiFv = .text:0x8013EDA8; // type:function size:0x14 scope:weak align:4 +doSimulation__Q24Game8FakePikiFf = .text:0x8013EDBC; // type:function size:0x560 scope:global align:4 +getPosition__Q24Game8BaseItemFv = .text:0x8013F31C; // type:function size:0x1C scope:weak align:4 +initCaptureStomach__Q24Game8FakePikiFv = .text:0x8013F338; // type:function size:0xC scope:global align:4 +startCaptureStomach__Q24Game8FakePikiFP8CollPart = .text:0x8013F344; // type:function size:0x8 scope:global align:4 +endCaptureStomach__Q24Game8FakePikiFv = .text:0x8013F34C; // type:function size:0xC scope:global align:4 +updateStomach__Q24Game8FakePikiFv = .text:0x8013F358; // type:function size:0x158 scope:global align:4 +debugShapeDL__Q24Game8FakePikiFPc = .text:0x8013F4B0; // type:function size:0x8 scope:global align:4 +getDownfloorMass__Q24Game8FakePikiFv = .text:0x8013F4B8; // type:function size:0x8 scope:weak align:4 +isPikmin__Q24Game8FakePikiFv = .text:0x8013F4C0; // type:function size:0x8 scope:weak align:4 +doDebugDL__Q24Game8FakePikiFv = .text:0x8013F4C8; // type:function size:0x4 scope:weak align:4 +update__Q24Game8FakePikiFv = .text:0x8013F4CC; // type:function size:0x4 scope:weak align:4 +setMoveRotation__Q24Game8FakePikiFb = .text:0x8013F4D0; // type:function size:0x28 scope:weak align:4 +setUpdateTrMatrix__Q24Game8FakePikiFb = .text:0x8013F4F8; // type:function size:0x28 scope:weak align:4 +setMoveVelocity__Q24Game8FakePikiFb = .text:0x8013F520; // type:function size:0x28 scope:weak align:4 +setMapCollision__Q24Game8FakePikiFb = .text:0x8013F548; // type:function size:0x28 scope:weak align:4 +isZikatu__Q24Game8FakePikiFv = .text:0x8013F570; // type:function size:0xC scope:weak align:4 +setZikatu__Q24Game8FakePikiFb = .text:0x8013F57C; // type:function size:0x3C scope:weak align:4 +wasZikatu__Q24Game8FakePikiFv = .text:0x8013F5B8; // type:function size:0xC scope:weak align:4 +inWaterCallback__Q24Game8FakePikiFPQ24Game8WaterBox = .text:0x8013F5C4; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q24Game8FakePikiFv = .text:0x8013F5C8; // type:function size:0x4 scope:weak align:4 +onSetPosition__Q24Game8FakePikiFv = .text:0x8013F5CC; // type:function size:0x4 scope:weak align:4 +onSetPosition__Q24Game8FakePikiFR10Vector3 = .text:0x8013F5D0; // type:function size:0x44 scope:weak align:4 +getFaceDir__Q24Game8FakePikiFv = .text:0x8013F614; // type:function size:0x8 scope:weak align:4 +getVelocity__Q24Game8FakePikiFv = .text:0x8013F61C; // type:function size:0x1C scope:weak align:4 +setVelocity__Q24Game8FakePikiFR10Vector3 = .text:0x8013F638; // type:function size:0x1C scope:weak align:4 +getVelocityAt__Q24Game8FakePikiFR10Vector3R10Vector3 = .text:0x8013F654; // type:function size:0x1C scope:weak align:4 +getSound_PosPtr__Q24Game8FakePikiFv = .text:0x8013F670; // type:function size:0x8 scope:weak align:4 +isWalking__Q24Game8FakePikiFv = .text:0x8013F678; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q24Game8FakePikiFRCQ28SysShape8KeyEvent = .text:0x8013F680; // type:function size:0x4 scope:weak align:4 +__sinit_fakePiki_cpp = .text:0x8013F684; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game8FakePikiFRCQ28SysShape8KeyEvent = .text:0x8013F6AC; // type:function size:0x8 scope:weak align:4 +getShadowParam__Q24Game4NaviFRQ24Game11ShadowParam = .text:0x8013F6B4; // type:function size:0x50 scope:global align:4 +getLODSphere__Q24Game4NaviFRQ23Sys6Sphere = .text:0x8013F704; // type:function size:0x24 scope:global align:4 +__ct__Q24Game4NaviFv = .text:0x8013F728; // type:function size:0x208 scope:global align:4 +__ct__Q23efx11TNaviEffectFv = .text:0x8013F930; // type:function size:0x2B0 scope:weak align:4 +__dt__Q23efx10TChaseMtxTFv = .text:0x8013FBE0; // type:function size:0x84 scope:weak align:4 +__ct__Q23efx7ContextFv = .text:0x8013FC64; // type:function size:0x50 scope:weak align:4 +__dt__Q23efx11TOneEmitterFv = .text:0x8013FCB4; // type:function size:0x8C scope:weak align:4 +__dt__Q23efx7ContextFv = .text:0x8013FD40; // type:function size:0x60 scope:weak align:4 +__dt__Q23efx12TFueactBiri2Fv = .text:0x8013FDA0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TFueactBiri1Fv = .text:0x8013FE3C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TFueactBiriBaseFv = .text:0x8013FED8; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx13TFueactCircleFv = .text:0x8013FF5C; // type:function size:0x80 scope:weak align:4 +__dt__Q23efx15ContextChasePosFv = .text:0x8013FFDC; // type:function size:0x60 scope:weak align:4 +__ct__Q23efx15ContextChasePosFv = .text:0x8014003C; // type:function size:0x54 scope:weak align:4 +onInit__Q24Game4NaviFPQ24Game15CreatureInitArg = .text:0x80140090; // type:function size:0x290 scope:global align:4 +getCreatureID__Q24Game4NaviFv = .text:0x80140320; // type:function size:0x8 scope:weak align:4 +start__Q24Game26StateMachineFPQ24Game4NaviiPQ24Game8StateArg = .text:0x80140328; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q24Game4NaviFR10Vector3 = .text:0x8014035C; // type:function size:0x88 scope:global align:4 +onKill__Q24Game4NaviFPQ24Game15CreatureKillArg = .text:0x801403E4; // type:function size:0x40 scope:global align:4 +onKeyEvent__Q24Game4NaviFRCQ28SysShape8KeyEvent = .text:0x80140424; // type:function size:0xD4 scope:global align:4 +onKeyEvent__Q24Game9NaviStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x801404F8; // type:function size:0x4 scope:weak align:4 +getPosition__Q24Game4NaviFv = .text:0x801404FC; // type:function size:0x80 scope:global align:4 +onStickStart__Q24Game4NaviFPQ24Game8Creature = .text:0x8014057C; // type:function size:0x50 scope:global align:4 +onStickEnd__Q24Game4NaviFPQ24Game8Creature = .text:0x801405CC; // type:function size:0x58 scope:global align:4 +procActionButton__Q24Game4NaviFv = .text:0x80140624; // type:function size:0x654 scope:global align:4 +getAt__27MonoObjectMgrFi = .text:0x80140C78; // type:function size:0x10 scope:weak align:4 +isDone__36IteratorFv = .text:0x80140C88; // type:function size:0x4C scope:weak align:4 +setupNukuAdjustArg__Q24Game4NaviFPQ34Game12ItemPikihead4ItemRQ24Game22NaviNukuAdjustStateArg = .text:0x80140CD4; // type:function size:0x138 scope:global align:4 +hasDope__Q24Game4NaviFi = .text:0x80140E0C; // type:function size:0x50 scope:global align:4 +getDopeCount__Q24Game4NaviFi = .text:0x80140E5C; // type:function size:0x44 scope:global align:4 +useDope__Q24Game4NaviFi = .text:0x80140EA0; // type:function size:0x4C scope:global align:4 +incDopeCount__Q24Game4NaviFi = .text:0x80140EEC; // type:function size:0xA0 scope:global align:4 +sendMessage__Q24Game15BaseGameSectionFRQ24Game11GameMessage = .text:0x80140F8C; // type:function size:0x8 scope:weak align:4 +applyDopes__Q24Game4NaviFiR10Vector3 = .text:0x80140F94; // type:function size:0x2E0 scope:global align:4 +applyDopeSmoke__Q24Game4NaviFPQ24Game10CellObject = .text:0x80141274; // type:function size:0x1B0 scope:global align:4 +getStateID__Q24Game4NaviFv = .text:0x80141424; // type:function size:0x1C scope:global align:4 +transit__Q24Game4NaviFiPQ24Game8StateArg = .text:0x80141440; // type:function size:0x44 scope:global align:4 +getOlimarData__Q24Game4NaviFv = .text:0x80141484; // type:function size:0xC scope:global align:4 +getJAIObject__Q24Game4NaviFv = .text:0x80141490; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game4NaviFv = .text:0x801414A4; // type:function size:0x8 scope:global align:4 +wallCallback__Q24Game4NaviFR10Vector3 = .text:0x801414AC; // type:function size:0x44 scope:global align:4 +wallCallback__Q24Game9NaviStateFPQ24Game4NaviR10Vector3 = .text:0x801414F0; // type:function size:0x4 scope:weak align:4 +bounceCallback__Q24Game4NaviFPQ23Sys8Triangle = .text:0x801414F4; // type:function size:0x44 scope:global align:4 +bounceCallback__Q24Game9NaviStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x80141538; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game4NaviFRQ24Game9CollEvent = .text:0x8014153C; // type:function size:0x44 scope:global align:4 +collisionCallback__Q24Game9NaviStateFPQ24Game4NaviRQ24Game9CollEvent = .text:0x80141580; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game4NaviFRQ24Game9PlatEvent = .text:0x80141584; // type:function size:0x194 scope:global align:4 +viewEntryShape__Q24Game4NaviFR7MatrixfR10Vector3 = .text:0x80141718; // type:function size:0x4 scope:global align:4 +viewGetShape__Q24Game4NaviFv = .text:0x8014171C; // type:function size:0x8 scope:global align:4 +viewGetBaseScale__Q24Game4NaviFv = .text:0x80141724; // type:function size:0x1C scope:global align:4 +doEntry__Q24Game4NaviFv = .text:0x80141740; // type:function size:0x1F8 scope:global align:4 +doAnimation__Q24Game4NaviFv = .text:0x80141938; // type:function size:0x2C4 scope:global align:4 +updateCursor__Q24Game4NaviFv = .text:0x80141BFC; // type:function size:0x280 scope:global align:4 +doSimulation__Q24Game4NaviFf = .text:0x80141E7C; // type:function size:0x58 scope:global align:4 +doSetView__Q24Game4NaviFi = .text:0x80141ED4; // type:function size:0xB8 scope:global align:4 +doViewCalc__Q24Game4NaviFv = .text:0x80141F8C; // type:function size:0x3C scope:global align:4 +setLifeMax__Q24Game4NaviFv = .text:0x80141FC8; // type:function size:0x14 scope:global align:4 +getLifeRatio__Q24Game4NaviFv = .text:0x80141FDC; // type:function size:0x18 scope:global align:4 +getDownfloorMass__Q24Game4NaviFv = .text:0x80141FF4; // type:function size:0xAC scope:global align:4 +update__Q24Game4NaviFv = .text:0x801420A0; // type:function size:0x2A8 scope:global align:4 +vsUsableY__Q24Game9NaviStateFv = .text:0x80142348; // type:function size:0x8 scope:weak align:4 +openKanketuMenu__Q24Game15BaseGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller = .text:0x80142350; // type:function size:0x4 scope:weak align:4 +openCaveInMenu__Q24Game15BaseGameSectionFPQ34Game8ItemCave4Itemi = .text:0x80142354; // type:function size:0x4 scope:weak align:4 +openCaveMoreMenu__Q24Game15BaseGameSectionFPQ34Game8ItemHole4ItemP10Controller = .text:0x80142358; // type:function size:0x4 scope:weak align:4 +do_updateLookCreature__Q24Game4NaviFv = .text:0x8014235C; // type:function size:0x4 scope:global align:4 +inWaterCallback__Q24Game4NaviFPQ24Game8WaterBox = .text:0x80142360; // type:function size:0x9C scope:global align:4 +outWaterCallback__Q24Game4NaviFv = .text:0x801423FC; // type:function size:0x44 scope:global align:4 +ignoreAtari__Q24Game4NaviFPQ24Game8Creature = .text:0x80142440; // type:function size:0xB0 scope:global align:4 +ignoreAtari__Q24Game9NaviStateFPQ24Game8Creature = .text:0x801424F0; // type:function size:0x8 scope:weak align:4 +on_movie_begin__Q24Game4NaviFb = .text:0x801424F8; // type:function size:0x4C scope:global align:4 +on_movie_end__Q24Game4NaviFb = .text:0x80142544; // type:function size:0x48 scope:global align:4 +movieUserCommand__Q24Game4NaviFUlPQ24Game11MoviePlayer = .text:0x8014258C; // type:function size:0x27C scope:global align:4 +movieSetFaceDir__Q24Game4NaviFf = .text:0x80142808; // type:function size:0x28 scope:global align:4 +movieStartAnimation__Q24Game4NaviFUl = .text:0x80142830; // type:function size:0x4C scope:global align:4 +movieStartDemoAnimation__Q24Game4NaviFPQ28SysShape8AnimInfo = .text:0x8014287C; // type:function size:0xDC scope:global align:4 +movieSetTranslation__Q24Game4NaviFR10Vector3f = .text:0x80142958; // type:function size:0x88 scope:global align:4 +movieGotoPosition__Q24Game4NaviFR10Vector3 = .text:0x801429E0; // type:function size:0x12C scope:global align:4 +set_movie_draw__Q24Game4NaviFb = .text:0x80142B0C; // type:function size:0x1A8 scope:global align:4 +isWalking__Q24Game4NaviFv = .text:0x80142CB4; // type:function size:0x50 scope:global align:4 +setDeadLaydown__Q24Game4NaviFv = .text:0x80142D04; // type:function size:0x16C scope:global align:4 +checkHole__Q24Game4NaviFv = .text:0x80142E70; // type:function size:0x2DC scope:global align:4 +isDone__26IteratorFv = .text:0x8014314C; // type:function size:0x4C scope:weak align:4 +checkCave__Q24Game4NaviFv = .text:0x80143198; // type:function size:0x2CC scope:global align:4 +checkBigFountain__Q24Game4NaviFv = .text:0x80143464; // type:function size:0x2B4 scope:global align:4 +checkOnyon__Q24Game4NaviFv = .text:0x80143718; // type:function size:0x368 scope:global align:4 +isDone__23IteratorFv = .text:0x80143A80; // type:function size:0x4C scope:weak align:4 +getMapCollisionRadius__Q24Game4NaviFv = .text:0x80143ACC; // type:function size:0x8 scope:global align:4 +doDirectDraw__Q24Game4NaviFR8Graphics = .text:0x80143AD4; // type:function size:0x4 scope:global align:4 +disableController__Q24Game4NaviFv = .text:0x80143AD8; // type:function size:0xC scope:global align:4 +control__Q24Game4NaviFv = .text:0x80143AE4; // type:function size:0xD8 scope:global align:4 +makeVelocity__Q24Game4NaviFv = .text:0x80143BBC; // type:function size:0x418 scope:global align:4 +reviseController__Q24Game4NaviFR10Vector3 = .text:0x80143FD4; // type:function size:0x1A4 scope:global align:4 +callPikis__Q24Game4NaviFv = .text:0x80144178; // type:function size:0x1D4 scope:global align:4 +invincible__Q24Game4NaviFv = .text:0x8014434C; // type:function size:0x8C scope:global align:4 +invincible__Q24Game9NaviStateFv = .text:0x801443D8; // type:function size:0x8 scope:weak align:4 +setInvincibleTimer__Q24Game4NaviFUc = .text:0x801443E0; // type:function size:0x8 scope:global align:4 +startDamage__Q24Game4NaviFf = .text:0x801443E8; // type:function size:0x208 scope:global align:4 +addDamage__Q24Game4NaviFfb = .text:0x801445F0; // type:function size:0x214 scope:global align:4 +enterAllPikis__Q24Game4NaviFv = .text:0x80144804; // type:function size:0x29C scope:global align:4 +formationable__Q24Game4NaviFv = .text:0x80144AA0; // type:function size:0x14 scope:global align:4 +updateKaisanDisable__Q24Game4NaviFv = .text:0x80144AB4; // type:function size:0x70 scope:global align:4 +clearKaisanDisable__Q24Game4NaviFv = .text:0x80144B24; // type:function size:0xC scope:global align:4 +throwable__Q24Game4NaviFv = .text:0x80144B30; // type:function size:0x10 scope:global align:4 +startThrowDisable__Q24Game4NaviFv = .text:0x80144B40; // type:function size:0xC scope:global align:4 +updateThrowDisable__Q24Game4NaviFv = .text:0x80144B4C; // type:function size:0x3C scope:global align:4 +clearThrowDisable__Q24Game4NaviFv = .text:0x80144B88; // type:function size:0xC scope:global align:4 +holeinAllPikis__Q24Game4NaviFR10Vector3 = .text:0x80144B94; // type:function size:0x2FC scope:global align:4 +soft_transittable__Q24Game9PikiStateFi = .text:0x80144E90; // type:function size:0x8 scope:weak align:4 +transittable__Q24Game9PikiStateFi = .text:0x80144E98; // type:function size:0x8 scope:weak align:4 +fountainonAllPikis__Q24Game4NaviFR10Vector3 = .text:0x80144EA0; // type:function size:0x2F8 scope:global align:4 +demowaitAllPikis__Q24Game4NaviFv = .text:0x80145198; // type:function size:0x2D4 scope:global align:4 +releasePikis__Q24Game4NaviFv = .text:0x8014546C; // type:function size:0x954 scope:global align:4 +releasable__Q24Game9PikiStateFv = .text:0x80145DC0; // type:function size:0x8 scope:weak align:4 +makeCStick__Q24Game4NaviFb = .text:0x80145DC8; // type:function size:0x920 scope:global align:4 +isCStickNetural__Q24Game4NaviFv = .text:0x801466E8; // type:function size:0x64 scope:global align:4 +findNextThrowPiki__Q24Game4NaviFv = .text:0x8014674C; // type:function size:0x2BC scope:global align:4 +ogGetNextThrowPiki__Q24Game4NaviFv = .text:0x80146A08; // type:function size:0x2C scope:global align:4 +throwPiki__Q24Game4NaviFPQ24Game4PikiR10Vector3 = .text:0x80146A34; // type:function size:0x2C0 scope:global align:4 +commandOn__Q24Game4NaviFv = .text:0x80146CF4; // type:function size:0x8 scope:global align:4 +getName__Q26PikiAI10ActFreeArgFv = .text:0x80146CFC; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI17CreatureActionArgFv = .text:0x80146D08; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI9ActionArgFv = .text:0x80146D14; // type:function size:0xC scope:weak align:4 +getName__Q24Game13NaviDamageArgFv = .text:0x80146D20; // type:function size:0xC scope:weak align:4 +__ml__23IteratorFv = .text:0x80146D2C; // type:function size:0x38 scope:weak align:4 +next__23IteratorFv = .text:0x80146D64; // type:function size:0xE4 scope:weak align:4 +first__23IteratorFv = .text:0x80146E48; // type:function size:0xDC scope:weak align:4 +__ml__26IteratorFv = .text:0x80146F24; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x80146F5C; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80147040; // type:function size:0xDC scope:weak align:4 +actCommon__Q24Game11GameMessageFPQ24Game15BaseGameSection = .text:0x8014711C; // type:function size:0x8 scope:weak align:4 +actSingle__Q24Game11GameMessageFPQ24Game17SingleGameSection = .text:0x80147124; // type:function size:0x8 scope:weak align:4 +actVs__Q24Game11GameMessageFPQ24Game13VsGameSection = .text:0x8014712C; // type:function size:0x8 scope:weak align:4 +__ml__36IteratorFv = .text:0x80147134; // type:function size:0x38 scope:weak align:4 +next__36IteratorFv = .text:0x8014716C; // type:function size:0xE4 scope:weak align:4 +first__36IteratorFv = .text:0x80147250; // type:function size:0xDC scope:weak align:4 +setVelocity__Q24Game4NaviFR10Vector3 = .text:0x8014732C; // type:function size:0x1C scope:weak align:4 +getCreatureName__Q24Game4NaviFv = .text:0x80147348; // type:function size:0x8 scope:weak align:4 +create__Q23efx7TFueactFPQ23efx3Arg = .text:0x80147350; // type:function size:0x9C scope:weak align:4 +fade__Q23efx7TFueactFv = .text:0x801473EC; // type:function size:0x64 scope:weak align:4 +fade__Q23efx13TFueactCircleFv = .text:0x80147450; // type:function size:0x3C scope:weak align:4 +forceKill__Q23efx7TFueactFv = .text:0x8014748C; // type:function size:0x64 scope:weak align:4 +forceKill__Q23efx13TFueactCircleFv = .text:0x801474F0; // type:function size:0x3C scope:weak align:4 +init__Q24Game26StateMachineFPQ24Game4Navi = .text:0x8014752C; // type:function size:0x4 scope:weak align:4 +invoke__44Delegate1FPQ24Game10CellObject = .text:0x80147530; // type:function size:0x30 scope:weak align:4 +transit__Q24Game26StateMachineFPQ24Game4NaviiPQ24Game8StateArg = .text:0x80147560; // type:function size:0x9C scope:weak align:4 +init__Q24Game22FSMStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801475FC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game22FSMStateFPQ24Game4Navi = .text:0x80147600; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26StateMachineFPQ24Game4Navi = .text:0x80147604; // type:function size:0x38 scope:weak align:4 +exec__Q24Game22FSMStateFPQ24Game4Navi = .text:0x8014763C; // type:function size:0x4 scope:weak align:4 +__sinit_navi_cpp = .text:0x80147640; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx12TFueactBiri1Fv = .text:0x80147668; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TFueactBiri2Fv = .text:0x80147670; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game4NaviFRCQ28SysShape8KeyEvent = .text:0x80147678; // type:function size:0x8 scope:weak align:4 +@784@12@viewEntryShape__Q24Game4NaviFR7MatrixfR10Vector3 = .text:0x80147680; // type:function size:0x14 scope:weak align:4 +@784@12@viewGetShape__Q24Game4NaviFv = .text:0x80147694; // type:function size:0x14 scope:weak align:4 +@784@12@viewGetBaseScale__Q24Game4NaviFv = .text:0x801476A8; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game4PikiFv = .text:0x801476BC; // type:function size:0x1A4 scope:global align:4 +__ct__Q23efx9TPkEffectFv = .text:0x80147860; // type:function size:0x2BC scope:weak align:4 +__dt__Q23efx12TPkBlackDownFv = .text:0x80147B1C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx7TPkMoeAFv = .text:0x80147BB8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TPkNageBlurFv = .text:0x80147C54; // type:function size:0x9C scope:weak align:4 +isWalking__Q24Game4PikiFv = .text:0x80147CF0; // type:function size:0xB4 scope:global align:4 +getFormationSlotID__Q24Game4PikiFv = .text:0x80147DA4; // type:function size:0x50 scope:global align:4 +getCurrAction__Q24Game4PikiFv = .text:0x80147DF4; // type:function size:0x24 scope:global align:4 +clearCurrAction__Q24Game4PikiFv = .text:0x80147E18; // type:function size:0x10 scope:global align:4 +getCurrActionID__Q24Game4PikiFv = .text:0x80147E28; // type:function size:0xC scope:global align:4 +onInit__Q24Game4PikiFPQ24Game15CreatureInitArg = .text:0x80147E34; // type:function size:0x280 scope:global align:4 +start__Q24Game26StateMachineFPQ24Game4PikiiPQ24Game8StateArg = .text:0x801480B4; // type:function size:0x34 scope:weak align:4 +onKill__Q24Game4PikiFPQ24Game15CreatureKillArg = .text:0x801480E8; // type:function size:0x38C scope:global align:4 +cleanup__Q26PikiAI6ActionFv = .text:0x80148474; // type:function size:0x4 scope:weak align:4 +onSetPosition__Q24Game4PikiFv = .text:0x80148478; // type:function size:0x1C scope:global align:4 +getLODSphere__Q24Game4PikiFRQ23Sys6Sphere = .text:0x80148494; // type:function size:0x24 scope:global align:4 +update__Q24Game4PikiFv = .text:0x801484B8; // type:function size:0x210 scope:global align:4 +dead__Q24Game9PikiStateFv = .text:0x801486C8; // type:function size:0x8 scope:weak align:4 +isAlive__Q24Game4PikiFv = .text:0x801486D0; // type:function size:0x58 scope:global align:4 +on_movie_begin__Q24Game4PikiFb = .text:0x80148728; // type:function size:0x4 scope:global align:4 +on_movie_end__Q24Game4PikiFb = .text:0x8014872C; // type:function size:0x64 scope:global align:4 +getCreatureID__Q24Game4PikiFv = .text:0x80148790; // type:function size:0x8 scope:weak align:4 +movieUserCommand__Q24Game4PikiFUlPQ24Game11MoviePlayer = .text:0x80148798; // type:function size:0x4 scope:global align:4 +movieStartAnimation__Q24Game4PikiFUl = .text:0x8014879C; // type:function size:0x38 scope:global align:4 +movieStartDemoAnimation__Q24Game4PikiFPQ28SysShape8AnimInfo = .text:0x801487D4; // type:function size:0x48 scope:global align:4 +movieSetTranslation__Q24Game4PikiFR10Vector3f = .text:0x8014881C; // type:function size:0x88 scope:global align:4 +movieGotoPosition__Q24Game4PikiFR10Vector3 = .text:0x801488A4; // type:function size:0x8 scope:global align:4 +startSound__Q24Game4PikiFUlb = .text:0x801488AC; // type:function size:0x40 scope:global align:4 +startSound__Q24Game4PikiFUlQ36PSGame5SeMgr7SetSeId = .text:0x801488EC; // type:function size:0x48 scope:global align:4 +startSound__Q24Game4PikiFPQ24Game8CreatureUlb = .text:0x80148934; // type:function size:0x70 scope:global align:4 +startSound__Q24Game4PikiFPQ24Game8CreatureUlQ36PSGame5SeMgr7SetSeId = .text:0x801489A4; // type:function size:0xCC scope:global align:4 +getJAIObject__Q24Game4PikiFv = .text:0x80148A70; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game4PikiFv = .text:0x80148A84; // type:function size:0x8 scope:global align:4 +canVsBattle__Q24Game4PikiFv = .text:0x80148A8C; // type:function size:0x30 scope:global align:4 +battleOK__Q24Game9PikiStateFv = .text:0x80148ABC; // type:function size:0x8 scope:weak align:4 +getVsBattlePiki__Q24Game4PikiFv = .text:0x80148AC4; // type:function size:0x3C scope:global align:4 +attachRadar__Q24Game4PikiFb = .text:0x80148B00; // type:function size:0xB0 scope:global align:4 +inWaterCallback__Q24Game4PikiFPQ24Game8WaterBox = .text:0x80148BB0; // type:function size:0x148 scope:global align:4 +outWaterCallback__Q24Game4PikiFv = .text:0x80148CF8; // type:function size:0x68 scope:global align:4 +outWaterCallback__Q24Game9PikiStateFPQ24Game4Piki = .text:0x80148D60; // type:function size:0x4 scope:weak align:4 +might_bury__Q24Game4PikiFv = .text:0x80148D64; // type:function size:0x154 scope:global align:4 +surviveDayEnd__Q24Game4PikiFv = .text:0x80148EB8; // type:function size:0x14 scope:global align:4 +onKeyEvent__Q24Game4PikiFRCQ28SysShape8KeyEvent = .text:0x80148ECC; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game9PikiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80148F10; // type:function size:0x4 scope:weak align:4 +getStateID__Q24Game4PikiFv = .text:0x80148F14; // type:function size:0x1C scope:global align:4 +getSpeed__Q24Game4PikiFf = .text:0x80148F30; // type:function size:0xC8 scope:global align:4 +setSpeed__Q24Game4PikiFfR10Vector3 = .text:0x80148FF8; // type:function size:0x1C0 scope:global align:4 +setSpeed__Q24Game4PikiFfR10Vector3f = .text:0x801491B8; // type:function size:0x20C scope:global align:4 +isPikmin__Q24Game4PikiFv = .text:0x801493C4; // type:function size:0x40 scope:global align:4 +isThrowable__Q24Game4PikiFv = .text:0x80149404; // type:function size:0x4C scope:global align:4 +throwable__Q24Game9PikiStateFv = .text:0x80149450; // type:function size:0x8 scope:weak align:4 +getDownfloorMass__Q24Game4PikiFv = .text:0x80149458; // type:function size:0x40 scope:global align:4 +gasInvicible__Q24Game4PikiFv = .text:0x80149498; // type:function size:0x14 scope:global align:4 +setGasInvincible__Q24Game4PikiFUc = .text:0x801494AC; // type:function size:0x8 scope:global align:4 +updateGasInvincible__Q24Game4PikiFv = .text:0x801494B4; // type:function size:0x18 scope:global align:4 +getAttackDamage__Q24Game4PikiFv = .text:0x801494CC; // type:function size:0xF8 scope:global align:4 +getThrowHeight__Q24Game4PikiFv = .text:0x801495C4; // type:function size:0xC0 scope:global align:4 +getPelletCarryPower__Q24Game4PikiFv = .text:0x80149684; // type:function size:0xC4 scope:global align:4 +onStickStartSelf__Q24Game4PikiFPQ24Game8Creature = .text:0x80149748; // type:function size:0x4 scope:global align:4 +onStickEndSelf__Q24Game4PikiFPQ24Game8Creature = .text:0x8014974C; // type:function size:0xE8 scope:global align:4 +stimulate__Q24Game4PikiFRQ24Game11Interaction = .text:0x80149834; // type:function size:0x88 scope:global align:4 +bounceCallback__Q24Game4PikiFPQ23Sys8Triangle = .text:0x801498BC; // type:function size:0xA4 scope:global align:4 +bounceCallback__Q26PikiAI6ActionFPQ24Game4PikiPQ23Sys8Triangle = .text:0x80149960; // type:function size:0x4 scope:weak align:4 +aiActive__Q24Game9PikiStateFv = .text:0x80149964; // type:function size:0x8 scope:weak align:4 +bounceCallback__Q24Game9PikiStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8014996C; // type:function size:0x4 scope:weak align:4 +wallCallback__Q24Game4PikiFR10Vector3 = .text:0x80149970; // type:function size:0xA0 scope:global align:4 +wallCallback__Q26PikiAI6ActionFR10Vector3 = .text:0x80149A10; // type:function size:0x4 scope:weak align:4 +wallCallback__Q24Game9PikiStateFPQ24Game4PikiR10Vector3 = .text:0x80149A14; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game4PikiFRQ24Game9CollEvent = .text:0x80149A18; // type:function size:0xAC scope:global align:4 +collisionCallback__Q26PikiAI6ActionFPQ24Game4PikiRQ24Game9CollEvent = .text:0x80149AC4; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game9PikiStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x80149AC8; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game4PikiFRQ24Game9PlatEvent = .text:0x80149ACC; // type:function size:0x178 scope:global align:4 +platCallback__Q26PikiAI6ActionFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x80149C44; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game9PikiStateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x80149C48; // type:function size:0x4 scope:weak align:4 +ignoreAtari__Q24Game4PikiFPQ24Game8Creature = .text:0x80149C4C; // type:function size:0x50 scope:global align:4 +ignoreAtari__Q24Game9PikiStateFPQ24Game4PikiPQ24Game8Creature = .text:0x80149C9C; // type:function size:0x8 scope:weak align:4 +setFreeLightEffect__Q24Game4PikiFb = .text:0x80149CA4; // type:function size:0x60 scope:global align:4 +setDopeEffect__Q24Game4PikiFb = .text:0x80149D04; // type:function size:0x84 scope:global align:4 +clearDope__Q24Game4PikiFv = .text:0x80149D88; // type:function size:0x88 scope:global align:4 +extendDopeTime__Q24Game4PikiFv = .text:0x80149E10; // type:function size:0x14 scope:global align:4 +startDope__Q24Game4PikiFi = .text:0x80149E24; // type:function size:0x19C scope:global align:4 +doped__Q24Game4PikiFv = .text:0x80149FC0; // type:function size:0x18 scope:global align:4 +initColor__Q24Game4PikiFv = .text:0x80149FD8; // type:function size:0x40 scope:global align:4 +setPastel__Q24Game4PikiFb = .text:0x8014A018; // type:function size:0x100 scope:global align:4 +getShadowParam__Q24Game4PikiFRQ24Game11ShadowParam = .text:0x8014A118; // type:function size:0xD0 scope:global align:4 +isMyPikmin__Q24Game4PikiFPQ24Game8Creature = .text:0x8014A1E8; // type:function size:0x80 scope:global align:4 +isTekiFollowAI__Q24Game4PikiFv = .text:0x8014A268; // type:function size:0x18 scope:global align:4 +doColorChange__Q24Game4PikiFv = .text:0x8014A280; // type:function size:0xEC scope:global align:4 +doDebugDL__Q24Game4PikiFv = .text:0x8014A36C; // type:function size:0x2C scope:global align:4 +startMotion__Q24Game4PikiFiiPQ28SysShape14MotionListenerPQ28SysShape14MotionListener = .text:0x8014A398; // type:function size:0xF8 scope:global align:4 +doAnimation__Q24Game4PikiFv = .text:0x8014A490; // type:function size:0xE4 scope:global align:4 +doDirectDraw__Q24Game4PikiFR8Graphics = .text:0x8014A574; // type:function size:0x4 scope:global align:4 +getBaseScale__Q24Game4PikiFv = .text:0x8014A578; // type:function size:0x28 scope:global align:4 +changeShape__Q24Game4PikiFi = .text:0x8014A5A0; // type:function size:0x1B0 scope:global align:4 +changeHappa__Q24Game4PikiFi = .text:0x8014A750; // type:function size:0x8 scope:global align:4 +do_updateLookCreature__Q24Game4PikiFv = .text:0x8014A758; // type:function size:0x344 scope:global align:4 +setTekiKillID__Q24Game4PikiFi = .text:0x8014AA9C; // type:function size:0x14 scope:global align:4 +deferPikiCollision__Q24Game4PikiFv = .text:0x8014AAB0; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q24Game4PikiFv = .text:0x8014AAB8; // type:function size:0x8 scope:weak align:4 +kill__27MonoObjectMgrFPQ24Game4Piki = .text:0x8014AAC0; // type:function size:0x54 scope:weak align:4 +init__Q24Game26StateMachineFPQ24Game4Piki = .text:0x8014AB14; // type:function size:0x4 scope:weak align:4 +transit__Q24Game26StateMachineFPQ24Game4PikiiPQ24Game8StateArg = .text:0x8014AB18; // type:function size:0x9C scope:weak align:4 +init__Q24Game22FSMStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8014ABB4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game22FSMStateFPQ24Game4Piki = .text:0x8014ABB8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26StateMachineFPQ24Game4Piki = .text:0x8014ABBC; // type:function size:0x38 scope:weak align:4 +exec__Q24Game22FSMStateFPQ24Game4Piki = .text:0x8014ABF4; // type:function size:0x4 scope:weak align:4 +__sinit_piki_cpp = .text:0x8014ABF8; // type:function size:0x170 scope:local align:4 +@4@__dt__Q23efx7TPkMoeAFv = .text:0x8014AD68; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TPkBlackDownFv = .text:0x8014AD70; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game4PikiFRCQ28SysShape8KeyEvent = .text:0x8014AD78; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game15BaseGameSectionFP7JKRHeap = .text:0x8014AD80; // type:function size:0x21C scope:global align:4 +__dt__11WipeInFaderFv = .text:0x8014AF9C; // type:function size:0x70 scope:weak align:4 +__dt__12WipeOutFaderFv = .text:0x8014B00C; // type:function size:0x70 scope:weak align:4 +__dt__8WipeBaseFv = .text:0x8014B07C; // type:function size:0x60 scope:weak align:4 +useSpecificFBTexture__Q24Game15BaseGameSectionFP10JUTTexture = .text:0x8014B0DC; // type:function size:0x74 scope:global align:4 +restoreFBTexture__Q24Game15BaseGameSectionFv = .text:0x8014B150; // type:function size:0x6C scope:global align:4 +__dt__Q24Game15BaseGameSectionFv = .text:0x8014B1BC; // type:function size:0x114 scope:global align:4 +loadSync__Q24Game15BaseGameSectionFP9IDelegateb = .text:0x8014B2D0; // type:function size:0x50 scope:global align:4 +waitSyncLoad__Q24Game15BaseGameSectionFb = .text:0x8014B320; // type:function size:0x120 scope:global align:4 +dvdloadGameSystem__Q24Game15BaseGameSectionFv = .text:0x8014B440; // type:function size:0x50 scope:global align:4 +init__Q24Game15BaseGameSectionFv = .text:0x8014B490; // type:function size:0x390 scope:global align:4 +onInit__Q24Game15BaseGameSectionFv = .text:0x8014B820; // type:function size:0x4 scope:weak align:4 +drawInit__Q24Game15BaseGameSectionFR8GraphicsQ27Section13EDrawInitMode = .text:0x8014B824; // type:function size:0x34 scope:global align:4 +section_fadeout__Q24Game15BaseGameSectionFv = .text:0x8014B858; // type:function size:0x4 scope:weak align:4 +doUpdate__Q24Game15BaseGameSectionFv = .text:0x8014B85C; // type:function size:0x3A8 scope:global align:4 +onUpdate__Q24Game15BaseGameSectionFv = .text:0x8014BC04; // type:function size:0x4 scope:weak align:4 +doDraw__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014BC08; // type:function size:0x170 scope:global align:4 +pre2dDraw__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014BD78; // type:function size:0x4 scope:weak align:4 +movieDone__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl = .text:0x8014BD7C; // type:function size:0x78 scope:global align:4 +onMovieDone__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl = .text:0x8014BDF4; // type:function size:0x4 scope:weak align:4 +onMovieCommand__Q24Game15BaseGameSectionFi = .text:0x8014BDF8; // type:function size:0x8C scope:global align:4 +initJ3D__Q24Game15BaseGameSectionFv = .text:0x8014BE84; // type:function size:0x450 scope:global align:4 +initResources__Q24Game15BaseGameSectionFv = .text:0x8014C2D4; // type:function size:0x34 scope:global align:4 +initViewports__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014C308; // type:function size:0x1E4 scope:global align:4 +__dt__12LookAtCameraFv = .text:0x8014C4EC; // type:function size:0xC0 scope:weak align:4 +initGenerators__Q24Game15BaseGameSectionFv = .text:0x8014C5AC; // type:function size:0x1120 scope:global align:4 +advanceDayCount__Q24Game15BaseGameSectionFv = .text:0x8014D6CC; // type:function size:0xA4 scope:global align:4 +saveToGeneratorCache__Q24Game15BaseGameSectionFPQ24Game10CourseInfo = .text:0x8014D770; // type:function size:0xD4 scope:global align:4 +pmTogglePlayer__Q24Game15BaseGameSectionFv = .text:0x8014D844; // type:function size:0xAC scope:global align:4 +onTogglePlayer__Q24Game15BaseGameSectionFv = .text:0x8014D8F0; // type:function size:0x4 scope:weak align:4 +onPlayerJoin__Q24Game15BaseGameSectionFv = .text:0x8014D8F4; // type:function size:0x4 scope:weak align:4 +setPlayerMode__Q24Game15BaseGameSectionFi = .text:0x8014D8F8; // type:function size:0x2B8 scope:global align:4 +split2__8SplitterFf = .text:0x8014DBB0; // type:function size:0x4 scope:weak align:4 +onCameraBlendFinished__Q24Game15BaseGameSectionFPQ24Game9CameraArg = .text:0x8014DBB4; // type:function size:0x14C scope:global align:4 +setFixNearFar__Q24Game15BaseGameSectionFbff = .text:0x8014DD00; // type:function size:0x68 scope:global align:4 +setCamController__Q24Game15BaseGameSectionFv = .text:0x8014DD68; // type:function size:0x210 scope:global align:4 +on_setCamController__Q24Game15BaseGameSectionFi = .text:0x8014DF78; // type:function size:0x4 scope:weak align:4 +setDefaultPSSceneInfo__Q24Game15BaseGameSectionFRQ26PSGame9SceneInfo = .text:0x8014DF7C; // type:function size:0x184 scope:global align:4 +getSoundMatrixPtr__6CameraFv = .text:0x8014E100; // type:function size:0x8 scope:weak align:4 +getSoundPositionPtr__6CameraFv = .text:0x8014E108; // type:function size:0x8 scope:weak align:4 +prepareHoleIn__Q24Game15BaseGameSectionFR10Vector3b = .text:0x8014E110; // type:function size:0x68C scope:global align:4 +prepareFountainOn__Q24Game15BaseGameSectionFR10Vector3 = .text:0x8014E79C; // type:function size:0x714 scope:global align:4 +initLights__Q24Game15BaseGameSectionFv = .text:0x8014EEB0; // type:function size:0x74 scope:global align:4 +draw3D__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014EF24; // type:function size:0x20 scope:global align:4 +drawParticle__Q24Game15BaseGameSectionFR8Graphicsi = .text:0x8014EF44; // type:function size:0x1D4 scope:global align:4 +draw_Ogawa2D__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014F118; // type:function size:0xA0 scope:global align:4 +test_draw_treasure_detector__Q24Game15BaseGameSectionFv = .text:0x8014F1B8; // type:function size:0x4 scope:global align:4 +draw2D__Q24Game15BaseGameSectionFR8Graphics = .text:0x8014F1BC; // type:function size:0x1BC scope:global align:4 +directDraw__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014F378; // type:function size:0xB8 scope:global align:4 +directDrawPost__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014F430; // type:function size:0x78 scope:global align:4 +j3dSetView__Q24Game15BaseGameSectionFP8Viewportb = .text:0x8014F4A8; // type:function size:0x54 scope:global align:4 +doSimulation__Q24Game15BaseGameSectionFf = .text:0x8014F4FC; // type:function size:0x30 scope:global align:4 +doSimpleDraw__Q24Game15BaseGameSectionFP8Viewport = .text:0x8014F52C; // type:function size:0x30 scope:global align:4 +doAnimation__Q24Game15BaseGameSectionFv = .text:0x8014F55C; // type:function size:0x1D8 scope:global align:4 +changeGeneratorCursor__Q24Game15BaseGameSectionFR10Vector3 = .text:0x8014F734; // type:function size:0x4C scope:global align:4 +doEntry__Q24Game15BaseGameSectionFv = .text:0x8014F780; // type:function size:0xC8 scope:global align:4 +doSetView__Q24Game15BaseGameSectionFi = .text:0x8014F848; // type:function size:0x100 scope:global align:4 +doViewCalc__Q24Game15BaseGameSectionFv = .text:0x8014F948; // type:function size:0xC8 scope:global align:4 +updateBlendCamera__Q24Game15BaseGameSectionFv = .text:0x8014FA10; // type:function size:0x174 scope:global align:4 +setSplitter__Q24Game15BaseGameSectionFb = .text:0x8014FB84; // type:function size:0x6C scope:global align:4 +updateSplitter__Q24Game15BaseGameSectionFv = .text:0x8014FBF0; // type:function size:0x134 scope:global align:4 +doDirectDrawPost__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014FD24; // type:function size:0x58 scope:global align:4 +doDirectDraw__Q24Game15BaseGameSectionFR8GraphicsP8Viewport = .text:0x8014FD7C; // type:function size:0x4 scope:global align:4 +onStartHeap__Q24Game15BaseGameSectionFv = .text:0x8014FD80; // type:function size:0x4 scope:weak align:4 +clearHeap__Q24Game15BaseGameSectionFv = .text:0x8014FD84; // type:function size:0x2A8 scope:global align:4 +__dt__10ControllerFv = .text:0x8015002C; // type:function size:0x60 scope:weak align:4 +onClearHeap__Q24Game15BaseGameSectionFv = .text:0x8015008C; // type:function size:0x4 scope:weak align:4 +startFadeout__Q24Game15BaseGameSectionFf = .text:0x80150090; // type:function size:0x2C scope:global align:4 +startFadein__Q24Game15BaseGameSectionFf = .text:0x801500BC; // type:function size:0x2C scope:global align:4 +startFadeoutin__Q24Game15BaseGameSectionFf = .text:0x801500E8; // type:function size:0x2C scope:global align:4 +startFadeblack__Q24Game15BaseGameSectionFv = .text:0x80150114; // type:function size:0x3C scope:global align:4 +startFadewhite__Q24Game15BaseGameSectionFv = .text:0x80150150; // type:function size:0x3C scope:global align:4 +setupFixMemory__Q24Game15BaseGameSectionFv = .text:0x8015018C; // type:function size:0x1C0 scope:global align:4 +setupFixMemory_dvdload__Q24Game15BaseGameSectionFv = .text:0x8015034C; // type:function size:0x334 scope:global align:4 +__dt__15ModelEffectDataFv = .text:0x80150680; // type:function size:0x60 scope:weak align:4 +enableAllocHalt__Q24Game15BaseGameSectionFv = .text:0x801506E0; // type:function size:0x8 scope:global align:4 +disableAllocHalt__Q24Game15BaseGameSectionFv = .text:0x801506E8; // type:function size:0x8 scope:global align:4 +setupFloatMemory__Q24Game15BaseGameSectionFv = .text:0x801506F0; // type:function size:0xCC0 scope:global align:4 +onSetSoundScene__Q24Game15BaseGameSectionFv = .text:0x801513B0; // type:function size:0x4 scope:weak align:4 +getCurrFloor__Q24Game15BaseGameSectionFv = .text:0x801513B4; // type:function size:0x8 scope:weak align:4 +challengeDisablePelplant__Q24Game15BaseGameSectionFv = .text:0x801513BC; // type:function size:0x8 scope:weak align:4 +getVsEditNumber__Q24Game15BaseGameSectionFv = .text:0x801513C4; // type:function size:0x8 scope:weak align:4 +getEditorFilename__Q24Game15BaseGameSectionFv = .text:0x801513CC; // type:function size:0x8 scope:weak align:4 +getCaveFilename__Q24Game15BaseGameSectionFv = .text:0x801513D4; // type:function size:0xC scope:weak align:4 +onSetupFloatMemory__Q24Game15BaseGameSectionFv = .text:0x801513E0; // type:function size:0x4 scope:weak align:4 +isDevelopSection__Q24Game15BaseGameSectionFv = .text:0x801513E4; // type:function size:0x8 scope:weak align:4 +__dt__Q28PSSystem28SingletonBaseFv = .text:0x801513EC; // type:function size:0x50 scope:weak align:4 +setDrawBuffer__Q24Game15BaseGameSectionFi = .text:0x8015143C; // type:function size:0xA4 scope:global align:4 +postSetupFloatMemory__Q24Game15BaseGameSectionFv = .text:0x801514E0; // type:function size:0x30 scope:global align:4 +setupJUTTextures__Q24Game6MapMgrFv = .text:0x80151510; // type:function size:0x4 scope:weak align:4 +createFallPikminSound__Q24Game15BaseGameSectionFv = .text:0x80151514; // type:function size:0x200 scope:global align:4 +captureRadarmap__Q24Game15BaseGameSectionFR8Graphics = .text:0x80151714; // type:function size:0x4 scope:global align:4 +satisfy__27PikiCond_ExceptChappyPikminFPQ24Game4Piki = .text:0x80151718; // type:function size:0x18 scope:weak align:4 +__dt__17Container<5Plane>Fv = .text:0x80151730; // type:function size:0x70 scope:weak align:4 +__dt__22ArrayContainer<5Plane>Fv = .text:0x801517A0; // type:function size:0x80 scope:weak align:4 +readObject__9CullPlaneFR6StreamR5Plane = .text:0x80151820; // type:function size:0x4 scope:weak align:4 +writeObject__9CullPlaneFR6StreamR5Plane = .text:0x80151824; // type:function size:0x4 scope:weak align:4 +__dt__9CullPlaneFv = .text:0x80151828; // type:function size:0x90 scope:weak align:4 +forceFinish__Q24Game15BaseGameSectionFv = .text:0x801518B8; // type:function size:0x10 scope:weak align:4 +addChallengeScore__Q24Game15BaseGameSectionFi = .text:0x801518C8; // type:function size:0x4 scope:weak align:4 +startMainBgm__Q24Game15BaseGameSectionFv = .text:0x801518CC; // type:function size:0x4 scope:weak align:4 +goNextFloor__Q24Game15BaseGameSectionFPQ34Game8ItemHole4Item = .text:0x801518D0; // type:function size:0x4 scope:weak align:4 +goCave__Q24Game15BaseGameSectionFPQ34Game8ItemCave4Item = .text:0x801518D4; // type:function size:0x4 scope:weak align:4 +goMainMap__Q24Game15BaseGameSectionFPQ34Game15ItemBigFountain4Item = .text:0x801518D8; // type:function size:0x4 scope:weak align:4 +getCaveID__Q24Game15BaseGameSectionFv = .text:0x801518DC; // type:function size:0xC scope:weak align:4 +getCurrentCourseInfo__Q24Game15BaseGameSectionFv = .text:0x801518E8; // type:function size:0x8 scope:weak align:4 +openContainerWindow__Q24Game15BaseGameSectionFv = .text:0x801518F0; // type:function size:0x8 scope:weak align:4 +closeContainerWindow__Q24Game15BaseGameSectionFv = .text:0x801518F8; // type:function size:0x4 scope:weak align:4 +playMovie_firstexperience__Q24Game15BaseGameSectionFiPQ24Game8Creature = .text:0x801518FC; // type:function size:0x4 scope:weak align:4 +playMovie_bootup__Q24Game15BaseGameSectionFPQ24Game5Onyon = .text:0x80151900; // type:function size:0x4 scope:weak align:4 +playMovie_helloPikmin__Q24Game15BaseGameSectionFPQ24Game4Piki = .text:0x80151904; // type:function size:0x4 scope:weak align:4 +disableTimer__Q24Game15BaseGameSectionFUl = .text:0x80151908; // type:function size:0x4 scope:weak align:4 +onMovieStart__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl = .text:0x8015190C; // type:function size:0x4 scope:weak align:4 +gmOrimaDown__Q24Game15BaseGameSectionFi = .text:0x80151910; // type:function size:0x4 scope:weak align:4 +gmPikminZero__Q24Game15BaseGameSectionFv = .text:0x80151914; // type:function size:0x4 scope:weak align:4 +drawInit__7SectionFR8Graphics = .text:0x80151918; // type:function size:0x4 scope:weak align:4 +doExit__7SectionFv = .text:0x8015191C; // type:function size:0x4 scope:weak align:4 +forceReset__7SectionFv = .text:0x80151920; // type:function size:0x8 scope:weak align:4 +getCurrentSection__7SectionFv = .text:0x80151928; // type:function size:0x4 scope:weak align:4 +doLoadingStart__7SectionFv = .text:0x8015192C; // type:function size:0x4 scope:weak align:4 +doLoading__7SectionFv = .text:0x80151930; // type:function size:0x8 scope:weak align:4 +isFinishable__7SectionFv = .text:0x80151938; // type:function size:0x8 scope:weak align:4 +writeObject__22ArrayContainer<5Plane>FR6StreamR5Plane = .text:0x80151940; // type:function size:0x4 scope:weak align:4 +readObject__22ArrayContainer<5Plane>FR6StreamR5Plane = .text:0x80151944; // type:function size:0x4 scope:weak align:4 +write__22ArrayContainer<5Plane>FR6Stream = .text:0x80151948; // type:function size:0xD4 scope:weak align:4 +alloc__22ArrayContainer<5Plane>Fi = .text:0x80151A1C; // type:function size:0x68 scope:weak align:4 +setArray__22ArrayContainer<5Plane>FP5Planei = .text:0x80151A84; // type:function size:0x10 scope:weak align:4 +get__22ArrayContainer<5Plane>FPv = .text:0x80151A94; // type:function size:0x10 scope:weak align:4 +getNext__22ArrayContainer<5Plane>FPv = .text:0x80151AA4; // type:function size:0x8 scope:weak align:4 +getStart__22ArrayContainer<5Plane>Fv = .text:0x80151AAC; // type:function size:0x8 scope:weak align:4 +getEnd__22ArrayContainer<5Plane>Fv = .text:0x80151AB4; // type:function size:0x8 scope:weak align:4 +getAt__22ArrayContainer<5Plane>Fi = .text:0x80151ABC; // type:function size:0x10 scope:weak align:4 +getTo__22ArrayContainer<5Plane>Fv = .text:0x80151ACC; // type:function size:0x8 scope:weak align:4 +getObject__17Container<5Plane>FPv = .text:0x80151AD4; // type:function size:0x2C scope:weak align:4 +getAt__17Container<5Plane>Fi = .text:0x80151B00; // type:function size:0x8 scope:weak align:4 +getTo__17Container<5Plane>Fv = .text:0x80151B08; // type:function size:0x8 scope:weak align:4 +invoke__63Delegate3FPQ24Game11MovieConfigUlUl = .text:0x80151B10; // type:function size:0x30 scope:weak align:4 +invoke__49Delegate1>FR10Vector3 = .text:0x80151B40; // type:function size:0x30 scope:weak align:4 +invoke__54Delegate1FPQ24Game9CameraArg = .text:0x80151B70; // type:function size:0x30 scope:weak align:4 +invoke__45Delegate1>FR7Rect = .text:0x80151BA0; // type:function size:0x30 scope:weak align:4 +invoke__34DelegateFv = .text:0x80151BD0; // type:function size:0x30 scope:weak align:4 +addOne__22ArrayContainer<5Plane>FR5Plane = .text:0x80151C00; // type:function size:0x48 scope:weak align:4 +__ct__5PlaneFv = .text:0x80151C48; // type:function size:0x1C scope:weak align:4 +read__22ArrayContainer<5Plane>FR6Stream = .text:0x80151C64; // type:function size:0xB0 scope:weak align:4 +alloc__27MonoObjectMgrFi = .text:0x80151D14; // type:function size:0x188 scope:weak align:4 +onAlloc__27MonoObjectMgrFv = .text:0x80151E9C; // type:function size:0x4 scope:weak align:4 +alloc__27MonoObjectMgrFi = .text:0x80151EA0; // type:function size:0x188 scope:weak align:4 +onAlloc__27MonoObjectMgrFv = .text:0x80152028; // type:function size:0x4 scope:weak align:4 +__sinit_baseGameSection_cpp = .text:0x8015202C; // type:function size:0x28 scope:local align:4 +__dt__Q24Game17SingleGameSectionFv = .text:0x80152054; // type:function size:0x84 scope:global align:4 +startMainBgm__Q24Game17SingleGameSectionFv = .text:0x801520D8; // type:function size:0x184 scope:global align:4 +isGameScene__Q23PSM9SceneBaseFv = .text:0x8015225C; // type:function size:0x8 scope:weak align:4 +init__Q34Game10SingleGame3FSMFPQ24Game17SingleGameSection = .text:0x80152264; // type:function size:0x2A0 scope:global align:4 +draw__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80152504; // type:function size:0x4 scope:weak align:4 +transit__Q34Game10SingleGame3FSMFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x80152508; // type:function size:0x20 scope:global align:4 +getState__Q34Game10SingleGame3FSMFi = .text:0x80152528; // type:function size:0x40 scope:global align:4 +accountEarnings__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game16PelletCropMemoryb = .text:0x80152568; // type:function size:0x200 scope:global align:4 +init__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80152768; // type:function size:0x160 scope:global align:4 +exec__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSection = .text:0x801528C8; // type:function size:0xB4 scope:global align:4 +transit__Q24Game36FSMStateFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x8015297C; // type:function size:0x30 scope:weak align:4 +draw__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x801529AC; // type:function size:0x3C scope:global align:4 +cleanup__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSection = .text:0x801529E8; // type:function size:0x34 scope:global align:4 +__ct__Q24Game17SingleGameSectionFP7JKRHeap = .text:0x80152A1C; // type:function size:0xE0 scope:global align:4 +section_fadeout__Q24Game17SingleGameSectionFv = .text:0x80152AFC; // type:function size:0x34 scope:global align:4 +on_section_fadeout__Q34Game10SingleGame5StateFPQ24Game17SingleGameSection = .text:0x80152B30; // type:function size:0x4 scope:weak align:4 +flow_goto_title__Q24Game17SingleGameSectionFv = .text:0x80152B34; // type:function size:0xC scope:global align:4 +onInit__Q24Game17SingleGameSectionFv = .text:0x80152B40; // type:function size:0x188 scope:global align:4 +start__Q24Game40StateMachineFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x80152CC8; // type:function size:0x34 scope:weak align:4 +doUpdate__Q24Game17SingleGameSectionFv = .text:0x80152CFC; // type:function size:0xEC scope:global align:4 +on_demo_timer__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionUl = .text:0x80152DE8; // type:function size:0x4 scope:weak align:4 +doDraw__Q24Game17SingleGameSectionFR8Graphics = .text:0x80152DEC; // type:function size:0x50 scope:global align:4 +on_setCamController__Q24Game17SingleGameSectionFi = .text:0x80152E3C; // type:function size:0x5C scope:global align:4 +onSetSoundScene__Q24Game17SingleGameSectionFv = .text:0x80152E98; // type:function size:0x260 scope:global align:4 +getCaveID__Q24Game17SingleGameSectionFv = .text:0x801530F8; // type:function size:0x8 scope:weak align:4 +onSetupFloatMemory__Q24Game17SingleGameSectionFv = .text:0x80153100; // type:function size:0x2A0 scope:global align:4 +onClearHeap__Q24Game17SingleGameSectionFv = .text:0x801533A0; // type:function size:0x50 scope:global align:4 +onStartHeap__Q24Game17SingleGameSectionFv = .text:0x801533F0; // type:function size:0xC scope:global align:4 +gmOrimaDown__Q24Game17SingleGameSectionFi = .text:0x801533FC; // type:function size:0x44 scope:global align:4 +onOrimaDown__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectioni = .text:0x80153440; // type:function size:0x4 scope:weak align:4 +gmPikminZero__Q24Game17SingleGameSectionFv = .text:0x80153444; // type:function size:0x4 scope:global align:4 +enableTimer__Q24Game17SingleGameSectionFfUl = .text:0x80153448; // type:function size:0x20 scope:global align:4 +disableTimer__Q24Game17SingleGameSectionFUl = .text:0x80153468; // type:function size:0x80 scope:global align:4 +onMovieStart__Q24Game17SingleGameSectionFPQ24Game11MovieConfigUlUl = .text:0x801534E8; // type:function size:0x54 scope:global align:4 +onMovieStart__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8015353C; // type:function size:0x4 scope:weak align:4 +onMovieDone__Q24Game17SingleGameSectionFPQ24Game11MovieConfigUlUl = .text:0x80153540; // type:function size:0x64 scope:global align:4 +onMovieDone__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x801535A4; // type:function size:0x4 scope:weak align:4 +onMovieCommand__Q24Game17SingleGameSectionFi = .text:0x801535A8; // type:function size:0x5C scope:global align:4 +onMovieCommand__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectioni = .text:0x80153604; // type:function size:0x4 scope:weak align:4 +playMovie_bootup__Q24Game17SingleGameSectionFPQ24Game5Onyon = .text:0x80153608; // type:function size:0x240 scope:global align:4 +getFaceDir__Q24Game5OnyonFv = .text:0x80153848; // type:function size:0x8 scope:weak align:4 +playMovie_helloPikmin__Q24Game17SingleGameSectionFPQ24Game4Piki = .text:0x80153850; // type:function size:0x454 scope:global align:4 +playMovie_firstexperience__Q24Game17SingleGameSectionFiPQ24Game8Creature = .text:0x80153CA4; // type:function size:0x4 scope:global align:4 +saveMainMapSituation__Q24Game17SingleGameSectionFb = .text:0x80153CA8; // type:function size:0x2A0 scope:global align:4 +loadMainMapSituation__Q24Game17SingleGameSectionFv = .text:0x80153F48; // type:function size:0x30 scope:global align:4 +clearCaveMenus__Q24Game17SingleGameSectionFv = .text:0x80153F78; // type:function size:0x18 scope:global align:4 +openCaveInMenu__Q24Game17SingleGameSectionFPQ34Game8ItemCave4Itemi = .text:0x80153F90; // type:function size:0x418 scope:global align:4 +getCurrentCourseInfo__Q24Game17SingleGameSectionFv = .text:0x801543A8; // type:function size:0x8 scope:weak align:4 +openCaveMoreMenu__Q24Game17SingleGameSectionFPQ34Game8ItemHole4ItemP10Controller = .text:0x801543B0; // type:function size:0x19C scope:global align:4 +saveCaveMore__Q24Game17SingleGameSectionFv = .text:0x8015454C; // type:function size:0x2C scope:global align:4 +openKanketuMenu__Q24Game17SingleGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller = .text:0x80154578; // type:function size:0x184 scope:global align:4 +updateCaveMenus__Q24Game17SingleGameSectionFv = .text:0x801546FC; // type:function size:0x300 scope:global align:4 +goNextFloor__Q24Game17SingleGameSectionFPQ34Game8ItemHole4Item = .text:0x801549FC; // type:function size:0x40 scope:global align:4 +onNextFloor__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game8ItemHole4Item = .text:0x80154A3C; // type:function size:0x4 scope:weak align:4 +goCave__Q24Game17SingleGameSectionFPQ34Game8ItemCave4Item = .text:0x80154A40; // type:function size:0x74 scope:global align:4 +onHoleIn__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game8ItemCave4Item = .text:0x80154AB4; // type:function size:0x4 scope:weak align:4 +goMainMap__Q24Game17SingleGameSectionFPQ34Game15ItemBigFountain4Item = .text:0x80154AB8; // type:function size:0x48 scope:global align:4 +onFountainReturn__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game15ItemBigFountain4Item = .text:0x80154B00; // type:function size:0x4 scope:weak align:4 +setupMainMapGames__Q24Game17SingleGameSectionFv = .text:0x80154B04; // type:function size:0x20 scope:global align:4 +setupCaveGames__Q24Game17SingleGameSectionFv = .text:0x80154B24; // type:function size:0x20 scope:global align:4 +createFallPikmins__Q24Game17SingleGameSectionFv = .text:0x80154B44; // type:function size:0x474 scope:global align:4 +setDispMemberSMenu__Q24Game17SingleGameSectionFRQ32og6Screen18DispMemberSMenuAll = .text:0x80154FB8; // type:function size:0x504 scope:global align:4 +__cl__Q34Game8GameStat11PikiCounterFi = .text:0x801554BC; // type:function size:0x10 scope:weak align:4 +updateMainMapScreen__Q24Game17SingleGameSectionFv = .text:0x801554CC; // type:function size:0x58C scope:global align:4 +drawMainMapScreen__Q24Game17SingleGameSectionFv = .text:0x80155A58; // type:function size:0x4 scope:global align:4 +updateCaveScreen__Q24Game17SingleGameSectionFv = .text:0x80155A5C; // type:function size:0x4D8 scope:global align:4 +getCurrFloor__Q24Game17SingleGameSectionFv = .text:0x80155F34; // type:function size:0x8 scope:weak align:4 +drawCaveScreen__Q24Game17SingleGameSectionFv = .text:0x80155F3C; // type:function size:0x4 scope:global align:4 +newCaveOtakaraEarningsAndDrops__Q24Game17SingleGameSectionFv = .text:0x80155F40; // type:function size:0x8C scope:global align:4 +clearCaveOtakaraEarningsAndDrops__Q24Game17SingleGameSectionFv = .text:0x80155FCC; // type:function size:0x50 scope:global align:4 +getSize__Q32og6Screen14DispMemberCaveFv = .text:0x8015601C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen14DispMemberCaveFv = .text:0x80156024; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen14DispMemberCaveFv = .text:0x80156030; // type:function size:0x10 scope:weak align:4 +doSetSubMemberAll__Q32og6Screen14DispMemberBaseFv = .text:0x80156040; // type:function size:0x4 scope:weak align:4 +getSize__Q32og6Screen17DispMemberHurryUpFv = .text:0x80156044; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberHurryUpFv = .text:0x8015604C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberHurryUpFv = .text:0x80156058; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen21DispMemberDayEndCountFv = .text:0x8015606C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberDayEndCountFv = .text:0x80156074; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberDayEndCountFv = .text:0x80156080; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen16DispMemberGroundFv = .text:0x80156094; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen16DispMemberGroundFv = .text:0x8015609C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen16DispMemberGroundFv = .text:0x801560A8; // type:function size:0x10 scope:weak align:4 +getName__Q24Game11PikiInitArgFv = .text:0x801560B8; // type:function size:0xC scope:weak align:4 +getSize__Q32og6Screen21DispMemberKanketuMenuFv = .text:0x801560C4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberKanketuMenuFv = .text:0x801560CC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberKanketuMenuFv = .text:0x801560D8; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberCaveMoreFv = .text:0x801560EC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberCaveMoreFv = .text:0x801560F4; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberCaveMoreFv = .text:0x80156100; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen17DispMemberAnaDemoFv = .text:0x80156114; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberAnaDemoFv = .text:0x8015611C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberAnaDemoFv = .text:0x80156128; // type:function size:0x14 scope:weak align:4 +getName__Q24Game11PikiKillArgFv = .text:0x8015613C; // type:function size:0xC scope:weak align:4 +__dt__Q23efx11TLastMomijiFv = .text:0x80156148; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TForestSakuraFv = .text:0x801561E4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TTutorialSnowFv = .text:0x80156280; // type:function size:0x9C scope:weak align:4 +isCaveFloor__Q26PSGame13CaveFloorInfoFv = .text:0x8015631C; // type:function size:0x8 scope:weak align:4 +isBossFloor__Q26PSGame13CaveFloorInfoFv = .text:0x80156324; // type:function size:0x14 scope:weak align:4 +isRelaxFloor__Q26PSGame13CaveFloorInfoFv = .text:0x80156338; // type:function size:0x14 scope:weak align:4 +isDevelopSection__Q24Game17SingleGameSectionFv = .text:0x8015634C; // type:function size:0x8 scope:weak align:4 +getTimerType__Q24Game17SingleGameSectionFv = .text:0x80156354; // type:function size:0x8 scope:weak align:4 +getCaveFilename__Q24Game17SingleGameSectionFv = .text:0x8015635C; // type:function size:0x8 scope:weak align:4 +init__Q24Game36FSMStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80156364; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x80156368; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x8015636C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x80156370; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ24Game17SingleGameSection = .text:0x80156374; // type:function size:0x4 scope:weak align:4 +init__Q24Game40StateMachineFPQ24Game17SingleGameSection = .text:0x80156378; // type:function size:0x4 scope:weak align:4 +exec__Q24Game40StateMachineFPQ24Game17SingleGameSection = .text:0x8015637C; // type:function size:0x38 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x801563B4; // type:function size:0x64 scope:weak align:4 +invoke__36DelegateFv = .text:0x80156418; // type:function size:0x30 scope:weak align:4 +transit__Q24Game40StateMachineFPQ24Game17SingleGameSectioniPQ24Game8StateArg = .text:0x80156448; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x801564E4; // type:function size:0x84 scope:weak align:4 +__sinit_singleGameSection_cpp = .text:0x80156568; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx13TTutorialSnowFv = .text:0x80156590; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TForestSakuraFv = .text:0x80156598; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TLastMomijiFv = .text:0x801565A0; // type:function size:0x8 scope:weak align:4 +mapSearch__Q24Game11CellPyramidFRQ23Sys6SphereP32IDelegate1 = .text:0x801565A8; // type:function size:0xC4 scope:global align:4 +exitCell__Q24Game10CellObjectFv = .text:0x8015666C; // type:function size:0xB4 scope:global align:4 +__ct__Q24Game4CellFv = .text:0x80156720; // type:function size:0x3C scope:global align:4 +mapSearch__Q24Game4CellFP32IDelegate1Ul = .text:0x8015675C; // type:function size:0xC4 scope:global align:4 +mapSearchUp__Q24Game4CellFP32IDelegate1Ul = .text:0x80156820; // type:function size:0x238 scope:global align:4 +mapSearchDown__Q24Game4CellFP32IDelegate1Ul = .text:0x80156A58; // type:function size:0x280 scope:global align:4 +resolveCollision__Q24Game4CellFv = .text:0x80156CD8; // type:function size:0x4C scope:global align:4 +initFrame__Q24Game11CellPyramidFv = .text:0x80156D24; // type:function size:0x4 scope:global align:4 +updateCollisionBuffer__Q24Game10CellObjectFPQ24Game10CellObject = .text:0x80156D28; // type:function size:0xD0 scope:global align:4 +__ct__Q24Game15CollisionBufferFv = .text:0x80156DF8; // type:function size:0x18 scope:global align:4 +alloc__Q24Game15CollisionBufferFPQ24Game10CellObjecti = .text:0x80156E10; // type:function size:0x6C scope:global align:4 +__ct__Q24Game8CollNodeFv = .text:0x80156E7C; // type:function size:0x14 scope:weak align:4 +insert__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x80156E90; // type:function size:0xB8 scope:global align:4 +pikiInsertPiki__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x80156F48; // type:function size:0x128 scope:global align:4 +pikiInsertOther__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x80157070; // type:function size:0x128 scope:global align:4 +insertSort__Q24Game15CollisionBufferFPQ24Game10CellObjectf = .text:0x80157198; // type:function size:0xF8 scope:global align:4 +findIndex__Q24Game15CollisionBufferFPQ24Game10CellObject = .text:0x80157290; // type:function size:0x44 scope:global align:4 +resolveCollision__Q24Game11CellPyramidFv = .text:0x801572D4; // type:function size:0x244 scope:global align:4 +rec_resolveColl__Q24Game4CellFv = .text:0x80157518; // type:function size:0x294 scope:global align:4 +__cl__7ParmFv = .text:0x801577AC; // type:function size:0x8 scope:weak align:4 +getInstance__12CellMgrParmsFv = .text:0x801577B4; // type:function size:0x8 scope:weak align:4 +clearAllCollBuffer__Q24Game11CellPyramidFv = .text:0x801577BC; // type:function size:0xDC scope:global align:4 +exit__Q24Game4CellFPQ24Game7CellLegb = .text:0x80157898; // type:function size:0x158 scope:global align:4 +entry__Q24Game4CellFPQ24Game7CellLegb = .text:0x801579F0; // type:function size:0x2EC scope:global align:4 +__cl__Q24Game9CellLayerFii = .text:0x80157CDC; // type:function size:0x48 scope:global align:4 +pileup__Q24Game9CellLayerFRQ24Game9CellLayer = .text:0x80157D24; // type:function size:0x578 scope:global align:4 +__ct__Q24Game11CellPyramidFv = .text:0x8015829C; // type:function size:0x3C scope:global align:4 +clear__Q24Game11CellPyramidFv = .text:0x801582D8; // type:function size:0x98 scope:global align:4 +calcExtent__Q24Game11CellPyramidFRQ23Sys6SphereRiR7Rect = .text:0x80158370; // type:function size:0x190 scope:global align:4 +entry__Q24Game11CellPyramidFPQ24Game10CellObjectRQ23Sys6Sphere = .text:0x80158500; // type:function size:0x34 scope:global align:4 +entry__Q24Game11CellPyramidFPQ24Game10CellObjectRQ23Sys6SphereRiR7Rect = .text:0x80158534; // type:function size:0x4B8 scope:global align:4 +create__Q24Game11CellPyramidFR10BoundBox2df = .text:0x801589EC; // type:function size:0x2EC scope:global align:4 +__ct__Q24Game9CellLayerFv = .text:0x80158CD8; // type:function size:0x3C scope:weak align:4 +getPikiCount__Q24Game11CellPyramidFiR7Rect = .text:0x80158D14; // type:function size:0x134 scope:global align:4 +resolveCollision_2__Q24Game4CellFv = .text:0x80158E48; // type:function size:0xF8 scope:global align:4 +resolveCollision_1__Q24Game4CellFv = .text:0x80158F40; // type:function size:0x100 scope:global align:4 +resolveCollision_3__Q24Game4CellFv = .text:0x80159040; // type:function size:0x1E0 scope:global align:4 +invoke__13SweepCallbackFPQ210SweepPrune6ObjectPQ210SweepPrune6Object = .text:0x80159220; // type:function size:0x4C scope:weak align:4 +__ct__Q24Game7NaviMgrFv = .text:0x8015926C; // type:function size:0xCC scope:global align:4 +__ct__Q24Game9NaviParmsFv = .text:0x80159338; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game9NaviParms5ParmsFv = .text:0x80159398; // type:function size:0xF10 scope:weak align:4 +__ct__Q24Game13FakePikiParmsFv = .text:0x8015A2A8; // type:function size:0x1A4 scope:weak align:4 +__ct__Q34Game13FakePikiParms5ParmsFv = .text:0x8015A44C; // type:function size:0x2B4 scope:weak align:4 +__dt__27MonoObjectMgrFv = .text:0x8015A700; // type:function size:0xA0 scope:weak align:4 +__dt__Q24Game7NaviMgrFv = .text:0x8015A7A0; // type:function size:0x110 scope:global align:4 +createPSMDirectorUpdator__Q24Game7NaviMgrFv = .text:0x8015A8B0; // type:function size:0x78 scope:global align:4 +resetMgr__Q24Game7NaviMgrFv = .text:0x8015A928; // type:function size:0x5C scope:global align:4 +killAll__Q24Game7NaviMgrFv = .text:0x8015A984; // type:function size:0x90 scope:global align:4 +setupNavi__Q24Game7NaviMgrFPQ24Game4Navi = .text:0x8015AA14; // type:function size:0xF0 scope:global align:4 +birth__Q24Game7NaviMgrFv = .text:0x8015AB04; // type:function size:0xFC scope:global align:4 +getActiveNavi__Q24Game7NaviMgrFv = .text:0x8015AC00; // type:function size:0x9C scope:global align:4 +loadResources__Q24Game7NaviMgrFv = .text:0x8015AC9C; // type:function size:0xBC scope:global align:4 +read__Q24Game9NaviParmsFR6Stream = .text:0x8015AD58; // type:function size:0x50 scope:weak align:4 +load__Q24Game7NaviMgrFv = .text:0x8015ADA8; // type:function size:0x264 scope:global align:4 +createModel__Q24Game7NaviMgrFi = .text:0x8015B00C; // type:function size:0x64 scope:global align:4 +loadResources_float__Q24Game7NaviMgrFv = .text:0x8015B070; // type:function size:0xD4 scope:global align:4 +getAliveCount__Q24Game7NaviMgrFv = .text:0x8015B144; // type:function size:0x8C scope:global align:4 +clearDeadCount__Q24Game7NaviMgrFv = .text:0x8015B1D0; // type:function size:0x18 scope:global align:4 +informOrimaDead__Q24Game7NaviMgrFi = .text:0x8015B1E8; // type:function size:0x78 scope:global align:4 +getDeadOrima__Q24Game7NaviMgrFi = .text:0x8015B260; // type:function size:0x4C scope:global align:4 +getAliveOrima__Q24Game7NaviMgrFi = .text:0x8015B2AC; // type:function size:0xEC scope:global align:4 +setMovieDraw__Q24Game7NaviMgrFb = .text:0x8015B398; // type:function size:0xA8 scope:global align:4 +doAnimation__Q24Game7NaviMgrFv = .text:0x8015B440; // type:function size:0xE0 scope:global align:4 +doEntry__Q24Game7NaviMgrFv = .text:0x8015B520; // type:function size:0x168 scope:global align:4 +doSimulation__Q24Game7NaviMgrFf = .text:0x8015B688; // type:function size:0x378 scope:global align:4 +setupSoundViewerAndBas__Q24Game7NaviMgrFv = .text:0x8015BA00; // type:function size:0x4 scope:global align:4 +getMgrName__Q24Game7NaviMgrFv = .text:0x8015BA04; // type:function size:0x8 scope:weak align:4 +frozenable__Q24Game7NaviMgrFv = .text:0x8015BA0C; // type:function size:0x8 scope:weak align:4 +__dt__23ContainerFv = .text:0x8015BA14; // type:function size:0x70 scope:weak align:4 +__dt__23ObjectMgrFv = .text:0x8015BA84; // type:function size:0x88 scope:weak align:4 +read__Q24Game13FakePikiParmsFR6Stream = .text:0x8015BB0C; // type:function size:0x44 scope:weak align:4 +birth__27MonoObjectMgrFv = .text:0x8015BB50; // type:function size:0x60 scope:weak align:4 +getNext__27MonoObjectMgrFPv = .text:0x8015BBB0; // type:function size:0x40 scope:weak align:4 +getStart__27MonoObjectMgrFv = .text:0x8015BBF0; // type:function size:0x30 scope:weak align:4 +getEnd__27MonoObjectMgrFv = .text:0x8015BC20; // type:function size:0x8 scope:weak align:4 +getTo__27MonoObjectMgrFv = .text:0x8015BC28; // type:function size:0x8 scope:weak align:4 +doAnimation__27MonoObjectMgrFv = .text:0x8015BC30; // type:function size:0x80 scope:weak align:4 +doEntry__27MonoObjectMgrFv = .text:0x8015BCB0; // type:function size:0x80 scope:weak align:4 +doSetView__27MonoObjectMgrFi = .text:0x8015BD30; // type:function size:0x90 scope:weak align:4 +doViewCalc__27MonoObjectMgrFv = .text:0x8015BDC0; // type:function size:0x80 scope:weak align:4 +doSimulation__27MonoObjectMgrFf = .text:0x8015BE40; // type:function size:0x90 scope:weak align:4 +doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x8015BED0; // type:function size:0x90 scope:weak align:4 +resetMgr__27MonoObjectMgrFv = .text:0x8015BF60; // type:function size:0x18 scope:weak align:4 +clearMgr__27MonoObjectMgrFv = .text:0x8015BF78; // type:function size:0x30 scope:weak align:4 +getEmptyIndex__27MonoObjectMgrFv = .text:0x8015BFA8; // type:function size:0x3C scope:weak align:4 +get__27MonoObjectMgrFPv = .text:0x8015BFE4; // type:function size:0x10 scope:weak align:4 +doAnimation__23ObjectMgrFv = .text:0x8015BFF4; // type:function size:0x1E4 scope:weak align:4 +doEntry__23ObjectMgrFv = .text:0x8015C1D8; // type:function size:0x1E4 scope:weak align:4 +doSetView__23ObjectMgrFi = .text:0x8015C3BC; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__23ObjectMgrFv = .text:0x8015C5B0; // type:function size:0x1E4 scope:weak align:4 +doSimulation__23ObjectMgrFf = .text:0x8015C794; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__23ObjectMgrFR8Graphics = .text:0x8015C988; // type:function size:0x1F4 scope:weak align:4 +getObject__23ContainerFPv = .text:0x8015CB7C; // type:function size:0x2C scope:weak align:4 +getAt__23ContainerFi = .text:0x8015CBA8; // type:function size:0x8 scope:weak align:4 +getTo__23ContainerFv = .text:0x8015CBB0; // type:function size:0x8 scope:weak align:4 +__ct__27MonoObjectMgrFv = .text:0x8015CBB8; // type:function size:0x9C scope:weak align:4 +@28@resetMgr__27MonoObjectMgrFv = .text:0x8015CC54; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27MonoObjectMgrFf = .text:0x8015CC5C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27MonoObjectMgrFv = .text:0x8015CC64; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27MonoObjectMgrFv = .text:0x8015CC6C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__23ObjectMgrFR8Graphics = .text:0x8015CC74; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__23ObjectMgrFf = .text:0x8015CC7C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__23ObjectMgrFv = .text:0x8015CC84; // type:function size:0x8 scope:weak align:4 +@28@doSetView__23ObjectMgrFi = .text:0x8015CC8C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__23ObjectMgrFv = .text:0x8015CC94; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__23ObjectMgrFv = .text:0x8015CC9C; // type:function size:0x8 scope:weak align:4 +@28@frozenable__Q24Game7NaviMgrFv = .text:0x8015CCA4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__Q24Game7NaviMgrFv = .text:0x8015CCAC; // type:function size:0x8 scope:weak align:4 +@28@loadResources__Q24Game7NaviMgrFv = .text:0x8015CCB4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x8015CCBC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game7NaviMgrFf = .text:0x8015CCC4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27MonoObjectMgrFv = .text:0x8015CCCC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27MonoObjectMgrFi = .text:0x8015CCD4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game7NaviMgrFv = .text:0x8015CCDC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game7NaviMgrFv = .text:0x8015CCE4; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game7NaviMgrFv = .text:0x8015CCEC; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game7PikiMgrFv = .text:0x8015CCF4; // type:function size:0xB4 scope:global align:4 +__ct__Q24Game9PikiParmsFv = .text:0x8015CDA8; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game9PikiParms5ParmsFv = .text:0x8015CE08; // type:function size:0x17C4 scope:weak align:4 +__dt__27MonoObjectMgrFv = .text:0x8015E5CC; // type:function size:0xA0 scope:weak align:4 +resetMgr__Q24Game7PikiMgrFv = .text:0x8015E66C; // type:function size:0x38 scope:global align:4 +onAlloc__Q24Game7PikiMgrFv = .text:0x8015E6A4; // type:function size:0x64 scope:global align:4 +getAt__27MonoObjectMgrFi = .text:0x8015E708; // type:function size:0x10 scope:weak align:4 +setupPiki__Q24Game7PikiMgrFPQ24Game4Piki = .text:0x8015E718; // type:function size:0x60 scope:global align:4 +birth__Q24Game7PikiMgrFv = .text:0x8015E778; // type:function size:0x324 scope:global align:4 +loadResources__Q24Game7PikiMgrFi = .text:0x8015EA9C; // type:function size:0xCC scope:global align:4 +read__Q24Game9PikiParmsFR6Stream = .text:0x8015EB68; // type:function size:0x50 scope:weak align:4 +load__Q24Game7PikiMgrFi = .text:0x8015EBB8; // type:function size:0x298 scope:global align:4 +loadBmd__Q24Game7PikiMgrFiPc = .text:0x8015EE50; // type:function size:0x98 scope:global align:4 +createModelCallback__Q24Game7PikiMgrFPQ28SysShape5Model = .text:0x8015EEE8; // type:function size:0x4C scope:global align:4 +createModel__Q24Game7PikiMgrFii = .text:0x8015EF34; // type:function size:0x24 scope:global align:4 +createLeafModel__Q24Game7PikiMgrFii = .text:0x8015EF58; // type:function size:0x8 scope:global align:4 +setMovieDraw__Q24Game7PikiMgrFb = .text:0x8015EF60; // type:function size:0x280 scope:global align:4 +debugShapeDL__Q24Game7PikiMgrFPc = .text:0x8015F1E0; // type:function size:0x84 scope:global align:4 +doSimpleDraw__Q24Game7PikiMgrFP8Viewport = .text:0x8015F264; // type:function size:0x198 scope:global align:4 +doAnimation__Q24Game7PikiMgrFv = .text:0x8015F3FC; // type:function size:0x1D8 scope:global align:4 +setVsXlu__Q24Game7PikiMgrFib = .text:0x8015F5D4; // type:function size:0x58 scope:global align:4 +doEntry__Q24Game7PikiMgrFv = .text:0x8015F62C; // type:function size:0x1FC scope:global align:4 +setupSoundViewerAndBas__Q24Game7PikiMgrFv = .text:0x8015F828; // type:function size:0x4 scope:global align:4 +getColorTransportScale__Q24Game7PikiMgrFi = .text:0x8015F82C; // type:function size:0x74 scope:global align:4 +allocStorePikmins__Q24Game7PikiMgrFv = .text:0x8015F8A0; // type:function size:0x3C scope:global align:4 +clearStorePikmins__Q24Game7PikiMgrFv = .text:0x8015F8DC; // type:function size:0x6C scope:global align:4 +moveAllPikmins__Q24Game7PikiMgrFR10Vector3fP23Condition = .text:0x8015F948; // type:function size:0x34C scope:global align:4 +forceEnterPikmins__Q24Game7PikiMgrFUc = .text:0x8015FC94; // type:function size:0x298 scope:global align:4 +killDayEndPikmins__Q24Game7PikiMgrFRQ24Game13PikiContainer = .text:0x8015FF2C; // type:function size:0x60C scope:global align:4 +killAllPikmins__Q24Game7PikiMgrFv = .text:0x80160538; // type:function size:0x258 scope:global align:4 +caveSaveFormationPikmins__Q24Game7PikiMgrFb = .text:0x80160790; // type:function size:0x2C8 scope:global align:4 +caveSaveAllPikmins__Q24Game7PikiMgrFbb = .text:0x80160A58; // type:function size:0x2C4 scope:global align:4 +saveAllPikmins__Q24Game7PikiMgrFRQ24Game13PikiContainer = .text:0x80160D1C; // type:function size:0x2A8 scope:global align:4 +__dt__Q24Game7PikiMgrFv = .text:0x80160FC4; // type:function size:0xB8 scope:weak align:4 +getMgrName__Q24Game7PikiMgrFv = .text:0x8016107C; // type:function size:0x8 scope:weak align:4 +getMatrixLoadType__Q24Game7PikiMgrFv = .text:0x80161084; // type:function size:0x8 scope:weak align:4 +loadResources__Q24Game7PikiMgrFv = .text:0x8016108C; // type:function size:0x4 scope:weak align:4 +__dt__23ContainerFv = .text:0x80161090; // type:function size:0x70 scope:weak align:4 +__dt__23ObjectMgrFv = .text:0x80161100; // type:function size:0x88 scope:weak align:4 +invoke__45Delegate1FPQ28SysShape5Model = .text:0x80161188; // type:function size:0x30 scope:weak align:4 +birth__27MonoObjectMgrFv = .text:0x801611B8; // type:function size:0x60 scope:weak align:4 +getNext__27MonoObjectMgrFPv = .text:0x80161218; // type:function size:0x40 scope:weak align:4 +getStart__27MonoObjectMgrFv = .text:0x80161258; // type:function size:0x30 scope:weak align:4 +getEnd__27MonoObjectMgrFv = .text:0x80161288; // type:function size:0x8 scope:weak align:4 +getTo__27MonoObjectMgrFv = .text:0x80161290; // type:function size:0x8 scope:weak align:4 +doAnimation__27MonoObjectMgrFv = .text:0x80161298; // type:function size:0x80 scope:weak align:4 +doEntry__27MonoObjectMgrFv = .text:0x80161318; // type:function size:0x80 scope:weak align:4 +doSetView__27MonoObjectMgrFi = .text:0x80161398; // type:function size:0x90 scope:weak align:4 +doViewCalc__27MonoObjectMgrFv = .text:0x80161428; // type:function size:0x80 scope:weak align:4 +doSimulation__27MonoObjectMgrFf = .text:0x801614A8; // type:function size:0x90 scope:weak align:4 +doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x80161538; // type:function size:0x90 scope:weak align:4 +resetMgr__27MonoObjectMgrFv = .text:0x801615C8; // type:function size:0x18 scope:weak align:4 +clearMgr__27MonoObjectMgrFv = .text:0x801615E0; // type:function size:0x30 scope:weak align:4 +getEmptyIndex__27MonoObjectMgrFv = .text:0x80161610; // type:function size:0x3C scope:weak align:4 +get__27MonoObjectMgrFPv = .text:0x8016164C; // type:function size:0x10 scope:weak align:4 +doAnimation__23ObjectMgrFv = .text:0x8016165C; // type:function size:0x1E4 scope:weak align:4 +doEntry__23ObjectMgrFv = .text:0x80161840; // type:function size:0x1E4 scope:weak align:4 +doSetView__23ObjectMgrFi = .text:0x80161A24; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__23ObjectMgrFv = .text:0x80161C18; // type:function size:0x1E4 scope:weak align:4 +doSimulation__23ObjectMgrFf = .text:0x80161DFC; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__23ObjectMgrFR8Graphics = .text:0x80161FF0; // type:function size:0x1F4 scope:weak align:4 +getObject__23ContainerFPv = .text:0x801621E4; // type:function size:0x2C scope:weak align:4 +getAt__23ContainerFi = .text:0x80162210; // type:function size:0x8 scope:weak align:4 +getTo__23ContainerFv = .text:0x80162218; // type:function size:0x8 scope:weak align:4 +__ct__27MonoObjectMgrFv = .text:0x80162220; // type:function size:0x9C scope:weak align:4 +__sinit_pikiMgr_cpp = .text:0x801622BC; // type:function size:0x28 scope:local align:4 +@28@resetMgr__27MonoObjectMgrFv = .text:0x801622E4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27MonoObjectMgrFv = .text:0x801622EC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27MonoObjectMgrFv = .text:0x801622F4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__23ObjectMgrFR8Graphics = .text:0x801622FC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__23ObjectMgrFf = .text:0x80162304; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__23ObjectMgrFv = .text:0x8016230C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__23ObjectMgrFi = .text:0x80162314; // type:function size:0x8 scope:weak align:4 +@28@doEntry__23ObjectMgrFv = .text:0x8016231C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__23ObjectMgrFv = .text:0x80162324; // type:function size:0x8 scope:weak align:4 +@28@getMatrixLoadType__Q24Game7PikiMgrFv = .text:0x8016232C; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__Q24Game7PikiMgrFv = .text:0x80162334; // type:function size:0x8 scope:weak align:4 +@28@loadResources__Q24Game7PikiMgrFv = .text:0x8016233C; // type:function size:0x8 scope:weak align:4 +@28@doSimpleDraw__Q24Game7PikiMgrFP8Viewport = .text:0x80162344; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27MonoObjectMgrFR8Graphics = .text:0x8016234C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27MonoObjectMgrFf = .text:0x80162354; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27MonoObjectMgrFv = .text:0x8016235C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27MonoObjectMgrFi = .text:0x80162364; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game7PikiMgrFv = .text:0x8016236C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game7PikiMgrFv = .text:0x80162374; // type:function size:0x8 scope:weak align:4 +store__Q24Game18TDispTriangleArrayFRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x8016237C; // type:function size:0x44 scope:global align:4 +store__Q24Game18TDispTriangleArrayFR7MatrixfRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x801623C0; // type:function size:0x44 scope:global align:4 +store__Q24Game13TDispTriangleFRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x80162404; // type:function size:0xC0 scope:global align:4 +store__Q24Game13TDispTriangleFR7MatrixfRQ23Sys8TriangleRQ23Sys11VertexTablei = .text:0x801624C4; // type:function size:0x100 scope:global align:4 +__ct__Q24Game6MapMgrFv = .text:0x801625C4; // type:function size:0x98 scope:global align:4 +getStartPosition__Q24Game6MapMgrFR10Vector3i = .text:0x8016265C; // type:function size:0x7C scope:global align:4 +getMapRotation__Q24Game6MapMgrFv = .text:0x801626D8; // type:function size:0x2C scope:global align:4 +getDemoMatrix__Q24Game6MapMgrFv = .text:0x80162704; // type:function size:0x1C scope:global align:4 +getBestAngle__Q24Game6MapMgrFR10Vector3ff = .text:0x80162720; // type:function size:0x704 scope:global align:4 +checkBeamCollision__Q24Game6MapMgrFRQ34Game6MapMgr16BeamCollisionArg = .text:0x80162E24; // type:function size:0x2A4 scope:global align:4 +load__Q24Game11ShapeMapMgrFRQ34Game11ShapeMapMgr7LoadArg = .text:0x801630C8; // type:function size:0x804 scope:global align:4 +__ct__Q23Sys15MatLoopAnimatorFv = .text:0x801638CC; // type:function size:0x3C scope:weak align:4 +findWater__Q24Game6MapMgrFRQ23Sys6Sphere = .text:0x80163908; // type:function size:0x34 scope:global align:4 +do_update__Q24Game11ShapeMapMgrFv = .text:0x8016393C; // type:function size:0x9C scope:global align:4 +update__Q24Game6MapMgrFv = .text:0x801639D8; // type:function size:0x50 scope:global align:4 +do_update__Q24Game6MapMgrFv = .text:0x80163A28; // type:function size:0x4 scope:weak align:4 +clearPerfMonitor__Q24Game6MapMgrFv = .text:0x80163A2C; // type:function size:0x18 scope:global align:4 +drawCollision__Q24Game11ShapeMapMgrFR8GraphicsRQ23Sys6Sphere = .text:0x80163A44; // type:function size:0xAC scope:global align:4 +createTriangles__Q24Game11ShapeMapMgrFRQ23Sys17CreateTriangleArg = .text:0x80163AF0; // type:function size:0x2C scope:global align:4 +createTriangles__12MapCollisionFRQ23Sys17CreateTriangleArg = .text:0x80163B1C; // type:function size:0x30 scope:weak align:4 +createTriangles__Q23Sys10TriDividerFRQ23Sys17CreateTriangleArg = .text:0x80163B4C; // type:function size:0x4 scope:weak align:4 +getMinY__Q24Game11ShapeMapMgrFR10Vector3 = .text:0x80163B50; // type:function size:0x8C scope:global align:4 +getCurrTri__Q24Game11ShapeMapMgrFRQ24Game11CurrTriInfo = .text:0x80163BDC; // type:function size:0x2C scope:global align:4 +doAnimation__Q24Game11ShapeMapMgrFv = .text:0x80163C08; // type:function size:0x38 scope:global align:4 +doSetView__Q24Game11ShapeMapMgrFi = .text:0x80163C40; // type:function size:0x60 scope:global align:4 +doViewCalc__Q24Game11ShapeMapMgrFv = .text:0x80163CA0; // type:function size:0x4C scope:global align:4 +doEntry__Q24Game11ShapeMapMgrFv = .text:0x80163CEC; // type:function size:0xC0 scope:global align:4 +findRayIntersection__Q24Game11ShapeMapMgrFRQ23Sys16RayIntersectInfo = .text:0x80163DAC; // type:function size:0x214 scope:global align:4 +getBoundBox2d__Q24Game11ShapeMapMgrFR10BoundBox2d = .text:0x80163FC0; // type:function size:0x80 scope:weak align:4 +getBoundBox__Q24Game11ShapeMapMgrFR8BoundBox = .text:0x80164040; // type:function size:0x90 scope:weak align:4 +frozenable__Q24Game6MapMgrFv = .text:0x801640D0; // type:function size:0x8 scope:weak align:4 +doDirectDraw__Q24Game6MapMgrFR8Graphics = .text:0x801640D8; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game6MapMgrFf = .text:0x801640DC; // type:function size:0x4 scope:weak align:4 +findRayIntersection__Q24Game6MapMgrFRQ23Sys16RayIntersectInfo = .text:0x801640E0; // type:function size:0x8 scope:weak align:4 +createTriangles__Q24Game6MapMgrFRQ23Sys17CreateTriangleArg = .text:0x801640E8; // type:function size:0x4 scope:weak align:4 +doViewCalc__27ObjectMgrFv = .text:0x801640EC; // type:function size:0x1E4 scope:weak align:4 +doViewCalc__Q24Game8WaterBoxFv = .text:0x801642D0; // type:function size:0x4 scope:weak align:4 +isDone__26IteratorFv = .text:0x801642D4; // type:function size:0x4C scope:weak align:4 +doSetView__27ObjectMgrFi = .text:0x80164320; // type:function size:0x1F4 scope:weak align:4 +doSetView__Q24Game8WaterBoxFi = .text:0x80164514; // type:function size:0x4 scope:weak align:4 +doEntry__27ObjectMgrFv = .text:0x80164518; // type:function size:0x1E4 scope:weak align:4 +doEntry__Q24Game8WaterBoxFv = .text:0x801646FC; // type:function size:0x4 scope:weak align:4 +doAnimation__27ObjectMgrFv = .text:0x80164700; // type:function size:0x1E4 scope:weak align:4 +doAnimation__Q24Game8WaterBoxFv = .text:0x801648E4; // type:function size:0x4 scope:weak align:4 +__ml__26IteratorFv = .text:0x801648E8; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x80164920; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80164A04; // type:function size:0xDC scope:weak align:4 +__sinit_mapMgr_cpp = .text:0x80164AE0; // type:function size:0x28 scope:local align:4 +@36@4@frozenable__Q24Game6MapMgrFv = .text:0x80164B08; // type:function size:0x14 scope:weak align:4 +@36@4@doDirectDraw__Q24Game6MapMgrFR8Graphics = .text:0x80164B1C; // type:function size:0x14 scope:weak align:4 +@36@4@doSimulation__Q24Game6MapMgrFf = .text:0x80164B30; // type:function size:0x14 scope:weak align:4 +@84@4@frozenable__Q24Game6MapMgrFv = .text:0x80164B44; // type:function size:0x14 scope:weak align:4 +@84@4@doDirectDraw__Q24Game6MapMgrFR8Graphics = .text:0x80164B58; // type:function size:0x14 scope:weak align:4 +@84@4@doSimulation__Q24Game6MapMgrFf = .text:0x80164B6C; // type:function size:0x14 scope:weak align:4 +@84@4@doViewCalc__Q24Game11ShapeMapMgrFv = .text:0x80164B80; // type:function size:0x14 scope:weak align:4 +@84@4@doSetView__Q24Game11ShapeMapMgrFi = .text:0x80164B94; // type:function size:0x14 scope:weak align:4 +@84@4@doEntry__Q24Game11ShapeMapMgrFv = .text:0x80164BA8; // type:function size:0x14 scope:weak align:4 +@84@4@doAnimation__Q24Game11ShapeMapMgrFv = .text:0x80164BBC; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game14BaseHIOSectionFP7JKRHeap = .text:0x80164BD0; // type:function size:0xC0 scope:global align:4 +__dt__Q24Game14BaseHIOSectionFv = .text:0x80164C90; // type:function size:0xC4 scope:global align:4 +__dt__Q24Game11HIORootNodeFv = .text:0x80164D54; // type:function size:0x60 scope:weak align:4 +setDisplay__Q24Game14BaseHIOSectionFP10JFWDisplayi = .text:0x80164DB4; // type:function size:0x150 scope:global align:4 +initHIO__Q24Game14BaseHIOSectionFPQ24Game11HIORootNode = .text:0x80164F04; // type:function size:0x80 scope:global align:4 +createScreenRootNode__Q24Game14BaseHIOSectionFv = .text:0x80164F84; // type:function size:0x4 scope:global align:4 +doUpdate__Q24Game14BaseHIOSectionFv = .text:0x80164F88; // type:function size:0x8 scope:global align:4 +addGenNode__Q24Game14BaseHIOSectionFP5CNode = .text:0x80164F90; // type:function size:0x24 scope:global align:4 +refreshHIO__Q24Game14BaseHIOSectionFv = .text:0x80164FB4; // type:function size:0x4 scope:global align:4 +__ct__Q24Game11HIORootNodeFP7Section = .text:0x80164FB8; // type:function size:0x54 scope:global align:4 +drawInit__7SectionFR8GraphicsQ27Section13EDrawInitMode = .text:0x8016500C; // type:function size:0x2C scope:weak align:4 +forceFinish__7SectionFv = .text:0x80165038; // type:function size:0x8 scope:weak align:4 +__sinit_baseHIOSection_cpp = .text:0x80165040; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11NaviWhistleFPQ24Game4Navi = .text:0x80165068; // type:function size:0x34 scope:global align:4 +init__Q24Game11NaviWhistleFv = .text:0x8016509C; // type:function size:0x128 scope:global align:4 +updatePosition__Q24Game11NaviWhistleFv = .text:0x801651C4; // type:function size:0x190 scope:global align:4 +start__Q24Game11NaviWhistleFv = .text:0x80165354; // type:function size:0x78 scope:global align:4 +stop__Q24Game11NaviWhistleFv = .text:0x801653CC; // type:function size:0x34 scope:global align:4 +timeout__Q24Game11NaviWhistleFv = .text:0x80165400; // type:function size:0x10 scope:global align:4 +setFaceDir__Q24Game11NaviWhistleFf = .text:0x80165410; // type:function size:0xF4 scope:global align:4 +updateWhistle__Q24Game11NaviWhistleFv = .text:0x80165504; // type:function size:0x1F4 scope:global align:4 +update__Q24Game11NaviWhistleFR10Vector3b = .text:0x801656F8; // type:function size:0x1D4 scope:global align:4 +getCreatureName__Q24Game6PelletFv = .text:0x801658CC; // type:function size:0x20 scope:global align:4 +getCreatureID__Q24Game6PelletFv = .text:0x801658EC; // type:function size:0x34 scope:global align:4 +getShadowParam__Q24Game6PelletFRQ24Game11ShadowParam = .text:0x80165920; // type:function size:0x190 scope:global align:4 +needShadow__Q24Game6PelletFv = .text:0x80165AB0; // type:function size:0x74 scope:global align:4 +getWallTimer__Q24Game6PelletFv = .text:0x80165B24; // type:function size:0x8 scope:global align:4 +__ct__Q24Game13PelletViewArgFv = .text:0x80165B2C; // type:function size:0x34 scope:global align:4 +becomePellet__Q24Game10PelletViewFPQ24Game13PelletViewArg = .text:0x80165B60; // type:function size:0x220 scope:global align:4 +viewMakeMatrix__Q24Game10PelletViewFR7Matrixf = .text:0x80165D80; // type:function size:0x84 scope:global align:4 +clearClaim__Q24Game6PelletFv = .text:0x80165E04; // type:function size:0xC scope:global align:4 +sendClaim__Q24Game6PelletFv = .text:0x80165E10; // type:function size:0x18 scope:global align:4 +updateClaim__Q24Game6PelletFv = .text:0x80165E28; // type:function size:0x3F4 scope:global align:4 +getBuryDepthMax__Q24Game6PelletFv = .text:0x8016621C; // type:function size:0xC scope:global align:4 +getBuryDepth__Q24Game6PelletFv = .text:0x80166228; // type:function size:0xC scope:global align:4 +getBuryRadius__Q24Game6PelletFf = .text:0x80166234; // type:function size:0x124 scope:global align:4 +stimulate__Q24Game6PelletFRQ24Game11Interaction = .text:0x80166358; // type:function size:0x74 scope:global align:4 +actPellet__Q24Game15InteractMattuanFPQ24Game6Pellet = .text:0x801663CC; // type:function size:0x88 scope:global align:4 +actPellet__Q24Game11InteractEatFPQ24Game6Pellet = .text:0x80166454; // type:function size:0x188 scope:global align:4 +actPellet__Q24Game12InteractSuckFPQ24Game6Pellet = .text:0x801665DC; // type:function size:0x80 scope:global align:4 +doDirectDraw__Q24Game6PelletFR8Graphics = .text:0x8016665C; // type:function size:0x4 scope:global align:4 +__ct__Q24Game6PelletFv = .text:0x80166660; // type:function size:0x1B0 scope:global align:4 +constructor__Q24Game6PelletFv = .text:0x80166810; // type:function size:0x6C scope:global align:4 +__dt__Q23PSM11CreatureObjFv = .text:0x8016687C; // type:function size:0x9C scope:weak align:4 +shadowOn__Q24Game6PelletFv = .text:0x80166918; // type:function size:0x34 scope:global align:4 +shadowOff__Q24Game6PelletFv = .text:0x8016694C; // type:function size:0x34 scope:global align:4 +getJAIObject__Q24Game6PelletFv = .text:0x80166980; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game6PelletFv = .text:0x80166994; // type:function size:0x8 scope:global align:4 +getBottomRadius__Q24Game6PelletFv = .text:0x8016699C; // type:function size:0xC scope:global align:4 +getPickRadius__Q24Game6PelletFv = .text:0x801669A8; // type:function size:0xC scope:global align:4 +getCylinderHeight__Q24Game6PelletFv = .text:0x801669B4; // type:function size:0xC scope:global align:4 +getConfigIndex__Q24Game6PelletFv = .text:0x801669C0; // type:function size:0x58 scope:global align:4 +getConfigName__Q24Game6PelletFv = .text:0x80166A18; // type:function size:0xC scope:global align:4 +__ct__Q24Game18PelletIndexInitArgFi = .text:0x80166A24; // type:function size:0x130 scope:global align:4 +__ct__Q24Game19PelletNumberInitArgFii = .text:0x80166B54; // type:function size:0xF0 scope:global align:4 +isPickable__Q24Game6PelletFv = .text:0x80166C44; // type:function size:0x40 scope:global align:4 +isPickable__Q24Game11PelletStateFv = .text:0x80166C84; // type:function size:0x8 scope:weak align:4 +onKill__Q24Game6PelletFPQ24Game15CreatureKillArg = .text:0x80166C8C; // type:function size:0x288 scope:global align:4 +start__Q24Game28StateMachineFPQ24Game6PelletiPQ24Game8StateArg = .text:0x80166F14; // type:function size:0x34 scope:weak align:4 +onInit__Q24Game6PelletFPQ24Game15CreatureInitArg = .text:0x80166F48; // type:function size:0x620 scope:global align:4 +do_onInit__Q24Game6PelletFPQ24Game15CreatureInitArg = .text:0x80167568; // type:function size:0x4 scope:weak align:4 +onCreateShape__Q24Game6PelletFv = .text:0x8016756C; // type:function size:0x4 scope:weak align:4 +getPelletConfigMin__Q24Game6PelletFv = .text:0x80167570; // type:function size:0x20 scope:global align:4 +getPelletConfigMax__Q24Game6PelletFv = .text:0x80167590; // type:function size:0x20 scope:global align:4 +setupParticles__Q24Game6PelletFv = .text:0x801675B0; // type:function size:0x354 scope:global align:4 +setupParticles_simple__Q24Game6PelletFv = .text:0x80167904; // type:function size:0x220 scope:global align:4 +setupParticles_tall__Q24Game6PelletFv = .text:0x80167B24; // type:function size:0x230 scope:global align:4 +panmodokiCarryable__Q24Game6PelletFv = .text:0x80167D54; // type:function size:0x18 scope:global align:4 +isCarried__Q24Game6PelletFv = .text:0x80167D6C; // type:function size:0x4C scope:global align:4 +isPicked__Q24Game6PelletFv = .text:0x80167DB8; // type:function size:0xC scope:weak align:4 +finishDisplayCarryInfo__Q24Game6PelletFv = .text:0x80167DC4; // type:function size:0x44 scope:global align:4 +getCarryInfoParam__Q24Game6PelletFR14CarryInfoParam = .text:0x80167E08; // type:function size:0xA0 scope:global align:4 +setCarryColor__Q24Game6PelletFi = .text:0x80167EA8; // type:function size:0x68 scope:global align:4 +sound_otakaraEventStart__Q24Game6PelletFv = .text:0x80167F10; // type:function size:0x4 scope:weak align:4 +clearCarryColor__Q24Game6PelletFv = .text:0x80167F14; // type:function size:0xC scope:global align:4 +getVelocity__Q24Game6PelletFv = .text:0x80167F20; // type:function size:0x1C scope:global align:4 +setVelocity__Q24Game6PelletFR10Vector3 = .text:0x80167F3C; // type:function size:0x1C scope:global align:4 +allocateTexCaster__Q24Game6PelletFv = .text:0x80167F58; // type:function size:0x104 scope:global align:4 +onSetPosition__Q24Game6PelletFv = .text:0x8016805C; // type:function size:0x2F0 scope:global align:4 +setPanModokiRotation__Q24Game6PelletFf = .text:0x8016834C; // type:function size:0x160 scope:global align:4 +setOrientation__Q24Game6PelletFR7Matrixf = .text:0x801684AC; // type:function size:0x2D0 scope:global align:4 +getStateID__Q24Game6PelletFv = .text:0x8016877C; // type:function size:0x28 scope:global align:4 +bounceCallback__Q24Game6PelletFPQ23Sys8Triangle = .text:0x801687A4; // type:function size:0x260 scope:global align:4 +onBounce__Q24Game6PelletFv = .text:0x80168A04; // type:function size:0x4 scope:weak align:4 +update__Q24Game6PelletFv = .text:0x80168A08; // type:function size:0xF84 scope:global align:4 +do_update__Q24Game6PelletFv = .text:0x8016998C; // type:function size:0x4 scope:weak align:4 +isCave__Q23PSM10Scene_GameFv = .text:0x80169990; // type:function size:0x8 scope:weak align:4 +getPikiBirthCount__Q24Game6PelletFRiRi = .text:0x80169998; // type:function size:0x1C scope:global align:4 +setMovieDraw__Q24Game9PelletMgrFb = .text:0x801699B4; // type:function size:0x14 scope:global align:4 +doSimulation__Q24Game6PelletFf = .text:0x801699C8; // type:function size:0x12C scope:global align:4 +updateTrMatrix__Q24Game6PelletFv = .text:0x80169AF4; // type:function size:0x114 scope:global align:4 +doAnimation__Q24Game6PelletFv = .text:0x80169C08; // type:function size:0x27C scope:global align:4 +doEntry__Q24Game6PelletFv = .text:0x80169E84; // type:function size:0xF0 scope:global align:4 +changeMaterial__Q24Game6PelletFv = .text:0x80169F74; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game6PelletFi = .text:0x80169F78; // type:function size:0x20 scope:global align:4 +doViewCalc__Q24Game6PelletFv = .text:0x80169F98; // type:function size:0x20 scope:global align:4 +theEntry__Q24Game6PelletFv = .text:0x80169FB8; // type:function size:0xDC scope:global align:4 +entryShape__Q24Game6PelletFv = .text:0x8016A094; // type:function size:0x9C scope:global align:4 +getBoundingSphere__Q24Game6PelletFRQ23Sys6Sphere = .text:0x8016A130; // type:function size:0x24 scope:global align:4 +getLODSphere__Q24Game6PelletFRQ23Sys6Sphere = .text:0x8016A154; // type:function size:0x3C scope:global align:4 +init_pmotions__Q24Game6PelletFv = .text:0x8016A190; // type:function size:0x58 scope:global align:4 +update_pmotions__Q24Game6PelletFv = .text:0x8016A1E8; // type:function size:0xB4 scope:global align:4 +start_pmotions__Q24Game6PelletFv = .text:0x8016A29C; // type:function size:0x44 scope:global align:4 +stop_carrymotion__Q24Game6PelletFv = .text:0x8016A2E0; // type:function size:0xC scope:global align:4 +finish_carrymotion__Q24Game6PelletFv = .text:0x8016A2EC; // type:function size:0x54 scope:global align:4 +onKeyEvent__Q24Game6PelletFRCQ28SysShape8KeyEvent = .text:0x8016A340; // type:function size:0x88 scope:global align:4 +isSlotFree__Q24Game6PelletFs = .text:0x8016A3C8; // type:function size:0xC0 scope:global align:4 +getSpeicalSlot__Q24Game6PelletFv = .text:0x8016A488; // type:function size:0x1C scope:global align:4 +getFreeStickSlot__Q24Game6PelletFv = .text:0x8016A4A4; // type:function size:0x54 scope:global align:4 +getNearFreeStickSlot__Q24Game6PelletFR10Vector3 = .text:0x8016A4F8; // type:function size:0x128 scope:global align:4 +getRandomFreeStickSlot__Q24Game6PelletFv = .text:0x8016A620; // type:function size:0xE8 scope:global align:4 +getPelletGoal__Q24Game6PelletFv = .text:0x8016A708; // type:function size:0x20C scope:global align:4 +getTotalPikmins__Q24Game6PelletFv = .text:0x8016A914; // type:function size:0x3C scope:global align:4 +getTotalCarryPikmins__Q24Game6PelletFv = .text:0x8016A950; // type:function size:0x6C scope:global align:4 +getPikmins__Q24Game6PelletFi = .text:0x8016A9BC; // type:function size:0x78 scope:global align:4 +onSlotStickStart__Q24Game6PelletFPQ24Game8Creatures = .text:0x8016AA34; // type:function size:0x1D4 scope:global align:4 +onSlotStickEnd__Q24Game6PelletFPQ24Game8Creatures = .text:0x8016AC08; // type:function size:0x1E8 scope:global align:4 +calcStickSlotGlobal__Q24Game6PelletFsR10Vector3 = .text:0x8016ADF0; // type:function size:0x21C scope:global align:4 +getFace__Q24Game6PelletFv = .text:0x8016B00C; // type:function size:0x68 scope:global align:4 +startPick__Q24Game6PelletFv = .text:0x8016B074; // type:function size:0x2AC scope:global align:4 +sound_otakaraEventRestart__Q24Game6PelletFv = .text:0x8016B320; // type:function size:0x4 scope:weak align:4 +endPick__Q24Game6PelletFb = .text:0x8016B324; // type:function size:0x17C scope:global align:4 +sound_otakaraEventStop__Q24Game6PelletFv = .text:0x8016B4A0; // type:function size:0x4 scope:weak align:4 +clearDiscoverDisable__Q24Game6PelletFv = .text:0x8016B4A4; // type:function size:0xC scope:global align:4 +startDiscoverDisable__Q24Game6PelletFUc = .text:0x8016B4B0; // type:function size:0x8 scope:global align:4 +updateDiscoverDisable__Q24Game6PelletFv = .text:0x8016B4B8; // type:function size:0x18 scope:global align:4 +discoverDisabled__Q24Game6PelletFv = .text:0x8016B4D0; // type:function size:0x2C scope:global align:4 +doSave__Q24Game6PelletFR6Stream = .text:0x8016B4FC; // type:function size:0x2C scope:global align:4 +doLoad__Q24Game6PelletFR6Stream = .text:0x8016B528; // type:function size:0x1DC scope:global align:4 +onStartCapture__Q24Game6PelletFv = .text:0x8016B704; // type:function size:0xF4 scope:global align:4 +onUpdateCapture__Q24Game6PelletFR7Matrixf = .text:0x8016B7F8; // type:function size:0x110 scope:global align:4 +onEndCapture__Q24Game6PelletFv = .text:0x8016B908; // type:function size:0x98 scope:global align:4 +__ct__Q24Game13BasePelletMgrFQ34Game10PelletList5cKind = .text:0x8016B9A0; // type:function size:0x270 scope:global align:4 +__dt__11CollPartMgrFv = .text:0x8016BC10; // type:function size:0xB8 scope:weak align:4 +__dt__24MonoObjectMgr<8CollPart>Fv = .text:0x8016BCC8; // type:function size:0xA0 scope:weak align:4 +getPelletConfig__Q24Game13BasePelletMgrFi = .text:0x8016BD68; // type:function size:0x30 scope:global align:4 +setUse__Q24Game13BasePelletMgrFi = .text:0x8016BD98; // type:function size:0x7C scope:global align:4 +load__Q24Game13BasePelletMgrFv = .text:0x8016BE14; // type:function size:0x298 scope:global align:4 +load_texArc__Q24Game13BasePelletMgrFPc = .text:0x8016C0AC; // type:function size:0x3E4 scope:global align:4 +openTextArc__Q24Game13BasePelletMgrFPc = .text:0x8016C490; // type:function size:0x10C scope:global align:4 +closeTextArc__Q24Game13BasePelletMgrFP10JKRArchive = .text:0x8016C59C; // type:function size:0x30 scope:global align:4 +useModelMgr__Q24Game13BasePelletMgrFiUl = .text:0x8016C5CC; // type:function size:0xE4 scope:global align:4 +createModelCallback__Q24Game13BasePelletMgrFPQ28SysShape5Model = .text:0x8016C6B0; // type:function size:0x2C scope:weak align:4 +onCreateModel__Q24Game13BasePelletMgrFPQ28SysShape5Model = .text:0x8016C6DC; // type:function size:0x4 scope:weak align:4 +createShape__Q24Game13BasePelletMgrFii = .text:0x8016C6E0; // type:function size:0xE4 scope:global align:4 +setCollTree__Q24Game13BasePelletMgrFPQ24Game6Pelleti = .text:0x8016C7C4; // type:function size:0x158 scope:global align:4 +generatorNewPelletParm__Q24Game13BasePelletMgrFv = .text:0x8016C91C; // type:function size:0x24 scope:global align:4 +generatorGetShape__Q24Game13BasePelletMgrFPQ24Game13GenPelletParm = .text:0x8016C940; // type:function size:0x8 scope:global align:4 +__ct__Q24Game14PelletIteratorFv = .text:0x8016C948; // type:function size:0x18 scope:global align:4 +first__Q24Game14PelletIteratorFv = .text:0x8016C960; // type:function size:0x4C scope:global align:4 +__ml__Q24Game14PelletIteratorFv = .text:0x8016C9AC; // type:function size:0x68 scope:global align:4 +next__Q24Game14PelletIteratorFv = .text:0x8016CA14; // type:function size:0xC0 scope:global align:4 +isDone__Q24Game14PelletIteratorFv = .text:0x8016CAD4; // type:function size:0x10 scope:global align:4 +setFirst__Q24Game14PelletIteratorFv = .text:0x8016CAE4; // type:function size:0x350 scope:global align:4 +getNext__31TObjectNode<16GenericObjectMgr>Fv = .text:0x8016CE34; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game9PelletMgrFv = .text:0x8016CE3C; // type:function size:0xCC scope:global align:4 +__dt__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x8016CF08; // type:function size:0xC8 scope:weak align:4 +__dt__31TObjectNode<16GenericObjectMgr>Fv = .text:0x8016CFD0; // type:function size:0x60 scope:weak align:4 +__dt__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x8016D030; // type:function size:0x88 scope:weak align:4 +__dt__29Container<16GenericObjectMgr>Fv = .text:0x8016D0B8; // type:function size:0x70 scope:weak align:4 +createManagers__Q24Game9PelletMgrFUl = .text:0x8016D128; // type:function size:0xF0 scope:global align:4 +resetMgrs__Q24Game9PelletMgrFv = .text:0x8016D218; // type:function size:0x80 scope:global align:4 +resetMgr__Q24Game47FixedSizePelletMgrFv = .text:0x8016D298; // type:function size:0x50 scope:weak align:4 +resetMgr__Q24Game49FixedSizePelletMgrFv = .text:0x8016D2E8; // type:function size:0x50 scope:weak align:4 +resetMgr__Q24Game48FixedSizePelletMgrFv = .text:0x8016D338; // type:function size:0x50 scope:weak align:4 +setupResources__Q24Game9PelletMgrFv = .text:0x8016D388; // type:function size:0x80 scope:global align:4 +isDone__36IteratorFv = .text:0x8016D408; // type:function size:0x4C scope:weak align:4 +isDone__39IteratorFv = .text:0x8016D454; // type:function size:0x4C scope:weak align:4 +birth__Q24Game9PelletMgrFPQ24Game13PelletInitArg = .text:0x8016D4A0; // type:function size:0x21C scope:global align:4 +setUse__Q24Game9PelletMgrFPQ24Game13PelletInitArg = .text:0x8016D6BC; // type:function size:0x1AC scope:global align:4 +isNull__Q34Game9PelletMgr15OtakaraItemCodeFv = .text:0x8016D868; // type:function size:0x15C scope:global align:4 +makePelletInitArg__Q24Game9PelletMgrFRQ24Game13PelletInitArgPc = .text:0x8016D9C4; // type:function size:0xC8 scope:global align:4 +makeVsCarryMinMax__Q24Game9PelletMgrFRQ24Game13PelletInitArgPc = .text:0x8016DA8C; // type:function size:0xE4 scope:global align:4 +makePelletInitArg__Q24Game9PelletMgrFRQ24Game13PelletInitArgRQ34Game9PelletMgr15OtakaraItemCode = .text:0x8016DB70; // type:function size:0x2EC scope:global align:4 +makeOtakaraItemCode__Q24Game9PelletMgrFPcRQ34Game9PelletMgr15OtakaraItemCode = .text:0x8016DE5C; // type:function size:0x60 scope:global align:4 +read__Q34Game9PelletMgr15OtakaraItemCodeFR6Stream = .text:0x8016DEBC; // type:function size:0x34 scope:global align:4 +write__Q34Game9PelletMgr15OtakaraItemCodeFR6Stream = .text:0x8016DEF0; // type:function size:0x60 scope:global align:4 +addMgr__Q24Game9PelletMgrFPQ24Game13BasePelletMgr = .text:0x8016DF50; // type:function size:0x6C scope:global align:4 +doAnimation__Q24Game9PelletMgrFv = .text:0x8016DFBC; // type:function size:0x1E4 scope:global align:4 +isDone__28Iterator<16GenericObjectMgr>Fv = .text:0x8016E1A0; // type:function size:0x4C scope:weak align:4 +doEntry__Q24Game9PelletMgrFv = .text:0x8016E1EC; // type:function size:0x1E4 scope:global align:4 +doSetView__Q24Game9PelletMgrFi = .text:0x8016E3D0; // type:function size:0x1F4 scope:global align:4 +doViewCalc__Q24Game9PelletMgrFv = .text:0x8016E5C4; // type:function size:0x1E4 scope:global align:4 +doSimulation__Q24Game9PelletMgrFf = .text:0x8016E7A8; // type:function size:0x1F4 scope:global align:4 +doDirectDraw__Q24Game9PelletMgrFR8Graphics = .text:0x8016E99C; // type:function size:0x4 scope:global align:4 +doSimpleDraw__Q24Game9PelletMgrFP8Viewport = .text:0x8016E9A0; // type:function size:0x1F4 scope:global align:4 +setupSoundViewerAndBas__Q24Game9PelletMgrFv = .text:0x8016EB94; // type:function size:0x1D4 scope:global align:4 +decode__Q24Game9PelletMgrFlRUcRi = .text:0x8016ED68; // type:function size:0x14 scope:global align:4 +encode__Q24Game9PelletMgrFUci = .text:0x8016ED7C; // type:function size:0xC scope:global align:4 +getCaveName__Q24Game9PelletMgrFi = .text:0x8016ED88; // type:function size:0xB4 scope:global align:4 +getCaveID__Q24Game9PelletMgrFPc = .text:0x8016EE3C; // type:function size:0x270 scope:global align:4 +getMgrByID__Q24Game9PelletMgrFUc = .text:0x8016F0AC; // type:function size:0x21C scope:global align:4 +__dt__Q24Game9PelletMgrFv = .text:0x8016F2C8; // type:function size:0xE0 scope:weak align:4 +getMgrName__Q24Game9PelletMgrFv = .text:0x8016F3A8; // type:function size:0xC scope:weak align:4 +__ml__28Iterator<16GenericObjectMgr>Fv = .text:0x8016F3B4; // type:function size:0x38 scope:weak align:4 +next__28Iterator<16GenericObjectMgr>Fv = .text:0x8016F3EC; // type:function size:0xE4 scope:weak align:4 +first__28Iterator<16GenericObjectMgr>Fv = .text:0x8016F4D0; // type:function size:0xDC scope:weak align:4 +__ml__36IteratorFv = .text:0x8016F5AC; // type:function size:0x38 scope:weak align:4 +next__36IteratorFv = .text:0x8016F5E4; // type:function size:0xE4 scope:weak align:4 +first__36IteratorFv = .text:0x8016F6C8; // type:function size:0xDC scope:weak align:4 +__ml__39IteratorFv = .text:0x8016F7A4; // type:function size:0x38 scope:weak align:4 +next__39IteratorFv = .text:0x8016F7DC; // type:function size:0xE4 scope:weak align:4 +first__39IteratorFv = .text:0x8016F8C0; // type:function size:0xDC scope:weak align:4 +generatorBirth__Q24Game13BasePelletMgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x8016F99C; // type:function size:0x8 scope:weak align:4 +generatorWrite__Q24Game13BasePelletMgrFR6StreamPQ24Game13GenPelletParm = .text:0x8016F9A4; // type:function size:0x4 scope:weak align:4 +generatorRead__Q24Game13BasePelletMgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x8016F9A8; // type:function size:0x4 scope:weak align:4 +generatorLocalVersion__Q24Game13BasePelletMgrFv = .text:0x8016F9AC; // type:function size:0xC scope:weak align:4 +doAnimation__Q24Game13BasePelletMgrFv = .text:0x8016F9B8; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game13BasePelletMgrFv = .text:0x8016F9BC; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game13BasePelletMgrFi = .text:0x8016F9C0; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game13BasePelletMgrFv = .text:0x8016F9C4; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game13BasePelletMgrFf = .text:0x8016F9C8; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game13BasePelletMgrFR8Graphics = .text:0x8016F9CC; // type:function size:0x4 scope:weak align:4 +__dt__20Container<8CollPart>Fv = .text:0x8016F9D0; // type:function size:0x70 scope:weak align:4 +__dt__20ObjectMgr<8CollPart>Fv = .text:0x8016FA40; // type:function size:0x88 scope:weak align:4 +satisfy__13WPExcludeSpotFPQ24Game8WayPoint = .text:0x8016FAC8; // type:function size:0x84 scope:weak align:4 +satisfy__Q223@unnamed@pelletMgr_cpp@6NotOffFPQ24Game8WayPoint = .text:0x8016FB4C; // type:function size:0x4DC scope:local align:4 +onSetPosition__Q24Game6PelletFR10Vector3 = .text:0x80170028; // type:function size:0x44 scope:weak align:4 +inWater__Q24Game6PelletFv = .text:0x8017006C; // type:function size:0x8 scope:weak align:4 +getBedamaColor__Q24Game6PelletFv = .text:0x80170074; // type:function size:0x8 scope:weak align:4 +getSound_PosPtr__Q24Game6PelletFv = .text:0x8017007C; // type:function size:0x8 scope:weak align:4 +getFaceDir__Q24Game6PelletFv = .text:0x80170084; // type:function size:0x8 scope:weak align:4 +deferPikiCollision__Q24Game6PelletFv = .text:0x8017008C; // type:function size:0x8 scope:weak align:4 +sound_otakaraEventFinish__Q24Game6PelletFv = .text:0x80170094; // type:function size:0x4 scope:weak align:4 +__dt__Q23PSM9EventBaseFv = .text:0x80170098; // type:function size:0xBC scope:weak align:4 +getCastType__Q23PSM11CreatureObjFv = .text:0x80170154; // type:function size:0x8 scope:weak align:4 +getJAIObject__Q23PSM11CreatureObjFv = .text:0x8017015C; // type:function size:0x10 scope:weak align:4 +getHandleArea__Q23PSM11CreatureObjFUc = .text:0x8017016C; // type:function size:0x10 scope:weak align:4 +onCalcOn__Q23PSM11CreatureObjFv = .text:0x8017017C; // type:function size:0x4 scope:weak align:4 +getName__Q24Game18PelletGoalStateArgFv = .text:0x80170180; // type:function size:0xC scope:weak align:4 +init__Q24Game28StateMachineFPQ24Game6Pellet = .text:0x8017018C; // type:function size:0x4 scope:weak align:4 +get__33NodeObjectMgr<16GenericObjectMgr>FPv = .text:0x80170190; // type:function size:0x8 scope:weak align:4 +getNext__33NodeObjectMgr<16GenericObjectMgr>FPv = .text:0x80170198; // type:function size:0x8 scope:weak align:4 +getStart__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801701A0; // type:function size:0x8 scope:weak align:4 +getEnd__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801701A8; // type:function size:0x8 scope:weak align:4 +resetMgr__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801701B0; // type:function size:0x18 scope:weak align:4 +resetMgr__42MonoObjectMgrFv = .text:0x801701C8; // type:function size:0x18 scope:weak align:4 +resetMgr__44MonoObjectMgrFv = .text:0x801701E0; // type:function size:0x18 scope:weak align:4 +resetMgr__43MonoObjectMgrFv = .text:0x801701F8; // type:function size:0x18 scope:weak align:4 +getNext__24MonoObjectMgr<8CollPart>FPv = .text:0x80170210; // type:function size:0x40 scope:weak align:4 +getStart__24MonoObjectMgr<8CollPart>Fv = .text:0x80170250; // type:function size:0x30 scope:weak align:4 +getEnd__24MonoObjectMgr<8CollPart>Fv = .text:0x80170280; // type:function size:0x8 scope:weak align:4 +getAt__24MonoObjectMgr<8CollPart>Fi = .text:0x80170288; // type:function size:0x10 scope:weak align:4 +getTo__24MonoObjectMgr<8CollPart>Fv = .text:0x80170298; // type:function size:0x8 scope:weak align:4 +doAnimation__24MonoObjectMgr<8CollPart>Fv = .text:0x801702A0; // type:function size:0x80 scope:weak align:4 +doEntry__24MonoObjectMgr<8CollPart>Fv = .text:0x80170320; // type:function size:0x80 scope:weak align:4 +doSetView__24MonoObjectMgr<8CollPart>Fi = .text:0x801703A0; // type:function size:0x90 scope:weak align:4 +doViewCalc__24MonoObjectMgr<8CollPart>Fv = .text:0x80170430; // type:function size:0x80 scope:weak align:4 +doSimulation__24MonoObjectMgr<8CollPart>Ff = .text:0x801704B0; // type:function size:0x90 scope:weak align:4 +doDirectDraw__24MonoObjectMgr<8CollPart>FR8Graphics = .text:0x80170540; // type:function size:0x90 scope:weak align:4 +resetMgr__24MonoObjectMgr<8CollPart>Fv = .text:0x801705D0; // type:function size:0x18 scope:weak align:4 +clearMgr__24MonoObjectMgr<8CollPart>Fv = .text:0x801705E8; // type:function size:0x30 scope:weak align:4 +onAlloc__24MonoObjectMgr<8CollPart>Fv = .text:0x80170618; // type:function size:0x4 scope:weak align:4 +get__24MonoObjectMgr<8CollPart>FPv = .text:0x8017061C; // type:function size:0x10 scope:weak align:4 +doAnimation__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x8017062C; // type:function size:0x1E4 scope:weak align:4 +doEntry__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x80170810; // type:function size:0x1E4 scope:weak align:4 +doSetView__29ObjectMgr<16GenericObjectMgr>Fi = .text:0x801709F4; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x80170BE8; // type:function size:0x1E4 scope:weak align:4 +doSimulation__29ObjectMgr<16GenericObjectMgr>Ff = .text:0x80170DCC; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__29ObjectMgr<16GenericObjectMgr>FR8Graphics = .text:0x80170FC0; // type:function size:0x1F4 scope:weak align:4 +getObject__29Container<16GenericObjectMgr>FPv = .text:0x801711B4; // type:function size:0x2C scope:weak align:4 +getAt__29Container<16GenericObjectMgr>Fi = .text:0x801711E0; // type:function size:0x8 scope:weak align:4 +getTo__29Container<16GenericObjectMgr>Fv = .text:0x801711E8; // type:function size:0x8 scope:weak align:4 +getObject__20Container<8CollPart>FPv = .text:0x801711F0; // type:function size:0x2C scope:weak align:4 +getAt__20Container<8CollPart>Fi = .text:0x8017121C; // type:function size:0x8 scope:weak align:4 +getTo__20Container<8CollPart>Fv = .text:0x80171224; // type:function size:0x8 scope:weak align:4 +invoke__52Delegate1FPQ28SysShape5Model = .text:0x8017122C; // type:function size:0x30 scope:weak align:4 +doDirectDraw__20ObjectMgr<8CollPart>FR8Graphics = .text:0x8017125C; // type:function size:0x1F4 scope:weak align:4 +isDone__19Iterator<8CollPart>Fv = .text:0x80171450; // type:function size:0x4C scope:weak align:4 +doSimulation__20ObjectMgr<8CollPart>Ff = .text:0x8017149C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__20ObjectMgr<8CollPart>Fv = .text:0x80171690; // type:function size:0x1E4 scope:weak align:4 +doSetView__20ObjectMgr<8CollPart>Fi = .text:0x80171874; // type:function size:0x1F4 scope:weak align:4 +doEntry__20ObjectMgr<8CollPart>Fv = .text:0x80171A68; // type:function size:0x1E4 scope:weak align:4 +doAnimation__20ObjectMgr<8CollPart>Fv = .text:0x80171C4C; // type:function size:0x1E4 scope:weak align:4 +__ct__24MonoObjectMgr<8CollPart>Fv = .text:0x80171E30; // type:function size:0x9C scope:weak align:4 +transit__Q24Game28StateMachineFPQ24Game6PelletiPQ24Game8StateArg = .text:0x80171ECC; // type:function size:0x9C scope:weak align:4 +init__Q24Game24FSMStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x80171F68; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x80171F6C; // type:function size:0x4 scope:weak align:4 +getCurrID__Q24Game28StateMachineFPQ24Game6Pellet = .text:0x80171F70; // type:function size:0x1C scope:weak align:4 +exec__Q24Game28StateMachineFPQ24Game6Pellet = .text:0x80171F8C; // type:function size:0x38 scope:weak align:4 +exec__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x80171FC4; // type:function size:0x4 scope:weak align:4 +resetMgrAndResources__Q24Game49FixedSizePelletMgrFv = .text:0x80171FC8; // type:function size:0x9C scope:weak align:4 +resetMgr__Q24Game49FixedSizePelletMgrFv = .text:0x80172064; // type:function size:0x50 scope:weak align:4 +resetMgrAndResources__Q24Game46FixedSizePelletMgrFv = .text:0x801720B4; // type:function size:0x9C scope:weak align:4 +resetMgr__Q24Game46FixedSizePelletMgrFv = .text:0x80172150; // type:function size:0x50 scope:weak align:4 +__ml__19Iterator<8CollPart>Fv = .text:0x801721A0; // type:function size:0x38 scope:weak align:4 +next__19Iterator<8CollPart>Fv = .text:0x801721D8; // type:function size:0xE4 scope:weak align:4 +first__19Iterator<8CollPart>Fv = .text:0x801722BC; // type:function size:0xDC scope:weak align:4 +resetMgr__41MonoObjectMgrFv = .text:0x80172398; // type:function size:0x18 scope:weak align:4 +resetMgr__44MonoObjectMgrFv = .text:0x801723B0; // type:function size:0x18 scope:weak align:4 +__sinit_pelletMgr_cpp = .text:0x801723C8; // type:function size:0x28 scope:local align:4 +@16@__dt__Q23PSM9EventBaseFv = .text:0x801723F0; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM11CreatureObjFUcUlUl = .text:0x801723F8; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM11CreatureObjFPP8JAISoundUlUl = .text:0x80172400; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM11CreatureObjFUlUl = .text:0x80172408; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9EventBaseFv = .text:0x80172410; // type:function size:0x8 scope:weak align:4 +@788@onKeyEvent__Q24Game6PelletFRCQ28SysShape8KeyEvent = .text:0x80172418; // type:function size:0x8 scope:weak align:4 +@792@getCarryInfoParam__Q24Game6PelletFR14CarryInfoParam = .text:0x80172420; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__24MonoObjectMgr<8CollPart>Fv = .text:0x80172428; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__24MonoObjectMgr<8CollPart>FR8Graphics = .text:0x80172430; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__24MonoObjectMgr<8CollPart>Ff = .text:0x80172438; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__24MonoObjectMgr<8CollPart>Fv = .text:0x80172440; // type:function size:0x8 scope:weak align:4 +@28@doSetView__24MonoObjectMgr<8CollPart>Fi = .text:0x80172448; // type:function size:0x8 scope:weak align:4 +@28@doEntry__24MonoObjectMgr<8CollPart>Fv = .text:0x80172450; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__24MonoObjectMgr<8CollPart>Fv = .text:0x80172458; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__20ObjectMgr<8CollPart>FR8Graphics = .text:0x80172460; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__20ObjectMgr<8CollPart>Ff = .text:0x80172468; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__20ObjectMgr<8CollPart>Fv = .text:0x80172470; // type:function size:0x8 scope:weak align:4 +@28@doSetView__20ObjectMgr<8CollPart>Fi = .text:0x80172478; // type:function size:0x8 scope:weak align:4 +@28@doEntry__20ObjectMgr<8CollPart>Fv = .text:0x80172480; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__20ObjectMgr<8CollPart>Fv = .text:0x80172488; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__29ObjectMgr<16GenericObjectMgr>FR8Graphics = .text:0x80172490; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__29ObjectMgr<16GenericObjectMgr>Ff = .text:0x80172498; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x801724A0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__29ObjectMgr<16GenericObjectMgr>Fi = .text:0x801724A8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x801724B0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__29ObjectMgr<16GenericObjectMgr>Fv = .text:0x801724B8; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__33NodeObjectMgr<16GenericObjectMgr>Fv = .text:0x801724C0; // type:function size:0x8 scope:weak align:4 +@28@doSimpleDraw__Q24Game9PelletMgrFP8Viewport = .text:0x801724C8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game9PelletMgrFR8Graphics = .text:0x801724D0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game9PelletMgrFf = .text:0x801724D8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__Q24Game9PelletMgrFv = .text:0x801724E0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__Q24Game9PelletMgrFi = .text:0x801724E8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game9PelletMgrFv = .text:0x801724F0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game9PelletMgrFv = .text:0x801724F8; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game16WayPointIteratorFPQ24Game8WayPointb = .text:0x80172500; // type:function size:0x14 scope:global align:4 +first__Q24Game16WayPointIteratorFv = .text:0x80172514; // type:function size:0x28 scope:global align:4 +next__Q24Game16WayPointIteratorFv = .text:0x8017253C; // type:function size:0x2C scope:global align:4 +isDone__Q24Game16WayPointIteratorFv = .text:0x80172568; // type:function size:0x3C scope:global align:4 +__ml__Q24Game16WayPointIteratorFv = .text:0x801725A4; // type:function size:0x34 scope:global align:4 +forward__Q24Game16WayPointIteratorFv = .text:0x801725D8; // type:function size:0xA8 scope:global align:4 +__ct__Q24Game8WayPointFv = .text:0x80172680; // type:function size:0x6C scope:global align:4 +__dt__Q34Game8WayPoint8RoomListFv = .text:0x801726EC; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game8WayPointFv = .text:0x8017274C; // type:function size:0x84 scope:global align:4 +reset__Q24Game8WayPointFv = .text:0x801727D0; // type:function size:0x84 scope:global align:4 +setOpen__Q24Game8WayPointFb = .text:0x80172854; // type:function size:0x28 scope:global align:4 +setWater__Q24Game8WayPointFb = .text:0x8017287C; // type:function size:0x28 scope:global align:4 +setBridge__Q24Game8WayPointFb = .text:0x801728A4; // type:function size:0x28 scope:global align:4 +directDraw__Q24Game8WayPointFR8Graphics = .text:0x801728CC; // type:function size:0x4 scope:global align:4 +directDraw_Simple__Q24Game8WayPointFR8Graphics = .text:0x801728D0; // type:function size:0x4 scope:global align:4 +__dt__27ContainerFv = .text:0x801728D4; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game8RouteMgrFv = .text:0x80172944; // type:function size:0x80 scope:global align:4 +makeInvertLinks__Q24Game8RouteMgrFv = .text:0x801729C4; // type:function size:0x148 scope:global align:4 +linkable__Q24Game8RouteMgrFPQ24Game8WayPointPQ24Game8WayPoint = .text:0x80172B0C; // type:function size:0x1E4 scope:global align:4 +refreshWater__Q24Game8RouteMgrFv = .text:0x80172CF0; // type:function size:0x268 scope:global align:4 +isDone__26IteratorFv = .text:0x80172F58; // type:function size:0x4C scope:weak align:4 +getNearestWayPoint__Q24Game8RouteMgrFRQ24Game11WPSearchArg = .text:0x80172FA4; // type:function size:0x3A8 scope:global align:4 +getNearestEdge__Q24Game8RouteMgrFRQ24Game15WPEdgeSearchArg = .text:0x8017334C; // type:function size:0x81C scope:global align:4 +setCloseAll__Q24Game8RouteMgrFv = .text:0x80173B68; // type:function size:0x1E0 scope:global align:4 +openRoom__Q24Game8RouteMgrFs = .text:0x80173D48; // type:function size:0x210 scope:global align:4 +write__Q24Game8RouteMgrFR6Stream = .text:0x80173F58; // type:function size:0x31C scope:global align:4 +__ct__Q24Game12GameRouteMgrFv = .text:0x80174274; // type:function size:0x7C scope:global align:4 +__dt__Q24Game12GameRouteMgrFv = .text:0x801742F0; // type:function size:0xBC scope:global align:4 +read__Q24Game12GameRouteMgrFR6Stream = .text:0x801743AC; // type:function size:0xF4 scope:global align:4 +getWayPoint__Q24Game12GameRouteMgrFs = .text:0x801744A0; // type:function size:0x88 scope:global align:4 +get__Q24Game12GameRouteMgrFPv = .text:0x80174528; // type:function size:0x30 scope:global align:4 +getNext__Q24Game12GameRouteMgrFPv = .text:0x80174558; // type:function size:0x8 scope:global align:4 +getStart__Q24Game12GameRouteMgrFv = .text:0x80174560; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game12GameRouteMgrFv = .text:0x80174568; // type:function size:0x8 scope:global align:4 +__ct__Q24Game14EditorRouteMgrFv = .text:0x80174570; // type:function size:0xAC scope:global align:4 +__dt__Q34Game14EditorRouteMgr6WPNodeFv = .text:0x8017461C; // type:function size:0x60 scope:weak align:4 +read__Q24Game14EditorRouteMgrFR6Stream = .text:0x8017467C; // type:function size:0x1AC scope:global align:4 +addWayPoint__Q24Game14EditorRouteMgrFPQ24Game8WayPoint = .text:0x80174828; // type:function size:0x8C scope:global align:4 +delWayPoint__Q24Game14EditorRouteMgrFPQ24Game8WayPoint = .text:0x801748B4; // type:function size:0x88 scope:global align:4 +getWayPoint__Q24Game14EditorRouteMgrFs = .text:0x8017493C; // type:function size:0x38 scope:global align:4 +get__Q24Game14EditorRouteMgrFPv = .text:0x80174974; // type:function size:0x8 scope:global align:4 +getNext__Q24Game14EditorRouteMgrFPv = .text:0x8017497C; // type:function size:0x8 scope:global align:4 +getStart__Q24Game14EditorRouteMgrFv = .text:0x80174984; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game14EditorRouteMgrFv = .text:0x8017498C; // type:function size:0x8 scope:global align:4 +__dt__Q24Game14EditorRouteMgrFv = .text:0x80174994; // type:function size:0xB8 scope:weak align:4 +__ml__26IteratorFv = .text:0x80174A4C; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x80174A84; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x80174B68; // type:function size:0xDC scope:weak align:4 +getObject__27ContainerFPv = .text:0x80174C44; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x80174C70; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x80174C78; // type:function size:0x8 scope:weak align:4 +movieUserCommand__Q24Game5OnyonFUlPQ24Game11MoviePlayer = .text:0x80174C80; // type:function size:0x80C scope:global align:4 +isSuckReady__Q24Game5OnyonFv = .text:0x8017548C; // type:function size:0xE4 scope:global align:4 +isSuckArriveWait__Q24Game5OnyonFv = .text:0x80175570; // type:function size:0x28 scope:global align:4 +setType__Q24Game5OnyonFi = .text:0x80175598; // type:function size:0x68C scope:global align:4 +__dt__Q23efx13TChasePosYRotFv = .text:0x80175C24; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx8TForeverFv = .text:0x80175CA8; // type:function size:0x84 scope:weak align:4 +setupTevRegAnim__Q24Game5OnyonFi = .text:0x80175D2C; // type:function size:0xD0 scope:global align:4 +stimulate__Q24Game5OnyonFRQ24Game11Interaction = .text:0x80175DFC; // type:function size:0x74 scope:global align:4 +actOnyon__Q24Game18InteractSuckArriveFPQ24Game5Onyon = .text:0x80175E70; // type:function size:0x158 scope:global align:4 +needShadow__Q24Game5OnyonFv = .text:0x80175FC8; // type:function size:0x8 scope:global align:4 +getShadowParam__Q24Game5OnyonFRQ24Game11ShadowParam = .text:0x80175FD0; // type:function size:0xA4 scope:global align:4 +sound_culling__Q24Game5OnyonFv = .text:0x80176074; // type:function size:0x34 scope:global align:4 +actOnyon__Q24Game16InteractSuckDoneFPQ24Game5Onyon = .text:0x801760A8; // type:function size:0xDBC scope:global align:4 +startPropera__Q24Game5OnyonFv = .text:0x80176E64; // type:function size:0xC scope:global align:4 +stopPropera__Q24Game5OnyonFv = .text:0x80176E70; // type:function size:0xC scope:global align:4 +doDirectDraw__Q24Game5OnyonFR8Graphics = .text:0x80176E7C; // type:function size:0x16C scope:global align:4 +onInit__Q24Game5OnyonFPQ24Game15CreatureInitArg = .text:0x80176FE8; // type:function size:0x34 scope:global align:4 +onKill__Q24Game5OnyonFPQ24Game15CreatureKillArg = .text:0x8017701C; // type:function size:0x4 scope:global align:4 +onSetPosition__Q24Game5OnyonFv = .text:0x80177020; // type:function size:0x23C scope:global align:4 +setSpotState__Q24Game5OnyonFQ34Game5Onyon10cSpotState = .text:0x8017725C; // type:function size:0x110 scope:global align:4 +getSuckPos__Q24Game5OnyonFv = .text:0x8017736C; // type:function size:0xAC scope:global align:4 +getGoalPos__Q24Game5OnyonFv = .text:0x80177418; // type:function size:0xD8 scope:global align:4 +doAI__Q24Game5OnyonFv = .text:0x801774F0; // type:function size:0x318 scope:global align:4 +forceClose__Q24Game5OnyonFv = .text:0x80177808; // type:function size:0x78 scope:global align:4 +do_updateLOD__Q24Game5OnyonFv = .text:0x80177880; // type:function size:0x78 scope:global align:4 +getLODCylinder__Q24Game5OnyonFRQ23Sys8Cylinder = .text:0x801778F8; // type:function size:0x64 scope:global align:4 +do_doAnimation__Q24Game5OnyonFv = .text:0x8017795C; // type:function size:0x470 scope:global align:4 +getSound_PosPtr__Q24Game8BaseItemFv = .text:0x80177DCC; // type:function size:0x8 scope:weak align:4 +startWaitMotion__Q24Game5OnyonFv = .text:0x80177DD4; // type:function size:0x198 scope:global align:4 +onKeyEvent_UFO__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x80177F6C; // type:function size:0x78 scope:global align:4 +getFlagSetPos__Q24Game5OnyonFv = .text:0x80177FE4; // type:function size:0x13C scope:global align:4 +onKeyEvent__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x80178120; // type:function size:0x4C scope:global align:4 +vsChargePikmin__Q24Game5OnyonFv = .text:0x8017816C; // type:function size:0xAC scope:global align:4 +onKeyEvent_Onyon__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x80178218; // type:function size:0x648 scope:global align:4 +doEmit__Q24Game5OnyonFPQ24Game8Creatureb = .text:0x80178860; // type:function size:0x298 scope:global align:4 +getLegPart__Q24Game5OnyonFi = .text:0x80178AF8; // type:function size:0xA0 scope:global align:4 +getFootPart__Q24Game5OnyonFi = .text:0x80178B98; // type:function size:0xC0 scope:global align:4 +makeTrMatrix__Q24Game5OnyonFv = .text:0x80178C58; // type:function size:0x12C scope:global align:4 +changeMaterial__Q24Game5OnyonFv = .text:0x80178D84; // type:function size:0x138 scope:global align:4 +setSpotEffect__Q24Game5OnyonFb = .text:0x80178EBC; // type:function size:0x1D4 scope:global align:4 +setSpotEffectActive__Q24Game5OnyonFb = .text:0x80179090; // type:function size:0x134 scope:global align:4 +efxSuikomi__Q24Game5OnyonFv = .text:0x801791C4; // type:function size:0x168 scope:global align:4 +efxPafuPafu__Q24Game5OnyonFv = .text:0x8017932C; // type:function size:0x1A0 scope:global align:4 +efxPafuKira__Q24Game5OnyonFv = .text:0x801794CC; // type:function size:0xB0 scope:global align:4 +getStoreCount__Q24Game5OnyonFv = .text:0x8017957C; // type:function size:0x2C scope:global align:4 +enterPiki__Q24Game5OnyonFPQ24Game4Piki = .text:0x801795A8; // type:function size:0x244 scope:global align:4 +exitPikis__Q24Game5OnyonFii = .text:0x801797EC; // type:function size:0x48 scope:global align:4 +exitPiki__Q24Game5OnyonFv = .text:0x80179834; // type:function size:0x454 scope:global align:4 +insideAccessArea__Q24Game5OnyonFR10Vector3 = .text:0x80179C88; // type:function size:0xB8 scope:global align:4 +generatorBirth__Q34Game9ItemOnyon3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x80179D40; // type:function size:0x11C scope:global align:4 +setupSoundViewerAndBas__Q34Game9ItemOnyon3MgrFv = .text:0x80179E5C; // type:function size:0x4 scope:global align:4 +getInEnd_UFO__Q24Game5OnyonFv = .text:0x80179E60; // type:function size:0xC4 scope:global align:4 +getInStart_UFO__Q24Game5OnyonFv = .text:0x80179F24; // type:function size:0x168 scope:global align:4 +getOutStart_UFO__Q24Game5OnyonFv = .text:0x8017A08C; // type:function size:0xC4 scope:global align:4 +__ct__Q28SysShape8AnimatorFv = .text:0x8017A150; // type:function size:0x34 scope:weak align:4 +getPMotionSpeed__Q24Game5OnyonFi = .text:0x8017A184; // type:function size:0x7C scope:global align:4 +getPAnimator__Q24Game5OnyonFi = .text:0x8017A200; // type:function size:0x7C scope:global align:4 +update_pmotions__Q24Game5OnyonFv = .text:0x8017A27C; // type:function size:0x198 scope:global align:4 +initDependency__Q34Game9ItemOnyon3MgrFv = .text:0x8017A414; // type:function size:0x1E8 scope:global align:4 +initDependency__Q24Game8BaseItemFv = .text:0x8017A5FC; // type:function size:0x4 scope:weak align:4 +generatorGetShape__Q34Game9ItemOnyon3MgrFPQ24Game11GenItemParm = .text:0x8017A600; // type:function size:0x4C scope:global align:4 +generatorNewItemParm__Q34Game9ItemOnyon3MgrFv = .text:0x8017A64C; // type:function size:0x54 scope:global align:4 +generatorWrite__Q34Game9ItemOnyon3MgrFR6StreamPQ24Game11GenItemParm = .text:0x8017A6A0; // type:function size:0x8C scope:global align:4 +generatorRead__Q34Game9ItemOnyon3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x8017A72C; // type:function size:0x78 scope:global align:4 +__ct__Q34Game9ItemOnyon3MgrFv = .text:0x8017A7A4; // type:function size:0x188 scope:global align:4 +__dt__28NodeObjectMgrFv = .text:0x8017A92C; // type:function size:0xC8 scope:weak align:4 +__dt__26TObjectNodeFv = .text:0x8017A9F4; // type:function size:0x60 scope:weak align:4 +__dt__24ObjectMgrFv = .text:0x8017AA54; // type:function size:0x88 scope:weak align:4 +__dt__24ContainerFv = .text:0x8017AADC; // type:function size:0x70 scope:weak align:4 +__dt__Q34Game9ItemOnyon3MgrFv = .text:0x8017AB4C; // type:function size:0x11C scope:global align:4 +on_movie_end__Q24Game5OnyonFb = .text:0x8017AC68; // type:function size:0x254 scope:global align:4 +birth__Q34Game9ItemOnyon3MgrFii = .text:0x8017AEBC; // type:function size:0xBC0 scope:global align:4 +getOnyon__Q34Game9ItemOnyon3MgrFi = .text:0x8017BA7C; // type:function size:0x60 scope:global align:4 +init__Q34Game9ItemOnyon3MgrFv = .text:0x8017BADC; // type:function size:0x20 scope:global align:4 +load__Q34Game9ItemOnyon3MgrFv = .text:0x8017BAFC; // type:function size:0x528 scope:global align:4 +generatorGetID__Q34Game9ItemOnyon3MgrFv = .text:0x8017C024; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game9ItemOnyon3MgrFv = .text:0x8017C030; // type:function size:0xC scope:weak align:4 +doAnimation__Q34Game9ItemOnyon3MgrFv = .text:0x8017C03C; // type:function size:0x2C scope:weak align:4 +doEntry__Q34Game9ItemOnyon3MgrFv = .text:0x8017C068; // type:function size:0x2C scope:weak align:4 +doSetView__Q34Game9ItemOnyon3MgrFi = .text:0x8017C094; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q34Game9ItemOnyon3MgrFv = .text:0x8017C0C0; // type:function size:0x2C scope:weak align:4 +doSimulation__Q34Game9ItemOnyon3MgrFf = .text:0x8017C0EC; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q34Game9ItemOnyon3MgrFR8Graphics = .text:0x8017C118; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game11BaseItemMgrFv = .text:0x8017C144; // type:function size:0x4 scope:weak align:4 +setup__Q24Game11BaseItemMgrFPQ24Game8BaseItem = .text:0x8017C148; // type:function size:0x4 scope:weak align:4 +onLoadResources__Q24Game11BaseItemMgrFv = .text:0x8017C14C; // type:function size:0x4 scope:weak align:4 +loadEverytime__Q24Game11BaseItemMgrFv = .text:0x8017C150; // type:function size:0x8 scope:weak align:4 +onUpdateUseList__Q24Game11BaseItemMgrFPQ24Game11GenItemParmi = .text:0x8017C158; // type:function size:0x4 scope:weak align:4 +getEnd__Q34Game9ItemOnyon3MgrFv = .text:0x8017C15C; // type:function size:0x2C scope:weak align:4 +getEnd__28NodeObjectMgrFv = .text:0x8017C188; // type:function size:0x8 scope:weak align:4 +getStart__Q34Game9ItemOnyon3MgrFv = .text:0x8017C190; // type:function size:0x2C scope:weak align:4 +getStart__28NodeObjectMgrFv = .text:0x8017C1BC; // type:function size:0x8 scope:weak align:4 +getNext__Q34Game9ItemOnyon3MgrFPv = .text:0x8017C1C4; // type:function size:0x2C scope:weak align:4 +getNext__28NodeObjectMgrFPv = .text:0x8017C1F0; // type:function size:0x8 scope:weak align:4 +get__Q34Game9ItemOnyon3MgrFPv = .text:0x8017C1F8; // type:function size:0x2C scope:weak align:4 +get__28NodeObjectMgrFPv = .text:0x8017C224; // type:function size:0x8 scope:weak align:4 +getShapeID__Q24Game11GenItemParmFv = .text:0x8017C22C; // type:function size:0x8 scope:weak align:4 +getName__Q23efx7ArgTypeFv = .text:0x8017C234; // type:function size:0x8 scope:weak align:4 +getID__Q23efx12OnyonSpotArgFv = .text:0x8017C23C; // type:function size:0x14 scope:weak align:4 +getCreatureName__Q24Game5OnyonFv = .text:0x8017C250; // type:function size:0x8 scope:weak align:4 +getCreatureID__Q24Game8BaseItemFv = .text:0x8017C258; // type:function size:0x8 scope:weak align:4 +do_setLODParm__Q24Game8BaseItemFRQ24Game9AILODParm = .text:0x8017C260; // type:function size:0x4 scope:weak align:4 +getMapCollisionRadius__Q24Game8BaseItemFv = .text:0x8017C264; // type:function size:0x8 scope:weak align:4 +interactAttack__Q24Game8BaseItemFRQ24Game14InteractAttack = .text:0x8017C26C; // type:function size:0x8 scope:weak align:4 +interactBreakBridge__Q24Game8BaseItemFRQ24Game19InteractBreakBridge = .text:0x8017C274; // type:function size:0x8 scope:weak align:4 +interactEat__Q24Game8BaseItemFRQ24Game11InteractEat = .text:0x8017C27C; // type:function size:0x8 scope:weak align:4 +interactFlockAttack__Q24Game8BaseItemFRQ24Game19InteractFlockAttack = .text:0x8017C284; // type:function size:0x8 scope:weak align:4 +interactAbsorb__Q24Game8BaseItemFRQ24Game14InteractAbsorb = .text:0x8017C28C; // type:function size:0x8 scope:weak align:4 +interactFue__Q24Game8BaseItemFRQ24Game11InteractFue = .text:0x8017C294; // type:function size:0x8 scope:weak align:4 +interactFarmKarero__Q24Game8BaseItemFRQ24Game18InteractFarmKarero = .text:0x8017C29C; // type:function size:0x8 scope:weak align:4 +interactFarmHaero__Q24Game8BaseItemFRQ24Game17InteractFarmHaero = .text:0x8017C2A4; // type:function size:0x8 scope:weak align:4 +interactGotKey__Q24Game8BaseItemFRQ24Game14InteractGotKey = .text:0x8017C2AC; // type:function size:0x8 scope:weak align:4 +getVectorField__Q24Game8BaseItemFRQ23Sys6SphereR10Vector3 = .text:0x8017C2B4; // type:function size:0x8 scope:weak align:4 +getWorkDistance__Q24Game8BaseItemFRQ23Sys6Sphere = .text:0x8017C2BC; // type:function size:0x8 scope:weak align:4 +bounceCallback__Q24Game8BaseItemFPQ23Sys8Triangle = .text:0x8017C2C4; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game8BaseItemFRQ24Game9CollEvent = .text:0x8017C2C8; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game8BaseItemFRQ24Game9PlatEvent = .text:0x8017C2CC; // type:function size:0x4 scope:weak align:4 +updateBoundSphere__Q24Game8BaseItemFv = .text:0x8017C2D0; // type:function size:0x4 scope:weak align:4 +getBoundingSphere__Q24Game8BaseItemFRQ23Sys6Sphere = .text:0x8017C2D4; // type:function size:0x24 scope:weak align:4 +onSetPosition__Q24Game8BaseItemFR10Vector3 = .text:0x8017C2F8; // type:function size:0x44 scope:weak align:4 +onSetPosition__Q24Game8BaseItemFv = .text:0x8017C33C; // type:function size:0x4 scope:weak align:4 +getVelocity__Q24Game8BaseItemFv = .text:0x8017C340; // type:function size:0x1C scope:weak align:4 +getVelocityAt__Q24Game8BaseItemFR10Vector3R10Vector3 = .text:0x8017C35C; // type:function size:0x14 scope:weak align:4 +__dt__Q23efx8TPodKiraFv = .text:0x8017C370; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TPodOpenBFv = .text:0x8017C40C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TPodOpenAFv = .text:0x8017C4A8; // type:function size:0x9C scope:weak align:4 +doExecuteEmitterOperation__Q23efx8TForeverFP14JPABaseEmitter = .text:0x8017C544; // type:function size:0x4 scope:weak align:4 +__dt__Q23efx10TUfoGasOutFv = .text:0x8017C548; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TUfoGasInFv = .text:0x8017C5E4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TUfoPodOpenSuckFv = .text:0x8017C680; // type:function size:0x9C scope:weak align:4 +getName__Q34Game12ItemPikihead7InitArgFv = .text:0x8017C71C; // type:function size:0xC scope:weak align:4 +getName__Q24Game11ItemInitArgFv = .text:0x8017C728; // type:function size:0xC scope:weak align:4 +resetMgr__28NodeObjectMgrFv = .text:0x8017C734; // type:function size:0x18 scope:weak align:4 +doAnimation__24ObjectMgrFv = .text:0x8017C74C; // type:function size:0x1E4 scope:weak align:4 +doEntry__24ObjectMgrFv = .text:0x8017C930; // type:function size:0x1E4 scope:weak align:4 +doSetView__24ObjectMgrFi = .text:0x8017CB14; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__24ObjectMgrFv = .text:0x8017CD08; // type:function size:0x1E4 scope:weak align:4 +doSimulation__24ObjectMgrFf = .text:0x8017CEEC; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__24ObjectMgrFR8Graphics = .text:0x8017D0E0; // type:function size:0x1F4 scope:weak align:4 +getObject__24ContainerFPv = .text:0x8017D2D4; // type:function size:0x2C scope:weak align:4 +getAt__24ContainerFi = .text:0x8017D300; // type:function size:0x8 scope:weak align:4 +getTo__24ContainerFv = .text:0x8017D308; // type:function size:0x8 scope:weak align:4 +__sinit_onyonMgr_cpp = .text:0x8017D310; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx8TForeverFv = .text:0x8017D338; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TUfoPodOpenSuckFv = .text:0x8017D340; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TUfoGasInFv = .text:0x8017D348; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TUfoGasOutFv = .text:0x8017D350; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TPodOpenAFv = .text:0x8017D358; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TPodOpenBFv = .text:0x8017D360; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TPodKiraFv = .text:0x8017D368; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game5OnyonFRCQ28SysShape8KeyEvent = .text:0x8017D370; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__28NodeObjectMgrFv = .text:0x8017D378; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__24ObjectMgrFR8Graphics = .text:0x8017D380; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__24ObjectMgrFf = .text:0x8017D388; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__24ObjectMgrFv = .text:0x8017D390; // type:function size:0x8 scope:weak align:4 +@28@doSetView__24ObjectMgrFi = .text:0x8017D398; // type:function size:0x8 scope:weak align:4 +@28@doEntry__24ObjectMgrFv = .text:0x8017D3A0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__24ObjectMgrFv = .text:0x8017D3A8; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q34Game9ItemOnyon3MgrFv = .text:0x8017D3B0; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q34Game9ItemOnyon3MgrFv = .text:0x8017D3B8; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q34Game9ItemOnyon3MgrFPv = .text:0x8017D3C0; // type:function size:0x8 scope:weak align:4 +@48@get__Q34Game9ItemOnyon3MgrFPv = .text:0x8017D3C8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game9ItemOnyon3MgrFv = .text:0x8017D3D0; // type:function size:0x8 scope:weak align:4 +getName__Q24Game7ObjTypeFUs = .text:0x8017D3D8; // type:function size:0x54 scope:global align:4 +draw2d__Q24Game9NaviStateFR14J2DGrafContextRi = .text:0x8017D42C; // type:function size:0x4 scope:global align:4 +transit__Q24Game7NaviFSMFPQ24Game4NaviiPQ24Game8StateArg = .text:0x8017D430; // type:function size:0x84 scope:global align:4 +init__Q24Game7NaviFSMFPQ24Game4Navi = .text:0x8017D4B4; // type:function size:0x820 scope:global align:4 +init__Q24Game18NaviCarryBombStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017DCD4; // type:function size:0xD8 scope:global align:4 +transit__Q24Game22FSMStateFPQ24Game4NaviiPQ24Game8StateArg = .text:0x8017DDAC; // type:function size:0x30 scope:weak align:4 +updateMatrix__Q24Game18NaviCarryBombStateFPQ24Game4Navi = .text:0x8017DDDC; // type:function size:0x148 scope:global align:4 +exec__Q24Game18NaviCarryBombStateFPQ24Game4Navi = .text:0x8017DF24; // type:function size:0x24C scope:global align:4 +onKeyEvent__Q24Game18NaviCarryBombStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8017E170; // type:function size:0x17C scope:global align:4 +cleanup__Q24Game18NaviCarryBombStateFPQ24Game4Navi = .text:0x8017E2EC; // type:function size:0x2C scope:global align:4 +init__Q24Game14NaviStuckStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017E318; // type:function size:0x58 scope:global align:4 +exec__Q24Game14NaviStuckStateFPQ24Game4Navi = .text:0x8017E370; // type:function size:0x4BC scope:global align:4 +cleanup__Q24Game14NaviStuckStateFPQ24Game4Navi = .text:0x8017E82C; // type:function size:0x4 scope:global align:4 +init__Q24Game13NaviWalkStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017E830; // type:function size:0xDC scope:global align:4 +exec__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017E90C; // type:function size:0x634 scope:global align:4 +needYChangeMotion__Q24Game9NaviStateFv = .text:0x8017EF40; // type:function size:0x8 scope:weak align:4 +cleanup__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017EF48; // type:function size:0x4 scope:global align:4 +collisionCallback__Q24Game13NaviWalkStateFPQ24Game4NaviRQ24Game9CollEvent = .text:0x8017EF4C; // type:function size:0x198 scope:global align:4 +execAI__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F0E4; // type:function size:0x94 scope:global align:4 +checkAI__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F178; // type:function size:0x23C scope:global align:4 +onKeyEvent__Q24Game13NaviWalkStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8017F3B4; // type:function size:0x100 scope:global align:4 +wallCallback__Q24Game13NaviWalkStateFPQ24Game4NaviR10Vector3 = .text:0x8017F4B4; // type:function size:0x34 scope:global align:4 +initAI_wait__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F4E8; // type:function size:0x48 scope:global align:4 +execAI_wait__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F530; // type:function size:0x1C4 scope:global align:4 +initAI_animation__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F6F4; // type:function size:0x26C scope:global align:4 +execAI_animation__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F960; // type:function size:0x80 scope:global align:4 +execAI_attack__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017F9E0; // type:function size:0x240 scope:global align:4 +initAI_escape__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017FC20; // type:function size:0x8C scope:global align:4 +execAI_escape__Q24Game13NaviWalkStateFPQ24Game4Navi = .text:0x8017FCAC; // type:function size:0x2B4 scope:global align:4 +blendVelocity__Q24Game13NaviWalkStateFPQ24Game4NaviR10Vector3 = .text:0x8017FF60; // type:function size:0x34 scope:global align:4 +init__Q24Game15NaviChangeStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8017FF94; // type:function size:0xA8 scope:global align:4 +onKeyEvent__Q24Game15NaviChangeStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018003C; // type:function size:0x58 scope:global align:4 +exec__Q24Game15NaviChangeStateFPQ24Game4Navi = .text:0x80180094; // type:function size:0xAC scope:global align:4 +cleanup__Q24Game15NaviChangeStateFPQ24Game4Navi = .text:0x80180140; // type:function size:0x4 scope:global align:4 +init__Q24Game15NaviFollowStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80180144; // type:function size:0x16C scope:global align:4 +onKeyEvent__Q24Game15NaviFollowStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x801802B0; // type:function size:0x174 scope:global align:4 +exec__Q24Game15NaviFollowStateFPQ24Game4Navi = .text:0x80180424; // type:function size:0x9A0 scope:global align:4 +cleanup__Q24Game15NaviFollowStateFPQ24Game4Navi = .text:0x80180DC4; // type:function size:0x4 scope:global align:4 +__ct__Q24Game14NaviPunchStateFv = .text:0x80180DC8; // type:function size:0x40 scope:global align:4 +init__Q24Game14NaviPunchStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80180E08; // type:function size:0xD4 scope:global align:4 +hitCallback__Q24Game14NaviPunchStateFP8CollPart = .text:0x80180EDC; // type:function size:0x300 scope:global align:4 +onKeyEvent__Q24Game14NaviPunchStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x801811DC; // type:function size:0x3A4 scope:global align:4 +exec__Q24Game14NaviPunchStateFPQ24Game4Navi = .text:0x80181580; // type:function size:0x17C scope:global align:4 +cleanup__Q24Game14NaviPunchStateFPQ24Game4Navi = .text:0x801816FC; // type:function size:0x4 scope:global align:4 +init__Q24Game17NaviPathMoveStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80181700; // type:function size:0xA0 scope:global align:4 +exec__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x801817A0; // type:function size:0xD8 scope:global align:4 +cleanup__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181878; // type:function size:0x44 scope:global align:4 +initPathfinding__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x801818BC; // type:function size:0x1BC scope:global align:4 +execPathfinding__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181A78; // type:function size:0x90 scope:global align:4 +execMove__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181B08; // type:function size:0x15C scope:global align:4 +execMoveGoal__Q24Game17NaviPathMoveStateFPQ24Game4Navi = .text:0x80181C64; // type:function size:0x8 scope:global align:4 +init__Q24Game13NaviNukuStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80181C6C; // type:function size:0xE4 scope:global align:4 +exec__Q24Game13NaviNukuStateFPQ24Game4Navi = .text:0x80181D50; // type:function size:0x18C scope:global align:4 +cleanup__Q24Game13NaviNukuStateFPQ24Game4Navi = .text:0x80181EDC; // type:function size:0x2C scope:global align:4 +onKeyEvent__Q24Game13NaviNukuStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80181F08; // type:function size:0x178 scope:global align:4 +init__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80182080; // type:function size:0x240 scope:global align:4 +wallCallback__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviR10Vector3 = .text:0x801822C0; // type:function size:0x10 scope:global align:4 +ignoreAtari__Q24Game19NaviNukuAdjustStateFPQ24Game8Creature = .text:0x801822D0; // type:function size:0x64 scope:global align:4 +collisionCallback__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviRQ24Game9CollEvent = .text:0x80182334; // type:function size:0xC4 scope:global align:4 +exec__Q24Game19NaviNukuAdjustStateFPQ24Game4Navi = .text:0x801823F8; // type:function size:0x784 scope:global align:4 +cleanup__Q24Game19NaviNukuAdjustStateFPQ24Game4Navi = .text:0x80182B7C; // type:function size:0x50 scope:global align:4 +init__Q24Game13NaviDopeStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80182BCC; // type:function size:0x5EC scope:global align:4 +exec__Q24Game13NaviDopeStateFPQ24Game4Navi = .text:0x801831B8; // type:function size:0xA0 scope:global align:4 +cleanup__Q24Game13NaviDopeStateFPQ24Game4Navi = .text:0x80183258; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game13NaviDopeStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018325C; // type:function size:0x4C scope:global align:4 +init__Q24Game14NaviClimbStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801832A8; // type:function size:0xE0 scope:global align:4 +prepare__Q24Game14NaviClimbStateFPQ24Game4Navi = .text:0x80183388; // type:function size:0xBC scope:global align:4 +exec__Q24Game14NaviClimbStateFPQ24Game4Navi = .text:0x80183444; // type:function size:0x2BC scope:global align:4 +cleanup__Q24Game14NaviClimbStateFPQ24Game4Navi = .text:0x80183700; // type:function size:0x24 scope:global align:4 +init__Q24Game17NaviFallMeckStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80183724; // type:function size:0xB8 scope:global align:4 +exec__Q24Game17NaviFallMeckStateFPQ24Game4Navi = .text:0x801837DC; // type:function size:0x9C scope:global align:4 +cleanup__Q24Game17NaviFallMeckStateFPQ24Game4Navi = .text:0x80183878; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game17NaviFallMeckStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018387C; // type:function size:0x9C scope:global align:4 +bounceCallback__Q24Game17NaviFallMeckStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x80183918; // type:function size:0x268 scope:global align:4 +init__Q24Game14NaviFlickStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80183B80; // type:function size:0x12C scope:global align:4 +exec__Q24Game14NaviFlickStateFPQ24Game4Navi = .text:0x80183CAC; // type:function size:0x118 scope:global align:4 +cleanup__Q24Game14NaviFlickStateFPQ24Game4Navi = .text:0x80183DC4; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game14NaviFlickStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80183DC8; // type:function size:0x64 scope:global align:4 +bounceCallback__Q24Game14NaviFlickStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x80183E2C; // type:function size:0x70 scope:global align:4 +init__Q24Game19NaviKokeDamageStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80183E9C; // type:function size:0xC0 scope:global align:4 +exec__Q24Game19NaviKokeDamageStateFPQ24Game4Navi = .text:0x80183F5C; // type:function size:0x208 scope:global align:4 +cleanup__Q24Game19NaviKokeDamageStateFPQ24Game4Navi = .text:0x80184164; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game19NaviKokeDamageStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80184168; // type:function size:0x9C scope:global align:4 +init__Q24Game14NaviSaraiStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80184204; // type:function size:0x6C scope:global align:4 +exec__Q24Game14NaviSaraiStateFPQ24Game4Navi = .text:0x80184270; // type:function size:0x380 scope:global align:4 +cleanup__Q24Game14NaviSaraiStateFPQ24Game4Navi = .text:0x801845F0; // type:function size:0xC scope:global align:4 +init__Q24Game18NaviSaraiExitStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801845FC; // type:function size:0x6C scope:global align:4 +exec__Q24Game18NaviSaraiExitStateFPQ24Game4Navi = .text:0x80184668; // type:function size:0x4C scope:global align:4 +cleanup__Q24Game18NaviSaraiExitStateFPQ24Game4Navi = .text:0x801846B4; // type:function size:0x34 scope:global align:4 +bounceCallback__Q24Game18NaviSaraiExitStateFPQ24Game4NaviPQ23Sys8Triangle = .text:0x801846E8; // type:function size:0x34 scope:global align:4 +init__Q24Game18NaviContainerStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018471C; // type:function size:0x5FC scope:global align:4 +exec__Q24Game18NaviContainerStateFPQ24Game4Navi = .text:0x80184D18; // type:function size:0x270 scope:global align:4 +enterPikis__Q24Game18NaviContainerStateFPQ24Game4Navii = .text:0x80184F88; // type:function size:0x2A0 scope:global align:4 +cleanup__Q24Game18NaviContainerStateFPQ24Game4Navi = .text:0x80185228; // type:function size:0x44 scope:global align:4 +init__Q24Game15NaviAbsorbStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018526C; // type:function size:0x140 scope:global align:4 +exec__Q24Game15NaviAbsorbStateFPQ24Game4Navi = .text:0x801853AC; // type:function size:0xF0 scope:global align:4 +onKeyEvent__Q24Game15NaviAbsorbStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018549C; // type:function size:0x174 scope:global align:4 +cleanup__Q24Game15NaviAbsorbStateFPQ24Game4Navi = .text:0x80185610; // type:function size:0x40 scope:global align:4 +init__Q24Game16NaviDamagedStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80185650; // type:function size:0x84 scope:global align:4 +exec__Q24Game16NaviDamagedStateFPQ24Game4Navi = .text:0x801856D4; // type:function size:0x98 scope:global align:4 +cleanup__Q24Game16NaviDamagedStateFPQ24Game4Navi = .text:0x8018576C; // type:function size:0x28 scope:global align:4 +onKeyEvent__Q24Game16NaviDamagedStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80185794; // type:function size:0x68 scope:global align:4 +init__Q24Game13NaviDeadStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801857FC; // type:function size:0x5C scope:global align:4 +exec__Q24Game13NaviDeadStateFPQ24Game4Navi = .text:0x80185858; // type:function size:0x20 scope:global align:4 +cleanup__Q24Game13NaviDeadStateFPQ24Game4Navi = .text:0x80185878; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game13NaviDeadStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x8018587C; // type:function size:0x40 scope:global align:4 +init__Q24Game15NaviGatherStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x801858BC; // type:function size:0xF8 scope:global align:4 +exec__Q24Game15NaviGatherStateFPQ24Game4Navi = .text:0x801859B4; // type:function size:0x12C scope:global align:4 +cleanup__Q24Game15NaviGatherStateFPQ24Game4Navi = .text:0x80185AE0; // type:function size:0x60 scope:global align:4 +__ct__Q24Game18NaviThrowWaitStateFv = .text:0x80185B40; // type:function size:0xF4 scope:global align:4 +draw2d__Q24Game18NaviThrowWaitStateFR14J2DGrafContextRi = .text:0x80185C34; // type:function size:0x4 scope:global align:4 +resume__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80185C38; // type:function size:0x2C scope:global align:4 +restart__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80185C64; // type:function size:0x34 scope:global align:4 +init__Q24Game18NaviThrowWaitStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80185C98; // type:function size:0x558 scope:global align:4 +onKeyEvent__Q24Game18NaviThrowWaitStateFRCQ28SysShape8KeyEvent = .text:0x801861F0; // type:function size:0x3C scope:global align:4 +doAnimCallback__Q24Game18NaviThrowWaitStateFv = .text:0x8018622C; // type:function size:0x24 scope:global align:4 +lockHangPiki__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80186250; // type:function size:0x84 scope:global align:4 +exec__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x801862D4; // type:function size:0xAE0 scope:global align:4 +findNearestColorPiki__Q24Game18NaviThrowWaitStateFPQ24Game4Navii = .text:0x80186DB4; // type:function size:0x2FC scope:global align:4 +sortPikis__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x801870B0; // type:function size:0x270 scope:global align:4 +cleanup__Q24Game18NaviThrowWaitStateFPQ24Game4Navi = .text:0x80187320; // type:function size:0x68 scope:global align:4 +init__Q24Game14NaviThrowStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80187388; // type:function size:0xC8 scope:global align:4 +onKeyEvent__Q24Game14NaviThrowStateFRCQ28SysShape8KeyEvent = .text:0x80187450; // type:function size:0xD4 scope:global align:4 +exec__Q24Game14NaviThrowStateFPQ24Game4Navi = .text:0x80187524; // type:function size:0xF0 scope:global align:4 +cleanup__Q24Game14NaviThrowStateFPQ24Game4Navi = .text:0x80187614; // type:function size:0x4 scope:global align:4 +init__Q24Game15NaviPelletStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80187618; // type:function size:0x1C0 scope:global align:4 +exec__Q24Game15NaviPelletStateFPQ24Game4Navi = .text:0x801877D8; // type:function size:0x3F8 scope:global align:4 +onKeyEvent__Q24Game15NaviPelletStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80187BD0; // type:function size:0x12C scope:global align:4 +cleanup__Q24Game15NaviPelletStateFPQ24Game4Navi = .text:0x80187CFC; // type:function size:0x80 scope:global align:4 +init__Q24Game17NaviDemo_UfoStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80187D7C; // type:function size:0x48 scope:global align:4 +exec__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80187DC4; // type:function size:0xB0 scope:global align:4 +cleanup__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80187E74; // type:function size:0x4 scope:global align:4 +execGoto__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80187E78; // type:function size:0x17C scope:global align:4 +initSuck__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x80187FF4; // type:function size:0x118 scope:global align:4 +execSuck__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi = .text:0x8018810C; // type:function size:0x120 scope:global align:4 +init__Q24Game20NaviDemo_HoleInStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x8018822C; // type:function size:0x58C scope:global align:4 +exec__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x801887B8; // type:function size:0xA8 scope:global align:4 +onKeyEvent__Q24Game20NaviDemo_HoleInStateFPQ24Game4NaviRCQ28SysShape8KeyEvent = .text:0x80188860; // type:function size:0xC scope:global align:4 +cleanup__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x8018886C; // type:function size:0x4 scope:global align:4 +execGoto__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188870; // type:function size:0x178 scope:global align:4 +initHesitate__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x801889E8; // type:function size:0x60 scope:global align:4 +execHesitate__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188A48; // type:function size:0x16C scope:global align:4 +initFall__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188BB4; // type:function size:0x4 scope:global align:4 +execFall__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi = .text:0x80188BB8; // type:function size:0x8 scope:global align:4 +init__Q24Game16NaviPressedStateFPQ24Game4NaviPQ24Game8StateArg = .text:0x80188BC0; // type:function size:0x144 scope:global align:4 +exec__Q24Game16NaviPressedStateFPQ24Game4Navi = .text:0x80188D04; // type:function size:0x270 scope:global align:4 +cleanup__Q24Game16NaviPressedStateFPQ24Game4Navi = .text:0x80188F74; // type:function size:0x7C scope:global align:4 +pressable__Q24Game16NaviPressedStateFv = .text:0x80188FF0; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game16NaviPressedStateFv = .text:0x80188FF8; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game16NaviPressedStateFv = .text:0x80189000; // type:function size:0x8 scope:weak align:4 +callable__Q24Game9NaviStateFv = .text:0x80189008; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game9NaviStateFv = .text:0x80189010; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15NaviPelletStateFv = .text:0x80189018; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game13NaviDeadStateFv = .text:0x80189020; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game13NaviDeadStateFv = .text:0x80189028; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game13NaviDeadStateFv = .text:0x80189030; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game16NaviDamagedStateFv = .text:0x80189038; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game16NaviDamagedStateFv = .text:0x80189040; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game15NaviAbsorbStateFv = .text:0x80189048; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game15NaviAbsorbStateFv = .text:0x80189050; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game15NaviAbsorbStateFv = .text:0x80189058; // type:function size:0x8 scope:weak align:4 +getSize__Q32og6Screen17DispMemberContenaFv = .text:0x80189060; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberContenaFv = .text:0x80189068; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberContenaFv = .text:0x80189074; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen17DispMemberUfoMenuFv = .text:0x80189088; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen17DispMemberUfoMenuFv = .text:0x80189090; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen17DispMemberUfoMenuFv = .text:0x8018909C; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890B0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890B8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890C4; // type:function size:0x14 scope:weak align:4 +doSetSubMemberAll__Q32og6Screen18DispMemberUfoGroupFv = .text:0x801890D8; // type:function size:0x48 scope:weak align:4 +invincible__Q24Game18NaviContainerStateFv = .text:0x80189120; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game18NaviSaraiExitStateFv = .text:0x80189128; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game14NaviSaraiStateFv = .text:0x80189130; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game19NaviKokeDamageStateFv = .text:0x80189138; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game19NaviKokeDamageStateFv = .text:0x80189140; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game14NaviFlickStateFv = .text:0x80189148; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game14NaviFlickStateFv = .text:0x80189150; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game17NaviFallMeckStateFv = .text:0x80189158; // type:function size:0x8 scope:weak align:4 +getName__Q23efx14ArgDopingSmokeFv = .text:0x80189160; // type:function size:0xC scope:weak align:4 +invincible__Q24Game13NaviDopeStateFv = .text:0x8018916C; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game13NaviNukuStateFv = .text:0x80189174; // type:function size:0x8 scope:weak align:4 +needYChangeMotion__Q24Game15NaviFollowStateFv = .text:0x8018917C; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13NaviWalkStateFv = .text:0x80189184; // type:function size:0x8 scope:weak align:4 +needYChangeMotion__Q24Game13NaviWalkStateFv = .text:0x8018918C; // type:function size:0x8 scope:weak align:4 +vsUsableY__Q24Game14NaviStuckStateFv = .text:0x80189194; // type:function size:0x8 scope:weak align:4 +resume__Q24Game22FSMStateFPQ24Game4Navi = .text:0x8018919C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game22FSMStateFPQ24Game4Navi = .text:0x801891A0; // type:function size:0x4 scope:weak align:4 +create__Q24Game26StateMachineFi = .text:0x801891A4; // type:function size:0x64 scope:weak align:4 +invoke__45Delegate1FP8CollPart = .text:0x80189208; // type:function size:0x30 scope:weak align:4 +invoke__37DelegateFv = .text:0x80189238; // type:function size:0x30 scope:weak align:4 +getCurrID__Q24Game26StateMachineFPQ24Game4Navi = .text:0x80189268; // type:function size:0x1C scope:weak align:4 +registerState__Q24Game26StateMachineFPQ24Game22FSMState = .text:0x80189284; // type:function size:0x84 scope:weak align:4 +__sinit_naviState_cpp = .text:0x80189308; // type:function size:0x28 scope:local align:4 +@60@4@onKeyEvent__Q24Game18NaviThrowWaitStateFRCQ28SysShape8KeyEvent = .text:0x80189330; // type:function size:0x14 scope:weak align:4 +@32@4@onKeyEvent__Q24Game14NaviThrowStateFRCQ28SysShape8KeyEvent = .text:0x80189344; // type:function size:0x14 scope:weak align:4 +dump__Q24Game9PikiStateFv = .text:0x80189358; // type:function size:0x4 scope:global align:4 +getInfo__Q24Game9PikiStateFPc = .text:0x8018935C; // type:function size:0x30 scope:global align:4 +init__Q24Game7PikiFSMFPQ24Game4Piki = .text:0x8018938C; // type:function size:0xB6C scope:global align:4 +transit__Q24Game7PikiFSMFPQ24Game4PikiiPQ24Game8StateArg = .text:0x80189EF8; // type:function size:0x118 scope:global align:4 +transitForce__Q24Game7PikiFSMFPQ24Game4PikiiPQ24Game8StateArg = .text:0x8018A010; // type:function size:0x50 scope:global align:4 +init__Q24Game13PikiWalkStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A060; // type:function size:0x40 scope:global align:4 +exec__Q24Game13PikiWalkStateFPQ24Game4Piki = .text:0x8018A0A0; // type:function size:0x24 scope:global align:4 +cleanup__Q24Game13PikiWalkStateFPQ24Game4Piki = .text:0x8018A0C4; // type:function size:0x4 scope:global align:4 +init__Q24Game17PikiDemoWaitStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A0C8; // type:function size:0x40 scope:global align:4 +exec__Q24Game17PikiDemoWaitStateFPQ24Game4Piki = .text:0x8018A108; // type:function size:0x24 scope:global align:4 +cleanup__Q24Game17PikiDemoWaitStateFPQ24Game4Piki = .text:0x8018A12C; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiCarrotStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A130; // type:function size:0x100 scope:global align:4 +exec__Q24Game15PikiCarrotStateFPQ24Game4Piki = .text:0x8018A230; // type:function size:0x334 scope:global align:4 +cleanup__Q24Game15PikiCarrotStateFPQ24Game4Piki = .text:0x8018A564; // type:function size:0xD8 scope:global align:4 +bounceCallback__Q24Game15PikiCarrotStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018A63C; // type:function size:0x124 scope:global align:4 +collisionCallback__Q24Game15PikiCarrotStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018A760; // type:function size:0x4 scope:global align:4 +init__Q24Game18PikiSwallowedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A764; // type:function size:0xD8 scope:global align:4 +exec__Q24Game18PikiSwallowedStateFPQ24Game4Piki = .text:0x8018A83C; // type:function size:0x74 scope:global align:4 +transit__Q24Game22FSMStateFPQ24Game4PikiiPQ24Game8StateArg = .text:0x8018A8B0; // type:function size:0x30 scope:weak align:4 +cleanup__Q24Game18PikiSwallowedStateFPQ24Game4Piki = .text:0x8018A8E0; // type:function size:0x54 scope:global align:4 +init__Q24Game15PikiHoleinStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018A934; // type:function size:0x20C scope:global align:4 +exec__Q24Game15PikiHoleinStateFPQ24Game4Piki = .text:0x8018AB40; // type:function size:0x1C0 scope:global align:4 +cleanup__Q24Game15PikiHoleinStateFPQ24Game4Piki = .text:0x8018AD00; // type:function size:0x4 scope:global align:4 +init__Q24Game19PikiFountainonStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018AD04; // type:function size:0x1F4 scope:global align:4 +exec__Q24Game19PikiFountainonStateFPQ24Game4Piki = .text:0x8018AEF8; // type:function size:0x1A0 scope:global align:4 +cleanup__Q24Game19PikiFountainonStateFPQ24Game4Piki = .text:0x8018B098; // type:function size:0x4 scope:global align:4 +init__Q24Game13PikiTaneStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018B09C; // type:function size:0xC8 scope:global align:4 +exec__Q24Game13PikiTaneStateFPQ24Game4Piki = .text:0x8018B164; // type:function size:0x38 scope:global align:4 +cleanup__Q24Game13PikiTaneStateFPQ24Game4Piki = .text:0x8018B19C; // type:function size:0x34 scope:global align:4 +bounceCallback__Q24Game13PikiTaneStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018B1D0; // type:function size:0x64 scope:global align:4 +init__Q24Game15PikiNukareStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018B234; // type:function size:0x114 scope:global align:4 +soft_transittable__Q24Game15PikiNukareStateFi = .text:0x8018B348; // type:function size:0xC scope:global align:4 +exec__Q24Game15PikiNukareStateFPQ24Game4Piki = .text:0x8018B354; // type:function size:0x150 scope:global align:4 +onKeyEvent__Q24Game15PikiNukareStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018B4A4; // type:function size:0x20C scope:global align:4 +cleanup__Q24Game15PikiNukareStateFPQ24Game4Piki = .text:0x8018B6B0; // type:function size:0x10 scope:global align:4 +init__Q24Game13PikiDopeStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018B6C0; // type:function size:0xB8 scope:global align:4 +onFlute__Q24Game13PikiDopeStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018B778; // type:function size:0x8 scope:global align:4 +exec__Q24Game13PikiDopeStateFPQ24Game4Piki = .text:0x8018B780; // type:function size:0x18C scope:global align:4 +onKeyEvent__Q24Game13PikiDopeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018B90C; // type:function size:0xD8 scope:global align:4 +cleanup__Q24Game13PikiDopeStateFPQ24Game4Piki = .text:0x8018B9E4; // type:function size:0x4 scope:global align:4 +soft_transittable__Q24Game14PikiPanicStateFi = .text:0x8018B9E8; // type:function size:0x24 scope:global align:4 +transittable__Q24Game14PikiPanicStateFi = .text:0x8018BA0C; // type:function size:0x70 scope:global align:4 +init__Q24Game14PikiPanicStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018BA7C; // type:function size:0x280 scope:global align:4 +exec__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018BCFC; // type:function size:0x260 scope:global align:4 +onKeyEvent__Q24Game14PikiPanicStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018BF5C; // type:function size:0x48 scope:global align:4 +panicRun__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018BFA4; // type:function size:0x2BC scope:global align:4 +panicLobster__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018C260; // type:function size:0x2D4 scope:global align:4 +cleanup__Q24Game14PikiPanicStateFPQ24Game4Piki = .text:0x8018C534; // type:function size:0xE4 scope:global align:4 +bounceCallback__Q24Game14PikiPanicStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018C618; // type:function size:0xC scope:global align:4 +onFlute__Q24Game14PikiPanicStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018C624; // type:function size:0x11C scope:global align:4 +init__Q24Game13PikiDeadStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018C740; // type:function size:0x4 scope:global align:4 +exec__Q24Game13PikiDeadStateFPQ24Game4Piki = .text:0x8018C744; // type:function size:0x4 scope:global align:4 +transittable__Q24Game14PikiDyingStateFi = .text:0x8018C748; // type:function size:0x10 scope:global align:4 +init__Q24Game14PikiDyingStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018C758; // type:function size:0xB4 scope:global align:4 +exec__Q24Game14PikiDyingStateFPQ24Game4Piki = .text:0x8018C80C; // type:function size:0xDC scope:global align:4 +cleanup__Q24Game14PikiDyingStateFPQ24Game4Piki = .text:0x8018C8E8; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game14PikiDyingStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018C8EC; // type:function size:0x64 scope:global align:4 +soft_transittable__Q24Game19PikiDenkiDyingStateFi = .text:0x8018C950; // type:function size:0x10 scope:global align:4 +transittable__Q24Game19PikiDenkiDyingStateFi = .text:0x8018C960; // type:function size:0x10 scope:global align:4 +init__Q24Game19PikiDenkiDyingStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018C970; // type:function size:0x84 scope:global align:4 +exec__Q24Game19PikiDenkiDyingStateFPQ24Game4Piki = .text:0x8018C9F4; // type:function size:0x138 scope:global align:4 +cleanup__Q24Game19PikiDenkiDyingStateFPQ24Game4Piki = .text:0x8018CB2C; // type:function size:0x4 scope:global align:4 +soft_transittable__Q24Game16PikiPressedStateFi = .text:0x8018CB30; // type:function size:0x10 scope:global align:4 +transittable__Q24Game16PikiPressedStateFi = .text:0x8018CB40; // type:function size:0x10 scope:global align:4 +init__Q24Game16PikiPressedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018CB50; // type:function size:0xC8 scope:global align:4 +exec__Q24Game16PikiPressedStateFPQ24Game4Piki = .text:0x8018CC18; // type:function size:0x10C scope:global align:4 +cleanup__Q24Game16PikiPressedStateFPQ24Game4Piki = .text:0x8018CD24; // type:function size:0x34 scope:global align:4 +init__Q24Game15PikiLookAtStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018CD58; // type:function size:0x84 scope:global align:4 +onFlute__Q24Game15PikiLookAtStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018CDDC; // type:function size:0x4 scope:global align:4 +exec__Q24Game15PikiLookAtStateFPQ24Game4Piki = .text:0x8018CDE0; // type:function size:0x180 scope:global align:4 +onKeyEvent__Q24Game15PikiLookAtStateFRCQ28SysShape8KeyEvent = .text:0x8018CF60; // type:function size:0x28 scope:global align:4 +cleanup__Q24Game15PikiLookAtStateFPQ24Game4Piki = .text:0x8018CF88; // type:function size:0x4 scope:global align:4 +init__Q24Game17PikiAutoNukiStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018CF8C; // type:function size:0x1FC scope:global align:4 +exec__Q24Game17PikiAutoNukiStateFPQ24Game4Piki = .text:0x8018D188; // type:function size:0x300 scope:global align:4 +onKeyEvent__Q24Game17PikiAutoNukiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018D488; // type:function size:0x28 scope:global align:4 +cleanup__Q24Game17PikiAutoNukiStateFPQ24Game4Piki = .text:0x8018D4B0; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiGoHangStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018D4B4; // type:function size:0x64 scope:global align:4 +exec__Q24Game15PikiGoHangStateFPQ24Game4Piki = .text:0x8018D518; // type:function size:0x1C8 scope:global align:4 +cleanup__Q24Game15PikiGoHangStateFPQ24Game4Piki = .text:0x8018D6E0; // type:function size:0x34 scope:global align:4 +onKeyEvent__Q24Game15PikiHangedStateFRCQ28SysShape8KeyEvent = .text:0x8018D714; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiHangedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018D718; // type:function size:0xC4 scope:global align:4 +exec__Q24Game15PikiHangedStateFPQ24Game4Piki = .text:0x8018D7DC; // type:function size:0x6C scope:global align:4 +cleanup__Q24Game15PikiHangedStateFPQ24Game4Piki = .text:0x8018D848; // type:function size:0x34 scope:global align:4 +ignoreAtari__Q24Game15PikiHangedStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018D87C; // type:function size:0x6C scope:global align:4 +onKeyEvent__Q24Game20PikiWaterHangedStateFRCQ28SysShape8KeyEvent = .text:0x8018D8E8; // type:function size:0x4 scope:global align:4 +init__Q24Game20PikiWaterHangedStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018D8EC; // type:function size:0xC4 scope:global align:4 +exec__Q24Game20PikiWaterHangedStateFPQ24Game4Piki = .text:0x8018D9B0; // type:function size:0xA8 scope:global align:4 +cleanup__Q24Game20PikiWaterHangedStateFPQ24Game4Piki = .text:0x8018DA58; // type:function size:0x34 scope:global align:4 +ignoreAtari__Q24Game20PikiWaterHangedStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018DA8C; // type:function size:0x6C scope:global align:4 +init__Q24Game16PikiHipDropStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018DAF8; // type:function size:0x70 scope:global align:4 +exec__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018DB68; // type:function size:0x3C8 scope:global align:4 +cleanup__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018DF30; // type:function size:0x38 scope:global align:4 +onKeyEvent__Q24Game16PikiHipDropStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018DF68; // type:function size:0x4 scope:global align:4 +bounceCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018DF6C; // type:function size:0x2C scope:global align:4 +collisionCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018DF98; // type:function size:0x2E0 scope:global align:4 +platCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8018E278; // type:function size:0x2C scope:global align:4 +dosin__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018E2A4; // type:function size:0xBC scope:global align:4 +earthquake__Q24Game16PikiHipDropStateFPQ24Game4Piki = .text:0x8018E360; // type:function size:0x108 scope:global align:4 +init__Q24Game17PikiFallMeckStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018E468; // type:function size:0x88 scope:global align:4 +exec__Q24Game17PikiFallMeckStateFPQ24Game4Piki = .text:0x8018E4F0; // type:function size:0x38 scope:global align:4 +cleanup__Q24Game17PikiFallMeckStateFPQ24Game4Piki = .text:0x8018E528; // type:function size:0x4 scope:global align:4 +collisionCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018E52C; // type:function size:0x4 scope:global align:4 +platCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8018E530; // type:function size:0x34 scope:global align:4 +bounceCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018E564; // type:function size:0x54C scope:global align:4 +init__Q24Game16PikiSuikomiStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018EAB0; // type:function size:0xA0 scope:global align:4 +exec__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EB50; // type:function size:0xEC scope:global align:4 +execMouth__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EC3C; // type:function size:0x1FC scope:global align:4 +onKeyEvent__Q24Game16PikiSuikomiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8018EE38; // type:function size:0x38 scope:global align:4 +execString__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EE70; // type:function size:0x108 scope:global align:4 +ignoreAtari__Q24Game16PikiSuikomiStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018EF78; // type:function size:0x14 scope:global align:4 +execStomach__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018EF8C; // type:function size:0x1C0 scope:global align:4 +cleanup__Q24Game16PikiSuikomiStateFPQ24Game4Piki = .text:0x8018F14C; // type:function size:0x48 scope:global align:4 +stopEffect__Q24Game15PikiFlyingStateFv = .text:0x8018F194; // type:function size:0x4 scope:global align:4 +restartEffect__Q24Game15PikiFlyingStateFv = .text:0x8018F198; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018F19C; // type:function size:0x124 scope:global align:4 +bounceCallback__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x8018F2C0; // type:function size:0x74 scope:global align:4 +collisionCallback__Q24Game15PikiFlyingStateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8018F334; // type:function size:0x328 scope:global align:4 +ignoreAtari__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ24Game8Creature = .text:0x8018F65C; // type:function size:0x6C scope:global align:4 +exec__Q24Game15PikiFlyingStateFPQ24Game4Piki = .text:0x8018F6C8; // type:function size:0x3CC scope:global align:4 +cleanup__Q24Game15PikiFlyingStateFPQ24Game4Piki = .text:0x8018FA94; // type:function size:0x68 scope:global align:4 +init__Q24Game14PikiFlickStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8018FAFC; // type:function size:0x170 scope:global align:4 +onFlute__Q24Game14PikiFlickStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8018FC6C; // type:function size:0x18 scope:global align:4 +exec__Q24Game14PikiFlickStateFPQ24Game4Piki = .text:0x8018FC84; // type:function size:0x208 scope:global align:4 +onKeyEvent__Q24Game14PikiFlickStateFRCQ28SysShape8KeyEvent = .text:0x8018FE8C; // type:function size:0x124 scope:global align:4 +cleanup__Q24Game14PikiFlickStateFPQ24Game4Piki = .text:0x8018FFB0; // type:function size:0xAC scope:global align:4 +init__Q24Game13PikiBlowStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8019005C; // type:function size:0x1A4 scope:global align:4 +exec__Q24Game13PikiBlowStateFPQ24Game4Piki = .text:0x80190200; // type:function size:0x140 scope:global align:4 +cleanup__Q24Game13PikiBlowStateFPQ24Game4Piki = .text:0x80190340; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game13PikiBlowStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80190344; // type:function size:0x64 scope:global align:4 +onFlute__Q24Game13PikiBlowStateFPQ24Game4PikiPQ24Game4Navi = .text:0x801903A8; // type:function size:0x10 scope:global align:4 +bounceCallback__Q24Game13PikiBlowStateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801903B8; // type:function size:0x168 scope:global align:4 +init__Q24Game19PikiKokeDamageStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80190520; // type:function size:0x8C scope:global align:4 +exec__Q24Game19PikiKokeDamageStateFPQ24Game4Piki = .text:0x801905AC; // type:function size:0x15C scope:global align:4 +onFlute__Q24Game19PikiKokeDamageStateFPQ24Game4PikiPQ24Game4Navi = .text:0x80190708; // type:function size:0x1C scope:global align:4 +cleanup__Q24Game19PikiKokeDamageStateFPQ24Game4Piki = .text:0x80190724; // type:function size:0xE8 scope:global align:4 +onKeyEvent__Q24Game19PikiKokeDamageStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x8019080C; // type:function size:0x60 scope:global align:4 +init__Q24Game13PikiKokeStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x8019086C; // type:function size:0x120 scope:global align:4 +onFlute__Q24Game13PikiKokeStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8019098C; // type:function size:0xC scope:global align:4 +exec__Q24Game13PikiKokeStateFPQ24Game4Piki = .text:0x80190998; // type:function size:0x94 scope:global align:4 +onKeyEvent__Q24Game13PikiKokeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80190A2C; // type:function size:0xF0 scope:global align:4 +cleanup__Q24Game13PikiKokeStateFPQ24Game4Piki = .text:0x80190B1C; // type:function size:0x4 scope:global align:4 +init__Q24Game14PikiDrownStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80190B20; // type:function size:0x200 scope:global align:4 +soft_transittable__Q24Game14PikiDrownStateFi = .text:0x80190D20; // type:function size:0x40 scope:global align:4 +onFlute__Q24Game14PikiDrownStateFPQ24Game4PikiPQ24Game4Navi = .text:0x80190D60; // type:function size:0x10 scope:global align:4 +outWaterCallback__Q24Game14PikiDrownStateFPQ24Game4Piki = .text:0x80190D70; // type:function size:0xC scope:global align:4 +exec__Q24Game14PikiDrownStateFPQ24Game4Piki = .text:0x80190D7C; // type:function size:0x74C scope:global align:4 +cleanup__Q24Game14PikiDrownStateFPQ24Game4Piki = .text:0x801914C8; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game14PikiDrownStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x801914CC; // type:function size:0x120 scope:global align:4 +init__Q24Game16PikiEmotionStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x801915EC; // type:function size:0x358 scope:global align:4 +exec__Q24Game16PikiEmotionStateFPQ24Game4Piki = .text:0x80191944; // type:function size:0xA8 scope:global align:4 +cleanup__Q24Game16PikiEmotionStateFPQ24Game4Piki = .text:0x801919EC; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q24Game16PikiEmotionStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x801919F0; // type:function size:0xC0 scope:global align:4 +init__Q24Game15PikiAbsorbStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80191AB0; // type:function size:0x170 scope:global align:4 +exec__Q24Game15PikiAbsorbStateFPQ24Game4Piki = .text:0x80191C20; // type:function size:0x154 scope:global align:4 +onKeyEvent__Q24Game15PikiAbsorbStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80191D74; // type:function size:0x12C scope:global align:4 +cleanup__Q24Game15PikiAbsorbStateFPQ24Game4Piki = .text:0x80191EA0; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiGrowupStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x80191EA4; // type:function size:0xE0 scope:global align:4 +exec__Q24Game15PikiGrowupStateFPQ24Game4Piki = .text:0x80191F84; // type:function size:0x78 scope:global align:4 +onKeyEvent__Q24Game15PikiGrowupStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x80191FFC; // type:function size:0x1A0 scope:global align:4 +cleanup__Q24Game15PikiGrowupStateFPQ24Game4Piki = .text:0x8019219C; // type:function size:0x4 scope:global align:4 +init__Q24Game15PikiEscapeStateFPQ24Game4PikiPQ24Game8StateArg = .text:0x801921A0; // type:function size:0x20 scope:global align:4 +initRun__Q24Game15PikiEscapeStateFPQ24Game4Piki = .text:0x801921C0; // type:function size:0x74 scope:global align:4 +exec__Q24Game15PikiEscapeStateFPQ24Game4Piki = .text:0x80192234; // type:function size:0x5C8 scope:global align:4 +onKeyEvent__Q24Game15PikiEscapeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent = .text:0x801927FC; // type:function size:0x17C scope:global align:4 +cleanup__Q24Game15PikiEscapeStateFPQ24Game4Piki = .text:0x80192978; // type:function size:0x4 scope:global align:4 +callable__Q24Game15PikiEscapeStateFv = .text:0x8019297C; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game9PikiStateFPQ24Game4Piki = .text:0x80192984; // type:function size:0x8 scope:weak align:4 +dopable__Q24Game9PikiStateFv = .text:0x8019298C; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game9PikiStateFv = .text:0x80192994; // type:function size:0x8 scope:weak align:4 +onFlute__Q24Game9PikiStateFPQ24Game4PikiPQ24Game4Navi = .text:0x8019299C; // type:function size:0x4 scope:weak align:4 +callable__Q24Game9PikiStateFv = .text:0x801929A0; // type:function size:0x8 scope:weak align:4 +callable__Q24Game16PikiEmotionStateFv = .text:0x801929A8; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiKokeStateFv = .text:0x801929B0; // type:function size:0x8 scope:weak align:4 +callable__Q24Game19PikiKokeDamageStateFv = .text:0x801929B8; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game13PikiBlowStateFv = .text:0x801929C0; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiBlowStateFv = .text:0x801929C8; // type:function size:0x8 scope:weak align:4 +callable__Q24Game14PikiFlickStateFv = .text:0x801929D0; // type:function size:0x8 scope:weak align:4 +getName__Q26PikiAI10ActCropArgFv = .text:0x801929D8; // type:function size:0xC scope:weak align:4 +callable__Q24Game15PikiFlyingStateFv = .text:0x801929E4; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game16PikiSuikomiStateFv = .text:0x801929EC; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game17PikiFallMeckStateFv = .text:0x801929F4; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game20PikiWaterHangedStateFv = .text:0x801929FC; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game15PikiHangedStateFv = .text:0x80192A04; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15PikiGoHangStateFv = .text:0x80192A0C; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game15PikiGoHangStateFv = .text:0x80192A14; // type:function size:0x8 scope:weak align:4 +callable__Q24Game17PikiAutoNukiStateFv = .text:0x80192A1C; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15PikiLookAtStateFv = .text:0x80192A24; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game16PikiPressedStateFv = .text:0x80192A2C; // type:function size:0x8 scope:weak align:4 +dead__Q24Game16PikiPressedStateFv = .text:0x80192A34; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game19PikiDenkiDyingStateFv = .text:0x80192A3C; // type:function size:0x8 scope:weak align:4 +dead__Q24Game19PikiDenkiDyingStateFv = .text:0x80192A44; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game14PikiDyingStateFv = .text:0x80192A4C; // type:function size:0x8 scope:weak align:4 +dead__Q24Game14PikiDyingStateFv = .text:0x80192A54; // type:function size:0x8 scope:weak align:4 +pressable__Q24Game13PikiDeadStateFv = .text:0x80192A5C; // type:function size:0x8 scope:weak align:4 +transittable__Q24Game13PikiDeadStateFi = .text:0x80192A64; // type:function size:0x8 scope:weak align:4 +dead__Q24Game13PikiDeadStateFv = .text:0x80192A6C; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiTaneStateFv = .text:0x80192A74; // type:function size:0x8 scope:weak align:4 +callable__Q24Game19PikiFountainonStateFv = .text:0x80192A7C; // type:function size:0x8 scope:weak align:4 +soft_transittable__Q24Game19PikiFountainonStateFi = .text:0x80192A84; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game19PikiFountainonStateFPQ24Game4Piki = .text:0x80192A8C; // type:function size:0x8 scope:weak align:4 +callable__Q24Game15PikiHoleinStateFv = .text:0x80192A94; // type:function size:0x8 scope:weak align:4 +soft_transittable__Q24Game15PikiHoleinStateFi = .text:0x80192A9C; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game15PikiHoleinStateFPQ24Game4Piki = .text:0x80192AA4; // type:function size:0x8 scope:weak align:4 +dead__Q24Game18PikiSwallowedStateFv = .text:0x80192AAC; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q24Game18PikiSwallowedStateFPQ24Game4PikiPQ24Game8Creature = .text:0x80192AB4; // type:function size:0x8 scope:weak align:4 +callable__Q24Game18PikiSwallowedStateFv = .text:0x80192ABC; // type:function size:0x8 scope:weak align:4 +invincible__Q24Game17PikiDemoWaitStateFPQ24Game4Piki = .text:0x80192AC4; // type:function size:0x8 scope:weak align:4 +dopable__Q24Game13PikiWalkStateFv = .text:0x80192ACC; // type:function size:0x8 scope:weak align:4 +aiActive__Q24Game13PikiWalkStateFv = .text:0x80192AD4; // type:function size:0x8 scope:weak align:4 +callable__Q24Game13PikiWalkStateFv = .text:0x80192ADC; // type:function size:0x8 scope:weak align:4 +releasable__Q24Game13PikiWalkStateFv = .text:0x80192AE4; // type:function size:0x8 scope:weak align:4 +battleOK__Q24Game13PikiWalkStateFv = .text:0x80192AEC; // type:function size:0x8 scope:weak align:4 +throwable__Q24Game13PikiWalkStateFv = .text:0x80192AF4; // type:function size:0x8 scope:weak align:4 +resume__Q24Game22FSMStateFPQ24Game4Piki = .text:0x80192AFC; // type:function size:0x4 scope:weak align:4 +restart__Q24Game22FSMStateFPQ24Game4Piki = .text:0x80192B00; // type:function size:0x4 scope:weak align:4 +create__Q24Game26StateMachineFi = .text:0x80192B04; // type:function size:0x64 scope:weak align:4 +registerState__Q24Game26StateMachineFPQ24Game22FSMState = .text:0x80192B68; // type:function size:0x84 scope:weak align:4 +__sinit_pikiState_cpp = .text:0x80192BEC; // type:function size:0x28 scope:local align:4 +@28@4@onKeyEvent__Q24Game15PikiLookAtStateFRCQ28SysShape8KeyEvent = .text:0x80192C14; // type:function size:0x14 scope:weak align:4 +@20@4@onKeyEvent__Q24Game15PikiHangedStateFRCQ28SysShape8KeyEvent = .text:0x80192C28; // type:function size:0x14 scope:weak align:4 +@24@4@onKeyEvent__Q24Game20PikiWaterHangedStateFRCQ28SysShape8KeyEvent = .text:0x80192C3C; // type:function size:0x14 scope:weak align:4 +@48@4@onKeyEvent__Q24Game14PikiFlickStateFRCQ28SysShape8KeyEvent = .text:0x80192C50; // type:function size:0x14 scope:weak align:4 +actPiki__Q24Game15InteractFueFukiFPQ24Game4Piki = .text:0x80192C64; // type:function size:0xE4 scope:global align:4 +actPiki__Q24Game11InteractFueFPQ24Game4Piki = .text:0x80192D48; // type:function size:0xBD0 scope:global align:4 +actPiki__Q24Game12InteractDopeFPQ24Game4Piki = .text:0x80193918; // type:function size:0x15C scope:global align:4 +actPiki__Q24Game12InteractWindFPQ24Game4Piki = .text:0x80193A74; // type:function size:0x100 scope:global align:4 +actPiki__Q24Game20InteractHanaChirashiFPQ24Game4Piki = .text:0x80193B74; // type:function size:0x120 scope:global align:4 +actPiki__Q24Game12InteractBombFPQ24Game4Piki = .text:0x80193C94; // type:function size:0x15C scope:global align:4 +actPiki__Q24Game13InteractDenkiFPQ24Game4Piki = .text:0x80193DF0; // type:function size:0x114 scope:global align:4 +actPiki__Q24Game16InteractFallMeckFPQ24Game4Piki = .text:0x80193F04; // type:function size:0xA0 scope:global align:4 +actPiki__Q24Game12InteractBuryFPQ24Game4Piki = .text:0x80193FA4; // type:function size:0x288 scope:global align:4 +actPiki__Q24Game20InteractSuikomi_TestFPQ24Game4Piki = .text:0x8019422C; // type:function size:0xDC scope:global align:4 +actPiki__Q24Game12InteractFireFPQ24Game4Piki = .text:0x80194308; // type:function size:0x118 scope:global align:4 +actPiki__Q24Game16InteractAstonishFPQ24Game4Piki = .text:0x80194420; // type:function size:0x134 scope:global align:4 +actPiki__Q24Game14InteractBubbleFPQ24Game4Piki = .text:0x80194554; // type:function size:0x118 scope:global align:4 +actPiki__Q24Game11InteractGasFPQ24Game4Piki = .text:0x8019466C; // type:function size:0x13C scope:global align:4 +actPiki__Q24Game14InteractBattleFPQ24Game4Piki = .text:0x801947A8; // type:function size:0xC0 scope:global align:4 +actPiki__Q24Game13InteractPressFPQ24Game4Piki = .text:0x80194868; // type:function size:0x120 scope:global align:4 +actPiki__Q24Game13InteractFlickFPQ24Game4Piki = .text:0x80194988; // type:function size:0x260 scope:global align:4 +actPiki__Q24Game15InteractSwallowFPQ24Game4Piki = .text:0x80194BE8; // type:function size:0x2EC scope:global align:4 +actPiki__Q24Game12InteractKillFPQ24Game4Piki = .text:0x80194ED4; // type:function size:0xCC scope:global align:4 +getName__Q26PikiAI12ActBattleArgFv = .text:0x80194FA0; // type:function size:0xC scope:weak align:4 +__sinit_interactPiki_cpp = .text:0x80194FAC; // type:function size:0x28 scope:local align:4 +get__Q24Game6CPlateFPv = .text:0x80194FD4; // type:function size:0x14 scope:global align:4 +getNext__Q24Game6CPlateFPv = .text:0x80194FE8; // type:function size:0x3C scope:global align:4 +getStart__Q24Game6CPlateFv = .text:0x80195024; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game6CPlateFv = .text:0x8019502C; // type:function size:0x8 scope:global align:4 +shrink__Q24Game6CPlateFv = .text:0x80195034; // type:function size:0xC scope:global align:4 +__ct__Q24Game6CPlateFi = .text:0x80195040; // type:function size:0x1F0 scope:global align:4 +__ct__Q34Game6CPlate4SlotFv = .text:0x80195230; // type:function size:0x2C scope:weak align:4 +__dt__27ContainerFv = .text:0x8019525C; // type:function size:0x70 scope:weak align:4 +setPos__Q24Game6CPlateFR10Vector3fR10Vector3f = .text:0x801952CC; // type:function size:0x210 scope:global align:4 +setPosGray__Q24Game6CPlateFR10Vector3fR10Vector3f = .text:0x801954DC; // type:function size:0x20C scope:global align:4 +getSlot__Q24Game6CPlateFPQ24Game8CreaturePQ24Game18SlotChangeListenerb = .text:0x801956E8; // type:function size:0xA8 scope:global align:4 +changeFlower__Q24Game6CPlateFPQ24Game8Creature = .text:0x80195790; // type:function size:0xB8 scope:global align:4 +releaseSlot__Q24Game6CPlateFPQ24Game8Creaturei = .text:0x80195848; // type:function size:0x128 scope:global align:4 +validSlot__Q24Game6CPlateFi = .text:0x80195970; // type:function size:0x24 scope:global align:4 +sortByColor__Q24Game6CPlateFPQ24Game8Creaturei = .text:0x80195994; // type:function size:0x4A0 scope:global align:4 +rearrangeSlot__Q24Game6CPlateFR10Vector3fR10Vector3 = .text:0x80195E34; // type:function size:0x1E0 scope:global align:4 +getSlotPosition__Q24Game6CPlateFiR10Vector3 = .text:0x80196014; // type:function size:0xC4 scope:global align:4 +refresh__Q24Game6CPlateFif = .text:0x801960D8; // type:function size:0x1B8 scope:global align:4 +refreshSlot__Q24Game6CPlateFf = .text:0x80196290; // type:function size:0x2EC scope:global align:4 +update__Q24Game6CPlateFv = .text:0x8019657C; // type:function size:0x18 scope:global align:4 +__dt__Q24Game6CPlateFv = .text:0x80196594; // type:function size:0x80 scope:weak align:4 +getObject__27ContainerFPv = .text:0x80196614; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x80196640; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x80196648; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game13UpdateContextFv = .text:0x80196650; // type:function size:0x18 scope:global align:4 +updatable__Q24Game13UpdateContextFv = .text:0x80196668; // type:function size:0x5C scope:global align:4 +init__Q24Game13UpdateContextFPQ24Game9UpdateMgr = .text:0x801966C4; // type:function size:0x3C scope:global align:4 +exit__Q24Game13UpdateContextFv = .text:0x80196700; // type:function size:0x58 scope:global align:4 +__ct__Q24Game9UpdateMgrFv = .text:0x80196758; // type:function size:0x1C scope:global align:4 +update__Q24Game9UpdateMgrFv = .text:0x80196774; // type:function size:0x24 scope:global align:4 +updatable__Q24Game9UpdateMgrFPQ24Game13UpdateContext = .text:0x80196798; // type:function size:0x28 scope:global align:4 +create__Q24Game9UpdateMgrFi = .text:0x801967C0; // type:function size:0xA0 scope:global align:4 +addClient__Q24Game9UpdateMgrFPQ24Game13UpdateContext = .text:0x80196860; // type:function size:0xD0 scope:global align:4 +removeClient__Q24Game9UpdateMgrFPQ24Game13UpdateContext = .text:0x80196930; // type:function size:0xC8 scope:global align:4 +__ct__Q26PikiAI6ActionFPQ24Game4Piki = .text:0x801969F8; // type:function size:0x1C scope:global align:4 +getInfo__Q26PikiAI6ActionFPc = .text:0x80196A14; // type:function size:0x30 scope:global align:4 +__ct__Q26PikiAI5BrainFPQ24Game4Piki = .text:0x80196A44; // type:function size:0x280 scope:global align:4 +addAction__Q26PikiAI5BrainFPQ26PikiAI6Action = .text:0x80196CC4; // type:function size:0x1C scope:global align:4 +getCurrAction__Q26PikiAI5BrainFv = .text:0x80196CE0; // type:function size:0x24 scope:global align:4 +exec__Q26PikiAI5BrainFv = .text:0x80196D04; // type:function size:0x258 scope:global align:4 +emotion_fail__Q26PikiAI6ActionFv = .text:0x80196F5C; // type:function size:0x4 scope:weak align:4 +emotion_success__Q26PikiAI6ActionFv = .text:0x80196F60; // type:function size:0x4 scope:weak align:4 +getNextAIType__Q26PikiAI6ActionFv = .text:0x80196F64; // type:function size:0x8 scope:weak align:4 +exec__Q26PikiAI6ActionFv = .text:0x80196F6C; // type:function size:0x8 scope:weak align:4 +start__Q26PikiAI5BrainFiPQ26PikiAI9ActionArg = .text:0x80196F74; // type:function size:0x100 scope:global align:4 +applicable__Q26PikiAI6ActionFv = .text:0x80197074; // type:function size:0x8 scope:weak align:4 +init__Q26PikiAI6ActionFPQ26PikiAI9ActionArg = .text:0x8019707C; // type:function size:0x4 scope:weak align:4 +searchOrima__Q26PikiAI5BrainFv = .text:0x80197080; // type:function size:0x210 scope:global align:4 +doDirectDraw__Q26PikiAI6ActionFR8Graphics = .text:0x80197290; // type:function size:0x4 scope:weak align:4 +__sinit_aiAction_cpp = .text:0x80197294; // type:function size:0x28 scope:local align:4 +__ct__Q26PikiAI10ActGotoPosFPQ24Game4Piki = .text:0x801972BC; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI10ActGotoPosFPQ26PikiAI9ActionArg = .text:0x801972F8; // type:function size:0x78 scope:global align:4 +exec__Q26PikiAI10ActGotoPosFv = .text:0x80197370; // type:function size:0x11C scope:global align:4 +cleanup__Q26PikiAI10ActGotoPosFv = .text:0x8019748C; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI14ActApproachPosFPQ24Game4Piki = .text:0x80197490; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI14ActApproachPosFPQ26PikiAI9ActionArg = .text:0x801974CC; // type:function size:0x104 scope:global align:4 +exec__Q26PikiAI14ActApproachPosFv = .text:0x801975D0; // type:function size:0x328 scope:global align:4 +cleanup__Q26PikiAI14ActApproachPosFv = .text:0x801978F8; // type:function size:0x34 scope:global align:4 +__ct__Q26PikiAI11ActGotoSlotFPQ24Game4Piki = .text:0x8019792C; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI11ActGotoSlotFPQ26PikiAI9ActionArg = .text:0x80197968; // type:function size:0x18C scope:global align:4 +wallCallback__Q26PikiAI11ActGotoSlotFR10Vector3 = .text:0x80197AF4; // type:function size:0x18 scope:global align:4 +resetTimers__Q26PikiAI11ActGotoSlotFv = .text:0x80197B0C; // type:function size:0x14 scope:global align:4 +exec__Q26PikiAI11ActGotoSlotFv = .text:0x80197B20; // type:function size:0xA94 scope:global align:4 +cleanup__Q26PikiAI11ActGotoSlotFv = .text:0x801985B4; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI11ActPathMoveFPQ24Game4Piki = .text:0x801985B8; // type:function size:0x7C scope:global align:4 +init__Q26PikiAI11ActPathMoveFPQ26PikiAI9ActionArg = .text:0x80198634; // type:function size:0x1BC scope:global align:4 +initPathfinding__Q26PikiAI11ActPathMoveFb = .text:0x801987F0; // type:function size:0x3AC scope:global align:4 +decideGoal__Q26PikiAI11ActPathMoveFv = .text:0x80198B9C; // type:function size:0x5C scope:global align:4 +exec__Q26PikiAI11ActPathMoveFv = .text:0x80198BF8; // type:function size:0x11C scope:global align:4 +execPathfinding__Q26PikiAI11ActPathMoveFv = .text:0x80198D14; // type:function size:0x2B0 scope:global align:4 +execMoveGoal__Q26PikiAI11ActPathMoveFv = .text:0x80198FC4; // type:function size:0x6A8 scope:global align:4 +isAllBlue__Q26PikiAI11ActPathMoveFv = .text:0x8019966C; // type:function size:0x9C scope:global align:4 +carry__Q26PikiAI11ActPathMoveFR10Vector3 = .text:0x80199708; // type:function size:0xA8 scope:global align:4 +execMove__Q26PikiAI11ActPathMoveFv = .text:0x801997B0; // type:function size:0x428 scope:global align:4 +cleanup__Q26PikiAI11ActPathMoveFv = .text:0x80199BD8; // type:function size:0x90 scope:global align:4 +execMoveGuru__Q26PikiAI11ActPathMoveFv = .text:0x80199C68; // type:function size:0x4E8 scope:global align:4 +getWayPoint__Q26PikiAI11ActPathMoveFi = .text:0x8019A150; // type:function size:0xB8 scope:global align:4 +crGetPoint__Q26PikiAI11ActPathMoveFi = .text:0x8019A208; // type:function size:0x18C scope:global align:4 +contextCheck__Q26PikiAI11ActPathMoveFi = .text:0x8019A394; // type:function size:0x3C4 scope:global align:4 +crGetRadius__Q26PikiAI11ActPathMoveFi = .text:0x8019A758; // type:function size:0x134 scope:global align:4 +crInit__Q26PikiAI11ActPathMoveFv = .text:0x8019A88C; // type:function size:0x738 scope:global align:4 +crMakeRefs__Q26PikiAI11ActPathMoveFv = .text:0x8019AFC4; // type:function size:0x80 scope:global align:4 +crMove__Q26PikiAI11ActPathMoveFv = .text:0x8019B044; // type:function size:0xC54 scope:global align:4 +__ct__Q26PikiAI14ActStickAttackFPQ24Game4Piki = .text:0x8019BC98; // type:function size:0x7C scope:global align:4 +init__Q26PikiAI14ActStickAttackFPQ26PikiAI9ActionArg = .text:0x8019BD14; // type:function size:0x1F0 scope:global align:4 +exec__Q26PikiAI14ActStickAttackFv = .text:0x8019BF04; // type:function size:0x164 scope:global align:4 +createEfx__Q26PikiAI14ActStickAttackFv = .text:0x8019C068; // type:function size:0x650 scope:global align:4 +onKeyEvent__Q26PikiAI14ActStickAttackFRCQ28SysShape8KeyEvent = .text:0x8019C6B8; // type:function size:0x80 scope:global align:4 +cleanup__Q26PikiAI14ActStickAttackFv = .text:0x8019C738; // type:function size:0x24 scope:global align:4 +__ct__Q26PikiAI8ActClimbFPQ24Game4Piki = .text:0x8019C75C; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI8ActClimbFPQ26PikiAI9ActionArg = .text:0x8019C798; // type:function size:0x100 scope:global align:4 +exec__Q26PikiAI8ActClimbFv = .text:0x8019C898; // type:function size:0xE4 scope:global align:4 +cleanup__Q26PikiAI8ActClimbFv = .text:0x8019C97C; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI9ActGatherFPQ24Game4Piki = .text:0x8019C980; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI9ActGatherFPQ26PikiAI9ActionArg = .text:0x8019C9BC; // type:function size:0xE0 scope:global align:4 +exec__Q26PikiAI9ActGatherFv = .text:0x8019CA9C; // type:function size:0x154 scope:global align:4 +cleanup__Q26PikiAI9ActGatherFv = .text:0x8019CBF0; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI20ActFollowVectorFieldFPQ24Game4Piki = .text:0x8019CBF4; // type:function size:0x3C scope:global align:4 +init__Q26PikiAI20ActFollowVectorFieldFPQ26PikiAI9ActionArg = .text:0x8019CC30; // type:function size:0x60 scope:global align:4 +exec__Q26PikiAI20ActFollowVectorFieldFv = .text:0x8019CC90; // type:function size:0x80 scope:global align:4 +cleanup__Q26PikiAI20ActFollowVectorFieldFv = .text:0x8019CD10; // type:function size:0x4 scope:global align:4 +__sinit_aiPrimitives_cpp = .text:0x8019CD14; // type:function size:0x28 scope:local align:4 +@36@4@onKeyEvent__Q26PikiAI14ActStickAttackFRCQ28SysShape8KeyEvent = .text:0x8019CD3C; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI12ActFormationFPQ24Game4Piki = .text:0x8019CD50; // type:function size:0xF8 scope:global align:4 +inform__Q26PikiAI12ActFormationFi = .text:0x8019CE48; // type:function size:0x8 scope:global align:4 +startSort__Q26PikiAI12ActFormationFv = .text:0x8019CE50; // type:function size:0xC scope:global align:4 +init__Q26PikiAI12ActFormationFPQ26PikiAI9ActionArg = .text:0x8019CE5C; // type:function size:0x1B4 scope:global align:4 +wallCallback__Q26PikiAI12ActFormationFR10Vector3 = .text:0x8019D010; // type:function size:0x58 scope:global align:4 +setFormed__Q26PikiAI12ActFormationFv = .text:0x8019D068; // type:function size:0x45C scope:global align:4 +onKeyEvent__Q26PikiAI12ActFormationFRCQ28SysShape8KeyEvent = .text:0x8019D4C4; // type:function size:0xF8 scope:global align:4 +cleanup__Q26PikiAI12ActFormationFv = .text:0x8019D5BC; // type:function size:0xA4 scope:global align:4 +exec__Q26PikiAI12ActFormationFv = .text:0x8019D660; // type:function size:0x16E8 scope:global align:4 +collisionCallback__Q26PikiAI12ActFormationFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8019ED48; // type:function size:0x74 scope:global align:4 +platCallback__Q26PikiAI12ActFormationFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8019EDBC; // type:function size:0x58 scope:global align:4 +resumable__Q26PikiAI12ActFormationFv = .text:0x8019EE14; // type:function size:0x8 scope:weak align:4 +getNextAIType__Q26PikiAI12ActFormationFv = .text:0x8019EE1C; // type:function size:0x8 scope:weak align:4 +__sinit_aiFormation_cpp = .text:0x8019EE24; // type:function size:0x28 scope:local align:4 +@100@4@inform__Q26PikiAI12ActFormationFi = .text:0x8019EE4C; // type:function size:0x14 scope:weak align:4 +@108@4@onKeyEvent__Q26PikiAI12ActFormationFRCQ28SysShape8KeyEvent = .text:0x8019EE60; // type:function size:0x14 scope:weak align:4 +clearStick__Q24Game8CreatureFv = .text:0x8019EE74; // type:function size:0x24 scope:global align:4 +releaseAllStickers__Q24Game8CreatureFv = .text:0x8019EE98; // type:function size:0x3C scope:global align:4 +startStick__Q24Game8CreatureFPQ24Game8CreatureP8CollPart = .text:0x8019EED4; // type:function size:0x174 scope:global align:4 +startStickMouth__Q24Game8CreatureFPQ24Game8CreatureP8CollPart = .text:0x8019F048; // type:function size:0x1B0 scope:global align:4 +startStick__Q24Game8CreatureFPQ24Game8Creatures = .text:0x8019F1F8; // type:function size:0x20C scope:global align:4 +endStick__Q24Game8CreatureFv = .text:0x8019F404; // type:function size:0x150 scope:global align:4 +isStickTo__Q24Game8CreatureFv = .text:0x8019F554; // type:function size:0x14 scope:global align:4 +isStickToMouth__Q24Game8CreatureFv = .text:0x8019F568; // type:function size:0x60 scope:global align:4 +updateStick__Q24Game8CreatureFR10Vector3 = .text:0x8019F5C8; // type:function size:0x4B4 scope:global align:4 +clearCapture__Q24Game8CreatureFv = .text:0x8019FA7C; // type:function size:0xC scope:global align:4 +startCapture__Q24Game8CreatureFP7Matrixf = .text:0x8019FA88; // type:function size:0x54 scope:global align:4 +updateCapture__Q24Game8CreatureFR7Matrixf = .text:0x8019FADC; // type:function size:0xA0 scope:global align:4 +endCapture__Q24Game8CreatureFv = .text:0x8019FB7C; // type:function size:0x58 scope:global align:4 +initialise__Q24Game8StickersFv = .text:0x8019FBD4; // type:function size:0x68 scope:global align:4 +__ct__Q24Game8StickersFPQ24Game8Creature = .text:0x8019FC3C; // type:function size:0x108 scope:global align:4 +__dt__Q24Game8StickersFv = .text:0x8019FD44; // type:function size:0x8C scope:global align:4 +get__Q24Game8StickersFPv = .text:0x8019FDD0; // type:function size:0x70 scope:global align:4 +getNext__Q24Game8StickersFPv = .text:0x8019FE40; // type:function size:0x8 scope:global align:4 +getStart__Q24Game8StickersFv = .text:0x8019FE48; // type:function size:0x8 scope:global align:4 +getEnd__Q24Game8StickersFv = .text:0x8019FE50; // type:function size:0x8 scope:global align:4 +actCommon__Q24Game13InteractFlickFPQ24Game8Creature = .text:0x8019FE58; // type:function size:0x44 scope:global align:4 +actCommon__Q24Game14InteractAttackFPQ24Game8Creature = .text:0x8019FE9C; // type:function size:0x6C scope:global align:4 +actCommon__Q24Game15InteractSwallowFPQ24Game8Creature = .text:0x8019FF08; // type:function size:0x8 scope:global align:4 +actCommon__Q24Game12InteractKillFPQ24Game8Creature = .text:0x8019FF10; // type:function size:0x8 scope:global align:4 +__ct__Q26PikiAI7ActFreeFPQ24Game4Piki = .text:0x8019FF18; // type:function size:0xD0 scope:global align:4 +init__Q26PikiAI7ActFreeFPQ26PikiAI9ActionArg = .text:0x8019FFE8; // type:function size:0x190 scope:global align:4 +exec__Q26PikiAI7ActFreeFv = .text:0x801A0178; // type:function size:0x1D0 scope:global align:4 +cleanup__Q26PikiAI7ActFreeFv = .text:0x801A0348; // type:function size:0x4C scope:global align:4 +onKeyEvent__Q26PikiAI7ActFreeFRCQ28SysShape8KeyEvent = .text:0x801A0394; // type:function size:0x4 scope:global align:4 +collisionCallback__Q26PikiAI7ActFreeFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801A0398; // type:function size:0xEC scope:global align:4 +getName__Q26PikiAI15GatherActionArgFv = .text:0x801A0484; // type:function size:0xC scope:weak align:4 +getNextAIType__Q26PikiAI7ActFreeFv = .text:0x801A0490; // type:function size:0x8 scope:weak align:4 +@32@4@onKeyEvent__Q26PikiAI7ActFreeFRCQ28SysShape8KeyEvent = .text:0x801A0498; // type:function size:0x14 scope:weak align:4 +getInfo__Q26PikiAI9ActAttackFPc = .text:0x801A04AC; // type:function size:0x70 scope:global align:4 +emotion_success__Q26PikiAI9ActAttackFv = .text:0x801A051C; // type:function size:0x44 scope:global align:4 +__ct__Q26PikiAI9ActAttackFPQ24Game4Piki = .text:0x801A0560; // type:function size:0xD4 scope:global align:4 +init__Q26PikiAI9ActAttackFPQ26PikiAI9ActionArg = .text:0x801A0634; // type:function size:0x11C scope:global align:4 +initStickAttack__Q26PikiAI9ActAttackFv = .text:0x801A0750; // type:function size:0x84 scope:global align:4 +initAdjust__Q26PikiAI9ActAttackFv = .text:0x801A07D4; // type:function size:0xA8 scope:global align:4 +initJumpAdjust__Q26PikiAI9ActAttackFv = .text:0x801A087C; // type:function size:0xAC scope:global align:4 +applicable__Q26PikiAI9ActAttackFv = .text:0x801A0928; // type:function size:0x8C scope:global align:4 +calcAttackPos__Q26PikiAI9ActAttackFv = .text:0x801A09B4; // type:function size:0x1C4 scope:global align:4 +exec__Q26PikiAI9ActAttackFv = .text:0x801A0B78; // type:function size:0x94C scope:global align:4 +cleanup__Q26PikiAI9ActAttackFv = .text:0x801A14C4; // type:function size:0x54 scope:global align:4 +collisionCallback__Q26PikiAI9ActAttackFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801A1518; // type:function size:0xE0 scope:global align:4 +bounceCallback__Q26PikiAI9ActAttackFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801A15F8; // type:function size:0x24C scope:global align:4 +onKeyEvent__Q26PikiAI9ActAttackFRCQ28SysShape8KeyEvent = .text:0x801A1844; // type:function size:0x24 scope:global align:4 +satisfy__13FindConditionFP8CollPart = .text:0x801A1868; // type:function size:0x58 scope:weak align:4 +getName__Q26PikiAI20ApproachPosActionArgFv = .text:0x801A18C0; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI20StickAttackActionArgFv = .text:0x801A18CC; // type:function size:0xC scope:weak align:4 +getNextAIType__Q26PikiAI9ActAttackFv = .text:0x801A18D8; // type:function size:0x8 scope:weak align:4 +@56@4@onKeyEvent__Q26PikiAI9ActAttackFRCQ28SysShape8KeyEvent = .text:0x801A18E0; // type:function size:0x14 scope:weak align:4 +getInfo__Q26PikiAI12ActTransportFPc = .text:0x801A18F4; // type:function size:0x64 scope:global align:4 +__ct__Q26PikiAI12ActTransportFPQ24Game4Piki = .text:0x801A1958; // type:function size:0xD0 scope:global align:4 +init__Q26PikiAI12ActTransportFPQ26PikiAI9ActionArg = .text:0x801A1A28; // type:function size:0x17C scope:global align:4 +emotion_success__Q26PikiAI12ActTransportFv = .text:0x801A1BA4; // type:function size:0x44 scope:global align:4 +emotion_fail__Q26PikiAI12ActTransportFv = .text:0x801A1BE8; // type:function size:0x4 scope:global align:4 +exec__Q26PikiAI12ActTransportFv = .text:0x801A1BEC; // type:function size:0x3E8 scope:global align:4 +cleanup__Q26PikiAI12ActTransportFv = .text:0x801A1FD4; // type:function size:0x78 scope:global align:4 +onKeyEvent__Q26PikiAI12ActTransportFRCQ28SysShape8KeyEvent = .text:0x801A204C; // type:function size:0x11C scope:global align:4 +isStickLeader__Q26PikiAI12ActTransportFv = .text:0x801A2168; // type:function size:0x9C scope:global align:4 +initLift__Q26PikiAI12ActTransportFv = .text:0x801A2204; // type:function size:0xBC scope:global align:4 +execLift__Q26PikiAI12ActTransportFv = .text:0x801A22C0; // type:function size:0x414 scope:global align:4 +getName__Q26PikiAI11PathMoveArgFv = .text:0x801A26D4; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI11GotoSlotArgFv = .text:0x801A26E0; // type:function size:0xC scope:weak align:4 +@60@4@onKeyEvent__Q26PikiAI12ActTransportFRCQ28SysShape8KeyEvent = .text:0x801A26EC; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI8ActEnterFPQ24Game4Piki = .text:0x801A2700; // type:function size:0xD0 scope:global align:4 +init__Q26PikiAI8ActEnterFPQ26PikiAI9ActionArg = .text:0x801A27D0; // type:function size:0x338 scope:global align:4 +exec__Q26PikiAI8ActEnterFv = .text:0x801A2B08; // type:function size:0x240 scope:global align:4 +cleanup__Q26PikiAI8ActEnterFv = .text:0x801A2D48; // type:function size:0x68 scope:global align:4 +onKeyEvent__Q26PikiAI8ActEnterFRCQ28SysShape8KeyEvent = .text:0x801A2DB0; // type:function size:0x4 scope:global align:4 +initStay__Q26PikiAI8ActEnterFv = .text:0x801A2DB4; // type:function size:0x78 scope:global align:4 +execStay__Q26PikiAI8ActEnterFv = .text:0x801A2E2C; // type:function size:0x64 scope:global align:4 +initSuck__Q26PikiAI8ActEnterFv = .text:0x801A2E90; // type:function size:0x1A0 scope:global align:4 +execSuck__Q26PikiAI8ActEnterFv = .text:0x801A3030; // type:function size:0x18C scope:global align:4 +__ct__Q26PikiAI7ActExitFPQ24Game4Piki = .text:0x801A31BC; // type:function size:0x70 scope:global align:4 +init__Q26PikiAI7ActExitFPQ26PikiAI9ActionArg = .text:0x801A322C; // type:function size:0x204 scope:global align:4 +exec__Q26PikiAI7ActExitFv = .text:0x801A3430; // type:function size:0xA8 scope:global align:4 +cleanup__Q26PikiAI7ActExitFv = .text:0x801A34D8; // type:function size:0xC8 scope:global align:4 +getName__Q26PikiAI14ClimbActionArgFv = .text:0x801A35A0; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI16GotoPosActionArgFv = .text:0x801A35AC; // type:function size:0xC scope:weak align:4 +@96@4@onKeyEvent__Q26PikiAI8ActEnterFRCQ28SysShape8KeyEvent = .text:0x801A35B8; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game10PathfinderFv = .text:0x801A35CC; // type:function size:0x60 scope:global align:4 +create__Q24Game10PathfinderFiPQ24Game8RouteMgr = .text:0x801A362C; // type:function size:0xC4 scope:global align:4 +__ct__Q24Game12AStarContextFv = .text:0x801A36F0; // type:function size:0x20 scope:weak align:4 +update__Q24Game10PathfinderFv = .text:0x801A3710; // type:function size:0x124 scope:global align:4 +start__Q24Game10PathfinderFRQ24Game15PathfindRequest = .text:0x801A3834; // type:function size:0x14C scope:global align:4 +makepath__Q24Game10PathfinderFUlPPQ24Game8PathNode = .text:0x801A3980; // type:function size:0xC0 scope:global align:4 +release__Q24Game10PathfinderFUl = .text:0x801A3A40; // type:function size:0x70 scope:global align:4 +check__Q24Game10PathfinderFUl = .text:0x801A3AB0; // type:function size:0x98 scope:global align:4 +init__Q24Game12AStarContextFPQ24Game8RouteMgri = .text:0x801A3B48; // type:function size:0x78 scope:global align:4 +__ct__Q24Game15AStarPathfinderFv = .text:0x801A3BC0; // type:function size:0xC scope:global align:4 +setContext__Q24Game15AStarPathfinderFPQ24Game12AStarContext = .text:0x801A3BCC; // type:function size:0x8 scope:global align:4 +initsearch__Q24Game15AStarPathfinderFPQ24Game12AStarContext = .text:0x801A3BD4; // type:function size:0x17C scope:global align:4 +search__Q24Game15AStarPathfinderFPQ24Game12AStarContextiPPQ24Game8PathNode = .text:0x801A3D50; // type:function size:0x4B8 scope:global align:4 +estimate__Q24Game15AStarPathfinderFss = .text:0x801A4208; // type:function size:0xB4 scope:global align:4 +makepath__Q24Game12AStarContextFPQ24Game8PathNodePPQ24Game8PathNode = .text:0x801A42BC; // type:function size:0x34 scope:global align:4 +init__Q24Game9PelletFSMFPQ24Game6Pellet = .text:0x801A42F0; // type:function size:0x2AC scope:global align:4 +init__Q24Game17PelletNormalStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A459C; // type:function size:0x4 scope:global align:4 +exec__Q24Game17PelletNormalStateFPQ24Game6Pellet = .text:0x801A45A0; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game17PelletNormalStateFPQ24Game6Pellet = .text:0x801A45A4; // type:function size:0x4 scope:global align:4 +init__Q24Game19PelletGoalWaitStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A45A8; // type:function size:0x7C scope:global align:4 +exec__Q24Game19PelletGoalWaitStateFPQ24Game6Pellet = .text:0x801A4624; // type:function size:0x60 scope:global align:4 +transit__Q24Game24FSMStateFPQ24Game6PelletiPQ24Game8StateArg = .text:0x801A4684; // type:function size:0x30 scope:weak align:4 +cleanup__Q24Game19PelletGoalWaitStateFPQ24Game6Pellet = .text:0x801A46B4; // type:function size:0x4 scope:global align:4 +init__Q24Game15PelletGoalStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A46B8; // type:function size:0x680 scope:global align:4 +checkMovie__Q24Game15PelletGoalStateFPQ24Game6Pellet = .text:0x801A4D38; // type:function size:0xD6C scope:global align:4 +exec__Q24Game15PelletGoalStateFPQ24Game6Pellet = .text:0x801A5AA4; // type:function size:0xB34 scope:global align:4 +cleanup__Q24Game15PelletGoalStateFPQ24Game6Pellet = .text:0x801A65D8; // type:function size:0x4 scope:global align:4 +init__Q24Game17PelletAppearStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A65DC; // type:function size:0x144 scope:global align:4 +exec__Q24Game17PelletAppearStateFPQ24Game6Pellet = .text:0x801A6720; // type:function size:0x240 scope:global align:4 +cleanup__Q24Game17PelletAppearStateFPQ24Game6Pellet = .text:0x801A6960; // type:function size:0x4 scope:global align:4 +init__Q24Game22PelletScaleAppearStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6964; // type:function size:0x130 scope:global align:4 +exec__Q24Game22PelletScaleAppearStateFPQ24Game6Pellet = .text:0x801A6A94; // type:function size:0x1BC scope:global align:4 +cleanup__Q24Game22PelletScaleAppearStateFPQ24Game6Pellet = .text:0x801A6C50; // type:function size:0x34 scope:global align:4 +init__Q24Game15PelletBuryStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6C84; // type:function size:0x24 scope:global align:4 +exec__Q24Game15PelletBuryStateFPQ24Game6Pellet = .text:0x801A6CA8; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game15PelletBuryStateFPQ24Game6Pellet = .text:0x801A6CAC; // type:function size:0x4 scope:global align:4 +init__Q24Game16PelletZukanStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6CB0; // type:function size:0x38 scope:global align:4 +exec__Q24Game16PelletZukanStateFPQ24Game6Pellet = .text:0x801A6CE8; // type:function size:0x94 scope:global align:4 +cleanup__Q24Game16PelletZukanStateFPQ24Game6Pellet = .text:0x801A6D7C; // type:function size:0x4 scope:global align:4 +init__Q24Game13PelletUpStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6D80; // type:function size:0x24 scope:global align:4 +exec__Q24Game13PelletUpStateFPQ24Game6Pellet = .text:0x801A6DA4; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game13PelletUpStateFPQ24Game6Pellet = .text:0x801A6DA8; // type:function size:0x4 scope:global align:4 +__ct__Q24Game17PelletReturnStateFv = .text:0x801A6DAC; // type:function size:0xF0 scope:global align:4 +init__Q24Game17PelletReturnStateFPQ24Game6PelletPQ24Game8StateArg = .text:0x801A6E9C; // type:function size:0x318 scope:global align:4 +exec__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A71B4; // type:function size:0xD8 scope:global align:4 +cleanup__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A728C; // type:function size:0x9C scope:global align:4 +initPathfinding__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A7328; // type:function size:0x1B4 scope:global align:4 +execPathfinding__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A74DC; // type:function size:0x90 scope:global align:4 +execMove__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A756C; // type:function size:0x858 scope:global align:4 +execMoveGoal__Q24Game17PelletReturnStateFPQ24Game6Pellet = .text:0x801A7DC4; // type:function size:0x8 scope:global align:4 +isBuried__Q24Game11PelletStateFv = .text:0x801A7DCC; // type:function size:0x8 scope:weak align:4 +appeared__Q24Game11PelletStateFv = .text:0x801A7DD4; // type:function size:0x8 scope:weak align:4 +isBuried__Q24Game13PelletUpStateFv = .text:0x801A7DDC; // type:function size:0x8 scope:weak align:4 +isBuried__Q24Game15PelletBuryStateFv = .text:0x801A7DE4; // type:function size:0x8 scope:weak align:4 +appeared__Q24Game22PelletScaleAppearStateFv = .text:0x801A7DEC; // type:function size:0x8 scope:weak align:4 +appeared__Q24Game17PelletAppearStateFv = .text:0x801A7DF4; // type:function size:0x8 scope:weak align:4 +isPickable__Q24Game17PelletNormalStateFv = .text:0x801A7DFC; // type:function size:0x8 scope:weak align:4 +resume__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x801A7E04; // type:function size:0x4 scope:weak align:4 +restart__Q24Game24FSMStateFPQ24Game6Pellet = .text:0x801A7E08; // type:function size:0x4 scope:weak align:4 +create__Q24Game28StateMachineFi = .text:0x801A7E0C; // type:function size:0x64 scope:weak align:4 +registerState__Q24Game28StateMachineFPQ24Game24FSMState = .text:0x801A7E70; // type:function size:0x84 scope:weak align:4 +__sinit_pelletState_cpp = .text:0x801A7EF4; // type:function size:0x28 scope:local align:4 +__ct__Q24Game14DynParticleMgrFi = .text:0x801A7F1C; // type:function size:0x5C scope:global align:4 +__dt__35MonoObjectMgrFv = .text:0x801A7F78; // type:function size:0xA0 scope:weak align:4 +resetMgr__Q24Game14DynParticleMgrFv = .text:0x801A8018; // type:function size:0x30 scope:global align:4 +getAt__Q24Game11DynParticleFi = .text:0x801A8048; // type:function size:0x78 scope:global align:4 +__ct__Q24Game11DynCreatureFv = .text:0x801A80C0; // type:function size:0x74 scope:global align:4 +createParticles__Q24Game11DynCreatureFi = .text:0x801A8134; // type:function size:0xB0 scope:global align:4 +releaseParticles__Q24Game11DynCreatureFv = .text:0x801A81E4; // type:function size:0x74 scope:global align:4 +updateParticlePositions__Q24Game11DynCreatureFv = .text:0x801A8258; // type:function size:0x6C scope:global align:4 +computeForces__Q24Game11DynCreatureFf = .text:0x801A82C4; // type:function size:0x4F4 scope:global align:4 +tracemoveCallback__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A87B8; // type:function size:0xB4 scope:global align:4 +simulate__Q24Game11DynCreatureFf = .text:0x801A886C; // type:function size:0x4A8 scope:global align:4 +getPosition__Q24Game11DynCreatureFv = .text:0x801A8D14; // type:function size:0x1C scope:global align:4 +onSetPosition__Q24Game11DynCreatureFR10Vector3 = .text:0x801A8D30; // type:function size:0xAC scope:global align:4 +onSetPosition__Q24Game11DynCreatureFv = .text:0x801A8DDC; // type:function size:0x4 scope:weak align:4 +getVelocity__Q24Game11DynCreatureFv = .text:0x801A8DE0; // type:function size:0x1C scope:global align:4 +setVelocity__Q24Game11DynCreatureFR10Vector3 = .text:0x801A8DFC; // type:function size:0x1C scope:global align:4 +getVelocityAt__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A8E18; // type:function size:0x88 scope:global align:4 +getAngularEffect__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A8EA0; // type:function size:0x8 scope:global align:4 +applyImpulse__Q24Game11DynCreatureFR10Vector3R10Vector3 = .text:0x801A8EA8; // type:function size:0x44 scope:global align:4 +__dt__Q24Game14DynParticleMgrFv = .text:0x801A8EEC; // type:function size:0xB8 scope:weak align:4 +__dt__31ContainerFv = .text:0x801A8FA4; // type:function size:0x70 scope:weak align:4 +__dt__31ObjectMgrFv = .text:0x801A9014; // type:function size:0x88 scope:weak align:4 +birth__35MonoObjectMgrFv = .text:0x801A909C; // type:function size:0x60 scope:weak align:4 +kill__35MonoObjectMgrFPQ24Game11DynParticle = .text:0x801A90FC; // type:function size:0x54 scope:weak align:4 +getNext__35MonoObjectMgrFPv = .text:0x801A9150; // type:function size:0x40 scope:weak align:4 +getStart__35MonoObjectMgrFv = .text:0x801A9190; // type:function size:0x30 scope:weak align:4 +getEnd__35MonoObjectMgrFv = .text:0x801A91C0; // type:function size:0x8 scope:weak align:4 +getAt__35MonoObjectMgrFi = .text:0x801A91C8; // type:function size:0x10 scope:weak align:4 +getTo__35MonoObjectMgrFv = .text:0x801A91D8; // type:function size:0x8 scope:weak align:4 +doAnimation__35MonoObjectMgrFv = .text:0x801A91E0; // type:function size:0x80 scope:weak align:4 +doEntry__35MonoObjectMgrFv = .text:0x801A9260; // type:function size:0x80 scope:weak align:4 +doSetView__35MonoObjectMgrFi = .text:0x801A92E0; // type:function size:0x90 scope:weak align:4 +doViewCalc__35MonoObjectMgrFv = .text:0x801A9370; // type:function size:0x80 scope:weak align:4 +doSimulation__35MonoObjectMgrFf = .text:0x801A93F0; // type:function size:0x90 scope:weak align:4 +doDirectDraw__35MonoObjectMgrFR8Graphics = .text:0x801A9480; // type:function size:0x90 scope:weak align:4 +resetMgr__35MonoObjectMgrFv = .text:0x801A9510; // type:function size:0x18 scope:weak align:4 +clearMgr__35MonoObjectMgrFv = .text:0x801A9528; // type:function size:0x30 scope:weak align:4 +onAlloc__35MonoObjectMgrFv = .text:0x801A9558; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__35MonoObjectMgrFv = .text:0x801A955C; // type:function size:0x3C scope:weak align:4 +get__35MonoObjectMgrFPv = .text:0x801A9598; // type:function size:0x10 scope:weak align:4 +getObject__31ContainerFPv = .text:0x801A95A8; // type:function size:0x2C scope:weak align:4 +getAt__31ContainerFi = .text:0x801A95D4; // type:function size:0x8 scope:weak align:4 +getTo__31ContainerFv = .text:0x801A95DC; // type:function size:0x8 scope:weak align:4 +invoke__59Delegate2,R10Vector3>FR10Vector3R10Vector3 = .text:0x801A95E4; // type:function size:0x30 scope:weak align:4 +doDirectDraw__31ObjectMgrFR8Graphics = .text:0x801A9614; // type:function size:0x1F4 scope:weak align:4 +isDone__30IteratorFv = .text:0x801A9808; // type:function size:0x4C scope:weak align:4 +doSimulation__31ObjectMgrFf = .text:0x801A9854; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__31ObjectMgrFv = .text:0x801A9A48; // type:function size:0x1E4 scope:weak align:4 +doSetView__31ObjectMgrFi = .text:0x801A9C2C; // type:function size:0x1F4 scope:weak align:4 +doEntry__31ObjectMgrFv = .text:0x801A9E20; // type:function size:0x1E4 scope:weak align:4 +doAnimation__31ObjectMgrFv = .text:0x801AA004; // type:function size:0x1E4 scope:weak align:4 +doDirectDraw__Q24Game11DynParticleFR8Graphics = .text:0x801AA1E8; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game11DynParticleFf = .text:0x801AA1EC; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game11DynParticleFv = .text:0x801AA1F0; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game11DynParticleFUl = .text:0x801AA1F4; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game11DynParticleFv = .text:0x801AA1F8; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game11DynParticleFv = .text:0x801AA1FC; // type:function size:0x4 scope:weak align:4 +alloc__35MonoObjectMgrFi = .text:0x801AA200; // type:function size:0x188 scope:weak align:4 +constructor__Q24Game11DynParticleFv = .text:0x801AA388; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game11DynParticleFv = .text:0x801AA38C; // type:function size:0x34 scope:weak align:4 +__ct__35MonoObjectMgrFv = .text:0x801AA3C0; // type:function size:0x9C scope:weak align:4 +__ml__30IteratorFv = .text:0x801AA45C; // type:function size:0x38 scope:weak align:4 +next__30IteratorFv = .text:0x801AA494; // type:function size:0xE4 scope:weak align:4 +first__30IteratorFv = .text:0x801AA578; // type:function size:0xDC scope:weak align:4 +@28@resetMgr__35MonoObjectMgrFv = .text:0x801AA654; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__31ObjectMgrFR8Graphics = .text:0x801AA65C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__31ObjectMgrFf = .text:0x801AA664; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__31ObjectMgrFv = .text:0x801AA66C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__31ObjectMgrFi = .text:0x801AA674; // type:function size:0x8 scope:weak align:4 +@28@doEntry__31ObjectMgrFv = .text:0x801AA67C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__31ObjectMgrFv = .text:0x801AA684; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__Q24Game14DynParticleMgrFv = .text:0x801AA68C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__35MonoObjectMgrFR8Graphics = .text:0x801AA694; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__35MonoObjectMgrFf = .text:0x801AA69C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__35MonoObjectMgrFv = .text:0x801AA6A4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__35MonoObjectMgrFi = .text:0x801AA6AC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__35MonoObjectMgrFv = .text:0x801AA6B4; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__35MonoObjectMgrFv = .text:0x801AA6BC; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game7GenBaseFUlPcPc = .text:0x801AA6C4; // type:function size:0x50 scope:global align:4 +getLatestVersion__Q24Game7GenBaseFv = .text:0x801AA714; // type:function size:0xC scope:weak align:4 +doWrite__Q24Game7GenBaseFR6Stream = .text:0x801AA720; // type:function size:0x4 scope:weak align:4 +ramSaveParameters__Q24Game7GenBaseFR6Stream = .text:0x801AA724; // type:function size:0x20 scope:global align:4 +ramLoadParameters__Q24Game7GenBaseFR6Stream = .text:0x801AA744; // type:function size:0x20 scope:global align:4 +doRead__Q24Game7GenBaseFR6Stream = .text:0x801AA764; // type:function size:0x4 scope:weak align:4 +getLatestVersion__Q24Game9GenObjectFv = .text:0x801AA768; // type:function size:0x50 scope:global align:4 +initialiseSystem__Q24Game9GeneratorFv = .text:0x801AA7B8; // type:function size:0xC scope:global align:4 +__ct__Q24Game9GeneratorFv = .text:0x801AA7C4; // type:function size:0xDC scope:global align:4 +__dt__Q24Game9GeneratorFv = .text:0x801AA8A0; // type:function size:0x68 scope:global align:4 +updateUseList__Q24Game9GeneratorFv = .text:0x801AA908; // type:function size:0x58 scope:global align:4 +updateUseList__Q24Game9GenObjectFPQ24Game9Generatori = .text:0x801AA960; // type:function size:0x4 scope:weak align:4 +isExpired__Q24Game9GeneratorFv = .text:0x801AA964; // type:function size:0x34 scope:global align:4 +loadCreature__Q24Game9GeneratorFR6Stream = .text:0x801AA998; // type:function size:0xB8 scope:global align:4 +generate__Q24Game9GenObjectFPQ24Game9Generator = .text:0x801AAA50; // type:function size:0x8 scope:weak align:4 +need_saveCreature__Q24Game9GeneratorFv = .text:0x801AAA58; // type:function size:0x7C scope:global align:4 +saveCreature__Q24Game9GeneratorFR6Stream = .text:0x801AAAD4; // type:function size:0xC8 scope:global align:4 +generate__Q24Game9GeneratorFv = .text:0x801AAB9C; // type:function size:0x138 scope:global align:4 +informDeath__Q24Game9GeneratorFPQ24Game8Creature = .text:0x801AACD4; // type:function size:0x24 scope:global align:4 +read__Q24Game9GeneratorFR6Stream = .text:0x801AACF8; // type:function size:0x3A4 scope:global align:4 +write__Q24Game9GeneratorFR6Stream = .text:0x801AB09C; // type:function size:0x39C scope:global align:4 +__ct__Q24Game12GeneratorMgrFv = .text:0x801AB438; // type:function size:0x120 scope:global align:4 +addMgr__Q24Game12GeneratorMgrFPQ24Game12GeneratorMgr = .text:0x801AB558; // type:function size:0x3C scope:global align:4 +generate__Q24Game12GeneratorMgrFv = .text:0x801AB594; // type:function size:0x148 scope:global align:4 +setDayLimit__Q24Game12GeneratorMgrFi = .text:0x801AB6DC; // type:function size:0x1C scope:global align:4 +updateUseList__Q24Game12GeneratorMgrFv = .text:0x801AB6F8; // type:function size:0x98 scope:global align:4 +getNext__Q24Game12GeneratorMgrFv = .text:0x801AB790; // type:function size:0x8 scope:weak align:4 +getChild__Q24Game12GeneratorMgrFv = .text:0x801AB798; // type:function size:0x8 scope:weak align:4 +updateCursorPos__Q24Game12GeneratorMgrFR10Vector3 = .text:0x801AB7A0; // type:function size:0x43C scope:global align:4 +__as__10Vector3FRC10Vector3 = .text:0x801ABBDC; // type:function size:0x1C scope:weak align:4 +read__Q24Game12GeneratorMgrFR6Streamb = .text:0x801ABBF8; // type:function size:0x2F0 scope:global align:4 +doAnimation__Q24Game9GeneratorFv = .text:0x801ABEE8; // type:function size:0xD8 scope:global align:4 +doEntry__Q24Game9GeneratorFv = .text:0x801ABFC0; // type:function size:0x70 scope:global align:4 +doSetView__Q24Game9GeneratorFi = .text:0x801AC030; // type:function size:0x70 scope:global align:4 +doViewCalc__Q24Game9GeneratorFv = .text:0x801AC0A0; // type:function size:0x60 scope:global align:4 +doAnimation__Q24Game12GeneratorMgrFv = .text:0x801AC100; // type:function size:0x7C scope:global align:4 +doEntry__Q24Game12GeneratorMgrFv = .text:0x801AC17C; // type:function size:0x7C scope:global align:4 +doSetView__Q24Game12GeneratorMgrFi = .text:0x801AC1F8; // type:function size:0x90 scope:global align:4 +doViewCalc__Q24Game12GeneratorMgrFv = .text:0x801AC288; // type:function size:0x7C scope:global align:4 +__dt__Q24Game12GeneratorMgrFv = .text:0x801AC304; // type:function size:0x60 scope:weak align:4 +render__Q24Game9GenObjectFR8GraphicsPQ24Game9Generator = .text:0x801AC364; // type:function size:0x4 scope:weak align:4 +getShape__Q24Game7GenBaseFv = .text:0x801AC368; // type:function size:0x8 scope:weak align:4 +update__Q24Game7GenBaseFPQ24Game9Generator = .text:0x801AC370; // type:function size:0x4 scope:weak align:4 +render__Q24Game7GenBaseFR8GraphicsPQ24Game9Generator = .text:0x801AC374; // type:function size:0x4 scope:weak align:4 +__sinit_gameGenerator_cpp = .text:0x801AC378; // type:function size:0x28 scope:local align:4 +makeObjectPiki__Fv = .text:0x801AC3A0; // type:function size:0x128 scope:local align:4 +initialise__Q24Game13GenObjectPikiFv = .text:0x801AC4C8; // type:function size:0x8C scope:global align:4 +ramSaveParameters__Q24Game13GenObjectPikiFR6Stream = .text:0x801AC554; // type:function size:0x2C scope:global align:4 +ramLoadParameters__Q24Game13GenObjectPikiFR6Stream = .text:0x801AC580; // type:function size:0x38 scope:global align:4 +generate__Q24Game13GenObjectPikiFPQ24Game9Generator = .text:0x801AC5B8; // type:function size:0x258 scope:global align:4 +birth__Q24Game13GenObjectPikiFPQ24Game6GenArg = .text:0x801AC810; // type:function size:0x1B0 scope:global align:4 +__sinit_genPiki_cpp = .text:0x801AC9C0; // type:function size:0x28 scope:local align:4 +makeObjectNavi__Fv = .text:0x801AC9E8; // type:function size:0xB8 scope:local align:4 +initialise__Q24Game13GenObjectNaviFv = .text:0x801ACAA0; // type:function size:0x8C scope:global align:4 +ramSaveParameters__Q24Game13GenObjectNaviFR6Stream = .text:0x801ACB2C; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game13GenObjectNaviFR6Stream = .text:0x801ACB30; // type:function size:0x4 scope:global align:4 +generate__Q24Game13GenObjectNaviFPQ24Game9Generator = .text:0x801ACB34; // type:function size:0x78 scope:global align:4 +birth__Q24Game13GenObjectNaviFPQ24Game6GenArg = .text:0x801ACBAC; // type:function size:0x138 scope:global align:4 +getCalc__Q28SysShape8AnimatorFv = .text:0x801ACCE4; // type:function size:0x1C scope:weak align:4 +makeItem__Fv = .text:0x801ACD00; // type:function size:0x9C scope:local align:4 +initialise__Q24Game7GenItemFv = .text:0x801ACD9C; // type:function size:0x8C scope:global align:4 +updateUseList__Q24Game7GenItemFPQ24Game9Generatori = .text:0x801ACE28; // type:function size:0x38 scope:global align:4 +doEvent__Q24Game7GenItemFUl = .text:0x801ACE60; // type:function size:0x6C scope:global align:4 +generatorMakeMatrix__Q24Game7GenItemFR7MatrixfR10Vector3 = .text:0x801ACECC; // type:function size:0x68 scope:global align:4 +getShape__Q24Game7GenItemFv = .text:0x801ACF34; // type:function size:0x50 scope:global align:4 +doWrite__Q24Game7GenItemFR6Stream = .text:0x801ACF84; // type:function size:0x154 scope:global align:4 +generatorWrite__Q24Game11BaseItemMgrFR6StreamPQ24Game11GenItemParm = .text:0x801AD0D8; // type:function size:0x4 scope:weak align:4 +generatorLocalVersion__Q24Game11BaseItemMgrFv = .text:0x801AD0DC; // type:function size:0xC scope:weak align:4 +doRead__Q24Game7GenItemFR6Stream = .text:0x801AD0E8; // type:function size:0x148 scope:global align:4 +generatorRead__Q24Game11BaseItemMgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801AD230; // type:function size:0x4 scope:weak align:4 +ramSaveParameters__Q24Game7GenItemFR6Stream = .text:0x801AD234; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game7GenItemFR6Stream = .text:0x801AD238; // type:function size:0x4 scope:global align:4 +generate__Q24Game7GenItemFPQ24Game9Generator = .text:0x801AD23C; // type:function size:0x78 scope:global align:4 +birth__Q24Game7GenItemFPQ24Game6GenArg = .text:0x801AD2B4; // type:function size:0xA4 scope:global align:4 +__dt__Q24Game11CaveOtakaraFv = .text:0x801AD358; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game8LimitGenFv = .text:0x801AD3B8; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game10CourseInfoFv = .text:0x801AD418; // type:function size:0x154 scope:global align:4 +dump__Q24Game10CourseInfoFv = .text:0x801AD56C; // type:function size:0x4 scope:global align:4 +read__Q24Game10CourseInfoFR6Stream = .text:0x801AD570; // type:function size:0x4C4 scope:global align:4 +getOtakaraNum__Q24Game10CourseInfoFR4ID32 = .text:0x801ADA34; // type:function size:0x88 scope:global align:4 +getOtakaraNum__Q24Game10CourseInfoFi = .text:0x801ADABC; // type:function size:0x38 scope:global align:4 +getCaveIndex_FromID__Q24Game10CourseInfoFR4ID32 = .text:0x801ADAF4; // type:function size:0x8C scope:global align:4 +getCaveinfoFilename_FromID__Q24Game10CourseInfoFR4ID32 = .text:0x801ADB80; // type:function size:0x9C scope:global align:4 +getCaveID_FromIndex__Q24Game10CourseInfoFi = .text:0x801ADC1C; // type:function size:0x3C scope:global align:4 +getCaveNum__Q24Game10CourseInfoFv = .text:0x801ADC58; // type:function size:0x8 scope:global align:4 +__ct__Q24Game6StagesFv = .text:0x801ADC60; // type:function size:0x1EC scope:global align:4 +__dt__Q24Game10CourseInfoFv = .text:0x801ADE4C; // type:function size:0xD0 scope:weak align:4 +getCourseInfo__Q24Game6StagesFPc = .text:0x801ADF1C; // type:function size:0x70 scope:global align:4 +getCourseInfo__Q24Game6StagesFi = .text:0x801ADF8C; // type:function size:0x74 scope:global align:4 +createMapMgr__Q24Game6StagesFPQ24Game10CourseInfoPQ24Game8RouteMgr = .text:0x801AE000; // type:function size:0x234 scope:global align:4 +__dt__12MapCollisionFv = .text:0x801AE234; // type:function size:0x60 scope:weak align:4 +read__Q24Game6StagesFR6Stream = .text:0x801AE294; // type:function size:0x194 scope:global align:4 +startDown__Q24Game12AABBWaterBoxFf = .text:0x801AE428; // type:function size:0x28 scope:global align:4 +startUp__Q24Game12AABBWaterBoxFf = .text:0x801AE450; // type:function size:0x38 scope:global align:4 +update__Q24Game12AABBWaterBoxFv = .text:0x801AE488; // type:function size:0xB8 scope:global align:4 +attachModel__Q24Game12AABBWaterBoxFP12J3DModelDataPQ23Sys15MatTexAnimationf = .text:0x801AE540; // type:function size:0x1B0 scope:global align:4 +calcMatrix__Q24Game12AABBWaterBoxFv = .text:0x801AE6F0; // type:function size:0xA0 scope:global align:4 +doAnimation__Q24Game12AABBWaterBoxFv = .text:0x801AE790; // type:function size:0x48 scope:global align:4 +doSetView__Q24Game12AABBWaterBoxFi = .text:0x801AE7D8; // type:function size:0x30 scope:global align:4 +doViewCalc__Q24Game12AABBWaterBoxFv = .text:0x801AE808; // type:function size:0x2C scope:global align:4 +doEntry__Q24Game12AABBWaterBoxFv = .text:0x801AE834; // type:function size:0x538 scope:global align:4 +update__Q24Game6SeaMgrFv = .text:0x801AED6C; // type:function size:0x210 scope:global align:4 +inWater__Q24Game12AABBWaterBoxFRQ23Sys6Sphere = .text:0x801AEF7C; // type:function size:0x104 scope:global align:4 +inWater2d__Q24Game12AABBWaterBoxFRQ23Sys6Sphere = .text:0x801AF080; // type:function size:0xE4 scope:global align:4 +globalise__Q24Game12AABBWaterBoxFPQ24Game12AABBWaterBoxR7Matrixf = .text:0x801AF164; // type:function size:0x1C8 scope:global align:4 +directDraw__Q24Game12AABBWaterBoxFR8Graphics = .text:0x801AF32C; // type:function size:0x4 scope:global align:4 +__ct__Q24Game6SeaMgrFv = .text:0x801AF330; // type:function size:0x2F8 scope:global align:4 +__dt__31NodeObjectMgrFv = .text:0x801AF628; // type:function size:0xC8 scope:weak align:4 +__dt__29TObjectNodeFv = .text:0x801AF6F0; // type:function size:0x60 scope:weak align:4 +__dt__27ObjectMgrFv = .text:0x801AF750; // type:function size:0x88 scope:weak align:4 +__dt__27ContainerFv = .text:0x801AF7D8; // type:function size:0x70 scope:weak align:4 +attachModel__Q24Game8WaterBoxFP12J3DModelDataPQ23Sys15MatTexAnimationf = .text:0x801AF848; // type:function size:0x4 scope:weak align:4 +findWater__Q24Game6SeaMgrFRQ23Sys6Sphere = .text:0x801AF84C; // type:function size:0x214 scope:global align:4 +findWater2d__Q24Game6SeaMgrFRQ23Sys6Sphere = .text:0x801AFA60; // type:function size:0x214 scope:global align:4 +inWater2d__Q24Game8WaterBoxFRQ23Sys6Sphere = .text:0x801AFC74; // type:function size:0x8 scope:weak align:4 +read__Q24Game6SeaMgrFR6Stream = .text:0x801AFC7C; // type:function size:0x20C scope:global align:4 +addSeaMgr__Q24Game6SeaMgrFPQ24Game6SeaMgrR7Matrixf = .text:0x801AFE88; // type:function size:0x308 scope:global align:4 +__dt__Q24Game6SeaMgrFv = .text:0x801B0190; // type:function size:0xE0 scope:weak align:4 +getSeaLevel__Q24Game12AABBWaterBoxFv = .text:0x801B0270; // type:function size:0x10 scope:weak align:4 +getSeaHeightPtr__Q24Game12AABBWaterBoxFv = .text:0x801B0280; // type:function size:0x8 scope:weak align:4 +doSimulation__Q24Game8WaterBoxFf = .text:0x801B0288; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game8WaterBoxFR8Graphics = .text:0x801B028C; // type:function size:0x4 scope:weak align:4 +startDown__Q24Game8WaterBoxFf = .text:0x801B0290; // type:function size:0x4 scope:weak align:4 +startUp__Q24Game8WaterBoxFf = .text:0x801B0294; // type:function size:0x4 scope:weak align:4 +directDraw__Q24Game8WaterBoxFR8Graphics = .text:0x801B0298; // type:function size:0x4 scope:weak align:4 +calcMatrix__Q24Game8WaterBoxFv = .text:0x801B029C; // type:function size:0x4 scope:weak align:4 +get__31NodeObjectMgrFPv = .text:0x801B02A0; // type:function size:0x8 scope:weak align:4 +getNext__31NodeObjectMgrFPv = .text:0x801B02A8; // type:function size:0x8 scope:weak align:4 +getStart__31NodeObjectMgrFv = .text:0x801B02B0; // type:function size:0x8 scope:weak align:4 +getEnd__31NodeObjectMgrFv = .text:0x801B02B8; // type:function size:0x8 scope:weak align:4 +delNode__31NodeObjectMgrFPQ24Game8WaterBox = .text:0x801B02C0; // type:function size:0x44 scope:weak align:4 +resetMgr__31NodeObjectMgrFv = .text:0x801B0304; // type:function size:0x18 scope:weak align:4 +doSimulation__27ObjectMgrFf = .text:0x801B031C; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801B0510; // type:function size:0x1F4 scope:weak align:4 +getObject__27ContainerFPv = .text:0x801B0704; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x801B0730; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x801B0738; // type:function size:0x8 scope:weak align:4 +__sinit_gameSeaMgr_cpp = .text:0x801B0740; // type:function size:0x28 scope:local align:4 +@28@resetMgr__31NodeObjectMgrFv = .text:0x801B0768; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801B0770; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27ObjectMgrFf = .text:0x801B0778; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27ObjectMgrFv = .text:0x801B0780; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27ObjectMgrFi = .text:0x801B0788; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27ObjectMgrFv = .text:0x801B0790; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27ObjectMgrFv = .text:0x801B0798; // type:function size:0x8 scope:weak align:4 +graspSituation_Fast__Q24Game4PikiFPPQ24Game8Creature = .text:0x801B07A0; // type:function size:0xBA0 scope:global align:4 +graspSituation__Q24Game4PikiFPPQ24Game8Creature = .text:0x801B1340; // type:function size:0x1A04 scope:global align:4 +isDone__26IteratorFv = .text:0x801B2D44; // type:function size:0x4C scope:weak align:4 +invokeAI__Q24Game4PikiFPQ24Game9CollEventb = .text:0x801B2D90; // type:function size:0x7D4 scope:global align:4 +invokeAI__Q24Game4PikiFPQ24Game9PlatEvent = .text:0x801B3564; // type:function size:0x2C4 scope:global align:4 +invokeAIFree__Q24Game4PikiFRQ34Game4Piki15InvokeAIFreeArg = .text:0x801B3828; // type:function size:0xB0 scope:global align:4 +checkInvokeAI__Q24Game4PikiFb = .text:0x801B38D8; // type:function size:0x310 scope:global align:4 +invokeAI__Q24Game4PikiFv = .text:0x801B3BE8; // type:function size:0x54 scope:global align:4 +setActTransportArg__Q24Game4PikiFRQ26PikiAI15ActTransportArg = .text:0x801B3C3C; // type:function size:0x28 scope:global align:4 +getName__Q26PikiAI12ActBridgeArgFv = .text:0x801B3C64; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI15ActBreakRockArgFv = .text:0x801B3C70; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI15ActBreakGateArgFv = .text:0x801B3C7C; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI15ActTransportArgFv = .text:0x801B3C88; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI12ActAttackArgFv = .text:0x801B3C94; // type:function size:0xC scope:weak align:4 +getName__Q26PikiAI10ActWeedArgFv = .text:0x801B3CA0; // type:function size:0xC scope:weak align:4 +__ml__26IteratorFv = .text:0x801B3CAC; // type:function size:0x38 scope:weak align:4 +next__26IteratorFv = .text:0x801B3CE4; // type:function size:0xE4 scope:weak align:4 +first__26IteratorFv = .text:0x801B3DC8; // type:function size:0xDC scope:weak align:4 +__sinit_pikiAI_cpp = .text:0x801B3EA4; // type:function size:0x28 scope:local align:4 +__ct__Q24Game16PelletConfigListFv = .text:0x801B3ECC; // type:function size:0x48 scope:global align:4 +__ct__Q24Game12PelletConfigFv = .text:0x801B3F14; // type:function size:0xAC scope:global align:4 +__dt__Q34Game12PelletConfig6TParmsFv = .text:0x801B3FC0; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game12PelletConfig6TParmsFv = .text:0x801B4030; // type:function size:0x374 scope:weak align:4 +__dt__13TagParametersFv = .text:0x801B43A4; // type:function size:0x60 scope:weak align:4 +getPelletConfig__Q24Game16PelletConfigListFPc = .text:0x801B4404; // type:function size:0x84 scope:global align:4 +getPelletConfig__Q24Game16PelletConfigListFi = .text:0x801B4488; // type:function size:0x7C scope:global align:4 +getPelletConfig_ByDictionaryNo__Q24Game16PelletConfigListFi = .text:0x801B4504; // type:function size:0x44 scope:global align:4 +read__Q24Game16PelletConfigListFR6Stream = .text:0x801B4548; // type:function size:0x130 scope:global align:4 +__dt__Q24Game12PelletConfigFv = .text:0x801B4678; // type:function size:0x98 scope:weak align:4 +flushValue__7TagParmFv = .text:0x801B4710; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game16PelletConfigListFv = .text:0x801B4714; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game8FootmarkFv = .text:0x801B4774; // type:function size:0x1C scope:global align:4 +__ct__Q24Game9FootmarksFv = .text:0x801B4790; // type:function size:0x1C scope:global align:4 +alloc__Q24Game9FootmarksFi = .text:0x801B47AC; // type:function size:0x6C scope:global align:4 +add__Q24Game9FootmarksFRQ24Game8Footmark = .text:0x801B4818; // type:function size:0x134 scope:global align:4 +get__Q24Game9FootmarksFi = .text:0x801B494C; // type:function size:0x4C scope:global align:4 +findNearest2__Q24Game9FootmarksFR10Vector3i = .text:0x801B4998; // type:function size:0xC8 scope:global align:4 +__ct__Q24Game10GameSystemFPQ24Game15BaseGameSection = .text:0x801B4A60; // type:function size:0x100 scope:global align:4 +__dt__Q24Game10GameSystemFv = .text:0x801B4B60; // type:function size:0xE8 scope:global align:4 +init__Q24Game10GameSystemFv = .text:0x801B4C48; // type:function size:0xF0 scope:global align:4 +calcFrameDist__Q24Game10GameSystemFi = .text:0x801B4D38; // type:function size:0x20 scope:global align:4 +startFrame__Q24Game10GameSystemFv = .text:0x801B4D58; // type:function size:0xDC scope:global align:4 +endFrame__Q24Game10GameSystemFv = .text:0x801B4E34; // type:function size:0x18 scope:global align:4 +startFadeout__Q24Game10GameSystemFf = .text:0x801B4E4C; // type:function size:0x38 scope:global align:4 +startFadein__Q24Game10GameSystemFf = .text:0x801B4E84; // type:function size:0x38 scope:global align:4 +startFadeoutin__Q24Game10GameSystemFf = .text:0x801B4EBC; // type:function size:0x38 scope:global align:4 +startFadeblack__Q24Game10GameSystemFv = .text:0x801B4EF4; // type:function size:0x38 scope:global align:4 +startFadewhite__Q24Game10GameSystemFv = .text:0x801B4F2C; // type:function size:0x38 scope:global align:4 +setMoviePause__Q24Game10GameSystemFbPc = .text:0x801B4F64; // type:function size:0x8 scope:global align:4 +setFrozen__Q24Game10GameSystemFbPc = .text:0x801B4F6C; // type:function size:0x8 scope:global align:4 +setPause__Q24Game10GameSystemFbPci = .text:0x801B4F74; // type:function size:0x2C scope:global align:4 +paused_soft__Q24Game10GameSystemFv = .text:0x801B4FA0; // type:function size:0x8 scope:global align:4 +paused__Q24Game10GameSystemFv = .text:0x801B4FA8; // type:function size:0x28 scope:global align:4 +startPause__Q24Game10GameSystemFbiPc = .text:0x801B4FD0; // type:function size:0x50 scope:global align:4 +setDrawBuffer__Q24Game10GameSystemFi = .text:0x801B5020; // type:function size:0x2C scope:global align:4 +getLightMgr__Q24Game10GameSystemFv = .text:0x801B504C; // type:function size:0xC scope:global align:4 +doAnimation__Q24Game10GameSystemFv = .text:0x801B5058; // type:function size:0x274 scope:global align:4 +doEntry__Q24Game10GameSystemFv = .text:0x801B52CC; // type:function size:0x1E4 scope:global align:4 +doSetView__Q24Game10GameSystemFi = .text:0x801B54B0; // type:function size:0x1F4 scope:global align:4 +doViewCalc__Q24Game10GameSystemFv = .text:0x801B56A4; // type:function size:0x404 scope:global align:4 +doSimulation__Q24Game10GameSystemFf = .text:0x801B5AA8; // type:function size:0x284 scope:global align:4 +doSimpleDraw__Q24Game10GameSystemFP8Viewport = .text:0x801B5D2C; // type:function size:0x1F4 scope:global align:4 +doDirectDraw__Q24Game10GameSystemFR8Graphics = .text:0x801B5F20; // type:function size:0x4 scope:global align:4 +directDraw__Q24Game10GameSystemFR8Graphics = .text:0x801B5F24; // type:function size:0x4 scope:global align:4 +addObjectMgr__Q24Game10GameSystemFP16GenericObjectMgr = .text:0x801B5F28; // type:function size:0x6C scope:global align:4 +detachObjectMgr__Q24Game10GameSystemFP16GenericObjectMgr = .text:0x801B5F94; // type:function size:0x20 scope:global align:4 +addObjectMgr_reuse__Q24Game10GameSystemFP31TObjectNode<16GenericObjectMgr> = .text:0x801B5FB4; // type:function size:0x24 scope:global align:4 +detachObjectMgr_reuse__Q24Game10GameSystemFP16GenericObjectMgr = .text:0x801B5FD8; // type:function size:0x58 scope:global align:4 +__dt__Q24Game18OptimiseControllerFv = .text:0x801B6030; // type:function size:0x68 scope:global align:4 +globalInstance__Q24Game18OptimiseControllerFv = .text:0x801B6098; // type:function size:0x10C scope:global align:4 +deleteInstance__Q24Game18OptimiseControllerFv = .text:0x801B61A4; // type:function size:0x48 scope:global align:4 +delNode__33NodeObjectMgr<16GenericObjectMgr>FP16GenericObjectMgr = .text:0x801B61EC; // type:function size:0x44 scope:weak align:4 +__sinit_gameSystem_cpp = .text:0x801B6230; // type:function size:0x28 scope:local align:4 +@28@doSimpleDraw__Q24Game10GameSystemFP8Viewport = .text:0x801B6258; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game10GameSystemFR8Graphics = .text:0x801B6260; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game10GameSystemFf = .text:0x801B6268; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__Q24Game10GameSystemFv = .text:0x801B6270; // type:function size:0x8 scope:weak align:4 +@28@doSetView__Q24Game10GameSystemFi = .text:0x801B6278; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game10GameSystemFv = .text:0x801B6280; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game10GameSystemFv = .text:0x801B6288; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game11AIConstantsFv = .text:0x801B6290; // type:function size:0x148 scope:global align:4 +__dt__Q24Game11AIConstantsFv = .text:0x801B63D8; // type:function size:0x70 scope:weak align:4 +getDoor__Q24Game16MapUnitInterfaceFi = .text:0x801B6448; // type:function size:0x24 scope:global align:4 +getCellSize__Q24Game16MapUnitInterfaceFRiRi = .text:0x801B646C; // type:function size:0x1C scope:global align:4 +getLink__Q24Game4DoorFi = .text:0x801B6488; // type:function size:0x24 scope:global align:4 +read__Q24Game4DoorFR6Stream = .text:0x801B64AC; // type:function size:0x104 scope:global align:4 +__ct__Q24Game7MapUnitFv = .text:0x801B65B0; // type:function size:0xAC scope:global align:4 +getBoundBox__12MapCollisionFR8BoundBox = .text:0x801B665C; // type:function size:0x30 scope:weak align:4 +load__Q24Game7MapUnitFR6Stream = .text:0x801B668C; // type:function size:0x4C scope:global align:4 +__dt__30NodeObjectMgrFv = .text:0x801B66D8; // type:function size:0xC8 scope:weak align:4 +__dt__28TObjectNodeFv = .text:0x801B67A0; // type:function size:0x60 scope:weak align:4 +__dt__26ObjectMgrFv = .text:0x801B6800; // type:function size:0x88 scope:weak align:4 +__dt__26ContainerFv = .text:0x801B6888; // type:function size:0x70 scope:weak align:4 +getAt__Q24Game10MapUnitMgrFi = .text:0x801B68F8; // type:function size:0x88 scope:global align:4 +isDone__25IteratorFv = .text:0x801B6980; // type:function size:0x4C scope:weak align:4 +makeUnit__Q24Game10MapUnitMgrFPQ24Game7MapUnitPc = .text:0x801B69CC; // type:function size:0x440 scope:global align:4 +__ct__Q24Game7MapRoomFv = .text:0x801B6E0C; // type:function size:0xDC scope:global align:4 +getExtraCode__Q24Game16ObjectLayoutNodeFv = .text:0x801B6EE8; // type:function size:0x8 scope:weak align:4 +placeObjects__Q24Game7MapRoomFPQ34Game4Cave9FloorInfob = .text:0x801B6EF0; // type:function size:0x7B8 scope:global align:4 +getBirthDoorIndex__Q24Game16ObjectLayoutNodeFv = .text:0x801B76A8; // type:function size:0x8 scope:weak align:4 +isFixedBattery__Q24Game16ObjectLayoutNodeFv = .text:0x801B76B0; // type:function size:0x8 scope:weak align:4 +getDirection__Q24Game16ObjectLayoutNodeFv = .text:0x801B76B8; // type:function size:0x8 scope:weak align:4 +getBirthPosition__Q24Game16ObjectLayoutNodeFRfRf = .text:0x801B76C0; // type:function size:0x4 scope:weak align:4 +__ct__Q24Game12RoomDoorInfoFv = .text:0x801B76C4; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game7MapRoomFv = .text:0x801B76C8; // type:function size:0xD4 scope:global align:4 +doEntry__Q24Game7MapRoomFv = .text:0x801B779C; // type:function size:0x1F4 scope:global align:4 +doSetView__Q24Game7MapRoomFi = .text:0x801B7990; // type:function size:0x124 scope:global align:4 +doViewCalc__Q24Game7MapRoomFv = .text:0x801B7AB4; // type:function size:0x24 scope:global align:4 +doSimulation__Q24Game7MapRoomFf = .text:0x801B7AD8; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q24Game7MapRoomFR8Graphics = .text:0x801B7ADC; // type:function size:0x4 scope:global align:4 +__ct__Q24Game10RoomMapMgrFPQ34Game4Cave8CaveInfo = .text:0x801B7AE0; // type:function size:0x1E8 scope:global align:4 +__dt__30MonoObjectMgrFv = .text:0x801B7CC8; // type:function size:0xA0 scope:weak align:4 +getMapRoom__Q24Game10RoomMapMgrFs = .text:0x801B7D68; // type:function size:0x1FC scope:global align:4 +isDone__25IteratorFv = .text:0x801B7F64; // type:function size:0x4C scope:weak align:4 +__ct__Q24Game9CaveVRBoxFv = .text:0x801B7FB0; // type:function size:0xC scope:global align:4 +createRandomMap__Q24Game10RoomMapMgrFiPQ34Game4Cave11EditMapUnit = .text:0x801B7FBC; // type:function size:0xA48 scope:global align:4 +__dt__Q24Game16MapUnitInterfaceFv = .text:0x801B8A04; // type:function size:0xEC scope:weak align:4 +__ct__Q24Game16MapUnitInterfaceFv = .text:0x801B8AF0; // type:function size:0x3C scope:weak align:4 +__dt__Q24Game9PartsViewFv = .text:0x801B8B2C; // type:function size:0xDC scope:weak align:4 +completeUnitData__Q24Game10RoomMapMgrFv = .text:0x801B8C08; // type:function size:0x224 scope:global align:4 +setupJUTTextures__Q24Game10RoomMapMgrFv = .text:0x801B8E2C; // type:function size:0x234 scope:global align:4 +useUnit__Q24Game10RoomMapMgrFPc = .text:0x801B9060; // type:function size:0x2BC scope:global align:4 +getTexture__Q24Game10RoomMapMgrFPc = .text:0x801B931C; // type:function size:0x210 scope:global align:4 +allocRooms__Q24Game10RoomMapMgrFi = .text:0x801B952C; // type:function size:0x1F4 scope:global align:4 +makeRoom__Q24Game10RoomMapMgrFPcffiiPQ24Game8RoomLinkPQ24Game16ObjectLayoutInfo = .text:0x801B9720; // type:function size:0x50 scope:global align:4 +placeObjects__Q24Game10RoomMapMgrFv = .text:0x801B9770; // type:function size:0x3B4 scope:global align:4 +getBoundBox2d__Q24Game10RoomMapMgrFR10BoundBox2d = .text:0x801B9B24; // type:function size:0x24 scope:global align:4 +getBoundBox__Q24Game10RoomMapMgrFR8BoundBox = .text:0x801B9B48; // type:function size:0x34 scope:global align:4 +drawCollision__Q24Game10RoomMapMgrFR8GraphicsRQ23Sys6Sphere = .text:0x801B9B7C; // type:function size:0x4 scope:global align:4 +traceMove__Q24Game10RoomMapMgrFRQ24Game8MoveInfof = .text:0x801B9B80; // type:function size:0x1F0 scope:global align:4 +hasHiddenCollision__Q24Game10RoomMapMgrFv = .text:0x801B9D70; // type:function size:0x24 scope:global align:4 +constraintBoundBox__Q24Game10RoomMapMgrFRQ23Sys6Sphere = .text:0x801B9D94; // type:function size:0x8C scope:global align:4 +entryToMapRoomCellMgr__Q24Game10RoomMapMgrFv = .text:0x801B9E20; // type:function size:0x1F4 scope:global align:4 +findRoomIndex__Q24Game10RoomMapMgrFRQ23Sys6Sphere = .text:0x801BA014; // type:function size:0x128 scope:global align:4 +createGlobalCollision__Q24Game10RoomMapMgrFv = .text:0x801BA13C; // type:function size:0x9FC scope:global align:4 +addOne__Q23Sys11VertexTableFR10Vector3 = .text:0x801BAB38; // type:function size:0xB8 scope:weak align:4 +addOne__31ArrayContainerFRQ23Sys8Triangle = .text:0x801BABF0; // type:function size:0xE8 scope:weak align:4 +alloc__31ArrayContainerFi = .text:0x801BACD8; // type:function size:0x68 scope:weak align:4 +traceMove_new__Q24Game10RoomMapMgrFRQ24Game8MoveInfof = .text:0x801BAD40; // type:function size:0x328 scope:global align:4 +traceMove_original__Q24Game10RoomMapMgrFRQ24Game8MoveInfof = .text:0x801BB068; // type:function size:0x740 scope:global align:4 +findRayIntersection__Q24Game10RoomMapMgrFRQ23Sys16RayIntersectInfo = .text:0x801BB7A8; // type:function size:0x4F0 scope:global align:4 +getMinY__Q24Game10RoomMapMgrFR10Vector3 = .text:0x801BBC98; // type:function size:0x8C scope:global align:4 +createTriangles__Q24Game10RoomMapMgrFRQ23Sys17CreateTriangleArg = .text:0x801BBD24; // type:function size:0x770 scope:global align:4 +getCurrTri__Q24Game10RoomMapMgrFRQ24Game11CurrTriInfo = .text:0x801BC494; // type:function size:0x460 scope:global align:4 +makeOneRoom__Q24Game10RoomMapMgrFfffPcsPQ24Game8RoomLinkPQ24Game16ObjectLayoutInfo = .text:0x801BC8F4; // type:function size:0x16B8 scope:global align:4 +deleteTemp__Q24Game10RoomMapMgrFv = .text:0x801BDFAC; // type:function size:0x1F4 scope:global align:4 +getMUI__Q24Game10RoomMapMgrFPQ24Game7MapUnit = .text:0x801BE1A0; // type:function size:0x94 scope:global align:4 +doAnimation__Q24Game10RoomMapMgrFv = .text:0x801BE234; // type:function size:0x60 scope:global align:4 +doEntry__Q24Game10RoomMapMgrFv = .text:0x801BE294; // type:function size:0xDC scope:global align:4 +doSetView__Q24Game10RoomMapMgrFi = .text:0x801BE370; // type:function size:0x7C scope:global align:4 +doViewCalc__Q24Game10RoomMapMgrFv = .text:0x801BE3EC; // type:function size:0x68 scope:global align:4 +doSimulation__Q24Game10RoomMapMgrFf = .text:0x801BE454; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q24Game10RoomMapMgrFR8Graphics = .text:0x801BE458; // type:function size:0x210 scope:global align:4 +getStartPosition__Q24Game10RoomMapMgrFR10Vector3i = .text:0x801BE668; // type:function size:0x24 scope:weak align:4 +getDemoMatrix__Q24Game10RoomMapMgrFv = .text:0x801BE68C; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game4DoorFv = .text:0x801BE694; // type:function size:0x84 scope:weak align:4 +constructor__Q24Game9PartsViewFv = .text:0x801BE718; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game9PartsViewFf = .text:0x801BE71C; // type:function size:0x4 scope:weak align:4 +__ml__25IteratorFv = .text:0x801BE720; // type:function size:0x38 scope:weak align:4 +next__25IteratorFv = .text:0x801BE758; // type:function size:0xE4 scope:weak align:4 +first__25IteratorFv = .text:0x801BE83C; // type:function size:0xDC scope:weak align:4 +__dt__26ContainerFv = .text:0x801BE918; // type:function size:0x70 scope:weak align:4 +__dt__26ObjectMgrFv = .text:0x801BE988; // type:function size:0x88 scope:weak align:4 +getBoundingSphere__Q24Game7MapRoomFRQ23Sys6Sphere = .text:0x801BEA10; // type:function size:0x24 scope:weak align:4 +getTypeName__Q24Game7MapRoomFv = .text:0x801BEA34; // type:function size:0x8 scope:weak align:4 +getObjType__Q24Game7MapRoomFv = .text:0x801BEA3C; // type:function size:0xC scope:weak align:4 +collisionUpdatable__Q24Game7MapRoomFv = .text:0x801BEA48; // type:function size:0x8 scope:weak align:4 +getPosition__Q24Game7MapRoomFv = .text:0x801BEA50; // type:function size:0x1C scope:weak align:4 +constructor__Q24Game7MapRoomFv = .text:0x801BEA6C; // type:function size:0x4 scope:weak align:4 +getName__Q24Game15ItemGateInitArgFv = .text:0x801BEA70; // type:function size:0xC scope:weak align:4 +getName__Q34Game15ItemBigFountain7InitArgFv = .text:0x801BEA7C; // type:function size:0xC scope:weak align:4 +getName__Q34Game8ItemHole7InitArgFv = .text:0x801BEA88; // type:function size:0xC scope:weak align:4 +__ml__25IteratorFv = .text:0x801BEA94; // type:function size:0x38 scope:weak align:4 +next__25IteratorFv = .text:0x801BEACC; // type:function size:0xE4 scope:weak align:4 +first__25IteratorFv = .text:0x801BEBB0; // type:function size:0xDC scope:weak align:4 +__dt__Q24Game10MapUnitMgrFv = .text:0x801BEC8C; // type:function size:0xE0 scope:weak align:4 +constructor__Q24Game7MapUnitFv = .text:0x801BED6C; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game7MapUnitFv = .text:0x801BED70; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game7MapUnitFv = .text:0x801BED74; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game7MapUnitFi = .text:0x801BED78; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game7MapUnitFv = .text:0x801BED7C; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game7MapUnitFf = .text:0x801BED80; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game7MapUnitFR8Graphics = .text:0x801BED84; // type:function size:0x4 scope:weak align:4 +__dt__Q24Game8DoorLinkFv = .text:0x801BED88; // type:function size:0x60 scope:weak align:4 +get__30NodeObjectMgrFPv = .text:0x801BEDE8; // type:function size:0x8 scope:weak align:4 +getNext__30NodeObjectMgrFPv = .text:0x801BEDF0; // type:function size:0x8 scope:weak align:4 +getStart__30NodeObjectMgrFv = .text:0x801BEDF8; // type:function size:0x8 scope:weak align:4 +getEnd__30NodeObjectMgrFv = .text:0x801BEE00; // type:function size:0x8 scope:weak align:4 +resetMgr__30NodeObjectMgrFv = .text:0x801BEE08; // type:function size:0x18 scope:weak align:4 +birth__30MonoObjectMgrFv = .text:0x801BEE20; // type:function size:0x60 scope:weak align:4 +getNext__30MonoObjectMgrFPv = .text:0x801BEE80; // type:function size:0x40 scope:weak align:4 +getStart__30MonoObjectMgrFv = .text:0x801BEEC0; // type:function size:0x30 scope:weak align:4 +getEnd__30MonoObjectMgrFv = .text:0x801BEEF0; // type:function size:0x8 scope:weak align:4 +getAt__30MonoObjectMgrFi = .text:0x801BEEF8; // type:function size:0x10 scope:weak align:4 +getTo__30MonoObjectMgrFv = .text:0x801BEF08; // type:function size:0x8 scope:weak align:4 +doAnimation__30MonoObjectMgrFv = .text:0x801BEF10; // type:function size:0x80 scope:weak align:4 +doEntry__30MonoObjectMgrFv = .text:0x801BEF90; // type:function size:0x80 scope:weak align:4 +doSetView__30MonoObjectMgrFi = .text:0x801BF010; // type:function size:0x90 scope:weak align:4 +doViewCalc__30MonoObjectMgrFv = .text:0x801BF0A0; // type:function size:0x80 scope:weak align:4 +doSimulation__30MonoObjectMgrFf = .text:0x801BF120; // type:function size:0x90 scope:weak align:4 +doDirectDraw__30MonoObjectMgrFR8Graphics = .text:0x801BF1B0; // type:function size:0x90 scope:weak align:4 +resetMgr__30MonoObjectMgrFv = .text:0x801BF240; // type:function size:0x18 scope:weak align:4 +clearMgr__30MonoObjectMgrFv = .text:0x801BF258; // type:function size:0x30 scope:weak align:4 +onAlloc__30MonoObjectMgrFv = .text:0x801BF288; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__30MonoObjectMgrFv = .text:0x801BF28C; // type:function size:0x3C scope:weak align:4 +get__30MonoObjectMgrFPv = .text:0x801BF2C8; // type:function size:0x10 scope:weak align:4 +doAnimation__26ObjectMgrFv = .text:0x801BF2D8; // type:function size:0x1E4 scope:weak align:4 +doEntry__26ObjectMgrFv = .text:0x801BF4BC; // type:function size:0x1E4 scope:weak align:4 +doSetView__26ObjectMgrFi = .text:0x801BF6A0; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__26ObjectMgrFv = .text:0x801BF894; // type:function size:0x1E4 scope:weak align:4 +doSimulation__26ObjectMgrFf = .text:0x801BFA78; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801BFC6C; // type:function size:0x1F4 scope:weak align:4 +doAnimation__26ObjectMgrFv = .text:0x801BFE60; // type:function size:0x1E4 scope:weak align:4 +doEntry__26ObjectMgrFv = .text:0x801C0044; // type:function size:0x1E4 scope:weak align:4 +doSetView__26ObjectMgrFi = .text:0x801C0228; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__26ObjectMgrFv = .text:0x801C041C; // type:function size:0x1E4 scope:weak align:4 +doSimulation__26ObjectMgrFf = .text:0x801C0600; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801C07F4; // type:function size:0x1F4 scope:weak align:4 +getObject__26ContainerFPv = .text:0x801C09E8; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x801C0A14; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x801C0A1C; // type:function size:0x8 scope:weak align:4 +getObject__26ContainerFPv = .text:0x801C0A24; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x801C0A50; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x801C0A58; // type:function size:0x8 scope:weak align:4 +alloc__30MonoObjectMgrFi = .text:0x801C0A60; // type:function size:0x188 scope:weak align:4 +__ct__30MonoObjectMgrFv = .text:0x801C0BE8; // type:function size:0x9C scope:weak align:4 +__sinit_gameMapParts_cpp = .text:0x801C0C84; // type:function size:0x28 scope:local align:4 +@28@resetMgr__30NodeObjectMgrFv = .text:0x801C0CAC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801C0CB4; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__26ObjectMgrFf = .text:0x801C0CBC; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__26ObjectMgrFv = .text:0x801C0CC4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__26ObjectMgrFi = .text:0x801C0CCC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__26ObjectMgrFv = .text:0x801C0CD4; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__26ObjectMgrFv = .text:0x801C0CDC; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__30MonoObjectMgrFv = .text:0x801C0CE4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__30MonoObjectMgrFR8Graphics = .text:0x801C0CEC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__30MonoObjectMgrFf = .text:0x801C0CF4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__30MonoObjectMgrFv = .text:0x801C0CFC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__30MonoObjectMgrFi = .text:0x801C0D04; // type:function size:0x8 scope:weak align:4 +@28@doEntry__30MonoObjectMgrFv = .text:0x801C0D0C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__30MonoObjectMgrFv = .text:0x801C0D14; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__26ObjectMgrFR8Graphics = .text:0x801C0D1C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__26ObjectMgrFf = .text:0x801C0D24; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__26ObjectMgrFv = .text:0x801C0D2C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__26ObjectMgrFi = .text:0x801C0D34; // type:function size:0x8 scope:weak align:4 +@28@doEntry__26ObjectMgrFv = .text:0x801C0D3C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__26ObjectMgrFv = .text:0x801C0D44; // type:function size:0x8 scope:weak align:4 +@280@4@frozenable__Q24Game6MapMgrFv = .text:0x801C0D4C; // type:function size:0x14 scope:weak align:4 +@280@4@doDirectDraw__Q24Game10RoomMapMgrFR8Graphics = .text:0x801C0D60; // type:function size:0x14 scope:weak align:4 +@280@4@doSimulation__Q24Game10RoomMapMgrFf = .text:0x801C0D74; // type:function size:0x14 scope:weak align:4 +@280@4@doViewCalc__Q24Game10RoomMapMgrFv = .text:0x801C0D88; // type:function size:0x14 scope:weak align:4 +@280@4@doSetView__Q24Game10RoomMapMgrFi = .text:0x801C0D9C; // type:function size:0x14 scope:weak align:4 +@280@4@doEntry__Q24Game10RoomMapMgrFv = .text:0x801C0DB0; // type:function size:0x14 scope:weak align:4 +@280@4@doAnimation__Q24Game10RoomMapMgrFv = .text:0x801C0DC4; // type:function size:0x14 scope:weak align:4 +init__Q34Game6VsGame3FSMFPQ24Game13VsGameSection = .text:0x801C0DD8; // type:function size:0xD0 scope:global align:4 +draw__Q34Game6VsGame5StateFPQ24Game13VsGameSectionR8Graphics = .text:0x801C0EA8; // type:function size:0x4 scope:weak align:4 +transit__Q34Game6VsGame3FSMFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x801C0EAC; // type:function size:0x20 scope:global align:4 +__ct__Q24Game13VsGameSectionFP7JKRHeapb = .text:0x801C0ECC; // type:function size:0xFC scope:global align:4 +__dt__Q24Game13VsGameSectionFv = .text:0x801C0FC8; // type:function size:0xCC scope:global align:4 +isGPActive__6VSFifoFv = .text:0x801C1094; // type:function size:0x5C scope:weak align:4 +section_fadeout__Q24Game13VsGameSectionFv = .text:0x801C10F0; // type:function size:0x34 scope:global align:4 +on_section_fadeout__Q34Game6VsGame5StateFPQ24Game13VsGameSection = .text:0x801C1124; // type:function size:0x4 scope:weak align:4 +startMainBgm__Q24Game13VsGameSectionFv = .text:0x801C1128; // type:function size:0x90 scope:global align:4 +onInit__Q24Game13VsGameSectionFv = .text:0x801C11B8; // type:function size:0x20C scope:global align:4 +start__Q24Game36StateMachineFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x801C13C4; // type:function size:0x34 scope:weak align:4 +getCurrFloor__Q24Game13VsGameSectionFv = .text:0x801C13F8; // type:function size:0x8 scope:global align:4 +doUpdate__Q24Game13VsGameSectionFv = .text:0x801C1400; // type:function size:0x1B8 scope:global align:4 +pre2dDraw__Q24Game13VsGameSectionFR8Graphics = .text:0x801C15B8; // type:function size:0x3C scope:global align:4 +pre2dDraw__Q34Game6VsGame5StateFR8GraphicsPQ24Game13VsGameSection = .text:0x801C15F4; // type:function size:0x4 scope:weak align:4 +doDraw__Q24Game13VsGameSectionFR8Graphics = .text:0x801C15F8; // type:function size:0x50 scope:global align:4 +onSetSoundScene__Q24Game13VsGameSectionFv = .text:0x801C1648; // type:function size:0x1DC scope:global align:4 +initPlayData__Q24Game13VsGameSectionFv = .text:0x801C1824; // type:function size:0x5C scope:global align:4 +onSetupFloatMemory__Q24Game13VsGameSectionFv = .text:0x801C1880; // type:function size:0x168 scope:global align:4 +postSetupFloatMemory__Q24Game13VsGameSectionFv = .text:0x801C19E8; // type:function size:0xA0 scope:global align:4 +onClearHeap__Q24Game13VsGameSectionFv = .text:0x801C1A88; // type:function size:0x20 scope:global align:4 +loadChallengeStageList__Q24Game13VsGameSectionFv = .text:0x801C1AA8; // type:function size:0xB0 scope:global align:4 +loadVsStageList__Q24Game13VsGameSectionFv = .text:0x801C1B58; // type:function size:0x98 scope:global align:4 +gmOrimaDown__Q24Game13VsGameSectionFi = .text:0x801C1BF0; // type:function size:0x44 scope:global align:4 +onOrimaDown__Q34Game6VsGame5StateFPQ24Game13VsGameSectioni = .text:0x801C1C34; // type:function size:0x4 scope:weak align:4 +gmPikminZero__Q24Game13VsGameSectionFv = .text:0x801C1C38; // type:function size:0x4 scope:global align:4 +goNextFloor__Q24Game13VsGameSectionFPQ34Game8ItemHole4Item = .text:0x801C1C3C; // type:function size:0x3C scope:global align:4 +onNextFloor__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ34Game8ItemHole4Item = .text:0x801C1C78; // type:function size:0x4 scope:weak align:4 +openCaveMoreMenu__Q24Game13VsGameSectionFPQ34Game8ItemHole4ItemP10Controller = .text:0x801C1C7C; // type:function size:0x1D8 scope:global align:4 +goingToCave__Q34Game6VsGame5StateFPQ24Game13VsGameSection = .text:0x801C1E54; // type:function size:0x8 scope:weak align:4 +openKanketuMenu__Q24Game13VsGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller = .text:0x801C1E5C; // type:function size:0x1B0 scope:global align:4 +clearCaveMenus__Q24Game13VsGameSectionFv = .text:0x801C200C; // type:function size:0x14 scope:global align:4 +updateCaveMenus__Q24Game13VsGameSectionFv = .text:0x801C2020; // type:function size:0x2A8 scope:global align:4 +getFaceDir__Q34Game15ItemBigFountain4ItemFv = .text:0x801C22C8; // type:function size:0x8 scope:weak align:4 +onMovieStart__Q24Game13VsGameSectionFPQ24Game11MovieConfigUlUl = .text:0x801C22D0; // type:function size:0xDC scope:global align:4 +onMovieStart__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x801C23AC; // type:function size:0x4 scope:weak align:4 +onMovieDone__Q24Game13VsGameSectionFPQ24Game11MovieConfigUlUl = .text:0x801C23B0; // type:function size:0x54 scope:global align:4 +onMovieDone__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x801C2404; // type:function size:0x4 scope:weak align:4 +createFallPikmins__Q24Game13VsGameSectionFRQ24Game13PikiContaineri = .text:0x801C2408; // type:function size:0x434 scope:global align:4 +createVsPikmins__Q24Game13VsGameSectionFv = .text:0x801C283C; // type:function size:0x564 scope:global align:4 +addChallengeScore__Q24Game13VsGameSectionFi = .text:0x801C2DA0; // type:function size:0x10 scope:global align:4 +sendMessage__Q24Game13VsGameSectionFRQ24Game11GameMessage = .text:0x801C2DB0; // type:function size:0x6C scope:global align:4 +actVs__Q24Game22GameMessageVsGetDopingFPQ24Game13VsGameSection = .text:0x801C2E1C; // type:function size:0x40 scope:global align:4 +actVs__Q24Game27GameMessageVsBattleFinishedFPQ24Game13VsGameSection = .text:0x801C2E5C; // type:function size:0x4C scope:global align:4 +onBattleFinished__Q34Game6VsGame5StateFPQ24Game13VsGameSectionib = .text:0x801C2EA8; // type:function size:0x4 scope:weak align:4 +actVs__Q24Game27GameMessageVsRedOrSuckStartFPQ24Game13VsGameSection = .text:0x801C2EAC; // type:function size:0x4C scope:global align:4 +onRedOrBlueSuckStart__Q34Game6VsGame5StateFPQ24Game13VsGameSectionib = .text:0x801C2EF8; // type:function size:0x4 scope:weak align:4 +actVs__Q24Game23GameMessageVsGetOtakaraFPQ24Game13VsGameSection = .text:0x801C2EFC; // type:function size:0xB8 scope:global align:4 +actVs__Q24Game21GameMessageVsAddEnemyFPQ24Game13VsGameSection = .text:0x801C2FB4; // type:function size:0x34 scope:global align:4 +actVs__Q24Game21GameMessagePelletBornFPQ24Game13VsGameSection = .text:0x801C2FE8; // type:function size:0x118 scope:global align:4 +actVs__Q24Game21GameMessagePelletDeadFPQ24Game13VsGameSection = .text:0x801C3100; // type:function size:0x8C scope:global align:4 +actVs__Q24Game30GameMessageVsBirthTekiTreasureFPQ24Game13VsGameSection = .text:0x801C318C; // type:function size:0x228 scope:global align:4 +actVs__Q24Game23GameMessageVsPikminDeadFPQ24Game13VsGameSection = .text:0x801C33B4; // type:function size:0x1C scope:global align:4 +actVs__Q24Game20GameMessageVsGotCardFPQ24Game13VsGameSection = .text:0x801C33D0; // type:function size:0x7C scope:global align:4 +actVs__Q24Game20GameMessageVsUseCardFPQ24Game13VsGameSection = .text:0x801C344C; // type:function size:0xA8 scope:global align:4 +isCardUsable__Q34Game6VsGame5StateFPQ24Game13VsGameSection = .text:0x801C34F4; // type:function size:0x8 scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFi = .text:0x801C34FC; // type:function size:0x10 scope:weak align:4 +initCardPellets__Q24Game13VsGameSectionFv = .text:0x801C350C; // type:function size:0x190 scope:global align:4 +initCardGeneration__Q24Game13VsGameSectionFv = .text:0x801C369C; // type:function size:0x14 scope:global align:4 +updateCardGeneration__Q24Game13VsGameSectionFv = .text:0x801C36B0; // type:function size:0x2D8 scope:global align:4 +useCard__Q24Game13VsGameSectionFv = .text:0x801C3988; // type:function size:0x18 scope:global align:4 +dropCard__Q24Game13VsGameSectionFRQ34Game13VsGameSection11DropCardArg = .text:0x801C39A0; // type:function size:0x3F4 scope:global align:4 +createYellowBedamas__Q24Game13VsGameSectionFi = .text:0x801C3D94; // type:function size:0x1AC scope:global align:4 +createRedBlueBedamas__Q24Game13VsGameSectionFR10Vector3 = .text:0x801C3F40; // type:function size:0x14C scope:global align:4 +calcVsScores__Q24Game13VsGameSectionFv = .text:0x801C408C; // type:function size:0x814 scope:global align:4 +clearGetDopeCount__Q24Game13VsGameSectionFv = .text:0x801C48A0; // type:function size:0x18 scope:global align:4 +getGetDopeCount__Q24Game13VsGameSectionFii = .text:0x801C48B8; // type:function size:0xD0 scope:global align:4 +clearGetCherryCount__Q24Game13VsGameSectionFv = .text:0x801C4988; // type:function size:0x10 scope:global align:4 +challengeDisablePelplant__Q24Game13VsGameSectionFv = .text:0x801C4998; // type:function size:0x8 scope:weak align:4 +player2enabled__Q24Game13VsGameSectionFv = .text:0x801C49A0; // type:function size:0x8 scope:weak align:4 +getCaveFilename__Q24Game13VsGameSectionFv = .text:0x801C49A8; // type:function size:0x8 scope:weak align:4 +getEditorFilename__Q24Game13VsGameSectionFv = .text:0x801C49B0; // type:function size:0x8 scope:weak align:4 +getVsEditNumber__Q24Game13VsGameSectionFv = .text:0x801C49B8; // type:function size:0x8 scope:weak align:4 +init__Q24Game36StateMachineFPQ24Game13VsGameSection = .text:0x801C49C0; // type:function size:0x4 scope:weak align:4 +create__Q24Game36StateMachineFi = .text:0x801C49C4; // type:function size:0x64 scope:weak align:4 +transit__Q24Game36StateMachineFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x801C4A28; // type:function size:0x9C scope:weak align:4 +init__Q24Game32FSMStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x801C4AC4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x801C4AC8; // type:function size:0x4 scope:weak align:4 +registerState__Q24Game36StateMachineFPQ24Game32FSMState = .text:0x801C4ACC; // type:function size:0x84 scope:weak align:4 +exec__Q24Game36StateMachineFPQ24Game13VsGameSection = .text:0x801C4B50; // type:function size:0x38 scope:weak align:4 +exec__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x801C4B88; // type:function size:0x4 scope:weak align:4 +__sinit_vsGameSection_cpp = .text:0x801C4B8C; // type:function size:0x28 scope:local align:4 +setCollision__Q24Game12PlatInstanceFb = .text:0x801C4BB4; // type:function size:0x28 scope:global align:4 +getPosition__Q24Game12PlatInstanceFv = .text:0x801C4BDC; // type:function size:0x20 scope:global align:4 +getBoundingSphere__Q24Game12PlatInstanceFRQ23Sys6Sphere = .text:0x801C4BFC; // type:function size:0x50 scope:global align:4 +getCurrTri__Q24Game12PlatInstanceFRQ24Game11CurrTriInfo = .text:0x801C4C4C; // type:function size:0x254 scope:global align:4 +traceMove__Q24Game12PlatInstanceFRQ24Game8MoveInfof = .text:0x801C4EA0; // type:function size:0x2E4 scope:global align:4 +__ct__Q24Game20PlatInstanceAttacherFv = .text:0x801C5184; // type:function size:0x18 scope:global align:4 +addToMgr__Q24Game20PlatInstanceAttacherFPQ24Game8CreatureR4ID32P12PlatAttacherb = .text:0x801C519C; // type:function size:0x1B0 scope:global align:4 +setCollision__Q24Game20PlatInstanceAttacherFbUs = .text:0x801C534C; // type:function size:0x94 scope:global align:4 +fixCollision__Q24Game20PlatInstanceAttacherFb = .text:0x801C53E0; // type:function size:0x9C scope:global align:4 +setCode__Q24Game20PlatInstanceAttacherFR4ID32Us = .text:0x801C547C; // type:function size:0x8C scope:global align:4 +setShapeVisibility__Q24Game20PlatInstanceAttacherFv = .text:0x801C5508; // type:function size:0xC0 scope:global align:4 +__ct__Q24Game7PlatMgrFv = .text:0x801C55C8; // type:function size:0xB8 scope:global align:4 +__dt__36NodeObjectMgrFv = .text:0x801C5680; // type:function size:0xC8 scope:weak align:4 +__dt__34TObjectNodeFv = .text:0x801C5748; // type:function size:0x60 scope:weak align:4 +__dt__32ObjectMgrFv = .text:0x801C57A8; // type:function size:0x88 scope:weak align:4 +__dt__32ContainerFv = .text:0x801C5830; // type:function size:0x70 scope:weak align:4 +__ct__Q24Game18PlatAddInstanceArgFv = .text:0x801C58A0; // type:function size:0x64 scope:global align:4 +addInstance__Q24Game7PlatMgrFRQ24Game18PlatAddInstanceArg = .text:0x801C5904; // type:function size:0x270 scope:global align:4 +constructor__Q24Game12PlatInstanceFv = .text:0x801C5B74; // type:function size:0x4 scope:weak align:4 +delInstance__Q24Game7PlatMgrFPQ24Game12PlatInstance = .text:0x801C5B78; // type:function size:0x20 scope:global align:4 +traceMove__Q24Game7PlatMgrFRQ24Game8MoveInfof = .text:0x801C5B98; // type:function size:0x2A4 scope:global align:4 +isDone__31IteratorFv = .text:0x801C5E3C; // type:function size:0x4C scope:weak align:4 +getCurrTri__Q24Game7PlatMgrFRQ24Game11CurrTriInfo = .text:0x801C5E88; // type:function size:0x2B0 scope:global align:4 +findRayIntersection__Q24Game7PlatMgrFRQ23Sys16RayIntersectInfo = .text:0x801C6138; // type:function size:0x338 scope:global align:4 +resetOnCount__Q24Game7PlatMgrFv = .text:0x801C6470; // type:function size:0x1DC scope:global align:4 +doDirectDraw__Q24Game7PlatMgrFR8Graphics = .text:0x801C664C; // type:function size:0x4 scope:global align:4 +__dt__Q24Game7PlatMgrFv = .text:0x801C6650; // type:function size:0xE0 scope:weak align:4 +__ml__31IteratorFv = .text:0x801C6730; // type:function size:0x38 scope:weak align:4 +next__31IteratorFv = .text:0x801C6768; // type:function size:0xE4 scope:weak align:4 +first__31IteratorFv = .text:0x801C684C; // type:function size:0xDC scope:weak align:4 +checkCollision__Q24Game12PlatInstanceFPQ24Game10CellObject = .text:0x801C6928; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game12PlatInstanceFv = .text:0x801C692C; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game12PlatInstanceFv = .text:0x801C6930; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game12PlatInstanceFi = .text:0x801C6934; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game12PlatInstanceFv = .text:0x801C6938; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game12PlatInstanceFf = .text:0x801C693C; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game12PlatInstanceFR8Graphics = .text:0x801C6940; // type:function size:0x4 scope:weak align:4 +getTypeName__Q24Game12PlatInstanceFv = .text:0x801C6944; // type:function size:0xC scope:weak align:4 +getObjType__Q24Game12PlatInstanceFv = .text:0x801C6950; // type:function size:0xC scope:weak align:4 +collisionUpdatable__Q24Game12PlatInstanceFv = .text:0x801C695C; // type:function size:0x8 scope:weak align:4 +get__36NodeObjectMgrFPv = .text:0x801C6964; // type:function size:0x8 scope:weak align:4 +getNext__36NodeObjectMgrFPv = .text:0x801C696C; // type:function size:0x8 scope:weak align:4 +getStart__36NodeObjectMgrFv = .text:0x801C6974; // type:function size:0x8 scope:weak align:4 +getEnd__36NodeObjectMgrFv = .text:0x801C697C; // type:function size:0x8 scope:weak align:4 +delNode__36NodeObjectMgrFPQ24Game12PlatInstance = .text:0x801C6984; // type:function size:0x44 scope:weak align:4 +resetMgr__36NodeObjectMgrFv = .text:0x801C69C8; // type:function size:0x18 scope:weak align:4 +doAnimation__32ObjectMgrFv = .text:0x801C69E0; // type:function size:0x1E4 scope:weak align:4 +doEntry__32ObjectMgrFv = .text:0x801C6BC4; // type:function size:0x1E4 scope:weak align:4 +doSetView__32ObjectMgrFi = .text:0x801C6DA8; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__32ObjectMgrFv = .text:0x801C6F9C; // type:function size:0x1E4 scope:weak align:4 +doSimulation__32ObjectMgrFf = .text:0x801C7180; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__32ObjectMgrFR8Graphics = .text:0x801C7374; // type:function size:0x1F4 scope:weak align:4 +getObject__32ContainerFPv = .text:0x801C7568; // type:function size:0x2C scope:weak align:4 +getAt__32ContainerFi = .text:0x801C7594; // type:function size:0x8 scope:weak align:4 +getTo__32ContainerFv = .text:0x801C759C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__32ObjectMgrFR8Graphics = .text:0x801C75A4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__36NodeObjectMgrFv = .text:0x801C75AC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game7PlatMgrFR8Graphics = .text:0x801C75B4; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__32ObjectMgrFf = .text:0x801C75BC; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__32ObjectMgrFv = .text:0x801C75C4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__32ObjectMgrFi = .text:0x801C75CC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__32ObjectMgrFv = .text:0x801C75D4; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__32ObjectMgrFv = .text:0x801C75DC; // type:function size:0x8 scope:weak align:4 +init__Q24Game7GateFSMFPQ24Game8ItemGate = .text:0x801C75E4; // type:function size:0x134 scope:global align:4 +constructor__Q24Game8ItemGateFv = .text:0x801C7718; // type:function size:0x48 scope:global align:4 +onInit__Q24Game8ItemGateFPQ24Game15CreatureInitArg = .text:0x801C7760; // type:function size:0x248 scope:global align:4 +start__Q24Game30StateMachineFPQ24Game8ItemGateiPQ24Game8StateArg = .text:0x801C79A8; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q24Game8ItemGateFv = .text:0x801C79DC; // type:function size:0x1E4 scope:global align:4 +doLoad__Q24Game8ItemGateFR6Stream = .text:0x801C7BC0; // type:function size:0xE8 scope:global align:4 +doSave__Q24Game8ItemGateFR6Stream = .text:0x801C7CA8; // type:function size:0x4C scope:global align:4 +updateBoundSphere__Q24Game8ItemGateFv = .text:0x801C7CF4; // type:function size:0x1C scope:global align:4 +update__Q24Game8ItemGateFv = .text:0x801C7D10; // type:function size:0x7C scope:global align:4 +doAI__Q24Game8ItemGateFv = .text:0x801C7D8C; // type:function size:0x130 scope:global align:4 +onKeyEvent__Q24Game8ItemGateFRCQ28SysShape8KeyEvent = .text:0x801C7EBC; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game9GateStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C7F00; // type:function size:0x4 scope:weak align:4 +interactAttack__Q24Game8ItemGateFRQ24Game14InteractAttack = .text:0x801C7F04; // type:function size:0x11C scope:global align:4 +onDamage__Q24Game9GateStateFPQ24Game8ItemGatef = .text:0x801C8020; // type:function size:0x4 scope:weak align:4 +initMotion__Q24Game8ItemGateFv = .text:0x801C8024; // type:function size:0x6C scope:global align:4 +getVectorField__Q24Game8ItemGateFRQ23Sys6SphereR10Vector3 = .text:0x801C8090; // type:function size:0x290 scope:global align:4 +getWorkDistance__Q24Game8ItemGateFRQ23Sys6Sphere = .text:0x801C8320; // type:function size:0x11C scope:global align:4 +initPlanes__Q24Game8ItemGateFv = .text:0x801C843C; // type:function size:0x3A8 scope:global align:4 +changeMaterial__Q24Game8ItemGateFv = .text:0x801C87E4; // type:function size:0xD4 scope:global align:4 +getLifeGaugeParam__Q24Game8ItemGateFRQ24Game14LifeGaugeParam = .text:0x801C88B8; // type:function size:0xA0 scope:global align:4 +__ct__Q24Game11ItemGateMgrFv = .text:0x801C8958; // type:function size:0x1FC scope:global align:4 +__dt__31NodeObjectMgrFv = .text:0x801C8B54; // type:function size:0xC8 scope:weak align:4 +__dt__29TObjectNodeFv = .text:0x801C8C1C; // type:function size:0x60 scope:weak align:4 +__dt__27ObjectMgrFv = .text:0x801C8C7C; // type:function size:0x88 scope:weak align:4 +__dt__27ContainerFv = .text:0x801C8D04; // type:function size:0x70 scope:weak align:4 +setupGate__Q24Game11ItemGateMgrFPQ24Game8ItemGate = .text:0x801C8D74; // type:function size:0xA0 scope:global align:4 +setupPlatform__Q24Game11ItemGateMgrFPQ24Game8ItemGate = .text:0x801C8E14; // type:function size:0x158 scope:global align:4 +birth__Q24Game11ItemGateMgrFv = .text:0x801C8F6C; // type:function size:0x1D4 scope:global align:4 +initDependency__Q24Game11ItemGateMgrFv = .text:0x801C9140; // type:function size:0x1E8 scope:global align:4 +generatorNewItemParm__Q24Game11ItemGateMgrFv = .text:0x801C9328; // type:function size:0x54 scope:global align:4 +generatorWrite__Q24Game11ItemGateMgrFR6StreamPQ24Game11GenItemParm = .text:0x801C937C; // type:function size:0xB0 scope:global align:4 +generatorRead__Q24Game11ItemGateMgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801C942C; // type:function size:0xA8 scope:global align:4 +generatorBirth__Q24Game11ItemGateMgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801C94D4; // type:function size:0x228 scope:global align:4 +getCaveName__Q24Game11ItemGateMgrFi = .text:0x801C96FC; // type:function size:0x14 scope:global align:4 +getCaveID__Q24Game11ItemGateMgrFPc = .text:0x801C9710; // type:function size:0x4C scope:global align:4 +init__Q24Game13GateWaitStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801C975C; // type:function size:0x4 scope:global align:4 +exec__Q24Game13GateWaitStateFPQ24Game8ItemGate = .text:0x801C9760; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game13GateWaitStateFPQ24Game8ItemGate = .text:0x801C9764; // type:function size:0x4 scope:global align:4 +onDamage__Q24Game13GateWaitStateFPQ24Game8ItemGatef = .text:0x801C9768; // type:function size:0x40 scope:global align:4 +transit__Q24Game26FSMStateFPQ24Game8ItemGateiPQ24Game8StateArg = .text:0x801C97A8; // type:function size:0x30 scope:weak align:4 +onKeyEvent__Q24Game13GateWaitStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C97D8; // type:function size:0x4 scope:global align:4 +init__Q24Game16GateDamagedStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801C97DC; // type:function size:0x5C scope:global align:4 +exec__Q24Game16GateDamagedStateFPQ24Game8ItemGate = .text:0x801C9838; // type:function size:0xC0 scope:global align:4 +cleanup__Q24Game16GateDamagedStateFPQ24Game8ItemGate = .text:0x801C98F8; // type:function size:0x4 scope:global align:4 +onDamage__Q24Game16GateDamagedStateFPQ24Game8ItemGatef = .text:0x801C98FC; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q24Game16GateDamagedStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C990C; // type:function size:0xC scope:global align:4 +init__Q24Game13GateDownStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801C9918; // type:function size:0x224 scope:global align:4 +getFaceDir__Q24Game8ItemGateFv = .text:0x801C9B3C; // type:function size:0x8 scope:weak align:4 +exec__Q24Game13GateDownStateFPQ24Game8ItemGate = .text:0x801C9B44; // type:function size:0x4 scope:global align:4 +cleanup__Q24Game13GateDownStateFPQ24Game8ItemGate = .text:0x801C9B48; // type:function size:0x4 scope:global align:4 +onDamage__Q24Game13GateDownStateFPQ24Game8ItemGatef = .text:0x801C9B4C; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q24Game13GateDownStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801C9B5C; // type:function size:0x168 scope:global align:4 +__ct__Q34Game15ItemDengekiGate3MgrFv = .text:0x801C9CC4; // type:function size:0x180 scope:global align:4 +__dt__Q24Game29NodeItemMgrFv = .text:0x801C9E44; // type:function size:0x11C scope:weak align:4 +setupGate__Q34Game15ItemDengekiGate3MgrFPQ24Game8ItemGate = .text:0x801C9F60; // type:function size:0xA4 scope:global align:4 +setupPlatform__Q34Game15ItemDengekiGate3MgrFPQ24Game8ItemGate = .text:0x801CA004; // type:function size:0x158 scope:global align:4 +generatorNewItemParm__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA15C; // type:function size:0x54 scope:global align:4 +generatorWrite__Q34Game15ItemDengekiGate3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801CA1B0; // type:function size:0x84 scope:global align:4 +generatorRead__Q34Game15ItemDengekiGate3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801CA234; // type:function size:0x60 scope:global align:4 +generatorBirth__Q34Game15ItemDengekiGate3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801CA294; // type:function size:0xB8 scope:global align:4 +getCaveName__Q34Game15ItemDengekiGate3MgrFi = .text:0x801CA34C; // type:function size:0x14 scope:global align:4 +getCaveID__Q34Game15ItemDengekiGate3MgrFPc = .text:0x801CA360; // type:function size:0x4C scope:global align:4 +__dt__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA3AC; // type:function size:0x134 scope:weak align:4 +generatorGetID__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA4E0; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CA4EC; // type:function size:0xC scope:weak align:4 +generatorGetID__Q24Game11ItemGateMgrFv = .text:0x801CA4F8; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q24Game11ItemGateMgrFv = .text:0x801CA504; // type:function size:0xC scope:weak align:4 +doAnimation__Q24Game11ItemGateMgrFv = .text:0x801CA510; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game11ItemGateMgrFv = .text:0x801CA53C; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game11ItemGateMgrFi = .text:0x801CA568; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game11ItemGateMgrFv = .text:0x801CA594; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game11ItemGateMgrFf = .text:0x801CA5C0; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game11ItemGateMgrFR8Graphics = .text:0x801CA5EC; // type:function size:0x2C scope:weak align:4 +getName__Q23efx7ArgRotYFv = .text:0x801CA618; // type:function size:0x8 scope:weak align:4 +__dt__Q23efx7TEgateAFv = .text:0x801CA620; // type:function size:0x9C scope:weak align:4 +getCreatureName__Q24Game8ItemGateFv = .text:0x801CA6BC; // type:function size:0x8 scope:weak align:4 +getMabiki__Q24Game8ItemGateFv = .text:0x801CA6C4; // type:function size:0x8 scope:weak align:4 +makeTrMatrix__Q24Game8ItemGateFv = .text:0x801CA6CC; // type:function size:0x4 scope:weak align:4 +do_doAnimation__Q24Game8BaseItemFv = .text:0x801CA6D0; // type:function size:0x4 scope:weak align:4 +doAI__Q24Game59FSMItemFv = .text:0x801CA6D4; // type:function size:0x34 scope:weak align:4 +getCreatureName__Q24Game8BaseItemFv = .text:0x801CA708; // type:function size:0x8 scope:weak align:4 +changeMaterial__Q24Game8BaseItemFv = .text:0x801CA710; // type:function size:0x4 scope:weak align:4 +getFaceDir__Q24Game8BaseItemFv = .text:0x801CA714; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game29NodeItemMgrFv = .text:0x801CA71C; // type:function size:0x114 scope:weak align:4 +birth__Q24Game29NodeItemMgrFv = .text:0x801CA830; // type:function size:0x1B4 scope:weak align:4 +initDependency__Q24Game29NodeItemMgrFv = .text:0x801CA9E4; // type:function size:0x1E8 scope:weak align:4 +kill__Q24Game29NodeItemMgrFPQ24Game8ItemGate = .text:0x801CABCC; // type:function size:0x24 scope:weak align:4 +doAnimation__Q24Game29NodeItemMgrFv = .text:0x801CABF0; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game29NodeItemMgrFv = .text:0x801CAC1C; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game29NodeItemMgrFi = .text:0x801CAC48; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game29NodeItemMgrFv = .text:0x801CAC74; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game29NodeItemMgrFf = .text:0x801CACA0; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game29NodeItemMgrFR8Graphics = .text:0x801CACCC; // type:function size:0x2C scope:weak align:4 +onKeyEvent__Q24Game59FSMItemFRCQ28SysShape8KeyEvent = .text:0x801CACF8; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game27ItemStateFPQ24Game8ItemGatef = .text:0x801CAD3C; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game27ItemStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent = .text:0x801CAD40; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game27ItemStateFPQ24Game8ItemGatePQ23Sys8Triangle = .text:0x801CAD44; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game27ItemStateFPQ24Game8ItemGateRQ24Game9PlatEvent = .text:0x801CAD48; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game27ItemStateFPQ24Game8ItemGateRQ24Game9CollEvent = .text:0x801CAD4C; // type:function size:0x4 scope:weak align:4 +init__Q24Game26FSMStateFPQ24Game8ItemGatePQ24Game8StateArg = .text:0x801CAD50; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD54; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD58; // type:function size:0x4 scope:weak align:4 +resume__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD5C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game26FSMStateFPQ24Game8ItemGate = .text:0x801CAD60; // type:function size:0x4 scope:weak align:4 +init__Q24Game30StateMachineFPQ24Game8ItemGate = .text:0x801CAD64; // type:function size:0x4 scope:weak align:4 +exec__Q24Game30StateMachineFPQ24Game8ItemGate = .text:0x801CAD68; // type:function size:0x38 scope:weak align:4 +create__Q24Game30StateMachineFi = .text:0x801CADA0; // type:function size:0x64 scope:weak align:4 +get__31NodeObjectMgrFPv = .text:0x801CAE04; // type:function size:0x8 scope:weak align:4 +getNext__31NodeObjectMgrFPv = .text:0x801CAE0C; // type:function size:0x8 scope:weak align:4 +getStart__31NodeObjectMgrFv = .text:0x801CAE14; // type:function size:0x8 scope:weak align:4 +getEnd__31NodeObjectMgrFv = .text:0x801CAE1C; // type:function size:0x8 scope:weak align:4 +delNode__31NodeObjectMgrFPQ24Game8ItemGate = .text:0x801CAE24; // type:function size:0x44 scope:weak align:4 +resetMgr__31NodeObjectMgrFv = .text:0x801CAE68; // type:function size:0x18 scope:weak align:4 +doAnimation__27ObjectMgrFv = .text:0x801CAE80; // type:function size:0x1E4 scope:weak align:4 +doEntry__27ObjectMgrFv = .text:0x801CB064; // type:function size:0x1E4 scope:weak align:4 +doSetView__27ObjectMgrFi = .text:0x801CB248; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__27ObjectMgrFv = .text:0x801CB43C; // type:function size:0x1E4 scope:weak align:4 +doSimulation__27ObjectMgrFf = .text:0x801CB620; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801CB814; // type:function size:0x1F4 scope:weak align:4 +getObject__27ContainerFPv = .text:0x801CBA08; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x801CBA34; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x801CBA3C; // type:function size:0x8 scope:weak align:4 +transit__Q24Game30StateMachineFPQ24Game8ItemGateiPQ24Game8StateArg = .text:0x801CBA44; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game30StateMachineFPQ24Game26FSMState = .text:0x801CBAE0; // type:function size:0x84 scope:weak align:4 +platCallback__Q24Game59FSMItemFRQ24Game9PlatEvent = .text:0x801CBB64; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game59FSMItemFRQ24Game9CollEvent = .text:0x801CBBA8; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game59FSMItemFPQ23Sys8Triangle = .text:0x801CBBEC; // type:function size:0x44 scope:weak align:4 +getEnd__Q24Game29NodeItemMgrFv = .text:0x801CBC30; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game29NodeItemMgrFv = .text:0x801CBC5C; // type:function size:0x2C scope:weak align:4 +getNext__Q24Game29NodeItemMgrFPv = .text:0x801CBC88; // type:function size:0x2C scope:weak align:4 +get__Q24Game29NodeItemMgrFPv = .text:0x801CBCB4; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game29NodeItemMgrFv = .text:0x801CBCE0; // type:function size:0x240 scope:weak align:4 +__sinit_itemGate_cpp = .text:0x801CBF20; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game59FSMItemFRCQ28SysShape8KeyEvent = .text:0x801CBF48; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game8ItemGateFRCQ28SysShape8KeyEvent = .text:0x801CBF50; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx7TEgateAFv = .text:0x801CBF58; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__31NodeObjectMgrFv = .text:0x801CBF60; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801CBF68; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27ObjectMgrFf = .text:0x801CBF70; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27ObjectMgrFv = .text:0x801CBF78; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27ObjectMgrFi = .text:0x801CBF80; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27ObjectMgrFv = .text:0x801CBF88; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27ObjectMgrFv = .text:0x801CBF90; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game29NodeItemMgrFv = .text:0x801CBF98; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game29NodeItemMgrFv = .text:0x801CBFA0; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game29NodeItemMgrFv = .text:0x801CBFA8; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game29NodeItemMgrFPv = .text:0x801CBFB0; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game29NodeItemMgrFPv = .text:0x801CBFB8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game15ItemDengekiGate3MgrFv = .text:0x801CBFC0; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game8BaseItemFi = .text:0x801CBFC8; // type:function size:0x100 scope:global align:4 +constructor__Q24Game8BaseItemFv = .text:0x801CC0C8; // type:function size:0x4C scope:global align:4 +getJAIObject__Q24Game8BaseItemFv = .text:0x801CC114; // type:function size:0x14 scope:global align:4 +getPSCreature__Q24Game8BaseItemFv = .text:0x801CC128; // type:function size:0x8 scope:global align:4 +startSound__Q24Game8BaseItemFUl = .text:0x801CC130; // type:function size:0x8C scope:global align:4 +doAnimation__Q24Game8BaseItemFv = .text:0x801CC1BC; // type:function size:0x108 scope:global align:4 +updateTrMatrix__Q24Game8BaseItemFv = .text:0x801CC2C4; // type:function size:0x2C scope:global align:4 +entryShape__Q24Game8BaseItemFv = .text:0x801CC2F0; // type:function size:0xC4 scope:global align:4 +doEntry__Q24Game8BaseItemFv = .text:0x801CC3B4; // type:function size:0x38 scope:global align:4 +stimulate__Q24Game8BaseItemFRQ24Game11Interaction = .text:0x801CC3EC; // type:function size:0x74 scope:global align:4 +doSimulation__Q24Game8BaseItemFf = .text:0x801CC460; // type:function size:0x4 scope:global align:4 +makeTrMatrix__Q24Game8BaseItemFv = .text:0x801CC464; // type:function size:0x2C scope:global align:4 +update__Q24Game8BaseItemFv = .text:0x801CC490; // type:function size:0xDC scope:global align:4 +doAI__Q24Game8BaseItemFv = .text:0x801CC56C; // type:function size:0x4 scope:weak align:4 +do_updateLOD__Q24Game8BaseItemFv = .text:0x801CC570; // type:function size:0x7C scope:global align:4 +updateCollTree__Q24Game8BaseItemFv = .text:0x801CC5EC; // type:function size:0x3C scope:global align:4 +move__Q24Game8BaseItemFf = .text:0x801CC628; // type:function size:0x1C4 scope:global align:4 +movieStartAnimation__Q24Game8BaseItemFUl = .text:0x801CC7EC; // type:function size:0x7C scope:global align:4 +movieStartDemoAnimation__Q24Game8BaseItemFPQ28SysShape8AnimInfo = .text:0x801CC868; // type:function size:0x88 scope:global align:4 +movieSetAnimationLastFrame__Q24Game8BaseItemFv = .text:0x801CC8F0; // type:function size:0x24 scope:global align:4 +movieSetTranslation__Q24Game8BaseItemFR10Vector3f = .text:0x801CC914; // type:function size:0x1C scope:global align:4 +constructor__Q24Game8CFSMItemFv = .text:0x801CC930; // type:function size:0x50 scope:global align:4 +initFSM__Q24Game8CFSMItemFv = .text:0x801CC980; // type:function size:0x54 scope:global align:4 +init__Q24Game30StateMachineFPQ24Game8CFSMItem = .text:0x801CC9D4; // type:function size:0x4 scope:weak align:4 +doAI__Q24Game8CFSMItemFv = .text:0x801CC9D8; // type:function size:0x34 scope:global align:4 +setCurrState__Q24Game8CFSMItemFPQ24Game26FSMState = .text:0x801CCA0C; // type:function size:0x8 scope:global align:4 +getCurrState__Q24Game8CFSMItemFv = .text:0x801CCA14; // type:function size:0x8 scope:global align:4 +getStateID__Q24Game8CFSMItemFv = .text:0x801CCA1C; // type:function size:0x1C scope:global align:4 +bounceCallback__Q24Game8CFSMItemFPQ23Sys8Triangle = .text:0x801CCA38; // type:function size:0x44 scope:global align:4 +onBounce__Q24Game10CItemStateFPQ24Game8CFSMItemPQ23Sys8Triangle = .text:0x801CCA7C; // type:function size:0x4 scope:weak align:4 +collisionCallback__Q24Game8CFSMItemFRQ24Game9CollEvent = .text:0x801CCA80; // type:function size:0x44 scope:global align:4 +onCollision__Q24Game10CItemStateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801CCAC4; // type:function size:0x4 scope:weak align:4 +platCallback__Q24Game8CFSMItemFRQ24Game9PlatEvent = .text:0x801CCAC8; // type:function size:0x44 scope:global align:4 +onPlatCollision__Q24Game10CItemStateFPQ24Game8CFSMItemRQ24Game9PlatEvent = .text:0x801CCB0C; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game8CFSMItemFRCQ28SysShape8KeyEvent = .text:0x801CCB10; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game10CItemStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801CCB54; // type:function size:0x4 scope:weak align:4 +actItem__Q24Game14InteractAttackFPQ24Game8BaseItem = .text:0x801CCB58; // type:function size:0x38 scope:global align:4 +actItem__Q24Game19InteractBreakBridgeFPQ24Game8BaseItem = .text:0x801CCB90; // type:function size:0x38 scope:global align:4 +actItem__Q24Game14InteractGotKeyFPQ24Game8BaseItem = .text:0x801CCBC8; // type:function size:0x38 scope:global align:4 +actItem__Q24Game11InteractEatFPQ24Game8BaseItem = .text:0x801CCC00; // type:function size:0x38 scope:global align:4 +actItem__Q24Game19InteractFlockAttackFPQ24Game8BaseItem = .text:0x801CCC38; // type:function size:0x38 scope:global align:4 +actItem__Q24Game14InteractAbsorbFPQ24Game8BaseItem = .text:0x801CCC70; // type:function size:0x38 scope:global align:4 +actItem__Q24Game11InteractFueFPQ24Game8BaseItem = .text:0x801CCCA8; // type:function size:0x38 scope:global align:4 +actItem__Q24Game18InteractFarmKareroFPQ24Game8BaseItem = .text:0x801CCCE0; // type:function size:0x38 scope:global align:4 +actItem__Q24Game17InteractFarmHaeroFPQ24Game8BaseItem = .text:0x801CCD18; // type:function size:0x38 scope:global align:4 +__ct__Q24Game11BaseItemMgrFi = .text:0x801CCD50; // type:function size:0x5C scope:global align:4 +setModelSize__Q24Game11BaseItemMgrFi = .text:0x801CCDAC; // type:function size:0x108 scope:global align:4 +loadArchive__Q24Game11BaseItemMgrFPc = .text:0x801CCEB4; // type:function size:0x7C scope:global align:4 +loadBmd__Q24Game11BaseItemMgrFPciUl = .text:0x801CCF30; // type:function size:0xAC scope:global align:4 +loadAnimMgr__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CCFDC; // type:function size:0x80 scope:global align:4 +loadCollision__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CD05C; // type:function size:0x38 scope:global align:4 +generatorNewItemParm__Q24Game11BaseItemMgrFv = .text:0x801CD094; // type:function size:0x38 scope:global align:4 +generatorGetShape__Q24Game11BaseItemMgrFPQ24Game11GenItemParm = .text:0x801CD0CC; // type:function size:0x64 scope:global align:4 +getModelData__Q24Game11BaseItemMgrFi = .text:0x801CD130; // type:function size:0x7C scope:global align:4 +openTextArc__Q24Game11BaseItemMgrFPc = .text:0x801CD1AC; // type:function size:0x84 scope:global align:4 +closeTextArc__Q24Game11BaseItemMgrFP10JKRArchive = .text:0x801CD230; // type:function size:0x50 scope:global align:4 +loadPlatform__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CD280; // type:function size:0x68 scope:global align:4 +loadPlatAttacher__Q24Game11BaseItemMgrFP13JKRFileLoaderPc = .text:0x801CD2E8; // type:function size:0xBC scope:global align:4 +updateUseList__Q24Game11BaseItemMgrFPQ24Game11GenItemParmi = .text:0x801CD3A4; // type:function size:0x2C scope:global align:4 +loadResources__Q24Game11BaseItemMgrFv = .text:0x801CD3D0; // type:function size:0x2C scope:global align:4 +setupSoundViewerAndBas__Q24Game11BaseItemMgrFv = .text:0x801CD3FC; // type:function size:0x4 scope:global align:4 +__ct__Q24Game12TNodeItemMgrFv = .text:0x801CD400; // type:function size:0x14C scope:global align:4 +__dt__31NodeObjectMgrFv = .text:0x801CD54C; // type:function size:0xC8 scope:weak align:4 +__dt__29TObjectNodeFv = .text:0x801CD614; // type:function size:0x60 scope:weak align:4 +__dt__27ObjectMgrFv = .text:0x801CD674; // type:function size:0x88 scope:weak align:4 +__dt__27ContainerFv = .text:0x801CD6FC; // type:function size:0x70 scope:weak align:4 +birth__Q24Game12TNodeItemMgrFv = .text:0x801CD76C; // type:function size:0x9C scope:global align:4 +entry__Q24Game12TNodeItemMgrFPQ24Game8BaseItem = .text:0x801CD808; // type:function size:0x84 scope:global align:4 +initDependency__Q24Game12TNodeItemMgrFv = .text:0x801CD88C; // type:function size:0x1E8 scope:global align:4 +killAll__Q24Game12TNodeItemMgrFv = .text:0x801CDA74; // type:function size:0xA8 scope:global align:4 +__ct__Q24Game7ItemMgrFv = .text:0x801CDB1C; // type:function size:0xC4 scope:global align:4 +__dt__Q24Game7ItemMgrFv = .text:0x801CDBE0; // type:function size:0xE8 scope:global align:4 +addMgr__Q24Game7ItemMgrFPQ24Game11BaseItemMgr = .text:0x801CDCC8; // type:function size:0x6C scope:global align:4 +initDependency__Q24Game7ItemMgrFv = .text:0x801CDD34; // type:function size:0x1E4 scope:global align:4 +doAnimation__Q24Game7ItemMgrFv = .text:0x801CDF18; // type:function size:0x1E4 scope:global align:4 +doEntry__Q24Game7ItemMgrFv = .text:0x801CE0FC; // type:function size:0x1E4 scope:global align:4 +doSetView__Q24Game7ItemMgrFi = .text:0x801CE2E0; // type:function size:0x1F4 scope:global align:4 +doViewCalc__Q24Game7ItemMgrFv = .text:0x801CE4D4; // type:function size:0x1E4 scope:global align:4 +doSimulation__Q24Game7ItemMgrFf = .text:0x801CE6B8; // type:function size:0x1F4 scope:global align:4 +doDirectDraw__Q24Game7ItemMgrFR8Graphics = .text:0x801CE8AC; // type:function size:0x4 scope:global align:4 +doSimpleDraw__Q24Game7ItemMgrFP8Viewport = .text:0x801CE8B0; // type:function size:0x1F4 scope:global align:4 +setupSoundViewerAndBas__Q24Game7ItemMgrFv = .text:0x801CEAA4; // type:function size:0x1E4 scope:global align:4 +loadResources__Q24Game7ItemMgrFv = .text:0x801CEC88; // type:function size:0x1E4 scope:global align:4 +getIndexByMgr__Q24Game7ItemMgrFPQ24Game11BaseItemMgr = .text:0x801CEE6C; // type:function size:0x204 scope:global align:4 +getMgrByIndex__Q24Game7ItemMgrFi = .text:0x801CF070; // type:function size:0x200 scope:global align:4 +getMgrByID__Q24Game7ItemMgrFR4ID32 = .text:0x801CF270; // type:function size:0x224 scope:global align:4 +__dt__Q24Game12TNodeItemMgrFv = .text:0x801CF494; // type:function size:0x11C scope:weak align:4 +kill__Q24Game12TNodeItemMgrFPQ24Game8BaseItem = .text:0x801CF5B0; // type:function size:0x24 scope:weak align:4 +doAnimation__Q24Game12TNodeItemMgrFv = .text:0x801CF5D4; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game12TNodeItemMgrFv = .text:0x801CF600; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game12TNodeItemMgrFi = .text:0x801CF62C; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game12TNodeItemMgrFv = .text:0x801CF658; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game12TNodeItemMgrFf = .text:0x801CF684; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game12TNodeItemMgrFR8Graphics = .text:0x801CF6B0; // type:function size:0x2C scope:weak align:4 +getEnd__Q24Game12TNodeItemMgrFv = .text:0x801CF6DC; // type:function size:0x2C scope:weak align:4 +getEnd__31NodeObjectMgrFv = .text:0x801CF708; // type:function size:0x8 scope:weak align:4 +getStart__Q24Game12TNodeItemMgrFv = .text:0x801CF710; // type:function size:0x2C scope:weak align:4 +getStart__31NodeObjectMgrFv = .text:0x801CF73C; // type:function size:0x8 scope:weak align:4 +getNext__Q24Game12TNodeItemMgrFPv = .text:0x801CF744; // type:function size:0x2C scope:weak align:4 +getNext__31NodeObjectMgrFPv = .text:0x801CF770; // type:function size:0x8 scope:weak align:4 +get__Q24Game12TNodeItemMgrFPv = .text:0x801CF778; // type:function size:0x2C scope:weak align:4 +get__31NodeObjectMgrFPv = .text:0x801CF7A4; // type:function size:0x8 scope:weak align:4 +doAnimation__Q24Game11BaseItemMgrFv = .text:0x801CF7AC; // type:function size:0x4 scope:weak align:4 +doEntry__Q24Game11BaseItemMgrFv = .text:0x801CF7B0; // type:function size:0x4 scope:weak align:4 +doSetView__Q24Game11BaseItemMgrFi = .text:0x801CF7B4; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q24Game11BaseItemMgrFv = .text:0x801CF7B8; // type:function size:0x4 scope:weak align:4 +doSimulation__Q24Game11BaseItemMgrFf = .text:0x801CF7BC; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q24Game11BaseItemMgrFR8Graphics = .text:0x801CF7C0; // type:function size:0x4 scope:weak align:4 +delNode__31NodeObjectMgrFPQ24Game8BaseItem = .text:0x801CF7C4; // type:function size:0x44 scope:weak align:4 +resetMgr__31NodeObjectMgrFv = .text:0x801CF808; // type:function size:0x18 scope:weak align:4 +doAnimation__27ObjectMgrFv = .text:0x801CF820; // type:function size:0x1E4 scope:weak align:4 +doEntry__27ObjectMgrFv = .text:0x801CFA04; // type:function size:0x1E4 scope:weak align:4 +doSetView__27ObjectMgrFi = .text:0x801CFBE8; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__27ObjectMgrFv = .text:0x801CFDDC; // type:function size:0x1E4 scope:weak align:4 +doSimulation__27ObjectMgrFf = .text:0x801CFFC0; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801D01B4; // type:function size:0x1F4 scope:weak align:4 +getObject__27ContainerFPv = .text:0x801D03A8; // type:function size:0x2C scope:weak align:4 +getAt__27ContainerFi = .text:0x801D03D4; // type:function size:0x8 scope:weak align:4 +getTo__27ContainerFv = .text:0x801D03DC; // type:function size:0x8 scope:weak align:4 +exec__Q24Game30StateMachineFPQ24Game8CFSMItem = .text:0x801D03E4; // type:function size:0x38 scope:weak align:4 +exec__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D041C; // type:function size:0x4 scope:weak align:4 +@376@onKeyEvent__Q24Game8CFSMItemFRCQ28SysShape8KeyEvent = .text:0x801D0420; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__31NodeObjectMgrFv = .text:0x801D0428; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__27ObjectMgrFR8Graphics = .text:0x801D0430; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__27ObjectMgrFf = .text:0x801D0438; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__27ObjectMgrFv = .text:0x801D0440; // type:function size:0x8 scope:weak align:4 +@28@doSetView__27ObjectMgrFi = .text:0x801D0448; // type:function size:0x8 scope:weak align:4 +@28@doEntry__27ObjectMgrFv = .text:0x801D0450; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__27ObjectMgrFv = .text:0x801D0458; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game12TNodeItemMgrFv = .text:0x801D0460; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game12TNodeItemMgrFv = .text:0x801D0468; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game12TNodeItemMgrFPv = .text:0x801D0470; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game12TNodeItemMgrFPv = .text:0x801D0478; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game12TNodeItemMgrFv = .text:0x801D0480; // type:function size:0x8 scope:weak align:4 +@28@loadResources__Q24Game7ItemMgrFv = .text:0x801D0488; // type:function size:0x8 scope:weak align:4 +@28@doSimpleDraw__Q24Game7ItemMgrFP8Viewport = .text:0x801D0490; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__Q24Game7ItemMgrFR8Graphics = .text:0x801D0498; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__Q24Game7ItemMgrFf = .text:0x801D04A0; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__Q24Game7ItemMgrFv = .text:0x801D04A8; // type:function size:0x8 scope:weak align:4 +@28@doSetView__Q24Game7ItemMgrFi = .text:0x801D04B0; // type:function size:0x8 scope:weak align:4 +@28@doEntry__Q24Game7ItemMgrFv = .text:0x801D04B8; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__Q24Game7ItemMgrFv = .text:0x801D04C0; // type:function size:0x8 scope:weak align:4 +__ct__Q26PikiAI12ActBreakGateFPQ24Game4Piki = .text:0x801D04C8; // type:function size:0xF8 scope:global align:4 +init__Q26PikiAI12ActBreakGateFPQ26PikiAI9ActionArg = .text:0x801D05C0; // type:function size:0xC8 scope:global align:4 +initFollow__Q26PikiAI12ActBreakGateFv = .text:0x801D0688; // type:function size:0x68 scope:global align:4 +exec__Q26PikiAI12ActBreakGateFv = .text:0x801D06F0; // type:function size:0x498 scope:global align:4 +cleanup__Q26PikiAI12ActBreakGateFv = .text:0x801D0B88; // type:function size:0x5C scope:global align:4 +emotion_success__Q26PikiAI12ActBreakGateFv = .text:0x801D0BE4; // type:function size:0x44 scope:global align:4 +platCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x801D0C28; // type:function size:0x144 scope:global align:4 +collisionCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801D0D6C; // type:function size:0x4 scope:global align:4 +bounceCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801D0D70; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI12ActBreakGateFRCQ28SysShape8KeyEvent = .text:0x801D0D74; // type:function size:0x4 scope:global align:4 +getName__Q26PikiAI26FollowVectorFieldActionArgFv = .text:0x801D0D78; // type:function size:0xC scope:weak align:4 +@52@4@onKeyEvent__Q26PikiAI12ActBreakGateFRCQ28SysShape8KeyEvent = .text:0x801D0D84; // type:function size:0x14 scope:weak align:4 +clear__Q24Game8GameStatFv = .text:0x801D0D98; // type:function size:0x58 scope:global align:4 +getMapPikmins_exclude_Me__Q24Game8GameStatFi = .text:0x801D0DF0; // type:function size:0x50 scope:global align:4 +getMapPikmins__Q24Game8GameStatFi = .text:0x801D0E40; // type:function size:0x8C scope:global align:4 +getZikatuPikmins__Q24Game8GameStatFi = .text:0x801D0ECC; // type:function size:0x50 scope:global align:4 +getAllPikmins__Q24Game8GameStatFi = .text:0x801D0F1C; // type:function size:0xF8 scope:global align:4 +__ct__Q34Game8GameStat11PikiCounterFv = .text:0x801D1014; // type:function size:0x3C scope:global align:4 +clear__Q34Game8GameStat11PikiCounterFv = .text:0x801D1050; // type:function size:0x24 scope:global align:4 +inc__Q34Game8GameStat11PikiCounterFPQ24Game4Piki = .text:0x801D1074; // type:function size:0x84 scope:global align:4 +dec__Q34Game8GameStat11PikiCounterFPQ24Game4Piki = .text:0x801D10F8; // type:function size:0x84 scope:global align:4 +inc__Q34Game8GameStat11PikiCounterFi = .text:0x801D117C; // type:function size:0x80 scope:global align:4 +dec__Q34Game8GameStat11PikiCounterFi = .text:0x801D11FC; // type:function size:0x80 scope:global align:4 +clear__Q34Game8GameStat15PikiNaviCounterFv = .text:0x801D127C; // type:function size:0xCC scope:global align:4 +inc__Q34Game8GameStat15PikiNaviCounterFPQ24Game4Piki = .text:0x801D1348; // type:function size:0xAC scope:global align:4 +dec__Q34Game8GameStat15PikiNaviCounterFPQ24Game4Piki = .text:0x801D13F4; // type:function size:0xAC scope:global align:4 +__sinit_gameStat_cpp = .text:0x801D14A0; // type:function size:0x278 scope:local align:4 +init__Q34Game8ItemHole3FSMFPQ24Game8CFSMItem = .text:0x801D1718; // type:function size:0x134 scope:global align:4 +init__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D184C; // type:function size:0x3C scope:global align:4 +exec__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItem = .text:0x801D1888; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItem = .text:0x801D188C; // type:function size:0x4 scope:global align:4 +init__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D1890; // type:function size:0x5C scope:global align:4 +exec__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItem = .text:0x801D18EC; // type:function size:0x118 scope:global align:4 +transit__Q24Game26FSMStateFPQ24Game8CFSMItemiPQ24Game8StateArg = .text:0x801D1A04; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItem = .text:0x801D1A34; // type:function size:0x4 scope:global align:4 +init__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D1A38; // type:function size:0x3C scope:global align:4 +exec__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItem = .text:0x801D1A74; // type:function size:0x14 scope:global align:4 +cleanup__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItem = .text:0x801D1A88; // type:function size:0x4 scope:global align:4 +movieUserCommand__Q34Game8ItemHole4ItemFUlPQ24Game11MoviePlayer = .text:0x801D1A8C; // type:function size:0x25C scope:global align:4 +interactGotKey__Q34Game8ItemHole4ItemFRQ24Game14InteractGotKey = .text:0x801D1CE8; // type:function size:0x108 scope:global align:4 +getFaceDir__Q34Game8ItemHole4ItemFv = .text:0x801D1DF0; // type:function size:0x8 scope:weak align:4 +onInit__Q34Game8ItemHole4ItemFPQ24Game15CreatureInitArg = .text:0x801D1DF8; // type:function size:0xC0 scope:global align:4 +start__Q24Game30StateMachineFPQ24Game8CFSMItemiPQ24Game8StateArg = .text:0x801D1EB8; // type:function size:0x78 scope:weak align:4 +changeMaterial__Q34Game8ItemHole4ItemFv = .text:0x801D1F30; // type:function size:0x50 scope:global align:4 +onSetPosition__Q34Game8ItemHole4ItemFv = .text:0x801D1F80; // type:function size:0x1DC scope:global align:4 +initDependency__Q34Game8ItemHole4ItemFv = .text:0x801D215C; // type:function size:0x314 scope:global align:4 +makeTrMatrix__Q34Game8ItemHole4ItemFv = .text:0x801D2470; // type:function size:0x68 scope:global align:4 +canRide__Q34Game8ItemHole4ItemFv = .text:0x801D24D8; // type:function size:0x30 scope:global align:4 +canRide__Q34Game8ItemHole5StateFv = .text:0x801D2508; // type:function size:0x8 scope:weak align:4 +do_setLODParm__Q34Game8ItemHole4ItemFRQ24Game9AILODParm = .text:0x801D2510; // type:function size:0x14 scope:global align:4 +sound_culling__Q34Game8ItemHole4ItemFv = .text:0x801D2524; // type:function size:0x8 scope:global align:4 +doAI__Q34Game8ItemHole4ItemFv = .text:0x801D252C; // type:function size:0xE4 scope:global align:4 +doDirectDraw__Q34Game8ItemHole4ItemFR8Graphics = .text:0x801D2610; // type:function size:0xBC scope:global align:4 +createFSM__Q34Game8ItemHole4ItemFv = .text:0x801D26CC; // type:function size:0x58 scope:global align:4 +__ct__Q34Game8ItemHole3MgrFv = .text:0x801D2724; // type:function size:0x7C scope:global align:4 +onLoadResources__Q34Game8ItemHole3MgrFv = .text:0x801D27A0; // type:function size:0x100 scope:global align:4 +setup__Q34Game8ItemHole3MgrFPQ24Game8BaseItem = .text:0x801D28A0; // type:function size:0xBC scope:global align:4 +generatorBirth__Q34Game8ItemHole3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801D295C; // type:function size:0x54 scope:global align:4 +__dt__Q34Game8ItemHole3MgrFv = .text:0x801D29B0; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemHole3MgrFv = .text:0x801D2AE4; // type:function size:0x74 scope:weak align:4 +generatorGetID__Q34Game8ItemHole3MgrFv = .text:0x801D2B58; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemHole4ItemFv = .text:0x801D2B64; // type:function size:0x8 scope:weak align:4 +onDamage__Q24Game10CItemStateFPQ24Game8CFSMItemf = .text:0x801D2B6C; // type:function size:0x4 scope:weak align:4 +canRide__Q34Game8ItemHole11NormalStateFv = .text:0x801D2B70; // type:function size:0x8 scope:weak align:4 +init__Q24Game26FSMStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D2B78; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D2B7C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D2B80; // type:function size:0x4 scope:weak align:4 +restart__Q24Game26FSMStateFPQ24Game8CFSMItem = .text:0x801D2B84; // type:function size:0x4 scope:weak align:4 +create__Q24Game30StateMachineFi = .text:0x801D2B88; // type:function size:0x64 scope:weak align:4 +transit__Q24Game30StateMachineFPQ24Game8CFSMItemiPQ24Game8StateArg = .text:0x801D2BEC; // type:function size:0xAC scope:weak align:4 +registerState__Q24Game30StateMachineFPQ24Game26FSMState = .text:0x801D2C98; // type:function size:0x84 scope:weak align:4 +__sinit_itemHole_cpp = .text:0x801D2D1C; // type:function size:0x28 scope:local align:4 +@48@__dt__Q34Game8ItemHole3MgrFv = .text:0x801D2D44; // type:function size:0x8 scope:weak align:4 +init__Q34Game9ItemHoney3FSMFPQ24Game8CFSMItem = .text:0x801D2D4C; // type:function size:0x23C scope:global align:4 +init__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D2F88; // type:function size:0x4 scope:global align:4 +exec__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItem = .text:0x801D2F8C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItem = .text:0x801D2F90; // type:function size:0x4 scope:global align:4 +onBounce__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItemPQ23Sys8Triangle = .text:0x801D2F94; // type:function size:0x34 scope:global align:4 +init__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D2FC8; // type:function size:0x1C4 scope:global align:4 +exec__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItem = .text:0x801D318C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItem = .text:0x801D3190; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D3194; // type:function size:0x34 scope:global align:4 +init__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D31C8; // type:function size:0x38 scope:global align:4 +exec__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItem = .text:0x801D3200; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItem = .text:0x801D3204; // type:function size:0x4 scope:global align:4 +collisionCallback__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801D3208; // type:function size:0x11C scope:global align:4 +interactAbsorb__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D3324; // type:function size:0x38 scope:global align:4 +init__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D335C; // type:function size:0x38 scope:global align:4 +exec__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItem = .text:0x801D3394; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItem = .text:0x801D3398; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D339C; // type:function size:0x64 scope:global align:4 +kill__Q24Game40FixedSizeItemMgrFPQ34Game9ItemHoney4Item = .text:0x801D3400; // type:function size:0x24 scope:weak align:4 +init__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D3424; // type:function size:0x4C scope:global align:4 +exec__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItem = .text:0x801D3470; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItem = .text:0x801D3474; // type:function size:0x4 scope:global align:4 +interactAbsorb__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D3478; // type:function size:0x38 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D34B0; // type:function size:0x34 scope:global align:4 +collisionCallback__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801D34E4; // type:function size:0x80 scope:global align:4 +init__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItemPQ24Game8StateArg = .text:0x801D3564; // type:function size:0x38 scope:global align:4 +exec__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItem = .text:0x801D359C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItem = .text:0x801D35A0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D35A4; // type:function size:0x38 scope:global align:4 +demoOK__Q34Game9ItemHoney4ItemFv = .text:0x801D35DC; // type:function size:0x3C scope:global align:4 +__ct__Q34Game9ItemHoney4ItemFv = .text:0x801D3618; // type:function size:0x88 scope:global align:4 +createFSM__Q34Game9ItemHoney4ItemFv = .text:0x801D36A0; // type:function size:0x58 scope:global align:4 +doAI__Q34Game9ItemHoney4ItemFv = .text:0x801D36F8; // type:function size:0x40 scope:global align:4 +onInit__Q34Game9ItemHoney4ItemFPQ24Game15CreatureInitArg = .text:0x801D3738; // type:function size:0x158 scope:global align:4 +onSetPosition__Q34Game9ItemHoney4ItemFv = .text:0x801D3890; // type:function size:0x4 scope:global align:4 +getMapCollisionRadius__Q34Game9ItemHoney4ItemFv = .text:0x801D3894; // type:function size:0x8 scope:global align:4 +changeMaterial__Q34Game9ItemHoney4ItemFv = .text:0x801D389C; // type:function size:0x130 scope:global align:4 +updateBoundSphere__Q34Game9ItemHoney4ItemFv = .text:0x801D39CC; // type:function size:0x38 scope:global align:4 +doSimulation__Q34Game9ItemHoney4ItemFf = .text:0x801D3A04; // type:function size:0x94 scope:global align:4 +absorbable__Q34Game9ItemHoney4ItemFv = .text:0x801D3A98; // type:function size:0x54 scope:global align:4 +absorbable__Q34Game9ItemHoney5StateFv = .text:0x801D3AEC; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q34Game9ItemHoney4ItemFRCQ28SysShape8KeyEvent = .text:0x801D3AF4; // type:function size:0x60 scope:global align:4 +collisionCallback__Q34Game9ItemHoney4ItemFRQ24Game9CollEvent = .text:0x801D3B54; // type:function size:0x60 scope:global align:4 +collisionCallback__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRQ24Game9CollEvent = .text:0x801D3BB4; // type:function size:0x4 scope:weak align:4 +interactAbsorb__Q34Game9ItemHoney4ItemFRQ24Game14InteractAbsorb = .text:0x801D3BB8; // type:function size:0x68 scope:global align:4 +interactAbsorb__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D3C20; // type:function size:0x8 scope:weak align:4 +doDirectDraw__Q34Game9ItemHoney4ItemFR8Graphics = .text:0x801D3C28; // type:function size:0x4 scope:global align:4 +makeTrMatrix__Q34Game9ItemHoney4ItemFv = .text:0x801D3C2C; // type:function size:0x6C scope:global align:4 +onStartCapture__Q34Game9ItemHoney4ItemFv = .text:0x801D3C98; // type:function size:0x3C scope:global align:4 +onUpdateCapture__Q34Game9ItemHoney4ItemFR7Matrixf = .text:0x801D3CD4; // type:function size:0x54 scope:global align:4 +onEndCapture__Q34Game9ItemHoney4ItemFv = .text:0x801D3D28; // type:function size:0x28 scope:global align:4 +on_movie_end__Q34Game9ItemHoney4ItemFb = .text:0x801D3D50; // type:function size:0x2C scope:global align:4 +isShrinking__Q34Game9ItemHoney4ItemFv = .text:0x801D3D7C; // type:function size:0x2C scope:global align:4 +__ct__Q34Game9ItemHoney3MgrFv = .text:0x801D3DA8; // type:function size:0xD0 scope:global align:4 +__dt__Q24Game40FixedSizeItemMgrFv = .text:0x801D3E78; // type:function size:0x100 scope:weak align:4 +__dt__37MonoObjectMgrFv = .text:0x801D3F78; // type:function size:0xA0 scope:weak align:4 +__dt__33ContainerFv = .text:0x801D4018; // type:function size:0x70 scope:weak align:4 +onCreateModel__Q34Game9ItemHoney3MgrFPQ28SysShape5Model = .text:0x801D4088; // type:function size:0x70 scope:global align:4 +onLoadResources__Q34Game9ItemHoney3MgrFv = .text:0x801D40F8; // type:function size:0xCC scope:global align:4 +birth__Q34Game9ItemHoney3MgrFv = .text:0x801D41C4; // type:function size:0x2C scope:global align:4 +generatorBirth__Q34Game9ItemHoney3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801D41F0; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9ItemHoney3MgrFv = .text:0x801D4250; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game9ItemHoney3MgrFv = .text:0x801D4368; // type:function size:0xC scope:weak align:4 +__dt__33ObjectMgrFv = .text:0x801D4374; // type:function size:0x88 scope:weak align:4 +birth__Q24Game40FixedSizeItemMgrFv = .text:0x801D43FC; // type:function size:0x2C scope:weak align:4 +getCreatureName__Q34Game9ItemHoney4ItemFv = .text:0x801D4428; // type:function size:0x8 scope:weak align:4 +absorbable__Q34Game9ItemHoney10TouchStateFv = .text:0x801D4430; // type:function size:0x8 scope:weak align:4 +interactAbsorb__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb = .text:0x801D4438; // type:function size:0x8 scope:weak align:4 +absorbable__Q34Game9ItemHoney11ShrinkStateFv = .text:0x801D4440; // type:function size:0x8 scope:weak align:4 +absorbable__Q34Game9ItemHoney9WaitStateFv = .text:0x801D4448; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent = .text:0x801D4450; // type:function size:0x4 scope:weak align:4 +onCreateModel__Q24Game40FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801D4454; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game40FixedSizeItemMgrFv = .text:0x801D4458; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game40FixedSizeItemMgrFv = .text:0x801D4484; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game40FixedSizeItemMgrFi = .text:0x801D44B0; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game40FixedSizeItemMgrFv = .text:0x801D44DC; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game40FixedSizeItemMgrFf = .text:0x801D4508; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game40FixedSizeItemMgrFR8Graphics = .text:0x801D4534; // type:function size:0x2C scope:weak align:4 +getNext__Q24Game40FixedSizeItemMgrFPv = .text:0x801D4560; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game40FixedSizeItemMgrFv = .text:0x801D458C; // type:function size:0x2C scope:weak align:4 +createModel__Q24Game40FixedSizeItemMgrFPQ34Game9ItemHoney4Item = .text:0x801D45B8; // type:function size:0x30 scope:weak align:4 +birth__37MonoObjectMgrFv = .text:0x801D45E8; // type:function size:0x60 scope:weak align:4 +kill__37MonoObjectMgrFPQ34Game9ItemHoney4Item = .text:0x801D4648; // type:function size:0x54 scope:weak align:4 +getNext__37MonoObjectMgrFPv = .text:0x801D469C; // type:function size:0x40 scope:weak align:4 +getStart__37MonoObjectMgrFv = .text:0x801D46DC; // type:function size:0x30 scope:weak align:4 +getEnd__37MonoObjectMgrFv = .text:0x801D470C; // type:function size:0x8 scope:weak align:4 +getAt__37MonoObjectMgrFi = .text:0x801D4714; // type:function size:0x10 scope:weak align:4 +getTo__37MonoObjectMgrFv = .text:0x801D4724; // type:function size:0x8 scope:weak align:4 +doAnimation__37MonoObjectMgrFv = .text:0x801D472C; // type:function size:0x80 scope:weak align:4 +doEntry__37MonoObjectMgrFv = .text:0x801D47AC; // type:function size:0x80 scope:weak align:4 +doSetView__37MonoObjectMgrFi = .text:0x801D482C; // type:function size:0x90 scope:weak align:4 +doViewCalc__37MonoObjectMgrFv = .text:0x801D48BC; // type:function size:0x80 scope:weak align:4 +doSimulation__37MonoObjectMgrFf = .text:0x801D493C; // type:function size:0x90 scope:weak align:4 +doDirectDraw__37MonoObjectMgrFR8Graphics = .text:0x801D49CC; // type:function size:0x90 scope:weak align:4 +resetMgr__37MonoObjectMgrFv = .text:0x801D4A5C; // type:function size:0x18 scope:weak align:4 +clearMgr__37MonoObjectMgrFv = .text:0x801D4A74; // type:function size:0x30 scope:weak align:4 +onAlloc__37MonoObjectMgrFv = .text:0x801D4AA4; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__37MonoObjectMgrFv = .text:0x801D4AA8; // type:function size:0x3C scope:weak align:4 +get__37MonoObjectMgrFPv = .text:0x801D4AE4; // type:function size:0x10 scope:weak align:4 +getObject__33ContainerFPv = .text:0x801D4AF4; // type:function size:0x2C scope:weak align:4 +getAt__33ContainerFi = .text:0x801D4B20; // type:function size:0x8 scope:weak align:4 +getTo__33ContainerFv = .text:0x801D4B28; // type:function size:0x8 scope:weak align:4 +doDirectDraw__33ObjectMgrFR8Graphics = .text:0x801D4B30; // type:function size:0x1F4 scope:weak align:4 +isDone__32IteratorFv = .text:0x801D4D24; // type:function size:0x4C scope:weak align:4 +doSimulation__33ObjectMgrFf = .text:0x801D4D70; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__33ObjectMgrFv = .text:0x801D4F64; // type:function size:0x1E4 scope:weak align:4 +doSetView__33ObjectMgrFi = .text:0x801D5148; // type:function size:0x1F4 scope:weak align:4 +doEntry__33ObjectMgrFv = .text:0x801D533C; // type:function size:0x1E4 scope:weak align:4 +doAnimation__33ObjectMgrFv = .text:0x801D5520; // type:function size:0x1E4 scope:weak align:4 +__ct__37MonoObjectMgrFv = .text:0x801D5704; // type:function size:0x9C scope:weak align:4 +getEnd__Q24Game40FixedSizeItemMgrFv = .text:0x801D57A0; // type:function size:0x2C scope:weak align:4 +get__Q24Game40FixedSizeItemMgrFPv = .text:0x801D57CC; // type:function size:0x2C scope:weak align:4 +initDependency__Q24Game40FixedSizeItemMgrFv = .text:0x801D57F8; // type:function size:0x1E8 scope:weak align:4 +killAll__Q24Game40FixedSizeItemMgrFv = .text:0x801D59E0; // type:function size:0xE0 scope:weak align:4 +createModelCallback__Q24Game40FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801D5AC0; // type:function size:0x2C scope:weak align:4 +createMgr__Q24Game40FixedSizeItemMgrFiUl = .text:0x801D5AEC; // type:function size:0xE4 scope:weak align:4 +__ml__32IteratorFv = .text:0x801D5BD0; // type:function size:0x38 scope:weak align:4 +next__32IteratorFv = .text:0x801D5C08; // type:function size:0xE4 scope:weak align:4 +first__32IteratorFv = .text:0x801D5CEC; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game40FixedSizeItemMgrFv = .text:0x801D5DC8; // type:function size:0x64 scope:weak align:4 +alloc__37MonoObjectMgrFi = .text:0x801D5E2C; // type:function size:0x188 scope:weak align:4 +invoke__79Delegate1,PQ28SysShape5Model>FPQ28SysShape5Model = .text:0x801D5FB4; // type:function size:0x30 scope:weak align:4 +@376@onKeyEvent__Q34Game9ItemHoney4ItemFRCQ28SysShape8KeyEvent = .text:0x801D5FE4; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game40FixedSizeItemMgrFv = .text:0x801D5FEC; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__37MonoObjectMgrFv = .text:0x801D5FF4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37MonoObjectMgrFR8Graphics = .text:0x801D5FFC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37MonoObjectMgrFf = .text:0x801D6004; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37MonoObjectMgrFv = .text:0x801D600C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37MonoObjectMgrFi = .text:0x801D6014; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37MonoObjectMgrFv = .text:0x801D601C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37MonoObjectMgrFv = .text:0x801D6024; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__33ObjectMgrFR8Graphics = .text:0x801D602C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__33ObjectMgrFf = .text:0x801D6034; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__33ObjectMgrFv = .text:0x801D603C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__33ObjectMgrFi = .text:0x801D6044; // type:function size:0x8 scope:weak align:4 +@28@doEntry__33ObjectMgrFv = .text:0x801D604C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__33ObjectMgrFv = .text:0x801D6054; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game40FixedSizeItemMgrFv = .text:0x801D605C; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game40FixedSizeItemMgrFv = .text:0x801D6064; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game40FixedSizeItemMgrFPv = .text:0x801D606C; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game40FixedSizeItemMgrFPv = .text:0x801D6074; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game9ItemHoney3MgrFv = .text:0x801D607C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Cave7BaseGenFv = .text:0x801D6084; // type:function size:0x70 scope:global align:4 +read__Q34Game4Cave7BaseGenFR6Stream = .text:0x801D60F4; // type:function size:0xF4 scope:global align:4 +draw__Q34Game4Cave7BaseGenFR8GraphicsP7Matrixf = .text:0x801D61E8; // type:function size:0x4 scope:global align:4 +read__Q34Game4Cave8TekiInfoFR6Stream = .text:0x801D61EC; // type:function size:0x1A8 scope:global align:4 +read__Q34Game4Cave8ItemInfoFR6Stream = .text:0x801D6394; // type:function size:0xA8 scope:global align:4 +read__Q34Game4Cave8GateInfoFR6Stream = .text:0x801D643C; // type:function size:0x8C scope:global align:4 +getTekiInfo__Q34Game4Cave7CapInfoFv = .text:0x801D64C8; // type:function size:0x1C scope:global align:4 +read__Q34Game4Cave7CapInfoFR6Stream = .text:0x801D64E4; // type:function size:0xC8 scope:global align:4 +__ct__Q34Game4Cave9FloorInfoFv = .text:0x801D65AC; // type:function size:0x174 scope:global align:4 +__dt__Q34Game4Cave7CapInfoFv = .text:0x801D6720; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave8GateInfoFv = .text:0x801D6780; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave8ItemInfoFv = .text:0x801D67E0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave8TekiInfoFv = .text:0x801D6840; // type:function size:0x60 scope:weak align:4 +__ct__Q44Game4Cave9FloorInfo5ParmsFv = .text:0x801D68A0; // type:function size:0x410 scope:global align:4 +hasHiddenCollision__Q34Game4Cave9FloorInfoFv = .text:0x801D6CB0; // type:function size:0x14 scope:global align:4 +getTekiMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6CC4; // type:function size:0x8 scope:global align:4 +getTekiInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6CCC; // type:function size:0x2C scope:global align:4 +getTekiInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6CF8; // type:function size:0x94 scope:global align:4 +getTekiWeightSum__Q34Game4Cave9FloorInfoFv = .text:0x801D6D8C; // type:function size:0x24 scope:global align:4 +getItemMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6DB0; // type:function size:0x8 scope:global align:4 +getItemInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6DB8; // type:function size:0x2C scope:global align:4 +getItemInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6DE4; // type:function size:0x94 scope:global align:4 +getItemWeightSum__Q34Game4Cave9FloorInfoFv = .text:0x801D6E78; // type:function size:0x24 scope:global align:4 +getGateMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6E9C; // type:function size:0x8 scope:global align:4 +getGateInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6EA4; // type:function size:0x2C scope:global align:4 +getGateInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6ED0; // type:function size:0x94 scope:global align:4 +getGateWeightSum__Q34Game4Cave9FloorInfoFv = .text:0x801D6F64; // type:function size:0x24 scope:global align:4 +getCapMax__Q34Game4Cave9FloorInfoFv = .text:0x801D6F88; // type:function size:0x8 scope:global align:4 +getCapInfoNum__Q34Game4Cave9FloorInfoFv = .text:0x801D6F90; // type:function size:0x2C scope:global align:4 +getCapInfo__Q34Game4Cave9FloorInfoFi = .text:0x801D6FBC; // type:function size:0x94 scope:global align:4 +getRoomNum__Q34Game4Cave9FloorInfoFv = .text:0x801D7050; // type:function size:0x8 scope:global align:4 +getRouteRatio__Q34Game4Cave9FloorInfoFv = .text:0x801D7058; // type:function size:0x8 scope:global align:4 +hasEscapeFountain__Q34Game4Cave9FloorInfoFi = .text:0x801D7060; // type:function size:0x44 scope:global align:4 +useKaidanBarrel__Q34Game4Cave9FloorInfoFv = .text:0x801D70A4; // type:function size:0x14 scope:global align:4 +read__Q34Game4Cave9FloorInfoFR6Stream = .text:0x801D70B8; // type:function size:0x224 scope:global align:4 +__ct__Q34Game4Cave8CaveInfoFv = .text:0x801D72DC; // type:function size:0xD0 scope:global align:4 +__dt__Q34Game4Cave9FloorInfoFv = .text:0x801D73AC; // type:function size:0xE4 scope:weak align:4 +disablePelplant__Q34Game4Cave8CaveInfoFv = .text:0x801D7490; // type:function size:0x40 scope:global align:4 +getFloorMax__Q34Game4Cave8CaveInfoFv = .text:0x801D74D0; // type:function size:0x8 scope:global align:4 +getFloorInfo__Q34Game4Cave8CaveInfoFi = .text:0x801D74D8; // type:function size:0x34 scope:global align:4 +load__Q34Game4Cave8CaveInfoFPc = .text:0x801D750C; // type:function size:0xF8 scope:global align:4 +read__Q34Game4Cave8CaveInfoFR6Stream = .text:0x801D7604; // type:function size:0x90 scope:global align:4 +__dt__Q34Game4Cave8CaveInfoFv = .text:0x801D7694; // type:function size:0xF4 scope:weak align:4 +__dt__Q34Game4Cave7BaseGenFv = .text:0x801D7788; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game9AILODParmFv = .text:0x801D77E8; // type:function size:0x1C scope:global align:4 +__ct__Q24Game5AILODFv = .text:0x801D7804; // type:function size:0x18 scope:global align:4 +updateLOD__Q24Game8CreatureFRQ24Game9AILODParm = .text:0x801D781C; // type:function size:0x3A8 scope:global align:4 +drawLODInfo__Q24Game8CreatureFR8GraphicsR10Vector3 = .text:0x801D7BC4; // type:function size:0x258 scope:global align:4 +__sinit_creatureLOD_cpp = .text:0x801D7E1C; // type:function size:0x28 scope:local align:4 +stimulate__Q24Game4NaviFRQ24Game11Interaction = .text:0x801D7E44; // type:function size:0x74 scope:global align:4 +actNavi__Q24Game13InteractSaraiFPQ24Game4Navi = .text:0x801D7EB8; // type:function size:0x8C scope:global align:4 +actNavi__Q24Game12InteractBombFPQ24Game4Navi = .text:0x801D7F44; // type:function size:0x80 scope:global align:4 +actNavi__Q24Game12InteractWindFPQ24Game4Navi = .text:0x801D7FC4; // type:function size:0xE0 scope:global align:4 +actNavi__Q24Game13InteractDenkiFPQ24Game4Navi = .text:0x801D80A4; // type:function size:0xB4 scope:global align:4 +actNavi__Q24Game16InteractFallMeckFPQ24Game4Navi = .text:0x801D8158; // type:function size:0x44 scope:global align:4 +actNavi__Q24Game13InteractFlickFPQ24Game4Navi = .text:0x801D819C; // type:function size:0x1F8 scope:global align:4 +actNavi__Q24Game13InteractPressFPQ24Game4Navi = .text:0x801D8394; // type:function size:0xF4 scope:global align:4 +actNavi__Q24Game12InteractFireFPQ24Game4Navi = .text:0x801D8488; // type:function size:0xB8 scope:global align:4 +actNavi__Q24Game14InteractBubbleFPQ24Game4Navi = .text:0x801D8540; // type:function size:0x90 scope:global align:4 +actNavi__Q24Game11InteractGasFPQ24Game4Navi = .text:0x801D85D0; // type:function size:0x8 scope:global align:4 +actNavi__Q24Game12InteractBuryFPQ24Game4Navi = .text:0x801D85D8; // type:function size:0x5C scope:global align:4 +actNavi__Q24Game11InteractFueFPQ24Game4Navi = .text:0x801D8634; // type:function size:0x358 scope:global align:4 +actNavi__Q24Game14InteractKaisanFPQ24Game4Navi = .text:0x801D898C; // type:function size:0x74 scope:global align:4 +actNavi__Q24Game14InteractAttackFPQ24Game4Navi = .text:0x801D8A00; // type:function size:0x9C scope:global align:4 +init__Q34Game12ItemPikihead3FSMFPQ34Game12ItemPikihead4Item = .text:0x801D8A9C; // type:function size:0x294 scope:global align:4 +init__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D8D30; // type:function size:0x98 scope:global align:4 +exec__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4Item = .text:0x801D8DC8; // type:function size:0x38 scope:global align:4 +cleanup__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4Item = .text:0x801D8E00; // type:function size:0x24 scope:global align:4 +onPlatCollision__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemRQ24Game9PlatEvent = .text:0x801D8E24; // type:function size:0x28 scope:global align:4 +onBounce__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemPQ23Sys8Triangle = .text:0x801D8E4C; // type:function size:0x2F0 scope:global align:4 +transit__Q24Game36FSMStateFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg = .text:0x801D913C; // type:function size:0x30 scope:weak align:4 +init__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D916C; // type:function size:0x8C scope:global align:4 +exec__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4Item = .text:0x801D91F8; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4Item = .text:0x801D9260; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9264; // type:function size:0xC scope:global align:4 +init__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D9270; // type:function size:0x8C scope:global align:4 +exec__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4Item = .text:0x801D92FC; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4Item = .text:0x801D9364; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9368; // type:function size:0xC scope:global align:4 +init__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D9374; // type:function size:0x58 scope:global align:4 +exec__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4Item = .text:0x801D93CC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4Item = .text:0x801D93D0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D93D4; // type:function size:0x34 scope:global align:4 +init__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D9408; // type:function size:0xEC scope:global align:4 +exec__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4Item = .text:0x801D94F4; // type:function size:0x9C scope:global align:4 +cleanup__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4Item = .text:0x801D9590; // type:function size:0x24 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D95B4; // type:function size:0x38 scope:global align:4 +init__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D95EC; // type:function size:0x4C scope:global align:4 +exec__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4Item = .text:0x801D9638; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4Item = .text:0x801D963C; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9640; // type:function size:0xCC scope:global align:4 +init__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801D970C; // type:function size:0xAC scope:global align:4 +exec__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4Item = .text:0x801D97B8; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4Item = .text:0x801D9820; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801D9824; // type:function size:0x14 scope:global align:4 +__ct__Q34Game12ItemPikihead4ItemFv = .text:0x801D9838; // type:function size:0x1D0 scope:global align:4 +__dt__Q23efx8TPkGlow1Fv = .text:0x801D9A08; // type:function size:0x9C scope:weak align:4 +onInit__Q34Game12ItemPikihead4ItemFPQ24Game15CreatureInitArg = .text:0x801D9AA4; // type:function size:0x21C scope:global align:4 +start__Q24Game40StateMachineFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg = .text:0x801D9CC0; // type:function size:0x34 scope:weak align:4 +onKill__Q34Game12ItemPikihead4ItemFPQ24Game15CreatureKillArg = .text:0x801D9CF4; // type:function size:0x94 scope:global align:4 +kill__Q24Game44FixedSizeItemMgrFPQ34Game12ItemPikihead4Item = .text:0x801D9D88; // type:function size:0x24 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801D9DAC; // type:function size:0x4 scope:weak align:4 +needSave__Q34Game12ItemPikihead4ItemFv = .text:0x801D9DB0; // type:function size:0x2C scope:global align:4 +cacheSave__Q34Game12ItemPikihead4ItemFR6Stream = .text:0x801D9DDC; // type:function size:0x5C scope:global align:4 +cacheLoad__Q34Game12ItemPikihead4ItemFR6Stream = .text:0x801D9E38; // type:function size:0xA4 scope:global align:4 +makeTrMatrix__Q34Game12ItemPikihead4ItemFv = .text:0x801D9EDC; // type:function size:0x200 scope:global align:4 +doAI__Q34Game12ItemPikihead4ItemFv = .text:0x801DA0DC; // type:function size:0x140 scope:global align:4 +changeMaterial__Q34Game12ItemPikihead4ItemFv = .text:0x801DA21C; // type:function size:0x14C scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead4ItemFRCQ28SysShape8KeyEvent = .text:0x801DA368; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q34Game12ItemPikihead5StateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801DA3AC; // type:function size:0x4 scope:weak align:4 +updateBoundSphere__Q34Game12ItemPikihead4ItemFv = .text:0x801DA3B0; // type:function size:0x24 scope:global align:4 +getLODSphere__Q34Game12ItemPikihead4ItemFRQ23Sys6Sphere = .text:0x801DA3D4; // type:function size:0x24 scope:global align:4 +onSetPosition__Q34Game12ItemPikihead4ItemFv = .text:0x801DA3F8; // type:function size:0x4 scope:global align:4 +doSimulation__Q34Game12ItemPikihead4ItemFf = .text:0x801DA3FC; // type:function size:0x74 scope:global align:4 +canPullout__Q34Game12ItemPikihead4ItemFv = .text:0x801DA470; // type:function size:0x2C scope:global align:4 +interactFue__Q34Game12ItemPikihead4ItemFRQ24Game11InteractFue = .text:0x801DA49C; // type:function size:0x1AC scope:global align:4 +__ct__Q34Game12ItemPikihead3MgrFv = .text:0x801DA648; // type:function size:0xD4 scope:global align:4 +__dt__Q24Game44FixedSizeItemMgrFv = .text:0x801DA71C; // type:function size:0x100 scope:weak align:4 +__dt__41MonoObjectMgrFv = .text:0x801DA81C; // type:function size:0xA0 scope:weak align:4 +__dt__37ContainerFv = .text:0x801DA8BC; // type:function size:0x70 scope:weak align:4 +onLoadResources__Q34Game12ItemPikihead3MgrFv = .text:0x801DA92C; // type:function size:0xAC scope:global align:4 +doSimpleDraw__Q34Game12ItemPikihead3MgrFP8Viewport = .text:0x801DA9D8; // type:function size:0x378 scope:global align:4 +onCreateModel__Q34Game12ItemPikihead3MgrFPQ28SysShape5Model = .text:0x801DAD50; // type:function size:0x6C scope:global align:4 +birth__Q34Game12ItemPikihead3MgrFv = .text:0x801DADBC; // type:function size:0xA0 scope:global align:4 +generatorBirth__Q34Game12ItemPikihead3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801DAE5C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12ItemPikihead3MgrFv = .text:0x801DAEBC; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game12ItemPikihead3MgrFv = .text:0x801DAFD4; // type:function size:0xC scope:weak align:4 +__dt__37ObjectMgrFv = .text:0x801DAFE0; // type:function size:0x88 scope:weak align:4 +birth__Q24Game44FixedSizeItemMgrFv = .text:0x801DB068; // type:function size:0x2C scope:weak align:4 +getCreatureName__Q34Game12ItemPikihead4ItemFv = .text:0x801DB094; // type:function size:0xC scope:weak align:4 +doAI__Q24Game89FSMItemFv = .text:0x801DB0A0; // type:function size:0x34 scope:weak align:4 +onCreateModel__Q24Game44FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801DB0D4; // type:function size:0x4 scope:weak align:4 +doAnimation__Q24Game44FixedSizeItemMgrFv = .text:0x801DB0D8; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game44FixedSizeItemMgrFv = .text:0x801DB104; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game44FixedSizeItemMgrFi = .text:0x801DB130; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game44FixedSizeItemMgrFv = .text:0x801DB15C; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game44FixedSizeItemMgrFf = .text:0x801DB188; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game44FixedSizeItemMgrFR8Graphics = .text:0x801DB1B4; // type:function size:0x2C scope:weak align:4 +initDependency__Q24Game44FixedSizeItemMgrFv = .text:0x801DB1E0; // type:function size:0x1E8 scope:weak align:4 +getNext__Q24Game44FixedSizeItemMgrFPv = .text:0x801DB3C8; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game44FixedSizeItemMgrFv = .text:0x801DB3F4; // type:function size:0x2C scope:weak align:4 +createModel__Q24Game44FixedSizeItemMgrFPQ34Game12ItemPikihead4Item = .text:0x801DB420; // type:function size:0x30 scope:weak align:4 +onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801DB450; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game37ItemStateFPQ34Game12ItemPikihead4Itemf = .text:0x801DB494; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent = .text:0x801DB498; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemPQ23Sys8Triangle = .text:0x801DB49C; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRQ24Game9PlatEvent = .text:0x801DB4A0; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRQ24Game9CollEvent = .text:0x801DB4A4; // type:function size:0x4 scope:weak align:4 +init__Q24Game36FSMStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg = .text:0x801DB4A8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801DB4AC; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801DB4B0; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item = .text:0x801DB4B4; // type:function size:0x4 scope:weak align:4 +init__Q24Game40StateMachineFPQ34Game12ItemPikihead4Item = .text:0x801DB4B8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game40StateMachineFPQ34Game12ItemPikihead4Item = .text:0x801DB4BC; // type:function size:0x38 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x801DB4F4; // type:function size:0x64 scope:weak align:4 +birth__41MonoObjectMgrFv = .text:0x801DB558; // type:function size:0x60 scope:weak align:4 +kill__41MonoObjectMgrFPQ34Game12ItemPikihead4Item = .text:0x801DB5B8; // type:function size:0x54 scope:weak align:4 +getNext__41MonoObjectMgrFPv = .text:0x801DB60C; // type:function size:0x40 scope:weak align:4 +getStart__41MonoObjectMgrFv = .text:0x801DB64C; // type:function size:0x30 scope:weak align:4 +getEnd__41MonoObjectMgrFv = .text:0x801DB67C; // type:function size:0x8 scope:weak align:4 +getAt__41MonoObjectMgrFi = .text:0x801DB684; // type:function size:0x10 scope:weak align:4 +getTo__41MonoObjectMgrFv = .text:0x801DB694; // type:function size:0x8 scope:weak align:4 +doAnimation__41MonoObjectMgrFv = .text:0x801DB69C; // type:function size:0x80 scope:weak align:4 +doEntry__41MonoObjectMgrFv = .text:0x801DB71C; // type:function size:0x80 scope:weak align:4 +doSetView__41MonoObjectMgrFi = .text:0x801DB79C; // type:function size:0x90 scope:weak align:4 +doViewCalc__41MonoObjectMgrFv = .text:0x801DB82C; // type:function size:0x80 scope:weak align:4 +doSimulation__41MonoObjectMgrFf = .text:0x801DB8AC; // type:function size:0x90 scope:weak align:4 +doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x801DB93C; // type:function size:0x90 scope:weak align:4 +resetMgr__41MonoObjectMgrFv = .text:0x801DB9CC; // type:function size:0x18 scope:weak align:4 +clearMgr__41MonoObjectMgrFv = .text:0x801DB9E4; // type:function size:0x30 scope:weak align:4 +onAlloc__41MonoObjectMgrFv = .text:0x801DBA14; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__41MonoObjectMgrFv = .text:0x801DBA18; // type:function size:0x3C scope:weak align:4 +get__41MonoObjectMgrFPv = .text:0x801DBA54; // type:function size:0x10 scope:weak align:4 +doAnimation__37ObjectMgrFv = .text:0x801DBA64; // type:function size:0x1E4 scope:weak align:4 +doEntry__37ObjectMgrFv = .text:0x801DBC48; // type:function size:0x1E4 scope:weak align:4 +doSetView__37ObjectMgrFi = .text:0x801DBE2C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__37ObjectMgrFv = .text:0x801DC020; // type:function size:0x1E4 scope:weak align:4 +doSimulation__37ObjectMgrFf = .text:0x801DC204; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__37ObjectMgrFR8Graphics = .text:0x801DC3F8; // type:function size:0x1F4 scope:weak align:4 +getObject__37ContainerFPv = .text:0x801DC5EC; // type:function size:0x2C scope:weak align:4 +getAt__37ContainerFi = .text:0x801DC618; // type:function size:0x8 scope:weak align:4 +getTo__37ContainerFv = .text:0x801DC620; // type:function size:0x8 scope:weak align:4 +__ct__41MonoObjectMgrFv = .text:0x801DC628; // type:function size:0x9C scope:weak align:4 +transit__Q24Game40StateMachineFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg = .text:0x801DC6C4; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x801DC760; // type:function size:0x84 scope:weak align:4 +getStateID__Q24Game89FSMItemFv = .text:0x801DC7E4; // type:function size:0x1C scope:weak align:4 +platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent = .text:0x801DC800; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent = .text:0x801DC844; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle = .text:0x801DC888; // type:function size:0x44 scope:weak align:4 +getEnd__Q24Game44FixedSizeItemMgrFv = .text:0x801DC8CC; // type:function size:0x2C scope:weak align:4 +get__Q24Game44FixedSizeItemMgrFPv = .text:0x801DC8F8; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game44FixedSizeItemMgrFv = .text:0x801DC924; // type:function size:0xE0 scope:weak align:4 +createModelCallback__Q24Game44FixedSizeItemMgrFPQ28SysShape5Model = .text:0x801DCA04; // type:function size:0x2C scope:weak align:4 +createMgr__Q24Game44FixedSizeItemMgrFiUl = .text:0x801DCA30; // type:function size:0xE4 scope:weak align:4 +onAlloc__Q24Game44FixedSizeItemMgrFv = .text:0x801DCB14; // type:function size:0x64 scope:weak align:4 +alloc__41MonoObjectMgrFi = .text:0x801DCB78; // type:function size:0x188 scope:weak align:4 +invoke__83Delegate1,PQ28SysShape5Model>FPQ28SysShape5Model = .text:0x801DCD00; // type:function size:0x30 scope:weak align:4 +__sinit_itemPikihead_cpp = .text:0x801DCD30; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801DCD58; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TPkGlow1Fv = .text:0x801DCD60; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game12ItemPikihead4ItemFRCQ28SysShape8KeyEvent = .text:0x801DCD68; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game44FixedSizeItemMgrFv = .text:0x801DCD70; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__41MonoObjectMgrFv = .text:0x801DCD78; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x801DCD80; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__41MonoObjectMgrFf = .text:0x801DCD88; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__41MonoObjectMgrFv = .text:0x801DCD90; // type:function size:0x8 scope:weak align:4 +@28@doSetView__41MonoObjectMgrFi = .text:0x801DCD98; // type:function size:0x8 scope:weak align:4 +@28@doEntry__41MonoObjectMgrFv = .text:0x801DCDA0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__41MonoObjectMgrFv = .text:0x801DCDA8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37ObjectMgrFR8Graphics = .text:0x801DCDB0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37ObjectMgrFf = .text:0x801DCDB8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37ObjectMgrFv = .text:0x801DCDC0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37ObjectMgrFi = .text:0x801DCDC8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37ObjectMgrFv = .text:0x801DCDD0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37ObjectMgrFv = .text:0x801DCDD8; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game44FixedSizeItemMgrFv = .text:0x801DCDE0; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game44FixedSizeItemMgrFv = .text:0x801DCDE8; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game44FixedSizeItemMgrFPv = .text:0x801DCDF0; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game44FixedSizeItemMgrFPv = .text:0x801DCDF8; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game12ItemPikihead3MgrFv = .text:0x801DCE00; // type:function size:0x8 scope:weak align:4 +init__Q34Game9ItemPlant3FSMFPQ34Game9ItemPlant4Item = .text:0x801DCE08; // type:function size:0x18C scope:global align:4 +init__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DCF94; // type:function size:0x34 scope:global align:4 +startMotion__Q34Game9ItemPlant4ItemFi = .text:0x801DCFC8; // type:function size:0x4 scope:weak align:4 +exec__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item = .text:0x801DCFCC; // type:function size:0x128 scope:global align:4 +bearFruits__Q34Game9ItemPlant4ItemFv = .text:0x801DD0F4; // type:function size:0x4 scope:weak align:4 +transit__Q24Game32FSMStateFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg = .text:0x801DD0F8; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item = .text:0x801DD128; // type:function size:0x4 scope:global align:4 +eventKarero__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item = .text:0x801DD12C; // type:function size:0x34 scope:global align:4 +onDamage__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD160; // type:function size:0x5C scope:global align:4 +init__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DD1BC; // type:function size:0x48 scope:global align:4 +exec__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item = .text:0x801DD204; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item = .text:0x801DD208; // type:function size:0x4 scope:global align:4 +eventKarero__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item = .text:0x801DD20C; // type:function size:0xC scope:global align:4 +onKeyEvent__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801DD218; // type:function size:0x5C scope:global align:4 +onDamage__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD274; // type:function size:0x24 scope:global align:4 +init__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DD298; // type:function size:0x74 scope:global align:4 +exec__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item = .text:0x801DD30C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item = .text:0x801DD310; // type:function size:0x4 scope:global align:4 +eventKarero__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item = .text:0x801DD314; // type:function size:0xC scope:global align:4 +onKeyEvent__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801DD320; // type:function size:0x120 scope:global align:4 +onDamage__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD440; // type:function size:0x24 scope:global align:4 +init__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801DD464; // type:function size:0x7C scope:global align:4 +killFruits__Q34Game9ItemPlant4ItemFv = .text:0x801DD4E0; // type:function size:0x4 scope:weak align:4 +exec__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item = .text:0x801DD4E4; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item = .text:0x801DD570; // type:function size:0x4 scope:global align:4 +eventHaero__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item = .text:0x801DD574; // type:function size:0x18 scope:global align:4 +onKeyEvent__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801DD58C; // type:function size:0xA4 scope:global align:4 +onDamage__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD630; // type:function size:0x4 scope:global align:4 +constructor__Q34Game9ItemPlant4ItemFv = .text:0x801DD634; // type:function size:0x48 scope:global align:4 +onInit__Q34Game9ItemPlant4ItemFPQ24Game15CreatureInitArg = .text:0x801DD67C; // type:function size:0x58 scope:global align:4 +onStickStart__Q34Game9ItemPlant4ItemFPQ24Game8Creature = .text:0x801DD6D4; // type:function size:0x28 scope:global align:4 +onStickEnd__Q34Game9ItemPlant4ItemFPQ24Game8Creature = .text:0x801DD6FC; // type:function size:0x3C scope:global align:4 +onSetPosition__Q34Game9ItemPlant4ItemFv = .text:0x801DD738; // type:function size:0x28 scope:global align:4 +updateTrMatrix__Q34Game9ItemPlant4ItemFv = .text:0x801DD760; // type:function size:0x44 scope:global align:4 +startColorMotion__Q34Game9ItemPlant4ItemFi = .text:0x801DD7A4; // type:function size:0x28 scope:global align:4 +updateColorMotion__Q34Game9ItemPlant4ItemFf = .text:0x801DD7CC; // type:function size:0x90 scope:global align:4 +doAI__Q34Game9ItemPlant4ItemFv = .text:0x801DD85C; // type:function size:0x34 scope:global align:4 +interactAttack__Q34Game9ItemPlant4ItemFRQ24Game14InteractAttack = .text:0x801DD890; // type:function size:0x44 scope:global align:4 +onDamage__Q24Game33ItemStateFPQ34Game9ItemPlant4Itemf = .text:0x801DD8D4; // type:function size:0x4 scope:weak align:4 +interactFarmKarero__Q34Game9ItemPlant4ItemFRQ24Game18InteractFarmKarero = .text:0x801DD8D8; // type:function size:0x38 scope:global align:4 +eventKarero__Q34Game9ItemPlant5StateFPQ34Game9ItemPlant4Item = .text:0x801DD910; // type:function size:0x4 scope:weak align:4 +interactFarmHaero__Q34Game9ItemPlant4ItemFRQ24Game17InteractFarmHaero = .text:0x801DD914; // type:function size:0x38 scope:global align:4 +eventHaero__Q34Game9ItemPlant5StateFPQ34Game9ItemPlant4Item = .text:0x801DD94C; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q34Game9ItemPlant4ItemFR8Graphics = .text:0x801DD950; // type:function size:0x120 scope:global align:4 +addDamage__Q34Game9ItemPlant4ItemFf = .text:0x801DDA70; // type:function size:0x294 scope:global align:4 +dropFruit__Q34Game9ItemPlant4ItemFi = .text:0x801DDD04; // type:function size:0x4 scope:weak align:4 +calcAngles__Q34Game9ItemPlant12ProcAnimatorFv = .text:0x801DDD08; // type:function size:0x318 scope:global align:4 +update__Q34Game9ItemPlant12ProcAnimatorFff = .text:0x801DE020; // type:function size:0x4E4 scope:global align:4 +onKill__Q34Game9ItemPlant5PlantFPQ24Game15CreatureKillArg = .text:0x801DE504; // type:function size:0x34 scope:global align:4 +getNearestFruit__Q34Game9ItemPlant5PlantFR10Vector3 = .text:0x801DE538; // type:function size:0x38 scope:global align:4 +updateBoundSphere__Q34Game9ItemPlant5PlantFv = .text:0x801DE570; // type:function size:0x24 scope:global align:4 +doDirectDraw__Q34Game9ItemPlant5PlantFR8Graphics = .text:0x801DE594; // type:function size:0x1E0 scope:global align:4 +onInit__Q34Game9ItemPlant5PlantFPQ24Game15CreatureInitArg = .text:0x801DE774; // type:function size:0x778 scope:global align:4 +start__Q24Game36StateMachineFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg = .text:0x801DEEEC; // type:function size:0x34 scope:weak align:4 +doAI__Q34Game9ItemPlant5PlantFv = .text:0x801DEF20; // type:function size:0x80 scope:global align:4 +startMotion__Q34Game9ItemPlant5PlantFi = .text:0x801DEFA0; // type:function size:0x370 scope:global align:4 +setColor__Q34Game9ItemPlant5PlantFf = .text:0x801DF310; // type:function size:0x18 scope:global align:4 +do_updateLOD__Q34Game9ItemPlant5PlantFv = .text:0x801DF328; // type:function size:0x20 scope:global align:4 +doAnimation__Q34Game9ItemPlant5PlantFv = .text:0x801DF348; // type:function size:0x2B0 scope:global align:4 +bearFruits__Q34Game9ItemPlant5PlantFv = .text:0x801DF5F8; // type:function size:0x2C scope:global align:4 +killFruits__Q34Game9ItemPlant5PlantFv = .text:0x801DF624; // type:function size:0x24 scope:global align:4 +dropFruit__Q34Game9ItemPlant5PlantFi = .text:0x801DF648; // type:function size:0x80 scope:global align:4 +hasFruits__Q34Game9ItemPlant5PlantFv = .text:0x801DF6C8; // type:function size:0x24 scope:global align:4 +getFruitsNum__Q34Game9ItemPlant5PlantFv = .text:0x801DF6EC; // type:function size:0x24 scope:global align:4 +interactEat__Q34Game9ItemPlant5PlantFRQ24Game11InteractEat = .text:0x801DF710; // type:function size:0x1D0 scope:global align:4 +__ct__Q34Game9ItemPlant3MgrFv = .text:0x801DF8E0; // type:function size:0x120 scope:global align:4 +read__Q34Game9ItemPlant10PlantParmsFR6Stream = .text:0x801DFA00; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game9ItemPlant10PlantParmsFv = .text:0x801DFA24; // type:function size:0x318 scope:weak align:4 +birth__Q34Game9ItemPlant3MgrFv = .text:0x801DFD3C; // type:function size:0x130 scope:global align:4 +onLoadResources__Q34Game9ItemPlant3MgrFv = .text:0x801DFE6C; // type:function size:0xB4 scope:global align:4 +generatorNewItemParm__Q34Game9ItemPlant3MgrFv = .text:0x801DFF20; // type:function size:0x4C scope:global align:4 +generatorWrite__Q34Game9ItemPlant3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801DFF6C; // type:function size:0x88 scope:global align:4 +generatorRead__Q34Game9ItemPlant3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801DFFF4; // type:function size:0x88 scope:global align:4 +generatorBirth__Q34Game9ItemPlant3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801E007C; // type:function size:0xB4 scope:global align:4 +init__Q34Game9ItemPlant6FruitsFiP7Matrixf = .text:0x801E0130; // type:function size:0x74 scope:global align:4 +__dt__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E01A4; // type:function size:0x60 scope:weak align:4 +update__Q34Game9ItemPlant6FruitsFv = .text:0x801E0204; // type:function size:0x64 scope:global align:4 +bearAll__Q34Game9ItemPlant6FruitsFUs = .text:0x801E0268; // type:function size:0x2B4 scope:global align:4 +hasFruits__Q34Game9ItemPlant6FruitsFv = .text:0x801E051C; // type:function size:0x40 scope:global align:4 +countFruits__Q34Game9ItemPlant6FruitsFv = .text:0x801E055C; // type:function size:0x40 scope:global align:4 +killAll__Q34Game9ItemPlant6FruitsFv = .text:0x801E059C; // type:function size:0x64 scope:global align:4 +getFruit__Q34Game9ItemPlant6FruitsFR10Vector3 = .text:0x801E0600; // type:function size:0x10C scope:global align:4 +__ct__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E070C; // type:function size:0x4C scope:global align:4 +setFruit__Q34Game9ItemPlant9FruitSlotFPQ24Game6PelletP7MatrixfR7Matrixf = .text:0x801E0758; // type:function size:0x50 scope:global align:4 +dropFruit__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E07A8; // type:function size:0x40 scope:global align:4 +killFruit__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E07E8; // type:function size:0x44 scope:global align:4 +update__Q34Game9ItemPlant9FruitSlotFv = .text:0x801E082C; // type:function size:0x34 scope:global align:4 +__dt__Q34Game9ItemPlant3MgrFv = .text:0x801E0860; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game9ItemPlant3MgrFv = .text:0x801E0994; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game9ItemPlant3MgrFv = .text:0x801E0AAC; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game9ItemPlant3MgrFv = .text:0x801E0AB8; // type:function size:0xC scope:weak align:4 +changeMaterial__Q34Game9ItemPlant4ItemFv = .text:0x801E0AC4; // type:function size:0x30 scope:weak align:4 +setColor__Q34Game9ItemPlant4ItemFf = .text:0x801E0AF4; // type:function size:0x4 scope:weak align:4 +hasFruits__Q34Game9ItemPlant4ItemFv = .text:0x801E0AF8; // type:function size:0x8 scope:weak align:4 +getFruitsNum__Q34Game9ItemPlant4ItemFv = .text:0x801E0B00; // type:function size:0x8 scope:weak align:4 +getNearestFruit__Q34Game9ItemPlant4ItemFR10Vector3 = .text:0x801E0B08; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game77FSMItemFv = .text:0x801E0B10; // type:function size:0x34 scope:weak align:4 +onKeyEvent__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent = .text:0x801E0B44; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemPQ23Sys8Triangle = .text:0x801E0B48; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRQ24Game9PlatEvent = .text:0x801E0B4C; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRQ24Game9CollEvent = .text:0x801E0B50; // type:function size:0x4 scope:weak align:4 +init__Q24Game32FSMStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg = .text:0x801E0B54; // type:function size:0x4 scope:weak align:4 +exec__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B58; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B5C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B60; // type:function size:0x4 scope:weak align:4 +restart__Q24Game32FSMStateFPQ34Game9ItemPlant4Item = .text:0x801E0B64; // type:function size:0x4 scope:weak align:4 +init__Q24Game36StateMachineFPQ34Game9ItemPlant4Item = .text:0x801E0B68; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36StateMachineFPQ34Game9ItemPlant4Item = .text:0x801E0B6C; // type:function size:0x38 scope:weak align:4 +create__Q24Game36StateMachineFi = .text:0x801E0BA4; // type:function size:0x64 scope:weak align:4 +transit__Q24Game36StateMachineFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg = .text:0x801E0C08; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game36StateMachineFPQ24Game32FSMState = .text:0x801E0CA4; // type:function size:0x84 scope:weak align:4 +onKeyEvent__Q24Game77FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E0D28; // type:function size:0x44 scope:weak align:4 +getStateID__Q24Game77FSMItemFv = .text:0x801E0D6C; // type:function size:0x1C scope:weak align:4 +platCallback__Q24Game77FSMItemFRQ24Game9PlatEvent = .text:0x801E0D88; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game77FSMItemFRQ24Game9CollEvent = .text:0x801E0DCC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game77FSMItemFPQ23Sys8Triangle = .text:0x801E0E10; // type:function size:0x44 scope:weak align:4 +@376@onKeyEvent__Q24Game77FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E0E54; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game9ItemPlant3MgrFv = .text:0x801E0E5C; // type:function size:0x8 scope:weak align:4 +init__Q34Game8ItemRock3FSMFPQ34Game8ItemRock4Item = .text:0x801E0E64; // type:function size:0x134 scope:global align:4 +init__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E0F98; // type:function size:0x3C scope:global align:4 +exec__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Item = .text:0x801E0FD4; // type:function size:0x90 scope:global align:4 +transit__Q24Game31FSMStateFPQ34Game8ItemRock4ItemiPQ24Game8StateArg = .text:0x801E1064; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Item = .text:0x801E1094; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Itemf = .text:0x801E1098; // type:function size:0xBC scope:global align:4 +onKeyEvent__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E1154; // type:function size:0xF8 scope:global align:4 +init__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E124C; // type:function size:0x48 scope:global align:4 +exec__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Item = .text:0x801E1294; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Item = .text:0x801E1298; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Itemf = .text:0x801E129C; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E12AC; // type:function size:0xF0 scope:global align:4 +init__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E139C; // type:function size:0x58 scope:global align:4 +exec__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Item = .text:0x801E13F4; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Item = .text:0x801E13F8; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Itemf = .text:0x801E13FC; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E140C; // type:function size:0xCC scope:global align:4 +constructor__Q34Game8ItemRock4ItemFv = .text:0x801E14D8; // type:function size:0x48 scope:global align:4 +onInit__Q34Game8ItemRock4ItemFPQ24Game15CreatureInitArg = .text:0x801E1520; // type:function size:0x20C scope:global align:4 +start__Q24Game35StateMachineFPQ34Game8ItemRock4ItemiPQ24Game8StateArg = .text:0x801E172C; // type:function size:0x34 scope:weak align:4 +onKill__Q34Game8ItemRock4ItemFPQ24Game15CreatureKillArg = .text:0x801E1760; // type:function size:0x34 scope:global align:4 +onSetPosition__Q34Game8ItemRock4ItemFv = .text:0x801E1794; // type:function size:0x5C scope:global align:4 +onKeyEvent__Q34Game8ItemRock4ItemFRCQ28SysShape8KeyEvent = .text:0x801E17F0; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent = .text:0x801E1834; // type:function size:0x4 scope:weak align:4 +startLoopEffect__Q34Game8ItemRock4ItemFv = .text:0x801E1838; // type:function size:0x10C scope:global align:4 +finishLoopEffect__Q34Game8ItemRock4ItemFv = .text:0x801E1944; // type:function size:0x64 scope:global align:4 +startFukuEffect__Q34Game8ItemRock4ItemFR10Vector3 = .text:0x801E19A8; // type:function size:0xB0 scope:global align:4 +doLoad__Q34Game8ItemRock4ItemFR6Stream = .text:0x801E1A58; // type:function size:0x204 scope:global align:4 +doSave__Q34Game8ItemRock4ItemFR6Stream = .text:0x801E1C5C; // type:function size:0x58 scope:global align:4 +updateBoundSphere__Q34Game8ItemRock4ItemFv = .text:0x801E1CB4; // type:function size:0x48 scope:global align:4 +doAI__Q34Game8ItemRock4ItemFv = .text:0x801E1CFC; // type:function size:0x1B4 scope:global align:4 +initMotion__Q34Game8ItemRock4ItemFv = .text:0x801E1EB0; // type:function size:0x20 scope:global align:4 +on_movie_end__Q34Game8ItemRock4ItemFb = .text:0x801E1ED0; // type:function size:0x20 scope:global align:4 +startWaitMotion__Q34Game8ItemRock4ItemFv = .text:0x801E1EF0; // type:function size:0x12C scope:global align:4 +startDamageMotion__Q34Game8ItemRock4ItemFv = .text:0x801E201C; // type:function size:0x9C scope:global align:4 +startDownMotion__Q34Game8ItemRock4ItemFv = .text:0x801E20B8; // type:function size:0x28C scope:global align:4 +startUpMotion__Q34Game8ItemRock4ItemFv = .text:0x801E2344; // type:function size:0xEC scope:global align:4 +getVectorField__Q34Game8ItemRock4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801E2430; // type:function size:0x114 scope:global align:4 +getWorkDistance__Q34Game8ItemRock4ItemFRQ23Sys6Sphere = .text:0x801E2544; // type:function size:0x88 scope:global align:4 +createRock__Q34Game8ItemRock4ItemFi = .text:0x801E25CC; // type:function size:0x194 scope:global align:4 +interactAttack__Q34Game8ItemRock4ItemFRQ24Game14InteractAttack = .text:0x801E2760; // type:function size:0x174 scope:global align:4 +onDamage__Q34Game8ItemRock5StateFPQ34Game8ItemRock4Itemf = .text:0x801E28D4; // type:function size:0x4 scope:weak align:4 +getWorkRadius__Q34Game8ItemRock4ItemFv = .text:0x801E28D8; // type:function size:0x28 scope:global align:4 +__ct__Q34Game8ItemRock3MgrFv = .text:0x801E2900; // type:function size:0x120 scope:global align:4 +read__Q34Game8ItemRock9RockParmsFR6Stream = .text:0x801E2A20; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game8ItemRock9RockParmsFv = .text:0x801E2A44; // type:function size:0x1A4 scope:weak align:4 +__ct__Q44Game8ItemRock9RockParms5ParmsFv = .text:0x801E2BE8; // type:function size:0x2F0 scope:weak align:4 +birth__Q34Game8ItemRock3MgrFv = .text:0x801E2ED8; // type:function size:0x110 scope:global align:4 +generatorBirth__Q34Game8ItemRock3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801E2FE8; // type:function size:0x60 scope:global align:4 +onLoadResources__Q34Game8ItemRock3MgrFv = .text:0x801E3048; // type:function size:0xA8 scope:global align:4 +__dt__Q34Game8ItemRock3MgrFv = .text:0x801E30F0; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemRock3MgrFv = .text:0x801E3224; // type:function size:0xF8 scope:weak align:4 +generatorGetID__Q34Game8ItemRock3MgrFv = .text:0x801E331C; // type:function size:0xC scope:weak align:4 +getName__Q23efx9ArgKouhaiFv = .text:0x801E3328; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemRock4ItemFv = .text:0x801E3334; // type:function size:0xC scope:weak align:4 +doAI__Q24Game74FSMItemFv = .text:0x801E3340; // type:function size:0x34 scope:weak align:4 +onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E3374; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game32ItemStateFPQ34Game8ItemRock4Itemf = .text:0x801E33B8; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game32ItemStateFPQ34Game8ItemRock4ItemPQ23Sys8Triangle = .text:0x801E33BC; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRQ24Game9PlatEvent = .text:0x801E33C0; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRQ24Game9CollEvent = .text:0x801E33C4; // type:function size:0x4 scope:weak align:4 +init__Q24Game31FSMStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg = .text:0x801E33C8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33CC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33D0; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33D4; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ34Game8ItemRock4Item = .text:0x801E33D8; // type:function size:0x4 scope:weak align:4 +init__Q24Game35StateMachineFPQ34Game8ItemRock4Item = .text:0x801E33DC; // type:function size:0x4 scope:weak align:4 +exec__Q24Game35StateMachineFPQ34Game8ItemRock4Item = .text:0x801E33E0; // type:function size:0x38 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x801E3418; // type:function size:0x64 scope:weak align:4 +transit__Q24Game35StateMachineFPQ34Game8ItemRock4ItemiPQ24Game8StateArg = .text:0x801E347C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x801E3518; // type:function size:0x84 scope:weak align:4 +platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent = .text:0x801E359C; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent = .text:0x801E35E0; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle = .text:0x801E3624; // type:function size:0x44 scope:weak align:4 +@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801E3668; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game8ItemRock4ItemFRCQ28SysShape8KeyEvent = .text:0x801E3670; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game8ItemRock3MgrFv = .text:0x801E3678; // type:function size:0x8 scope:weak align:4 +__ct__Q26PikiAI12ActBreakRockFPQ24Game4Piki = .text:0x801E3680; // type:function size:0xF8 scope:global align:4 +init__Q26PikiAI12ActBreakRockFPQ26PikiAI9ActionArg = .text:0x801E3778; // type:function size:0xC0 scope:global align:4 +initFollow__Q26PikiAI12ActBreakRockFv = .text:0x801E3838; // type:function size:0x68 scope:global align:4 +exec__Q26PikiAI12ActBreakRockFv = .text:0x801E38A0; // type:function size:0x32C scope:global align:4 +cleanup__Q26PikiAI12ActBreakRockFv = .text:0x801E3BCC; // type:function size:0x5C scope:global align:4 +platCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x801E3C28; // type:function size:0xF0 scope:global align:4 +collisionCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801E3D18; // type:function size:0xFC scope:global align:4 +bounceCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiPQ23Sys8Triangle = .text:0x801E3E14; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI12ActBreakRockFRCQ28SysShape8KeyEvent = .text:0x801E3E18; // type:function size:0x4 scope:global align:4 +@48@4@onKeyEvent__Q26PikiAI12ActBreakRockFRCQ28SysShape8KeyEvent = .text:0x801E3E1C; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI7ActCropFPQ24Game4Piki = .text:0x801E3E30; // type:function size:0xD4 scope:global align:4 +init__Q26PikiAI7ActCropFPQ26PikiAI9ActionArg = .text:0x801E3F04; // type:function size:0x108 scope:global align:4 +execClimb__Q26PikiAI7ActCropFv = .text:0x801E400C; // type:function size:0x2C8 scope:global align:4 +initGoto__Q26PikiAI7ActCropFv = .text:0x801E42D4; // type:function size:0x98 scope:global align:4 +initAttack__Q26PikiAI7ActCropFv = .text:0x801E436C; // type:function size:0xFC scope:global align:4 +exec__Q26PikiAI7ActCropFv = .text:0x801E4468; // type:function size:0x6AC scope:global align:4 +cleanup__Q26PikiAI7ActCropFv = .text:0x801E4B14; // type:function size:0x40 scope:global align:4 +collisionCallback__Q26PikiAI7ActCropFPQ24Game4PikiRQ24Game9CollEvent = .text:0x801E4B54; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI7ActCropFRCQ28SysShape8KeyEvent = .text:0x801E4B58; // type:function size:0x4 scope:global align:4 +getNextAIType__Q26PikiAI7ActCropFv = .text:0x801E4B5C; // type:function size:0x8 scope:weak align:4 +@64@4@onKeyEvent__Q26PikiAI7ActCropFRCQ28SysShape8KeyEvent = .text:0x801E4B64; // type:function size:0x14 scope:weak align:4 +createManagers__Q24Game7ItemMgrFUl = .text:0x801E4B78; // type:function size:0x664 scope:global align:4 +clearGlobalPointers__Q24Game7ItemMgrFv = .text:0x801E51DC; // type:function size:0x48 scope:global align:4 +killAllExceptOnyonMgr__Q24Game7ItemMgrFv = .text:0x801E5224; // type:function size:0xE8 scope:global align:4 +__sinit_registItem_cpp = .text:0x801E530C; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11KindCounterFv = .text:0x801E5334; // type:function size:0x10 scope:global align:4 +alloc__Q24Game11KindCounterFi = .text:0x801E5344; // type:function size:0x74 scope:global align:4 +clear__Q24Game11KindCounterFv = .text:0x801E53B8; // type:function size:0x28 scope:global align:4 +__cl__Q24Game11KindCounterFi = .text:0x801E53E0; // type:function size:0x78 scope:global align:4 +createClone__Q24Game16PelletCropMemoryFv = .text:0x801E5458; // type:function size:0x280 scope:global align:4 +addTo__Q24Game16PelletCropMemoryFPQ24Game16PelletCropMemory = .text:0x801E56D8; // type:function size:0x148 scope:global align:4 +clear__Q24Game16PelletCropMemoryFv = .text:0x801E5820; // type:function size:0x70 scope:global align:4 +calcEarnKinds__Q24Game16PelletCropMemoryFv = .text:0x801E5890; // type:function size:0x48 scope:global align:4 +firstCarryPellet__Q24Game17PelletFirstMemoryFPQ24Game6Pellet = .text:0x801E58D8; // type:function size:0x2C8 scope:global align:4 +obtainPellet__Q24Game17PelletFirstMemoryFPQ24Game13BasePelletMgri = .text:0x801E5BA0; // type:function size:0x154 scope:global align:4 +losePellet__Q24Game17PelletFirstMemoryFPQ24Game13BasePelletMgri = .text:0x801E5CF4; // type:function size:0x154 scope:global align:4 +isCompletePelletTrigger__Q24Game8PlayDataFv = .text:0x801E5E48; // type:function size:0x4C scope:global align:4 +completeAll__Q24Game16PelletCropMemoryFv = .text:0x801E5E94; // type:function size:0x58 scope:global align:4 +completeAll__Q24Game11KindCounterFv = .text:0x801E5EEC; // type:function size:0x3C scope:global align:4 +getEarnKinds__Q24Game11KindCounterFv = .text:0x801E5F28; // type:function size:0x3C scope:global align:4 +__ct__Q24Game10OlimarDataFv = .text:0x801E5F64; // type:function size:0x3C scope:global align:4 +clear__Q24Game10OlimarDataFv = .text:0x801E5FA0; // type:function size:0x10 scope:global align:4 +hasItem__Q24Game10OlimarDataFi = .text:0x801E5FB0; // type:function size:0x98 scope:global align:4 +getItem__Q24Game10OlimarDataFi = .text:0x801E6048; // type:function size:0xCC scope:global align:4 +construct__Q24Game8PlayDataFv = .text:0x801E6114; // type:function size:0x84 scope:global align:4 +__ct__Q24Game8PlayDataFv = .text:0x801E6198; // type:function size:0x854 scope:global align:4 +__ct__Q34Game8PlayData11CaveOtakaraFv = .text:0x801E69EC; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game8PlayData8LimitGenFv = .text:0x801E6A00; // type:function size:0x38 scope:weak align:4 +__dt__Q24Game8PlayDataFv = .text:0x801E6A38; // type:function size:0x68 scope:global align:4 +reset__Q24Game8PlayDataFv = .text:0x801E6AA0; // type:function size:0x3D0 scope:global align:4 +setDevelopSetting__Q24Game8PlayDataFbb = .text:0x801E6E70; // type:function size:0xC8 scope:global align:4 +calcPlayMinutes__Q24Game8PlayDataFv = .text:0x801E6F38; // type:function size:0xB4 scope:global align:4 +resetContainerFlag__Q24Game8PlayDataFv = .text:0x801E6FEC; // type:function size:0x14 scope:global align:4 +hasContainer__Q24Game8PlayDataFi = .text:0x801E7000; // type:function size:0x88 scope:global align:4 +hasMetPikmin__Q24Game8PlayDataFi = .text:0x801E7088; // type:function size:0x30 scope:global align:4 +hasBootContainer__Q24Game8PlayDataFi = .text:0x801E70B8; // type:function size:0xA4 scope:global align:4 +setContainer__Q24Game8PlayDataFi = .text:0x801E715C; // type:function size:0x80 scope:global align:4 +setMeetPikmin__Q24Game8PlayDataFi = .text:0x801E71DC; // type:function size:0x80 scope:global align:4 +setBootContainer__Q24Game8PlayDataFi = .text:0x801E725C; // type:function size:0x80 scope:global align:4 +debugSetContainerFlagOn__Q24Game8PlayDataFv = .text:0x801E72DC; // type:function size:0xA8 scope:global align:4 +setDemoFlag__Q24Game8PlayDataFi = .text:0x801E7384; // type:function size:0x3C scope:global align:4 +isDemoFlag__Q24Game8PlayDataFi = .text:0x801E73C0; // type:function size:0x28 scope:global align:4 +setFindItemDemoFlag__Q24Game8PlayDataFi = .text:0x801E73E8; // type:function size:0x3C scope:global align:4 +isFindItemDemoFlag__Q24Game8PlayDataFi = .text:0x801E7424; // type:function size:0x28 scope:global align:4 +setCurrentCourse__Q24Game8PlayDataFi = .text:0x801E744C; // type:function size:0x8 scope:global align:4 +clearCurrentCave__Q24Game8PlayDataFv = .text:0x801E7454; // type:function size:0xC scope:global align:4 +setCurrentCave__Q24Game8PlayDataFR4ID32i = .text:0x801E7460; // type:function size:0x4C scope:global align:4 +setCurrentCaveFloor__Q24Game8PlayDataFi = .text:0x801E74AC; // type:function size:0x10 scope:global align:4 +getCurrentCourseIndex__Q24Game8PlayDataFv = .text:0x801E74BC; // type:function size:0x8 scope:global align:4 +getCurrentCourse__Q24Game8PlayDataFv = .text:0x801E74C4; // type:function size:0x38 scope:global align:4 +getCurrentCave__Q24Game8PlayDataFR4ID32Ri = .text:0x801E74FC; // type:function size:0x48 scope:global align:4 +firstCarryPellet__Q24Game8PlayDataFPQ24Game6Pellet = .text:0x801E7544; // type:function size:0x30 scope:global align:4 +obtainPellet__Q24Game8PlayDataFPQ24Game13BasePelletMgri = .text:0x801E7574; // type:function size:0x30 scope:global align:4 +losePellet__Q24Game8PlayDataFPQ24Game13BasePelletMgri = .text:0x801E75A4; // type:function size:0x30 scope:global align:4 +obtainPellet_Main__Q24Game8PlayDataFPQ24Game6Pellet = .text:0x801E75D4; // type:function size:0x320 scope:global align:4 +obtainPellet_Cave__Q24Game8PlayDataFPQ24Game6Pellet = .text:0x801E78F4; // type:function size:0x284 scope:global align:4 +isPelletEverGot__Q24Game8PlayDataFUcUc = .text:0x801E7B78; // type:function size:0x104 scope:global align:4 +isPelletZukanVisible__Q24Game8PlayDataFi = .text:0x801E7C7C; // type:function size:0x128 scope:global align:4 +isPelletZukanWhatsNew__Q24Game8PlayDataFi = .text:0x801E7DA4; // type:function size:0x138 scope:global align:4 +hasPelletZukanWhatsNew__Q24Game8PlayDataFv = .text:0x801E7EDC; // type:function size:0x1BC scope:global align:4 +setPelletZukanOutOfDateAll__Q24Game8PlayDataFv = .text:0x801E8098; // type:function size:0x1A8 scope:global align:4 +getGroundOtakaraNum__Q24Game8PlayDataFi = .text:0x801E8240; // type:function size:0x7C scope:global align:4 +getGroundOtakaraMax__Q24Game8PlayDataFi = .text:0x801E82BC; // type:function size:0x78 scope:global align:4 +incGroundOtakara__Q24Game8PlayDataFi = .text:0x801E8334; // type:function size:0x84 scope:global align:4 +getDopeCount__Q24Game8PlayDataFi = .text:0x801E83B8; // type:function size:0x78 scope:global align:4 +setDopeCount__Q24Game8PlayDataFii = .text:0x801E8430; // type:function size:0x84 scope:global align:4 +incDopeCount__Q24Game8PlayDataFi = .text:0x801E84B4; // type:function size:0x80 scope:global align:4 +hasDope__Q24Game8PlayDataFi = .text:0x801E8534; // type:function size:0x84 scope:global align:4 +getDopeFruitCount__Q24Game8PlayDataFi = .text:0x801E85B8; // type:function size:0x78 scope:global align:4 +addDopeFruit__Q24Game8PlayDataFi = .text:0x801E8630; // type:function size:0xB4 scope:global align:4 +useDope__Q24Game8PlayDataFi = .text:0x801E86E4; // type:function size:0xC4 scope:global align:4 +isCaveFirstTime__Q24Game8PlayDataFiR4ID32 = .text:0x801E87A8; // type:function size:0xDC scope:global align:4 +setCaveVisit__Q24Game8PlayDataFiR4ID32 = .text:0x801E8884; // type:function size:0xBC scope:global align:4 +incCaveOtakara__Q24Game8PlayDataFiR4ID32 = .text:0x801E8940; // type:function size:0xB8 scope:global align:4 +getOtakaraNum_Course_CaveID__Q24Game8PlayDataFiR4ID32 = .text:0x801E89F8; // type:function size:0xB8 scope:global align:4 +getOtakaraMax_Course_CaveID__Q24Game8PlayDataFiR4ID32 = .text:0x801E8AB0; // type:function size:0x48 scope:global align:4 +initCaveOtakaras__Q24Game8PlayDataFv = .text:0x801E8AF8; // type:function size:0xD4 scope:global align:4 +read_CaveOtakara__Q24Game8PlayDataFR6Stream = .text:0x801E8BCC; // type:function size:0x60 scope:global align:4 +write_CaveOtakara__Q24Game8PlayDataFR6Stream = .text:0x801E8C2C; // type:function size:0x78 scope:global align:4 +write__Q34Game8PlayData11CaveOtakaraFR6Stream = .text:0x801E8CA4; // type:function size:0xD8 scope:global align:4 +read__Q34Game8PlayData11CaveOtakaraFR6Stream = .text:0x801E8D7C; // type:function size:0xC0 scope:global align:4 +getRepayLevel__Q24Game8PlayDataFv = .text:0x801E8E3C; // type:function size:0x124 scope:global align:4 +getRepayLevelPercent__Q24Game8PlayDataFi = .text:0x801E8F60; // type:function size:0x44 scope:global align:4 +checkRepayLevelFirstClear__Q24Game8PlayDataFv = .text:0x801E8FA4; // type:function size:0x160 scope:global align:4 +experienceRepayLevelFirstClear__Q24Game8PlayDataFv = .text:0x801E9104; // type:function size:0x174 scope:global align:4 +initLimitGens__Q24Game8PlayDataFv = .text:0x801E9278; // type:function size:0x64 scope:global align:4 +initCourses__Q24Game8PlayDataFb = .text:0x801E92DC; // type:function size:0x6C scope:global align:4 +openCourse__Q24Game8PlayDataFi = .text:0x801E9348; // type:function size:0x94 scope:global align:4 +visitCourse__Q24Game8PlayDataFi = .text:0x801E93DC; // type:function size:0x84 scope:global align:4 +courseOpen__Q24Game8PlayDataFi = .text:0x801E9460; // type:function size:0x80 scope:global align:4 +courseJustOpen__Q24Game8PlayDataFi = .text:0x801E94E0; // type:function size:0xE4 scope:global align:4 +courseFirstTime__Q24Game8PlayDataFi = .text:0x801E95C4; // type:function size:0xDC scope:global align:4 +courseVisited__Q24Game8PlayDataFi = .text:0x801E96A0; // type:function size:0x80 scope:global align:4 +__ct__Q24Game12CaveSaveDataFv = .text:0x801E9720; // type:function size:0x84 scope:global align:4 +clear__Q24Game12CaveSaveDataFv = .text:0x801E97A4; // type:function size:0x68 scope:global align:4 +doneWorldMapEffect__Q24Game8PlayDataFv = .text:0x801E980C; // type:function size:0x194 scope:global align:4 +getGroundOtakaraNum_Old__Q24Game8PlayDataFi = .text:0x801E99A0; // type:function size:0x7C scope:global align:4 +getOtakaraNum_Course_CaveID_Old__Q24Game8PlayDataFiR4ID32 = .text:0x801E9A1C; // type:function size:0xB8 scope:global align:4 +getMoney_Old__Q24Game8PlayDataFv = .text:0x801E9AD4; // type:function size:0x8 scope:global align:4 +isCaveFirstTime_Old__Q24Game8PlayDataFiR4ID32 = .text:0x801E9ADC; // type:function size:0xA4 scope:global align:4 +read_CaveOtakara_Old__Q24Game8PlayDataFR6Stream = .text:0x801E9B80; // type:function size:0xD4 scope:global align:4 +write_CaveOtakara_Old__Q24Game8PlayDataFR6Stream = .text:0x801E9C54; // type:function size:0x118 scope:global align:4 +getPikminCount_Today__Q24Game8PlayDataFi = .text:0x801E9D6C; // type:function size:0x78 scope:global align:4 +getPikminCount_Yesterday__Q24Game8PlayDataFi = .text:0x801E9DE4; // type:function size:0x78 scope:global align:4 +setPikminCounts_Today__Q24Game8PlayDataFv = .text:0x801E9E5C; // type:function size:0x108 scope:global align:4 +setPikminCounts_Yesterday__Q24Game8PlayDataFv = .text:0x801E9F64; // type:function size:0x34 scope:global align:4 +init__Q34Game8ItemCave3FSMFPQ34Game8ItemCave4Item = .text:0x801E9F98; // type:function size:0xD8 scope:global align:4 +init__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg = .text:0x801EA070; // type:function size:0x4 scope:global align:4 +exec__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4Item = .text:0x801EA074; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4Item = .text:0x801EA078; // type:function size:0x4 scope:global align:4 +init__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg = .text:0x801EA07C; // type:function size:0x4 scope:global align:4 +exec__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4Item = .text:0x801EA080; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4Item = .text:0x801EA084; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8ItemCave4ItemFv = .text:0x801EA088; // type:function size:0xE4 scope:global align:4 +__ct__Q34Game8ItemCave7FogParmFv = .text:0x801EA16C; // type:function size:0x2B4 scope:weak align:4 +onInit__Q34Game8ItemCave4ItemFPQ24Game15CreatureInitArg = .text:0x801EA420; // type:function size:0x78 scope:global align:4 +start__Q24Game35StateMachineFPQ34Game8ItemCave4ItemiPQ24Game8StateArg = .text:0x801EA498; // type:function size:0x34 scope:weak align:4 +makeTrMatrix__Q34Game8ItemCave4ItemFv = .text:0x801EA4CC; // type:function size:0x44 scope:global align:4 +onSetPosition__Q34Game8ItemCave4ItemFv = .text:0x801EA510; // type:function size:0x264 scope:global align:4 +initDependency__Q34Game8ItemCave4ItemFv = .text:0x801EA774; // type:function size:0x314 scope:global align:4 +sound_culling__Q34Game8ItemCave4ItemFv = .text:0x801EAA88; // type:function size:0x8C scope:global align:4 +changeMaterial__Q34Game8ItemCave4ItemFv = .text:0x801EAB14; // type:function size:0x5C scope:global align:4 +createLightEvent__Q34Game8ItemCave4ItemFv = .text:0x801EAB70; // type:function size:0x14C scope:global align:4 +do_setLODParm__Q34Game8ItemCave4ItemFRQ24Game9AILODParm = .text:0x801EACBC; // type:function size:0x14 scope:global align:4 +doAI__Q34Game8ItemCave4ItemFv = .text:0x801EACD0; // type:function size:0x214 scope:global align:4 +getCaveOtakaraNum__Q34Game8ItemCave4ItemFv = .text:0x801EAEE4; // type:function size:0x60 scope:global align:4 +getCaveOtakaraMax__Q34Game8ItemCave4ItemFv = .text:0x801EAF44; // type:function size:0x60 scope:global align:4 +complete__Q34Game8ItemCave4ItemFv = .text:0x801EAFA4; // type:function size:0xB4 scope:global align:4 +doDirectDraw__Q34Game8ItemCave4ItemFR8Graphics = .text:0x801EB058; // type:function size:0x1F0 scope:global align:4 +__ct__Q34Game8ItemCave3MgrFv = .text:0x801EB248; // type:function size:0x7C scope:global align:4 +onLoadResources__Q34Game8ItemCave3MgrFv = .text:0x801EB2C4; // type:function size:0xE4 scope:global align:4 +setup__Q34Game8ItemCave3MgrFPQ24Game8BaseItem = .text:0x801EB3A8; // type:function size:0x74 scope:global align:4 +generatorNewItemParm__Q34Game8ItemCave3MgrFv = .text:0x801EB41C; // type:function size:0x38 scope:global align:4 +__ct__11GenCaveParmFv = .text:0x801EB454; // type:function size:0x10C scope:weak align:4 +generatorWrite__Q34Game8ItemCave3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801EB560; // type:function size:0xE0 scope:global align:4 +generatorRead__Q34Game8ItemCave3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801EB640; // type:function size:0x218 scope:global align:4 +generatorBirth__Q34Game8ItemCave3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801EB858; // type:function size:0xFC scope:global align:4 +__as__Q34Game8ItemCave7FogParmFRCQ34Game8ItemCave7FogParm = .text:0x801EB954; // type:function size:0x2E4 scope:weak align:4 +__dt__Q34Game8ItemCave3MgrFv = .text:0x801EBC38; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemCave3MgrFv = .text:0x801EBD6C; // type:function size:0x38 scope:weak align:4 +generatorGetID__Q34Game8ItemCave3MgrFv = .text:0x801EBDA4; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game8ItemCave3MgrFv = .text:0x801EBDB0; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemCave4ItemFv = .text:0x801EBDBC; // type:function size:0x8 scope:weak align:4 +getFaceDir__Q34Game8ItemCave4ItemFv = .text:0x801EBDC4; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game74FSMItemFv = .text:0x801EBDCC; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game32ItemStateFPQ34Game8ItemCave4Itemf = .text:0x801EBE00; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRCQ28SysShape8KeyEvent = .text:0x801EBE04; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game32ItemStateFPQ34Game8ItemCave4ItemPQ23Sys8Triangle = .text:0x801EBE08; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRQ24Game9PlatEvent = .text:0x801EBE0C; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRQ24Game9CollEvent = .text:0x801EBE10; // type:function size:0x4 scope:weak align:4 +init__Q24Game31FSMStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg = .text:0x801EBE14; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE18; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE1C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE20; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ34Game8ItemCave4Item = .text:0x801EBE24; // type:function size:0x4 scope:weak align:4 +transit__Q24Game31FSMStateFPQ34Game8ItemCave4ItemiPQ24Game8StateArg = .text:0x801EBE28; // type:function size:0x30 scope:weak align:4 +init__Q24Game35StateMachineFPQ34Game8ItemCave4Item = .text:0x801EBE58; // type:function size:0x4 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x801EBE5C; // type:function size:0x64 scope:weak align:4 +size__8ParmFv = .text:0x801EBEC0; // type:function size:0x8 scope:weak align:4 +transit__Q24Game35StateMachineFPQ34Game8ItemCave4ItemiPQ24Game8StateArg = .text:0x801EBEC8; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x801EBF64; // type:function size:0x84 scope:weak align:4 +exec__Q24Game35StateMachineFPQ34Game8ItemCave4Item = .text:0x801EBFE8; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EC020; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent = .text:0x801EC064; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent = .text:0x801EC0A8; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle = .text:0x801EC0EC; // type:function size:0x44 scope:weak align:4 +__sinit_itemCave_cpp = .text:0x801EC130; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EC158; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game8ItemCave3MgrFv = .text:0x801EC160; // type:function size:0x8 scope:weak align:4 +init__Q34Game15ItemBigFountain3FSMFPQ34Game15ItemBigFountain4Item = .text:0x801EC168; // type:function size:0x18C scope:global align:4 +init__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC2F4; // type:function size:0x48 scope:global align:4 +exec__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC33C; // type:function size:0xCC scope:global align:4 +transit__Q24Game39FSMStateFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg = .text:0x801EC408; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC438; // type:function size:0x4 scope:global align:4 +init__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC43C; // type:function size:0x3C scope:global align:4 +exec__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC478; // type:function size:0x14 scope:global align:4 +cleanup__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC48C; // type:function size:0x4 scope:global align:4 +init__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC490; // type:function size:0x44 scope:global align:4 +exec__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC4D4; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC508; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Itemf = .text:0x801EC50C; // type:function size:0x94 scope:global align:4 +onKeyEvent__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4ItemRCQ28SysShape8KeyEvent = .text:0x801EC5A0; // type:function size:0xC scope:global align:4 +init__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EC5AC; // type:function size:0x11C scope:global align:4 +exec__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC6C8; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4Item = .text:0x801EC6FC; // type:function size:0x4 scope:global align:4 +movieUserCommand__Q34Game15ItemBigFountain4ItemFUlPQ24Game11MoviePlayer = .text:0x801EC700; // type:function size:0x204 scope:global align:4 +interactGotKey__Q34Game15ItemBigFountain4ItemFRQ24Game14InteractGotKey = .text:0x801EC904; // type:function size:0x108 scope:global align:4 +constructor__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECA0C; // type:function size:0x48 scope:global align:4 +onInit__Q34Game15ItemBigFountain4ItemFPQ24Game15CreatureInitArg = .text:0x801ECA54; // type:function size:0x284 scope:global align:4 +start__Q24Game43StateMachineFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg = .text:0x801ECCD8; // type:function size:0x34 scope:weak align:4 +initDependency__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECD0C; // type:function size:0x54 scope:global align:4 +update__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECD60; // type:function size:0xC0 scope:global align:4 +killAllEffect__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECE20; // type:function size:0x60 scope:global align:4 +makeTrMatrix__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECE80; // type:function size:0x68 scope:global align:4 +onSetPosition__Q34Game15ItemBigFountain4ItemFv = .text:0x801ECEE8; // type:function size:0x118 scope:global align:4 +doAI__Q34Game15ItemBigFountain4ItemFv = .text:0x801ED000; // type:function size:0xA0 scope:global align:4 +doDirectDraw__Q34Game15ItemBigFountain4ItemFR8Graphics = .text:0x801ED0A0; // type:function size:0x16C scope:global align:4 +updateBoundSphere__Q34Game15ItemBigFountain4ItemFv = .text:0x801ED20C; // type:function size:0x38 scope:global align:4 +doSimulation__Q34Game15ItemBigFountain4ItemFf = .text:0x801ED244; // type:function size:0x4 scope:global align:4 +canRide__Q34Game15ItemBigFountain4ItemFv = .text:0x801ED248; // type:function size:0x30 scope:global align:4 +canRide__Q34Game15ItemBigFountain5StateFv = .text:0x801ED278; // type:function size:0x8 scope:weak align:4 +interactAttack__Q34Game15ItemBigFountain4ItemFRQ24Game14InteractAttack = .text:0x801ED280; // type:function size:0x11C scope:global align:4 +onDamage__Q34Game15ItemBigFountain5StateFPQ34Game15ItemBigFountain4Itemf = .text:0x801ED39C; // type:function size:0x4 scope:weak align:4 +getVectorField__Q34Game15ItemBigFountain4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801ED3A0; // type:function size:0xC8 scope:global align:4 +getWorkDistance__Q34Game15ItemBigFountain4ItemFRQ23Sys6Sphere = .text:0x801ED468; // type:function size:0x60 scope:global align:4 +onKeyEvent__Q34Game15ItemBigFountain4ItemFRCQ28SysShape8KeyEvent = .text:0x801ED4C8; // type:function size:0x3C scope:global align:4 +onKeyEvent__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRCQ28SysShape8KeyEvent = .text:0x801ED504; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED508; // type:function size:0x120 scope:global align:4 +read__Q34Game15ItemBigFountain13FountainParmsFR6Stream = .text:0x801ED628; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game15ItemBigFountain13FountainParmsFv = .text:0x801ED64C; // type:function size:0x1EC scope:weak align:4 +onLoadResources__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED838; // type:function size:0xDC scope:global align:4 +birth__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED914; // type:function size:0x20 scope:global align:4 +generatorBirth__Q34Game15ItemBigFountain3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801ED934; // type:function size:0x58 scope:global align:4 +__dt__Q34Game15ItemBigFountain3MgrFv = .text:0x801ED98C; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game15ItemBigFountain3MgrFv = .text:0x801EDAC0; // type:function size:0xE8 scope:weak align:4 +generatorGetID__Q34Game15ItemBigFountain3MgrFv = .text:0x801EDBA8; // type:function size:0xC scope:weak align:4 +sound_culling__Q34Game15ItemBigFountain4ItemFv = .text:0x801EDBB4; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q34Game15ItemBigFountain4ItemFv = .text:0x801EDBBC; // type:function size:0xC scope:weak align:4 +doAI__Q24Game98FSMItemFv = .text:0x801EDBC8; // type:function size:0x34 scope:weak align:4 +canRide__Q34Game15ItemBigFountain8OutStateFv = .text:0x801EDBFC; // type:function size:0x8 scope:weak align:4 +onKeyEvent__Q24Game98FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EDC04; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game40ItemStateFPQ34Game15ItemBigFountain4Itemf = .text:0x801EDC48; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemPQ23Sys8Triangle = .text:0x801EDC4C; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRQ24Game9PlatEvent = .text:0x801EDC50; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRQ24Game9CollEvent = .text:0x801EDC54; // type:function size:0x4 scope:weak align:4 +init__Q24Game39FSMStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg = .text:0x801EDC58; // type:function size:0x4 scope:weak align:4 +exec__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC5C; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC60; // type:function size:0x4 scope:weak align:4 +resume__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC64; // type:function size:0x4 scope:weak align:4 +restart__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item = .text:0x801EDC68; // type:function size:0x4 scope:weak align:4 +init__Q24Game43StateMachineFPQ34Game15ItemBigFountain4Item = .text:0x801EDC6C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game43StateMachineFPQ34Game15ItemBigFountain4Item = .text:0x801EDC70; // type:function size:0x38 scope:weak align:4 +create__Q24Game43StateMachineFi = .text:0x801EDCA8; // type:function size:0x64 scope:weak align:4 +transit__Q24Game43StateMachineFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg = .text:0x801EDD0C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game43StateMachineFPQ24Game39FSMState = .text:0x801EDDA8; // type:function size:0x84 scope:weak align:4 +getStateID__Q24Game98FSMItemFv = .text:0x801EDE2C; // type:function size:0x1C scope:weak align:4 +platCallback__Q24Game98FSMItemFRQ24Game9PlatEvent = .text:0x801EDE48; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game98FSMItemFRQ24Game9CollEvent = .text:0x801EDE8C; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game98FSMItemFPQ23Sys8Triangle = .text:0x801EDED0; // type:function size:0x44 scope:weak align:4 +__sinit_itemBigFountain_cpp = .text:0x801EDF14; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game98FSMItemFRCQ28SysShape8KeyEvent = .text:0x801EDF3C; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game15ItemBigFountain4ItemFRCQ28SysShape8KeyEvent = .text:0x801EDF44; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game15ItemBigFountain3MgrFv = .text:0x801EDF4C; // type:function size:0x8 scope:weak align:4 +init__Q34Game10ItemBridge3FSMFPQ34Game10ItemBridge4Item = .text:0x801EDF54; // type:function size:0x84 scope:global align:4 +init__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4ItemPQ24Game8StateArg = .text:0x801EDFD8; // type:function size:0x4 scope:global align:4 +exec__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4Item = .text:0x801EDFDC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4Item = .text:0x801EDFE0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10ItemBridge4ItemFPQ24Game15CreatureInitArg = .text:0x801EDFE4; // type:function size:0x180 scope:global align:4 +start__Q24Game38StateMachineFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg = .text:0x801EE164; // type:function size:0x34 scope:weak align:4 +update__Q34Game10ItemBridge4ItemFv = .text:0x801EE198; // type:function size:0x110 scope:global align:4 +getLODCylinder__Q34Game10ItemBridge4ItemFRQ23Sys8Cylinder = .text:0x801EE2A8; // type:function size:0x1B4 scope:global align:4 +do_updateLOD__Q34Game10ItemBridge4ItemFv = .text:0x801EE45C; // type:function size:0x44 scope:global align:4 +doDirectDraw__Q34Game10ItemBridge4ItemFR8Graphics = .text:0x801EE4A0; // type:function size:0x4 scope:global align:4 +constructor__Q34Game10ItemBridge4ItemFv = .text:0x801EE4A4; // type:function size:0x48 scope:global align:4 +doLoad__Q34Game10ItemBridge4ItemFR6Stream = .text:0x801EE4EC; // type:function size:0xFC scope:global align:4 +doSave__Q34Game10ItemBridge4ItemFR6Stream = .text:0x801EE5E8; // type:function size:0x74 scope:global align:4 +onSetPosition__Q34Game10ItemBridge4ItemFv = .text:0x801EE65C; // type:function size:0x90 scope:global align:4 +updateBoundSphere__Q34Game10ItemBridge4ItemFv = .text:0x801EE6EC; // type:function size:0x24 scope:global align:4 +changeMaterial__Q34Game10ItemBridge4ItemFv = .text:0x801EE710; // type:function size:0x124 scope:global align:4 +doAI__Q34Game10ItemBridge4ItemFv = .text:0x801EE834; // type:function size:0x1A0 scope:global align:4 +setCurrStage__Q34Game10ItemBridge4ItemFi = .text:0x801EE9D4; // type:function size:0x28C scope:global align:4 +createWayPoints__Q34Game10ItemBridge4ItemFv = .text:0x801EEC60; // type:function size:0x1CC scope:global align:4 +getStagePos__Q34Game10ItemBridge4ItemFi = .text:0x801EEE2C; // type:function size:0xE8 scope:global align:4 +getStartPos__Q34Game10ItemBridge4ItemFv = .text:0x801EEF14; // type:function size:0xA0 scope:global align:4 +getStageZ__Q34Game10ItemBridge4ItemFi = .text:0x801EEFB4; // type:function size:0x5C scope:global align:4 +getStageWidth__Q34Game10ItemBridge4ItemFv = .text:0x801EF010; // type:function size:0x8 scope:global align:4 +getBridgeZVec__Q34Game10ItemBridge4ItemFv = .text:0x801EF018; // type:function size:0xA4 scope:global align:4 +getBridgeXVec__Q34Game10ItemBridge4ItemFv = .text:0x801EF0BC; // type:function size:0xB8 scope:global align:4 +getBridgePos__Q34Game10ItemBridge4ItemFR10Vector3RfRf = .text:0x801EF174; // type:function size:0x1F0 scope:global align:4 +workable__Q34Game10ItemBridge4ItemFR10Vector3 = .text:0x801EF364; // type:function size:0x138 scope:global align:4 +getVectorField__Q34Game10ItemBridge4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801EF49C; // type:function size:0x430 scope:global align:4 +getWorkDistance__Q34Game10ItemBridge4ItemFRQ23Sys6Sphere = .text:0x801EF8CC; // type:function size:0x148 scope:global align:4 +interactAttack__Q34Game10ItemBridge4ItemFRQ24Game14InteractAttack = .text:0x801EFA14; // type:function size:0x448 scope:global align:4 +interactBreakBridge__Q34Game10ItemBridge4ItemFRQ24Game19InteractBreakBridge = .text:0x801EFE5C; // type:function size:0xF0 scope:global align:4 +generatorNewItemParm__Q34Game10ItemBridge3MgrFv = .text:0x801EFF4C; // type:function size:0x4C scope:global align:4 +generatorWrite__Q34Game10ItemBridge3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801EFF98; // type:function size:0x88 scope:global align:4 +generatorRead__Q34Game10ItemBridge3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801F0020; // type:function size:0x88 scope:global align:4 +__ct__Q34Game10ItemBridge3MgrFv = .text:0x801F00A8; // type:function size:0x130 scope:global align:4 +read__Q34Game10ItemBridge11BridgeParmsFR6Stream = .text:0x801F01D8; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game10ItemBridge11BridgeParmsFv = .text:0x801F01FC; // type:function size:0x1EC scope:weak align:4 +birth__Q34Game10ItemBridge3MgrFv = .text:0x801F03E8; // type:function size:0x118 scope:global align:4 +generatorBirth__Q34Game10ItemBridge3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F0500; // type:function size:0xA8 scope:global align:4 +onLoadResources__Q34Game10ItemBridge3MgrFv = .text:0x801F05A8; // type:function size:0x260 scope:global align:4 +__ct__Q34Game10ItemBridge10BridgeInfoFv = .text:0x801F0808; // type:function size:0x1C scope:weak align:4 +getBridgeInfo__Q34Game10ItemBridge3MgrFi = .text:0x801F0824; // type:function size:0x78 scope:global align:4 +createBridgeInfo__Q34Game10ItemBridge3MgrFi = .text:0x801F089C; // type:function size:0x20C scope:global align:4 +setupPlatInstanceAttacher__Q34Game10ItemBridge3MgrFPQ34Game10ItemBridge4ItemRQ24Game20PlatInstanceAttacher = .text:0x801F0AA8; // type:function size:0x1A0 scope:global align:4 +getName__Q34Game10ItemBridge13BridgeInitArgFv = .text:0x801F0C48; // type:function size:0xC scope:weak align:4 +__dt__Q34Game10ItemBridge3MgrFv = .text:0x801F0C54; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game10ItemBridge3MgrFv = .text:0x801F0D88; // type:function size:0x100 scope:weak align:4 +generatorGetID__Q34Game10ItemBridge3MgrFv = .text:0x801F0E88; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game10ItemBridge3MgrFv = .text:0x801F0E94; // type:function size:0xC scope:weak align:4 +makeTrMatrix__Q34Game10ItemBridge4ItemFv = .text:0x801F0EA0; // type:function size:0x4 scope:weak align:4 +getCreatureName__Q34Game10ItemBridge4ItemFv = .text:0x801F0EA4; // type:function size:0x8 scope:weak align:4 +getMabiki__Q34Game10ItemBridge4ItemFv = .text:0x801F0EAC; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game83FSMItemFv = .text:0x801F0EB4; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game35ItemStateFPQ34Game10ItemBridge4Itemf = .text:0x801F0EE8; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRCQ28SysShape8KeyEvent = .text:0x801F0EEC; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemPQ23Sys8Triangle = .text:0x801F0EF0; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRQ24Game9PlatEvent = .text:0x801F0EF4; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRQ24Game9CollEvent = .text:0x801F0EF8; // type:function size:0x4 scope:weak align:4 +init__Q24Game34FSMStateFPQ34Game10ItemBridge4ItemPQ24Game8StateArg = .text:0x801F0EFC; // type:function size:0x4 scope:weak align:4 +exec__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F00; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F04; // type:function size:0x4 scope:weak align:4 +resume__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F08; // type:function size:0x4 scope:weak align:4 +restart__Q24Game34FSMStateFPQ34Game10ItemBridge4Item = .text:0x801F0F0C; // type:function size:0x4 scope:weak align:4 +transit__Q24Game34FSMStateFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg = .text:0x801F0F10; // type:function size:0x30 scope:weak align:4 +init__Q24Game38StateMachineFPQ34Game10ItemBridge4Item = .text:0x801F0F40; // type:function size:0x4 scope:weak align:4 +create__Q24Game38StateMachineFi = .text:0x801F0F44; // type:function size:0x64 scope:weak align:4 +transit__Q24Game38StateMachineFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg = .text:0x801F0FA8; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game38StateMachineFPQ24Game34FSMState = .text:0x801F1044; // type:function size:0x84 scope:weak align:4 +exec__Q24Game38StateMachineFPQ34Game10ItemBridge4Item = .text:0x801F10C8; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F1100; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game83FSMItemFRQ24Game9PlatEvent = .text:0x801F1144; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game83FSMItemFRQ24Game9CollEvent = .text:0x801F1188; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game83FSMItemFPQ23Sys8Triangle = .text:0x801F11CC; // type:function size:0x44 scope:weak align:4 +@376@onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F1210; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game10ItemBridge3MgrFv = .text:0x801F1218; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game13PikiContainerFv = .text:0x801F1220; // type:function size:0x4C scope:global align:4 +clear__Q24Game13PikiContainerFv = .text:0x801F126C; // type:function size:0x6C scope:global align:4 +__as__Q24Game13PikiContainerFRQ24Game13PikiContainer = .text:0x801F12D8; // type:function size:0xB0 scope:global align:4 +dump__Q24Game13PikiContainerFPc = .text:0x801F1388; // type:function size:0x74 scope:global align:4 +getCount__Q24Game13PikiContainerFii = .text:0x801F13FC; // type:function size:0xC8 scope:global align:4 +__cl__Q24Game13PikiContainerFPQ24Game4Piki = .text:0x801F14C4; // type:function size:0xCC scope:global align:4 +getColorSum__Q24Game13PikiContainerFi = .text:0x801F1590; // type:function size:0xD4 scope:global align:4 +getTotalSum__Q24Game13PikiContainerFv = .text:0x801F1664; // type:function size:0xE4 scope:global align:4 +write__Q24Game13PikiContainerFR6Stream = .text:0x801F1748; // type:function size:0x134 scope:global align:4 +read__Q24Game13PikiContainerFR6Stream = .text:0x801F187C; // type:function size:0x6C scope:global align:4 +__ct__Q24Game14GeneratorCacheFv = .text:0x801F18E8; // type:function size:0x88 scope:global align:4 +__dt__Q24Game11CourseCacheFv = .text:0x801F1970; // type:function size:0x60 scope:weak align:4 +clearCache__Q24Game14GeneratorCacheFv = .text:0x801F19D0; // type:function size:0x98 scope:global align:4 +clearGeneratorList__Q24Game14GeneratorCacheFv = .text:0x801F1A68; // type:function size:0x18 scope:global align:4 +addGenerator__Q24Game14GeneratorCacheFPQ24Game9Generator = .text:0x801F1A80; // type:function size:0x78 scope:global align:4 +getFirstGenerator__Q24Game14GeneratorCacheFv = .text:0x801F1AF8; // type:function size:0x8 scope:global align:4 +getTotalMePikmins__Q24Game14GeneratorCacheFv = .text:0x801F1B00; // type:function size:0x24 scope:global align:4 +getColorMePikmins__Q24Game14GeneratorCacheFi = .text:0x801F1B24; // type:function size:0x74 scope:global align:4 +getColorMePikmins__Q24Game11CourseCacheFPUci = .text:0x801F1B98; // type:function size:0x9C scope:global align:4 +createHeap__Q24Game14GeneratorCacheFv = .text:0x801F1C34; // type:function size:0x9C scope:global align:4 +findCache__Q24Game14GeneratorCacheFRQ24Game11CourseCachei = .text:0x801F1CD0; // type:function size:0x38 scope:global align:4 +loadGenerators__Q24Game14GeneratorCacheFi = .text:0x801F1D08; // type:function size:0x128 scope:global align:4 +loadCreatures__Q24Game14GeneratorCacheFi = .text:0x801F1E30; // type:function size:0x1B8 scope:global align:4 +loadPikiheads__Q24Game14GeneratorCacheFv = .text:0x801F1FE8; // type:function size:0x114 scope:global align:4 +slideCache__Q24Game14GeneratorCacheFv = .text:0x801F20FC; // type:function size:0xC0 scope:global align:4 +updateUseList__Q24Game14GeneratorCacheFv = .text:0x801F21BC; // type:function size:0x4C scope:global align:4 +createNumberGenerators__Q24Game14GeneratorCacheFv = .text:0x801F2208; // type:function size:0x78 scope:global align:4 +beginSave__Q24Game14GeneratorCacheFi = .text:0x801F2280; // type:function size:0xF8 scope:global align:4 +endSave__Q24Game14GeneratorCacheFv = .text:0x801F2378; // type:function size:0xC8 scope:global align:4 +saveGenerator__Q24Game14GeneratorCacheFPQ24Game9Generator = .text:0x801F2440; // type:function size:0xF0 scope:global align:4 +saveCreature__Q24Game14GeneratorCacheFPQ24Game9Generator = .text:0x801F2530; // type:function size:0x140 scope:global align:4 +savePikiheads__Q24Game14GeneratorCacheFv = .text:0x801F2670; // type:function size:0x2D0 scope:global align:4 +__ct__Q24Game11CourseCacheFi = .text:0x801F2940; // type:function size:0x70 scope:global align:4 +beginSave__Q24Game11CourseCacheFi = .text:0x801F29B0; // type:function size:0x28 scope:global align:4 +write__Q24Game14GeneratorCacheFR6Stream = .text:0x801F29D8; // type:function size:0x234 scope:global align:4 +read__Q24Game14GeneratorCacheFR6Stream = .text:0x801F2C0C; // type:function size:0x2B0 scope:global align:4 +write__Q24Game11CourseCacheFR6Stream = .text:0x801F2EBC; // type:function size:0x1D4 scope:global align:4 +read__Q24Game11CourseCacheFR6Stream = .text:0x801F3090; // type:function size:0xBC scope:global align:4 +init__Q34Game12ItemTreasure3FSMFPQ34Game12ItemTreasure4Item = .text:0x801F314C; // type:function size:0x84 scope:global align:4 +init__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4ItemPQ24Game8StateArg = .text:0x801F31D0; // type:function size:0xC scope:global align:4 +exec__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Item = .text:0x801F31DC; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Item = .text:0x801F31E0; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Itemf = .text:0x801F31E4; // type:function size:0x3C8 scope:global align:4 +releasePellet__Q34Game12ItemTreasure4ItemFv = .text:0x801F35AC; // type:function size:0x298 scope:global align:4 +constructor__Q34Game12ItemTreasure4ItemFv = .text:0x801F3844; // type:function size:0x48 scope:global align:4 +onInit__Q34Game12ItemTreasure4ItemFPQ24Game15CreatureInitArg = .text:0x801F388C; // type:function size:0x80 scope:global align:4 +start__Q24Game40StateMachineFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg = .text:0x801F390C; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game12ItemTreasure4ItemFv = .text:0x801F3940; // type:function size:0x44 scope:global align:4 +updateBoundSphere__Q34Game12ItemTreasure4ItemFv = .text:0x801F3984; // type:function size:0x48 scope:global align:4 +doAI__Q34Game12ItemTreasure4ItemFv = .text:0x801F39CC; // type:function size:0x180 scope:global align:4 +doDirectDraw__Q34Game12ItemTreasure4ItemFR8Graphics = .text:0x801F3B4C; // type:function size:0x50 scope:global align:4 +getVectorField__Q34Game12ItemTreasure4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801F3B9C; // type:function size:0x11C scope:global align:4 +getWorkDistance__Q34Game12ItemTreasure4ItemFRQ23Sys6Sphere = .text:0x801F3CB8; // type:function size:0x88 scope:global align:4 +setTreasure__Q34Game12ItemTreasure4ItemFPQ24Game6Pellet = .text:0x801F3D40; // type:function size:0xB8 scope:global align:4 +setLife__Q34Game12ItemTreasure4ItemFv = .text:0x801F3DF8; // type:function size:0x30 scope:global align:4 +getCurrMaxLife__Q34Game12ItemTreasure4ItemFv = .text:0x801F3E28; // type:function size:0x98 scope:global align:4 +interactAttack__Q34Game12ItemTreasure4ItemFRQ24Game14InteractAttack = .text:0x801F3EC0; // type:function size:0x11C scope:global align:4 +onDamage__Q34Game12ItemTreasure5StateFPQ34Game12ItemTreasure4Itemf = .text:0x801F3FDC; // type:function size:0x4 scope:weak align:4 +getWorkRadius__Q34Game12ItemTreasure4ItemFv = .text:0x801F3FE0; // type:function size:0x58 scope:global align:4 +isVisible__Q34Game12ItemTreasure4ItemFv = .text:0x801F4038; // type:function size:0x60 scope:global align:4 +ignoreAtari__Q34Game12ItemTreasure4ItemFPQ24Game8Creature = .text:0x801F4098; // type:function size:0xB0 scope:global align:4 +__ct__Q34Game12ItemTreasure3MgrFv = .text:0x801F4148; // type:function size:0x114 scope:global align:4 +read__Q34Game12ItemTreasure13TreasureParmsFR6Stream = .text:0x801F425C; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game12ItemTreasure13TreasureParmsFv = .text:0x801F4280; // type:function size:0x2A0 scope:weak align:4 +birth__Q34Game12ItemTreasure3MgrFv = .text:0x801F4520; // type:function size:0x130 scope:global align:4 +generatorBirth__Q34Game12ItemTreasure3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F4650; // type:function size:0x60 scope:global align:4 +onLoadResources__Q34Game12ItemTreasure3MgrFv = .text:0x801F46B0; // type:function size:0x4 scope:global align:4 +__dt__Q34Game12ItemTreasure3MgrFv = .text:0x801F46B4; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game12ItemTreasure3MgrFv = .text:0x801F47E8; // type:function size:0x118 scope:weak align:4 +generatorGetID__Q34Game12ItemTreasure3MgrFv = .text:0x801F4900; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game12ItemTreasure4ItemFv = .text:0x801F490C; // type:function size:0xC scope:weak align:4 +getMatrix__Q44Game12ItemTreasure4Item10DummyShapeFi = .text:0x801F4918; // type:function size:0x8 scope:weak align:4 +isModel__Q28SysShape9MtxObjectFv = .text:0x801F4920; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game89FSMItemFv = .text:0x801F4928; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game37ItemStateFPQ34Game12ItemTreasure4Itemf = .text:0x801F495C; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRCQ28SysShape8KeyEvent = .text:0x801F4960; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemPQ23Sys8Triangle = .text:0x801F4964; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRQ24Game9PlatEvent = .text:0x801F4968; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRQ24Game9CollEvent = .text:0x801F496C; // type:function size:0x4 scope:weak align:4 +init__Q24Game36FSMStateFPQ34Game12ItemTreasure4ItemPQ24Game8StateArg = .text:0x801F4970; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F4974; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F4978; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F497C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item = .text:0x801F4980; // type:function size:0x4 scope:weak align:4 +transit__Q24Game36FSMStateFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg = .text:0x801F4984; // type:function size:0x30 scope:weak align:4 +init__Q24Game40StateMachineFPQ34Game12ItemTreasure4Item = .text:0x801F49B4; // type:function size:0x4 scope:weak align:4 +exec__Q24Game40StateMachineFPQ34Game12ItemTreasure4Item = .text:0x801F49B8; // type:function size:0x38 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x801F49F0; // type:function size:0x64 scope:weak align:4 +transit__Q24Game40StateMachineFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg = .text:0x801F4A54; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x801F4AF0; // type:function size:0x84 scope:weak align:4 +onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F4B74; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent = .text:0x801F4BB8; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent = .text:0x801F4BFC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle = .text:0x801F4C40; // type:function size:0x44 scope:weak align:4 +__sinit_itemTreasure_cpp = .text:0x801F4C84; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F4CAC; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game12ItemTreasure3MgrFv = .text:0x801F4CB4; // type:function size:0x8 scope:weak align:4 +init__Q34Game13ItemDownFloor3FSMFPQ34Game13ItemDownFloor4Item = .text:0x801F4CBC; // type:function size:0x1E4 scope:global align:4 +constructor__Q34Game13ItemDownFloor4ItemFv = .text:0x801F4EA0; // type:function size:0x48 scope:global align:4 +onInit__Q34Game13ItemDownFloor4ItemFPQ24Game15CreatureInitArg = .text:0x801F4EE8; // type:function size:0xFC scope:global align:4 +start__Q24Game41StateMachineFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg = .text:0x801F4FE4; // type:function size:0x34 scope:weak align:4 +initDependency__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5018; // type:function size:0x2B4 scope:global align:4 +onSetPosition__Q34Game13ItemDownFloor4ItemFv = .text:0x801F52CC; // type:function size:0x138 scope:global align:4 +updateBoundSphere__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5404; // type:function size:0x1C scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor4ItemFRCQ28SysShape8KeyEvent = .text:0x801F5420; // type:function size:0x44 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor5StateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F5464; // type:function size:0x4 scope:weak align:4 +startDamageMotion__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5468; // type:function size:0x338 scope:global align:4 +startDownMotion__Q34Game13ItemDownFloor4ItemFv = .text:0x801F57A0; // type:function size:0x33C scope:global align:4 +startUpMotion__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5ADC; // type:function size:0x2E4 scope:global align:4 +changeMaterial__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5DC0; // type:function size:0x4 scope:global align:4 +doSave__Q34Game13ItemDownFloor4ItemFR6Stream = .text:0x801F5DC4; // type:function size:0x38 scope:global align:4 +doLoad__Q34Game13ItemDownFloor4ItemFR6Stream = .text:0x801F5DFC; // type:function size:0xF8 scope:global align:4 +doAI__Q34Game13ItemDownFloor4ItemFv = .text:0x801F5EF4; // type:function size:0xF8 scope:global align:4 +platCallback__Q34Game13ItemDownFloor4ItemFRQ24Game9PlatEvent = .text:0x801F5FEC; // type:function size:0x23C scope:global align:4 +onPlat__Q34Game13ItemDownFloor5StateFPQ34Game13ItemDownFloor4Item = .text:0x801F6228; // type:function size:0x4 scope:weak align:4 +getCarryInfoParam__Q34Game13ItemDownFloor4ItemFR14CarryInfoParam = .text:0x801F622C; // type:function size:0x5C scope:global align:4 +__ct__Q34Game13ItemDownFloor3MgrFv = .text:0x801F6288; // type:function size:0x1E0 scope:global align:4 +setupDownFloor__Q34Game13ItemDownFloor3MgrFPQ34Game13ItemDownFloor4Item = .text:0x801F6468; // type:function size:0xF0 scope:global align:4 +setupPlatform__Q34Game13ItemDownFloor3MgrFPQ34Game13ItemDownFloor4Item = .text:0x801F6558; // type:function size:0x108 scope:global align:4 +onLoadResources__Q34Game13ItemDownFloor3MgrFv = .text:0x801F6660; // type:function size:0x4 scope:global align:4 +birth__Q34Game13ItemDownFloor3MgrFv = .text:0x801F6664; // type:function size:0x17C scope:global align:4 +getCaveName__Q34Game13ItemDownFloor3MgrFi = .text:0x801F67E0; // type:function size:0x3C scope:global align:4 +getCaveID__Q34Game13ItemDownFloor3MgrFPc = .text:0x801F681C; // type:function size:0xB0 scope:global align:4 +init__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F68CC; // type:function size:0x68 scope:global align:4 +exec__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6934; // type:function size:0x60 scope:global align:4 +transit__Q24Game37FSMStateFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg = .text:0x801F6994; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item = .text:0x801F69C4; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F69C8; // type:function size:0x4 scope:global align:4 +onPlat__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item = .text:0x801F69CC; // type:function size:0x40 scope:global align:4 +init__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F6A0C; // type:function size:0x38 scope:global align:4 +exec__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6A44; // type:function size:0xC4 scope:global align:4 +cleanup__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6B08; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F6B0C; // type:function size:0xC scope:global align:4 +onPlat__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6B18; // type:function size:0x4 scope:global align:4 +init__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F6B1C; // type:function size:0x9C scope:global align:4 +exec__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6BB8; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6BBC; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F6BC0; // type:function size:0x220 scope:global align:4 +onPlat__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6DE0; // type:function size:0x4 scope:global align:4 +init__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F6DE4; // type:function size:0x24 scope:global align:4 +exec__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6E08; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6E0C; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F6E10; // type:function size:0x3C scope:global align:4 +onPlat__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item = .text:0x801F6E4C; // type:function size:0x4 scope:global align:4 +generatorNewItemParm__Q34Game13ItemDownFloor3MgrFv = .text:0x801F6E50; // type:function size:0x7C scope:global align:4 +generatorWrite__Q34Game13ItemDownFloor3MgrFR6StreamPQ24Game11GenItemParm = .text:0x801F6ECC; // type:function size:0x104 scope:global align:4 +generatorRead__Q34Game13ItemDownFloor3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x801F6FD0; // type:function size:0xCC scope:global align:4 +generatorBirth__Q34Game13ItemDownFloor3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F709C; // type:function size:0x1E4 scope:global align:4 +__dt__Q34Game13ItemDownFloor3MgrFv = .text:0x801F7280; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game13ItemDownFloor3MgrFv = .text:0x801F73B4; // type:function size:0x140 scope:weak align:4 +generatorGetID__Q34Game13ItemDownFloor3MgrFv = .text:0x801F74F4; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game13ItemDownFloor3MgrFv = .text:0x801F7500; // type:function size:0xC scope:weak align:4 +makeTrMatrix__Q34Game13ItemDownFloor4ItemFv = .text:0x801F750C; // type:function size:0x4 scope:weak align:4 +getFaceDir__Q34Game13ItemDownFloor4ItemFv = .text:0x801F7510; // type:function size:0x8 scope:weak align:4 +getCreatureName__Q34Game13ItemDownFloor4ItemFv = .text:0x801F7518; // type:function size:0xC scope:weak align:4 +doAI__Q24Game92FSMItemFv = .text:0x801F7524; // type:function size:0x34 scope:weak align:4 +init__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F7558; // type:function size:0x4 scope:weak align:4 +exec__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item = .text:0x801F755C; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item = .text:0x801F7560; // type:function size:0x4 scope:weak align:4 +onPlat__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item = .text:0x801F7564; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game92FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F7568; // type:function size:0x44 scope:weak align:4 +onDamage__Q24Game38ItemStateFPQ34Game13ItemDownFloor4Itemf = .text:0x801F75AC; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent = .text:0x801F75B0; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemPQ23Sys8Triangle = .text:0x801F75B4; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRQ24Game9PlatEvent = .text:0x801F75B8; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRQ24Game9CollEvent = .text:0x801F75BC; // type:function size:0x4 scope:weak align:4 +init__Q24Game37FSMStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg = .text:0x801F75C0; // type:function size:0x4 scope:weak align:4 +exec__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75C4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75C8; // type:function size:0x4 scope:weak align:4 +resume__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75CC; // type:function size:0x4 scope:weak align:4 +restart__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item = .text:0x801F75D0; // type:function size:0x4 scope:weak align:4 +init__Q24Game41StateMachineFPQ34Game13ItemDownFloor4Item = .text:0x801F75D4; // type:function size:0x4 scope:weak align:4 +exec__Q24Game41StateMachineFPQ34Game13ItemDownFloor4Item = .text:0x801F75D8; // type:function size:0x38 scope:weak align:4 +create__Q24Game41StateMachineFi = .text:0x801F7610; // type:function size:0x64 scope:weak align:4 +transit__Q24Game41StateMachineFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg = .text:0x801F7674; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game41StateMachineFPQ24Game37FSMState = .text:0x801F7710; // type:function size:0x84 scope:weak align:4 +platCallback__Q24Game92FSMItemFRQ24Game9PlatEvent = .text:0x801F7794; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game92FSMItemFRQ24Game9CollEvent = .text:0x801F77D8; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game92FSMItemFPQ23Sys8Triangle = .text:0x801F781C; // type:function size:0x44 scope:weak align:4 +__sinit_itemDownFloor_cpp = .text:0x801F7860; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game92FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F7888; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q34Game13ItemDownFloor4ItemFRCQ28SysShape8KeyEvent = .text:0x801F7890; // type:function size:0x8 scope:weak align:4 +@480@getCarryInfoParam__Q34Game13ItemDownFloor4ItemFR14CarryInfoParam = .text:0x801F7898; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game13ItemDownFloor3MgrFv = .text:0x801F78A0; // type:function size:0x8 scope:weak align:4 +getRandomChoice__8KandoLibFPQ28KandoLib6Choicei = .text:0x801F78A8; // type:function size:0xA8 scope:global align:4 +init__Q34Game10ItemBarrel3FSMFPQ34Game10ItemBarrel4Item = .text:0x801F7950; // type:function size:0x134 scope:global align:4 +init__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F7A84; // type:function size:0xC scope:global align:4 +exec__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Item = .text:0x801F7A90; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Item = .text:0x801F7A94; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F7A98; // type:function size:0x64 scope:global align:4 +transit__Q24Game34FSMStateFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg = .text:0x801F7AFC; // type:function size:0x30 scope:weak align:4 +onKeyEvent__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F7B2C; // type:function size:0x4 scope:global align:4 +init__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F7B30; // type:function size:0x170 scope:global align:4 +exec__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Item = .text:0x801F7CA0; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Item = .text:0x801F7CA4; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F7CA8; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F7CAC; // type:function size:0x148 scope:global align:4 +init__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F7DF4; // type:function size:0x4 scope:global align:4 +exec__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Item = .text:0x801F7DF8; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Item = .text:0x801F7DFC; // type:function size:0x4 scope:global align:4 +onDamage__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F7E00; // type:function size:0x10 scope:global align:4 +onKeyEvent__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F7E10; // type:function size:0x4 scope:global align:4 +doSave__Q34Game10ItemBarrel4ItemFR6Stream = .text:0x801F7E14; // type:function size:0x44 scope:global align:4 +doLoad__Q34Game10ItemBarrel4ItemFR6Stream = .text:0x801F7E58; // type:function size:0xBC scope:global align:4 +constructor__Q34Game10ItemBarrel4ItemFv = .text:0x801F7F14; // type:function size:0x48 scope:global align:4 +onInit__Q34Game10ItemBarrel4ItemFPQ24Game15CreatureInitArg = .text:0x801F7F5C; // type:function size:0x140 scope:global align:4 +start__Q24Game38StateMachineFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg = .text:0x801F809C; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game10ItemBarrel4ItemFv = .text:0x801F80D0; // type:function size:0x4C scope:global align:4 +updateBoundSphere__Q34Game10ItemBarrel4ItemFv = .text:0x801F811C; // type:function size:0x48 scope:global align:4 +doAI__Q34Game10ItemBarrel4ItemFv = .text:0x801F8164; // type:function size:0xC4 scope:global align:4 +getVectorField__Q34Game10ItemBarrel4ItemFRQ23Sys6SphereR10Vector3 = .text:0x801F8228; // type:function size:0x114 scope:global align:4 +getWorkRadius__Q34Game10ItemBarrel4ItemFv = .text:0x801F833C; // type:function size:0x58 scope:global align:4 +getWorkDistance__Q34Game10ItemBarrel4ItemFRQ23Sys6Sphere = .text:0x801F8394; // type:function size:0xC4 scope:global align:4 +createBarrel__Q34Game10ItemBarrel4ItemFv = .text:0x801F8458; // type:function size:0x24 scope:global align:4 +interactAttack__Q34Game10ItemBarrel4ItemFRQ24Game14InteractAttack = .text:0x801F847C; // type:function size:0x148 scope:global align:4 +onDamage__Q34Game10ItemBarrel5StateFPQ34Game10ItemBarrel4Itemf = .text:0x801F85C4; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game10ItemBarrel3MgrFv = .text:0x801F85C8; // type:function size:0x120 scope:global align:4 +read__Q34Game10ItemBarrel11BarrelParmsFR6Stream = .text:0x801F86E8; // type:function size:0x24 scope:weak align:4 +__ct__Q34Game10ItemBarrel11BarrelParmsFv = .text:0x801F870C; // type:function size:0x1EC scope:weak align:4 +birth__Q34Game10ItemBarrel3MgrFv = .text:0x801F88F8; // type:function size:0x108 scope:global align:4 +generatorBirth__Q34Game10ItemBarrel3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x801F8A00; // type:function size:0x60 scope:global align:4 +onLoadResources__Q34Game10ItemBarrel3MgrFv = .text:0x801F8A60; // type:function size:0xB8 scope:global align:4 +__dt__Q34Game10ItemBarrel3MgrFv = .text:0x801F8B18; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game10ItemBarrel3MgrFv = .text:0x801F8C4C; // type:function size:0xF0 scope:weak align:4 +generatorGetID__Q34Game10ItemBarrel3MgrFv = .text:0x801F8D3C; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game10ItemBarrel4ItemFv = .text:0x801F8D48; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game83FSMItemFv = .text:0x801F8D50; // type:function size:0x34 scope:weak align:4 +onDamage__Q24Game35ItemStateFPQ34Game10ItemBarrel4Itemf = .text:0x801F8D84; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent = .text:0x801F8D88; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemPQ23Sys8Triangle = .text:0x801F8D8C; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRQ24Game9PlatEvent = .text:0x801F8D90; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRQ24Game9CollEvent = .text:0x801F8D94; // type:function size:0x4 scope:weak align:4 +init__Q24Game34FSMStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg = .text:0x801F8D98; // type:function size:0x4 scope:weak align:4 +exec__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8D9C; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8DA0; // type:function size:0x4 scope:weak align:4 +resume__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8DA4; // type:function size:0x4 scope:weak align:4 +restart__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item = .text:0x801F8DA8; // type:function size:0x4 scope:weak align:4 +init__Q24Game38StateMachineFPQ34Game10ItemBarrel4Item = .text:0x801F8DAC; // type:function size:0x4 scope:weak align:4 +exec__Q24Game38StateMachineFPQ34Game10ItemBarrel4Item = .text:0x801F8DB0; // type:function size:0x38 scope:weak align:4 +create__Q24Game38StateMachineFi = .text:0x801F8DE8; // type:function size:0x64 scope:weak align:4 +transit__Q24Game38StateMachineFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg = .text:0x801F8E4C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game38StateMachineFPQ24Game34FSMState = .text:0x801F8EE8; // type:function size:0x84 scope:weak align:4 +onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F8F6C; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game83FSMItemFRQ24Game9PlatEvent = .text:0x801F8FB0; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game83FSMItemFRQ24Game9CollEvent = .text:0x801F8FF4; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game83FSMItemFPQ23Sys8Triangle = .text:0x801F9038; // type:function size:0x44 scope:weak align:4 +__sinit_itemBarrel_cpp = .text:0x801F907C; // type:function size:0x28 scope:local align:4 +@376@onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent = .text:0x801F90A4; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game10ItemBarrel3MgrFv = .text:0x801F90AC; // type:function size:0x8 scope:weak align:4 +do_onInit__Q34Game12PelletNumber6ObjectFPQ24Game15CreatureInitArg = .text:0x801F90B4; // type:function size:0x4 scope:global align:4 +constructor__Q34Game12PelletNumber6ObjectFv = .text:0x801F90B8; // type:function size:0xC0 scope:global align:4 +createKiraEffect__Q34Game12PelletNumber6ObjectFR10Vector3 = .text:0x801F9178; // type:function size:0x6C scope:global align:4 +changeMaterial__Q34Game12PelletNumber6ObjectFv = .text:0x801F91E4; // type:function size:0x108 scope:global align:4 +__ct__Q34Game12PelletNumber3MgrFv = .text:0x801F92EC; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game48FixedSizePelletMgrFv = .text:0x801F939C; // type:function size:0x19C scope:weak align:4 +__dt__43MonoObjectMgrFv = .text:0x801F9538; // type:function size:0xA0 scope:weak align:4 +__dt__39ContainerFv = .text:0x801F95D8; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game12PelletNumber3MgrFv = .text:0x801F9648; // type:function size:0xF4 scope:global align:4 +onCreateModel__Q34Game12PelletNumber3MgrFPQ28SysShape5Model = .text:0x801F973C; // type:function size:0x7C scope:global align:4 +generatorNewPelletParm__Q34Game12PelletNumber3MgrFv = .text:0x801F97B8; // type:function size:0x3C scope:global align:4 +generatorBirth__Q34Game12PelletNumber3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x801F97F4; // type:function size:0xD8 scope:global align:4 +generatorWrite__Q34Game12PelletNumber3MgrFR6StreamPQ24Game13GenPelletParm = .text:0x801F98CC; // type:function size:0x54 scope:global align:4 +generatorRead__Q34Game12PelletNumber3MgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x801F9920; // type:function size:0xC4 scope:global align:4 +__dt__Q34Game12PelletNumber3MgrFv = .text:0x801F99E4; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game12PelletNumber3MgrFv = .text:0x801F9B98; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game12PelletNumber3MgrFv = .text:0x801F9BA0; // type:function size:0x8 scope:weak align:4 +generatorLocalVersion__Q34Game12PelletNumber3MgrFv = .text:0x801F9BA8; // type:function size:0xC scope:weak align:4 +__dt__39ObjectMgrFv = .text:0x801F9BB4; // type:function size:0x88 scope:weak align:4 +getName__Q23efx10ArgPelTypeFv = .text:0x801F9C3C; // type:function size:0xC scope:weak align:4 +getKind__Q34Game12PelletNumber6ObjectFv = .text:0x801F9C48; // type:function size:0x8 scope:weak align:4 +resetMgrAndResources__Q24Game48FixedSizePelletMgrFv = .text:0x801F9C50; // type:function size:0x9C scope:weak align:4 +onCreateModel__Q24Game48FixedSizePelletMgrFPQ28SysShape5Model = .text:0x801F9CEC; // type:function size:0x4 scope:weak align:4 +birth__Q24Game48FixedSizePelletMgrFv = .text:0x801F9CF0; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game48FixedSizePelletMgrFv = .text:0x801F9D1C; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game48FixedSizePelletMgrFv = .text:0x801F9D48; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game48FixedSizePelletMgrFi = .text:0x801F9D74; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game48FixedSizePelletMgrFv = .text:0x801F9DA0; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game48FixedSizePelletMgrFf = .text:0x801F9DCC; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game48FixedSizePelletMgrFR8Graphics = .text:0x801F9DF8; // type:function size:0x2C scope:weak align:4 +kill__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801F9E24; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game48FixedSizePelletMgrFPv = .text:0x801F9E48; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game48FixedSizePelletMgrFv = .text:0x801F9E74; // type:function size:0x2C scope:weak align:4 +birth__43MonoObjectMgrFv = .text:0x801F9EA0; // type:function size:0x60 scope:weak align:4 +kill__43MonoObjectMgrFPQ34Game12PelletNumber6Object = .text:0x801F9F00; // type:function size:0x54 scope:weak align:4 +getNext__43MonoObjectMgrFPv = .text:0x801F9F54; // type:function size:0x40 scope:weak align:4 +getStart__43MonoObjectMgrFv = .text:0x801F9F94; // type:function size:0x30 scope:weak align:4 +getEnd__43MonoObjectMgrFv = .text:0x801F9FC4; // type:function size:0x8 scope:weak align:4 +getAt__43MonoObjectMgrFi = .text:0x801F9FCC; // type:function size:0x10 scope:weak align:4 +getTo__43MonoObjectMgrFv = .text:0x801F9FDC; // type:function size:0x8 scope:weak align:4 +doAnimation__43MonoObjectMgrFv = .text:0x801F9FE4; // type:function size:0x80 scope:weak align:4 +doEntry__43MonoObjectMgrFv = .text:0x801FA064; // type:function size:0x80 scope:weak align:4 +doSetView__43MonoObjectMgrFi = .text:0x801FA0E4; // type:function size:0x90 scope:weak align:4 +doViewCalc__43MonoObjectMgrFv = .text:0x801FA174; // type:function size:0x80 scope:weak align:4 +doSimulation__43MonoObjectMgrFf = .text:0x801FA1F4; // type:function size:0x90 scope:weak align:4 +doDirectDraw__43MonoObjectMgrFR8Graphics = .text:0x801FA284; // type:function size:0x90 scope:weak align:4 +clearMgr__43MonoObjectMgrFv = .text:0x801FA314; // type:function size:0x30 scope:weak align:4 +onAlloc__43MonoObjectMgrFv = .text:0x801FA344; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__43MonoObjectMgrFv = .text:0x801FA348; // type:function size:0x3C scope:weak align:4 +get__43MonoObjectMgrFPv = .text:0x801FA384; // type:function size:0x10 scope:weak align:4 +getObject__39ContainerFPv = .text:0x801FA394; // type:function size:0x2C scope:weak align:4 +getAt__39ContainerFi = .text:0x801FA3C0; // type:function size:0x8 scope:weak align:4 +getTo__39ContainerFv = .text:0x801FA3C8; // type:function size:0x8 scope:weak align:4 +doDirectDraw__39ObjectMgrFR8Graphics = .text:0x801FA3D0; // type:function size:0x1F4 scope:weak align:4 +isDone__38IteratorFv = .text:0x801FA5C4; // type:function size:0x4C scope:weak align:4 +doSimulation__39ObjectMgrFf = .text:0x801FA610; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__39ObjectMgrFv = .text:0x801FA804; // type:function size:0x1E4 scope:weak align:4 +doSetView__39ObjectMgrFi = .text:0x801FA9E8; // type:function size:0x1F4 scope:weak align:4 +doEntry__39ObjectMgrFv = .text:0x801FABDC; // type:function size:0x1E4 scope:weak align:4 +doAnimation__39ObjectMgrFv = .text:0x801FADC0; // type:function size:0x1E4 scope:weak align:4 +alloc__24MonoObjectMgr<8CollPart>Fi = .text:0x801FAFA4; // type:function size:0x18C scope:weak align:4 +__ct__43MonoObjectMgrFv = .text:0x801FB130; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB1CC; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB1EC; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB208; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FB224; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game48FixedSizePelletMgrFi = .text:0x801FB240; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game48FixedSizePelletMgrFv = .text:0x801FB250; // type:function size:0x2C scope:weak align:4 +get__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB27C; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB2A8; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game48FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x801FB2D4; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game48FixedSizePelletMgrFi = .text:0x801FB364; // type:function size:0x80 scope:weak align:4 +__ml__38IteratorFv = .text:0x801FB3E4; // type:function size:0x38 scope:weak align:4 +next__38IteratorFv = .text:0x801FB41C; // type:function size:0xE4 scope:weak align:4 +first__38IteratorFv = .text:0x801FB500; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game48FixedSizePelletMgrFv = .text:0x801FB5DC; // type:function size:0x64 scope:weak align:4 +alloc__43MonoObjectMgrFi = .text:0x801FB640; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game12PelletNumber6ObjectFv = .text:0x801FB7C8; // type:function size:0x4C scope:weak align:4 +@84@__dt__Q24Game48FixedSizePelletMgrFv = .text:0x801FB814; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__43MonoObjectMgrFv = .text:0x801FB81C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__43MonoObjectMgrFR8Graphics = .text:0x801FB824; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__43MonoObjectMgrFf = .text:0x801FB82C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__43MonoObjectMgrFv = .text:0x801FB834; // type:function size:0x8 scope:weak align:4 +@28@doSetView__43MonoObjectMgrFi = .text:0x801FB83C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__43MonoObjectMgrFv = .text:0x801FB844; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__43MonoObjectMgrFv = .text:0x801FB84C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__39ObjectMgrFR8Graphics = .text:0x801FB854; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__39ObjectMgrFf = .text:0x801FB85C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__39ObjectMgrFv = .text:0x801FB864; // type:function size:0x8 scope:weak align:4 +@28@doSetView__39ObjectMgrFi = .text:0x801FB86C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__39ObjectMgrFv = .text:0x801FB874; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__39ObjectMgrFv = .text:0x801FB87C; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game48FixedSizePelletMgrFv = .text:0x801FB884; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game48FixedSizePelletMgrFv = .text:0x801FB88C; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB894; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game48FixedSizePelletMgrFPv = .text:0x801FB89C; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game12PelletNumber3MgrFv = .text:0x801FB8A4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game13PelletCarcass3MgrFv = .text:0x801FB8AC; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game49FixedSizePelletMgrFv = .text:0x801FB95C; // type:function size:0x19C scope:weak align:4 +__dt__44MonoObjectMgrFv = .text:0x801FBAF8; // type:function size:0xA0 scope:weak align:4 +__dt__40ContainerFv = .text:0x801FBB98; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game13PelletCarcass3MgrFv = .text:0x801FBC08; // type:function size:0x64 scope:global align:4 +__dt__Q34Game13PelletCarcass3MgrFv = .text:0x801FBC6C; // type:function size:0x1B4 scope:weak align:4 +createShape__Q34Game13PelletCarcass3MgrFii = .text:0x801FBE20; // type:function size:0x8 scope:weak align:4 +getMgrName__Q34Game13PelletCarcass3MgrFv = .text:0x801FBE28; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game13PelletCarcass3MgrFv = .text:0x801FBE30; // type:function size:0x8 scope:weak align:4 +__dt__40ObjectMgrFv = .text:0x801FBE38; // type:function size:0x88 scope:weak align:4 +resetMgrAndResources__Q24Game49FixedSizePelletMgrFv = .text:0x801FBEC0; // type:function size:0x9C scope:weak align:4 +onCreateModel__Q24Game49FixedSizePelletMgrFPQ28SysShape5Model = .text:0x801FBF5C; // type:function size:0x4 scope:weak align:4 +birth__Q24Game49FixedSizePelletMgrFv = .text:0x801FBF60; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game49FixedSizePelletMgrFv = .text:0x801FBF8C; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game49FixedSizePelletMgrFv = .text:0x801FBFB8; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game49FixedSizePelletMgrFi = .text:0x801FBFE4; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game49FixedSizePelletMgrFv = .text:0x801FC010; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game49FixedSizePelletMgrFf = .text:0x801FC03C; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game49FixedSizePelletMgrFR8Graphics = .text:0x801FC068; // type:function size:0x2C scope:weak align:4 +kill__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FC094; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x801FC0B8; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game49FixedSizePelletMgrFv = .text:0x801FC0E4; // type:function size:0x2C scope:weak align:4 +birth__44MonoObjectMgrFv = .text:0x801FC110; // type:function size:0x60 scope:weak align:4 +kill__44MonoObjectMgrFPQ34Game13PelletCarcass6Object = .text:0x801FC170; // type:function size:0x54 scope:weak align:4 +getNext__44MonoObjectMgrFPv = .text:0x801FC1C4; // type:function size:0x40 scope:weak align:4 +getStart__44MonoObjectMgrFv = .text:0x801FC204; // type:function size:0x30 scope:weak align:4 +getEnd__44MonoObjectMgrFv = .text:0x801FC234; // type:function size:0x8 scope:weak align:4 +getAt__44MonoObjectMgrFi = .text:0x801FC23C; // type:function size:0x10 scope:weak align:4 +getTo__44MonoObjectMgrFv = .text:0x801FC24C; // type:function size:0x8 scope:weak align:4 +doAnimation__44MonoObjectMgrFv = .text:0x801FC254; // type:function size:0x80 scope:weak align:4 +doEntry__44MonoObjectMgrFv = .text:0x801FC2D4; // type:function size:0x80 scope:weak align:4 +doSetView__44MonoObjectMgrFi = .text:0x801FC354; // type:function size:0x90 scope:weak align:4 +doViewCalc__44MonoObjectMgrFv = .text:0x801FC3E4; // type:function size:0x80 scope:weak align:4 +doSimulation__44MonoObjectMgrFf = .text:0x801FC464; // type:function size:0x90 scope:weak align:4 +doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x801FC4F4; // type:function size:0x90 scope:weak align:4 +clearMgr__44MonoObjectMgrFv = .text:0x801FC584; // type:function size:0x30 scope:weak align:4 +onAlloc__44MonoObjectMgrFv = .text:0x801FC5B4; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__44MonoObjectMgrFv = .text:0x801FC5B8; // type:function size:0x3C scope:weak align:4 +get__44MonoObjectMgrFPv = .text:0x801FC5F4; // type:function size:0x10 scope:weak align:4 +getObject__40ContainerFPv = .text:0x801FC604; // type:function size:0x2C scope:weak align:4 +getAt__40ContainerFi = .text:0x801FC630; // type:function size:0x8 scope:weak align:4 +getTo__40ContainerFv = .text:0x801FC638; // type:function size:0x8 scope:weak align:4 +doDirectDraw__40ObjectMgrFR8Graphics = .text:0x801FC640; // type:function size:0x1F4 scope:weak align:4 +isDone__39IteratorFv = .text:0x801FC834; // type:function size:0x4C scope:weak align:4 +doSimulation__40ObjectMgrFf = .text:0x801FC880; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__40ObjectMgrFv = .text:0x801FCA74; // type:function size:0x1E4 scope:weak align:4 +doSetView__40ObjectMgrFi = .text:0x801FCC58; // type:function size:0x1F4 scope:weak align:4 +doEntry__40ObjectMgrFv = .text:0x801FCE4C; // type:function size:0x1E4 scope:weak align:4 +doAnimation__40ObjectMgrFv = .text:0x801FD030; // type:function size:0x1E4 scope:weak align:4 +__ct__44MonoObjectMgrFv = .text:0x801FD214; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD2B0; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD2D0; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD2EC; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FD308; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFi = .text:0x801FD324; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x801FD334; // type:function size:0x2C scope:weak align:4 +get__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD360; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD38C; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x801FD3B8; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game49FixedSizePelletMgrFi = .text:0x801FD448; // type:function size:0x80 scope:weak align:4 +__ml__39IteratorFv = .text:0x801FD4C8; // type:function size:0x38 scope:weak align:4 +next__39IteratorFv = .text:0x801FD500; // type:function size:0xE4 scope:weak align:4 +first__39IteratorFv = .text:0x801FD5E4; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game49FixedSizePelletMgrFv = .text:0x801FD6C0; // type:function size:0x64 scope:weak align:4 +alloc__44MonoObjectMgrFi = .text:0x801FD724; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game13PelletCarcass6ObjectFv = .text:0x801FD8AC; // type:function size:0x4C scope:weak align:4 +getKind__Q34Game13PelletCarcass6ObjectFv = .text:0x801FD8F8; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q24Game49FixedSizePelletMgrFv = .text:0x801FD900; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__44MonoObjectMgrFv = .text:0x801FD908; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x801FD910; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__44MonoObjectMgrFf = .text:0x801FD918; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__44MonoObjectMgrFv = .text:0x801FD920; // type:function size:0x8 scope:weak align:4 +@28@doSetView__44MonoObjectMgrFi = .text:0x801FD928; // type:function size:0x8 scope:weak align:4 +@28@doEntry__44MonoObjectMgrFv = .text:0x801FD930; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__44MonoObjectMgrFv = .text:0x801FD938; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__40ObjectMgrFR8Graphics = .text:0x801FD940; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__40ObjectMgrFf = .text:0x801FD948; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__40ObjectMgrFv = .text:0x801FD950; // type:function size:0x8 scope:weak align:4 +@28@doSetView__40ObjectMgrFi = .text:0x801FD958; // type:function size:0x8 scope:weak align:4 +@28@doEntry__40ObjectMgrFv = .text:0x801FD960; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__40ObjectMgrFv = .text:0x801FD968; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x801FD970; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game49FixedSizePelletMgrFv = .text:0x801FD978; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD980; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game49FixedSizePelletMgrFPv = .text:0x801FD988; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game13PelletCarcass3MgrFv = .text:0x801FD990; // type:function size:0x8 scope:weak align:4 +do_onInit__Q34Game11PelletFruit6ObjectFPQ24Game15CreatureInitArg = .text:0x801FD998; // type:function size:0x70 scope:global align:4 +do_update__Q34Game11PelletFruit6ObjectFv = .text:0x801FDA08; // type:function size:0x180 scope:global align:4 +changeMaterial__Q34Game11PelletFruit6ObjectFv = .text:0x801FDB88; // type:function size:0x11C scope:global align:4 +__ct__Q34Game11PelletFruit3MgrFv = .text:0x801FDCA4; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game47FixedSizePelletMgrFv = .text:0x801FDD54; // type:function size:0x19C scope:weak align:4 +__dt__42MonoObjectMgrFv = .text:0x801FDEF0; // type:function size:0xA0 scope:weak align:4 +__dt__38ContainerFv = .text:0x801FDF90; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game11PelletFruit3MgrFv = .text:0x801FE000; // type:function size:0x8C scope:global align:4 +onCreateModel__Q34Game11PelletFruit3MgrFPQ28SysShape5Model = .text:0x801FE08C; // type:function size:0x6C scope:global align:4 +__dt__Q34Game11PelletFruit3MgrFv = .text:0x801FE0F8; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game11PelletFruit3MgrFv = .text:0x801FE2AC; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game11PelletFruit3MgrFv = .text:0x801FE2B4; // type:function size:0x8 scope:weak align:4 +__dt__38ObjectMgrFv = .text:0x801FE2BC; // type:function size:0x88 scope:weak align:4 +getKind__Q34Game11PelletFruit6ObjectFv = .text:0x801FE344; // type:function size:0x8 scope:weak align:4 +resetMgrAndResources__Q24Game47FixedSizePelletMgrFv = .text:0x801FE34C; // type:function size:0x9C scope:weak align:4 +onCreateModel__Q24Game47FixedSizePelletMgrFPQ28SysShape5Model = .text:0x801FE3E8; // type:function size:0x4 scope:weak align:4 +birth__Q24Game47FixedSizePelletMgrFv = .text:0x801FE3EC; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game47FixedSizePelletMgrFv = .text:0x801FE418; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game47FixedSizePelletMgrFv = .text:0x801FE444; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game47FixedSizePelletMgrFi = .text:0x801FE470; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game47FixedSizePelletMgrFv = .text:0x801FE49C; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game47FixedSizePelletMgrFf = .text:0x801FE4C8; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game47FixedSizePelletMgrFR8Graphics = .text:0x801FE4F4; // type:function size:0x2C scope:weak align:4 +kill__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FE520; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game47FixedSizePelletMgrFPv = .text:0x801FE544; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game47FixedSizePelletMgrFv = .text:0x801FE570; // type:function size:0x2C scope:weak align:4 +birth__42MonoObjectMgrFv = .text:0x801FE59C; // type:function size:0x60 scope:weak align:4 +kill__42MonoObjectMgrFPQ34Game11PelletFruit6Object = .text:0x801FE5FC; // type:function size:0x54 scope:weak align:4 +getNext__42MonoObjectMgrFPv = .text:0x801FE650; // type:function size:0x40 scope:weak align:4 +getStart__42MonoObjectMgrFv = .text:0x801FE690; // type:function size:0x30 scope:weak align:4 +getEnd__42MonoObjectMgrFv = .text:0x801FE6C0; // type:function size:0x8 scope:weak align:4 +getAt__42MonoObjectMgrFi = .text:0x801FE6C8; // type:function size:0x10 scope:weak align:4 +getTo__42MonoObjectMgrFv = .text:0x801FE6D8; // type:function size:0x8 scope:weak align:4 +doAnimation__42MonoObjectMgrFv = .text:0x801FE6E0; // type:function size:0x80 scope:weak align:4 +doEntry__42MonoObjectMgrFv = .text:0x801FE760; // type:function size:0x80 scope:weak align:4 +doSetView__42MonoObjectMgrFi = .text:0x801FE7E0; // type:function size:0x90 scope:weak align:4 +doViewCalc__42MonoObjectMgrFv = .text:0x801FE870; // type:function size:0x80 scope:weak align:4 +doSimulation__42MonoObjectMgrFf = .text:0x801FE8F0; // type:function size:0x90 scope:weak align:4 +doDirectDraw__42MonoObjectMgrFR8Graphics = .text:0x801FE980; // type:function size:0x90 scope:weak align:4 +clearMgr__42MonoObjectMgrFv = .text:0x801FEA10; // type:function size:0x30 scope:weak align:4 +onAlloc__42MonoObjectMgrFv = .text:0x801FEA40; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__42MonoObjectMgrFv = .text:0x801FEA44; // type:function size:0x3C scope:weak align:4 +get__42MonoObjectMgrFPv = .text:0x801FEA80; // type:function size:0x10 scope:weak align:4 +getObject__38ContainerFPv = .text:0x801FEA90; // type:function size:0x2C scope:weak align:4 +getAt__38ContainerFi = .text:0x801FEABC; // type:function size:0x8 scope:weak align:4 +getTo__38ContainerFv = .text:0x801FEAC4; // type:function size:0x8 scope:weak align:4 +doDirectDraw__38ObjectMgrFR8Graphics = .text:0x801FEACC; // type:function size:0x1F4 scope:weak align:4 +isDone__37IteratorFv = .text:0x801FECC0; // type:function size:0x4C scope:weak align:4 +doSimulation__38ObjectMgrFf = .text:0x801FED0C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__38ObjectMgrFv = .text:0x801FEF00; // type:function size:0x1E4 scope:weak align:4 +doSetView__38ObjectMgrFi = .text:0x801FF0E4; // type:function size:0x1F4 scope:weak align:4 +doEntry__38ObjectMgrFv = .text:0x801FF2D8; // type:function size:0x1E4 scope:weak align:4 +doAnimation__38ObjectMgrFv = .text:0x801FF4BC; // type:function size:0x1E4 scope:weak align:4 +__ct__42MonoObjectMgrFv = .text:0x801FF6A0; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF73C; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF75C; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF778; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet = .text:0x801FF794; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game47FixedSizePelletMgrFi = .text:0x801FF7B0; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game47FixedSizePelletMgrFv = .text:0x801FF7C0; // type:function size:0x2C scope:weak align:4 +get__Q24Game47FixedSizePelletMgrFPv = .text:0x801FF7EC; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game47FixedSizePelletMgrFPv = .text:0x801FF818; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game47FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x801FF844; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game47FixedSizePelletMgrFi = .text:0x801FF8D4; // type:function size:0x80 scope:weak align:4 +__ml__37IteratorFv = .text:0x801FF954; // type:function size:0x38 scope:weak align:4 +next__37IteratorFv = .text:0x801FF98C; // type:function size:0xE4 scope:weak align:4 +first__37IteratorFv = .text:0x801FFA70; // type:function size:0xDC scope:weak align:4 +onAlloc__Q24Game47FixedSizePelletMgrFv = .text:0x801FFB4C; // type:function size:0x64 scope:weak align:4 +alloc__42MonoObjectMgrFi = .text:0x801FFBB0; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game11PelletFruit6ObjectFv = .text:0x801FFD38; // type:function size:0x4C scope:weak align:4 +__sinit_pelletFruit_cpp = .text:0x801FFD84; // type:function size:0x28 scope:local align:4 +@84@__dt__Q24Game47FixedSizePelletMgrFv = .text:0x801FFDAC; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__42MonoObjectMgrFv = .text:0x801FFDB4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__42MonoObjectMgrFR8Graphics = .text:0x801FFDBC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__42MonoObjectMgrFf = .text:0x801FFDC4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__42MonoObjectMgrFv = .text:0x801FFDCC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__42MonoObjectMgrFi = .text:0x801FFDD4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__42MonoObjectMgrFv = .text:0x801FFDDC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__42MonoObjectMgrFv = .text:0x801FFDE4; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__38ObjectMgrFR8Graphics = .text:0x801FFDEC; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__38ObjectMgrFf = .text:0x801FFDF4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__38ObjectMgrFv = .text:0x801FFDFC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__38ObjectMgrFi = .text:0x801FFE04; // type:function size:0x8 scope:weak align:4 +@28@doEntry__38ObjectMgrFv = .text:0x801FFE0C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__38ObjectMgrFv = .text:0x801FFE14; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game47FixedSizePelletMgrFv = .text:0x801FFE1C; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game47FixedSizePelletMgrFv = .text:0x801FFE24; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game47FixedSizePelletMgrFPv = .text:0x801FFE2C; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game47FixedSizePelletMgrFPv = .text:0x801FFE34; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game11PelletFruit3MgrFv = .text:0x801FFE3C; // type:function size:0x8 scope:weak align:4 +constructor__Q34Game13PelletOtakara6ObjectFv = .text:0x801FFE44; // type:function size:0x94 scope:global align:4 +do_onInit__Q34Game13PelletOtakara6ObjectFPQ24Game15CreatureInitArg = .text:0x801FFED8; // type:function size:0xF4 scope:global align:4 +getShadowParam__Q34Game13PelletOtakara6ObjectFRQ24Game11ShadowParam = .text:0x801FFFCC; // type:function size:0x20 scope:global align:4 +sound_otakaraEventStart__Q34Game13PelletOtakara6ObjectFv = .text:0x801FFFEC; // type:function size:0x148 scope:global align:4 +sound_otakaraEventRestart__Q34Game13PelletOtakara6ObjectFv = .text:0x80200134; // type:function size:0x148 scope:global align:4 +sound_otakaraEventStop__Q34Game13PelletOtakara6ObjectFv = .text:0x8020027C; // type:function size:0x74 scope:global align:4 +sound_otakaraEventFinish__Q34Game13PelletOtakara6ObjectFv = .text:0x802002F0; // type:function size:0x74 scope:global align:4 +onCreateShape__Q34Game13PelletOtakara6ObjectFv = .text:0x80200364; // type:function size:0xD8 scope:global align:4 +theEntry__Q34Game13PelletOtakara6ObjectFv = .text:0x8020043C; // type:function size:0xB8 scope:global align:4 +changeMaterial__Q34Game13PelletOtakara6ObjectFv = .text:0x802004F4; // type:function size:0x268 scope:global align:4 +__ct__Q34Game13PelletOtakara3MgrFv = .text:0x8020075C; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game49FixedSizePelletMgrFv = .text:0x8020080C; // type:function size:0x19C scope:weak align:4 +__dt__44MonoObjectMgrFv = .text:0x802009A8; // type:function size:0xA0 scope:weak align:4 +__dt__40ContainerFv = .text:0x80200A48; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game13PelletOtakara3MgrFv = .text:0x80200AB8; // type:function size:0x6C scope:global align:4 +generatorNewPelletParm__Q34Game13PelletOtakara3MgrFv = .text:0x80200B24; // type:function size:0x24 scope:global align:4 +generatorBirth__Q34Game13PelletOtakara3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x80200B48; // type:function size:0x148 scope:global align:4 +generatorWrite__Q34Game13PelletOtakara3MgrFR6StreamPQ24Game13GenPelletParm = .text:0x80200C90; // type:function size:0x30 scope:global align:4 +generatorRead__Q34Game13PelletOtakara3MgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x80200CC0; // type:function size:0x38 scope:global align:4 +__dt__Q34Game13PelletOtakara3MgrFv = .text:0x80200CF8; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game13PelletOtakara3MgrFv = .text:0x80200EAC; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game13PelletOtakara3MgrFv = .text:0x80200EB4; // type:function size:0x8 scope:weak align:4 +generatorLocalVersion__Q34Game13PelletOtakara3MgrFv = .text:0x80200EBC; // type:function size:0xC scope:weak align:4 +__dt__40ObjectMgrFv = .text:0x80200EC8; // type:function size:0x88 scope:weak align:4 +getKind__Q34Game13PelletOtakara6ObjectFv = .text:0x80200F50; // type:function size:0x8 scope:weak align:4 +getBedamaColor__Q34Game13PelletOtakara6ObjectFv = .text:0x80200F58; // type:function size:0xC scope:weak align:4 +onCreateModel__Q24Game49FixedSizePelletMgrFPQ28SysShape5Model = .text:0x80200F64; // type:function size:0x4 scope:weak align:4 +birth__Q24Game49FixedSizePelletMgrFv = .text:0x80200F68; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game49FixedSizePelletMgrFv = .text:0x80200F94; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game49FixedSizePelletMgrFv = .text:0x80200FC0; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game49FixedSizePelletMgrFi = .text:0x80200FEC; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game49FixedSizePelletMgrFv = .text:0x80201018; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game49FixedSizePelletMgrFf = .text:0x80201044; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game49FixedSizePelletMgrFR8Graphics = .text:0x80201070; // type:function size:0x2C scope:weak align:4 +kill__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x8020109C; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x802010C0; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game49FixedSizePelletMgrFv = .text:0x802010EC; // type:function size:0x2C scope:weak align:4 +birth__44MonoObjectMgrFv = .text:0x80201118; // type:function size:0x60 scope:weak align:4 +kill__44MonoObjectMgrFPQ34Game13PelletOtakara6Object = .text:0x80201178; // type:function size:0x54 scope:weak align:4 +getNext__44MonoObjectMgrFPv = .text:0x802011CC; // type:function size:0x40 scope:weak align:4 +getStart__44MonoObjectMgrFv = .text:0x8020120C; // type:function size:0x30 scope:weak align:4 +getEnd__44MonoObjectMgrFv = .text:0x8020123C; // type:function size:0x8 scope:weak align:4 +getAt__44MonoObjectMgrFi = .text:0x80201244; // type:function size:0x10 scope:weak align:4 +getTo__44MonoObjectMgrFv = .text:0x80201254; // type:function size:0x8 scope:weak align:4 +doAnimation__44MonoObjectMgrFv = .text:0x8020125C; // type:function size:0x80 scope:weak align:4 +doEntry__44MonoObjectMgrFv = .text:0x802012DC; // type:function size:0x80 scope:weak align:4 +doSetView__44MonoObjectMgrFi = .text:0x8020135C; // type:function size:0x90 scope:weak align:4 +doViewCalc__44MonoObjectMgrFv = .text:0x802013EC; // type:function size:0x80 scope:weak align:4 +doSimulation__44MonoObjectMgrFf = .text:0x8020146C; // type:function size:0x90 scope:weak align:4 +doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x802014FC; // type:function size:0x90 scope:weak align:4 +clearMgr__44MonoObjectMgrFv = .text:0x8020158C; // type:function size:0x30 scope:weak align:4 +onAlloc__44MonoObjectMgrFv = .text:0x802015BC; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__44MonoObjectMgrFv = .text:0x802015C0; // type:function size:0x3C scope:weak align:4 +get__44MonoObjectMgrFPv = .text:0x802015FC; // type:function size:0x10 scope:weak align:4 +getObject__40ContainerFPv = .text:0x8020160C; // type:function size:0x2C scope:weak align:4 +getAt__40ContainerFi = .text:0x80201638; // type:function size:0x8 scope:weak align:4 +getTo__40ContainerFv = .text:0x80201640; // type:function size:0x8 scope:weak align:4 +doDirectDraw__40ObjectMgrFR8Graphics = .text:0x80201648; // type:function size:0x1F4 scope:weak align:4 +doSimulation__40ObjectMgrFf = .text:0x8020183C; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__40ObjectMgrFv = .text:0x80201A30; // type:function size:0x1E4 scope:weak align:4 +doSetView__40ObjectMgrFi = .text:0x80201C14; // type:function size:0x1F4 scope:weak align:4 +doEntry__40ObjectMgrFv = .text:0x80201E08; // type:function size:0x1E4 scope:weak align:4 +doAnimation__40ObjectMgrFv = .text:0x80201FEC; // type:function size:0x1E4 scope:weak align:4 +__ct__44MonoObjectMgrFv = .text:0x802021D0; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x8020226C; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x8020228C; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802022A8; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802022C4; // type:function size:0x1C scope:weak align:4 +getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x802022E0; // type:function size:0x2C scope:weak align:4 +get__Q24Game49FixedSizePelletMgrFPv = .text:0x8020230C; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game49FixedSizePelletMgrFPv = .text:0x80202338; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x80202364; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game49FixedSizePelletMgrFi = .text:0x802023F4; // type:function size:0x80 scope:weak align:4 +onAlloc__Q24Game49FixedSizePelletMgrFv = .text:0x80202474; // type:function size:0x64 scope:weak align:4 +alloc__44MonoObjectMgrFi = .text:0x802024D8; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game13PelletOtakara6ObjectFv = .text:0x80202660; // type:function size:0x4C scope:weak align:4 +__sinit_pelletOtakara_cpp = .text:0x802026AC; // type:function size:0x28 scope:local align:4 +@84@__dt__Q24Game49FixedSizePelletMgrFv = .text:0x802026D4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__44MonoObjectMgrFv = .text:0x802026DC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__44MonoObjectMgrFR8Graphics = .text:0x802026E4; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__44MonoObjectMgrFf = .text:0x802026EC; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__44MonoObjectMgrFv = .text:0x802026F4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__44MonoObjectMgrFi = .text:0x802026FC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__44MonoObjectMgrFv = .text:0x80202704; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__44MonoObjectMgrFv = .text:0x8020270C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__40ObjectMgrFR8Graphics = .text:0x80202714; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__40ObjectMgrFf = .text:0x8020271C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__40ObjectMgrFv = .text:0x80202724; // type:function size:0x8 scope:weak align:4 +@28@doSetView__40ObjectMgrFi = .text:0x8020272C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__40ObjectMgrFv = .text:0x80202734; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__40ObjectMgrFv = .text:0x8020273C; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game49FixedSizePelletMgrFv = .text:0x80202744; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game49FixedSizePelletMgrFv = .text:0x8020274C; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game49FixedSizePelletMgrFPv = .text:0x80202754; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game49FixedSizePelletMgrFPv = .text:0x8020275C; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game13PelletOtakara3MgrFv = .text:0x80202764; // type:function size:0x8 scope:weak align:4 +makePellet__Fv = .text:0x8020276C; // type:function size:0x9C scope:local align:4 +initialise__Q24Game9GenPelletFv = .text:0x80202808; // type:function size:0x8C scope:global align:4 +doEvent__Q24Game9GenPelletFUl = .text:0x80202894; // type:function size:0x6C scope:global align:4 +generatorMakeMatrix__Q24Game9GenPelletFR7MatrixfR10Vector3 = .text:0x80202900; // type:function size:0x68 scope:global align:4 +getShape__Q24Game9GenPelletFv = .text:0x80202968; // type:function size:0x50 scope:global align:4 +doWrite__Q24Game9GenPelletFR6Stream = .text:0x802029B8; // type:function size:0x138 scope:global align:4 +doRead__Q24Game9GenPelletFR6Stream = .text:0x80202AF0; // type:function size:0x118 scope:global align:4 +ramSaveParameters__Q24Game9GenPelletFR6Stream = .text:0x80202C08; // type:function size:0x4 scope:global align:4 +ramLoadParameters__Q24Game9GenPelletFR6Stream = .text:0x80202C0C; // type:function size:0x4 scope:global align:4 +updateUseList__Q24Game9GenPelletFPQ24Game9Generatori = .text:0x80202C10; // type:function size:0x58 scope:global align:4 +generate__Q24Game9GenPelletFPQ24Game9Generator = .text:0x80202C68; // type:function size:0x78 scope:global align:4 +getDebugInfo__Q24Game9GenPelletFPc = .text:0x80202CE0; // type:function size:0x40 scope:global align:4 +birth__Q24Game9GenPelletFPQ24Game6GenArg = .text:0x80202D20; // type:function size:0xD4 scope:global align:4 +do_onInit__Q34Game10PelletItem6ObjectFPQ24Game15CreatureInitArg = .text:0x80202DF4; // type:function size:0x4 scope:global align:4 +onBounce__Q34Game10PelletItem6ObjectFv = .text:0x80202DF8; // type:function size:0x5C scope:global align:4 +constructor__Q34Game10PelletItem6ObjectFv = .text:0x80202E54; // type:function size:0x54 scope:global align:4 +sound_otakaraEventStart__Q34Game10PelletItem6ObjectFv = .text:0x80202EA8; // type:function size:0x74 scope:global align:4 +sound_otakaraEventRestart__Q34Game10PelletItem6ObjectFv = .text:0x80202F1C; // type:function size:0x74 scope:global align:4 +sound_otakaraEventStop__Q34Game10PelletItem6ObjectFv = .text:0x80202F90; // type:function size:0x74 scope:global align:4 +sound_otakaraEventFinish__Q34Game10PelletItem6ObjectFv = .text:0x80203004; // type:function size:0x74 scope:global align:4 +__ct__Q34Game10PelletItem3MgrFv = .text:0x80203078; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game46FixedSizePelletMgrFv = .text:0x80203128; // type:function size:0x19C scope:weak align:4 +__dt__41MonoObjectMgrFv = .text:0x802032C4; // type:function size:0xA0 scope:weak align:4 +__dt__37ContainerFv = .text:0x80203364; // type:function size:0x70 scope:weak align:4 +setupResources__Q34Game10PelletItem3MgrFv = .text:0x802033D4; // type:function size:0x74 scope:global align:4 +generatorNewPelletParm__Q34Game10PelletItem3MgrFv = .text:0x80203448; // type:function size:0x24 scope:global align:4 +generatorBirth__Q34Game10PelletItem3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm = .text:0x8020346C; // type:function size:0x148 scope:global align:4 +generatorWrite__Q34Game10PelletItem3MgrFR6StreamPQ24Game13GenPelletParm = .text:0x802035B4; // type:function size:0x30 scope:global align:4 +generatorRead__Q34Game10PelletItem3MgrFR6StreamPQ24Game13GenPelletParmUl = .text:0x802035E4; // type:function size:0x38 scope:global align:4 +__dt__Q34Game10PelletItem3MgrFv = .text:0x8020361C; // type:function size:0x1B4 scope:weak align:4 +getMgrName__Q34Game10PelletItem3MgrFv = .text:0x802037D0; // type:function size:0x8 scope:weak align:4 +getMgrID__Q34Game10PelletItem3MgrFv = .text:0x802037D8; // type:function size:0x8 scope:weak align:4 +generatorLocalVersion__Q34Game10PelletItem3MgrFv = .text:0x802037E0; // type:function size:0xC scope:weak align:4 +__dt__37ObjectMgrFv = .text:0x802037EC; // type:function size:0x88 scope:weak align:4 +getKind__Q34Game10PelletItem6ObjectFv = .text:0x80203874; // type:function size:0x8 scope:weak align:4 +onCreateModel__Q24Game46FixedSizePelletMgrFPQ28SysShape5Model = .text:0x8020387C; // type:function size:0x4 scope:weak align:4 +birth__Q24Game46FixedSizePelletMgrFv = .text:0x80203880; // type:function size:0x2C scope:weak align:4 +doAnimation__Q24Game46FixedSizePelletMgrFv = .text:0x802038AC; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game46FixedSizePelletMgrFv = .text:0x802038D8; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game46FixedSizePelletMgrFi = .text:0x80203904; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game46FixedSizePelletMgrFv = .text:0x80203930; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game46FixedSizePelletMgrFf = .text:0x8020395C; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game46FixedSizePelletMgrFR8Graphics = .text:0x80203988; // type:function size:0x2C scope:weak align:4 +kill__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x802039B4; // type:function size:0x24 scope:weak align:4 +getNext__Q24Game46FixedSizePelletMgrFPv = .text:0x802039D8; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game46FixedSizePelletMgrFv = .text:0x80203A04; // type:function size:0x2C scope:weak align:4 +birth__41MonoObjectMgrFv = .text:0x80203A30; // type:function size:0x60 scope:weak align:4 +kill__41MonoObjectMgrFPQ34Game10PelletItem6Object = .text:0x80203A90; // type:function size:0x54 scope:weak align:4 +getNext__41MonoObjectMgrFPv = .text:0x80203AE4; // type:function size:0x40 scope:weak align:4 +getStart__41MonoObjectMgrFv = .text:0x80203B24; // type:function size:0x30 scope:weak align:4 +getEnd__41MonoObjectMgrFv = .text:0x80203B54; // type:function size:0x8 scope:weak align:4 +getAt__41MonoObjectMgrFi = .text:0x80203B5C; // type:function size:0x10 scope:weak align:4 +getTo__41MonoObjectMgrFv = .text:0x80203B6C; // type:function size:0x8 scope:weak align:4 +doAnimation__41MonoObjectMgrFv = .text:0x80203B74; // type:function size:0x80 scope:weak align:4 +doEntry__41MonoObjectMgrFv = .text:0x80203BF4; // type:function size:0x80 scope:weak align:4 +doSetView__41MonoObjectMgrFi = .text:0x80203C74; // type:function size:0x90 scope:weak align:4 +doViewCalc__41MonoObjectMgrFv = .text:0x80203D04; // type:function size:0x80 scope:weak align:4 +doSimulation__41MonoObjectMgrFf = .text:0x80203D84; // type:function size:0x90 scope:weak align:4 +doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x80203E14; // type:function size:0x90 scope:weak align:4 +clearMgr__41MonoObjectMgrFv = .text:0x80203EA4; // type:function size:0x30 scope:weak align:4 +onAlloc__41MonoObjectMgrFv = .text:0x80203ED4; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__41MonoObjectMgrFv = .text:0x80203ED8; // type:function size:0x3C scope:weak align:4 +get__41MonoObjectMgrFPv = .text:0x80203F14; // type:function size:0x10 scope:weak align:4 +getObject__37ContainerFPv = .text:0x80203F24; // type:function size:0x2C scope:weak align:4 +getAt__37ContainerFi = .text:0x80203F50; // type:function size:0x8 scope:weak align:4 +getTo__37ContainerFv = .text:0x80203F58; // type:function size:0x8 scope:weak align:4 +doDirectDraw__37ObjectMgrFR8Graphics = .text:0x80203F60; // type:function size:0x1F4 scope:weak align:4 +doSimulation__37ObjectMgrFf = .text:0x80204154; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__37ObjectMgrFv = .text:0x80204348; // type:function size:0x1E4 scope:weak align:4 +doSetView__37ObjectMgrFi = .text:0x8020452C; // type:function size:0x1F4 scope:weak align:4 +doEntry__37ObjectMgrFv = .text:0x80204720; // type:function size:0x1E4 scope:weak align:4 +doAnimation__37ObjectMgrFv = .text:0x80204904; // type:function size:0x1E4 scope:weak align:4 +__ct__41MonoObjectMgrFv = .text:0x80204AE8; // type:function size:0x9C scope:weak align:4 +getFlag__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204B84; // type:function size:0x20 scope:weak align:4 +setFromTeki__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204BA4; // type:function size:0x1C scope:weak align:4 +setRevival__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204BC0; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet = .text:0x80204BDC; // type:function size:0x1C scope:weak align:4 +setComeAlive__Q24Game46FixedSizePelletMgrFi = .text:0x80204BF8; // type:function size:0x10 scope:weak align:4 +getEnd__Q24Game46FixedSizePelletMgrFv = .text:0x80204C08; // type:function size:0x2C scope:weak align:4 +get__Q24Game46FixedSizePelletMgrFPv = .text:0x80204C34; // type:function size:0x2C scope:weak align:4 +getObjectPtr__Q24Game46FixedSizePelletMgrFPv = .text:0x80204C60; // type:function size:0x2C scope:weak align:4 +birthFromTeki__Q24Game46FixedSizePelletMgrFPQ24Game12PelletConfig = .text:0x80204C8C; // type:function size:0x90 scope:weak align:4 +alloc__Q24Game46FixedSizePelletMgrFi = .text:0x80204D1C; // type:function size:0x80 scope:weak align:4 +onAlloc__Q24Game46FixedSizePelletMgrFv = .text:0x80204D9C; // type:function size:0x64 scope:weak align:4 +alloc__41MonoObjectMgrFi = .text:0x80204E00; // type:function size:0x188 scope:weak align:4 +__ct__Q34Game10PelletItem6ObjectFv = .text:0x80204F88; // type:function size:0x4C scope:weak align:4 +@84@__dt__Q24Game46FixedSizePelletMgrFv = .text:0x80204FD4; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__41MonoObjectMgrFv = .text:0x80204FDC; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__41MonoObjectMgrFR8Graphics = .text:0x80204FE4; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__41MonoObjectMgrFf = .text:0x80204FEC; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__41MonoObjectMgrFv = .text:0x80204FF4; // type:function size:0x8 scope:weak align:4 +@28@doSetView__41MonoObjectMgrFi = .text:0x80204FFC; // type:function size:0x8 scope:weak align:4 +@28@doEntry__41MonoObjectMgrFv = .text:0x80205004; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__41MonoObjectMgrFv = .text:0x8020500C; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37ObjectMgrFR8Graphics = .text:0x80205014; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37ObjectMgrFf = .text:0x8020501C; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37ObjectMgrFv = .text:0x80205024; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37ObjectMgrFi = .text:0x8020502C; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37ObjectMgrFv = .text:0x80205034; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37ObjectMgrFv = .text:0x8020503C; // type:function size:0x8 scope:weak align:4 +@84@getEnd__Q24Game46FixedSizePelletMgrFv = .text:0x80205044; // type:function size:0x8 scope:weak align:4 +@84@getStart__Q24Game46FixedSizePelletMgrFv = .text:0x8020504C; // type:function size:0x8 scope:weak align:4 +@84@getNext__Q24Game46FixedSizePelletMgrFPv = .text:0x80205054; // type:function size:0x8 scope:weak align:4 +@84@get__Q24Game46FixedSizePelletMgrFPv = .text:0x8020505C; // type:function size:0x8 scope:weak align:4 +@84@__dt__Q34Game10PelletItem3MgrFv = .text:0x80205064; // type:function size:0x8 scope:weak align:4 +traceMove__Q24Game11ShapeMapMgrFRQ24Game8MoveInfof = .text:0x8020506C; // type:function size:0x114 scope:global align:4 +traceMove__Q24Game6MapMgrFR12MapCollisionRQ24Game8MoveInfof = .text:0x80205180; // type:function size:0x20 scope:global align:4 +traceMove_test1203_cylinder__Q24Game6MapMgrFR12MapCollisionRQ24Game8MoveInfof = .text:0x802051A0; // type:function size:0x3BC scope:global align:4 +__sinit_mapMgrTraceMove_cpp = .text:0x8020555C; // type:function size:0x28 scope:local align:4 +getLODSphere__Q23efx9OnyonSpotFRQ23Sys6Sphere = .text:0x80205584; // type:function size:0x24 scope:global align:4 +getLODCylinder__Q23efx9OnyonSpotFRQ23Sys8Cylinder = .text:0x802055A8; // type:function size:0x54 scope:global align:4 +changeMaterial__Q23efx9OnyonSpotFv = .text:0x802055FC; // type:function size:0x50 scope:global align:4 +loadResources__Q23efx13OnyonSpotDataFv = .text:0x8020564C; // type:function size:0x1A4 scope:global align:4 +onCreate__Q23efx13OnyonSpotDataFP20ModelEffectCreateArg = .text:0x802057F0; // type:function size:0x180 scope:global align:4 +getID__Q23efx13OnyonSpotDataFv = .text:0x80205970; // type:function size:0x14 scope:weak align:4 +__dt__Q23efx13OnyonSpotDataFv = .text:0x80205984; // type:function size:0x70 scope:weak align:4 +useCylinderLOD__Q23efx9OnyonSpotFv = .text:0x802059F4; // type:function size:0x8 scope:weak align:4 +constructor__11ModelEffectFv = .text:0x802059FC; // type:function size:0x4 scope:weak align:4 +doSimulation__11ModelEffectFf = .text:0x80205A00; // type:function size:0x4 scope:weak align:4 +doDirectDraw__11ModelEffectFR8Graphics = .text:0x80205A04; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game12ItemUjamushi9BoidParmsFv = .text:0x80205A08; // type:function size:0x3D4 scope:global align:4 +blendTo__Q34Game12ItemUjamushi9BoidParmsFRQ34Game12ItemUjamushi9BoidParmsRQ34Game12ItemUjamushi9BoidParmsf = .text:0x80205DDC; // type:function size:0x138 scope:global align:4 +__ct__Q34Game12ItemUjamushi13BoidParameterFv = .text:0x80205F14; // type:function size:0x4C scope:global align:4 +__dt__Q44Game12ItemUjamushi13BoidParameter5TNodeFv = .text:0x80205F60; // type:function size:0x60 scope:weak align:4 +__ct__Q44Game12ItemUjamushi13BoidParameter5TNodeFv = .text:0x80205FC0; // type:function size:0x48 scope:weak align:4 +getParms__Q34Game12ItemUjamushi13BoidParameterFiifRQ34Game12ItemUjamushi9BoidParms = .text:0x80206008; // type:function size:0xC0 scope:global align:4 +newParms__Q34Game12ItemUjamushi13BoidParameterFv = .text:0x802060C8; // type:function size:0x48 scope:global align:4 +read__Q34Game12ItemUjamushi13BoidParameterFR6Stream = .text:0x80206110; // type:function size:0xA8 scope:global align:4 +__ct__Q34Game12ItemUjamushi3UjaFv = .text:0x802061B8; // type:function size:0xA8 scope:global align:4 +damaged__Q34Game12ItemUjamushi3UjaFf = .text:0x80206260; // type:function size:0x28 scope:global align:4 +clearBuffer__Q34Game12ItemUjamushi3UjaFv = .text:0x80206288; // type:function size:0x3C scope:global align:4 +updateBuffer__Q34Game12ItemUjamushi3UjaFv = .text:0x802062C4; // type:function size:0x318 scope:global align:4 +makeMatrix__Q34Game12ItemUjamushi3UjaFv = .text:0x802065DC; // type:function size:0xAC scope:global align:4 +updateScale__Q34Game12ItemUjamushi3UjaFf = .text:0x80206688; // type:function size:0x15C scope:global align:4 +update__Q34Game12ItemUjamushi3UjaFRQ34Game12ItemUjamushi9BoidParms = .text:0x802067E4; // type:function size:0x134C scope:global align:4 +length__10Vector3CFv = .text:0x80207B30; // type:function size:0x50 scope:weak align:4 +__pl__FRC10Vector3RC10Vector3 = .text:0x80207B80; // type:function size:0x34 scope:weak align:4 +next__35IteratorFv = .text:0x80207BB4; // type:function size:0xE4 scope:weak align:4 +isDone__35IteratorFv = .text:0x80207C98; // type:function size:0x4C scope:weak align:4 +first__35IteratorFv = .text:0x80207CE4; // type:function size:0xDC scope:weak align:4 +normalise__10Vector3Fv = .text:0x80207DC0; // type:function size:0x90 scope:weak align:4 +__mi__FRC10Vector3RC10Vector3 = .text:0x80207E50; // type:function size:0x34 scope:weak align:4 +__ct__Q34Game12ItemUjamushi6UjaMgrFi = .text:0x80207E84; // type:function size:0x130 scope:global align:4 +__dt__Q24Game36TFlockMgrFv = .text:0x80207FB4; // type:function size:0x100 scope:weak align:4 +__dt__40MonoObjectMgrFv = .text:0x802080B4; // type:function size:0xA0 scope:weak align:4 +__dt__36ContainerFv = .text:0x80208154; // type:function size:0x70 scope:weak align:4 +init__Q34Game12ItemUjamushi6UjaMgrFRQ34Game12ItemUjamushi13UjaMgrInitArg = .text:0x802081C4; // type:function size:0x50 scope:global align:4 +getMaxObjects__Q24Game36TFlockMgrFv = .text:0x80208214; // type:function size:0x8 scope:weak align:4 +getFlock__Q24Game36TFlockMgrFi = .text:0x8020821C; // type:function size:0x2C scope:weak align:4 +getAt__40MonoObjectMgrFi = .text:0x80208248; // type:function size:0x10 scope:weak align:4 +test_createUjas__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x80208258; // type:function size:0x418 scope:global align:4 +do_update_boundSphere__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x80208670; // type:function size:0x24 scope:global align:4 +do_update__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x80208694; // type:function size:0x29C scope:global align:4 +isFlagAlive__Q24Game36TFlockMgrFi = .text:0x80208930; // type:function size:0x14 scope:weak align:4 +astonishPikmins__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x80208944; // type:function size:0x2E4 scope:global align:4 +init__Q34Game12ItemUjamushi3FSMFPQ34Game12ItemUjamushi4Item = .text:0x80208C28; // type:function size:0x134 scope:global align:4 +onInit__Q34Game12ItemUjamushi4ItemFPQ24Game15CreatureInitArg = .text:0x80208D5C; // type:function size:0xC8 scope:global align:4 +start__Q24Game40StateMachineFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg = .text:0x80208E24; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game12ItemUjamushi4ItemFv = .text:0x80208E58; // type:function size:0xC0 scope:global align:4 +setBoidTimer__Q34Game12ItemUjamushi4ItemFv = .text:0x80208F18; // type:function size:0x64 scope:global align:4 +ignoreAtari__Q34Game12ItemUjamushi4ItemFPQ24Game8Creature = .text:0x80208F7C; // type:function size:0x3C scope:global align:4 +updateBoundSphere__Q34Game12ItemUjamushi4ItemFv = .text:0x80208FB8; // type:function size:0x78 scope:global align:4 +isCollisionFlick__Q34Game12ItemUjamushi4ItemFv = .text:0x80209030; // type:function size:0x8 scope:weak align:4 +interactFlockAttack__Q34Game12ItemUjamushi4ItemFRQ24Game19InteractFlockAttack = .text:0x80209038; // type:function size:0x374 scope:global align:4 +doAI__Q34Game12ItemUjamushi4ItemFv = .text:0x802093AC; // type:function size:0x2AC scope:global align:4 +getNumObjects__Q24Game36TFlockMgrFv = .text:0x80209658; // type:function size:0x8 scope:weak align:4 +doSimpleDraw__Q34Game12ItemUjamushi4ItemFP8Viewport = .text:0x80209660; // type:function size:0x78 scope:global align:4 +__ct__Q34Game12ItemUjamushi3MgrFv = .text:0x802096D8; // type:function size:0x310 scope:global align:4 +__dt__Q34Game12ItemUjamushi13BoidParameterFv = .text:0x802099E8; // type:function size:0x84 scope:weak align:4 +__dt__Q24Game39NodeItemMgrFv = .text:0x80209A6C; // type:function size:0x11C scope:weak align:4 +doSimpleDraw__Q34Game12ItemUjamushi3MgrFP8Viewport = .text:0x80209B88; // type:function size:0x200 scope:global align:4 +isDone__36IteratorFv = .text:0x80209D88; // type:function size:0x4C scope:weak align:4 +onLoadResources__Q34Game12ItemUjamushi3MgrFv = .text:0x80209DD4; // type:function size:0x4 scope:global align:4 +getCaveName__Q34Game12ItemUjamushi3MgrFi = .text:0x80209DD8; // type:function size:0xC scope:global align:4 +getCaveID__Q34Game12ItemUjamushi3MgrFPc = .text:0x80209DE4; // type:function size:0x54 scope:global align:4 +init__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x80209E38; // type:function size:0x94 scope:global align:4 +exec__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4Item = .text:0x80209ECC; // type:function size:0x58 scope:global align:4 +transit__Q24Game36FSMStateFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg = .text:0x80209F24; // type:function size:0x30 scope:weak align:4 +cleanup__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4Item = .text:0x80209F54; // type:function size:0x4 scope:global align:4 +init__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x80209F58; // type:function size:0xC4 scope:global align:4 +exec__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A01C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A020; // type:function size:0x4 scope:global align:4 +init__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x8020A024; // type:function size:0x94 scope:global align:4 +exec__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A0B8; // type:function size:0x58 scope:global align:4 +cleanup__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4Item = .text:0x8020A110; // type:function size:0x4 scope:global align:4 +generatorNewItemParm__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A114; // type:function size:0x4C scope:global align:4 +generatorWrite__Q34Game12ItemUjamushi3MgrFR6StreamPQ24Game11GenItemParm = .text:0x8020A160; // type:function size:0x88 scope:global align:4 +generatorRead__Q34Game12ItemUjamushi3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x8020A1E8; // type:function size:0x64 scope:global align:4 +generatorBirth__Q34Game12ItemUjamushi3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x8020A24C; // type:function size:0x1CC scope:global align:4 +getName__Q34Game12ItemUjamushi7InitArgFv = .text:0x8020A418; // type:function size:0xC scope:weak align:4 +__dt__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A424; // type:function size:0x174 scope:weak align:4 +generatorGetID__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A598; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game12ItemUjamushi3MgrFv = .text:0x8020A5A4; // type:function size:0xC scope:weak align:4 +__ml__36IteratorFv = .text:0x8020A5B0; // type:function size:0x38 scope:weak align:4 +next__36IteratorFv = .text:0x8020A5E8; // type:function size:0xE4 scope:weak align:4 +first__36IteratorFv = .text:0x8020A6CC; // type:function size:0xDC scope:weak align:4 +__dt__37ContainerFv = .text:0x8020A7A8; // type:function size:0x70 scope:weak align:4 +__dt__37ObjectMgrFv = .text:0x8020A818; // type:function size:0x88 scope:weak align:4 +__dt__39TObjectNodeFv = .text:0x8020A8A0; // type:function size:0x60 scope:weak align:4 +__dt__41NodeObjectMgrFv = .text:0x8020A900; // type:function size:0xC8 scope:weak align:4 +getFlockMgr__Q34Game12ItemUjamushi4ItemFv = .text:0x8020A9C8; // type:function size:0x8 scope:weak align:4 +makeTrMatrix__Q34Game12ItemUjamushi4ItemFv = .text:0x8020A9D0; // type:function size:0x4 scope:weak align:4 +getMatrix__Q44Game12ItemUjamushi4Item10DummyShapeFi = .text:0x8020A9D4; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game89FSMItemFv = .text:0x8020A9DC; // type:function size:0x34 scope:weak align:4 +__dt__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x8020AA10; // type:function size:0x118 scope:weak align:4 +isWeed__Q24Game12BaseFlockMgrFi = .text:0x8020AB28; // type:function size:0xAC scope:weak align:4 +isWeed__Q24Game6TFlockFv = .text:0x8020ABD4; // type:function size:0x8 scope:weak align:4 +fear__Q24Game12BaseFlockMgrFi = .text:0x8020ABDC; // type:function size:0xAC scope:weak align:4 +fear__Q24Game6TFlockFv = .text:0x8020AC88; // type:function size:0x8 scope:weak align:4 +__dt__36ObjectMgrFv = .text:0x8020AC90; // type:function size:0x88 scope:weak align:4 +do_update__Q24Game12BaseFlockMgrFv = .text:0x8020AD18; // type:function size:0x4 scope:weak align:4 +__ml__35IteratorFv = .text:0x8020AD1C; // type:function size:0x38 scope:weak align:4 +isVisible__Q34Game12ItemUjamushi3UjaFv = .text:0x8020AD54; // type:function size:0x18 scope:weak align:4 +getRadius__Q24Game6TFlockFv = .text:0x8020AD6C; // type:function size:0x8 scope:weak align:4 +constructor__Q24Game6TFlockFv = .text:0x8020AD74; // type:function size:0x4 scope:weak align:4 +isVisible__Q24Game6TFlockFv = .text:0x8020AD78; // type:function size:0x8 scope:weak align:4 +damaged__Q24Game6TFlockFf = .text:0x8020AD80; // type:function size:0x8 scope:weak align:4 +getNext__Q24Game36TFlockMgrFPv = .text:0x8020AD88; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game36TFlockMgrFv = .text:0x8020ADB4; // type:function size:0x2C scope:weak align:4 +killFlock__Q24Game36TFlockMgrFPQ24Game6TFlock = .text:0x8020ADE0; // type:function size:0x24 scope:weak align:4 +initDependency__Q24Game39NodeItemMgrFv = .text:0x8020AE04; // type:function size:0x1E8 scope:weak align:4 +kill__Q24Game39NodeItemMgrFPQ34Game12ItemUjamushi4Item = .text:0x8020AFEC; // type:function size:0x24 scope:weak align:4 +doAnimation__Q24Game39NodeItemMgrFv = .text:0x8020B010; // type:function size:0x2C scope:weak align:4 +doEntry__Q24Game39NodeItemMgrFv = .text:0x8020B03C; // type:function size:0x2C scope:weak align:4 +doSetView__Q24Game39NodeItemMgrFi = .text:0x8020B068; // type:function size:0x2C scope:weak align:4 +doViewCalc__Q24Game39NodeItemMgrFv = .text:0x8020B094; // type:function size:0x2C scope:weak align:4 +doSimulation__Q24Game39NodeItemMgrFf = .text:0x8020B0C0; // type:function size:0x2C scope:weak align:4 +doDirectDraw__Q24Game39NodeItemMgrFR8Graphics = .text:0x8020B0EC; // type:function size:0x2C scope:weak align:4 +onDamage__Q24Game37ItemStateFPQ34Game12ItemUjamushi4Itemf = .text:0x8020B118; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRCQ28SysShape8KeyEvent = .text:0x8020B11C; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemPQ23Sys8Triangle = .text:0x8020B120; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRQ24Game9PlatEvent = .text:0x8020B124; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRQ24Game9CollEvent = .text:0x8020B128; // type:function size:0x4 scope:weak align:4 +init__Q24Game36FSMStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg = .text:0x8020B12C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B130; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B134; // type:function size:0x4 scope:weak align:4 +resume__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B138; // type:function size:0x4 scope:weak align:4 +restart__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item = .text:0x8020B13C; // type:function size:0x4 scope:weak align:4 +init__Q24Game40StateMachineFPQ34Game12ItemUjamushi4Item = .text:0x8020B140; // type:function size:0x4 scope:weak align:4 +create__Q24Game40StateMachineFi = .text:0x8020B144; // type:function size:0x64 scope:weak align:4 +get__41NodeObjectMgrFPv = .text:0x8020B1A8; // type:function size:0x8 scope:weak align:4 +getNext__41NodeObjectMgrFPv = .text:0x8020B1B0; // type:function size:0x8 scope:weak align:4 +getStart__41NodeObjectMgrFv = .text:0x8020B1B8; // type:function size:0x8 scope:weak align:4 +getEnd__41NodeObjectMgrFv = .text:0x8020B1C0; // type:function size:0x8 scope:weak align:4 +delNode__41NodeObjectMgrFPQ34Game12ItemUjamushi4Item = .text:0x8020B1C8; // type:function size:0x44 scope:weak align:4 +resetMgr__41NodeObjectMgrFv = .text:0x8020B20C; // type:function size:0x18 scope:weak align:4 +birth__40MonoObjectMgrFv = .text:0x8020B224; // type:function size:0x60 scope:weak align:4 +kill__40MonoObjectMgrFPQ34Game12ItemUjamushi3Uja = .text:0x8020B284; // type:function size:0x54 scope:weak align:4 +getNext__40MonoObjectMgrFPv = .text:0x8020B2D8; // type:function size:0x40 scope:weak align:4 +getStart__40MonoObjectMgrFv = .text:0x8020B318; // type:function size:0x30 scope:weak align:4 +getEnd__40MonoObjectMgrFv = .text:0x8020B348; // type:function size:0x8 scope:weak align:4 +getTo__40MonoObjectMgrFv = .text:0x8020B350; // type:function size:0x8 scope:weak align:4 +doAnimation__40MonoObjectMgrFv = .text:0x8020B358; // type:function size:0x50 scope:weak align:4 +doEntry__40MonoObjectMgrFv = .text:0x8020B3A8; // type:function size:0x50 scope:weak align:4 +doSetView__40MonoObjectMgrFi = .text:0x8020B3F8; // type:function size:0x50 scope:weak align:4 +doViewCalc__40MonoObjectMgrFv = .text:0x8020B448; // type:function size:0x50 scope:weak align:4 +doSimulation__40MonoObjectMgrFf = .text:0x8020B498; // type:function size:0x50 scope:weak align:4 +doDirectDraw__40MonoObjectMgrFR8Graphics = .text:0x8020B4E8; // type:function size:0x50 scope:weak align:4 +resetMgr__40MonoObjectMgrFv = .text:0x8020B538; // type:function size:0x18 scope:weak align:4 +clearMgr__40MonoObjectMgrFv = .text:0x8020B550; // type:function size:0x30 scope:weak align:4 +onAlloc__40MonoObjectMgrFv = .text:0x8020B580; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__40MonoObjectMgrFv = .text:0x8020B584; // type:function size:0x3C scope:weak align:4 +get__40MonoObjectMgrFPv = .text:0x8020B5C0; // type:function size:0x10 scope:weak align:4 +doAnimation__37ObjectMgrFv = .text:0x8020B5D0; // type:function size:0x1E4 scope:weak align:4 +doEntry__37ObjectMgrFv = .text:0x8020B7B4; // type:function size:0x1E4 scope:weak align:4 +doSetView__37ObjectMgrFi = .text:0x8020B998; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__37ObjectMgrFv = .text:0x8020BB8C; // type:function size:0x1E4 scope:weak align:4 +doSimulation__37ObjectMgrFf = .text:0x8020BD70; // type:function size:0x1F4 scope:weak align:4 +doDirectDraw__37ObjectMgrFR8Graphics = .text:0x8020BF64; // type:function size:0x1F4 scope:weak align:4 +doAnimation__36ObjectMgrFv = .text:0x8020C158; // type:function size:0x1D4 scope:weak align:4 +doEntry__36ObjectMgrFv = .text:0x8020C32C; // type:function size:0x1D4 scope:weak align:4 +doSetView__36ObjectMgrFi = .text:0x8020C500; // type:function size:0x1D4 scope:weak align:4 +doViewCalc__36ObjectMgrFv = .text:0x8020C6D4; // type:function size:0x1D4 scope:weak align:4 +doSimulation__36ObjectMgrFf = .text:0x8020C8A8; // type:function size:0x1D4 scope:weak align:4 +doDirectDraw__36ObjectMgrFR8Graphics = .text:0x8020CA7C; // type:function size:0x1D4 scope:weak align:4 +getObject__37ContainerFPv = .text:0x8020CC50; // type:function size:0x2C scope:weak align:4 +getAt__37ContainerFi = .text:0x8020CC7C; // type:function size:0x8 scope:weak align:4 +getTo__37ContainerFv = .text:0x8020CC84; // type:function size:0x8 scope:weak align:4 +getObject__36ContainerFPv = .text:0x8020CC8C; // type:function size:0x2C scope:weak align:4 +getAt__36ContainerFi = .text:0x8020CCB8; // type:function size:0x8 scope:weak align:4 +getTo__36ContainerFv = .text:0x8020CCC0; // type:function size:0x8 scope:weak align:4 +alloc__40MonoObjectMgrFi = .text:0x8020CCC8; // type:function size:0x188 scope:weak align:4 +__ct__40MonoObjectMgrFv = .text:0x8020CE50; // type:function size:0x9C scope:weak align:4 +transit__Q24Game40StateMachineFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg = .text:0x8020CEEC; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game40StateMachineFPQ24Game36FSMState = .text:0x8020CF88; // type:function size:0x84 scope:weak align:4 +exec__Q24Game40StateMachineFPQ34Game12ItemUjamushi4Item = .text:0x8020D00C; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x8020D044; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent = .text:0x8020D088; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent = .text:0x8020D0CC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle = .text:0x8020D110; // type:function size:0x44 scope:weak align:4 +getEnd__Q24Game39NodeItemMgrFv = .text:0x8020D154; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game39NodeItemMgrFv = .text:0x8020D180; // type:function size:0x2C scope:weak align:4 +getNext__Q24Game39NodeItemMgrFPv = .text:0x8020D1AC; // type:function size:0x2C scope:weak align:4 +get__Q24Game39NodeItemMgrFPv = .text:0x8020D1D8; // type:function size:0x2C scope:weak align:4 +killAll__Q24Game39NodeItemMgrFv = .text:0x8020D204; // type:function size:0x240 scope:weak align:4 +entry__Q24Game39NodeItemMgrFPQ34Game12ItemUjamushi4Item = .text:0x8020D444; // type:function size:0x84 scope:weak align:4 +__ct__Q24Game39NodeItemMgrFv = .text:0x8020D4C8; // type:function size:0x114 scope:weak align:4 +getEnd__Q24Game36TFlockMgrFv = .text:0x8020D5DC; // type:function size:0x2C scope:weak align:4 +get__Q24Game36TFlockMgrFPv = .text:0x8020D608; // type:function size:0x2C scope:weak align:4 +__sinit_itemUjamushi_cpp = .text:0x8020D634; // type:function size:0x28 scope:local align:4 +@32@__dt__Q24Game36TFlockMgrFv = .text:0x8020D65C; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__40MonoObjectMgrFv = .text:0x8020D664; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__40MonoObjectMgrFR8Graphics = .text:0x8020D66C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__40MonoObjectMgrFf = .text:0x8020D674; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__40MonoObjectMgrFv = .text:0x8020D67C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__40MonoObjectMgrFi = .text:0x8020D684; // type:function size:0x8 scope:weak align:4 +@28@doEntry__40MonoObjectMgrFv = .text:0x8020D68C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__40MonoObjectMgrFv = .text:0x8020D694; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__36ObjectMgrFR8Graphics = .text:0x8020D69C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__36ObjectMgrFf = .text:0x8020D6A4; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__36ObjectMgrFv = .text:0x8020D6AC; // type:function size:0x8 scope:weak align:4 +@28@doSetView__36ObjectMgrFi = .text:0x8020D6B4; // type:function size:0x8 scope:weak align:4 +@28@doEntry__36ObjectMgrFv = .text:0x8020D6BC; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__36ObjectMgrFv = .text:0x8020D6C4; // type:function size:0x8 scope:weak align:4 +@32@getEnd__Q24Game36TFlockMgrFv = .text:0x8020D6CC; // type:function size:0x8 scope:weak align:4 +@32@getStart__Q24Game36TFlockMgrFv = .text:0x8020D6D4; // type:function size:0x8 scope:weak align:4 +@32@getNext__Q24Game36TFlockMgrFPv = .text:0x8020D6DC; // type:function size:0x8 scope:weak align:4 +@32@get__Q24Game36TFlockMgrFPv = .text:0x8020D6E4; // type:function size:0x8 scope:weak align:4 +@32@__dt__Q34Game12ItemUjamushi6UjaMgrFv = .text:0x8020D6EC; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent = .text:0x8020D6F4; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q24Game39NodeItemMgrFv = .text:0x8020D6FC; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__41NodeObjectMgrFv = .text:0x8020D704; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__37ObjectMgrFR8Graphics = .text:0x8020D70C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__37ObjectMgrFf = .text:0x8020D714; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__37ObjectMgrFv = .text:0x8020D71C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__37ObjectMgrFi = .text:0x8020D724; // type:function size:0x8 scope:weak align:4 +@28@doEntry__37ObjectMgrFv = .text:0x8020D72C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__37ObjectMgrFv = .text:0x8020D734; // type:function size:0x8 scope:weak align:4 +@48@getEnd__Q24Game39NodeItemMgrFv = .text:0x8020D73C; // type:function size:0x8 scope:weak align:4 +@48@getStart__Q24Game39NodeItemMgrFv = .text:0x8020D744; // type:function size:0x8 scope:weak align:4 +@48@getNext__Q24Game39NodeItemMgrFPv = .text:0x8020D74C; // type:function size:0x8 scope:weak align:4 +@48@get__Q24Game39NodeItemMgrFPv = .text:0x8020D754; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game12ItemUjamushi3MgrFv = .text:0x8020D75C; // type:function size:0x8 scope:weak align:4 +getInfo__Q26PikiAI7ActWeedFPc = .text:0x8020D764; // type:function size:0x4C scope:global align:4 +__ct__Q26PikiAI7ActWeedFPQ24Game4Piki = .text:0x8020D7B0; // type:function size:0x94 scope:global align:4 +init__Q26PikiAI7ActWeedFPQ26PikiAI9ActionArg = .text:0x8020D844; // type:function size:0x170 scope:global align:4 +decideTarget__Q26PikiAI7ActWeedFv = .text:0x8020D9B4; // type:function size:0x68 scope:global align:4 +initAdjust__Q26PikiAI7ActWeedFv = .text:0x8020DA1C; // type:function size:0x188 scope:global align:4 +calcAttackPos__Q26PikiAI7ActWeedFv = .text:0x8020DBA4; // type:function size:0xD0 scope:global align:4 +exec__Q26PikiAI7ActWeedFv = .text:0x8020DC74; // type:function size:0x840 scope:global align:4 +cleanup__Q26PikiAI7ActWeedFv = .text:0x8020E4B4; // type:function size:0x68 scope:global align:4 +collisionCallback__Q26PikiAI7ActWeedFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8020E51C; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI14ActFlockAttackFPQ24Game4Piki = .text:0x8020E520; // type:function size:0x88 scope:global align:4 +init__Q26PikiAI14ActFlockAttackFPQ26PikiAI9ActionArg = .text:0x8020E5A8; // type:function size:0x138 scope:global align:4 +exec__Q26PikiAI14ActFlockAttackFv = .text:0x8020E6E0; // type:function size:0x324 scope:global align:4 +onKeyEvent__Q26PikiAI14ActFlockAttackFRCQ28SysShape8KeyEvent = .text:0x8020EA04; // type:function size:0x64 scope:global align:4 +cleanup__Q26PikiAI14ActFlockAttackFv = .text:0x8020EA68; // type:function size:0xC scope:global align:4 +getName__Q26PikiAI20FlockAttackActionArgFv = .text:0x8020EA74; // type:function size:0xC scope:weak align:4 +__sinit_aiWeed_cpp = .text:0x8020EA80; // type:function size:0x28 scope:local align:4 +@40@4@onKeyEvent__Q26PikiAI14ActFlockAttackFRCQ28SysShape8KeyEvent = .text:0x8020EAA8; // type:function size:0x14 scope:weak align:4 +update__Q24Game12BaseFlockMgrFv = .text:0x8020EABC; // type:function size:0xE0 scope:global align:4 +getNearestFlock__Q24Game12BaseFlockMgrFR10Vector3 = .text:0x8020EB9C; // type:function size:0x154 scope:global align:4 +attackFlock__Q24Game12BaseFlockMgrFif = .text:0x8020ECF0; // type:function size:0x11C scope:global align:4 +resolveCollision__Q24Game12BaseFlockMgrFf = .text:0x8020EE0C; // type:function size:0x294 scope:global align:4 +doSimpleDraw__Q24Game12BaseFlockMgrFP8ViewportPP12J3DModelDatai = .text:0x8020F0A0; // type:function size:0x198 scope:global align:4 +__sinit_flockMgr_cpp = .text:0x8020F238; // type:function size:0x28 scope:local align:4 +__ct__Q34Game8ItemWeed4WeedFv = .text:0x8020F260; // type:function size:0x38 scope:global align:4 +damaged__Q34Game8ItemWeed4WeedFf = .text:0x8020F298; // type:function size:0x8 scope:global align:4 +makeMatrix__Q34Game8ItemWeed4WeedFv = .text:0x8020F2A0; // type:function size:0xAC scope:global align:4 +__dt__Q24Game32TFlockMgrFv = .text:0x8020F34C; // type:function size:0x100 scope:weak align:4 +__dt__36MonoObjectMgrFv = .text:0x8020F44C; // type:function size:0xA0 scope:weak align:4 +__dt__32ContainerFv = .text:0x8020F4EC; // type:function size:0x70 scope:weak align:4 +getMaxObjects__Q24Game32TFlockMgrFv = .text:0x8020F55C; // type:function size:0x8 scope:weak align:4 +do_update_boundSphere__Q34Game8ItemWeed7WeedMgrFv = .text:0x8020F564; // type:function size:0x4 scope:global align:4 +do_update__Q34Game8ItemWeed7WeedMgrFv = .text:0x8020F568; // type:function size:0x18 scope:global align:4 +init__Q34Game8ItemWeed3FSMFPQ34Game8ItemWeed4Item = .text:0x8020F580; // type:function size:0x84 scope:global align:4 +onInit__Q34Game8ItemWeed4ItemFPQ24Game15CreatureInitArg = .text:0x8020F604; // type:function size:0x15C scope:global align:4 +start__Q24Game35StateMachineFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg = .text:0x8020F760; // type:function size:0x34 scope:weak align:4 +onSetPosition__Q34Game8ItemWeed4ItemFv = .text:0x8020F794; // type:function size:0x268 scope:global align:4 +ignoreAtari__Q34Game8ItemWeed4ItemFPQ24Game8Creature = .text:0x8020F9FC; // type:function size:0x3C scope:global align:4 +updateBoundSphere__Q34Game8ItemWeed4ItemFv = .text:0x8020FA38; // type:function size:0x78 scope:global align:4 +interactFlockAttack__Q34Game8ItemWeed4ItemFRQ24Game19InteractFlockAttack = .text:0x8020FAB0; // type:function size:0x2E0 scope:global align:4 +getFlock__Q24Game32TFlockMgrFi = .text:0x8020FD90; // type:function size:0x2C scope:weak align:4 +getAt__36MonoObjectMgrFi = .text:0x8020FDBC; // type:function size:0x10 scope:weak align:4 +doAI__Q34Game8ItemWeed4ItemFv = .text:0x8020FDCC; // type:function size:0x84 scope:global align:4 +getNumObjects__Q24Game32TFlockMgrFv = .text:0x8020FE50; // type:function size:0x8 scope:weak align:4 +doSimpleDraw__Q34Game8ItemWeed4ItemFP8Viewport = .text:0x8020FE58; // type:function size:0x3C scope:global align:4 +__ct__Q34Game8ItemWeed3MgrFv = .text:0x8020FE94; // type:function size:0x13C scope:global align:4 +doSimpleDraw__Q34Game8ItemWeed3MgrFP8Viewport = .text:0x8020FFD0; // type:function size:0x200 scope:global align:4 +onLoadResources__Q34Game8ItemWeed3MgrFv = .text:0x802101D0; // type:function size:0x4 scope:global align:4 +getCaveName__Q34Game8ItemWeed3MgrFi = .text:0x802101D4; // type:function size:0x8 scope:global align:4 +getCaveID__Q34Game8ItemWeed3MgrFPc = .text:0x802101DC; // type:function size:0x4C scope:global align:4 +init__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4ItemPQ24Game8StateArg = .text:0x80210228; // type:function size:0x4 scope:global align:4 +exec__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4Item = .text:0x8021022C; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4Item = .text:0x80210230; // type:function size:0x4 scope:global align:4 +generatorNewItemParm__Q34Game8ItemWeed3MgrFv = .text:0x80210234; // type:function size:0x54 scope:global align:4 +generatorWrite__Q34Game8ItemWeed3MgrFR6StreamPQ24Game11GenItemParm = .text:0x80210288; // type:function size:0xB0 scope:global align:4 +generatorRead__Q34Game8ItemWeed3MgrFR6StreamPQ24Game11GenItemParmUl = .text:0x80210338; // type:function size:0x8C scope:global align:4 +generatorBirth__Q34Game8ItemWeed3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm = .text:0x802103C4; // type:function size:0x1DC scope:global align:4 +getName__Q34Game8ItemWeed7InitArgFv = .text:0x802105A0; // type:function size:0xC scope:weak align:4 +__dt__Q34Game8ItemWeed3MgrFv = .text:0x802105AC; // type:function size:0x134 scope:weak align:4 +doNew__Q34Game8ItemWeed3MgrFv = .text:0x802106E0; // type:function size:0x148 scope:weak align:4 +generatorGetID__Q34Game8ItemWeed3MgrFv = .text:0x80210828; // type:function size:0xC scope:weak align:4 +generatorLocalVersion__Q34Game8ItemWeed3MgrFv = .text:0x80210834; // type:function size:0xC scope:weak align:4 +getCreatureName__Q34Game8ItemWeed4ItemFv = .text:0x80210840; // type:function size:0x8 scope:weak align:4 +getFlockMgr__Q34Game8ItemWeed4ItemFv = .text:0x80210848; // type:function size:0x8 scope:weak align:4 +makeTrMatrix__Q34Game8ItemWeed4ItemFv = .text:0x80210850; // type:function size:0x4 scope:weak align:4 +getMatrix__Q44Game8ItemWeed4Item10DummyShapeFi = .text:0x80210854; // type:function size:0x8 scope:weak align:4 +doAI__Q24Game74FSMItemFv = .text:0x8021085C; // type:function size:0x34 scope:weak align:4 +__dt__Q34Game8ItemWeed7WeedMgrFv = .text:0x80210890; // type:function size:0x118 scope:weak align:4 +__dt__32ObjectMgrFv = .text:0x802109A8; // type:function size:0x88 scope:weak align:4 +isWeed__Q34Game8ItemWeed4WeedFv = .text:0x80210A30; // type:function size:0x10 scope:weak align:4 +getNext__Q24Game32TFlockMgrFPv = .text:0x80210A40; // type:function size:0x2C scope:weak align:4 +getStart__Q24Game32TFlockMgrFv = .text:0x80210A6C; // type:function size:0x2C scope:weak align:4 +killFlock__Q24Game32TFlockMgrFPQ24Game6TFlock = .text:0x80210A98; // type:function size:0x24 scope:weak align:4 +onDamage__Q24Game32ItemStateFPQ34Game8ItemWeed4Itemf = .text:0x80210ABC; // type:function size:0x4 scope:weak align:4 +onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRCQ28SysShape8KeyEvent = .text:0x80210AC0; // type:function size:0x4 scope:weak align:4 +onBounce__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemPQ23Sys8Triangle = .text:0x80210AC4; // type:function size:0x4 scope:weak align:4 +onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRQ24Game9PlatEvent = .text:0x80210AC8; // type:function size:0x4 scope:weak align:4 +onCollision__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRQ24Game9CollEvent = .text:0x80210ACC; // type:function size:0x4 scope:weak align:4 +init__Q24Game31FSMStateFPQ34Game8ItemWeed4ItemPQ24Game8StateArg = .text:0x80210AD0; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210AD4; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210AD8; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210ADC; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ34Game8ItemWeed4Item = .text:0x80210AE0; // type:function size:0x4 scope:weak align:4 +transit__Q24Game31FSMStateFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg = .text:0x80210AE4; // type:function size:0x30 scope:weak align:4 +init__Q24Game35StateMachineFPQ34Game8ItemWeed4Item = .text:0x80210B14; // type:function size:0x4 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x80210B18; // type:function size:0x64 scope:weak align:4 +birth__36MonoObjectMgrFv = .text:0x80210B7C; // type:function size:0x60 scope:weak align:4 +kill__36MonoObjectMgrFPQ34Game8ItemWeed4Weed = .text:0x80210BDC; // type:function size:0x54 scope:weak align:4 +getNext__36MonoObjectMgrFPv = .text:0x80210C30; // type:function size:0x40 scope:weak align:4 +getStart__36MonoObjectMgrFv = .text:0x80210C70; // type:function size:0x30 scope:weak align:4 +getEnd__36MonoObjectMgrFv = .text:0x80210CA0; // type:function size:0x8 scope:weak align:4 +getTo__36MonoObjectMgrFv = .text:0x80210CA8; // type:function size:0x8 scope:weak align:4 +doAnimation__36MonoObjectMgrFv = .text:0x80210CB0; // type:function size:0x50 scope:weak align:4 +doEntry__36MonoObjectMgrFv = .text:0x80210D00; // type:function size:0x50 scope:weak align:4 +doSetView__36MonoObjectMgrFi = .text:0x80210D50; // type:function size:0x50 scope:weak align:4 +doViewCalc__36MonoObjectMgrFv = .text:0x80210DA0; // type:function size:0x50 scope:weak align:4 +doSimulation__36MonoObjectMgrFf = .text:0x80210DF0; // type:function size:0x50 scope:weak align:4 +doDirectDraw__36MonoObjectMgrFR8Graphics = .text:0x80210E40; // type:function size:0x50 scope:weak align:4 +resetMgr__36MonoObjectMgrFv = .text:0x80210E90; // type:function size:0x18 scope:weak align:4 +clearMgr__36MonoObjectMgrFv = .text:0x80210EA8; // type:function size:0x30 scope:weak align:4 +onAlloc__36MonoObjectMgrFv = .text:0x80210ED8; // type:function size:0x4 scope:weak align:4 +getEmptyIndex__36MonoObjectMgrFv = .text:0x80210EDC; // type:function size:0x3C scope:weak align:4 +get__36MonoObjectMgrFPv = .text:0x80210F18; // type:function size:0x10 scope:weak align:4 +getObject__32ContainerFPv = .text:0x80210F28; // type:function size:0x2C scope:weak align:4 +getAt__32ContainerFi = .text:0x80210F54; // type:function size:0x8 scope:weak align:4 +getTo__32ContainerFv = .text:0x80210F5C; // type:function size:0x8 scope:weak align:4 +doDirectDraw__32ObjectMgrFR8Graphics = .text:0x80210F64; // type:function size:0x1D4 scope:weak align:4 +isDone__31IteratorFv = .text:0x80211138; // type:function size:0x4C scope:weak align:4 +doSimulation__32ObjectMgrFf = .text:0x80211184; // type:function size:0x1D4 scope:weak align:4 +doViewCalc__32ObjectMgrFv = .text:0x80211358; // type:function size:0x1D4 scope:weak align:4 +doSetView__32ObjectMgrFi = .text:0x8021152C; // type:function size:0x1D4 scope:weak align:4 +doEntry__32ObjectMgrFv = .text:0x80211700; // type:function size:0x1D4 scope:weak align:4 +doAnimation__32ObjectMgrFv = .text:0x802118D4; // type:function size:0x1D4 scope:weak align:4 +alloc__36MonoObjectMgrFi = .text:0x80211AA8; // type:function size:0x188 scope:weak align:4 +__ct__36MonoObjectMgrFv = .text:0x80211C30; // type:function size:0x9C scope:weak align:4 +transit__Q24Game35StateMachineFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg = .text:0x80211CCC; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x80211D68; // type:function size:0x84 scope:weak align:4 +exec__Q24Game35StateMachineFPQ34Game8ItemWeed4Item = .text:0x80211DEC; // type:function size:0x38 scope:weak align:4 +onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x80211E24; // type:function size:0x44 scope:weak align:4 +platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent = .text:0x80211E68; // type:function size:0x44 scope:weak align:4 +collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent = .text:0x80211EAC; // type:function size:0x44 scope:weak align:4 +bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle = .text:0x80211EF0; // type:function size:0x44 scope:weak align:4 +isFlagAlive__Q24Game32TFlockMgrFi = .text:0x80211F34; // type:function size:0x14 scope:weak align:4 +getEnd__Q24Game32TFlockMgrFv = .text:0x80211F48; // type:function size:0x2C scope:weak align:4 +get__Q24Game32TFlockMgrFPv = .text:0x80211F74; // type:function size:0x2C scope:weak align:4 +__ml__31IteratorFv = .text:0x80211FA0; // type:function size:0x38 scope:weak align:4 +next__31IteratorFv = .text:0x80211FD8; // type:function size:0xE4 scope:weak align:4 +first__31IteratorFv = .text:0x802120BC; // type:function size:0xDC scope:weak align:4 +__sinit_itemWeed_cpp = .text:0x80212198; // type:function size:0x28 scope:local align:4 +@32@__dt__Q24Game32TFlockMgrFv = .text:0x802121C0; // type:function size:0x8 scope:weak align:4 +@28@resetMgr__36MonoObjectMgrFv = .text:0x802121C8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__36MonoObjectMgrFR8Graphics = .text:0x802121D0; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__36MonoObjectMgrFf = .text:0x802121D8; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__36MonoObjectMgrFv = .text:0x802121E0; // type:function size:0x8 scope:weak align:4 +@28@doSetView__36MonoObjectMgrFi = .text:0x802121E8; // type:function size:0x8 scope:weak align:4 +@28@doEntry__36MonoObjectMgrFv = .text:0x802121F0; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__36MonoObjectMgrFv = .text:0x802121F8; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__32ObjectMgrFR8Graphics = .text:0x80212200; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__32ObjectMgrFf = .text:0x80212208; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__32ObjectMgrFv = .text:0x80212210; // type:function size:0x8 scope:weak align:4 +@28@doSetView__32ObjectMgrFi = .text:0x80212218; // type:function size:0x8 scope:weak align:4 +@28@doEntry__32ObjectMgrFv = .text:0x80212220; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__32ObjectMgrFv = .text:0x80212228; // type:function size:0x8 scope:weak align:4 +@32@getEnd__Q24Game32TFlockMgrFv = .text:0x80212230; // type:function size:0x8 scope:weak align:4 +@32@getStart__Q24Game32TFlockMgrFv = .text:0x80212238; // type:function size:0x8 scope:weak align:4 +@32@getNext__Q24Game32TFlockMgrFPv = .text:0x80212240; // type:function size:0x8 scope:weak align:4 +@32@get__Q24Game32TFlockMgrFPv = .text:0x80212248; // type:function size:0x8 scope:weak align:4 +@32@__dt__Q34Game8ItemWeed7WeedMgrFv = .text:0x80212250; // type:function size:0x8 scope:weak align:4 +@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent = .text:0x80212258; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q34Game8ItemWeed3MgrFv = .text:0x80212260; // type:function size:0x8 scope:weak align:4 +__ct__Q26PikiAI9ActBridgeFPQ24Game4Piki = .text:0x80212268; // type:function size:0xFC scope:global align:4 +init__Q26PikiAI9ActBridgeFPQ26PikiAI9ActionArg = .text:0x80212364; // type:function size:0xC8 scope:global align:4 +initFollow__Q26PikiAI9ActBridgeFv = .text:0x8021242C; // type:function size:0x68 scope:global align:4 +exec__Q26PikiAI9ActBridgeFv = .text:0x80212494; // type:function size:0x31C scope:global align:4 +cleanup__Q26PikiAI9ActBridgeFv = .text:0x802127B0; // type:function size:0x5C scope:global align:4 +platCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiRQ24Game9PlatEvent = .text:0x8021280C; // type:function size:0x110 scope:global align:4 +collisionCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8021291C; // type:function size:0x4 scope:global align:4 +bounceCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiPQ23Sys8Triangle = .text:0x80212920; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI9ActBridgeFRCQ28SysShape8KeyEvent = .text:0x80212924; // type:function size:0x4 scope:global align:4 +@52@4@onKeyEvent__Q26PikiAI9ActBridgeFRCQ28SysShape8KeyEvent = .text:0x80212928; // type:function size:0x14 scope:weak align:4 +__ct__Q26PikiAI7ActTekiFPQ24Game4Piki = .text:0x8021293C; // type:function size:0x90 scope:global align:4 +init__Q26PikiAI7ActTekiFPQ26PikiAI9ActionArg = .text:0x802129CC; // type:function size:0x10C scope:global align:4 +exec__Q26PikiAI7ActTekiFv = .text:0x80212AD8; // type:function size:0x178 scope:global align:4 +emotion_success__Q26PikiAI7ActTekiFv = .text:0x80212C50; // type:function size:0x50 scope:global align:4 +makeTarget__Q26PikiAI7ActTekiFv = .text:0x80212CA0; // type:function size:0x314 scope:global align:4 +test_0__Q26PikiAI7ActTekiFv = .text:0x80212FB4; // type:function size:0x344 scope:global align:4 +doDirectDraw__Q26PikiAI7ActTekiFR8Graphics = .text:0x802132F8; // type:function size:0x58 scope:global align:4 +setTimer__Q26PikiAI7ActTekiFv = .text:0x80213350; // type:function size:0x130 scope:global align:4 +cleanup__Q26PikiAI7ActTekiFv = .text:0x80213480; // type:function size:0x4 scope:global align:4 +collisionCallback__Q26PikiAI7ActTekiFPQ24Game4PikiRQ24Game9CollEvent = .text:0x80213484; // type:function size:0xE8 scope:global align:4 +onKeyEvent__Q26PikiAI7ActTekiFRCQ28SysShape8KeyEvent = .text:0x8021356C; // type:function size:0x4 scope:global align:4 +getNextAIType__Q26PikiAI7ActTekiFv = .text:0x80213570; // type:function size:0x8 scope:weak align:4 +@72@4@onKeyEvent__Q26PikiAI7ActTekiFRCQ28SysShape8KeyEvent = .text:0x80213578; // type:function size:0x14 scope:weak align:4 +init__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021358C; // type:function size:0x8B0 scope:global align:4 +check_DemoInout__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x80213E3C; // type:function size:0x288 scope:global align:4 +on_section_fadeout__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x802140C4; // type:function size:0xC scope:global align:4 +on_demo_timer__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionUl = .text:0x802140D0; // type:function size:0xB28 scope:global align:4 +exec__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x80214BF8; // type:function size:0x6E0 scope:global align:4 +__ct__Q32og6Screen18DispMemberSMenuAllFv = .text:0x802152D8; // type:function size:0x1DC scope:weak align:4 +onOrimaDown__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectioni = .text:0x802154B4; // type:function size:0xD4 scope:global align:4 +onHoleIn__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ34Game8ItemCave4Item = .text:0x80215588; // type:function size:0xDC scope:global align:4 +onMovieCommand__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectioni = .text:0x80215664; // type:function size:0x4 scope:global align:4 +onMovieStart__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x80215668; // type:function size:0x158 scope:global align:4 +onMovieDone__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x802157C0; // type:function size:0x1A7C scope:global align:4 +needRepayDemo__Q34Game10SingleGame9GameStateFv = .text:0x8021723C; // type:function size:0x74 scope:global align:4 +startRepayDemo__Q34Game10SingleGame9GameStateFv = .text:0x802172B0; // type:function size:0x140 scope:global align:4 +updateRepayDemo__Q34Game10SingleGame9GameStateFv = .text:0x802173F0; // type:function size:0xA8 scope:global align:4 +draw__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80217498; // type:function size:0x78 scope:global align:4 +cleanup__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection = .text:0x80217510; // type:function size:0x68 scope:global align:4 +getSize__Q32og6Screen14DispMemberSaveFv = .text:0x80217578; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen14DispMemberSaveFv = .text:0x80217580; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen14DispMemberSaveFv = .text:0x8021758C; // type:function size:0x10 scope:weak align:4 +getSize__Q32og6Screen19DispMemberSMenuContFv = .text:0x8021759C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen19DispMemberSMenuContFv = .text:0x802175A4; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen19DispMemberSMenuContFv = .text:0x802175B0; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen22DispMemberSMenuPauseVSFv = .text:0x802175C4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen22DispMemberSMenuPauseVSFv = .text:0x802175CC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen22DispMemberSMenuPauseVSFv = .text:0x802175D8; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberSMenuMapFv = .text:0x802175EC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberSMenuMapFv = .text:0x802175F4; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberSMenuMapFv = .text:0x80217600; // type:function size:0x10 scope:weak align:4 +getSize__Q32og6Screen19DispMemberSMenuItemFv = .text:0x80217610; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen19DispMemberSMenuItemFv = .text:0x80217618; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen19DispMemberSMenuItemFv = .text:0x80217624; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen27DispMemberSMenuPauseDoukutuFv = .text:0x80217638; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen27DispMemberSMenuPauseDoukutuFv = .text:0x80217640; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen27DispMemberSMenuPauseDoukutuFv = .text:0x8021764C; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen20DispMemberSMenuPauseFv = .text:0x80217660; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen20DispMemberSMenuPauseFv = .text:0x80217668; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen20DispMemberSMenuPauseFv = .text:0x80217674; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen18DispMemberSMenuAllFv = .text:0x80217688; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen18DispMemberSMenuAllFv = .text:0x80217690; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen18DispMemberSMenuAllFv = .text:0x8021769C; // type:function size:0x10 scope:weak align:4 +doSetSubMemberAll__Q32og6Screen18DispMemberSMenuAllFv = .text:0x802176AC; // type:function size:0x6C scope:weak align:4 +__sinit_singleGS_MainGame_cpp = .text:0x80217718; // type:function size:0x28 scope:local align:4 +init__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80217740; // type:function size:0x304 scope:global align:4 +on_section_fadeout__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80217A44; // type:function size:0xC scope:global align:4 +exec__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80217A50; // type:function size:0x2D4 scope:global align:4 +draw__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80217D24; // type:function size:0x98 scope:global align:4 +check_SMenu__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80217DBC; // type:function size:0x48C scope:global align:4 +cleanup__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection = .text:0x80218248; // type:function size:0x68 scope:global align:4 +onOrimaDown__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectioni = .text:0x802182B0; // type:function size:0xD4 scope:global align:4 +onFountainReturn__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ34Game15ItemBigFountain4Item = .text:0x80218384; // type:function size:0x104 scope:global align:4 +onNextFloor__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ34Game8ItemHole4Item = .text:0x80218488; // type:function size:0x144 scope:global align:4 +onMovieCommand__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectioni = .text:0x802185CC; // type:function size:0x5F0 scope:global align:4 +onMovieStart__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x80218BBC; // type:function size:0x490 scope:global align:4 +onMovieDone__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8021904C; // type:function size:0xEB4 scope:global align:4 +__sinit_singleGS_CaveGame_cpp = .text:0x80219F00; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame15MainResultStateFv = .text:0x80219F28; // type:function size:0x150 scope:global align:4 +__dt__Q34Game6Result5TNodeFv = .text:0x8021A078; // type:function size:0x60 scope:weak align:4 +init__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021A0D8; // type:function size:0x104 scope:global align:4 +beforeSave__Q34Game10SingleGame15MainResultStateFv = .text:0x8021A1DC; // type:function size:0x24 scope:global align:4 +loadResource__Q34Game10SingleGame15MainResultStateFv = .text:0x8021A200; // type:function size:0x88 scope:global align:4 +exec__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSection = .text:0x8021A288; // type:function size:0x3E8 scope:global align:4 +onMovieDone__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8021A670; // type:function size:0x30 scope:global align:4 +createResultNodes__Q34Game10SingleGame15MainResultStateFv = .text:0x8021A6A0; // type:function size:0x35C scope:global align:4 +draw__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021A9FC; // type:function size:0x94 scope:global align:4 +cleanup__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSection = .text:0x8021AA90; // type:function size:0x7C scope:global align:4 +getSize__Q32kh6Screen20DispDayEndResultTitlFv = .text:0x8021AB0C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultTitlFv = .text:0x8021AB14; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultTitlFv = .text:0x8021AB1C; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB30; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB38; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB40; // type:function size:0x14 scope:weak align:4 +doSetSubMemberAll__Q32kh6Screen16DispDayEndResultFv = .text:0x8021AB54; // type:function size:0x54 scope:weak align:4 +invoke__46DelegateFv = .text:0x8021ABA8; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_MainResult_cpp = .text:0x8021ABD8; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame15CaveResultStateFv = .text:0x8021AC00; // type:function size:0xF8 scope:global align:4 +init__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021ACF8; // type:function size:0x124 scope:global align:4 +loadResource__Q34Game10SingleGame15CaveResultStateFv = .text:0x8021AE1C; // type:function size:0x240 scope:global align:4 +exec__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection = .text:0x8021B05C; // type:function size:0x2E8 scope:global align:4 +draw__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021B344; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection = .text:0x8021B404; // type:function size:0xC4 scope:global align:4 +createResultNodes__Q34Game10SingleGame15CaveResultStateFv = .text:0x8021B4C8; // type:function size:0x40C scope:global align:4 +invoke__46DelegateFv = .text:0x8021B8D4; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_CaveResult_cpp = .text:0x8021B904; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame11SelectStateFv = .text:0x8021B92C; // type:function size:0xE4 scope:global align:4 +init__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021BA10; // type:function size:0x98 scope:global align:4 +initNext__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection = .text:0x8021BAA8; // type:function size:0x260 scope:global align:4 +init__Q34Game8WorldMap4BaseFRQ34Game8WorldMap7InitArg = .text:0x8021BD08; // type:function size:0x4 scope:weak align:4 +dvdload__Q34Game10SingleGame11SelectStateFv = .text:0x8021BD0C; // type:function size:0x30C scope:global align:4 +loadResource__Q34Game8WorldMap4BaseFv = .text:0x8021C018; // type:function size:0x4 scope:weak align:4 +exec__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection = .text:0x8021C01C; // type:function size:0x2AC scope:global align:4 +update__Q34Game8WorldMap4BaseFRQ34Game8WorldMap9UpdateArg = .text:0x8021C2C8; // type:function size:0x4 scope:weak align:4 +draw__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021C2CC; // type:function size:0x2D0 scope:global align:4 +draw4th__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C59C; // type:function size:0x4 scope:weak align:4 +draw3rd__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C5A0; // type:function size:0x4 scope:weak align:4 +draw2nd__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C5A4; // type:function size:0x4 scope:weak align:4 +draw1st__Q34Game8WorldMap4BaseFR8Graphics = .text:0x8021C5A8; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection = .text:0x8021C5AC; // type:function size:0xF4 scope:global align:4 +invoke__42DelegateFv = .text:0x8021C6A0; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_WorldMap_cpp = .text:0x8021C6D0; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10SingleGame9FileStateFv = .text:0x8021C6F8; // type:function size:0xA8 scope:global align:4 +init__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021C7A0; // type:function size:0x9C scope:global align:4 +dvdload__Q34Game10SingleGame9FileStateFv = .text:0x8021C83C; // type:function size:0x19C scope:global align:4 +exec__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection = .text:0x8021C9D8; // type:function size:0x194 scope:global align:4 +startGame__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection = .text:0x8021CB6C; // type:function size:0x27C scope:global align:4 +draw__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021CDE8; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection = .text:0x8021CEA8; // type:function size:0xD4 scope:global align:4 +invoke__39DelegateFv = .text:0x8021CF7C; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_FileSelect_cpp = .text:0x8021CFAC; // type:function size:0x28 scope:local align:4 +write__Q24Game8PlayDataFR6Stream = .text:0x8021CFD4; // type:function size:0x740 scope:global align:4 +read__Q24Game8PlayDataFR6Stream = .text:0x8021D714; // type:function size:0x404 scope:global align:4 +read__Q34Game8PlayData8LimitGenFR6Stream = .text:0x8021DB18; // type:function size:0x44 scope:global align:4 +write__Q34Game8PlayData8LimitGenFR6Stream = .text:0x8021DB5C; // type:function size:0x78 scope:global align:4 +write__Q24Game16PelletCropMemoryFR6Stream = .text:0x8021DBD4; // type:function size:0x208 scope:global align:4 +read__Q24Game16PelletCropMemoryFR6Stream = .text:0x8021DDDC; // type:function size:0x150 scope:global align:4 +write__Q24Game10OlimarDataFR6Stream = .text:0x8021DF2C; // type:function size:0x7C scope:global align:4 +read__Q24Game10OlimarDataFR6Stream = .text:0x8021DFA8; // type:function size:0x5C scope:global align:4 +write__Q24Game12CaveSaveDataFR6Stream = .text:0x8021E004; // type:function size:0x198 scope:global align:4 +read__Q24Game12CaveSaveDataFR6StreamUl = .text:0x8021E19C; // type:function size:0xD0 scope:global align:4 +getPosition__Q25Radar5PointFv = .text:0x8021E26C; // type:function size:0x68 scope:global align:4 +__ct__Q25Radar3MgrFv = .text:0x8021E2D4; // type:function size:0xF4 scope:global align:4 +__ct__Q25Radar5PointFv = .text:0x8021E3C8; // type:function size:0x50 scope:weak align:4 +__dt__Q25Radar5PointFv = .text:0x8021E418; // type:function size:0x60 scope:weak align:4 +clear__Q25Radar3MgrFv = .text:0x8021E478; // type:function size:0xB4 scope:global align:4 +bornFuefuki__Q25Radar3MgrFv = .text:0x8021E52C; // type:function size:0x10 scope:global align:4 +dieFuefuki__Q25Radar3MgrFv = .text:0x8021E53C; // type:function size:0x18 scope:global align:4 +fuefuki__Q25Radar3MgrFv = .text:0x8021E554; // type:function size:0x10 scope:global align:4 +entry__Q25Radar3MgrFPQ24Game15TPositionObjectQ25Radar10cRadarTypeUl = .text:0x8021E564; // type:function size:0x70 scope:global align:4 +exit__Q25Radar3MgrFPQ24Game15TPositionObject = .text:0x8021E5D4; // type:function size:0x3C scope:global align:4 +getNumOtakaraItems__Q25Radar3MgrFv = .text:0x8021E610; // type:function size:0x1C scope:global align:4 +attach__Q25Radar3MgrFPQ24Game15TPositionObjectQ25Radar10cRadarTypeUl = .text:0x8021E62C; // type:function size:0x64 scope:global align:4 +detach__Q25Radar3MgrFPQ24Game15TPositionObject = .text:0x8021E690; // type:function size:0xC4 scope:global align:4 +calcNearestTreasure__Q25Radar3MgrFR10Vector3fR10Vector3Rf = .text:0x8021E754; // type:function size:0x1E0 scope:global align:4 +ogDummpyInit__Q25Radar3MgrFv = .text:0x8021E934; // type:function size:0x568 scope:global align:4 +getPosition__7OgDummyFv = .text:0x8021EE9C; // type:function size:0x1C scope:weak align:4 +__ct__Q34Game10SingleGame10MovieStateFv = .text:0x8021EEB8; // type:function size:0x8C scope:global align:4 +init__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8021EF44; // type:function size:0x290 scope:global align:4 +exec__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSection = .text:0x8021F1D4; // type:function size:0x114 scope:global align:4 +draw__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8021F2E8; // type:function size:0x40 scope:global align:4 +cleanup__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSection = .text:0x8021F328; // type:function size:0x48 scope:global align:4 +__sinit_singleGS_Movie_cpp = .text:0x8021F370; // type:function size:0x40 scope:local align:4 +demoCheck__Q24Game4NaviFv = .text:0x8021F3B0; // type:function size:0x1790 scope:global align:4 +distance__10Vector3FR10Vector3 = .text:0x80220B40; // type:function size:0x58 scope:weak align:4 +next__Q24Game30EnemyIteratorFv = .text:0x80220B98; // type:function size:0xE4 scope:weak align:4 +isDone__Q24Game30EnemyIteratorFv = .text:0x80220C7C; // type:function size:0x4C scope:weak align:4 +__ct__Q24Game12MoviePlayArgFPcPcP39IDelegate3Ul = .text:0x80220CC8; // type:function size:0x40 scope:weak align:4 +first__Q24Game30EnemyIteratorFv = .text:0x80220D08; // type:function size:0xDC scope:weak align:4 +checkDemoNaviAndPiki__Q24Game4NaviFRQ23Sys6Sphere = .text:0x80220DE4; // type:function size:0x1C4 scope:global align:4 +__ml__Q24Game30EnemyIteratorFv = .text:0x80220FA8; // type:function size:0x38 scope:weak align:4 +__sinit_navi_demoCheck_cpp = .text:0x80220FE0; // type:function size:0x28 scope:local align:4 +__ct__Q34Game15IllustratedBook6CameraFP10Controller = .text:0x80221008; // type:function size:0x284 scope:global align:4 +startVibration__Q34Game15IllustratedBook6CameraFi = .text:0x8022128C; // type:function size:0x1D8 scope:global align:4 +move__Q34Game15IllustratedBook6CameraFRC10Vector3 = .text:0x80221464; // type:function size:0x88 scope:global align:4 +setTarget__Q34Game15IllustratedBook6CameraFPQ24Game8Creature = .text:0x802214EC; // type:function size:0x128 scope:global align:4 +resetControl__Q34Game15IllustratedBook6CameraFv = .text:0x80221614; // type:function size:0x274 scope:global align:4 +doUpdate__Q34Game15IllustratedBook6CameraFv = .text:0x80221888; // type:function size:0x904 scope:global align:4 +updateCameraShake__Q34Game15IllustratedBook6CameraFv = .text:0x8022218C; // type:function size:0x204 scope:global align:4 +updateFocus__Q34Game15IllustratedBook6CameraFv = .text:0x80222390; // type:function size:0xE8 scope:global align:4 +addFovy__Q34Game15IllustratedBook6CameraFf = .text:0x80222478; // type:function size:0x54 scope:global align:4 +__ct__Q34Game10SingleGame10ZukanStateFv = .text:0x802224CC; // type:function size:0xEC scope:global align:4 +init__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x802225B8; // type:function size:0x36C scope:global align:4 +setMode__Q34Game10SingleGame10ZukanStateFQ44Game10SingleGame10ZukanState5CMode = .text:0x80222924; // type:function size:0x14 scope:global align:4 +exec__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x80222938; // type:function size:0x72C scope:global align:4 +execModeChange__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionQ44Game10SingleGame10ZukanState5CMode = .text:0x80223064; // type:function size:0x16C scope:global align:4 +execChangeTeki__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802231D0; // type:function size:0xE0 scope:global align:4 +execTeki__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802232B0; // type:function size:0x5A4 scope:global align:4 +startWipe__Q34Game10SingleGame10ZukanStateFf = .text:0x80223854; // type:function size:0x18 scope:global align:4 +createEnemy__Q34Game10SingleGame10ZukanStateFi = .text:0x8022386C; // type:function size:0x3C scope:global align:4 +execChangePellet__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802238A8; // type:function size:0xEC scope:global align:4 +execPellet__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x80223994; // type:function size:0xB4 scope:global align:4 +getMaxPelletID__Q34Game10SingleGame10ZukanStateFv = .text:0x80223A48; // type:function size:0x3C scope:global align:4 +getCurrentPelletConfig__Q34Game10SingleGame10ZukanStateFi = .text:0x80223A84; // type:function size:0x7C scope:global align:4 +convertPelletID__Q34Game10SingleGame10ZukanStateFRii = .text:0x80223B00; // type:function size:0x80 scope:global align:4 +draw__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80223B80; // type:function size:0x274 scope:global align:4 +drawGradationEffect__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80223DF4; // type:function size:0x578 scope:global align:4 +drawLightEffect__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8022436C; // type:function size:0x7C0 scope:global align:4 +dvdloadA__Q34Game10SingleGame10ZukanStateFv = .text:0x80224B2C; // type:function size:0x994 scope:global align:4 +createTeki__Q34Game10SingleGame10ZukanStateFi = .text:0x802254C0; // type:function size:0xE4 scope:global align:4 +createPellet__Q34Game10SingleGame10ZukanStateFi = .text:0x802255A4; // type:function size:0x40 scope:global align:4 +dvdloadB_teki__Q34Game10SingleGame10ZukanStateFv = .text:0x802255E4; // type:function size:0xCDC scope:global align:4 +dvdloadB_pellet__Q34Game10SingleGame10ZukanStateFv = .text:0x802262C0; // type:function size:0x4B0 scope:global align:4 +clearHeapB_common__Q34Game10SingleGame10ZukanStateFv = .text:0x80226770; // type:function size:0x90 scope:global align:4 +clearHeapB_teki__Q34Game10SingleGame10ZukanStateFv = .text:0x80226800; // type:function size:0x3BC scope:global align:4 +clearHeapB_pellet__Q34Game10SingleGame10ZukanStateFv = .text:0x80226BBC; // type:function size:0x174 scope:global align:4 +clearHeaps__Q34Game10SingleGame10ZukanStateFv = .text:0x80226D30; // type:function size:0x3AC scope:global align:4 +cleanup__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection = .text:0x802270DC; // type:function size:0xA8 scope:global align:4 +getSize__Q28Morimura19DispMemberZukanItemFv = .text:0x80227184; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura19DispMemberZukanItemFv = .text:0x8022718C; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura19DispMemberZukanItemFv = .text:0x80227198; // type:function size:0x10 scope:weak align:4 +getSize__Q28Morimura20DispMemberZukanEnemyFv = .text:0x802271A8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura20DispMemberZukanEnemyFv = .text:0x802271B0; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura20DispMemberZukanEnemyFv = .text:0x802271BC; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game15IllustratedBook6CameraFv = .text:0x802271CC; // type:function size:0xD0 scope:weak align:4 +getLookAtPosition___12LookAtCameraFv = .text:0x8022729C; // type:function size:0x1C scope:weak align:4 +on_getPositionPtr__12LookAtCameraFv = .text:0x802272B8; // type:function size:0x8 scope:weak align:4 +getTargetDistance__6CameraFv = .text:0x802272C0; // type:function size:0x8 scope:weak align:4 +isSpecialCamera__6CameraFv = .text:0x802272C8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game15IllustratedBook11EnemyTexMgrFv = .text:0x802272D0; // type:function size:0x70 scope:weak align:4 +__dt__Q34Game15IllustratedBook10DebugParmsFv = .text:0x80227340; // type:function size:0x60 scope:weak align:4 +invoke__41DelegateFv = .text:0x802273A0; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_Zukan_cpp = .text:0x802273D0; // type:function size:0x28 scope:local align:4 +__ct__Q34Game12ResultTexMgr3MgrFv = .text:0x802273F8; // type:function size:0x50 scope:global align:4 +__dt__Q34Game12ResultTexMgr3MgrFv = .text:0x80227448; // type:function size:0x60 scope:global align:4 +create__Q34Game12ResultTexMgr3MgrFRQ34Game12ResultTexMgr3Arg = .text:0x802274A8; // type:function size:0x340 scope:global align:4 +getOtakaraItemTexture__Q34Game12ResultTexMgr3MgrFi = .text:0x802277E8; // type:function size:0xB8 scope:global align:4 +getOtakaraTexture__Q34Game12ResultTexMgr3MgrFi = .text:0x802278A0; // type:function size:0x24 scope:global align:4 +getItemTexture__Q34Game12ResultTexMgr3MgrFi = .text:0x802278C4; // type:function size:0x24 scope:global align:4 +getCarcassTexture__Q34Game12ResultTexMgr3MgrFv = .text:0x802278E8; // type:function size:0x28 scope:global align:4 +alloc__Q44Game12ResultTexMgr3Mgr8TexturesFi = .text:0x80227910; // type:function size:0x64 scope:global align:4 +getTexture__Q44Game12ResultTexMgr3Mgr8TexturesFi = .text:0x80227974; // type:function size:0x74 scope:global align:4 +__ct__Q34Game6Result5TNodeFv = .text:0x802279E8; // type:function size:0x5C scope:global align:4 +setTNode__Q34Game6Result5TNodeFUxP10JUTTextureiii = .text:0x80227A44; // type:function size:0x1C scope:global align:4 +setTNode__Q34Game6Result5TNodeFUxP10JUTTextureiiii = .text:0x80227A60; // type:function size:0x24 scope:global align:4 +convertByMorimun__Q34Game6Result5TNodeFi = .text:0x80227A84; // type:function size:0x78 scope:global align:4 +__ct__Q24Game5DNodeFv = .text:0x80227AFC; // type:function size:0x5C scope:global align:4 +add__Q24Game5DNodeFPQ24Game5DNode = .text:0x80227B58; // type:function size:0xB0 scope:global align:4 +__dt__Q24Game5DNodeFv = .text:0x80227C08; // type:function size:0x68 scope:global align:4 +del__Q24Game5DNodeFv = .text:0x80227C70; // type:function size:0x98 scope:global align:4 +getChildCount__Q24Game5DNodeFv = .text:0x80227D08; // type:function size:0x34 scope:global align:4 +getConfigList__Q34Game10PelletList3MgrFQ34Game10PelletList5cKind = .text:0x80227D3C; // type:function size:0x70 scope:global align:4 +getCount__Q34Game10PelletList3MgrFQ34Game10PelletList5cKind = .text:0x80227DAC; // type:function size:0x74 scope:global align:4 +getConfigAndKind__Q34Game10PelletList3MgrFPcRQ34Game10PelletList5cKind = .text:0x80227E20; // type:function size:0xC0 scope:global align:4 +__dt__Q34Game10PelletList3MgrFv = .text:0x80227EE0; // type:function size:0x70 scope:global align:4 +loadResource__Q34Game10PelletList3MgrFv = .text:0x80227F50; // type:function size:0x1D8 scope:global align:4 +getDictionaryNum__Q34Game10PelletList3MgrFv = .text:0x80228128; // type:function size:0x18 scope:global align:4 +getConfigFromDictionaryNo__Q34Game10PelletList3MgrFi = .text:0x80228140; // type:function size:0xA4 scope:global align:4 +getOffsetFromDictionaryNo__Q34Game10PelletList3MgrFi = .text:0x802281E4; // type:function size:0xA4 scope:global align:4 +globalInstance__Q34Game10PelletList3MgrFv = .text:0x80228288; // type:function size:0x80 scope:global align:4 +__ct__Q34Game6VsGame10TitleStateFv = .text:0x80228308; // type:function size:0xF8 scope:global align:4 +init__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x80228400; // type:function size:0x134 scope:global align:4 +dvdload__Q34Game6VsGame10TitleStateFv = .text:0x80228534; // type:function size:0x3F4 scope:global align:4 +exec__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80228928; // type:function size:0x38 scope:global align:4 +execChallenge__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80228960; // type:function size:0x2DC scope:global align:4 +transit__Q24Game32FSMStateFPQ24Game13VsGameSectioniPQ24Game8StateArg = .text:0x80228C3C; // type:function size:0x30 scope:weak align:4 +execVs__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80228C6C; // type:function size:0x430 scope:global align:4 +draw__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSectionR8Graphics = .text:0x8022909C; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection = .text:0x80229124; // type:function size:0xB0 scope:global align:4 +getSize__Q28Morimura18DispMemberVsSelectFv = .text:0x802291D4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura18DispMemberVsSelectFv = .text:0x802291DC; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura18DispMemberVsSelectFv = .text:0x802291E8; // type:function size:0x14 scope:weak align:4 +getSize__Q28Morimura25DispMemberChallengeSelectFv = .text:0x802291FC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura25DispMemberChallengeSelectFv = .text:0x80229204; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura25DispMemberChallengeSelectFv = .text:0x80229210; // type:function size:0x14 scope:weak align:4 +resume__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x80229224; // type:function size:0x4 scope:weak align:4 +restart__Q24Game32FSMStateFPQ24Game13VsGameSection = .text:0x80229228; // type:function size:0x4 scope:weak align:4 +invoke__36DelegateFv = .text:0x8022922C; // type:function size:0x30 scope:weak align:4 +__sinit_vsGS_Title_cpp = .text:0x8022925C; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6VsGame9GameStateFv = .text:0x80229284; // type:function size:0xA4 scope:global align:4 +__ct__11BitFlagFv = .text:0x80229328; // type:function size:0xC scope:weak align:4 +init__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x80229334; // type:function size:0x1AC scope:global align:4 +clearLoseCauses__Q34Game6VsGame9GameStateFv = .text:0x802294E0; // type:function size:0x14 scope:global align:4 +do_init__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x802294F4; // type:function size:0x1D4 scope:global align:4 +goingToCave__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x802296C8; // type:function size:0xC scope:global align:4 +exec__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x802296D4; // type:function size:0x8FC scope:global align:4 +checkFindKeyDemo__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x80229FD0; // type:function size:0x388 scope:global align:4 +checkSMenu__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A358; // type:function size:0x3E4 scope:global align:4 +pre2dDraw__Q34Game6VsGame9GameStateFR8GraphicsPQ24Game13VsGameSection = .text:0x8022A73C; // type:function size:0x50 scope:global align:4 +draw__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionR8Graphics = .text:0x8022A78C; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A7C0; // type:function size:0x44 scope:global align:4 +onBattleFinished__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionib = .text:0x8022A804; // type:function size:0x34 scope:global align:4 +isCardUsable__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A838; // type:function size:0x10 scope:global align:4 +onRedOrBlueSuckStart__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionib = .text:0x8022A848; // type:function size:0x14C scope:global align:4 +checkPikminZero__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022A994; // type:function size:0x188 scope:global align:4 +onMovieStart__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x8022AB1C; // type:function size:0x474 scope:global align:4 +onMovieDone__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl = .text:0x8022AF90; // type:function size:0x9D0 scope:global align:4 +onNextFloor__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ34Game8ItemHole4Item = .text:0x8022B960; // type:function size:0xE4 scope:global align:4 +onOrimaDown__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectioni = .text:0x8022BA44; // type:function size:0x19C scope:global align:4 +open_GameChallenge__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectioni = .text:0x8022BBE0; // type:function size:0x33C scope:global align:4 +update_GameChallenge__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022BF1C; // type:function size:0x7D0 scope:global align:4 +drawStatus__Q34Game6VsGame9GameStateFR8GraphicsPQ24Game13VsGameSection = .text:0x8022C6EC; // type:function size:0x4 scope:global align:4 +getSize__Q32og6Screen12DispMemberVsFv = .text:0x8022C6F0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen12DispMemberVsFv = .text:0x8022C6F8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen12DispMemberVsFv = .text:0x8022C704; // type:function size:0xC scope:weak align:4 +getSize__Q32og6Screen21DispMemberChallenge1PFv = .text:0x8022C710; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberChallenge1PFv = .text:0x8022C718; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberChallenge1PFv = .text:0x8022C724; // type:function size:0x10 scope:weak align:4 +getSize__Q32kh6Screen17DispWinLoseReasonFv = .text:0x8022C734; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen17DispWinLoseReasonFv = .text:0x8022C73C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen17DispWinLoseReasonFv = .text:0x8022C744; // type:function size:0x10 scope:weak align:4 +getSize__Q32kh6Screen11DispWinLoseFv = .text:0x8022C754; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen11DispWinLoseFv = .text:0x8022C75C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen11DispWinLoseFv = .text:0x8022C764; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen21DispMemberChallenge2PFv = .text:0x8022C778; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberChallenge2PFv = .text:0x8022C780; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberChallenge2PFv = .text:0x8022C78C; // type:function size:0x10 scope:weak align:4 +on_section_fadeout__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection = .text:0x8022C79C; // type:function size:0x10 scope:weak align:4 +__sinit_vsGS_Game_cpp = .text:0x8022C7AC; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6VsGame11ResultStateFv = .text:0x8022C7D4; // type:function size:0x104 scope:global align:4 +init__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x8022C8D8; // type:function size:0xBC scope:global align:4 +prepareMorimuraInfo__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection = .text:0x8022C994; // type:function size:0x2A8 scope:global align:4 +dvdload__Q34Game6VsGame11ResultStateFv = .text:0x8022CC3C; // type:function size:0x13C scope:global align:4 +exec__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection = .text:0x8022CD78; // type:function size:0x17C scope:global align:4 +draw__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSectionR8Graphics = .text:0x8022CEF4; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection = .text:0x8022CF7C; // type:function size:0xCC scope:global align:4 +getSize__Q28Morimura25DispMemberChallengeResultFv = .text:0x8022D048; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura25DispMemberChallengeResultFv = .text:0x8022D050; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura25DispMemberChallengeResultFv = .text:0x8022D05C; // type:function size:0x14 scope:weak align:4 +invoke__37DelegateFv = .text:0x8022D070; // type:function size:0x30 scope:weak align:4 +__sinit_vsGS_Result_cpp = .text:0x8022D0A0; // type:function size:0x28 scope:local align:4 +__ct__Q34Game6VsGame9LoadStateFv = .text:0x8022D0C8; // type:function size:0xF0 scope:global align:4 +init__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSectionPQ24Game8StateArg = .text:0x8022D1B8; // type:function size:0xD0 scope:global align:4 +dvdLoad__Q34Game6VsGame9LoadStateFv = .text:0x8022D288; // type:function size:0x24 scope:global align:4 +exec__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSection = .text:0x8022D2AC; // type:function size:0x2C4 scope:global align:4 +draw__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSectionR8Graphics = .text:0x8022D570; // type:function size:0x7C scope:global align:4 +cleanup__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSection = .text:0x8022D5EC; // type:function size:0x4 scope:global align:4 +getSize__Q32og6Screen15DispMemberFloorFv = .text:0x8022D5F0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen15DispMemberFloorFv = .text:0x8022D5F8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen15DispMemberFloorFv = .text:0x8022D604; // type:function size:0x10 scope:weak align:4 +invoke__34DelegateFv = .text:0x8022D614; // type:function size:0x30 scope:weak align:4 +__sinit_vsGS_Load_cpp = .text:0x8022D644; // type:function size:0x28 scope:local align:4 +read__Q34Game13ChallengeGame9StageDataFR6Stream = .text:0x8022D66C; // type:function size:0x238 scope:global align:4 +__ct__Q34Game13ChallengeGame9StageListFv = .text:0x8022D8A4; // type:function size:0xB4 scope:global align:4 +__dt__Q34Game13ChallengeGame9StageDataFv = .text:0x8022D958; // type:function size:0x60 scope:weak align:4 +read__Q34Game13ChallengeGame9StageListFR6Stream = .text:0x8022D9B8; // type:function size:0x10C scope:global align:4 +getStageData__Q34Game13ChallengeGame9StageListFi = .text:0x8022DAC4; // type:function size:0x84 scope:global align:4 +__ct__Q34Game6VsGame9StageListFv = .text:0x8022DB48; // type:function size:0xBC scope:global align:4 +__dt__Q34Game6VsGame9StageDataFv = .text:0x8022DC04; // type:function size:0x60 scope:weak align:4 +read__Q34Game6VsGame9StageListFR6Stream = .text:0x8022DC64; // type:function size:0x350 scope:global align:4 +getStageData__Q34Game6VsGame9StageListFi = .text:0x8022DFB4; // type:function size:0x84 scope:global align:4 +__dt__Q34Game6VsGame9StageListFv = .text:0x8022E038; // type:function size:0x84 scope:weak align:4 +__dt__Q34Game13ChallengeGame9StageListFv = .text:0x8022E0BC; // type:function size:0x84 scope:weak align:4 +__sinit_vsStageData_cpp = .text:0x8022E140; // type:function size:0x28 scope:local align:4 +__dt__12CellMgrParmsFv = .text:0x8022E168; // type:function size:0x74 scope:global align:4 +globalInstance__12CellMgrParmsFv = .text:0x8022E1DC; // type:function size:0x168 scope:global align:4 +@12@__dt__12CellMgrParmsFv = .text:0x8022E344; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game15CellIteratorArgFv = .text:0x8022E34C; // type:function size:0x34 scope:global align:4 +__ct__Q24Game15CellIteratorArgFRQ23Sys6Sphere = .text:0x8022E380; // type:function size:0x40 scope:global align:4 +__ct__Q24Game12CellIteratorFRQ24Game15CellIteratorArg = .text:0x8022E3C0; // type:function size:0x7C scope:global align:4 +first__Q24Game12CellIteratorFv = .text:0x8022E43C; // type:function size:0xA4 scope:global align:4 +next__Q24Game12CellIteratorFv = .text:0x8022E4E0; // type:function size:0x34 scope:global align:4 +isDone__Q24Game12CellIteratorFv = .text:0x8022E514; // type:function size:0x10 scope:global align:4 +__ml__Q24Game12CellIteratorFv = .text:0x8022E524; // type:function size:0x1C scope:global align:4 +getCellObject__Q24Game12CellIteratorFv = .text:0x8022E540; // type:function size:0x1C scope:global align:4 +step__Q24Game12CellIteratorFv = .text:0x8022E55C; // type:function size:0xEC scope:global align:4 +find__Q24Game12CellIteratorFv = .text:0x8022E648; // type:function size:0x110 scope:global align:4 +satisfy__Q24Game12CellIteratorFv = .text:0x8022E758; // type:function size:0x18C scope:global align:4 +calcExtent__Q24Game12CellIteratorFv = .text:0x8022E8E4; // type:function size:0x18C scope:global align:4 +dump__Q24Game12CellIteratorFv = .text:0x8022EA70; // type:function size:0x4 scope:global align:4 +__ct__Q34Game6VsGame7VSStateFv = .text:0x8022EA74; // type:function size:0x44 scope:global align:4 +do_init__Q34Game6VsGame7VSStateFPQ24Game13VsGameSection = .text:0x8022EAB8; // type:function size:0xCC scope:global align:4 +__sinit_vsGS_VSGame_cpp = .text:0x8022EB84; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11TSoundEventFv = .text:0x8022EBAC; // type:function size:0x1C scope:global align:4 +event__Q24Game11TSoundEventFv = .text:0x8022EBC8; // type:function size:0x48 scope:global align:4 +finish__Q24Game11TSoundEventFv = .text:0x8022EC10; // type:function size:0x10 scope:global align:4 +update__Q24Game11TSoundEventFv = .text:0x8022EC20; // type:function size:0x74 scope:global align:4 +__ct__Q26PikiAI9ActBattleFPQ24Game4Piki = .text:0x8022EC94; // type:function size:0xB8 scope:global align:4 +emotion_success__Q26PikiAI9ActBattleFv = .text:0x8022ED4C; // type:function size:0x44 scope:global align:4 +init__Q26PikiAI9ActBattleFPQ26PikiAI9ActionArg = .text:0x8022ED90; // type:function size:0x300 scope:global align:4 +exec__Q26PikiAI9ActBattleFv = .text:0x8022F090; // type:function size:0xEC scope:global align:4 +cleanup__Q26PikiAI9ActBattleFv = .text:0x8022F17C; // type:function size:0xC scope:global align:4 +collisionCallback__Q26PikiAI9ActBattleFPQ24Game4PikiRQ24Game9CollEvent = .text:0x8022F188; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI9ActBattleFRCQ28SysShape8KeyEvent = .text:0x8022F18C; // type:function size:0x484 scope:global align:4 +initApproach__Q26PikiAI9ActBattleFv = .text:0x8022F610; // type:function size:0xBC scope:global align:4 +execApproach__Q26PikiAI9ActBattleFv = .text:0x8022F6CC; // type:function size:0x50 scope:global align:4 +initBattle__Q26PikiAI9ActBattleFv = .text:0x8022F71C; // type:function size:0xC8 scope:global align:4 +execBattle__Q26PikiAI9ActBattleFv = .text:0x8022F7E4; // type:function size:0xFC scope:global align:4 +execDamage__Q26PikiAI9ActBattleFv = .text:0x8022F8E0; // type:function size:0xE8 scope:global align:4 +@32@4@onKeyEvent__Q26PikiAI9ActBattleFRCQ28SysShape8KeyEvent = .text:0x8022F9C8; // type:function size:0x14 scope:weak align:4 +clear__Q24Game8BirthMgrFv = .text:0x8022F9DC; // type:function size:0x68 scope:global align:4 +inc__Q24Game8BirthMgrFi = .text:0x8022FA44; // type:function size:0x48 scope:global align:4 +dec__Q24Game8BirthMgrFi = .text:0x8022FA8C; // type:function size:0x48 scope:global align:4 +inc_today__Q24Game8BirthMgrFi = .text:0x8022FAD4; // type:function size:0xD0 scope:global align:4 +inc_cave__Q24Game8BirthMgrFi = .text:0x8022FBA4; // type:function size:0xD0 scope:global align:4 +dec_today__Q24Game8BirthMgrFi = .text:0x8022FC74; // type:function size:0xD0 scope:global align:4 +dec_cave__Q24Game8BirthMgrFi = .text:0x8022FD44; // type:function size:0xD0 scope:global align:4 +account_cave__Q24Game8BirthMgrFv = .text:0x8022FE14; // type:function size:0x140 scope:global align:4 +account_today_adjust__Q24Game8BirthMgrFv = .text:0x8022FF54; // type:function size:0x2B4 scope:global align:4 +account_today__Q24Game8BirthMgrFv = .text:0x80230208; // type:function size:0x204 scope:global align:4 +get_total__Q24Game8BirthMgrFi = .text:0x8023040C; // type:function size:0x70 scope:global align:4 +read__Q24Game8BirthMgrFR6Stream = .text:0x8023047C; // type:function size:0xB0 scope:global align:4 +write__Q24Game8BirthMgrFR6Stream = .text:0x8023052C; // type:function size:0x148 scope:global align:4 +clear__Q24Game8DeathMgrFv = .text:0x80230674; // type:function size:0x84 scope:global align:4 +inc__Q24Game8DeathMgrFi = .text:0x802306F8; // type:function size:0x5C scope:global align:4 +inc_today__Q24Game8DeathMgrFi = .text:0x80230754; // type:function size:0xFC scope:global align:4 +inc_cave__Q24Game8DeathMgrFi = .text:0x80230850; // type:function size:0xFC scope:global align:4 +account_cave__Q24Game8DeathMgrFv = .text:0x8023094C; // type:function size:0x1FC scope:global align:4 +account_today__Q24Game8DeathMgrFv = .text:0x80230B48; // type:function size:0x1FC scope:global align:4 +get_cave__Q24Game8DeathMgrFi = .text:0x80230D44; // type:function size:0xE8 scope:global align:4 +get_today__Q24Game8DeathMgrFi = .text:0x80230E2C; // type:function size:0xE8 scope:global align:4 +get_total__Q24Game8DeathMgrFi = .text:0x80230F14; // type:function size:0xE8 scope:global align:4 +read__Q24Game8DeathMgrFR6Stream = .text:0x80230FFC; // type:function size:0xB0 scope:global align:4 +write__Q24Game8DeathMgrFR6Stream = .text:0x802310AC; // type:function size:0x148 scope:global align:4 +__sinit_gameDeathCount_cpp = .text:0x802311F4; // type:function size:0xE0 scope:local align:4 +__ct__Q26PikiAI7ActBoreFPQ24Game4Piki = .text:0x802312D4; // type:function size:0x98 scope:global align:4 +init__Q26PikiAI7ActBoreFPQ26PikiAI9ActionArg = .text:0x8023136C; // type:function size:0x80 scope:global align:4 +startCurrAction__Q26PikiAI7ActBoreFv = .text:0x802313EC; // type:function size:0x180 scope:global align:4 +finish__Q26PikiAI7ActBoreFv = .text:0x8023156C; // type:function size:0x7C scope:global align:4 +exec__Q26PikiAI7ActBoreFv = .text:0x802315E8; // type:function size:0x294 scope:global align:4 +cleanup__Q26PikiAI7ActBoreFv = .text:0x8023187C; // type:function size:0x4 scope:global align:4 +__ct__Q26PikiAI7ActRestFPQ24Game4Piki = .text:0x80231880; // type:function size:0x9C scope:global align:4 +finish__Q26PikiAI7ActRestFv = .text:0x8023191C; // type:function size:0x1C scope:global align:4 +init__Q26PikiAI7ActRestFPQ26PikiAI9ActionArg = .text:0x80231938; // type:function size:0x80 scope:global align:4 +sitDown__Q26PikiAI7ActRestFv = .text:0x802319B8; // type:function size:0xB8 scope:global align:4 +exec__Q26PikiAI7ActRestFv = .text:0x80231A70; // type:function size:0x330 scope:global align:4 +cleanup__Q26PikiAI7ActRestFv = .text:0x80231DA0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI7ActRestFRCQ28SysShape8KeyEvent = .text:0x80231DA4; // type:function size:0x1F4 scope:global align:4 +__ct__Q26PikiAI10ActOneshotFPQ24Game4Piki = .text:0x80231F98; // type:function size:0xBC scope:global align:4 +init__Q26PikiAI10ActOneshotFPQ26PikiAI9ActionArg = .text:0x80232054; // type:function size:0x94 scope:global align:4 +finish__Q26PikiAI10ActOneshotFv = .text:0x802320E8; // type:function size:0x48 scope:global align:4 +exec__Q26PikiAI10ActOneshotFv = .text:0x80232130; // type:function size:0x70 scope:global align:4 +cleanup__Q26PikiAI10ActOneshotFv = .text:0x802321A0; // type:function size:0x4 scope:global align:4 +onKeyEvent__Q26PikiAI10ActOneshotFRCQ28SysShape8KeyEvent = .text:0x802321A4; // type:function size:0x150 scope:global align:4 +@28@4@onKeyEvent__Q26PikiAI7ActRestFRCQ28SysShape8KeyEvent = .text:0x802322F4; // type:function size:0x14 scope:weak align:4 +@28@4@onKeyEvent__Q26PikiAI10ActOneshotFRCQ28SysShape8KeyEvent = .text:0x80232308; // type:function size:0x14 scope:weak align:4 +__ct__Q24Game9PartsViewFv = .text:0x8023231C; // type:function size:0x140 scope:global align:4 +doDirectDraw__Q24Game9PartsViewFR8Graphics = .text:0x8023245C; // type:function size:0x4 scope:global align:4 +doAnimation__Q24Game9PartsViewFv = .text:0x80232460; // type:function size:0x74 scope:global align:4 +doEntry__Q24Game9PartsViewFv = .text:0x802324D4; // type:function size:0x4 scope:global align:4 +doSetView__Q24Game9PartsViewFi = .text:0x802324D8; // type:function size:0x2C scope:global align:4 +doViewCalc__Q24Game9PartsViewFv = .text:0x80232504; // type:function size:0x2C scope:global align:4 +read__Q24Game9PartsViewFR6Stream = .text:0x80232530; // type:function size:0x158 scope:global align:4 +__ct__Q34Game10SingleGame11EndingStateFv = .text:0x80232688; // type:function size:0xE0 scope:global align:4 +init__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80232768; // type:function size:0xD4 scope:global align:4 +dvdload__Q34Game10SingleGame11EndingStateFv = .text:0x8023283C; // type:function size:0x1C8 scope:global align:4 +do_dvdload__Q34Game10SingleGame11EndingStateFv = .text:0x80232A04; // type:function size:0x4 scope:weak align:4 +exec__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSection = .text:0x80232A08; // type:function size:0x850 scope:global align:4 +draw__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x80233258; // type:function size:0xD4 scope:global align:4 +cleanup__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSection = .text:0x8023332C; // type:function size:0xB8 scope:global align:4 +getSize__Q32og6Screen22DispMemberFinalMessageFv = .text:0x802333E4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen22DispMemberFinalMessageFv = .text:0x802333EC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen22DispMemberFinalMessageFv = .text:0x802333F8; // type:function size:0x14 scope:weak align:4 +invoke__42DelegateFv = .text:0x8023340C; // type:function size:0x30 scope:weak align:4 +__sinit_singleGS_Ending_cpp = .text:0x8023343C; // type:function size:0x28 scope:local align:4 +__ct__Q34Game11IconTexture6LoaderFv = .text:0x80233464; // type:function size:0x48 scope:global align:4 +__dt__Q34Game11IconTexture6LoaderFv = .text:0x802334AC; // type:function size:0x8C scope:global align:4 +loadResource__Q34Game11IconTexture6LoaderFPc = .text:0x80233538; // type:function size:0x84 scope:global align:4 +getResTIMG__Q34Game11IconTexture6LoaderFPc = .text:0x802335BC; // type:function size:0x30 scope:global align:4 +__ct__Q34Game11IconTexture3MgrFv = .text:0x802335EC; // type:function size:0x48 scope:global align:4 +__dt__Q34Game11IconTexture3MgrFv = .text:0x80233634; // type:function size:0x8C scope:global align:4 +create__Q34Game11IconTexture3MgrFi = .text:0x802336C0; // type:function size:0x84 scope:global align:4 +setTexture__Q34Game11IconTexture3MgrFiP7ResTIMG = .text:0x80233744; // type:function size:0x8C scope:global align:4 +getTexture__Q34Game11IconTexture3MgrFi = .text:0x802337D0; // type:function size:0x2C scope:global align:4 +incKilled__Q34Game8TekiStat4InfoFv = .text:0x802337FC; // type:function size:0x34 scope:global align:4 +incKillPikmin__Q34Game8TekiStat4InfoFv = .text:0x80233830; // type:function size:0x28 scope:global align:4 +__ct__Q34Game8TekiStat3MgrFv = .text:0x80233858; // type:function size:0x10 scope:global align:4 +whatsNew__Q34Game8TekiStat3MgrFv = .text:0x80233868; // type:function size:0x84 scope:global align:4 +setOutOfDateAll__Q34Game8TekiStat3MgrFv = .text:0x802338EC; // type:function size:0x78 scope:global align:4 +clear__Q34Game8TekiStat3MgrFv = .text:0x80233964; // type:function size:0xC8 scope:global align:4 +allocate__Q34Game8TekiStat3MgrFi = .text:0x80233A2C; // type:function size:0x60 scope:global align:4 +__ct__Q34Game8TekiStat4InfoFv = .text:0x80233A8C; // type:function size:0x18 scope:weak align:4 +getTekiInfo__Q34Game8TekiStat3MgrFi = .text:0x80233AA4; // type:function size:0x7C scope:global align:4 +write__Q34Game8TekiStat3MgrFR6Stream = .text:0x80233B20; // type:function size:0xC0 scope:global align:4 +read__Q34Game8TekiStat3MgrFR6Stream = .text:0x80233BE0; // type:function size:0xEC scope:global align:4 +__ct__Q24Game9HighscoreFv = .text:0x80233CCC; // type:function size:0x1C scope:global align:4 +allocate__Q24Game9HighscoreFi = .text:0x80233CE8; // type:function size:0x44 scope:global align:4 +getScore__Q24Game9HighscoreFi = .text:0x80233D2C; // type:function size:0x88 scope:global align:4 +entryScore__Q24Game9HighscoreFi = .text:0x80233DB4; // type:function size:0x178 scope:global align:4 +higher__Q24Game9HighscoreFii = .text:0x80233F2C; // type:function size:0x4C scope:global align:4 +do_higher__Q24Game9HighscoreFii = .text:0x80233F78; // type:function size:0x18 scope:weak align:4 +read__Q24Game9HighscoreFR6Stream = .text:0x80233F90; // type:function size:0xB8 scope:global align:4 +write__Q24Game9HighscoreFR6Stream = .text:0x80234048; // type:function size:0x74 scope:global align:4 +clear__Q24Game9HighscoreFv = .text:0x802340BC; // type:function size:0x30 scope:global align:4 +__ct__Q24Game14PlayCommonDataFv = .text:0x802340EC; // type:function size:0xFC scope:global align:4 +reset__Q24Game14PlayCommonDataFv = .text:0x802341E8; // type:function size:0x78 scope:global align:4 +reset__Q24Game21PlayChallengeGameDataFv = .text:0x80234260; // type:function size:0xC0 scope:global align:4 +write__Q24Game14PlayCommonDataFR6Stream = .text:0x80234320; // type:function size:0xA0 scope:global align:4 +read__Q24Game14PlayCommonDataFR6Stream = .text:0x802343C0; // type:function size:0xEC scope:global align:4 +getHighscore_clear__Q24Game14PlayCommonDataFi = .text:0x802344AC; // type:function size:0x78 scope:global align:4 +getHighscore_complete__Q24Game14PlayCommonDataFi = .text:0x80234524; // type:function size:0x78 scope:global align:4 +entryHighscores_clear__Q24Game14PlayCommonDataFiPiPi = .text:0x8023459C; // type:function size:0x38 scope:global align:4 +entryHighscores_complete__Q24Game14PlayCommonDataFiPiPi = .text:0x802345D4; // type:function size:0x38 scope:global align:4 +entryHighscores_common__Q24Game14PlayCommonDataFPPQ24Game9HighscoreiPiPi = .text:0x8023460C; // type:function size:0xE0 scope:global align:4 +isChallengeGamePlayable__Q24Game14PlayCommonDataFv = .text:0x802346EC; // type:function size:0xC scope:global align:4 +isLouieRescued__Q24Game14PlayCommonDataFv = .text:0x802346F8; // type:function size:0xC scope:global align:4 +isPerfectChallenge__Q24Game14PlayCommonDataFv = .text:0x80234704; // type:function size:0x8C scope:global align:4 +enableChallengeGame__Q24Game14PlayCommonDataFv = .text:0x80234790; // type:function size:0x30 scope:global align:4 +enableLouieRescue__Q24Game14PlayCommonDataFv = .text:0x802347C0; // type:function size:0x30 scope:global align:4 +challenge_is_virgin__Q24Game14PlayCommonDataFv = .text:0x802347F0; // type:function size:0x1C scope:global align:4 +challenge_is_virgin_check_only__Q24Game14PlayCommonDataFv = .text:0x8023480C; // type:function size:0x14 scope:global align:4 +challenge_get_CourseState__Q24Game14PlayCommonDataFi = .text:0x80234820; // type:function size:0x24 scope:global align:4 +challenge_checkOpen__Q24Game14PlayCommonDataFi = .text:0x80234844; // type:function size:0x2C scope:global align:4 +challenge_checkClear__Q24Game14PlayCommonDataFi = .text:0x80234870; // type:function size:0x2C scope:global align:4 +challenge_checkKunsho__Q24Game14PlayCommonDataFi = .text:0x8023489C; // type:function size:0x2C scope:global align:4 +challenge_checkJustOpen__Q24Game14PlayCommonDataFi = .text:0x802348C8; // type:function size:0x4C scope:global align:4 +challenge_checkJustClear__Q24Game14PlayCommonDataFi = .text:0x80234914; // type:function size:0x4C scope:global align:4 +challenge_checkJustKunsho__Q24Game14PlayCommonDataFi = .text:0x80234960; // type:function size:0x4C scope:global align:4 +challenge_openNewCourse__Q24Game14PlayCommonDataFv = .text:0x802349AC; // type:function size:0x94 scope:global align:4 +challenge_setClear__Q24Game14PlayCommonDataFi = .text:0x80234A40; // type:function size:0x30 scope:global align:4 +challenge_setOpen__Q24Game14PlayCommonDataFi = .text:0x80234A70; // type:function size:0x30 scope:global align:4 +challenge_setKunsho__Q24Game14PlayCommonDataFi = .text:0x80234AA0; // type:function size:0x80 scope:global align:4 +challenge_getHighscore__Q24Game14PlayCommonDataFii = .text:0x80234B20; // type:function size:0x84 scope:global align:4 +__ct__Q24Game21PlayChallengeGameDataFv = .text:0x80234BA4; // type:function size:0xC8 scope:global align:4 +__ct__Q34Game21PlayChallengeGameData11CourseStateFv = .text:0x80234C6C; // type:function size:0x78 scope:weak align:4 +getState__Q24Game21PlayChallengeGameDataFi = .text:0x80234CE4; // type:function size:0xA4 scope:global align:4 +write__Q24Game21PlayChallengeGameDataFR6Stream = .text:0x80234D88; // type:function size:0x9C scope:global align:4 +read__Q24Game21PlayChallengeGameDataFR6Stream = .text:0x80234E24; // type:function size:0x9C scope:global align:4 +do_higher__Q24Game8LowscoreFii = .text:0x80234EC0; // type:function size:0x18 scope:weak align:4 +__ct__Q24Game11PelletCarryFv = .text:0x80234ED8; // type:function size:0x30 scope:global align:4 +reset__Q24Game11PelletCarryFv = .text:0x80234F08; // type:function size:0x28 scope:global align:4 +pull__Q24Game11PelletCarryFUsR10Vector3f = .text:0x80234F30; // type:function size:0x84 scope:global align:4 +pullable__Q24Game11PelletCarryFUsf = .text:0x80234FB4; // type:function size:0x34 scope:global align:4 +giveup__Q24Game11PelletCarryFUs = .text:0x80234FE8; // type:function size:0x34 scope:global align:4 +frameWork__Q24Game11PelletCarryFR10Vector3 = .text:0x8023501C; // type:function size:0x64 scope:global align:4 +__ct__Q24Game21Challenge2D_TitleInfoFi = .text:0x80235080; // type:function size:0x64 scope:global align:4 +__ct__Q34Game21Challenge2D_TitleInfo4InfoFv = .text:0x802350E4; // type:function size:0x30 scope:global align:4 +__cl__Q24Game21Challenge2D_TitleInfoFi = .text:0x80235114; // type:function size:0x7C scope:global align:4 +__ct__Q24Game14Vs2D_TitleInfoFi = .text:0x80235190; // type:function size:0x64 scope:global align:4 +__ct__Q34Game14Vs2D_TitleInfo4InfoFv = .text:0x802351F4; // type:function size:0xC scope:global align:4 +__cl__Q24Game14Vs2D_TitleInfoFi = .text:0x80235200; // type:function size:0xA8 scope:global align:4 +__ct__Q24Game22Challenge2D_ResultInfoFv = .text:0x802352A8; // type:function size:0x28 scope:global align:4 +__ct__Q34Game6VsGame7TekiMgrFv = .text:0x802352D0; // type:function size:0x44 scope:global align:4 +__dt__Q34Game6VsGame8TekiNodeFv = .text:0x80235314; // type:function size:0x60 scope:weak align:4 +entry__Q34Game6VsGame7TekiMgrFQ34Game11EnemyTypeID12EEnemyTypeIDi = .text:0x80235374; // type:function size:0xA0 scope:global align:4 +birth__Q34Game6VsGame7TekiMgrFiR10Vector3b = .text:0x80235414; // type:function size:0xD8 scope:global align:4 +__ct__Q34Game6VsGame7CardMgrFPQ24Game13VsGameSectionPQ34Game6VsGame7TekiMgr = .text:0x802354EC; // type:function size:0x148 scope:global align:4 +__ct__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80235634; // type:function size:0x58 scope:weak align:4 +loadResource__Q34Game6VsGame7CardMgrFv = .text:0x8023568C; // type:function size:0x2B8 scope:global align:4 +update__Q34Game6VsGame7CardMgrFv = .text:0x80235944; // type:function size:0x48 scope:global align:4 +draw__Q34Game6VsGame7CardMgrFR8Graphics = .text:0x8023598C; // type:function size:0xA4 scope:global align:4 +stopSlot__Q34Game6VsGame7CardMgrFi = .text:0x80235A30; // type:function size:0x30 scope:global align:4 +usePlayerCard__Q34Game6VsGame7CardMgrFiPQ34Game6VsGame7TekiMgr = .text:0x80235A60; // type:function size:0xD8C scope:global align:4 +gotPlayerCard__Q34Game6VsGame7CardMgrFi = .text:0x802367EC; // type:function size:0x1BC scope:global align:4 +clear__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x802369A8; // type:function size:0x58 scope:global align:4 +start__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80236A00; // type:function size:0x5F0 scope:global align:4 +startStop__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80236FF0; // type:function size:0x50 scope:global align:4 +update__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80237040; // type:function size:0x7B8 scope:global align:4 +updateAppear__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x802377F8; // type:function size:0x150 scope:global align:4 +initDraw__Q34Game6VsGame7CardMgrFv = .text:0x80237948; // type:function size:0x354 scope:global align:4 +drawSlot__Q34Game6VsGame7CardMgrFR8GraphicsR10Vector3RQ44Game6VsGame7CardMgr11SlotMachine = .text:0x80237C9C; // type:function size:0xE4C scope:global align:4 +update__8LightObjFv = .text:0x80238AE8; // type:function size:0x4 scope:weak align:4 +startZoomIn__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238AEC; // type:function size:0x28 scope:global align:4 +startZoomUse__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238B14; // type:function size:0x20 scope:global align:4 +updateZoomIn__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238B34; // type:function size:0x1F0 scope:global align:4 +updateZoomUse__Q44Game6VsGame7CardMgr11SlotMachineFv = .text:0x80238D24; // type:function size:0x128 scope:global align:4 +setGroup__Q25efx2d5TBaseFUc = .text:0x80238E4C; // type:function size:0x8 scope:weak align:4 +getName__Q25efx2d18ArgScaleColorColorFv = .text:0x80238E54; // type:function size:0xC scope:weak align:4 +getName__Q25efx2d3ArgFv = .text:0x80238E60; // type:function size:0x8 scope:weak align:4 +__sinit_vsCardMgr_cpp = .text:0x80238E68; // type:function size:0x28 scope:local align:4 +__ct__Q26PikiAI9ActRescueFPQ24Game4Piki = .text:0x80238E90; // type:function size:0xB8 scope:global align:4 +init__Q26PikiAI9ActRescueFPQ26PikiAI9ActionArg = .text:0x80238F48; // type:function size:0xC4 scope:global align:4 +exec__Q26PikiAI9ActRescueFv = .text:0x8023900C; // type:function size:0x60 scope:global align:4 +initApproach__Q26PikiAI9ActRescueFv = .text:0x8023906C; // type:function size:0xAC scope:global align:4 +execApproach__Q26PikiAI9ActRescueFv = .text:0x80239118; // type:function size:0x13C scope:global align:4 +initGo__Q26PikiAI9ActRescueFv = .text:0x80239254; // type:function size:0x150 scope:global align:4 +execGo__Q26PikiAI9ActRescueFv = .text:0x802393A4; // type:function size:0x1C0 scope:global align:4 +initThrow__Q26PikiAI9ActRescueFv = .text:0x80239564; // type:function size:0x64 scope:global align:4 +execThrow__Q26PikiAI9ActRescueFv = .text:0x802395C8; // type:function size:0x278 scope:global align:4 +onKeyEvent__Q26PikiAI9ActRescueFRCQ28SysShape8KeyEvent = .text:0x80239840; // type:function size:0x2C scope:global align:4 +emotion_success__Q26PikiAI9ActRescueFv = .text:0x8023986C; // type:function size:0x4 scope:global align:4 +doDirectDraw__Q26PikiAI9ActRescueFR8Graphics = .text:0x80239870; // type:function size:0x4 scope:global align:4 +cleanup__Q26PikiAI9ActRescueFv = .text:0x80239874; // type:function size:0x4 scope:global align:4 +collisionCallback__Q26PikiAI9ActRescueFPQ24Game4PikiRQ24Game9CollEvent = .text:0x80239878; // type:function size:0x4 scope:global align:4 +satisfy__10WPFindCondFPQ24Game8WayPoint = .text:0x8023987C; // type:function size:0x20 scope:weak align:4 +getNextAIType__Q26PikiAI9ActRescueFv = .text:0x8023989C; // type:function size:0x8 scope:weak align:4 +@40@4@onKeyEvent__Q26PikiAI9ActRescueFRCQ28SysShape8KeyEvent = .text:0x802398A4; // type:function size:0x14 scope:weak align:4 +newdraw_draw3D_all__Q24Game15BaseGameSectionFR8Graphics = .text:0x802398B8; // type:function size:0x1F4 scope:global align:4 +newdraw_drawAll__Q24Game15BaseGameSectionFP8Viewport = .text:0x80239AAC; // type:function size:0x360 scope:global align:4 +invoke__46Delegate1FP8Viewport = .text:0x80239E0C; // type:function size:0x30 scope:weak align:4 +__sinit_baseGameSectionDraw_cpp = .text:0x80239E3C; // type:function size:0x28 scope:local align:4 +init__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x80239E64; // type:function size:0xB4 scope:global align:4 +exec__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSection = .text:0x80239F18; // type:function size:0x238 scope:global align:4 +draw__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8023A150; // type:function size:0x90 scope:global align:4 +cleanup__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSection = .text:0x8023A1E0; // type:function size:0x4 scope:global align:4 +getSize__Q32og6Screen20DispMemberCourseNameFv = .text:0x8023A1E4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen20DispMemberCourseNameFv = .text:0x8023A1EC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen20DispMemberCourseNameFv = .text:0x8023A1F8; // type:function size:0x10 scope:weak align:4 +__sinit_singleGS_Load_cpp = .text:0x8023A208; // type:function size:0x28 scope:local align:4 +init__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game8StateArg = .text:0x8023A230; // type:function size:0x4A0 scope:global align:4 +exec__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSection = .text:0x8023A6D0; // type:function size:0x40C scope:global align:4 +onMovieStart__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8023AADC; // type:function size:0x5B8 scope:global align:4 +onMovieDone__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl = .text:0x8023B094; // type:function size:0xF4 scope:global align:4 +onMovieCommand__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectioni = .text:0x8023B188; // type:function size:0x2C0 scope:global align:4 +draw__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionR8Graphics = .text:0x8023B448; // type:function size:0x28 scope:global align:4 +cleanup__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSection = .text:0x8023B470; // type:function size:0x7C scope:global align:4 +__sinit_singleGS_DayEnd_cpp = .text:0x8023B4EC; // type:function size:0x28 scope:local align:4 +drawOtakaraWindow__Q24Game15BaseGameSectionFR8Graphics = .text:0x8023B514; // type:function size:0x64 scope:global align:4 +setDraw2DCreature__Q24Game15BaseGameSectionFPQ24Game8Creature = .text:0x8023B578; // type:function size:0x94 scope:global align:4 +startZoomWindow__Q24Game15BaseGameSectionFv = .text:0x8023B60C; // type:function size:0x1E0 scope:global align:4 +startKantei2D__Q24Game15BaseGameSectionFv = .text:0x8023B7EC; // type:function size:0x258 scope:global align:4 +onKanteiDone__Q24Game15BaseGameSectionFR7Rect = .text:0x8023BA44; // type:function size:0xCC scope:global align:4 +init__Q34Game15BaseGameSection10ZoomCameraFffR10Vector3P10Controller = .text:0x8023BB10; // type:function size:0x114 scope:global align:4 +makeLookAt__Q34Game15BaseGameSection10ZoomCameraFv = .text:0x8023BC24; // type:function size:0x2B0 scope:global align:4 +doUpdate__Q34Game15BaseGameSection10ZoomCameraFv = .text:0x8023BED4; // type:function size:0x164 scope:global align:4 +do_drawOtakaraWindow__Q24Game15BaseGameSectionFR8Graphics = .text:0x8023C038; // type:function size:0x410 scope:global align:4 +__dt__Q34Game15BaseGameSection10ZoomCameraFv = .text:0x8023C448; // type:function size:0xD0 scope:weak align:4 +startVibration__12LookAtCameraFi = .text:0x8023C518; // type:function size:0x4 scope:weak align:4 +getSize__Q32og6Screen21DispMemberSpecialItemFv = .text:0x8023C51C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen21DispMemberSpecialItemFv = .text:0x8023C524; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen21DispMemberSpecialItemFv = .text:0x8023C530; // type:function size:0x14 scope:weak align:4 +getSize__Q32og6Screen16DispMemberKanteiFv = .text:0x8023C544; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen16DispMemberKanteiFv = .text:0x8023C54C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen16DispMemberKanteiFv = .text:0x8023C558; // type:function size:0x10 scope:weak align:4 +__sinit_baseGameSectionKantei_cpp = .text:0x8023C568; // type:function size:0x28 scope:local align:4 +insertSort__Q210SweepPrune4NodeFRQ210SweepPrune4Node = .text:0x8023C590; // type:function size:0x1C8 scope:global align:4 +__ct__Q210SweepPrune6ObjectFv = .text:0x8023C758; // type:function size:0x70 scope:global align:4 +__ct__Q210SweepPrune5WorldFv = .text:0x8023C7C8; // type:function size:0x2C scope:global align:4 +resolve__Q210SweepPrune5WorldFRQ310SweepPrune5World10ResolveArg = .text:0x8023C7F4; // type:function size:0x148 scope:global align:4 +__dt__Q29TexCaster6CasterFv = .text:0x8023C93C; // type:function size:0x60 scope:global align:4 +hide__Q29TexCaster6CasterFv = .text:0x8023C99C; // type:function size:0x14 scope:global align:4 +fadein__Q29TexCaster6CasterFf = .text:0x8023C9B0; // type:function size:0x80 scope:global align:4 +globalInstance__Q29TexCaster3MgrFv = .text:0x8023CA30; // type:function size:0xA0 scope:global align:4 +deleteInstance__Q29TexCaster3MgrFv = .text:0x8023CAD0; // type:function size:0x6C scope:global align:4 +loadResource__Q29TexCaster3MgrFv = .text:0x8023CB3C; // type:function size:0xE8 scope:global align:4 +create__Q29TexCaster3MgrFRQ23Sys6Spheref = .text:0x8023CC24; // type:function size:0x550 scope:global align:4 +draw__Q29TexCaster3MgrFR8Graphics = .text:0x8023D174; // type:function size:0x288 scope:global align:4 +clear__Q24Game17PelletBirthBufferFv = .text:0x8023D3FC; // type:function size:0xC scope:global align:4 +entry__Q24Game17PelletBirthBufferFRQ24Game13PelletInitArg = .text:0x8023D408; // type:function size:0xF0 scope:global align:4 +birthAll__Q24Game17PelletBirthBufferFv = .text:0x8023D4F8; // type:function size:0xA0 scope:global align:4 +__sinit_pelletBirthBuffer_cpp = .text:0x8023D598; // type:function size:0x3C scope:local align:4 +__ct__Q24Game13PelletInitArgFv = .text:0x8023D5D4; // type:function size:0x58 scope:weak align:4 +__ct__6VSFifoFUl = .text:0x8023D62C; // type:function size:0x90 scope:global align:4 +__dt__6VSFifoFv = .text:0x8023D6BC; // type:function size:0x48 scope:global align:4 +becomeCurrent__6VSFifoFv = .text:0x8023D704; // type:function size:0x8C scope:global align:4 +calcLagrange__Q24Game9NsMathExpFPC10Vector3fR10Vector3 = .text:0x8023D790; // type:function size:0xA8 scope:global align:4 +calcJointPos__Q24Game9NsMathExpFRC10Vector3RC10Vector3ffR10Vector3R10Vector3 = .text:0x8023D838; // type:function size:0x1D8 scope:global align:4 +__ct__Q24Game12CylinderBaseFv = .text:0x8023DA10; // type:function size:0x4DC scope:global align:4 +setColor__Q24Game12CylinderBaseFP6Color4 = .text:0x8023DEEC; // type:function size:0x8 scope:global align:4 +setShadowRect__Q24Game12CylinderBaseFR7Rect = .text:0x8023DEF4; // type:function size:0x24 scope:global align:4 +setCameraParms__Q24Game12CylinderBaseFP6Camerai = .text:0x8023DF18; // type:function size:0xB4 scope:global align:4 +makeSRT__Q24Game12CylinderBaseFR7MatrixfRQ24Game11ShadowParam = .text:0x8023DFCC; // type:function size:0xCC scope:global align:4 +getCylinderType__Q24Game12CylinderBaseFRQ24Game11ShadowParami = .text:0x8023E098; // type:function size:0xA4 scope:global align:4 +setFilterTextureID__Q24Game12CylinderBaseFi = .text:0x8023E13C; // type:function size:0x4 scope:global align:4 +drawInit__Q24Game12CylinderBaseFv = .text:0x8023E140; // type:function size:0x4 scope:global align:4 +drawCylinder__Q24Game12CylinderBaseFR7Matrixfi = .text:0x8023E144; // type:function size:0x4 scope:global align:4 +drawFinish__Q24Game12CylinderBaseFv = .text:0x8023E148; // type:function size:0x4 scope:global align:4 +__ct__Q24Game15ShadowCylinder2FPQ24Game11ShadowParmsP6Color4 = .text:0x8023E14C; // type:function size:0x164 scope:global align:4 +setFilterTextureID__Q24Game15ShadowCylinder2Fi = .text:0x8023E2B0; // type:function size:0x44 scope:global align:4 +drawInit__Q24Game15ShadowCylinder2Fv = .text:0x8023E2F4; // type:function size:0x350 scope:global align:4 +drawCylinder__Q24Game15ShadowCylinder2FR7Matrixfi = .text:0x8023E644; // type:function size:0xC0 scope:global align:4 +drawFinish__Q24Game15ShadowCylinder2Fv = .text:0x8023E704; // type:function size:0x1E4 scope:global align:4 +copyShadowTexture__Q24Game15ShadowCylinder2Fv = .text:0x8023E8E8; // type:function size:0x170 scope:global align:4 +setupTextureFilterGX__Q24Game15ShadowCylinder2Fv = .text:0x8023EA58; // type:function size:0xFC scope:global align:4 +drawTextureFilter__Q24Game15ShadowCylinder2Fv = .text:0x8023EB54; // type:function size:0x108 scope:global align:4 +__ct__Q24Game15ShadowCylinder3FPQ24Game11ShadowParmsP6Color4 = .text:0x8023EC5C; // type:function size:0x5C scope:global align:4 +drawInit__Q24Game15ShadowCylinder3Fv = .text:0x8023ECB8; // type:function size:0x350 scope:global align:4 +drawCylinder__Q24Game15ShadowCylinder3FR7Matrixfi = .text:0x8023F008; // type:function size:0xF8 scope:global align:4 +drawFinish__Q24Game15ShadowCylinder3Fv = .text:0x8023F100; // type:function size:0x1D4 scope:global align:4 +drawScreenFilter__Q24Game15ShadowCylinder3Fv = .text:0x8023F2D4; // type:function size:0xD0 scope:global align:4 +setFilterTextureID__Q24Game15ShadowCylinder3Fi = .text:0x8023F3A4; // type:function size:0x4 scope:weak align:4 +__sinit_ShadowCylinder_cpp = .text:0x8023F3A8; // type:function size:0x28 scope:local align:4 +__ct__Q24Game10PlayCameraFPQ24Game4Navi = .text:0x8023F3D0; // type:function size:0x138 scope:global align:4 +setCameraParms__Q24Game10PlayCameraFPQ24Game11CameraParms = .text:0x8023F508; // type:function size:0x8 scope:global align:4 +setVibrationParms__Q24Game10PlayCameraFPQ24Game14VibrationParms = .text:0x8023F510; // type:function size:0x8 scope:global align:4 +init__Q24Game10PlayCameraFv = .text:0x8023F518; // type:function size:0x16C scope:global align:4 +setCameraAngle__Q24Game10PlayCameraFf = .text:0x8023F684; // type:function size:0x34 scope:global align:4 +getCameraData__Q24Game10PlayCameraFRQ24Game10CameraData = .text:0x8023F6B8; // type:function size:0x5C scope:global align:4 +setCameraData__Q24Game10PlayCameraFRQ24Game10CameraData = .text:0x8023F714; // type:function size:0x5C scope:global align:4 +changePlayerMode__Q24Game10PlayCameraFb = .text:0x8023F770; // type:function size:0x80 scope:global align:4 +isSpecialCamera__Q24Game10PlayCameraFv = .text:0x8023F7F0; // type:function size:0x4C scope:global align:4 +doUpdate__Q24Game10PlayCameraFv = .text:0x8023F83C; // type:function size:0xE8 scope:global align:4 +updateMatrix__Q24Game10PlayCameraFv = .text:0x8023F924; // type:function size:0xE0 scope:global align:4 +noUpdate__Q24Game10PlayCameraFv = .text:0x8023FA04; // type:function size:0x7C scope:global align:4 +isVibration__Q24Game10PlayCameraFv = .text:0x8023FA80; // type:function size:0x44 scope:global align:4 +startVibration__Q24Game10PlayCameraFif = .text:0x8023FAC4; // type:function size:0x208 scope:global align:4 +startDemoCamera__Q24Game10PlayCameraFi = .text:0x8023FCCC; // type:function size:0xD0 scope:global align:4 +finishDemoCamera__Q24Game10PlayCameraFv = .text:0x8023FD9C; // type:function size:0x20 scope:global align:4 +updateCameraMode__Q24Game10PlayCameraFv = .text:0x8023FDBC; // type:function size:0xEC scope:global align:4 +startZoomCamera__Q24Game10PlayCameraFv = .text:0x8023FEA8; // type:function size:0x80 scope:global align:4 +startGameCamera__Q24Game10PlayCameraFi = .text:0x8023FF28; // type:function size:0x84 scope:global align:4 +setTargetParms__Q24Game10PlayCameraFv = .text:0x8023FFAC; // type:function size:0x2F8 scope:global align:4 +setTargetThetaToWhistle__Q24Game10PlayCameraFv = .text:0x802402A4; // type:function size:0x70 scope:global align:4 +setFollowTime__Q24Game10PlayCameraFv = .text:0x80240314; // type:function size:0x10 scope:global align:4 +setSmoothThetaSpeed__Q24Game10PlayCameraFv = .text:0x80240324; // type:function size:0x68 scope:global align:4 +changeTargetTheta__Q24Game10PlayCameraFv = .text:0x8024038C; // type:function size:0xE0 scope:global align:4 +changeTargetAtPosition__Q24Game10PlayCameraFv = .text:0x8024046C; // type:function size:0x384 scope:global align:4 +updateParms__Q24Game10PlayCameraFi = .text:0x802407F0; // type:function size:0x164 scope:global align:4 +updateVibration__Q24Game10PlayCameraFi = .text:0x80240954; // type:function size:0x12C scope:global align:4 +otherVibFinished__Q24Game10PlayCameraFi = .text:0x80240A80; // type:function size:0x74 scope:global align:4 +isModCameraFinished__Q24Game10PlayCameraFv = .text:0x80240AF4; // type:function size:0x174 scope:global align:4 +setCollisionCameraTargetPhi__Q24Game10PlayCameraFi = .text:0x80240C68; // type:function size:0x158 scope:global align:4 +getCollisionCameraTargetPhi__Q24Game10PlayCameraFff = .text:0x80240DC0; // type:function size:0x384 scope:global align:4 +__dt__Q24Game10PlayCameraFv = .text:0x80241144; // type:function size:0xD0 scope:weak align:4 +startVibration__Q24Game10PlayCameraFi = .text:0x80241214; // type:function size:0x4 scope:weak align:4 +getLookAtPosition___Q24Game10PlayCameraFv = .text:0x80241218; // type:function size:0x1C scope:weak align:4 +__sinit_playCamera_cpp = .text:0x80241234; // type:function size:0x28 scope:local align:4 +__ct__Q24Game19JointShadowRootNodeFPQ24Game8Creature = .text:0x8024125C; // type:function size:0x60 scope:global align:4 +__ct__Q24Game15JointShadowNodeFi = .text:0x802412BC; // type:function size:0x74 scope:global align:4 +init__Q24Game15JointShadowNodeFi = .text:0x80241330; // type:function size:0x74 scope:global align:4 +__ct__Q24Game9ShadowMgrFi = .text:0x802413A4; // type:function size:0x80 scope:global align:4 +loadResource__Q24Game9ShadowMgrFv = .text:0x80241424; // type:function size:0x210 scope:global align:4 +init__Q24Game9ShadowMgrFv = .text:0x80241634; // type:function size:0x4 scope:global align:4 +setViewport__Q24Game9ShadowMgrFP8Viewporti = .text:0x80241638; // type:function size:0x10 scope:global align:4 +setShadowColor__Q24Game9ShadowMgrFP6Color4 = .text:0x80241648; // type:function size:0x48 scope:global align:4 +update__Q24Game9ShadowMgrFv = .text:0x80241690; // type:function size:0x260 scope:global align:4 +draw__Q24Game9ShadowMgrFR8Graphicsi = .text:0x802418F0; // type:function size:0x210 scope:global align:4 +createShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241B00; // type:function size:0xF0 scope:global align:4 +killAll__Q24Game9ShadowMgrFv = .text:0x80241BF0; // type:function size:0x58 scope:global align:4 +killShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241C48; // type:function size:0x44 scope:global align:4 +addShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241C8C; // type:function size:0x44 scope:global align:4 +delShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241CD0; // type:function size:0x44 scope:global align:4 +addNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241D14; // type:function size:0xAC scope:global align:4 +addJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241DC0; // type:function size:0xB8 scope:global align:4 +delNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241E78; // type:function size:0x6C scope:global align:4 +delJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241EE4; // type:function size:0x80 scope:global align:4 +killNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80241F64; // type:function size:0xAC scope:global align:4 +killJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature = .text:0x80242010; // type:function size:0xAC scope:global align:4 +setJointShadowRootNode__Q24Game9ShadowMgrFPQ24Game19JointShadowRootNode = .text:0x802420BC; // type:function size:0x24 scope:global align:4 +setForceVisible__Q24Game9ShadowMgrFPQ24Game8Creatureb = .text:0x802420E0; // type:function size:0xF0 scope:global align:4 +getSize__Q24Game9ShadowMgrFv = .text:0x802421D0; // type:function size:0x30 scope:global align:4 +getMax__Q24Game9ShadowMgrFv = .text:0x80242200; // type:function size:0x8 scope:global align:4 +getCreature__Q24Game9ShadowMgrFi = .text:0x80242208; // type:function size:0x38 scope:global align:4 +getFirst__Q24Game9ShadowMgrFv = .text:0x80242240; // type:function size:0x8 scope:global align:4 +getNext__Q24Game9ShadowMgrFi = .text:0x80242248; // type:function size:0x8 scope:global align:4 +isDone__Q24Game9ShadowMgrFi = .text:0x80242250; // type:function size:0x4C scope:global align:4 +getShadowMaskType__Q24Game9ShadowMgrFii = .text:0x8024229C; // type:function size:0x4C scope:global align:4 +getShadowType__Q24Game9ShadowMgrFii = .text:0x802422E8; // type:function size:0x4C scope:global align:4 +isDrawNormalShadow__Q24Game9ShadowMgrFPQ24Game10ShadowNodei = .text:0x80242334; // type:function size:0x80 scope:global align:4 +isDrawJointShadow__Q24Game9ShadowMgrFPQ24Game19JointShadowRootNodei = .text:0x802423B4; // type:function size:0x80 scope:global align:4 +readShadowParms__Q24Game9ShadowMgrFPc = .text:0x80242434; // type:function size:0xAC scope:global align:4 +write__Q24Game9ShadowMgrFR6Stream = .text:0x802424E0; // type:function size:0x84 scope:global align:4 +read__Q24Game9ShadowMgrFR6Stream = .text:0x80242564; // type:function size:0x7C scope:global align:4 +__dt__Q24Game9ShadowMgrFv = .text:0x802425E0; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game10ShadowNodeFv = .text:0x80242640; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game15JointShadowNodeFv = .text:0x802426A0; // type:function size:0x60 scope:weak align:4 +__dt__Q24Game19JointShadowRootNodeFv = .text:0x80242700; // type:function size:0x60 scope:weak align:4 +__sinit_shadowMgr_cpp = .text:0x80242760; // type:function size:0x28 scope:local align:4 +__ct__Q34Game4Cave8MapUnitsFP10JUTTexture = .text:0x80242788; // type:function size:0xA4 scope:global align:4 +setDoorNum__Q34Game4Cave8MapUnitsFi = .text:0x8024282C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Cave10AdjustNodeFv = .text:0x8024288C; // type:function size:0x60 scope:weak align:4 +setUnitName__Q34Game4Cave8MapUnitsFPc = .text:0x802428EC; // type:function size:0x8 scope:global align:4 +setUnitIndex__Q34Game4Cave8MapUnitsFi = .text:0x802428F4; // type:function size:0x8 scope:global align:4 +setUnitKind__Q34Game4Cave8MapUnitsFi = .text:0x802428FC; // type:function size:0x8 scope:global align:4 +setUnitSize__Q34Game4Cave8MapUnitsFii = .text:0x80242904; // type:function size:0xC scope:global align:4 +setBaseGenPtr__Q34Game4Cave8MapUnitsFPQ34Game4Cave7BaseGen = .text:0x80242910; // type:function size:0x8 scope:global align:4 +__ct__Q34Game4Cave8UnitInfoFPQ34Game4Cave8MapUnits = .text:0x80242918; // type:function size:0x64 scope:global align:4 +setUnitTexture__Q34Game4Cave8UnitInfoFP10JUTTexture = .text:0x8024297C; // type:function size:0xC scope:global align:4 +setUnitRotation__Q34Game4Cave8UnitInfoFi = .text:0x80242988; // type:function size:0x8 scope:global align:4 +create__Q34Game4Cave8UnitInfoFv = .text:0x80242990; // type:function size:0x1BC scope:global align:4 +getUnitName__Q34Game4Cave8UnitInfoFv = .text:0x80242B4C; // type:function size:0xC scope:global align:4 +getUnitKind__Q34Game4Cave8UnitInfoFv = .text:0x80242B58; // type:function size:0xC scope:global align:4 +getUnitSizeX__Q34Game4Cave8UnitInfoFv = .text:0x80242B64; // type:function size:0x8 scope:global align:4 +getUnitSizeY__Q34Game4Cave8UnitInfoFv = .text:0x80242B6C; // type:function size:0x8 scope:global align:4 +getUnitRotation__Q34Game4Cave8UnitInfoFv = .text:0x80242B74; // type:function size:0x8 scope:global align:4 +getDoorNode__Q34Game4Cave8UnitInfoFi = .text:0x80242B7C; // type:function size:0x24 scope:global align:4 +getBaseGen__Q34Game4Cave8UnitInfoFv = .text:0x80242BA0; // type:function size:0xC scope:global align:4 +draw__Q34Game4Cave8UnitInfoFffff = .text:0x80242BAC; // type:function size:0x18C scope:global align:4 +__ct__Q34Game4Cave10AdjustInfoFv = .text:0x80242D38; // type:function size:0x18 scope:global align:4 +__ct__Q34Game4Cave7MapNodeFPQ34Game4Cave8UnitInfo = .text:0x80242D50; // type:function size:0x2AC scope:global align:4 +setOffset__Q34Game4Cave7MapNodeFii = .text:0x80242FFC; // type:function size:0xC scope:global align:4 +getDoorDirect__Q34Game4Cave7MapNodeFi = .text:0x80243008; // type:function size:0x24 scope:global align:4 +getDoorOffset__Q34Game4Cave7MapNodeFiRiRi = .text:0x8024302C; // type:function size:0x100 scope:global align:4 +isDoorSet__Q34Game4Cave7MapNodeFPQ34Game4Cave8DoorNodeiii = .text:0x8024312C; // type:function size:0xFC scope:global align:4 +setDoorClose__Q34Game4Cave7MapNodeFiPQ34Game4Cave7MapNodei = .text:0x80243228; // type:function size:0x34 scope:global align:4 +detachDoorClose__Q34Game4Cave7MapNodeFv = .text:0x8024325C; // type:function size:0x9C scope:global align:4 +isDoorClose__Q34Game4Cave7MapNodeFi = .text:0x802432F8; // type:function size:0x1C scope:global align:4 +resetDoorScore__Q34Game4Cave7MapNodeFv = .text:0x80243314; // type:function size:0x100 scope:global align:4 +setDoorScore__Q34Game4Cave7MapNodeFii = .text:0x80243414; // type:function size:0x34 scope:global align:4 +isDoorScoreSetDone__Q34Game4Cave7MapNodeFi = .text:0x80243448; // type:function size:0x1C scope:global align:4 +getDoorNode__Q34Game4Cave7MapNodeFi = .text:0x80243464; // type:function size:0x24 scope:global align:4 +getAdjustNode__Q34Game4Cave7MapNodeFi = .text:0x80243488; // type:function size:0x14 scope:global align:4 +isGateSetDoor__Q34Game4Cave7MapNodeFi = .text:0x8024349C; // type:function size:0x164 scope:global align:4 +getGateScore__Q34Game4Cave7MapNodeFi = .text:0x80243600; // type:function size:0x198 scope:global align:4 +setEnemyScore__Q34Game4Cave7MapNodeFv = .text:0x80243798; // type:function size:0xAC scope:global align:4 +setNodeScore__Q34Game4Cave7MapNodeFi = .text:0x80243844; // type:function size:0x8 scope:global align:4 +copyNodeScoreToVersusScore__Q34Game4Cave7MapNodeFv = .text:0x8024384C; // type:function size:0xC scope:global align:4 +subNodeScoreToVersusScore__Q34Game4Cave7MapNodeFv = .text:0x80243858; // type:function size:0x14 scope:global align:4 +draw__Q34Game4Cave7MapNodeFfff = .text:0x8024386C; // type:function size:0x110 scope:global align:4 +getNodeOffsetX__Q34Game4Cave7MapNodeFv = .text:0x8024397C; // type:function size:0x8 scope:global align:4 +getNodeOffsetY__Q34Game4Cave7MapNodeFv = .text:0x80243984; // type:function size:0x8 scope:global align:4 +getEnemyScore__Q34Game4Cave7MapNodeFv = .text:0x8024398C; // type:function size:0x8 scope:global align:4 +getNodeScore__Q34Game4Cave7MapNodeFv = .text:0x80243994; // type:function size:0x8 scope:global align:4 +getVersusScore__Q34Game4Cave7MapNodeFv = .text:0x8024399C; // type:function size:0x8 scope:global align:4 +getUnitName__Q34Game4Cave7MapNodeFv = .text:0x802439A4; // type:function size:0x24 scope:global align:4 +getNodeCentreOffset__Q34Game4Cave7MapNodeFRfRf = .text:0x802439C8; // type:function size:0xD0 scope:global align:4 +getDirection__Q34Game4Cave7MapNodeFv = .text:0x80243A98; // type:function size:0x24 scope:global align:4 +getBaseGenGlobalPosition__Q34Game4Cave7MapNodeFPQ34Game4Cave7BaseGen = .text:0x80243ABC; // type:function size:0x1C4 scope:global align:4 +getDoorGlobalPosition__Q34Game4Cave7MapNodeFi = .text:0x80243C80; // type:function size:0x25C scope:global align:4 +getBaseGenGlobalDirection__Q34Game4Cave7MapNodeFPQ34Game4Cave7BaseGen = .text:0x80243EDC; // type:function size:0xEC scope:global align:4 +getDoorGlobalDirection__Q34Game4Cave7MapNodeFi = .text:0x80243FC8; // type:function size:0x78 scope:global align:4 +getNumDoors__Q34Game4Cave7MapNodeFv = .text:0x80244040; // type:function size:0x34 scope:global align:4 +__dt__Q34Game4Cave7MapNodeFv = .text:0x80244074; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave9EnemyNodeFv = .text:0x802440D4; // type:function size:0x74 scope:global align:4 +__dt__Q24Game16ObjectLayoutNodeFv = .text:0x80244148; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave9EnemyNodeFPQ34Game4Cave9EnemyUnitPQ34Game4Cave7BaseGeni = .text:0x802441A8; // type:function size:0x94 scope:global align:4 +makeGlobalData__Q34Game4Cave9EnemyNodeFPQ34Game4Cave7MapNode = .text:0x8024423C; // type:function size:0x1A8 scope:global align:4 +setGlobalData__Q34Game4Cave9EnemyNodeFR10Vector3f = .text:0x802443E4; // type:function size:0x20 scope:global align:4 +setBirthDoorIndex__Q34Game4Cave9EnemyNodeFi = .text:0x80244404; // type:function size:0x8 scope:global align:4 +getObjectId__Q34Game4Cave9EnemyNodeFv = .text:0x8024440C; // type:function size:0x20 scope:global align:4 +getExtraCode__Q34Game4Cave9EnemyNodeFv = .text:0x8024442C; // type:function size:0x20 scope:global align:4 +getObjectType__Q34Game4Cave9EnemyNodeFv = .text:0x8024444C; // type:function size:0x20 scope:global align:4 +getBirthCount__Q34Game4Cave9EnemyNodeFv = .text:0x8024446C; // type:function size:0x8 scope:global align:4 +getBirthPosition__Q34Game4Cave9EnemyNodeFRfRf = .text:0x80244474; // type:function size:0x14 scope:global align:4 +getDirection__Q34Game4Cave9EnemyNodeFv = .text:0x80244488; // type:function size:0x8 scope:global align:4 +getBirthDoorIndex__Q34Game4Cave9EnemyNodeFv = .text:0x80244490; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Cave9EnemyNodeFv = .text:0x80244498; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Cave10RandMapMgrFb = .text:0x80244508; // type:function size:0x88 scope:global align:4 +loadResource__Q34Game4Cave10RandMapMgrFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit = .text:0x80244590; // type:function size:0x1A4 scope:global align:4 +create__Q34Game4Cave10RandMapMgrFv = .text:0x80244734; // type:function size:0x104 scope:global align:4 +getNumRooms__Q34Game4Cave10RandMapMgrFv = .text:0x80244838; // type:function size:0x34 scope:global align:4 +getUseUnitName__Q34Game4Cave10RandMapMgrFi = .text:0x8024486C; // type:function size:0x3C scope:global align:4 +getRoomData__Q34Game4Cave10RandMapMgrFiRfRfRi = .text:0x802448A8; // type:function size:0x84 scope:global align:4 +makeRoomLink__Q34Game4Cave10RandMapMgrFi = .text:0x8024492C; // type:function size:0xE4 scope:global align:4 +makeObjectLayoutInfo__Q34Game4Cave10RandMapMgrFi = .text:0x80244A10; // type:function size:0x84 scope:global align:4 +getStartPosition__Q34Game4Cave10RandMapMgrFR10Vector3i = .text:0x80244A94; // type:function size:0x88 scope:global align:4 +getItemDropPosition__Q34Game4Cave10RandMapMgrFR10Vector3ff = .text:0x80244B1C; // type:function size:0xA0 scope:global align:4 +getItemDropPosition__Q34Game4Cave10RandMapMgrFP10Vector3iff = .text:0x80244BBC; // type:function size:0x188 scope:global align:4 +setUnitTexture__Q34Game4Cave10RandMapMgrFiP10JUTTexture = .text:0x80244D44; // type:function size:0x48 scope:global align:4 +setCaptureOn__Q34Game4Cave10RandMapMgrFv = .text:0x80244D8C; // type:function size:0xC scope:global align:4 +captureRadarMap__Q34Game4Cave10RandMapMgrFR8Graphics = .text:0x80244D98; // type:function size:0xDC scope:global align:4 +isLastFloor__Q34Game4Cave10RandMapMgrFv = .text:0x80244E74; // type:function size:0x1C scope:global align:4 +isVersusHiba__Q34Game4Cave10RandMapMgrFv = .text:0x80244E90; // type:function size:0x8 scope:global align:4 +getRadarMapTexture__Q34Game4Cave10RandMapMgrFv = .text:0x80244E98; // type:function size:0x8 scope:global align:4 +radarMapPartsOpen__Q34Game4Cave10RandMapMgrFR10Vector3 = .text:0x80244EA0; // type:function size:0x24 scope:global align:4 +getPositionOnTex__Q34Game4Cave10RandMapMgrFR10Vector3RfRf = .text:0x80244EC4; // type:function size:0x20 scope:global align:4 +getBaseGenData__Q34Game4Cave10RandMapMgrFP10Vector3Pf = .text:0x80244EE4; // type:function size:0x254 scope:global align:4 +drawFrameBuffer__Q34Game4Cave10RandMapMgrFR8Graphics = .text:0x80245138; // type:function size:0x200 scope:global align:4 +__dt__Q24Game8RoomLinkFv = .text:0x80245338; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Cave10RandMapMgrFv = .text:0x80245398; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave11RandMapDrawFPQ34Game4Cave16MapUnitGenerator = .text:0x802453F8; // type:function size:0x8 scope:global align:4 +radarMapPartsOpen__Q34Game4Cave11RandMapDrawFR10Vector3 = .text:0x80245400; // type:function size:0x1CC scope:global align:4 +draw__Q34Game4Cave11RandMapDrawFR8Graphicsfff = .text:0x802455CC; // type:function size:0x78 scope:global align:4 +__ct__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x80245644; // type:function size:0x8 scope:global align:4 +isPutOnMap__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x8024564C; // type:function size:0x7C scope:global align:4 +isPartsOnParts__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x802456C8; // type:function size:0xF0 scope:global align:4 +isDoorOnParts__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x802457B8; // type:function size:0x220 scope:global align:4 +isPartsOnDoor__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode = .text:0x802459D8; // type:function size:0x1E8 scope:global align:4 +isInnerBox__Q34Game4Cave14RandMapCheckerFiiiiiiii = .text:0x80245BC0; // type:function size:0x7C scope:global align:4 +__ct__Q34Game4Cave11EditMapUnitFv = .text:0x80245C3C; // type:function size:0x30 scope:global align:4 +read__Q34Game4Cave11EditMapUnitFPc = .text:0x80245C6C; // type:function size:0xB8 scope:global align:4 +read__Q34Game4Cave11EditMapUnitFP6Stream = .text:0x80245D24; // type:function size:0x1E8 scope:global align:4 +setEditNumber__Q34Game4Cave11EditMapUnitFi = .text:0x80245F0C; // type:function size:0x54 scope:global align:4 +__ct__Q34Game4Cave11RandMapUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x80245F60; // type:function size:0x19C scope:global align:4 +setMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x802460FC; // type:function size:0xF4 scope:global align:4 +getAliveMapIndex__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNode = .text:0x802461F0; // type:function size:0x34 scope:global align:4 +getTextureSize__Q34Game4Cave11RandMapUnitFRiRi = .text:0x80246224; // type:function size:0xA0 scope:global align:4 +getRandMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x802462C4; // type:function size:0x6C scope:global align:4 +changeCapToRootLoopMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246330; // type:function size:0x284 scope:global align:4 +changeTwoToOneMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x802465B4; // type:function size:0x360 scope:global align:4 +setEditorMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246914; // type:function size:0x144 scope:global align:4 +setFirstMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246A58; // type:function size:0x6C scope:global align:4 +getFirstMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246AC4; // type:function size:0x8C scope:global align:4 +getNormalRandMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80246B50; // type:function size:0x188 scope:global align:4 +setUnitKindOrder__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodePi = .text:0x80246CD8; // type:function size:0xC8 scope:global align:4 +setUnitDoorSorting__Q34Game4Cave11RandMapUnitFi = .text:0x80246DA0; // type:function size:0x314 scope:global align:4 +setRandomDoorIndex__Q34Game4Cave11RandMapUnitFPii = .text:0x802470B4; // type:function size:0x164 scope:global align:4 +getLoopRandMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80247218; // type:function size:0x208 scope:global align:4 +getCalcDoorIndex__Q34Game4Cave11RandMapUnitFRiRiRii = .text:0x80247420; // type:function size:0xC8 scope:global align:4 +getLinkDoorNodeFirst__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodeiiiRi = .text:0x802474E8; // type:function size:0x12C scope:global align:4 +isInLinkArea__Q34Game4Cave11RandMapUnitFiiiii = .text:0x80247614; // type:function size:0xD0 scope:global align:4 +getLoopMapNode__Q34Game4Cave11RandMapUnitFPPQ34Game4Cave7MapNode = .text:0x802476E4; // type:function size:0x130 scope:global align:4 +getLinkDoorDirection__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodeiPQ34Game4Cave7MapNodei = .text:0x80247814; // type:function size:0xEC scope:global align:4 +getUpToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x80247900; // type:function size:0xBC scope:global align:4 +getRightToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x802479BC; // type:function size:0xC4 scope:global align:4 +getDownToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x80247A80; // type:function size:0xBC scope:global align:4 +getLeftToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii = .text:0x80247B3C; // type:function size:0xC0 scope:global align:4 +getLoopEndMapUnit__Q34Game4Cave11RandMapUnitFv = .text:0x80247BFC; // type:function size:0x2F0 scope:global align:4 +getPartsKindNum__Q34Game4Cave11RandMapUnitFi = .text:0x80247EEC; // type:function size:0x70 scope:global align:4 +getOpenDoorNum__Q34Game4Cave11RandMapUnitFv = .text:0x80247F5C; // type:function size:0x8C scope:global align:4 +addMap__Q34Game4Cave11RandMapUnitFPQ34Game4Cave8UnitInfoiib = .text:0x80247FE8; // type:function size:0xB4 scope:global align:4 +changeMapPriority__Q34Game4Cave11RandMapUnitFPQ34Game4Cave8UnitInfo = .text:0x8024809C; // type:function size:0x3DC scope:global align:4 +moveCentre__Q34Game4Cave11RandMapUnitFv = .text:0x80248478; // type:function size:0x12C scope:global align:4 +closeDoorCheck__Q34Game4Cave11RandMapUnitFv = .text:0x802485A4; // type:function size:0x134 scope:global align:4 +deleteMapNode__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNode = .text:0x802486D8; // type:function size:0x38 scope:global align:4 +createLoopMapNodeCheck__Q34Game4Cave11RandMapUnitFv = .text:0x80248710; // type:function size:0x198 scope:global align:4 +isLoopMapNodeCheck__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodei = .text:0x802488A8; // type:function size:0x4C scope:global align:4 +__ct__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave16MapUnitGeneratorb = .text:0x802488F4; // type:function size:0xA8 scope:global align:4 +setManageClassPtr__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave12RandMapScore = .text:0x8024899C; // type:function size:0x8 scope:global align:4 +setEnemySlot__Q34Game4Cave13RandEnemyUnitFv = .text:0x802489A4; // type:function size:0x54 scope:global align:4 +setEnemyTypeWeight__Q34Game4Cave13RandEnemyUnitFv = .text:0x802489F8; // type:function size:0x278 scope:global align:4 +setEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248C70; // type:function size:0xF0 scope:global align:4 +setEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248D60; // type:function size:0xCC scope:global align:4 +setEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248E2C; // type:function size:0xCC scope:global align:4 +setEnemyTypeA__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248EF8; // type:function size:0x104 scope:global align:4 +setVersusHibaTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x80248FFC; // type:function size:0x190 scope:global align:4 +setVersusEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024918C; // type:function size:0x1A4 scope:global align:4 +setSlotEnemyTypeC__Q34Game4Cave13RandEnemyUnitFRii = .text:0x80249330; // type:function size:0x2F8 scope:global align:4 +setUnitRandEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv = .text:0x80249628; // type:function size:0x1A0 scope:global align:4 +makeSetEnemyTypeC__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodeiPQ34Game4Cave9EnemyUnit = .text:0x802497C8; // type:function size:0xD8 scope:global align:4 +setVersusEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv = .text:0x802498A0; // type:function size:0x17C scope:global align:4 +setSlotEnemyTypeF__Q34Game4Cave13RandEnemyUnitFi = .text:0x80249A1C; // type:function size:0x3E0 scope:global align:4 +setUnitRandEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv = .text:0x80249DFC; // type:function size:0x1A0 scope:global align:4 +makeSetEnemyTypeF__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUnit = .text:0x80249F9C; // type:function size:0x88 scope:global align:4 +setVersusEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024A024; // type:function size:0x17C scope:global align:4 +setSlotEnemyTypeB__Q34Game4Cave13RandEnemyUnitFi = .text:0x8024A1A0; // type:function size:0x3E0 scope:global align:4 +setUnitRandEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024A580; // type:function size:0x1A0 scope:global align:4 +makeSetEnemyTypeB__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUnit = .text:0x8024A720; // type:function size:0x88 scope:global align:4 +setVersusEasyEnemy__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024A7A8; // type:function size:0x2CC scope:global align:4 +getVersusEasyEnemyBaseGen__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024AA74; // type:function size:0x144 scope:global align:4 +setVersusEnemyTypeA__Q34Game4Cave13RandEnemyUnitFv = .text:0x8024ABB8; // type:function size:0x1D4 scope:global align:4 +setSlotEnemyTypeA__Q34Game4Cave13RandEnemyUnitFRiRii = .text:0x8024AD8C; // type:function size:0x3D4 scope:global align:4 +setUnitRandEnemyTypeA__Q34Game4Cave13RandEnemyUnitFRiii = .text:0x8024B160; // type:function size:0x298 scope:global align:4 +makeSetEnemyTypeA__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUniti = .text:0x8024B3F8; // type:function size:0x420 scope:global align:4 +isEnemySetGen__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024B818; // type:function size:0x3C scope:global align:4 +__ct__Q34Game4Cave6AdjustFv = .text:0x8024B854; // type:function size:0x14 scope:global align:4 +__ct__Q34Game4Cave10AdjustNodeFv = .text:0x8024B868; // type:function size:0x44 scope:global align:4 +__ct__Q34Game4Cave10AdjustNodeFPQ34Game4Cave6Adjust = .text:0x8024B8AC; // type:function size:0x4C scope:global align:4 +__ct__Q34Game4Cave4DoorFv = .text:0x8024B8F8; // type:function size:0x10 scope:global align:4 +__ct__Q34Game4Cave8DoorNodeFv = .text:0x8024B908; // type:function size:0x50 scope:global align:4 +__ct__Q34Game4Cave8DoorNodeFRQ34Game4Cave4Door = .text:0x8024B958; // type:function size:0x64 scope:global align:4 +isDoorAdjust__Q34Game4Cave8DoorNodeFPQ34Game4Cave8DoorNode = .text:0x8024B9BC; // type:function size:0x70 scope:global align:4 +__dt__Q34Game4Cave8DoorNodeFv = .text:0x8024BA2C; // type:function size:0x60 scope:weak align:4 +__ct__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit = .text:0x8024BA8C; // type:function size:0x200 scope:global align:4 +__defctor__Q34Game4Cave7MapNodeFv = .text:0x8024BC8C; // type:function size:0x24 scope:weak align:4 +createEditMapInfo__Q34Game4Cave16MapUnitGeneratorFPQ34Game4Cave11EditMapUnit = .text:0x8024BCB0; // type:function size:0xAC scope:global align:4 +createMemList__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterfacei = .text:0x8024BD5C; // type:function size:0x24C scope:global align:4 +isCreateList__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterface = .text:0x8024BFA8; // type:function size:0x78 scope:global align:4 +memMapListSorting__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C020; // type:function size:0xCC scope:global align:4 +createMapPartsList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C0EC; // type:function size:0x14C scope:global align:4 +createEnemyList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C238; // type:function size:0xB4 scope:global align:4 +createCapEnemyList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C2EC; // type:function size:0xEC scope:global align:4 +isPomGroup__Q34Game4Cave16MapUnitGeneratorFPQ34Game4Cave8TekiInfo = .text:0x8024C3D8; // type:function size:0x30 scope:global align:4 +createGateList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C408; // type:function size:0xB4 scope:global align:4 +createItemList__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C4BC; // type:function size:0xB4 scope:global align:4 +createCaveLevel__Q34Game4Cave16MapUnitGeneratorFv = .text:0x8024C570; // type:function size:0x2C scope:global align:4 +__sinit_MapUnitGenerator_cpp = .text:0x8024C59C; // type:function size:0x28 scope:local align:4 +nishimuraCreateRandomMap__Q24Game10RoomMapMgrFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit = .text:0x8024C5C4; // type:function size:0xF0 scope:global align:4 +nishimuraPlaceRooms__Q24Game10RoomMapMgrFv = .text:0x8024C6B4; // type:function size:0x11C scope:global align:4 +nishimuraSetTexture__Q24Game10RoomMapMgrFv = .text:0x8024C7D0; // type:function size:0x88 scope:global align:4 +__ct__Q34Game4Cave12RandMapScoreFPQ34Game4Cave16MapUnitGenerator = .text:0x8024C858; // type:function size:0xA8 scope:global align:4 +setMapUnitScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024C900; // type:function size:0x6C scope:global align:4 +setStartSlot__Q34Game4Cave12RandMapScoreFv = .text:0x8024C96C; // type:function size:0x38 scope:global align:4 +setGoalSlot__Q34Game4Cave12RandMapScoreFv = .text:0x8024C9A4; // type:function size:0x58 scope:global align:4 +makeObjectLayout__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePQ34Game4Cave12ObjectLayout = .text:0x8024C9FC; // type:function size:0x18C scope:global align:4 +getFixObjNode__Q34Game4Cave12RandMapScoreFi = .text:0x8024CB88; // type:function size:0x10 scope:global align:4 +getFixObjGen__Q34Game4Cave12RandMapScoreFi = .text:0x8024CB98; // type:function size:0x10 scope:global align:4 +getGlobalPosition__Q34Game4Cave12RandMapScoreFiR10Vector3 = .text:0x8024CBA8; // type:function size:0x64 scope:global align:4 +getVersusHighScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CC0C; // type:function size:0x8 scope:global align:4 +getVersusLowScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CC14; // type:function size:0x8 scope:global align:4 +isScoreSetDone__Q34Game4Cave12RandMapScoreFv = .text:0x8024CC1C; // type:function size:0x84 scope:global align:4 +clearRoomAndDoorScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CCA0; // type:function size:0xC4 scope:global align:4 +setUnitAndDoorScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024CD64; // type:function size:0x154 scope:global align:4 +setStartMapNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNode = .text:0x8024CEB8; // type:function size:0xB0 scope:global align:4 +setChallengePod__Q34Game4Cave12RandMapScoreFv = .text:0x8024CF68; // type:function size:0x13C scope:global align:4 +setVersusOnyon__Q34Game4Cave12RandMapScoreFv = .text:0x8024D0A4; // type:function size:0x1B8 scope:global align:4 +getMaxScoreRoomMapNode__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGen = .text:0x8024D25C; // type:function size:0xFC scope:global align:4 +calcNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNode = .text:0x8024D358; // type:function size:0x3B0 scope:global align:4 +copyNodeScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024D708; // type:function size:0x48 scope:global align:4 +subNodeScore__Q34Game4Cave12RandMapScoreFv = .text:0x8024D750; // type:function size:0x8C scope:global align:4 +setMapNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodei = .text:0x8024D7DC; // type:function size:0x64 scope:global align:4 +setChallengeFixObjNormal__Q34Game4Cave12RandMapScoreFv = .text:0x8024D840; // type:function size:0x3BC scope:global align:4 +setChallengeFixObjHard__Q34Game4Cave12RandMapScoreFv = .text:0x8024DBFC; // type:function size:0x324 scope:global align:4 +isGoalSetHard__Q34Game4Cave12RandMapScoreFv = .text:0x8024DF20; // type:function size:0x64 scope:global align:4 +isFixObjSet__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024DF84; // type:function size:0x128 scope:global align:4 +__dt__Q34Game4Cave10FixObjNodeFv = .text:0x8024E0AC; // type:function size:0x70 scope:weak align:4 +getObjectId__Q34Game4Cave10FixObjNodeFv = .text:0x8024E11C; // type:function size:0x8 scope:weak align:4 +getObjectType__Q34Game4Cave10FixObjNodeFv = .text:0x8024E124; // type:function size:0x8 scope:weak align:4 +getBirthCount__Q34Game4Cave10FixObjNodeFv = .text:0x8024E12C; // type:function size:0x8 scope:weak align:4 +getDirection__Q34Game4Cave10FixObjNodeFv = .text:0x8024E134; // type:function size:0x8 scope:weak align:4 +getBirthPosition__Q34Game4Cave10FixObjNodeFRfRf = .text:0x8024E13C; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game4Cave8ItemNodeFv = .text:0x8024E150; // type:function size:0x6C scope:global align:4 +__ct__Q34Game4Cave8ItemNodeFPQ34Game4Cave8ItemUnitPQ34Game4Cave7BaseGeni = .text:0x8024E1BC; // type:function size:0x8C scope:global align:4 +makeGlobalData__Q34Game4Cave8ItemNodeFPQ34Game4Cave7MapNode = .text:0x8024E248; // type:function size:0x68 scope:global align:4 +getObjectId__Q34Game4Cave8ItemNodeFv = .text:0x8024E2B0; // type:function size:0x20 scope:global align:4 +getObjectType__Q34Game4Cave8ItemNodeFv = .text:0x8024E2D0; // type:function size:0x8 scope:global align:4 +getBirthCount__Q34Game4Cave8ItemNodeFv = .text:0x8024E2D8; // type:function size:0x8 scope:global align:4 +getBirthPosition__Q34Game4Cave8ItemNodeFRfRf = .text:0x8024E2E0; // type:function size:0x14 scope:global align:4 +getDirection__Q34Game4Cave8ItemNodeFv = .text:0x8024E2F4; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Cave8ItemNodeFv = .text:0x8024E2FC; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Cave12RandItemUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x8024E36C; // type:function size:0x64 scope:global align:4 +setManageClassPtr__Q34Game4Cave12RandItemUnitFPQ34Game4Cave12RandMapScore = .text:0x8024E3D0; // type:function size:0x8 scope:global align:4 +setItemSlot__Q34Game4Cave12RandItemUnitFv = .text:0x8024E3D8; // type:function size:0x104 scope:global align:4 +isItemSetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8024E4DC; // type:function size:0x110 scope:global align:4 +isGroundCapEnemySetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode = .text:0x8024E5EC; // type:function size:0xE8 scope:global align:4 +isFallCapEnemySetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode = .text:0x8024E6D4; // type:function size:0xD0 scope:global align:4 +setItemDropPositionList__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGen = .text:0x8024E7A4; // type:function size:0xC scope:global align:4 +getItemDropPosition__Q34Game4Cave12RandItemUnitFR10Vector3fi = .text:0x8024E7B0; // type:function size:0x228 scope:global align:4 +getItemNormalSetMapNode__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7BaseGen = .text:0x8024E9D8; // type:function size:0x38C scope:global align:4 +getItemHardSetMapNode__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7BaseGen = .text:0x8024ED64; // type:function size:0x340 scope:global align:4 +getItemUnit__Q34Game4Cave12RandItemUnitFv = .text:0x8024F0A4; // type:function size:0x180 scope:global align:4 +getItemSlotNum__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode = .text:0x8024F224; // type:function size:0x60 scope:global align:4 +isItemSetHard__Q34Game4Cave12RandItemUnitFv = .text:0x8024F284; // type:function size:0x5C scope:global align:4 +getItemDropMapNode__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePPQ34Game4Cave7MapNodeiRi = .text:0x8024F2E0; // type:function size:0x148 scope:global align:4 +getItemBaseGenPosition__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodei = .text:0x8024F428; // type:function size:0x314 scope:global align:4 +getItemDropList__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGenRi = .text:0x8024F73C; // type:function size:0x18C scope:global align:4 +getItemBaseGenPosition__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGeniii = .text:0x8024F8C8; // type:function size:0x2CC scope:global align:4 +getItemDropSortingList__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGenPii = .text:0x8024FB94; // type:function size:0x114 scope:global align:4 +__ct__Q34Game4Cave8GateNodeFv = .text:0x8024FCA8; // type:function size:0x5C scope:global align:4 +__ct__Q34Game4Cave8GateNodeFPQ34Game4Cave8GateUnitii = .text:0x8024FD04; // type:function size:0x9C scope:global align:4 +getObjectId__Q34Game4Cave8GateNodeFv = .text:0x8024FDA0; // type:function size:0x20 scope:global align:4 +getObjectType__Q34Game4Cave8GateNodeFv = .text:0x8024FDC0; // type:function size:0x8 scope:global align:4 +getBirthCount__Q34Game4Cave8GateNodeFv = .text:0x8024FDC8; // type:function size:0x8 scope:global align:4 +getDirection__Q34Game4Cave8GateNodeFv = .text:0x8024FDD0; // type:function size:0x8 scope:global align:4 +getBirthDoorIndex__Q34Game4Cave8GateNodeFv = .text:0x8024FDD8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Cave8GateNodeFv = .text:0x8024FDE0; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Cave12RandGateUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x8024FE50; // type:function size:0x74 scope:global align:4 +setManageClassPtr__Q34Game4Cave12RandGateUnitFPQ34Game4Cave12RandMapScorePQ34Game4Cave12RandItemUnit = .text:0x8024FEC4; // type:function size:0xC scope:global align:4 +setGateDoor__Q34Game4Cave12RandGateUnitFv = .text:0x8024FED0; // type:function size:0xD8 scope:global align:4 +getGateUnit__Q34Game4Cave12RandGateUnitFv = .text:0x8024FFA8; // type:function size:0xD4 scope:global align:4 +getRoomNodePtr__Q34Game4Cave12RandGateUnitFRi = .text:0x8025007C; // type:function size:0xBC scope:global align:4 +getItemSetCapDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x80250138; // type:function size:0x160 scope:global align:4 +getRoomMinScoreDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x80250298; // type:function size:0xE4 scope:global align:4 +getRoomLowScoreDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x8025037C; // type:function size:0x218 scope:global align:4 +getRandomScoreDoor__Q34Game4Cave12RandGateUnitFRi = .text:0x80250594; // type:function size:0x270 scope:global align:4 +__ct__Q34Game4Cave12ObjectLayoutFPQ34Game4Cave7MapNode = .text:0x80250804; // type:function size:0xCC scope:global align:4 +setNode__Q34Game4Cave12ObjectLayoutFiPQ24Game16ObjectLayoutNode = .text:0x802508D0; // type:function size:0x10 scope:global align:4 +getCount__Q34Game4Cave12ObjectLayoutFi = .text:0x802508E0; // type:function size:0x48 scope:global align:4 +getNode__Q34Game4Cave12ObjectLayoutFii = .text:0x80250928; // type:function size:0x40 scope:global align:4 +__ct__Q24Game9CameraMgrFv = .text:0x80250968; // type:function size:0x48 scope:global align:4 +loadResource__Q24Game9CameraMgrFv = .text:0x802509B0; // type:function size:0x12C scope:global align:4 +__ct__Q24Game14VibrationParmsFv = .text:0x80250ADC; // type:function size:0x4D0 scope:weak align:4 +__ct__Q24Game11CameraParmsFv = .text:0x80250FAC; // type:function size:0xE78 scope:weak align:4 +setViewport__Q24Game9CameraMgrFP8Viewporti = .text:0x80251E24; // type:function size:0xA8 scope:global align:4 +init__Q24Game9CameraMgrFi = .text:0x80251ECC; // type:function size:0x14C scope:global align:4 +setCameraAngle__Q24Game9CameraMgrFfi = .text:0x80252018; // type:function size:0x94 scope:global align:4 +update__Q24Game9CameraMgrFv = .text:0x802520AC; // type:function size:0x170 scope:global align:4 +startVibration__Q24Game9CameraMgrFiR10Vector3i = .text:0x8025221C; // type:function size:0x154 scope:global align:4 +startVibration__Q24Game9CameraMgrFii = .text:0x80252370; // type:function size:0xDC scope:global align:4 +controllerLock__Q24Game9CameraMgrFi = .text:0x8025244C; // type:function size:0x70 scope:global align:4 +controllerUnLock__Q24Game9CameraMgrFi = .text:0x802524BC; // type:function size:0x70 scope:global align:4 +startDemoCamera__Q24Game9CameraMgrFii = .text:0x8025252C; // type:function size:0x90 scope:global align:4 +finishDemoCamera__Q24Game9CameraMgrFi = .text:0x802525BC; // type:function size:0x7C scope:global align:4 +changePlayerMode__Q24Game9CameraMgrFiP30IDelegate1 = .text:0x80252638; // type:function size:0x160 scope:global align:4 +isChangePlayer__Q24Game9CameraMgrFv = .text:0x80252798; // type:function size:0x58 scope:global align:4 +setZukanCamera__Q24Game9CameraMgrFP12LookAtCamera = .text:0x802527F0; // type:function size:0x58 scope:global align:4 +isCameraUpdateOn__Q24Game9CameraMgrFv = .text:0x80252848; // type:function size:0x28 scope:global align:4 +isStartAndEnd__Q24Game9CameraMgrFPii = .text:0x80252870; // type:function size:0x68 scope:global align:4 +isVibrationStart__Q24Game9CameraMgrFii = .text:0x802528D8; // type:function size:0x84 scope:global align:4 +readCameraParms__Q24Game9CameraMgrFPc = .text:0x8025295C; // type:function size:0xA8 scope:global align:4 +readParameter__Q24Game9CameraMgrFR6Stream = .text:0x80252A04; // type:function size:0x74 scope:global align:4 +__dt__Q24Game9CameraMgrFv = .text:0x80252A78; // type:function size:0x60 scope:weak align:4 +__sinit_CameraMgr_cpp = .text:0x80252AD8; // type:function size:0x28 scope:local align:4 +__ct__Q24Game10ContRumbleFii = .text:0x80252B00; // type:function size:0x158 scope:global align:4 +init__Q24Game10ContRumbleFv = .text:0x80252C58; // type:function size:0x8C scope:global align:4 +update__Q24Game10ContRumbleFv = .text:0x80252CE4; // type:function size:0x290 scope:global align:4 +setController__Q24Game10ContRumbleFb = .text:0x80252F74; // type:function size:0x58 scope:global align:4 +startRumble__Q24Game10ContRumbleFif = .text:0x80252FCC; // type:function size:0x104 scope:global align:4 +rumbleStop__Q24Game10ContRumbleFv = .text:0x802530D0; // type:function size:0x88 scope:global align:4 +rumbleStop__Q24Game10ContRumbleFi = .text:0x80253158; // type:function size:0x90 scope:global align:4 +getRumbleParameter__Q24Game10ContRumbleFiRfRf = .text:0x802531E8; // type:function size:0x9C scope:global align:4 +__dt__Q24Game10RumbleNodeFv = .text:0x80253284; // type:function size:0x60 scope:weak align:4 +__ct__Q24Game9RumbleMgrFv = .text:0x802532E4; // type:function size:0x48 scope:global align:4 +loadResource__Q24Game9RumbleMgrFv = .text:0x8025332C; // type:function size:0x158 scope:global align:4 +init__Q24Game9RumbleMgrFv = .text:0x80253484; // type:function size:0x108 scope:global align:4 +update__Q24Game9RumbleMgrFv = .text:0x8025358C; // type:function size:0x1D4 scope:global align:4 +startRumble__Q24Game9RumbleMgrFiR10Vector3i = .text:0x80253760; // type:function size:0x1A4 scope:global align:4 +startRumble__Q24Game9RumbleMgrFii = .text:0x80253904; // type:function size:0xB8 scope:global align:4 +stopRumble__Q24Game9RumbleMgrFii = .text:0x802539BC; // type:function size:0x94 scope:global align:4 +stopRumble__Q24Game9RumbleMgrFi = .text:0x80253A50; // type:function size:0x88 scope:global align:4 +isRumbleUpdateOn__Q24Game9RumbleMgrFv = .text:0x80253AD8; // type:function size:0x7C scope:global align:4 +setZukanRumble__Q24Game9RumbleMgrFP10ControllerP10Vector3 = .text:0x80253B54; // type:function size:0x5C scope:global align:4 +isStartAndEnd__Q24Game9RumbleMgrFPii = .text:0x80253BB0; // type:function size:0x68 scope:global align:4 +readRumbleParms__Q24Game9RumbleMgrFPc = .text:0x80253C18; // type:function size:0xC0 scope:global align:4 +readRumbleData__Q24Game9RumbleMgrFPc = .text:0x80253CD8; // type:function size:0xC0 scope:global align:4 +__dt__Q24Game9RumbleMgrFv = .text:0x80253D98; // type:function size:0x60 scope:weak align:4 +setAnimMgr__Q34Game3Pom14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80253DF8; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game3Pom14ProperAnimatorFi = .text:0x80253E00; // type:function size:0x8 scope:global align:4 +__dt__Q34Game3Pom14ProperAnimatorFv = .text:0x80253E08; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game3Pom14ProperAnimatorFv = .text:0x80253E64; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Pom3MgrFiUc = .text:0x80253E6C; // type:function size:0x50 scope:global align:4 +birth__Q34Game3Pom3MgrFRQ24Game13EnemyBirthArg = .text:0x80253EBC; // type:function size:0x1F4 scope:global align:4 +doAlloc__Q34Game3Pom3MgrFv = .text:0x802540B0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game3Pom5ParmsFv = .text:0x802540F8; // type:function size:0x1C8 scope:weak align:4 +createObj__Q34Game3Pom3MgrFi = .text:0x802542C0; // type:function size:0x188 scope:global align:4 +__dt__Q34Game3Pom3ObjFv = .text:0x80254448; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game3Pom3MgrFi = .text:0x80254504; // type:function size:0x10 scope:global align:4 +createModel__Q34Game3Pom3MgrFv = .text:0x80254514; // type:function size:0x138 scope:global align:4 +read__Q34Game3Pom5ParmsFR6Stream = .text:0x8025464C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game3Pom3MgrFv = .text:0x8025469C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game3Pom3MgrFv = .text:0x8025474C; // type:function size:0x8 scope:weak align:4 +__sinit_PomMgr_cpp = .text:0x80254754; // type:function size:0x28 scope:local align:4 +@4@__dt__Q34Game3Pom3MgrFv = .text:0x8025477C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Pom3ObjFv = .text:0x80254784; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game3Pom3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802548BC; // type:function size:0x4 scope:global align:4 +onInit__Q34Game3Pom3ObjFPQ24Game15CreatureInitArg = .text:0x802548C0; // type:function size:0x114 scope:global align:4 +doUpdate__Q34Game3Pom3ObjFv = .text:0x802549D4; // type:function size:0x88 scope:global align:4 +changeMaterial__Q34Game3Pom3ObjFv = .text:0x80254A5C; // type:function size:0x110 scope:global align:4 +doDirectDraw__Q34Game3Pom3ObjFR8Graphics = .text:0x80254B6C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game3Pom3ObjFR8Graphics = .text:0x80254B70; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game3Pom3ObjFPQ34Game3Pom3FSM = .text:0x80254B90; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game3Pom3ObjFRQ24Game11ShadowParam = .text:0x80254BDC; // type:function size:0x44 scope:global align:4 +pressCallBack__Q34Game3Pom3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80254C20; // type:function size:0x12C scope:global align:4 +hipdropCallBack__Q34Game3Pom3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80254D4C; // type:function size:0x2C scope:global align:4 +collisionCallback__Q34Game3Pom3ObjFRQ24Game9CollEvent = .text:0x80254D78; // type:function size:0xA8 scope:global align:4 +initMouthSlots__Q34Game3Pom3ObjFv = .text:0x80254E20; // type:function size:0x4C scope:global align:4 +setPomParms__Q34Game3Pom3ObjFv = .text:0x80254E6C; // type:function size:0x510 scope:global align:4 +getEnemyTypeID__Q34Game3Pom3ObjFv = .text:0x8025537C; // type:function size:0x8 scope:weak align:4 +shotPikmin__Q34Game3Pom3ObjFv = .text:0x80255384; // type:function size:0x4AC scope:global align:4 +changePomColor__Q34Game3Pom3ObjFv = .text:0x80255830; // type:function size:0x19C scope:global align:4 +createSwingSmokeEffect__Q34Game3Pom3ObjFv = .text:0x802559CC; // type:function size:0x184 scope:global align:4 +createShotEffect__Q34Game3Pom3ObjFv = .text:0x80255B50; // type:function size:0x94 scope:global align:4 +createPomDeadEffect__Q34Game3Pom3ObjFv = .text:0x80255BE4; // type:function size:0x80 scope:global align:4 +inWaterCallback__Q34Game3Pom3ObjFPQ24Game8WaterBox = .text:0x80255C64; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game3Pom3ObjFv = .text:0x80255C68; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game3Pom3ObjFv = .text:0x80255C6C; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game3Pom3ObjFv = .text:0x80255C74; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game3Pom3ObjFv = .text:0x80255C7C; // type:function size:0x8 scope:weak align:4 +init__Q34Game3Pom3FSMFPQ24Game9EnemyBase = .text:0x80255C84; // type:function size:0x224 scope:global align:4 +init__Q34Game3Pom9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80255EA8; // type:function size:0x2C scope:global align:4 +exec__Q34Game3Pom9StateWaitFPQ24Game9EnemyBase = .text:0x80255ED4; // type:function size:0x5C scope:global align:4 +cleanup__Q34Game3Pom9StateWaitFPQ24Game9EnemyBase = .text:0x80255F30; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80255F34; // type:function size:0x60 scope:global align:4 +exec__Q34Game3Pom9StateDeadFPQ24Game9EnemyBase = .text:0x80255F94; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game3Pom9StateDeadFPQ24Game9EnemyBase = .text:0x80255FD8; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom9StateOpenFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80255FDC; // type:function size:0x40 scope:global align:4 +exec__Q34Game3Pom9StateOpenFPQ24Game9EnemyBase = .text:0x8025601C; // type:function size:0xA0 scope:global align:4 +cleanup__Q34Game3Pom9StateOpenFPQ24Game9EnemyBase = .text:0x802560BC; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom10StateCloseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802560C0; // type:function size:0x40 scope:global align:4 +exec__Q34Game3Pom10StateCloseFPQ24Game9EnemyBase = .text:0x80256100; // type:function size:0x78 scope:global align:4 +cleanup__Q34Game3Pom10StateCloseFPQ24Game9EnemyBase = .text:0x80256178; // type:function size:0x4 scope:global align:4 +init__Q34Game3Pom9StateShotFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025617C; // type:function size:0x4C scope:global align:4 +exec__Q34Game3Pom9StateShotFPQ24Game9EnemyBase = .text:0x802561C8; // type:function size:0x94 scope:global align:4 +cleanup__Q34Game3Pom9StateShotFPQ24Game9EnemyBase = .text:0x8025625C; // type:function size:0x10 scope:global align:4 +init__Q34Game3Pom10StateSwingFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025626C; // type:function size:0x3C scope:global align:4 +exec__Q34Game3Pom10StateSwingFPQ24Game9EnemyBase = .text:0x802562A8; // type:function size:0xF8 scope:global align:4 +cleanup__Q34Game3Pom10StateSwingFPQ24Game9EnemyBase = .text:0x802563A0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Frog3FSMFPQ24Game9EnemyBase = .text:0x802563A4; // type:function size:0x37C scope:global align:4 +init__Q34Game4Frog9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80256720; // type:function size:0x68 scope:global align:4 +exec__Q34Game4Frog9StateDeadFPQ24Game9EnemyBase = .text:0x80256788; // type:function size:0x78 scope:global align:4 +getDownSmokeScale__Q34Game4Frog3ObjFv = .text:0x80256800; // type:function size:0x8 scope:weak align:4 +cleanup__Q34Game4Frog9StateDeadFPQ24Game9EnemyBase = .text:0x80256808; // type:function size:0x4 scope:global align:4 +init__Q34Game4Frog9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025680C; // type:function size:0xA0 scope:global align:4 +exec__Q34Game4Frog9StateWaitFPQ24Game9EnemyBase = .text:0x802568AC; // type:function size:0x440 scope:global align:4 +attackNaviPosition__Q34Game4Frog3ObjFv = .text:0x80256CEC; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game4Frog9StateWaitFPQ24Game9EnemyBase = .text:0x80256CF0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Frog9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80256CF4; // type:function size:0x60 scope:global align:4 +exec__Q34Game4Frog9StateTurnFPQ24Game9EnemyBase = .text:0x80256D54; // type:function size:0x3AC scope:global align:4 +cleanup__Q34Game4Frog9StateTurnFPQ24Game9EnemyBase = .text:0x80257100; // type:function size:0xAC scope:global align:4 +init__Q34Game4Frog9StateJumpFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802571AC; // type:function size:0xE8 scope:global align:4 +exec__Q34Game4Frog9StateJumpFPQ24Game9EnemyBase = .text:0x80257294; // type:function size:0x118 scope:global align:4 +cleanup__Q34Game4Frog9StateJumpFPQ24Game9EnemyBase = .text:0x802573AC; // type:function size:0x48 scope:global align:4 +init__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802573F4; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBase = .text:0x8025744C; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBase = .text:0x802574D8; // type:function size:0x3C scope:global align:4 +init__Q34Game4Frog9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257514; // type:function size:0x8C scope:global align:4 +exec__Q34Game4Frog9StateFallFPQ24Game9EnemyBase = .text:0x802575A0; // type:function size:0x40 scope:global align:4 +cleanup__Q34Game4Frog9StateFallFPQ24Game9EnemyBase = .text:0x802575E0; // type:function size:0x38 scope:global align:4 +init__Q34Game4Frog11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257618; // type:function size:0x74 scope:global align:4 +exec__Q34Game4Frog11StateAttackFPQ24Game9EnemyBase = .text:0x8025768C; // type:function size:0x16C scope:global align:4 +cleanup__Q34Game4Frog11StateAttackFPQ24Game9EnemyBase = .text:0x802577F8; // type:function size:0x44 scope:global align:4 +init__Q34Game4Frog9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025783C; // type:function size:0x54 scope:global align:4 +exec__Q34Game4Frog9StateFailFPQ24Game9EnemyBase = .text:0x80257890; // type:function size:0x1A8 scope:global align:4 +cleanup__Q34Game4Frog9StateFailFPQ24Game9EnemyBase = .text:0x80257A38; // type:function size:0x24 scope:global align:4 +init__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257A5C; // type:function size:0x44 scope:global align:4 +exec__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80257AA0; // type:function size:0x224 scope:global align:4 +cleanup__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBase = .text:0x80257CC4; // type:function size:0x60 scope:global align:4 +init__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80257D24; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBase = .text:0x80257D80; // type:function size:0x200 scope:global align:4 +cleanup__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBase = .text:0x80257F80; // type:function size:0x10C scope:global align:4 +setAnimMgr__Q34Game4Frog14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8025808C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Frog14ProperAnimatorFi = .text:0x80258094; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Frog14ProperAnimatorFv = .text:0x8025809C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Frog14ProperAnimatorFv = .text:0x802580F8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Frog3MgrFiUc = .text:0x80258100; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Frog3MgrFv = .text:0x80258150; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Frog5ParmsFv = .text:0x80258198; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game4Frog3MgrFi = .text:0x802582EC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Frog3ObjFv = .text:0x8025834C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Frog3MgrFi = .text:0x80258408; // type:function size:0x10 scope:global align:4 +read__Q34Game4Frog5ParmsFR6Stream = .text:0x80258418; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Frog3MgrFv = .text:0x80258468; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Frog3MgrFv = .text:0x80258518; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Frog3MgrFv = .text:0x80258520; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Frog3ObjFv = .text:0x80258528; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Frog3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80258660; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Frog3ObjFPQ24Game15CreatureInitArg = .text:0x80258664; // type:function size:0x78 scope:global align:4 +onKill__Q34Game4Frog3ObjFPQ24Game15CreatureKillArg = .text:0x802586DC; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game4Frog3ObjFv = .text:0x80258720; // type:function size:0x44 scope:global align:4 +doSimulationFlying__Q34Game4Frog3ObjFf = .text:0x80258764; // type:function size:0x280 scope:global align:4 +doDirectDraw__Q34Game4Frog3ObjFR8Graphics = .text:0x802589E4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Frog3ObjFR8Graphics = .text:0x802589E8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Frog3ObjFPQ34Game4Frog3FSM = .text:0x80258A08; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Frog3ObjFRQ24Game11ShadowParam = .text:0x80258A54; // type:function size:0x110 scope:global align:4 +collisionCallback__Q34Game4Frog3ObjFRQ24Game9CollEvent = .text:0x80258B64; // type:function size:0x104 scope:global align:4 +doStartStoneState__Q34Game4Frog3ObjFv = .text:0x80258C68; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game4Frog3ObjFv = .text:0x80258C9C; // type:function size:0x64 scope:global align:4 +doStartEarthquakeFitState__Q34Game4Frog3ObjFv = .text:0x80258D00; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeFitState__Q34Game4Frog3ObjFv = .text:0x80258D34; // type:function size:0x5C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game4Frog3ObjFv = .text:0x80258D90; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game4Frog3ObjFv = .text:0x80258DC4; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game4Frog3ObjFv = .text:0x80258DF8; // type:function size:0x28 scope:global align:4 +viewGetCollTreeOffset__Q34Game4Frog3ObjFv = .text:0x80258E20; // type:function size:0x1C scope:global align:4 +doStartMovie__Q34Game4Frog3ObjFv = .text:0x80258E3C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game4Frog3ObjFv = .text:0x80258E5C; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game4Frog3ObjFv = .text:0x80258E7C; // type:function size:0x88 scope:global align:4 +getCommonEffectPos__Q34Game4Frog3ObjFR10Vector3 = .text:0x80258F04; // type:function size:0x54 scope:global align:4 +updateCaution__Q34Game4Frog3ObjFv = .text:0x80258F58; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game4Frog3ObjFv = .text:0x80258FA8; // type:function size:0x24 scope:global align:4 +startJumpAttack__Q34Game4Frog3ObjFv = .text:0x80258FCC; // type:function size:0xD8 scope:global align:4 +resetHomePosition__Q34Game4Frog3ObjFv = .text:0x802590A4; // type:function size:0xD8 scope:global align:4 +pressOnGround__Q34Game4Frog3ObjFv = .text:0x8025917C; // type:function size:0x24C scope:global align:4 +createEffect__Q34Game4Frog3ObjFv = .text:0x802593C8; // type:function size:0xB0 scope:global align:4 +setupEffect__Q34Game4Frog3ObjFv = .text:0x80259478; // type:function size:0x10 scope:global align:4 +startJumpEffect__Q34Game4Frog3ObjFv = .text:0x80259488; // type:function size:0x34 scope:global align:4 +finishJumpEffect__Q34Game4Frog3ObjFv = .text:0x802594BC; // type:function size:0x30 scope:global align:4 +createDownEffect__Q34Game4Frog3ObjFf = .text:0x802594EC; // type:function size:0xC0 scope:global align:4 +effectDrawOn__Q34Game4Frog3ObjFv = .text:0x802595AC; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game4Frog3ObjFv = .text:0x802595DC; // type:function size:0x30 scope:global align:4 +__dt__Q23efx9TFrogPotaFv = .text:0x8025960C; // type:function size:0x9C scope:weak align:4 +forceKill__Q23efx8TSimple4Fv = .text:0x802596A8; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple4Fv = .text:0x802596AC; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game4Frog3ObjFPQ24Game8WaterBox = .text:0x802596B0; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game4Frog3ObjFv = .text:0x802596B4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game4Frog3ObjFv = .text:0x802596B8; // type:function size:0x8 scope:weak align:4 +__sinit_Frog_cpp = .text:0x802596C0; // type:function size:0x28 scope:local align:4 +@736@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802596E8; // type:function size:0x14 scope:weak align:4 +@736@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802596FC; // type:function size:0x14 scope:weak align:4 +@736@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80259710; // type:function size:0x14 scope:weak align:4 +@736@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80259724; // type:function size:0x14 scope:weak align:4 +@736@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80259738; // type:function size:0x14 scope:weak align:4 +@736@12@viewGetCollTreeOffset__Q34Game4Frog3ObjFv = .text:0x8025974C; // type:function size:0x14 scope:weak align:4 +@736@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80259760; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TFrogPotaFv = .text:0x80259774; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujib3MgrFiUc = .text:0x8025977C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Ujib3MgrFv = .text:0x802597CC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Ujib5ParmsFv = .text:0x80259814; // type:function size:0xDC scope:weak align:4 +createObj__Q34Game4Ujib3MgrFi = .text:0x802598F0; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Ujib3ObjFv = .text:0x80259950; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Ujib3MgrFi = .text:0x80259A0C; // type:function size:0x10 scope:global align:4 +read__Q34Game4Ujib5ParmsFR6Stream = .text:0x80259A1C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Ujib3MgrFv = .text:0x80259A6C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujib3MgrFv = .text:0x80259B1C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Ujib3MgrFv = .text:0x80259B24; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujib3ObjFv = .text:0x80259B2C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Ujib3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80259C64; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Ujib3ObjFPQ24Game15CreatureInitArg = .text:0x80259C68; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game4Ujib3ObjFv = .text:0x80259D00; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game4Ujib3ObjFR8Graphics = .text:0x80259D48; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Ujib3ObjFR8Graphics = .text:0x80259D4C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Ujib3ObjFPQ34Game4Ujib3FSM = .text:0x80259D6C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Ujib3ObjFRQ24Game11ShadowParam = .text:0x80259DB8; // type:function size:0xA8 scope:global align:4 +pressCallBack__Q34Game4Ujib3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80259E60; // type:function size:0x94 scope:global align:4 +hipdropCallBack__Q34Game4Ujib3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80259EF4; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game4Ujib3ObjFv = .text:0x80259F20; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game4Ujib3ObjFv = .text:0x80259F48; // type:function size:0x8C scope:global align:4 +lifeIncrement__Q34Game4Ujib3ObjFv = .text:0x80259FD4; // type:function size:0x30 scope:global align:4 +setInWaterDamage__Q34Game4Ujib3ObjFv = .text:0x8025A004; // type:function size:0x34 scope:global align:4 +resetAppearCheck__Q34Game4Ujib3ObjFv = .text:0x8025A038; // type:function size:0xB4 scope:global align:4 +isAppearCheck__Q34Game4Ujib3ObjFv = .text:0x8025A0EC; // type:function size:0x48 scope:global align:4 +resetBridgeSearch__Q34Game4Ujib3ObjFv = .text:0x8025A134; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game4Ujib3ObjFv = .text:0x8025A154; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game4Ujib3ObjFv = .text:0x8025A19C; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game4Ujib3ObjFv = .text:0x8025A45C; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game4Ujib3ObjFv = .text:0x8025A460; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game4Ujib3ObjFv = .text:0x8025A614; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game4Ujib3ObjFv = .text:0x8025A63C; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game4Ujib3ObjFv = .text:0x8025A8E4; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game4Ujib3ObjFv = .text:0x8025AB6C; // type:function size:0x2F0 scope:global align:4 +breakTargetBridge__Q34Game4Ujib3ObjFv = .text:0x8025AE5C; // type:function size:0x5C scope:global align:4 +createAppearEffect__Q34Game4Ujib3ObjFv = .text:0x8025AEB8; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game4Ujib3ObjFv = .text:0x8025AF44; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game4Ujib3ObjFv = .text:0x8025AFD0; // type:function size:0x90 scope:global align:4 +createEatEffect__Q34Game4Ujib3ObjFv = .text:0x8025B060; // type:function size:0x90 scope:global align:4 +isUnderground__Q34Game4Ujib3ObjFv = .text:0x8025B0F0; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game4Ujib3ObjFv = .text:0x8025B0F8; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Ujib3ObjFv = .text:0x8025B100; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujib3ObjFv = .text:0x8025B108; // type:function size:0x8 scope:weak align:4 +@732@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8025B110; // type:function size:0x14 scope:weak align:4 +@732@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8025B124; // type:function size:0x14 scope:weak align:4 +@732@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8025B138; // type:function size:0x14 scope:weak align:4 +@732@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8025B14C; // type:function size:0x14 scope:weak align:4 +@732@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8025B160; // type:function size:0x14 scope:weak align:4 +@732@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8025B174; // type:function size:0x14 scope:weak align:4 +init__Q34Game4Ujib3FSMFPQ24Game9EnemyBase = .text:0x8025B188; // type:function size:0x478 scope:global align:4 +init__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B600; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBase = .text:0x8025B65C; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBase = .text:0x8025B6A0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B6A4; // type:function size:0x64 scope:global align:4 +exec__Q34Game4Ujib10StatePressFPQ24Game9EnemyBase = .text:0x8025B708; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujib10StatePressFPQ24Game9EnemyBase = .text:0x8025B74C; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B750; // type:function size:0xBC scope:global align:4 +exec__Q34Game4Ujib9StateStayFPQ24Game9EnemyBase = .text:0x8025B80C; // type:function size:0xB0 scope:global align:4 +cleanup__Q34Game4Ujib9StateStayFPQ24Game9EnemyBase = .text:0x8025B8BC; // type:function size:0x84 scope:global align:4 +init__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025B940; // type:function size:0x80 scope:global align:4 +exec__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBase = .text:0x8025B9C0; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBase = .text:0x8025BA40; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025BA7C; // type:function size:0x6C scope:global align:4 +exec__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBase = .text:0x8025BAE8; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBase = .text:0x8025BB38; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025BB74; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBase = .text:0x8025BBA8; // type:function size:0x4C8 scope:global align:4 +cleanup__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBase = .text:0x8025C070; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C074; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBase = .text:0x8025C0A8; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBase = .text:0x8025C1D8; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C1DC; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBase = .text:0x8025C210; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBase = .text:0x8025C340; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C344; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBase = .text:0x8025C378; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBase = .text:0x8025C4A8; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C4AC; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBase = .text:0x8025C4E0; // type:function size:0x1DC scope:global align:4 +cleanup__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBase = .text:0x8025C6BC; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C6C0; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBase = .text:0x8025C718; // type:function size:0x140 scope:global align:4 +cleanup__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBase = .text:0x8025C858; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025C85C; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBase = .text:0x8025C8A4; // type:function size:0x218 scope:global align:4 +cleanup__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBase = .text:0x8025CABC; // type:function size:0x10 scope:global align:4 +init__Q34Game4Ujib8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025CACC; // type:function size:0x3C scope:global align:4 +exec__Q34Game4Ujib8StateEatFPQ24Game9EnemyBase = .text:0x8025CB08; // type:function size:0x1A8 scope:global align:4 +cleanup__Q34Game4Ujib8StateEatFPQ24Game9EnemyBase = .text:0x8025CCB0; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game4Ujib14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8025CCB4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Ujib14ProperAnimatorFi = .text:0x8025CCBC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Ujib14ProperAnimatorFv = .text:0x8025CCC4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Ujib14ProperAnimatorFv = .text:0x8025CD20; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Kogane3FSMFPQ24Game9EnemyBase = .text:0x8025CD28; // type:function size:0x1D4 scope:global align:4 +init__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025CEFC; // type:function size:0x98 scope:global align:4 +exec__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBase = .text:0x8025CF94; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBase = .text:0x8025CFF8; // type:function size:0x1A0 scope:global align:4 +startBodyEffect__Q34Game6Kogane3ObjFv = .text:0x8025D198; // type:function size:0x4 scope:weak align:4 +init__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D19C; // type:function size:0x138 scope:global align:4 +finishBodyEffect__Q34Game6Kogane3ObjFv = .text:0x8025D2D4; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBase = .text:0x8025D2D8; // type:function size:0x6C scope:global align:4 +cleanup__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBase = .text:0x8025D344; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D348; // type:function size:0x6C scope:global align:4 +createFartEffect__Q34Game6Kogane3ObjFv = .text:0x8025D3B4; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBase = .text:0x8025D3B8; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBase = .text:0x8025D4F0; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D4F4; // type:function size:0x5C scope:global align:4 +exec__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBase = .text:0x8025D550; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBase = .text:0x8025D60C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kogane10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025D610; // type:function size:0x11C scope:global align:4 +createPressSENormal__Q34Game6Kogane3ObjFv = .text:0x8025D72C; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kogane10StatePressFPQ24Game9EnemyBase = .text:0x8025D730; // type:function size:0x130 scope:global align:4 +createItem__Q34Game6Kogane3ObjFv = .text:0x8025D860; // type:function size:0x4 scope:weak align:4 +createPressSESpecial__Q34Game6Kogane3ObjFv = .text:0x8025D864; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game6Kogane10StatePressFPQ24Game9EnemyBase = .text:0x8025D868; // type:function size:0x10 scope:global align:4 +__ct__Q34Game6Kogane3MgrFiUc = .text:0x8025D878; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game6Kogane3MgrFv = .text:0x8025D8C8; // type:function size:0xE8 scope:global align:4 +loadAnimData__Q34Game6Kogane3MgrFv = .text:0x8025D9B0; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game6Kogane3MgrFv = .text:0x8025DA50; // type:function size:0x130 scope:global align:4 +__dt__Q34Game6Kogane3MgrFv = .text:0x8025DB80; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Kogane3MgrFv = .text:0x8025DC30; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Kogane3MgrFPv = .text:0x8025DC38; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game6Kogane3MgrFv = .text:0x8025DC64; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kogane3ObjFv = .text:0x8025DC6C; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game6Kogane3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8025DD9C; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Kogane3ObjFPQ24Game15CreatureInitArg = .text:0x8025DDA0; // type:function size:0x130 scope:global align:4 +resetFartTimer__Q34Game6Kogane3ObjFv = .text:0x8025DED0; // type:function size:0x4 scope:weak align:4 +onKill__Q34Game6Kogane3ObjFPQ24Game15CreatureKillArg = .text:0x8025DED4; // type:function size:0x50 scope:global align:4 +doUpdate__Q34Game6Kogane3ObjFv = .text:0x8025DF24; // type:function size:0x34 scope:global align:4 +doUpdateCommon__Q34Game6Kogane3ObjFv = .text:0x8025DF58; // type:function size:0x20 scope:global align:4 +doDirectDraw__Q34Game6Kogane3ObjFR8Graphics = .text:0x8025DF78; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Kogane3ObjFR8Graphics = .text:0x8025DF7C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Kogane3ObjFPQ34Game6Kogane3FSM = .text:0x8025DF9C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Kogane3ObjFRQ24Game11ShadowParam = .text:0x8025DFE8; // type:function size:0xA0 scope:global align:4 +pressCallBack__Q34Game6Kogane3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8025E088; // type:function size:0x6C scope:global align:4 +wallCallback__Q34Game6Kogane3ObjFRCQ24Game8MoveInfo = .text:0x8025E0F4; // type:function size:0x3C scope:global align:4 +earthquakeCallBack__Q34Game6Kogane3ObjFPQ24Game8Creaturef = .text:0x8025E130; // type:function size:0x60 scope:global align:4 +hipdropCallBack__Q34Game6Kogane3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8025E190; // type:function size:0x6C scope:global align:4 +doStartStoneState__Q34Game6Kogane3ObjFv = .text:0x8025E1FC; // type:function size:0x50 scope:global align:4 +doFinishStoneState__Q34Game6Kogane3ObjFv = .text:0x8025E24C; // type:function size:0x50 scope:global align:4 +doStartMovie__Q34Game6Kogane3ObjFv = .text:0x8025E29C; // type:function size:0x2C scope:global align:4 +effectDrawOff__Q34Game6Kogane3ObjFv = .text:0x8025E2C8; // type:function size:0x4 scope:weak align:4 +doEndMovie__Q34Game6Kogane3ObjFv = .text:0x8025E2CC; // type:function size:0x2C scope:global align:4 +effectDrawOn__Q34Game6Kogane3ObjFv = .text:0x8025E2F8; // type:function size:0x4 scope:weak align:4 +transitDamageState__Q34Game6Kogane3ObjFf = .text:0x8025E2FC; // type:function size:0x84 scope:global align:4 +transitDisappear__Q34Game6Kogane3ObjFv = .text:0x8025E380; // type:function size:0x108 scope:global align:4 +getBodyJointPos__Q34Game6Kogane3ObjFv = .text:0x8025E488; // type:function size:0x50 scope:global align:4 +koganeScaleUp__Q34Game6Kogane3ObjFv = .text:0x8025E4D8; // type:function size:0xA4 scope:global align:4 +koganeScaleDown__Q34Game6Kogane3ObjFv = .text:0x8025E57C; // type:function size:0x8C scope:global align:4 +setTargetPosition__Q34Game6Kogane3ObjFP10Vector3 = .text:0x8025E608; // type:function size:0x1AC scope:global align:4 +resetAppearTimer__Q34Game6Kogane3ObjFv = .text:0x8025E7B4; // type:function size:0x78 scope:global align:4 +isAppear__Q34Game6Kogane3ObjFv = .text:0x8025E82C; // type:function size:0x80 scope:global align:4 +resetMoveTimer__Q34Game6Kogane3ObjFff = .text:0x8025E8AC; // type:function size:0x84 scope:global align:4 +createTreasureItem__Q34Game6Kogane3ObjFv = .text:0x8025E930; // type:function size:0x194 scope:global align:4 +createPellet__Q34Game6Kogane3ObjFii = .text:0x8025EAC4; // type:function size:0x294 scope:global align:4 +createDoping__Q34Game6Kogane3ObjFUci = .text:0x8025ED58; // type:function size:0x1DC scope:global align:4 +__dt__Q34Game6Kogane3ObjFv = .text:0x8025EF34; // type:function size:0xBC scope:weak align:4 +inWaterCallback__Q34Game6Kogane3ObjFPQ24Game8WaterBox = .text:0x8025EFF0; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game6Kogane3ObjFv = .text:0x8025EFF4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Kogane3ObjFv = .text:0x8025EFF8; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game6Kogane14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8025F000; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Kogane14ProperAnimatorFi = .text:0x8025F008; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Kogane14ProperAnimatorFv = .text:0x8025F010; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Kogane14ProperAnimatorFv = .text:0x8025F06C; // type:function size:0x8 scope:weak align:4 +init__Q34Game7Qurione3FSMFPQ24Game9EnemyBase = .text:0x8025F074; // type:function size:0x228 scope:global align:4 +init__Q34Game7Qurione9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F29C; // type:function size:0xD0 scope:global align:4 +exec__Q34Game7Qurione9StateStayFPQ24Game9EnemyBase = .text:0x8025F36C; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game7Qurione9StateStayFPQ24Game9EnemyBase = .text:0x8025F3F4; // type:function size:0x5C scope:global align:4 +init__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F450; // type:function size:0x74 scope:global align:4 +exec__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBase = .text:0x8025F4C4; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBase = .text:0x8025F544; // type:function size:0x54 scope:global align:4 +init__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F598; // type:function size:0x6C scope:global align:4 +exec__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBase = .text:0x8025F604; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBase = .text:0x8025F684; // type:function size:0x90 scope:global align:4 +init__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F714; // type:function size:0x3C scope:global align:4 +exec__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBase = .text:0x8025F750; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBase = .text:0x8025F880; // type:function size:0x4 scope:global align:4 +init__Q34Game7Qurione9StateDropFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F884; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Qurione9StateDropFPQ24Game9EnemyBase = .text:0x8025F8E0; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game7Qurione9StateDropFPQ24Game9EnemyBase = .text:0x8025F948; // type:function size:0x10 scope:global align:4 +init__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8025F958; // type:function size:0xB0 scope:global align:4 +exec__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBase = .text:0x8025FA08; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBase = .text:0x8025FA68; // type:function size:0x4 scope:global align:4 +__ct__Q34Game7Qurione9GeneratorFv = .text:0x8025FA6C; // type:function size:0x94 scope:global align:4 +getLatestVersion__Q34Game7Qurione9GeneratorFv = .text:0x8025FB00; // type:function size:0xC scope:global align:4 +doRead__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FB0C; // type:function size:0x74 scope:global align:4 +doWrite__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FB80; // type:function size:0x80 scope:global align:4 +doReadLatestVersion__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FC00; // type:function size:0x4C scope:global align:4 +doReadOldVersion__Q34Game7Qurione9GeneratorFR6Stream = .text:0x8025FC4C; // type:function size:0x4 scope:global align:4 +__ct__Q34Game7Qurione3MgrFiUc = .text:0x8025FC50; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Qurione3MgrFv = .text:0x8025FCA0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Qurione5ParmsFv = .text:0x8025FCE8; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game7Qurione3MgrFi = .text:0x8025FE78; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Qurione3ObjFv = .text:0x8025FED8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Qurione3MgrFi = .text:0x8025FF94; // type:function size:0x10 scope:global align:4 +read__Q34Game7Qurione5ParmsFR6Stream = .text:0x8025FFA4; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Qurione3MgrFv = .text:0x8025FFF4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Qurione3MgrFv = .text:0x802600A4; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Qurione3MgrFPv = .text:0x802600AC; // type:function size:0x2C scope:weak align:4 +__dt__Q34Game7Qurione9GeneratorFv = .text:0x802600D8; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game7Qurione9GeneratorFv = .text:0x80260148; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Qurione3MgrFv = .text:0x80260150; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Qurione3ObjFv = .text:0x80260158; // type:function size:0x154 scope:global align:4 +birth__Q34Game7Qurione3ObjFR10Vector3f = .text:0x802602AC; // type:function size:0x5C scope:global align:4 +setInitialSetting__Q34Game7Qurione3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80260308; // type:function size:0x2C scope:global align:4 +onInit__Q34Game7Qurione3ObjFPQ24Game15CreatureInitArg = .text:0x80260334; // type:function size:0xEC scope:global align:4 +onKill__Q34Game7Qurione3ObjFPQ24Game15CreatureKillArg = .text:0x80260420; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game7Qurione3ObjFv = .text:0x80260464; // type:function size:0x34 scope:global align:4 +setFSM__Q34Game7Qurione3ObjFPQ34Game7Qurione3FSM = .text:0x80260498; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game7Qurione3ObjFR8Graphics = .text:0x802604E4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Qurione3ObjFR8Graphics = .text:0x802604E8; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game7Qurione3ObjFRQ24Game11ShadowParam = .text:0x80260508; // type:function size:0x5C scope:global align:4 +flyCollisionCallBack__Q34Game7Qurione3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80260564; // type:function size:0x88 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game7Qurione3ObjFv = .text:0x802605EC; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game7Qurione3ObjFv = .text:0x80260620; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game7Qurione3ObjFv = .text:0x80260654; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7Qurione3ObjFv = .text:0x80260674; // type:function size:0x20 scope:global align:4 +setQurioneStartPos__Q34Game7Qurione3ObjFf = .text:0x80260694; // type:function size:0x188 scope:global align:4 +moveFaceDir__Q34Game7Qurione3ObjFv = .text:0x8026081C; // type:function size:0x16C scope:global align:4 +addPitchRatio__Q34Game7Qurione3ObjFv = .text:0x80260988; // type:function size:0x38 scope:global align:4 +resetUtilityTimer__Q34Game7Qurione3ObjFv = .text:0x802609C0; // type:function size:0x88 scope:global align:4 +isAppear__Q34Game7Qurione3ObjFv = .text:0x80260A48; // type:function size:0x6C scope:global align:4 +isFlyKill__Q34Game7Qurione3ObjFv = .text:0x80260AB4; // type:function size:0x30 scope:global align:4 +attachItem__Q34Game7Qurione3ObjFv = .text:0x80260AE4; // type:function size:0xA4 scope:global align:4 +dropItem__Q34Game7Qurione3ObjFv = .text:0x80260B88; // type:function size:0x4C scope:global align:4 +addQurioneScale__Q34Game7Qurione3ObjFv = .text:0x80260BD4; // type:function size:0x2C scope:global align:4 +subQurioneScale__Q34Game7Qurione3ObjFv = .text:0x80260C00; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game7Qurione3ObjFv = .text:0x80260C2C; // type:function size:0x1C0 scope:global align:4 +setupEffect__Q34Game7Qurione3ObjFv = .text:0x80260DEC; // type:function size:0x54 scope:global align:4 +createHitEffect__Q34Game7Qurione3ObjFv = .text:0x80260E40; // type:function size:0xA0 scope:global align:4 +startGlowEffect__Q34Game7Qurione3ObjFv = .text:0x80260EE0; // type:function size:0x4C scope:global align:4 +setGlowEffectScale__Q34Game7Qurione3ObjFv = .text:0x80260F2C; // type:function size:0x2C scope:global align:4 +finishGlowEffect__Q34Game7Qurione3ObjFv = .text:0x80260F58; // type:function size:0x30 scope:global align:4 +createAppearEffect__Q34Game7Qurione3ObjFv = .text:0x80260F88; // type:function size:0x34 scope:global align:4 +createDisppearEffect__Q34Game7Qurione3ObjFv = .text:0x80260FBC; // type:function size:0x34 scope:global align:4 +effectDrawOn__Q34Game7Qurione3ObjFv = .text:0x80260FF0; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game7Qurione3ObjFv = .text:0x80261054; // type:function size:0x64 scope:global align:4 +__dt__Q23efx10TQuriDisapFv = .text:0x802610B8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TQuriAppFv = .text:0x80261154; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TQuriGlowFv = .text:0x802611F0; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game7Qurione3ObjFPQ24Game8WaterBox = .text:0x8026128C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Qurione3ObjFv = .text:0x80261290; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Qurione3ObjFv = .text:0x80261294; // type:function size:0x8 scope:weak align:4 +@764@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8026129C; // type:function size:0x14 scope:weak align:4 +@764@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802612B0; // type:function size:0x14 scope:weak align:4 +@764@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802612C4; // type:function size:0x14 scope:weak align:4 +@764@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802612D8; // type:function size:0x14 scope:weak align:4 +@764@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802612EC; // type:function size:0x14 scope:weak align:4 +@764@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80261300; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TQuriGlowFv = .text:0x80261314; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TQuriAppFv = .text:0x8026131C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TQuriDisapFv = .text:0x80261324; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game7Qurione14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026132C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Qurione14ProperAnimatorFi = .text:0x80261334; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Qurione14ProperAnimatorFv = .text:0x8026133C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Qurione14ProperAnimatorFv = .text:0x80261398; // type:function size:0x8 scope:weak align:4 +__ct__Q24Game10RumbleDataFv = .text:0x802613A0; // type:function size:0xC scope:global align:4 +__ct__Q24Game13RumbleDataMgrFv = .text:0x802613AC; // type:function size:0xC scope:global align:4 +getRumbleData__Q24Game13RumbleDataMgrFi = .text:0x802613B8; // type:function size:0x2C scope:global align:4 +read__Q24Game13RumbleDataMgrFR6Stream = .text:0x802613E4; // type:function size:0x128 scope:global align:4 +__ct__Q34Game8MaroFrog3MgrFiUc = .text:0x8026150C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8MaroFrog3MgrFv = .text:0x8026155C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game8MaroFrog3MgrFi = .text:0x802615A4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8MaroFrog3ObjFv = .text:0x80261604; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game8MaroFrog3MgrFi = .text:0x802616F0; // type:function size:0x10 scope:global align:4 +__dt__Q34Game8MaroFrog3MgrFv = .text:0x80261700; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8MaroFrog3MgrFv = .text:0x802617B0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8MaroFrog3MgrFv = .text:0x802617B8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8MaroFrog3ObjFv = .text:0x802617C0; // type:function size:0x98 scope:global align:4 +attackNaviPosition__Q34Game8MaroFrog3ObjFv = .text:0x80261858; // type:function size:0x45C scope:global align:4 +createEffect__Q34Game8MaroFrog3ObjFv = .text:0x80261CB4; // type:function size:0xB0 scope:global align:4 +getEnemyTypeID__Q34Game8MaroFrog3ObjFv = .text:0x80261D64; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Rock3FSMFPQ24Game9EnemyBase = .text:0x80261D6C; // type:function size:0x228 scope:global align:4 +init__Q34Game4Rock9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80261F94; // type:function size:0x98 scope:global align:4 +exec__Q34Game4Rock9StateWaitFPQ24Game9EnemyBase = .text:0x8026202C; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game4Rock9StateWaitFPQ24Game9EnemyBase = .text:0x80262134; // type:function size:0x48 scope:global align:4 +init__Q34Game4Rock11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026217C; // type:function size:0x104 scope:global align:4 +exec__Q34Game4Rock11StateAppearFPQ24Game9EnemyBase = .text:0x80262280; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game4Rock11StateAppearFPQ24Game9EnemyBase = .text:0x802622E4; // type:function size:0x5C scope:global align:4 +init__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80262340; // type:function size:0x2C scope:global align:4 +exec__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBase = .text:0x8026236C; // type:function size:0x34 scope:global align:4 +cleanup__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBase = .text:0x802623A0; // type:function size:0x58 scope:global align:4 +init__Q34Game4Rock9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802623F8; // type:function size:0x60 scope:global align:4 +exec__Q34Game4Rock9StateFallFPQ24Game9EnemyBase = .text:0x80262458; // type:function size:0x68 scope:global align:4 +cleanup__Q34Game4Rock9StateFallFPQ24Game9EnemyBase = .text:0x802624C0; // type:function size:0x94 scope:global align:4 +init__Q34Game4Rock9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80262554; // type:function size:0x7C scope:global align:4 +exec__Q34Game4Rock9StateMoveFPQ24Game9EnemyBase = .text:0x802625D0; // type:function size:0xD0 scope:global align:4 +cleanup__Q34Game4Rock9StateMoveFPQ24Game9EnemyBase = .text:0x802626A0; // type:function size:0x7C scope:global align:4 +init__Q34Game4Rock9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026271C; // type:function size:0x88 scope:global align:4 +exec__Q34Game4Rock9StateDeadFPQ24Game9EnemyBase = .text:0x802627A4; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game4Rock9StateDeadFPQ24Game9EnemyBase = .text:0x80262830; // type:function size:0x4 scope:global align:4 +__sinit_RockState_cpp = .text:0x80262834; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game4Rock14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026285C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Rock14ProperAnimatorFi = .text:0x80262864; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Rock14ProperAnimatorFv = .text:0x8026286C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Rock14ProperAnimatorFv = .text:0x802628C8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Rock9GeneratorFv = .text:0x802628D0; // type:function size:0x9C scope:global align:4 +getLatestVersion__Q34Game4Rock9GeneratorFv = .text:0x8026296C; // type:function size:0xC scope:global align:4 +doRead__Q34Game4Rock9GeneratorFR6Stream = .text:0x80262978; // type:function size:0x74 scope:global align:4 +doWrite__Q34Game4Rock9GeneratorFR6Stream = .text:0x802629EC; // type:function size:0xA4 scope:global align:4 +doReadLatestVersion__Q34Game4Rock9GeneratorFR6Stream = .text:0x80262A90; // type:function size:0x58 scope:global align:4 +doReadOldVersion__Q34Game4Rock9GeneratorFR6Stream = .text:0x80262AE8; // type:function size:0x4 scope:global align:4 +__ct__Q34Game4Rock3MgrFiUc = .text:0x80262AEC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Rock3MgrFv = .text:0x80262B3C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Rock5ParmsFv = .text:0x80262B84; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game4Rock3MgrFi = .text:0x80262C1C; // type:function size:0x160 scope:global align:4 +__dt__Q34Game4Rock3ObjFv = .text:0x80262D7C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Rock3MgrFi = .text:0x80262E38; // type:function size:0x10 scope:global align:4 +read__Q34Game4Rock5ParmsFR6Stream = .text:0x80262E48; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Rock3MgrFv = .text:0x80262E98; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Rock3MgrFv = .text:0x80262F48; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game4Rock9GeneratorFv = .text:0x80262F50; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game4Rock9GeneratorFv = .text:0x80262FC0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Rock3MgrFv = .text:0x80262FC8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Rock3ObjFv = .text:0x80262FD0; // type:function size:0x138 scope:global align:4 +birth__Q34Game4Rock3ObjFR10Vector3f = .text:0x80263108; // type:function size:0x5C scope:global align:4 +setInitialSetting__Q34Game4Rock3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80263164; // type:function size:0x28 scope:global align:4 +onInit__Q34Game4Rock3ObjFPQ24Game15CreatureInitArg = .text:0x8026318C; // type:function size:0x1E0 scope:global align:4 +getEnemyTypeID__Q34Game4Rock3ObjFv = .text:0x8026336C; // type:function size:0x8 scope:weak align:4 +onKill__Q34Game4Rock3ObjFPQ24Game15CreatureKillArg = .text:0x80263374; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game4Rock3ObjFv = .text:0x802633C8; // type:function size:0x34 scope:global align:4 +setFSM__Q34Game4Rock3ObjFPQ34Game4Rock3FSM = .text:0x802633FC; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game4Rock3ObjFR8Graphics = .text:0x80263448; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Rock3ObjFR8Graphics = .text:0x8026344C; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game4Rock3ObjFRQ24Game11ShadowParam = .text:0x8026346C; // type:function size:0xE4 scope:global align:4 +needShadow__Q34Game4Rock3ObjFv = .text:0x80263550; // type:function size:0x60 scope:global align:4 +hipdropCallBack__Q34Game4Rock3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802635B0; // type:function size:0x88 scope:global align:4 +collisionCallback__Q34Game4Rock3ObjFRQ24Game9CollEvent = .text:0x80263638; // type:function size:0x1A4 scope:global align:4 +wallCallback__Q34Game4Rock3ObjFRCQ24Game8MoveInfo = .text:0x802637DC; // type:function size:0x54 scope:global align:4 +inWaterCallback__Q34Game4Rock3ObjFPQ24Game8WaterBox = .text:0x80263830; // type:function size:0x6C scope:global align:4 +outWaterCallback__Q34Game4Rock3ObjFv = .text:0x8026389C; // type:function size:0x60 scope:global align:4 +doStartMovie__Q34Game4Rock3ObjFv = .text:0x802638FC; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game4Rock3ObjFv = .text:0x8026391C; // type:function size:0x20 scope:global align:4 +ignoreAtari__Q34Game4Rock3ObjFPQ24Game8Creature = .text:0x8026393C; // type:function size:0x2C scope:global align:4 +fallRockScaleUp__Q34Game4Rock3ObjFv = .text:0x80263968; // type:function size:0x7C scope:global align:4 +moveRockScaleUp__Q34Game4Rock3ObjFv = .text:0x802639E4; // type:function size:0x7C scope:global align:4 +initMoveVelocity__Q34Game4Rock3ObjFv = .text:0x80263A60; // type:function size:0x100 scope:global align:4 +updateMoveVelocity__Q34Game4Rock3ObjFv = .text:0x80263B60; // type:function size:0x3A0 scope:global align:4 +createEffect__Q34Game4Rock3ObjFv = .text:0x80263F00; // type:function size:0x1A4 scope:global align:4 +setupEffect__Q34Game4Rock3ObjFv = .text:0x802640A4; // type:function size:0x18 scope:global align:4 +startFallEffect__Q34Game4Rock3ObjFv = .text:0x802640BC; // type:function size:0x34 scope:global align:4 +finishFallEffect__Q34Game4Rock3ObjFv = .text:0x802640F0; // type:function size:0x30 scope:global align:4 +startRollingGroundEffect__Q34Game4Rock3ObjFv = .text:0x80264120; // type:function size:0x34 scope:global align:4 +finishRollingGroundEffect__Q34Game4Rock3ObjFv = .text:0x80264154; // type:function size:0x30 scope:global align:4 +startRollingWaterEffect__Q34Game4Rock3ObjFv = .text:0x80264184; // type:function size:0xE8 scope:global align:4 +create__Q23efx9TRockWRunFPQ23efx3Arg = .text:0x8026426C; // type:function size:0x10 scope:weak align:4 +finishRollingWaterEffect__Q34Game4Rock3ObjFv = .text:0x8026427C; // type:function size:0x30 scope:global align:4 +fade__Q23efx9TRockWRunFv = .text:0x802642AC; // type:function size:0x44 scope:weak align:4 +updateWaterEffectPosition__Q34Game4Rock3ObjFv = .text:0x802642F0; // type:function size:0xA4 scope:global align:4 +createRockDeadEffect__Q34Game4Rock3ObjFv = .text:0x80264394; // type:function size:0x98 scope:global align:4 +effectDrawOn__Q34Game4Rock3ObjFv = .text:0x8026442C; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game4Rock3ObjFv = .text:0x80264490; // type:function size:0x64 scope:global align:4 +forceKill__Q23efx9TRockWRunFv = .text:0x802644F4; // type:function size:0x44 scope:weak align:4 +__dt__Q23efx10TRockGrRunFv = .text:0x80264538; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TRockRunFv = .text:0x802645D4; // type:function size:0x9C scope:weak align:4 +isLivingThing__Q34Game4Rock3ObjFv = .text:0x80264670; // type:function size:0x8 scope:weak align:4 +@744@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80264678; // type:function size:0x14 scope:weak align:4 +@744@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8026468C; // type:function size:0x14 scope:weak align:4 +@744@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802646A0; // type:function size:0x14 scope:weak align:4 +@744@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802646B4; // type:function size:0x14 scope:weak align:4 +@744@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802646C8; // type:function size:0x14 scope:weak align:4 +@744@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802646DC; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx8TRockRunFv = .text:0x802646F0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TRockGrRunFv = .text:0x802646F8; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Ujia3FSMFPQ24Game9EnemyBase = .text:0x80264700; // type:function size:0x3D0 scope:global align:4 +init__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264AD0; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBase = .text:0x80264B2C; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBase = .text:0x80264B70; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264B74; // type:function size:0x64 scope:global align:4 +exec__Q34Game4Ujia10StatePressFPQ24Game9EnemyBase = .text:0x80264BD8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Ujia10StatePressFPQ24Game9EnemyBase = .text:0x80264C1C; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264C20; // type:function size:0xBC scope:global align:4 +exec__Q34Game4Ujia9StateStayFPQ24Game9EnemyBase = .text:0x80264CDC; // type:function size:0xD4 scope:global align:4 +cleanup__Q34Game4Ujia9StateStayFPQ24Game9EnemyBase = .text:0x80264DB0; // type:function size:0x84 scope:global align:4 +init__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264E34; // type:function size:0x80 scope:global align:4 +exec__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBase = .text:0x80264EB4; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBase = .text:0x80264F90; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80264FCC; // type:function size:0x6C scope:global align:4 +exec__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBase = .text:0x80265038; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBase = .text:0x80265088; // type:function size:0x3C scope:global align:4 +init__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802650C4; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBase = .text:0x802650F8; // type:function size:0x4C8 scope:global align:4 +cleanup__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBase = .text:0x802655C0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802655C4; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBase = .text:0x802655F8; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBase = .text:0x802656EC; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802656F0; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80265724; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80265818; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026581C; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBase = .text:0x80265850; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBase = .text:0x80265944; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80265948; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBase = .text:0x8026597C; // type:function size:0x198 scope:global align:4 +cleanup__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBase = .text:0x80265B14; // type:function size:0x4 scope:global align:4 +init__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80265B18; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBase = .text:0x80265B70; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBase = .text:0x80265C7C; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game4Ujia14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80265C80; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Ujia14ProperAnimatorFi = .text:0x80265C88; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Ujia14ProperAnimatorFv = .text:0x80265C90; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Ujia14ProperAnimatorFv = .text:0x80265CEC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujia3MgrFiUc = .text:0x80265CF4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Ujia3MgrFv = .text:0x80265D44; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Ujia5ParmsFv = .text:0x80265D8C; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game4Ujia3MgrFi = .text:0x80265E24; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Ujia3ObjFv = .text:0x80265E84; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Ujia3MgrFi = .text:0x80265F40; // type:function size:0x10 scope:global align:4 +read__Q34Game4Ujia5ParmsFR6Stream = .text:0x80265F50; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Ujia3MgrFv = .text:0x80265FA0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujia3MgrFv = .text:0x80266050; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Ujia3MgrFv = .text:0x80266058; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Ujia3ObjFv = .text:0x80266060; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game4Ujia3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80266190; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Ujia3ObjFPQ24Game15CreatureInitArg = .text:0x80266194; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game4Ujia3ObjFv = .text:0x8026622C; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game4Ujia3ObjFR8Graphics = .text:0x80266260; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Ujia3ObjFR8Graphics = .text:0x80266264; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Ujia3ObjFPQ34Game4Ujia3FSM = .text:0x80266284; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Ujia3ObjFRQ24Game11ShadowParam = .text:0x802662D0; // type:function size:0xA8 scope:global align:4 +pressCallBack__Q34Game4Ujia3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80266378; // type:function size:0x94 scope:global align:4 +hipdropCallBack__Q34Game4Ujia3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026640C; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game4Ujia3ObjFv = .text:0x80266438; // type:function size:0x28 scope:global align:4 +lifeIncrement__Q34Game4Ujia3ObjFv = .text:0x80266460; // type:function size:0x30 scope:global align:4 +setInWaterDamage__Q34Game4Ujia3ObjFv = .text:0x80266490; // type:function size:0x34 scope:global align:4 +resetAppearCheck__Q34Game4Ujia3ObjFv = .text:0x802664C4; // type:function size:0xB4 scope:global align:4 +isAppearCheck__Q34Game4Ujia3ObjFv = .text:0x80266578; // type:function size:0x48 scope:global align:4 +resetBridgeSearch__Q34Game4Ujia3ObjFv = .text:0x802665C0; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game4Ujia3ObjFv = .text:0x802665E0; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game4Ujia3ObjFv = .text:0x80266628; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game4Ujia3ObjFv = .text:0x802668E8; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game4Ujia3ObjFv = .text:0x802668EC; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game4Ujia3ObjFv = .text:0x80266AA0; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game4Ujia3ObjFv = .text:0x80266AC8; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game4Ujia3ObjFv = .text:0x80266D70; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game4Ujia3ObjFv = .text:0x80266FF8; // type:function size:0x2F0 scope:global align:4 +breakTargetBridge__Q34Game4Ujia3ObjFv = .text:0x802672E8; // type:function size:0x5C scope:global align:4 +createAppearEffect__Q34Game4Ujia3ObjFv = .text:0x80267344; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game4Ujia3ObjFv = .text:0x802673D0; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game4Ujia3ObjFv = .text:0x8026745C; // type:function size:0x90 scope:global align:4 +isUnderground__Q34Game4Ujia3ObjFv = .text:0x802674EC; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Ujia3ObjFv = .text:0x802674F4; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Ujia3ObjFv = .text:0x802674FC; // type:function size:0x8 scope:weak align:4 +@724@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80267504; // type:function size:0x14 scope:weak align:4 +@724@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80267518; // type:function size:0x14 scope:weak align:4 +@724@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8026752C; // type:function size:0x14 scope:weak align:4 +@724@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80267540; // type:function size:0x14 scope:weak align:4 +@724@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80267554; // type:function size:0x14 scope:weak align:4 +@724@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80267568; // type:function size:0x14 scope:weak align:4 +init__Q34Game4Tobi3FSMFPQ24Game9EnemyBase = .text:0x8026757C; // type:function size:0x4CC scope:global align:4 +init__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267A48; // type:function size:0x70 scope:global align:4 +exec__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBase = .text:0x80267AB8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBase = .text:0x80267AFC; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267B00; // type:function size:0x70 scope:global align:4 +exec__Q34Game4Tobi10StatePressFPQ24Game9EnemyBase = .text:0x80267B70; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Tobi10StatePressFPQ24Game9EnemyBase = .text:0x80267BB4; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267BB8; // type:function size:0xBC scope:global align:4 +exec__Q34Game4Tobi9StateStayFPQ24Game9EnemyBase = .text:0x80267C74; // type:function size:0xB0 scope:global align:4 +cleanup__Q34Game4Tobi9StateStayFPQ24Game9EnemyBase = .text:0x80267D24; // type:function size:0x84 scope:global align:4 +init__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267DA8; // type:function size:0x80 scope:global align:4 +exec__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBase = .text:0x80267E28; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBase = .text:0x80267EA8; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267EE4; // type:function size:0x6C scope:global align:4 +exec__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBase = .text:0x80267F50; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBase = .text:0x80267FA0; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80267FDC; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBase = .text:0x80268010; // type:function size:0x4E8 scope:global align:4 +cleanup__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBase = .text:0x802684F8; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802684FC; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBase = .text:0x80268530; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBase = .text:0x80268680; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268684; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBase = .text:0x802686B8; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80268808; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026880C; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBase = .text:0x80268840; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBase = .text:0x80268990; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268994; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBase = .text:0x802689C8; // type:function size:0x1FC scope:global align:4 +cleanup__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBase = .text:0x80268BC4; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268BC8; // type:function size:0x94 scope:global align:4 +exec__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBase = .text:0x80268C5C; // type:function size:0x130 scope:global align:4 +cleanup__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBase = .text:0x80268D8C; // type:function size:0x1C scope:global align:4 +init__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268DA8; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBase = .text:0x80268E00; // type:function size:0x158 scope:global align:4 +cleanup__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBase = .text:0x80268F58; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80268F5C; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBase = .text:0x80268FA4; // type:function size:0x218 scope:global align:4 +cleanup__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBase = .text:0x802691BC; // type:function size:0x10 scope:global align:4 +init__Q34Game4Tobi8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802691CC; // type:function size:0x3C scope:global align:4 +exec__Q34Game4Tobi8StateEatFPQ24Game9EnemyBase = .text:0x80269208; // type:function size:0x1A8 scope:global align:4 +cleanup__Q34Game4Tobi8StateEatFPQ24Game9EnemyBase = .text:0x802693B0; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game4Tobi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802693B4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Tobi14ProperAnimatorFi = .text:0x802693BC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Tobi14ProperAnimatorFv = .text:0x802693C4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Tobi14ProperAnimatorFv = .text:0x80269420; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tobi3MgrFiUc = .text:0x80269428; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Tobi3MgrFv = .text:0x80269478; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Tobi5ParmsFv = .text:0x802694C0; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game4Tobi3MgrFi = .text:0x80269650; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Tobi3ObjFv = .text:0x802696B0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Tobi3MgrFi = .text:0x8026976C; // type:function size:0x10 scope:global align:4 +read__Q34Game4Tobi5ParmsFR6Stream = .text:0x8026977C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Tobi3MgrFv = .text:0x802697CC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Tobi3MgrFv = .text:0x8026987C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Tobi3MgrFv = .text:0x80269884; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tobi3ObjFv = .text:0x8026988C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Tobi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802699C4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Tobi3ObjFPQ24Game15CreatureInitArg = .text:0x802699C8; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game4Tobi3ObjFv = .text:0x80269A60; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game4Tobi3ObjFR8Graphics = .text:0x80269AA8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Tobi3ObjFR8Graphics = .text:0x80269AAC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Tobi3ObjFPQ34Game4Tobi3FSM = .text:0x80269ACC; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Tobi3ObjFRQ24Game11ShadowParam = .text:0x80269B18; // type:function size:0xE0 scope:global align:4 +pressCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80269BF8; // type:function size:0xA4 scope:global align:4 +hipdropCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80269C9C; // type:function size:0x2C scope:global align:4 +flyCollisionCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80269CC8; // type:function size:0x94 scope:global align:4 +doStartStoneState__Q34Game4Tobi3ObjFv = .text:0x80269D5C; // type:function size:0x38 scope:global align:4 +doFinishStoneState__Q34Game4Tobi3ObjFv = .text:0x80269D94; // type:function size:0x5C scope:global align:4 +doStartEarthquakeFitState__Q34Game4Tobi3ObjFv = .text:0x80269DF0; // type:function size:0x38 scope:global align:4 +doFinishEarthquakeFitState__Q34Game4Tobi3ObjFv = .text:0x80269E28; // type:function size:0x5C scope:global align:4 +startCarcassMotion__Q34Game4Tobi3ObjFv = .text:0x80269E84; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game4Tobi3ObjFv = .text:0x80269EAC; // type:function size:0x8C scope:global align:4 +lifeRecover__Q34Game4Tobi3ObjFv = .text:0x80269F38; // type:function size:0x7C scope:global align:4 +lifeIncrement__Q34Game4Tobi3ObjFv = .text:0x80269FB4; // type:function size:0x30 scope:global align:4 +randomFlyingTarget__Q34Game4Tobi3ObjFv = .text:0x80269FE4; // type:function size:0x220 scope:global align:4 +isFlyingLife__Q34Game4Tobi3ObjFv = .text:0x8026A204; // type:function size:0x24 scope:global align:4 +setInWaterDamage__Q34Game4Tobi3ObjFv = .text:0x8026A228; // type:function size:0x34 scope:global align:4 +resetAppearCheck__Q34Game4Tobi3ObjFv = .text:0x8026A25C; // type:function size:0xB4 scope:global align:4 +isAppearCheck__Q34Game4Tobi3ObjFv = .text:0x8026A310; // type:function size:0x48 scope:global align:4 +resetBridgeSearch__Q34Game4Tobi3ObjFv = .text:0x8026A358; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game4Tobi3ObjFv = .text:0x8026A378; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game4Tobi3ObjFv = .text:0x8026A3C0; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game4Tobi3ObjFv = .text:0x8026A680; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game4Tobi3ObjFv = .text:0x8026A684; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game4Tobi3ObjFv = .text:0x8026A838; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game4Tobi3ObjFv = .text:0x8026A860; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game4Tobi3ObjFv = .text:0x8026AB08; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game4Tobi3ObjFv = .text:0x8026AD90; // type:function size:0x2F0 scope:global align:4 +breakTargetBridge__Q34Game4Tobi3ObjFv = .text:0x8026B080; // type:function size:0x5C scope:global align:4 +createAppearEffect__Q34Game4Tobi3ObjFv = .text:0x8026B0DC; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game4Tobi3ObjFv = .text:0x8026B168; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game4Tobi3ObjFv = .text:0x8026B1F4; // type:function size:0x90 scope:global align:4 +createEatEffect__Q34Game4Tobi3ObjFv = .text:0x8026B284; // type:function size:0x90 scope:global align:4 +isUnderground__Q34Game4Tobi3ObjFv = .text:0x8026B314; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game4Tobi3ObjFv = .text:0x8026B31C; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Tobi3ObjFv = .text:0x8026B324; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Tobi3ObjFv = .text:0x8026B32C; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Hiba3FSMFPQ24Game9EnemyBase = .text:0x8026B334; // type:function size:0x128 scope:global align:4 +init__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026B45C; // type:function size:0x17C scope:global align:4 +getEnemyTypeID__Q34Game4Hiba3ObjFv = .text:0x8026B5D8; // type:function size:0x8 scope:weak align:4 +exec__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026B5E0; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026B5E4; // type:function size:0x4 scope:global align:4 +init__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026B5E8; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026B630; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026B6BC; // type:function size:0x4 scope:global align:4 +init__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026B6C0; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026B708; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026B804; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game4Hiba14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026B828; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Hiba14ProperAnimatorFi = .text:0x8026B830; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Hiba14ProperAnimatorFv = .text:0x8026B838; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Hiba14ProperAnimatorFv = .text:0x8026B894; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Hiba3MgrFiUc = .text:0x8026B89C; // type:function size:0x64 scope:global align:4 +__dt__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026B900; // type:function size:0xB0 scope:weak align:4 +doAlloc__Q34Game4Hiba3MgrFv = .text:0x8026B9B0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Hiba5ParmsFv = .text:0x8026B9F8; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game4Hiba3MgrFi = .text:0x8026BB88; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Hiba3ObjFv = .text:0x8026BBE8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Hiba3MgrFi = .text:0x8026BCA4; // type:function size:0x10 scope:global align:4 +read__Q34Game4Hiba5ParmsFR6Stream = .text:0x8026BCB4; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Hiba3MgrFv = .text:0x8026BD04; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game4Hiba3MgrFv = .text:0x8026BDCC; // type:function size:0x8 scope:weak align:4 +isAlwaysMovieActor__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BDD4; // type:function size:0x8 scope:weak align:4 +doAnimation__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BDDC; // type:function size:0x20 scope:weak align:4 +doEntry__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BDFC; // type:function size:0x20 scope:weak align:4 +doSimulation__Q24Game28EnemyMgrBaseAlwaysMovieActorFf = .text:0x8026BE1C; // type:function size:0x20 scope:weak align:4 +doDirectDraw__Q24Game28EnemyMgrBaseAlwaysMovieActorFR8Graphics = .text:0x8026BE3C; // type:function size:0x20 scope:weak align:4 +@4@__dt__Q24Game28EnemyMgrBaseAlwaysMovieActorFv = .text:0x8026BE5C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Hiba3MgrFv = .text:0x8026BE64; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Hiba3ObjFv = .text:0x8026BE6C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Hiba3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8026BFA4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Hiba3ObjFPQ24Game15CreatureInitArg = .text:0x8026BFA8; // type:function size:0xF8 scope:global align:4 +doUpdate__Q34Game4Hiba3ObjFv = .text:0x8026C0A0; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game4Hiba3ObjFR8Graphics = .text:0x8026C0D4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Hiba3ObjFR8Graphics = .text:0x8026C0D8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Hiba3ObjFPQ34Game4Hiba3FSM = .text:0x8026C0F8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Hiba3ObjFRQ24Game11ShadowParam = .text:0x8026C144; // type:function size:0x38 scope:global align:4 +damageCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026C17C; // type:function size:0x7C scope:global align:4 +pressCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026C1F8; // type:function size:0x30 scope:global align:4 +hipdropCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026C228; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game4Hiba3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8026C258; // type:function size:0x34 scope:global align:4 +interactFireAttack__Q34Game4Hiba3ObjFv = .text:0x8026C28C; // type:function size:0x1D0 scope:global align:4 +setupLodParms__Q34Game4Hiba3ObjFv = .text:0x8026C45C; // type:function size:0x24 scope:global align:4 +updateEfxLod__Q34Game4Hiba3ObjFv = .text:0x8026C480; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game4Hiba3ObjFv = .text:0x8026C4AC; // type:function size:0x64 scope:global align:4 +startFireEffect__Q34Game4Hiba3ObjFv = .text:0x8026C510; // type:function size:0x58 scope:global align:4 +finishFireEffect__Q34Game4Hiba3ObjFv = .text:0x8026C568; // type:function size:0x30 scope:global align:4 +generatorKill__Q34Game4Hiba3ObjFv = .text:0x8026C598; // type:function size:0x44 scope:global align:4 +doSimulation__Q34Game4Hiba3ObjFf = .text:0x8026C5DC; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game4Hiba3ObjFPQ24Game8WaterBox = .text:0x8026C5E0; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game4Hiba3ObjFv = .text:0x8026C5E4; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game4Hiba3ObjFv = .text:0x8026C5E8; // type:function size:0x8 scope:weak align:4 +lifeRecover__Q34Game4Hiba3ObjFv = .text:0x8026C5F0; // type:function size:0x4 scope:weak align:4 +@716@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8026C5F4; // type:function size:0x14 scope:weak align:4 +@716@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8026C608; // type:function size:0x14 scope:weak align:4 +@716@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8026C61C; // type:function size:0x14 scope:weak align:4 +@716@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8026C630; // type:function size:0x14 scope:weak align:4 +@716@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8026C644; // type:function size:0x14 scope:weak align:4 +@716@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8026C658; // type:function size:0x14 scope:weak align:4 +init__Q34Game7GasHiba3FSMFPQ24Game9EnemyBase = .text:0x8026C66C; // type:function size:0x128 scope:global align:4 +init__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026C794; // type:function size:0x17C scope:global align:4 +getEnemyTypeID__Q34Game7GasHiba3ObjFv = .text:0x8026C910; // type:function size:0x8 scope:weak align:4 +exec__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026C918; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026C91C; // type:function size:0x4 scope:global align:4 +init__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026C920; // type:function size:0x48 scope:global align:4 +exec__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026C968; // type:function size:0xC4 scope:global align:4 +cleanup__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026CA2C; // type:function size:0x4 scope:global align:4 +init__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026CA30; // type:function size:0x48 scope:global align:4 +exec__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026CA78; // type:function size:0x150 scope:global align:4 +cleanup__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026CBC8; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game7GasHiba14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026CBEC; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7GasHiba14ProperAnimatorFi = .text:0x8026CBF4; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7GasHiba14ProperAnimatorFv = .text:0x8026CBFC; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7GasHiba14ProperAnimatorFv = .text:0x8026CC58; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7GasHiba3MgrFiUc = .text:0x8026CC60; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7GasHiba3MgrFv = .text:0x8026CCC4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7GasHiba5ParmsFv = .text:0x8026CD0C; // type:function size:0x1CC scope:weak align:4 +createObj__Q34Game7GasHiba3MgrFi = .text:0x8026CED8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7GasHiba3ObjFv = .text:0x8026CF38; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7GasHiba3MgrFi = .text:0x8026CFF4; // type:function size:0x10 scope:global align:4 +read__Q34Game7GasHiba5ParmsFR6Stream = .text:0x8026D004; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7GasHiba3MgrFv = .text:0x8026D054; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7GasHiba3MgrFv = .text:0x8026D11C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7GasHiba3MgrFv = .text:0x8026D124; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7GasHiba3ObjFv = .text:0x8026D12C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game7GasHiba3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8026D264; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7GasHiba3ObjFPQ24Game15CreatureInitArg = .text:0x8026D268; // type:function size:0x100 scope:global align:4 +doUpdate__Q34Game7GasHiba3ObjFv = .text:0x8026D368; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game7GasHiba3ObjFR8Graphics = .text:0x8026D39C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7GasHiba3ObjFR8Graphics = .text:0x8026D3A0; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7GasHiba3ObjFPQ34Game7GasHiba3FSM = .text:0x8026D3C0; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7GasHiba3ObjFRQ24Game11ShadowParam = .text:0x8026D40C; // type:function size:0x38 scope:global align:4 +damageCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026D444; // type:function size:0xC8 scope:global align:4 +pressCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026D50C; // type:function size:0x30 scope:global align:4 +hipdropCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026D53C; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8026D56C; // type:function size:0x34 scope:global align:4 +interactGasAttack__Q34Game7GasHiba3ObjFv = .text:0x8026D5A0; // type:function size:0x1D0 scope:global align:4 +resetBridgeGateCheck__Q34Game7GasHiba3ObjFv = .text:0x8026D770; // type:function size:0x18 scope:global align:4 +setInitLivingThing__Q34Game7GasHiba3ObjFv = .text:0x8026D788; // type:function size:0x5B0 scope:global align:4 +updateLivingThing__Q34Game7GasHiba3ObjFv = .text:0x8026DD38; // type:function size:0x9C scope:global align:4 +isLivingThing__Q34Game7GasHiba3ObjFv = .text:0x8026DDD4; // type:function size:0x8 scope:weak align:4 +setupLodParms__Q34Game7GasHiba3ObjFv = .text:0x8026DDDC; // type:function size:0x24 scope:global align:4 +updateEfxLod__Q34Game7GasHiba3ObjFv = .text:0x8026DE00; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game7GasHiba3ObjFv = .text:0x8026DE2C; // type:function size:0x5C scope:global align:4 +startGasEffect__Q34Game7GasHiba3ObjFv = .text:0x8026DE88; // type:function size:0xA0 scope:global align:4 +finishGasEffect__Q34Game7GasHiba3ObjFv = .text:0x8026DF28; // type:function size:0x30 scope:global align:4 +generatorKill__Q34Game7GasHiba3ObjFv = .text:0x8026DF58; // type:function size:0x44 scope:global align:4 +getName__Q23efx11ArgGasuHibaFv = .text:0x8026DF9C; // type:function size:0xC scope:weak align:4 +doSimulation__Q34Game7GasHiba3ObjFf = .text:0x8026DFA8; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game7GasHiba3ObjFPQ24Game8WaterBox = .text:0x8026DFAC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7GasHiba3ObjFv = .text:0x8026DFB0; // type:function size:0x4 scope:weak align:4 +lifeRecover__Q34Game7GasHiba3ObjFv = .text:0x8026DFB4; // type:function size:0x4 scope:weak align:4 +init__Q34Game8ElecHiba3FSMFPQ24Game9EnemyBase = .text:0x8026DFB8; // type:function size:0x17C scope:global align:4 +init__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E134; // type:function size:0x2CC scope:global align:4 +getEnemyTypeID__Q34Game8ElecHiba3ObjFv = .text:0x8026E400; // type:function size:0x8 scope:weak align:4 +exec__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026E408; // type:function size:0x4 scope:global align:4 +cleanup__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBase = .text:0x8026E40C; // type:function size:0x4 scope:global align:4 +init__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E410; // type:function size:0x70 scope:global align:4 +exec__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026E480; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBase = .text:0x8026E564; // type:function size:0x4 scope:global align:4 +init__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E568; // type:function size:0x88 scope:global align:4 +exec__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBase = .text:0x8026E5F0; // type:function size:0xF8 scope:global align:4 +cleanup__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBase = .text:0x8026E6E8; // type:function size:0x44 scope:global align:4 +init__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8026E72C; // type:function size:0x84 scope:global align:4 +exec__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026E7B0; // type:function size:0x164 scope:global align:4 +cleanup__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBase = .text:0x8026E914; // type:function size:0x60 scope:global align:4 +setAnimMgr__Q34Game8ElecHiba14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8026E974; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8ElecHiba14ProperAnimatorFi = .text:0x8026E97C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8ElecHiba14ProperAnimatorFv = .text:0x8026E984; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8ElecHiba14ProperAnimatorFv = .text:0x8026E9E0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8ElecHiba9GeneratorFv = .text:0x8026E9E8; // type:function size:0x8C scope:global align:4 +getLatestVersion__Q34Game8ElecHiba9GeneratorFv = .text:0x8026EA74; // type:function size:0xC scope:global align:4 +doRead__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EA80; // type:function size:0x74 scope:global align:4 +doWrite__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EAF4; // type:function size:0x60 scope:global align:4 +doReadLatestVersion__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EB54; // type:function size:0x34 scope:global align:4 +doReadOldVersion__Q34Game8ElecHiba9GeneratorFR6Stream = .text:0x8026EB88; // type:function size:0x4 scope:global align:4 +__ct__Q34Game8ElecHiba3MgrFiUc = .text:0x8026EB8C; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8ElecHiba3MgrFv = .text:0x8026EBF0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8ElecHiba5ParmsFv = .text:0x8026EC38; // type:function size:0x1CC scope:weak align:4 +createObj__Q34Game8ElecHiba3MgrFi = .text:0x8026EE04; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8ElecHiba3ObjFv = .text:0x8026EE64; // type:function size:0xE0 scope:weak align:4 +getEnemy__Q34Game8ElecHiba3MgrFi = .text:0x8026EF44; // type:function size:0x10 scope:global align:4 +birth__Q34Game8ElecHiba3MgrFRQ24Game13EnemyBirthArg = .text:0x8026EF54; // type:function size:0xE4 scope:global align:4 +__dt__Q34Game8ElecHiba3MgrFv = .text:0x8026F038; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8ElecHiba3MgrFv = .text:0x8026F100; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8ElecHiba8TeamListFv = .text:0x8026F108; // type:function size:0x60 scope:weak align:4 +read__Q34Game8ElecHiba5ParmsFR6Stream = .text:0x8026F168; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game8ElecHiba9GeneratorFv = .text:0x8026F1B8; // type:function size:0x70 scope:weak align:4 +getInitialParam__Q34Game8ElecHiba9GeneratorFv = .text:0x8026F228; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8ElecHiba3MgrFv = .text:0x8026F230; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8ElecHiba3ObjFv = .text:0x8026F238; // type:function size:0x150 scope:global align:4 +birth__Q34Game8ElecHiba3ObjFR10Vector3f = .text:0x8026F388; // type:function size:0x38 scope:global align:4 +setInitialSetting__Q34Game8ElecHiba3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8026F3C0; // type:function size:0x80 scope:global align:4 +onInit__Q34Game8ElecHiba3ObjFPQ24Game15CreatureInitArg = .text:0x8026F440; // type:function size:0x144 scope:global align:4 +doUpdate__Q34Game8ElecHiba3ObjFv = .text:0x8026F584; // type:function size:0x40 scope:global align:4 +doDirectDraw__Q34Game8ElecHiba3ObjFR8Graphics = .text:0x8026F5C4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8ElecHiba3ObjFR8Graphics = .text:0x8026F5C8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game8ElecHiba3ObjFPQ34Game8ElecHiba3FSM = .text:0x8026F5E8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game8ElecHiba3ObjFRQ24Game11ShadowParam = .text:0x8026F634; // type:function size:0x38 scope:global align:4 +damageCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026F66C; // type:function size:0xCC scope:global align:4 +pressCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026F738; // type:function size:0x30 scope:global align:4 +hipdropCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8026F768; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8026F798; // type:function size:0x34 scope:global align:4 +doGetLifeGaugeParam__Q34Game8ElecHiba3ObjFRQ24Game14LifeGaugeParam = .text:0x8026F7CC; // type:function size:0x100 scope:global align:4 +injure__Q34Game8ElecHiba3ObjFv = .text:0x8026F8CC; // type:function size:0x4C scope:global align:4 +getChildObjPtr__Q34Game8ElecHiba3ObjFv = .text:0x8026F918; // type:function size:0x1C scope:global align:4 +setElecHibaPosition__Q34Game8ElecHiba3ObjFPQ34Game8ElecHiba12InitialParamf = .text:0x8026F934; // type:function size:0x170 scope:global align:4 +interactDenkiAttack__Q34Game8ElecHiba3ObjFR10Vector3 = .text:0x8026FAA4; // type:function size:0x5C8 scope:global align:4 +addDamageMyself__Q34Game8ElecHiba3ObjFf = .text:0x8027006C; // type:function size:0x4C scope:global align:4 +damageIncrement__Q34Game8ElecHiba3ObjFf = .text:0x802700B8; // type:function size:0x2C scope:global align:4 +setupLodParms__Q34Game8ElecHiba3ObjFv = .text:0x802700E4; // type:function size:0x24 scope:global align:4 +updateEfxLod__Q34Game8ElecHiba3ObjFv = .text:0x80270108; // type:function size:0x38 scope:global align:4 +createEffect__Q34Game8ElecHiba3ObjFb = .text:0x80270140; // type:function size:0xDC scope:global align:4 +__dt__Q23efx14TDenkipoleSignFv = .text:0x8027021C; // type:function size:0x9C scope:weak align:4 +__ct__Q23efx14TDenkipoleSignFv = .text:0x802702B8; // type:function size:0x6C scope:weak align:4 +__dt__Q23efx10TDenkiPoleFv = .text:0x80270324; // type:function size:0x90 scope:weak align:4 +__ct__Q23efx10TDenkiPoleFv = .text:0x802703B4; // type:function size:0x44 scope:weak align:4 +startChargeEffect__Q34Game8ElecHiba3ObjFPQ24Game8Creature = .text:0x802703F8; // type:function size:0x110 scope:global align:4 +finishChargeEffect__Q34Game8ElecHiba3ObjFv = .text:0x80270508; // type:function size:0x38 scope:global align:4 +startDisChargeEffect__Q34Game8ElecHiba3ObjFv = .text:0x80270540; // type:function size:0x70 scope:global align:4 +finishDisChargeEffect__Q34Game8ElecHiba3ObjFv = .text:0x802705B0; // type:function size:0x38 scope:global align:4 +generatorKill__Q34Game8ElecHiba3ObjFv = .text:0x802705E8; // type:function size:0x44 scope:global align:4 +setVersusHibaOnOff__Q34Game8ElecHiba3ObjFv = .text:0x8027062C; // type:function size:0x6C scope:global align:4 +setVersusHibaType__Q34Game8ElecHiba3ObjFv = .text:0x80270698; // type:function size:0x2C scope:global align:4 +resetAttrHitCount__Q34Game8ElecHiba3ObjFv = .text:0x802706C4; // type:function size:0x10 scope:global align:4 +addAttrAttackCount__Q34Game8ElecHiba3ObjFPQ24Game4Piki = .text:0x802706D4; // type:function size:0x70 scope:global align:4 +isWaitFinish__Q34Game8ElecHiba3ObjFv = .text:0x80270744; // type:function size:0x40 scope:global align:4 +isAttackFinish__Q34Game8ElecHiba3ObjFv = .text:0x80270784; // type:function size:0x58 scope:global align:4 +getName__Q23efx12ArgDenkiHibaFv = .text:0x802707DC; // type:function size:0xC scope:weak align:4 +doSimulation__Q34Game8ElecHiba3ObjFf = .text:0x802707E8; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game8ElecHiba3ObjFPQ24Game8WaterBox = .text:0x802707EC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game8ElecHiba3ObjFv = .text:0x802707F0; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game8ElecHiba3ObjFv = .text:0x802707F4; // type:function size:0x8 scope:weak align:4 +lifeRecover__Q34Game8ElecHiba3ObjFv = .text:0x802707FC; // type:function size:0x4 scope:weak align:4 +@772@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80270800; // type:function size:0x14 scope:weak align:4 +@772@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80270814; // type:function size:0x14 scope:weak align:4 +@772@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80270828; // type:function size:0x14 scope:weak align:4 +@772@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8027083C; // type:function size:0x14 scope:weak align:4 +@772@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80270850; // type:function size:0x14 scope:weak align:4 +@772@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80270864; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14TDenkipoleSignFv = .text:0x80270878; // type:function size:0x8 scope:weak align:4 +init__Q34Game5Sarai3FSMFPQ24Game9EnemyBase = .text:0x80270880; // type:function size:0x3D0 scope:global align:4 +init__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80270C50; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBase = .text:0x80270CC0; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBase = .text:0x80270D04; // type:function size:0x4 scope:global align:4 +init__Q34Game5Sarai9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80270D08; // type:function size:0x68 scope:global align:4 +exec__Q34Game5Sarai9StateFallFPQ24Game9EnemyBase = .text:0x80270D70; // type:function size:0x1B8 scope:global align:4 +cleanup__Q34Game5Sarai9StateFallFPQ24Game9EnemyBase = .text:0x80270F28; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80270F4C; // type:function size:0x68 scope:global align:4 +exec__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBase = .text:0x80270FB4; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBase = .text:0x802710BC; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802710E0; // type:function size:0x4C scope:global align:4 +exec__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBase = .text:0x8027112C; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBase = .text:0x80271234; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271258; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBase = .text:0x802712B0; // type:function size:0x118 scope:global align:4 +cleanup__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBase = .text:0x802713C8; // type:function size:0x30 scope:global align:4 +init__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802713F8; // type:function size:0xB0 scope:global align:4 +exec__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBase = .text:0x802714A8; // type:function size:0x160 scope:global align:4 +cleanup__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBase = .text:0x80271608; // type:function size:0x4 scope:global align:4 +init__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027160C; // type:function size:0x5C scope:global align:4 +exec__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBase = .text:0x80271668; // type:function size:0x208 scope:global align:4 +cleanup__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBase = .text:0x80271870; // type:function size:0x4 scope:global align:4 +init__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271874; // type:function size:0x78 scope:global align:4 +exec__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBase = .text:0x802718EC; // type:function size:0x614 scope:global align:4 +cleanup__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBase = .text:0x80271F00; // type:function size:0x44 scope:global align:4 +init__Q34Game5Sarai9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80271F44; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Sarai9StateFailFPQ24Game9EnemyBase = .text:0x80271F9C; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game5Sarai9StateFailFPQ24Game9EnemyBase = .text:0x80272074; // type:function size:0x30 scope:global align:4 +init__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802720A4; // type:function size:0x64 scope:global align:4 +exec__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBase = .text:0x80272108; // type:function size:0x1C0 scope:global align:4 +cleanup__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBase = .text:0x802722C8; // type:function size:0x24 scope:global align:4 +init__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802722EC; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBase = .text:0x8027235C; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBase = .text:0x80272418; // type:function size:0x54 scope:global align:4 +resetAttackableTimer__Q34Game5Sarai3ObjFf = .text:0x8027246C; // type:function size:0x4 scope:weak align:4 +setAnimMgr__Q34Game5Sarai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80272470; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game5Sarai14ProperAnimatorFi = .text:0x80272478; // type:function size:0x8 scope:global align:4 +__dt__Q34Game5Sarai14ProperAnimatorFv = .text:0x80272480; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game5Sarai14ProperAnimatorFv = .text:0x802724DC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Sarai3MgrFiUc = .text:0x802724E4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Sarai3MgrFv = .text:0x80272534; // type:function size:0x48 scope:global align:4 +__ct__Q34Game5Sarai5ParmsFv = .text:0x8027257C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game5Sarai5Parms11ProperParmsFv = .text:0x802725C4; // type:function size:0x3A4 scope:weak align:4 +createObj__Q34Game5Sarai3MgrFi = .text:0x80272968; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Sarai3ObjFv = .text:0x802729C8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game5Sarai3MgrFi = .text:0x80272A84; // type:function size:0x10 scope:global align:4 +read__Q34Game5Sarai5ParmsFR6Stream = .text:0x80272A94; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game5Sarai3MgrFv = .text:0x80272AE4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Sarai3MgrFv = .text:0x80272B94; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game5Sarai3MgrFv = .text:0x80272B9C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Sarai3ObjFv = .text:0x80272BA4; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game5Sarai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80272CDC; // type:function size:0x4 scope:global align:4 +onInit__Q34Game5Sarai3ObjFPQ24Game15CreatureInitArg = .text:0x80272CE0; // type:function size:0x78 scope:global align:4 +doUpdate__Q34Game5Sarai3ObjFv = .text:0x80272D58; // type:function size:0x48 scope:global align:4 +setFSM__Q34Game5Sarai3ObjFPQ34Game5Sarai3FSM = .text:0x80272DA0; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game5Sarai3ObjFR8Graphics = .text:0x80272DEC; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game5Sarai3ObjFR8Graphics = .text:0x80272DF0; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game5Sarai3ObjFRQ24Game11ShadowParam = .text:0x80272E10; // type:function size:0x140 scope:global align:4 +doStartStoneState__Q34Game5Sarai3ObjFv = .text:0x80272F50; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game5Sarai3ObjFv = .text:0x80272F84; // type:function size:0x5C scope:global align:4 +startCarcassMotion__Q34Game5Sarai3ObjFv = .text:0x80272FE0; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game5Sarai3ObjFv = .text:0x80273008; // type:function size:0xA8 scope:global align:4 +setHeightVelocity__Q34Game5Sarai3ObjFv = .text:0x802730B0; // type:function size:0x108 scope:global align:4 +setRandTarget__Q34Game5Sarai3ObjFv = .text:0x802731B8; // type:function size:0x230 scope:global align:4 +fallMeckGround__Q34Game5Sarai3ObjFv = .text:0x802733E8; // type:function size:0x294 scope:global align:4 +getCatchTargetNum__Q34Game5Sarai3ObjFv = .text:0x8027367C; // type:function size:0x7C scope:global align:4 +getNextStateOnHeight__Q34Game5Sarai3ObjFv = .text:0x802736F8; // type:function size:0x144 scope:global align:4 +flickStickTarget__Q34Game5Sarai3ObjFv = .text:0x8027383C; // type:function size:0xB0 scope:global align:4 +getStickPikminNum__Q34Game5Sarai3ObjFv = .text:0x802738EC; // type:function size:0x80 scope:global align:4 +getAttackableTarget__Q34Game5Sarai3ObjFv = .text:0x8027396C; // type:function size:0x3D0 scope:global align:4 +catchTarget__Q34Game5Sarai3ObjFv = .text:0x80273D3C; // type:function size:0x24 scope:global align:4 +createDownEffect__Q34Game5Sarai3ObjFv = .text:0x80273D60; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game5Sarai3ObjFv = .text:0x80273DA4; // type:function size:0x8 scope:weak align:4 +inWaterCallback__Q34Game5Sarai3ObjFPQ24Game8WaterBox = .text:0x80273DAC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game5Sarai3ObjFv = .text:0x80273DB0; // type:function size:0x4 scope:weak align:4 +getMouthSlots__Q34Game5Sarai3ObjFv = .text:0x80273DB4; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game5Sarai3ObjFv = .text:0x80273DBC; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Tank3FSMFPQ24Game9EnemyBase = .text:0x80273DC4; // type:function size:0x280 scope:global align:4 +init__Q34Game4Tank9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80274044; // type:function size:0x70 scope:global align:4 +finishEffect__Q34Game4Tank3ObjFv = .text:0x802740B4; // type:function size:0x4 scope:weak align:4 +exec__Q34Game4Tank9StateDeadFPQ24Game9EnemyBase = .text:0x802740B8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Tank9StateDeadFPQ24Game9EnemyBase = .text:0x802740FC; // type:function size:0x4 scope:global align:4 +init__Q34Game4Tank9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80274100; // type:function size:0x44 scope:global align:4 +exec__Q34Game4Tank9StateWaitFPQ24Game9EnemyBase = .text:0x80274144; // type:function size:0x258 scope:global align:4 +cleanup__Q34Game4Tank9StateWaitFPQ24Game9EnemyBase = .text:0x8027439C; // type:function size:0x28 scope:global align:4 +init__Q34Game4Tank9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802743C4; // type:function size:0x54 scope:global align:4 +exec__Q34Game4Tank9StateMoveFPQ24Game9EnemyBase = .text:0x80274418; // type:function size:0x56C scope:global align:4 +cleanup__Q34Game4Tank9StateMoveFPQ24Game9EnemyBase = .text:0x80274984; // type:function size:0x28 scope:global align:4 +init__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802749AC; // type:function size:0x104 scope:global align:4 +exec__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBase = .text:0x80274AB0; // type:function size:0x364 scope:global align:4 +cleanup__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBase = .text:0x80274E14; // type:function size:0x28 scope:global align:4 +init__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80274E3C; // type:function size:0x50 scope:global align:4 +exec__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBase = .text:0x80274E8C; // type:function size:0x5F4 scope:global align:4 +cleanup__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBase = .text:0x80275480; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tank11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802754BC; // type:function size:0x84 scope:global align:4 +createChargeSE__Q34Game4Tank3ObjFv = .text:0x80275540; // type:function size:0x4 scope:weak align:4 +exec__Q34Game4Tank11StateAttackFPQ24Game9EnemyBase = .text:0x80275544; // type:function size:0x1E0 scope:global align:4 +startEffect__Q34Game4Tank3ObjFv = .text:0x80275724; // type:function size:0x4 scope:weak align:4 +createDisChargeSE__Q34Game4Tank3ObjFv = .text:0x80275728; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game4Tank11StateAttackFPQ24Game9EnemyBase = .text:0x8027572C; // type:function size:0x58 scope:global align:4 +startYodare__Q34Game4Tank3ObjFv = .text:0x80275784; // type:function size:0x4 scope:weak align:4 +init__Q34Game4Tank10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80275788; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Tank10StateFlickFPQ24Game9EnemyBase = .text:0x802757E0; // type:function size:0x180 scope:global align:4 +cleanup__Q34Game4Tank10StateFlickFPQ24Game9EnemyBase = .text:0x80275960; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game4Tank14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80275984; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Tank14ProperAnimatorFi = .text:0x8027598C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Tank14ProperAnimatorFv = .text:0x80275994; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Tank14ProperAnimatorFv = .text:0x802759F0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tank3MgrFiUc = .text:0x802759F8; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game4Tank3MgrFv = .text:0x80275A48; // type:function size:0x9C scope:global align:4 +loadAnimData__Q34Game4Tank3MgrFv = .text:0x80275AE4; // type:function size:0x90 scope:global align:4 +createModel__Q34Game4Tank3MgrFv = .text:0x80275B74; // type:function size:0x138 scope:global align:4 +__dt__Q34Game4Tank3MgrFv = .text:0x80275CAC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Tank3MgrFv = .text:0x80275D5C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Tank3MgrFv = .text:0x80275D64; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tank3ObjFv = .text:0x80275D6C; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game4Tank3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80275EA4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Tank3ObjFPQ24Game15CreatureInitArg = .text:0x80275EA8; // type:function size:0x9C scope:global align:4 +setupEffect__Q34Game4Tank3ObjFv = .text:0x80275F44; // type:function size:0x4 scope:weak align:4 +onKill__Q34Game4Tank3ObjFPQ24Game15CreatureKillArg = .text:0x80275F48; // type:function size:0x50 scope:global align:4 +doUpdate__Q34Game4Tank3ObjFv = .text:0x80275F98; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game4Tank3ObjFR8Graphics = .text:0x80275FE4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Tank3ObjFR8Graphics = .text:0x80275FE8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Tank3ObjFPQ34Game4Tank3FSM = .text:0x80276008; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Tank3ObjFRQ24Game11ShadowParam = .text:0x80276054; // type:function size:0x90 scope:global align:4 +doStartStoneState__Q34Game4Tank3ObjFv = .text:0x802760E4; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game4Tank3ObjFv = .text:0x80276138; // type:function size:0x4C scope:global align:4 +doStartEarthquakeFitState__Q34Game4Tank3ObjFv = .text:0x80276184; // type:function size:0x54 scope:global align:4 +doFinishEarthquakeFitState__Q34Game4Tank3ObjFv = .text:0x802761D8; // type:function size:0x4C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game4Tank3ObjFv = .text:0x80276224; // type:function size:0x40 scope:global align:4 +effectDrawOff__Q34Game4Tank3ObjFv = .text:0x80276264; // type:function size:0x4 scope:weak align:4 +doFinishWaitingBirthTypeDrop__Q34Game4Tank3ObjFv = .text:0x80276268; // type:function size:0x40 scope:global align:4 +effectDrawOn__Q34Game4Tank3ObjFv = .text:0x802762A8; // type:function size:0x4 scope:weak align:4 +startCarcassMotion__Q34Game4Tank3ObjFv = .text:0x802762AC; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game4Tank3ObjFv = .text:0x802762D4; // type:function size:0x2C scope:global align:4 +doEndMovie__Q34Game4Tank3ObjFv = .text:0x80276300; // type:function size:0x2C scope:global align:4 +getOffsetForMapCollision__Q34Game4Tank3ObjFv = .text:0x8027632C; // type:function size:0xC4 scope:global align:4 +initWalkSmokeEffect__Q34Game4Tank3ObjFv = .text:0x802763F0; // type:function size:0x94 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game4Tank3ObjFv = .text:0x80276484; // type:function size:0x8 scope:global align:4 +getCommonEffectPos__Q34Game4Tank3ObjFR10Vector3 = .text:0x8027648C; // type:function size:0x54 scope:global align:4 +isAttackable__Q34Game4Tank3ObjFb = .text:0x802764E0; // type:function size:0x338 scope:global align:4 +interactCreature__Q34Game4Tank3ObjFPQ24Game8Creature = .text:0x80276818; // type:function size:0x4 scope:weak align:4 +emitCollideRatio__Q34Game4Tank3ObjFR10Vector3R10Vector3f = .text:0x8027681C; // type:function size:0x228 scope:global align:4 +stopEffectRadius__Q34Game4Tank3ObjFf = .text:0x80276A44; // type:function size:0x4 scope:weak align:4 +updateEmit__Q34Game4Tank3ObjFv = .text:0x80276A48; // type:function size:0x130 scope:global align:4 +updateCaution__Q34Game4Tank3ObjFv = .text:0x80276B78; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game4Tank3ObjFv = .text:0x80276BC8; // type:function size:0x24 scope:global align:4 +__dt__Q34Game4Tank3ObjFv = .text:0x80276BEC; // type:function size:0xBC scope:weak align:4 +getDownSmokeScale__Q34Game4Tank3ObjFv = .text:0x80276CA8; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Tank3ObjFv = .text:0x80276CB0; // type:function size:0x8 scope:weak align:4 +createEffect__Q34Game4Tank3ObjFv = .text:0x80276CB8; // type:function size:0x4 scope:weak align:4 +@776@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80276CBC; // type:function size:0x14 scope:weak align:4 +@776@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80276CD0; // type:function size:0x14 scope:weak align:4 +@776@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80276CE4; // type:function size:0x14 scope:weak align:4 +@776@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80276CF8; // type:function size:0x14 scope:weak align:4 +@776@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80276D0C; // type:function size:0x14 scope:weak align:4 +@776@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80276D20; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game7Catfish3MgrFiUc = .text:0x80276D34; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Catfish3MgrFv = .text:0x80276D84; // type:function size:0x48 scope:global align:4 +createObj__Q34Game7Catfish3MgrFi = .text:0x80276DCC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Catfish3ObjFv = .text:0x80276E2C; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game7Catfish3MgrFi = .text:0x80276F18; // type:function size:0x10 scope:global align:4 +__dt__Q34Game7Catfish3MgrFv = .text:0x80276F28; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Catfish3MgrFv = .text:0x80276FD8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Catfish3MgrFv = .text:0x80276FE0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Catfish3ObjFv = .text:0x80276FE8; // type:function size:0x90 scope:global align:4 +onInit__Q34Game7Catfish3ObjFPQ24Game15CreatureInitArg = .text:0x80277078; // type:function size:0x3C scope:global align:4 +getShadowParam__Q34Game7Catfish3ObjFRQ24Game11ShadowParam = .text:0x802770B4; // type:function size:0xC0 scope:global align:4 +pressCallBack__Q34Game7Catfish3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80277174; // type:function size:0x28 scope:global align:4 +hipdropCallBack__Q34Game7Catfish3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027719C; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game7Catfish3ObjFv = .text:0x802771BC; // type:function size:0xA0 scope:global align:4 +resetEnemyNonStone__Q34Game7Catfish3ObjFv = .text:0x8027725C; // type:function size:0x44 scope:global align:4 +createDownEffect__Q34Game7Catfish3ObjFv = .text:0x802772A0; // type:function size:0x28 scope:global align:4 +changeMaterial__Q34Game7Catfish3ObjFv = .text:0x802772C8; // type:function size:0x4 scope:weak align:4 +inWaterCallback__Q34Game7Catfish3ObjFPQ24Game8WaterBox = .text:0x802772CC; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Catfish3ObjFv = .text:0x802772D0; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Catfish3ObjFv = .text:0x802772D4; // type:function size:0x8 scope:weak align:4 +setEnemyNonStone__Q34Game7Catfish3ObjFv = .text:0x802772DC; // type:function size:0x10 scope:weak align:4 +init__Q34Game7Tadpole3FSMFPQ24Game9EnemyBase = .text:0x802772EC; // type:function size:0x224 scope:global align:4 +init__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277510; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBase = .text:0x8027756C; // type:function size:0x58 scope:global align:4 +cleanup__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBase = .text:0x802775C4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802775C8; // type:function size:0x48 scope:global align:4 +exec__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBase = .text:0x80277610; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBase = .text:0x8027776C; // type:function size:0x4 scope:global align:4 +init__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277770; // type:function size:0x54 scope:global align:4 +exec__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBase = .text:0x802777C4; // type:function size:0x210 scope:global align:4 +cleanup__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBase = .text:0x802779D4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802779D8; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBase = .text:0x80277A34; // type:function size:0xB4 scope:global align:4 +cleanup__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBase = .text:0x80277AE8; // type:function size:0x30 scope:global align:4 +init__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277B18; // type:function size:0x40 scope:global align:4 +exec__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBase = .text:0x80277B58; // type:function size:0x168 scope:global align:4 +cleanup__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBase = .text:0x80277CC0; // type:function size:0x24 scope:global align:4 +init__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80277CE4; // type:function size:0xE0 scope:global align:4 +exec__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBase = .text:0x80277DC4; // type:function size:0x3FC scope:global align:4 +cleanup__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBase = .text:0x802781C0; // type:function size:0x10 scope:global align:4 +setAnimMgr__Q34Game7Tadpole14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802781D0; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Tadpole14ProperAnimatorFi = .text:0x802781D8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Tadpole14ProperAnimatorFv = .text:0x802781E0; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Tadpole14ProperAnimatorFv = .text:0x8027823C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Tadpole3MgrFiUc = .text:0x80278244; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Tadpole3MgrFv = .text:0x80278294; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Tadpole5ParmsFv = .text:0x802782DC; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game7Tadpole3MgrFi = .text:0x80278374; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Tadpole3ObjFv = .text:0x802783D4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Tadpole3MgrFi = .text:0x80278490; // type:function size:0x10 scope:global align:4 +read__Q34Game7Tadpole5ParmsFR6Stream = .text:0x802784A0; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Tadpole3MgrFv = .text:0x802784F0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Tadpole3MgrFv = .text:0x802785A0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Tadpole3MgrFv = .text:0x802785A8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Tadpole3ObjFv = .text:0x802785B0; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game7Tadpole3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802786E0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7Tadpole3ObjFPQ24Game15CreatureInitArg = .text:0x802786E4; // type:function size:0x64 scope:global align:4 +doUpdate__Q34Game7Tadpole3ObjFv = .text:0x80278748; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game7Tadpole3ObjFR8Graphics = .text:0x8027877C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Tadpole3ObjFR8Graphics = .text:0x80278780; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7Tadpole3ObjFPQ34Game7Tadpole3FSM = .text:0x802787A0; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7Tadpole3ObjFRQ24Game11ShadowParam = .text:0x802787EC; // type:function size:0xB0 scope:global align:4 +hipdropCallBack__Q34Game7Tadpole3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027889C; // type:function size:0x68 scope:global align:4 +startCarcassMotion__Q34Game7Tadpole3ObjFv = .text:0x80278904; // type:function size:0x28 scope:global align:4 +setRandTarget__Q34Game7Tadpole3ObjFb = .text:0x8027892C; // type:function size:0x1E4 scope:global align:4 +getTargetPosition__Q34Game7Tadpole3ObjFPQ24Game8Creature = .text:0x80278B10; // type:function size:0x1C8 scope:global align:4 +createLeapEffect__Q34Game7Tadpole3ObjFv = .text:0x80278CD8; // type:function size:0x188 scope:global align:4 +inWaterCallback__Q34Game7Tadpole3ObjFPQ24Game8WaterBox = .text:0x80278E60; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Tadpole3ObjFv = .text:0x80278E64; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Tadpole3ObjFv = .text:0x80278E68; // type:function size:0x8 scope:weak align:4 +init__Q34Game7ElecBug3FSMFPQ24Game9EnemyBase = .text:0x80278E70; // type:function size:0x384 scope:global align:4 +init__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802791F4; // type:function size:0x5C scope:global align:4 +exec__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBase = .text:0x80279250; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBase = .text:0x80279294; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279298; // type:function size:0x4C scope:global align:4 +exec__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBase = .text:0x802792E4; // type:function size:0xA0 scope:global align:4 +cleanup__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBase = .text:0x80279384; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279388; // type:function size:0x5C scope:global align:4 +exec__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBase = .text:0x802793E4; // type:function size:0x200 scope:global align:4 +cleanup__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBase = .text:0x802795E4; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802795E8; // type:function size:0x3C scope:global align:4 +exec__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBase = .text:0x80279624; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBase = .text:0x80279760; // type:function size:0x4 scope:global align:4 +init__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279764; // type:function size:0x7C scope:global align:4 +exec__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBase = .text:0x802797E0; // type:function size:0x554 scope:global align:4 +isDone__Q24Game34EnemyIteratorFv = .text:0x80279D34; // type:function size:0x4C scope:weak align:4 +cleanup__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBase = .text:0x80279D80; // type:function size:0x64 scope:global align:4 +init__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279DE4; // type:function size:0x60 scope:global align:4 +exec__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBase = .text:0x80279E44; // type:function size:0xE8 scope:global align:4 +cleanup__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBase = .text:0x80279F2C; // type:function size:0x6C scope:global align:4 +init__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80279F98; // type:function size:0x6C scope:global align:4 +exec__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBase = .text:0x8027A004; // type:function size:0x228 scope:global align:4 +cleanup__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBase = .text:0x8027A22C; // type:function size:0x64 scope:global align:4 +init__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027A290; // type:function size:0x60 scope:global align:4 +exec__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBase = .text:0x8027A2F0; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBase = .text:0x8027A3B0; // type:function size:0x6C scope:global align:4 +init__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027A41C; // type:function size:0x70 scope:global align:4 +exec__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBase = .text:0x8027A48C; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBase = .text:0x8027A564; // type:function size:0x10 scope:global align:4 +init__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8027A574; // type:function size:0x48 scope:global align:4 +exec__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBase = .text:0x8027A5BC; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBase = .text:0x8027A60C; // type:function size:0x4 scope:global align:4 +__ml__Q24Game34EnemyIteratorFv = .text:0x8027A610; // type:function size:0x38 scope:weak align:4 +next__Q24Game34EnemyIteratorFv = .text:0x8027A648; // type:function size:0xE4 scope:weak align:4 +first__Q24Game34EnemyIteratorFv = .text:0x8027A72C; // type:function size:0xDC scope:weak align:4 +setAnimMgr__Q34Game7ElecBug14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8027A808; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7ElecBug14ProperAnimatorFi = .text:0x8027A810; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7ElecBug14ProperAnimatorFv = .text:0x8027A818; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7ElecBug14ProperAnimatorFv = .text:0x8027A874; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7ElecBug3MgrFiUc = .text:0x8027A87C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7ElecBug3MgrFv = .text:0x8027A8CC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7ElecBug5ParmsFv = .text:0x8027A914; // type:function size:0x118 scope:weak align:4 +createObj__Q34Game7ElecBug3MgrFi = .text:0x8027AA2C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7ElecBug3ObjFv = .text:0x8027AA8C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7ElecBug3MgrFi = .text:0x8027AB48; // type:function size:0x10 scope:global align:4 +read__Q34Game7ElecBug5ParmsFR6Stream = .text:0x8027AB58; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7ElecBug3MgrFv = .text:0x8027ABA8; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7ElecBug3MgrFv = .text:0x8027AC58; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7ElecBug3MgrFv = .text:0x8027AC60; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7ElecBug3ObjFv = .text:0x8027AC68; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game7ElecBug3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8027ADA0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7ElecBug3ObjFPQ24Game15CreatureInitArg = .text:0x8027ADA4; // type:function size:0xA4 scope:global align:4 +onKill__Q34Game7ElecBug3ObjFPQ24Game15CreatureKillArg = .text:0x8027AE48; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game7ElecBug3ObjFv = .text:0x8027AE8C; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game7ElecBug3ObjFR8Graphics = .text:0x8027AED4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7ElecBug3ObjFR8Graphics = .text:0x8027AED8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3FSM = .text:0x8027AEF8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7ElecBug3ObjFRQ24Game11ShadowParam = .text:0x8027AF44; // type:function size:0x80 scope:global align:4 +collisionCallback__Q34Game7ElecBug3ObjFRQ24Game9CollEvent = .text:0x8027AFC4; // type:function size:0x1E4 scope:global align:4 +pressCallBack__Q34Game7ElecBug3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027B1A8; // type:function size:0x1BC scope:global align:4 +hipdropCallBack__Q34Game7ElecBug3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027B364; // type:function size:0x2C scope:global align:4 +earthquakeCallBack__Q34Game7ElecBug3ObjFPQ24Game8Creaturef = .text:0x8027B390; // type:function size:0xC0 scope:global align:4 +doStartStoneState__Q34Game7ElecBug3ObjFv = .text:0x8027B450; // type:function size:0x40 scope:global align:4 +doFinishStoneState__Q34Game7ElecBug3ObjFv = .text:0x8027B490; // type:function size:0x40 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game7ElecBug3ObjFv = .text:0x8027B4D0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game7ElecBug3ObjFv = .text:0x8027B504; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game7ElecBug3ObjFv = .text:0x8027B538; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game7ElecBug3ObjFv = .text:0x8027B560; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7ElecBug3ObjFv = .text:0x8027B580; // type:function size:0x20 scope:global align:4 +setTargetPosition__Q34Game7ElecBug3ObjFv = .text:0x8027B5A0; // type:function size:0x1A4 scope:global align:4 +resetPartnerPtr__Q34Game7ElecBug3ObjFv = .text:0x8027B744; // type:function size:0x1C scope:global align:4 +isBecomeChargeState__Q34Game7ElecBug3ObjFv = .text:0x8027B760; // type:function size:0x70 scope:global align:4 +startChargeState__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027B7D0; // type:function size:0x30 scope:global align:4 +startChildChargeState__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027B800; // type:function size:0x44 scope:global align:4 +createEffect__Q34Game7ElecBug3ObjFv = .text:0x8027B844; // type:function size:0x44 scope:global align:4 +__ct__Q23efx12TDnkmsEffectFv = .text:0x8027B888; // type:function size:0x168 scope:weak align:4 +__dt__Q23efx14TDnkmsThunderBFv = .text:0x8027B9F0; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx14TDnkmsThunderAFv = .text:0x8027BA74; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx13TDnkmsHoudenBFv = .text:0x8027BAF8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TDnkmsHoudenAFv = .text:0x8027BB94; // type:function size:0x9C scope:weak align:4 +setupEffect__Q34Game7ElecBug3ObjFv = .text:0x8027BC30; // type:function size:0x10 scope:global align:4 +startChargeEffect__Q34Game7ElecBug3ObjFv = .text:0x8027BC40; // type:function size:0x40 scope:global align:4 +startDischargeEffect__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027BC80; // type:function size:0xC0 scope:global align:4 +finishPartnerAndEffect__Q34Game7ElecBug3ObjFv = .text:0x8027BD40; // type:function size:0xA4 scope:global align:4 +effectDrawOn__Q34Game7ElecBug3ObjFv = .text:0x8027BDE4; // type:function size:0x8C scope:global align:4 +effectDrawOff__Q34Game7ElecBug3ObjFv = .text:0x8027BE70; // type:function size:0x8C scope:global align:4 +checkInteract__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj = .text:0x8027BEFC; // type:function size:0x4D0 scope:global align:4 +getDownSmokeScale__Q34Game7ElecBug3ObjFv = .text:0x8027C3CC; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game7ElecBug3ObjFv = .text:0x8027C3D4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TDnkmsHoudenAFv = .text:0x8027C3DC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TDnkmsHoudenBFv = .text:0x8027C3E4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Wtank3MgrFiUc = .text:0x8027C3EC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Wtank3MgrFv = .text:0x8027C43C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Tank5ParmsFv = .text:0x8027C484; // type:function size:0x58 scope:weak align:4 +createObj__Q34Game5Wtank3MgrFi = .text:0x8027C4DC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Wtank3ObjFv = .text:0x8027C53C; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game5Wtank3MgrFi = .text:0x8027C62C; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game5Wtank3MgrFv = .text:0x8027C63C; // type:function size:0x80 scope:global align:4 +__dt__Q34Game5Wtank3MgrFv = .text:0x8027C6BC; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game5Wtank3MgrFv = .text:0x8027C784; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game5Wtank3MgrFv = .text:0x8027C78C; // type:function size:0x8 scope:weak align:4 +read__Q34Game4Tank5ParmsFR6Stream = .text:0x8027C794; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game5Wtank3MgrFv = .text:0x8027C7E4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Wtank3ObjFv = .text:0x8027C7EC; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game5Wtank3ObjFv = .text:0x8027C890; // type:function size:0x1A4 scope:global align:4 +createEffect__Q34Game5Wtank3ObjFv = .text:0x8027CA34; // type:function size:0x19C scope:global align:4 +__dt__Q23efx14TTankWatYodareFv = .text:0x8027CBD0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TTankWatHitFv = .text:0x8027CC6C; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx17TOneEmitterSimpleFv = .text:0x8027CCF0; // type:function size:0x6C scope:weak align:4 +__dt__Q23efx26TParticleCallBack_TankFireFv = .text:0x8027CD5C; // type:function size:0x60 scope:weak align:4 +setupEffect__Q34Game5Wtank3ObjFv = .text:0x8027CDBC; // type:function size:0x50 scope:global align:4 +startEffect__Q34Game5Wtank3ObjFv = .text:0x8027CE0C; // type:function size:0x34 scope:global align:4 +startYodare__Q34Game5Wtank3ObjFv = .text:0x8027CE40; // type:function size:0x54 scope:global align:4 +fade__Q23efx8TTankWatFv = .text:0x8027CE94; // type:function size:0x48 scope:weak align:4 +fade__Q23efx17TOneEmitterSimpleFv = .text:0x8027CEDC; // type:function size:0x44 scope:weak align:4 +finishEffect__Q34Game5Wtank3ObjFv = .text:0x8027CF20; // type:function size:0x50 scope:global align:4 +effectDrawOn__Q34Game5Wtank3ObjFv = .text:0x8027CF70; // type:function size:0x50 scope:global align:4 +endDemoDrawOn__Q23efx8TTankWatFv = .text:0x8027CFC0; // type:function size:0x40 scope:weak align:4 +endDemoDrawOn__Q23efx17TOneEmitterSimpleFv = .text:0x8027D000; // type:function size:0x1C scope:weak align:4 +effectDrawOff__Q34Game5Wtank3ObjFv = .text:0x8027D01C; // type:function size:0x50 scope:global align:4 +startDemoDrawOff__Q23efx8TTankWatFv = .text:0x8027D06C; // type:function size:0x40 scope:weak align:4 +startDemoDrawOff__Q23efx17TOneEmitterSimpleFv = .text:0x8027D0AC; // type:function size:0x1C scope:weak align:4 +interactCreature__Q34Game5Wtank3ObjFPQ24Game8Creature = .text:0x8027D0C8; // type:function size:0x60 scope:global align:4 +stopEffectRadius__Q34Game5Wtank3ObjFf = .text:0x8027D128; // type:function size:0xC scope:global align:4 +createChargeSE__Q34Game5Wtank3ObjFv = .text:0x8027D134; // type:function size:0x44 scope:global align:4 +createDisChargeSE__Q34Game5Wtank3ObjFv = .text:0x8027D178; // type:function size:0x44 scope:global align:4 +forceKill__Q23efx17TOneEmitterSimpleFv = .text:0x8027D1BC; // type:function size:0x44 scope:weak align:4 +getEnemyTypeID__Q34Game5Wtank3ObjFv = .text:0x8027D200; // type:function size:0x8 scope:weak align:4 +@780@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8027D208; // type:function size:0x14 scope:weak align:4 +@780@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8027D21C; // type:function size:0x14 scope:weak align:4 +@780@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8027D230; // type:function size:0x14 scope:weak align:4 +@780@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8027D244; // type:function size:0x14 scope:weak align:4 +@780@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8027D258; // type:function size:0x14 scope:weak align:4 +@780@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8027D26C; // type:function size:0x14 scope:weak align:4 +@4@executeAfter__Q23efx17TOneEmitterSimpleFP14JPABaseEmitter = .text:0x8027D280; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TTankWatHitFv = .text:0x8027D288; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TTankWatYodareFv = .text:0x8027D290; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Armor3MgrFiUc = .text:0x8027D298; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Armor3MgrFv = .text:0x8027D2E8; // type:function size:0x48 scope:global align:4 +__ct__Q34Game5Armor5ParmsFv = .text:0x8027D330; // type:function size:0x110 scope:weak align:4 +createObj__Q34Game5Armor3MgrFi = .text:0x8027D440; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Armor3ObjFv = .text:0x8027D4A0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game5Armor3MgrFi = .text:0x8027D55C; // type:function size:0x10 scope:global align:4 +read__Q34Game5Armor5ParmsFR6Stream = .text:0x8027D56C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game5Armor3MgrFv = .text:0x8027D5BC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Armor3MgrFv = .text:0x8027D66C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game5Armor3MgrFv = .text:0x8027D674; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Armor3ObjFv = .text:0x8027D67C; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game5Armor3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8027D7BC; // type:function size:0x4 scope:global align:4 +onInit__Q34Game5Armor3ObjFPQ24Game15CreatureInitArg = .text:0x8027D7C0; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game5Armor3ObjFv = .text:0x8027D858; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game5Armor3ObjFR8Graphics = .text:0x8027D8A0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game5Armor3ObjFR8Graphics = .text:0x8027D8A4; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game5Armor3ObjFPQ34Game5Armor3FSM = .text:0x8027D8C4; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game5Armor3ObjFRQ24Game11ShadowParam = .text:0x8027D910; // type:function size:0xEC scope:global align:4 +damageCallBack__Q34Game5Armor3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027D9FC; // type:function size:0x94 scope:global align:4 +hipdropCallBack__Q34Game5Armor3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8027DA90; // type:function size:0x68 scope:global align:4 +doStartStoneState__Q34Game5Armor3ObjFv = .text:0x8027DAF8; // type:function size:0x260 scope:global align:4 +doFinishStoneState__Q34Game5Armor3ObjFv = .text:0x8027DD58; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game5Armor3ObjFv = .text:0x8027DD8C; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game5Armor3ObjFv = .text:0x8027DDB4; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game5Armor3ObjFv = .text:0x8027DDD4; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game5Armor3ObjFv = .text:0x8027DDF4; // type:function size:0x8C scope:global align:4 +lifeIncrement__Q34Game5Armor3ObjFv = .text:0x8027DE80; // type:function size:0x30 scope:global align:4 +attackPikmin__Q34Game5Armor3ObjFv = .text:0x8027DEB0; // type:function size:0x3EC scope:global align:4 +getSlotPikiNum__Q34Game5Armor3ObjFv = .text:0x8027E29C; // type:function size:0x8C scope:global align:4 +getMouthSlots__Q34Game5Armor3ObjFv = .text:0x8027E328; // type:function size:0x8 scope:weak align:4 +killSlotPiki__Q34Game5Armor3ObjFv = .text:0x8027E330; // type:function size:0x2C scope:global align:4 +resetBridgeSearch__Q34Game5Armor3ObjFv = .text:0x8027E35C; // type:function size:0x20 scope:global align:4 +setBridgeSearch__Q34Game5Armor3ObjFv = .text:0x8027E37C; // type:function size:0x48 scope:global align:4 +setNearestBridge__Q34Game5Armor3ObjFv = .text:0x8027E3C4; // type:function size:0x2C0 scope:global align:4 +setCullingCheck__Q34Game5Armor3ObjFv = .text:0x8027E684; // type:function size:0x4 scope:global align:4 +checkBreakOrMove__Q34Game5Armor3ObjFv = .text:0x8027E688; // type:function size:0x1B4 scope:global align:4 +isBreakBridge__Q34Game5Armor3ObjFv = .text:0x8027E83C; // type:function size:0x28 scope:global align:4 +moveBridgeSide__Q34Game5Armor3ObjFv = .text:0x8027E864; // type:function size:0x2A8 scope:global align:4 +moveBridgeCentre__Q34Game5Armor3ObjFv = .text:0x8027EB0C; // type:function size:0x288 scope:global align:4 +moveBridgeTop__Q34Game5Armor3ObjFv = .text:0x8027ED94; // type:function size:0x31C scope:global align:4 +breakTargetBridge__Q34Game5Armor3ObjFv = .text:0x8027F0B0; // type:function size:0x5C scope:global align:4 +createEffect__Q34Game5Armor3ObjFv = .text:0x8027F10C; // type:function size:0xB0 scope:global align:4 +setupEffect__Q34Game5Armor3ObjFv = .text:0x8027F1BC; // type:function size:0x40 scope:global align:4 +createAttackEffect__Q34Game5Armor3ObjFv = .text:0x8027F1FC; // type:function size:0x34 scope:global align:4 +createAppearEffect__Q34Game5Armor3ObjFv = .text:0x8027F230; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game5Armor3ObjFv = .text:0x8027F2BC; // type:function size:0x8C scope:global align:4 +createBridgeEffect__Q34Game5Armor3ObjFv = .text:0x8027F348; // type:function size:0x90 scope:global align:4 +effectDrawOn__Q34Game5Armor3ObjFv = .text:0x8027F3D8; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game5Armor3ObjFv = .text:0x8027F408; // type:function size:0x30 scope:global align:4 +__dt__Q23efx12TYoroiAttackFv = .text:0x8027F438; // type:function size:0x9C scope:weak align:4 +getDownSmokeScale__Q34Game5Armor3ObjFv = .text:0x8027F4D4; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game5Armor3ObjFv = .text:0x8027F4DC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TYoroiAttackFv = .text:0x8027F4E4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Mar3ObjFv = .text:0x8027F4EC; // type:function size:0x15C scope:global align:4 +setInitialSetting__Q34Game3Mar3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8027F648; // type:function size:0x4 scope:global align:4 +onInit__Q34Game3Mar3ObjFPQ24Game15CreatureInitArg = .text:0x8027F64C; // type:function size:0xEC scope:global align:4 +onKill__Q34Game3Mar3ObjFPQ24Game15CreatureKillArg = .text:0x8027F738; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game3Mar3ObjFv = .text:0x8027F77C; // type:function size:0x50 scope:global align:4 +changeMaterial__Q34Game3Mar3ObjFv = .text:0x8027F7CC; // type:function size:0xD4 scope:global align:4 +setFSM__Q34Game3Mar3ObjFPQ34Game3Mar3FSM = .text:0x8027F8A0; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game3Mar3ObjFR8Graphics = .text:0x8027F8EC; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game3Mar3ObjFR8Graphics = .text:0x8027F8F0; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game3Mar3ObjFRQ24Game11ShadowParam = .text:0x8027F910; // type:function size:0xD0 scope:global align:4 +doStartStoneState__Q34Game3Mar3ObjFv = .text:0x8027F9E0; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game3Mar3ObjFv = .text:0x8027FA1C; // type:function size:0x74 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game3Mar3ObjFv = .text:0x8027FA90; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game3Mar3ObjFv = .text:0x8027FAC4; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game3Mar3ObjFv = .text:0x8027FAF8; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game3Mar3ObjFv = .text:0x8027FB18; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game3Mar3ObjFv = .text:0x8027FB38; // type:function size:0x64 scope:global align:4 +getThrowupItemPosition__Q34Game3Mar3ObjFP10Vector3 = .text:0x8027FB9C; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game3Mar3ObjFP10Vector3 = .text:0x8027FBEC; // type:function size:0x40 scope:global align:4 +getHeadJointPos__Q34Game3Mar3ObjFv = .text:0x8027FC2C; // type:function size:0x50 scope:global align:4 +setHeightVelocity__Q34Game3Mar3ObjFv = .text:0x8027FC7C; // type:function size:0x11C scope:global align:4 +setRandTarget__Q34Game3Mar3ObjFv = .text:0x8027FD98; // type:function size:0x1D8 scope:global align:4 +resetShadowOffset__Q34Game3Mar3ObjFv = .text:0x8027FF70; // type:function size:0xC scope:global align:4 +setShadowOffsetMax__Q34Game3Mar3ObjFv = .text:0x8027FF7C; // type:function size:0xC scope:global align:4 +addShadowOffset__Q34Game3Mar3ObjFv = .text:0x8027FF88; // type:function size:0x28 scope:global align:4 +subShadowOffset__Q34Game3Mar3ObjFv = .text:0x8027FFB0; // type:function size:0x28 scope:global align:4 +resetShadowRadius__Q34Game3Mar3ObjFv = .text:0x8027FFD8; // type:function size:0xC scope:global align:4 +subShadowRadius__Q34Game3Mar3ObjFv = .text:0x8027FFE4; // type:function size:0x30 scope:global align:4 +updateFallTimer__Q34Game3Mar3ObjFv = .text:0x80280014; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game3Mar3ObjFv = .text:0x80280044; // type:function size:0xA4 scope:global align:4 +addPitchRatio__Q34Game3Mar3ObjFv = .text:0x802800E8; // type:function size:0x38 scope:global align:4 +getSearchedPikmin__Q34Game3Mar3ObjFv = .text:0x80280120; // type:function size:0x3AC scope:global align:4 +isTargetLost__Q34Game3Mar3ObjFv = .text:0x802804CC; // type:function size:0x2F0 scope:global align:4 +isAttackable__Q34Game3Mar3ObjFv = .text:0x802807BC; // type:function size:0x38C scope:global align:4 +updateEmit__Q34Game3Mar3ObjFv = .text:0x80280B48; // type:function size:0x1AC scope:global align:4 +getAttackPosition__Q34Game3Mar3ObjFv = .text:0x80280CF4; // type:function size:0x1E8 scope:global align:4 +windTarget__Q34Game3Mar3ObjFv = .text:0x80280EDC; // type:function size:0x8F4 scope:global align:4 +createEffect__Q34Game3Mar3ObjFv = .text:0x802817D0; // type:function size:0x150 scope:global align:4 +setupEffect__Q34Game3Mar3ObjFv = .text:0x80281920; // type:function size:0x4C scope:global align:4 +startDeadEffect__Q34Game3Mar3ObjFv = .text:0x8028196C; // type:function size:0x7C scope:global align:4 +createSuckEffect__Q34Game3Mar3ObjFv = .text:0x802819E8; // type:function size:0x34 scope:global align:4 +startWindEffect__Q34Game3Mar3ObjFv = .text:0x80281A1C; // type:function size:0x90 scope:global align:4 +finishWindEffect__Q34Game3Mar3ObjFv = .text:0x80281AAC; // type:function size:0x78 scope:global align:4 +createDownEffect__Q34Game3Mar3ObjFv = .text:0x80281B24; // type:function size:0x74 scope:global align:4 +getDownSmokeScale__Q34Game3Mar3ObjFv = .text:0x80281B98; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game3Mar3ObjFv = .text:0x80281BA0; // type:function size:0x78 scope:global align:4 +effectDrawOff__Q34Game3Mar3ObjFv = .text:0x80281C18; // type:function size:0x78 scope:global align:4 +__dt__Q23efx9TFusenSuiFv = .text:0x80281C90; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game3Mar3ObjFv = .text:0x80281D2C; // type:function size:0xBC scope:weak align:4 +inWaterCallback__Q34Game3Mar3ObjFPQ24Game8WaterBox = .text:0x80281DE8; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game3Mar3ObjFv = .text:0x80281DEC; // type:function size:0x4 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game3Mar3ObjFv = .text:0x80281DF0; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game3Mar3ObjFv = .text:0x80281DF4; // type:function size:0x8 scope:weak align:4 +@804@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80281DFC; // type:function size:0x14 scope:weak align:4 +@804@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80281E10; // type:function size:0x14 scope:weak align:4 +@804@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80281E24; // type:function size:0x14 scope:weak align:4 +@804@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80281E38; // type:function size:0x14 scope:weak align:4 +@804@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80281E4C; // type:function size:0x14 scope:weak align:4 +@804@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80281E60; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TFusenSuiFv = .text:0x80281E74; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game3Mar14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80281E7C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game3Mar14ProperAnimatorFi = .text:0x80281E84; // type:function size:0x8 scope:global align:4 +__dt__Q34Game3Mar14ProperAnimatorFv = .text:0x80281E8C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game3Mar14ProperAnimatorFv = .text:0x80281EE8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Mar3MgrFiUc = .text:0x80281EF0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game3Mar3MgrFv = .text:0x80281F40; // type:function size:0x48 scope:global align:4 +__ct__Q34Game3Mar5ParmsFv = .text:0x80281F88; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game3Mar5Parms11ProperParmsFv = .text:0x80281FD0; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game3Mar3MgrFi = .text:0x8028220C; // type:function size:0x60 scope:global align:4 +getEnemy__Q34Game3Mar3MgrFi = .text:0x8028226C; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game3Mar3MgrFv = .text:0x8028227C; // type:function size:0x12C scope:global align:4 +createModel__Q34Game3Mar3MgrFv = .text:0x802823A8; // type:function size:0x13C scope:global align:4 +__dt__Q34Game3Mar3MgrFv = .text:0x802824E4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game3Mar3MgrFv = .text:0x80282594; // type:function size:0x8 scope:weak align:4 +read__Q34Game3Mar5ParmsFR6Stream = .text:0x8028259C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game3Mar3MgrFv = .text:0x802825EC; // type:function size:0x8 scope:weak align:4 +init__Q34Game3Mar3FSMFPQ24Game9EnemyBase = .text:0x802825F4; // type:function size:0x42C scope:global align:4 +init__Q34Game3Mar9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282A20; // type:function size:0xAC scope:global align:4 +exec__Q34Game3Mar9StateDeadFPQ24Game9EnemyBase = .text:0x80282ACC; // type:function size:0x88 scope:global align:4 +cleanup__Q34Game3Mar9StateDeadFPQ24Game9EnemyBase = .text:0x80282B54; // type:function size:0x4 scope:global align:4 +init__Q34Game3Mar9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282B58; // type:function size:0x54 scope:global align:4 +exec__Q34Game3Mar9StateWaitFPQ24Game9EnemyBase = .text:0x80282BAC; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game3Mar9StateWaitFPQ24Game9EnemyBase = .text:0x80282CE4; // type:function size:0x4 scope:global align:4 +init__Q34Game3Mar9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282CE8; // type:function size:0x4C scope:global align:4 +exec__Q34Game3Mar9StateMoveFPQ24Game9EnemyBase = .text:0x80282D34; // type:function size:0x1A0 scope:global align:4 +cleanup__Q34Game3Mar9StateMoveFPQ24Game9EnemyBase = .text:0x80282ED4; // type:function size:0x4 scope:global align:4 +init__Q34Game3Mar10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80282ED8; // type:function size:0x30 scope:global align:4 +exec__Q34Game3Mar10StateChaseFPQ24Game9EnemyBase = .text:0x80282F08; // type:function size:0x530 scope:global align:4 +cleanup__Q34Game3Mar10StateChaseFPQ24Game9EnemyBase = .text:0x80283438; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028345C; // type:function size:0x124 scope:global align:4 +exec__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBase = .text:0x80283580; // type:function size:0x37C scope:global align:4 +cleanup__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBase = .text:0x802838FC; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283920; // type:function size:0x88 scope:global align:4 +exec__Q34Game3Mar11StateAttackFPQ24Game9EnemyBase = .text:0x802839A8; // type:function size:0xE0 scope:global align:4 +cleanup__Q34Game3Mar11StateAttackFPQ24Game9EnemyBase = .text:0x80283A88; // type:function size:0x54 scope:global align:4 +init__Q34Game3Mar9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283ADC; // type:function size:0x68 scope:global align:4 +exec__Q34Game3Mar9StateFallFPQ24Game9EnemyBase = .text:0x80283B44; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game3Mar9StateFallFPQ24Game9EnemyBase = .text:0x80283CE8; // type:function size:0x38 scope:global align:4 +init__Q34Game3Mar9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283D20; // type:function size:0x70 scope:global align:4 +exec__Q34Game3Mar9StateLandFPQ24Game9EnemyBase = .text:0x80283D90; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game3Mar9StateLandFPQ24Game9EnemyBase = .text:0x80283E10; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283E34; // type:function size:0x68 scope:global align:4 +exec__Q34Game3Mar11StateGroundFPQ24Game9EnemyBase = .text:0x80283E9C; // type:function size:0x114 scope:global align:4 +cleanup__Q34Game3Mar11StateGroundFPQ24Game9EnemyBase = .text:0x80283FB0; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80283FD4; // type:function size:0x64 scope:global align:4 +exec__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBase = .text:0x80284038; // type:function size:0xEC scope:global align:4 +cleanup__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBase = .text:0x80284124; // type:function size:0x38 scope:global align:4 +init__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028415C; // type:function size:0x64 scope:global align:4 +exec__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802841C0; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802842A4; // type:function size:0x24 scope:global align:4 +init__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802842C8; // type:function size:0x64 scope:global align:4 +exec__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBase = .text:0x8028432C; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBase = .text:0x8028442C; // type:function size:0x24 scope:global align:4 +__ct__Q34Game7Wealthy3MgrFiUc = .text:0x80284450; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Wealthy3MgrFv = .text:0x802844A0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Kogane5ParmsFv = .text:0x802844E8; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game6Kogane5Parms11ProperParmsFv = .text:0x80284530; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game7Wealthy3MgrFi = .text:0x8028476C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Wealthy3ObjFv = .text:0x802847CC; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game7Wealthy3MgrFi = .text:0x802848BC; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game7Wealthy3MgrFv = .text:0x802848CC; // type:function size:0x80 scope:global align:4 +read__Q34Game6Kogane5ParmsFR6Stream = .text:0x8028494C; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Wealthy3MgrFv = .text:0x8028499C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Wealthy3MgrFv = .text:0x80284A64; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game7Wealthy3MgrFv = .text:0x80284A6C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Wealthy3MgrFv = .text:0x80284A74; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Wealthy3ObjFv = .text:0x80284A7C; // type:function size:0x98 scope:global align:4 +changeMaterial__Q34Game7Wealthy3ObjFv = .text:0x80284B14; // type:function size:0x1F0 scope:global align:4 +createItem__Q34Game7Wealthy3ObjFv = .text:0x80284D04; // type:function size:0x144 scope:global align:4 +createEffect__Q34Game7Wealthy3ObjFv = .text:0x80284E48; // type:function size:0xB0 scope:global align:4 +startBodyEffect__Q34Game7Wealthy3ObjFv = .text:0x80284EF8; // type:function size:0x58 scope:global align:4 +finishBodyEffect__Q34Game7Wealthy3ObjFv = .text:0x80284F50; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game7Wealthy3ObjFv = .text:0x80284F80; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game7Wealthy3ObjFv = .text:0x80284FB0; // type:function size:0x30 scope:global align:4 +createPressSENormal__Q34Game7Wealthy3ObjFv = .text:0x80284FE0; // type:function size:0x44 scope:global align:4 +__dt__Q23efx11TOoganeKiraFv = .text:0x80285024; // type:function size:0x9C scope:weak align:4 +getEnemyTypeID__Q34Game7Wealthy3ObjFv = .text:0x802850C0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TOoganeKiraFv = .text:0x802850C8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Fart3MgrFiUc = .text:0x802850D0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Fart3MgrFv = .text:0x80285120; // type:function size:0x48 scope:global align:4 +createObj__Q34Game4Fart3MgrFi = .text:0x80285168; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Fart3ObjFv = .text:0x802851C8; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game4Fart3MgrFi = .text:0x802852B8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game4Fart3MgrFv = .text:0x802852C8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game4Fart3MgrFv = .text:0x80285348; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game4Fart3MgrFv = .text:0x80285410; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game4Fart3MgrFv = .text:0x80285418; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Fart3MgrFv = .text:0x80285420; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Fart3ObjFv = .text:0x80285428; // type:function size:0x98 scope:global align:4 +doUpdateCommon__Q34Game4Fart3ObjFv = .text:0x802854C0; // type:function size:0x70 scope:global align:4 +changeMaterial__Q34Game4Fart3ObjFv = .text:0x80285530; // type:function size:0x1F0 scope:global align:4 +doDebugDraw__Q34Game4Fart3ObjFR8Graphics = .text:0x80285720; // type:function size:0x20 scope:global align:4 +interactFartGasAttack__Q34Game4Fart3ObjFv = .text:0x80285740; // type:function size:0x1F4 scope:global align:4 +createItem__Q34Game4Fart3ObjFv = .text:0x80285934; // type:function size:0x120 scope:global align:4 +createEffect__Q34Game4Fart3ObjFv = .text:0x80285A54; // type:function size:0xB8 scope:global align:4 +resetFartTimer__Q34Game4Fart3ObjFv = .text:0x80285B0C; // type:function size:0x24 scope:global align:4 +startBodyEffect__Q34Game4Fart3ObjFv = .text:0x80285B30; // type:function size:0xA8 scope:global align:4 +finishBodyEffect__Q34Game4Fart3ObjFv = .text:0x80285BD8; // type:function size:0x30 scope:global align:4 +createFartEffect__Q34Game4Fart3ObjFv = .text:0x80285C08; // type:function size:0x204 scope:global align:4 +effectDrawOn__Q34Game4Fart3ObjFv = .text:0x80285E0C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game4Fart3ObjFv = .text:0x80285E3C; // type:function size:0x30 scope:global align:4 +createPressSESpecial__Q34Game4Fart3ObjFv = .text:0x80285E6C; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game4Fart3ObjFv = .text:0x80285EB0; // type:function size:0x8 scope:weak align:4 +init__Q34Game5Armor3FSMFPQ24Game9EnemyBase = .text:0x80285EB8; // type:function size:0x4CC scope:global align:4 +init__Q34Game5Armor9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286384; // type:function size:0x5C scope:global align:4 +exec__Q34Game5Armor9StateDeadFPQ24Game9EnemyBase = .text:0x802863E0; // type:function size:0x90 scope:global align:4 +cleanup__Q34Game5Armor9StateDeadFPQ24Game9EnemyBase = .text:0x80286470; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286474; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Armor9StateStayFPQ24Game9EnemyBase = .text:0x802864E4; // type:function size:0xA0 scope:global align:4 +cleanup__Q34Game5Armor9StateStayFPQ24Game9EnemyBase = .text:0x80286584; // type:function size:0x3C scope:global align:4 +init__Q34Game5Armor11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802865C0; // type:function size:0xB8 scope:global align:4 +exec__Q34Game5Armor11StateAppearFPQ24Game9EnemyBase = .text:0x80286678; // type:function size:0xCC scope:global align:4 +cleanup__Q34Game5Armor11StateAppearFPQ24Game9EnemyBase = .text:0x80286744; // type:function size:0x24 scope:global align:4 +init__Q34Game5Armor9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286768; // type:function size:0x60 scope:global align:4 +exec__Q34Game5Armor9StateDiveFPQ24Game9EnemyBase = .text:0x802867C8; // type:function size:0x9C scope:global align:4 +cleanup__Q34Game5Armor9StateDiveFPQ24Game9EnemyBase = .text:0x80286864; // type:function size:0x24 scope:global align:4 +init__Q34Game5Armor9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286888; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor9StateMoveFPQ24Game9EnemyBase = .text:0x802868BC; // type:function size:0x4F8 scope:global align:4 +cleanup__Q34Game5Armor9StateMoveFPQ24Game9EnemyBase = .text:0x80286DB4; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286DB8; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBase = .text:0x80286DEC; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBase = .text:0x80286F14; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80286F18; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80286F4C; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBase = .text:0x80287074; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287078; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBase = .text:0x802870AC; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBase = .text:0x802871D4; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802871D8; // type:function size:0x34 scope:global align:4 +exec__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBase = .text:0x8028720C; // type:function size:0x21C scope:global align:4 +cleanup__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBase = .text:0x80287428; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028742C; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBase = .text:0x80287484; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBase = .text:0x802875C0; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802875C4; // type:function size:0x40 scope:global align:4 +exec__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBase = .text:0x80287604; // type:function size:0x1B8 scope:global align:4 +cleanup__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBase = .text:0x802877BC; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802877C0; // type:function size:0x3C scope:global align:4 +exec__Q34Game5Armor8StateEatFPQ24Game9EnemyBase = .text:0x802877FC; // type:function size:0x98 scope:global align:4 +cleanup__Q34Game5Armor8StateEatFPQ24Game9EnemyBase = .text:0x80287894; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287898; // type:function size:0x3C scope:global align:4 +exec__Q34Game5Armor10StateFlickFPQ24Game9EnemyBase = .text:0x802878D4; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game5Armor10StateFlickFPQ24Game9EnemyBase = .text:0x80287A18; // type:function size:0x4 scope:global align:4 +init__Q34Game5Armor9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287A1C; // type:function size:0x3C scope:global align:4 +exec__Q34Game5Armor9StateFailFPQ24Game9EnemyBase = .text:0x80287A58; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game5Armor9StateFailFPQ24Game9EnemyBase = .text:0x80287AD8; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game5Armor14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80287ADC; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game5Armor14ProperAnimatorFi = .text:0x80287AE4; // type:function size:0x8 scope:global align:4 +__dt__Q34Game5Armor14ProperAnimatorFv = .text:0x80287AEC; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game5Armor14ProperAnimatorFv = .text:0x80287B48; // type:function size:0x8 scope:weak align:4 +init__Q34Game5Queen3FSMFPQ24Game9EnemyBase = .text:0x80287B50; // type:function size:0x278 scope:global align:4 +init__Q34Game5Queen9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287DC8; // type:function size:0x58 scope:global align:4 +exec__Q34Game5Queen9StateDeadFPQ24Game9EnemyBase = .text:0x80287E20; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game5Queen9StateDeadFPQ24Game9EnemyBase = .text:0x80287ED8; // type:function size:0x4 scope:global align:4 +init__Q34Game5Queen10StateSleepFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80287EDC; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Queen10StateSleepFPQ24Game9EnemyBase = .text:0x80287F4C; // type:function size:0x154 scope:global align:4 +cleanup__Q34Game5Queen10StateSleepFPQ24Game9EnemyBase = .text:0x802880A0; // type:function size:0x40 scope:global align:4 +init__Q34Game5Queen9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802880E0; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Queen9StateWaitFPQ24Game9EnemyBase = .text:0x80288150; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game5Queen9StateWaitFPQ24Game9EnemyBase = .text:0x8028828C; // type:function size:0x24 scope:global align:4 +init__Q34Game5Queen11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802882B0; // type:function size:0x78 scope:global align:4 +exec__Q34Game5Queen11StateDamageFPQ24Game9EnemyBase = .text:0x80288328; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game5Queen11StateDamageFPQ24Game9EnemyBase = .text:0x8028841C; // type:function size:0x40 scope:global align:4 +init__Q34Game5Queen10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028845C; // type:function size:0x80 scope:global align:4 +exec__Q34Game5Queen10StateFlickFPQ24Game9EnemyBase = .text:0x802884DC; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game5Queen10StateFlickFPQ24Game9EnemyBase = .text:0x802885D8; // type:function size:0x38 scope:global align:4 +init__Q34Game5Queen12StateRollingFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80288610; // type:function size:0x88 scope:global align:4 +exec__Q34Game5Queen12StateRollingFPQ24Game9EnemyBase = .text:0x80288698; // type:function size:0x5BC scope:global align:4 +cleanup__Q34Game5Queen12StateRollingFPQ24Game9EnemyBase = .text:0x80288C54; // type:function size:0x4C scope:global align:4 +init__Q34Game5Queen9StateBornFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80288CA0; // type:function size:0x70 scope:global align:4 +exec__Q34Game5Queen9StateBornFPQ24Game9EnemyBase = .text:0x80288D10; // type:function size:0xA8 scope:global align:4 +cleanup__Q34Game5Queen9StateBornFPQ24Game9EnemyBase = .text:0x80288DB8; // type:function size:0x40 scope:global align:4 +__sinit_QueenState_cpp = .text:0x80288DF8; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game5Queen14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80288E20; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game5Queen14ProperAnimatorFi = .text:0x80288E28; // type:function size:0x8 scope:global align:4 +__dt__Q34Game5Queen14ProperAnimatorFv = .text:0x80288E30; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game5Queen14ProperAnimatorFv = .text:0x80288E8C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Queen3MgrFiUc = .text:0x80288E94; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Queen3MgrFv = .text:0x80288EE4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game5Queen5ParmsFv = .text:0x80288F2C; // type:function size:0x188 scope:weak align:4 +createObj__Q34Game5Queen3MgrFi = .text:0x802890B4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Queen3ObjFv = .text:0x80289114; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game5Queen3MgrFi = .text:0x802891D0; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game5Queen3MgrFv = .text:0x802891E0; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game5Queen3MgrFv = .text:0x80289248; // type:function size:0xB4 scope:global align:4 +createModel__Q34Game5Queen3MgrFv = .text:0x802892FC; // type:function size:0x7C scope:global align:4 +__dt__Q34Game5Queen3MgrFv = .text:0x80289378; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Queen3MgrFv = .text:0x80289428; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game5Queen3MgrFPv = .text:0x80289430; // type:function size:0x2C scope:weak align:4 +read__Q34Game5Queen5ParmsFR6Stream = .text:0x8028945C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game5Queen3MgrFv = .text:0x802894AC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Queen3ObjFv = .text:0x802894B4; // type:function size:0x17C scope:global align:4 +setInitialSetting__Q34Game5Queen3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80289630; // type:function size:0x4 scope:global align:4 +onInit__Q34Game5Queen3ObjFPQ24Game15CreatureInitArg = .text:0x80289634; // type:function size:0x100 scope:global align:4 +onKill__Q34Game5Queen3ObjFPQ24Game15CreatureKillArg = .text:0x80289734; // type:function size:0x58 scope:global align:4 +setParameters__Q34Game5Queen3ObjFv = .text:0x8028978C; // type:function size:0xB8 scope:global align:4 +doUpdate__Q34Game5Queen3ObjFv = .text:0x80289844; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game5Queen3ObjFv = .text:0x80289894; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game5Queen3ObjFv = .text:0x802898C8; // type:function size:0x54 scope:global align:4 +doDirectDraw__Q34Game5Queen3ObjFR8Graphics = .text:0x8028991C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game5Queen3ObjFR8Graphics = .text:0x80289920; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game5Queen3ObjFPQ34Game5Queen3FSM = .text:0x80289940; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game5Queen3ObjFRQ24Game11ShadowParam = .text:0x8028998C; // type:function size:0x8C scope:global align:4 +damageCallBack__Q34Game5Queen3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80289A18; // type:function size:0xB0 scope:global align:4 +earthquakeCallBack__Q34Game5Queen3ObjFPQ24Game8Creaturef = .text:0x80289AC8; // type:function size:0x8 scope:global align:4 +doStartStoneState__Q34Game5Queen3ObjFv = .text:0x80289AD0; // type:function size:0x4C scope:global align:4 +doFinishStoneState__Q34Game5Queen3ObjFv = .text:0x80289B1C; // type:function size:0x88 scope:global align:4 +ignoreAtari__Q34Game5Queen3ObjFPQ24Game8Creature = .text:0x80289BA4; // type:function size:0x84 scope:global align:4 +startCarcassMotion__Q34Game5Queen3ObjFv = .text:0x80289C28; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game5Queen3ObjFv = .text:0x80289C50; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game5Queen3ObjFv = .text:0x80289C70; // type:function size:0x20 scope:global align:4 +rollingAttack__Q34Game5Queen3ObjFv = .text:0x80289C90; // type:function size:0x2EC scope:global align:4 +flickPikmin__Q34Game5Queen3ObjFf = .text:0x80289F7C; // type:function size:0x3A8 scope:global align:4 +isRollingAttackLeft__Q34Game5Queen3ObjFv = .text:0x8028A324; // type:function size:0x1A8 scope:global align:4 +createCrashFallRock__Q34Game5Queen3ObjFv = .text:0x8028A4CC; // type:function size:0x2D4 scope:global align:4 +createBabyChappy__Q34Game5Queen3ObjFv = .text:0x8028A7A0; // type:function size:0x19C scope:global align:4 +isDone__Q24Game31EnemyIteratorFv = .text:0x8028A93C; // type:function size:0x4C scope:weak align:4 +updateCreateBaby__Q34Game5Queen3ObjFv = .text:0x8028A988; // type:function size:0x274 scope:global align:4 +isCreateBaby__Q34Game5Queen3ObjFv = .text:0x8028ABFC; // type:function size:0x3C scope:global align:4 +isHitCounterUp__Q34Game5Queen3ObjFv = .text:0x8028AC38; // type:function size:0x18 scope:global align:4 +resetJointShadow__Q34Game5Queen3ObjFv = .text:0x8028AC50; // type:function size:0x28 scope:global align:4 +releaseJointShadow__Q34Game5Queen3ObjFv = .text:0x8028AC78; // type:function size:0x40 scope:global align:4 +startBossChargeBGM__Q34Game5Queen3ObjFv = .text:0x8028ACB8; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028AD80; // type:function size:0xDC scope:global align:4 +finishBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028AE5C; // type:function size:0xD8 scope:global align:4 +startStoneStateBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028AF34; // type:function size:0xD4 scope:global align:4 +finishStoneStateBossAttackLoopBGM__Q34Game5Queen3ObjFv = .text:0x8028B008; // type:function size:0xD4 scope:global align:4 +updateBossBGM__Q34Game5Queen3ObjFv = .text:0x8028B0DC; // type:function size:0xFC scope:global align:4 +resetMidBossAppearBGM__Q34Game5Queen3ObjFv = .text:0x8028B1D8; // type:function size:0xA8 scope:global align:4 +setMidBossAppearBGM__Q34Game5Queen3ObjFv = .text:0x8028B280; // type:function size:0x80 scope:global align:4 +createEffect__Q34Game5Queen3ObjFv = .text:0x8028B300; // type:function size:0x534 scope:global align:4 +setupEffect__Q34Game5Queen3ObjFv = .text:0x8028B834; // type:function size:0x78 scope:global align:4 +createBornEffect__Q34Game5Queen3ObjFv = .text:0x8028B8AC; // type:function size:0x34 scope:global align:4 +startRollingEffect__Q34Game5Queen3ObjFv = .text:0x8028B8E0; // type:function size:0x80 scope:global align:4 +finishRollingEffect__Q34Game5Queen3ObjFb = .text:0x8028B960; // type:function size:0xE0 scope:global align:4 +forceFinishRollingEffect__Q34Game5Queen3ObjFv = .text:0x8028BA40; // type:function size:0x64 scope:global align:4 +startDamageEffect__Q34Game5Queen3ObjFv = .text:0x8028BAA4; // type:function size:0x34 scope:global align:4 +finishDamageEffect__Q34Game5Queen3ObjFv = .text:0x8028BAD8; // type:function size:0x30 scope:global align:4 +createFlickEffect__Q34Game5Queen3ObjFv = .text:0x8028BB08; // type:function size:0x34 scope:global align:4 +createDeadEffect__Q34Game5Queen3ObjFv = .text:0x8028BB3C; // type:function size:0x34 scope:global align:4 +createWakeUpEffect__Q34Game5Queen3ObjFv = .text:0x8028BB70; // type:function size:0x34 scope:global align:4 +startSleepEffect__Q34Game5Queen3ObjFv = .text:0x8028BBA4; // type:function size:0x34 scope:global align:4 +finishSleepEffect__Q34Game5Queen3ObjFv = .text:0x8028BBD8; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game5Queen3ObjFv = .text:0x8028BC08; // type:function size:0x118 scope:global align:4 +effectDrawOff__Q34Game5Queen3ObjFv = .text:0x8028BD20; // type:function size:0x118 scope:global align:4 +__dt__Q23efx13TQueenHanachoFv = .text:0x8028BE38; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenWakeupFv = .text:0x8028BED4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenDamageFv = .text:0x8028BF70; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TQueenCrashRockFv = .text:0x8028C00C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenCrashLFv = .text:0x8028C0A8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TQueenCrashRFv = .text:0x8028C144; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TQueenLayFv = .text:0x8028C1E0; // type:function size:0x9C scope:weak align:4 +__ml__Q24Game31EnemyIteratorFv = .text:0x8028C27C; // type:function size:0x38 scope:weak align:4 +next__Q24Game31EnemyIteratorFv = .text:0x8028C2B4; // type:function size:0xE4 scope:weak align:4 +first__Q24Game31EnemyIteratorFv = .text:0x8028C398; // type:function size:0xDC scope:weak align:4 +inWaterCallback__Q34Game5Queen3ObjFPQ24Game8WaterBox = .text:0x8028C474; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game5Queen3ObjFv = .text:0x8028C478; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game5Queen3ObjFv = .text:0x8028C47C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game5Queen3ObjFv = .text:0x8028C484; // type:function size:0x8 scope:weak align:4 +__sinit_Queen_cpp = .text:0x8028C48C; // type:function size:0x28 scope:local align:4 +@784@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8028C4B4; // type:function size:0x14 scope:weak align:4 +@784@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8028C4C8; // type:function size:0x14 scope:weak align:4 +@784@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8028C4DC; // type:function size:0x14 scope:weak align:4 +@784@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8028C4F0; // type:function size:0x14 scope:weak align:4 +@784@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8028C504; // type:function size:0x14 scope:weak align:4 +@784@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8028C518; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TQueenLayFv = .text:0x8028C52C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenCrashRFv = .text:0x8028C534; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenCrashLFv = .text:0x8028C53C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TQueenCrashRockFv = .text:0x8028C544; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenDamageFv = .text:0x8028C54C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TQueenWakeupFv = .text:0x8028C554; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TQueenHanachoFv = .text:0x8028C55C; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Baby3FSMFPQ24Game9EnemyBase = .text:0x8028C564; // type:function size:0x1D0 scope:global align:4 +init__Q34Game4Baby9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028C734; // type:function size:0x58 scope:global align:4 +exec__Q34Game4Baby9StateDeadFPQ24Game9EnemyBase = .text:0x8028C78C; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Baby9StateDeadFPQ24Game9EnemyBase = .text:0x8028C7D0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028C7D4; // type:function size:0xDC scope:global align:4 +exec__Q34Game4Baby10StatePressFPQ24Game9EnemyBase = .text:0x8028C8B0; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game4Baby10StatePressFPQ24Game9EnemyBase = .text:0x8028C8F4; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby9StateBornFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028C8F8; // type:function size:0x40 scope:global align:4 +exec__Q34Game4Baby9StateBornFPQ24Game9EnemyBase = .text:0x8028C938; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game4Baby9StateBornFPQ24Game9EnemyBase = .text:0x8028CA10; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028CA14; // type:function size:0x34 scope:global align:4 +exec__Q34Game4Baby9StateMoveFPQ24Game9EnemyBase = .text:0x8028CA48; // type:function size:0x468 scope:global align:4 +cleanup__Q34Game4Baby9StateMoveFPQ24Game9EnemyBase = .text:0x8028CEB0; // type:function size:0x4 scope:global align:4 +init__Q34Game4Baby11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8028CEB4; // type:function size:0x50 scope:global align:4 +exec__Q34Game4Baby11StateAttackFPQ24Game9EnemyBase = .text:0x8028CF04; // type:function size:0x104 scope:global align:4 +cleanup__Q34Game4Baby11StateAttackFPQ24Game9EnemyBase = .text:0x8028D008; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game4Baby14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8028D02C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Baby14ProperAnimatorFi = .text:0x8028D034; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Baby14ProperAnimatorFv = .text:0x8028D03C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Baby14ProperAnimatorFv = .text:0x8028D098; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Baby3MgrFiUc = .text:0x8028D0A0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Baby3MgrFv = .text:0x8028D0F0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Baby5ParmsFv = .text:0x8028D138; // type:function size:0xDC scope:weak align:4 +createObj__Q34Game4Baby3MgrFi = .text:0x8028D214; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Baby3ObjFv = .text:0x8028D274; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Baby3MgrFi = .text:0x8028D330; // type:function size:0x10 scope:global align:4 +read__Q34Game4Baby5ParmsFR6Stream = .text:0x8028D340; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game4Baby3MgrFv = .text:0x8028D390; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Baby3MgrFv = .text:0x8028D440; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game4Baby3MgrFv = .text:0x8028D448; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Baby3ObjFv = .text:0x8028D450; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game4Baby3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8028D590; // type:function size:0x4 scope:global align:4 +onInit__Q34Game4Baby3ObjFPQ24Game15CreatureInitArg = .text:0x8028D594; // type:function size:0xB8 scope:global align:4 +doUpdate__Q34Game4Baby3ObjFv = .text:0x8028D64C; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game4Baby3ObjFR8Graphics = .text:0x8028D694; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Baby3ObjFR8Graphics = .text:0x8028D698; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game4Baby3ObjFPQ34Game4Baby3FSM = .text:0x8028D6B8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game4Baby3ObjFRQ24Game11ShadowParam = .text:0x8028D704; // type:function size:0x68 scope:global align:4 +pressCallBack__Q34Game4Baby3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8028D76C; // type:function size:0x74 scope:global align:4 +hipdropCallBack__Q34Game4Baby3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8028D7E0; // type:function size:0x74 scope:global align:4 +doStartStoneState__Q34Game4Baby3ObjFv = .text:0x8028D854; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game4Baby3ObjFv = .text:0x8028D874; // type:function size:0x5C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game4Baby3ObjFv = .text:0x8028D8D0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game4Baby3ObjFv = .text:0x8028D904; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game4Baby3ObjFv = .text:0x8028D938; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game4Baby3ObjFv = .text:0x8028D958; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game4Baby3ObjFv = .text:0x8028D978; // type:function size:0x8C scope:global align:4 +getSlotPikiNum__Q34Game4Baby3ObjFv = .text:0x8028DA04; // type:function size:0x8C scope:global align:4 +getMouthSlots__Q34Game4Baby3ObjFv = .text:0x8028DA90; // type:function size:0x8 scope:weak align:4 +resetRandTargetPosition__Q34Game4Baby3ObjFv = .text:0x8028DA98; // type:function size:0x1C scope:global align:4 +resetZukanAnimationFrame__Q34Game4Baby3ObjFv = .text:0x8028DAB4; // type:function size:0x74 scope:global align:4 +moveNoTarget__Q34Game4Baby3ObjFv = .text:0x8028DB28; // type:function size:0x20C scope:global align:4 +createHoney__Q34Game4Baby3ObjFv = .text:0x8028DD34; // type:function size:0xF4 scope:global align:4 +createEffect__Q34Game4Baby3ObjFv = .text:0x8028DE28; // type:function size:0xB4 scope:global align:4 +setupEffect__Q34Game4Baby3ObjFv = .text:0x8028DEDC; // type:function size:0x4 scope:global align:4 +createBornEffect__Q34Game4Baby3ObjFv = .text:0x8028DEE0; // type:function size:0x34 scope:global align:4 +effectDrawOn__Q34Game4Baby3ObjFv = .text:0x8028DF14; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game4Baby3ObjFv = .text:0x8028DF44; // type:function size:0x30 scope:global align:4 +__dt__Q23efx9TBabyBornFv = .text:0x8028DF74; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game4Baby3ObjFPQ24Game8WaterBox = .text:0x8028E010; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game4Baby3ObjFv = .text:0x8028E014; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game4Baby3ObjFv = .text:0x8028E018; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TBabyBornFv = .text:0x8028E020; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Demon3MgrFiUc = .text:0x8028E028; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Demon3MgrFv = .text:0x8028E078; // type:function size:0x48 scope:global align:4 +createObj__Q34Game5Demon3MgrFi = .text:0x8028E0C0; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Demon3ObjFv = .text:0x8028E120; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game5Demon3MgrFi = .text:0x8028E210; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game5Demon3MgrFv = .text:0x8028E220; // type:function size:0x68 scope:global align:4 +__dt__Q34Game5Demon3MgrFv = .text:0x8028E288; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game5Demon3MgrFv = .text:0x8028E338; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game5Demon3MgrFPv = .text:0x8028E340; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game5Demon3MgrFv = .text:0x8028E36C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Demon3ObjFv = .text:0x8028E374; // type:function size:0x90 scope:global align:4 +getAttackableTarget__Q34Game5Demon3ObjFv = .text:0x8028E404; // type:function size:0x3F0 scope:global align:4 +catchTarget__Q34Game5Demon3ObjFv = .text:0x8028E7F4; // type:function size:0x33C scope:global align:4 +getEnemyTypeID__Q34Game5Demon3ObjFv = .text:0x8028EB30; // type:function size:0x8 scope:weak align:4 +getStickPikminNum__Q34Game5Demon3ObjFv = .text:0x8028EB38; // type:function size:0x8 scope:weak align:4 +resetAttackableTimer__Q34Game5Demon3ObjFf = .text:0x8028EB40; // type:function size:0x8 scope:weak align:4 +makeShadowSRT__Q34Game5Queen15QueenShadowNodeFv = .text:0x8028EB48; // type:function size:0x1AC scope:global align:4 +__ct__Q34Game5Queen14QueenShadowMgrFPQ34Game5Queen3Obj = .text:0x8028ECF4; // type:function size:0xB4 scope:global align:4 +init__Q34Game5Queen14QueenShadowMgrFv = .text:0x8028EDA8; // type:function size:0x2A4 scope:global align:4 +update__Q34Game5Queen14QueenShadowMgrFv = .text:0x8028F04C; // type:function size:0x5C scope:global align:4 +__dt__Q34Game5Queen15QueenShadowNodeFv = .text:0x8028F0A8; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game10FireChappy3MgrFiUc = .text:0x8028F118; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10FireChappy3MgrFv = .text:0x8028F168; // type:function size:0x48 scope:global align:4 +createObj__Q34Game10FireChappy3MgrFi = .text:0x8028F1B0; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10FireChappy3ObjFv = .text:0x8028F210; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game10FireChappy3MgrFi = .text:0x8028F300; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game10FireChappy3MgrFv = .text:0x8028F310; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game10FireChappy3MgrFv = .text:0x8028F378; // type:function size:0x12C scope:global align:4 +createModel__Q34Game10FireChappy3MgrFv = .text:0x8028F4A4; // type:function size:0x7C scope:global align:4 +__dt__Q34Game10FireChappy3MgrFv = .text:0x8028F520; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10FireChappy3MgrFv = .text:0x8028F5D0; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10FireChappy3MgrFPv = .text:0x8028F5D8; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game10FireChappy3MgrFv = .text:0x8028F604; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10FireChappy3ObjFv = .text:0x8028F60C; // type:function size:0xAC scope:global align:4 +onInit__Q34Game10FireChappy3ObjFPQ24Game15CreatureInitArg = .text:0x8028F6B8; // type:function size:0x58 scope:global align:4 +onKill__Q34Game10FireChappy3ObjFPQ24Game15CreatureKillArg = .text:0x8028F710; // type:function size:0x48 scope:global align:4 +doDirectDraw__Q34Game10FireChappy3ObjFR8Graphics = .text:0x8028F758; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10FireChappy3ObjFR8Graphics = .text:0x8028F75C; // type:function size:0x20 scope:global align:4 +changeMaterial__Q34Game10FireChappy3ObjFv = .text:0x8028F77C; // type:function size:0xC0 scope:global align:4 +doUpdateCommon__Q34Game10FireChappy3ObjFv = .text:0x8028F83C; // type:function size:0x34 scope:global align:4 +getShadowParam__Q34Game10FireChappy3ObjFRQ24Game11ShadowParam = .text:0x8028F870; // type:function size:0xA0 scope:global align:4 +collisionCallback__Q34Game10FireChappy3ObjFRQ24Game9CollEvent = .text:0x8028F910; // type:function size:0xE0 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game10FireChappy3ObjFv = .text:0x8028F9F0; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game10FireChappy3ObjFv = .text:0x8028FA24; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game10FireChappy3ObjFv = .text:0x8028FA58; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10FireChappy3ObjFv = .text:0x8028FA78; // type:function size:0x20 scope:global align:4 +startFireState__Q34Game10FireChappy3ObjFv = .text:0x8028FA98; // type:function size:0x48 scope:global align:4 +finishFireState__Q34Game10FireChappy3ObjFb = .text:0x8028FAE0; // type:function size:0x94 scope:global align:4 +updateFireState__Q34Game10FireChappy3ObjFv = .text:0x8028FB74; // type:function size:0x10C scope:global align:4 +createMaterialAnimation__Q34Game10FireChappy3ObjFv = .text:0x8028FC80; // type:function size:0x4C scope:global align:4 +startMaterialAnimation__Q34Game10FireChappy3ObjFv = .text:0x8028FCCC; // type:function size:0x60 scope:global align:4 +updateMaterialAnimation__Q34Game10FireChappy3ObjFv = .text:0x8028FD2C; // type:function size:0x108 scope:global align:4 +updateEfxLod__Q34Game10FireChappy3ObjFv = .text:0x8028FE34; // type:function size:0x2C scope:global align:4 +createEffect__Q34Game10FireChappy3ObjFv = .text:0x8028FE60; // type:function size:0x288 scope:global align:4 +setupEffect__Q34Game10FireChappy3ObjFv = .text:0x802900E8; // type:function size:0x84 scope:global align:4 +startSleepEffect__Q34Game10FireChappy3ObjFv = .text:0x8029016C; // type:function size:0x34 scope:global align:4 +finishSleepEffect__Q34Game10FireChappy3ObjFv = .text:0x802901A0; // type:function size:0x30 scope:global align:4 +startBodyEffect__Q34Game10FireChappy3ObjFv = .text:0x802901D0; // type:function size:0x34 scope:global align:4 +finishBodyEffect__Q34Game10FireChappy3ObjFv = .text:0x80290204; // type:function size:0x30 scope:global align:4 +createFlickEffect__Q34Game10FireChappy3ObjFv = .text:0x80290234; // type:function size:0x40 scope:global align:4 +createDeadSmokeEffect__Q34Game10FireChappy3ObjFv = .text:0x80290274; // type:function size:0x34 scope:global align:4 +createDeadSteamEffect__Q34Game10FireChappy3ObjFv = .text:0x802902A8; // type:function size:0x34 scope:global align:4 +effectDrawOn__Q34Game10FireChappy3ObjFv = .text:0x802902DC; // type:function size:0x8C scope:global align:4 +effectDrawOff__Q34Game10FireChappy3ObjFv = .text:0x80290368; // type:function size:0x8C scope:global align:4 +__dt__Q23efx10TYakiSteamFv = .text:0x802903F4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TYakiDeadsmokeFv = .text:0x80290490; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TYakiFlickFv = .text:0x8029052C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9THanachoYFv = .text:0x802905C8; // type:function size:0x9C scope:weak align:4 +getEnemyTypeID__Q34Game10FireChappy3ObjFv = .text:0x80290664; // type:function size:0x8 scope:weak align:4 +@768@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8029066C; // type:function size:0x14 scope:weak align:4 +@768@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80290680; // type:function size:0x14 scope:weak align:4 +@768@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80290694; // type:function size:0x14 scope:weak align:4 +@768@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802906A8; // type:function size:0x14 scope:weak align:4 +@768@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802906BC; // type:function size:0x14 scope:weak align:4 +@768@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802906D0; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9THanachoYFv = .text:0x802906E4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TYakiFlickFv = .text:0x802906EC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TYakiDeadsmokeFv = .text:0x802906F4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TYakiSteamFv = .text:0x802906FC; // type:function size:0x8 scope:weak align:4 +init__Q34Game9SnakeCrow3FSMFPQ24Game9EnemyBase = .text:0x80290704; // type:function size:0x328 scope:global align:4 +init__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80290A2C; // type:function size:0xC4 scope:global align:4 +exec__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBase = .text:0x80290AF0; // type:function size:0x170 scope:global align:4 +cleanup__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBase = .text:0x80290C60; // type:function size:0x4 scope:global align:4 +init__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80290C64; // type:function size:0x124 scope:global align:4 +exec__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBase = .text:0x80290D88; // type:function size:0x618 scope:global align:4 +cleanup__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBase = .text:0x802913A0; // type:function size:0x90 scope:global align:4 +init__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80291430; // type:function size:0xCC scope:global align:4 +exec__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBase = .text:0x802914FC; // type:function size:0x158 scope:global align:4 +cleanup__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBase = .text:0x80291654; // type:function size:0x68 scope:global align:4 +init__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802916BC; // type:function size:0xCC scope:global align:4 +exec__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBase = .text:0x80291788; // type:function size:0x234 scope:global align:4 +cleanup__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBase = .text:0x802919BC; // type:function size:0x68 scope:global align:4 +init__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80291A24; // type:function size:0x140 scope:global align:4 +exec__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBase = .text:0x80291B64; // type:function size:0x108 scope:global align:4 +cleanup__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBase = .text:0x80291C6C; // type:function size:0x64 scope:global align:4 +init__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80291CD0; // type:function size:0x48 scope:global align:4 +exec__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBase = .text:0x80291D18; // type:function size:0x6C0 scope:global align:4 +cleanup__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBase = .text:0x802923D8; // type:function size:0x24 scope:global align:4 +init__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802923FC; // type:function size:0x4C scope:global align:4 +exec__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBase = .text:0x80292448; // type:function size:0x334 scope:global align:4 +cleanup__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBase = .text:0x8029277C; // type:function size:0x10 scope:global align:4 +init__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029278C; // type:function size:0x3C scope:global align:4 +exec__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBase = .text:0x802927C8; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBase = .text:0x80292940; // type:function size:0x4 scope:global align:4 +init__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80292944; // type:function size:0x40 scope:global align:4 +exec__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBase = .text:0x80292984; // type:function size:0x158 scope:global align:4 +cleanup__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBase = .text:0x80292ADC; // type:function size:0x4 scope:global align:4 +__sinit_SnakeCrowState_cpp = .text:0x80292AE0; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game9SnakeCrow14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80292B08; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game9SnakeCrow14ProperAnimatorFi = .text:0x80292B10; // type:function size:0x8 scope:global align:4 +__dt__Q34Game9SnakeCrow14ProperAnimatorFv = .text:0x80292B18; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game9SnakeCrow14ProperAnimatorFv = .text:0x80292B74; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9SnakeCrow3MgrFiUc = .text:0x80292B7C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9SnakeCrow3MgrFv = .text:0x80292BCC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game9SnakeCrow5ParmsFv = .text:0x80292C14; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game9SnakeCrow3MgrFi = .text:0x80292DA4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9SnakeCrow3ObjFv = .text:0x80292E04; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9SnakeCrow3MgrFi = .text:0x80292EC0; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game9SnakeCrow3MgrFv = .text:0x80292ED0; // type:function size:0x68 scope:global align:4 +__dt__Q34Game9SnakeCrow3MgrFv = .text:0x80292F38; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9SnakeCrow3MgrFv = .text:0x80292FE8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9SnakeCrow3MgrFPv = .text:0x80292FF0; // type:function size:0x2C scope:weak align:4 +read__Q34Game9SnakeCrow5ParmsFR6Stream = .text:0x8029301C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game9SnakeCrow3MgrFv = .text:0x8029306C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9SnakeCrow3ObjFv = .text:0x80293074; // type:function size:0x16C scope:global align:4 +constructor__Q34Game9SnakeCrow3ObjFv = .text:0x802931E0; // type:function size:0x44 scope:global align:4 +setInitialSetting__Q34Game9SnakeCrow3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80293224; // type:function size:0x4 scope:global align:4 +onInit__Q34Game9SnakeCrow3ObjFPQ24Game15CreatureInitArg = .text:0x80293228; // type:function size:0xE0 scope:global align:4 +onKill__Q34Game9SnakeCrow3ObjFPQ24Game15CreatureKillArg = .text:0x80293308; // type:function size:0x4C scope:global align:4 +setParameters__Q34Game9SnakeCrow3ObjFv = .text:0x80293354; // type:function size:0x88 scope:global align:4 +doUpdate__Q34Game9SnakeCrow3ObjFv = .text:0x802933DC; // type:function size:0x48 scope:global align:4 +doUpdateCommon__Q34Game9SnakeCrow3ObjFv = .text:0x80293424; // type:function size:0x34 scope:global align:4 +doAnimationUpdateAnimator__Q34Game9SnakeCrow3ObjFv = .text:0x80293458; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game9SnakeCrow3ObjFv = .text:0x8029348C; // type:function size:0x3C scope:global align:4 +doDirectDraw__Q34Game9SnakeCrow3ObjFR8Graphics = .text:0x802934C8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game9SnakeCrow3ObjFR8Graphics = .text:0x802934CC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game9SnakeCrow3ObjFPQ34Game9SnakeCrow3FSM = .text:0x802934EC; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game9SnakeCrow3ObjFRQ24Game11ShadowParam = .text:0x80293538; // type:function size:0x98 scope:global align:4 +damageCallBack__Q34Game9SnakeCrow3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802935D0; // type:function size:0x98 scope:global align:4 +doStartStoneState__Q34Game9SnakeCrow3ObjFv = .text:0x80293668; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game9SnakeCrow3ObjFv = .text:0x802936A4; // type:function size:0x60 scope:global align:4 +startCarcassMotion__Q34Game9SnakeCrow3ObjFv = .text:0x80293704; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game9SnakeCrow3ObjFv = .text:0x8029372C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game9SnakeCrow3ObjFv = .text:0x8029374C; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game9SnakeCrow3ObjFv = .text:0x8029376C; // type:function size:0xBC scope:global align:4 +getThrowupItemPosition__Q34Game9SnakeCrow3ObjFP10Vector3 = .text:0x80293828; // type:function size:0x58 scope:global align:4 +getCommonEffectPos__Q34Game9SnakeCrow3ObjFR10Vector3 = .text:0x80293880; // type:function size:0x58 scope:global align:4 +appearNearByTarget__Q34Game9SnakeCrow3ObjFPQ24Game8Creature = .text:0x802938D8; // type:function size:0x338 scope:global align:4 +setAttackPosition__Q34Game9SnakeCrow3ObjFv = .text:0x80293C10; // type:function size:0x20C scope:global align:4 +getAttackPiki__Q34Game9SnakeCrow3ObjFi = .text:0x80293E1C; // type:function size:0x5F4 scope:global align:4 +getAttackNavi__Q34Game9SnakeCrow3ObjFi = .text:0x80294410; // type:function size:0x5C8 scope:global align:4 +getSwallowSlot__Q34Game9SnakeCrow3ObjFv = .text:0x802949D8; // type:function size:0x68 scope:global align:4 +isSwallowPikmin__Q34Game9SnakeCrow3ObjFv = .text:0x80294A40; // type:function size:0x6C scope:global align:4 +getStickHeadPikmin__Q34Game9SnakeCrow3ObjFv = .text:0x80294AAC; // type:function size:0x24C scope:global align:4 +createJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294CF8; // type:function size:0x48 scope:global align:4 +setupJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294D40; // type:function size:0x24 scope:global align:4 +doAnimationJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294D64; // type:function size:0x24 scope:global align:4 +finishAnimationJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294D88; // type:function size:0x24 scope:global align:4 +startJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294DAC; // type:function size:0xB8 scope:global align:4 +returnJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294E64; // type:function size:0x88 scope:global align:4 +finishJointCallBack__Q34Game9SnakeCrow3ObjFv = .text:0x80294EEC; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game9SnakeCrow3ObjFv = .text:0x80294F10; // type:function size:0x38 scope:global align:4 +lifeIncrement__Q34Game9SnakeCrow3ObjFv = .text:0x80294F48; // type:function size:0x40 scope:global align:4 +createShadowSystem__Q34Game9SnakeCrow3ObjFv = .text:0x80294F88; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game9SnakeCrow3ObjFv = .text:0x80294FD0; // type:function size:0x24 scope:global align:4 +doAnimationShadowSystem__Q34Game9SnakeCrow3ObjFv = .text:0x80294FF4; // type:function size:0x24 scope:global align:4 +startJointShadow__Q34Game9SnakeCrow3ObjFv = .text:0x80295018; // type:function size:0x24 scope:global align:4 +finishJointShadow__Q34Game9SnakeCrow3ObjFv = .text:0x8029503C; // type:function size:0x24 scope:global align:4 +deleteJointShadow__Q34Game9SnakeCrow3ObjFv = .text:0x80295060; // type:function size:0x40 scope:global align:4 +startBossAttackBGM__Q34Game9SnakeCrow3ObjFv = .text:0x802950A0; // type:function size:0xE0 scope:global align:4 +startBossFlickBGM__Q34Game9SnakeCrow3ObjFv = .text:0x80295180; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game9SnakeCrow3ObjFv = .text:0x80295248; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game9SnakeCrow3ObjFv = .text:0x80295344; // type:function size:0xD0 scope:global align:4 +setBossAppearBGM__Q34Game9SnakeCrow3ObjFv = .text:0x80295414; // type:function size:0xCC scope:global align:4 +createEffect__Q34Game9SnakeCrow3ObjFv = .text:0x802954E0; // type:function size:0x160 scope:global align:4 +setupEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295640; // type:function size:0x4C scope:global align:4 +createAppearEffect__Q34Game9SnakeCrow3ObjFi = .text:0x8029568C; // type:function size:0x1D4 scope:global align:4 +startRotateEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295860; // type:function size:0x58 scope:global align:4 +finishRotateEffect__Q34Game9SnakeCrow3ObjFv = .text:0x802958B8; // type:function size:0x30 scope:global align:4 +startWaitEffect__Q34Game9SnakeCrow3ObjFv = .text:0x802958E8; // type:function size:0x58 scope:global align:4 +finishWaitEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295940; // type:function size:0x30 scope:global align:4 +createDeadStartEffect__Q34Game9SnakeCrow3ObjFv = .text:0x80295970; // type:function size:0x34 scope:global align:4 +createDeadFinishEffect__Q34Game9SnakeCrow3ObjFv = .text:0x802959A4; // type:function size:0x94 scope:global align:4 +createDownHeadEffect__Q34Game9SnakeCrow3ObjFf = .text:0x80295A38; // type:function size:0xAC scope:global align:4 +effectDrawOn__Q34Game9SnakeCrow3ObjFv = .text:0x80295AE4; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game9SnakeCrow3ObjFv = .text:0x80295B48; // type:function size:0x64 scope:global align:4 +createEfxHamon__Q34Game9SnakeCrow3ObjFv = .text:0x80295BAC; // type:function size:0x48 scope:global align:4 +isUnderground__Q34Game9SnakeCrow3ObjFv = .text:0x80295BF4; // type:function size:0x8 scope:weak align:4 +__dt__Q23efx9THebiWaitFv = .text:0x80295BFC; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8THebiRotFv = .text:0x80295C98; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game9SnakeCrow3ObjFPQ24Game8WaterBox = .text:0x80295D34; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game9SnakeCrow3ObjFv = .text:0x80295D38; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game9SnakeCrow3ObjFv = .text:0x80295D3C; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game9SnakeCrow3ObjFv = .text:0x80295D44; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game9SnakeCrow3ObjFv = .text:0x80295D4C; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game9SnakeCrow3ObjFv = .text:0x80295D50; // type:function size:0x8 scope:weak align:4 +__sinit_SnakeCrow_cpp = .text:0x80295D58; // type:function size:0x28 scope:local align:4 +@808@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80295D80; // type:function size:0x14 scope:weak align:4 +@808@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80295D94; // type:function size:0x14 scope:weak align:4 +@808@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80295DA8; // type:function size:0x14 scope:weak align:4 +@808@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80295DBC; // type:function size:0x14 scope:weak align:4 +@808@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80295DD0; // type:function size:0x14 scope:weak align:4 +@808@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80295DE4; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx8THebiRotFv = .text:0x80295DF8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9THebiWaitFv = .text:0x80295E00; // type:function size:0x8 scope:weak align:4 +init__Q34Game10KumaChappy3FSMFPQ24Game9EnemyBase = .text:0x80295E08; // type:function size:0x328 scope:global align:4 +init__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80296130; // type:function size:0x50 scope:global align:4 +exec__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBase = .text:0x80296180; // type:function size:0x98 scope:global align:4 +getEnemyTypeID__Q34Game10KumaChappy3ObjFv = .text:0x80296218; // type:function size:0x8 scope:weak align:4 +cleanup__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBase = .text:0x80296220; // type:function size:0x4 scope:global align:4 +init__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80296224; // type:function size:0x58 scope:global align:4 +exec__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBase = .text:0x8029627C; // type:function size:0x5B0 scope:global align:4 +cleanup__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBase = .text:0x8029682C; // type:function size:0x10 scope:global align:4 +init__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029683C; // type:function size:0x4C scope:global align:4 +exec__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBase = .text:0x80296888; // type:function size:0x45C scope:global align:4 +cleanup__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBase = .text:0x80296CE4; // type:function size:0x4 scope:global align:4 +init__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80296CE8; // type:function size:0x58 scope:global align:4 +exec__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBase = .text:0x80296D40; // type:function size:0x550 scope:global align:4 +cleanup__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBase = .text:0x80297290; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802972CC; // type:function size:0x64 scope:global align:4 +exec__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBase = .text:0x80297330; // type:function size:0x4D4 scope:global align:4 +cleanup__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBase = .text:0x80297804; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80297840; // type:function size:0x60 scope:global align:4 +exec__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBase = .text:0x802978A0; // type:function size:0x670 scope:global align:4 +cleanup__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBase = .text:0x80297F10; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80297F4C; // type:function size:0x44 scope:global align:4 +exec__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBase = .text:0x80297F90; // type:function size:0x4E0 scope:global align:4 +cleanup__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBase = .text:0x80298470; // type:function size:0x28 scope:global align:4 +init__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80298498; // type:function size:0x50 scope:global align:4 +exec__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBase = .text:0x802984E8; // type:function size:0x70C scope:global align:4 +cleanup__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBase = .text:0x80298BF4; // type:function size:0x3C scope:global align:4 +init__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80298C30; // type:function size:0x34 scope:global align:4 +exec__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x80298C64; // type:function size:0x594 scope:global align:4 +cleanup__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x802991F8; // type:function size:0x28 scope:global align:4 +setAnimMgr__Q34Game10KumaChappy14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80299220; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10KumaChappy14ProperAnimatorFi = .text:0x80299228; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10KumaChappy14ProperAnimatorFv = .text:0x80299230; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10KumaChappy14ProperAnimatorFv = .text:0x8029928C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10KumaChappy3MgrFiUc = .text:0x80299294; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10KumaChappy3MgrFv = .text:0x802992E4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10KumaChappy5ParmsFv = .text:0x8029932C; // type:function size:0x118 scope:weak align:4 +createObj__Q34Game10KumaChappy3MgrFi = .text:0x80299444; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10KumaChappy3ObjFv = .text:0x802994A4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game10KumaChappy3MgrFi = .text:0x80299560; // type:function size:0x10 scope:global align:4 +read__Q34Game10KumaChappy5ParmsFR6Stream = .text:0x80299570; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game10KumaChappy3MgrFv = .text:0x802995C0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10KumaChappy3MgrFv = .text:0x80299670; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10KumaChappy3MgrFv = .text:0x80299678; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10KumaChappy3ObjFv = .text:0x80299680; // type:function size:0x154 scope:global align:4 +setInitialSetting__Q34Game10KumaChappy3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802997D4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10KumaChappy3ObjFPQ24Game15CreatureInitArg = .text:0x802997D8; // type:function size:0x7C scope:global align:4 +doUpdate__Q34Game10KumaChappy3ObjFv = .text:0x80299854; // type:function size:0x60 scope:global align:4 +doDirectDraw__Q34Game10KumaChappy3ObjFR8Graphics = .text:0x802998B4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10KumaChappy3ObjFR8Graphics = .text:0x802998B8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10KumaChappy3ObjFPQ34Game10KumaChappy3FSM = .text:0x802998D8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10KumaChappy3ObjFRQ24Game11ShadowParam = .text:0x80299924; // type:function size:0xC4 scope:global align:4 +damageCallBack__Q34Game10KumaChappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802999E8; // type:function size:0x38 scope:global align:4 +startCarcassMotion__Q34Game10KumaChappy3ObjFv = .text:0x80299A20; // type:function size:0x28 scope:global align:4 +getOffsetForMapCollision__Q34Game10KumaChappy3ObjFv = .text:0x80299A48; // type:function size:0xA8 scope:global align:4 +initMouthSlots__Q34Game10KumaChappy3ObjFv = .text:0x80299AF0; // type:function size:0xDC scope:global align:4 +initWalkSmokeEffect__Q34Game10KumaChappy3ObjFv = .text:0x80299BCC; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10KumaChappy3ObjFv = .text:0x80299C30; // type:function size:0x8 scope:global align:4 +doBecomeCarcass__Q34Game10KumaChappy3ObjFv = .text:0x80299C38; // type:function size:0x14 scope:global align:4 +doUpdateCarcass__Q34Game10KumaChappy3ObjFv = .text:0x80299C4C; // type:function size:0x1FC scope:global align:4 +doGetLifeGaugeParam__Q34Game10KumaChappy3ObjFRQ24Game14LifeGaugeParam = .text:0x80299E48; // type:function size:0x64 scope:global align:4 +getViewAngle__Q34Game10KumaChappy3ObjFv = .text:0x80299EAC; // type:function size:0x24 scope:global align:4 +resetWayPoint__Q34Game10KumaChappy3ObjFv = .text:0x80299ED0; // type:function size:0x10 scope:global align:4 +setNearestWayPoint__Q34Game10KumaChappy3ObjFv = .text:0x80299EE0; // type:function size:0xB0 scope:global align:4 +setLinkWayPoint__Q34Game10KumaChappy3ObjFv = .text:0x80299F90; // type:function size:0x260 scope:global align:4 +getSearchedTarget__Q34Game10KumaChappy3ObjFv = .text:0x8029A1F0; // type:function size:0x6C scope:global align:4 +updateTargetDistance__Q34Game10KumaChappy3ObjFv = .text:0x8029A25C; // type:function size:0x128 scope:global align:4 +updateHomePosition__Q34Game10KumaChappy3ObjFv = .text:0x8029A384; // type:function size:0xBC scope:global align:4 +createChappyRelation__Q34Game10KumaChappy3ObjFv = .text:0x8029A440; // type:function size:0x70 scope:global align:4 +startEnemyRumble__Q34Game10KumaChappy3ObjFv = .text:0x8029A4B0; // type:function size:0x7C scope:global align:4 +__dt__Q24Game14ChappyRelationFv = .text:0x8029A52C; // type:function size:0x60 scope:weak align:4 +getMouthSlots__Q34Game10KumaChappy3ObjFv = .text:0x8029A58C; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game10KumaChappy3ObjFv = .text:0x8029A594; // type:function size:0x8 scope:weak align:4 +getChappyRelation__Q34Game10KumaChappy3ObjFv = .text:0x8029A59C; // type:function size:0x8 scope:weak align:4 +@760@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8029A5A4; // type:function size:0x14 scope:weak align:4 +@760@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029A5B8; // type:function size:0x14 scope:weak align:4 +@760@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029A5CC; // type:function size:0x14 scope:weak align:4 +@760@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029A5E0; // type:function size:0x14 scope:weak align:4 +@760@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029A5F4; // type:function size:0x14 scope:weak align:4 +@760@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8029A608; // type:function size:0x14 scope:weak align:4 +init__Q34Game7Fuefuki3FSMFPQ24Game9EnemyBase = .text:0x8029A61C; // type:function size:0x324 scope:global align:4 +init__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029A940; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBase = .text:0x8029A99C; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBase = .text:0x8029A9E0; // type:function size:0x4 scope:global align:4 +init__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029A9E4; // type:function size:0xA0 scope:global align:4 +exec__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBase = .text:0x8029AA84; // type:function size:0x5C scope:global align:4 +cleanup__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBase = .text:0x8029AAE0; // type:function size:0x4 scope:global align:4 +init__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029AAE4; // type:function size:0x18C scope:global align:4 +exec__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBase = .text:0x8029AC70; // type:function size:0x124 scope:global align:4 +cleanup__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBase = .text:0x8029AD94; // type:function size:0x50 scope:global align:4 +init__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029ADE4; // type:function size:0x5C scope:global align:4 +exec__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBase = .text:0x8029AE40; // type:function size:0x30C scope:global align:4 +cleanup__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBase = .text:0x8029B14C; // type:function size:0x10 scope:global align:4 +init__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B15C; // type:function size:0x60 scope:global align:4 +exec__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBase = .text:0x8029B1BC; // type:function size:0x11C scope:global align:4 +cleanup__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBase = .text:0x8029B2D8; // type:function size:0x24 scope:global align:4 +init__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B2FC; // type:function size:0x60 scope:global align:4 +exec__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBase = .text:0x8029B35C; // type:function size:0x248 scope:global align:4 +cleanup__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBase = .text:0x8029B5A4; // type:function size:0x24 scope:global align:4 +init__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B5C8; // type:function size:0x50 scope:global align:4 +exec__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBase = .text:0x8029B618; // type:function size:0x1CC scope:global align:4 +cleanup__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBase = .text:0x8029B7E4; // type:function size:0x3C scope:global align:4 +init__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B820; // type:function size:0x68 scope:global align:4 +exec__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBase = .text:0x8029B888; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBase = .text:0x8029B994; // type:function size:0x64 scope:global align:4 +init__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029B9F8; // type:function size:0x68 scope:global align:4 +exec__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBase = .text:0x8029BA60; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBase = .text:0x8029BB6C; // type:function size:0x38 scope:global align:4 +setAnimMgr__Q34Game7Fuefuki14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8029BBA4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Fuefuki14ProperAnimatorFi = .text:0x8029BBAC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Fuefuki14ProperAnimatorFv = .text:0x8029BBB4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Fuefuki14ProperAnimatorFv = .text:0x8029BC10; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Fuefuki3MgrFiUc = .text:0x8029BC18; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Fuefuki3MgrFv = .text:0x8029BC68; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Fuefuki5ParmsFv = .text:0x8029BCB0; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game7Fuefuki5Parms11ProperParmsFv = .text:0x8029BCF8; // type:function size:0x270 scope:weak align:4 +createObj__Q34Game7Fuefuki3MgrFi = .text:0x8029BF68; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Fuefuki3ObjFv = .text:0x8029BFC8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Fuefuki3MgrFi = .text:0x8029C084; // type:function size:0x10 scope:global align:4 +read__Q34Game7Fuefuki5ParmsFR6Stream = .text:0x8029C094; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game7Fuefuki3MgrFv = .text:0x8029C0E4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Fuefuki3MgrFv = .text:0x8029C194; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Fuefuki3MgrFv = .text:0x8029C19C; // type:function size:0x8 scope:weak align:4 +actEnemy__Q24Game25InteractFuefukiTimerResetFPQ24Game9EnemyBase = .text:0x8029C1A4; // type:function size:0x58 scope:global align:4 +__ct__Q34Game7Fuefuki3ObjFv = .text:0x8029C1FC; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game7Fuefuki3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8029C33C; // type:function size:0x4 scope:global align:4 +birth__Q34Game7Fuefuki3ObjFR10Vector3f = .text:0x8029C340; // type:function size:0x30 scope:global align:4 +onInit__Q34Game7Fuefuki3ObjFPQ24Game15CreatureInitArg = .text:0x8029C370; // type:function size:0x88 scope:global align:4 +onKill__Q34Game7Fuefuki3ObjFPQ24Game15CreatureKillArg = .text:0x8029C3F8; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game7Fuefuki3ObjFv = .text:0x8029C44C; // type:function size:0x78 scope:global align:4 +doDirectDraw__Q34Game7Fuefuki3ObjFR8Graphics = .text:0x8029C4C4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Fuefuki3ObjFR8Graphics = .text:0x8029C4C8; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7Fuefuki3ObjFPQ34Game7Fuefuki3FSM = .text:0x8029C4E8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7Fuefuki3ObjFRQ24Game11ShadowParam = .text:0x8029C534; // type:function size:0xA4 scope:global align:4 +pressCallBack__Q34Game7Fuefuki3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8029C5D8; // type:function size:0x68 scope:global align:4 +hipdropCallBack__Q34Game7Fuefuki3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8029C640; // type:function size:0x68 scope:global align:4 +doStartStoneState__Q34Game7Fuefuki3ObjFv = .text:0x8029C6A8; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game7Fuefuki3ObjFv = .text:0x8029C6EC; // type:function size:0x44 scope:global align:4 +doStartEarthquakeFitState__Q34Game7Fuefuki3ObjFv = .text:0x8029C730; // type:function size:0x44 scope:global align:4 +doFinishEarthquakeFitState__Q34Game7Fuefuki3ObjFv = .text:0x8029C774; // type:function size:0x44 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game7Fuefuki3ObjFv = .text:0x8029C7B8; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game7Fuefuki3ObjFv = .text:0x8029C7EC; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game7Fuefuki3ObjFv = .text:0x8029C820; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game7Fuefuki3ObjFv = .text:0x8029C848; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7Fuefuki3ObjFv = .text:0x8029C868; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game7Fuefuki3ObjFv = .text:0x8029C888; // type:function size:0xC0 scope:global align:4 +resetAppearTimer__Q34Game7Fuefuki3ObjFv = .text:0x8029C948; // type:function size:0x78 scope:global align:4 +resetWhisleTimer__Q34Game7Fuefuki3ObjFb = .text:0x8029C9C0; // type:function size:0x2C scope:global align:4 +isWhisleTimeMax__Q34Game7Fuefuki3ObjFv = .text:0x8029C9EC; // type:function size:0x78 scope:global align:4 +startWhisle__Q34Game7Fuefuki3ObjFv = .text:0x8029CA64; // type:function size:0x38 scope:global align:4 +updateWhisle__Q34Game7Fuefuki3ObjFv = .text:0x8029CA9C; // type:function size:0x324 scope:global align:4 +finishWhisle__Q34Game7Fuefuki3ObjFv = .text:0x8029CDC0; // type:function size:0x38 scope:global align:4 +setTargetPosition__Q34Game7Fuefuki3ObjFb = .text:0x8029CDF8; // type:function size:0x2A0 scope:global align:4 +isJumpAway__Q34Game7Fuefuki3ObjFv = .text:0x8029D098; // type:function size:0x1E0 scope:global align:4 +isArriveTarget__Q34Game7Fuefuki3ObjFv = .text:0x8029D278; // type:function size:0x48 scope:global align:4 +createFootmarks__Q34Game7Fuefuki3ObjFv = .text:0x8029D2C0; // type:function size:0x50 scope:global align:4 +updateFootmarks__Q34Game7Fuefuki3ObjFv = .text:0x8029D310; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game7Fuefuki3ObjFv = .text:0x8029D3CC; // type:function size:0x19C scope:global align:4 +startWhisleEffect__Q34Game7Fuefuki3ObjFv = .text:0x8029D568; // type:function size:0x9C scope:global align:4 +updateWhisleEffect__Q34Game7Fuefuki3ObjFf = .text:0x8029D604; // type:function size:0x78 scope:global align:4 +finishWhisleEffect__Q34Game7Fuefuki3ObjFv = .text:0x8029D67C; // type:function size:0x50 scope:global align:4 +fade__Q23efx7TCursorFv = .text:0x8029D6CC; // type:function size:0x2C scope:weak align:4 +createDownEffect__Q34Game7Fuefuki3ObjFf = .text:0x8029D6F8; // type:function size:0x78 scope:global align:4 +createEfxHamon__Q34Game7Fuefuki3ObjFv = .text:0x8029D770; // type:function size:0x48 scope:global align:4 +effectDrawOn__Q34Game7Fuefuki3ObjFv = .text:0x8029D7B8; // type:function size:0x50 scope:global align:4 +endDemoDrawOn__Q23efx11TOneEmitterFv = .text:0x8029D808; // type:function size:0x1C scope:weak align:4 +effectDrawOff__Q34Game7Fuefuki3ObjFv = .text:0x8029D824; // type:function size:0x50 scope:global align:4 +startDemoDrawOff__Q23efx11TOneEmitterFv = .text:0x8029D874; // type:function size:0x1C scope:weak align:4 +getName__Q23efx9ArgCursorFv = .text:0x8029D890; // type:function size:0xC scope:weak align:4 +__dt__Q23efx11TFuebugOnpaFv = .text:0x8029D89C; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game7Fuefuki3ObjFPQ24Game8WaterBox = .text:0x8029D938; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7Fuefuki3ObjFv = .text:0x8029D93C; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7Fuefuki3ObjFv = .text:0x8029D940; // type:function size:0x8 scope:weak align:4 +getFootmarks__Q34Game7Fuefuki3ObjFv = .text:0x8029D948; // type:function size:0x8 scope:weak align:4 +@756@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8029D950; // type:function size:0x14 scope:weak align:4 +@756@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029D964; // type:function size:0x14 scope:weak align:4 +@756@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8029D978; // type:function size:0x14 scope:weak align:4 +@756@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029D98C; // type:function size:0x14 scope:weak align:4 +@756@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8029D9A0; // type:function size:0x14 scope:weak align:4 +@756@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8029D9B4; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx11TFuebugOnpaFv = .text:0x8029D9C8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11Koganemushi3MgrFiUc = .text:0x8029D9D0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11Koganemushi3MgrFv = .text:0x8029DA20; // type:function size:0x48 scope:global align:4 +createObj__Q34Game11Koganemushi3MgrFi = .text:0x8029DA68; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11Koganemushi3ObjFv = .text:0x8029DAC8; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11Koganemushi3MgrFi = .text:0x8029DBB4; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11Koganemushi3MgrFv = .text:0x8029DBC4; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11Koganemushi3MgrFv = .text:0x8029DC44; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11Koganemushi3MgrFv = .text:0x8029DD0C; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11Koganemushi3MgrFv = .text:0x8029DD14; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11Koganemushi3MgrFv = .text:0x8029DD1C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11Koganemushi3ObjFv = .text:0x8029DD24; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game11Koganemushi3ObjFv = .text:0x8029DDB4; // type:function size:0x1F0 scope:global align:4 +createItem__Q34Game11Koganemushi3ObjFv = .text:0x8029DFA4; // type:function size:0x11C scope:global align:4 +createPressSENormal__Q34Game11Koganemushi3ObjFv = .text:0x8029E0C0; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game11Koganemushi3ObjFv = .text:0x8029E104; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Ftank3MgrFiUc = .text:0x8029E10C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game5Ftank3MgrFv = .text:0x8029E15C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game5Ftank3MgrFi = .text:0x8029E1A4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game5Ftank3ObjFv = .text:0x8029E204; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game5Ftank3MgrFi = .text:0x8029E2F4; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game5Ftank3MgrFv = .text:0x8029E304; // type:function size:0x80 scope:global align:4 +__dt__Q34Game5Ftank3MgrFv = .text:0x8029E384; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game5Ftank3MgrFv = .text:0x8029E44C; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game5Ftank3MgrFv = .text:0x8029E454; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game5Ftank3MgrFv = .text:0x8029E45C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5Ftank3ObjFv = .text:0x8029E464; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game5Ftank3ObjFv = .text:0x8029E508; // type:function size:0x1A4 scope:global align:4 +createEffect__Q34Game5Ftank3ObjFv = .text:0x8029E6AC; // type:function size:0x48 scope:global align:4 +__ct__Q23efx11TTankEffectFPA4_f = .text:0x8029E6F4; // type:function size:0x1FC scope:weak align:4 +__dt__Q23efx15TTankFireYodareFv = .text:0x8029E8F0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TTankFireINDFv = .text:0x8029E98C; // type:function size:0xC0 scope:weak align:4 +__dt__Q23efx12TTankFireHitFv = .text:0x8029EA4C; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game5Ftank3ObjFv = .text:0x8029EAD0; // type:function size:0x54 scope:global align:4 +startEffect__Q34Game5Ftank3ObjFv = .text:0x8029EB24; // type:function size:0x34 scope:global align:4 +startYodare__Q34Game5Ftank3ObjFv = .text:0x8029EB58; // type:function size:0x54 scope:global align:4 +fade__Q23efx9TTankFireFv = .text:0x8029EBAC; // type:function size:0x50 scope:weak align:4 +fade__Q23efx12TTankFireABCFv = .text:0x8029EBFC; // type:function size:0x48 scope:weak align:4 +finishEffect__Q34Game5Ftank3ObjFv = .text:0x8029EC44; // type:function size:0x50 scope:global align:4 +effectDrawOn__Q34Game5Ftank3ObjFv = .text:0x8029EC94; // type:function size:0x64 scope:global align:4 +endDemoDrawOn__Q23efx12TTankFireABCFv = .text:0x8029ECF8; // type:function size:0x40 scope:weak align:4 +effectDrawOff__Q34Game5Ftank3ObjFv = .text:0x8029ED38; // type:function size:0x64 scope:global align:4 +startDemoDrawOff__Q23efx12TTankFireABCFv = .text:0x8029ED9C; // type:function size:0x40 scope:weak align:4 +interactCreature__Q34Game5Ftank3ObjFPQ24Game8Creature = .text:0x8029EDDC; // type:function size:0x60 scope:global align:4 +stopEffectRadius__Q34Game5Ftank3ObjFf = .text:0x8029EE3C; // type:function size:0x10 scope:global align:4 +createChargeSE__Q34Game5Ftank3ObjFv = .text:0x8029EE4C; // type:function size:0x44 scope:global align:4 +createDisChargeSE__Q34Game5Ftank3ObjFv = .text:0x8029EE90; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game5Ftank3ObjFv = .text:0x8029EED4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TTankFireHitFv = .text:0x8029EEDC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TTankFireYodareFv = .text:0x8029EEE4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x8029EEEC; // type:function size:0x5C scope:global align:4 +setPlantSlot__Q34Game4Cave13RandPlantUnitFv = .text:0x8029EF48; // type:function size:0xDC scope:global align:4 +getPlantSetMapNode__Q34Game4Cave13RandPlantUnitFPPQ34Game4Cave7BaseGen = .text:0x8029F024; // type:function size:0x134 scope:global align:4 +getPlantUnit__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave7BaseGen = .text:0x8029F158; // type:function size:0x68 scope:global align:4 +isPlantSet__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen = .text:0x8029F1C0; // type:function size:0x48 scope:global align:4 +init__Q34Game12Hanachirashi3FSMFPQ24Game9EnemyBase = .text:0x8029F208; // type:function size:0x480 scope:global align:4 +init__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029F688; // type:function size:0xAC scope:global align:4 +exec__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBase = .text:0x8029F734; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBase = .text:0x8029F7EC; // type:function size:0x4 scope:global align:4 +init__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029F7F0; // type:function size:0x54 scope:global align:4 +exec__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBase = .text:0x8029F844; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBase = .text:0x8029F97C; // type:function size:0x4 scope:global align:4 +init__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029F980; // type:function size:0x4C scope:global align:4 +exec__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBase = .text:0x8029F9CC; // type:function size:0x1A0 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBase = .text:0x8029FB6C; // type:function size:0x4 scope:global align:4 +init__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8029FB70; // type:function size:0x30 scope:global align:4 +exec__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBase = .text:0x8029FBA0; // type:function size:0x530 scope:global align:4 +cleanup__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBase = .text:0x802A00D0; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A00F4; // type:function size:0x124 scope:global align:4 +exec__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBase = .text:0x802A0218; // type:function size:0x37C scope:global align:4 +cleanup__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBase = .text:0x802A0594; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A05B8; // type:function size:0x90 scope:global align:4 +exec__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBase = .text:0x802A0648; // type:function size:0x11C scope:global align:4 +cleanup__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBase = .text:0x802A0764; // type:function size:0x54 scope:global align:4 +init__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A07B8; // type:function size:0x68 scope:global align:4 +exec__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBase = .text:0x802A0820; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBase = .text:0x802A09C4; // type:function size:0x38 scope:global align:4 +init__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A09FC; // type:function size:0x70 scope:global align:4 +exec__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBase = .text:0x802A0A6C; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBase = .text:0x802A0AEC; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0B10; // type:function size:0x68 scope:global align:4 +exec__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBase = .text:0x802A0B78; // type:function size:0x114 scope:global align:4 +cleanup__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBase = .text:0x802A0C8C; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0CB0; // type:function size:0x64 scope:global align:4 +exec__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBase = .text:0x802A0D14; // type:function size:0xEC scope:global align:4 +cleanup__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBase = .text:0x802A0E00; // type:function size:0x38 scope:global align:4 +init__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0E38; // type:function size:0x64 scope:global align:4 +exec__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802A0E9C; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802A0F80; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A0FA4; // type:function size:0x64 scope:global align:4 +exec__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802A1008; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802A1108; // type:function size:0x24 scope:global align:4 +init__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A112C; // type:function size:0x68 scope:global align:4 +exec__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBase = .text:0x802A1194; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBase = .text:0x802A1270; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game12Hanachirashi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802A1294; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game12Hanachirashi14ProperAnimatorFi = .text:0x802A129C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game12Hanachirashi14ProperAnimatorFv = .text:0x802A12A4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game12Hanachirashi14ProperAnimatorFv = .text:0x802A1300; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12Hanachirashi3MgrFiUc = .text:0x802A1308; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12Hanachirashi3MgrFv = .text:0x802A1358; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12Hanachirashi5ParmsFv = .text:0x802A13A0; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game12Hanachirashi5Parms11ProperParmsFv = .text:0x802A13E8; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game12Hanachirashi3MgrFi = .text:0x802A1624; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12Hanachirashi3ObjFv = .text:0x802A1684; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game12Hanachirashi3MgrFi = .text:0x802A1740; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game12Hanachirashi3MgrFv = .text:0x802A1750; // type:function size:0x12C scope:global align:4 +createModel__Q34Game12Hanachirashi3MgrFv = .text:0x802A187C; // type:function size:0x13C scope:global align:4 +__dt__Q34Game12Hanachirashi3MgrFv = .text:0x802A19B8; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game12Hanachirashi3MgrFv = .text:0x802A1A68; // type:function size:0x8 scope:weak align:4 +read__Q34Game12Hanachirashi5ParmsFR6Stream = .text:0x802A1A70; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game12Hanachirashi3MgrFv = .text:0x802A1AC0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12Hanachirashi3ObjFv = .text:0x802A1AC8; // type:function size:0x15C scope:global align:4 +setInitialSetting__Q34Game12Hanachirashi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802A1C24; // type:function size:0x4 scope:global align:4 +onInit__Q34Game12Hanachirashi3ObjFPQ24Game15CreatureInitArg = .text:0x802A1C28; // type:function size:0xF4 scope:global align:4 +onKill__Q34Game12Hanachirashi3ObjFPQ24Game15CreatureKillArg = .text:0x802A1D1C; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game12Hanachirashi3ObjFv = .text:0x802A1D60; // type:function size:0x50 scope:global align:4 +changeMaterial__Q34Game12Hanachirashi3ObjFv = .text:0x802A1DB0; // type:function size:0xD4 scope:global align:4 +setFSM__Q34Game12Hanachirashi3ObjFPQ34Game12Hanachirashi3FSM = .text:0x802A1E84; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game12Hanachirashi3ObjFR8Graphics = .text:0x802A1ED0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game12Hanachirashi3ObjFR8Graphics = .text:0x802A1ED4; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game12Hanachirashi3ObjFRQ24Game11ShadowParam = .text:0x802A1EF4; // type:function size:0x168 scope:global align:4 +doStartStoneState__Q34Game12Hanachirashi3ObjFv = .text:0x802A205C; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game12Hanachirashi3ObjFv = .text:0x802A2098; // type:function size:0x7C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game12Hanachirashi3ObjFv = .text:0x802A2114; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game12Hanachirashi3ObjFv = .text:0x802A2148; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game12Hanachirashi3ObjFv = .text:0x802A217C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game12Hanachirashi3ObjFv = .text:0x802A219C; // type:function size:0x20 scope:global align:4 +getOffsetForMapCollision__Q34Game12Hanachirashi3ObjFv = .text:0x802A21BC; // type:function size:0x64 scope:global align:4 +getThrowupItemPosition__Q34Game12Hanachirashi3ObjFP10Vector3 = .text:0x802A2220; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game12Hanachirashi3ObjFP10Vector3 = .text:0x802A2270; // type:function size:0x40 scope:global align:4 +getHeadJointPos__Q34Game12Hanachirashi3ObjFv = .text:0x802A22B0; // type:function size:0x50 scope:global align:4 +setHeightVelocity__Q34Game12Hanachirashi3ObjFv = .text:0x802A2300; // type:function size:0x11C scope:global align:4 +setRandTarget__Q34Game12Hanachirashi3ObjFv = .text:0x802A241C; // type:function size:0x1D8 scope:global align:4 +resetShadowOffset__Q34Game12Hanachirashi3ObjFv = .text:0x802A25F4; // type:function size:0xC scope:global align:4 +setShadowOffsetMax__Q34Game12Hanachirashi3ObjFv = .text:0x802A2600; // type:function size:0xC scope:global align:4 +addShadowOffset__Q34Game12Hanachirashi3ObjFv = .text:0x802A260C; // type:function size:0x28 scope:global align:4 +subShadowOffset__Q34Game12Hanachirashi3ObjFv = .text:0x802A2634; // type:function size:0x28 scope:global align:4 +resetShadowRadius__Q34Game12Hanachirashi3ObjFv = .text:0x802A265C; // type:function size:0xC scope:global align:4 +subShadowRadius__Q34Game12Hanachirashi3ObjFv = .text:0x802A2668; // type:function size:0x2C scope:global align:4 +updateFallTimer__Q34Game12Hanachirashi3ObjFv = .text:0x802A2694; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game12Hanachirashi3ObjFv = .text:0x802A26C4; // type:function size:0xA4 scope:global align:4 +addPitchRatio__Q34Game12Hanachirashi3ObjFv = .text:0x802A2768; // type:function size:0x38 scope:global align:4 +getSearchedPikmin__Q34Game12Hanachirashi3ObjFv = .text:0x802A27A0; // type:function size:0x3D4 scope:global align:4 +isTargetLost__Q34Game12Hanachirashi3ObjFv = .text:0x802A2B74; // type:function size:0x2F0 scope:global align:4 +isAttackable__Q34Game12Hanachirashi3ObjFv = .text:0x802A2E64; // type:function size:0x38C scope:global align:4 +updateEmit__Q34Game12Hanachirashi3ObjFv = .text:0x802A31F0; // type:function size:0x1AC scope:global align:4 +getAttackPosition__Q34Game12Hanachirashi3ObjFv = .text:0x802A339C; // type:function size:0x1E8 scope:global align:4 +windTarget__Q34Game12Hanachirashi3ObjFv = .text:0x802A3584; // type:function size:0x90C scope:global align:4 +createEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A3E90; // type:function size:0x150 scope:global align:4 +setupEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A3FE0; // type:function size:0x4C scope:global align:4 +startDeadEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A402C; // type:function size:0x7C scope:global align:4 +createSuckEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A40A8; // type:function size:0x34 scope:global align:4 +startWindEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A40DC; // type:function size:0x90 scope:global align:4 +finishWindEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A416C; // type:function size:0x78 scope:global align:4 +createDownEffect__Q34Game12Hanachirashi3ObjFv = .text:0x802A41E4; // type:function size:0x74 scope:global align:4 +getDownSmokeScale__Q34Game12Hanachirashi3ObjFv = .text:0x802A4258; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game12Hanachirashi3ObjFv = .text:0x802A4260; // type:function size:0x78 scope:global align:4 +effectDrawOff__Q34Game12Hanachirashi3ObjFv = .text:0x802A42D8; // type:function size:0x78 scope:global align:4 +inWaterCallback__Q34Game12Hanachirashi3ObjFPQ24Game8WaterBox = .text:0x802A4350; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game12Hanachirashi3ObjFv = .text:0x802A4354; // type:function size:0x4 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game12Hanachirashi3ObjFv = .text:0x802A4358; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game12Hanachirashi3ObjFv = .text:0x802A435C; // type:function size:0x8 scope:weak align:4 +@812@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802A4364; // type:function size:0x14 scope:weak align:4 +@812@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A4378; // type:function size:0x14 scope:weak align:4 +@812@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A438C; // type:function size:0x14 scope:weak align:4 +@812@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A43A0; // type:function size:0x14 scope:weak align:4 +@812@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A43B4; // type:function size:0x14 scope:weak align:4 +@812@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802A43C8; // type:function size:0x14 scope:weak align:4 +init__Q34Game8Damagumo3FSMFPQ24Game9EnemyBase = .text:0x802A43DC; // type:function size:0x224 scope:global align:4 +init__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4600; // type:function size:0xCC scope:global align:4 +exec__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBase = .text:0x802A46CC; // type:function size:0x8C scope:global align:4 +cleanup__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBase = .text:0x802A4758; // type:function size:0x4 scope:global align:4 +init__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A475C; // type:function size:0x84 scope:global align:4 +exec__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBase = .text:0x802A47E0; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBase = .text:0x802A4898; // type:function size:0x4 scope:global align:4 +init__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A489C; // type:function size:0xB4 scope:global align:4 +exec__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBase = .text:0x802A4950; // type:function size:0x1E8 scope:global align:4 +cleanup__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBase = .text:0x802A4B38; // type:function size:0x5C scope:global align:4 +init__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4B94; // type:function size:0x98 scope:global align:4 +exec__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBase = .text:0x802A4C2C; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBase = .text:0x802A4D20; // type:function size:0x4 scope:global align:4 +init__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4D24; // type:function size:0x64 scope:global align:4 +exec__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBase = .text:0x802A4D88; // type:function size:0xC8 scope:global align:4 +cleanup__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBase = .text:0x802A4E50; // type:function size:0x24 scope:global align:4 +init__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802A4E74; // type:function size:0x98 scope:global align:4 +exec__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBase = .text:0x802A4F0C; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBase = .text:0x802A500C; // type:function size:0x4 scope:global align:4 +__sinit_DamagumoState_cpp = .text:0x802A5010; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game8Damagumo14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802A5038; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8Damagumo14ProperAnimatorFi = .text:0x802A5040; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8Damagumo14ProperAnimatorFv = .text:0x802A5048; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8Damagumo14ProperAnimatorFv = .text:0x802A50A4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Damagumo3MgrFiUc = .text:0x802A50AC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8Damagumo3MgrFv = .text:0x802A50FC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8Damagumo5ParmsFv = .text:0x802A5144; // type:function size:0x1C8 scope:weak align:4 +createObj__Q34Game8Damagumo3MgrFi = .text:0x802A530C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8Damagumo3ObjFv = .text:0x802A536C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8Damagumo3MgrFi = .text:0x802A5428; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game8Damagumo3MgrFv = .text:0x802A5438; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game8Damagumo3MgrFv = .text:0x802A54A0; // type:function size:0x12C scope:global align:4 +createModel__Q34Game8Damagumo3MgrFv = .text:0x802A55CC; // type:function size:0x7C scope:global align:4 +__dt__Q34Game8Damagumo3MgrFv = .text:0x802A5648; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8Damagumo3MgrFv = .text:0x802A56F8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Damagumo3MgrFPv = .text:0x802A5700; // type:function size:0x2C scope:weak align:4 +read__Q34Game8Damagumo5ParmsFR6Stream = .text:0x802A572C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8Damagumo3MgrFv = .text:0x802A577C; // type:function size:0x8 scope:weak align:4 +invokeOnGround__Q34Game8Damagumo22DamagumoGroundCallBackFiPQ24Game8WaterBox = .text:0x802A5784; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game8Damagumo22DamagumoGroundCallBackFiPQ24Game8WaterBox = .text:0x802A57A8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8Damagumo3ObjFv = .text:0x802A57CC; // type:function size:0x16C scope:global align:4 +constructor__Q34Game8Damagumo3ObjFv = .text:0x802A5938; // type:function size:0x34 scope:global align:4 +setInitialSetting__Q34Game8Damagumo3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802A596C; // type:function size:0x4 scope:global align:4 +onInit__Q34Game8Damagumo3ObjFPQ24Game15CreatureInitArg = .text:0x802A5970; // type:function size:0x134 scope:global align:4 +doUpdate__Q34Game8Damagumo3ObjFv = .text:0x802A5AA4; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game8Damagumo3ObjFv = .text:0x802A5AF4; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game8Damagumo3ObjFv = .text:0x802A5B28; // type:function size:0x98 scope:global align:4 +doDirectDraw__Q34Game8Damagumo3ObjFR8Graphics = .text:0x802A5BC0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8Damagumo3ObjFR8Graphics = .text:0x802A5BC4; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game8Damagumo3ObjFPQ34Game8Damagumo3FSM = .text:0x802A5BE4; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game8Damagumo3ObjFRQ24Game11ShadowParam = .text:0x802A5C30; // type:function size:0x3C scope:global align:4 +needShadow__Q34Game8Damagumo3ObjFv = .text:0x802A5C6C; // type:function size:0x50 scope:global align:4 +damageCallBack__Q34Game8Damagumo3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802A5CBC; // type:function size:0x9C scope:global align:4 +collisionCallback__Q34Game8Damagumo3ObjFRQ24Game9CollEvent = .text:0x802A5D58; // type:function size:0x1AC scope:global align:4 +doStartStoneState__Q34Game8Damagumo3ObjFv = .text:0x802A5F04; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game8Damagumo3ObjFv = .text:0x802A5F38; // type:function size:0x5C scope:global align:4 +doStartMovie__Q34Game8Damagumo3ObjFv = .text:0x802A5F94; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game8Damagumo3ObjFv = .text:0x802A5FB4; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game8Damagumo3ObjFP10Vector3 = .text:0x802A5FD4; // type:function size:0x60 scope:global align:4 +getThrowupItemVelocity__Q34Game8Damagumo3ObjFP10Vector3 = .text:0x802A6034; // type:function size:0x14 scope:global align:4 +getTargetPosition__Q34Game8Damagumo3ObjFv = .text:0x802A6048; // type:function size:0x298 scope:global align:4 +createIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A62E0; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A63EC; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game8Damagumo3ObjFv = .text:0x802A6510; // type:function size:0x90 scope:global align:4 +setIKSystemTargetPosition__Q34Game8Damagumo3ObjFR10Vector3 = .text:0x802A65A0; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A65C0; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A6620; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game8Damagumo3ObjFv = .text:0x802A6680; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game8Damagumo3ObjFv = .text:0x802A66A4; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A66C8; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A66EC; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A6710; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game8Damagumo3ObjFv = .text:0x802A6734; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game8Damagumo3ObjFv = .text:0x802A6758; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game8Damagumo3ObjFv = .text:0x802A677C; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game8Damagumo3ObjFv = .text:0x802A67A0; // type:function size:0x20 scope:global align:4 +isCollisionCheck__Q34Game8Damagumo3ObjFP8CollPart = .text:0x802A67C0; // type:function size:0x24 scope:global align:4 +createShadowSystem__Q34Game8Damagumo3ObjFv = .text:0x802A67E4; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game8Damagumo3ObjFv = .text:0x802A682C; // type:function size:0x74 scope:global align:4 +doAnimationShadowSystem__Q34Game8Damagumo3ObjFv = .text:0x802A68A0; // type:function size:0x24 scope:global align:4 +createMaterialAnimation__Q34Game8Damagumo3ObjFv = .text:0x802A68C4; // type:function size:0x4C scope:global align:4 +startMaterialAnimation__Q34Game8Damagumo3ObjFv = .text:0x802A6910; // type:function size:0x60 scope:global align:4 +updateMaterialAnimation__Q34Game8Damagumo3ObjFv = .text:0x802A6970; // type:function size:0x13C scope:global align:4 +setupCollision__Q34Game8Damagumo3ObjFv = .text:0x802A6AAC; // type:function size:0x90 scope:global align:4 +createItemAndEnemy__Q34Game8Damagumo3ObjFv = .text:0x802A6B3C; // type:function size:0x8C scope:global align:4 +startBossFlickBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6BC8; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6C90; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6D8C; // type:function size:0xC4 scope:global align:4 +setBossAppearBGM__Q34Game8Damagumo3ObjFv = .text:0x802A6E50; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game8Damagumo3ObjFv = .text:0x802A6F0C; // type:function size:0x5BC scope:global align:4 +__dt__Q23efx12TChasePosPosFv = .text:0x802A74C8; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game8Damagumo3ObjFv = .text:0x802A754C; // type:function size:0x184 scope:global align:4 +createOnGroundEffect__Q34Game8Damagumo3ObjFiPQ24Game8WaterBox = .text:0x802A76D0; // type:function size:0x1F0 scope:global align:4 +createOffGroundEffect__Q34Game8Damagumo3ObjFiPQ24Game8WaterBox = .text:0x802A78C0; // type:function size:0x128 scope:global align:4 +startPinchJointEffect__Q34Game8Damagumo3ObjFv = .text:0x802A79E8; // type:function size:0x1A0 scope:global align:4 +finishPinchJointEffect__Q34Game8Damagumo3ObjFv = .text:0x802A7B88; // type:function size:0x58 scope:global align:4 +startDeadEffect__Q34Game8Damagumo3ObjFv = .text:0x802A7BE0; // type:function size:0x1C0 scope:global align:4 +updatePinchLife__Q34Game8Damagumo3ObjFv = .text:0x802A7DA0; // type:function size:0x250 scope:global align:4 +effectDrawOn__Q34Game8Damagumo3ObjFv = .text:0x802A7FF0; // type:function size:0x198 scope:global align:4 +effectDrawOff__Q34Game8Damagumo3ObjFv = .text:0x802A8188; // type:function size:0x198 scope:global align:4 +addShadowScale__Q34Game8Damagumo3ObjFv = .text:0x802A8320; // type:function size:0x38 scope:global align:4 +__dt__Q23efx16TDamaDeadHahenC2Fv = .text:0x802A8358; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TDamaDeadHahenC1Fv = .text:0x802A83F4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TDamaSmokeFv = .text:0x802A8490; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TDamaDeadHahenBFv = .text:0x802A852C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TDamaDeadHahenAFv = .text:0x802A85C8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TDamaDeadElecBFv = .text:0x802A8664; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TDamaDeadElecAFv = .text:0x802A8700; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TDamaHahenFv = .text:0x802A879C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TDamaFootwFv = .text:0x802A8838; // type:function size:0x9C scope:weak align:4 +satisfy__Q24Game23ConditionNotStickClientFPQ24Game4Piki = .text:0x802A88D4; // type:function size:0x88 scope:weak align:4 +inWaterCallback__Q34Game8Damagumo3ObjFPQ24Game8WaterBox = .text:0x802A895C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game8Damagumo3ObjFv = .text:0x802A8960; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game8Damagumo3ObjFv = .text:0x802A8964; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game8Damagumo3ObjFv = .text:0x802A896C; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game8Damagumo3ObjFv = .text:0x802A8970; // type:function size:0x8 scope:weak align:4 +__sinit_Damagumo_cpp = .text:0x802A8978; // type:function size:0x28 scope:local align:4 +@1176@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802A89A0; // type:function size:0x14 scope:weak align:4 +@1176@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A89B4; // type:function size:0x14 scope:weak align:4 +@1176@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802A89C8; // type:function size:0x14 scope:weak align:4 +@1176@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A89DC; // type:function size:0x14 scope:weak align:4 +@1176@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802A89F0; // type:function size:0x14 scope:weak align:4 +@1176@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802A8A04; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx10TDamaFootwFv = .text:0x802A8A18; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TDamaHahenFv = .text:0x802A8A20; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDamaDeadElecAFv = .text:0x802A8A28; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDamaDeadElecBFv = .text:0x802A8A30; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TDamaDeadHahenAFv = .text:0x802A8A38; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TDamaDeadHahenBFv = .text:0x802A8A40; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TDamaSmokeFv = .text:0x802A8A48; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TDamaDeadHahenC1Fv = .text:0x802A8A50; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TDamaDeadHahenC2Fv = .text:0x802A8A58; // type:function size:0x8 scope:weak align:4 +IKJointCallBack__4GameFP8J3DJointi = .text:0x802A8A60; // type:function size:0x38 scope:local align:4 +__ct__Q24Game11IKSystemMgrFv = .text:0x802A8A98; // type:function size:0x7C scope:global align:4 +init__Q24Game11IKSystemMgrFPQ24Game9EnemyBasePQ24Game19JointGroundCallBack = .text:0x802A8B14; // type:function size:0x144 scope:global align:4 +setupJoint__Q24Game11IKSystemMgrFPQ28SysShape5ModeliPPc = .text:0x802A8C58; // type:function size:0x6C scope:global align:4 +setupCallBack__Q24Game11IKSystemMgrFPQ28SysShape5ModelPc = .text:0x802A8CC4; // type:function size:0x38 scope:global align:4 +setParameters__Q24Game11IKSystemMgrFPQ24Game13IKSystemParms = .text:0x802A8CFC; // type:function size:0x64 scope:global align:4 +startProgramedIK__Q24Game11IKSystemMgrFv = .text:0x802A8D60; // type:function size:0x188 scope:global align:4 +startIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A8EE8; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F0C; // type:function size:0xC scope:global align:4 +forceFinishIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F18; // type:function size:0x14 scope:global align:4 +startBlendMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F2C; // type:function size:0x5C scope:global align:4 +finishBlendMotion__Q24Game11IKSystemMgrFv = .text:0x802A8F88; // type:function size:0x5C scope:global align:4 +checkJointScaleOn__Q24Game11IKSystemMgrFv = .text:0x802A8FE4; // type:function size:0x5C scope:global align:4 +isFinishIKMotion__Q24Game11IKSystemMgrFv = .text:0x802A9040; // type:function size:0x70 scope:global align:4 +resetAnimationCallBack__Q24Game11IKSystemMgrFv = .text:0x802A90B0; // type:function size:0xC scope:global align:4 +setAnimationCallBack__Q24Game11IKSystemMgrFv = .text:0x802A90BC; // type:function size:0x8 scope:global align:4 +doUpdate__Q24Game11IKSystemMgrFv = .text:0x802A90C4; // type:function size:0x7C scope:global align:4 +makeMatrix__Q24Game11IKSystemMgrFv = .text:0x802A9140; // type:function size:0x5C scope:global align:4 +getCollisionCentre__Q24Game11IKSystemMgrFi = .text:0x802A919C; // type:function size:0x38 scope:global align:4 +isCollisionCheck__Q24Game11IKSystemMgrFP8CollPart = .text:0x802A91D4; // type:function size:0x10C scope:global align:4 +updateController__Q24Game11IKSystemMgrFv = .text:0x802A92E0; // type:function size:0x308 scope:global align:4 +setNextCentrePosition__Q24Game11IKSystemMgrFv = .text:0x802A95E8; // type:function size:0x3DC scope:global align:4 +calcFaceDir__Q24Game11IKSystemMgrFv = .text:0x802A99C4; // type:function size:0xFC scope:global align:4 +calcCentrePosition__Q24Game11IKSystemMgrFv = .text:0x802A9AC0; // type:function size:0x298 scope:global align:4 +calcTraceCentrePosition__Q24Game11IKSystemMgrFv = .text:0x802A9D58; // type:function size:0xE4 scope:global align:4 +__ct__Q24Game12IKSystemBaseFv = .text:0x802A9E3C; // type:function size:0x70 scope:global align:4 +init__Q24Game12IKSystemBaseFv = .text:0x802A9EAC; // type:function size:0x30 scope:global align:4 +setLegJointMatrix__Q24Game12IKSystemBaseFiP7Matrixf = .text:0x802A9EDC; // type:function size:0x10 scope:global align:4 +setParameters__Q24Game12IKSystemBaseFPQ24Game13IKSystemParms = .text:0x802A9EEC; // type:function size:0x8 scope:global align:4 +startProgramedIK__Q24Game12IKSystemBaseFv = .text:0x802A9EF4; // type:function size:0xF0 scope:global align:4 +startMovePosition__Q24Game12IKSystemBaseFR10Vector3 = .text:0x802A9FE4; // type:function size:0xF4 scope:global align:4 +startBlendMotion__Q24Game12IKSystemBaseFv = .text:0x802AA0D8; // type:function size:0xC scope:global align:4 +finishBlendMotion__Q24Game12IKSystemBaseFv = .text:0x802AA0E4; // type:function size:0xC scope:global align:4 +checkJointScaleOn__Q24Game12IKSystemBaseFv = .text:0x802AA0F0; // type:function size:0xC scope:global align:4 +update__Q24Game12IKSystemBaseFv = .text:0x802AA0FC; // type:function size:0x7C scope:global align:4 +makeMatrix__Q24Game12IKSystemBaseFv = .text:0x802AA178; // type:function size:0xF8 scope:global align:4 +moveBottomJointPosition__Q24Game12IKSystemBaseFv = .text:0x802AA270; // type:function size:0xC4 scope:global align:4 +onGround__Q24Game12IKSystemBaseFv = .text:0x802AA334; // type:function size:0x8 scope:global align:4 +getBottomJointPosition__Q24Game12IKSystemBaseFv = .text:0x802AA33C; // type:function size:0x1C scope:global align:4 +getCollisionCentre__Q24Game12IKSystemBaseFv = .text:0x802AA358; // type:function size:0x4C scope:global align:4 +getMoveRatio__Q24Game12IKSystemBaseFv = .text:0x802AA3A4; // type:function size:0x8 scope:global align:4 +onGroundPosition__Q24Game12IKSystemBaseFv = .text:0x802AA3AC; // type:function size:0x280 scope:global align:4 +makeBendRatio__Q24Game12IKSystemBaseFv = .text:0x802AA62C; // type:function size:0x84 scope:global align:4 +getMiddleDirection__Q24Game12IKSystemBaseFR10Vector3 = .text:0x802AA6B0; // type:function size:0x9C scope:global align:4 +setTopJointRotation__Q24Game12IKSystemBaseFR10Vector3R10Vector3 = .text:0x802AA74C; // type:function size:0x294 scope:global align:4 +setMiddleJointRotation__Q24Game12IKSystemBaseFR10Vector3R10Vector3 = .text:0x802AA9E0; // type:function size:0x294 scope:global align:4 +makeBottomMatrix__Q24Game12IKSystemBaseFR10Vector3 = .text:0x802AAC74; // type:function size:0x100 scope:global align:4 +__ct__Q34Game8Damagumo17DamagumoShadowMgrFPQ34Game8Damagumo3Obj = .text:0x802AAD74; // type:function size:0x20C scope:global align:4 +init__Q34Game8Damagumo17DamagumoShadowMgrFv = .text:0x802AAF80; // type:function size:0x14C scope:global align:4 +setJointPosPtr__Q34Game8Damagumo17DamagumoShadowMgrFiiP10Vector3 = .text:0x802AB0CC; // type:function size:0x18 scope:global align:4 +update__Q34Game8Damagumo17DamagumoShadowMgrFv = .text:0x802AB0E4; // type:function size:0x39C scope:global align:4 +__dt__Q24Game17TubeShadowSetNodeFv = .text:0x802AB480; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game19TubeShadowTransNodeFv = .text:0x802AB4F0; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game16SphereShadowNodeFv = .text:0x802AB560; // type:function size:0x70 scope:weak align:4 +init__Q34Game6Kurage3FSMFPQ24Game9EnemyBase = .text:0x802AB5D0; // type:function size:0x3D0 scope:global align:4 +init__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AB9A0; // type:function size:0xCC scope:global align:4 +exec__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBase = .text:0x802ABA6C; // type:function size:0x14C scope:global align:4 +cleanup__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBase = .text:0x802ABBB8; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ABBBC; // type:function size:0x5C scope:global align:4 +exec__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBase = .text:0x802ABC18; // type:function size:0x174 scope:global align:4 +cleanup__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBase = .text:0x802ABD8C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ABD90; // type:function size:0x74 scope:global align:4 +exec__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBase = .text:0x802ABE04; // type:function size:0x208 scope:global align:4 +cleanup__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBase = .text:0x802AC00C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC010; // type:function size:0x6C scope:global align:4 +exec__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBase = .text:0x802AC07C; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBase = .text:0x802AC1D8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC1FC; // type:function size:0x80 scope:global align:4 +exec__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBase = .text:0x802AC27C; // type:function size:0x244 scope:global align:4 +cleanup__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBase = .text:0x802AC4C0; // type:function size:0x38 scope:global align:4 +init__Q34Game6Kurage9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC4F8; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kurage9StateFallFPQ24Game9EnemyBase = .text:0x802AC560; // type:function size:0x180 scope:global align:4 +cleanup__Q34Game6Kurage9StateFallFPQ24Game9EnemyBase = .text:0x802AC6E0; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC704; // type:function size:0xC0 scope:global align:4 +exec__Q34Game6Kurage9StateLandFPQ24Game9EnemyBase = .text:0x802AC7C4; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game6Kurage9StateLandFPQ24Game9EnemyBase = .text:0x802AC844; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC868; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802AC8D0; // type:function size:0xF0 scope:global align:4 +cleanup__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802AC9C0; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802AC9E4; // type:function size:0x60 scope:global align:4 +exec__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBase = .text:0x802ACA44; // type:function size:0x114 scope:global align:4 +cleanup__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBase = .text:0x802ACB58; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ACB7C; // type:function size:0xE0 scope:global align:4 +exec__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802ACC5C; // type:function size:0x17C scope:global align:4 +cleanup__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802ACDD8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802ACDFC; // type:function size:0xDC scope:global align:4 +exec__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802ACED8; // type:function size:0x14C scope:global align:4 +cleanup__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802AD024; // type:function size:0x24 scope:global align:4 +__sinit_KurageState_cpp = .text:0x802AD048; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game6Kurage14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802AD070; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Kurage14ProperAnimatorFi = .text:0x802AD078; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Kurage14ProperAnimatorFv = .text:0x802AD080; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Kurage14ProperAnimatorFv = .text:0x802AD0DC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kurage3MgrFiUc = .text:0x802AD0E4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Kurage3MgrFv = .text:0x802AD134; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Kurage5ParmsFv = .text:0x802AD17C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game6Kurage5Parms11ProperParmsFv = .text:0x802AD1C4; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game6Kurage3MgrFi = .text:0x802AD400; // type:function size:0x60 scope:global align:4 +__dt__Q34Game6Kurage3ObjFv = .text:0x802AD460; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Kurage3MgrFi = .text:0x802AD51C; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game6Kurage3MgrFv = .text:0x802AD52C; // type:function size:0x68 scope:global align:4 +__dt__Q34Game6Kurage3MgrFv = .text:0x802AD594; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Kurage3MgrFv = .text:0x802AD644; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Kurage3MgrFPv = .text:0x802AD64C; // type:function size:0x2C scope:weak align:4 +read__Q34Game6Kurage5ParmsFR6Stream = .text:0x802AD678; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Kurage3MgrFv = .text:0x802AD6C8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kurage3ObjFv = .text:0x802AD6D0; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game6Kurage3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802AD808; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Kurage3ObjFPQ24Game15CreatureInitArg = .text:0x802AD80C; // type:function size:0xA8 scope:global align:4 +onKill__Q34Game6Kurage3ObjFPQ24Game15CreatureKillArg = .text:0x802AD8B4; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game6Kurage3ObjFv = .text:0x802AD908; // type:function size:0x100 scope:global align:4 +doDirectDraw__Q34Game6Kurage3ObjFR8Graphics = .text:0x802ADA08; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Kurage3ObjFR8Graphics = .text:0x802ADA0C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Kurage3ObjFPQ34Game6Kurage3FSM = .text:0x802ADA2C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Kurage3ObjFRQ24Game11ShadowParam = .text:0x802ADA78; // type:function size:0x118 scope:global align:4 +damageCallBack__Q34Game6Kurage3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802ADB90; // type:function size:0x38 scope:global align:4 +doStartStoneState__Q34Game6Kurage3ObjFv = .text:0x802ADBC8; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game6Kurage3ObjFv = .text:0x802ADC0C; // type:function size:0x7C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game6Kurage3ObjFv = .text:0x802ADC88; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game6Kurage3ObjFv = .text:0x802ADCBC; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game6Kurage3ObjFv = .text:0x802ADCF0; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game6Kurage3ObjFv = .text:0x802ADD10; // type:function size:0x20 scope:global align:4 +setHeightVelocity__Q34Game6Kurage3ObjFff = .text:0x802ADD30; // type:function size:0x98 scope:global align:4 +setRandTarget__Q34Game6Kurage3ObjFv = .text:0x802ADDC8; // type:function size:0x1D8 scope:global align:4 +getMovePitchOffset__Q34Game6Kurage3ObjFv = .text:0x802ADFA0; // type:function size:0xA4 scope:global align:4 +getAttackPitchOffset__Q34Game6Kurage3ObjFv = .text:0x802AE044; // type:function size:0x1A8 scope:global align:4 +getFlickPitchOffset__Q34Game6Kurage3ObjFv = .text:0x802AE1EC; // type:function size:0x1A8 scope:global align:4 +getTakeOffPitchOffset__Q34Game6Kurage3ObjFv = .text:0x802AE394; // type:function size:0x144 scope:global align:4 +getFallPitchOffset__Q34Game6Kurage3ObjFf = .text:0x802AE4D8; // type:function size:0x168 scope:global align:4 +updateFallTimer__Q34Game6Kurage3ObjFv = .text:0x802AE640; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game6Kurage3ObjFv = .text:0x802AE670; // type:function size:0xA4 scope:global align:4 +getSearchedTarget__Q34Game6Kurage3ObjFf = .text:0x802AE714; // type:function size:0x448 scope:global align:4 +isSuck__Q34Game6Kurage3ObjFfPQ24Game8Creature = .text:0x802AEB5C; // type:function size:0x33C scope:global align:4 +suckPikmin__Q34Game6Kurage3ObjFf = .text:0x802AEE98; // type:function size:0x434 scope:global align:4 +createEffect__Q34Game6Kurage3ObjFv = .text:0x802AF2CC; // type:function size:0x2B4 scope:global align:4 +setupEffect__Q34Game6Kurage3ObjFv = .text:0x802AF580; // type:function size:0x8C scope:global align:4 +startEyeHireBodyEffect__Q34Game6Kurage3ObjFv = .text:0x802AF60C; // type:function size:0x88 scope:global align:4 +finishEyeBodyEffect__Q34Game6Kurage3ObjFv = .text:0x802AF694; // type:function size:0x7C scope:global align:4 +setHireEffectLife__Q34Game6Kurage3ObjFs = .text:0x802AF710; // type:function size:0x24 scope:global align:4 +finishHireEffect__Q34Game6Kurage3ObjFv = .text:0x802AF734; // type:function size:0x50 scope:global align:4 +startSuckEffect__Q34Game6Kurage3ObjFR10Vector3 = .text:0x802AF784; // type:function size:0x58 scope:global align:4 +updateSuckEffect__Q34Game6Kurage3ObjFR10Vector3 = .text:0x802AF7DC; // type:function size:0x24 scope:global align:4 +finishSuckEffect__Q34Game6Kurage3ObjFv = .text:0x802AF800; // type:function size:0x30 scope:global align:4 +createBodyBombEffect__Q34Game6Kurage3ObjFv = .text:0x802AF830; // type:function size:0x9C scope:global align:4 +createDownEffect__Q34Game6Kurage3ObjFv = .text:0x802AF8CC; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game6Kurage3ObjFv = .text:0x802AF910; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game6Kurage3ObjFv = .text:0x802AF918; // type:function size:0xA0 scope:global align:4 +effectDrawOff__Q34Game6Kurage3ObjFv = .text:0x802AF9B8; // type:function size:0xA0 scope:global align:4 +__dt__Q23efx17TNewkurageDeadrunFv = .text:0x802AFA58; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TNewkurageKiraFv = .text:0x802AFAF4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TNewkurageEyeFv = .text:0x802AFB90; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game6Kurage3ObjFPQ24Game8WaterBox = .text:0x802AFC2C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game6Kurage3ObjFv = .text:0x802AFC30; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Kurage3ObjFv = .text:0x802AFC34; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TNewkurageEyeFv = .text:0x802AFC3C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TNewkurageKiraFv = .text:0x802AFC44; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TNewkurageDeadrunFv = .text:0x802AFC4C; // type:function size:0x8 scope:weak align:4 +init__Q34Game9BombSarai3FSMFPQ24Game9EnemyBase = .text:0x802AFC54; // type:function size:0x480 scope:global align:4 +init__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B00D4; // type:function size:0x94 scope:global align:4 +exec__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBase = .text:0x802B0168; // type:function size:0x134 scope:global align:4 +cleanup__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBase = .text:0x802B029C; // type:function size:0x4 scope:global align:4 +init__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B02A0; // type:function size:0xB0 scope:global align:4 +exec__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBase = .text:0x802B0350; // type:function size:0x1B4 scope:global align:4 +cleanup__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBase = .text:0x802B0504; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B0534; // type:function size:0x54 scope:global align:4 +exec__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBase = .text:0x802B0588; // type:function size:0x148 scope:global align:4 +cleanup__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBase = .text:0x802B06D0; // type:function size:0x4 scope:global align:4 +init__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B06D4; // type:function size:0x74 scope:global align:4 +exec__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B0748; // type:function size:0x454 scope:global align:4 +cleanup__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B0B9C; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B0BCC; // type:function size:0x6C scope:global align:4 +exec__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBase = .text:0x802B0C38; // type:function size:0x1CC scope:global align:4 +cleanup__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBase = .text:0x802B0E04; // type:function size:0x4 scope:global align:4 +init__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B0E08; // type:function size:0x80 scope:global align:4 +exec__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B0E88; // type:function size:0x4E4 scope:global align:4 +cleanup__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B136C; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B139C; // type:function size:0x80 scope:global align:4 +exec__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBase = .text:0x802B141C; // type:function size:0xAC scope:global align:4 +cleanup__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBase = .text:0x802B14C8; // type:function size:0x38 scope:global align:4 +init__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1500; // type:function size:0x70 scope:global align:4 +exec__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBase = .text:0x802B1570; // type:function size:0x184 scope:global align:4 +cleanup__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBase = .text:0x802B16F4; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1724; // type:function size:0xC4 scope:global align:4 +exec__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBase = .text:0x802B17E8; // type:function size:0x2D8 scope:global align:4 +cleanup__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBase = .text:0x802B1AC0; // type:function size:0x30 scope:global align:4 +init__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1AF0; // type:function size:0x54 scope:global align:4 +exec__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBase = .text:0x802B1B44; // type:function size:0x110 scope:global align:4 +cleanup__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBase = .text:0x802B1C54; // type:function size:0x24 scope:global align:4 +init__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1C78; // type:function size:0x54 scope:global align:4 +exec__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBase = .text:0x802B1CCC; // type:function size:0x110 scope:global align:4 +cleanup__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBase = .text:0x802B1DDC; // type:function size:0x24 scope:global align:4 +init__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1E00; // type:function size:0x4C scope:global align:4 +exec__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBase = .text:0x802B1E4C; // type:function size:0xE0 scope:global align:4 +cleanup__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBase = .text:0x802B1F2C; // type:function size:0x24 scope:global align:4 +init__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B1F50; // type:function size:0x58 scope:global align:4 +exec__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBase = .text:0x802B1FA8; // type:function size:0x110 scope:global align:4 +cleanup__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBase = .text:0x802B20B8; // type:function size:0x30 scope:global align:4 +__sinit_BombSaraiState_cpp = .text:0x802B20E8; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game9BombSarai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802B2110; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game9BombSarai14ProperAnimatorFi = .text:0x802B2118; // type:function size:0x8 scope:global align:4 +__dt__Q34Game9BombSarai14ProperAnimatorFv = .text:0x802B2120; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game9BombSarai14ProperAnimatorFv = .text:0x802B217C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9BombSarai3MgrFiUc = .text:0x802B2184; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9BombSarai3MgrFv = .text:0x802B21D4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game9BombSarai5ParmsFv = .text:0x802B221C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game9BombSarai5Parms11ProperParmsFv = .text:0x802B2264; // type:function size:0x278 scope:weak align:4 +createObj__Q34Game9BombSarai3MgrFi = .text:0x802B24DC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9BombSarai3ObjFv = .text:0x802B253C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9BombSarai3MgrFi = .text:0x802B25F8; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game9BombSarai3MgrFv = .text:0x802B2608; // type:function size:0x68 scope:global align:4 +__dt__Q34Game9BombSarai3MgrFv = .text:0x802B2670; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9BombSarai3MgrFv = .text:0x802B2720; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9BombSarai3MgrFPv = .text:0x802B2728; // type:function size:0x2C scope:weak align:4 +read__Q34Game9BombSarai5ParmsFR6Stream = .text:0x802B2754; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game9BombSarai3MgrFv = .text:0x802B27A4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9BombSarai3ObjFv = .text:0x802B27AC; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game9BombSarai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802B28E4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game9BombSarai3ObjFPQ24Game15CreatureInitArg = .text:0x802B28E8; // type:function size:0x98 scope:global align:4 +onKill__Q34Game9BombSarai3ObjFPQ24Game15CreatureKillArg = .text:0x802B2980; // type:function size:0x50 scope:global align:4 +doUpdate__Q34Game9BombSarai3ObjFv = .text:0x802B29D0; // type:function size:0xA4 scope:global align:4 +doDirectDraw__Q34Game9BombSarai3ObjFR8Graphics = .text:0x802B2A74; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game9BombSarai3ObjFR8Graphics = .text:0x802B2A78; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game9BombSarai3ObjFPQ34Game9BombSarai3FSM = .text:0x802B2A98; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game9BombSarai3ObjFRQ24Game11ShadowParam = .text:0x802B2AE4; // type:function size:0xD4 scope:global align:4 +bombCallBack__Q34Game9BombSarai3ObjFPQ24Game8CreatureR10Vector3f = .text:0x802B2BB8; // type:function size:0x3C scope:global align:4 +doFinishStoneState__Q34Game9BombSarai3ObjFv = .text:0x802B2BF4; // type:function size:0x8C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game9BombSarai3ObjFv = .text:0x802B2C80; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game9BombSarai3ObjFv = .text:0x802B2CB4; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game9BombSarai3ObjFv = .text:0x802B2CE8; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game9BombSarai3ObjFv = .text:0x802B2D10; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game9BombSarai3ObjFv = .text:0x802B2D30; // type:function size:0x20 scope:global align:4 +setHeightVelocity__Q34Game9BombSarai3ObjFb = .text:0x802B2D50; // type:function size:0x1A0 scope:global align:4 +setRandTarget__Q34Game9BombSarai3ObjFv = .text:0x802B2EF0; // type:function size:0x1E8 scope:global align:4 +addPitchRatio__Q34Game9BombSarai3ObjFv = .text:0x802B30D8; // type:function size:0x38 scope:global align:4 +supplyBomb__Q34Game9BombSarai3ObjFv = .text:0x802B3110; // type:function size:0xC8 scope:global align:4 +throwBomb__Q34Game9BombSarai3ObjFR10Vector3 = .text:0x802B31D8; // type:function size:0x78 scope:global align:4 +getAttackablePikmin__Q34Game9BombSarai3ObjFv = .text:0x802B3250; // type:function size:0x70 scope:global align:4 +getNextStateOnHeight__Q34Game9BombSarai3ObjFv = .text:0x802B32C0; // type:function size:0x144 scope:global align:4 +createEffect__Q34Game9BombSarai3ObjFv = .text:0x802B3404; // type:function size:0xB0 scope:global align:4 +setupEffect__Q34Game9BombSarai3ObjFv = .text:0x802B34B4; // type:function size:0x44 scope:global align:4 +createSupliEffect__Q34Game9BombSarai3ObjFv = .text:0x802B34F8; // type:function size:0x34 scope:global align:4 +createBalloonEffect__Q34Game9BombSarai3ObjFi = .text:0x802B352C; // type:function size:0x11C scope:global align:4 +createDownEffect__Q34Game9BombSarai3ObjFf = .text:0x802B3648; // type:function size:0x24 scope:global align:4 +effectDrawOn__Q34Game9BombSarai3ObjFv = .text:0x802B366C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game9BombSarai3ObjFv = .text:0x802B369C; // type:function size:0x30 scope:global align:4 +__dt__Q23efx12TBsaraiSupliFv = .text:0x802B36CC; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game9BombSarai3ObjFPQ24Game8WaterBox = .text:0x802B3768; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game9BombSarai3ObjFv = .text:0x802B376C; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game9BombSarai3ObjFv = .text:0x802B3770; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game9BombSarai3ObjFv = .text:0x802B3778; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TBsaraiSupliFv = .text:0x802B3780; // type:function size:0x8 scope:weak align:4 +init__Q34Game11OtakaraBase3FSMFPQ24Game9EnemyBase = .text:0x802B3788; // type:function size:0x4D4 scope:global align:4 +init__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B3C5C; // type:function size:0x5C scope:global align:4 +exec__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBase = .text:0x802B3CB8; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBase = .text:0x802B3CFC; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B3D00; // type:function size:0x7C scope:global align:4 +startChargeEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B3D7C; // type:function size:0x4 scope:weak align:4 +exec__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBase = .text:0x802B3D80; // type:function size:0x290 scope:global align:4 +createDisChargeEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B4010; // type:function size:0x4 scope:weak align:4 +finishChargeEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B4014; // type:function size:0x4 scope:weak align:4 +cleanup__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBase = .text:0x802B4018; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B403C; // type:function size:0x50 scope:global align:4 +exec__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBase = .text:0x802B408C; // type:function size:0x1CC scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBase = .text:0x802B4258; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B425C; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBase = .text:0x802B42A4; // type:function size:0x244 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBase = .text:0x802B44E8; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B450C; // type:function size:0x58 scope:global align:4 +exec__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBase = .text:0x802B4564; // type:function size:0x264 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBase = .text:0x802B47C8; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B47EC; // type:function size:0x50 scope:global align:4 +exec__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBase = .text:0x802B483C; // type:function size:0x154 scope:global align:4 +cleanup__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBase = .text:0x802B4990; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B49B4; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBase = .text:0x802B49FC; // type:function size:0x1D8 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBase = .text:0x802B4BD4; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B4BD8; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBase = .text:0x802B4C20; // type:function size:0x260 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBase = .text:0x802B4E80; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B4EA4; // type:function size:0x58 scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBase = .text:0x802B4EFC; // type:function size:0x270 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBase = .text:0x802B516C; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5190; // type:function size:0x7C scope:global align:4 +exec__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBase = .text:0x802B520C; // type:function size:0x254 scope:global align:4 +cleanup__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBase = .text:0x802B5460; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5484; // type:function size:0x5C scope:global align:4 +exec__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBase = .text:0x802B54E0; // type:function size:0x1F8 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBase = .text:0x802B56D8; // type:function size:0x2C scope:global align:4 +init__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5704; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B574C; // type:function size:0x1C0 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBase = .text:0x802B590C; // type:function size:0x4 scope:global align:4 +init__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5910; // type:function size:0x48 scope:global align:4 +exec__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B5958; // type:function size:0x1E8 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBase = .text:0x802B5B40; // type:function size:0x24 scope:global align:4 +init__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802B5B64; // type:function size:0x58 scope:global align:4 +exec__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBase = .text:0x802B5BBC; // type:function size:0x224 scope:global align:4 +cleanup__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBase = .text:0x802B5DE0; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game11OtakaraBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802B5E04; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game11OtakaraBase14ProperAnimatorFi = .text:0x802B5E0C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game11OtakaraBase14ProperAnimatorFv = .text:0x802B5E14; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game11OtakaraBase14ProperAnimatorFv = .text:0x802B5E70; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11OtakaraBase3MgrFiUc = .text:0x802B5E78; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game11OtakaraBase3MgrFv = .text:0x802B5EC8; // type:function size:0xBC scope:global align:4 +loadAnimData__Q34Game11OtakaraBase3MgrFv = .text:0x802B5F84; // type:function size:0xB0 scope:global align:4 +createModel__Q34Game11OtakaraBase3MgrFv = .text:0x802B6034; // type:function size:0x138 scope:global align:4 +__dt__Q34Game11OtakaraBase3MgrFv = .text:0x802B616C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11OtakaraBase3MgrFv = .text:0x802B621C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11OtakaraBase3MgrFv = .text:0x802B6224; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11OtakaraBase3ObjFv = .text:0x802B622C; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game11OtakaraBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802B635C; // type:function size:0x4 scope:global align:4 +onInit__Q34Game11OtakaraBase3ObjFPQ24Game15CreatureInitArg = .text:0x802B6360; // type:function size:0x104 scope:global align:4 +getEnemyTypeID__Q34Game11OtakaraBase3ObjFv = .text:0x802B6464; // type:function size:0x8 scope:weak align:4 +setupEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B646C; // type:function size:0x4 scope:weak align:4 +onKill__Q34Game11OtakaraBase3ObjFPQ24Game15CreatureKillArg = .text:0x802B6470; // type:function size:0x5C scope:global align:4 +doUpdate__Q34Game11OtakaraBase3ObjFv = .text:0x802B64CC; // type:function size:0x34 scope:global align:4 +doUpdateCommon__Q34Game11OtakaraBase3ObjFv = .text:0x802B6500; // type:function size:0xF0 scope:global align:4 +startDisChargeSE__Q34Game11OtakaraBase3ObjFv = .text:0x802B65F0; // type:function size:0x4 scope:weak align:4 +doAnimationCullingOff__Q34Game11OtakaraBase3ObjFv = .text:0x802B65F4; // type:function size:0x7C scope:global align:4 +doDirectDraw__Q34Game11OtakaraBase3ObjFR8Graphics = .text:0x802B6670; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11OtakaraBase3ObjFR8Graphics = .text:0x802B6674; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game11OtakaraBase3ObjFPQ34Game11OtakaraBase3FSM = .text:0x802B6694; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game11OtakaraBase3ObjFRQ24Game11ShadowParam = .text:0x802B66E0; // type:function size:0xEC scope:global align:4 +damageCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802B67CC; // type:function size:0x34 scope:global align:4 +hipdropCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802B6800; // type:function size:0x78 scope:global align:4 +earthquakeCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8Creaturef = .text:0x802B6878; // type:function size:0x70 scope:global align:4 +bombCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreatureR10Vector3f = .text:0x802B68E8; // type:function size:0x24 scope:global align:4 +doStartStoneState__Q34Game11OtakaraBase3ObjFv = .text:0x802B690C; // type:function size:0x4C scope:global align:4 +doFinishStoneState__Q34Game11OtakaraBase3ObjFv = .text:0x802B6958; // type:function size:0x4C scope:global align:4 +doStartEarthquakeState__Q34Game11OtakaraBase3ObjFf = .text:0x802B69A4; // type:function size:0x4C scope:global align:4 +doFinishEarthquakeState__Q34Game11OtakaraBase3ObjFv = .text:0x802B69F0; // type:function size:0x4C scope:global align:4 +doStartEarthquakeFitState__Q34Game11OtakaraBase3ObjFv = .text:0x802B6A3C; // type:function size:0x4C scope:global align:4 +doFinishEarthquakeFitState__Q34Game11OtakaraBase3ObjFv = .text:0x802B6A88; // type:function size:0x4C scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game11OtakaraBase3ObjFv = .text:0x802B6AD4; // type:function size:0x40 scope:global align:4 +effectDrawOff__Q34Game11OtakaraBase3ObjFv = .text:0x802B6B14; // type:function size:0x4 scope:weak align:4 +doFinishWaitingBirthTypeDrop__Q34Game11OtakaraBase3ObjFv = .text:0x802B6B18; // type:function size:0x64 scope:global align:4 +effectDrawOn__Q34Game11OtakaraBase3ObjFv = .text:0x802B6B7C; // type:function size:0x4 scope:weak align:4 +startCarcassMotion__Q34Game11OtakaraBase3ObjFv = .text:0x802B6B80; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game11OtakaraBase3ObjFv = .text:0x802B6BA8; // type:function size:0x2C scope:global align:4 +doEndMovie__Q34Game11OtakaraBase3ObjFv = .text:0x802B6BD4; // type:function size:0x2C scope:global align:4 +isMovePositionSet__Q34Game11OtakaraBase3ObjFb = .text:0x802B6C00; // type:function size:0x140 scope:global align:4 +getNearestTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B6D40; // type:function size:0x148 scope:global align:4 +getTargetPosition__Q34Game11OtakaraBase3ObjFPQ24Game8Creature = .text:0x802B6E88; // type:function size:0x1C8 scope:global align:4 +resetTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B7050; // type:function size:0x94 scope:global align:4 +isTakeTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B70E4; // type:function size:0x10C scope:global align:4 +takeTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B71F0; // type:function size:0x24C scope:global align:4 +fallTreasure__Q34Game11OtakaraBase3ObjFb = .text:0x802B743C; // type:function size:0xF8 scope:global align:4 +isDropTreasure__Q34Game11OtakaraBase3ObjFv = .text:0x802B7534; // type:function size:0x28 scope:global align:4 +damageTreasure__Q34Game11OtakaraBase3ObjFf = .text:0x802B755C; // type:function size:0x54 scope:global align:4 +attackTarget__Q34Game11OtakaraBase3ObjFv = .text:0x802B75B0; // type:function size:0x1A8 scope:global align:4 +interactCreature__Q34Game11OtakaraBase3ObjFPQ24Game8Creature = .text:0x802B7758; // type:function size:0x4 scope:weak align:4 +createTreasureFallEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B775C; // type:function size:0x134 scope:global align:4 +startEscapeSE__Q34Game11OtakaraBase3ObjFv = .text:0x802B7890; // type:function size:0x88 scope:global align:4 +initBombOtakara__Q34Game11OtakaraBase3ObjFv = .text:0x802B7918; // type:function size:0xFC scope:global align:4 +isTransitChaseState__Q34Game11OtakaraBase3ObjFv = .text:0x802B7A14; // type:function size:0x68 scope:global align:4 +stimulateBomb__Q34Game11OtakaraBase3ObjFv = .text:0x802B7A7C; // type:function size:0x8C scope:global align:4 +getChaseTargetCreature__Q34Game11OtakaraBase3ObjFv = .text:0x802B7B08; // type:function size:0x38 scope:global align:4 +satisfy__Q24Game30ConditionNotStickClientAndItemFPQ24Game4Piki = .text:0x802B7B40; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game11OtakaraBase3ObjFv = .text:0x802B7BDC; // type:function size:0xBC scope:weak align:4 +getDownSmokeScale__Q34Game11OtakaraBase3ObjFv = .text:0x802B7C98; // type:function size:0x8 scope:weak align:4 +getCellRadius__Q34Game11OtakaraBase3ObjFv = .text:0x802B7CA0; // type:function size:0x8 scope:weak align:4 +createEffect__Q34Game11OtakaraBase3ObjFv = .text:0x802B7CA8; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game11FireOtakara3MgrFiUc = .text:0x802B7CAC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11FireOtakara3MgrFv = .text:0x802B7CFC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game11OtakaraBase5ParmsFv = .text:0x802B7D44; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game11FireOtakara3MgrFi = .text:0x802B7E98; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11FireOtakara3ObjFv = .text:0x802B7EF8; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game11FireOtakara3MgrFi = .text:0x802B7FE8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11FireOtakara3MgrFv = .text:0x802B7FF8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11FireOtakara3MgrFv = .text:0x802B8078; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11FireOtakara3MgrFv = .text:0x802B8140; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11FireOtakara3MgrFv = .text:0x802B8148; // type:function size:0x8 scope:weak align:4 +read__Q34Game11OtakaraBase5ParmsFR6Stream = .text:0x802B8150; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11FireOtakara3MgrFv = .text:0x802B81A0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11FireOtakara3ObjFv = .text:0x802B81A8; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game11FireOtakara3ObjFv = .text:0x802B824C; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game11FireOtakara3ObjFPQ24Game8Creature = .text:0x802B83F0; // type:function size:0x60 scope:global align:4 +createEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B8450; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B84B0; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B84F8; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B852C; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game11FireOtakara3ObjFv = .text:0x802B855C; // type:function size:0xB0 scope:global align:4 +effectDrawOn__Q34Game11FireOtakara3ObjFv = .text:0x802B860C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game11FireOtakara3ObjFv = .text:0x802B863C; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game11FireOtakara3ObjFv = .text:0x802B866C; // type:function size:0x44 scope:global align:4 +forceKill__Q23efx8TSimple5Fv = .text:0x802B86B0; // type:function size:0x4 scope:weak align:4 +fade__Q23efx8TSimple5Fv = .text:0x802B86B4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game11FireOtakara3ObjFv = .text:0x802B86B8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12WaterOtakara3MgrFiUc = .text:0x802B86C0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12WaterOtakara3MgrFv = .text:0x802B8710; // type:function size:0x48 scope:global align:4 +createObj__Q34Game12WaterOtakara3MgrFi = .text:0x802B8758; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12WaterOtakara3ObjFv = .text:0x802B87B8; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game12WaterOtakara3MgrFi = .text:0x802B88A8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game12WaterOtakara3MgrFv = .text:0x802B88B8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game12WaterOtakara3MgrFv = .text:0x802B8938; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game12WaterOtakara3MgrFv = .text:0x802B8A00; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game12WaterOtakara3MgrFv = .text:0x802B8A08; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12WaterOtakara3MgrFv = .text:0x802B8A10; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12WaterOtakara3ObjFv = .text:0x802B8A18; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game12WaterOtakara3ObjFv = .text:0x802B8ABC; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game12WaterOtakara3ObjFPQ24Game8Creature = .text:0x802B8C60; // type:function size:0x60 scope:global align:4 +createEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8CC0; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8D20; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8D68; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8D9C; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game12WaterOtakara3ObjFv = .text:0x802B8DCC; // type:function size:0xA4 scope:global align:4 +effectDrawOn__Q34Game12WaterOtakara3ObjFv = .text:0x802B8E70; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game12WaterOtakara3ObjFv = .text:0x802B8EA0; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game12WaterOtakara3ObjFv = .text:0x802B8ED0; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game12WaterOtakara3ObjFv = .text:0x802B8F14; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10GasOtakara3MgrFiUc = .text:0x802B8F1C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10GasOtakara3MgrFv = .text:0x802B8F6C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game10GasOtakara3MgrFi = .text:0x802B8FB4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10GasOtakara3ObjFv = .text:0x802B9014; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game10GasOtakara3MgrFi = .text:0x802B9104; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game10GasOtakara3MgrFv = .text:0x802B9114; // type:function size:0x80 scope:global align:4 +__dt__Q34Game10GasOtakara3MgrFv = .text:0x802B9194; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game10GasOtakara3MgrFv = .text:0x802B925C; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game10GasOtakara3MgrFv = .text:0x802B9264; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10GasOtakara3MgrFv = .text:0x802B926C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10GasOtakara3ObjFv = .text:0x802B9274; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game10GasOtakara3ObjFv = .text:0x802B9318; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game10GasOtakara3ObjFPQ24Game8Creature = .text:0x802B94BC; // type:function size:0x60 scope:global align:4 +createEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B951C; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B957C; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B95C4; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B95F8; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game10GasOtakara3ObjFv = .text:0x802B9628; // type:function size:0x8C scope:global align:4 +effectDrawOn__Q34Game10GasOtakara3ObjFv = .text:0x802B96B4; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game10GasOtakara3ObjFv = .text:0x802B96E4; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game10GasOtakara3ObjFv = .text:0x802B9714; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game10GasOtakara3ObjFv = .text:0x802B9758; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11ElecOtakara3MgrFiUc = .text:0x802B9760; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11ElecOtakara3MgrFv = .text:0x802B97B0; // type:function size:0x48 scope:global align:4 +createObj__Q34Game11ElecOtakara3MgrFi = .text:0x802B97F8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11ElecOtakara3ObjFv = .text:0x802B9858; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game11ElecOtakara3MgrFi = .text:0x802B9948; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11ElecOtakara3MgrFv = .text:0x802B9958; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11ElecOtakara3MgrFv = .text:0x802B99D8; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11ElecOtakara3MgrFv = .text:0x802B9AA0; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11ElecOtakara3MgrFv = .text:0x802B9AA8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11ElecOtakara3MgrFv = .text:0x802B9AB0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11ElecOtakara3ObjFv = .text:0x802B9AB8; // type:function size:0xA4 scope:global align:4 +changeMaterial__Q34Game11ElecOtakara3ObjFv = .text:0x802B9B5C; // type:function size:0x1A4 scope:global align:4 +interactCreature__Q34Game11ElecOtakara3ObjFPQ24Game8Creature = .text:0x802B9D00; // type:function size:0x168 scope:global align:4 +createEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9E68; // type:function size:0x60 scope:global align:4 +setupEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9EC8; // type:function size:0x48 scope:global align:4 +startChargeEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9F10; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9F44; // type:function size:0x30 scope:global align:4 +createDisChargeEffect__Q34Game11ElecOtakara3ObjFv = .text:0x802B9F74; // type:function size:0x98 scope:global align:4 +effectDrawOn__Q34Game11ElecOtakara3ObjFv = .text:0x802BA00C; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game11ElecOtakara3ObjFv = .text:0x802BA03C; // type:function size:0x30 scope:global align:4 +startDisChargeSE__Q34Game11ElecOtakara3ObjFv = .text:0x802BA06C; // type:function size:0x44 scope:global align:4 +getEnemyTypeID__Q34Game11ElecOtakara3ObjFv = .text:0x802BA0B0; // type:function size:0x8 scope:weak align:4 +init__Q34Game8Imomushi3FSMFPQ24Game9EnemyBase = .text:0x802BA0B8; // type:function size:0x4D4 scope:global align:4 +init__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA58C; // type:function size:0x50 scope:global align:4 +exec__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBase = .text:0x802BA5DC; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBase = .text:0x802BA620; // type:function size:0x4 scope:global align:4 +init__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA624; // type:function size:0x4C scope:global align:4 +exec__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBase = .text:0x802BA670; // type:function size:0x140 scope:global align:4 +cleanup__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBase = .text:0x802BA7B0; // type:function size:0x4 scope:global align:4 +init__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA7B4; // type:function size:0x4C scope:global align:4 +exec__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBase = .text:0x802BA800; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBase = .text:0x802BA978; // type:function size:0x4 scope:global align:4 +init__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BA97C; // type:function size:0xC8 scope:global align:4 +exec__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBase = .text:0x802BAA44; // type:function size:0xA8 scope:global align:4 +cleanup__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBase = .text:0x802BAAEC; // type:function size:0x90 scope:global align:4 +init__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BAB7C; // type:function size:0x80 scope:global align:4 +exec__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBase = .text:0x802BABFC; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBase = .text:0x802BACD4; // type:function size:0x3C scope:global align:4 +init__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BAD10; // type:function size:0x74 scope:global align:4 +exec__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBase = .text:0x802BAD84; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBase = .text:0x802BADD4; // type:function size:0x3C scope:global align:4 +init__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BAE10; // type:function size:0x48 scope:global align:4 +exec__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBase = .text:0x802BAE58; // type:function size:0x238 scope:global align:4 +cleanup__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBase = .text:0x802BB090; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB0B4; // type:function size:0x48 scope:global align:4 +exec__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBase = .text:0x802BB0FC; // type:function size:0x14C scope:global align:4 +cleanup__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBase = .text:0x802BB248; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB26C; // type:function size:0x14C scope:global align:4 +exec__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBase = .text:0x802BB3B8; // type:function size:0x170 scope:global align:4 +cleanup__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBase = .text:0x802BB528; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB54C; // type:function size:0x9C scope:global align:4 +exec__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBase = .text:0x802BB5E8; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBase = .text:0x802BB744; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB768; // type:function size:0x94 scope:global align:4 +exec__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBase = .text:0x802BB7FC; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBase = .text:0x802BB934; // type:function size:0x24 scope:global align:4 +init__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BB958; // type:function size:0x6C scope:global align:4 +exec__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBase = .text:0x802BB9C4; // type:function size:0x58 scope:global align:4 +cleanup__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBase = .text:0x802BBA1C; // type:function size:0x30 scope:global align:4 +init__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BBA4C; // type:function size:0x5C scope:global align:4 +exec__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBase = .text:0x802BBAA8; // type:function size:0x50 scope:global align:4 +cleanup__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBase = .text:0x802BBAF8; // type:function size:0x10 scope:global align:4 +init__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BBB08; // type:function size:0x58 scope:global align:4 +exec__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBase = .text:0x802BBB60; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBase = .text:0x802BBC1C; // type:function size:0x24 scope:global align:4 +setAnimMgr__Q34Game8Imomushi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802BBC40; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8Imomushi14ProperAnimatorFi = .text:0x802BBC48; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8Imomushi14ProperAnimatorFv = .text:0x802BBC50; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8Imomushi14ProperAnimatorFv = .text:0x802BBCAC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Imomushi3MgrFiUc = .text:0x802BBCB4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8Imomushi3MgrFv = .text:0x802BBD04; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8Imomushi5ParmsFv = .text:0x802BBD4C; // type:function size:0x190 scope:weak align:4 +createObj__Q34Game8Imomushi3MgrFi = .text:0x802BBEDC; // type:function size:0x60 scope:global align:4 +__dt__Q34Game8Imomushi3ObjFv = .text:0x802BBF3C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8Imomushi3MgrFi = .text:0x802BBFF8; // type:function size:0x10 scope:global align:4 +read__Q34Game8Imomushi5ParmsFR6Stream = .text:0x802BC008; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game8Imomushi3MgrFv = .text:0x802BC058; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8Imomushi3MgrFv = .text:0x802BC108; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Imomushi3MgrFv = .text:0x802BC110; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8Imomushi3ObjFv = .text:0x802BC118; // type:function size:0x138 scope:global align:4 +setInitialSetting__Q34Game8Imomushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802BC250; // type:function size:0x4 scope:global align:4 +onInit__Q34Game8Imomushi3ObjFPQ24Game15CreatureInitArg = .text:0x802BC254; // type:function size:0xE8 scope:global align:4 +onKill__Q34Game8Imomushi3ObjFPQ24Game15CreatureKillArg = .text:0x802BC33C; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game8Imomushi3ObjFv = .text:0x802BC380; // type:function size:0x34 scope:global align:4 +doAnimationStick__Q34Game8Imomushi3ObjFv = .text:0x802BC3B4; // type:function size:0x4D0 scope:global align:4 +doDirectDraw__Q34Game8Imomushi3ObjFR8Graphics = .text:0x802BC884; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8Imomushi3ObjFR8Graphics = .text:0x802BC888; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game8Imomushi3ObjFPQ34Game8Imomushi3FSM = .text:0x802BC8A8; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game8Imomushi3ObjFRQ24Game11ShadowParam = .text:0x802BC8F4; // type:function size:0xD0 scope:global align:4 +earthquakeCallBack__Q34Game8Imomushi3ObjFPQ24Game8Creaturef = .text:0x802BC9C4; // type:function size:0x64 scope:global align:4 +dropCallBack__Q34Game8Imomushi3ObjFPQ24Game8Creature = .text:0x802BCA28; // type:function size:0x80 scope:global align:4 +doStartStoneState__Q34Game8Imomushi3ObjFv = .text:0x802BCAA8; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game8Imomushi3ObjFv = .text:0x802BCADC; // type:function size:0x4C scope:global align:4 +doStartEarthquakeState__Q34Game8Imomushi3ObjFf = .text:0x802BCB28; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeState__Q34Game8Imomushi3ObjFv = .text:0x802BCB5C; // type:function size:0x4C scope:global align:4 +doStartEarthquakeFitState__Q34Game8Imomushi3ObjFv = .text:0x802BCBA8; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeFitState__Q34Game8Imomushi3ObjFv = .text:0x802BCBDC; // type:function size:0x4C scope:global align:4 +startCarcassMotion__Q34Game8Imomushi3ObjFv = .text:0x802BCC28; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game8Imomushi3ObjFv = .text:0x802BCC50; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game8Imomushi3ObjFv = .text:0x802BCC70; // type:function size:0x20 scope:global align:4 +lifeIncrement__Q34Game8Imomushi3ObjFv = .text:0x802BCC90; // type:function size:0x24 scope:global align:4 +resetZukanStateTimer__Q34Game8Imomushi3ObjFv = .text:0x802BCCB4; // type:function size:0xAC scope:global align:4 +resetStickDiff__Q34Game8Imomushi3ObjFv = .text:0x802BCD60; // type:function size:0x10 scope:global align:4 +setStickDiff__Q34Game8Imomushi3ObjFff = .text:0x802BCD70; // type:function size:0x1C scope:global align:4 +getRandFruitsPlant__Q34Game8Imomushi3ObjFv = .text:0x802BCD8C; // type:function size:0x31C scope:global align:4 +startClimbPlant__Q34Game8Imomushi3ObjFP8CollPart = .text:0x802BD0A8; // type:function size:0xC8 scope:global align:4 +moveStickTube__Q34Game8Imomushi3ObjFv = .text:0x802BD170; // type:function size:0x30 scope:global align:4 +moveStickSphere__Q34Game8Imomushi3ObjFv = .text:0x802BD1A0; // type:function size:0xCC scope:global align:4 +eatTsuyukusa__Q34Game8Imomushi3ObjFv = .text:0x802BD26C; // type:function size:0x19C scope:global align:4 +isAttackable__Q34Game8Imomushi3ObjFv = .text:0x802BD408; // type:function size:0x74 scope:global align:4 +isStickToFall__Q34Game8Imomushi3ObjFv = .text:0x802BD47C; // type:function size:0x4C scope:global align:4 +setZukanTargetPosition__Q34Game8Imomushi3ObjFv = .text:0x802BD4C8; // type:function size:0x188 scope:global align:4 +isInZukanTargetArea__Q34Game8Imomushi3ObjFv = .text:0x802BD650; // type:function size:0x34 scope:global align:4 +createEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD684; // type:function size:0x13C scope:global align:4 +setupEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD7C0; // type:function size:0x40 scope:global align:4 +createAppearEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD800; // type:function size:0x8C scope:global align:4 +createDisAppearEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD88C; // type:function size:0x8C scope:global align:4 +startMoveTraceEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD918; // type:function size:0x84 scope:global align:4 +finishMoveTraceEffect__Q34Game8Imomushi3ObjFv = .text:0x802BD99C; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game8Imomushi3ObjFv = .text:0x802BD9CC; // type:function size:0x50 scope:global align:4 +effectDrawOff__Q34Game8Imomushi3ObjFv = .text:0x802BDA1C; // type:function size:0x50 scope:global align:4 +getName__Q23efx9ArgImoEatFv = .text:0x802BDA6C; // type:function size:0xC scope:weak align:4 +isUnderground__Q34Game8Imomushi3ObjFv = .text:0x802BDA78; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game8Imomushi3ObjFv = .text:0x802BDA80; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game8Imomushi3ObjFv = .text:0x802BDA88; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Houdai3FSMFPQ24Game9EnemyBase = .text:0x802BDA90; // type:function size:0x278 scope:global align:4 +init__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BDD08; // type:function size:0xBC scope:global align:4 +exec__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBase = .text:0x802BDDC4; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBase = .text:0x802BDE7C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BDE80; // type:function size:0x78 scope:global align:4 +exec__Q34Game6Houdai9StateStayFPQ24Game9EnemyBase = .text:0x802BDEF8; // type:function size:0xC4 scope:global align:4 +cleanup__Q34Game6Houdai9StateStayFPQ24Game9EnemyBase = .text:0x802BDFBC; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BDFC0; // type:function size:0xE4 scope:global align:4 +exec__Q34Game6Houdai9StateLandFPQ24Game9EnemyBase = .text:0x802BE0A4; // type:function size:0x2F0 scope:global align:4 +cleanup__Q34Game6Houdai9StateLandFPQ24Game9EnemyBase = .text:0x802BE394; // type:function size:0x50 scope:global align:4 +init__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE3E4; // type:function size:0x98 scope:global align:4 +exec__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBase = .text:0x802BE47C; // type:function size:0x118 scope:global align:4 +cleanup__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBase = .text:0x802BE594; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE598; // type:function size:0x64 scope:global align:4 +exec__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBase = .text:0x802BE5FC; // type:function size:0xF0 scope:global align:4 +cleanup__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBase = .text:0x802BE6EC; // type:function size:0x24 scope:global align:4 +init__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE710; // type:function size:0x98 scope:global align:4 +exec__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBase = .text:0x802BE7A8; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBase = .text:0x802BE8A8; // type:function size:0x4 scope:global align:4 +init__Q34Game6Houdai9StateShotFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802BE8AC; // type:function size:0x90 scope:global align:4 +exec__Q34Game6Houdai9StateShotFPQ24Game9EnemyBase = .text:0x802BE93C; // type:function size:0x3B0 scope:global align:4 +cleanup__Q34Game6Houdai9StateShotFPQ24Game9EnemyBase = .text:0x802BECEC; // type:function size:0x38 scope:global align:4 +__sinit_HoudaiState_cpp = .text:0x802BED24; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game6Houdai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802BED4C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Houdai14ProperAnimatorFi = .text:0x802BED54; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Houdai14ProperAnimatorFv = .text:0x802BED5C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Houdai14ProperAnimatorFv = .text:0x802BEDB8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Houdai3MgrFiUc = .text:0x802BEDC0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Houdai3MgrFv = .text:0x802BEE10; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Houdai5ParmsFv = .text:0x802BEE58; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game6Houdai5Parms11ProperParmsFv = .text:0x802BEEA0; // type:function size:0x2EC scope:weak align:4 +createObj__Q34Game6Houdai3MgrFi = .text:0x802BF18C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game6Houdai3ObjFv = .text:0x802BF1EC; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Houdai3MgrFi = .text:0x802BF2A8; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game6Houdai3MgrFv = .text:0x802BF2B8; // type:function size:0x68 scope:global align:4 +__dt__Q34Game6Houdai3MgrFv = .text:0x802BF320; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Houdai3MgrFv = .text:0x802BF3D0; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Houdai3MgrFPv = .text:0x802BF3D8; // type:function size:0x2C scope:weak align:4 +read__Q34Game6Houdai5ParmsFR6Stream = .text:0x802BF404; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Houdai3MgrFv = .text:0x802BF454; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Houdai15HoudaiShadowMgrFPQ34Game6Houdai3Obj = .text:0x802BF45C; // type:function size:0x27C scope:global align:4 +init__Q34Game6Houdai15HoudaiShadowMgrFv = .text:0x802BF6D8; // type:function size:0x1B0 scope:global align:4 +setJointPosPtr__Q34Game6Houdai15HoudaiShadowMgrFiiP10Vector3 = .text:0x802BF888; // type:function size:0x18 scope:global align:4 +update__Q34Game6Houdai15HoudaiShadowMgrFv = .text:0x802BF8A0; // type:function size:0x3F0 scope:global align:4 +invokeOnGround__Q34Game6Houdai20HoudaiGroundCallBackFiPQ24Game8WaterBox = .text:0x802BFC90; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game6Houdai20HoudaiGroundCallBackFiPQ24Game8WaterBox = .text:0x802BFCB4; // type:function size:0x24 scope:global align:4 +__ct__Q34Game6Houdai3ObjFv = .text:0x802BFCD8; // type:function size:0x16C scope:global align:4 +setInitialSetting__Q34Game6Houdai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802BFE44; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Houdai3ObjFPQ24Game15CreatureInitArg = .text:0x802BFE48; // type:function size:0x144 scope:global align:4 +onKill__Q34Game6Houdai3ObjFPQ24Game15CreatureKillArg = .text:0x802BFF8C; // type:function size:0x54 scope:global align:4 +setParameters__Q34Game6Houdai3ObjFv = .text:0x802BFFE0; // type:function size:0x88 scope:global align:4 +doUpdate__Q34Game6Houdai3ObjFv = .text:0x802C0068; // type:function size:0xB4 scope:global align:4 +doUpdateCommon__Q34Game6Houdai3ObjFv = .text:0x802C011C; // type:function size:0x3C scope:global align:4 +doAnimationCullingOff__Q34Game6Houdai3ObjFv = .text:0x802C0158; // type:function size:0xA0 scope:global align:4 +doDirectDraw__Q34Game6Houdai3ObjFR8Graphics = .text:0x802C01F8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Houdai3ObjFR8Graphics = .text:0x802C01FC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Houdai3ObjFPQ34Game6Houdai3FSM = .text:0x802C021C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Houdai3ObjFRQ24Game11ShadowParam = .text:0x802C0268; // type:function size:0x3C scope:global align:4 +damageCallBack__Q34Game6Houdai3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802C02A4; // type:function size:0xB4 scope:global align:4 +doStartStoneState__Q34Game6Houdai3ObjFv = .text:0x802C0358; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game6Houdai3ObjFv = .text:0x802C03AC; // type:function size:0x78 scope:global align:4 +doStartMovie__Q34Game6Houdai3ObjFv = .text:0x802C0424; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game6Houdai3ObjFv = .text:0x802C0444; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game6Houdai3ObjFP10Vector3 = .text:0x802C0464; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game6Houdai3ObjFP10Vector3 = .text:0x802C04B4; // type:function size:0x14 scope:global align:4 +setTargetPattern__Q34Game6Houdai3ObjFv = .text:0x802C04C8; // type:function size:0xC8 scope:global align:4 +getTargetPosition__Q34Game6Houdai3ObjFv = .text:0x802C0590; // type:function size:0x298 scope:global align:4 +setShotGunTargetPosition__Q34Game6Houdai3ObjFv = .text:0x802C0828; // type:function size:0x234 scope:global align:4 +createIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0A5C; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0B68; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game6Houdai3ObjFv = .text:0x802C0C8C; // type:function size:0x90 scope:global align:4 +setIKSystemTargetPosition__Q34Game6Houdai3ObjFR10Vector3 = .text:0x802C0D1C; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0D3C; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0D9C; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game6Houdai3ObjFv = .text:0x802C0DFC; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game6Houdai3ObjFv = .text:0x802C0E20; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0E44; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0E68; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0E8C; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game6Houdai3ObjFv = .text:0x802C0EB0; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game6Houdai3ObjFv = .text:0x802C0ED4; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game6Houdai3ObjFv = .text:0x802C0EF8; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game6Houdai3ObjFv = .text:0x802C0F1C; // type:function size:0x20 scope:global align:4 +createShadowSystem__Q34Game6Houdai3ObjFv = .text:0x802C0F3C; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game6Houdai3ObjFv = .text:0x802C0F84; // type:function size:0x74 scope:global align:4 +doAnimationShadowSystem__Q34Game6Houdai3ObjFv = .text:0x802C0FF8; // type:function size:0x24 scope:global align:4 +setShotGunEmitKeepTimerOn__Q34Game6Houdai3ObjFv = .text:0x802C101C; // type:function size:0x78 scope:global align:4 +setShotGunEmitKeepTimerOff__Q34Game6Houdai3ObjFv = .text:0x802C1094; // type:function size:0x78 scope:global align:4 +updateShotGunTimer__Q34Game6Houdai3ObjFv = .text:0x802C110C; // type:function size:0x30 scope:global align:4 +isTransitShotGunState__Q34Game6Houdai3ObjFv = .text:0x802C113C; // type:function size:0x1C scope:global align:4 +createShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1158; // type:function size:0x48 scope:global align:4 +setupShotGun__Q34Game6Houdai3ObjFv = .text:0x802C11A0; // type:function size:0x24 scope:global align:4 +setShotGunTarget__Q34Game6Houdai3ObjFR10Vector3 = .text:0x802C11C4; // type:function size:0x24 scope:global align:4 +resetShotGunCallBack__Q34Game6Houdai3ObjFv = .text:0x802C11E8; // type:function size:0x24 scope:global align:4 +setShotGunCallBack__Q34Game6Houdai3ObjFv = .text:0x802C120C; // type:function size:0x24 scope:global align:4 +doUpdateShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1230; // type:function size:0x24 scope:global align:4 +doUpdateCommonShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1254; // type:function size:0x24 scope:global align:4 +startShotGunRotation__Q34Game6Houdai3ObjFv = .text:0x802C1278; // type:function size:0x24 scope:global align:4 +finishShotGunRotation__Q34Game6Houdai3ObjFv = .text:0x802C129C; // type:function size:0x24 scope:global align:4 +isShotGunRotation__Q34Game6Houdai3ObjFv = .text:0x802C12C0; // type:function size:0x24 scope:global align:4 +isShotGunLockOn__Q34Game6Houdai3ObjFv = .text:0x802C12E4; // type:function size:0x24 scope:global align:4 +isFinishShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1308; // type:function size:0x24 scope:global align:4 +emitShotGun__Q34Game6Houdai3ObjFv = .text:0x802C132C; // type:function size:0x5C scope:global align:4 +forceFinishShotGun__Q34Game6Houdai3ObjFv = .text:0x802C1388; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game6Houdai3ObjFv = .text:0x802C13AC; // type:function size:0x38 scope:global align:4 +startBossChargeBGM__Q34Game6Houdai3ObjFv = .text:0x802C13E4; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C14AC; // type:function size:0xDC scope:global align:4 +finishBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C1588; // type:function size:0xD8 scope:global align:4 +startStoneStateBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C1660; // type:function size:0xD4 scope:global align:4 +finishStoneStateBossAttackLoopBGM__Q34Game6Houdai3ObjFv = .text:0x802C1734; // type:function size:0xD4 scope:global align:4 +startBossFlickBGM__Q34Game6Houdai3ObjFv = .text:0x802C1808; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game6Houdai3ObjFv = .text:0x802C18D0; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game6Houdai3ObjFv = .text:0x802C19CC; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game6Houdai3ObjFv = .text:0x802C1A88; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game6Houdai3ObjFv = .text:0x802C1B44; // type:function size:0x5CC scope:global align:4 +setupEffect__Q34Game6Houdai3ObjFv = .text:0x802C2110; // type:function size:0x1A8 scope:global align:4 +createOnGroundEffect__Q34Game6Houdai3ObjFiPQ24Game8WaterBox = .text:0x802C22B8; // type:function size:0x384 scope:global align:4 +createOffGroundEffect__Q34Game6Houdai3ObjFiPQ24Game8WaterBox = .text:0x802C263C; // type:function size:0x168 scope:global align:4 +startPinchJointEffect__Q34Game6Houdai3ObjFv = .text:0x802C27A4; // type:function size:0x5C scope:global align:4 +finishPinchJointEffect__Q34Game6Houdai3ObjFv = .text:0x802C2800; // type:function size:0x58 scope:global align:4 +createHoudaiDeadEffect__Q34Game6Houdai3ObjFv = .text:0x802C2858; // type:function size:0x194 scope:global align:4 +updatePinchLife__Q34Game6Houdai3ObjFv = .text:0x802C29EC; // type:function size:0x120 scope:global align:4 +createAppearEffect__Q34Game6Houdai3ObjFv = .text:0x802C2B0C; // type:function size:0xF0 scope:global align:4 +createAppearHahenEffect__Q34Game6Houdai3ObjFv = .text:0x802C2BFC; // type:function size:0x34 scope:global align:4 +createAppearFootEffect__Q34Game6Houdai3ObjFi = .text:0x802C2C30; // type:function size:0x3C scope:global align:4 +startSteamEffect__Q34Game6Houdai3ObjFb = .text:0x802C2C6C; // type:function size:0x7C scope:global align:4 +finishSteamEffect__Q34Game6Houdai3ObjFv = .text:0x802C2CE8; // type:function size:0x6C scope:global align:4 +startChimneyEffect__Q34Game6Houdai3ObjFv = .text:0x802C2D54; // type:function size:0x5C scope:global align:4 +finishChimneyEffect__Q34Game6Houdai3ObjFv = .text:0x802C2DB0; // type:function size:0x58 scope:global align:4 +createShotGunOpenEffect__Q34Game6Houdai3ObjFv = .text:0x802C2E08; // type:function size:0x90 scope:global align:4 +createDeadBombEffect__Q34Game6Houdai3ObjFv = .text:0x802C2E98; // type:function size:0x258 scope:global align:4 +effectDrawOn__Q34Game6Houdai3ObjFv = .text:0x802C30F0; // type:function size:0x17C scope:global align:4 +effectDrawOff__Q34Game6Houdai3ObjFv = .text:0x802C326C; // type:function size:0x17C scope:global align:4 +getName__Q23efx9ArgPosPosFv = .text:0x802C33E8; // type:function size:0xC scope:weak align:4 +__dt__Q23efx13THdamaSteamBdFv = .text:0x802C33F4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14THdamaOnSteam1Fv = .text:0x802C3490; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14THdamaOnHahen1Fv = .text:0x802C352C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11THdamaHahenFv = .text:0x802C35C8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13THdamaSteamStFv = .text:0x802C3664; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11THdamaSteamFv = .text:0x802C3700; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14THdamaOnHahen2Fv = .text:0x802C379C; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game6Houdai3ObjFPQ24Game8WaterBox = .text:0x802C3838; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game6Houdai3ObjFv = .text:0x802C383C; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game6Houdai3ObjFv = .text:0x802C3840; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game6Houdai3ObjFv = .text:0x802C3848; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Houdai3ObjFv = .text:0x802C384C; // type:function size:0x8 scope:weak align:4 +__sinit_Houdai_cpp = .text:0x802C3854; // type:function size:0x28 scope:local align:4 +@1056@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802C387C; // type:function size:0x14 scope:weak align:4 +@1056@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802C3890; // type:function size:0x14 scope:weak align:4 +@1056@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802C38A4; // type:function size:0x14 scope:weak align:4 +@1056@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802C38B8; // type:function size:0x14 scope:weak align:4 +@1056@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802C38CC; // type:function size:0x14 scope:weak align:4 +@1056@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802C38E0; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14THdamaOnHahen2Fv = .text:0x802C38F4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11THdamaSteamFv = .text:0x802C38FC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13THdamaSteamStFv = .text:0x802C3904; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11THdamaHahenFv = .text:0x802C390C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14THdamaOnHahen1Fv = .text:0x802C3914; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14THdamaOnSteam1Fv = .text:0x802C391C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13THdamaSteamBdFv = .text:0x802C3924; // type:function size:0x8 scope:weak align:4 +levelRotationCallBack__Q24Game6HoudaiFP8J3DJointi = .text:0x802C392C; // type:function size:0x3C scope:local align:4 +verticalRotationCallBack__Q24Game6HoudaiFP8J3DJointi = .text:0x802C3968; // type:function size:0x3C scope:local align:4 +update__Q34Game6Houdai17HoudaiShotGunNodeFv = .text:0x802C39A4; // type:function size:0xB10 scope:global align:4 +__ct__Q34Game6Houdai16HoudaiShotGunMgrFPQ34Game6Houdai3Obj = .text:0x802C44B4; // type:function size:0x240 scope:global align:4 +setupShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C46F4; // type:function size:0xB4 scope:global align:4 +resetCallBack__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47A8; // type:function size:0xC scope:global align:4 +setCallBack__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47B4; // type:function size:0x8 scope:global align:4 +startRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47BC; // type:function size:0x24 scope:global align:4 +finishRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47E0; // type:function size:0x14 scope:global align:4 +isShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47F4; // type:function size:0x8 scope:global align:4 +isShotGunLockOn__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C47FC; // type:function size:0x8 scope:global align:4 +isFinishShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4804; // type:function size:0x8 scope:global align:4 +setShotGunTarget__Q34Game6Houdai16HoudaiShotGunMgrFR10Vector3 = .text:0x802C480C; // type:function size:0x1C scope:global align:4 +emitShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4828; // type:function size:0x3C0 scope:global align:4 +doUpdate__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4BE8; // type:function size:0x84 scope:global align:4 +doUpdateCommon__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4C6C; // type:function size:0x78 scope:global align:4 +forceFinishShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4CE4; // type:function size:0x84 scope:global align:4 +searchShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4D68; // type:function size:0x234 scope:global align:4 +returnShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C4F9C; // type:function size:0x178 scope:global align:4 +rotateLevel__Q34Game6Houdai16HoudaiShotGunMgrFP8J3DJoint = .text:0x802C5114; // type:function size:0x68 scope:global align:4 +rotateVertical__Q34Game6Houdai16HoudaiShotGunMgrFP8J3DJoint = .text:0x802C517C; // type:function size:0x258 scope:global align:4 +finishLockOnEffect__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C53D4; // type:function size:0x30 scope:global align:4 +setShotGunLockOnPosition__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C5404; // type:function size:0x250 scope:global align:4 +effectDrawOn__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C5654; // type:function size:0x9C scope:global align:4 +effectDrawOff__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C56F0; // type:function size:0x9C scope:global align:4 +startStoneStateEffectOff__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C578C; // type:function size:0x30 scope:global align:4 +finishStoneStateEffectOn__Q34Game6Houdai16HoudaiShotGunMgrFv = .text:0x802C57BC; // type:function size:0x30 scope:global align:4 +__dt__Q23efx11THdamaSightFv = .text:0x802C57EC; // type:function size:0x9C scope:weak align:4 +getName__Q23efx6ArgDirFv = .text:0x802C5888; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game6Houdai17HoudaiShotGunNodeFv = .text:0x802C5890; // type:function size:0x60 scope:weak align:4 +@4@__dt__Q23efx11THdamaSightFv = .text:0x802C58F0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10LeafChappy3MgrFiUc = .text:0x802C58F8; // type:function size:0x50 scope:global align:4 +birth__Q34Game10LeafChappy3MgrFRQ24Game13EnemyBirthArg = .text:0x802C5948; // type:function size:0x48 scope:global align:4 +doAlloc__Q34Game10LeafChappy3MgrFv = .text:0x802C5990; // type:function size:0x48 scope:global align:4 +createObj__Q34Game10LeafChappy3MgrFi = .text:0x802C59D8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10LeafChappy3ObjFv = .text:0x802C5A38; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game10LeafChappy3MgrFi = .text:0x802C5B28; // type:function size:0x10 scope:global align:4 +__dt__Q34Game10LeafChappy3MgrFv = .text:0x802C5B38; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10LeafChappy3MgrFv = .text:0x802C5BE8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10LeafChappy3MgrFv = .text:0x802C5BF0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10LeafChappy3ObjFv = .text:0x802C5BF8; // type:function size:0x98 scope:global align:4 +doUpdate__Q34Game10LeafChappy3ObjFv = .text:0x802C5C90; // type:function size:0xC0 scope:global align:4 +doDirectDraw__Q34Game10LeafChappy3ObjFR8Graphics = .text:0x802C5D50; // type:function size:0x4 scope:global align:4 +getShadowParam__Q34Game10LeafChappy3ObjFRQ24Game11ShadowParam = .text:0x802C5D54; // type:function size:0xC4 scope:global align:4 +initMouthSlots__Q34Game10LeafChappy3ObjFv = .text:0x802C5E18; // type:function size:0xB4 scope:global align:4 +initWalkSmokeEffect__Q34Game10LeafChappy3ObjFv = .text:0x802C5ECC; // type:function size:0x64 scope:global align:4 +doBecomeCarcass__Q34Game10LeafChappy3ObjFv = .text:0x802C5F30; // type:function size:0x20 scope:global align:4 +doUpdateCarcass__Q34Game10LeafChappy3ObjFv = .text:0x802C5F50; // type:function size:0x20 scope:global align:4 +doGetLifeGaugeParam__Q34Game10LeafChappy3ObjFRQ24Game14LifeGaugeParam = .text:0x802C5F70; // type:function size:0x20 scope:global align:4 +birthChildren__Q34Game10LeafChappy3ObjFRQ24Game13EnemyBirthArg = .text:0x802C5F90; // type:function size:0x244 scope:global align:4 +startEnemyRumble__Q34Game10LeafChappy3ObjFv = .text:0x802C61D4; // type:function size:0x7C scope:global align:4 +createFootmarks__Q34Game10LeafChappy3ObjFv = .text:0x802C6250; // type:function size:0x50 scope:global align:4 +getDownSmokeScale__Q34Game10LeafChappy3ObjFv = .text:0x802C62A0; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game10LeafChappy3ObjFv = .text:0x802C62A8; // type:function size:0x8 scope:weak align:4 +createChappyRelation__Q34Game10LeafChappy3ObjFv = .text:0x802C62B0; // type:function size:0x4 scope:weak align:4 +resetChappyRelation__Q34Game10LeafChappy3ObjFv = .text:0x802C62B4; // type:function size:0x4 scope:weak align:4 +getChappyRelation__Q34Game10LeafChappy3ObjFv = .text:0x802C62B8; // type:function size:0x8 scope:weak align:4 +getFootmarks__Q34Game10LeafChappy3ObjFv = .text:0x802C62C0; // type:function size:0x8 scope:weak align:4 +init__Q34Game7BigFoot3FSMFPQ24Game9EnemyBase = .text:0x802C62C8; // type:function size:0x224 scope:global align:4 +init__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C64EC; // type:function size:0xCC scope:global align:4 +exec__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBase = .text:0x802C65B8; // type:function size:0x94 scope:global align:4 +cleanup__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBase = .text:0x802C664C; // type:function size:0x4 scope:global align:4 +init__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6650; // type:function size:0x84 scope:global align:4 +exec__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBase = .text:0x802C66D4; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBase = .text:0x802C678C; // type:function size:0x4 scope:global align:4 +init__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6790; // type:function size:0xB4 scope:global align:4 +exec__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBase = .text:0x802C6844; // type:function size:0x178 scope:global align:4 +cleanup__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBase = .text:0x802C69BC; // type:function size:0x5C scope:global align:4 +init__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6A18; // type:function size:0x70 scope:global align:4 +exec__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBase = .text:0x802C6A88; // type:function size:0xF4 scope:global align:4 +cleanup__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBase = .text:0x802C6B7C; // type:function size:0x4 scope:global align:4 +init__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6B80; // type:function size:0x6C scope:global align:4 +exec__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBase = .text:0x802C6BEC; // type:function size:0xC0 scope:global align:4 +cleanup__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBase = .text:0x802C6CAC; // type:function size:0x48 scope:global align:4 +init__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802C6CF4; // type:function size:0x70 scope:global align:4 +exec__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBase = .text:0x802C6D64; // type:function size:0x100 scope:global align:4 +cleanup__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBase = .text:0x802C6E64; // type:function size:0x38 scope:global align:4 +__sinit_BigFootState_cpp = .text:0x802C6E9C; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game7BigFoot14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802C6EC4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7BigFoot14ProperAnimatorFi = .text:0x802C6ECC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7BigFoot14ProperAnimatorFv = .text:0x802C6ED4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7BigFoot14ProperAnimatorFv = .text:0x802C6F30; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7BigFoot3MgrFiUc = .text:0x802C6F38; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7BigFoot3MgrFv = .text:0x802C6F88; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7BigFoot5ParmsFv = .text:0x802C6FD0; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game7BigFoot5Parms11ProperParmsFv = .text:0x802C7018; // type:function size:0x3D8 scope:weak align:4 +createObj__Q34Game7BigFoot3MgrFi = .text:0x802C73F0; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7BigFoot3ObjFv = .text:0x802C7450; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7BigFoot3MgrFi = .text:0x802C750C; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game7BigFoot3MgrFv = .text:0x802C751C; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game7BigFoot3MgrFv = .text:0x802C7584; // type:function size:0xB4 scope:global align:4 +createModel__Q34Game7BigFoot3MgrFv = .text:0x802C7638; // type:function size:0x7C scope:global align:4 +__dt__Q34Game7BigFoot3MgrFv = .text:0x802C76B4; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7BigFoot3MgrFv = .text:0x802C7764; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7BigFoot3MgrFPv = .text:0x802C776C; // type:function size:0x2C scope:weak align:4 +read__Q34Game7BigFoot5ParmsFR6Stream = .text:0x802C7798; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game7BigFoot3MgrFv = .text:0x802C77E8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7BigFoot16BigFootShadowMgrFPQ34Game7BigFoot3Obj = .text:0x802C77F0; // type:function size:0x20C scope:global align:4 +init__Q34Game7BigFoot16BigFootShadowMgrFv = .text:0x802C79FC; // type:function size:0x14C scope:global align:4 +setJointPosPtr__Q34Game7BigFoot16BigFootShadowMgrFiiP10Vector3 = .text:0x802C7B48; // type:function size:0x18 scope:global align:4 +update__Q34Game7BigFoot16BigFootShadowMgrFv = .text:0x802C7B60; // type:function size:0x370 scope:global align:4 +invokeOnGround__Q34Game7BigFoot21BigFootGroundCallBackFiPQ24Game8WaterBox = .text:0x802C7ED0; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game7BigFoot21BigFootGroundCallBackFiPQ24Game8WaterBox = .text:0x802C7EF4; // type:function size:0x24 scope:global align:4 +__ct__Q34Game7BigFoot3ObjFv = .text:0x802C7F18; // type:function size:0x16C scope:global align:4 +setInitialSetting__Q34Game7BigFoot3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802C8084; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7BigFoot3ObjFPQ24Game15CreatureInitArg = .text:0x802C8088; // type:function size:0x148 scope:global align:4 +onKill__Q34Game7BigFoot3ObjFPQ24Game15CreatureKillArg = .text:0x802C81D0; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game7BigFoot3ObjFv = .text:0x802C8214; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game7BigFoot3ObjFv = .text:0x802C8264; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game7BigFoot3ObjFv = .text:0x802C8298; // type:function size:0x98 scope:global align:4 +doDirectDraw__Q34Game7BigFoot3ObjFR8Graphics = .text:0x802C8330; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7BigFoot3ObjFR8Graphics = .text:0x802C8334; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7BigFoot3ObjFPQ34Game7BigFoot3FSM = .text:0x802C8354; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7BigFoot3ObjFRQ24Game11ShadowParam = .text:0x802C83A0; // type:function size:0x3C scope:global align:4 +needShadow__Q34Game7BigFoot3ObjFv = .text:0x802C83DC; // type:function size:0x50 scope:global align:4 +damageCallBack__Q34Game7BigFoot3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802C842C; // type:function size:0x9C scope:global align:4 +collisionCallback__Q34Game7BigFoot3ObjFRQ24Game9CollEvent = .text:0x802C84C8; // type:function size:0x1AC scope:global align:4 +doStartStoneState__Q34Game7BigFoot3ObjFv = .text:0x802C8674; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game7BigFoot3ObjFv = .text:0x802C86B8; // type:function size:0x6C scope:global align:4 +doStartMovie__Q34Game7BigFoot3ObjFv = .text:0x802C8724; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game7BigFoot3ObjFv = .text:0x802C8744; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game7BigFoot3ObjFP10Vector3 = .text:0x802C8764; // type:function size:0x60 scope:global align:4 +getThrowupItemVelocity__Q34Game7BigFoot3ObjFP10Vector3 = .text:0x802C87C4; // type:function size:0x14 scope:global align:4 +resetFlickWalkTimeMax__Q34Game7BigFoot3ObjFv = .text:0x802C87D8; // type:function size:0x8C scope:global align:4 +setFlickWalkTimeMax__Q34Game7BigFoot3ObjFv = .text:0x802C8864; // type:function size:0x8C scope:global align:4 +getTargetPosition__Q34Game7BigFoot3ObjFv = .text:0x802C88F0; // type:function size:0x3F0 scope:global align:4 +createIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C8CE0; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C8DEC; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game7BigFoot3ObjFv = .text:0x802C8F10; // type:function size:0x124 scope:global align:4 +setIKSystemTargetPosition__Q34Game7BigFoot3ObjFR10Vector3 = .text:0x802C9034; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9054; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C90B4; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9114; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game7BigFoot3ObjFv = .text:0x802C9138; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C915C; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C9180; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C91A4; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game7BigFoot3ObjFv = .text:0x802C91C8; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game7BigFoot3ObjFv = .text:0x802C91EC; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game7BigFoot3ObjFv = .text:0x802C9210; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game7BigFoot3ObjFv = .text:0x802C9234; // type:function size:0x20 scope:global align:4 +isCollisionCheck__Q34Game7BigFoot3ObjFP8CollPart = .text:0x802C9254; // type:function size:0x24 scope:global align:4 +createShadowSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9278; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game7BigFoot3ObjFv = .text:0x802C92C0; // type:function size:0x74 scope:global align:4 +doAnimationShadowSystem__Q34Game7BigFoot3ObjFv = .text:0x802C9334; // type:function size:0x24 scope:global align:4 +createMaterialAnimation__Q34Game7BigFoot3ObjFv = .text:0x802C9358; // type:function size:0x54 scope:global align:4 +startMaterialAnimation__Q34Game7BigFoot3ObjFv = .text:0x802C93AC; // type:function size:0x3C scope:global align:4 +updateMaterialAnimation__Q34Game7BigFoot3ObjFv = .text:0x802C93E8; // type:function size:0xF0 scope:global align:4 +setupCollision__Q34Game7BigFoot3ObjFv = .text:0x802C94D8; // type:function size:0x90 scope:global align:4 +createItemAndEnemy__Q34Game7BigFoot3ObjFv = .text:0x802C9568; // type:function size:0xA4 scope:global align:4 +startBossChargeBGM__Q34Game7BigFoot3ObjFv = .text:0x802C960C; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C96D4; // type:function size:0xC8 scope:global align:4 +finishBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C979C; // type:function size:0xC8 scope:global align:4 +startStoneStateBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9864; // type:function size:0xD4 scope:global align:4 +finishStoneStateBossAttackLoopBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9938; // type:function size:0xD4 scope:global align:4 +updateBossBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9A0C; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9B08; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game7BigFoot3ObjFv = .text:0x802C9BC4; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game7BigFoot3ObjFv = .text:0x802C9C80; // type:function size:0x6C8 scope:global align:4 +setupEffect__Q34Game7BigFoot3ObjFv = .text:0x802CA348; // type:function size:0x1E4 scope:global align:4 +createOnGroundEffect__Q34Game7BigFoot3ObjFiPQ24Game8WaterBox = .text:0x802CA52C; // type:function size:0x228 scope:global align:4 +createOffGroundEffect__Q34Game7BigFoot3ObjFiPQ24Game8WaterBox = .text:0x802CA754; // type:function size:0x164 scope:global align:4 +startPinchJointEffect__Q34Game7BigFoot3ObjFv = .text:0x802CA8B8; // type:function size:0x1A0 scope:global align:4 +finishPinchJointEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAA58; // type:function size:0x58 scope:global align:4 +startDeadEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAAB0; // type:function size:0x1C0 scope:global align:4 +updatePinchLife__Q34Game7BigFoot3ObjFv = .text:0x802CAC70; // type:function size:0x254 scope:global align:4 +startFurEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAEC4; // type:function size:0x74 scope:global align:4 +finishFurEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAF38; // type:function size:0x6C scope:global align:4 +updateDeadFurEffect__Q34Game7BigFoot3ObjFv = .text:0x802CAFA4; // type:function size:0x68 scope:global align:4 +effectDrawOn__Q34Game7BigFoot3ObjFv = .text:0x802CB00C; // type:function size:0x1D8 scope:global align:4 +effectDrawOff__Q34Game7BigFoot3ObjFv = .text:0x802CB1E4; // type:function size:0x1D8 scope:global align:4 +addShadowScale__Q34Game7BigFoot3ObjFv = .text:0x802CB3BC; // type:function size:0x38 scope:global align:4 +__dt__Q23efx10TOdamaFur1Fv = .text:0x802CB3F4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx17TOdamaDeadHahenC2Fv = .text:0x802CB490; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx17TOdamaDeadHahenC1Fv = .text:0x802CB52C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TOdamaFur2Fv = .text:0x802CB5C8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TOdamaDeadHahenBFv = .text:0x802CB664; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TOdamaDeadHahenAFv = .text:0x802CB700; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TOdamaHahenFv = .text:0x802CB79C; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game7BigFoot3ObjFPQ24Game8WaterBox = .text:0x802CB838; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game7BigFoot3ObjFv = .text:0x802CB83C; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game7BigFoot3ObjFv = .text:0x802CB840; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game7BigFoot3ObjFv = .text:0x802CB848; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game7BigFoot3ObjFv = .text:0x802CB84C; // type:function size:0x8 scope:weak align:4 +__sinit_BigFoot_cpp = .text:0x802CB854; // type:function size:0x28 scope:local align:4 +@1196@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802CB87C; // type:function size:0x14 scope:weak align:4 +@1196@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802CB890; // type:function size:0x14 scope:weak align:4 +@1196@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802CB8A4; // type:function size:0x14 scope:weak align:4 +@1196@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802CB8B8; // type:function size:0x14 scope:weak align:4 +@1196@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802CB8CC; // type:function size:0x14 scope:weak align:4 +@1196@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802CB8E0; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx11TOdamaHahenFv = .text:0x802CB8F4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TOdamaDeadHahenAFv = .text:0x802CB8FC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TOdamaDeadHahenBFv = .text:0x802CB904; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TOdamaFur2Fv = .text:0x802CB90C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOdamaDeadHahenC1Fv = .text:0x802CB914; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOdamaDeadHahenC2Fv = .text:0x802CB91C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TOdamaFur1Fv = .text:0x802CB924; // type:function size:0x8 scope:weak align:4 +init__Q34Game10SnakeWhole3FSMFPQ24Game9EnemyBase = .text:0x802CB92C; // type:function size:0x3D0 scope:global align:4 +init__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CBCFC; // type:function size:0xC4 scope:global align:4 +exec__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBase = .text:0x802CBDC0; // type:function size:0x1C0 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBase = .text:0x802CBF80; // type:function size:0x4 scope:global align:4 +init__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CBF84; // type:function size:0x12C scope:global align:4 +exec__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBase = .text:0x802CC0B0; // type:function size:0x618 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBase = .text:0x802CC6C8; // type:function size:0x98 scope:global align:4 +init__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CC760; // type:function size:0xD4 scope:global align:4 +exec__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBase = .text:0x802CC834; // type:function size:0x2F8 scope:global align:4 +cleanup__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBase = .text:0x802CCB2C; // type:function size:0x68 scope:global align:4 +init__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CCB94; // type:function size:0xD4 scope:global align:4 +exec__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBase = .text:0x802CCC68; // type:function size:0x318 scope:global align:4 +cleanup__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBase = .text:0x802CCF80; // type:function size:0x68 scope:global align:4 +init__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CCFE8; // type:function size:0x64 scope:global align:4 +exec__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBase = .text:0x802CD04C; // type:function size:0x214 scope:global align:4 +cleanup__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBase = .text:0x802CD260; // type:function size:0x78 scope:global align:4 +init__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD2D8; // type:function size:0x68 scope:global align:4 +exec__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBase = .text:0x802CD340; // type:function size:0x198 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBase = .text:0x802CD4D8; // type:function size:0x4 scope:global align:4 +init__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD4DC; // type:function size:0x48 scope:global align:4 +exec__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBase = .text:0x802CD524; // type:function size:0x288 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBase = .text:0x802CD7AC; // type:function size:0x10 scope:global align:4 +init__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD7BC; // type:function size:0x48 scope:global align:4 +exec__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBase = .text:0x802CD804; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBase = .text:0x802CD9A8; // type:function size:0x10 scope:global align:4 +init__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CD9B8; // type:function size:0x4C scope:global align:4 +exec__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBase = .text:0x802CDA04; // type:function size:0x3D0 scope:global align:4 +cleanup__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBase = .text:0x802CDDD4; // type:function size:0x10 scope:global align:4 +init__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CDDE4; // type:function size:0x3C scope:global align:4 +exec__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBase = .text:0x802CDE20; // type:function size:0x1F0 scope:global align:4 +cleanup__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBase = .text:0x802CE010; // type:function size:0x4 scope:global align:4 +init__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802CE014; // type:function size:0x40 scope:global align:4 +exec__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBase = .text:0x802CE054; // type:function size:0x1C8 scope:global align:4 +cleanup__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBase = .text:0x802CE21C; // type:function size:0x4 scope:global align:4 +__sinit_SnakeWholeState_cpp = .text:0x802CE220; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game10SnakeWhole14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802CE248; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10SnakeWhole14ProperAnimatorFi = .text:0x802CE250; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10SnakeWhole14ProperAnimatorFv = .text:0x802CE258; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10SnakeWhole14ProperAnimatorFv = .text:0x802CE2B4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10SnakeWhole3MgrFiUc = .text:0x802CE2BC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10SnakeWhole3MgrFv = .text:0x802CE30C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10SnakeWhole5ParmsFv = .text:0x802CE354; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game10SnakeWhole3MgrFi = .text:0x802CE4A8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10SnakeWhole3ObjFv = .text:0x802CE508; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game10SnakeWhole3MgrFi = .text:0x802CE5C4; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game10SnakeWhole3MgrFv = .text:0x802CE5D4; // type:function size:0x68 scope:global align:4 +__dt__Q34Game10SnakeWhole3MgrFv = .text:0x802CE63C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10SnakeWhole3MgrFv = .text:0x802CE6EC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10SnakeWhole3MgrFPv = .text:0x802CE6F4; // type:function size:0x2C scope:weak align:4 +read__Q34Game10SnakeWhole5ParmsFR6Stream = .text:0x802CE720; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game10SnakeWhole3MgrFv = .text:0x802CE770; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10SnakeWhole3ObjFv = .text:0x802CE778; // type:function size:0x16C scope:global align:4 +setInitialSetting__Q34Game10SnakeWhole3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802CE8E4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10SnakeWhole3ObjFPQ24Game15CreatureInitArg = .text:0x802CE8E8; // type:function size:0xCC scope:global align:4 +doUpdate__Q34Game10SnakeWhole3ObjFv = .text:0x802CE9B4; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game10SnakeWhole3ObjFv = .text:0x802CEA04; // type:function size:0x34 scope:global align:4 +doAnimationUpdateAnimator__Q34Game10SnakeWhole3ObjFv = .text:0x802CEA38; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game10SnakeWhole3ObjFv = .text:0x802CEA6C; // type:function size:0x3C scope:global align:4 +doDirectDraw__Q34Game10SnakeWhole3ObjFR8Graphics = .text:0x802CEAA8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10SnakeWhole3ObjFR8Graphics = .text:0x802CEAAC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10SnakeWhole3ObjFPQ34Game10SnakeWhole3FSM = .text:0x802CEACC; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10SnakeWhole3ObjFRQ24Game11ShadowParam = .text:0x802CEB18; // type:function size:0xB0 scope:global align:4 +damageCallBack__Q34Game10SnakeWhole3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802CEBC8; // type:function size:0x98 scope:global align:4 +doStartStoneState__Q34Game10SnakeWhole3ObjFv = .text:0x802CEC60; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game10SnakeWhole3ObjFv = .text:0x802CEC80; // type:function size:0x48 scope:global align:4 +startCarcassMotion__Q34Game10SnakeWhole3ObjFv = .text:0x802CECC8; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game10SnakeWhole3ObjFv = .text:0x802CECF0; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10SnakeWhole3ObjFv = .text:0x802CED10; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game10SnakeWhole3ObjFv = .text:0x802CED30; // type:function size:0xBC scope:global align:4 +getThrowupItemPosition__Q34Game10SnakeWhole3ObjFP10Vector3 = .text:0x802CEDEC; // type:function size:0x58 scope:global align:4 +isOutTerritory__Q34Game10SnakeWhole3ObjFv = .text:0x802CEE44; // type:function size:0x3C scope:global align:4 +isInHomeRange__Q34Game10SnakeWhole3ObjFv = .text:0x802CEE80; // type:function size:0x3C scope:global align:4 +setJumpMove__Q34Game10SnakeWhole3ObjFR10Vector3 = .text:0x802CEEBC; // type:function size:0x2AC scope:global align:4 +updateFace__Q34Game10SnakeWhole3ObjFv = .text:0x802CF168; // type:function size:0x78 scope:global align:4 +updateConstraint__Q34Game10SnakeWhole3ObjFv = .text:0x802CF1E0; // type:function size:0x80 scope:global align:4 +appearNearByTarget__Q34Game10SnakeWhole3ObjFPQ24Game8Creature = .text:0x802CF260; // type:function size:0x530 scope:global align:4 +setAttackPosition__Q34Game10SnakeWhole3ObjFv = .text:0x802CF790; // type:function size:0x20C scope:global align:4 +getAttackPiki__Q34Game10SnakeWhole3ObjFi = .text:0x802CF99C; // type:function size:0x5F4 scope:global align:4 +getAttackNavi__Q34Game10SnakeWhole3ObjFi = .text:0x802CFF90; // type:function size:0x5C8 scope:global align:4 +getSearchedTarget__Q34Game10SnakeWhole3ObjFv = .text:0x802D0558; // type:function size:0x50 scope:global align:4 +getSwallowSlot__Q34Game10SnakeWhole3ObjFv = .text:0x802D05A8; // type:function size:0x68 scope:global align:4 +isSwallowPikmin__Q34Game10SnakeWhole3ObjFv = .text:0x802D0610; // type:function size:0x6C scope:global align:4 +getStickHeadPikmin__Q34Game10SnakeWhole3ObjFv = .text:0x802D067C; // type:function size:0x24C scope:global align:4 +createJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D08C8; // type:function size:0x48 scope:global align:4 +setupJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0910; // type:function size:0x24 scope:global align:4 +doAnimationJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0934; // type:function size:0x24 scope:global align:4 +finishAnimationJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0958; // type:function size:0x24 scope:global align:4 +startJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D097C; // type:function size:0xB8 scope:global align:4 +returnJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0A34; // type:function size:0x88 scope:global align:4 +finishJointCallBack__Q34Game10SnakeWhole3ObjFv = .text:0x802D0ABC; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game10SnakeWhole3ObjFv = .text:0x802D0AE0; // type:function size:0x38 scope:global align:4 +lifeIncrement__Q34Game10SnakeWhole3ObjFv = .text:0x802D0B18; // type:function size:0x40 scope:global align:4 +createShadowSystem__Q34Game10SnakeWhole3ObjFv = .text:0x802D0B58; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game10SnakeWhole3ObjFv = .text:0x802D0BA0; // type:function size:0x24 scope:global align:4 +doAnimationShadowSystem__Q34Game10SnakeWhole3ObjFv = .text:0x802D0BC4; // type:function size:0x24 scope:global align:4 +startJointShadow__Q34Game10SnakeWhole3ObjFv = .text:0x802D0BE8; // type:function size:0x24 scope:global align:4 +finishJointShadow__Q34Game10SnakeWhole3ObjFv = .text:0x802D0C0C; // type:function size:0x24 scope:global align:4 +deleteJointShadow__Q34Game10SnakeWhole3ObjFv = .text:0x802D0C30; // type:function size:0x40 scope:global align:4 +startBossAttackBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0C70; // type:function size:0xE0 scope:global align:4 +startBossFlickBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0D50; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0E18; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0F14; // type:function size:0xD0 scope:global align:4 +setBossAppearBGM__Q34Game10SnakeWhole3ObjFv = .text:0x802D0FE4; // type:function size:0xCC scope:global align:4 +createEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D10B0; // type:function size:0x68 scope:global align:4 +setupEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D1118; // type:function size:0x78 scope:global align:4 +createAppearEffect__Q34Game10SnakeWhole3ObjFi = .text:0x802D1190; // type:function size:0x1D4 scope:global align:4 +createDeadStartEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D1364; // type:function size:0x34 scope:global align:4 +createDeadFinishEffect__Q34Game10SnakeWhole3ObjFv = .text:0x802D1398; // type:function size:0x94 scope:global align:4 +createWalkSmokeEffect__Q34Game10SnakeWhole3ObjFf = .text:0x802D142C; // type:function size:0x3C scope:global align:4 +effectDrawOn__Q34Game10SnakeWhole3ObjFv = .text:0x802D1468; // type:function size:0x30 scope:global align:4 +effectDrawOff__Q34Game10SnakeWhole3ObjFv = .text:0x802D1498; // type:function size:0x30 scope:global align:4 +createEfxHamon__Q34Game10SnakeWhole3ObjFv = .text:0x802D14C8; // type:function size:0x48 scope:global align:4 +isUnderground__Q34Game10SnakeWhole3ObjFv = .text:0x802D1510; // type:function size:0x8 scope:weak align:4 +getFitEffectPos__Q34Game10SnakeWhole3ObjFv = .text:0x802D1518; // type:function size:0x58 scope:global align:4 +inWaterCallback__Q34Game10SnakeWhole3ObjFPQ24Game8WaterBox = .text:0x802D1570; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game10SnakeWhole3ObjFv = .text:0x802D1574; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game10SnakeWhole3ObjFv = .text:0x802D1578; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game10SnakeWhole3ObjFv = .text:0x802D1580; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game10SnakeWhole3ObjFv = .text:0x802D1588; // type:function size:0x4 scope:weak align:4 +getDownSmokeScale__Q34Game10SnakeWhole3ObjFv = .text:0x802D158C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game10SnakeWhole3ObjFv = .text:0x802D1594; // type:function size:0x8 scope:weak align:4 +@816@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802D159C; // type:function size:0x14 scope:weak align:4 +@816@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802D15B0; // type:function size:0x14 scope:weak align:4 +@816@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802D15C4; // type:function size:0x14 scope:weak align:4 +@816@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802D15D8; // type:function size:0x14 scope:weak align:4 +@816@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802D15EC; // type:function size:0x14 scope:weak align:4 +@816@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802D1600; // type:function size:0x14 scope:weak align:4 +SnakeJointCallBack__4GameFP8J3DJointi = .text:0x802D1614; // type:function size:0x38 scope:local align:4 +__ct__Q24Game13SnakeJointMgrFPQ24Game9EnemyBase = .text:0x802D164C; // type:function size:0x3C scope:global align:4 +setupCallBackJoint__Q24Game13SnakeJointMgrFv = .text:0x802D1688; // type:function size:0xB8 scope:global align:4 +startModify__Q24Game13SnakeJointMgrFff = .text:0x802D1740; // type:function size:0x20 scope:global align:4 +returnModify__Q24Game13SnakeJointMgrFf = .text:0x802D1760; // type:function size:0x1C scope:global align:4 +finishModify__Q24Game13SnakeJointMgrFv = .text:0x802D177C; // type:function size:0xC scope:global align:4 +doAnimation__Q24Game13SnakeJointMgrFv = .text:0x802D1788; // type:function size:0x80 scope:global align:4 +finishAnimation__Q24Game13SnakeJointMgrFv = .text:0x802D1808; // type:function size:0xC scope:global align:4 +makeMatrix__Q24Game13SnakeJointMgrFv = .text:0x802D1814; // type:function size:0x2AC scope:global align:4 +init__Q34Game9OniKurage3FSMFPQ24Game9EnemyBase = .text:0x802D1AC0; // type:function size:0x424 scope:global align:4 +init__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D1EE4; // type:function size:0xCC scope:global align:4 +exec__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBase = .text:0x802D1FB0; // type:function size:0x18C scope:global align:4 +cleanup__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBase = .text:0x802D213C; // type:function size:0x4 scope:global align:4 +init__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2140; // type:function size:0x5C scope:global align:4 +exec__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBase = .text:0x802D219C; // type:function size:0x148 scope:global align:4 +cleanup__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBase = .text:0x802D22E4; // type:function size:0x4 scope:global align:4 +init__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D22E8; // type:function size:0x74 scope:global align:4 +exec__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBase = .text:0x802D235C; // type:function size:0x1DC scope:global align:4 +cleanup__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBase = .text:0x802D2538; // type:function size:0x4 scope:global align:4 +init__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D253C; // type:function size:0x6C scope:global align:4 +exec__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBase = .text:0x802D25A8; // type:function size:0x15C scope:global align:4 +cleanup__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBase = .text:0x802D2704; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2728; // type:function size:0x80 scope:global align:4 +exec__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBase = .text:0x802D27A8; // type:function size:0x320 scope:global align:4 +cleanup__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBase = .text:0x802D2AC8; // type:function size:0x44 scope:global align:4 +init__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2B0C; // type:function size:0x68 scope:global align:4 +exec__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBase = .text:0x802D2B74; // type:function size:0x180 scope:global align:4 +cleanup__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBase = .text:0x802D2CF4; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2D18; // type:function size:0x94 scope:global align:4 +exec__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBase = .text:0x802D2DAC; // type:function size:0x164 scope:global align:4 +cleanup__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBase = .text:0x802D2F10; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D2F34; // type:function size:0xC0 scope:global align:4 +exec__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBase = .text:0x802D2FF4; // type:function size:0x80 scope:global align:4 +cleanup__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBase = .text:0x802D3074; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D3098; // type:function size:0x68 scope:global align:4 +exec__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802D3100; // type:function size:0xF0 scope:global align:4 +cleanup__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBase = .text:0x802D31F0; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D3214; // type:function size:0x60 scope:global align:4 +exec__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBase = .text:0x802D3274; // type:function size:0x138 scope:global align:4 +cleanup__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBase = .text:0x802D33AC; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D33D0; // type:function size:0xE0 scope:global align:4 +exec__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802D34B0; // type:function size:0x17C scope:global align:4 +cleanup__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBase = .text:0x802D362C; // type:function size:0x24 scope:global align:4 +init__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D3650; // type:function size:0xDC scope:global align:4 +exec__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802D372C; // type:function size:0x18C scope:global align:4 +cleanup__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBase = .text:0x802D38B8; // type:function size:0x24 scope:global align:4 +__sinit_OniKurageState_cpp = .text:0x802D38DC; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game9OniKurage14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802D3904; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game9OniKurage14ProperAnimatorFi = .text:0x802D390C; // type:function size:0x8 scope:global align:4 +__dt__Q34Game9OniKurage14ProperAnimatorFv = .text:0x802D3914; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game9OniKurage14ProperAnimatorFv = .text:0x802D3970; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9OniKurage3MgrFiUc = .text:0x802D3978; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9OniKurage3MgrFv = .text:0x802D39C8; // type:function size:0x48 scope:global align:4 +__ct__Q34Game9OniKurage5ParmsFv = .text:0x802D3A10; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game9OniKurage5Parms11ProperParmsFv = .text:0x802D3A58; // type:function size:0x23C scope:weak align:4 +createObj__Q34Game9OniKurage3MgrFi = .text:0x802D3C94; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9OniKurage3ObjFv = .text:0x802D3CF4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9OniKurage3MgrFi = .text:0x802D3DB0; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game9OniKurage3MgrFv = .text:0x802D3DC0; // type:function size:0x68 scope:global align:4 +__dt__Q34Game9OniKurage3MgrFv = .text:0x802D3E28; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9OniKurage3MgrFv = .text:0x802D3ED8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9OniKurage3MgrFPv = .text:0x802D3EE0; // type:function size:0x2C scope:weak align:4 +read__Q34Game9OniKurage5ParmsFR6Stream = .text:0x802D3F0C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game9OniKurage3MgrFv = .text:0x802D3F5C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9OniKurage3ObjFv = .text:0x802D3F64; // type:function size:0x140 scope:global align:4 +setInitialSetting__Q34Game9OniKurage3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802D40A4; // type:function size:0x4 scope:global align:4 +onInit__Q34Game9OniKurage3ObjFPQ24Game15CreatureInitArg = .text:0x802D40A8; // type:function size:0xB0 scope:global align:4 +onKill__Q34Game9OniKurage3ObjFPQ24Game15CreatureKillArg = .text:0x802D4158; // type:function size:0x54 scope:global align:4 +doUpdate__Q34Game9OniKurage3ObjFv = .text:0x802D41AC; // type:function size:0x108 scope:global align:4 +doUpdateCommon__Q34Game9OniKurage3ObjFv = .text:0x802D42B4; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game9OniKurage3ObjFR8Graphics = .text:0x802D42E8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game9OniKurage3ObjFR8Graphics = .text:0x802D42EC; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game9OniKurage3ObjFPQ34Game9OniKurage3FSM = .text:0x802D430C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game9OniKurage3ObjFRQ24Game11ShadowParam = .text:0x802D4358; // type:function size:0x10C scope:global align:4 +damageCallBack__Q34Game9OniKurage3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802D4464; // type:function size:0x38 scope:global align:4 +doStartStoneState__Q34Game9OniKurage3ObjFv = .text:0x802D449C; // type:function size:0x44 scope:global align:4 +doFinishStoneState__Q34Game9OniKurage3ObjFv = .text:0x802D44E0; // type:function size:0xB8 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game9OniKurage3ObjFv = .text:0x802D4598; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game9OniKurage3ObjFv = .text:0x802D45CC; // type:function size:0x34 scope:global align:4 +doStartMovie__Q34Game9OniKurage3ObjFv = .text:0x802D4600; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game9OniKurage3ObjFv = .text:0x802D4620; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game9OniKurage3ObjFv = .text:0x802D4640; // type:function size:0xC8 scope:global align:4 +setHeightVelocity__Q34Game9OniKurage3ObjFff = .text:0x802D4708; // type:function size:0x98 scope:global align:4 +setRandTarget__Q34Game9OniKurage3ObjFv = .text:0x802D47A0; // type:function size:0x1D8 scope:global align:4 +getMovePitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4978; // type:function size:0xA4 scope:global align:4 +getAttackPitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4A1C; // type:function size:0x1A8 scope:global align:4 +getFlickPitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4BC4; // type:function size:0x1A8 scope:global align:4 +getTakeOffPitchOffset__Q34Game9OniKurage3ObjFv = .text:0x802D4D6C; // type:function size:0x144 scope:global align:4 +getFallPitchOffset__Q34Game9OniKurage3ObjFf = .text:0x802D4EB0; // type:function size:0x168 scope:global align:4 +updateFallTimer__Q34Game9OniKurage3ObjFv = .text:0x802D5018; // type:function size:0x30 scope:global align:4 +getFlyingNextState__Q34Game9OniKurage3ObjFv = .text:0x802D5048; // type:function size:0xA4 scope:global align:4 +getSearchedTarget__Q34Game9OniKurage3ObjFf = .text:0x802D50EC; // type:function size:0x340 scope:global align:4 +isSuck__Q34Game9OniKurage3ObjFfPQ24Game8Creature = .text:0x802D542C; // type:function size:0x238 scope:global align:4 +suckPikmin__Q34Game9OniKurage3ObjFf = .text:0x802D5664; // type:function size:0x434 scope:global align:4 +suckNavi__Q34Game9OniKurage3ObjFf = .text:0x802D5A98; // type:function size:0x570 scope:global align:4 +updateCollPartOffset__Q34Game9OniKurage3ObjFv = .text:0x802D6008; // type:function size:0x26C scope:global align:4 +isFinishNaviSuck__Q34Game9OniKurage3ObjFv = .text:0x802D6274; // type:function size:0x100 scope:global align:4 +isNaviSucked__Q34Game9OniKurage3ObjFv = .text:0x802D6374; // type:function size:0x28 scope:global align:4 +flickStickNavi__Q34Game9OniKurage3ObjFb = .text:0x802D639C; // type:function size:0x29C scope:global align:4 +escapeCheckNavi__Q34Game9OniKurage3ObjFv = .text:0x802D6638; // type:function size:0x130 scope:global align:4 +createEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6768; // type:function size:0x340 scope:global align:4 +setupEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6AA8; // type:function size:0x8C scope:global align:4 +startEyeHireBodyEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6B34; // type:function size:0x88 scope:global align:4 +finishEyeBodyEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6BBC; // type:function size:0x7C scope:global align:4 +setHireEffectLife__Q34Game9OniKurage3ObjFs = .text:0x802D6C38; // type:function size:0x24 scope:global align:4 +finishHireEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6C5C; // type:function size:0x50 scope:global align:4 +startSuckEffect__Q34Game9OniKurage3ObjFR10Vector3 = .text:0x802D6CAC; // type:function size:0x58 scope:global align:4 +updateSuckEffect__Q34Game9OniKurage3ObjFR10Vector3 = .text:0x802D6D04; // type:function size:0x24 scope:global align:4 +finishSuckEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6D28; // type:function size:0x30 scope:global align:4 +createFlickNaviEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6D58; // type:function size:0x34 scope:global align:4 +createBodyBombEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6D8C; // type:function size:0x9C scope:global align:4 +createDownEffect__Q34Game9OniKurage3ObjFv = .text:0x802D6E28; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game9OniKurage3ObjFv = .text:0x802D6E6C; // type:function size:0x8 scope:weak align:4 +effectDrawOn__Q34Game9OniKurage3ObjFv = .text:0x802D6E74; // type:function size:0xB4 scope:global align:4 +effectDrawOff__Q34Game9OniKurage3ObjFv = .text:0x802D6F28; // type:function size:0xB4 scope:global align:4 +__dt__Q23efx14TKurageDeadrunFv = .text:0x802D6FDC; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKurageGepuFv = .text:0x802D7078; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKurageKiraFv = .text:0x802D7114; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TKurageEyeFv = .text:0x802D71B0; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game9OniKurage3ObjFPQ24Game8WaterBox = .text:0x802D724C; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game9OniKurage3ObjFv = .text:0x802D7250; // type:function size:0x4 scope:weak align:4 +getMouthSlots__Q34Game9OniKurage3ObjFv = .text:0x802D7254; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game9OniKurage3ObjFv = .text:0x802D725C; // type:function size:0x8 scope:weak align:4 +__sinit_OniKurage_cpp = .text:0x802D7264; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx10TKurageEyeFv = .text:0x802D728C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TKurageKiraFv = .text:0x802D7294; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TKurageGepuFv = .text:0x802D729C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TKurageDeadrunFv = .text:0x802D72A4; // type:function size:0x8 scope:weak align:4 +init__Q34Game11BigTreasure3FSMFPQ24Game9EnemyBase = .text:0x802D72AC; // type:function size:0x42C scope:global align:4 +init__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D76D8; // type:function size:0x80 scope:global align:4 +exec__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBase = .text:0x802D7758; // type:function size:0x230 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBase = .text:0x802D7988; // type:function size:0x4 scope:global align:4 +init__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D798C; // type:function size:0x80 scope:global align:4 +exec__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBase = .text:0x802D7A0C; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBase = .text:0x802D7B08; // type:function size:0x4 scope:global align:4 +init__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D7B0C; // type:function size:0xAC scope:global align:4 +exec__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBase = .text:0x802D7BB8; // type:function size:0x324 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBase = .text:0x802D7EDC; // type:function size:0x30 scope:global align:4 +init__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D7F0C; // type:function size:0xA0 scope:global align:4 +exec__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBase = .text:0x802D7FAC; // type:function size:0x140 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBase = .text:0x802D80EC; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8110; // type:function size:0xA0 scope:global align:4 +exec__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBase = .text:0x802D81B0; // type:function size:0x124 scope:global align:4 +cleanup__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBase = .text:0x802D82D4; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D82F8; // type:function size:0x74 scope:global align:4 +exec__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBase = .text:0x802D836C; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBase = .text:0x802D8448; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D846C; // type:function size:0x98 scope:global align:4 +exec__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBase = .text:0x802D8504; // type:function size:0x19C scope:global align:4 +cleanup__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBase = .text:0x802D86A0; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D86C4; // type:function size:0x78 scope:global align:4 +exec__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBase = .text:0x802D873C; // type:function size:0x148 scope:global align:4 +cleanup__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBase = .text:0x802D8884; // type:function size:0x40 scope:global align:4 +init__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D88C4; // type:function size:0x80 scope:global align:4 +exec__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBase = .text:0x802D8944; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBase = .text:0x802D8A6C; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8A90; // type:function size:0x74 scope:global align:4 +exec__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBase = .text:0x802D8B04; // type:function size:0xEC scope:global align:4 +cleanup__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBase = .text:0x802D8BF0; // type:function size:0x24 scope:global align:4 +init__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8C14; // type:function size:0xA8 scope:global align:4 +exec__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBase = .text:0x802D8CBC; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBase = .text:0x802D8E00; // type:function size:0x4 scope:global align:4 +init__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802D8E04; // type:function size:0xA8 scope:global align:4 +exec__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBase = .text:0x802D8EAC; // type:function size:0x1EC scope:global align:4 +cleanup__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBase = .text:0x802D9098; // type:function size:0x4 scope:global align:4 +__sinit_BigTreasureState_cpp = .text:0x802D909C; // type:function size:0x28 scope:local align:4 +__ct__Q34Game11BigTreasure3MgrFiUc = .text:0x802D90C4; // type:function size:0x110 scope:global align:4 +doAlloc__Q34Game11BigTreasure3MgrFv = .text:0x802D91D4; // type:function size:0x48 scope:global align:4 +__ct__Q34Game11BigTreasure5ParmsFv = .text:0x802D921C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game11BigTreasure5Parms11ProperParmsFv = .text:0x802D9264; // type:function size:0xFF8 scope:weak align:4 +createObj__Q34Game11BigTreasure3MgrFi = .text:0x802DA25C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11BigTreasure3ObjFv = .text:0x802DA2BC; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game11BigTreasure3MgrFi = .text:0x802DA378; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game11BigTreasure3MgrFv = .text:0x802DA388; // type:function size:0x68 scope:global align:4 +createModel__Q34Game11BigTreasure3MgrFv = .text:0x802DA3F0; // type:function size:0x7C scope:global align:4 +__dt__Q34Game11BigTreasure3MgrFv = .text:0x802DA46C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11BigTreasure3MgrFv = .text:0x802DA51C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11BigTreasure3MgrFPv = .text:0x802DA524; // type:function size:0x2C scope:weak align:4 +read__Q34Game11BigTreasure5ParmsFR6Stream = .text:0x802DA550; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11BigTreasure3MgrFv = .text:0x802DA5A0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11BigTreasure20BigTreasureShadowMgrFPQ34Game11BigTreasure3Obj = .text:0x802DA5A8; // type:function size:0x418 scope:global align:4 +init__Q34Game11BigTreasure20BigTreasureShadowMgrFv = .text:0x802DA9C0; // type:function size:0x2B4 scope:global align:4 +setKosiJointPosPtr__Q34Game11BigTreasure20BigTreasureShadowMgrFP10Vector3 = .text:0x802DAC74; // type:function size:0x8 scope:global align:4 +setJointPosPtr__Q34Game11BigTreasure20BigTreasureShadowMgrFiiP10Vector3 = .text:0x802DAC7C; // type:function size:0x18 scope:global align:4 +update__Q34Game11BigTreasure20BigTreasureShadowMgrFv = .text:0x802DAC94; // type:function size:0x510 scope:global align:4 +updateTreasureShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm = .text:0x802DB1A4; // type:function size:0xF4 scope:global align:4 +updateHandShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm = .text:0x802DB298; // type:function size:0x348 scope:global align:4 +updateAntennaShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm = .text:0x802DB5E0; // type:function size:0x544 scope:global align:4 +__dt__Q24Game17TubeShadowPosNodeFv = .text:0x802DBB24; // type:function size:0x70 scope:weak align:4 +invokeOnGround__Q34Game11BigTreasure25BigTreasureGroundCallBackFiPQ24Game8WaterBox = .text:0x802DBB94; // type:function size:0x24 scope:global align:4 +invokeOffGround__Q34Game11BigTreasure25BigTreasureGroundCallBackFiPQ24Game8WaterBox = .text:0x802DBBB8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game11BigTreasure3ObjFv = .text:0x802DBBDC; // type:function size:0x13C scope:global align:4 +setInitialSetting__Q34Game11BigTreasure3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802DBD18; // type:function size:0x4 scope:global align:4 +onInit__Q34Game11BigTreasure3ObjFPQ24Game15CreatureInitArg = .text:0x802DBD1C; // type:function size:0x160 scope:global align:4 +onKill__Q34Game11BigTreasure3ObjFPQ24Game15CreatureKillArg = .text:0x802DBE7C; // type:function size:0x4C scope:global align:4 +doUpdate__Q34Game11BigTreasure3ObjFv = .text:0x802DBEC8; // type:function size:0x4C scope:global align:4 +doUpdateCommon__Q34Game11BigTreasure3ObjFv = .text:0x802DBF14; // type:function size:0x3C scope:global align:4 +doAnimationUpdateAnimator__Q34Game11BigTreasure3ObjFv = .text:0x802DBF50; // type:function size:0x94 scope:global align:4 +doAnimationCullingOff__Q34Game11BigTreasure3ObjFv = .text:0x802DBFE4; // type:function size:0x98 scope:global align:4 +changeMaterial__Q34Game11BigTreasure3ObjFv = .text:0x802DC07C; // type:function size:0x194 scope:global align:4 +doDirectDraw__Q34Game11BigTreasure3ObjFR8Graphics = .text:0x802DC210; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11BigTreasure3ObjFR8Graphics = .text:0x802DC214; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game11BigTreasure3ObjFPQ34Game11BigTreasure3FSM = .text:0x802DC234; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game11BigTreasure3ObjFRQ24Game11ShadowParam = .text:0x802DC280; // type:function size:0x3C scope:global align:4 +damageCallBack__Q34Game11BigTreasure3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802DC2BC; // type:function size:0x100 scope:global align:4 +hipdropCallBack__Q34Game11BigTreasure3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802DC3BC; // type:function size:0x38 scope:global align:4 +doStartStoneState__Q34Game11BigTreasure3ObjFv = .text:0x802DC3F4; // type:function size:0x20 scope:global align:4 +doFinishStoneState__Q34Game11BigTreasure3ObjFv = .text:0x802DC414; // type:function size:0x48 scope:global align:4 +doStartMovie__Q34Game11BigTreasure3ObjFv = .text:0x802DC45C; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game11BigTreasure3ObjFv = .text:0x802DC47C; // type:function size:0x20 scope:global align:4 +getThrowupItemPosition__Q34Game11BigTreasure3ObjFP10Vector3 = .text:0x802DC49C; // type:function size:0x50 scope:global align:4 +getThrowupItemVelocity__Q34Game11BigTreasure3ObjFP10Vector3 = .text:0x802DC4EC; // type:function size:0x14 scope:global align:4 +resetAttackLimitTimer__Q34Game11BigTreasure3ObjFv = .text:0x802DC500; // type:function size:0x5C scope:global align:4 +isAttackLimitTime__Q34Game11BigTreasure3ObjFv = .text:0x802DC55C; // type:function size:0x228 scope:global align:4 +getTargetPosition__Q34Game11BigTreasure3ObjFv = .text:0x802DC784; // type:function size:0x298 scope:global align:4 +createIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCA1C; // type:function size:0x10C scope:global align:4 +setupIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCB28; // type:function size:0x124 scope:global align:4 +setIKParameter__Q34Game11BigTreasure3ObjFv = .text:0x802DCC4C; // type:function size:0x84 scope:global align:4 +setIKSystemTargetPosition__Q34Game11BigTreasure3ObjFR10Vector3 = .text:0x802DCCD0; // type:function size:0x20 scope:global align:4 +updateIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCCF0; // type:function size:0x60 scope:global align:4 +doAnimationIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCD50; // type:function size:0x60 scope:global align:4 +finishAnimationIKSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCDB0; // type:function size:0x24 scope:global align:4 +startProgramedIK__Q34Game11BigTreasure3ObjFv = .text:0x802DCDD4; // type:function size:0x24 scope:global align:4 +startIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCDF8; // type:function size:0x24 scope:global align:4 +finishIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE1C; // type:function size:0x24 scope:global align:4 +forceFinishIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE40; // type:function size:0x24 scope:global align:4 +isFinishIKMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE64; // type:function size:0x24 scope:global align:4 +startBlendMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCE88; // type:function size:0x24 scope:global align:4 +finishBlendMotion__Q34Game11BigTreasure3ObjFv = .text:0x802DCEAC; // type:function size:0x24 scope:global align:4 +checkJointScaleOn__Q34Game11BigTreasure3ObjFv = .text:0x802DCED0; // type:function size:0x24 scope:global align:4 +getTraceCentrePosition__Q34Game11BigTreasure3ObjFv = .text:0x802DCEF4; // type:function size:0x20 scope:global align:4 +getJointPositionPtr__Q34Game11BigTreasure3ObjFii = .text:0x802DCF14; // type:function size:0x1C scope:global align:4 +createShadowSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCF30; // type:function size:0x48 scope:global align:4 +setupShadowSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCF78; // type:function size:0x80 scope:global align:4 +doAnimationShadowSystem__Q34Game11BigTreasure3ObjFv = .text:0x802DCFF8; // type:function size:0x24 scope:global align:4 +setupCollision__Q34Game11BigTreasure3ObjFv = .text:0x802DD01C; // type:function size:0x90 scope:global align:4 +setupTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD0AC; // type:function size:0x35C scope:global align:4 +updateTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD408; // type:function size:0x168 scope:global align:4 +dropTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD570; // type:function size:0x1C0 scope:global align:4 +dropTreasure__Q34Game11BigTreasure3ObjFi = .text:0x802DD730; // type:function size:0x88 scope:global align:4 +isCapturedTreasure__Q34Game11BigTreasure3ObjFv = .text:0x802DD7B8; // type:function size:0x5C scope:global align:4 +isCapturedTreasure__Q34Game11BigTreasure3ObjFi = .text:0x802DD814; // type:function size:0x1C scope:global align:4 +getCapturedTreasureNum__Q34Game11BigTreasure3ObjFv = .text:0x802DD830; // type:function size:0x4C scope:global align:4 +addTreasureDamage__Q34Game11BigTreasure3ObjFif = .text:0x802DD87C; // type:function size:0xA0 scope:global align:4 +flickStickCollPartPikmin__Q34Game11BigTreasure3ObjFP8CollPart = .text:0x802DD91C; // type:function size:0x284 scope:global align:4 +releaseItemLoozy__Q34Game11BigTreasure3ObjFv = .text:0x802DDBA0; // type:function size:0x6C scope:global align:4 +createAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDC0C; // type:function size:0x48 scope:global align:4 +setupAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDC54; // type:function size:0x24 scope:global align:4 +updateAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDC78; // type:function size:0x24 scope:global align:4 +startAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDC9C; // type:function size:0x74 scope:global align:4 +finishAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDD10; // type:function size:0x24 scope:global align:4 +setTreasureAttack__Q34Game11BigTreasure3ObjFv = .text:0x802DDD34; // type:function size:0x1A8 scope:global align:4 +getPreAttackAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DDEDC; // type:function size:0x48 scope:global align:4 +getAttackAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DDF24; // type:function size:0x90 scope:global align:4 +getPutItemAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DDFB4; // type:function size:0x90 scope:global align:4 +getFireAttackAnimIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DE044; // type:function size:0x184 scope:global align:4 +getPreAttackTimeMax__Q34Game11BigTreasure3ObjFv = .text:0x802DE1C8; // type:function size:0x98 scope:global align:4 +getAttackTimeMax__Q34Game11BigTreasure3ObjFv = .text:0x802DE260; // type:function size:0x5C scope:global align:4 +isNormalAttack__Q34Game11BigTreasure3ObjFi = .text:0x802DE2BC; // type:function size:0x20 scope:global align:4 +resetMaterialColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE2DC; // type:function size:0xB0 scope:global align:4 +resetTargetMatBodyColor__Q34Game11BigTreasure3ObjFb = .text:0x802DE38C; // type:function size:0x38 scope:global align:4 +resetCurrentMatBodyColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE3C4; // type:function size:0x24 scope:global align:4 +resetTargetEyeMatColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE3E8; // type:function size:0x58 scope:global align:4 +resetCurrentMatEyeColor__Q34Game11BigTreasure3ObjFv = .text:0x802DE440; // type:function size:0x34 scope:global align:4 +setMatEyeAnimSpeed__Q34Game11BigTreasure3ObjFv = .text:0x802DE474; // type:function size:0x12C scope:global align:4 +setAttackMaterialColor__Q34Game11BigTreasure3ObjFb = .text:0x802DE5A0; // type:function size:0x4D0 scope:global align:4 +updateMaterialColor__Q34Game11BigTreasure3ObjFv = .text:0x802DEA70; // type:function size:0x4C0 scope:global align:4 +startBlendAnimation__Q34Game11BigTreasure3ObjFib = .text:0x802DEF30; // type:function size:0x11C scope:global align:4 +endBlendAnimation__Q34Game11BigTreasure3ObjFv = .text:0x802DF04C; // type:function size:0x98 scope:global align:4 +getCurrAnimationIndex__Q34Game11BigTreasure3ObjFv = .text:0x802DF0E4; // type:function size:0x4C scope:global align:4 +startBossChargeBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF130; // type:function size:0xC8 scope:global align:4 +startBossAttackBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF1F8; // type:function size:0x120 scope:global align:4 +finishBossAttackBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF318; // type:function size:0x16C scope:global align:4 +startBossFlickBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF484; // type:function size:0xC8 scope:global align:4 +startBossItemDropBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF54C; // type:function size:0x1B0 scope:global align:4 +updateBossBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF6FC; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF7F8; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game11BigTreasure3ObjFv = .text:0x802DF8B4; // type:function size:0x164 scope:global align:4 +createEffect__Q34Game11BigTreasure3ObjFv = .text:0x802DFA18; // type:function size:0x61C scope:global align:4 +__dt__Q23efx23TChasePosPosLocalYScaleFv = .text:0x802E0034; // type:function size:0x84 scope:weak align:4 +setupEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E00B8; // type:function size:0x220 scope:global align:4 +createOnGroundEffect__Q34Game11BigTreasure3ObjFiPQ24Game8WaterBox = .text:0x802E02D8; // type:function size:0x1C0 scope:global align:4 +createOffGroundEffect__Q34Game11BigTreasure3ObjFiPQ24Game8WaterBox = .text:0x802E0498; // type:function size:0xA0 scope:global align:4 +startTreasurePinchSmoke__Q34Game11BigTreasure3ObjFi = .text:0x802E0538; // type:function size:0x3C scope:global align:4 +finishTreasurePinchSmoke__Q34Game11BigTreasure3ObjFi = .text:0x802E0574; // type:function size:0x38 scope:global align:4 +createDropTreasureEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E05AC; // type:function size:0xD8 scope:global align:4 +createAppearBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0684; // type:function size:0xF0 scope:global align:4 +createAppearLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E0774; // type:function size:0x60 scope:global align:4 +createDeadBombLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E07D4; // type:function size:0x21C scope:global align:4 +createDeadBombBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E09F0; // type:function size:0x90 scope:global align:4 +startDeadBubbleLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E0A80; // type:function size:0x60 scope:global align:4 +finishDeadBubbleLegEffect__Q34Game11BigTreasure3ObjFi = .text:0x802E0AE0; // type:function size:0x5C scope:global align:4 +startDeadBubbleBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0B3C; // type:function size:0x34 scope:global align:4 +finishDeadBubbleBodyEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0B70; // type:function size:0x30 scope:global align:4 +startDeadBubbleMouthEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0BA0; // type:function size:0x34 scope:global align:4 +finishDeadBubbleMouthEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0BD4; // type:function size:0x30 scope:global align:4 +createChangeMaterialEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0C04; // type:function size:0xA0 scope:global align:4 +createDeadBombFootEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0CA4; // type:function size:0xB8 scope:global align:4 +startShineParticleEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0D5C; // type:function size:0x34 scope:global align:4 +finishShineParticleEffect__Q34Game11BigTreasure3ObjFv = .text:0x802E0D90; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game11BigTreasure3ObjFv = .text:0x802E0DC0; // type:function size:0x1C4 scope:global align:4 +effectDrawOff__Q34Game11BigTreasure3ObjFv = .text:0x802E0F84; // type:function size:0x1C4 scope:global align:4 +subShadowScale__Q34Game11BigTreasure3ObjFv = .text:0x802E1148; // type:function size:0x2C scope:global align:4 +startBigTreasureBootUpDemo__Q34Game11BigTreasure3ObjFv = .text:0x802E1174; // type:function size:0xFC scope:global align:4 +__dt__Q23efx14TOootaParticleFv = .text:0x802E1270; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx16TOootaChangeBodyFv = .text:0x802E130C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TOootaDeadAwaFv = .text:0x802E13A8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TOootaStartBodyFv = .text:0x802E1444; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TOootaChangeLegFv = .text:0x802E14E0; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TOootaStartLegFv = .text:0x802E157C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TOootaStartOtaFv = .text:0x802E1618; // type:function size:0x9C scope:weak align:4 +inWaterCallback__Q34Game11BigTreasure3ObjFPQ24Game8WaterBox = .text:0x802E16B4; // type:function size:0x4 scope:weak align:4 +outWaterCallback__Q34Game11BigTreasure3ObjFv = .text:0x802E16B8; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game11BigTreasure3ObjFv = .text:0x802E16BC; // type:function size:0x8 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game11BigTreasure3ObjFv = .text:0x802E16C4; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game11BigTreasure3ObjFv = .text:0x802E16C8; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11BigTreasure14ProperAnimatorFv = .text:0x802E16D0; // type:function size:0x6C scope:weak align:4 +__sinit_BigTreasure_cpp = .text:0x802E173C; // type:function size:0x28 scope:local align:4 +@1412@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x802E1764; // type:function size:0x14 scope:weak align:4 +@1412@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x802E1778; // type:function size:0x14 scope:weak align:4 +@1412@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x802E178C; // type:function size:0x14 scope:weak align:4 +@1412@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x802E17A0; // type:function size:0x14 scope:weak align:4 +@1412@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x802E17B4; // type:function size:0x14 scope:weak align:4 +@1412@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x802E17C8; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14TOootaStartOtaFv = .text:0x802E17DC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TOootaStartLegFv = .text:0x802E17E4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TOootaChangeLegFv = .text:0x802E17EC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TOootaStartBodyFv = .text:0x802E17F4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TOootaDeadAwaFv = .text:0x802E17FC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TOootaChangeBodyFv = .text:0x802E1804; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TOootaParticleFv = .text:0x802E180C; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Kabuto3FSMFPQ24Game9EnemyBase = .text:0x802E1814; // type:function size:0x480 scope:global align:4 +init__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E1C94; // type:function size:0xA0 scope:global align:4 +finishWaitEffect__Q34Game6Kabuto3ObjFv = .text:0x802E1D34; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Kabuto3ObjFv = .text:0x802E1D38; // type:function size:0x8 scope:weak align:4 +exec__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBase = .text:0x802E1D40; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBase = .text:0x802E1D84; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E1D88; // type:function size:0x6C scope:global align:4 +exec__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBase = .text:0x802E1DF4; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBase = .text:0x802E1F00; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E1F24; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBase = .text:0x802E1F78; // type:function size:0x340 scope:global align:4 +cleanup__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBase = .text:0x802E22B8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E22DC; // type:function size:0x50 scope:global align:4 +exec__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBase = .text:0x802E232C; // type:function size:0x38C scope:global align:4 +cleanup__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBase = .text:0x802E26B8; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E26DC; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBase = .text:0x802E2744; // type:function size:0x16C scope:global align:4 +cleanup__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBase = .text:0x802E28B0; // type:function size:0x38 scope:global align:4 +init__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E28E8; // type:function size:0x7C scope:global align:4 +exec__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBase = .text:0x802E2964; // type:function size:0x128 scope:global align:4 +cleanup__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBase = .text:0x802E2A8C; // type:function size:0x44 scope:global align:4 +init__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E2AD0; // type:function size:0xB8 scope:global align:4 +exec__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBase = .text:0x802E2B88; // type:function size:0xE4 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBase = .text:0x802E2C6C; // type:function size:0x84 scope:global align:4 +init__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E2CF0; // type:function size:0x18C scope:global align:4 +exec__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBase = .text:0x802E2E7C; // type:function size:0x244 scope:global align:4 +cleanup__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBase = .text:0x802E30C0; // type:function size:0x10 scope:global align:4 +init__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E30D0; // type:function size:0x130 scope:global align:4 +exec__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBase = .text:0x802E3200; // type:function size:0x90 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBase = .text:0x802E3290; // type:function size:0x24 scope:global align:4 +init__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E32B4; // type:function size:0x54 scope:global align:4 +startWaitEffect__Q34Game6Kabuto3ObjFv = .text:0x802E3308; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBase = .text:0x802E330C; // type:function size:0x204 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBase = .text:0x802E3510; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E3514; // type:function size:0x68 scope:global align:4 +startRotateEffect__Q34Game6Kabuto3ObjFv = .text:0x802E357C; // type:function size:0x4 scope:weak align:4 +exec__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBase = .text:0x802E3580; // type:function size:0x290 scope:global align:4 +cleanup__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBase = .text:0x802E3810; // type:function size:0x30 scope:global align:4 +finishRotateEffect__Q34Game6Kabuto3ObjFv = .text:0x802E3840; // type:function size:0x4 scope:weak align:4 +init__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E3844; // type:function size:0x68 scope:global align:4 +exec__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBase = .text:0x802E38AC; // type:function size:0x260 scope:global align:4 +cleanup__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBase = .text:0x802E3B0C; // type:function size:0x4 scope:global align:4 +init__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E3B10; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBase = .text:0x802E3B64; // type:function size:0x16C scope:global align:4 +cleanup__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBase = .text:0x802E3CD0; // type:function size:0x4 scope:global align:4 +setAnimMgr__Q34Game6Kabuto14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802E3CD4; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Kabuto14ProperAnimatorFi = .text:0x802E3CDC; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Kabuto14ProperAnimatorFv = .text:0x802E3CE4; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Kabuto14ProperAnimatorFv = .text:0x802E3D40; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kabuto3MgrFiUc = .text:0x802E3D48; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game6Kabuto3MgrFv = .text:0x802E3D98; // type:function size:0xE8 scope:global align:4 +loadAnimData__Q34Game6Kabuto3MgrFv = .text:0x802E3E80; // type:function size:0xA0 scope:global align:4 +createModel__Q34Game6Kabuto3MgrFv = .text:0x802E3F20; // type:function size:0x14C scope:global align:4 +__dt__Q34Game6Kabuto3MgrFv = .text:0x802E406C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Kabuto3MgrFv = .text:0x802E411C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Kabuto3MgrFPv = .text:0x802E4124; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game6Kabuto3MgrFv = .text:0x802E4150; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Kabuto3ObjFv = .text:0x802E4158; // type:function size:0x14C scope:global align:4 +createEffect__Q34Game6Kabuto3ObjFv = .text:0x802E42A4; // type:function size:0x4 scope:weak align:4 +setInitialSetting__Q34Game6Kabuto3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802E42A8; // type:function size:0x4 scope:global align:4 +onInit__Q34Game6Kabuto3ObjFPQ24Game15CreatureInitArg = .text:0x802E42AC; // type:function size:0x108 scope:global align:4 +setupEffect__Q34Game6Kabuto3ObjFv = .text:0x802E43B4; // type:function size:0x4 scope:weak align:4 +doUpdate__Q34Game6Kabuto3ObjFv = .text:0x802E43B8; // type:function size:0x44 scope:global align:4 +doDirectDraw__Q34Game6Kabuto3ObjFR8Graphics = .text:0x802E43FC; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Kabuto3ObjFR8Graphics = .text:0x802E4400; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game6Kabuto3ObjFPQ34Game6Kabuto3FSM = .text:0x802E4420; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game6Kabuto3ObjFRQ24Game11ShadowParam = .text:0x802E446C; // type:function size:0xA8 scope:global align:4 +doStartStoneState__Q34Game6Kabuto3ObjFv = .text:0x802E4514; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game6Kabuto3ObjFv = .text:0x802E4568; // type:function size:0xB0 scope:global align:4 +startCarcassMotion__Q34Game6Kabuto3ObjFv = .text:0x802E4618; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game6Kabuto3ObjFv = .text:0x802E4640; // type:function size:0x2C scope:global align:4 +effectDrawOff__Q34Game6Kabuto3ObjFv = .text:0x802E466C; // type:function size:0x4 scope:weak align:4 +doEndMovie__Q34Game6Kabuto3ObjFv = .text:0x802E4670; // type:function size:0x2C scope:global align:4 +effectDrawOn__Q34Game6Kabuto3ObjFv = .text:0x802E469C; // type:function size:0x4 scope:weak align:4 +initWalkSmokeEffect__Q34Game6Kabuto3ObjFv = .text:0x802E46A0; // type:function size:0x94 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game6Kabuto3ObjFv = .text:0x802E4734; // type:function size:0x8 scope:global align:4 +setRandTarget__Q34Game6Kabuto3ObjFv = .text:0x802E473C; // type:function size:0x198 scope:global align:4 +getSearchedTarget__Q34Game6Kabuto3ObjFv = .text:0x802E48D4; // type:function size:0x58 scope:global align:4 +isAttackableTarget__Q34Game6Kabuto3ObjFv = .text:0x802E492C; // type:function size:0x2BC scope:global align:4 +createStoneAttack__Q34Game6Kabuto3ObjFv = .text:0x802E4BE8; // type:function size:0xE4 scope:global align:4 +updateCaution__Q34Game6Kabuto3ObjFv = .text:0x802E4CCC; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game6Kabuto3ObjFv = .text:0x802E4D1C; // type:function size:0x24 scope:global align:4 +lifeIncrement__Q34Game6Kabuto3ObjFv = .text:0x802E4D40; // type:function size:0x40 scope:global align:4 +createRockEmitEffect__Q34Game6Kabuto3ObjFv = .text:0x802E4D80; // type:function size:0x7C scope:global align:4 +__dt__Q34Game6Kabuto3ObjFv = .text:0x802E4DFC; // type:function size:0xBC scope:weak align:4 +isUnderground__Q34Game6Kabuto3ObjFv = .text:0x802E4EB8; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game6Kabuto3ObjFv = .text:0x802E4EC0; // type:function size:0x8 scope:weak align:4 +init__Q34Game12KumaKochappy3FSMFPQ24Game9EnemyBase = .text:0x802E4EC8; // type:function size:0x27C scope:global align:4 +init__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E5144; // type:function size:0x50 scope:global align:4 +exec__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBase = .text:0x802E5194; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBase = .text:0x802E51D8; // type:function size:0x4 scope:global align:4 +init__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E51DC; // type:function size:0x58 scope:global align:4 +exec__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBase = .text:0x802E5234; // type:function size:0x44 scope:global align:4 +cleanup__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBase = .text:0x802E5278; // type:function size:0x4 scope:global align:4 +init__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E527C; // type:function size:0x54 scope:global align:4 +exec__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBase = .text:0x802E52D0; // type:function size:0x3A8 scope:global align:4 +cleanup__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBase = .text:0x802E5678; // type:function size:0x3C scope:global align:4 +init__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E56B4; // type:function size:0x58 scope:global align:4 +exec__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBase = .text:0x802E570C; // type:function size:0x4CC scope:global align:4 +cleanup__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBase = .text:0x802E5BD8; // type:function size:0x24 scope:global align:4 +init__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E5BFC; // type:function size:0x44 scope:global align:4 +exec__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBase = .text:0x802E5C40; // type:function size:0x4D0 scope:global align:4 +cleanup__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBase = .text:0x802E6110; // type:function size:0x4 scope:global align:4 +init__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E6114; // type:function size:0x34 scope:global align:4 +exec__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBase = .text:0x802E6148; // type:function size:0x538 scope:global align:4 +cleanup__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBase = .text:0x802E6680; // type:function size:0x28 scope:global align:4 +init__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E66A8; // type:function size:0x4C scope:global align:4 +exec__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x802E66F4; // type:function size:0x534 scope:global align:4 +cleanup__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBase = .text:0x802E6C28; // type:function size:0x28 scope:global align:4 +setAnimMgr__Q34Game12KumaKochappy14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802E6C50; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game12KumaKochappy14ProperAnimatorFi = .text:0x802E6C58; // type:function size:0x8 scope:global align:4 +__dt__Q34Game12KumaKochappy14ProperAnimatorFv = .text:0x802E6C60; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game12KumaKochappy14ProperAnimatorFv = .text:0x802E6CBC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KumaKochappy3MgrFiUc = .text:0x802E6CC4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game12KumaKochappy3MgrFv = .text:0x802E6D14; // type:function size:0x48 scope:global align:4 +__ct__Q34Game12KumaKochappy5ParmsFv = .text:0x802E6D5C; // type:function size:0x98 scope:weak align:4 +createObj__Q34Game12KumaKochappy3MgrFi = .text:0x802E6DF4; // type:function size:0x60 scope:global align:4 +__dt__Q34Game12KumaKochappy3ObjFv = .text:0x802E6E54; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game12KumaKochappy3MgrFi = .text:0x802E6F10; // type:function size:0x10 scope:global align:4 +read__Q34Game12KumaKochappy5ParmsFR6Stream = .text:0x802E6F20; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game12KumaKochappy3MgrFv = .text:0x802E6F70; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game12KumaKochappy3MgrFv = .text:0x802E7020; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12KumaKochappy3MgrFv = .text:0x802E7028; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game12KumaKochappy3ObjFv = .text:0x802E7030; // type:function size:0x148 scope:global align:4 +setInitialSetting__Q34Game12KumaKochappy3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802E7178; // type:function size:0x4 scope:global align:4 +onInit__Q34Game12KumaKochappy3ObjFPQ24Game15CreatureInitArg = .text:0x802E717C; // type:function size:0x68 scope:global align:4 +onKill__Q34Game12KumaKochappy3ObjFPQ24Game15CreatureKillArg = .text:0x802E71E4; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game12KumaKochappy3ObjFv = .text:0x802E7228; // type:function size:0x4C scope:global align:4 +doDirectDraw__Q34Game12KumaKochappy3ObjFR8Graphics = .text:0x802E7274; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game12KumaKochappy3ObjFR8Graphics = .text:0x802E7278; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game12KumaKochappy3ObjFPQ34Game12KumaKochappy3FSM = .text:0x802E7298; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game12KumaKochappy3ObjFRQ24Game11ShadowParam = .text:0x802E72E4; // type:function size:0xA8 scope:global align:4 +pressCallBack__Q34Game12KumaKochappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802E738C; // type:function size:0x88 scope:global align:4 +hipdropCallBack__Q34Game12KumaKochappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802E7414; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game12KumaKochappy3ObjFv = .text:0x802E7440; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game12KumaKochappy3ObjFv = .text:0x802E7468; // type:function size:0x8C scope:global align:4 +initWalkSmokeEffect__Q34Game12KumaKochappy3ObjFv = .text:0x802E74F4; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game12KumaKochappy3ObjFv = .text:0x802E7558; // type:function size:0x8 scope:global align:4 +resetZukanAnimationFrame__Q34Game12KumaKochappy3ObjFv = .text:0x802E7560; // type:function size:0x78 scope:global align:4 +setNearestParent__Q34Game12KumaKochappy3ObjFv = .text:0x802E75D8; // type:function size:0x380 scope:global align:4 +isDone__Q24Game38EnemyIteratorFv = .text:0x802E7958; // type:function size:0x4C scope:weak align:4 +setTargetParentPosition__Q34Game12KumaKochappy3ObjFv = .text:0x802E79A4; // type:function size:0x1A8 scope:global align:4 +updateHomePosition__Q34Game12KumaKochappy3ObjFv = .text:0x802E7B4C; // type:function size:0x1C scope:global align:4 +getSearchedTarget__Q34Game12KumaKochappy3ObjFv = .text:0x802E7B68; // type:function size:0x38 scope:global align:4 +createChappyRelation__Q34Game12KumaKochappy3ObjFv = .text:0x802E7BA0; // type:function size:0x70 scope:global align:4 +releaseParent__Q34Game12KumaKochappy3ObjFv = .text:0x802E7C10; // type:function size:0x24 scope:global align:4 +getParentRelation__Q34Game12KumaKochappy3ObjFv = .text:0x802E7C34; // type:function size:0xC scope:global align:4 +getEnemyIndex__Q34Game12KumaKochappy3ObjFRi = .text:0x802E7C40; // type:function size:0x3C scope:global align:4 +addParentEnemy__Q34Game12KumaKochappy3ObjFPQ34Game10KumaChappy3Obj = .text:0x802E7C7C; // type:function size:0xA0 scope:global align:4 +__ml__Q24Game38EnemyIteratorFv = .text:0x802E7D1C; // type:function size:0x38 scope:weak align:4 +next__Q24Game38EnemyIteratorFv = .text:0x802E7D54; // type:function size:0xE4 scope:weak align:4 +first__Q24Game38EnemyIteratorFv = .text:0x802E7E38; // type:function size:0xDC scope:weak align:4 +getMouthSlots__Q34Game12KumaKochappy3ObjFv = .text:0x802E7F14; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game12KumaKochappy3ObjFv = .text:0x802E7F1C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game12KumaKochappy3ObjFv = .text:0x802E7F24; // type:function size:0x8 scope:weak align:4 +init__Q34Game10MiniHoudai3FSMFPQ24Game9EnemyBase = .text:0x802E7F2C; // type:function size:0x3D8 scope:global align:4 +init__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E8304; // type:function size:0x58 scope:global align:4 +exec__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBase = .text:0x802E835C; // type:function size:0x10C scope:global align:4 +cleanup__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBase = .text:0x802E8468; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E846C; // type:function size:0x58 scope:global align:4 +exec__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBase = .text:0x802E84C4; // type:function size:0x3A8 scope:global align:4 +cleanup__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBase = .text:0x802E886C; // type:function size:0x10 scope:global align:4 +init__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E887C; // type:function size:0x4C scope:global align:4 +exec__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBase = .text:0x802E88C8; // type:function size:0x50C scope:global align:4 +cleanup__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBase = .text:0x802E8DD4; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E8DD8; // type:function size:0x60 scope:global align:4 +exec__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBase = .text:0x802E8E38; // type:function size:0x6CC scope:global align:4 +cleanup__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBase = .text:0x802E9504; // type:function size:0x24 scope:global align:4 +init__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E9528; // type:function size:0x68 scope:global align:4 +exec__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBase = .text:0x802E9590; // type:function size:0x544 scope:global align:4 +cleanup__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBase = .text:0x802E9AD4; // type:function size:0x3C scope:global align:4 +init__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802E9B10; // type:function size:0x5C scope:global align:4 +exec__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBase = .text:0x802E9B6C; // type:function size:0x6AC scope:global align:4 +cleanup__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBase = .text:0x802EA218; // type:function size:0x24 scope:global align:4 +init__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EA23C; // type:function size:0x44 scope:global align:4 +exec__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBase = .text:0x802EA280; // type:function size:0x368 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBase = .text:0x802EA5E8; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EA5EC; // type:function size:0x44 scope:global align:4 +exec__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBase = .text:0x802EA630; // type:function size:0x390 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBase = .text:0x802EA9C0; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EA9C4; // type:function size:0x50 scope:global align:4 +exec__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBase = .text:0x802EAA14; // type:function size:0x7CC scope:global align:4 +getEnemyTypeID__Q34Game10MiniHoudai3ObjFv = .text:0x802EB1E0; // type:function size:0x8 scope:weak align:4 +cleanup__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBase = .text:0x802EB1E8; // type:function size:0x24 scope:global align:4 +init__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EB20C; // type:function size:0x34 scope:global align:4 +exec__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBase = .text:0x802EB240; // type:function size:0x578 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBase = .text:0x802EB7B8; // type:function size:0x4 scope:global align:4 +init__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EB7BC; // type:function size:0x34 scope:global align:4 +exec__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBase = .text:0x802EB7F0; // type:function size:0x4A4 scope:global align:4 +cleanup__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBase = .text:0x802EBC94; // type:function size:0x4 scope:global align:4 +__sinit_MiniHoudaiState_cpp = .text:0x802EBC98; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game10MiniHoudai14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802EBCC0; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game10MiniHoudai14ProperAnimatorFi = .text:0x802EBCC8; // type:function size:0x8 scope:global align:4 +__dt__Q34Game10MiniHoudai14ProperAnimatorFv = .text:0x802EBCD0; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game10MiniHoudai14ProperAnimatorFv = .text:0x802EBD2C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10MiniHoudai3MgrFiUc = .text:0x802EBD34; // type:function size:0x50 scope:global align:4 +loadModelData__Q34Game10MiniHoudai3MgrFv = .text:0x802EBD84; // type:function size:0xD8 scope:global align:4 +loadAnimData__Q34Game10MiniHoudai3MgrFv = .text:0x802EBE5C; // type:function size:0x90 scope:global align:4 +__dt__Q34Game10MiniHoudai3MgrFv = .text:0x802EBEEC; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10MiniHoudai3MgrFv = .text:0x802EBF9C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10MiniHoudai3MgrFPv = .text:0x802EBFA4; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game10MiniHoudai3MgrFv = .text:0x802EBFD0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10MiniHoudai3ObjFv = .text:0x802EBFD8; // type:function size:0x148 scope:global align:4 +setInitialSetting__Q34Game10MiniHoudai3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802EC120; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10MiniHoudai3ObjFPQ24Game15CreatureInitArg = .text:0x802EC124; // type:function size:0xC8 scope:global align:4 +onKill__Q34Game10MiniHoudai3ObjFPQ24Game15CreatureKillArg = .text:0x802EC1EC; // type:function size:0x4C scope:global align:4 +doUpdate__Q34Game10MiniHoudai3ObjFv = .text:0x802EC238; // type:function size:0x54 scope:global align:4 +doUpdateCommon__Q34Game10MiniHoudai3ObjFv = .text:0x802EC28C; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game10MiniHoudai3ObjFv = .text:0x802EC2C0; // type:function size:0x3C scope:global align:4 +doDirectDraw__Q34Game10MiniHoudai3ObjFR8Graphics = .text:0x802EC2FC; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10MiniHoudai3ObjFR8Graphics = .text:0x802EC300; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10MiniHoudai3ObjFPQ34Game10MiniHoudai3FSM = .text:0x802EC320; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10MiniHoudai3ObjFRQ24Game11ShadowParam = .text:0x802EC36C; // type:function size:0xE0 scope:global align:4 +damageCallBack__Q34Game10MiniHoudai3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802EC44C; // type:function size:0x44 scope:global align:4 +doStartStoneState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC490; // type:function size:0x34 scope:global align:4 +doFinishStoneState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC4C4; // type:function size:0x20 scope:global align:4 +doStartEarthquakeFitState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC4E4; // type:function size:0x34 scope:global align:4 +doFinishEarthquakeFitState__Q34Game10MiniHoudai3ObjFv = .text:0x802EC518; // type:function size:0x20 scope:global align:4 +doStartWaitingBirthTypeDrop__Q34Game10MiniHoudai3ObjFv = .text:0x802EC538; // type:function size:0x34 scope:global align:4 +doFinishWaitingBirthTypeDrop__Q34Game10MiniHoudai3ObjFv = .text:0x802EC56C; // type:function size:0x34 scope:global align:4 +startCarcassMotion__Q34Game10MiniHoudai3ObjFv = .text:0x802EC5A0; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game10MiniHoudai3ObjFv = .text:0x802EC5C8; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10MiniHoudai3ObjFv = .text:0x802EC5E8; // type:function size:0x20 scope:global align:4 +initWalkSmokeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802EC608; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10MiniHoudai3ObjFv = .text:0x802EC66C; // type:function size:0x8 scope:global align:4 +doBecomeCarcass__Q34Game10MiniHoudai3ObjFv = .text:0x802EC674; // type:function size:0x14 scope:global align:4 +doUpdateCarcass__Q34Game10MiniHoudai3ObjFv = .text:0x802EC688; // type:function size:0x1FC scope:global align:4 +doGetLifeGaugeParam__Q34Game10MiniHoudai3ObjFRQ24Game14LifeGaugeParam = .text:0x802EC884; // type:function size:0x64 scope:global align:4 +updateCaution__Q34Game10MiniHoudai3ObjFv = .text:0x802EC8E8; // type:function size:0x50 scope:global align:4 +getViewAngle__Q34Game10MiniHoudai3ObjFv = .text:0x802EC938; // type:function size:0x24 scope:global align:4 +resetWayPoint__Q34Game10MiniHoudai3ObjFv = .text:0x802EC95C; // type:function size:0x10 scope:global align:4 +setNearestWayPoint__Q34Game10MiniHoudai3ObjFv = .text:0x802EC96C; // type:function size:0xB0 scope:global align:4 +setLinkWayPoint__Q34Game10MiniHoudai3ObjFv = .text:0x802ECA1C; // type:function size:0x260 scope:global align:4 +getSearchedTarget__Q34Game10MiniHoudai3ObjFv = .text:0x802ECC7C; // type:function size:0x6C scope:global align:4 +updateTargetDistance__Q34Game10MiniHoudai3ObjFv = .text:0x802ECCE8; // type:function size:0x128 scope:global align:4 +updateHomePosition__Q34Game10MiniHoudai3ObjFv = .text:0x802ECE10; // type:function size:0xBC scope:global align:4 +isAttackableTarget__Q34Game10MiniHoudai3ObjFv = .text:0x802ECECC; // type:function size:0x32C scope:global align:4 +createShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED1F8; // type:function size:0x48 scope:global align:4 +setupShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED240; // type:function size:0x24 scope:global align:4 +resetShotGunCallBack__Q34Game10MiniHoudai3ObjFv = .text:0x802ED264; // type:function size:0x24 scope:global align:4 +setShotGunCallBack__Q34Game10MiniHoudai3ObjFv = .text:0x802ED288; // type:function size:0x24 scope:global align:4 +doUpdateShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED2AC; // type:function size:0x24 scope:global align:4 +doUpdateCommonShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED2D0; // type:function size:0x24 scope:global align:4 +startShotGunRotation__Q34Game10MiniHoudai3ObjFv = .text:0x802ED2F4; // type:function size:0x24 scope:global align:4 +finishShotGunRotation__Q34Game10MiniHoudai3ObjFv = .text:0x802ED318; // type:function size:0x24 scope:global align:4 +isShotGunRotation__Q34Game10MiniHoudai3ObjFv = .text:0x802ED33C; // type:function size:0x24 scope:global align:4 +isShotGunLockOn__Q34Game10MiniHoudai3ObjFv = .text:0x802ED360; // type:function size:0x24 scope:global align:4 +isFinishShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED384; // type:function size:0x24 scope:global align:4 +emitShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED3A8; // type:function size:0x24 scope:global align:4 +setShotGunTargetPosition__Q34Game10MiniHoudai3ObjFv = .text:0x802ED3CC; // type:function size:0x2C scope:global align:4 +forceFinishShotGun__Q34Game10MiniHoudai3ObjFv = .text:0x802ED3F8; // type:function size:0x24 scope:global align:4 +createEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED41C; // type:function size:0x138 scope:global align:4 +setupEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED554; // type:function size:0x58 scope:global align:4 +createSmokeSmallEffect__Q34Game10MiniHoudai3ObjFb = .text:0x802ED5AC; // type:function size:0xA0 scope:global align:4 +createSmokeLargeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED64C; // type:function size:0xE8 scope:global align:4 +createDownEffect__Q34Game10MiniHoudai3ObjFf = .text:0x802ED734; // type:function size:0x24 scope:global align:4 +startChargeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED758; // type:function size:0x34 scope:global align:4 +finishChargeEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED78C; // type:function size:0x30 scope:global align:4 +createDeadLightEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED7BC; // type:function size:0x34 scope:global align:4 +createDeadBombEmitEffect__Q34Game10MiniHoudai3ObjFv = .text:0x802ED7F0; // type:function size:0x1D4 scope:global align:4 +effectDrawOn__Q34Game10MiniHoudai3ObjFv = .text:0x802ED9C4; // type:function size:0x58 scope:global align:4 +effectDrawOff__Q34Game10MiniHoudai3ObjFv = .text:0x802EDA1C; // type:function size:0x58 scope:global align:4 +__dt__Q23efx15TChibiDeadLightFv = .text:0x802EDA74; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx12TChibiChargeFv = .text:0x802EDB10; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game10MiniHoudai3ObjFv = .text:0x802EDBAC; // type:function size:0xBC scope:weak align:4 +getDownSmokeScale__Q34Game10MiniHoudai3ObjFv = .text:0x802EDC68; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TChibiChargeFv = .text:0x802EDC70; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TChibiDeadLightFv = .text:0x802EDC78; // type:function size:0x8 scope:weak align:4 +verticalRotationCallBack__Q24Game10MiniHoudaiFP8J3DJointi = .text:0x802EDC80; // type:function size:0x3C scope:local align:4 +update__Q34Game10MiniHoudai21MiniHoudaiShotGunNodeFv = .text:0x802EDCBC; // type:function size:0xD14 scope:global align:4 +__ct__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFPQ34Game10MiniHoudai3Obj = .text:0x802EE9D0; // type:function size:0x1E0 scope:global align:4 +setupShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEBB0; // type:function size:0x6C scope:global align:4 +resetCallBack__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC1C; // type:function size:0xC scope:global align:4 +setCallBack__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC28; // type:function size:0x8 scope:global align:4 +startRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC30; // type:function size:0x24 scope:global align:4 +finishRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC54; // type:function size:0x14 scope:global align:4 +isShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC68; // type:function size:0x8 scope:global align:4 +isShotGunLockOn__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC70; // type:function size:0x8 scope:global align:4 +isFinishShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC78; // type:function size:0x8 scope:global align:4 +setShotGunTarget__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFR10Vector3 = .text:0x802EEC80; // type:function size:0x1C scope:global align:4 +emitShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EEC9C; // type:function size:0x4C4 scope:global align:4 +doUpdate__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF160; // type:function size:0x74 scope:global align:4 +doUpdateCommon__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF1D4; // type:function size:0x78 scope:global align:4 +forceFinishShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF24C; // type:function size:0x7C scope:global align:4 +getShotGunPosition__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF2C8; // type:function size:0x20 scope:global align:4 +searchShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF2E8; // type:function size:0x1C4 scope:global align:4 +returnShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF4AC; // type:function size:0xC4 scope:global align:4 +rotateVertical__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFP8J3DJoint = .text:0x802EF570; // type:function size:0x258 scope:global align:4 +effectDrawOn__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF7C8; // type:function size:0x88 scope:global align:4 +effectDrawOff__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv = .text:0x802EF850; // type:function size:0x88 scope:global align:4 +__dt__Q23efx11TChibiShellFv = .text:0x802EF8D8; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game10MiniHoudai21MiniHoudaiShotGunNodeFv = .text:0x802EF974; // type:function size:0x60 scope:weak align:4 +__sinit_MiniHoudaiShotGun_cpp = .text:0x802EF9D4; // type:function size:0x28 scope:local align:4 +@4@__dt__Q23efx11TChibiShellFv = .text:0x802EF9FC; // type:function size:0x8 scope:weak align:4 +init__Q34Game7Sokkuri3FSMFPQ24Game9EnemyBase = .text:0x802EFA04; // type:function size:0x330 scope:global align:4 +init__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EFD34; // type:function size:0x64 scope:global align:4 +exec__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBase = .text:0x802EFD98; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBase = .text:0x802EFDF8; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EFDFC; // type:function size:0x70 scope:global align:4 +exec__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBase = .text:0x802EFE6C; // type:function size:0x60 scope:global align:4 +cleanup__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBase = .text:0x802EFECC; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802EFED0; // type:function size:0xC4 scope:global align:4 +exec__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBase = .text:0x802EFF94; // type:function size:0x64 scope:global align:4 +cleanup__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBase = .text:0x802EFFF8; // type:function size:0x7C scope:global align:4 +init__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F0074; // type:function size:0x78 scope:global align:4 +exec__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBase = .text:0x802F00EC; // type:function size:0xD8 scope:global align:4 +cleanup__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBase = .text:0x802F01C4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F01C8; // type:function size:0x70 scope:global align:4 +exec__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBase = .text:0x802F0238; // type:function size:0x9C scope:global align:4 +cleanup__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBase = .text:0x802F02D4; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F02D8; // type:function size:0x68 scope:global align:4 +exec__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBase = .text:0x802F0340; // type:function size:0x154 scope:global align:4 +cleanup__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBase = .text:0x802F0494; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F0498; // type:function size:0x60 scope:global align:4 +exec__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBase = .text:0x802F04F8; // type:function size:0x234 scope:global align:4 +cleanup__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBase = .text:0x802F072C; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F0730; // type:function size:0x50 scope:global align:4 +exec__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBase = .text:0x802F0780; // type:function size:0x1D8 scope:global align:4 +cleanup__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBase = .text:0x802F0958; // type:function size:0x4 scope:global align:4 +init__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F095C; // type:function size:0x6C scope:global align:4 +exec__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBase = .text:0x802F09C8; // type:function size:0x198 scope:global align:4 +cleanup__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBase = .text:0x802F0B60; // type:function size:0x10 scope:global align:4 +setAnimMgr__Q34Game7Sokkuri14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x802F0B70; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game7Sokkuri14ProperAnimatorFi = .text:0x802F0B78; // type:function size:0x8 scope:global align:4 +__dt__Q34Game7Sokkuri14ProperAnimatorFv = .text:0x802F0B80; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game7Sokkuri14ProperAnimatorFv = .text:0x802F0BDC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Sokkuri3MgrFiUc = .text:0x802F0BE4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game7Sokkuri3MgrFv = .text:0x802F0C34; // type:function size:0x48 scope:global align:4 +__ct__Q34Game7Sokkuri5ParmsFv = .text:0x802F0C7C; // type:function size:0x48 scope:weak align:4 +__ct__Q44Game7Sokkuri5Parms11ProperParmsFv = .text:0x802F0CC4; // type:function size:0x2B0 scope:weak align:4 +createObj__Q34Game7Sokkuri3MgrFi = .text:0x802F0F74; // type:function size:0x60 scope:global align:4 +__dt__Q34Game7Sokkuri3ObjFv = .text:0x802F0FD4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game7Sokkuri3MgrFi = .text:0x802F1090; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game7Sokkuri3MgrFv = .text:0x802F10A0; // type:function size:0x68 scope:global align:4 +__dt__Q34Game7Sokkuri3MgrFv = .text:0x802F1108; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game7Sokkuri3MgrFv = .text:0x802F11B8; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Sokkuri3MgrFPv = .text:0x802F11C0; // type:function size:0x2C scope:weak align:4 +read__Q34Game7Sokkuri5ParmsFR6Stream = .text:0x802F11EC; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game7Sokkuri3MgrFv = .text:0x802F123C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game7Sokkuri3ObjFv = .text:0x802F1244; // type:function size:0x130 scope:global align:4 +setInitialSetting__Q34Game7Sokkuri3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802F1374; // type:function size:0x4 scope:global align:4 +onInit__Q34Game7Sokkuri3ObjFPQ24Game15CreatureInitArg = .text:0x802F1378; // type:function size:0x8C scope:global align:4 +doUpdate__Q34Game7Sokkuri3ObjFv = .text:0x802F1404; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game7Sokkuri3ObjFR8Graphics = .text:0x802F1438; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game7Sokkuri3ObjFR8Graphics = .text:0x802F143C; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game7Sokkuri3ObjFPQ34Game7Sokkuri3FSM = .text:0x802F145C; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game7Sokkuri3ObjFRQ24Game11ShadowParam = .text:0x802F14A8; // type:function size:0x118 scope:global align:4 +isUnderground__Q34Game7Sokkuri3ObjFv = .text:0x802F15C0; // type:function size:0x8 scope:weak align:4 +pressCallBack__Q34Game7Sokkuri3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F15C8; // type:function size:0x9C scope:global align:4 +hipdropCallBack__Q34Game7Sokkuri3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F1664; // type:function size:0x9C scope:global align:4 +wallCallback__Q34Game7Sokkuri3ObjFRCQ24Game8MoveInfo = .text:0x802F1700; // type:function size:0xFC scope:global align:4 +doStartStoneState__Q34Game7Sokkuri3ObjFv = .text:0x802F17FC; // type:function size:0x40 scope:global align:4 +doFinishStoneState__Q34Game7Sokkuri3ObjFv = .text:0x802F183C; // type:function size:0x20 scope:global align:4 +startCarcassMotion__Q34Game7Sokkuri3ObjFv = .text:0x802F185C; // type:function size:0x28 scope:global align:4 +getOffsetForMapCollision__Q34Game7Sokkuri3ObjFv = .text:0x802F1884; // type:function size:0xAC scope:global align:4 +isAppear__Q34Game7Sokkuri3ObjFv = .text:0x802F1930; // type:function size:0x7C scope:global align:4 +isDisappear__Q34Game7Sokkuri3ObjFv = .text:0x802F19AC; // type:function size:0xA8 scope:global align:4 +setNextMoveInfo__Q34Game7Sokkuri3ObjFv = .text:0x802F1A54; // type:function size:0x1E0 scope:global align:4 +updateMoveState__Q34Game7Sokkuri3ObjFv = .text:0x802F1C34; // type:function size:0x16C scope:global align:4 +resetMoveVelocity__Q34Game7Sokkuri3ObjFv = .text:0x802F1DA0; // type:function size:0x2C scope:global align:4 +setNextWaitInfo__Q34Game7Sokkuri3ObjFv = .text:0x802F1DCC; // type:function size:0x78 scope:global align:4 +createDownEffect__Q34Game7Sokkuri3ObjFff = .text:0x802F1E44; // type:function size:0xC4 scope:global align:4 +createBubbleEffect__Q34Game7Sokkuri3ObjFv = .text:0x802F1F08; // type:function size:0xC0 scope:global align:4 +createEfxHamon__Q34Game7Sokkuri3ObjFv = .text:0x802F1FC8; // type:function size:0x48 scope:global align:4 +getDownSmokeScale__Q34Game7Sokkuri3ObjFv = .text:0x802F2010; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game7Sokkuri3ObjFv = .text:0x802F2018; // type:function size:0x8 scope:weak align:4 +makeShadowSRT__Q24Game19TubeShadowTransNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F2020; // type:function size:0x278 scope:global align:4 +makeShadowSRT__Q24Game17TubeShadowSetNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F2298; // type:function size:0x278 scope:global align:4 +makeShadowSRT__Q24Game17TubeShadowPosNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F2510; // type:function size:0x1AC scope:global align:4 +makeShadowSRT__Q24Game16SphereShadowNodeFRQ24Game15JointShadowParmR10Vector3 = .text:0x802F26BC; // type:function size:0x100 scope:global align:4 +makeShadowSRT__Q24Game22UmimushiTubeShadowNodeFRQ24Game15JointShadowParmP7MatrixfR10Vector3R10Vector3 = .text:0x802F27BC; // type:function size:0x1DC scope:global align:4 +makeShadowSRT__Q24Game24UmimushiSphereShadowNodeFRQ24Game15JointShadowParmP7MatrixfR10Vector3b = .text:0x802F2998; // type:function size:0xCC scope:global align:4 +__ct__Q34Game8UmiMushi17UmimushiShadowMgrFPQ34Game8UmiMushi3Obj = .text:0x802F2A64; // type:function size:0xC4 scope:global align:4 +init__Q34Game8UmiMushi17UmimushiShadowMgrFv = .text:0x802F2B28; // type:function size:0x68 scope:global align:4 +update__Q34Game8UmiMushi17UmimushiShadowMgrFv = .text:0x802F2B90; // type:function size:0x15C scope:global align:4 +__dt__Q24Game24UmimushiSphereShadowNodeFv = .text:0x802F2CEC; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game22UmimushiTubeShadowNodeFv = .text:0x802F2D5C; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game4Hana3MgrFiUc = .text:0x802F2DCC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Hana3MgrFv = .text:0x802F2E1C; // type:function size:0x48 scope:global align:4 +createObj__Q34Game4Hana3MgrFi = .text:0x802F2E64; // type:function size:0x60 scope:global align:4 +__dt__Q34Game4Hana3ObjFv = .text:0x802F2EC4; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game4Hana3MgrFi = .text:0x802F2FB4; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game4Hana3MgrFv = .text:0x802F2FC4; // type:function size:0x68 scope:global align:4 +__dt__Q34Game4Hana3MgrFv = .text:0x802F302C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Hana3MgrFv = .text:0x802F30DC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game4Hana3MgrFPv = .text:0x802F30E4; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q34Game4Hana3MgrFv = .text:0x802F3110; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Hana3ObjFv = .text:0x802F3118; // type:function size:0xA4 scope:global align:4 +createEffect__Q34Game4Hana3ObjFv = .text:0x802F31BC; // type:function size:0x4 scope:weak align:4 +onInit__Q34Game4Hana3ObjFPQ24Game15CreatureInitArg = .text:0x802F31C0; // type:function size:0x64 scope:global align:4 +setupEffect__Q34Game4Hana3ObjFv = .text:0x802F3224; // type:function size:0x4 scope:weak align:4 +doDirectDraw__Q34Game4Hana3ObjFR8Graphics = .text:0x802F3228; // type:function size:0x4 scope:global align:4 +getShadowParam__Q34Game4Hana3ObjFRQ24Game11ShadowParam = .text:0x802F322C; // type:function size:0xE8 scope:global align:4 +initMouthSlots__Q34Game4Hana3ObjFv = .text:0x802F3314; // type:function size:0xB4 scope:global align:4 +isWakeup__Q34Game4Hana3ObjFv = .text:0x802F33C8; // type:function size:0x80 scope:global align:4 +flickStatePikmin__Q34Game4Hana3ObjFv = .text:0x802F3448; // type:function size:0x84 scope:global align:4 +flickAttackBomb__Q34Game4Hana3ObjFv = .text:0x802F34CC; // type:function size:0xF0 scope:global align:4 +eatAttackPikmin__Q34Game4Hana3ObjFv = .text:0x802F35BC; // type:function size:0x3C scope:global align:4 +resetUnderGround__Q34Game4Hana3ObjFv = .text:0x802F35F8; // type:function size:0x70 scope:global align:4 +setUnderGround__Q34Game4Hana3ObjFv = .text:0x802F3668; // type:function size:0x84 scope:global align:4 +createSmokeEffect__Q34Game4Hana3ObjFv = .text:0x802F36EC; // type:function size:0x1C0 scope:global align:4 +satisfy__Q24Game21ConditionNotStickSlotFPQ24Game4Piki = .text:0x802F38AC; // type:function size:0x7C scope:weak align:4 +changeMaterial__Q34Game4Hana3ObjFv = .text:0x802F3928; // type:function size:0x4 scope:weak align:4 +isUnderground__Q34Game4Hana3ObjFv = .text:0x802F392C; // type:function size:0x8 scope:weak align:4 +initWalkSmokeEffect__Q34Game4Hana3ObjFv = .text:0x802F3934; // type:function size:0x4 scope:weak align:4 +getWalkSmokeEffectMgr__Q34Game4Hana3ObjFv = .text:0x802F3938; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game4Hana3ObjFv = .text:0x802F3940; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Hana3ObjFv = .text:0x802F3948; // type:function size:0x8 scope:weak align:4 +setAnimationSpeed__Q34Game4Hana3ObjFf = .text:0x802F3950; // type:function size:0x4 scope:weak align:4 +flickAttackFail__Q34Game4Hana3ObjFv = .text:0x802F3954; // type:function size:0x4 scope:weak align:4 +startSleepEffect__Q34Game4Hana3ObjFv = .text:0x802F3958; // type:function size:0x4 scope:weak align:4 +finishSleepEffect__Q34Game4Hana3ObjFv = .text:0x802F395C; // type:function size:0x4 scope:weak align:4 +__sinit_Hana_cpp = .text:0x802F3960; // type:function size:0x28 scope:local align:4 +makeShadowSRT__Q34Game11BigTreasure16AttackShadowNodeFv = .text:0x802F3988; // type:function size:0x108 scope:global align:4 +update__Q34Game11BigTreasure21BigTreasureFireAttackFv = .text:0x802F3A90; // type:function size:0x374 scope:global align:4 +update__Q34Game11BigTreasure20BigTreasureGasAttackFv = .text:0x802F3E04; // type:function size:0x364 scope:global align:4 +update__Q34Game11BigTreasure22BigTreasureWaterAttackFv = .text:0x802F4168; // type:function size:0x324 scope:global align:4 +__dt__Q23efx23TChasePosPosLocalZScaleFv = .text:0x802F448C; // type:function size:0x84 scope:weak align:4 +update__Q34Game11BigTreasure21BigTreasureElecAttackFv = .text:0x802F4510; // type:function size:0x738 scope:global align:4 +__ct__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure3Obj = .text:0x802F4C48; // type:function size:0x7B4 scope:global align:4 +init__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F53FC; // type:function size:0x1C8 scope:global align:4 +update__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F55C4; // type:function size:0xE8 scope:global align:4 +startFireAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F56AC; // type:function size:0x130 scope:global align:4 +startNewFireList__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F57DC; // type:function size:0x9C scope:global align:4 +updateFireAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5878; // type:function size:0x18C scope:global align:4 +updateFireEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5A04; // type:function size:0x70 scope:global align:4 +updateFireSePosition__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureFireAttacki = .text:0x802F5A74; // type:function size:0xA0 scope:global align:4 +startGasAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5B14; // type:function size:0x2C4 scope:global align:4 +startNewGasList__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5DD8; // type:function size:0x14C scope:global align:4 +updateGasAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F5F24; // type:function size:0x344 scope:global align:4 +updateGasEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6268; // type:function size:0x58 scope:global align:4 +updateGasSePosition__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure20BigTreasureGasAttacki = .text:0x802F62C0; // type:function size:0xA0 scope:global align:4 +startWaterAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6360; // type:function size:0x10C scope:global align:4 +startNewWaterList__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F646C; // type:function size:0x47C scope:global align:4 +updateWaterAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F68E8; // type:function size:0x164 scope:global align:4 +updateWaterEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6A4C; // type:function size:0x58 scope:global align:4 +getWaterTargetCreature__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6AA4; // type:function size:0x2D8 scope:global align:4 +setElecAttackParameter__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F6D7C; // type:function size:0x3FC scope:global align:4 +startElecAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F7178; // type:function size:0x494 scope:global align:4 +updateElecAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F760C; // type:function size:0x288 scope:global align:4 +finishAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F7894; // type:function size:0x1E4 scope:global align:4 +addAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure22BigTreasureWaterAttack = .text:0x802F7A78; // type:function size:0x80 scope:global align:4 +addAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureElecAttack = .text:0x802F7AF8; // type:function size:0x80 scope:global align:4 +delAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure22BigTreasureWaterAttack = .text:0x802F7B78; // type:function size:0x6C scope:global align:4 +delAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureElecAttack = .text:0x802F7BE4; // type:function size:0x6C scope:global align:4 +updateAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFv = .text:0x802F7C50; // type:function size:0x44 scope:global align:4 +__dt__Q23efx17TOootaElecAttack1Fv = .text:0x802F7C94; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx13TOootaElecLegFv = .text:0x802F7D30; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TOootaElecpartsFv = .text:0x802F7DCC; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game11BigTreasure21BigTreasureElecAttackFv = .text:0x802F7E68; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure22BigTreasureWaterAttackFv = .text:0x802F7EC8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure20BigTreasureGasAttackFv = .text:0x802F7F28; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure21BigTreasureFireAttackFv = .text:0x802F7F88; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11BigTreasure16AttackShadowNodeFv = .text:0x802F7FE8; // type:function size:0x70 scope:weak align:4 +@4@__dt__Q23efx15TOootaElecpartsFv = .text:0x802F8058; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TOootaElecLegFv = .text:0x802F8060; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOootaElecAttack1Fv = .text:0x802F8068; // type:function size:0x8 scope:weak align:4 +makeShadowSRT__Q24Game23SnakeCrowTubeShadowNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F8070; // type:function size:0x22C scope:global align:4 +makeShadowSRT__Q24Game25SnakeCrowSphereShadowNodeFRQ24Game15JointShadowParmR10Vector3 = .text:0x802F829C; // type:function size:0x12C scope:global align:4 +__ct__Q34Game9SnakeCrow18SnakeCrowShadowMgrFPQ34Game9SnakeCrow3Obj = .text:0x802F83C8; // type:function size:0xEC scope:global align:4 +init__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F84B4; // type:function size:0xC0 scope:global align:4 +startJointShadow__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F8574; // type:function size:0x78 scope:global align:4 +finishJointShadow__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F85EC; // type:function size:0x64 scope:global align:4 +update__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv = .text:0x802F8650; // type:function size:0x25C scope:global align:4 +__dt__Q24Game25SnakeCrowSphereShadowNodeFv = .text:0x802F88AC; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game23SnakeCrowTubeShadowNodeFv = .text:0x802F891C; // type:function size:0x70 scope:weak align:4 +makeShadowSRT__Q24Game24SnakeWholeTubeShadowNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3 = .text:0x802F898C; // type:function size:0x22C scope:global align:4 +makeShadowSRT__Q24Game26SnakeWholeSphereShadowNodeFRQ24Game15JointShadowParmR10Vector3 = .text:0x802F8BB8; // type:function size:0x12C scope:global align:4 +__ct__Q34Game10SnakeWhole19SnakeWholeShadowMgrFPQ34Game10SnakeWhole3Obj = .text:0x802F8CE4; // type:function size:0xEC scope:global align:4 +init__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8DD0; // type:function size:0xC8 scope:global align:4 +startJointShadow__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8E98; // type:function size:0x78 scope:global align:4 +finishJointShadow__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8F10; // type:function size:0x64 scope:global align:4 +update__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv = .text:0x802F8F74; // type:function size:0x25C scope:global align:4 +__dt__Q24Game26SnakeWholeSphereShadowNodeFv = .text:0x802F91D0; // type:function size:0x70 scope:weak align:4 +__dt__Q24Game24SnakeWholeTubeShadowNodeFv = .text:0x802F9240; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game11BombOtakara3MgrFiUc = .text:0x802F92B0; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11BombOtakara3MgrFv = .text:0x802F9300; // type:function size:0x48 scope:global align:4 +createObj__Q34Game11BombOtakara3MgrFi = .text:0x802F9348; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11BombOtakara3ObjFv = .text:0x802F93A8; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11BombOtakara3MgrFi = .text:0x802F9494; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11BombOtakara3MgrFv = .text:0x802F94A4; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11BombOtakara3MgrFv = .text:0x802F9524; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11BombOtakara3MgrFv = .text:0x802F95EC; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11BombOtakara3MgrFv = .text:0x802F95F4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11BombOtakara3MgrFv = .text:0x802F95FC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11BombOtakara3ObjFv = .text:0x802F9604; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game11BombOtakara3ObjFv = .text:0x802F9694; // type:function size:0x1A4 scope:global align:4 +damageCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F9838; // type:function size:0xB4 scope:global align:4 +hipdropCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802F98EC; // type:function size:0x2C scope:global align:4 +earthquakeCallBack__Q34Game11BombOtakara3ObjFPQ24Game8Creaturef = .text:0x802F9918; // type:function size:0x7C scope:global align:4 +bombCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreatureR10Vector3f = .text:0x802F9994; // type:function size:0x30 scope:global align:4 +startEscapeSE__Q34Game11BombOtakara3ObjFv = .text:0x802F99C4; // type:function size:0x7C scope:global align:4 +getEnemyTypeID__Q34Game11BombOtakara3ObjFv = .text:0x802F9A40; // type:function size:0x8 scope:weak align:4 +interactCreature__Q34Game11BombOtakara3ObjFPQ24Game8Creature = .text:0x802F9A48; // type:function size:0x4 scope:weak align:4 +createEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A4C; // type:function size:0x4 scope:weak align:4 +setupEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A50; // type:function size:0x4 scope:weak align:4 +startChargeEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A54; // type:function size:0x4 scope:weak align:4 +finishChargeEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A58; // type:function size:0x4 scope:weak align:4 +createDisChargeEffect__Q34Game11BombOtakara3ObjFv = .text:0x802F9A5C; // type:function size:0x4 scope:weak align:4 +effectDrawOn__Q34Game11BombOtakara3ObjFv = .text:0x802F9A60; // type:function size:0x4 scope:weak align:4 +effectDrawOff__Q34Game11BombOtakara3ObjFv = .text:0x802F9A64; // type:function size:0x4 scope:weak align:4 +startDisChargeSE__Q34Game11BombOtakara3ObjFv = .text:0x802F9A68; // type:function size:0x4 scope:weak align:4 +init__Q34Game10DangoMushi3FSMFPQ24Game9EnemyBase = .text:0x802F9A6C; // type:function size:0x320 scope:global align:4 +init__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F9D8C; // type:function size:0x88 scope:global align:4 +exec__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBase = .text:0x802F9E14; // type:function size:0x13C scope:global align:4 +cleanup__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBase = .text:0x802F9F50; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802F9F54; // type:function size:0x94 scope:global align:4 +exec__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBase = .text:0x802F9FE8; // type:function size:0x144 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBase = .text:0x802FA12C; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FA130; // type:function size:0x8C scope:global align:4 +exec__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBase = .text:0x802FA1BC; // type:function size:0x400 scope:global align:4 +cleanup__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBase = .text:0x802FA5BC; // type:function size:0x30 scope:global align:4 +init__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FA5EC; // type:function size:0x9C scope:global align:4 +exec__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBase = .text:0x802FA688; // type:function size:0x364 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBase = .text:0x802FA9EC; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FA9F0; // type:function size:0x5C scope:global align:4 +exec__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBase = .text:0x802FAA4C; // type:function size:0x7A8 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBase = .text:0x802FB1F4; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FB1F8; // type:function size:0x88 scope:global align:4 +exec__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBase = .text:0x802FB280; // type:function size:0x288 scope:global align:4 +cleanup__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBase = .text:0x802FB508; // type:function size:0x58 scope:global align:4 +init__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FB560; // type:function size:0xD4 scope:global align:4 +exec__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBase = .text:0x802FB634; // type:function size:0x270 scope:global align:4 +cleanup__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBase = .text:0x802FB8A4; // type:function size:0x68 scope:global align:4 +init__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FB90C; // type:function size:0x50 scope:global align:4 +exec__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBase = .text:0x802FB95C; // type:function size:0xFC scope:global align:4 +cleanup__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBase = .text:0x802FBA58; // type:function size:0x4 scope:global align:4 +init__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x802FBA5C; // type:function size:0x6C scope:global align:4 +exec__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBase = .text:0x802FBAC8; // type:function size:0x1E0 scope:global align:4 +cleanup__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBase = .text:0x802FBCA8; // type:function size:0x2C scope:global align:4 +__sinit_DangoMushiState_cpp = .text:0x802FBCD4; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10DangoMushi3MgrFiUc = .text:0x802FBCFC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10DangoMushi3MgrFv = .text:0x802FBD4C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10DangoMushi5ParmsFv = .text:0x802FBD94; // type:function size:0x154 scope:weak align:4 +createObj__Q34Game10DangoMushi3MgrFi = .text:0x802FBEE8; // type:function size:0x60 scope:global align:4 +__dt__Q34Game10DangoMushi3ObjFv = .text:0x802FBF48; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game10DangoMushi3MgrFi = .text:0x802FC004; // type:function size:0x10 scope:global align:4 +loadModelData__Q34Game10DangoMushi3MgrFv = .text:0x802FC014; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game10DangoMushi3MgrFv = .text:0x802FC07C; // type:function size:0xB4 scope:global align:4 +createModel__Q34Game10DangoMushi3MgrFv = .text:0x802FC130; // type:function size:0x130 scope:global align:4 +__dt__Q34Game10DangoMushi3MgrFv = .text:0x802FC260; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10DangoMushi3MgrFv = .text:0x802FC310; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game10DangoMushi3MgrFPv = .text:0x802FC318; // type:function size:0x2C scope:weak align:4 +read__Q34Game10DangoMushi5ParmsFR6Stream = .text:0x802FC344; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game10DangoMushi3MgrFv = .text:0x802FC394; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10DangoMushi3ObjFv = .text:0x802FC39C; // type:function size:0x134 scope:global align:4 +setInitialSetting__Q34Game10DangoMushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x802FC4D0; // type:function size:0x4 scope:global align:4 +onInit__Q34Game10DangoMushi3ObjFPQ24Game15CreatureInitArg = .text:0x802FC4D4; // type:function size:0x130 scope:global align:4 +onKill__Q34Game10DangoMushi3ObjFPQ24Game15CreatureKillArg = .text:0x802FC604; // type:function size:0x44 scope:global align:4 +doUpdate__Q34Game10DangoMushi3ObjFv = .text:0x802FC648; // type:function size:0x50 scope:global align:4 +doUpdateCommon__Q34Game10DangoMushi3ObjFv = .text:0x802FC698; // type:function size:0x44 scope:global align:4 +doAnimationUpdateAnimator__Q34Game10DangoMushi3ObjFv = .text:0x802FC6DC; // type:function size:0x94 scope:global align:4 +changeMaterial__Q34Game10DangoMushi3ObjFv = .text:0x802FC770; // type:function size:0xC4 scope:global align:4 +doDirectDraw__Q34Game10DangoMushi3ObjFR8Graphics = .text:0x802FC834; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10DangoMushi3ObjFR8Graphics = .text:0x802FC838; // type:function size:0x20 scope:global align:4 +setFSM__Q34Game10DangoMushi3ObjFPQ34Game10DangoMushi3FSM = .text:0x802FC858; // type:function size:0x4C scope:global align:4 +getShadowParam__Q34Game10DangoMushi3ObjFRQ24Game11ShadowParam = .text:0x802FC8A4; // type:function size:0xB8 scope:global align:4 +needShadow__Q34Game10DangoMushi3ObjFv = .text:0x802FC95C; // type:function size:0x70 scope:global align:4 +damageCallBack__Q34Game10DangoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x802FC9CC; // type:function size:0xEC scope:global align:4 +earthquakeCallBack__Q34Game10DangoMushi3ObjFPQ24Game8Creaturef = .text:0x802FCAB8; // type:function size:0x8 scope:global align:4 +collisionCallback__Q34Game10DangoMushi3ObjFRQ24Game9CollEvent = .text:0x802FCAC0; // type:function size:0x104 scope:global align:4 +wallCallback__Q34Game10DangoMushi3ObjFRCQ24Game8MoveInfo = .text:0x802FCBC4; // type:function size:0x10C scope:global align:4 +doStartStoneState__Q34Game10DangoMushi3ObjFv = .text:0x802FCCD0; // type:function size:0x38 scope:global align:4 +doFinishStoneState__Q34Game10DangoMushi3ObjFv = .text:0x802FCD08; // type:function size:0x74 scope:global align:4 +startCarcassMotion__Q34Game10DangoMushi3ObjFv = .text:0x802FCD7C; // type:function size:0x28 scope:global align:4 +doStartMovie__Q34Game10DangoMushi3ObjFv = .text:0x802FCDA4; // type:function size:0x20 scope:global align:4 +doEndMovie__Q34Game10DangoMushi3ObjFv = .text:0x802FCDC4; // type:function size:0x20 scope:global align:4 +initWalkSmokeEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FCDE4; // type:function size:0x4C scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10DangoMushi3ObjFv = .text:0x802FCE30; // type:function size:0x8 scope:global align:4 +getCommonEffectPos__Q34Game10DangoMushi3ObjFR10Vector3 = .text:0x802FCE38; // type:function size:0x24 scope:global align:4 +addShadowScale__Q34Game10DangoMushi3ObjFv = .text:0x802FCE5C; // type:function size:0x50 scope:global align:4 +setRandTarget__Q34Game10DangoMushi3ObjFv = .text:0x802FCEAC; // type:function size:0x198 scope:global align:4 +isReachedTarget__Q34Game10DangoMushi3ObjFv = .text:0x802FD044; // type:function size:0x34 scope:global align:4 +getSearchedTarget__Q34Game10DangoMushi3ObjFv = .text:0x802FD078; // type:function size:0x38 scope:global align:4 +rollingMove__Q34Game10DangoMushi3ObjFv = .text:0x802FD0B0; // type:function size:0x2BC scope:global align:4 +createCrashEnemy__Q34Game10DangoMushi3ObjFv = .text:0x802FD36C; // type:function size:0x4E8 scope:global align:4 +getFallEggNum__Q34Game10DangoMushi3ObjFv = .text:0x802FD854; // type:function size:0xEC scope:global align:4 +getFallPosition__Q34Game10DangoMushi3ObjFi = .text:0x802FD940; // type:function size:0x104 scope:global align:4 +setupCollision__Q34Game10DangoMushi3ObjFv = .text:0x802FDA44; // type:function size:0x38 scope:global align:4 +setBodyCollision__Q34Game10DangoMushi3ObjFb = .text:0x802FDA7C; // type:function size:0x444 scope:global align:4 +flickHandCollision__Q34Game10DangoMushi3ObjFPQ24Game8Creature = .text:0x802FDEC0; // type:function size:0x2AC scope:global align:4 +isNoDamageCollision__Q34Game10DangoMushi3ObjFv = .text:0x802FE16C; // type:function size:0x58 scope:global align:4 +resetMapCollisionSize__Q34Game10DangoMushi3ObjFb = .text:0x802FE1C4; // type:function size:0x2C scope:global align:4 +updateMapCollisionSize__Q34Game10DangoMushi3ObjFv = .text:0x802FE1F0; // type:function size:0x8C scope:global align:4 +flickHandCollision__Q34Game10DangoMushi3ObjFv = .text:0x802FE27C; // type:function size:0x3AC scope:global align:4 +startBlendAnimation__Q34Game10DangoMushi3ObjFib = .text:0x802FE628; // type:function size:0x11C scope:global align:4 +endBlendAnimation__Q34Game10DangoMushi3ObjFv = .text:0x802FE744; // type:function size:0x98 scope:global align:4 +startBossFlickBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FE7DC; // type:function size:0xC8 scope:global align:4 +startBossAttackLoopBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FE8A4; // type:function size:0xC8 scope:global align:4 +finishBossAttackLoopBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FE96C; // type:function size:0xC8 scope:global align:4 +updateBossBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FEA34; // type:function size:0xFC scope:global align:4 +resetBossAppearBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FEB30; // type:function size:0xBC scope:global align:4 +setBossAppearBGM__Q34Game10DangoMushi3ObjFv = .text:0x802FEBEC; // type:function size:0xBC scope:global align:4 +createEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FECA8; // type:function size:0x170 scope:global align:4 +setupEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEE18; // type:function size:0x64 scope:global align:4 +createDeadSmokeEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEE7C; // type:function size:0x7C scope:global align:4 +createDeadBombEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEEF8; // type:function size:0x88 scope:global align:4 +createBodyTurnEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FEF80; // type:function size:0xA0 scope:global align:4 +createWallBreakEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF020; // type:function size:0x54 scope:global align:4 +createFlickAttackEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF074; // type:function size:0x34 scope:global align:4 +createBodyDamageEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF0A8; // type:function size:0x7C scope:global align:4 +createBodyWallCrashEffect__Q34Game10DangoMushi3ObjF10Vector3 = .text:0x802FF124; // type:function size:0xCC scope:global align:4 +startRollingMoveEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF1F0; // type:function size:0x34 scope:global align:4 +finishRollingMoveEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF224; // type:function size:0x30 scope:global align:4 +createEnemyBounceEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF254; // type:function size:0x44 scope:global align:4 +getDownSmokeScale__Q34Game10DangoMushi3ObjFv = .text:0x802FF298; // type:function size:0x8 scope:weak align:4 +createMoveHandEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF2A0; // type:function size:0x1E8 scope:global align:4 +createAppearSmokeEffect__Q34Game10DangoMushi3ObjFv = .text:0x802FF488; // type:function size:0x98 scope:global align:4 +effectDrawOn__Q34Game10DangoMushi3ObjFv = .text:0x802FF520; // type:function size:0x64 scope:global align:4 +effectDrawOff__Q34Game10DangoMushi3ObjFv = .text:0x802FF584; // type:function size:0x64 scope:global align:4 +__dt__Q23efx13TDangoAttack2Fv = .text:0x802FF5E8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx15TDangoWallBreakFv = .text:0x802FF684; // type:function size:0x9C scope:weak align:4 +getDamageCoeStoneState__Q34Game10DangoMushi3ObjFv = .text:0x802FF720; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game10DangoMushi3ObjFv = .text:0x802FF728; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game10DangoMushi14ProperAnimatorFv = .text:0x802FF730; // type:function size:0x6C scope:weak align:4 +@4@__dt__Q23efx15TDangoWallBreakFv = .text:0x802FF79C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TDangoAttack2Fv = .text:0x802FF7A4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11GreenKabuto3MgrFiUc = .text:0x802FF7AC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11GreenKabuto3MgrFv = .text:0x802FF7FC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Kabuto5ParmsFv = .text:0x802FF844; // type:function size:0x58 scope:weak align:4 +createObj__Q34Game11GreenKabuto3MgrFi = .text:0x802FF89C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game11GreenKabuto3ObjFv = .text:0x802FF8FC; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11GreenKabuto3MgrFi = .text:0x802FF9E8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game11GreenKabuto3MgrFv = .text:0x802FF9F8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game11GreenKabuto3MgrFv = .text:0x802FFA78; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11GreenKabuto3MgrFv = .text:0x802FFB40; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game11GreenKabuto3MgrFv = .text:0x802FFB48; // type:function size:0x8 scope:weak align:4 +read__Q34Game6Kabuto5ParmsFR6Stream = .text:0x802FFB50; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11GreenKabuto3MgrFv = .text:0x802FFBA0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11GreenKabuto3ObjFv = .text:0x802FFBA8; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game11GreenKabuto3ObjFv = .text:0x802FFC38; // type:function size:0x1A4 scope:global align:4 +getEnemyTypeID__Q34Game11GreenKabuto3ObjFv = .text:0x802FFDDC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9RedKabuto3MgrFiUc = .text:0x802FFDE4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9RedKabuto3MgrFv = .text:0x802FFE34; // type:function size:0x48 scope:global align:4 +createObj__Q34Game9RedKabuto3MgrFi = .text:0x802FFE7C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9RedKabuto3ObjFv = .text:0x802FFEDC; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game9RedKabuto3MgrFi = .text:0x802FFFC8; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game9RedKabuto3MgrFv = .text:0x802FFFD8; // type:function size:0x80 scope:global align:4 +__dt__Q34Game9RedKabuto3MgrFv = .text:0x80300058; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game9RedKabuto3MgrFv = .text:0x80300120; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game9RedKabuto3MgrFv = .text:0x80300128; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game9RedKabuto3MgrFv = .text:0x80300130; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9RedKabuto3ObjFv = .text:0x80300138; // type:function size:0x90 scope:global align:4 +changeMaterial__Q34Game9RedKabuto3ObjFv = .text:0x803001C8; // type:function size:0x1A4 scope:global align:4 +getEnemyTypeID__Q34Game9RedKabuto3ObjFv = .text:0x8030036C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9FixKabuto3MgrFiUc = .text:0x80300374; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9FixKabuto3MgrFv = .text:0x803003C4; // type:function size:0x48 scope:global align:4 +createObj__Q34Game9FixKabuto3MgrFi = .text:0x8030040C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game9FixKabuto3ObjFv = .text:0x8030046C; // type:function size:0xF0 scope:weak align:4 +getEnemy__Q34Game9FixKabuto3MgrFi = .text:0x8030055C; // type:function size:0x10 scope:global align:4 +loadTexData__Q34Game9FixKabuto3MgrFv = .text:0x8030056C; // type:function size:0x80 scope:global align:4 +__dt__Q34Game9FixKabuto3MgrFv = .text:0x803005EC; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game9FixKabuto3MgrFv = .text:0x803006B4; // type:function size:0x8 scope:weak align:4 +getChangeTexture__Q34Game9FixKabuto3MgrFv = .text:0x803006BC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game9FixKabuto3MgrFv = .text:0x803006C4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9FixKabuto3ObjFv = .text:0x803006CC; // type:function size:0xA4 scope:global align:4 +onKill__Q34Game9FixKabuto3ObjFPQ24Game15CreatureKillArg = .text:0x80300770; // type:function size:0x64 scope:global align:4 +changeMaterial__Q34Game9FixKabuto3ObjFv = .text:0x803007D4; // type:function size:0x1A4 scope:global align:4 +createEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300978; // type:function size:0x140 scope:global align:4 +setupEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300AB8; // type:function size:0x18 scope:global align:4 +startRotateEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300AD0; // type:function size:0x58 scope:global align:4 +finishRotateEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300B28; // type:function size:0x30 scope:global align:4 +startWaitEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300B58; // type:function size:0x58 scope:global align:4 +finishWaitEffect__Q34Game9FixKabuto3ObjFv = .text:0x80300BB0; // type:function size:0x30 scope:global align:4 +effectDrawOn__Q34Game9FixKabuto3ObjFv = .text:0x80300BE0; // type:function size:0x50 scope:global align:4 +effectDrawOff__Q34Game9FixKabuto3ObjFv = .text:0x80300C30; // type:function size:0x50 scope:global align:4 +__dt__Q23efx12TKkabutoWaitFv = .text:0x80300C80; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKkabutoRotFv = .text:0x80300D1C; // type:function size:0x9C scope:weak align:4 +getEnemyTypeID__Q34Game9FixKabuto3ObjFv = .text:0x80300DB8; // type:function size:0x8 scope:weak align:4 +@748@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x80300DC0; // type:function size:0x14 scope:weak align:4 +@748@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80300DD4; // type:function size:0x14 scope:weak align:4 +@748@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80300DE8; // type:function size:0x14 scope:weak align:4 +@748@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80300DFC; // type:function size:0x14 scope:weak align:4 +@748@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80300E10; // type:function size:0x14 scope:weak align:4 +@748@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80300E24; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx11TKkabutoRotFv = .text:0x80300E38; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TKkabutoWaitFv = .text:0x80300E40; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave16MapUnitGenerator = .text:0x80300E48; // type:function size:0x2C scope:global align:4 +setManageClassPtr__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave12RandItemUnit = .text:0x80300E74; // type:function size:0x8 scope:global align:4 +setCapEnemySlot__Q34Game4Cave16RandCapEnemyUnitFv = .text:0x80300E7C; // type:function size:0x108 scope:global align:4 +setCapCommonEnemySlot__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave7MapNodei = .text:0x80300F84; // type:function size:0x1BC scope:global align:4 +setCapEnemy__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave9EnemyUnitii = .text:0x80301140; // type:function size:0x98 scope:global align:4 +__ct__Q34Game14NormMiniHoudai3MgrFiUc = .text:0x803011D8; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game14NormMiniHoudai3MgrFv = .text:0x80301228; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10MiniHoudai5ParmsFv = .text:0x80301270; // type:function size:0xDC scope:weak align:4 +createObj__Q34Game14NormMiniHoudai3MgrFi = .text:0x8030134C; // type:function size:0x60 scope:global align:4 +__dt__Q34Game14NormMiniHoudai3ObjFv = .text:0x803013AC; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game14NormMiniHoudai3MgrFi = .text:0x80301498; // type:function size:0x10 scope:global align:4 +getEnemyTypeID__Q34Game14NormMiniHoudai3ObjFv = .text:0x803014A8; // type:function size:0x8 scope:weak align:4 +read__Q34Game10MiniHoudai5ParmsFR6Stream = .text:0x803014B0; // type:function size:0x50 scope:weak align:4 +__dt__Q34Game14NormMiniHoudai3MgrFv = .text:0x80301500; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game14NormMiniHoudai3MgrFv = .text:0x803015C8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game14NormMiniHoudai3MgrFv = .text:0x803015D0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14NormMiniHoudai3ObjFv = .text:0x803015D8; // type:function size:0x90 scope:global align:4 +__ct__Q34Game13FixMiniHoudai3MgrFiUc = .text:0x80301668; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game13FixMiniHoudai3MgrFv = .text:0x803016B8; // type:function size:0x48 scope:global align:4 +createObj__Q34Game13FixMiniHoudai3MgrFi = .text:0x80301700; // type:function size:0x60 scope:global align:4 +__dt__Q34Game13FixMiniHoudai3ObjFv = .text:0x80301760; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game13FixMiniHoudai3MgrFi = .text:0x8030184C; // type:function size:0x10 scope:global align:4 +getEnemyTypeID__Q34Game13FixMiniHoudai3ObjFv = .text:0x8030185C; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game13FixMiniHoudai3MgrFv = .text:0x80301864; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game13FixMiniHoudai3MgrFv = .text:0x8030192C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game13FixMiniHoudai3MgrFv = .text:0x80301934; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game13FixMiniHoudai3ObjFv = .text:0x8030193C; // type:function size:0x90 scope:global align:4 +makeShadowSRT__Q24Game18TyreTubeShadowNodeFRQ24Game15JointShadowParmP7Matrixf = .text:0x803019CC; // type:function size:0x25C scope:global align:4 +__ct__Q34Game4Tyre13TyreShadowMgrFPQ34Game4Tyre3Obj = .text:0x80301C28; // type:function size:0xE4 scope:global align:4 +init__Q34Game4Tyre13TyreShadowMgrFv = .text:0x80301D0C; // type:function size:0x68 scope:global align:4 +update__Q34Game4Tyre13TyreShadowMgrFv = .text:0x80301D74; // type:function size:0xB4 scope:global align:4 +__dt__Q24Game18TyreTubeShadowNodeFv = .text:0x80301E28; // type:function size:0x70 scope:weak align:4 +setSpeed__Q32og6Screen15ArrowAlphaBlinkFf = .text:0x80301E98; // type:function size:0x8 scope:global align:4 +calc__Q32og6Screen15ArrowAlphaBlinkFv = .text:0x80301EA0; // type:function size:0xC0 scope:global align:4 +capturePictureTreeColor__Q22og6ScreenFP7J2DPanei = .text:0x80301F60; // type:function size:0x21C scope:global align:4 +__ct__Q32og6Screen20PictureTreeColorInfoFv = .text:0x8030217C; // type:function size:0x3C scope:weak align:4 +blendColor__Q22og6ScreenFRQ28JUtility6TColorRQ28JUtility6TColorfPQ28JUtility6TColor = .text:0x803021B8; // type:function size:0x154 scope:global align:4 +blendPictureTreeColor__Q22og6ScreenFPQ32og6Screen27PictureTreeColorCaptureInfoRQ28JUtility6TColorRQ28JUtility6TColorf = .text:0x8030230C; // type:function size:0x370 scope:global align:4 +calcSmooth0to1__Q22og6ScreenFff = .text:0x8030267C; // type:function size:0xC8 scope:global align:4 +calcGlbCenter__Q22og6ScreenFP7J2DPaneP10Vector2 = .text:0x80302744; // type:function size:0xB0 scope:global align:4 +maskTag2__Q22og6ScreenFUxUs = .text:0x803027F4; // type:function size:0x10C scope:global align:4 +maskTag__Q22og6ScreenFUxUsUs = .text:0x80302900; // type:function size:0xA0 scope:global align:4 +CalcKeta__Q22og6ScreenFUl = .text:0x803029A0; // type:function size:0xB4 scope:global align:4 +MojiToNum__Q22og6ScreenFUxi = .text:0x80302A54; // type:function size:0x158 scope:global align:4 +TagToName__Q22og6ScreenFUxPc = .text:0x80302BAC; // type:function size:0x158 scope:global align:4 +CharCodeToTag__Q22og6ScreenFPc = .text:0x80302D04; // type:function size:0xF4 scope:global align:4 +TagToHex__Q22og6ScreenFUxPc = .text:0x80302DF8; // type:function size:0x94 scope:global align:4 +TagSearch__Q22og6ScreenFP9J2DScreenUx = .text:0x80302E8C; // type:function size:0x18C scope:global align:4 +__ct__Q32og6Screen8AlphaMgrFv = .text:0x80303018; // type:function size:0x28 scope:global align:4 +setBlinkArea__Q32og6Screen8AlphaMgrFff = .text:0x80303040; // type:function size:0xC scope:global align:4 +in__Q32og6Screen8AlphaMgrFf = .text:0x8030304C; // type:function size:0x64 scope:global align:4 +out__Q32og6Screen8AlphaMgrFf = .text:0x803030B0; // type:function size:0x64 scope:global align:4 +blink__Q32og6Screen8AlphaMgrFf = .text:0x80303114; // type:function size:0x50 scope:global align:4 +calc__Q32og6Screen8AlphaMgrFv = .text:0x80303164; // type:function size:0x190 scope:global align:4 +setAlphaScreen__Q22og6ScreenFP7J2DPane = .text:0x803032F4; // type:function size:0x1D4 scope:global align:4 +getObject__25JSUTreeIterator<7J2DPane>CFv = .text:0x803034C8; // type:function size:0xC scope:weak align:4 +getPaneTree__7J2DPaneFv = .text:0x803034D4; // type:function size:0x8 scope:weak align:4 +getTagName__7J2DPaneCFv = .text:0x803034DC; // type:function size:0x10 scope:weak align:4 +__dt__Q29P2DScreen10Mgr_tuningFv = .text:0x803034EC; // type:function size:0x94 scope:weak align:4 +update__Q29P2DScreen4NodeFv = .text:0x80303580; // type:function size:0x4 scope:weak align:4 +draw__Q29P2DScreen4NodeFR8GraphicsR14J2DGrafContext = .text:0x80303584; // type:function size:0x4 scope:weak align:4 +doInit__Q29P2DScreen4NodeFv = .text:0x80303588; // type:function size:0x4 scope:weak align:4 +__dt__Q29P2DScreen4NodeFv = .text:0x8030358C; // type:function size:0x60 scope:weak align:4 +__ct__Q32og6Screen12DopingScreenFv = .text:0x803035EC; // type:function size:0xF4 scope:global align:4 +setCallBack__Q32og6Screen12DopingScreenFP10JKRArchive = .text:0x803036E0; // type:function size:0x2CC scope:global align:4 +setParam__Q32og6Screen12DopingScreenFRQ32og6Screen8DataNavi = .text:0x803039AC; // type:function size:0x38 scope:global align:4 +update__Q32og6Screen12DopingScreenFv = .text:0x803039E4; // type:function size:0x284 scope:global align:4 +adjPos__Q32og6Screen12DopingScreenFff = .text:0x80303C68; // type:function size:0xC scope:global align:4 +setDopingEnable__Q32og6Screen12DopingScreenFbb = .text:0x80303C74; // type:function size:0x44 scope:global align:4 +openDopingUp__Q32og6Screen12DopingScreenFv = .text:0x80303CB8; // type:function size:0x10 scope:global align:4 +openDopingDown__Q32og6Screen12DopingScreenFv = .text:0x80303CC8; // type:function size:0x10 scope:global align:4 +openDopingKey__Q32og6Screen12DopingScreenFv = .text:0x80303CD8; // type:function size:0xC scope:global align:4 +__ct__Q32og6Screen11DopingCheckFv = .text:0x80303CE4; // type:function size:0x100 scope:global align:4 +init__Q32og6Screen11DopingCheckFP7J2DPaneP7J2DPanePQ32og6Screen8ScaleMgrPQ32og6Screen8ScaleMgr = .text:0x80303DE4; // type:function size:0x44 scope:global align:4 +update__Q32og6Screen11DopingCheckFv = .text:0x80303E28; // type:function size:0x100 scope:global align:4 +effStart__Q32og6Screen11DopingCheckFP7J2DPane = .text:0x80303F28; // type:function size:0x80 scope:global align:4 +startGetEff_Up__Q32og6Screen11DopingCheckFv = .text:0x80303FA8; // type:function size:0xD0 scope:global align:4 +startGetEff_Down__Q32og6Screen11DopingCheckFv = .text:0x80304078; // type:function size:0xD0 scope:global align:4 +kill__Q25efx2d8TSimple2Fv = .text:0x80304148; // type:function size:0x4 scope:weak align:4 +fade__Q25efx2d8TSimple2Fv = .text:0x8030414C; // type:function size:0x4 scope:weak align:4 +kill__Q25efx2d8TSimple1Fv = .text:0x80304150; // type:function size:0x4 scope:weak align:4 +fade__Q25efx2d8TSimple1Fv = .text:0x80304154; // type:function size:0x4 scope:weak align:4 +__dt__Q32og6Screen12DopingScreenFv = .text:0x80304158; // type:function size:0xA4 scope:weak align:4 +__ct__Q32og6Screen13PikminCounterFv = .text:0x803041FC; // type:function size:0xBC scope:global align:4 +setParam__Q32og6Screen13PikminCounterFRQ32og6Screen8DataGameRQ32og6Screen8DataNavi = .text:0x803042B8; // type:function size:0x6C scope:global align:4 +update__Q32og6Screen13PikminCounterFv = .text:0x80304324; // type:function size:0xF8 scope:global align:4 +setCallBack__Q32og6Screen13PikminCounterFP10JKRArchive = .text:0x8030441C; // type:function size:0x230 scope:global align:4 +setCallBack__Q32og6Screen17PikminCounterCaveFP10JKRArchive = .text:0x8030464C; // type:function size:0x240 scope:global align:4 +setCallBack__Q32og6Screen24PikminCounterChallenge1PFP10JKRArchive = .text:0x8030488C; // type:function size:0x1F8 scope:global align:4 +__dt__Q32og6Screen24PikminCounterChallenge1PFv = .text:0x80304A84; // type:function size:0xB4 scope:weak align:4 +__dt__Q32og6Screen17PikminCounterCaveFv = .text:0x80304B38; // type:function size:0xB4 scope:weak align:4 +__dt__Q32og6Screen13PikminCounterFv = .text:0x80304BEC; // type:function size:0xA4 scope:weak align:4 +start__Q32og6Screen12AnimBaseBaseFf = .text:0x80304C90; // type:function size:0x10 scope:global align:4 +updateSub__Q32og6Screen12AnimBaseBaseFv = .text:0x80304CA0; // type:function size:0x150 scope:global align:4 +update__Q32og6Screen12AnimBaseBaseFv = .text:0x80304DF0; // type:function size:0x78 scope:global align:4 +__ct__Q32og6Screen10AnimScreenFv = .text:0x80304E68; // type:function size:0x9C scope:global align:4 +init__Q32og6Screen10AnimScreenFP10JKRArchiveP9J2DScreenPc = .text:0x80304F04; // type:function size:0x164 scope:global align:4 +start__Q32og6Screen10AnimScreenFv = .text:0x80305068; // type:function size:0x90 scope:global align:4 +moveAnim__Q32og6Screen10AnimScreenFv = .text:0x803050F8; // type:function size:0x60 scope:global align:4 +__ct__Q32og6Screen8AnimPaneFv = .text:0x80305158; // type:function size:0xA0 scope:global align:4 +init__Q32og6Screen8AnimPaneFP10JKRArchiveP9J2DScreenUxPc = .text:0x803051F8; // type:function size:0x150 scope:global align:4 +start__Q32og6Screen8AnimPaneFv = .text:0x80305348; // type:function size:0x90 scope:global align:4 +moveAnim__Q32og6Screen8AnimPaneFv = .text:0x803053D8; // type:function size:0x60 scope:global align:4 +__ct__Q32og6Screen9AnimGroupFi = .text:0x80305438; // type:function size:0x90 scope:global align:4 +update__Q32og6Screen9AnimGroupFv = .text:0x803054C8; // type:function size:0x1C0 scope:global align:4 +setSpeed__Q32og6Screen9AnimGroupFf = .text:0x80305688; // type:function size:0x5C scope:global align:4 +setRepeat__Q32og6Screen9AnimGroupFb = .text:0x803056E4; // type:function size:0x5C scope:global align:4 +setFrame__Q32og6Screen9AnimGroupFf = .text:0x80305740; // type:function size:0x5C scope:global align:4 +setAllArea__Q32og6Screen9AnimGroupFv = .text:0x8030579C; // type:function size:0x54 scope:global align:4 +getFrame__Q32og6Screen9AnimGroupFv = .text:0x803057F0; // type:function size:0x20 scope:global align:4 +setArea__Q32og6Screen9AnimGroupFff = .text:0x80305810; // type:function size:0x88 scope:global align:4 +start__Q32og6Screen9AnimGroupFv = .text:0x80305898; // type:function size:0xA8 scope:global align:4 +reservAnim__Q32og6Screen9AnimGroupFfff = .text:0x80305940; // type:function size:0x18 scope:global align:4 +getLastFrame__Q32og6Screen9AnimGroupFv = .text:0x80305958; // type:function size:0x20 scope:global align:4 +registAnimGroupScreen__Q22og6ScreenFPQ32og6Screen9AnimGroupP10JKRArchiveP9J2DScreenPcf = .text:0x80305978; // type:function size:0x254 scope:global align:4 +registAnimGroupPane__Q22og6ScreenFPQ32og6Screen9AnimGroupP10JKRArchiveP9J2DScreenUxPcf = .text:0x80305BCC; // type:function size:0x25C scope:global align:4 +makeSujiFontTable__Q22og6ScreenFPPcP10JKRArchive = .text:0x80305E28; // type:function size:0x118 scope:global align:4 +setSuji__Q32og6Screen11CounterKetaFPP7ResTIMGUl = .text:0x80305F40; // type:function size:0x50 scope:global align:4 +calcScale__Q32og6Screen11CounterKetaFv = .text:0x80305F90; // type:function size:0x88 scope:global align:4 +__ct__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x80306018; // type:function size:0x158 scope:global align:4 +__dt__Q29P2DScreen12CallBackNodeFv = .text:0x80306170; // type:function size:0x70 scope:weak align:4 +init__Q32og6Screen18CallBack_LifeGaugeFPQ29P2DScreen3MgrPQ32og6Screen8DataNaviQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x803061E0; // type:function size:0x2C4 scope:global align:4 +setType__Q32og6Screen18CallBack_LifeGaugeFQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x803064A4; // type:function size:0x434 scope:global align:4 +setOffset__Q32og6Screen18CallBack_LifeGaugeFff = .text:0x803068D8; // type:function size:0x78 scope:global align:4 +moveIcon__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x80306950; // type:function size:0x318 scope:global align:4 +update__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x80306C68; // type:function size:0x26C scope:global align:4 +draw__Q32og6Screen18CallBack_LifeGaugeFR8GraphicsR14J2DGrafContext = .text:0x80306ED4; // type:function size:0xB4 scope:global align:4 +setCallBack__Q32og6Screen13NaviLifeGaugeFPQ32og6Screen8DataNaviQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x80306F88; // type:function size:0x118 scope:global align:4 +setType__Q32og6Screen13NaviLifeGaugeFQ42og6Screen18CallBack_LifeGauge13LifeGaugeType = .text:0x803070A0; // type:function size:0x2C scope:global align:4 +update__Q32og6Screen13NaviLifeGaugeFv = .text:0x803070CC; // type:function size:0x5C scope:global align:4 +__dt__Q32og6Screen13NaviLifeGaugeFv = .text:0x80307128; // type:function size:0xA4 scope:weak align:4 +__dt__Q32og6Screen18CallBack_LifeGaugeFv = .text:0x803071CC; // type:function size:0x80 scope:weak align:4 +update__Q29P2DScreen12CallBackNodeFv = .text:0x8030724C; // type:function size:0x4 scope:weak align:4 +__sinit_ogLifeGauge_cpp = .text:0x80307250; // type:function size:0x24 scope:local align:4 +update__Q32og6Screen17CallBack_SunMeterFv = .text:0x80307274; // type:function size:0x23C scope:global align:4 +startEffectChime__Q32og6Screen17CallBack_SunMeterFv = .text:0x803074B0; // type:function size:0x34 scope:global align:4 +__ct__Q32og6Screen8SunMeterFv = .text:0x803074E4; // type:function size:0x44 scope:global align:4 +setCallBack__Q32og6Screen8SunMeterFv = .text:0x80307528; // type:function size:0x1B4 scope:global align:4 +__dt__Q32og6Screen8SunMeterFv = .text:0x803076DC; // type:function size:0xA4 scope:weak align:4 +__dt__Q32og6Screen17CallBack_SunMeterFv = .text:0x80307780; // type:function size:0x80 scope:weak align:4 +__ct__Q32og6Screen18CallBack_CatchPikiFv = .text:0x80307800; // type:function size:0x80 scope:global align:4 +__dt__Q32og6Screen8ScaleMgrFv = .text:0x80307880; // type:function size:0x3C scope:weak align:4 +init__Q32og6Screen18CallBack_CatchPikiFP9J2DScreenUxPUlP10JKRArchive = .text:0x803078BC; // type:function size:0xC0 scope:global align:4 +update__Q32og6Screen18CallBack_CatchPikiFv = .text:0x8030797C; // type:function size:0xF0 scope:global align:4 +setPikiIcon__Q32og6Screen18CallBack_CatchPikiFi = .text:0x80307A6C; // type:function size:0x4C scope:global align:4 +__dt__Q32og6Screen18CallBack_CatchPikiFv = .text:0x80307AB8; // type:function size:0x80 scope:weak align:4 +__ct__Q32og6Screen14ContenaCounterFPQ32og6Screen17DispMemberContena = .text:0x80307B38; // type:function size:0x90 scope:global align:4 +setblo__Q32og6Screen14ContenaCounterFPcP10JKRArchive = .text:0x80307BC8; // type:function size:0x140 scope:global align:4 +__dt__Q32og6Screen14ContenaCounterFv = .text:0x80307D08; // type:function size:0xA4 scope:weak align:4 +__ct__Q32og6Screen10MapCounterFPQ32og6Screen7DataMap = .text:0x80307DAC; // type:function size:0xE4 scope:global align:4 +dispRed__Q32og6Screen10MapCounterFb = .text:0x80307E90; // type:function size:0x38 scope:global align:4 +dispYellow__Q32og6Screen10MapCounterFb = .text:0x80307EC8; // type:function size:0x38 scope:global align:4 +dispBlue__Q32og6Screen10MapCounterFb = .text:0x80307F00; // type:function size:0x38 scope:global align:4 +dispWhite__Q32og6Screen10MapCounterFb = .text:0x80307F38; // type:function size:0x38 scope:global align:4 +dispBlack__Q32og6Screen10MapCounterFb = .text:0x80307F70; // type:function size:0x38 scope:global align:4 +dispFree__Q32og6Screen10MapCounterFb = .text:0x80307FA8; // type:function size:0x28 scope:global align:4 +setCallBack__Q32og6Screen10MapCounterFP10JKRArchive = .text:0x80307FD0; // type:function size:0x724 scope:global align:4 +__dt__Q32og6Screen10MapCounterFv = .text:0x803086F4; // type:function size:0xA4 scope:weak align:4 +setAnimTextScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x80308798; // type:function size:0x134 scope:global align:4 +setMenuScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x803088CC; // type:function size:0x13C scope:global align:4 +setMenuTitleScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x80308A08; // type:function size:0x13C scope:global align:4 +__ct__Q32og6Screen15AnimText_ScreenFPQ29P2DScreen3MgrUx = .text:0x80308B44; // type:function size:0x228 scope:global align:4 +__dt__Q32og6Screen15CallBack_ScreenFv = .text:0x80308D6C; // type:function size:0x80 scope:weak align:4 +update__Q32og6Screen15AnimText_ScreenFv = .text:0x80308DEC; // type:function size:0x60C scope:global align:4 +setAnimScreen__Q32og6Screen15AnimText_ScreenFPQ32og6Screen10AnimScreen = .text:0x803093F8; // type:function size:0x8 scope:global align:4 +setText__Q32og6Screen15AnimText_ScreenFUx = .text:0x80309400; // type:function size:0x1C scope:global align:4 +stop__Q32og6Screen15AnimText_ScreenFv = .text:0x8030941C; // type:function size:0x18 scope:global align:4 +open__Q32og6Screen15AnimText_ScreenFf = .text:0x80309434; // type:function size:0x3C scope:global align:4 +close__Q32og6Screen15AnimText_ScreenFv = .text:0x80309470; // type:function size:0x48 scope:global align:4 +blink__Q32og6Screen15AnimText_ScreenFff = .text:0x803094B8; // type:function size:0xAC scope:global align:4 +__dt__Q32og6Screen15AnimText_ScreenFv = .text:0x80309564; // type:function size:0x90 scope:weak align:4 +__ct__Q32og6Screen16CallBack_MessageFv = .text:0x803095F4; // type:function size:0x98 scope:global align:4 +draw__Q32og6Screen16CallBack_MessageFR8GraphicsR14J2DGrafContext = .text:0x8030968C; // type:function size:0x1B4 scope:global align:4 +__dt__Q32og6Screen16CallBack_MessageFv = .text:0x80309840; // type:function size:0x80 scope:weak align:4 +checkVisibleGlb__Q22og6ScreenFP7J2DPane = .text:0x803098C0; // type:function size:0x194 scope:local align:4 +isVisible__7J2DPaneCFv = .text:0x80309A54; // type:function size:0x8 scope:weak align:4 +setCallBackMessageSub__Q22og6ScreenFPQ29P2DScreen3MgrP7J2DPane = .text:0x80309A5C; // type:function size:0x31C scope:local align:4 +getUserInfo__7J2DPaneCFv = .text:0x80309D78; // type:function size:0x10 scope:weak align:4 +getMsgPtr__Q22og5Lib2DFv = .text:0x80309D88; // type:function size:0x8 scope:weak align:4 +__ct__Q29P2DScreen12CallBackNodeFv = .text:0x80309D90; // type:function size:0x50 scope:weak align:4 +setCallBackMessage__Q22og6ScreenFPQ29P2DScreen3Mgr = .text:0x80309DE0; // type:function size:0x24 scope:global align:4 +update__Q32og6Screen16CallBack_MessageFv = .text:0x80309E04; // type:function size:0x4 scope:weak align:4 +__ct__Q32og6Screen7MenuMgrFv = .text:0x80309E08; // type:function size:0x1E8 scope:global align:4 +__dt__Q25efx2d9TChasePosFv = .text:0x80309FF0; // type:function size:0x84 scope:weak align:4 +__dt__Q25efx2d8TForeverFv = .text:0x8030A074; // type:function size:0x6C scope:weak align:4 +startCursor__Q32og6Screen7MenuMgrFf = .text:0x8030A0E0; // type:function size:0x94 scope:global align:4 +killCursor__Q32og6Screen7MenuMgrFv = .text:0x8030A174; // type:function size:0x70 scope:global align:4 +init2taku__Q32og6Screen7MenuMgrFP9J2DScreenUxUxUxUxUxUxUxUx = .text:0x8030A1E4; // type:function size:0x21C scope:global align:4 +init2takuTitle__Q32og6Screen7MenuMgrFP9J2DScreenUxUxUxUxUxUxUxUx = .text:0x8030A400; // type:function size:0x21C scope:global align:4 +init__Q32og6Screen7MenuMgrFP9J2DScreenUsUxUxUxUxUx = .text:0x8030A61C; // type:function size:0x494 scope:global align:4 +selectSub__Q32og6Screen7MenuMgrFUs = .text:0x8030AAB0; // type:function size:0x90 scope:global align:4 +select__Q32og6Screen7MenuMgrFUs = .text:0x8030AB40; // type:function size:0x98 scope:global align:4 +initSelNum__Q32og6Screen7MenuMgrFUs = .text:0x8030ABD8; // type:function size:0x14 scope:global align:4 +update__Q32og6Screen7MenuMgrFv = .text:0x8030ABEC; // type:function size:0x580 scope:global align:4 +draw__Q32og6Screen7MenuMgrFP14J2DGrafContext = .text:0x8030B16C; // type:function size:0xEC scope:global align:4 +MenuOnOff__Q32og6Screen7MenuMgrFv = .text:0x8030B258; // type:function size:0xF8 scope:global align:4 +__ct__Q32og6Screen15CallBack_ScreenFPQ29P2DScreen3MgrUx = .text:0x8030B350; // type:function size:0xA4 scope:global align:4 +getPartsScreen__Q32og6Screen15CallBack_ScreenFv = .text:0x8030B3F4; // type:function size:0x8 scope:global align:4 +update__Q32og6Screen15CallBack_ScreenFv = .text:0x8030B3FC; // type:function size:0x38 scope:global align:4 +draw__Q32og6Screen15CallBack_ScreenFR8GraphicsR14J2DGrafContext = .text:0x8030B434; // type:function size:0xD0 scope:global align:4 +__ct__Q32og6Screen18CallBack_CounterRVFPPcUsUsP10JKRArchive = .text:0x8030B504; // type:function size:0x1E0 scope:global align:4 +show__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B6E4; // type:function size:0x40 scope:global align:4 +setValue__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B724; // type:function size:0x34 scope:weak align:4 +hide__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B758; // type:function size:0x48 scope:global align:4 +getMotherPane__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030B7A0; // type:function size:0x18 scope:global align:4 +setPuyoAnim__Q32og6Screen18CallBack_CounterRVFb = .text:0x8030B7B8; // type:function size:0x8 scope:global align:4 +setPuyoAnimZero__Q32og6Screen18CallBack_CounterRVFb = .text:0x8030B7C0; // type:function size:0x8 scope:global align:4 +setBlind__Q32og6Screen18CallBack_CounterRVFb = .text:0x8030B7C8; // type:function size:0x8 scope:global align:4 +setZeroAlpha__Q32og6Screen18CallBack_CounterRVFUc = .text:0x8030B7D0; // type:function size:0x8 scope:global align:4 +startPuyoUp__Q32og6Screen18CallBack_CounterRVFf = .text:0x8030B7D8; // type:function size:0xE4 scope:global align:4 +setCenteringMode__Q32og6Screen18CallBack_CounterRVFQ42og6Screen18CallBack_CounterRV17EnumCenteringMode = .text:0x8030B8BC; // type:function size:0x8 scope:global align:4 +init__Q32og6Screen18CallBack_CounterRVFP9J2DScreenUxUxUxPUlb = .text:0x8030B8C4; // type:function size:0x4D0 scope:global align:4 +setKetaSub__Q32og6Screen18CallBack_CounterRVFibb = .text:0x8030BD94; // type:function size:0x220 scope:global align:4 +setCounterUpDown__Q32og6Screen18CallBack_CounterRVFibb = .text:0x8030BFB4; // type:function size:0xB0 scope:global align:4 +setValue__Q32og6Screen18CallBack_CounterRVFbb = .text:0x8030C064; // type:function size:0x3F8 scope:global align:4 +update__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030C45C; // type:function size:0xB0 scope:global align:4 +draw__Q32og6Screen18CallBack_CounterRVFR8GraphicsR14J2DGrafContext = .text:0x8030C50C; // type:function size:0x4 scope:global align:4 +setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxUxUxPUlUsUsbP10JKRArchive = .text:0x8030C510; // type:function size:0xD8 scope:global align:4 +setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxPUlUsbbP10JKRArchive = .text:0x8030C5E8; // type:function size:0x17C scope:global align:4 +setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxUlUsbbP10JKRArchive = .text:0x8030C764; // type:function size:0x18C scope:global align:4 +__dt__Q32og6Screen18CallBack_CounterRVFv = .text:0x8030C8F0; // type:function size:0x80 scope:weak align:4 +__sinit_ogCounterRV_cpp = .text:0x8030C970; // type:function size:0x20 scope:local align:4 +setSE__Q22og5SoundFUl = .text:0x8030C990; // type:function size:0x28 scope:global align:4 +setLifeDanger__Q22og5SoundFv = .text:0x8030C9B8; // type:function size:0x2C scope:global align:4 +setChimeNoon__Q22og5SoundFv = .text:0x8030C9E4; // type:function size:0xF4 scope:global align:4 +setChime__Q22og5SoundFv = .text:0x8030CAD8; // type:function size:0x2C scope:global align:4 +setDecide__Q22og5SoundFv = .text:0x8030CB04; // type:function size:0x2C scope:global align:4 +setCancel__Q22og5SoundFv = .text:0x8030CB30; // type:function size:0x2C scope:global align:4 +setCursor__Q22og5SoundFv = .text:0x8030CB5C; // type:function size:0x2C scope:global align:4 +setOpen__Q22og5SoundFv = .text:0x8030CB88; // type:function size:0x2C scope:global align:4 +setClose__Q22og5SoundFv = .text:0x8030CBB4; // type:function size:0x2C scope:global align:4 +setPlusMinus__Q22og5SoundFb = .text:0x8030CBE0; // type:function size:0x48 scope:global align:4 +setSMenuLR__Q22og5SoundFv = .text:0x8030CC28; // type:function size:0x2C scope:global align:4 +setError__Q22og5SoundFv = .text:0x8030CC54; // type:function size:0x2C scope:global align:4 +setZoomIn__Q22og5SoundFv = .text:0x8030CC80; // type:function size:0x2C scope:global align:4 +setZoomOut__Q22og5SoundFv = .text:0x8030CCAC; // type:function size:0x2C scope:global align:4 +setScroll__Q22og5SoundFv = .text:0x8030CCD8; // type:function size:0x2C scope:global align:4 +setOpenDoukutu__Q22og5SoundFv = .text:0x8030CD04; // type:function size:0x2C scope:global align:4 +setSaveCave__Q22og5SoundFv = .text:0x8030CD30; // type:function size:0x2C scope:global align:4 +setOpenWMapMenu__Q22og5SoundFv = .text:0x8030CD5C; // type:function size:0x2C scope:global align:4 +setOpenTotalPoko__Q22og5SoundFv = .text:0x8030CD88; // type:function size:0x2C scope:global align:4 +setCloseTotalPoko__Q22og5SoundFv = .text:0x8030CDB4; // type:function size:0x2C scope:global align:4 +setPlusTotalPoko__Q22og5SoundFv = .text:0x8030CDE0; // type:function size:0x2C scope:global align:4 +setOpenFinalMsg__Q22og5SoundFv = .text:0x8030CE0C; // type:function size:0x2C scope:global align:4 +setSprayAdd__Q22og5SoundFv = .text:0x8030CE38; // type:function size:0x2C scope:global align:4 +setTimeCarry__Q22og5SoundFv = .text:0x8030CE64; // type:function size:0x2C scope:global align:4 +setGetSensor__Q22og5SoundFv = .text:0x8030CE90; // type:function size:0x2C scope:global align:4 +setFloorComplete__Q22og5SoundFv = .text:0x8030CEBC; // type:function size:0x2C scope:global align:4 +setGraySensor__Q22og5SoundFv = .text:0x8030CEE8; // type:function size:0x2C scope:global align:4 +setGetSpray__Q22og5SoundFv = .text:0x8030CF14; // type:function size:0x2C scope:global align:4 +setKanteiExit__Q22og5SoundFv = .text:0x8030CF40; // type:function size:0x2C scope:global align:4 +setFloorTitle__Q22og5SoundFv = .text:0x8030CF6C; // type:function size:0x4 scope:global align:4 +setVsTitle__Q22og5SoundFv = .text:0x8030CF70; // type:function size:0x2C scope:global align:4 +setBdamaGet__Q22og5SoundFv = .text:0x8030CF9C; // type:function size:0x2C scope:global align:4 +setNaviChange__Q22og5SoundFi = .text:0x8030CFC8; // type:function size:0x4 scope:global align:4 +setVsWin1P__Q22og5SoundFv = .text:0x8030CFCC; // type:function size:0xE0 scope:global align:4 +setVsWin2P__Q22og5SoundFv = .text:0x8030D0AC; // type:function size:0xE0 scope:global align:4 +setVsDraw__Q22og5SoundFv = .text:0x8030D18C; // type:function size:0xE0 scope:global align:4 +setWarning__Q22og5SoundFv = .text:0x8030D26C; // type:function size:0x2C scope:global align:4 +__ct__Q32og6Screen19CallBack_CounterDayFPPcUsP10JKRArchive = .text:0x8030D298; // type:function size:0x4C scope:global align:4 +init__Q32og6Screen19CallBack_CounterDayFP9J2DScreenUxUxUxPUlb = .text:0x8030D2E4; // type:function size:0xEC scope:global align:4 +setValue__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D3D0; // type:function size:0x168 scope:global align:4 +show__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D538; // type:function size:0x40 scope:global align:4 +hide__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D578; // type:function size:0x4C scope:global align:4 +update__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D5C4; // type:function size:0x40 scope:global align:4 +setCallBack_CounterDay__Q22og6ScreenFPQ29P2DScreen3MgrUxUxUxPUlUsP10JKRArchive = .text:0x8030D604; // type:function size:0xDC scope:global align:4 +__dt__Q32og6Screen19CallBack_CounterDayFv = .text:0x8030D6E0; // type:function size:0x90 scope:weak align:4 +isUseBackupSceneInfo__Q26Screen9SceneBaseFv = .text:0x8030D770; // type:function size:0x8 scope:weak align:4 +isDrawInDemo__Q26Screen9SceneBaseCFv = .text:0x8030D778; // type:function size:0x8 scope:weak align:4 +setPort__Q26Screen9SceneBaseFR8Graphics = .text:0x8030D780; // type:function size:0x30 scope:weak align:4 +doConfirmSetScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x8030D7B0; // type:function size:0x8 scope:weak align:4 +doConfirmStartScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x8030D7B8; // type:function size:0x8 scope:weak align:4 +doConfirmEndScene__Q26Screen9SceneBaseFRPQ26Screen11EndSceneArg = .text:0x8030D7C0; // type:function size:0x8 scope:weak align:4 +setDefaultDispMember__Q26Screen9SceneBaseFv = .text:0x8030D7C8; // type:function size:0x50 scope:weak align:4 +doSetBackupScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x8030D818; // type:function size:0x4 scope:weak align:4 +doGetFinishState__Q26Screen9SceneBaseFv = .text:0x8030D81C; // type:function size:0x8 scope:weak align:4 +getSize__Q32og6Screen15DispMemberDummyFv = .text:0x8030D824; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen15DispMemberDummyFv = .text:0x8030D82C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen15DispMemberDummyFv = .text:0x8030D838; // type:function size:0x10 scope:weak align:4 +__dt__Q26Screen7ObjBaseFv = .text:0x8030D848; // type:function size:0x94 scope:weak align:4 +setOwner__Q26Screen7ObjBaseFPQ26Screen9SceneBase = .text:0x8030D8DC; // type:function size:0x60 scope:weak align:4 +getOwner__Q26Screen7ObjBaseCFv = .text:0x8030D93C; // type:function size:0x8 scope:weak align:4 +doConfirmSetScene__Q26Screen7ObjBaseFRQ26Screen11SetSceneArg = .text:0x8030D944; // type:function size:0x8 scope:weak align:4 +doConfirmStartScene__Q26Screen7ObjBaseFPQ26Screen13StartSceneArg = .text:0x8030D94C; // type:function size:0x8 scope:weak align:4 +doConfirmEndScene__Q26Screen7ObjBaseFRPQ26Screen11EndSceneArg = .text:0x8030D954; // type:function size:0x8 scope:weak align:4 +__dt__Q26Screen8IObjBaseFv = .text:0x8030D95C; // type:function size:0x7C scope:weak align:4 +@24@__dt__Q26Screen8IObjBaseFv = .text:0x8030D9D8; // type:function size:0x8 scope:weak align:4 +initGround__Q22og9newScreenFv = .text:0x8030D9E0; // type:function size:0xC scope:global align:4 +__ct__Q32og9newScreen6GroundFv = .text:0x8030D9EC; // type:function size:0x54 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen6GroundFPQ28Resource10MgrCommand = .text:0x8030DA40; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen6GroundFP10JKRArchive = .text:0x8030DA44; // type:function size:0xC0 scope:global align:4 +doStart__Q32og9newScreen6GroundFPQ26Screen13StartSceneArg = .text:0x8030DB04; // type:function size:0x4C scope:global align:4 +doUpdateActive__Q32og9newScreen6GroundFv = .text:0x8030DB50; // type:function size:0x310 scope:global align:4 +getResName__Q32og9newScreen6GroundCFv = .text:0x8030DE60; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen6GroundFv = .text:0x8030DE6C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen6GroundFv = .text:0x8030DE74; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen6GroundFv = .text:0x8030DE80; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen6GroundCFv = .text:0x8030DE90; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen9ObjGroundFPCc = .text:0x8030DE98; // type:function size:0x94 scope:global align:4 +__dt__Q32og9newScreen9ObjGroundFv = .text:0x8030DF2C; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen9ObjGroundFP10JKRArchive = .text:0x8030DFD8; // type:function size:0x464 scope:global align:4 +commonUpdate__Q32og9newScreen9ObjGroundFv = .text:0x8030E43C; // type:function size:0x29C scope:global align:4 +doUpdate__Q32og9newScreen9ObjGroundFv = .text:0x8030E6D8; // type:function size:0x24 scope:global align:4 +doDraw__Q32og9newScreen9ObjGroundFR8Graphics = .text:0x8030E6FC; // type:function size:0x90 scope:global align:4 +doStart__Q32og9newScreen9ObjGroundFPCQ26Screen13StartSceneArg = .text:0x8030E78C; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen9ObjGroundFPCQ26Screen11EndSceneArg = .text:0x8030E7A0; // type:function size:0x10 scope:global align:4 +doUpdateFadein__Q32og9newScreen9ObjGroundFv = .text:0x8030E7B0; // type:function size:0x74 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen9ObjGroundFv = .text:0x8030E824; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen9ObjGroundFv = .text:0x8030E828; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q32og9newScreen9ObjGroundFv = .text:0x8030E834; // type:function size:0x7C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen9ObjGroundFv = .text:0x8030E8B0; // type:function size:0x4 scope:global align:4 +__sinit_ogObjGround_cpp = .text:0x8030E8B4; // type:function size:0x7C scope:local align:4 +@24@__dt__Q32og9newScreen9ObjGroundFv = .text:0x8030E930; // type:function size:0x8 scope:weak align:4 +CopyPicture__Q22og6ScreenFP12J2DPictureExUx = .text:0x8030E938; // type:function size:0x2F8 scope:global align:4 +CopyPictureToPane__Q22og6ScreenFP12J2DPictureExP7J2DPaneffUx = .text:0x8030EC30; // type:function size:0x338 scope:global align:4 +__ct__Q32og6Screen8BloGroupFUs = .text:0x8030EF68; // type:function size:0x98 scope:global align:4 +addBlo__Q32og6Screen8BloGroupFPcPQ29P2DScreen10Mgr_tuningUlP10JKRArchive = .text:0x8030F000; // type:function size:0xA0 scope:global align:4 +scale__Q32og6Screen8BloGroupFf = .text:0x8030F0A0; // type:function size:0x44 scope:global align:4 +rotate__Q32og6Screen8BloGroupFff13J2DRotateAxisf = .text:0x8030F0E4; // type:function size:0xA4 scope:global align:4 +update__Q32og6Screen8BloGroupFv = .text:0x8030F188; // type:function size:0x70 scope:global align:4 +draw__Q32og6Screen8BloGroupFP13J2DPerspGraph = .text:0x8030F1F8; // type:function size:0xE8 scope:global align:4 +doJ3DDrawInit__8GraphicsFv = .text:0x8030F2E0; // type:function size:0x4 scope:weak align:4 +doJ3DDraw__8GraphicsFi = .text:0x8030F2E4; // type:function size:0x4 scope:weak align:4 +doJ3DFrameInit__8GraphicsFv = .text:0x8030F2E8; // type:function size:0x4 scope:weak align:4 +doJ3DAnimation__8GraphicsFv = .text:0x8030F2EC; // type:function size:0x4 scope:weak align:4 +doJ3DUpdateInit__8GraphicsFv = .text:0x8030F2F0; // type:function size:0x4 scope:weak align:4 +doJ3DSetView__8GraphicsFi = .text:0x8030F2F4; // type:function size:0x4 scope:weak align:4 +doJ3DViewCalc__8GraphicsFv = .text:0x8030F2F8; // type:function size:0x4 scope:weak align:4 +isID__Q32og6Screen14DispMemberBaseFUlUx = .text:0x8030F2FC; // type:function size:0x80 scope:global align:4 +getMemberName__Q32og6Screen14DispMemberBaseFPc = .text:0x8030F37C; // type:function size:0x40 scope:global align:4 +setSubMember__Q32og6Screen14DispMemberBaseFPQ32og6Screen14DispMemberBase = .text:0x8030F3BC; // type:function size:0xE4 scope:global align:4 +getSubMember__Q32og6Screen14DispMemberBaseFUlUx = .text:0x8030F4A0; // type:function size:0x10C scope:global align:4 +setSubMemberAll__Q32og6Screen14DispMemberBaseFv = .text:0x8030F5AC; // type:function size:0x34 scope:global align:4 +__dt__Q22og5Lib2DFv = .text:0x8030F5E0; // type:function size:0x68 scope:global align:4 +create__Q22og5Lib2DFv = .text:0x8030F648; // type:function size:0x88 scope:global align:4 +__ct__Q32og9newScreen11ObjSMenuMapFPCc = .text:0x8030F6D0; // type:function size:0x114 scope:global align:4 +__dt__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8030F7E4; // type:function size:0xAC scope:weak align:4 +__dt__Q32og9newScreen11ObjSMenuMapFv = .text:0x8030F890; // type:function size:0xC4 scope:global align:4 +setMapTexture__Q32og9newScreen11ObjSMenuMapFv = .text:0x8030F954; // type:function size:0x26C scope:global align:4 +tuningIcon__Q32og9newScreen11ObjSMenuMapFv = .text:0x8030FBC0; // type:function size:0x1B8 scope:global align:4 +initMapIcon__Q32og9newScreen11ObjSMenuMapFP10JKRArchive = .text:0x8030FD78; // type:function size:0xC74 scope:global align:4 +appendCaveName__Q32og9newScreen11ObjSMenuMapFP7J2DPaneUsUx = .text:0x803109EC; // type:function size:0x1E4 scope:global align:4 +transMap__Q32og9newScreen11ObjSMenuMapFv = .text:0x80310BD0; // type:function size:0x2E8 scope:global align:4 +doCreate__Q32og9newScreen11ObjSMenuMapFP10JKRArchive = .text:0x80310EB8; // type:function size:0x960 scope:global align:4 +updateMap__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311818; // type:function size:0x598 scope:global align:4 +commonUpdate__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311DB0; // type:function size:0xA8 scope:global align:4 +doUpdateLAction__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311E58; // type:function size:0x6C scope:global align:4 +doUpdateRAction__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311EC4; // type:function size:0xC4 scope:global align:4 +doUpdate__Q32og9newScreen11ObjSMenuMapFv = .text:0x80311F88; // type:function size:0x10C scope:global align:4 +doDraw__Q32og9newScreen11ObjSMenuMapFR8Graphics = .text:0x80312094; // type:function size:0x138 scope:global align:4 +drawMap__Q32og9newScreen11ObjSMenuMapFR8Graphics = .text:0x803121CC; // type:function size:0x32C scope:global align:4 +drawRectZ__Q32og9newScreen11ObjSMenuMapFR8GraphicsR7RectR6Color4f = .text:0x803124F8; // type:function size:0x1E0 scope:global align:4 +drawVecZ__Q32og9newScreen11ObjSMenuMapFR8GraphicsR3VecR3VecR3VecR3VecR6Color4f = .text:0x803126D8; // type:function size:0x214 scope:global align:4 +doStart__Q32og9newScreen11ObjSMenuMapFPCQ26Screen13StartSceneArg = .text:0x803128EC; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen11ObjSMenuMapFPCQ26Screen11EndSceneArg = .text:0x80312990; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312998; // type:function size:0x20 scope:global align:4 +doUpdateFadeout__Q32og9newScreen11ObjSMenuMapFv = .text:0x803129B8; // type:function size:0x4C scope:global align:4 +in_L__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A04; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A18; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A2C; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A38; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312A64; // type:function size:0x2C scope:global align:4 +getClassSize__Q26Screen11SetSceneArgFv = .text:0x80312A90; // type:function size:0x8 scope:weak align:4 +getSceneType__Q26Screen11SetSceneArgCFv = .text:0x80312A98; // type:function size:0x8 scope:weak align:4 +getSceneType__Q26Screen12SceneArgBaseCFv = .text:0x80312AA0; // type:function size:0x8 scope:weak align:4 +doUpdateCancelAction__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312AA8; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjSMenuMap_cpp = .text:0x80312AAC; // type:function size:0x128 scope:local align:4 +@24@__dt__Q32og9newScreen11ObjSMenuMapFv = .text:0x80312BD4; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen8SMenuMapFv = .text:0x80312BDC; // type:function size:0x50 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen8SMenuMapFPQ28Resource10MgrCommand = .text:0x80312C2C; // type:function size:0x148 scope:global align:4 +doCreateObj__Q32og9newScreen8SMenuMapFP10JKRArchive = .text:0x80312D74; // type:function size:0x80 scope:global align:4 +doUpdateActive__Q32og9newScreen8SMenuMapFv = .text:0x80312DF4; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen8SMenuMapFRQ26Screen11SetSceneArg = .text:0x80312DF8; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen8SMenuMapFRQ26Screen11SetSceneArg = .text:0x80312E60; // type:function size:0xC scope:global align:4 +getResName__Q32og9newScreen8SMenuMapCFv = .text:0x80312E6C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen8SMenuMapFv = .text:0x80312E78; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen8SMenuMapFv = .text:0x80312E80; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen8SMenuMapFv = .text:0x80312E8C; // type:function size:0x10 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen8SMenuMapFv = .text:0x80312E9C; // type:function size:0x8 scope:weak align:4 +doGetFinishState__Q32og9newScreen14SceneSMenuBaseFv = .text:0x80312EA4; // type:function size:0x8 scope:weak align:4 +doUserCallBackFunc__Q26Screen9SceneBaseFPQ28Resource10MgrCommand = .text:0x80312EAC; // type:function size:0x4 scope:weak align:4 +__sinit_ogSceneSMenuMap_cpp = .text:0x80312EB0; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen12ObjSMenuItemFPCc = .text:0x80312ED8; // type:function size:0x7C scope:global align:4 +__dt__Q32og9newScreen12ObjSMenuItemFv = .text:0x80312F54; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen12ObjSMenuItemFP10JKRArchive = .text:0x80313018; // type:function size:0x924 scope:global align:4 +doUpdateLAction__Q32og9newScreen12ObjSMenuItemFv = .text:0x8031393C; // type:function size:0x128 scope:global align:4 +doUpdateRAction__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313A64; // type:function size:0x6C scope:global align:4 +commonUpdate__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313AD0; // type:function size:0xE8 scope:global align:4 +doUpdate__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313BB8; // type:function size:0x54 scope:global align:4 +doDraw__Q32og9newScreen12ObjSMenuItemFR8Graphics = .text:0x80313C0C; // type:function size:0xD4 scope:global align:4 +in_L__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313CE0; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313CF4; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D08; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D14; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313D40; // type:function size:0x2C scope:global align:4 +doStart__Q32og9newScreen12ObjSMenuItemFPCQ26Screen13StartSceneArg = .text:0x80313D6C; // type:function size:0xD0 scope:global align:4 +doEnd__Q32og9newScreen12ObjSMenuItemFPCQ26Screen11EndSceneArg = .text:0x80313E3C; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313E44; // type:function size:0x20 scope:global align:4 +doUpdateFadeout__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313E64; // type:function size:0x4C scope:global align:4 +doUpdateCancelAction__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313EB0; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjSMenuItem_cpp = .text:0x80313EB4; // type:function size:0x70 scope:local align:4 +@24@__dt__Q32og9newScreen12ObjSMenuItemFv = .text:0x80313F24; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen9SMenuItemFv = .text:0x80313F2C; // type:function size:0x50 scope:global align:4 +doConfirmSetScene__Q32og9newScreen9SMenuItemFRQ26Screen11SetSceneArg = .text:0x80313F7C; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen9SMenuItemFRQ26Screen11SetSceneArg = .text:0x80313FE4; // type:function size:0xC scope:global align:4 +doUserCallBackFunc__Q32og9newScreen9SMenuItemFPQ28Resource10MgrCommand = .text:0x80313FF0; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen9SMenuItemFP10JKRArchive = .text:0x80313FF4; // type:function size:0x60 scope:global align:4 +doUpdateActive__Q32og9newScreen9SMenuItemFv = .text:0x80314054; // type:function size:0x4 scope:global align:4 +getResName__Q32og9newScreen9SMenuItemCFv = .text:0x80314058; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen9SMenuItemFv = .text:0x80314064; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen9SMenuItemFv = .text:0x8031406C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen9SMenuItemFv = .text:0x80314078; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen9SMenuItemFv = .text:0x8031408C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen10SMenuPauseFv = .text:0x80314094; // type:function size:0x50 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen10SMenuPauseFPQ28Resource10MgrCommand = .text:0x803140E4; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen10SMenuPauseFP10JKRArchive = .text:0x803140E8; // type:function size:0x60 scope:global align:4 +doUpdateActive__Q32og9newScreen10SMenuPauseFv = .text:0x80314148; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen10SMenuPauseFRQ26Screen11SetSceneArg = .text:0x8031414C; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen10SMenuPauseCFv = .text:0x803141B4; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen10SMenuPauseFv = .text:0x803141C0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen10SMenuPauseFv = .text:0x803141C8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen10SMenuPauseFv = .text:0x803141D4; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen10SMenuPauseFv = .text:0x803141E8; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneSMenuPause_cpp = .text:0x803141F0; // type:function size:0x28 scope:local align:4 +getMenuColor__Q42og9newScreen13ObjSMenuPause9ObjHIOValFPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColor = .text:0x80314218; // type:function size:0x1F4 scope:global align:4 +__ct__Q32og9newScreen13ObjSMenuPauseFPCc = .text:0x8031440C; // type:function size:0xD0 scope:global align:4 +__dt__Q32og9newScreen13ObjSMenuPauseFv = .text:0x803144DC; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen13ObjSMenuPauseFP10JKRArchive = .text:0x803145A0; // type:function size:0x54C scope:global align:4 +blink_TopMenu__Q32og9newScreen13ObjSMenuPauseFi = .text:0x80314AEC; // type:function size:0xDC scope:global align:4 +doUpdateLAction__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314BC8; // type:function size:0x6C scope:global align:4 +doUpdateRAction__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314C34; // type:function size:0xC8 scope:global align:4 +doUpdateCancelAction__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314CFC; // type:function size:0x10 scope:global align:4 +commonUpdate__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314D0C; // type:function size:0x84 scope:global align:4 +doUpdate__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314D90; // type:function size:0xB0 scope:global align:4 +doDraw__Q32og9newScreen13ObjSMenuPauseFR8Graphics = .text:0x80314E40; // type:function size:0x98 scope:global align:4 +doStart__Q32og9newScreen13ObjSMenuPauseFPCQ26Screen13StartSceneArg = .text:0x80314ED8; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen13ObjSMenuPauseFPCQ26Screen11EndSceneArg = .text:0x80314F7C; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314F84; // type:function size:0x34 scope:global align:4 +doUpdateFadeout__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80314FB8; // type:function size:0x4C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315004; // type:function size:0x12C scope:global align:4 +menu_pause__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315130; // type:function size:0x4C0 scope:global align:4 +menu_yuugata__Q32og9newScreen13ObjSMenuPauseFv = .text:0x803155F0; // type:function size:0x478 scope:global align:4 +menu_zenkai__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315A68; // type:function size:0x478 scope:global align:4 +killCursorAll__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315EE0; // type:function size:0x40 scope:global align:4 +menu__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315F20; // type:function size:0x6C scope:global align:4 +in_L__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315F8C; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315FA0; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315FB4; // type:function size:0x30 scope:global align:4 +out_L__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80315FE4; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen13ObjSMenuPauseFv = .text:0x80316010; // type:function size:0x2C scope:global align:4 +__sinit_ogObjSMenuPause_cpp = .text:0x8031603C; // type:function size:0x28 scope:local align:4 +__ct__Q42og9newScreen13ObjSMenuPause9ObjHIOValFv = .text:0x80316064; // type:function size:0x184 scope:weak align:4 +@24@__dt__Q32og9newScreen13ObjSMenuPauseFv = .text:0x803161E8; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen12ObjSMenuBaseFv = .text:0x803161F0; // type:function size:0xEC scope:global align:4 +setFinishState__Q32og9newScreen12ObjSMenuBaseFl = .text:0x803162DC; // type:function size:0x3C scope:global align:4 +setSMenuScale__Q32og9newScreen12ObjSMenuBaseFff = .text:0x80316318; // type:function size:0x40 scope:global align:4 +doCreateAfter__Q32og9newScreen12ObjSMenuBaseFP10JKRArchivePQ29P2DScreen3Mgr = .text:0x80316358; // type:function size:0x1C4 scope:global align:4 +commonUpdateBase__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8031651C; // type:function size:0x20 scope:global align:4 +doUpdate__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8031653C; // type:function size:0x12C scope:global align:4 +doUpdateFinish__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316668; // type:function size:0xD0 scope:global align:4 +startBackupScene__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316738; // type:function size:0x74 scope:global align:4 +close_L__Q32og9newScreen12ObjSMenuBaseFv = .text:0x803167AC; // type:function size:0x2C scope:global align:4 +jump_L__Q32og9newScreen12ObjSMenuBaseFRQ26Screen11SetSceneArg = .text:0x803167D8; // type:function size:0xE4 scope:global align:4 +jump_R__Q32og9newScreen12ObjSMenuBaseFRQ26Screen11SetSceneArg = .text:0x803168BC; // type:function size:0xE4 scope:global align:4 +start_LR__Q32og9newScreen12ObjSMenuBaseFPCQ26Screen13StartSceneArg = .text:0x803169A0; // type:function size:0x150 scope:global align:4 +setYajiName__Q32og9newScreen12ObjSMenuBaseFUxUxUx = .text:0x80316AF0; // type:function size:0x68 scope:global align:4 +loop__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316B58; // type:function size:0x4 scope:global align:4 +stopYaji__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316B5C; // type:function size:0xC scope:global align:4 +updateYaji__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316B68; // type:function size:0x304 scope:global align:4 +drawYaji__Q32og9newScreen12ObjSMenuBaseFR8Graphics = .text:0x80316E6C; // type:function size:0x34 scope:global align:4 +updateFadeIn__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80316EA0; // type:function size:0x170 scope:global align:4 +doUpdateFadein__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80317010; // type:function size:0xA8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen12ObjSMenuBaseFv = .text:0x803170B8; // type:function size:0x54 scope:global align:4 +updateFadeOut__Q32og9newScreen12ObjSMenuBaseFv = .text:0x8031710C; // type:function size:0x104 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen12ObjSMenuBaseFv = .text:0x80317210; // type:function size:0x164 scope:global align:4 +doStart__Q26Screen7ObjBaseFPCQ26Screen13StartSceneArg = .text:0x80317374; // type:function size:0x8 scope:weak align:4 +doEnd__Q26Screen7ObjBaseFPCQ26Screen11EndSceneArg = .text:0x8031737C; // type:function size:0x8 scope:weak align:4 +doCreate__Q26Screen7ObjBaseFP10JKRArchive = .text:0x80317384; // type:function size:0x4 scope:weak align:4 +doUpdateFadeout__Q26Screen7ObjBaseFv = .text:0x80317388; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen18StartSceneArgSMenuCFv = .text:0x80317390; // type:function size:0x8 scope:weak align:4 +getClassSize__Q26Screen58StartSceneArgTemplateFv = .text:0x80317398; // type:function size:0x8 scope:weak align:4 +__sinit_ogObjSMenuBase_cpp = .text:0x803173A0; // type:function size:0x54 scope:local align:4 +@24@__dt__Q32og9newScreen12ObjSMenuBaseFv = .text:0x803173F4; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen13ObjCourseNameFPCc = .text:0x803173FC; // type:function size:0xA8 scope:global align:4 +__dt__Q32og9newScreen13ObjCourseNameFv = .text:0x803174A4; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen13ObjCourseNameFP10JKRArchive = .text:0x80317550; // type:function size:0x334 scope:global align:4 +doUpdate__Q32og9newScreen13ObjCourseNameFv = .text:0x80317884; // type:function size:0xF0 scope:global align:4 +doDraw__Q32og9newScreen13ObjCourseNameFR8Graphics = .text:0x80317974; // type:function size:0x170 scope:global align:4 +doStart__Q32og9newScreen13ObjCourseNameFPCQ26Screen13StartSceneArg = .text:0x80317AE4; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen13ObjCourseNameFPCQ26Screen11EndSceneArg = .text:0x80317AF8; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B08; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B0C; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B18; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen13ObjCourseNameFv = .text:0x80317B1C; // type:function size:0x120 scope:global align:4 +doUpdateFadeout__Q32og9newScreen13ObjCourseNameFv = .text:0x80317C3C; // type:function size:0x134 scope:global align:4 +drawBG__Q32og9newScreen13ObjCourseNameFR8Graphics = .text:0x80317D70; // type:function size:0x168 scope:global align:4 +__sinit_ogObjCourseName_cpp = .text:0x80317ED8; // type:function size:0x28 scope:local align:4 +@24@__dt__Q32og9newScreen13ObjCourseNameFv = .text:0x80317F00; // type:function size:0x8 scope:weak align:4 +checkMovieActive__Q22og9newScreenFv = .text:0x80317F08; // type:function size:0x24 scope:global align:4 +makeLanguageResName__Q22og9newScreenFPcPCc = .text:0x80317F2C; // type:function size:0xDC scope:global align:4 +__sinit_ogUtil_cpp = .text:0x80318008; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen10CourseNameFv = .text:0x80318030; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen10CourseNameFPQ28Resource10MgrCommand = .text:0x8031806C; // type:function size:0x128 scope:global align:4 +doCreateObj__Q32og9newScreen10CourseNameFP10JKRArchive = .text:0x80318194; // type:function size:0x4 scope:global align:4 +doCreateObjUserCallBackFunc__Q32og9newScreen10CourseNameFP10JKRArchive = .text:0x80318198; // type:function size:0x60 scope:global align:4 +getResName__Q32og9newScreen10CourseNameCFv = .text:0x803181F8; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen10CourseNameFv = .text:0x80318200; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen10CourseNameFv = .text:0x80318208; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen10CourseNameFv = .text:0x80318214; // type:function size:0x10 scope:weak align:4 +__ct__Q32og9newScreen9ObjKanteiFPCc = .text:0x80318224; // type:function size:0x120 scope:global align:4 +__dt__Q32og9newScreen9ObjKanteiFv = .text:0x80318344; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen9ObjKanteiFP10JKRArchive = .text:0x803183F0; // type:function size:0x7CC scope:global align:4 +scaleAnimItemName__Q32og9newScreen9ObjKanteiFv = .text:0x80318BBC; // type:function size:0x258 scope:global align:4 +commonUpdate__Q32og9newScreen9ObjKanteiFv = .text:0x80318E14; // type:function size:0x154 scope:global align:4 +doUpdate__Q32og9newScreen9ObjKanteiFv = .text:0x80318F68; // type:function size:0x40C scope:global align:4 +finishKantei__Q32og9newScreen9ObjKanteiFv = .text:0x80319374; // type:function size:0x40 scope:global align:4 +doDraw__Q32og9newScreen9ObjKanteiFR8Graphics = .text:0x803193B4; // type:function size:0x290 scope:global align:4 +doDrawMsg__Q32og9newScreen9ObjKanteiFR8Graphics = .text:0x80319644; // type:function size:0x3C scope:global align:4 +doStart__Q32og9newScreen9ObjKanteiFPCQ26Screen13StartSceneArg = .text:0x80319680; // type:function size:0x10C scope:global align:4 +doEnd__Q32og9newScreen9ObjKanteiFPCQ26Screen11EndSceneArg = .text:0x8031978C; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen9ObjKanteiFv = .text:0x8031979C; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen9ObjKanteiFv = .text:0x803197A0; // type:function size:0x40 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen9ObjKanteiFv = .text:0x803197E0; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen9ObjKanteiFv = .text:0x803197E4; // type:function size:0x1A4 scope:global align:4 +doUpdateFadeout__Q32og9newScreen9ObjKanteiFv = .text:0x80319988; // type:function size:0x1AC scope:global align:4 +__sinit_ogObjKantei_cpp = .text:0x80319B34; // type:function size:0x80 scope:local align:4 +@24@__dt__Q32og9newScreen9ObjKanteiFv = .text:0x80319BB4; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen10KanteiDemoFv = .text:0x80319BBC; // type:function size:0x44 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen10KanteiDemoFPQ28Resource10MgrCommand = .text:0x80319C00; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen10KanteiDemoFP10JKRArchive = .text:0x80319C04; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen10KanteiDemoCFv = .text:0x80319C6C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen10KanteiDemoFv = .text:0x80319C78; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen10KanteiDemoFv = .text:0x80319C80; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen10KanteiDemoFv = .text:0x80319C8C; // type:function size:0x10 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen10KanteiDemoFv = .text:0x80319C9C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen14ObjSpecialItemFPCc = .text:0x80319CA4; // type:function size:0x88 scope:global align:4 +__dt__Q32og9newScreen14ObjSpecialItemFv = .text:0x80319D2C; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen14ObjSpecialItemFP10JKRArchive = .text:0x80319DD8; // type:function size:0x194 scope:global align:4 +doUpdate__Q32og9newScreen14ObjSpecialItemFv = .text:0x80319F6C; // type:function size:0x40 scope:global align:4 +doDraw__Q32og9newScreen14ObjSpecialItemFR8Graphics = .text:0x80319FAC; // type:function size:0x104 scope:global align:4 +doStart__Q32og9newScreen14ObjSpecialItemFPCQ26Screen13StartSceneArg = .text:0x8031A0B0; // type:function size:0x10C scope:global align:4 +doEnd__Q32og9newScreen14ObjSpecialItemFPCQ26Screen11EndSceneArg = .text:0x8031A1BC; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A1CC; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A1D0; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A1DC; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A1E0; // type:function size:0x48 scope:global align:4 +doUpdateFadeout__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A228; // type:function size:0x50 scope:global align:4 +@24@__dt__Q32og9newScreen14ObjSpecialItemFv = .text:0x8031A278; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen11SpecialItemFv = .text:0x8031A280; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen11SpecialItemFPQ28Resource10MgrCommand = .text:0x8031A2BC; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen11SpecialItemFP10JKRArchive = .text:0x8031A2C0; // type:function size:0x60 scope:global align:4 +doConfirmSetScene__Q32og9newScreen11SpecialItemFRQ26Screen11SetSceneArg = .text:0x8031A320; // type:function size:0x4C scope:global align:4 +getResName__Q32og9newScreen11SpecialItemCFv = .text:0x8031A36C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen11SpecialItemFv = .text:0x8031A378; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen11SpecialItemFv = .text:0x8031A380; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen11SpecialItemFv = .text:0x8031A38C; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen11SpecialItemFv = .text:0x8031A3A0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen8ObjFloorFPCc = .text:0x8031A3A8; // type:function size:0xE8 scope:global align:4 +__dt__Q32og9newScreen8ObjFloorFv = .text:0x8031A490; // type:function size:0xAC scope:global align:4 +setCaveMsgID__Q32og9newScreen8ObjFloorFUlPc = .text:0x8031A53C; // type:function size:0x460 scope:global align:4 +doCreate__Q32og9newScreen8ObjFloorFP10JKRArchive = .text:0x8031A99C; // type:function size:0x8C0 scope:global align:4 +init__Q32og9newScreen8TitleMsgFv = .text:0x8031B25C; // type:function size:0x4 scope:weak align:4 +commonUpdate__Q32og9newScreen8ObjFloorFv = .text:0x8031B260; // type:function size:0x598 scope:global align:4 +end__Q32og9newScreen8TitleMsgFv = .text:0x8031B7F8; // type:function size:0x4 scope:weak align:4 +update__Q32og9newScreen8TitleMsgFv = .text:0x8031B7FC; // type:function size:0x4 scope:weak align:4 +doUpdate__Q32og9newScreen8ObjFloorFv = .text:0x8031B800; // type:function size:0x20 scope:global align:4 +doDraw__Q32og9newScreen8ObjFloorFR8Graphics = .text:0x8031B820; // type:function size:0x19C scope:global align:4 +doStart__Q32og9newScreen8ObjFloorFPCQ26Screen13StartSceneArg = .text:0x8031B9BC; // type:function size:0x34 scope:global align:4 +doEnd__Q32og9newScreen8ObjFloorFPCQ26Screen11EndSceneArg = .text:0x8031B9F0; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen8ObjFloorFv = .text:0x8031BA00; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen8ObjFloorFv = .text:0x8031BA04; // type:function size:0x30 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen8ObjFloorFv = .text:0x8031BA34; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen8ObjFloorFv = .text:0x8031BA38; // type:function size:0x74 scope:global align:4 +doUpdateFadeout__Q32og9newScreen8ObjFloorFv = .text:0x8031BAAC; // type:function size:0x88 scope:global align:4 +drawBG__Q32og9newScreen8ObjFloorFR8Graphics = .text:0x8031BB34; // type:function size:0x168 scope:global align:4 +__sinit_ogObjFloor_cpp = .text:0x8031BC9C; // type:function size:0x19C scope:local align:4 +@24@__dt__Q32og9newScreen8ObjFloorFv = .text:0x8031BE38; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen5FloorFv = .text:0x8031BE40; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen5FloorFPQ28Resource10MgrCommand = .text:0x8031BE7C; // type:function size:0x13C scope:global align:4 +doCreateObj__Q32og9newScreen5FloorFP10JKRArchive = .text:0x8031BFB8; // type:function size:0x4 scope:global align:4 +getResName__Q32og9newScreen5FloorCFv = .text:0x8031BFBC; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen5FloorFv = .text:0x8031BFC4; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen5FloorFv = .text:0x8031BFCC; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen5FloorFv = .text:0x8031BFD8; // type:function size:0x10 scope:weak align:4 +__ct__Q32og9newScreen7ObjCaveFPCc = .text:0x8031BFE8; // type:function size:0x9C scope:global align:4 +__dt__Q32og9newScreen7ObjCaveFv = .text:0x8031C084; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen7ObjCaveFP10JKRArchive = .text:0x8031C130; // type:function size:0x518 scope:global align:4 +commonUpdate__Q32og9newScreen7ObjCaveFv = .text:0x8031C648; // type:function size:0x3A4 scope:global align:4 +doUpdate__Q32og9newScreen7ObjCaveFv = .text:0x8031C9EC; // type:function size:0x24 scope:global align:4 +doDraw__Q32og9newScreen7ObjCaveFR8Graphics = .text:0x8031CA10; // type:function size:0x64 scope:global align:4 +doStart__Q32og9newScreen7ObjCaveFPCQ26Screen13StartSceneArg = .text:0x8031CA74; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen7ObjCaveFPCQ26Screen11EndSceneArg = .text:0x8031CA88; // type:function size:0x10 scope:global align:4 +doUpdateFadein__Q32og9newScreen7ObjCaveFv = .text:0x8031CA98; // type:function size:0x74 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen7ObjCaveFv = .text:0x8031CB0C; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen7ObjCaveFv = .text:0x8031CB10; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q32og9newScreen7ObjCaveFv = .text:0x8031CB1C; // type:function size:0x7C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen7ObjCaveFv = .text:0x8031CB98; // type:function size:0x4 scope:global align:4 +__sinit_ogObjCave_cpp = .text:0x8031CB9C; // type:function size:0xCC scope:local align:4 +@24@__dt__Q32og9newScreen7ObjCaveFv = .text:0x8031CC68; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen4CaveFv = .text:0x8031CC70; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen4CaveFPQ28Resource10MgrCommand = .text:0x8031CCAC; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen4CaveFP10JKRArchive = .text:0x8031CCB0; // type:function size:0x78 scope:global align:4 +getResName__Q32og9newScreen4CaveCFv = .text:0x8031CD28; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen4CaveFv = .text:0x8031CD34; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen4CaveFv = .text:0x8031CD3C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen4CaveFv = .text:0x8031CD48; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen4CaveCFv = .text:0x8031CD58; // type:function size:0x8 scope:weak align:4 +caveIDtoMsgID__Q22og9newScreenFUl = .text:0x8031CD60; // type:function size:0x9C scope:global align:4 +__ct__Q32og9newScreen10ObjAnaDemoFPCc = .text:0x8031CDFC; // type:function size:0xBC scope:global align:4 +__dt__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031CEB8; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen10ObjAnaDemoFP10JKRArchive = .text:0x8031CF64; // type:function size:0x1120 scope:global align:4 +setBlinkMenu__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E084; // type:function size:0x94 scope:global align:4 +doUpdate__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E118; // type:function size:0x5D4 scope:global align:4 +commonUpdate__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E6EC; // type:function size:0x80 scope:global align:4 +doDraw__Q32og9newScreen10ObjAnaDemoFR8Graphics = .text:0x8031E76C; // type:function size:0x74 scope:global align:4 +doStart__Q32og9newScreen10ObjAnaDemoFPCQ26Screen13StartSceneArg = .text:0x8031E7E0; // type:function size:0x18 scope:global align:4 +doEnd__Q32og9newScreen10ObjAnaDemoFPCQ26Screen11EndSceneArg = .text:0x8031E7F8; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E800; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E804; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E810; // type:function size:0x94 scope:global align:4 +doUpdateFadein__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E8A4; // type:function size:0xE4 scope:global align:4 +doUpdateFadeout__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031E988; // type:function size:0x84 scope:global align:4 +__sinit_ogObjAnaDemo_cpp = .text:0x8031EA0C; // type:function size:0x24 scope:local align:4 +@24@__dt__Q32og9newScreen10ObjAnaDemoFv = .text:0x8031EA30; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7AnaDemoFl = .text:0x8031EA38; // type:function size:0x80 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen7AnaDemoFPQ28Resource10MgrCommand = .text:0x8031EAB8; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen7AnaDemoFP10JKRArchive = .text:0x8031EABC; // type:function size:0x78 scope:global align:4 +getResName__Q32og9newScreen7AnaDemoCFv = .text:0x8031EB34; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen7AnaDemoFv = .text:0x8031EB40; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen7AnaDemoFv = .text:0x8031EB48; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen7AnaDemoFv = .text:0x8031EB54; // type:function size:0x6C scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen7AnaDemoFv = .text:0x8031EBC0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen14ObjChallenge2PFPCc = .text:0x8031EBC8; // type:function size:0x64 scope:global align:4 +__dt__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031EC2C; // type:function size:0x68 scope:global align:4 +doCreate__Q32og9newScreen14ObjChallenge2PFP10JKRArchive = .text:0x8031EC94; // type:function size:0x6C4 scope:global align:4 +init__Q42og9newScreen14ObjChallenge2P9ScreenSetFPQ32og6Screen8DataNaviP10JKRArchivePQ32og6Screen21DispMemberChallenge2P = .text:0x8031F358; // type:function size:0x2BC scope:global align:4 +commonUpdate__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031F614; // type:function size:0x260 scope:global align:4 +doUpdate__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031F874; // type:function size:0x24 scope:global align:4 +doDraw__Q32og9newScreen14ObjChallenge2PFR8Graphics = .text:0x8031F898; // type:function size:0x1F8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FA90; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FA94; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FAA0; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FAA4; // type:function size:0x74 scope:global align:4 +doUpdateFadeout__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FB18; // type:function size:0x7C scope:global align:4 +doStart__Q32og9newScreen14ObjChallenge2PFPCQ26Screen13StartSceneArg = .text:0x8031FB94; // type:function size:0x74 scope:global align:4 +__sinit_ogObjChallenge2P_cpp = .text:0x8031FC08; // type:function size:0xD4 scope:local align:4 +@24@__dt__Q32og9newScreen14ObjChallenge2PFv = .text:0x8031FCDC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen11Challenge2PFv = .text:0x8031FCE4; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen11Challenge2PFPQ28Resource10MgrCommand = .text:0x8031FD20; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen11Challenge2PFP10JKRArchive = .text:0x8031FD24; // type:function size:0xC0 scope:global align:4 +doStart__Q32og9newScreen11Challenge2PFPQ26Screen13StartSceneArg = .text:0x8031FDE4; // type:function size:0x4C scope:global align:4 +doUpdateActive__Q32og9newScreen11Challenge2PFv = .text:0x8031FE30; // type:function size:0x38 scope:global align:4 +startCountDown__Q32og9newScreen11Challenge2PFv = .text:0x8031FE68; // type:function size:0x84 scope:global align:4 +getResName__Q32og9newScreen11Challenge2PCFv = .text:0x8031FEEC; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen11Challenge2PFv = .text:0x8031FEF8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen11Challenge2PFv = .text:0x8031FF00; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen11Challenge2PFv = .text:0x8031FF0C; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen11Challenge2PCFv = .text:0x8031FF1C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen10ObjContenaFPCc = .text:0x8031FF24; // type:function size:0x1C0 scope:global align:4 +__dt__Q32og9newScreen10ObjContenaFv = .text:0x803200E4; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen10ObjContenaFP10JKRArchive = .text:0x80320190; // type:function size:0x934 scope:global align:4 +putinPiki__Q32og9newScreen10ObjContenaFb = .text:0x80320AC4; // type:function size:0x284 scope:global align:4 +takeoutPiki__Q32og9newScreen10ObjContenaFb = .text:0x80320D48; // type:function size:0x320 scope:global align:4 +moveContena__Q32og9newScreen10ObjContenaFv = .text:0x80321068; // type:function size:0x33C scope:global align:4 +commonUpdate__Q32og9newScreen10ObjContenaFv = .text:0x803213A4; // type:function size:0x5FC scope:global align:4 +doUpdate__Q32og9newScreen10ObjContenaFv = .text:0x803219A0; // type:function size:0x40 scope:global align:4 +doDraw__Q32og9newScreen10ObjContenaFR8Graphics = .text:0x803219E0; // type:function size:0x174 scope:global align:4 +doStart__Q32og9newScreen10ObjContenaFPCQ26Screen13StartSceneArg = .text:0x80321B54; // type:function size:0x44 scope:global align:4 +doEnd__Q32og9newScreen10ObjContenaFPCQ26Screen11EndSceneArg = .text:0x80321B98; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen10ObjContenaFv = .text:0x80321BA0; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen10ObjContenaFv = .text:0x80321BA4; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen10ObjContenaFv = .text:0x80321BB0; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen10ObjContenaFv = .text:0x80321BB4; // type:function size:0xA8 scope:global align:4 +doUpdateFadeout__Q32og9newScreen10ObjContenaFv = .text:0x80321C5C; // type:function size:0x1DC scope:global align:4 +__sinit_ogObjContena_cpp = .text:0x80321E38; // type:function size:0xA8 scope:local align:4 +@24@__dt__Q32og9newScreen10ObjContenaFv = .text:0x80321EE0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7ContenaFv = .text:0x80321EE8; // type:function size:0x44 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen7ContenaFPQ28Resource10MgrCommand = .text:0x80321F2C; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen7ContenaFP10JKRArchive = .text:0x80321F30; // type:function size:0x100 scope:global align:4 +getResName__Q32og9newScreen7ContenaCFv = .text:0x80322030; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen7ContenaFv = .text:0x8032203C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen7ContenaFv = .text:0x80322044; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen7ContenaFv = .text:0x80322050; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen7ContenaFv = .text:0x80322064; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen20ObjSMenuPauseDoukutuFPCc = .text:0x8032206C; // type:function size:0xB0 scope:global align:4 +__dt__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x8032211C; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen20ObjSMenuPauseDoukutuFP10JKRArchive = .text:0x803221E0; // type:function size:0x574 scope:global align:4 +commonUpdate__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322754; // type:function size:0x94 scope:global align:4 +doUpdate__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803227E8; // type:function size:0xB0 scope:global align:4 +doDraw__Q32og9newScreen20ObjSMenuPauseDoukutuFR8Graphics = .text:0x80322898; // type:function size:0x8C scope:global align:4 +doStart__Q32og9newScreen20ObjSMenuPauseDoukutuFPCQ26Screen13StartSceneArg = .text:0x80322924; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen20ObjSMenuPauseDoukutuFPCQ26Screen11EndSceneArg = .text:0x803229C8; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803229D0; // type:function size:0x3C scope:global align:4 +doUpdateFadeout__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322A0C; // type:function size:0x4C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322A58; // type:function size:0x158 scope:global align:4 +menu_pause__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322BB0; // type:function size:0x1D8 scope:global align:4 +doUpdateCancelAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322D88; // type:function size:0x10 scope:global align:4 +doUpdateLAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322D98; // type:function size:0x6C scope:global align:4 +doUpdateRAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322E04; // type:function size:0xC8 scope:global align:4 +menu_giveup__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80322ECC; // type:function size:0x1E8 scope:global align:4 +finishPause__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803230B4; // type:function size:0x38 scope:global align:4 +menu__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803230EC; // type:function size:0xA8 scope:global align:4 +in_L__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80323194; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231A8; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231BC; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231C8; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803231F4; // type:function size:0x2C scope:global align:4 +set_Blink_Normal__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80323220; // type:function size:0xC4 scope:global align:4 +set_Blink_YesNo__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x803232E4; // type:function size:0x78 scope:global align:4 +set_Menu_Normal__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x8032335C; // type:function size:0x10C scope:global align:4 +set_Menu_YesNo__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x80323468; // type:function size:0xD4 scope:global align:4 +__sinit_ogObjSMenuPauseDoukutu_cpp = .text:0x8032353C; // type:function size:0x20 scope:local align:4 +@24@__dt__Q32og9newScreen20ObjSMenuPauseDoukutuFv = .text:0x8032355C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323564; // type:function size:0x50 scope:global align:4 +doUserCallBackFunc__Q32og9newScreen17SMenuPauseDoukutuFPQ28Resource10MgrCommand = .text:0x803235B4; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen17SMenuPauseDoukutuFP10JKRArchive = .text:0x803235B8; // type:function size:0x60 scope:global align:4 +doGetFinishState__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323618; // type:function size:0x90 scope:global align:4 +doUpdateActive__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x803236A8; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen17SMenuPauseDoukutuFRQ26Screen11SetSceneArg = .text:0x803236AC; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen17SMenuPauseDoukutuCFv = .text:0x80323714; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323720; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323728; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323734; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen17SMenuPauseDoukutuFv = .text:0x80323748; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneSMenuPauseDoukutu_cpp = .text:0x80323750; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen10ObjUfoMenuFPCc = .text:0x80323778; // type:function size:0xB0 scope:global align:4 +__dt__Q32og9newScreen10ObjUfoMenuFv = .text:0x80323828; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen10ObjUfoMenuFP10JKRArchive = .text:0x803238D4; // type:function size:0x490 scope:global align:4 +setSelectPikmin__Q32og9newScreen10ObjUfoMenuFi = .text:0x80323D64; // type:function size:0xF4 scope:global align:4 +doUpdate__Q32og9newScreen10ObjUfoMenuFv = .text:0x80323E58; // type:function size:0x524 scope:global align:4 +setBackupScene__Q32og9newScreen10ObjUfoMenuFv = .text:0x8032437C; // type:function size:0x94 scope:global align:4 +doDraw__Q32og9newScreen10ObjUfoMenuFR8Graphics = .text:0x80324410; // type:function size:0xB4 scope:global align:4 +doStart__Q32og9newScreen10ObjUfoMenuFPCQ26Screen13StartSceneArg = .text:0x803244C4; // type:function size:0x20 scope:global align:4 +doEnd__Q32og9newScreen10ObjUfoMenuFPCQ26Screen11EndSceneArg = .text:0x803244E4; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen10ObjUfoMenuFv = .text:0x803244EC; // type:function size:0x44 scope:global align:4 +doUpdateFinish__Q32og9newScreen10ObjUfoMenuFv = .text:0x80324530; // type:function size:0x2C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen10ObjUfoMenuFv = .text:0x8032455C; // type:function size:0x24 scope:global align:4 +doUpdateFadein__Q32og9newScreen10ObjUfoMenuFv = .text:0x80324580; // type:function size:0x188 scope:global align:4 +doUpdateFadeout__Q32og9newScreen10ObjUfoMenuFv = .text:0x80324708; // type:function size:0x17C scope:global align:4 +__sinit_ogObjUfo_cpp = .text:0x80324884; // type:function size:0x48 scope:local align:4 +@24@__dt__Q32og9newScreen10ObjUfoMenuFv = .text:0x803248CC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7UfoMenuFv = .text:0x803248D4; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen7UfoMenuFPQ28Resource10MgrCommand = .text:0x80324910; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen7UfoMenuFP10JKRArchive = .text:0x80324914; // type:function size:0x78 scope:global align:4 +doConfirmSetScene__Q32og9newScreen7UfoMenuFRQ26Screen11SetSceneArg = .text:0x8032498C; // type:function size:0x60 scope:global align:4 +doSetBackupScene__Q32og9newScreen7UfoMenuFRQ26Screen11SetSceneArg = .text:0x803249EC; // type:function size:0xC scope:global align:4 +getResName__Q32og9newScreen7UfoMenuCFv = .text:0x803249F8; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen7UfoMenuFv = .text:0x80324A04; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen7UfoMenuFv = .text:0x80324A0C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen7UfoMenuFv = .text:0x80324A18; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen7UfoMenuFv = .text:0x80324A2C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen7ObjSaveFPCc = .text:0x80324A34; // type:function size:0x60 scope:global align:4 +__dt__Q32og9newScreen7ObjSaveFv = .text:0x80324A94; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen7ObjSaveFP10JKRArchive = .text:0x80324B40; // type:function size:0x8C scope:global align:4 +doUpdate__Q32og9newScreen7ObjSaveFv = .text:0x80324BCC; // type:function size:0x134 scope:global align:4 +doDraw__Q32og9newScreen7ObjSaveFR8Graphics = .text:0x80324D00; // type:function size:0x30 scope:global align:4 +doStart__Q32og9newScreen7ObjSaveFPCQ26Screen13StartSceneArg = .text:0x80324D30; // type:function size:0x8 scope:global align:4 +doEnd__Q32og9newScreen7ObjSaveFPCQ26Screen11EndSceneArg = .text:0x80324D38; // type:function size:0x8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen7ObjSaveFv = .text:0x80324D40; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen7ObjSaveFv = .text:0x80324D44; // type:function size:0x4 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen7ObjSaveFv = .text:0x80324D48; // type:function size:0x34 scope:global align:4 +doUpdateFadein__Q32og9newScreen7ObjSaveFv = .text:0x80324D7C; // type:function size:0x8 scope:global align:4 +doUpdateFadeout__Q32og9newScreen7ObjSaveFv = .text:0x80324D84; // type:function size:0x8 scope:global align:4 +@24@__dt__Q32og9newScreen7ObjSaveFv = .text:0x80324D8C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen4SaveFv = .text:0x80324D94; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen4SaveFPQ28Resource10MgrCommand = .text:0x80324DD0; // type:function size:0x78 scope:global align:4 +doCreateObj__Q32og9newScreen4SaveFP10JKRArchive = .text:0x80324E48; // type:function size:0x30 scope:global align:4 +doCreateObjUserCallBackFunc__Q32og9newScreen4SaveFP10JKRArchive = .text:0x80324E78; // type:function size:0x68 scope:global align:4 +getResName__Q32og9newScreen4SaveCFv = .text:0x80324EE0; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen4SaveFv = .text:0x80324EE8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen4SaveFv = .text:0x80324EF0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen4SaveFv = .text:0x80324EFC; // type:function size:0x10 scope:weak align:4 +__ct__Q32og9newScreen11ObjFinalMsgFPCc = .text:0x80324F0C; // type:function size:0x80 scope:global align:4 +__dt__Q32og9newScreen11ObjFinalMsgFv = .text:0x80324F8C; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen11ObjFinalMsgFP10JKRArchive = .text:0x80325038; // type:function size:0x2CC scope:global align:4 +blink_Menu__Q32og9newScreen11ObjFinalMsgFi = .text:0x80325304; // type:function size:0x70 scope:global align:4 +doUpdate__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325374; // type:function size:0x68 scope:global align:4 +menu__Q32og9newScreen11ObjFinalMsgFv = .text:0x803253DC; // type:function size:0x1C0 scope:global align:4 +doDraw__Q32og9newScreen11ObjFinalMsgFR8Graphics = .text:0x8032559C; // type:function size:0x60 scope:global align:4 +doStart__Q32og9newScreen11ObjFinalMsgFPCQ26Screen13StartSceneArg = .text:0x803255FC; // type:function size:0x60 scope:global align:4 +doEnd__Q32og9newScreen11ObjFinalMsgFPCQ26Screen11EndSceneArg = .text:0x8032565C; // type:function size:0x8 scope:global align:4 +doUpdateFadein__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325664; // type:function size:0xB8 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen11ObjFinalMsgFv = .text:0x8032571C; // type:function size:0x3C scope:global align:4 +doUpdateFinish__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325758; // type:function size:0x38 scope:global align:4 +doUpdateFadeout__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325790; // type:function size:0xB0 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325840; // type:function size:0x34 scope:global align:4 +wait__Q32og9newScreen11ObjFinalMsgFv = .text:0x80325874; // type:function size:0x4C scope:global align:4 +@24@__dt__Q32og9newScreen11ObjFinalMsgFv = .text:0x803258C0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen8FinalMsgFv = .text:0x803258C8; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen8FinalMsgFPQ28Resource10MgrCommand = .text:0x80325904; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen8FinalMsgFP10JKRArchive = .text:0x80325908; // type:function size:0x78 scope:global align:4 +doGetFinishState__Q32og9newScreen8FinalMsgFv = .text:0x80325980; // type:function size:0x64 scope:global align:4 +getResName__Q32og9newScreen8FinalMsgCFv = .text:0x803259E4; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen8FinalMsgFv = .text:0x803259F0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen8FinalMsgFv = .text:0x803259F8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen8FinalMsgFv = .text:0x80325A04; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen8FinalMsgFv = .text:0x80325A18; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen5ObjVsFPCc = .text:0x80325A20; // type:function size:0x15C scope:global align:4 +__dt__Q32og9newScreen5ObjVsFv = .text:0x80325B7C; // type:function size:0xAC scope:global align:4 +doCreate__Q32og9newScreen5ObjVsFP10JKRArchive = .text:0x80325C28; // type:function size:0x800 scope:global align:4 +setOnOffBdama__Q32og9newScreen5ObjVsFb = .text:0x80326428; // type:function size:0xA28 scope:global align:4 +init__Q42og9newScreen5ObjVs9ScreenSetFPQ32og6Screen8DataNaviP10JKRArchivePUl = .text:0x80326E50; // type:function size:0x2B8 scope:global align:4 +checkObake__Q32og9newScreen5ObjVsFv = .text:0x80327108; // type:function size:0x56C scope:global align:4 +doUpdateCommon__Q32og9newScreen5ObjVsFv = .text:0x80327674; // type:function size:0x2AC scope:global align:4 +doUpdate__Q32og9newScreen5ObjVsFv = .text:0x80327920; // type:function size:0x44 scope:global align:4 +doDraw__Q32og9newScreen5ObjVsFR8Graphics = .text:0x80327964; // type:function size:0x130 scope:global align:4 +doStart__Q32og9newScreen5ObjVsFPCQ26Screen13StartSceneArg = .text:0x80327A94; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen5ObjVsFPCQ26Screen11EndSceneArg = .text:0x80327AA8; // type:function size:0x10 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen5ObjVsFv = .text:0x80327AB8; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen5ObjVsFv = .text:0x80327ABC; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen5ObjVsFv = .text:0x80327AC8; // type:function size:0x4 scope:global align:4 +doUpdateFadein__Q32og9newScreen5ObjVsFv = .text:0x80327ACC; // type:function size:0x74 scope:global align:4 +doUpdateFadeout__Q32og9newScreen5ObjVsFv = .text:0x80327B40; // type:function size:0x7C scope:global align:4 +getName__Q25efx2d8ArgScaleFv = .text:0x80327BBC; // type:function size:0xC scope:weak align:4 +__sinit_ogObjVs_cpp = .text:0x80327BC8; // type:function size:0x6C scope:local align:4 +@24@__dt__Q32og9newScreen5ObjVsFv = .text:0x80327C34; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen2VsFv = .text:0x80327C3C; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen2VsFPQ28Resource10MgrCommand = .text:0x80327C78; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen2VsFP10JKRArchive = .text:0x80327C7C; // type:function size:0x78 scope:global align:4 +getResName__Q32og9newScreen2VsCFv = .text:0x80327CF4; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen2VsFv = .text:0x80327D00; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen2VsFv = .text:0x80327D08; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen2VsFv = .text:0x80327D14; // type:function size:0xC scope:weak align:4 +isDrawInDemo__Q32og9newScreen2VsCFv = .text:0x80327D20; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen14ObjChallenge1PFPCc = .text:0x80327D28; // type:function size:0x74 scope:global align:4 +__dt__Q32og9newScreen14ObjChallenge1PFv = .text:0x80327D9C; // type:function size:0x68 scope:global align:4 +doCreate__Q32og9newScreen14ObjChallenge1PFP10JKRArchive = .text:0x80327E04; // type:function size:0x678 scope:global align:4 +doUpdate__Q32og9newScreen14ObjChallenge1PFv = .text:0x8032847C; // type:function size:0x1D4 scope:global align:4 +doDraw__Q32og9newScreen14ObjChallenge1PFR8Graphics = .text:0x80328650; // type:function size:0x30 scope:global align:4 +doUpdateFadein__Q32og9newScreen14ObjChallenge1PFv = .text:0x80328680; // type:function size:0x228 scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen14ObjChallenge1PFv = .text:0x803288A8; // type:function size:0x4 scope:global align:4 +doUpdateFinish__Q32og9newScreen14ObjChallenge1PFv = .text:0x803288AC; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q32og9newScreen14ObjChallenge1PFv = .text:0x803288B8; // type:function size:0x230 scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen14ObjChallenge1PFv = .text:0x80328AE8; // type:function size:0x4 scope:global align:4 +doStart__Q32og9newScreen14ObjChallenge1PFPCQ26Screen13StartSceneArg = .text:0x80328AEC; // type:function size:0x74 scope:global align:4 +__sinit_ogObjChallenge1P_cpp = .text:0x80328B60; // type:function size:0xA8 scope:local align:4 +@24@__dt__Q32og9newScreen14ObjChallenge1PFv = .text:0x80328C08; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen11Challenge1PFv = .text:0x80328C10; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen11Challenge1PFPQ28Resource10MgrCommand = .text:0x80328C4C; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen11Challenge1PFP10JKRArchive = .text:0x80328C50; // type:function size:0x9C scope:global align:4 +doStart__Q32og9newScreen11Challenge1PFPQ26Screen13StartSceneArg = .text:0x80328CEC; // type:function size:0x4C scope:global align:4 +doUpdateActive__Q32og9newScreen11Challenge1PFv = .text:0x80328D38; // type:function size:0x38 scope:global align:4 +startCountDown__Q32og9newScreen11Challenge1PFv = .text:0x80328D70; // type:function size:0x3C scope:global align:4 +getResName__Q32og9newScreen11Challenge1PCFv = .text:0x80328DAC; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen11Challenge1PFv = .text:0x80328DB8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen11Challenge1PFv = .text:0x80328DC0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen11Challenge1PFv = .text:0x80328DCC; // type:function size:0x10 scope:weak align:4 +isDrawInDemo__Q32og9newScreen11Challenge1PCFv = .text:0x80328DDC; // type:function size:0x8 scope:weak align:4 +__ct__Q32og6Screen8ScaleMgrFv = .text:0x80328DE4; // type:function size:0x44 scope:global align:4 +up__Q32og6Screen8ScaleMgrFv = .text:0x80328E28; // type:function size:0x48 scope:global align:4 +down__Q32og6Screen8ScaleMgrFv = .text:0x80328E70; // type:function size:0x48 scope:global align:4 +up__Q32og6Screen8ScaleMgrFffff = .text:0x80328EB8; // type:function size:0x64 scope:global align:4 +down__Q32og6Screen8ScaleMgrFfff = .text:0x80328F1C; // type:function size:0x28 scope:global align:4 +setParam__Q32og6Screen8ScaleMgrFfff = .text:0x80328F44; // type:function size:0x20 scope:global align:4 +calc__Q32og6Screen8ScaleMgrFv = .text:0x80328F64; // type:function size:0x20C scope:global align:4 +__ct__Q32og9newScreen15ObjSMenuPauseVSFPCc = .text:0x80329170; // type:function size:0x80 scope:global align:4 +__dt__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x803291F0; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen15ObjSMenuPauseVSFP10JKRArchive = .text:0x803292B4; // type:function size:0x334 scope:global align:4 +blink_Menu__Q32og9newScreen15ObjSMenuPauseVSFi = .text:0x803295E8; // type:function size:0x74 scope:global align:4 +commonUpdate__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x8032965C; // type:function size:0x68 scope:global align:4 +doUpdate__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x803296C4; // type:function size:0x60 scope:global align:4 +menu__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329724; // type:function size:0x230 scope:global align:4 +out_cancel__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329954; // type:function size:0x38 scope:global align:4 +out_menu_0__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x8032998C; // type:function size:0x38 scope:global align:4 +out_menu_1__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x803299C4; // type:function size:0x38 scope:global align:4 +doUpdateCancelAction__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x803299FC; // type:function size:0x10 scope:global align:4 +doDraw__Q32og9newScreen15ObjSMenuPauseVSFR8Graphics = .text:0x80329A0C; // type:function size:0x60 scope:global align:4 +doStart__Q32og9newScreen15ObjSMenuPauseVSFPCQ26Screen13StartSceneArg = .text:0x80329A6C; // type:function size:0x44 scope:global align:4 +doEnd__Q32og9newScreen15ObjSMenuPauseVSFPCQ26Screen11EndSceneArg = .text:0x80329AB0; // type:function size:0x8 scope:global align:4 +doUpdateFadein__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329AB8; // type:function size:0x4C scope:global align:4 +doUpdateFadeinFinish__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329B04; // type:function size:0x48 scope:global align:4 +doUpdateFinish__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329B4C; // type:function size:0x48 scope:global align:4 +doUpdateFadeout__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329B94; // type:function size:0x4C scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329BE0; // type:function size:0xAC scope:global align:4 +getResult__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329C8C; // type:function size:0xC scope:weak align:4 +in_L__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329C98; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CAC; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CB8; // type:function size:0xC scope:global align:4 +doUpdateRAction__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CC4; // type:function size:0x4 scope:weak align:4 +doUpdateLAction__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CC8; // type:function size:0x4 scope:weak align:4 +in_R__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CCC; // type:function size:0x4 scope:weak align:4 +out_R__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CD0; // type:function size:0x4 scope:weak align:4 +@24@__dt__Q32og9newScreen15ObjSMenuPauseVSFv = .text:0x80329CD4; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329CDC; // type:function size:0x3C scope:global align:4 +doUserCallBackFunc__Q32og9newScreen12SMenuPauseVSFPQ28Resource10MgrCommand = .text:0x80329D18; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen12SMenuPauseVSFP10JKRArchive = .text:0x80329D1C; // type:function size:0x78 scope:global align:4 +doGetFinishState__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329D94; // type:function size:0x88 scope:global align:4 +doUpdateActive__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329E1C; // type:function size:0x4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen12SMenuPauseVSFRQ26Screen11SetSceneArg = .text:0x80329E20; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen12SMenuPauseVSFRQ26Screen11SetSceneArg = .text:0x80329E88; // type:function size:0xC scope:global align:4 +getResName__Q32og9newScreen12SMenuPauseVSCFv = .text:0x80329E94; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329EA0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329EA8; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329EB4; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen12SMenuPauseVSFv = .text:0x80329EC8; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneSMenuPauseVs_cpp = .text:0x80329ED0; // type:function size:0x28 scope:local align:4 +stop__Q32og6Screen15CallBack_FurikoFv = .text:0x80329EF8; // type:function size:0x40 scope:global align:4 +setParam__Q32og6Screen15CallBack_FurikoFfff = .text:0x80329F38; // type:function size:0x10 scope:global align:4 +update__Q32og6Screen15CallBack_FurikoFv = .text:0x80329F48; // type:function size:0x168 scope:global align:4 +draw__Q32og6Screen15CallBack_FurikoFR8GraphicsR14J2DGrafContext = .text:0x8032A0B0; // type:function size:0x1A0 scope:global align:4 +setCallBack_Furiko__Q22og6ScreenFPQ29P2DScreen3MgrUx = .text:0x8032A250; // type:function size:0x1D0 scope:global align:4 +setFurikoScreen__Q22og6ScreenFPQ29P2DScreen3Mgr = .text:0x8032A420; // type:function size:0x270 scope:global align:4 +getFurikoPtr__Q22og6ScreenFPQ29P2DScreen3MgrUx = .text:0x8032A690; // type:function size:0x24 scope:global align:4 +__dt__Q32og6Screen15CallBack_FurikoFv = .text:0x8032A6B4; // type:function size:0x80 scope:weak align:4 +init__Q32og6Screen20CallBack_CounterSlotFP9J2DScreenUxUxUxPUlb = .text:0x8032A734; // type:function size:0x30 scope:global align:4 +setPuyoParam__Q32og6Screen20CallBack_CounterSlotFfff = .text:0x8032A764; // type:function size:0x10 scope:global align:4 +update__Q32og6Screen20CallBack_CounterSlotFv = .text:0x8032A774; // type:function size:0x270 scope:global align:4 +slot_up__Q32og6Screen20CallBack_CounterSlotFi = .text:0x8032A9E4; // type:function size:0x94 scope:global align:4 +startSlot__Q32og6Screen20CallBack_CounterSlotFf = .text:0x8032AA78; // type:function size:0xC0 scope:global align:4 +setValue__Q32og6Screen20CallBack_CounterSlotFbb = .text:0x8032AB38; // type:function size:0x554 scope:global align:4 +setCallBack_CounterSlot__Q22og6ScreenFPQ29P2DScreen3MgrUxPUlUsbbP10JKRArchive = .text:0x8032B08C; // type:function size:0x1D0 scope:global align:4 +__dt__Q32og6Screen20CallBack_CounterSlotFv = .text:0x8032B25C; // type:function size:0x90 scope:weak align:4 +setValue__Q32og6Screen20CallBack_CounterSlotFv = .text:0x8032B2EC; // type:function size:0x34 scope:weak align:4 +__ct__Q32og9newScreen22ObjWorldMapInfoWindow0FPCc = .text:0x8032B320; // type:function size:0x84 scope:global align:4 +doCreate__Q32og9newScreen22ObjWorldMapInfoWindow0FP10JKRArchive = .text:0x8032B3A4; // type:function size:0x3C4 scope:global align:4 +doStart__Q32og9newScreen22ObjWorldMapInfoWindow0FPCQ26Screen13StartSceneArg = .text:0x8032B768; // type:function size:0x8C scope:global align:4 +doUpdateFadein__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B7F4; // type:function size:0x90 scope:global align:4 +commonUpdate__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B884; // type:function size:0x20 scope:global align:4 +out_cancel__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B8A4; // type:function size:0x38 scope:global align:4 +out_menu_0__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B8DC; // type:function size:0x38 scope:global align:4 +out_menu_1__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B914; // type:function size:0x38 scope:global align:4 +out_L__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B94C; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B958; // type:function size:0x88 scope:global align:4 +getResult__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B9E0; // type:function size:0xC scope:weak align:4 +__dt__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032B9EC; // type:function size:0x68 scope:weak align:4 +getSize__Q32og6Screen26DispMemberWorldMapInfoWin0Fv = .text:0x8032BA54; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen26DispMemberWorldMapInfoWin0Fv = .text:0x8032BA5C; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen26DispMemberWorldMapInfoWin0Fv = .text:0x8032BA68; // type:function size:0x14 scope:weak align:4 +@24@__dt__Q32og9newScreen22ObjWorldMapInfoWindow0Fv = .text:0x8032BA7C; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BA84; // type:function size:0x3C scope:global align:4 +doCreateObj__Q32og9newScreen19WorldMapInfoWindow0FP10JKRArchive = .text:0x8032BAC0; // type:function size:0xA4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen19WorldMapInfoWindow0FRQ26Screen11SetSceneArg = .text:0x8032BB64; // type:function size:0x8 scope:global align:4 +doGetFinishState__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BB6C; // type:function size:0x64 scope:global align:4 +getResName__Q32og9newScreen19WorldMapInfoWindow0CFv = .text:0x8032BBD0; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BBDC; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BBE4; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen19WorldMapInfoWindow0Fv = .text:0x8032BBF8; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneWorldMapInfoWindow0_cpp = .text:0x8032BC00; // type:function size:0x28 scope:local align:4 +__ct__Q32og9newScreen22ObjWorldMapInfoWindow1FPCc = .text:0x8032BC28; // type:function size:0x80 scope:global align:4 +doCreate__Q32og9newScreen22ObjWorldMapInfoWindow1FP10JKRArchive = .text:0x8032BCA8; // type:function size:0x300 scope:global align:4 +doStart__Q32og9newScreen22ObjWorldMapInfoWindow1FPCQ26Screen13StartSceneArg = .text:0x8032BFA8; // type:function size:0x5C scope:global align:4 +commonUpdate__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C004; // type:function size:0x20 scope:global align:4 +out_cancel__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C024; // type:function size:0x38 scope:global align:4 +out_menu_0__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C05C; // type:function size:0x38 scope:global align:4 +out_menu_1__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C094; // type:function size:0x38 scope:global align:4 +out_L__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C0CC; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C0D8; // type:function size:0x6C scope:global align:4 +getResult__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C144; // type:function size:0xC scope:weak align:4 +__dt__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C150; // type:function size:0x68 scope:weak align:4 +getSize__Q32og6Screen26DispMemberWorldMapInfoWin1Fv = .text:0x8032C1B8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og6Screen26DispMemberWorldMapInfoWin1Fv = .text:0x8032C1C0; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og6Screen26DispMemberWorldMapInfoWin1Fv = .text:0x8032C1CC; // type:function size:0x14 scope:weak align:4 +@24@__dt__Q32og9newScreen22ObjWorldMapInfoWindow1Fv = .text:0x8032C1E0; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C1E8; // type:function size:0x3C scope:global align:4 +doCreateObj__Q32og9newScreen19WorldMapInfoWindow1FP10JKRArchive = .text:0x8032C224; // type:function size:0xA4 scope:global align:4 +doConfirmSetScene__Q32og9newScreen19WorldMapInfoWindow1FRQ26Screen11SetSceneArg = .text:0x8032C2C8; // type:function size:0x8 scope:global align:4 +doGetFinishState__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C2D0; // type:function size:0x64 scope:global align:4 +getResName__Q32og9newScreen19WorldMapInfoWindow1CFv = .text:0x8032C334; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C340; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C348; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen19WorldMapInfoWindow1Fv = .text:0x8032C35C; // type:function size:0x8 scope:weak align:4 +__sinit_ogSceneWorldMapInfoWindow1_cpp = .text:0x8032C364; // type:function size:0x28 scope:local align:4 +__ct__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C38C; // type:function size:0xA0 scope:global align:4 +showTotalPoko__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C42C; // type:function size:0x70 scope:global align:4 +setTotalPoko__Q32og6Screen15TotalPokoScreenFUl = .text:0x8032C49C; // type:function size:0x70 scope:global align:4 +closeTotalPoko__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C50C; // type:function size:0x44 scope:global align:4 +hideTotalPoko__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C550; // type:function size:0x10 scope:global align:4 +setCallBack__Q32og6Screen15TotalPokoScreenFP10JKRArchiveffff = .text:0x8032C560; // type:function size:0x138 scope:global align:4 +update__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C698; // type:function size:0x144 scope:global align:4 +__dt__Q32og6Screen15TotalPokoScreenFv = .text:0x8032C7DC; // type:function size:0xA4 scope:weak align:4 +__ct__Q32og9newScreen16ObjChallengeBaseFv = .text:0x8032C880; // type:function size:0x98 scope:global align:4 +__dt__Q32og9newScreen16ObjChallengeBaseFv = .text:0x8032C918; // type:function size:0xAC scope:global align:4 +doCreateAfter__Q32og9newScreen16ObjChallengeBaseFP10JKRArchivePQ32og6Screen18CallBack_CounterRV = .text:0x8032C9C4; // type:function size:0xA0 scope:global align:4 +doStart__Q32og9newScreen16ObjChallengeBaseFPCQ26Screen13StartSceneArg = .text:0x8032CA64; // type:function size:0x14 scope:global align:4 +doEnd__Q32og9newScreen16ObjChallengeBaseFPCQ26Screen11EndSceneArg = .text:0x8032CA78; // type:function size:0x10 scope:global align:4 +updateTimer__Q32og9newScreen16ObjChallengeBaseFff = .text:0x8032CA88; // type:function size:0x1D0 scope:global align:4 +setSubLevel__Q32og9newScreen16ObjChallengeBaseFUl = .text:0x8032CC58; // type:function size:0x8 scope:global align:4 +doUpdateFadein__Q26Screen7ObjBaseFv = .text:0x8032CC60; // type:function size:0x8 scope:weak align:4 +doUpdateFadeinFinish__Q26Screen7ObjBaseFv = .text:0x8032CC68; // type:function size:0x4 scope:weak align:4 +doUpdate__Q26Screen7ObjBaseFv = .text:0x8032CC6C; // type:function size:0x8 scope:weak align:4 +doUpdateFinish__Q26Screen7ObjBaseFv = .text:0x8032CC74; // type:function size:0x4 scope:weak align:4 +doUpdateFadeoutFinish__Q26Screen7ObjBaseFv = .text:0x8032CC78; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjChallengeBase_cpp = .text:0x8032CC7C; // type:function size:0x8C scope:local align:4 +@24@__dt__Q32og9newScreen16ObjChallengeBaseFv = .text:0x8032CD08; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen13ChallengeBaseFv = .text:0x8032CD10; // type:function size:0x44 scope:global align:4 +updateCountDown__Q32og9newScreen13ChallengeBaseFfPQ32og6Screen21DispMemberDayEndCount = .text:0x8032CD54; // type:function size:0xA4 scope:global align:4 +update__Q32og6Screen16CallBack_PictureFv = .text:0x8032CDF8; // type:function size:0x60 scope:global align:4 +draw__Q32og6Screen16CallBack_PictureFR8GraphicsR14J2DGrafContext = .text:0x8032CE58; // type:function size:0x2BC scope:global align:4 +setCallBack_3DStick__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x8032D114; // type:function size:0x11C scope:global align:4 +setCallBack_3DStickSmall__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx = .text:0x8032D230; // type:function size:0x11C scope:global align:4 +__ct__Q32og6Screen12StickAnimMgrFPQ32og6Screen16CallBack_Picture = .text:0x8032D34C; // type:function size:0x10 scope:global align:4 +stickUp__Q32og6Screen12StickAnimMgrFv = .text:0x8032D35C; // type:function size:0xD4 scope:global align:4 +stickDown__Q32og6Screen12StickAnimMgrFv = .text:0x8032D430; // type:function size:0xE8 scope:global align:4 +stickUpDown__Q32og6Screen12StickAnimMgrFv = .text:0x8032D518; // type:function size:0xBC scope:global align:4 +__dt__Q32og6Screen16CallBack_PictureFv = .text:0x8032D5D4; // type:function size:0x90 scope:weak align:4 +update__Q32og6Screen18CallBack_DrawAfterFv = .text:0x8032D664; // type:function size:0x4 scope:global align:4 +draw__Q32og6Screen18CallBack_DrawAfterFR8GraphicsR14J2DGrafContext = .text:0x8032D668; // type:function size:0xFC scope:global align:4 +setCallBack_DrawAfter__Q22og6ScreenFPQ29P2DScreen3MgrUx = .text:0x8032D764; // type:function size:0xE4 scope:global align:4 +__dt__Q32og6Screen18CallBack_DrawAfterFv = .text:0x8032D848; // type:function size:0x80 scope:weak align:4 +__ct__Q32og6Screen13OtakaraSensorFv = .text:0x8032D8C8; // type:function size:0x140 scope:global align:4 +init__Q32og6Screen13OtakaraSensorFP7J2DPaneP7J2DPanei = .text:0x8032DA08; // type:function size:0xA8 scope:global align:4 +setParam__Q32og6Screen13OtakaraSensorFfibb = .text:0x8032DAB0; // type:function size:0x150 scope:global align:4 +calcLevel__Q32og6Screen13OtakaraSensorFf = .text:0x8032DC00; // type:function size:0x5C scope:global align:4 +show__Q32og6Screen13OtakaraSensorFv = .text:0x8032DC5C; // type:function size:0x10 scope:global align:4 +hide__Q32og6Screen13OtakaraSensorFv = .text:0x8032DC6C; // type:function size:0x10 scope:global align:4 +startSensorEff__Q32og6Screen13OtakaraSensorFv = .text:0x8032DC7C; // type:function size:0x14 scope:global align:4 +adjPos__Q32og6Screen13OtakaraSensorFff = .text:0x8032DC90; // type:function size:0xD8 scope:global align:4 +adjScale__Q32og6Screen13OtakaraSensorFf = .text:0x8032DD68; // type:function size:0x8 scope:global align:4 +update__Q32og6Screen13OtakaraSensorFv = .text:0x8032DD70; // type:function size:0x88 scope:global align:4 +updateInit__Q32og6Screen13OtakaraSensorFv = .text:0x8032DDF8; // type:function size:0x160 scope:global align:4 +calcGrayColor__Q32og6Screen13OtakaraSensorFv = .text:0x8032DF58; // type:function size:0x370 scope:global align:4 +calcAppear__Q32og6Screen13OtakaraSensorFv = .text:0x8032E2C8; // type:function size:0x1FC scope:global align:4 +startGraySensor__Q32og6Screen13OtakaraSensorFv = .text:0x8032E4C4; // type:function size:0x138 scope:global align:4 +calcAngle__Q32og6Screen13OtakaraSensorFv = .text:0x8032E5FC; // type:function size:0x22C scope:global align:4 +calcReaction__Q32og6Screen13OtakaraSensorFv = .text:0x8032E828; // type:function size:0x204 scope:global align:4 +draw__Q32og6Screen13OtakaraSensorFR14J2DGrafContext = .text:0x8032EA2C; // type:function size:0x4 scope:global align:4 +kill__Q25efx2d8TSimple3Fv = .text:0x8032EA30; // type:function size:0x4 scope:weak align:4 +fade__Q25efx2d8TSimple3Fv = .text:0x8032EA34; // type:function size:0x4 scope:weak align:4 +__dt__Q25P2JME8AnalyzerFv = .text:0x8032EA38; // type:function size:0x70 scope:weak align:4 +do_character__Q32og9newScreen20TitleMessageAnalyzerFi = .text:0x8032EAA8; // type:function size:0x228 scope:global align:4 +__ct__Q32og9newScreen8TitleMsgFP9J2DScreenP7J2DPanePc = .text:0x8032ECD0; // type:function size:0x28C scope:global align:4 +__dt__Q32og9newScreen20TitleMessageAnalyzerFv = .text:0x8032EF5C; // type:function size:0x80 scope:weak align:4 +setFontPane__Q32og9newScreen8TitleMsgFP12J2DPictureExi = .text:0x8032EFDC; // type:function size:0x154 scope:global align:4 +setCentering__Q32og9newScreen8TitleMsgFQ42og9newScreen8TitleMsg13EnumCentering = .text:0x8032F130; // type:function size:0x1B8 scope:global align:4 +setColor__Q32og9newScreen8TitleMsgFRQ28JUtility6TColorRQ28JUtility6TColor = .text:0x8032F2E8; // type:function size:0xD0 scope:global align:4 +__ct__Q32og9newScreen12TitleMsgDropFP9J2DScreenP7J2DPanePc = .text:0x8032F3B8; // type:function size:0xF0 scope:global align:4 +__dt__Q42og9newScreen12TitleMsgDrop6MotionFv = .text:0x8032F4A8; // type:function size:0x3C scope:weak align:4 +__ct__Q42og9newScreen12TitleMsgDrop6MotionFv = .text:0x8032F4E4; // type:function size:0x1C scope:weak align:4 +init__Q32og9newScreen12TitleMsgDropFv = .text:0x8032F500; // type:function size:0x128 scope:global align:4 +update__Q32og9newScreen12TitleMsgDropFv = .text:0x8032F628; // type:function size:0x230 scope:global align:4 +end__Q32og9newScreen12TitleMsgDropFv = .text:0x8032F858; // type:function size:0x6C scope:global align:4 +__ct__Q32og9newScreen12TitleMsgWaveFP9J2DScreenP7J2DPanePc = .text:0x8032F8C4; // type:function size:0x18C scope:global align:4 +init__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FA50; // type:function size:0x4 scope:global align:4 +start__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FA54; // type:function size:0xB0 scope:global align:4 +update__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FB04; // type:function size:0x2E0 scope:global align:4 +end__Q32og9newScreen12TitleMsgWaveFv = .text:0x8032FDE4; // type:function size:0x6C scope:global align:4 +setParam__Q32og9newScreen12TitleMsgWaveFffff = .text:0x8032FE50; // type:function size:0x14 scope:global align:4 +__ct__Q32og9newScreen13TitleMsgClashFP9J2DScreenP7J2DPanePc = .text:0x8032FE64; // type:function size:0xF8 scope:global align:4 +init__Q32og9newScreen13TitleMsgClashFv = .text:0x8032FF5C; // type:function size:0x14 scope:global align:4 +update__Q32og9newScreen13TitleMsgClashFv = .text:0x8032FF70; // type:function size:0x214 scope:global align:4 +end__Q32og9newScreen13TitleMsgClashFv = .text:0x80330184; // type:function size:0x6C scope:global align:4 +start__Q32og9newScreen8TitleMsgFv = .text:0x803301F0; // type:function size:0x4 scope:weak align:4 +__dt__Q25efx2d13T2DCvnameChalFv = .text:0x803301F4; // type:function size:0x84 scope:weak align:4 +tagColor__Q25P2JME8AnalyzerFPCvUl = .text:0x80330278; // type:function size:0x8 scope:weak align:4 +tagSize__Q25P2JME8AnalyzerFPCvUl = .text:0x80330280; // type:function size:0x8 scope:weak align:4 +tagRuby__Q25P2JME8AnalyzerFPCvUl = .text:0x80330288; // type:function size:0x8 scope:weak align:4 +tagFont__Q25P2JME8AnalyzerFPCvUl = .text:0x80330290; // type:function size:0x8 scope:weak align:4 +tagImage__Q25P2JME8AnalyzerFUsPCvUl = .text:0x80330298; // type:function size:0x8 scope:weak align:4 +tagColorEX__Q25P2JME8AnalyzerFUsPCvUl = .text:0x803302A0; // type:function size:0x8 scope:weak align:4 +tagControl__Q25P2JME8AnalyzerFUsPCvUl = .text:0x803302A8; // type:function size:0x8 scope:weak align:4 +tagPosition__Q25P2JME8AnalyzerFUsPCvUl = .text:0x803302B0; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d13T2DCvnameChalFv = .text:0x803302B8; // type:function size:0x8 scope:weak align:4 +__ct__Q32og6Screen8AngleMgrFv = .text:0x803302C0; // type:function size:0x2C scope:global align:4 +init__Q32og6Screen8AngleMgrFfff = .text:0x803302EC; // type:function size:0x10 scope:global align:4 +chase__Q32og6Screen8AngleMgrFff = .text:0x803302FC; // type:function size:0x80 scope:global align:4 +calc__Q32og6Screen8AngleMgrFv = .text:0x8033037C; // type:function size:0x1A8 scope:global align:4 +__ct__Q32og9newScreen9SMenuContFv = .text:0x80330524; // type:function size:0x50 scope:global align:4 +doConfirmSetScene__Q32og9newScreen9SMenuContFRQ26Screen11SetSceneArg = .text:0x80330574; // type:function size:0x68 scope:global align:4 +doSetBackupScene__Q32og9newScreen9SMenuContFRQ26Screen11SetSceneArg = .text:0x803305DC; // type:function size:0xC scope:global align:4 +doUserCallBackFunc__Q32og9newScreen9SMenuContFPQ28Resource10MgrCommand = .text:0x803305E8; // type:function size:0x4 scope:global align:4 +doCreateObj__Q32og9newScreen9SMenuContFP10JKRArchive = .text:0x803305EC; // type:function size:0x60 scope:global align:4 +doUpdateActive__Q32og9newScreen9SMenuContFv = .text:0x8033064C; // type:function size:0x4 scope:global align:4 +getResName__Q32og9newScreen9SMenuContCFv = .text:0x80330650; // type:function size:0xC scope:weak align:4 +getSceneType__Q32og9newScreen9SMenuContFv = .text:0x8033065C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32og9newScreen9SMenuContFv = .text:0x80330664; // type:function size:0xC scope:weak align:4 +getMemberID__Q32og9newScreen9SMenuContFv = .text:0x80330670; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q32og9newScreen9SMenuContFv = .text:0x80330684; // type:function size:0x8 scope:weak align:4 +__ct__Q32og9newScreen12ObjSMenuContFPCc = .text:0x8033068C; // type:function size:0x64 scope:global align:4 +__dt__Q32og9newScreen12ObjSMenuContFv = .text:0x803306F0; // type:function size:0xC4 scope:global align:4 +doCreate__Q32og9newScreen12ObjSMenuContFP10JKRArchive = .text:0x803307B4; // type:function size:0x14C scope:global align:4 +doUpdateLAction__Q32og9newScreen12ObjSMenuContFv = .text:0x80330900; // type:function size:0xCC scope:global align:4 +doUpdateRAction__Q32og9newScreen12ObjSMenuContFv = .text:0x803309CC; // type:function size:0x6C scope:global align:4 +commonUpdate__Q32og9newScreen12ObjSMenuContFv = .text:0x80330A38; // type:function size:0x80 scope:global align:4 +doUpdate__Q32og9newScreen12ObjSMenuContFv = .text:0x80330AB8; // type:function size:0x54 scope:global align:4 +doDraw__Q32og9newScreen12ObjSMenuContFR8Graphics = .text:0x80330B0C; // type:function size:0x84 scope:global align:4 +in_L__Q32og9newScreen12ObjSMenuContFv = .text:0x80330B90; // type:function size:0x14 scope:global align:4 +in_R__Q32og9newScreen12ObjSMenuContFv = .text:0x80330BA4; // type:function size:0x14 scope:global align:4 +wait__Q32og9newScreen12ObjSMenuContFv = .text:0x80330BB8; // type:function size:0xC scope:global align:4 +out_L__Q32og9newScreen12ObjSMenuContFv = .text:0x80330BC4; // type:function size:0x2C scope:global align:4 +out_R__Q32og9newScreen12ObjSMenuContFv = .text:0x80330BF0; // type:function size:0x2C scope:global align:4 +doStart__Q32og9newScreen12ObjSMenuContFPCQ26Screen13StartSceneArg = .text:0x80330C1C; // type:function size:0xA4 scope:global align:4 +doEnd__Q32og9newScreen12ObjSMenuContFPCQ26Screen11EndSceneArg = .text:0x80330CC0; // type:function size:0x8 scope:global align:4 +doUpdateFinish__Q32og9newScreen12ObjSMenuContFv = .text:0x80330CC8; // type:function size:0x20 scope:global align:4 +doUpdateFadeout__Q32og9newScreen12ObjSMenuContFv = .text:0x80330CE8; // type:function size:0x4C scope:global align:4 +doUpdateCancelAction__Q32og9newScreen12ObjSMenuContFv = .text:0x80330D34; // type:function size:0x4 scope:weak align:4 +__sinit_ogObjSMenuCont_cpp = .text:0x80330D38; // type:function size:0x14 scope:local align:4 +@24@__dt__Q32og9newScreen12ObjSMenuContFv = .text:0x80330D4C; // type:function size:0x8 scope:weak align:4 +__ct__Q28PSSystem11SeqDataListFv = .text:0x80330D54; // type:function size:0x60 scope:global align:4 +__dt__Q28PSSystem11SeqDataListFv = .text:0x80330DB4; // type:function size:0x88 scope:global align:4 +getSeqVolume__Q28PSSystem11SeqDataListFPCc = .text:0x80330E3C; // type:function size:0x108 scope:global align:4 +__ct__Q28PSSystem14StreamDataListFv = .text:0x80330F44; // type:function size:0x60 scope:global align:4 +__dt__Q28PSSystem14StreamDataListFv = .text:0x80330FA4; // type:function size:0x88 scope:global align:4 +getStreamVolume__Q28PSSystem14StreamDataListFUl = .text:0x8033102C; // type:function size:0x110 scope:global align:4 +stop__Q28PSSystem12SeqSoundBaseFUl = .text:0x8033113C; // type:function size:0x94 scope:global align:4 +stopInner__Q28PSSystem8SeqSoundFUl = .text:0x803311D0; // type:function size:0x20 scope:global align:4 +stopInner__Q28PSSystem11StreamSoundFUl = .text:0x803311F0; // type:function size:0x20 scope:global align:4 +__dt__Q28PSSystem7SeqHeapFv = .text:0x80331210; // type:function size:0x60 scope:global align:4 +requestCallback__Q28PSSystem7SeqHeapFUlUsP11JAISequence = .text:0x80331270; // type:function size:0x200 scope:global align:4 +loadSeqAsync__Q28PSSystem7SeqHeapFPQ28PSSystem11TaskChecker = .text:0x80331470; // type:function size:0xD4 scope:global align:4 +loadedCallback__Q28PSSystem7SeqHeapFUlUl = .text:0x80331544; // type:function size:0x98 scope:global align:4 +reservatorTask__Q28PSSystem17SeqPlayReservatorFv = .text:0x803315DC; // type:function size:0x30 scope:global align:4 +reservatorTask__Q28PSSystem21SeqPauseOffReservatorFv = .text:0x8033160C; // type:function size:0x30 scope:global align:4 +__ct__Q28PSSystem7SeqBaseFPCcRCQ27JAInter9SoundInfo = .text:0x8033163C; // type:function size:0x100 scope:global align:4 +init__Q28PSSystem7SeqBaseFv = .text:0x8033173C; // type:function size:0x134 scope:global align:4 +__dt__Q28PSSystem7SeqBaseFv = .text:0x80331870; // type:function size:0x98 scope:global align:4 +isPlaying__Q28PSSystem7SeqBaseFv = .text:0x80331908; // type:function size:0x3C scope:global align:4 +getFileEntry__Q28PSSystem7SeqBaseFv = .text:0x80331944; // type:function size:0x90 scope:global align:4 +pauseOn__Q28PSSystem7SeqBaseFQ38PSSystem7SeqBase9PauseMode = .text:0x803319D4; // type:function size:0x1D4 scope:global align:4 +pauseOff__Q28PSSystem7SeqBaseFv = .text:0x80331BA8; // type:function size:0x13C scope:global align:4 +exec__Q28PSSystem7SeqBaseFv = .text:0x80331CE4; // type:function size:0xD4 scope:global align:4 +onPlayingFrame__Q28PSSystem7SeqBaseFv = .text:0x80331DB8; // type:function size:0x4 scope:global align:4 +startSeq__Q28PSSystem7SeqBaseFv = .text:0x80331DBC; // type:function size:0x154 scope:global align:4 +setConfigVolume__Q28PSSystem7SeqBaseFv = .text:0x80331F10; // type:function size:0xD0 scope:global align:4 +scene1st__Q28PSSystem7SeqBaseFPQ28PSSystem11TaskChecker = .text:0x80331FE0; // type:function size:0x38 scope:global align:4 +stopSeq__Q28PSSystem7SeqBaseFUl = .text:0x80332018; // type:function size:0x60 scope:global align:4 +__ct__Q28PSSystem6BgmSeqFPCcRCQ27JAInter9SoundInfo = .text:0x80332078; // type:function size:0x114 scope:global align:4 +__dt__Q28PSSystem6BgmSeqFv = .text:0x8033218C; // type:function size:0xC0 scope:global align:4 +__ct__Q28PSSystem9StreamBgmFUlRCQ27JAInter9SoundInfo = .text:0x8033224C; // type:function size:0x100 scope:global align:4 +init__Q28PSSystem9StreamBgmFv = .text:0x8033234C; // type:function size:0x4 scope:global align:4 +__dt__Q28PSSystem9StreamBgmFv = .text:0x80332350; // type:function size:0xEC scope:global align:4 +setId__Q28PSSystem9StreamBgmFUl = .text:0x8033243C; // type:function size:0x8 scope:global align:4 +startSeq__Q28PSSystem9StreamBgmFv = .text:0x80332444; // type:function size:0x15C scope:global align:4 +setConfigVolume__Q28PSSystem9StreamBgmFv = .text:0x803325A0; // type:function size:0xD0 scope:global align:4 +isPlaying__Q28PSSystem9StreamBgmFv = .text:0x80332670; // type:function size:0x14 scope:global align:4 +__dt__Q28PSSystem5SeSeqFv = .text:0x80332684; // type:function size:0xC0 scope:global align:4 +seqLoadAfter__Q28PSSystem5SeSeqFv = .text:0x80332744; // type:function size:0x2C scope:global align:4 +setConfigVolume__Q28PSSystem5SeSeqFv = .text:0x80332770; // type:function size:0xD0 scope:global align:4 +stopSeq__Q28PSSystem5SeSeqFUl = .text:0x80332840; // type:function size:0xA4 scope:global align:4 +__ct__Q28PSSystem11DirectedBgmFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x803328E4; // type:function size:0x138 scope:global align:4 +initRootTrack_onPlaying__Q28PSSystem11DirectedBgmFP8JASTrack = .text:0x80332A1C; // type:function size:0xC0 scope:global align:4 +initChildTrack_onPlaying__Q28PSSystem11DirectedBgmFP8JASTrackUc = .text:0x80332ADC; // type:function size:0xD4 scope:global align:4 +getDirectorP__Q28PSSystem11DirectedBgmFUc = .text:0x80332BB0; // type:function size:0x98 scope:global align:4 +newSeqTrackRoot__Q28PSSystem11DirectedBgmFv = .text:0x80332C48; // type:function size:0x64 scope:global align:4 +newSeqTrackChild__Q28PSSystem11DirectedBgmFUcRQ28PSSystem12SeqTrackRoot = .text:0x80332CAC; // type:function size:0x74 scope:global align:4 +init__Q28PSSystem11DirectedBgmFv = .text:0x80332D20; // type:function size:0x1F0 scope:global align:4 +startSeq__Q28PSSystem11DirectedBgmFv = .text:0x80332F10; // type:function size:0x154 scope:global align:4 +stopSeq__Q28PSSystem11DirectedBgmFUl = .text:0x80333064; // type:function size:0xF0 scope:global align:4 +onPlayingFrame__Q28PSSystem11DirectedBgmFv = .text:0x80333154; // type:function size:0x2C scope:global align:4 +onBeatTop__Q28PSSystem20SeqTrackRoot_JumpBgmFv = .text:0x80333180; // type:function size:0x2C scope:global align:4 +onBeatTop__Q28PSSystem11JumpBgmPortFRQ28PSSystem7BeatMgr = .text:0x803331AC; // type:function size:0xB8 scope:global align:4 +__ct__Q28PSSystem10JumpBgmSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x80333264; // type:function size:0x190 scope:global align:4 +newSeqTrackRoot__Q28PSSystem10JumpBgmSeqFv = .text:0x803333F4; // type:function size:0x80 scope:global align:4 +startSeq__Q28PSSystem10JumpBgmSeqFv = .text:0x80333474; // type:function size:0x170 scope:global align:4 +startSeq__Q28PSSystem10JumpBgmSeqFUs = .text:0x803335E4; // type:function size:0x178 scope:global align:4 +requestJumpBgmQuickly__Q28PSSystem10JumpBgmSeqFUs = .text:0x8033375C; // type:function size:0x60 scope:global align:4 +requestJumpBgmOnBeat__Q28PSSystem10JumpBgmSeqFUs = .text:0x803337BC; // type:function size:0x60 scope:global align:4 +requestJumpBgmEveryBeat__Q28PSSystem10JumpBgmSeqFUs = .text:0x8033381C; // type:function size:0x54 scope:global align:4 +onPlayingFrame__Q28PSSystem10JumpBgmSeqFv = .text:0x80333870; // type:function size:0x4C scope:global align:4 +outputJumpRequest__Q28PSSystem10JumpBgmSeqFv = .text:0x803338BC; // type:function size:0xC8 scope:global align:4 +getSeqStartPoint__Q28PSSystem10JumpBgmSeqFv = .text:0x80333984; // type:function size:0x40 scope:global align:4 +setAvoidJumpTimer_Checked__Q28PSSystem10JumpBgmSeqFUl = .text:0x803339C4; // type:function size:0x14 scope:global align:4 +isPlaying__Q28PSSystem6SeqMgrFv = .text:0x803339D8; // type:function size:0x60 scope:global align:4 +__dt__Q28PSSystem6SeqMgrFv = .text:0x80333A38; // type:function size:0xC8 scope:global align:4 +pauseOnAllSeq__Q28PSSystem6SeqMgrFQ38PSSystem7SeqBase9PauseMode = .text:0x80333B00; // type:function size:0x5C scope:global align:4 +pauseOffAllSeq__Q28PSSystem6SeqMgrFv = .text:0x80333B5C; // type:function size:0x4C scope:global align:4 +reservePauseOffAllSeq__Q28PSSystem6SeqMgrFv = .text:0x80333BA8; // type:function size:0x24 scope:global align:4 +cancelPauseOffAllSeq__Q28PSSystem6SeqMgrFv = .text:0x80333BCC; // type:function size:0x24 scope:global align:4 +exec__Q28PSSystem6SeqMgrFv = .text:0x80333BF0; // type:function size:0x80 scope:global align:4 +stopAllSound__Q28PSSystem6SeqMgrFUl = .text:0x80333C70; // type:function size:0x5C scope:global align:4 +scene1st__Q28PSSystem6SeqMgrFPQ28PSSystem11TaskChecker = .text:0x80333CCC; // type:function size:0x5C scope:global align:4 +findSeq__Q28PSSystem6SeqMgrFP8JASTrack = .text:0x80333D28; // type:function size:0xE8 scope:global align:4 +getPlayingSeq__Q28PSSystem6SeqMgrFP8JASTrack = .text:0x80333E10; // type:function size:0x80 scope:global align:4 +getFirstSeq__Q28PSSystem6SeqMgrFv = .text:0x80333E90; // type:function size:0x1C scope:global align:4 +getFirstSeqA__Q28PSSystem6SeqMgrFv = .text:0x80333EAC; // type:function size:0x24 scope:global align:4 +getSeq__Q28PSSystem6SeqMgrFUl = .text:0x80333ED0; // type:function size:0x34 scope:global align:4 +__dt__Q28PSSystem10JumpBgmSeqFv = .text:0x80333F04; // type:function size:0xE0 scope:weak align:4 +__dt__Q28PSSystem39SingletonBaseFv = .text:0x80333FE4; // type:function size:0x50 scope:weak align:4 +__dt__Q28PSSystem42SingletonBaseFv = .text:0x80334034; // type:function size:0x50 scope:weak align:4 +@28@__dt__Q28PSSystem11SeqDataListFv = .text:0x80334084; // type:function size:0x8 scope:weak align:4 +@28@__dt__Q28PSSystem14StreamDataListFv = .text:0x8033408C; // type:function size:0x8 scope:weak align:4 +@1696@stopInner__Q28PSSystem8SeqSoundFUl = .text:0x80334094; // type:function size:0x8 scope:weak align:4 +@472@stopInner__Q28PSSystem11StreamSoundFUl = .text:0x8033409C; // type:function size:0x8 scope:weak align:4 +seqLoadAfter__Q28PSSystem7SeqBaseFv = .text:0x803340A4; // type:function size:0x4 scope:weak align:4 +getHandleP__Q28PSSystem6BgmSeqFv = .text:0x803340A8; // type:function size:0x8 scope:weak align:4 +__dt__Q28PSSystem11DirectedBgmFv = .text:0x803340B0; // type:function size:0xD0 scope:weak align:4 +onJump__Q28PSSystem10JumpBgmSeqFUs = .text:0x80334180; // type:function size:0x4 scope:weak align:4 +getCastType__Q28PSSystem10JumpBgmSeqFv = .text:0x80334184; // type:function size:0x8 scope:weak align:4 +getSeqType__Q28PSSystem6BgmSeqFv = .text:0x8033418C; // type:function size:0x8 scope:weak align:4 +getCastType__Q28PSSystem11DirectedBgmFv = .text:0x80334194; // type:function size:0x8 scope:weak align:4 +getSeqType__Q28PSSystem5SeSeqFv = .text:0x8033419C; // type:function size:0xC scope:weak align:4 +getCastType__Q28PSSystem5SeSeqFv = .text:0x803341A8; // type:function size:0x8 scope:weak align:4 +getHandleP__Q28PSSystem5SeSeqFv = .text:0x803341B0; // type:function size:0x8 scope:weak align:4 +getHandleP__Q28PSSystem9StreamBgmFv = .text:0x803341B8; // type:function size:0x8 scope:weak align:4 +scene1st__Q28PSSystem9StreamBgmFPQ28PSSystem11TaskChecker = .text:0x803341C0; // type:function size:0x4 scope:weak align:4 +getSeqType__Q28PSSystem9StreamBgmFv = .text:0x803341C4; // type:function size:0x8 scope:weak align:4 +getCastType__Q28PSSystem9StreamBgmFv = .text:0x803341CC; // type:function size:0x8 scope:weak align:4 +getCastType__Q28PSSystem6BgmSeqFv = .text:0x803341D4; // type:function size:0x8 scope:weak align:4 +read__Q28PSSystem14StreamDataListFR6Stream = .text:0x803341DC; // type:function size:0x8 scope:weak align:4 +read__Q28PSSystem11SeqDataListFR6Stream = .text:0x803341E4; // type:function size:0x8 scope:weak align:4 +getTgtWithTable__Q28PSSystem20TriangleTableModTaskFUc = .text:0x803341EC; // type:function size:0x1C scope:weak align:4 +getTableIdxNum__Q28PSSystem20TriangleTableModTaskFv = .text:0x80334208; // type:function size:0x8 scope:weak align:4 +task__Q28PSSystem14PitchResetTaskFR8JASTrack = .text:0x80334210; // type:function size:0x34 scope:weak align:4 +task__Q28PSSystem12FlagWaitTaskFR8JASTrack = .text:0x80334244; // type:function size:0x8 scope:weak align:4 +timeTask__Q28PSSystem12BankRandTaskFR8JASTrackf = .text:0x8033424C; // type:function size:0xC scope:weak align:4 +getPreParam__Q28PSSystem12BankRandTaskFR8JASTrack = .text:0x80334258; // type:function size:0xC scope:weak align:4 +update__Q28PSSystem12SeqTrackRootFv = .text:0x80334264; // type:function size:0x38 scope:weak align:4 +getCaveNoFromID__Q26PSGame13CaveFloorInfoFv = .text:0x8033429C; // type:function size:0x28 scope:global align:4 +__dt__Q26PSGame13ConductorListFv = .text:0x803342C4; // type:function size:0xD4 scope:global align:4 +read__Q26PSGame13ConductorListFR6Stream = .text:0x80334398; // type:function size:0x1AC scope:global align:4 +__ct__Q36PSGame13ConductorList8CaveInfoFv = .text:0x80334544; // type:function size:0x14 scope:weak align:4 +getSeqAndWaveFromConductor__Q26PSGame13ConductorListFPCcPUcPPc = .text:0x80334558; // type:function size:0x3D4 scope:global align:4 +__ct__Q36PSGame10SoundTable11CategoryMgrFv = .text:0x8033492C; // type:function size:0xE0 scope:global align:4 +initiate__Q36PSGame10SoundTable11CategoryMgrFUc = .text:0x80334A0C; // type:function size:0x174 scope:global align:4 +set__Q36PSGame10SoundTable11SePerspInfoFfffff = .text:0x80334B80; // type:function size:0x18 scope:global align:4 +getDistVol__Q36PSGame10SoundTable11SePerspInfoFfUc = .text:0x80334B98; // type:function size:0x164 scope:global align:4 +__ct__Q26PSGame9CameraMgrFv = .text:0x80334CFC; // type:function size:0xA8 scope:global align:4 +__dt__Q26PSGame9CameraMgrFv = .text:0x80334DA4; // type:function size:0x60 scope:global align:4 +getBgmCamVol__Q26PSGame9CameraMgrFUc = .text:0x80334E04; // type:function size:0x24 scope:global align:4 +update__Q26PSGame9CameraMgrFUcf = .text:0x80334E28; // type:function size:0x4C scope:global align:4 +getCurrentCamDistVol__Q26PSGame9CameraMgrFUc = .text:0x80334E74; // type:function size:0x10 scope:global align:4 +getVol_DistBetweenCamAndLookat__Q26PSGame9CameraMgrFf = .text:0x80334E84; // type:function size:0x88 scope:global align:4 +__ct__Q26PSGame10SysFactoryFv = .text:0x80334F0C; // type:function size:0x34 scope:global align:4 +newSoundSystem__Q26PSGame10SysFactoryFv = .text:0x80334F40; // type:function size:0x404 scope:global align:4 +preInitJAI__Q26PSGame10SysFactoryFv = .text:0x80335344; // type:function size:0x80 scope:global align:4 +postInitJAI__Q26PSGame10SysFactoryFv = .text:0x803353C4; // type:function size:0x120 scope:global align:4 +__ct__Q26PSGame9SceneInfoFv = .text:0x803354E4; // type:function size:0x38 scope:global align:4 +setStageFlag__Q26PSGame9SceneInfoFQ36PSGame9SceneInfo7FlagDefQ36PSGame9SceneInfo12FlagBitShift = .text:0x8033551C; // type:function size:0x78 scope:global align:4 +getFlag__Q26PSGame9SceneInfoCFQ36PSGame9SceneInfo12FlagBitShift = .text:0x80335594; // type:function size:0x10 scope:global align:4 +setStageCamera__Q26PSGame9SceneInfoCFv = .text:0x803355A4; // type:function size:0x74 scope:global align:4 +__ct__Q26PSGame8PikSceneFUc = .text:0x80335618; // type:function size:0x3C scope:global align:4 +__dt__Q26PSGame8PikSceneFv = .text:0x80335654; // type:function size:0x60 scope:global align:4 +getMiddleBossBgm__Q26PSGame8PikSceneFv = .text:0x803356B4; // type:function size:0xA8 scope:global align:4 +newAndSetGlobalScene__Q26PSGame11PikSceneMgrFv = .text:0x8033575C; // type:function size:0x378 scope:global align:4 +newAndSetCurrentScene__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfo = .text:0x80335AD4; // type:function size:0x4AC scope:global align:4 +newBgmSeq__Q26PSGame11PikSceneMgrFPCcRQ27JAInter9SoundInfo = .text:0x80335F80; // type:function size:0x98 scope:global align:4 +newStreamBgm__Q26PSGame11PikSceneMgrFUlRQ27JAInter9SoundInfo = .text:0x80336018; // type:function size:0x88 scope:global align:4 +initBossBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPUc = .text:0x803360A0; // type:function size:0x150 scope:global align:4 +initAdditionalBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPQ28PSSystem5Scene = .text:0x803361F0; // type:function size:0x400 scope:global align:4 +initMainBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPUc = .text:0x803365F0; // type:function size:0xD24 scope:global align:4 +seqCpuSync__6PSGameFP8JASTrackUs = .text:0x80337314; // type:function size:0x94C scope:global align:4 +PSPlayerChangeToOrimer__Fv = .text:0x80337C60; // type:function size:0x7C scope:global align:4 +PSGetDirectedMainBgm__Fv = .text:0x80337CDC; // type:function size:0x124 scope:global align:4 +PSPlayerChangeToLugie__Fv = .text:0x80337E00; // type:function size:0x170 scope:global align:4 +PSGetDirectedMainBgmA__Fv = .text:0x80337F70; // type:function size:0x170 scope:global align:4 +__dt__Q28PSSystem39SingletonBaseFv = .text:0x803380E0; // type:function size:0x50 scope:weak align:4 +__dt__Q28PSSystem49SingletonBaseFv = .text:0x80338130; // type:function size:0x50 scope:weak align:4 +newInstance__Q28PSSystem49SingletonBaseFv = .text:0x80338180; // type:function size:0x98 scope:weak align:4 +@28@__dt__Q26PSGame13ConductorListFv = .text:0x80338218; // type:function size:0x8 scope:weak align:4 +isCaveFloor__Q26PSGame9SceneInfoFv = .text:0x80338220; // type:function size:0x8 scope:weak align:4 +curSceneIsBigBossFloor__Q26PSGame11PikSceneMgrFv = .text:0x80338228; // type:function size:0x8 scope:weak align:4 +exec__Q28PSSystem8SceneMgrFv = .text:0x80338230; // type:function size:0x38 scope:weak align:4 +init__Q28PSSystem5SceneFv = .text:0x80338268; // type:function size:0x4 scope:weak align:4 +__dt__Q29PSAutoBgm15ConductorArcMgrFv = .text:0x8033826C; // type:function size:0x50 scope:weak align:4 +__dt__Q36PSGame10SoundTable11CategoryMgrFv = .text:0x803382BC; // type:function size:0x64 scope:weak align:4 +__dt__Q28PSSystem24ArcMgrFv = .text:0x80338320; // type:function size:0x80 scope:weak align:4 +getObject__8PSSystemFP8JASTrackUc = .text:0x803383A0; // type:function size:0x50 scope:global align:4 +setObject__8PSSystemFP8JASTrackPvUc = .text:0x803383F0; // type:function size:0x60 scope:global align:4 +__ct__Q28PSSystem5SysIFFRCQ28PSSystem8SetupArg = .text:0x80338450; // type:function size:0x134 scope:global align:4 +stopSoundSystem__Q28PSSystem5SysIFFv = .text:0x80338584; // type:function size:0xE0 scope:global align:4 +playSystemSe__Q28PSSystem5SysIFFUlUl = .text:0x80338664; // type:function size:0x40 scope:global align:4 +playSystemSe__Q28PSSystem5SysIFFUlPP8JAISoundUl = .text:0x803386A4; // type:function size:0x2C scope:global align:4 +initIF__Q28PSSystem5SysIFFRCQ28PSSystem8SetupArg = .text:0x803386D0; // type:function size:0x78 scope:global align:4 +makeSe__Q28PSSystem5SysIFFv = .text:0x80338748; // type:function size:0x38 scope:global align:4 +mainLoop__Q28PSSystem5SysIFFv = .text:0x80338780; // type:function size:0xDC scope:global align:4 +setConfigVol_Se__Q28PSSystem5SysIFFf = .text:0x8033885C; // type:function size:0x8C scope:global align:4 +setConfigVol_Bgm__Q28PSSystem5SysIFFf = .text:0x803388E8; // type:function size:0xC8 scope:global align:4 +__ct__Q28PSSystem5FxMgrFv = .text:0x803389B0; // type:function size:0x4 scope:global align:4 +__ct__Q28PSSystem12TextDataBaseFv = .text:0x803389B4; // type:function size:0x44 scope:global align:4 +__dt__Q28PSSystem12TextDataBaseFv = .text:0x803389F8; // type:function size:0x70 scope:global align:4 +load__Q28PSSystem12TextDataBaseFPCcQ212JKRDvdRipper15EAllocDirection = .text:0x80338A68; // type:function size:0x7C scope:global align:4 +onlyLoad__Q28PSSystem12TextDataBaseFPCcQ212JKRDvdRipper15EAllocDirection = .text:0x80338AE4; // type:function size:0x68 scope:global align:4 +start1stSeq__Q28PSSystem5SysIFFv = .text:0x80338B4C; // type:function size:0xC scope:weak align:4 +makeSequence__Q28PSSystem5SysIFFv = .text:0x80338B58; // type:function size:0x70 scope:weak align:4 +__ct__Q28PSSystem8SeqSoundFv = .text:0x80338BC8; // type:function size:0x58 scope:weak align:4 +makeStream__Q28PSSystem5SysIFFv = .text:0x80338C20; // type:function size:0x70 scope:weak align:4 +__ct__Q28PSSystem11StreamSoundFv = .text:0x80338C90; // type:function size:0x58 scope:weak align:4 +startSoundActorReturnHandleT<5JAISe>__8JAIBasicFPP5JAISeUlPQ27JAInter5ActorUlUc = .text:0x80338CE8; // type:function size:0x70 scope:weak align:4 +startSoundActorT<5JAISe>__8JAIBasicFUlPP5JAISePQ27JAInter5ActorUlUc = .text:0x80338D58; // type:function size:0x68 scope:weak align:4 +__sinit_PSSystemIF_cpp = .text:0x80338DC0; // type:function size:0x28 scope:local align:4 +__dt__Q210JADUtility18PrmRadioButtonFv = .text:0x80338DE8; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility13PrmSliderFv = .text:0x80338E90; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility10PrmHioFv = .text:0x80338F38; // type:function size:0x98 scope:weak align:4 +__dt__Q210JADUtility7PrmFv = .text:0x80338FD0; // type:function size:0x88 scope:weak align:4 +__dt__Q29PSAutoBgm9ConductorFv = .text:0x80339058; // type:function size:0x290 scope:global align:4 +removeCallback__Q29PSAutoBgm9ConductorFUcPv = .text:0x803392E8; // type:function size:0x34 scope:global align:4 +seqCpuSync_AutoBgm__Q29PSAutoBgm9ConductorFP8JASTrackUsUlP8JASTrack = .text:0x8033931C; // type:function size:0x11C scope:global align:4 +createTables__Q29PSAutoBgm9ConductorFP8JASTrack = .text:0x80339438; // type:function size:0xF4 scope:global align:4 +__ct__Q29PSAutoBgm5TrackFv = .text:0x8033952C; // type:function size:0x2A4 scope:global align:4 +afterGetFromFree__Q29PSAutoBgm5TrackFv = .text:0x803397D0; // type:function size:0x3C scope:global align:4 +__dt__Q29PSAutoBgm5TrackFv = .text:0x8033980C; // type:function size:0x3DC scope:global align:4 +removeCallback__Q29PSAutoBgm5TrackFUcPv = .text:0x80339BE8; // type:function size:0x3C scope:global align:4 +seqCpuSync_AutoBgm_Track__Q29PSAutoBgm5TrackFP8JASTrackUsUlP8JASTrack = .text:0x80339C24; // type:function size:0x1B8 scope:global align:4 +incCurModule__Q29PSAutoBgm5TrackFv = .text:0x80339DDC; // type:function size:0x60 scope:global align:4 +afterGetFromFree__Q29PSAutoBgm6ModuleFv = .text:0x80339E3C; // type:function size:0x54 scope:global align:4 +__ct__Q29PSAutoBgm6ModuleFv = .text:0x80339E90; // type:function size:0x554 scope:global align:4 +__dt__Q29PSAutoBgm6ModuleFv = .text:0x8033A3E4; // type:function size:0x72C scope:global align:4 +removeCallback__Q29PSAutoBgm6ModuleFUcPv = .text:0x8033AB10; // type:function size:0x44 scope:global align:4 +seqCpuSync_AutoBgm_Module__Q29PSAutoBgm6ModuleFP8JASTrackUsUlP8JASTrack = .text:0x8033AB54; // type:function size:0x218 scope:global align:4 +setTableAddress__Q29PSAutoBgm6ModuleFP8JASTrack = .text:0x8033AD6C; // type:function size:0x1BC scope:global align:4 +cycleLoop__Q29PSAutoBgm6ModuleFP8JASTrack = .text:0x8033AF28; // type:function size:0x154 scope:global align:4 +cycleTop__Q29PSAutoBgm9CycleBaseFP8JASTrack = .text:0x8033B07C; // type:function size:0x10 scope:global align:4 +play__Q29PSAutoBgm9CycleBaseFP8JASTrack = .text:0x8033B08C; // type:function size:0x1BC scope:global align:4 +checkCloser__Q29PSAutoBgm9CycleBaseFP8JASTrack = .text:0x8033B248; // type:function size:0x78 scope:global align:4 +__ct__Q29PSAutoBgm7OnCycleFPQ29PSAutoBgm6Module = .text:0x8033B2C0; // type:function size:0x184 scope:global align:4 +__dt__Q29PSAutoBgm11PrmLinkFv = .text:0x8033B444; // type:function size:0x58 scope:weak align:4 +play__Q29PSAutoBgm7OnCycleFP8JASTrack = .text:0x8033B49C; // type:function size:0x360 scope:global align:4 +setTip__Q29PSAutoBgm7OnCycleFP8JASTrack = .text:0x8033B7FC; // type:function size:0x274 scope:global align:4 +historiesAreSameAll__Q29PSAutoBgm7OnCycleFv = .text:0x8033BA70; // type:function size:0x5C scope:global align:4 +avoidCheck__Q29PSAutoBgm7OnCycleFv = .text:0x8033BACC; // type:function size:0xBC scope:global align:4 +__ct__Q29PSAutoBgm8OffCycleFPQ29PSAutoBgm6Module = .text:0x8033BB88; // type:function size:0xB0 scope:global align:4 +__ct__Q29PSAutoBgm7AutoBgmFPCcPCcRCQ27JAInter9SoundInfoQ210JADUtility10AccessModePQ28PSSystem15DirectorMgrBase = .text:0x8033BC38; // type:function size:0x15C scope:global align:4 +__dt__Q29PSAutoBgm10MeloArrMgrFv = .text:0x8033BD94; // type:function size:0x78 scope:weak align:4 +__dt__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033BE0C; // type:function size:0x154 scope:weak align:4 +__dt__Q210JADUtility59PrmDataMgrNodeFv = .text:0x8033BF60; // type:function size:0x12C scope:weak align:4 +startSeq__Q29PSAutoBgm7AutoBgmFv = .text:0x8033C08C; // type:function size:0x150 scope:global align:4 +scene1st__Q29PSAutoBgm7AutoBgmFPQ28PSSystem11TaskChecker = .text:0x8033C1DC; // type:function size:0x44 scope:global align:4 +loadConductor__Q29PSAutoBgm7AutoBgmFPQ28PSSystem11TaskChecker = .text:0x8033C220; // type:function size:0x180 scope:global align:4 +loadedCallback__Q29PSAutoBgm7AutoBgmFUlUl = .text:0x8033C3A0; // type:function size:0x74 scope:global align:4 +pauseOn__Q29PSAutoBgm7AutoBgmFQ38PSSystem7SeqBase9PauseMode = .text:0x8033C414; // type:function size:0x168 scope:global align:4 +pauseOff__Q29PSAutoBgm7AutoBgmFv = .text:0x8033C57C; // type:function size:0x20 scope:global align:4 +__dt__Q210JADUtility28PrmSetRcFv = .text:0x8033C59C; // type:function size:0x190 scope:weak align:4 +__dt__Q210JADUtility10StrEditBoxFv = .text:0x8033C72C; // type:function size:0xC4 scope:weak align:4 +__dt__Q210JADUtility12PrmSliderFv = .text:0x8033C7F0; // type:function size:0xA8 scope:weak align:4 +__dt__Q210JADUtility9PrmHioFv = .text:0x8033C898; // type:function size:0x98 scope:weak align:4 +__dt__Q210JADUtility6PrmFv = .text:0x8033C930; // type:function size:0x88 scope:weak align:4 +__dt__Q210JADUtility29PrmSetRcFv = .text:0x8033C9B8; // type:function size:0x190 scope:weak align:4 +getChildNum__Q210JADUtility28PrmSetRcFv = .text:0x8033CB48; // type:function size:0x8 scope:weak align:4 +getPrmObjHeap__Q210JADUtility28PrmSetRcFv = .text:0x8033CB50; // type:function size:0x8 scope:weak align:4 +getChildNum__Q210JADUtility29PrmSetRcFv = .text:0x8033CB58; // type:function size:0x8 scope:weak align:4 +getPrmObjHeap__Q210JADUtility29PrmSetRcFv = .text:0x8033CB60; // type:function size:0x8 scope:weak align:4 +save__Q210JADUtility6PrmFR21JSUMemoryOutputStream = .text:0x8033CB68; // type:function size:0x90 scope:weak align:4 +load__Q210JADUtility6PrmFR20JSUMemoryInputStream = .text:0x8033CBF8; // type:function size:0x64 scope:weak align:4 +save__Q210JADUtility7PrmFR21JSUMemoryOutputStream = .text:0x8033CC5C; // type:function size:0x90 scope:weak align:4 +load__Q210JADUtility7PrmFR20JSUMemoryInputStream = .text:0x8033CCEC; // type:function size:0x64 scope:weak align:4 +getChild__Q210JADUtility29PrmSetRcFUc = .text:0x8033CD50; // type:function size:0x3C scope:weak align:4 +load__Q210JADUtility29PrmSetRcFR20JSUMemoryInputStream = .text:0x8033CD8C; // type:function size:0x114 scope:weak align:4 +__ct__Q210JADUtility29PrmSetRcFv = .text:0x8033CEA0; // type:function size:0x90 scope:weak align:4 +getChild__Q210JADUtility28PrmSetRcFUc = .text:0x8033CF30; // type:function size:0x3C scope:weak align:4 +load__Q210JADUtility28PrmSetRcFR20JSUMemoryInputStream = .text:0x8033CF6C; // type:function size:0x114 scope:weak align:4 +__ct__Q210JADUtility28PrmSetRcFv = .text:0x8033D080; // type:function size:0x90 scope:weak align:4 +avoidCheck__Q29PSAutoBgm9CycleBaseFv = .text:0x8033D110; // type:function size:0x8 scope:weak align:4 +getCycleType__Q29PSAutoBgm9CycleBaseFv = .text:0x8033D118; // type:function size:0x8 scope:weak align:4 +__ct__Q29PSAutoBgm11PrmLinkFv = .text:0x8033D120; // type:function size:0x34 scope:weak align:4 +__dt__Q29PSAutoBgm7AutoBgmFv = .text:0x8033D154; // type:function size:0x1C4 scope:weak align:4 +getCastType__Q29PSAutoBgm7AutoBgmFv = .text:0x8033D318; // type:function size:0x8 scope:weak align:4 +newSeqTrackRoot__Q29PSAutoBgm7AutoBgmFv = .text:0x8033D320; // type:function size:0x88 scope:weak align:4 +beatUpdate__Q29PSAutoBgm19AutoBgmSeqTrackRootFv = .text:0x8033D3A8; // type:function size:0xD0 scope:weak align:4 +getSaveTempHeap__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D478; // type:function size:0x8 scope:weak align:4 +getObjHeap__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D480; // type:function size:0x8 scope:weak align:4 +getDataHeap__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D488; // type:function size:0x8 scope:weak align:4 +getCycleType__Q29PSAutoBgm7OnCycleFv = .text:0x8033D490; // type:function size:0x8 scope:weak align:4 +getEraseLink__Q29PSAutoBgm9ConductorFv = .text:0x8033D498; // type:function size:0x8 scope:weak align:4 +onBeatTop__Q28PSSystem12SeqTrackRootFv = .text:0x8033D4A0; // type:function size:0x4 scope:weak align:4 +initInstance__Q210JADUtility59PrmDataMgrNodeFv = .text:0x8033D4A4; // type:function size:0x1A4 scope:weak align:4 +initInstance__Q210JADUtility59PrmDataMgrNodeFPvl = .text:0x8033D648; // type:function size:0xE8 scope:weak align:4 +@600@28@__dt__Q210JADUtility59PrmDataMgrNodeFv = .text:0x8033D730; // type:function size:0x14 scope:weak align:4 +@600@28@init__Q210JADUtility11DataMgrNodeFv = .text:0x8033D744; // type:function size:0x14 scope:weak align:4 +@600@28@__dt__Q29PSAutoBgm12ConductorMgrFv = .text:0x8033D758; // type:function size:0x14 scope:weak align:4 +createInstance__Q28PSSystem7BankMgrFv = .text:0x8033D76C; // type:function size:0x64 scope:global align:4 +__ct__Q28PSSystem7BankMgrFv = .text:0x8033D7D0; // type:function size:0x58 scope:global align:4 +preInit__Q28PSSystem7BankMgrFv = .text:0x8033D828; // type:function size:0x94 scope:global align:4 +init__Q28PSSystem7BankMgrFv = .text:0x8033D8BC; // type:function size:0x178 scope:global align:4 +load__Q28PSSystem9WaveSceneFUsUsQ38PSSystem9WaveScene7AreaArgPQ28PSSystem11TaskChecker = .text:0x8033DA34; // type:function size:0x78 scope:global align:4 +__ct__Q38PSSystem9WaveScene8WaveAreaFv = .text:0x8033DAAC; // type:function size:0x28 scope:global align:4 +loadWave__Q38PSSystem9WaveScene8WaveAreaFUsUsPQ28PSSystem11TaskChecker = .text:0x8033DAD4; // type:function size:0x114 scope:global align:4 +deleteWave__Q38PSSystem9WaveScene8WaveAreaFv = .text:0x8033DBE8; // type:function size:0xB0 scope:global align:4 +waveLoadCallback__Q38PSSystem9WaveScene8WaveAreaFUl = .text:0x8033DC98; // type:function size:0x7C scope:global align:4 +__dt__Q28PSSystem7BankMgrFv = .text:0x8033DD14; // type:function size:0x90 scope:weak align:4 +secondLoadS__Q28PSSystem7BankMgrFv = .text:0x8033DDA4; // type:function size:0x4 scope:weak align:4 +firstLoadS__Q28PSSystem7BankMgrFv = .text:0x8033DDA8; // type:function size:0x4 scope:weak align:4 +initS__Q28PSSystem7BankMgrFv = .text:0x8033DDAC; // type:function size:0x24 scope:weak align:4 +setWsDataS__Q28PSSystem7BankMgrFPUl = .text:0x8033DDD0; // type:function size:0x1C8 scope:weak align:4 +setBankDataS__Q28PSSystem7BankMgrFPUl = .text:0x8033DF98; // type:function size:0x1C8 scope:weak align:4 +__dt__Q38PSSystem9WaveScene8WaveAreaFv = .text:0x8033E160; // type:function size:0xCC scope:weak align:4 +__ct__Q28PSSystem8TaskBaseFv = .text:0x8033E22C; // type:function size:0x54 scope:global align:4 +append__Q28PSSystem9TaskEntryFPQ28PSSystem8TaskBase = .text:0x8033E280; // type:function size:0x24 scope:global align:4 +isUnderTask_byDirector__Q28PSSystem12TaskEntryMgrFPQ28PSSystem12DirectorBase = .text:0x8033E2A4; // type:function size:0x34 scope:global align:4 +update__Q28PSSystem12TaskEntryMgrFv = .text:0x8033E2D8; // type:function size:0x150 scope:global align:4 +appendEntry__Q28PSSystem12TaskEntryMgrFPQ28PSSystem9TaskEntryPQ28PSSystem12DirectorBase = .text:0x8033E428; // type:function size:0xA0 scope:global align:4 +removeEntry__Q28PSSystem12TaskEntryMgrFPQ28PSSystem9TaskEntry = .text:0x8033E4C8; // type:function size:0x74 scope:global align:4 +removeAllEntry__Q28PSSystem12TaskEntryMgrFv = .text:0x8033E53C; // type:function size:0xA4 scope:global align:4 +remove_Lock__Q28PSSystem32MutexListFP30JSULink = .text:0x8033E5E0; // type:function size:0x58 scope:weak align:4 +append_Lock__Q28PSSystem31MutexListFP29JSULink = .text:0x8033E638; // type:function size:0x58 scope:weak align:4 +append_Lock__Q28PSSystem32MutexListFP30JSULink = .text:0x8033E690; // type:function size:0x58 scope:weak align:4 +task__Q28PSSystem16ModParamWithFadeFR8JASTrack = .text:0x8033E6E8; // type:function size:0x124 scope:global align:4 +task__Q28PSSystem21ModParamWithTableTaskFR8JASTrack = .text:0x8033E80C; // type:function size:0xF4 scope:global align:4 +tableTask__Q28PSSystem12PitchModTaskFR8JASTrackf = .text:0x8033E900; // type:function size:0x30 scope:global align:4 +getPreParam__Q28PSSystem14OuterParamTaskFR8JASTrack = .text:0x8033E930; // type:function size:0xD4 scope:global align:4 +timeTask__Q28PSSystem14OuterParamTaskFR8JASTrackf = .text:0x8033EA04; // type:function size:0x98 scope:global align:4 +task__Q28PSSystem14SimpleWaitTaskFR8JASTrack = .text:0x8033EA9C; // type:function size:0x28 scope:global align:4 +__ct__Q28PSSystem11BankRandPrmFv = .text:0x8033EAC4; // type:function size:0x74 scope:global align:4 +makeEntry__Q28PSSystem20TaskEntry_OuterParamFfUl = .text:0x8033EB38; // type:function size:0x80 scope:global align:4 +makeEntry__Q28PSSystem16TaskEntry_IdMaskFUc = .text:0x8033EBB8; // type:function size:0x54 scope:global align:4 +makeEntry__Q28PSSystem16TaskEntry_PitModFffUl = .text:0x8033EC0C; // type:function size:0x110 scope:global align:4 +makeEntry__Q28PSSystem20TaskEntry_MuteVolumeFfUl = .text:0x8033ED1C; // type:function size:0xA4 scope:global align:4 +makeEntry__Q28PSSystem22TaskEntry_MuteOnVolumeFUl = .text:0x8033EDC0; // type:function size:0x8C scope:global align:4 +makeEntry__Q28PSSystem15TaskEntry_TempoFfUl = .text:0x8033EE4C; // type:function size:0x80 scope:global align:4 +registerAnime__Q26PSGame16SoundCreatureMgrFP10J3DAnmBasePCc = .text:0x8033EECC; // type:function size:0x4 scope:global align:4 +avoidChk__Q29PSAutoBgm19MeloArr_RandomAvoidFRQ29PSAutoBgm10MeloArrArg = .text:0x8033EED0; // type:function size:0x3C scope:global align:4 +isToAvoid__Q29PSAutoBgm10MeloArrMgrFRQ29PSAutoBgm10MeloArrArg = .text:0x8033EF0C; // type:function size:0x138 scope:global align:4 +post__Q29PSAutoBgm11MeloArrBaseFRQ29PSAutoBgm10MeloArrArg = .text:0x8033F044; // type:function size:0x4 scope:weak align:4 +pre__Q29PSAutoBgm11MeloArrBaseFRQ29PSAutoBgm10MeloArrArg = .text:0x8033F048; // type:function size:0x4 scope:weak align:4 +directOn__Q29PSAutoBgm11MeloArrBaseFPQ29PSAutoBgm5Track = .text:0x8033F04C; // type:function size:0xC scope:weak align:4 +directOff__Q29PSAutoBgm11MeloArrBaseFPQ29PSAutoBgm5Track = .text:0x8033F058; // type:function size:0xC scope:weak align:4 +__dt__Q29PSAutoBgm11MeloArrBaseFv = .text:0x8033F064; // type:function size:0x80 scope:weak align:4 +__dt__Q29PSAutoBgm19MeloArr_RandomAvoidFv = .text:0x8033F0E4; // type:function size:0x98 scope:weak align:4 +@16@__dt__Q29PSAutoBgm19MeloArr_RandomAvoidFv = .text:0x8033F17C; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q29PSAutoBgm11MeloArrBaseFv = .text:0x8033F184; // type:function size:0x8 scope:weak align:4 +__ct__Q26PSGame5SeMgrFv = .text:0x8033F18C; // type:function size:0x210 scope:global align:4 +playMessageVoice__Q26PSGame5SeMgrFUlb = .text:0x8033F39C; // type:function size:0x120 scope:global align:4 +stopMessageVoice__Q26PSGame5SeMgrFv = .text:0x8033F4BC; // type:function size:0x3C scope:global align:4 +__ct__Q26PSGame5RappaFv = .text:0x8033F4F8; // type:function size:0x50 scope:global align:4 +init__Q26PSGame5RappaFUs = .text:0x8033F548; // type:function size:0xA0 scope:global align:4 +setId__Q26PSGame5RappaFUl = .text:0x8033F5E8; // type:function size:0x8 scope:global align:4 +__dt__Q26PSGame5RappaFv = .text:0x8033F5F0; // type:function size:0x98 scope:global align:4 +playRappa__Q26PSGame5RappaFbffPQ27JAInter6Object = .text:0x8033F688; // type:function size:0x170 scope:global align:4 +syncCpu_WaitChk__Q26PSGame5RappaFP8JASTrack = .text:0x8033F7F8; // type:function size:0x3C scope:global align:4 +syncCpu_TblNo__Q26PSGame5RappaFP8JASTrack = .text:0x8033F834; // type:function size:0x8 scope:global align:4 +__ct__Q26PSGame5SetSeFPCcss = .text:0x8033F83C; // type:function size:0x78 scope:global align:4 +exec__Q26PSGame5SetSeFv = .text:0x8033F8B4; // type:function size:0x38 scope:global align:4 +startSound__Q26PSGame5SetSeFPQ27JAInter6ObjectUlUl = .text:0x8033F8EC; // type:function size:0xB8 scope:global align:4 +playSystemSe__Q26PSGame5SetSeFUlUl = .text:0x8033F9A4; // type:function size:0xA0 scope:global align:4 +startCounter__Q26PSGame5SetSeFUl = .text:0x8033FA44; // type:function size:0x84 scope:global align:4 +__ct__Q26PSGame6RandIdFv = .text:0x8033FAC8; // type:function size:0xC scope:global align:4 +startSound__Q26PSGame6RandIdFPQ27JAInter6ObjectUlUlUl = .text:0x8033FAD4; // type:function size:0x1E8 scope:global align:4 +playSystemSe__Q26PSGame6RandIdFUlPP8JAISoundUlUl = .text:0x8033FCBC; // type:function size:0x1B8 scope:global align:4 +setPanAndDolby__Q26PSGame9EnvSe_PanFP8JAISound = .text:0x8033FE74; // type:function size:0x74 scope:global align:4 +__ct__Q26PSGame17EnvSe_PerspectiveFUlf3Vec = .text:0x8033FEE8; // type:function size:0x60 scope:global align:4 +play__Q26PSGame17EnvSe_PerspectiveFv = .text:0x8033FF48; // type:function size:0x4C scope:global align:4 +__ct__Q26PSGame13EnvSe_AutoPanFUlfffff = .text:0x8033FF94; // type:function size:0x88 scope:global align:4 +setDirection__Q26PSGame13EnvSe_AutoPanFbb = .text:0x8034001C; // type:function size:0xC scope:global align:4 +setPanAndDolby__Q26PSGame13EnvSe_AutoPanFP8JAISound = .text:0x80340028; // type:function size:0x11C scope:global align:4 +__ct__Q26PSGame25Builder_EvnSe_PerspectiveFQ29JGeometry8TBox3 = .text:0x80340144; // type:function size:0x21C scope:global align:4 +build__Q26PSGame25Builder_EvnSe_PerspectiveFfPQ28PSSystem8EnvSeMgr = .text:0x80340360; // type:function size:0x2D0 scope:global align:4 +newSeObj__Q26PSGame25Builder_EvnSe_PerspectiveFUlf3Vec = .text:0x80340630; // type:function size:0xAC scope:global align:4 +__dt__Q26PSGame25Builder_EvnSe_PerspectiveFv = .text:0x803406DC; // type:function size:0xC8 scope:global align:4 +__dt__Q28PSSystem30SingletonBaseFv = .text:0x803407A4; // type:function size:0x50 scope:weak align:4 +onBuild__Q26PSGame25Builder_EvnSe_PerspectiveFPQ28PSSystem9EnvSeBase = .text:0x803407F4; // type:function size:0x4 scope:weak align:4 +getCastType__Q28PSSystem9EnvSeBaseFv = .text:0x803407F8; // type:function size:0xC scope:weak align:4 +setPanAndDolby__Q28PSSystem9EnvSeBaseFP8JAISound = .text:0x80340804; // type:function size:0x4 scope:weak align:4 +__dt__Q26PSGame5SeMgrFv = .text:0x80340808; // type:function size:0x64 scope:weak align:4 +__ct__Q28PSSystem9EnvSeBaseFUlf = .text:0x8034086C; // type:function size:0xA4 scope:global align:4 +exec__Q28PSSystem9EnvSeBaseFv = .text:0x80340910; // type:function size:0x35C scope:global align:4 +play__Q28PSSystem9EnvSeBaseFv = .text:0x80340C6C; // type:function size:0x40 scope:global align:4 +setAllPauseFlag__Q28PSSystem8EnvSeMgrFUc = .text:0x80340CAC; // type:function size:0x34 scope:global align:4 +on__Q28PSSystem8EnvSeMgrFv = .text:0x80340CE0; // type:function size:0x24 scope:global align:4 +on__Q28PSSystem8EnvSeMgrFUlb = .text:0x80340D04; // type:function size:0x50 scope:global align:4 +off__Q28PSSystem8EnvSeMgrFv = .text:0x80340D54; // type:function size:0x24 scope:global align:4 +off__Q28PSSystem8EnvSeMgrFUlb = .text:0x80340D78; // type:function size:0x50 scope:global align:4 +reservePauseOff__Q28PSSystem8EnvSeMgrFv = .text:0x80340DC8; // type:function size:0xC scope:global align:4 +setVolumeRequest__Q28PSSystem8EnvSeMgrFfUlUc = .text:0x80340DD4; // type:function size:0x70 scope:global align:4 +exec__Q28PSSystem8EnvSeMgrFv = .text:0x80340E44; // type:function size:0x80 scope:global align:4 +reservatorTask__Q28PSSystem24EnvSe_PauseOffReservatorFv = .text:0x80340EC4; // type:function size:0x38 scope:global align:4 +__ct__Q38PSSystem9ClusterSe11PartInitArgFv = .text:0x80340EFC; // type:function size:0x20 scope:global align:4 +__ct__Q38PSSystem9ClusterSe4PartFv = .text:0x80340F1C; // type:function size:0x2C scope:global align:4 +callSe__Q38PSSystem9ClusterSe4PartFPQ27JAInter6Object = .text:0x80340F48; // type:function size:0x3C scope:global align:4 +__ct__Q38PSSystem9ClusterSe7FactoryFUc = .text:0x80340F84; // type:function size:0x60 scope:global align:4 +constructPart__Q38PSSystem9ClusterSe7FactoryFv = .text:0x80340FE4; // type:function size:0x74 scope:global align:4 +constructParts__Q38PSSystem9ClusterSe3MgrFRQ38PSSystem9ClusterSe7Factory = .text:0x80341058; // type:function size:0x2B4 scope:global align:4 +play__Q38PSSystem9ClusterSe3MgrFUcPQ27JAInter6Object = .text:0x8034130C; // type:function size:0x1A4 scope:global align:4 +__dt__Q28PSSystem9WaveSceneFv = .text:0x803414B0; // type:function size:0x7C scope:weak align:4 +loadWave__Q28PSSystem10WaveLoaderFPQ28PSSystem11TaskCheckerQ38PSSystem9WaveScene7AreaArg = .text:0x8034152C; // type:function size:0x40 scope:global align:4 +__ct__Q28PSSystem5SceneFUc = .text:0x8034156C; // type:function size:0x118 scope:global align:4 +__dt__Q28PSSystem5SceneFv = .text:0x80341684; // type:function size:0xC4 scope:global align:4 +adaptChildScene__Q28PSSystem5SceneFPQ28PSSystem5Scene = .text:0x80341748; // type:function size:0xBC scope:global align:4 +adaptTo__Q28PSSystem5SceneFPPQ28PSSystem5Scene = .text:0x80341804; // type:function size:0x70 scope:global align:4 +detach__Q28PSSystem5SceneFv = .text:0x80341874; // type:function size:0x58 scope:global align:4 +appendSeq__Q28PSSystem5SceneFPQ28PSSystem7SeqBase = .text:0x803418CC; // type:function size:0x60 scope:global align:4 +startMainSeq__Q28PSSystem5SceneFv = .text:0x8034192C; // type:function size:0x3C scope:global align:4 +stopMainSeq__Q28PSSystem5SceneFUl = .text:0x80341968; // type:function size:0x3C scope:global align:4 +stopAllSound__Q28PSSystem5SceneFUl = .text:0x803419A4; // type:function size:0x24 scope:global align:4 +scene1st__Q28PSSystem5SceneFPQ28PSSystem11TaskChecker = .text:0x803419C8; // type:function size:0x88 scope:global align:4 +scene1stLoadSync__Q28PSSystem5SceneFv = .text:0x80341A50; // type:function size:0x5C scope:global align:4 +exec__Q28PSSystem5SceneFv = .text:0x80341AAC; // type:function size:0x4C scope:global align:4 +refreshCurEndScene__Q28PSSystem8SceneMgrFv = .text:0x80341AF8; // type:function size:0x34 scope:global align:4 +findSeq__Q28PSSystem8SceneMgrFP8JASTrack = .text:0x80341B2C; // type:function size:0x154 scope:global align:4 +getPlayingSeq__Q28PSSystem8SceneMgrFP8JASTrack = .text:0x80341C80; // type:function size:0x154 scope:global align:4 +deleteScene__Q28PSSystem8SceneMgrFPQ28PSSystem5Scene = .text:0x80341DD4; // type:function size:0x440 scope:global align:4 +deleteCurrentScene__Q28PSSystem8SceneMgrFv = .text:0x80342214; // type:function size:0x68 scope:global align:4 +getSeqMgr__Q28PSSystem5SceneFv = .text:0x8034227C; // type:function size:0x8 scope:weak align:4 +getChildScene__Q28PSSystem5SceneFv = .text:0x80342284; // type:function size:0x8 scope:weak align:4 +PSGetSystemIFA__Fv = .text:0x8034228C; // type:function size:0x48 scope:weak align:4 +PSGetSystemIF__Fv = .text:0x803422D4; // type:function size:0x8 scope:weak align:4 +proc__Q28PSSystem7BeatMgrFv = .text:0x803422DC; // type:function size:0x2C scope:global align:4 +update__Q28PSSystem12SeqTrackBaseFv = .text:0x80342308; // type:function size:0x28 scope:global align:4 +init__Q28PSSystem12SeqTrackBaseFP8JASTrack = .text:0x80342330; // type:function size:0x8 scope:global align:4 +getTaskEntryList__Q28PSSystem12SeqTrackBaseFv = .text:0x80342338; // type:function size:0x8 scope:global align:4 +__ct__Q28PSSystem12SeqTrackRootFv = .text:0x80342340; // type:function size:0x3A4 scope:global align:4 +init__Q28PSSystem12SeqTrackRootFP8JASTrack = .text:0x803426E4; // type:function size:0x78 scope:global align:4 +initSwingRatio__Q28PSSystem12SeqTrackRootFv = .text:0x8034275C; // type:function size:0x7C scope:global align:4 +pitchModulation__Q28PSSystem12SeqTrackRootFffUlPQ28PSSystem12DirectorBase = .text:0x803427D8; // type:function size:0x88 scope:global align:4 +tempoChange__Q28PSSystem12SeqTrackRootFfUlPQ28PSSystem12DirectorBase = .text:0x80342860; // type:function size:0x78 scope:global align:4 +onStopSeq__Q28PSSystem12SeqTrackRootFv = .text:0x803428D8; // type:function size:0x24 scope:global align:4 +beatUpdate__Q28PSSystem12SeqTrackRootFv = .text:0x803428FC; // type:function size:0x9C scope:global align:4 +__ct__Q28PSSystem13SeqTrackChildFRCQ28PSSystem12SeqTrackRoot = .text:0x80342998; // type:function size:0x2EC scope:global align:4 +muteOffAndFadeIn__Q28PSSystem13SeqTrackChildFfUlPQ28PSSystem12DirectorBase = .text:0x80342C84; // type:function size:0x84 scope:global align:4 +fadeoutAndMute__Q28PSSystem13SeqTrackChildFUlPQ28PSSystem12DirectorBase = .text:0x80342D08; // type:function size:0x74 scope:global align:4 +fade__Q28PSSystem13SeqTrackChildFfUlPQ28PSSystem12DirectorBase = .text:0x80342D7C; // type:function size:0x78 scope:global align:4 +setIdMask__Q28PSSystem13SeqTrackChildFUcPQ28PSSystem12DirectorBase = .text:0x80342DF4; // type:function size:0x68 scope:global align:4 +onStopSeq__Q28PSSystem13SeqTrackChildFv = .text:0x80342E5C; // type:function size:0x24 scope:global align:4 +task__Q28PSSystem10IdMaskTaskFR8JASTrack = .text:0x80342E80; // type:function size:0x30 scope:weak align:4 +task__Q28PSSystem8MuteTaskFR8JASTrack = .text:0x80342EB0; // type:function size:0x38 scope:weak align:4 +__ct__Q28PSSystem12DirectorBaseFiPCc = .text:0x80342EE8; // type:function size:0x214 scope:global align:4 +isUnderDirection__Q28PSSystem12DirectorBaseFv = .text:0x803430FC; // type:function size:0x10 scope:global align:4 +setTrack__Q28PSSystem12DirectorBaseFUcPQ28PSSystem12SeqTrackBase = .text:0x8034310C; // type:function size:0xA4 scope:global align:4 +exec__Q28PSSystem12DirectorBaseFv = .text:0x803431B0; // type:function size:0x14C scope:global align:4 +directOn__Q28PSSystem12DirectorBaseFv = .text:0x803432FC; // type:function size:0x74 scope:global align:4 +directOnInner__Q28PSSystem12DirectorBaseFv = .text:0x80343370; // type:function size:0xB0 scope:global align:4 +directOff__Q28PSSystem12DirectorBaseFv = .text:0x80343420; // type:function size:0x80 scope:global align:4 +directOffInner__Q28PSSystem12DirectorBaseFv = .text:0x803434A0; // type:function size:0xB0 scope:global align:4 +doUpdateRequest__Q28PSSystem12DirectorBaseFv = .text:0x80343550; // type:function size:0x4 scope:global align:4 +powerOn__Q28PSSystem12DirectorBaseFv = .text:0x80343554; // type:function size:0x40 scope:global align:4 +exec__Q28PSSystem15OneShotDirectorFv = .text:0x80343594; // type:function size:0x150 scope:global align:4 +doUpdateRequest__Q28PSSystem16SwitcherDirectorFv = .text:0x803436E4; // type:function size:0x198 scope:global align:4 +__ct__Q28PSSystem15DirectorMgrBaseFUc = .text:0x8034387C; // type:function size:0x88 scope:global align:4 +initAndAdaptToBgm__Q28PSSystem15DirectorMgrBaseFRQ28PSSystem11DirectedBgm = .text:0x80343904; // type:function size:0x12C scope:global align:4 +playInit__Q28PSSystem15DirectorMgrBaseFP8JASTrack = .text:0x80343A30; // type:function size:0x164 scope:global align:4 +exec__Q28PSSystem15DirectorMgrBaseFv = .text:0x80343B94; // type:function size:0x68 scope:global align:4 +off__Q28PSSystem15DirectorMgrBaseFPQ28PSSystem11DirectedBgm = .text:0x80343BFC; // type:function size:0x1BC scope:global align:4 +__ct__Q28PSSystem17DirectorCopyActorFPQ28PSSystem12DirectorBasePQ28PSSystem12DirectorBase = .text:0x80343DB8; // type:function size:0x24 scope:global align:4 +exec__Q28PSSystem17DirectorCopyActorFPQ28PSSystem12DirectorBase = .text:0x80343DDC; // type:function size:0x120 scope:global align:4 +underDirection__Q28PSSystem12DirectorBaseFv = .text:0x80343EFC; // type:function size:0x4 scope:weak align:4 +execInner__Q28PSSystem12DirectorBaseFv = .text:0x80343F00; // type:function size:0x4 scope:weak align:4 +onPlayInit__Q28PSSystem12DirectorBaseFP8JASTrack = .text:0x80343F04; // type:function size:0x4 scope:weak align:4 +onDirectOn__Q28PSSystem12DirectorBaseFv = .text:0x80343F08; // type:function size:0x4 scope:weak align:4 +onDirectOff__Q28PSSystem12DirectorBaseFv = .text:0x80343F0C; // type:function size:0x4 scope:weak align:4 +onUpdateFromSlaveD__Q28PSSystem17DirectorCopyActorFv = .text:0x80343F10; // type:function size:0x4 scope:weak align:4 +onUpdateFromMasterD__Q28PSSystem17DirectorCopyActorFv = .text:0x80343F14; // type:function size:0x4 scope:weak align:4 +__dt__Q28PSSystem15DirectorMgrBaseFv = .text:0x80343F18; // type:function size:0x60 scope:weak align:4 +__dt__Q28PSSystem16SwitcherDirectorFv = .text:0x80343F78; // type:function size:0x70 scope:weak align:4 +__dt__Q28PSSystem15OneShotDirectorFv = .text:0x80343FE8; // type:function size:0x70 scope:weak align:4 +directOffTrack__Q28PSSystem15OneShotDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80344058; // type:function size:0x4 scope:weak align:4 +__dt__Q28PSSystem12DirectorBaseFv = .text:0x8034405C; // type:function size:0x60 scope:weak align:4 +__ct__Q28Morimura12TDayEndCountFv = .text:0x803440BC; // type:function size:0xE0 scope:global align:4 +__dt__Q28Morimura9TTestBaseFv = .text:0x8034419C; // type:function size:0xAC scope:weak align:4 +doCreate__Q28Morimura12TDayEndCountFP10JKRArchive = .text:0x80344248; // type:function size:0x2EC scope:global align:4 +doUpdate__Q28Morimura12TDayEndCountFv = .text:0x80344534; // type:function size:0xA88 scope:global align:4 +doDraw__Q28Morimura12TDayEndCountFR8Graphics = .text:0x80344FBC; // type:function size:0x78 scope:global align:4 +reset__Q28Morimura12TDayEndCountFv = .text:0x80345034; // type:function size:0x414 scope:global align:4 +__ct__Q28Morimura18TChallengeEndCountFv = .text:0x80345448; // type:function size:0x104 scope:global align:4 +__dt__Q28Morimura12TDayEndCountFv = .text:0x8034554C; // type:function size:0xC4 scope:weak align:4 +doCreate__Q28Morimura18TChallengeEndCountFP10JKRArchive = .text:0x80345610; // type:function size:0x40 scope:global align:4 +__ct__Q28Morimura20TChallengeEndCount1pFv = .text:0x80345650; // type:function size:0x13C scope:global align:4 +__dt__Q28Morimura18TChallengeEndCountFv = .text:0x8034578C; // type:function size:0xDC scope:weak align:4 +doUpdate__Q28Morimura20TChallengeEndCount1pFv = .text:0x80345868; // type:function size:0x34 scope:global align:4 +__ct__Q28Morimura20TChallengeEndCount2pFv = .text:0x8034589C; // type:function size:0x13C scope:global align:4 +doUpdate__Q28Morimura20TChallengeEndCount2pFv = .text:0x803459D8; // type:function size:0x30 scope:global align:4 +doCreateObj__Q28Morimura15TCountDownSceneFP10JKRArchive = .text:0x80345A08; // type:function size:0x48C scope:global align:4 +doStart__Q28Morimura15TCountDownSceneFPQ26Screen13StartSceneArg = .text:0x80345E94; // type:function size:0x64 scope:global align:4 +getResName__Q28Morimura15TCountDownSceneCFv = .text:0x80345EF8; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura15TCountDownSceneFv = .text:0x80345F04; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura15TCountDownSceneFv = .text:0x80345F0C; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura15TCountDownSceneFv = .text:0x80345F18; // type:function size:0x14 scope:weak align:4 +doStart__Q28Morimura12TDayEndCountFPCQ26Screen13StartSceneArg = .text:0x80345F2C; // type:function size:0x38 scope:weak align:4 +getDispMemberBase__Q28Morimura12TDayEndCountFv = .text:0x80345F64; // type:function size:0x34 scope:weak align:4 +doUpdateFadeinFinish__Q28Morimura9TTestBaseFv = .text:0x80345F98; // type:function size:0xC scope:weak align:4 +__dt__Q28Morimura20TChallengeEndCount2pFv = .text:0x80345FA4; // type:function size:0xF4 scope:weak align:4 +__dt__Q28Morimura20TChallengeEndCount1pFv = .text:0x80346098; // type:function size:0xF4 scope:weak align:4 +@24@__dt__Q28Morimura12TDayEndCountFv = .text:0x8034618C; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura18TChallengeEndCountFv = .text:0x80346194; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura20TChallengeEndCount1pFv = .text:0x8034619C; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura20TChallengeEndCount2pFv = .text:0x803461A4; // type:function size:0x8 scope:weak align:4 +drawSelf__Q28Morimura15THuWhitePaneSetFffPA3_A4_f = .text:0x803461AC; // type:function size:0x224 scope:global align:4 +gxSet__Q28Morimura15THuWhitePaneSetFv = .text:0x803463D0; // type:function size:0x94 scope:global align:4 +__ct__Q28Morimura10THurryUp2DFv = .text:0x80346464; // type:function size:0xB0 scope:global align:4 +__ct__Q38Morimura10THurryUp2D11TStateParamFv = .text:0x80346514; // type:function size:0x24 scope:weak align:4 +doCreate__Q28Morimura10THurryUp2DFP10JKRArchive = .text:0x80346538; // type:function size:0x390 scope:global align:4 +doUpdate__Q28Morimura10THurryUp2DFv = .text:0x803468C8; // type:function size:0x18C scope:global align:4 +doDraw__Q28Morimura10THurryUp2DFR8Graphics = .text:0x80346A54; // type:function size:0x40C scope:global align:4 +doStart__Q28Morimura10THurryUp2DFPCQ26Screen13StartSceneArg = .text:0x80346E60; // type:function size:0x5C scope:global align:4 +init__Q28Morimura10THurryUp2DFv = .text:0x80346EBC; // type:function size:0x4C0 scope:global align:4 +move__Q28Morimura10THurryUp2DFv = .text:0x8034737C; // type:function size:0x2CC scope:global align:4 +scaleUp1__Q28Morimura10THurryUp2DFv = .text:0x80347648; // type:function size:0x168 scope:global align:4 +colorUp__Q28Morimura10THurryUp2DFv = .text:0x803477B0; // type:function size:0x1B0 scope:global align:4 +scaleUp2__Q28Morimura10THurryUp2DFv = .text:0x80347960; // type:function size:0x240 scope:global align:4 +changeState__Q28Morimura10THurryUp2DFif = .text:0x80347BA0; // type:function size:0x254 scope:global align:4 +getDispMemberBase__Q28Morimura10THurryUp2DFv = .text:0x80347DF4; // type:function size:0x34 scope:weak align:4 +__dt__Q28Morimura10THurryUp2DFv = .text:0x80347E28; // type:function size:0xC4 scope:weak align:4 +__dt__Q28Morimura15THuWhitePaneSetFv = .text:0x80347EEC; // type:function size:0x60 scope:weak align:4 +__sinit_hurryUp2D_cpp = .text:0x80347F4C; // type:function size:0x28 scope:local align:4 +@24@__dt__Q28Morimura10THurryUp2DFv = .text:0x80347F74; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura13TGameOverBaseFPc = .text:0x80347F7C; // type:function size:0x6C scope:global align:4 +doUpdate__Q28Morimura13TGameOverBaseFv = .text:0x80347FE8; // type:function size:0xF0 scope:global align:4 +doDraw__Q28Morimura13TGameOverBaseFR8Graphics = .text:0x803480D8; // type:function size:0x240 scope:global align:4 +doCreate__Q28Morimura11TGameOver2DFP10JKRArchive = .text:0x80348318; // type:function size:0xAC scope:global align:4 +doCreate__Q28Morimura12TOrimaDown2DFP10JKRArchive = .text:0x803483C4; // type:function size:0xA0 scope:global align:4 +doCreate__Q28Morimura11TLujiDown2DFP10JKRArchive = .text:0x80348464; // type:function size:0xA0 scope:global align:4 +doCreate__Q28Morimura16TPresidentDown2DFP10JKRArchive = .text:0x80348504; // type:function size:0xA0 scope:global align:4 +doCreate__Q28Morimura13TPikminDown2DFP10JKRArchive = .text:0x803485A4; // type:function size:0xA0 scope:global align:4 +__ct__Q28Morimura15TGameOverScreenFP10JKRArchivei = .text:0x80348644; // type:function size:0x24 scope:global align:4 +init__Q28Morimura15TGameOverScreenFPCcUl = .text:0x80348668; // type:function size:0x218 scope:global align:4 +addAnim__Q28Morimura15TGameOverScreenFPc = .text:0x80348880; // type:function size:0xD0 scope:global align:4 +update__Q28Morimura15TGameOverScreenFv = .text:0x80348950; // type:function size:0x8C scope:global align:4 +setPosY__Q28Morimura15TGameOverScreenFf = .text:0x803489DC; // type:function size:0x24 scope:global align:4 +draw__Q28Morimura15TGameOverScreenFR8GraphicsP13J2DPerspGraph = .text:0x80348A00; // type:function size:0x38 scope:global align:4 +orgdraw__Q28Morimura15TGameOverScreenFR8GraphicsP13J2DPerspGraph = .text:0x80348A38; // type:function size:0x38 scope:global align:4 +setFadeAlpha__Q28Morimura15TGameOverScreenFUc = .text:0x80348A70; // type:function size:0x184 scope:global align:4 +__dt__Q28Morimura10TGXSetPaneFv = .text:0x80348BF4; // type:function size:0x60 scope:weak align:4 +drawSelf__Q28Morimura10TGXSetPaneFffPA3_A4_f = .text:0x80348C54; // type:function size:0x2C scope:weak align:4 +__dt__Q28Morimura13TPikminDown2DFv = .text:0x80348C80; // type:function size:0xDC scope:weak align:4 +getDispMemberBase__Q28Morimura13TGameOverBaseFv = .text:0x80348D5C; // type:function size:0x8 scope:weak align:4 +doUpdateFadeout__Q28Morimura13TGameOverBaseFv = .text:0x80348D64; // type:function size:0x34 scope:weak align:4 +__dt__Q28Morimura16TPresidentDown2DFv = .text:0x80348D98; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura11TLujiDown2DFv = .text:0x80348E74; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura12TOrimaDown2DFv = .text:0x80348F50; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura11TGameOver2DFv = .text:0x8034902C; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura13TGameOverBaseFv = .text:0x80349108; // type:function size:0xC4 scope:weak align:4 +@24@__dt__Q28Morimura13TGameOverBaseFv = .text:0x803491CC; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura11TGameOver2DFv = .text:0x803491D4; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura12TOrimaDown2DFv = .text:0x803491DC; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura11TLujiDown2DFv = .text:0x803491E4; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura16TPresidentDown2DFv = .text:0x803491EC; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura13TPikminDown2DFv = .text:0x803491F4; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura9TTestBaseFPc = .text:0x803491FC; // type:function size:0x84 scope:global align:4 +doStart__Q28Morimura9TTestBaseFPCQ26Screen13StartSceneArg = .text:0x80349280; // type:function size:0x20 scope:global align:4 +doEnd__Q28Morimura9TTestBaseFPCQ26Screen11EndSceneArg = .text:0x803492A0; // type:function size:0x10 scope:global align:4 +doUpdateFadein__Q28Morimura9TTestBaseFv = .text:0x803492B0; // type:function size:0xB0 scope:global align:4 +doUpdateFinish__Q28Morimura9TTestBaseFv = .text:0x80349360; // type:function size:0xC scope:global align:4 +doUpdateFadeout__Q28Morimura9TTestBaseFv = .text:0x8034936C; // type:function size:0xB8 scope:global align:4 +@24@__dt__Q28Morimura9TTestBaseFv = .text:0x80349424; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Bomb3FSMFPQ24Game9EnemyBase = .text:0x8034942C; // type:function size:0x78 scope:global align:4 +__ct__Q34Game4Bomb9StateWaitFi = .text:0x803494A4; // type:function size:0x3C scope:global align:4 +init__Q34Game4Bomb9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803494E0; // type:function size:0x5C scope:global align:4 +exec__Q34Game4Bomb9StateWaitFPQ24Game9EnemyBase = .text:0x8034953C; // type:function size:0x148 scope:global align:4 +__ct__Q34Game4Bomb9StateBombFi = .text:0x80349684; // type:function size:0x3C scope:global align:4 +init__Q34Game4Bomb9StateBombFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803496C0; // type:function size:0x60 scope:global align:4 +exec__Q34Game4Bomb9StateBombFPQ24Game9EnemyBase = .text:0x80349720; // type:function size:0x5C4 scope:global align:4 +create__Q23efx9TBombrockFPQ23efx3Arg = .text:0x80349CE4; // type:function size:0x84 scope:weak align:4 +forceKill__Q23efx9TBombrockFv = .text:0x80349D68; // type:function size:0x4 scope:weak align:4 +fade__Q23efx9TBombrockFv = .text:0x80349D6C; // type:function size:0x4 scope:weak align:4 +__sinit_bombState_cpp = .text:0x80349D70; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game4Bomb14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80349D98; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Bomb14ProperAnimatorFi = .text:0x80349DA0; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Bomb14ProperAnimatorFv = .text:0x80349DA8; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Bomb14ProperAnimatorFv = .text:0x80349E04; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Bomb3MgrFiUc = .text:0x80349E0C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Bomb3MgrFv = .text:0x80349E5C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Bomb5ParmsFv = .text:0x80349EA4; // type:function size:0x150 scope:weak align:4 +birth__Q34Game4Bomb3MgrFRQ24Game13EnemyBirthArg = .text:0x80349FF4; // type:function size:0x20 scope:global align:4 +__dt__Q34Game4Bomb3MgrFv = .text:0x8034A014; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Bomb3MgrFv = .text:0x8034A0C4; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game4Bomb3MgrFi = .text:0x8034A0CC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Bomb3ObjFv = .text:0x8034A12C; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Bomb3MgrFi = .text:0x8034A1E8; // type:function size:0x10 scope:weak align:4 +read__Q34Game4Bomb5ParmsFR6Stream = .text:0x8034A1F8; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game4Bomb3MgrFv = .text:0x8034A248; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game4Bomb3ObjFv = .text:0x8034A250; // type:function size:0x20 scope:global align:4 +onStartCapture__Q34Game4Bomb3ObjFv = .text:0x8034A270; // type:function size:0xEC scope:global align:4 +onEndCapture__Q34Game4Bomb3ObjFv = .text:0x8034A35C; // type:function size:0x48 scope:global align:4 +birth__Q34Game4Bomb3ObjFR10Vector3f = .text:0x8034A3A4; // type:function size:0x20 scope:global align:4 +onInit__Q34Game4Bomb3ObjFPQ24Game15CreatureInitArg = .text:0x8034A3C4; // type:function size:0x168 scope:global align:4 +__ct__Q34Game4Bomb3ObjFv = .text:0x8034A52C; // type:function size:0x1DC scope:global align:4 +setFSM__Q34Game4Bomb3ObjFPQ34Game4Bomb3FSM = .text:0x8034A708; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game4Bomb3ObjFv = .text:0x8034A754; // type:function size:0xD4 scope:global align:4 +doDirectDraw__Q34Game4Bomb3ObjFR8Graphics = .text:0x8034A828; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Bomb3ObjFR8Graphics = .text:0x8034A82C; // type:function size:0x4 scope:global align:4 +doEntry__Q34Game4Bomb3ObjFv = .text:0x8034A830; // type:function size:0x2C scope:global align:4 +doAnimationCullingOff__Q34Game4Bomb3ObjFv = .text:0x8034A85C; // type:function size:0x1F4 scope:global align:4 +doAnimationCullingOn__Q34Game4Bomb3ObjFv = .text:0x8034AA50; // type:function size:0x4C scope:global align:4 +doSimulation__Q34Game4Bomb3ObjFf = .text:0x8034AA9C; // type:function size:0x134 scope:global align:4 +getShadowParam__Q34Game4Bomb3ObjFRQ24Game11ShadowParam = .text:0x8034ABD0; // type:function size:0x50 scope:global align:4 +needShadow__Q34Game4Bomb3ObjFv = .text:0x8034AC20; // type:function size:0x48 scope:global align:4 +doFinishStoneState__Q34Game4Bomb3ObjFv = .text:0x8034AC68; // type:function size:0x80 scope:global align:4 +doStartStoneState__Q34Game4Bomb3ObjFv = .text:0x8034ACE8; // type:function size:0x48 scope:global align:4 +onKill__Q34Game4Bomb3ObjFPQ24Game15CreatureKillArg = .text:0x8034AD30; // type:function size:0x84 scope:global align:4 +doStartMovie__Q34Game4Bomb3ObjFv = .text:0x8034ADB4; // type:function size:0x30 scope:global align:4 +doEndMovie__Q34Game4Bomb3ObjFv = .text:0x8034ADE4; // type:function size:0x30 scope:global align:4 +damageCallBack__Q34Game4Bomb3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8034AE14; // type:function size:0x74 scope:global align:4 +bombCallBack__Q34Game4Bomb3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8034AE88; // type:function size:0x160 scope:global align:4 +pressCallBack__Q34Game4Bomb3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8034AFE8; // type:function size:0x8 scope:global align:4 +bounceCallback__Q34Game4Bomb3ObjFPQ23Sys8Triangle = .text:0x8034AFF0; // type:function size:0x78 scope:global align:4 +collisionCallback__Q34Game4Bomb3ObjFRQ24Game9CollEvent = .text:0x8034B068; // type:function size:0x9C scope:global align:4 +forceBomb__Q34Game4Bomb3ObjFv = .text:0x8034B104; // type:function size:0x60 scope:global align:4 +bombEffInWater__Q34Game4Bomb3ObjFv = .text:0x8034B164; // type:function size:0x28 scope:global align:4 +canEat__Q34Game4Bomb3ObjFv = .text:0x8034B18C; // type:function size:0x5C scope:global align:4 +isAnimStart__Q34Game4Bomb3ObjFv = .text:0x8034B1E8; // type:function size:0xD8 scope:global align:4 +__dt__Q23efx14TBombrockLightFv = .text:0x8034B2C0; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game4Bomb3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8034B35C; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game4Bomb3ObjFv = .text:0x8034B360; // type:function size:0x40 scope:weak align:4 +isUnderground__Q34Game4Bomb3ObjFv = .text:0x8034B3A0; // type:function size:0x48 scope:weak align:4 +getEnemyTypeID__Q34Game4Bomb3ObjFv = .text:0x8034B3E8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TBombrockLightFv = .text:0x8034B3F0; // type:function size:0x8 scope:weak align:4 +init__Q34Game3Egg3FSMFPQ24Game9EnemyBase = .text:0x8034B3F8; // type:function size:0x54 scope:global align:4 +__ct__Q34Game3Egg9StateWaitFi = .text:0x8034B44C; // type:function size:0x3C scope:global align:4 +init__Q34Game3Egg9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034B488; // type:function size:0x40 scope:global align:4 +exec__Q34Game3Egg9StateWaitFPQ24Game9EnemyBase = .text:0x8034B4C8; // type:function size:0x1A8 scope:global align:4 +setAnimMgr__Q34Game3Egg14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8034B670; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game3Egg14ProperAnimatorFi = .text:0x8034B678; // type:function size:0x8 scope:global align:4 +__dt__Q34Game3Egg14ProperAnimatorFv = .text:0x8034B680; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game3Egg14ProperAnimatorFv = .text:0x8034B6DC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game3Egg3MgrFiUc = .text:0x8034B6E4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game3Egg3MgrFv = .text:0x8034B734; // type:function size:0x48 scope:global align:4 +__ct__Q34Game3Egg5ParmsFv = .text:0x8034B77C; // type:function size:0x18C scope:weak align:4 +birth__Q34Game3Egg3MgrFRQ24Game13EnemyBirthArg = .text:0x8034B908; // type:function size:0x20 scope:global align:4 +__dt__Q34Game3Egg3MgrFv = .text:0x8034B928; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game3Egg3MgrFv = .text:0x8034B9D8; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game3Egg3MgrFi = .text:0x8034B9E0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game3Egg3ObjFv = .text:0x8034BA40; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game3Egg3MgrFi = .text:0x8034BAFC; // type:function size:0x10 scope:weak align:4 +read__Q34Game3Egg5ParmsFR6Stream = .text:0x8034BB0C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game3Egg3MgrFv = .text:0x8034BB5C; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game3Egg3ObjFv = .text:0x8034BB64; // type:function size:0x20 scope:global align:4 +birth__Q34Game3Egg3ObjFR10Vector3f = .text:0x8034BB84; // type:function size:0x20 scope:global align:4 +onInit__Q34Game3Egg3ObjFPQ24Game15CreatureInitArg = .text:0x8034BBA4; // type:function size:0x150 scope:global align:4 +__ct__Q34Game3Egg3ObjFv = .text:0x8034BCF4; // type:function size:0x138 scope:global align:4 +setFSM__Q34Game3Egg3ObjFPQ34Game3Egg3FSM = .text:0x8034BE2C; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game3Egg3ObjFv = .text:0x8034BE78; // type:function size:0x6C scope:global align:4 +doDirectDraw__Q34Game3Egg3ObjFR8Graphics = .text:0x8034BEE4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game3Egg3ObjFR8Graphics = .text:0x8034BEE8; // type:function size:0x20 scope:global align:4 +doSimulation__Q34Game3Egg3ObjFf = .text:0x8034BF08; // type:function size:0x4C scope:global align:4 +doAnimationCullingOff__Q34Game3Egg3ObjFv = .text:0x8034BF54; // type:function size:0x128 scope:global align:4 +pressCallBack__Q34Game3Egg3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8034C07C; // type:function size:0x8 scope:global align:4 +bounceCallback__Q34Game3Egg3ObjFPQ23Sys8Triangle = .text:0x8034C084; // type:function size:0x54 scope:global align:4 +collisionCallback__Q34Game3Egg3ObjFRQ24Game9CollEvent = .text:0x8034C0D8; // type:function size:0x90 scope:global align:4 +getShadowParam__Q34Game3Egg3ObjFRQ24Game11ShadowParam = .text:0x8034C168; // type:function size:0x50 scope:global align:4 +needShadow__Q34Game3Egg3ObjFv = .text:0x8034C1B8; // type:function size:0x48 scope:global align:4 +onStartCapture__Q34Game3Egg3ObjFv = .text:0x8034C200; // type:function size:0xA0 scope:global align:4 +onEndCapture__Q34Game3Egg3ObjFv = .text:0x8034C2A0; // type:function size:0x40 scope:global align:4 +genItem__Q34Game3Egg3ObjFv = .text:0x8034C2E0; // type:function size:0x5F4 scope:global align:4 +setInitialSetting__Q34Game3Egg3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8034C8D4; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game3Egg3ObjFv = .text:0x8034C8D8; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game3Egg3ObjFv = .text:0x8034C8E8; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game3Egg3ObjFv = .text:0x8034C8F0; // type:function size:0x8 scope:weak align:4 +@708@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8034C8F8; // type:function size:0x14 scope:weak align:4 +@708@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034C90C; // type:function size:0x14 scope:weak align:4 +@708@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034C920; // type:function size:0x14 scope:weak align:4 +@708@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034C934; // type:function size:0x14 scope:weak align:4 +@708@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034C948; // type:function size:0x14 scope:weak align:4 +@708@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8034C95C; // type:function size:0x14 scope:weak align:4 +init__Q34Game13PanModokiBase3FSMFPQ24Game9EnemyBase = .text:0x8034C970; // type:function size:0x1BC scope:global align:4 +__ct__Q34Game13PanModokiBase9StateDeadFi = .text:0x8034CB2C; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034CB68; // type:function size:0x90 scope:global align:4 +exec__Q34Game13PanModokiBase9StateDeadFPQ24Game9EnemyBase = .text:0x8034CBF8; // type:function size:0x58 scope:global align:4 +__ct__Q34Game13PanModokiBase9StateWalkFi = .text:0x8034CC50; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034CC8C; // type:function size:0x70 scope:global align:4 +exec__Q34Game13PanModokiBase9StateWalkFPQ24Game9EnemyBase = .text:0x8034CCFC; // type:function size:0x10C scope:global align:4 +__ct__Q34Game13PanModokiBase9StateBackFi = .text:0x8034CE08; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateBackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034CE44; // type:function size:0x104 scope:global align:4 +exec__Q34Game13PanModokiBase9StateBackFPQ24Game9EnemyBase = .text:0x8034CF48; // type:function size:0x4D0 scope:global align:4 +__ct__Q34Game13PanModokiBase11StatePulledFi = .text:0x8034D418; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034D454; // type:function size:0xB0 scope:global align:4 +exec__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBase = .text:0x8034D504; // type:function size:0x4CC scope:global align:4 +cleanup__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBase = .text:0x8034D9D0; // type:function size:0x24 scope:global align:4 +__ct__Q34Game13PanModokiBase11StateAppearFi = .text:0x8034D9F4; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034DA30; // type:function size:0x70 scope:global align:4 +appearRumble__Q34Game13PanModokiBase3ObjFv = .text:0x8034DAA0; // type:function size:0x4 scope:weak align:4 +exec__Q34Game13PanModokiBase11StateAppearFPQ24Game9EnemyBase = .text:0x8034DAA4; // type:function size:0x64 scope:global align:4 +__ct__Q34Game13PanModokiBase9StateHideFi = .text:0x8034DB08; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034DB44; // type:function size:0x68 scope:global align:4 +exec__Q34Game13PanModokiBase9StateHideFPQ24Game9EnemyBase = .text:0x8034DBAC; // type:function size:0x118 scope:global align:4 +hideRumble__Q34Game13PanModokiBase3ObjFv = .text:0x8034DCC4; // type:function size:0x4 scope:weak align:4 +__ct__Q34Game13PanModokiBase11StateDamageFi = .text:0x8034DCC8; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034DD04; // type:function size:0x10C scope:global align:4 +exec__Q34Game13PanModokiBase11StateDamageFPQ24Game9EnemyBase = .text:0x8034DE10; // type:function size:0x80 scope:global align:4 +__ct__Q34Game13PanModokiBase9StateWaitFi = .text:0x8034DE90; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034DECC; // type:function size:0x70 scope:global align:4 +exec__Q34Game13PanModokiBase9StateWaitFPQ24Game9EnemyBase = .text:0x8034DF3C; // type:function size:0xF4 scope:global align:4 +__ct__Q34Game13PanModokiBase10StateStickFi = .text:0x8034E030; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase10StateStickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034E06C; // type:function size:0x108 scope:global align:4 +exec__Q34Game13PanModokiBase10StateStickFPQ24Game9EnemyBase = .text:0x8034E174; // type:function size:0x3BC scope:global align:4 +__ct__Q34Game13PanModokiBase11StateSuckedFi = .text:0x8034E530; // type:function size:0x3C scope:global align:4 +init__Q34Game13PanModokiBase11StateSuckedFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034E56C; // type:function size:0x6C scope:global align:4 +exec__Q34Game13PanModokiBase11StateSuckedFPQ24Game9EnemyBase = .text:0x8034E5D8; // type:function size:0xC scope:global align:4 +__ct__Q34Game13PanModokiBase13StateCarryEndFi = .text:0x8034E5E4; // type:function size:0x40 scope:global align:4 +init__Q34Game13PanModokiBase13StateCarryEndFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8034E624; // type:function size:0x6C scope:global align:4 +exec__Q34Game13PanModokiBase13StateCarryEndFPQ24Game9EnemyBase = .text:0x8034E690; // type:function size:0x2F0 scope:global align:4 +setAnimMgr__Q34Game13PanModokiBase14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8034E980; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game13PanModokiBase14ProperAnimatorFi = .text:0x8034E988; // type:function size:0x8 scope:global align:4 +__dt__Q34Game13PanModokiBase14ProperAnimatorFv = .text:0x8034E990; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game13PanModokiBase14ProperAnimatorFv = .text:0x8034E9EC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game9PanModoki3MgrFiUc = .text:0x8034E9F4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game9PanModoki3MgrFv = .text:0x8034EA44; // type:function size:0x48 scope:global align:4 +__ct__Q34Game13PanModokiBase5ParmsFv = .text:0x8034EA8C; // type:function size:0x64 scope:weak align:4 +__ct__Q44Game13PanModokiBase5Parms11ProperParmsFv = .text:0x8034EAF0; // type:function size:0x2B4 scope:weak align:4 +birth__Q34Game9PanModoki3MgrFRQ24Game13EnemyBirthArg = .text:0x8034EDA4; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11OoPanModoki3MgrFiUc = .text:0x8034EDC4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11OoPanModoki3MgrFv = .text:0x8034EE14; // type:function size:0x48 scope:global align:4 +birth__Q34Game11OoPanModoki3MgrFRQ24Game13EnemyBirthArg = .text:0x8034EE5C; // type:function size:0x20 scope:global align:4 +doLoadBmd__Q34Game11OoPanModoki3MgrFPv = .text:0x8034EE7C; // type:function size:0x2C scope:global align:4 +loadModelData__Q34Game11OoPanModoki3MgrFv = .text:0x8034EEA8; // type:function size:0x68 scope:global align:4 +__dt__Q34Game11OoPanModoki3MgrFv = .text:0x8034EF10; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11OoPanModoki3MgrFv = .text:0x8034EFC0; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game11OoPanModoki3MgrFi = .text:0x8034EFC8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11OoPanModoki3ObjFv = .text:0x8034F028; // type:function size:0xEC scope:weak align:4 +getEnemy__Q34Game11OoPanModoki3MgrFi = .text:0x8034F114; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game9PanModoki3MgrFv = .text:0x8034F124; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game9PanModoki3MgrFv = .text:0x8034F1D4; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game9PanModoki3MgrFi = .text:0x8034F1DC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game9PanModoki3ObjFv = .text:0x8034F23C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game9PanModoki3ObjFv = .text:0x8034F328; // type:function size:0x90 scope:weak align:4 +__dt__Q34Game13PanModokiBase3ObjFv = .text:0x8034F3B8; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game9PanModoki3MgrFi = .text:0x8034F474; // type:function size:0x10 scope:weak align:4 +canTarget__Q34Game9PanModoki3ObjFii = .text:0x8034F484; // type:function size:0x18 scope:weak align:4 +getDownSmokeScale__Q34Game9PanModoki3ObjFv = .text:0x8034F49C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game9PanModoki3ObjFv = .text:0x8034F4A4; // type:function size:0x8 scope:weak align:4 +setInitialSetting__Q34Game13PanModokiBase3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8034F4AC; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game13PanModokiBase3ObjFR10Vector3R10Vector3 = .text:0x8034F4B0; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game13PanModokiBase3ObjFv = .text:0x8034F4B4; // type:function size:0xC scope:weak align:4 +isUnderground__Q34Game13PanModokiBase3ObjFv = .text:0x8034F4C0; // type:function size:0x14 scope:weak align:4 +ignoreAtari__Q34Game13PanModokiBase3ObjFPQ24Game8Creature = .text:0x8034F4D4; // type:function size:0x14 scope:weak align:4 +getMouthSlots__Q34Game13PanModokiBase3ObjFv = .text:0x8034F4E8; // type:function size:0x8 scope:weak align:4 +setFSM__Q34Game13PanModokiBase3ObjFPQ34Game13PanModokiBase3FSM = .text:0x8034F4F0; // type:function size:0x4C scope:weak align:4 +read__Q34Game13PanModokiBase5ParmsFR6Stream = .text:0x8034F53C; // type:function size:0x50 scope:weak align:4 +@968@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8034F58C; // type:function size:0x14 scope:weak align:4 +@968@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034F5A0; // type:function size:0x14 scope:weak align:4 +@968@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8034F5B4; // type:function size:0x14 scope:weak align:4 +@968@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034F5C8; // type:function size:0x14 scope:weak align:4 +@968@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8034F5DC; // type:function size:0x14 scope:weak align:4 +@968@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8034F5F0; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q34Game9PanModoki3MgrFv = .text:0x8034F604; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11OoPanModoki3MgrFv = .text:0x8034F60C; // type:function size:0x8 scope:weak align:4 +actEnemy__Q24Game18InteractSuckFinishFPQ24Game9EnemyBase = .text:0x8034F614; // type:function size:0x70 scope:global align:4 +setParameters__Q34Game13PanModokiBase3ObjFv = .text:0x8034F684; // type:function size:0x68 scope:global align:4 +birth__Q34Game13PanModokiBase3ObjFR10Vector3f = .text:0x8034F6EC; // type:function size:0x120 scope:global align:4 +onInit__Q34Game13PanModokiBase3ObjFPQ24Game15CreatureInitArg = .text:0x8034F80C; // type:function size:0x1DC scope:global align:4 +__ct__Q34Game13PanModokiBase3ObjFv = .text:0x8034F9E8; // type:function size:0x2A0 scope:global align:4 +doUpdate__Q34Game13PanModokiBase3ObjFv = .text:0x8034FC88; // type:function size:0x34 scope:global align:4 +doAnimation__Q34Game13PanModokiBase3ObjFv = .text:0x8034FCBC; // type:function size:0xB4 scope:global align:4 +doAnimationStick__Q34Game13PanModokiBase3ObjFv = .text:0x8034FD70; // type:function size:0x318 scope:global align:4 +updateCaptureMatrix__Q34Game13PanModokiBase3ObjFv = .text:0x80350088; // type:function size:0x27C scope:global align:4 +doDirectDraw__Q34Game13PanModokiBase3ObjFR8Graphics = .text:0x80350304; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game13PanModokiBase3ObjFR8Graphics = .text:0x80350308; // type:function size:0x20 scope:global align:4 +damageCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80350328; // type:function size:0x30 scope:global align:4 +pressCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80350358; // type:function size:0x1BC scope:global align:4 +hipdropCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80350514; // type:function size:0x2C scope:global align:4 +collisionCallback__Q34Game13PanModokiBase3ObjFRQ24Game9CollEvent = .text:0x80350540; // type:function size:0xAC scope:global align:4 +outWaterCallback__Q34Game13PanModokiBase3ObjFv = .text:0x803505EC; // type:function size:0x44 scope:global align:4 +inWaterCallback__Q34Game13PanModokiBase3ObjFPQ24Game8WaterBox = .text:0x80350630; // type:function size:0x34 scope:global align:4 +bounceCallback__Q34Game13PanModokiBase3ObjFPQ23Sys8Triangle = .text:0x80350664; // type:function size:0x54 scope:global align:4 +damageRumble__Q34Game13PanModokiBase3ObjFv = .text:0x803506B8; // type:function size:0x50 scope:global align:4 +doSimulation__Q34Game13PanModokiBase3ObjFf = .text:0x80350708; // type:function size:0x21C scope:global align:4 +getShadowParam__Q34Game13PanModokiBase3ObjFRQ24Game11ShadowParam = .text:0x80350924; // type:function size:0x88 scope:global align:4 +needShadow__Q34Game13PanModokiBase3ObjFv = .text:0x803509AC; // type:function size:0x58 scope:global align:4 +startCarcassMotion__Q34Game13PanModokiBase3ObjFv = .text:0x80350A04; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game13PanModokiBase3ObjFv = .text:0x80350A2C; // type:function size:0x8C scope:global align:4 +onKill__Q34Game13PanModokiBase3ObjFPQ24Game15CreatureKillArg = .text:0x80350AB8; // type:function size:0x44 scope:global align:4 +doStartMovie__Q34Game13PanModokiBase3ObjFv = .text:0x80350AFC; // type:function size:0x50 scope:global align:4 +doEndMovie__Q34Game13PanModokiBase3ObjFv = .text:0x80350B4C; // type:function size:0x50 scope:global align:4 +doStartStoneState__Q34Game13PanModokiBase3ObjFv = .text:0x80350B9C; // type:function size:0x54 scope:global align:4 +doFinishStoneState__Q34Game13PanModokiBase3ObjFv = .text:0x80350BF0; // type:function size:0xAC scope:global align:4 +initWalkSmokeEffect__Q34Game13PanModokiBase3ObjFv = .text:0x80350C9C; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game13PanModokiBase3ObjFv = .text:0x80350D00; // type:function size:0x8 scope:global align:4 +findNextRoutePoint__Q34Game13PanModokiBase3ObjFb = .text:0x80350D08; // type:function size:0x4B4 scope:global align:4 +isCarryToGoal__Q34Game13PanModokiBase3ObjFv = .text:0x803511BC; // type:function size:0x274 scope:global align:4 +walkFunc__Q34Game13PanModokiBase3ObjFv = .text:0x80351430; // type:function size:0x2CC scope:global align:4 +isReachToGoal__Q34Game13PanModokiBase3ObjFf = .text:0x803516FC; // type:function size:0x184 scope:global align:4 +canBack__Q34Game13PanModokiBase3ObjFv = .text:0x80351880; // type:function size:0x74 scope:global align:4 +findNearestPellet__Q34Game13PanModokiBase3ObjFv = .text:0x803518F4; // type:function size:0x344 scope:global align:4 +getCarryTarget__Q34Game13PanModokiBase3ObjFv = .text:0x80351C38; // type:function size:0x68 scope:global align:4 +releaseCarryTarget__Q34Game13PanModokiBase3ObjFv = .text:0x80351CA0; // type:function size:0x1E4 scope:global align:4 +checkNearHomeGraphIndex__Q34Game13PanModokiBase3ObjFv = .text:0x80351E84; // type:function size:0x284 scope:global align:4 +carryTarget__Q34Game13PanModokiBase3ObjFf = .text:0x80352108; // type:function size:0x518 scope:global align:4 +changeCarryDir__Q34Game13PanModokiBase3ObjFb = .text:0x80352620; // type:function size:0x50 scope:global align:4 +setCarryDir__Q34Game13PanModokiBase3ObjFb = .text:0x80352670; // type:function size:0x1B4 scope:global align:4 +endCarry__Q34Game13PanModokiBase3ObjFv = .text:0x80352824; // type:function size:0x384 scope:global align:4 +checkSucked__Q34Game13PanModokiBase3ObjFv = .text:0x80352BA8; // type:function size:0xA0 scope:global align:4 +suckFinish__Q34Game13PanModokiBase3ObjFv = .text:0x80352C48; // type:function size:0xBC scope:global align:4 +isEndPathFinder__Q34Game13PanModokiBase3ObjFv = .text:0x80352D04; // type:function size:0x118 scope:global align:4 +setPathFinder__Q34Game13PanModokiBase3ObjFb = .text:0x80352E1C; // type:function size:0x2BC scope:global align:4 +releasePathFinder__Q34Game13PanModokiBase3ObjFv = .text:0x803530D8; // type:function size:0x44 scope:global align:4 +killNest__Q34Game13PanModokiBase3ObjFv = .text:0x8035311C; // type:function size:0x20 scope:global align:4 +isTargetable__Q34Game13PanModokiBase3ObjFPQ24Game6Pellet = .text:0x8035313C; // type:function size:0x324 scope:global align:4 +calcSlotGlobalPos__Q34Game13PanModokiBase3ObjFR10Vector3 = .text:0x80353460; // type:function size:0x17C scope:global align:4 +boundEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803535DC; // type:function size:0x28 scope:global align:4 +createAppearEffect__Q34Game13PanModokiBase3ObjFv = .text:0x80353604; // type:function size:0xE8 scope:global align:4 +createHideEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803536EC; // type:function size:0xE0 scope:global align:4 +fadeHideEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803537CC; // type:function size:0x30 scope:global align:4 +createPulledSmokeEffect__Q34Game13PanModokiBase3ObjFv = .text:0x803537FC; // type:function size:0x84 scope:global align:4 +fadePulledSmokeEffect__Q34Game13PanModokiBase3ObjFv = .text:0x80353880; // type:function size:0x30 scope:global align:4 +throwUpEatItem__Q34Game13PanModokiBase3ObjFv = .text:0x803538B0; // type:function size:0x2CC scope:global align:4 +__ct__Q34Game11OoPanModoki3ObjFv = .text:0x80353B7C; // type:function size:0xB8 scope:global align:4 +appearRumble__Q34Game11OoPanModoki3ObjFv = .text:0x80353C34; // type:function size:0x34 scope:global align:4 +hideRumble__Q34Game11OoPanModoki3ObjFv = .text:0x80353C68; // type:function size:0x34 scope:global align:4 +pressCallBack__Q34Game11OoPanModoki3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80353C9C; // type:function size:0x94 scope:global align:4 +canTarget__Q34Game11OoPanModoki3ObjFii = .text:0x80353D30; // type:function size:0x18 scope:weak align:4 +getDownSmokeScale__Q34Game11OoPanModoki3ObjFv = .text:0x80353D48; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game11OoPanModoki3ObjFv = .text:0x80353D50; // type:function size:0x8 scope:weak align:4 +__sinit_panModoki_cpp = .text:0x80353D58; // type:function size:0x28 scope:local align:4 +__ct__Q34Game7Tanpopo3MgrFiUc = .text:0x80353D80; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Tanpopo3MgrFv = .text:0x80353DE4; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Tanpopo3MgrFRQ24Game13EnemyBirthArg = .text:0x80353E2C; // type:function size:0x20 scope:global align:4 +__ct__Q34Game6Clover3MgrFiUc = .text:0x80353E4C; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game6Clover3MgrFv = .text:0x80353EB0; // type:function size:0x48 scope:global align:4 +birth__Q34Game6Clover3MgrFRQ24Game13EnemyBirthArg = .text:0x80353EF8; // type:function size:0x20 scope:global align:4 +__ct__Q34Game12HikariKinoko3MgrFiUc = .text:0x80353F18; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game12HikariKinoko3MgrFv = .text:0x80353F7C; // type:function size:0x48 scope:global align:4 +birth__Q34Game12HikariKinoko3MgrFRQ24Game13EnemyBirthArg = .text:0x80353FC4; // type:function size:0x20 scope:global align:4 +__ct__Q34Game7Ooinu_s3MgrFiUc = .text:0x80353FE4; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Ooinu_s3MgrFv = .text:0x80354048; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Ooinu_s3MgrFRQ24Game13EnemyBirthArg = .text:0x80354090; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11KareOoinu_s3MgrFiUc = .text:0x803540B0; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game11KareOoinu_s3MgrFv = .text:0x80354114; // type:function size:0x48 scope:global align:4 +birth__Q34Game11KareOoinu_s3MgrFRQ24Game13EnemyBirthArg = .text:0x8035415C; // type:function size:0x20 scope:global align:4 +__ct__Q34Game7Ooinu_l3MgrFiUc = .text:0x8035417C; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Ooinu_l3MgrFv = .text:0x803541E0; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Ooinu_l3MgrFRQ24Game13EnemyBirthArg = .text:0x80354228; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11KareOoinu_l3MgrFiUc = .text:0x80354248; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game11KareOoinu_l3MgrFv = .text:0x803542AC; // type:function size:0x48 scope:global align:4 +birth__Q34Game11KareOoinu_l3MgrFRQ24Game13EnemyBirthArg = .text:0x803542F4; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8Wakame_s3MgrFiUc = .text:0x80354314; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8Wakame_s3MgrFv = .text:0x80354378; // type:function size:0x48 scope:global align:4 +birth__Q34Game8Wakame_s3MgrFRQ24Game13EnemyBirthArg = .text:0x803543C0; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8Wakame_l3MgrFiUc = .text:0x803543E0; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8Wakame_l3MgrFv = .text:0x80354444; // type:function size:0x48 scope:global align:4 +birth__Q34Game8Wakame_l3MgrFRQ24Game13EnemyBirthArg = .text:0x8035448C; // type:function size:0x20 scope:global align:4 +__ct__Q34Game7Tukushi3MgrFiUc = .text:0x803544AC; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game7Tukushi3MgrFv = .text:0x80354510; // type:function size:0x48 scope:global align:4 +birth__Q34Game7Tukushi3MgrFRQ24Game13EnemyBirthArg = .text:0x80354558; // type:function size:0x20 scope:global align:4 +__ct__Q34Game6Watage3MgrFiUc = .text:0x80354578; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game6Watage3MgrFv = .text:0x803545DC; // type:function size:0x48 scope:global align:4 +birth__Q34Game6Watage3MgrFRQ24Game13EnemyBirthArg = .text:0x80354624; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8DiodeRed3MgrFiUc = .text:0x80354644; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8DiodeRed3MgrFv = .text:0x803546A8; // type:function size:0x48 scope:global align:4 +birth__Q34Game8DiodeRed3MgrFRQ24Game13EnemyBirthArg = .text:0x803546F0; // type:function size:0x20 scope:global align:4 +__ct__Q34Game10DiodeGreen3MgrFiUc = .text:0x80354710; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game10DiodeGreen3MgrFv = .text:0x80354774; // type:function size:0x48 scope:global align:4 +birth__Q34Game10DiodeGreen3MgrFRQ24Game13EnemyBirthArg = .text:0x803547BC; // type:function size:0x20 scope:global align:4 +__ct__Q34Game8Margaret3MgrFiUc = .text:0x803547DC; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game8Margaret3MgrFv = .text:0x80354840; // type:function size:0x48 scope:global align:4 +birth__Q34Game8Margaret3MgrFRQ24Game13EnemyBirthArg = .text:0x80354888; // type:function size:0x20 scope:global align:4 +__ct__Q34Game11Nekojarashi3MgrFiUc = .text:0x803548A8; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game11Nekojarashi3MgrFv = .text:0x8035490C; // type:function size:0x48 scope:global align:4 +birth__Q34Game11Nekojarashi3MgrFRQ24Game13EnemyBirthArg = .text:0x80354954; // type:function size:0x20 scope:global align:4 +__ct__Q34Game9Chiyogami3MgrFiUc = .text:0x80354974; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game9Chiyogami3MgrFv = .text:0x803549D8; // type:function size:0x48 scope:global align:4 +birth__Q34Game9Chiyogami3MgrFRQ24Game13EnemyBirthArg = .text:0x80354A20; // type:function size:0x20 scope:global align:4 +__ct__Q34Game6Zenmai3MgrFiUc = .text:0x80354A40; // type:function size:0x64 scope:global align:4 +doAlloc__Q34Game6Zenmai3MgrFv = .text:0x80354AA4; // type:function size:0x48 scope:global align:4 +birth__Q34Game6Zenmai3MgrFRQ24Game13EnemyBirthArg = .text:0x80354AEC; // type:function size:0x20 scope:global align:4 +__dt__Q34Game6Zenmai3MgrFv = .text:0x80354B0C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Zenmai3MgrFv = .text:0x80354BD4; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Zenmai3MgrFPv = .text:0x80354BDC; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game6Zenmai3MgrFi = .text:0x80354C08; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Zenmai3ObjFv = .text:0x80354C68; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game6Zenmai3ObjFv = .text:0x80354D54; // type:function size:0x90 scope:weak align:4 +__dt__Q34Game6Plants3ObjFv = .text:0x80354DE4; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Zenmai3MgrFi = .text:0x80354EA0; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game6Zenmai3ObjFv = .text:0x80354EB0; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game6Zenmai3ObjFRQ23Sys8Cylinder = .text:0x80354EE4; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game6Zenmai3ObjFv = .text:0x80354F50; // type:function size:0x8 scope:weak align:4 +setInitialSetting__Q34Game6Plants3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80354F58; // type:function size:0x4 scope:weak align:4 +doUpdate__Q34Game6Plants3ObjFv = .text:0x80354F5C; // type:function size:0x4 scope:weak align:4 +doSimulation__Q34Game6Plants3ObjFf = .text:0x80354F60; // type:function size:0x4 scope:weak align:4 +doUpdateCommon__Q34Game6Plants3ObjFv = .text:0x80354F64; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game6Plants3ObjFv = .text:0x80354F68; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q34Game6Plants3ObjFPQ24Game8Creature = .text:0x80354F70; // type:function size:0x4C scope:weak align:4 +__dt__Q34Game9Chiyogami3MgrFv = .text:0x80354FBC; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game9Chiyogami3MgrFv = .text:0x80355084; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game9Chiyogami3MgrFPv = .text:0x8035508C; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game9Chiyogami3MgrFi = .text:0x803550B8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game9Chiyogami3ObjFv = .text:0x80355118; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game9Chiyogami3ObjFv = .text:0x80355204; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game9Chiyogami3MgrFi = .text:0x80355294; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game9Chiyogami3ObjFv = .text:0x803552A4; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game9Chiyogami3ObjFRQ23Sys8Cylinder = .text:0x803552D8; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game9Chiyogami3ObjFv = .text:0x80355344; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11Nekojarashi3MgrFv = .text:0x8035534C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11Nekojarashi3MgrFv = .text:0x80355414; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11Nekojarashi3MgrFPv = .text:0x8035541C; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game11Nekojarashi3MgrFi = .text:0x80355448; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11Nekojarashi3ObjFv = .text:0x803554A8; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game11Nekojarashi3ObjFv = .text:0x80355594; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game11Nekojarashi3MgrFi = .text:0x80355624; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game8Margaret3MgrFv = .text:0x80355634; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Margaret3MgrFv = .text:0x803556FC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Margaret3MgrFPv = .text:0x80355704; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8Margaret3MgrFi = .text:0x80355730; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Margaret3ObjFv = .text:0x80355790; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8Margaret3ObjFv = .text:0x8035587C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8Margaret3MgrFi = .text:0x8035590C; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game8Margaret3ObjFv = .text:0x8035591C; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game10DiodeGreen3MgrFv = .text:0x80355924; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game10DiodeGreen3MgrFv = .text:0x803559EC; // type:function size:0x8 scope:weak align:4 +loadModelData__Q34Game10DiodeGreen3MgrFv = .text:0x803559F4; // type:function size:0xBC scope:weak align:4 +doLoadBmd__Q34Game10DiodeGreen3MgrFPv = .text:0x80355AB0; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game10DiodeGreen3MgrFi = .text:0x80355ADC; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game10DiodeGreen3ObjFv = .text:0x80355B3C; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game10DiodeGreen3ObjFv = .text:0x80355C28; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game10DiodeGreen3MgrFi = .text:0x80355CB8; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game8DiodeRed3MgrFv = .text:0x80355CC8; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8DiodeRed3MgrFv = .text:0x80355D90; // type:function size:0x8 scope:weak align:4 +loadModelData__Q34Game8DiodeRed3MgrFv = .text:0x80355D98; // type:function size:0xBC scope:weak align:4 +doLoadBmd__Q34Game8DiodeRed3MgrFPv = .text:0x80355E54; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8DiodeRed3MgrFi = .text:0x80355E80; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8DiodeRed3ObjFv = .text:0x80355EE0; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8DiodeRed3ObjFv = .text:0x80355FCC; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8DiodeRed3MgrFi = .text:0x8035605C; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game6Watage3MgrFv = .text:0x8035606C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Watage3MgrFv = .text:0x80356134; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Watage3MgrFPv = .text:0x8035613C; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game6Watage3MgrFi = .text:0x80356168; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Watage3ObjFv = .text:0x803561C8; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game6Watage3ObjFv = .text:0x803562B4; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game6Watage3MgrFi = .text:0x80356344; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game7Tukushi3MgrFv = .text:0x80356354; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Tukushi3MgrFv = .text:0x8035641C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Tukushi3MgrFPv = .text:0x80356424; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Tukushi3MgrFi = .text:0x80356450; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Tukushi3ObjFv = .text:0x803564B0; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Tukushi3ObjFv = .text:0x8035659C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Tukushi3MgrFi = .text:0x8035662C; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game7Tukushi3ObjFv = .text:0x8035663C; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game7Tukushi3ObjFRQ23Sys8Cylinder = .text:0x80356670; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game7Tukushi3ObjFv = .text:0x803566DC; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8Wakame_l3MgrFv = .text:0x803566E4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_l3MgrFv = .text:0x803567AC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Wakame_l3MgrFPv = .text:0x803567B4; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8Wakame_l3MgrFi = .text:0x803567E0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Wakame_l3ObjFv = .text:0x80356840; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8Wakame_l3ObjFv = .text:0x8035692C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8Wakame_l3MgrFi = .text:0x803569BC; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game8Wakame_l3ObjFv = .text:0x803569CC; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game8Wakame_l3ObjFRQ23Sys8Cylinder = .text:0x80356A00; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_l3ObjFv = .text:0x80356A6C; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game8Wakame_s3MgrFv = .text:0x80356A74; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_s3MgrFv = .text:0x80356B3C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game8Wakame_s3MgrFPv = .text:0x80356B44; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game8Wakame_s3MgrFi = .text:0x80356B70; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8Wakame_s3ObjFv = .text:0x80356BD0; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game8Wakame_s3ObjFv = .text:0x80356CBC; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game8Wakame_s3MgrFi = .text:0x80356D4C; // type:function size:0x10 scope:weak align:4 +setParameters__Q34Game8Wakame_s3ObjFv = .text:0x80356D5C; // type:function size:0x34 scope:weak align:4 +getLODCylinder__Q34Game8Wakame_s3ObjFRQ23Sys8Cylinder = .text:0x80356D90; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game8Wakame_s3ObjFv = .text:0x80356DFC; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11KareOoinu_l3MgrFv = .text:0x80356E04; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_l3MgrFv = .text:0x80356ECC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11KareOoinu_l3MgrFPv = .text:0x80356ED4; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game11KareOoinu_l3MgrFi = .text:0x80356F00; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11KareOoinu_l3ObjFv = .text:0x80356F60; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game11KareOoinu_l3ObjFv = .text:0x8035704C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game11KareOoinu_l3MgrFi = .text:0x803570DC; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_l3ObjFv = .text:0x803570EC; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game7Ooinu_l3MgrFv = .text:0x803570F4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_l3MgrFv = .text:0x803571BC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Ooinu_l3MgrFPv = .text:0x803571C4; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Ooinu_l3MgrFi = .text:0x803571F0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Ooinu_l3ObjFv = .text:0x80357250; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Ooinu_l3ObjFv = .text:0x8035733C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Ooinu_l3MgrFi = .text:0x803573CC; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_l3ObjFv = .text:0x803573DC; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game11KareOoinu_s3MgrFv = .text:0x803573E4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_s3MgrFv = .text:0x803574AC; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game11KareOoinu_s3MgrFPv = .text:0x803574B4; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game11KareOoinu_s3MgrFi = .text:0x803574E0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11KareOoinu_s3ObjFv = .text:0x80357540; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game11KareOoinu_s3ObjFv = .text:0x8035762C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game11KareOoinu_s3MgrFi = .text:0x803576BC; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game11KareOoinu_s3ObjFv = .text:0x803576CC; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game7Ooinu_s3MgrFv = .text:0x803576D4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_s3MgrFv = .text:0x8035779C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Ooinu_s3MgrFPv = .text:0x803577A4; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Ooinu_s3MgrFi = .text:0x803577D0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Ooinu_s3ObjFv = .text:0x80357830; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Ooinu_s3ObjFv = .text:0x8035791C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Ooinu_s3MgrFi = .text:0x803579AC; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game7Ooinu_s3ObjFv = .text:0x803579BC; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game12HikariKinoko3MgrFv = .text:0x803579C4; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game12HikariKinoko3MgrFv = .text:0x80357A8C; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game12HikariKinoko3MgrFPv = .text:0x80357A94; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game12HikariKinoko3MgrFi = .text:0x80357AC0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game12HikariKinoko3ObjFv = .text:0x80357B20; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game12HikariKinoko3ObjFv = .text:0x80357C0C; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game12HikariKinoko3MgrFi = .text:0x80357C9C; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game6Clover3MgrFv = .text:0x80357CAC; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game6Clover3MgrFv = .text:0x80357D74; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game6Clover3MgrFPv = .text:0x80357D7C; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game6Clover3MgrFi = .text:0x80357DA8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Clover3ObjFv = .text:0x80357E08; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game6Clover3ObjFv = .text:0x80357EF4; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game6Clover3MgrFi = .text:0x80357F84; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game6Clover3ObjFv = .text:0x80357F94; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game7Tanpopo3MgrFv = .text:0x80357F9C; // type:function size:0xC8 scope:weak align:4 +getEnemyTypeID__Q34Game7Tanpopo3MgrFv = .text:0x80358064; // type:function size:0x8 scope:weak align:4 +doLoadBmd__Q34Game7Tanpopo3MgrFPv = .text:0x8035806C; // type:function size:0x2C scope:weak align:4 +createObj__Q34Game7Tanpopo3MgrFi = .text:0x80358098; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game7Tanpopo3ObjFv = .text:0x803580F8; // type:function size:0xEC scope:weak align:4 +__ct__Q34Game7Tanpopo3ObjFv = .text:0x803581E4; // type:function size:0x90 scope:weak align:4 +getEnemy__Q34Game7Tanpopo3MgrFi = .text:0x80358274; // type:function size:0x10 scope:weak align:4 +getEnemyTypeID__Q34Game7Tanpopo3ObjFv = .text:0x80358284; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Tanpopo3MgrFv = .text:0x8035828C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game6Clover3MgrFv = .text:0x80358294; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game12HikariKinoko3MgrFv = .text:0x8035829C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Ooinu_s3MgrFv = .text:0x803582A4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11KareOoinu_s3MgrFv = .text:0x803582AC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Ooinu_l3MgrFv = .text:0x803582B4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11KareOoinu_l3MgrFv = .text:0x803582BC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Wakame_s3MgrFv = .text:0x803582C4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Wakame_l3MgrFv = .text:0x803582CC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game7Tukushi3MgrFv = .text:0x803582D4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game6Watage3MgrFv = .text:0x803582DC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8DiodeRed3MgrFv = .text:0x803582E4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game10DiodeGreen3MgrFv = .text:0x803582EC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game8Margaret3MgrFv = .text:0x803582F4; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game11Nekojarashi3MgrFv = .text:0x803582FC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q34Game9Chiyogami3MgrFv = .text:0x80358304; // type:function size:0x8 scope:weak align:4 +@704@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8035830C; // type:function size:0x14 scope:weak align:4 +@704@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x80358320; // type:function size:0x14 scope:weak align:4 +@704@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x80358334; // type:function size:0x14 scope:weak align:4 +@704@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80358348; // type:function size:0x14 scope:weak align:4 +@704@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8035835C; // type:function size:0x14 scope:weak align:4 +@704@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80358370; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q34Game6Zenmai3MgrFv = .text:0x80358384; // type:function size:0x8 scope:weak align:4 +setAnimMgr__Q34Game6Plants14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8035838C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Plants14ProperAnimatorFi = .text:0x80358394; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Plants14ProperAnimatorFv = .text:0x8035839C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Plants14ProperAnimatorFv = .text:0x803583F8; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game6Plants3ObjFv = .text:0x80358400; // type:function size:0x50 scope:global align:4 +birth__Q34Game6Plants3ObjFR10Vector3f = .text:0x80358450; // type:function size:0x20 scope:global align:4 +onInit__Q34Game6Plants3ObjFPQ24Game15CreatureInitArg = .text:0x80358470; // type:function size:0x1A8 scope:global align:4 +__ct__Q34Game6Plants3ObjFv = .text:0x80358618; // type:function size:0xEC scope:global align:4 +update__Q34Game6Plants3ObjFv = .text:0x80358704; // type:function size:0x48 scope:global align:4 +doAnimation__Q34Game6Plants3ObjFv = .text:0x8035874C; // type:function size:0x6C scope:global align:4 +doAnimationCullingOff__Q34Game6Plants3ObjFv = .text:0x803587B8; // type:function size:0x9C scope:global align:4 +doDebugDraw__Q34Game6Plants3ObjFR8Graphics = .text:0x80358854; // type:function size:0x20 scope:global align:4 +collisionCallback__Q34Game6Plants3ObjFRQ24Game9CollEvent = .text:0x80358874; // type:function size:0x150 scope:global align:4 +earthquakeCallBack__Q34Game6Plants3ObjFPQ24Game8Creaturef = .text:0x803589C4; // type:function size:0x60 scope:global align:4 +touched__Q34Game6Plants3ObjFv = .text:0x80358A24; // type:function size:0xA0 scope:global align:4 +touchedSE__Q34Game6Plants3ObjFPQ24Game4Navi = .text:0x80358AC4; // type:function size:0x40 scope:global align:4 +touchedSE__Q34Game12HikariKinoko3ObjFPQ24Game4Navi = .text:0x80358B04; // type:function size:0x40 scope:global align:4 +doEntry__Q34Game6Watage3ObjFv = .text:0x80358B44; // type:function size:0x48 scope:global align:4 +touched__Q34Game6Watage3ObjFv = .text:0x80358B8C; // type:function size:0x104 scope:global align:4 +doEntry__Q34Game11Nekojarashi3ObjFv = .text:0x80358C90; // type:function size:0x48 scope:global align:4 +touchedSE__Q34Game8DiodeRed3ObjFPQ24Game4Navi = .text:0x80358CD8; // type:function size:0x40 scope:global align:4 +doEntry__Q34Game8DiodeRed3ObjFv = .text:0x80358D18; // type:function size:0x48 scope:global align:4 +touchedSE__Q34Game10DiodeGreen3ObjFPQ24Game4Navi = .text:0x80358D60; // type:function size:0x40 scope:global align:4 +doEntry__Q34Game10DiodeGreen3ObjFv = .text:0x80358DA0; // type:function size:0x48 scope:global align:4 +setParameters__Q34Game10DiodeGreen3ObjFv = .text:0x80358DE8; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game10DiodeGreen3ObjFRQ23Sys8Cylinder = .text:0x80358E40; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game10DiodeGreen3ObjFv = .text:0x80358EAC; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game8DiodeRed3ObjFv = .text:0x80358EB4; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game8DiodeRed3ObjFRQ23Sys8Cylinder = .text:0x80358F0C; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game8DiodeRed3ObjFv = .text:0x80358F78; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game11Nekojarashi3ObjFv = .text:0x80358F80; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game11Nekojarashi3ObjFRQ23Sys8Cylinder = .text:0x80358FD8; // type:function size:0x114 scope:weak align:4 +getEnemyTypeID__Q34Game11Nekojarashi3ObjFv = .text:0x803590EC; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game6Watage3ObjFv = .text:0x803590F4; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game12HikariKinoko3ObjFv = .text:0x803590FC; // type:function size:0x58 scope:weak align:4 +getLODCylinder__Q34Game12HikariKinoko3ObjFRQ23Sys8Cylinder = .text:0x80359154; // type:function size:0x6C scope:weak align:4 +getEnemyTypeID__Q34Game12HikariKinoko3ObjFv = .text:0x803591C0; // type:function size:0x8 scope:weak align:4 +__sinit_plants_cpp = .text:0x803591C8; // type:function size:0x28 scope:local align:4 +init__Q34Game10KingChappy3FSMFPQ24Game9EnemyBase = .text:0x803591F0; // type:function size:0x204 scope:global align:4 +__ct__Q34Game10KingChappy9StateWalkFi = .text:0x803593F4; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80359430; // type:function size:0x80 scope:global align:4 +exec__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBase = .text:0x803594B0; // type:function size:0x1A4 scope:global align:4 +cleanup__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBase = .text:0x80359654; // type:function size:0x28 scope:global align:4 +__ct__Q34Game10KingChappy11StateAttackFi = .text:0x8035967C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803596B8; // type:function size:0x6C scope:global align:4 +exec__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBase = .text:0x80359724; // type:function size:0x6AC scope:global align:4 +cleanup__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBase = .text:0x80359DD0; // type:function size:0x3C scope:global align:4 +__ct__Q34Game10KingChappy9StateDeadFi = .text:0x80359E0C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80359E48; // type:function size:0xCC scope:global align:4 +exec__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBase = .text:0x80359F14; // type:function size:0xDC scope:global align:4 +cleanup__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBase = .text:0x80359FF0; // type:function size:0x28 scope:global align:4 +__ct__Q34Game10KingChappy10StateFlickFi = .text:0x8035A018; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035A054; // type:function size:0x60 scope:global align:4 +exec__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBase = .text:0x8035A0B4; // type:function size:0x8EC scope:global align:4 +cleanup__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBase = .text:0x8035A9A0; // type:function size:0x10 scope:global align:4 +__ct__Q34Game10KingChappy11StateWarCryFi = .text:0x8035A9B0; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035A9EC; // type:function size:0x54 scope:global align:4 +exec__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBase = .text:0x8035AA40; // type:function size:0x6D0 scope:global align:4 +cleanup__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBase = .text:0x8035B110; // type:function size:0x40 scope:global align:4 +__ct__Q34Game10KingChappy11StateDamageFi = .text:0x8035B150; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B18C; // type:function size:0x40 scope:global align:4 +exec__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBase = .text:0x8035B1CC; // type:function size:0x1B4 scope:global align:4 +cleanup__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBase = .text:0x8035B380; // type:function size:0x40 scope:global align:4 +__ct__Q34Game10KingChappy9StateTurnFi = .text:0x8035B3C0; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B3FC; // type:function size:0x48 scope:global align:4 +exec__Q34Game10KingChappy9StateTurnFPQ24Game9EnemyBase = .text:0x8035B444; // type:function size:0xF8 scope:global align:4 +__ct__Q34Game10KingChappy8StateEatFi = .text:0x8035B53C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B578; // type:function size:0x50 scope:global align:4 +exec__Q34Game10KingChappy8StateEatFPQ24Game9EnemyBase = .text:0x8035B5C8; // type:function size:0xA4 scope:global align:4 +__ct__Q34Game10KingChappy9StateHideFi = .text:0x8035B66C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B6A8; // type:function size:0xBC scope:global align:4 +exec__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBase = .text:0x8035B764; // type:function size:0x1B8 scope:global align:4 +cleanup__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBase = .text:0x8035B91C; // type:function size:0x54 scope:global align:4 +__ct__Q34Game10KingChappy13StateHideWaitFi = .text:0x8035B970; // type:function size:0x40 scope:global align:4 +init__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035B9B0; // type:function size:0x80 scope:global align:4 +exec__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBase = .text:0x8035BA30; // type:function size:0x18C scope:global align:4 +cleanup__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBase = .text:0x8035BBBC; // type:function size:0x40 scope:global align:4 +__ct__Q34Game10KingChappy11StateAppearFi = .text:0x8035BBFC; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035BC38; // type:function size:0x2EC scope:global align:4 +exec__Q34Game10KingChappy11StateAppearFPQ24Game9EnemyBase = .text:0x8035BF24; // type:function size:0x19C scope:global align:4 +__ct__Q34Game10KingChappy12StateCautionFi = .text:0x8035C0C0; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy12StateCautionFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035C0FC; // type:function size:0x2C scope:global align:4 +exec__Q34Game10KingChappy12StateCautionFPQ24Game9EnemyBase = .text:0x8035C128; // type:function size:0x64 scope:global align:4 +__ct__Q34Game10KingChappy12StateSwallowFi = .text:0x8035C18C; // type:function size:0x3C scope:global align:4 +init__Q34Game10KingChappy12StateSwallowFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8035C1C8; // type:function size:0x2C scope:global align:4 +exec__Q34Game10KingChappy12StateSwallowFPQ24Game9EnemyBase = .text:0x8035C1F4; // type:function size:0x94 scope:global align:4 +getName__Q23efx12ArgRotYScaleFv = .text:0x8035C288; // type:function size:0xC scope:weak align:4 +__sinit_kingChappyState_cpp = .text:0x8035C294; // type:function size:0x28 scope:local align:4 +__ct__Q34Game10KingChappy3MgrFiUc = .text:0x8035C2BC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game10KingChappy3MgrFv = .text:0x8035C30C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game10KingChappy5ParmsFv = .text:0x8035C354; // type:function size:0x6C scope:weak align:4 +__ct__Q44Game10KingChappy5Parms11ProperParmsFv = .text:0x8035C3C0; // type:function size:0x5F4 scope:weak align:4 +birth__Q34Game10KingChappy3MgrFRQ24Game13EnemyBirthArg = .text:0x8035C9B4; // type:function size:0x20 scope:global align:4 +createModel__Q34Game10KingChappy3MgrFv = .text:0x8035C9D4; // type:function size:0x20 scope:global align:4 +requestState__Q34Game10KingChappy3MgrFPQ34Game10KingChappy3Obji = .text:0x8035C9F4; // type:function size:0xEC scope:global align:4 +getEnemy__Q34Game10KingChappy3MgrFi = .text:0x8035CAE0; // type:function size:0x10 scope:weak align:4 +__dt__Q34Game10KingChappy3MgrFv = .text:0x8035CAF0; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game10KingChappy3MgrFv = .text:0x8035CBA0; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game10KingChappy3MgrFi = .text:0x8035CBA8; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game10KingChappy3ObjFv = .text:0x8035CC08; // type:function size:0xBC scope:weak align:4 +read__Q34Game10KingChappy5ParmsFR6Stream = .text:0x8035CCC4; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game10KingChappy3MgrFv = .text:0x8035CD14; // type:function size:0x8 scope:weak align:4 +lFootCallBack__Q24Game10KingChappyFP8J3DJointi = .text:0x8035CD1C; // type:function size:0x38 scope:local align:4 +rFootCallBack__Q24Game10KingChappyFP8J3DJointi = .text:0x8035CD54; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game10KingChappy3ObjFv = .text:0x8035CD8C; // type:function size:0xA4 scope:global align:4 +birth__Q34Game10KingChappy3ObjFR10Vector3f = .text:0x8035CE30; // type:function size:0x20 scope:global align:4 +onInit__Q34Game10KingChappy3ObjFPQ24Game15CreatureInitArg = .text:0x8035CE50; // type:function size:0x448 scope:global align:4 +__ct__Q34Game10KingChappy3ObjFv = .text:0x8035D298; // type:function size:0x5AC scope:global align:4 +__ct__Q23efx14TKchDeadYodareFPA4_f = .text:0x8035D844; // type:function size:0x1D8 scope:weak align:4 +__dt__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x8035DA1C; // type:function size:0x148 scope:weak align:4 +__dt__Q23efx27TParticleCallBack_KchYodareFv = .text:0x8035DB64; // type:function size:0xEC scope:weak align:4 +__dt__Q23efx16TKchYodareHitWatFv = .text:0x8035DC50; // type:function size:0x84 scope:weak align:4 +__dt__Q23efx15TKchYodareHitGrFv = .text:0x8035DCD4; // type:function size:0x84 scope:weak align:4 +__ct__Q23efx16TKchAttackYodareFPA4_f = .text:0x8035DD58; // type:function size:0x1D8 scope:weak align:4 +__ct__Q23efx10TKchYodareFPA4_f = .text:0x8035DF30; // type:function size:0x1D8 scope:weak align:4 +setFSM__Q34Game10KingChappy3ObjFPQ34Game10KingChappy3FSM = .text:0x8035E108; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game10KingChappy3ObjFv = .text:0x8035E154; // type:function size:0x1A0 scope:global align:4 +doDirectDraw__Q34Game10KingChappy3ObjFR8Graphics = .text:0x8035E2F4; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game10KingChappy3ObjFR8Graphics = .text:0x8035E2F8; // type:function size:0x20 scope:global align:4 +doAnimationUpdateAnimator__Q34Game10KingChappy3ObjFv = .text:0x8035E318; // type:function size:0xB8 scope:global align:4 +onKill__Q34Game10KingChappy3ObjFPQ24Game15CreatureKillArg = .text:0x8035E3D0; // type:function size:0x34 scope:global align:4 +doAnimationCullingOff__Q34Game10KingChappy3ObjFv = .text:0x8035E404; // type:function size:0x588 scope:global align:4 +doSimulation__Q34Game10KingChappy3ObjFf = .text:0x8035E98C; // type:function size:0x40 scope:global align:4 +getShadowParam__Q34Game10KingChappy3ObjFRQ24Game11ShadowParam = .text:0x8035E9CC; // type:function size:0x98 scope:global align:4 +damageCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8035EA64; // type:function size:0x158 scope:global align:4 +collisionCallback__Q34Game10KingChappy3ObjFRQ24Game9CollEvent = .text:0x8035EBBC; // type:function size:0x30 scope:global align:4 +wallCallback__Q34Game10KingChappy3ObjFRCQ24Game8MoveInfo = .text:0x8035EBEC; // type:function size:0x30 scope:global align:4 +bombCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8035EC1C; // type:function size:0x28 scope:global align:4 +inWaterCallback__Q34Game10KingChappy3ObjFPQ24Game8WaterBox = .text:0x8035EC44; // type:function size:0x4C scope:global align:4 +startCarcassMotion__Q34Game10KingChappy3ObjFv = .text:0x8035EC90; // type:function size:0x28 scope:global align:4 +initWalkSmokeEffect__Q34Game10KingChappy3ObjFv = .text:0x8035ECB8; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game10KingChappy3ObjFv = .text:0x8035ED1C; // type:function size:0x8 scope:global align:4 +doStartStoneState__Q34Game10KingChappy3ObjFv = .text:0x8035ED24; // type:function size:0x74 scope:global align:4 +doFinishStoneState__Q34Game10KingChappy3ObjFv = .text:0x8035ED98; // type:function size:0xA0 scope:global align:4 +doStartMovie__Q34Game10KingChappy3ObjFv = .text:0x8035EE38; // type:function size:0x13C scope:global align:4 +startDemoDrawOff__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x8035EF74; // type:function size:0x5C scope:weak align:4 +doEndMovie__Q34Game10KingChappy3ObjFv = .text:0x8035EFD0; // type:function size:0x13C scope:global align:4 +endDemoDrawOn__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x8035F10C; // type:function size:0x5C scope:weak align:4 +initMouthSlots__Q34Game10KingChappy3ObjFv = .text:0x8035F168; // type:function size:0x134 scope:global align:4 +eatBomb__Q34Game10KingChappy3ObjFv = .text:0x8035F29C; // type:function size:0x1A4 scope:global align:4 +getMouthSlots__Q34Game10KingChappy3ObjFv = .text:0x8035F440; // type:function size:0x8 scope:weak align:4 +getPikminInMouth__Q34Game10KingChappy3ObjFb = .text:0x8035F448; // type:function size:0x2C8 scope:global align:4 +getTonguePosVel__Q34Game10KingChappy3ObjFR10Vector3R10Vector3 = .text:0x8035F710; // type:function size:0x11C scope:global align:4 +setNextGoal__Q34Game10KingChappy3ObjFv = .text:0x8035F82C; // type:function size:0x1F0 scope:global align:4 +searchTarget__Q34Game10KingChappy3ObjFv = .text:0x8035FA1C; // type:function size:0x500 scope:global align:4 +isOutOfTerritory__Q34Game10KingChappy3ObjFf = .text:0x8035FF1C; // type:function size:0x40 scope:global align:4 +forceTransit__Q34Game10KingChappy3ObjFi = .text:0x8035FF5C; // type:function size:0xDC scope:global align:4 +requestTransit__Q34Game10KingChappy3ObjFi = .text:0x80360038; // type:function size:0x30 scope:global align:4 +walkFunc__Q34Game10KingChappy3ObjFv = .text:0x80360068; // type:function size:0x12C scope:global align:4 +turnFunc__Q34Game10KingChappy3ObjFf = .text:0x80360194; // type:function size:0x1AC scope:global align:4 +isReachToGoal__Q34Game10KingChappy3ObjFf = .text:0x80360340; // type:function size:0x34 scope:global align:4 +checkAttack__Q34Game10KingChappy3ObjFb = .text:0x80360374; // type:function size:0x844 scope:global align:4 +checkFlick__Q34Game10KingChappy3ObjFb = .text:0x80360BB8; // type:function size:0x42C scope:global align:4 +checkDead__Q34Game10KingChappy3ObjFb = .text:0x80360FE4; // type:function size:0xEC scope:global align:4 +checkTurn__Q34Game10KingChappy3ObjFb = .text:0x803610D0; // type:function size:0x128 scope:global align:4 +startMotionSelf__Q34Game10KingChappy3ObjFiPQ28SysShape14MotionListener = .text:0x803611F8; // type:function size:0x13C scope:global align:4 +endBlendAnimation__Q34Game10KingChappy3ObjFv = .text:0x80361334; // type:function size:0x98 scope:global align:4 +leftFootMtxCalc__Q34Game10KingChappy3ObjFv = .text:0x803613CC; // type:function size:0x44 scope:global align:4 +rightFootMtxCalc__Q34Game10KingChappy3ObjFv = .text:0x80361410; // type:function size:0x44 scope:global align:4 +footMtxCalc__Q34Game10KingChappy3ObjFPA4_fP10Vector3Pf = .text:0x80361454; // type:function size:0x190 scope:global align:4 +resetFootPos__Q34Game10KingChappy3ObjFv = .text:0x803615E4; // type:function size:0x78 scope:global align:4 +fadeAllEffect__Q34Game10KingChappy3ObjFv = .text:0x8036165C; // type:function size:0xDC scope:global align:4 +fade__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x80361738; // type:function size:0x54 scope:weak align:4 +createEffect__Q34Game10KingChappy3ObjFi = .text:0x8036178C; // type:function size:0x474 scope:global align:4 +fadeEffect__Q34Game10KingChappy3ObjFi = .text:0x80361C00; // type:function size:0x140 scope:global align:4 +createBounceEffect__Q34Game10KingChappy3ObjFv = .text:0x80361D40; // type:function size:0xC8 scope:global align:4 +getName__Q23efx12ArgKchYodareFv = .text:0x80361E08; // type:function size:0xC scope:weak align:4 +__dt__Q23efx10TKchYodareFv = .text:0x80361E14; // type:function size:0x160 scope:weak align:4 +forceKill__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x80361F74; // type:function size:0x54 scope:weak align:4 +__dt__Q23efx16TKchAttackYodareFv = .text:0x80361FC8; // type:function size:0x160 scope:weak align:4 +__dt__Q23efx14TKchDeadYodareFv = .text:0x80362128; // type:function size:0x160 scope:weak align:4 +__dt__Q23efx13TKchSmokeHanaFv = .text:0x80362288; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TKchCryIndFv = .text:0x80362324; // type:function size:0x9C scope:weak align:4 +__dt__Q34Game10KingChappy14ProperAnimatorFv = .text:0x803623C0; // type:function size:0x6C scope:weak align:4 +setInitialSetting__Q34Game10KingChappy3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8036242C; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game10KingChappy3ObjFR10Vector3R10Vector3 = .text:0x80362430; // type:function size:0x4 scope:weak align:4 +createEfxHamon__Q34Game10KingChappy3ObjFv = .text:0x80362434; // type:function size:0x3C scope:weak align:4 +updateEfxHamon__Q34Game10KingChappy3ObjFv = .text:0x80362470; // type:function size:0x54 scope:weak align:4 +isUnderground__Q34Game10KingChappy3ObjFv = .text:0x803624C4; // type:function size:0x20 scope:weak align:4 +getCellRadius__Q34Game10KingChappy3ObjFv = .text:0x803624E4; // type:function size:0x14 scope:weak align:4 +getBodyRadius__Q34Game10KingChappy3ObjFv = .text:0x803624F8; // type:function size:0x14 scope:weak align:4 +pressCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8036250C; // type:function size:0x30 scope:weak align:4 +eatWhitePikminCallBack__Q34Game10KingChappy3ObjFPQ24Game8Creaturef = .text:0x8036253C; // type:function size:0x28 scope:weak align:4 +getEnemyTypeID__Q34Game10KingChappy3ObjFv = .text:0x80362564; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game10KingChappy3ObjFv = .text:0x8036256C; // type:function size:0x8 scope:weak align:4 +__sinit_kingChappy_cpp = .text:0x80362574; // type:function size:0x28 scope:local align:4 +@920@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8036259C; // type:function size:0x14 scope:weak align:4 +@920@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803625B0; // type:function size:0x14 scope:weak align:4 +@920@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x803625C4; // type:function size:0x14 scope:weak align:4 +@920@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x803625D8; // type:function size:0x14 scope:weak align:4 +@920@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x803625EC; // type:function size:0x14 scope:weak align:4 +@920@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80362600; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx10TKchCryIndFv = .text:0x80362614; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TKchSmokeHanaFv = .text:0x8036261C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TKchYodareHitGrFv = .text:0x80362624; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TKchYodareHitWatFv = .text:0x8036262C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TKchDeadYodareFv = .text:0x80362634; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx16TKchAttackYodareFv = .text:0x8036263C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TKchYodareFv = .text:0x80362644; // type:function size:0x8 scope:weak align:4 +init__Q34Game6Miulin3FSMFPQ24Game9EnemyBase = .text:0x8036264C; // type:function size:0x150 scope:global align:4 +__ct__Q34Game6Miulin9StateWaitFi = .text:0x8036279C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803627D8; // type:function size:0x8C scope:global align:4 +exec__Q34Game6Miulin9StateWaitFPQ24Game9EnemyBase = .text:0x80362864; // type:function size:0x118 scope:global align:4 +__ct__Q34Game6Miulin9StateWalkFi = .text:0x8036297C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803629B8; // type:function size:0x16C scope:global align:4 +exec__Q34Game6Miulin9StateWalkFPQ24Game9EnemyBase = .text:0x80362B24; // type:function size:0x364 scope:global align:4 +__ct__Q34Game6Miulin16StateAttackStartFi = .text:0x80362E88; // type:function size:0x40 scope:global align:4 +init__Q34Game6Miulin16StateAttackStartFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80362EC8; // type:function size:0x4C scope:global align:4 +exec__Q34Game6Miulin16StateAttackStartFPQ24Game9EnemyBase = .text:0x80362F14; // type:function size:0x50 scope:global align:4 +__ct__Q34Game6Miulin14StateAttackingFi = .text:0x80362F64; // type:function size:0x40 scope:global align:4 +init__Q34Game6Miulin14StateAttackingFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80362FA4; // type:function size:0x58 scope:global align:4 +exec__Q34Game6Miulin14StateAttackingFPQ24Game9EnemyBase = .text:0x80362FFC; // type:function size:0x82C scope:global align:4 +__ct__Q34Game6Miulin14StateAttackEndFi = .text:0x80363828; // type:function size:0x40 scope:global align:4 +init__Q34Game6Miulin14StateAttackEndFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80363868; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Miulin14StateAttackEndFPQ24Game9EnemyBase = .text:0x803638BC; // type:function size:0xAC scope:global align:4 +__ct__Q34Game6Miulin9StateTurnFi = .text:0x80363968; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803639A4; // type:function size:0xF4 scope:global align:4 +exec__Q34Game6Miulin9StateTurnFPQ24Game9EnemyBase = .text:0x80363A98; // type:function size:0x178 scope:global align:4 +__ct__Q34Game6Miulin10StateFlickFi = .text:0x80363C10; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80363C4C; // type:function size:0x4C scope:global align:4 +exec__Q34Game6Miulin10StateFlickFPQ24Game9EnemyBase = .text:0x80363C98; // type:function size:0x190 scope:global align:4 +__ct__Q34Game6Miulin9StateDeadFi = .text:0x80363E28; // type:function size:0x3C scope:global align:4 +init__Q34Game6Miulin9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80363E64; // type:function size:0x54 scope:global align:4 +exec__Q34Game6Miulin9StateDeadFPQ24Game9EnemyBase = .text:0x80363EB8; // type:function size:0x60 scope:global align:4 +setAnimMgr__Q34Game6Miulin14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80363F18; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Miulin14ProperAnimatorFi = .text:0x80363F20; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Miulin14ProperAnimatorFv = .text:0x80363F28; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Miulin14ProperAnimatorFv = .text:0x80363F84; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Miulin3MgrFiUc = .text:0x80363F8C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Miulin3MgrFv = .text:0x80363FDC; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Miulin5ParmsFv = .text:0x80364024; // type:function size:0x208 scope:weak align:4 +birth__Q34Game6Miulin3MgrFRQ24Game13EnemyBirthArg = .text:0x8036422C; // type:function size:0x20 scope:global align:4 +__dt__Q34Game6Miulin3MgrFv = .text:0x8036424C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game6Miulin3MgrFv = .text:0x803642FC; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game6Miulin3MgrFi = .text:0x80364304; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Miulin3ObjFv = .text:0x80364364; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Miulin3MgrFi = .text:0x80364420; // type:function size:0x10 scope:weak align:4 +read__Q34Game6Miulin5ParmsFR6Stream = .text:0x80364430; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Miulin3MgrFv = .text:0x80364480; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game6Miulin3ObjFv = .text:0x80364488; // type:function size:0x20 scope:global align:4 +birth__Q34Game6Miulin3ObjFR10Vector3f = .text:0x803644A8; // type:function size:0xB0 scope:global align:4 +onInit__Q34Game6Miulin3ObjFPQ24Game15CreatureInitArg = .text:0x80364558; // type:function size:0xB4 scope:global align:4 +__ct__Q34Game6Miulin3ObjFv = .text:0x8036460C; // type:function size:0x140 scope:global align:4 +setFSM__Q34Game6Miulin3ObjFPQ34Game6Miulin3FSM = .text:0x8036474C; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game6Miulin3ObjFv = .text:0x80364798; // type:function size:0x80 scope:global align:4 +doDirectDraw__Q34Game6Miulin3ObjFR8Graphics = .text:0x80364818; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Miulin3ObjFR8Graphics = .text:0x8036481C; // type:function size:0x20 scope:global align:4 +getShadowParam__Q34Game6Miulin3ObjFRQ24Game11ShadowParam = .text:0x8036483C; // type:function size:0x88 scope:global align:4 +doSimulation__Q34Game6Miulin3ObjFf = .text:0x803648C4; // type:function size:0x40 scope:global align:4 +wallCallback__Q34Game6Miulin3ObjFRCQ24Game8MoveInfo = .text:0x80364904; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game6Miulin3ObjFv = .text:0x80364930; // type:function size:0x28 scope:global align:4 +initWalkSmokeEffect__Q34Game6Miulin3ObjFv = .text:0x80364958; // type:function size:0x6C scope:global align:4 +getWalkSmokeEffectMgr__Q34Game6Miulin3ObjFv = .text:0x803649C4; // type:function size:0x8 scope:global align:4 +isAttackStart__Q34Game6Miulin3ObjFv = .text:0x803649CC; // type:function size:0x534 scope:global align:4 +isFindTarget__Q34Game6Miulin3ObjFv = .text:0x80364F00; // type:function size:0x4A4 scope:global align:4 +isOutOfTerritory__Q34Game6Miulin3ObjFv = .text:0x803653A4; // type:function size:0x3C scope:global align:4 +isProhibitedSearch__Q34Game6Miulin3ObjFv = .text:0x803653E0; // type:function size:0x88 scope:global align:4 +isStartWalk__Q34Game6Miulin3ObjFv = .text:0x80365468; // type:function size:0xAC scope:global align:4 +setReturnState__Q34Game6Miulin3ObjFv = .text:0x80365514; // type:function size:0x2C scope:global align:4 +walkFunc__Q34Game6Miulin3ObjFv = .text:0x80365540; // type:function size:0x270 scope:global align:4 +turnFunc__Q34Game6Miulin3ObjFf = .text:0x803657B0; // type:function size:0x17C scope:global align:4 +isReachToGoal__Q34Game6Miulin3ObjFf = .text:0x8036592C; // type:function size:0x50 scope:global align:4 +setNextGoal__Q34Game6Miulin3ObjFv = .text:0x8036597C; // type:function size:0x15C scope:global align:4 +nextTargetTurnCheck__Q34Game6Miulin3ObjFv = .text:0x80365AD8; // type:function size:0x2E0 scope:global align:4 +isNowCaution__Q34Game6Miulin3ObjFv = .text:0x80365DB8; // type:function size:0xD0 scope:global align:4 +landEffect__Q34Game6Miulin3ObjFv = .text:0x80365E88; // type:function size:0x28 scope:global align:4 +attackEffect__Q34Game6Miulin3ObjFR10Vector3 = .text:0x80365EB0; // type:function size:0x144 scope:global align:4 +setInitialSetting__Q34Game6Miulin3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80365FF4; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game6Miulin3ObjFR10Vector3R10Vector3 = .text:0x80365FF8; // type:function size:0x4 scope:weak align:4 +getEnemyTypeID__Q34Game6Miulin3ObjFv = .text:0x80365FFC; // type:function size:0x8 scope:weak align:4 +getDownSmokeScale__Q34Game6Miulin3ObjFv = .text:0x80366004; // type:function size:0x8 scope:weak align:4 +getGoalPos__Q34Game6Miulin3ObjFv = .text:0x8036600C; // type:function size:0x1C scope:weak align:4 +init__Q34Game6Jigumo3FSMFPQ24Game9EnemyBase = .text:0x80366028; // type:function size:0x204 scope:global align:4 +__ct__Q34Game6Jigumo9StateWaitFi = .text:0x8036622C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366268; // type:function size:0x60 scope:global align:4 +exec__Q34Game6Jigumo9StateWaitFPQ24Game9EnemyBase = .text:0x803662C8; // type:function size:0x100 scope:global align:4 +__ct__Q34Game6Jigumo11StateAppearFi = .text:0x803663C8; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366404; // type:function size:0x138 scope:global align:4 +exec__Q34Game6Jigumo11StateAppearFPQ24Game9EnemyBase = .text:0x8036653C; // type:function size:0x324 scope:global align:4 +__ct__Q34Game6Jigumo9StateHideFi = .text:0x80366860; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036689C; // type:function size:0x128 scope:global align:4 +exec__Q34Game6Jigumo9StateHideFPQ24Game9EnemyBase = .text:0x803669C4; // type:function size:0x170 scope:global align:4 +__ct__Q34Game6Jigumo9StateDeadFi = .text:0x80366B34; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366B70; // type:function size:0x5C scope:global align:4 +exec__Q34Game6Jigumo9StateDeadFPQ24Game9EnemyBase = .text:0x80366BCC; // type:function size:0xC0 scope:global align:4 +__ct__Q34Game6Jigumo11StateAttackFi = .text:0x80366C8C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80366CC8; // type:function size:0xBC scope:global align:4 +exec__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBase = .text:0x80366D84; // type:function size:0x488 scope:global align:4 +getGoalPos__Q34Game6Jigumo3ObjFv = .text:0x8036720C; // type:function size:0x1C scope:weak align:4 +cleanup__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBase = .text:0x80367228; // type:function size:0x38 scope:global align:4 +__ct__Q34Game6Jigumo9StateMissFi = .text:0x80367260; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo9StateMissFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036729C; // type:function size:0x4C scope:global align:4 +exec__Q34Game6Jigumo9StateMissFPQ24Game9EnemyBase = .text:0x803672E8; // type:function size:0x200 scope:global align:4 +__ct__Q34Game6Jigumo11StateReturnFi = .text:0x803674E8; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367524; // type:function size:0x40 scope:global align:4 +exec__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBase = .text:0x80367564; // type:function size:0x174 scope:global align:4 +cleanup__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBase = .text:0x803676D8; // type:function size:0x2C scope:global align:4 +__ct__Q34Game6Jigumo10StateCarryFi = .text:0x80367704; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367740; // type:function size:0x40 scope:global align:4 +exec__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBase = .text:0x80367780; // type:function size:0x190 scope:global align:4 +cleanup__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBase = .text:0x80367910; // type:function size:0x2C scope:global align:4 +__ct__Q34Game6Jigumo10StateFlickFi = .text:0x8036793C; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367978; // type:function size:0xCC scope:global align:4 +exec__Q34Game6Jigumo10StateFlickFPQ24Game9EnemyBase = .text:0x80367A44; // type:function size:0xFC scope:global align:4 +__ct__Q34Game6Jigumo8StateEatFi = .text:0x80367B40; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367B7C; // type:function size:0x58 scope:global align:4 +exec__Q34Game6Jigumo8StateEatFPQ24Game9EnemyBase = .text:0x80367BD4; // type:function size:0x120 scope:global align:4 +__ct__Q34Game6Jigumo11StateSearchFi = .text:0x80367CF4; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo11StateSearchFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80367D30; // type:function size:0x88 scope:global align:4 +exec__Q34Game6Jigumo11StateSearchFPQ24Game9EnemyBase = .text:0x80367DB8; // type:function size:0x614 scope:global align:4 +__ct__Q34Game6Jigumo12StateSAttackFi = .text:0x803683CC; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80368408; // type:function size:0x58 scope:global align:4 +exec__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBase = .text:0x80368460; // type:function size:0x238 scope:global align:4 +cleanup__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBase = .text:0x80368698; // type:function size:0x24 scope:global align:4 +__ct__Q34Game6Jigumo10StateSMissFi = .text:0x803686BC; // type:function size:0x3C scope:global align:4 +init__Q34Game6Jigumo10StateSMissFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803686F8; // type:function size:0x2C scope:global align:4 +exec__Q34Game6Jigumo10StateSMissFPQ24Game9EnemyBase = .text:0x80368724; // type:function size:0x50 scope:global align:4 +satisfy__Q34Game6Jigumo24ConditionHeightCheckPikiFPQ24Game4Piki = .text:0x80368774; // type:function size:0xF0 scope:weak align:4 +__sinit_jigumoState_cpp = .text:0x80368864; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game6Jigumo14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8036888C; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game6Jigumo14ProperAnimatorFi = .text:0x80368894; // type:function size:0x8 scope:global align:4 +__dt__Q34Game6Jigumo14ProperAnimatorFv = .text:0x8036889C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game6Jigumo14ProperAnimatorFv = .text:0x803688F8; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game6Jigumo3MgrFiUc = .text:0x80368900; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game6Jigumo3MgrFv = .text:0x80368950; // type:function size:0x48 scope:global align:4 +__ct__Q34Game6Jigumo5ParmsFv = .text:0x80368998; // type:function size:0x24C scope:weak align:4 +birth__Q34Game6Jigumo3MgrFRQ24Game13EnemyBirthArg = .text:0x80368BE4; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game6Jigumo3MgrFv = .text:0x80368C04; // type:function size:0x68 scope:global align:4 +__dt__Q34Game6Jigumo3MgrFv = .text:0x80368C6C; // type:function size:0xB0 scope:weak align:4 +doLoadBmd__Q34Game6Jigumo3MgrFPv = .text:0x80368D1C; // type:function size:0x2C scope:weak align:4 +getEnemyTypeID__Q34Game6Jigumo3MgrFv = .text:0x80368D48; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game6Jigumo3MgrFi = .text:0x80368D50; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game6Jigumo3ObjFv = .text:0x80368DB0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game6Jigumo3MgrFi = .text:0x80368E6C; // type:function size:0x10 scope:weak align:4 +read__Q34Game6Jigumo5ParmsFR6Stream = .text:0x80368E7C; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game6Jigumo3MgrFv = .text:0x80368ECC; // type:function size:0x8 scope:weak align:4 +mouthScaleCallBack__Q24Game6JigumoFP8J3DJointi = .text:0x80368ED4; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game6Jigumo3ObjFv = .text:0x80368F0C; // type:function size:0x16C scope:global align:4 +birth__Q34Game6Jigumo3ObjFR10Vector3f = .text:0x80369078; // type:function size:0x17C scope:global align:4 +getEnemyTypeID__Q34Game6Jigumo3ObjFv = .text:0x803691F4; // type:function size:0x8 scope:weak align:4 +onInit__Q34Game6Jigumo3ObjFPQ24Game15CreatureInitArg = .text:0x803691FC; // type:function size:0x23C scope:global align:4 +__ct__Q34Game6Jigumo3ObjFv = .text:0x80369438; // type:function size:0x3E4 scope:global align:4 +setFSM__Q34Game6Jigumo3ObjFPQ34Game6Jigumo3FSM = .text:0x8036981C; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game6Jigumo3ObjFv = .text:0x80369868; // type:function size:0x40 scope:global align:4 +doDirectDraw__Q34Game6Jigumo3ObjFR8Graphics = .text:0x803698A8; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game6Jigumo3ObjFR8Graphics = .text:0x803698AC; // type:function size:0x20 scope:global align:4 +doAnimationCullingOff__Q34Game6Jigumo3ObjFv = .text:0x803698CC; // type:function size:0x14C scope:global align:4 +startCarcassMotion__Q34Game6Jigumo3ObjFv = .text:0x80369A18; // type:function size:0x28 scope:global align:4 +initMouthSlots__Q34Game6Jigumo3ObjFv = .text:0x80369A40; // type:function size:0xBC scope:global align:4 +doGetLifeGaugeParam__Q34Game6Jigumo3ObjFRQ24Game14LifeGaugeParam = .text:0x80369AFC; // type:function size:0x9C scope:global align:4 +pressCallBack__Q34Game6Jigumo3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80369B98; // type:function size:0x108 scope:global align:4 +damageCallBack__Q34Game6Jigumo3ObjFPQ24Game8CreaturefP8CollPart = .text:0x80369CA0; // type:function size:0x1B4 scope:global align:4 +collisionCallback__Q34Game6Jigumo3ObjFRQ24Game9CollEvent = .text:0x80369E54; // type:function size:0xD0 scope:global align:4 +outWaterCallback__Q34Game6Jigumo3ObjFv = .text:0x80369F24; // type:function size:0x120 scope:global align:4 +inWaterCallback__Q34Game6Jigumo3ObjFPQ24Game8WaterBox = .text:0x8036A044; // type:function size:0x150 scope:global align:4 +earthquakeCallBack__Q34Game6Jigumo3ObjFPQ24Game8Creaturef = .text:0x8036A194; // type:function size:0x7C scope:global align:4 +getShadowParam__Q34Game6Jigumo3ObjFRQ24Game11ShadowParam = .text:0x8036A210; // type:function size:0x9C scope:global align:4 +needShadow__Q34Game6Jigumo3ObjFv = .text:0x8036A2AC; // type:function size:0x7C scope:global align:4 +doSimulationGround__Q34Game6Jigumo3ObjFf = .text:0x8036A328; // type:function size:0x174 scope:global align:4 +onKill__Q34Game6Jigumo3ObjFPQ24Game15CreatureKillArg = .text:0x8036A49C; // type:function size:0x34 scope:global align:4 +isLivingThing__Q34Game6Jigumo3ObjFv = .text:0x8036A4D0; // type:function size:0x8 scope:global align:4 +doStartMovie__Q34Game6Jigumo3ObjFv = .text:0x8036A4D8; // type:function size:0x8C scope:global align:4 +doEndMovie__Q34Game6Jigumo3ObjFv = .text:0x8036A564; // type:function size:0x8C scope:global align:4 +doStartStoneState__Q34Game6Jigumo3ObjFv = .text:0x8036A5F0; // type:function size:0xD8 scope:global align:4 +doFinishStoneState__Q34Game6Jigumo3ObjFv = .text:0x8036A6C8; // type:function size:0xE8 scope:global align:4 +getGoalDist__Q34Game6Jigumo3ObjFv = .text:0x8036A7B0; // type:function size:0x34 scope:global align:4 +walkFunc__Q34Game6Jigumo3ObjFv = .text:0x8036A7E4; // type:function size:0x7DC scope:global align:4 +getOffsetForMapCollision__Q34Game6Jigumo3ObjFv = .text:0x8036AFC0; // type:function size:0x19C scope:global align:4 +calcBaseTrMatrix__Q34Game6Jigumo3ObjFv = .text:0x8036B15C; // type:function size:0x820 scope:global align:4 +revisionAnimPos__Q34Game6Jigumo3ObjFf = .text:0x8036B97C; // type:function size:0x58 scope:global align:4 +getWalkSpeed__Q34Game6Jigumo3ObjFv = .text:0x8036B9D4; // type:function size:0x80 scope:global align:4 +velocityControl__Q34Game6Jigumo3ObjFv = .text:0x8036BA54; // type:function size:0x74 scope:global align:4 +getNearestPikiOrNavi__Q34Game6Jigumo3ObjFff = .text:0x8036BAC8; // type:function size:0xA8 scope:global align:4 +effectStart__Q34Game6Jigumo3ObjFv = .text:0x8036BB70; // type:function size:0x1C0 scope:global align:4 +effectStop__Q34Game6Jigumo3ObjFv = .text:0x8036BD30; // type:function size:0x8C scope:global align:4 +boundEffect__Q34Game6Jigumo3ObjFv = .text:0x8036BDBC; // type:function size:0x28 scope:global align:4 +eatWaterEffect__Q34Game6Jigumo3ObjFv = .text:0x8036BDE4; // type:function size:0x124 scope:global align:4 +killNest__Q34Game6Jigumo3ObjFv = .text:0x8036BF08; // type:function size:0x20 scope:global align:4 +mouthScaleMtxCalc__Q34Game6Jigumo3ObjFv = .text:0x8036BF28; // type:function size:0x194 scope:global align:4 +setInitialSetting__Q34Game6Jigumo3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8036C0BC; // type:function size:0x4 scope:weak align:4 +getCellRadius__Q34Game6Jigumo3ObjFv = .text:0x8036C0C0; // type:function size:0x14 scope:weak align:4 +getBodyRadius__Q34Game6Jigumo3ObjFv = .text:0x8036C0D4; // type:function size:0x8 scope:weak align:4 +eatWhitePikminCallBack__Q34Game6Jigumo3ObjFPQ24Game8Creaturef = .text:0x8036C0DC; // type:function size:0x28 scope:weak align:4 +getDownSmokeScale__Q34Game6Jigumo3ObjFv = .text:0x8036C104; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game6Jigumo3ObjFv = .text:0x8036C10C; // type:function size:0x8 scope:weak align:4 +createEfxHamon__Q34Game6Jigumo3ObjFv = .text:0x8036C114; // type:function size:0x3C scope:weak align:4 +@908@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8036C150; // type:function size:0x14 scope:weak align:4 +@908@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8036C164; // type:function size:0x14 scope:weak align:4 +@908@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8036C178; // type:function size:0x14 scope:weak align:4 +@908@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8036C18C; // type:function size:0x14 scope:weak align:4 +@908@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8036C1A0; // type:function size:0x14 scope:weak align:4 +@908@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8036C1B4; // type:function size:0x14 scope:weak align:4 +__ct__Q34Game4Nest3MgrFiUc = .text:0x8036C1C8; // type:function size:0x70 scope:global align:4 +doAlloc__Q34Game4Nest3MgrFv = .text:0x8036C238; // type:function size:0x48 scope:global align:4 +birth__Q34Game4Nest3MgrFRQ24Game13EnemyBirthArg = .text:0x8036C280; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game4Nest3MgrFP10JKRArchive = .text:0x8036C2A0; // type:function size:0x12C scope:global align:4 +doSimpleDraw__Q34Game4Nest3MgrFP8Viewport = .text:0x8036C3CC; // type:function size:0x320 scope:global align:4 +getEnemy__Q34Game4Nest3MgrFi = .text:0x8036C6EC; // type:function size:0x10 scope:weak align:4 +initObjects__Q34Game4Nest3MgrFv = .text:0x8036C6FC; // type:function size:0x1E8 scope:global align:4 +getEnemyTypeID__Q34Game4Nest3MgrFv = .text:0x8036C8E4; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game4Nest3MgrFv = .text:0x8036C8EC; // type:function size:0xB0 scope:weak align:4 +loadAnimData__Q34Game4Nest3MgrFv = .text:0x8036C99C; // type:function size:0x4 scope:weak align:4 +createObj__Q34Game4Nest3MgrFi = .text:0x8036C9A0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Nest3ObjFv = .text:0x8036CA00; // type:function size:0xBC scope:weak align:4 +__sinit_enemyNestMgr_cpp = .text:0x8036CABC; // type:function size:0x4 scope:local align:4 +@4@__dt__Q34Game4Nest3MgrFv = .text:0x8036CAC0; // type:function size:0x8 scope:weak align:4 +birth__Q34Game4Nest3ObjFR10Vector3f = .text:0x8036CAC8; // type:function size:0x34 scope:global align:4 +onInit__Q34Game4Nest3ObjFPQ24Game15CreatureInitArg = .text:0x8036CAFC; // type:function size:0x11C scope:global align:4 +__ct__Q34Game4Nest3ObjFv = .text:0x8036CC18; // type:function size:0x98 scope:global align:4 +setHouseType__Q34Game4Nest3ObjFi = .text:0x8036CCB0; // type:function size:0x20 scope:global align:4 +setInitialSetting__Q34Game4Nest3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8036CCD0; // type:function size:0x4 scope:weak align:4 +update__Q34Game4Nest3ObjFv = .text:0x8036CCD4; // type:function size:0x4 scope:weak align:4 +doUpdate__Q34Game4Nest3ObjFv = .text:0x8036CCD8; // type:function size:0x4 scope:weak align:4 +doSimulation__Q34Game4Nest3ObjFf = .text:0x8036CCDC; // type:function size:0x4 scope:weak align:4 +doAnimationCullingOn__Q34Game4Nest3ObjFv = .text:0x8036CCE0; // type:function size:0x4 scope:weak align:4 +doAnimationCullingOff__Q34Game4Nest3ObjFv = .text:0x8036CCE4; // type:function size:0x4 scope:weak align:4 +doUpdateCommon__Q34Game4Nest3ObjFv = .text:0x8036CCE8; // type:function size:0x4 scope:weak align:4 +doEntry__Q34Game4Nest3ObjFv = .text:0x8036CCEC; // type:function size:0x4 scope:weak align:4 +doViewCalc__Q34Game4Nest3ObjFv = .text:0x8036CCF0; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game4Nest3ObjFv = .text:0x8036CCF4; // type:function size:0x8 scope:weak align:4 +ignoreAtari__Q34Game4Nest3ObjFPQ24Game8Creature = .text:0x8036CCFC; // type:function size:0x8 scope:weak align:4 +needShadow__Q34Game4Nest3ObjFv = .text:0x8036CD04; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game4Nest3ObjFv = .text:0x8036CD0C; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimFrame__Q34Game4Nest3ObjFv = .text:0x8036CD14; // type:function size:0x8 scope:weak align:4 +getSound_CurrAnimSpeed__Q34Game4Nest3ObjFv = .text:0x8036CD1C; // type:function size:0x8 scope:weak align:4 +init__Q34Game11TamagoMushi3FSMFPQ24Game9EnemyBase = .text:0x8036CD24; // type:function size:0x108 scope:global align:4 +__ct__Q34Game11TamagoMushi9StateWalkFi = .text:0x8036CE2C; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036CE68; // type:function size:0x108 scope:global align:4 +exec__Q34Game11TamagoMushi9StateWalkFPQ24Game9EnemyBase = .text:0x8036CF70; // type:function size:0xEC scope:global align:4 +__ct__Q34Game11TamagoMushi9StateTurnFi = .text:0x8036D05C; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D098; // type:function size:0x54 scope:global align:4 +exec__Q34Game11TamagoMushi9StateTurnFPQ24Game9EnemyBase = .text:0x8036D0EC; // type:function size:0x88 scope:global align:4 +__ct__Q34Game11TamagoMushi11StateAppearFi = .text:0x8036D174; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D1B0; // type:function size:0x160 scope:global align:4 +exec__Q34Game11TamagoMushi11StateAppearFPQ24Game9EnemyBase = .text:0x8036D310; // type:function size:0x1AC scope:global align:4 +__ct__Q34Game11TamagoMushi9StateHideFi = .text:0x8036D4BC; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D4F8; // type:function size:0x6C scope:global align:4 +exec__Q34Game11TamagoMushi9StateHideFPQ24Game9EnemyBase = .text:0x8036D564; // type:function size:0x44 scope:global align:4 +__ct__Q34Game11TamagoMushi9StateDeadFi = .text:0x8036D5A8; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D5E4; // type:function size:0x108 scope:global align:4 +exec__Q34Game11TamagoMushi9StateDeadFPQ24Game9EnemyBase = .text:0x8036D6EC; // type:function size:0x114 scope:global align:4 +__ct__Q34Game11TamagoMushi9StateWaitFi = .text:0x8036D800; // type:function size:0x3C scope:global align:4 +init__Q34Game11TamagoMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x8036D83C; // type:function size:0x74 scope:global align:4 +exec__Q34Game11TamagoMushi9StateWaitFPQ24Game9EnemyBase = .text:0x8036D8B0; // type:function size:0x98 scope:global align:4 +setAnimMgr__Q34Game11TamagoMushi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x8036D948; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game11TamagoMushi14ProperAnimatorFi = .text:0x8036D950; // type:function size:0x8 scope:global align:4 +__dt__Q34Game11TamagoMushi14ProperAnimatorFv = .text:0x8036D958; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game11TamagoMushi14ProperAnimatorFv = .text:0x8036D9B4; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11TamagoMushi3MgrFiUc = .text:0x8036D9BC; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game11TamagoMushi3MgrFv = .text:0x8036DA0C; // type:function size:0x100 scope:global align:4 +__dt__16J3DUMtxCacheBaseFv = .text:0x8036DB0C; // type:function size:0x48 scope:weak align:4 +getEnemy__Q34Game11TamagoMushi3MgrFi = .text:0x8036DB54; // type:function size:0x10 scope:weak align:4 +__ct__Q34Game11TamagoMushi5ParmsFv = .text:0x8036DB64; // type:function size:0x260 scope:weak align:4 +birth__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArg = .text:0x8036DDC4; // type:function size:0x48 scope:global align:4 +fetch__Q34Game11TamagoMushi3MgrFP8J3DModelf = .text:0x8036DE0C; // type:function size:0x58 scope:global align:4 +createGroup__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArgiR10Vector3 = .text:0x8036DE64; // type:function size:0xF8 scope:global align:4 +createGroupByBigFoot__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArgiR10Vector3f = .text:0x8036DF5C; // type:function size:0xB0 scope:global align:4 +createGroup__Q34Game11TamagoMushi3MgrFPQ34Game11TamagoMushi3Objib = .text:0x8036E00C; // type:function size:0x3AC scope:global align:4 +createGroupByBigFoot__Q34Game11TamagoMushi3MgrFPQ34Game11TamagoMushi3Objibf = .text:0x8036E3B8; // type:function size:0x484 scope:global align:4 +__dt__Q34Game11TamagoMushi3MgrFv = .text:0x8036E83C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11TamagoMushi3MgrFv = .text:0x8036E8EC; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game11TamagoMushi3MgrFi = .text:0x8036E8F4; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11TamagoMushi3ObjFv = .text:0x8036E954; // type:function size:0xBC scope:weak align:4 +read__Q34Game11TamagoMushi5ParmsFR6Stream = .text:0x8036EA10; // type:function size:0x50 scope:weak align:4 +fetch__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable>CFP8J3DModel = .text:0x8036EA60; // type:function size:0xDC scope:weak align:4 +__dt__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable>Fv = .text:0x8036EB3C; // type:function size:0x98 scope:weak align:4 +@4@__dt__Q34Game11TamagoMushi3MgrFv = .text:0x8036EBD4; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game11TamagoMushi3ObjFv = .text:0x8036EBDC; // type:function size:0x20 scope:global align:4 +birth__Q34Game11TamagoMushi3ObjFR10Vector3f = .text:0x8036EBFC; // type:function size:0x20 scope:global align:4 +onInit__Q34Game11TamagoMushi3ObjFPQ24Game15CreatureInitArg = .text:0x8036EC1C; // type:function size:0x2D0 scope:global align:4 +__ct__Q34Game11TamagoMushi3ObjFv = .text:0x8036EEEC; // type:function size:0x13C scope:global align:4 +setFSM__Q34Game11TamagoMushi3ObjFPQ34Game11TamagoMushi3FSM = .text:0x8036F028; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game11TamagoMushi3ObjFv = .text:0x8036F074; // type:function size:0xA0 scope:global align:4 +doAnimationCullingOff__Q34Game11TamagoMushi3ObjFv = .text:0x8036F114; // type:function size:0x158 scope:global align:4 +doDirectDraw__Q34Game11TamagoMushi3ObjFR8Graphics = .text:0x8036F26C; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11TamagoMushi3ObjFR8Graphics = .text:0x8036F270; // type:function size:0x20 scope:global align:4 +pressCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8036F290; // type:function size:0xDC scope:global align:4 +bombCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreatureR10Vector3f = .text:0x8036F36C; // type:function size:0xBC scope:global align:4 +damageCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8036F428; // type:function size:0x134 scope:global align:4 +collisionCallback__Q34Game11TamagoMushi3ObjFRQ24Game9CollEvent = .text:0x8036F55C; // type:function size:0xF8 scope:global align:4 +bounceCallback__Q34Game11TamagoMushi3ObjFPQ23Sys8Triangle = .text:0x8036F654; // type:function size:0x178 scope:global align:4 +hipdropCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8036F7CC; // type:function size:0x2C scope:global align:4 +earthquakeCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8Creaturef = .text:0x8036F7F8; // type:function size:0x30 scope:global align:4 +getShadowParam__Q34Game11TamagoMushi3ObjFRQ24Game11ShadowParam = .text:0x8036F828; // type:function size:0xA8 scope:global align:4 +needShadow__Q34Game11TamagoMushi3ObjFv = .text:0x8036F8D0; // type:function size:0x30 scope:global align:4 +genItem__Q34Game11TamagoMushi3ObjFv = .text:0x8036F900; // type:function size:0x208 scope:global align:4 +walkFunc__Q34Game11TamagoMushi3ObjFv = .text:0x8036FB08; // type:function size:0x310 scope:global align:4 +setGoalRandom__Q34Game11TamagoMushi3ObjFv = .text:0x8036FE18; // type:function size:0x168 scope:global align:4 +setGoalDirect__Q34Game11TamagoMushi3ObjFR10Vector3 = .text:0x8036FF80; // type:function size:0xB8 scope:global align:4 +turnFunc__Q34Game11TamagoMushi3ObjFv = .text:0x80370038; // type:function size:0x15C scope:global align:4 +isReachToGoal__Q34Game11TamagoMushi3ObjFf = .text:0x80370194; // type:function size:0x34 scope:global align:4 +resetWalkParm__Q34Game11TamagoMushi3ObjFv = .text:0x803701C8; // type:function size:0x2C scope:global align:4 +startCarcassMotion__Q34Game11TamagoMushi3ObjFv = .text:0x803701F4; // type:function size:0x28 scope:global align:4 +setLeader__Q34Game11TamagoMushi3ObjFPQ34Game11TamagoMushi3Obj = .text:0x8037021C; // type:function size:0x58 scope:global align:4 +setTypeBall__Q34Game11TamagoMushi3ObjFv = .text:0x80370274; // type:function size:0x54 scope:global align:4 +appearPanic__Q34Game11TamagoMushi3ObjFv = .text:0x803702C8; // type:function size:0x344 scope:global align:4 +isFound__Q34Game11TamagoMushi3ObjFv = .text:0x8037060C; // type:function size:0x3BC scope:global align:4 +__cl__7ParmFv = .text:0x803709C8; // type:function size:0x8 scope:weak align:4 +isZukanMode__Q24Game10GameSystemFv = .text:0x803709D0; // type:function size:0x14 scope:weak align:4 +createFellow__Q34Game11TamagoMushi3ObjFv = .text:0x803709E4; // type:function size:0x44 scope:global align:4 +ballMove__Q34Game11TamagoMushi3ObjFv = .text:0x80370A28; // type:function size:0x9C scope:global align:4 +createHideEffect__Q34Game11TamagoMushi3ObjFv = .text:0x80370AC4; // type:function size:0xA8 scope:global align:4 +createAppearEffect__Q34Game11TamagoMushi3ObjFv = .text:0x80370B6C; // type:function size:0xA8 scope:global align:4 +setInitialSetting__Q34Game11TamagoMushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80370C14; // type:function size:0x4 scope:weak align:4 +isLivingThing__Q34Game11TamagoMushi3ObjFv = .text:0x80370C18; // type:function size:0x14 scope:weak align:4 +getDownSmokeScale__Q34Game11TamagoMushi3ObjFv = .text:0x80370C2C; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game11TamagoMushi3ObjFv = .text:0x80370C34; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura10TZukanBaseFPc = .text:0x80370C3C; // type:function size:0x204 scope:global align:4 +__dt__Q28Morimura11TScrollListFv = .text:0x80370E40; // type:function size:0xC4 scope:weak align:4 +__dt__Q28Morimura10TZukanBaseFv = .text:0x80370F04; // type:function size:0xFC scope:global align:4 +doCreate__Q28Morimura10TZukanBaseFP10JKRArchive = .text:0x80371000; // type:function size:0x90C scope:global align:4 +doUpdate__Q28Morimura10TZukanBaseFv = .text:0x8037190C; // type:function size:0xFC8 scope:global align:4 +isListShow__Q28Morimura11TScrollListFi = .text:0x803728D4; // type:function size:0x8 scope:weak align:4 +updateButtonAlpha__Q28Morimura10TZukanBaseFUc = .text:0x803728DC; // type:function size:0x2B8 scope:global align:4 +isComplete__Q28Morimura10TZukanBaseFv = .text:0x80372B94; // type:function size:0x8 scope:weak align:4 +doDraw__Q28Morimura10TZukanBaseFR8Graphics = .text:0x80372B9C; // type:function size:0x714 scope:global align:4 +doDemoDraw__Q28Morimura10TZukanBaseFR8Graphics = .text:0x803732B0; // type:function size:0x4 scope:weak align:4 +doUpdateFadeoutFinish__Q28Morimura10TZukanBaseFv = .text:0x803732B4; // type:function size:0x18 scope:global align:4 +indexPaneInit__Q28Morimura10TZukanBaseFP9J2DScreen = .text:0x803732CC; // type:function size:0x578 scope:global align:4 +paneInit__Q28Morimura10TZukanBaseFv = .text:0x80373844; // type:function size:0x258 scope:global align:4 +changePaneInfo__Q28Morimura10TZukanBaseFv = .text:0x80373A9C; // type:function size:0xC8 scope:global align:4 +changeName__Q28Morimura10TZukanBaseFv = .text:0x80373B64; // type:function size:0xA8 scope:global align:4 +doUpdateIn__Q28Morimura10TZukanBaseFv = .text:0x80373C0C; // type:function size:0x5C scope:global align:4 +doUpdateOut__Q28Morimura10TZukanBaseFv = .text:0x80373C68; // type:function size:0x630 scope:global align:4 +doPushXButton__Q28Morimura10TZukanBaseFv = .text:0x80374298; // type:function size:0x114 scope:global align:4 +doPushYButton__Q28Morimura10TZukanBaseFv = .text:0x803743AC; // type:function size:0x130 scope:global align:4 +doPushBButton__Q28Morimura10TZukanBaseFv = .text:0x803744DC; // type:function size:0xB0 scope:global align:4 +setShortenIndex__Q28Morimura10TZukanBaseFiib = .text:0x8037458C; // type:function size:0x244 scope:global align:4 +windowOpenClose__Q28Morimura10TZukanBaseFUx = .text:0x803747D0; // type:function size:0x88 scope:global align:4 +isPanelExist__Q28Morimura10TZukanBaseFv = .text:0x80374858; // type:function size:0x74 scope:global align:4 +requireRequest__Q28Morimura10TZukanBaseFv = .text:0x803748CC; // type:function size:0x18 scope:global align:4 +requireEffectOff__Q28Morimura10TZukanBaseFv = .text:0x803748E4; // type:function size:0xC scope:global align:4 +isEnlargedWindow__Q28Morimura10TZukanBaseFv = .text:0x803748F0; // type:function size:0x1C scope:global align:4 +isMemoWindow__Q28Morimura10TZukanBaseFv = .text:0x8037490C; // type:function size:0x20 scope:global align:4 +checkRequest__Q28Morimura10TZukanBaseFRi = .text:0x8037492C; // type:function size:0x10 scope:global align:4 +getCurrSelectId__Q28Morimura10TZukanBaseFv = .text:0x8037493C; // type:function size:0x68 scope:global align:4 +getTexInfo__Q28Morimura10TZukanBaseFi = .text:0x803749A4; // type:function size:0x124 scope:global align:4 +__dt__Q28Morimura11TEnemyZukanFv = .text:0x80374AC8; // type:function size:0x124 scope:global align:4 +doCreate__Q28Morimura11TEnemyZukanFP10JKRArchive = .text:0x80374BEC; // type:function size:0x1734 scope:global align:4 +init__Q28Morimura15TScaleUpCounterFP9J2DScreenUxUxUxPUlb = .text:0x80376320; // type:function size:0x44 scope:weak align:4 +getIdMax__Q28Morimura11TEnemyZukanFv = .text:0x80376364; // type:function size:0x8 scope:weak align:4 +setDetail__Q28Morimura11TEnemyZukanFv = .text:0x8037636C; // type:function size:0x1D8 scope:global align:4 +setShortenIndex__Q28Morimura11TEnemyZukanFiib = .text:0x80376544; // type:function size:0x48 scope:global align:4 +isListShow__Q28Morimura11TEnemyZukanFi = .text:0x8037658C; // type:function size:0xD8 scope:global align:4 +indexPaneInit__Q28Morimura11TEnemyZukanFP9J2DScreen = .text:0x80376664; // type:function size:0x718 scope:global align:4 +getUpdateIndex__Q28Morimura11TEnemyZukanFRib = .text:0x80376D7C; // type:function size:0x970 scope:global align:4 +getNameID__Q28Morimura11TEnemyZukanFi = .text:0x803776EC; // type:function size:0x24 scope:global align:4 +getXMsgID__Q28Morimura11TEnemyZukanFi = .text:0x80377710; // type:function size:0x24 scope:global align:4 +getYMsgID__Q28Morimura11TEnemyZukanFi = .text:0x80377734; // type:function size:0x24 scope:global align:4 +getModelIndex__Q28Morimura11TEnemyZukanFi = .text:0x80377758; // type:function size:0x50 scope:global align:4 +setXWindow__Q28Morimura11TEnemyZukanFv = .text:0x803777A8; // type:function size:0x60 scope:global align:4 +setYWindow__Q28Morimura11TEnemyZukanFv = .text:0x80377808; // type:function size:0x60 scope:global align:4 +isOpenConfirmWindow__Q28Morimura11TEnemyZukanFv = .text:0x80377868; // type:function size:0x34 scope:global align:4 +isNewSupply__Q28Morimura11TEnemyZukanFib = .text:0x8037789C; // type:function size:0xFC scope:global align:4 +isPanelExist__Q28Morimura11TEnemyZukanFv = .text:0x80377998; // type:function size:0xE4 scope:global align:4 +openConfirmWindow__Q28Morimura11TEnemyZukanFv = .text:0x80377A7C; // type:function size:0x4C scope:global align:4 +getPrice__Q28Morimura11TEnemyZukanFi = .text:0x80377AC8; // type:function size:0x134 scope:global align:4 +getDefeatNum__Q28Morimura11TEnemyZukanFi = .text:0x80377BFC; // type:function size:0xF8 scope:global align:4 +getKilledNum__Q28Morimura11TEnemyZukanFi = .text:0x80377CF4; // type:function size:0x12C scope:global align:4 +__ct__Q28Morimura12TDEnemySceneFv = .text:0x80377E20; // type:function size:0x54 scope:global align:4 +doCreateObj__Q28Morimura12TDEnemySceneFP10JKRArchive = .text:0x80377E74; // type:function size:0xDC scope:global align:4 +doStart__Q28Morimura12TDEnemySceneFPQ26Screen13StartSceneArg = .text:0x80377F50; // type:function size:0x34 scope:global align:4 +isAppearConfirmWindow__Q28Morimura12TDEnemySceneFv = .text:0x80377F84; // type:function size:0x28 scope:global align:4 +__dt__Q28Morimura10TItemZukanFv = .text:0x80377FAC; // type:function size:0x124 scope:global align:4 +doUpdate__Q28Morimura10TItemZukanFv = .text:0x803780D0; // type:function size:0x424 scope:global align:4 +demoSet__Q28Morimura10TItemZukanFv = .text:0x803784F4; // type:function size:0xA8 scope:global align:4 +setShortenIndex__Q28Morimura10TItemZukanFiib = .text:0x8037859C; // type:function size:0x45C scope:global align:4 +getCategoryColorId__Q28Morimura10TItemZukanFi = .text:0x803789F8; // type:function size:0x10 scope:weak align:4 +doUpdateOut__Q28Morimura10TItemZukanFv = .text:0x80378A08; // type:function size:0x2D4 scope:global align:4 +getUpdateIndex__Q28Morimura10TItemZukanFRib = .text:0x80378CDC; // type:function size:0xC0 scope:global align:4 +getNameID__Q28Morimura10TItemZukanFi = .text:0x80378D9C; // type:function size:0x3C scope:global align:4 +getXMsgID__Q28Morimura10TItemZukanFi = .text:0x80378DD8; // type:function size:0x3C scope:global align:4 +getYMsgID__Q28Morimura10TItemZukanFi = .text:0x80378E14; // type:function size:0x3C scope:global align:4 +getModelIndex__Q28Morimura10TItemZukanFi = .text:0x80378E50; // type:function size:0x34 scope:global align:4 +getIdMax__Q28Morimura10TItemZukanFv = .text:0x80378E84; // type:function size:0x20 scope:global align:4 +doCreate__Q28Morimura10TItemZukanFP10JKRArchive = .text:0x80378EA4; // type:function size:0x1690 scope:global align:4 +doDemoDraw__Q28Morimura10TItemZukanFR8Graphics = .text:0x8037A534; // type:function size:0x7B4 scope:global align:4 +setDetail__Q28Morimura10TItemZukanFv = .text:0x8037ACE8; // type:function size:0x170 scope:global align:4 +isComplete__Q28Morimura10TItemZukanFv = .text:0x8037AE58; // type:function size:0x90 scope:global align:4 +isListShow__Q28Morimura10TItemZukanFi = .text:0x8037AEE8; // type:function size:0x80 scope:global align:4 +setXWindow__Q28Morimura10TItemZukanFv = .text:0x8037AF68; // type:function size:0x6C scope:global align:4 +setYWindow__Q28Morimura10TItemZukanFv = .text:0x8037AFD4; // type:function size:0xA8 scope:global align:4 +getPrice__Q28Morimura10TItemZukanFi = .text:0x8037B07C; // type:function size:0xC0 scope:global align:4 +getWeight__Q28Morimura10TItemZukanFi = .text:0x8037B13C; // type:function size:0xC8 scope:global align:4 +isNewSupply__Q28Morimura10TItemZukanFib = .text:0x8037B204; // type:function size:0x98 scope:global align:4 +isPanelExist__Q28Morimura10TItemZukanFv = .text:0x8037B29C; // type:function size:0xC4 scope:global align:4 +isOpenConfirmWindow__Q28Morimura10TItemZukanFv = .text:0x8037B360; // type:function size:0x34 scope:global align:4 +openConfirmWindow__Q28Morimura10TItemZukanFv = .text:0x8037B394; // type:function size:0x4C scope:global align:4 +__ct__Q28Morimura11TDItemSceneFv = .text:0x8037B3E0; // type:function size:0x54 scope:global align:4 +doCreateObj__Q28Morimura11TDItemSceneFP10JKRArchive = .text:0x8037B434; // type:function size:0x1C8 scope:global align:4 +doStart__Q28Morimura11TDItemSceneFPQ26Screen13StartSceneArg = .text:0x8037B5FC; // type:function size:0x34 scope:global align:4 +isAppearConfirmWindow__Q28Morimura11TDItemSceneFv = .text:0x8037B630; // type:function size:0x28 scope:global align:4 +__ct__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B658; // type:function size:0x80 scope:global align:4 +doInit__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B6D8; // type:function size:0x70 scope:global align:4 +update__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B748; // type:function size:0x38 scope:global align:4 +reset__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B780; // type:function size:0xC8 scope:global align:4 +scroll__Q28Morimura18TCallbackScrollMsgFf = .text:0x8037B848; // type:function size:0x34 scope:global align:4 +draw__Q28Morimura18TCallbackScrollMsgFR8GraphicsR14J2DGrafContext = .text:0x8037B87C; // type:function size:0x48 scope:global align:4 +getPosRate__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037B8C4; // type:function size:0x24 scope:global align:4 +__ct__Q28Morimura12TZukanWindowFP10JKRArchivei = .text:0x8037B8E8; // type:function size:0x80 scope:global align:4 +create__Q28Morimura12TZukanWindowFPCcUl = .text:0x8037B968; // type:function size:0x538 scope:global align:4 +update__Q28Morimura12TZukanWindowFv = .text:0x8037BEA0; // type:function size:0x390 scope:global align:4 +draw__Q28Morimura12TZukanWindowFR8GraphicsP13J2DPerspGraph = .text:0x8037C230; // type:function size:0x2C scope:global align:4 +windowOpen__Q28Morimura12TZukanWindowFv = .text:0x8037C25C; // type:function size:0xF0 scope:global align:4 +windowClose__Q28Morimura12TZukanWindowFv = .text:0x8037C34C; // type:function size:0x30 scope:global align:4 +msgScroll__Q28Morimura12TZukanWindowFf = .text:0x8037C37C; // type:function size:0x38 scope:global align:4 +getPosRate__Q28Morimura12TZukanWindowFv = .text:0x8037C3B4; // type:function size:0x30 scope:global align:4 +setWindowColor__Q28Morimura12TZukanWindowFR13J2DGXColorS10 = .text:0x8037C3E4; // type:function size:0x6C scope:global align:4 +setIconColor__Q28Morimura12TZukanWindowFR13J2DGXColorS10R13J2DGXColorS10 = .text:0x8037C450; // type:function size:0xF0 scope:global align:4 +onIcon__Q28Morimura12TZukanWindowFi = .text:0x8037C540; // type:function size:0x8C scope:global align:4 +moveIcon__Q28Morimura12TZukanWindowFf = .text:0x8037C5CC; // type:function size:0xD4 scope:global align:4 +changeIconTexture__Q28Morimura12TZukanWindowFiP7ResTIMG = .text:0x8037C6A0; // type:function size:0x40 scope:global align:4 +__dt__Q28Morimura18TCallbackScrollMsgFv = .text:0x8037C6E0; // type:function size:0x90 scope:weak align:4 +getResName__Q28Morimura11TDItemSceneCFv = .text:0x8037C770; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura11TDItemSceneFv = .text:0x8037C77C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura11TDItemSceneFv = .text:0x8037C784; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura11TDItemSceneFv = .text:0x8037C790; // type:function size:0x10 scope:weak align:4 +getDispMemberBase__Q28Morimura10TItemZukanFv = .text:0x8037C7A0; // type:function size:0x34 scope:weak align:4 +getDispDataZukan__Q28Morimura10TItemZukanFv = .text:0x8037C7D4; // type:function size:0x8 scope:weak align:4 +doUpdateFadeinFinish__Q28Morimura10TZukanBaseFv = .text:0x8037C7DC; // type:function size:0x14 scope:weak align:4 +doUpdateFadeout__Q28Morimura10TZukanBaseFv = .text:0x8037C7F0; // type:function size:0x28 scope:weak align:4 +changeTextTevBlock__Q28Morimura11TScrollListFi = .text:0x8037C818; // type:function size:0x4 scope:weak align:4 +setPaneCharacter__Q28Morimura11TScrollListFi = .text:0x8037C81C; // type:function size:0x4 scope:weak align:4 +getResName__Q28Morimura12TDEnemySceneCFv = .text:0x8037C820; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura12TDEnemySceneFv = .text:0x8037C82C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura12TDEnemySceneFv = .text:0x8037C834; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura12TDEnemySceneFv = .text:0x8037C840; // type:function size:0x10 scope:weak align:4 +getDispMemberBase__Q28Morimura11TEnemyZukanFv = .text:0x8037C850; // type:function size:0x34 scope:weak align:4 +getDispDataZukan__Q28Morimura11TEnemyZukanFv = .text:0x8037C884; // type:function size:0x8 scope:weak align:4 +getCategoryColorId__Q28Morimura10TZukanBaseFi = .text:0x8037C88C; // type:function size:0x8 scope:weak align:4 +__sinit_zukan2D_cpp = .text:0x8037C894; // type:function size:0x134 scope:local align:4 +@24@__dt__Q28Morimura10TZukanBaseFv = .text:0x8037C9C8; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura11TEnemyZukanFv = .text:0x8037C9D0; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura10TItemZukanFv = .text:0x8037C9D8; // type:function size:0x8 scope:weak align:4 +draw__Q28Morimura15THiScoreIndPaneFv = .text:0x8037C9E0; // type:function size:0x214 scope:global align:4 +create__Q28Morimura18THiScoreListScreenFPCcUl = .text:0x8037CBF4; // type:function size:0x32C scope:global align:4 +__ct__Q28Morimura8THiScoreFv = .text:0x8037CF20; // type:function size:0x1CC scope:global align:4 +__ct__10Vector2Fv = .text:0x8037D0EC; // type:function size:0x4 scope:weak align:4 +doCreate__Q28Morimura8THiScoreFP10JKRArchive = .text:0x8037D0F0; // type:function size:0x105C scope:global align:4 +__dt__Q28Morimura8TIndPaneFv = .text:0x8037E14C; // type:function size:0x60 scope:weak align:4 +getNameID__Q28Morimura8THiScoreFi = .text:0x8037E1AC; // type:function size:0x1C scope:weak align:4 +doUpdate__Q28Morimura8THiScoreFv = .text:0x8037E1C8; // type:function size:0x9F0 scope:global align:4 +update__Q28Morimura18THiScoreListScreenFv = .text:0x8037EBB8; // type:function size:0x30 scope:weak align:4 +doDraw__Q28Morimura8THiScoreFR8Graphics = .text:0x8037EBE8; // type:function size:0x1A8 scope:global align:4 +paneInit__Q28Morimura8THiScoreFv = .text:0x8037ED90; // type:function size:0x358 scope:global align:4 +doUpdateFadeinFinish__Q28Morimura8THiScoreFv = .text:0x8037F0E8; // type:function size:0x5C scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura8THiScoreFv = .text:0x8037F144; // type:function size:0x1C scope:global align:4 +changePaneInfo__Q28Morimura8THiScoreFv = .text:0x8037F160; // type:function size:0x5C4 scope:global align:4 +setPaneCharacter__Q28Morimura8THiScoreFi = .text:0x8037F724; // type:function size:0x124 scope:global align:4 +getRecord__Q28Morimura8THiScoreFii = .text:0x8037F848; // type:function size:0x44C scope:global align:4 +changeTextTevBlock__Q28Morimura8THiScoreFi = .text:0x8037FC94; // type:function size:0x43C scope:global align:4 +copyTevBlock__Q28Morimura8THiScoreFP11J2DTevBlockP11J2DTevBlock = .text:0x803800D0; // type:function size:0x21C scope:global align:4 +changeTevBlock__Q28Morimura8THiScoreFP11J2DTevBlockP11J2DTevBlock = .text:0x803802EC; // type:function size:0x21C scope:global align:4 +copyColorBlock__Q28Morimura8THiScoreFP13J2DColorBlockP13J2DColorBlock = .text:0x80380508; // type:function size:0x80 scope:global align:4 +changeColorBlock__Q28Morimura8THiScoreFP13J2DColorBlockP13J2DColorBlock = .text:0x80380588; // type:function size:0x80 scope:global align:4 +updateLayout__Q28Morimura8THiScoreFv = .text:0x80380608; // type:function size:0x180 scope:global align:4 +__ct__Q28Morimura13THiScoreSceneFv = .text:0x80380788; // type:function size:0x50 scope:global align:4 +getResName__Q28Morimura13THiScoreSceneCFv = .text:0x803807D8; // type:function size:0xC scope:global align:4 +doCreateObj__Q28Morimura13THiScoreSceneFP10JKRArchive = .text:0x803807E4; // type:function size:0x68 scope:weak align:4 +getSceneType__Q28Morimura13THiScoreSceneFv = .text:0x8038084C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura13THiScoreSceneFv = .text:0x80380854; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura13THiScoreSceneFv = .text:0x80380860; // type:function size:0x10 scope:weak align:4 +getSize__Q28Morimura19DispMemberHighScoreFv = .text:0x80380870; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura19DispMemberHighScoreFv = .text:0x80380878; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura19DispMemberHighScoreFv = .text:0x80380884; // type:function size:0x10 scope:weak align:4 +getDispMemberBase__Q28Morimura8THiScoreFv = .text:0x80380894; // type:function size:0x34 scope:weak align:4 +getIdMax__Q28Morimura8THiScoreFv = .text:0x803808C8; // type:function size:0x8 scope:weak align:4 +setShortenIndex__Q28Morimura11TScrollListFiib = .text:0x803808D0; // type:function size:0x4 scope:weak align:4 +doUpdateIn__Q28Morimura11TScrollListFv = .text:0x803808D4; // type:function size:0x4 scope:weak align:4 +doUpdateOut__Q28Morimura11TScrollListFv = .text:0x803808D8; // type:function size:0x4 scope:weak align:4 +__dt__Q28Morimura8THiScoreFv = .text:0x803808DC; // type:function size:0xDC scope:weak align:4 +__dt__Q28Morimura15THiScoreIndPaneFv = .text:0x803809B8; // type:function size:0x70 scope:weak align:4 +__sinit_hiScore2D_cpp = .text:0x80380A28; // type:function size:0x30 scope:local align:4 +@24@__dt__Q28Morimura8THiScoreFv = .text:0x80380A58; // type:function size:0x8 scope:weak align:4 +init__Q34Game8UmiMushi3FSMFPQ24Game9EnemyBase = .text:0x80380A60; // type:function size:0x198 scope:global align:4 +__ct__Q34Game8UmiMushi9StateWaitFi = .text:0x80380BF8; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80380C34; // type:function size:0x54 scope:global align:4 +exec__Q34Game8UmiMushi9StateWaitFPQ24Game9EnemyBase = .text:0x80380C88; // type:function size:0x214 scope:global align:4 +__ct__Q34Game8UmiMushi9StateWalkFi = .text:0x80380E9C; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80380ED8; // type:function size:0x60 scope:global align:4 +exec__Q34Game8UmiMushi9StateWalkFPQ24Game9EnemyBase = .text:0x80380F38; // type:function size:0x2C0 scope:global align:4 +__ct__Q34Game8UmiMushi9StateFindFi = .text:0x803811F8; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateFindFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80381234; // type:function size:0x8C scope:global align:4 +exec__Q34Game8UmiMushi9StateFindFPQ24Game9EnemyBase = .text:0x803812C0; // type:function size:0x12C scope:global align:4 +__ct__Q34Game8UmiMushi11StateSearchFi = .text:0x803813EC; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi11StateSearchFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80381428; // type:function size:0x40 scope:global align:4 +exec__Q34Game8UmiMushi11StateSearchFPQ24Game9EnemyBase = .text:0x80381468; // type:function size:0x294 scope:global align:4 +__ct__Q34Game8UmiMushi9StateTurnFi = .text:0x803816FC; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80381738; // type:function size:0x40 scope:global align:4 +exec__Q34Game8UmiMushi9StateTurnFPQ24Game9EnemyBase = .text:0x80381778; // type:function size:0x1EC scope:global align:4 +__ct__Q34Game8UmiMushi10StateFlickFi = .text:0x80381964; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803819A0; // type:function size:0x160 scope:global align:4 +exec__Q34Game8UmiMushi10StateFlickFPQ24Game9EnemyBase = .text:0x80381B00; // type:function size:0x190 scope:global align:4 +__ct__Q34Game8UmiMushi11StateAttackFi = .text:0x80381C90; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80381CCC; // type:function size:0x118 scope:global align:4 +exec__Q34Game8UmiMushi11StateAttackFPQ24Game9EnemyBase = .text:0x80381DE4; // type:function size:0x520 scope:global align:4 +__ct__Q34Game8UmiMushi8StateEatFi = .text:0x80382304; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80382340; // type:function size:0x40 scope:global align:4 +exec__Q34Game8UmiMushi8StateEatFPQ24Game9EnemyBase = .text:0x80382380; // type:function size:0xB8 scope:global align:4 +__ct__Q34Game8UmiMushi9StateDeadFi = .text:0x80382438; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80382474; // type:function size:0x88 scope:global align:4 +exec__Q34Game8UmiMushi9StateDeadFPQ24Game9EnemyBase = .text:0x803824FC; // type:function size:0xB8 scope:global align:4 +__ct__Q34Game8UmiMushi9StateLostFi = .text:0x803825B4; // type:function size:0x3C scope:global align:4 +init__Q34Game8UmiMushi9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803825F0; // type:function size:0x54 scope:global align:4 +exec__Q34Game8UmiMushi9StateLostFPQ24Game9EnemyBase = .text:0x80382644; // type:function size:0x90 scope:global align:4 +__sinit_umiMushiState_cpp = .text:0x803826D4; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game8UmiMushi14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x803826FC; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8UmiMushi14ProperAnimatorFi = .text:0x80382704; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8UmiMushi14ProperAnimatorFv = .text:0x8038270C; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8UmiMushi14ProperAnimatorFv = .text:0x80382768; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8UmiMushi3MgrFiUc = .text:0x80382770; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8UmiMushi3MgrFv = .text:0x803827C0; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8UmiMushi5ParmsFv = .text:0x80382808; // type:function size:0xA4 scope:weak align:4 +__ct__Q44Game8UmiMushi5Parms11ProperParmsFv = .text:0x803828AC; // type:function size:0x360 scope:weak align:4 +birth__Q34Game8UmiMushi3MgrFRQ24Game13EnemyBirthArg = .text:0x80382C0C; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game8UmiMushi3MgrFv = .text:0x80382C2C; // type:function size:0x68 scope:global align:4 +loadTexData__Q34Game8UmiMushi3MgrFv = .text:0x80382C94; // type:function size:0xBC scope:global align:4 +createModel__Q34Game8UmiMushi3MgrFv = .text:0x80382D50; // type:function size:0x7C scope:global align:4 +createObj__Q34Game8UmiMushi3MgrFi = .text:0x80382DCC; // type:function size:0x160 scope:global align:4 +__dt__Q34Game8UmiMushi3ObjFv = .text:0x80382F2C; // type:function size:0xBC scope:weak align:4 +__dt__Q34Game8UmiMushi3MgrFv = .text:0x80382FE8; // type:function size:0xB0 scope:weak align:4 +doLoadBmd__Q34Game8UmiMushi3MgrFPv = .text:0x80383098; // type:function size:0x2C scope:weak align:4 +getEnemyTypeID__Q34Game8UmiMushi3MgrFv = .text:0x803830C4; // type:function size:0x8 scope:weak align:4 +getEnemy__Q34Game8UmiMushi3MgrFi = .text:0x803830CC; // type:function size:0x10 scope:weak align:4 +read__Q34Game8UmiMushi5ParmsFR6Stream = .text:0x803830DC; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8UmiMushi3MgrFv = .text:0x8038312C; // type:function size:0x8 scope:weak align:4 +eyeScaleCallBack__Q24Game8UmiMushiFP8J3DJointi = .text:0x80383134; // type:function size:0x38 scope:local align:4 +weakScaleCallBack__Q24Game8UmiMushiFP8J3DJointi = .text:0x8038316C; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game8UmiMushi3ObjFv = .text:0x803831A4; // type:function size:0xB4 scope:global align:4 +getBodyRadius__Q34Game8UmiMushi3ObjFv = .text:0x80383258; // type:function size:0x30 scope:global align:4 +birth__Q34Game8UmiMushi3ObjFR10Vector3f = .text:0x80383288; // type:function size:0x20 scope:global align:4 +onInit__Q34Game8UmiMushi3ObjFPQ24Game15CreatureInitArg = .text:0x803832A8; // type:function size:0x5A8 scope:global align:4 +__ct__Q34Game8UmiMushi3ObjFv = .text:0x80383850; // type:function size:0x428 scope:global align:4 +setFSM__Q34Game8UmiMushi3ObjFPQ34Game8UmiMushi3FSM = .text:0x80383C78; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game8UmiMushi3ObjFv = .text:0x80383CC4; // type:function size:0x90 scope:global align:4 +doAnimationCullingOff__Q34Game8UmiMushi3ObjFv = .text:0x80383D54; // type:function size:0x4B0 scope:global align:4 +doAnimationCullingOn__Q34Game8UmiMushi3ObjFv = .text:0x80384204; // type:function size:0x34 scope:global align:4 +doDirectDraw__Q34Game8UmiMushi3ObjFR8Graphics = .text:0x80384238; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8UmiMushi3ObjFR8Graphics = .text:0x8038423C; // type:function size:0x20 scope:global align:4 +changeMaterial__Q34Game8UmiMushi3ObjFv = .text:0x8038425C; // type:function size:0x98 scope:global align:4 +doStartMovie__Q34Game8UmiMushi3ObjFv = .text:0x803842F4; // type:function size:0xDC scope:global align:4 +doEndMovie__Q34Game8UmiMushi3ObjFv = .text:0x803843D0; // type:function size:0xDC scope:global align:4 +getShadowParam__Q34Game8UmiMushi3ObjFRQ24Game11ShadowParam = .text:0x803844AC; // type:function size:0x90 scope:global align:4 +doSimulation__Q34Game8UmiMushi3ObjFf = .text:0x8038453C; // type:function size:0x40 scope:global align:4 +damageCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038457C; // type:function size:0x164 scope:global align:4 +pressCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803846E0; // type:function size:0xBC scope:global align:4 +hipdropCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038479C; // type:function size:0xBC scope:global align:4 +earthquakeCallBack__Q34Game8UmiMushi3ObjFPQ24Game8Creaturef = .text:0x80384858; // type:function size:0xAC scope:global align:4 +collisionCallback__Q34Game8UmiMushi3ObjFRQ24Game9CollEvent = .text:0x80384904; // type:function size:0x20 scope:global align:4 +initMouthSlots__Q34Game8UmiMushi3ObjFv = .text:0x80384924; // type:function size:0x130 scope:global align:4 +doStartStoneState__Q34Game8UmiMushi3ObjFv = .text:0x80384A54; // type:function size:0x94 scope:global align:4 +doFinishStoneState__Q34Game8UmiMushi3ObjFv = .text:0x80384AE8; // type:function size:0xBC scope:global align:4 +startCarcassMotion__Q34Game8UmiMushi3ObjFv = .text:0x80384BA4; // type:function size:0x28 scope:global align:4 +doGetLifeGaugeParam__Q34Game8UmiMushi3ObjFRQ24Game14LifeGaugeParam = .text:0x80384BCC; // type:function size:0x4C scope:global align:4 +isReachToGoal__Q34Game8UmiMushi3ObjFf = .text:0x80384C18; // type:function size:0x5C scope:global align:4 +walkFunc__Q34Game8UmiMushi3ObjFv = .text:0x80384C74; // type:function size:0x358 scope:global align:4 +setNextGoal__Q34Game8UmiMushi3ObjFv = .text:0x80384FCC; // type:function size:0x150 scope:global align:4 +changeColor__Q34Game8UmiMushi3ObjFv = .text:0x8038511C; // type:function size:0x810 scope:global align:4 +resetColor__Q34Game8UmiMushi3ObjFv = .text:0x8038592C; // type:function size:0x1C0 scope:global align:4 +turnFunc__Q34Game8UmiMushi3ObjFv = .text:0x80385AEC; // type:function size:0x1BC scope:global align:4 +resetWalkParm__Q34Game8UmiMushi3ObjFv = .text:0x80385CA8; // type:function size:0x14 scope:global align:4 +isChangeNavi__Q34Game8UmiMushi3ObjFv = .text:0x80385CBC; // type:function size:0x248 scope:global align:4 +isFindTarget__Q34Game8UmiMushi3ObjFv = .text:0x80385F04; // type:function size:0x1D8 scope:global align:4 +isAttackStart__Q34Game8UmiMushi3ObjFv = .text:0x803860DC; // type:function size:0x240 scope:global align:4 +isNeedTurn__Q34Game8UmiMushi3ObjFv = .text:0x8038631C; // type:function size:0x1B4 scope:global align:4 +isOutOfTerritory__Q34Game8UmiMushi3ObjFf = .text:0x803864D0; // type:function size:0x5C scope:global align:4 +canMove__Q34Game8UmiMushi3ObjFv = .text:0x8038652C; // type:function size:0x12C scope:global align:4 +outMove__Q34Game8UmiMushi3ObjFv = .text:0x80386658; // type:function size:0x490 scope:global align:4 +setFindAnim__Q34Game8UmiMushi3ObjFv = .text:0x80386AE8; // type:function size:0x80 scope:global align:4 +fadeAllEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386B68; // type:function size:0x44 scope:global align:4 +fadeColorEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386BAC; // type:function size:0xA8 scope:global align:4 +createColorEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386C54; // type:function size:0x10C scope:global align:4 +attackEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386D60; // type:function size:0xC0 scope:global align:4 +meltEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386E20; // type:function size:0xC0 scope:global align:4 +flickEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386EE0; // type:function size:0x10C scope:global align:4 +eatEffect__Q34Game8UmiMushi3ObjFv = .text:0x80386FEC; // type:function size:0x70 scope:global align:4 +bubbleEffect__Q34Game8UmiMushi3ObjFv = .text:0x8038705C; // type:function size:0x70 scope:global align:4 +delShadow__Q34Game8UmiMushi3ObjFv = .text:0x803870CC; // type:function size:0x28 scope:global align:4 +eyeScaleMtxCalc__Q34Game8UmiMushi3ObjFv = .text:0x803870F4; // type:function size:0x2C8 scope:global align:4 +weakScaleMtxCalc__Q34Game8UmiMushi3ObjFv = .text:0x803873BC; // type:function size:0x184 scope:global align:4 +__dt__Q23efx11TUmiDeadawaFv = .text:0x80387540; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx7TUmiEatFv = .text:0x803875DC; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game8UmiMushi3ObjFPQ24Game21EnemyInitialParamBase = .text:0x80387678; // type:function size:0x4 scope:weak align:4 +applyImpulse__Q34Game8UmiMushi3ObjFR10Vector3R10Vector3 = .text:0x8038767C; // type:function size:0x4 scope:weak align:4 +getDamageCoeStoneState__Q34Game8UmiMushi3ObjFv = .text:0x80387680; // type:function size:0xC scope:weak align:4 +eatWhitePikminCallBack__Q34Game8UmiMushi3ObjFPQ24Game8Creaturef = .text:0x8038768C; // type:function size:0x28 scope:weak align:4 +getEnemyTypeID__Q34Game8UmiMushi3ObjFv = .text:0x803876B4; // type:function size:0x8 scope:weak align:4 +getMouthSlots__Q34Game8UmiMushi3ObjFv = .text:0x803876BC; // type:function size:0x8 scope:weak align:4 +@932@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x803876C4; // type:function size:0x14 scope:weak align:4 +@932@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803876D8; // type:function size:0x14 scope:weak align:4 +@932@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x803876EC; // type:function size:0x14 scope:weak align:4 +@932@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x80387700; // type:function size:0x14 scope:weak align:4 +@932@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x80387714; // type:function size:0x14 scope:weak align:4 +@932@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x80387728; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx7TUmiEatFv = .text:0x8038773C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TUmiDeadawaFv = .text:0x80387744; // type:function size:0x8 scope:weak align:4 +init__Q34Game11ShijimiChou3FSMFPQ24Game9EnemyBase = .text:0x8038774C; // type:function size:0x108 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateWaitFi = .text:0x80387854; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387890; // type:function size:0xC0 scope:global align:4 +exec__Q34Game11ShijimiChou9StateWaitFPQ24Game9EnemyBase = .text:0x80387950; // type:function size:0x140 scope:global align:4 +__ct__Q34Game11ShijimiChou8StateFlyFi = .text:0x80387A90; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou8StateFlyFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387ACC; // type:function size:0x54 scope:global align:4 +exec__Q34Game11ShijimiChou8StateFlyFPQ24Game9EnemyBase = .text:0x80387B20; // type:function size:0xE8 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateFallFi = .text:0x80387C08; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387C44; // type:function size:0xD0 scope:global align:4 +exec__Q34Game11ShijimiChou9StateFallFPQ24Game9EnemyBase = .text:0x80387D14; // type:function size:0x94 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateDeadFi = .text:0x80387DA8; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387DE4; // type:function size:0xA0 scope:global align:4 +exec__Q34Game11ShijimiChou9StateDeadFPQ24Game9EnemyBase = .text:0x80387E84; // type:function size:0x114 scope:global align:4 +__ct__Q34Game11ShijimiChou10StateLeaveFi = .text:0x80387F98; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou10StateLeaveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80387FD4; // type:function size:0x44 scope:global align:4 +exec__Q34Game11ShijimiChou10StateLeaveFPQ24Game9EnemyBase = .text:0x80388018; // type:function size:0x24 scope:global align:4 +__ct__Q34Game11ShijimiChou9StateRestFi = .text:0x8038803C; // type:function size:0x3C scope:global align:4 +init__Q34Game11ShijimiChou9StateRestFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x80388078; // type:function size:0xBC scope:global align:4 +exec__Q34Game11ShijimiChou9StateRestFPQ24Game9EnemyBase = .text:0x80388134; // type:function size:0x34C scope:global align:4 +setAnimMgr__Q34Game11ShijimiChou14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x80388480; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game11ShijimiChou14ProperAnimatorFi = .text:0x80388488; // type:function size:0x8 scope:global align:4 +__dt__Q34Game11ShijimiChou14ProperAnimatorFv = .text:0x80388490; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game11ShijimiChou14ProperAnimatorFv = .text:0x803884EC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game11ShijimiChou3MgrFiUc = .text:0x803884F4; // type:function size:0x5C scope:global align:4 +doAlloc__Q34Game11ShijimiChou3MgrFv = .text:0x80388550; // type:function size:0x150 scope:global align:4 +getEnemy__Q34Game11ShijimiChou3MgrFi = .text:0x803886A0; // type:function size:0x10 scope:weak align:4 +__ct__Q34Game11ShijimiChou5ParmsFv = .text:0x803886B0; // type:function size:0xB0 scope:weak align:4 +__ct__Q44Game11ShijimiChou5Parms11ProperParmsFv = .text:0x80388760; // type:function size:0x238 scope:weak align:4 +loadModelData__Q34Game11ShijimiChou3MgrFv = .text:0x80388998; // type:function size:0x38 scope:global align:4 +createModel__Q34Game11ShijimiChou3MgrFv = .text:0x803889D0; // type:function size:0x138 scope:global align:4 +birth__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArg = .text:0x80388B08; // type:function size:0xC8 scope:global align:4 +doAnimation__Q34Game11ShijimiChou3MgrFv = .text:0x80388BD0; // type:function size:0x50 scope:global align:4 +fetch__Q34Game11ShijimiChou3MgrFP8J3DModelf = .text:0x80388C20; // type:function size:0x58 scope:global align:4 +createGroup__Q34Game11ShijimiChou3MgrFPQ34Game11ShijimiChou3Obji = .text:0x80388C78; // type:function size:0x4BC scope:global align:4 +createGroupByBigFoot__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgi = .text:0x80389134; // type:function size:0xB8 scope:global align:4 +createGroupByPlants__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgi = .text:0x803891EC; // type:function size:0xB8 scope:global align:4 +createGroupByEnemy__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgPQ24Game9EnemyBaseib = .text:0x803892A4; // type:function size:0x198 scope:global align:4 +__dt__Q34Game11ShijimiChou3MgrFv = .text:0x8038943C; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game11ShijimiChou3MgrFv = .text:0x803894EC; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game11ShijimiChou3MgrFi = .text:0x803894F4; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game11ShijimiChou3ObjFv = .text:0x80389554; // type:function size:0xBC scope:weak align:4 +read__Q34Game11ShijimiChou5ParmsFR6Stream = .text:0x80389610; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game11ShijimiChou3MgrFv = .text:0x80389660; // type:function size:0x8 scope:weak align:4 +setParameters__Q34Game11ShijimiChou3ObjFv = .text:0x80389668; // type:function size:0xA4 scope:global align:4 +birth__Q34Game11ShijimiChou3ObjFR10Vector3f = .text:0x8038970C; // type:function size:0x20 scope:global align:4 +onInit__Q34Game11ShijimiChou3ObjFPQ24Game15CreatureInitArg = .text:0x8038972C; // type:function size:0x24C scope:global align:4 +__ct__Q34Game11ShijimiChou3ObjFv = .text:0x80389978; // type:function size:0x250 scope:global align:4 +setFSM__Q34Game11ShijimiChou3ObjFPQ34Game11ShijimiChou3FSM = .text:0x80389BC8; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game11ShijimiChou3ObjFv = .text:0x80389C14; // type:function size:0xAC scope:global align:4 +doDirectDraw__Q34Game11ShijimiChou3ObjFR8Graphics = .text:0x80389CC0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game11ShijimiChou3ObjFR8Graphics = .text:0x80389CC4; // type:function size:0x20 scope:global align:4 +doAnimation__Q34Game11ShijimiChou3ObjFv = .text:0x80389CE4; // type:function size:0x20 scope:global align:4 +doEntry__Q34Game11ShijimiChou3ObjFv = .text:0x80389D04; // type:function size:0x4C scope:global align:4 +doAnimationCullingOff__Q34Game11ShijimiChou3ObjFv = .text:0x80389D50; // type:function size:0x1A0 scope:global align:4 +doAnimationCullingOn__Q34Game11ShijimiChou3ObjFv = .text:0x80389EF0; // type:function size:0xB8 scope:global align:4 +onKill__Q34Game11ShijimiChou3ObjFPQ24Game15CreatureKillArg = .text:0x80389FA8; // type:function size:0x84 scope:global align:4 +doSimulation__Q34Game11ShijimiChou3ObjFf = .text:0x8038A02C; // type:function size:0x438 scope:global align:4 +changeMaterial__Q34Game11ShijimiChou3ObjFv = .text:0x8038A464; // type:function size:0x26C scope:global align:4 +doStartMovie__Q34Game11ShijimiChou3ObjFv = .text:0x8038A6D0; // type:function size:0x30 scope:global align:4 +doEndMovie__Q34Game11ShijimiChou3ObjFv = .text:0x8038A700; // type:function size:0x30 scope:global align:4 +doStartStoneState__Q34Game11ShijimiChou3ObjFv = .text:0x8038A730; // type:function size:0x34 scope:global align:4 +damageCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038A764; // type:function size:0x8 scope:global align:4 +wallCallback__Q34Game11ShijimiChou3ObjFRCQ24Game8MoveInfo = .text:0x8038A76C; // type:function size:0x94 scope:global align:4 +collisionCallback__Q34Game11ShijimiChou3ObjFRQ24Game9CollEvent = .text:0x8038A800; // type:function size:0x64 scope:global align:4 +startCarcassMotion__Q34Game11ShijimiChou3ObjFv = .text:0x8038A864; // type:function size:0x28 scope:global align:4 +getShadowParam__Q34Game11ShijimiChou3ObjFRQ24Game11ShadowParam = .text:0x8038A88C; // type:function size:0x124 scope:global align:4 +genItem__Q34Game11ShijimiChou3ObjFv = .text:0x8038A9B0; // type:function size:0x23C scope:global align:4 +checkFlyStart__Q34Game11ShijimiChou3ObjFv = .text:0x8038ABEC; // type:function size:0x80 scope:global align:4 +fly__Q34Game11ShijimiChou3ObjFv = .text:0x8038AC6C; // type:function size:0x3BC scope:global align:4 +restFly__Q34Game11ShijimiChou3ObjFv = .text:0x8038B028; // type:function size:0x108 scope:global align:4 +restCheck__Q34Game11ShijimiChou3ObjFv = .text:0x8038B130; // type:function size:0xB4 scope:global align:4 +checkRestOn__Q34Game11ShijimiChou3ObjFv = .text:0x8038B1E4; // type:function size:0x370 scope:global align:4 +checkRestOff__Q34Game11ShijimiChou3ObjFv = .text:0x8038B554; // type:function size:0x2AC scope:global align:4 +resetRestPos__Q34Game11ShijimiChou3ObjFv = .text:0x8038B800; // type:function size:0xFC scope:global align:4 +leave__Q34Game11ShijimiChou3ObjFv = .text:0x8038B8FC; // type:function size:0x174 scope:global align:4 +leaveInit__Q34Game11ShijimiChou3ObjFv = .text:0x8038BA70; // type:function size:0x1AC scope:global align:4 +setNextGoal__Q34Game11ShijimiChou3ObjFv = .text:0x8038BC1C; // type:function size:0x210 scope:global align:4 +setTraceGoal__Q34Game11ShijimiChou3ObjFv = .text:0x8038BE2C; // type:function size:0x100 scope:global align:4 +isFallEnd__Q34Game11ShijimiChou3ObjFv = .text:0x8038BF2C; // type:function size:0x60 scope:global align:4 +deadEffect__Q34Game11ShijimiChou3ObjFv = .text:0x8038BF8C; // type:function size:0x28 scope:global align:4 +fallBehavior__Q34Game11ShijimiChou3ObjFv = .text:0x8038BFB4; // type:function size:0x1C4 scope:global align:4 +updateCluster__Q34Game11ShijimiChou3ObjFv = .text:0x8038C178; // type:function size:0xB0 scope:global align:4 +getFlyType__Q34Game11ShijimiChou3ObjFv = .text:0x8038C228; // type:function size:0x20 scope:global align:4 +leaderInit__Q34Game11ShijimiChou3ObjFv = .text:0x8038C248; // type:function size:0x6C scope:global align:4 +createAppearEffect__Q34Game11ShijimiChou3ObjFv = .text:0x8038C2B4; // type:function size:0xA8 scope:global align:4 +fadeAppearEffect__Q34Game11ShijimiChou3ObjFv = .text:0x8038C35C; // type:function size:0x30 scope:global align:4 +getName__Q23efx7ArgChouFv = .text:0x8038C38C; // type:function size:0x8 scope:weak align:4 +setInitialSetting__Q34Game11ShijimiChou3ObjFPQ24Game21EnemyInitialParamBase = .text:0x8038C394; // type:function size:0x4 scope:weak align:4 +ignoreAtari__Q34Game11ShijimiChou3ObjFPQ24Game8Creature = .text:0x8038C398; // type:function size:0x88 scope:weak align:4 +pressCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038C420; // type:function size:0x8 scope:weak align:4 +hipdropCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart = .text:0x8038C428; // type:function size:0x8 scope:weak align:4 +earthquakeCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8Creaturef = .text:0x8038C430; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game11ShijimiChou3ObjFv = .text:0x8038C438; // type:function size:0x8 scope:weak align:4 +__sinit_shijimiChou_cpp = .text:0x8038C440; // type:function size:0x4 scope:local align:4 +@828@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x8038C444; // type:function size:0x14 scope:weak align:4 +@828@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x8038C458; // type:function size:0x14 scope:weak align:4 +@828@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x8038C46C; // type:function size:0x14 scope:weak align:4 +@828@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x8038C480; // type:function size:0x14 scope:weak align:4 +@828@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x8038C494; // type:function size:0x14 scope:weak align:4 +@828@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x8038C4A8; // type:function size:0x14 scope:weak align:4 +__ct__Q38Morimura14TChallengePiki7posInfoFv = .text:0x8038C4BC; // type:function size:0x4 scope:weak align:4 +update__Q28Morimura14TChallengePikiFv = .text:0x8038C4C0; // type:function size:0x46C scope:global align:4 +update__Q28Morimura15TChallengePanelFib = .text:0x8038C92C; // type:function size:0x3D0 scope:global align:4 +__ct__Q28Morimura16TChallengeScreenFP10JKRArchivei = .text:0x8038CCFC; // type:function size:0xA0 scope:global align:4 +create__Q28Morimura16TChallengeScreenFPCcUl = .text:0x8038CD9C; // type:function size:0x3C0 scope:global align:4 +createAnimPane__Q28Morimura16TChallengeScreenFPc = .text:0x8038D15C; // type:function size:0xD8 scope:global align:4 +update__Q28Morimura16TChallengeScreenFv = .text:0x8038D234; // type:function size:0x18C scope:global align:4 +updateBckPane__Q28Morimura16TChallengeScreenFv = .text:0x8038D3C0; // type:function size:0xB0 scope:global align:4 +isRandAnimStart__Q28Morimura16TChallengeScreenFv = .text:0x8038D470; // type:function size:0x20 scope:global align:4 +__ct__Q28Morimura24TChallengePlayModeScreenFP10JKRArchivei = .text:0x8038D490; // type:function size:0x128 scope:global align:4 +create__Q28Morimura24TChallengePlayModeScreenFPCcUl = .text:0x8038D5B8; // type:function size:0x598 scope:global align:4 +update__Q28Morimura24TChallengePlayModeScreenFv = .text:0x8038DB50; // type:function size:0x7FC scope:global align:4 +draw__Q28Morimura24TChallengePlayModeScreenFR8GraphicsP13J2DPerspGraph = .text:0x8038E34C; // type:function size:0x660 scope:global align:4 +create__Q28Morimura33TChallengeSelectExplanationWindowFPCcUl = .text:0x8038E9AC; // type:function size:0x3C scope:global align:4 +screenScaleUp__Q28Morimura33TChallengeSelectExplanationWindowFv = .text:0x8038E9E8; // type:function size:0x4 scope:global align:4 +__ct__Q28Morimura16TChallengeSelectFv = .text:0x8038E9EC; // type:function size:0x13C scope:global align:4 +__dt__Q28Morimura16TChallengeSelectFv = .text:0x8038EB28; // type:function size:0xF4 scope:global align:4 +doCreate__Q28Morimura16TChallengeSelectFP10JKRArchive = .text:0x8038EC1C; // type:function size:0x1BB4 scope:global align:4 +doUpdate__Q28Morimura16TChallengeSelectFv = .text:0x803907D0; // type:function size:0x14E0 scope:global align:4 +doDraw__Q28Morimura16TChallengeSelectFR8Graphics = .text:0x80391CB0; // type:function size:0x514 scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura16TChallengeSelectFv = .text:0x803921C4; // type:function size:0x78 scope:global align:4 +setInfo__Q28Morimura16TChallengeSelectFi = .text:0x8039223C; // type:function size:0x3F8 scope:global align:4 +setStageName__Q28Morimura16TChallengeSelectFi = .text:0x80392634; // type:function size:0xD0 scope:global align:4 +getState__Q28Morimura16TChallengeSelectFi = .text:0x80392704; // type:function size:0x12C scope:global align:4 +getAfterState__Q28Morimura16TChallengeSelectFi = .text:0x80392830; // type:function size:0xA4 scope:global align:4 +isChangeState__Q28Morimura16TChallengeSelectFi = .text:0x803928D4; // type:function size:0xE4 scope:global align:4 +getIndexMax__Q28Morimura16TChallengeSelectFv = .text:0x803929B8; // type:function size:0x1CC scope:global align:4 +openWindow__Q28Morimura16TChallengeSelectFv = .text:0x80392B84; // type:function size:0x24 scope:global align:4 +closeWindow__Q28Morimura16TChallengeSelectFv = .text:0x80392BA8; // type:function size:0x24 scope:global align:4 +reset__Q28Morimura16TChallengeSelectFv = .text:0x80392BCC; // type:function size:0x140 scope:global align:4 +demoStart__Q28Morimura16TChallengeSelectFv = .text:0x80392D0C; // type:function size:0x4C0 scope:global align:4 +doCreateObj__Q28Morimura21TChallengeSelectSceneFP10JKRArchive = .text:0x803931CC; // type:function size:0x9C scope:global align:4 +doStart__Q28Morimura21TChallengeSelectSceneFPQ26Screen13StartSceneArg = .text:0x80393268; // type:function size:0x34 scope:global align:4 +getResName__Q28Morimura21TChallengeSelectSceneCFv = .text:0x8039329C; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura21TChallengeSelectSceneFv = .text:0x803932A8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura21TChallengeSelectSceneFv = .text:0x803932B0; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura21TChallengeSelectSceneFv = .text:0x803932BC; // type:function size:0x14 scope:weak align:4 +__dt__Q25efx2d11T2DChalDiveFv = .text:0x803932D0; // type:function size:0x84 scope:weak align:4 +getDispMemberBase__Q28Morimura16TChallengeSelectFv = .text:0x80393354; // type:function size:0x34 scope:weak align:4 +__sinit_challengeSelect2D_cpp = .text:0x80393388; // type:function size:0x14 scope:local align:4 +@24@__dt__Q28Morimura16TChallengeSelectFv = .text:0x8039339C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d11T2DChalDiveFv = .text:0x803933A4; // type:function size:0x8 scope:weak align:4 +create__Q28Morimura22TChallengeResultScreenFPCcUl = .text:0x803933AC; // type:function size:0x20 scope:global align:4 +createAnimPane__Q28Morimura22TChallengeResultScreenFPc = .text:0x803933CC; // type:function size:0x118 scope:global align:4 +updateBckPane__Q28Morimura22TChallengeResultScreenFv = .text:0x803934E4; // type:function size:0x54 scope:global align:4 +create__Q28Morimura26TChallengeResultDemoScreenFPCcUl = .text:0x80393538; // type:function size:0xF8 scope:global align:4 +update__Q28Morimura26TChallengeResultDemoScreenFv = .text:0x80393630; // type:function size:0xE4 scope:global align:4 +draw__Q28Morimura26TChallengeResultDemoScreenFR8GraphicsP13J2DPerspGraph = .text:0x80393714; // type:function size:0x2C scope:global align:4 +setPane__Q28Morimura9TMovePaneFP7J2DPane = .text:0x80393740; // type:function size:0x7C scope:global align:4 +update__Q28Morimura9TMovePaneFv = .text:0x803937BC; // type:function size:0xFC scope:global align:4 +move__Q28Morimura9TMovePaneFv = .text:0x803938B8; // type:function size:0x16C scope:global align:4 +turn__Q28Morimura9TMovePaneFv = .text:0x80393A24; // type:function size:0x8C scope:global align:4 +getAngDist__Q28Morimura9TMovePaneFv = .text:0x80393AB0; // type:function size:0x7C scope:global align:4 +hosei__Q28Morimura9TMovePaneFv = .text:0x80393B2C; // type:function size:0x204 scope:global align:4 +rolling__Q28Morimura9TMovePaneFv = .text:0x80393D30; // type:function size:0x30 scope:global align:4 +stick__Q28Morimura9TMovePaneFv = .text:0x80393D60; // type:function size:0x12C scope:global align:4 +isReachToGoal__Q28Morimura9TMovePaneFv = .text:0x80393E8C; // type:function size:0x34 scope:global align:4 +reset__Q28Morimura9TMovePaneFv = .text:0x80393EC0; // type:function size:0xD0 scope:global align:4 +setTCounterRV__8MorimuraFPQ29P2DScreen3MgrUxUxUxPUlUsUsP10JKRArchive = .text:0x80393F90; // type:function size:0x100 scope:global align:4 +__ct__Q28Morimura10TCounterRVFPPcUsUsP10JKRArchive = .text:0x80394090; // type:function size:0x130 scope:global align:4 +update__Q28Morimura10TCounterRVFv = .text:0x803941C0; // type:function size:0xDC scope:global align:4 +setValue__Q28Morimura10TCounterRVFbb = .text:0x8039429C; // type:function size:0xD8 scope:global align:4 +__ct__Q28Morimura16TChallengeResultFv = .text:0x80394374; // type:function size:0x2F0 scope:global align:4 +__ct__Q38Morimura16TChallengeResult10VectorUnitFv = .text:0x80394664; // type:function size:0x4 scope:weak align:4 +__dt__Q28Morimura16TChallengeResultFv = .text:0x80394668; // type:function size:0xF4 scope:global align:4 +doCreate__Q28Morimura16TChallengeResultFP10JKRArchive = .text:0x8039475C; // type:function size:0x1854 scope:global align:4 +doUpdate__Q28Morimura16TChallengeResultFv = .text:0x80395FB0; // type:function size:0x9C0 scope:global align:4 +doDraw__Q28Morimura16TChallengeResultFR8Graphics = .text:0x80396970; // type:function size:0x160 scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura16TChallengeResultFv = .text:0x80396AD0; // type:function size:0x5C scope:global align:4 +setInfo__Q28Morimura16TChallengeResultFv = .text:0x80396B2C; // type:function size:0xEDC scope:global align:4 +updateDemo__Q28Morimura16TChallengeResultFv = .text:0x80397A08; // type:function size:0x1250 scope:global align:4 +changeAnimDemo__Q28Morimura16TChallengeResultFv = .text:0x80398C58; // type:function size:0x540 scope:global align:4 +startRankInDemo__Q28Morimura16TChallengeResultFv = .text:0x80399198; // type:function size:0x220 scope:global align:4 +startDemo__Q28Morimura16TChallengeResultFv = .text:0x803993B8; // type:function size:0x17C scope:global align:4 +fadeEffect__Q28Morimura16TChallengeResultFv = .text:0x80399534; // type:function size:0x120 scope:global align:4 +doUserCallBackFunc__Q28Morimura21TChallengeResultSceneFPQ28Resource10MgrCommand = .text:0x80399654; // type:function size:0xB0 scope:global align:4 +getResName__Q28Morimura21TChallengeResultSceneCFv = .text:0x80399704; // type:function size:0x8 scope:weak align:4 +doCreateObj__Q28Morimura21TChallengeResultSceneFP10JKRArchive = .text:0x8039970C; // type:function size:0x4 scope:weak align:4 +getSceneType__Q28Morimura21TChallengeResultSceneFv = .text:0x80399710; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura21TChallengeResultSceneFv = .text:0x80399718; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura21TChallengeResultSceneFv = .text:0x80399724; // type:function size:0x14 scope:weak align:4 +getDispMemberBase__Q28Morimura16TChallengeResultFv = .text:0x80399738; // type:function size:0x34 scope:weak align:4 +__dt__Q25efx2d15T2DCavecompLoopFv = .text:0x8039976C; // type:function size:0x84 scope:weak align:4 +__dt__Q28Morimura10TCounterRVFv = .text:0x803997F0; // type:function size:0x90 scope:weak align:4 +@8@__dt__Q25efx2d15T2DCavecompLoopFv = .text:0x80399880; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Morimura16TChallengeResultFv = .text:0x80399888; // type:function size:0x8 scope:weak align:4 +draw__Q28Morimura16TVsSelectIndPaneFv = .text:0x80399890; // type:function size:0x314 scope:global align:4 +create__Q28Morimura26TVsSelectExplanationWindowFPCcUl = .text:0x80399BA4; // type:function size:0x3C scope:global align:4 +screenScaleUp__Q28Morimura26TVsSelectExplanationWindowFv = .text:0x80399BE0; // type:function size:0x4 scope:global align:4 +__ct__Q38Morimura7TVsPiki7posInfoFv = .text:0x80399BE4; // type:function size:0x4 scope:weak align:4 +update__Q28Morimura7TVsPikiFi = .text:0x80399BE8; // type:function size:0x2C8 scope:global align:4 +draw__Q28Morimura7TVsPikiFv = .text:0x80399EB0; // type:function size:0x280 scope:global align:4 +posUpdate__Q28Morimura14TVsSelectOnyonFf = .text:0x8039A130; // type:function size:0x308 scope:global align:4 +getAngDist__Q28Morimura14TVsSelectOnyonFv = .text:0x8039A438; // type:function size:0x7C scope:global align:4 +create__Q28Morimura15TVsSelectScreenFPCcUl = .text:0x8039A4B4; // type:function size:0x2B0 scope:global align:4 +update__Q28Morimura17TVsSelectCBWinNumFv = .text:0x8039A764; // type:function size:0x58 scope:global align:4 +setValue__Q28Morimura17TVsSelectCBWinNumFbb = .text:0x8039A7BC; // type:function size:0x68 scope:global align:4 +__ct__Q28Morimura9TVsSelectFv = .text:0x8039A824; // type:function size:0x3A0 scope:global align:4 +__dt__Q28Morimura9TVsSelectFv = .text:0x8039ABC4; // type:function size:0x10C scope:global align:4 +doCreate__Q28Morimura9TVsSelectFP10JKRArchive = .text:0x8039ACD0; // type:function size:0x2554 scope:global align:4 +create__Q28Morimura19TVsSelectListScreenFPCcUl = .text:0x8039D224; // type:function size:0x20 scope:weak align:4 +doUpdate__Q28Morimura9TVsSelectFv = .text:0x8039D244; // type:function size:0x1244 scope:global align:4 +update__Q28Morimura19TVsSelectListScreenFv = .text:0x8039E488; // type:function size:0x30 scope:weak align:4 +doDraw__Q28Morimura9TVsSelectFR8Graphics = .text:0x8039E4B8; // type:function size:0xAF0 scope:global align:4 +__as__10J2DPictureFRC10J2DPicture = .text:0x8039EFA8; // type:function size:0x1D4 scope:weak align:4 +__as__7J2DPaneFRC7J2DPane = .text:0x8039F17C; // type:function size:0x21C scope:weak align:4 +doUpdateFadeinFinish__Q28Morimura9TVsSelectFv = .text:0x8039F398; // type:function size:0xC scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura9TVsSelectFv = .text:0x8039F3A4; // type:function size:0xAC scope:global align:4 +paneInit__Q28Morimura9TVsSelectFv = .text:0x8039F450; // type:function size:0x3CC scope:global align:4 +changePaneInfo__Q28Morimura9TVsSelectFv = .text:0x8039F81C; // type:function size:0x240 scope:global align:4 +getNameID__Q28Morimura9TVsSelectFi = .text:0x8039FA5C; // type:function size:0x84 scope:global align:4 +getIdMax__Q28Morimura9TVsSelectFv = .text:0x8039FAE0; // type:function size:0x8 scope:weak align:4 +getCourseID__Q28Morimura9TVsSelectFi = .text:0x8039FAE8; // type:function size:0x3C scope:global align:4 +doZoom__Q28Morimura9TVsSelectFv = .text:0x8039FB24; // type:function size:0x1F4 scope:global align:4 +doMoveOnyon__Q28Morimura9TVsSelectFv = .text:0x8039FD18; // type:function size:0x6C scope:global align:4 +doScreenEffect__Q28Morimura9TVsSelectFv = .text:0x8039FD84; // type:function size:0x214 scope:global align:4 +onyonDemoInit__Q28Morimura9TVsSelectFv = .text:0x8039FF98; // type:function size:0x4FC scope:global align:4 +demoStart__Q28Morimura9TVsSelectFv = .text:0x803A0494; // type:function size:0x1C0 scope:global align:4 +changeCourseTexture__Q28Morimura9TVsSelectFv = .text:0x803A0654; // type:function size:0x9C scope:global align:4 +changeIndirectTexture__Q28Morimura9TVsSelectFv = .text:0x803A06F0; // type:function size:0xD0 scope:global align:4 +setShortenIndex__Q28Morimura9TVsSelectFiib = .text:0x803A07C0; // type:function size:0xB8 scope:global align:4 +updateFacePicture__Q28Morimura9TVsSelectFv = .text:0x803A0878; // type:function size:0x140 scope:global align:4 +changeFaceTexture__Q28Morimura9TVsSelectFv = .text:0x803A09B8; // type:function size:0x1F4 scope:global align:4 +changeOrimaTexture__Q28Morimura9TVsSelectFi = .text:0x803A0BAC; // type:function size:0x9C scope:global align:4 +changeLouieTexture__Q28Morimura9TVsSelectFi = .text:0x803A0C48; // type:function size:0x9C scope:global align:4 +changeSlotPage__Q28Morimura9TVsSelectFv = .text:0x803A0CE4; // type:function size:0x118 scope:global align:4 +doCreateObj__Q28Morimura14TVsSelectSceneFP10JKRArchive = .text:0x803A0DFC; // type:function size:0x9C scope:global align:4 +doStart__Q28Morimura14TVsSelectSceneFPQ26Screen13StartSceneArg = .text:0x803A0E98; // type:function size:0x34 scope:global align:4 +getResName__Q28Morimura14TVsSelectSceneCFv = .text:0x803A0ECC; // type:function size:0xC scope:weak align:4 +getSceneType__Q28Morimura14TVsSelectSceneFv = .text:0x803A0ED8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura14TVsSelectSceneFv = .text:0x803A0EE0; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura14TVsSelectSceneFv = .text:0x803A0EEC; // type:function size:0x14 scope:weak align:4 +getDispMemberBase__Q28Morimura9TVsSelectFv = .text:0x803A0F00; // type:function size:0x34 scope:weak align:4 +__dt__Q28Morimura17TVsSelectCBWinNumFv = .text:0x803A0F34; // type:function size:0xA0 scope:weak align:4 +__dt__Q28Morimura16TVsSelectIndPaneFv = .text:0x803A0FD4; // type:function size:0x70 scope:weak align:4 +__sinit_vsSelect2D_cpp = .text:0x803A1044; // type:function size:0x44 scope:local align:4 +@24@__dt__Q28Morimura9TVsSelectFv = .text:0x803A1088; // type:function size:0x8 scope:weak align:4 +draw__Q28Morimura16TCallbackScissorFR8GraphicsR14J2DGrafContext = .text:0x803A1090; // type:function size:0xB8 scope:global align:4 +__ct__Q28Morimura13TOffsetMsgSetFPUxUxi = .text:0x803A1148; // type:function size:0xC0 scope:global align:4 +__ct__Q28Morimura13TOffsetMsgSetFPUxUxiPUxPi = .text:0x803A1208; // type:function size:0x68 scope:global align:4 +getMsgID__Q28Morimura13TOffsetMsgSetFi = .text:0x803A1270; // type:function size:0x19C scope:global align:4 +__ct__Q28Morimura11TScreenBaseFP10JKRArchivei = .text:0x803A140C; // type:function size:0x28 scope:global align:4 +create__Q28Morimura11TScreenBaseFPCcUl = .text:0x803A1434; // type:function size:0x90 scope:global align:4 +addAnim__Q28Morimura11TScreenBaseFPc = .text:0x803A14C4; // type:function size:0xB0 scope:global align:4 +update__Q28Morimura11TScreenBaseFv = .text:0x803A1574; // type:function size:0x88 scope:global align:4 +draw__Q28Morimura11TScreenBaseFR8GraphicsP13J2DPerspGraph = .text:0x803A15FC; // type:function size:0x38 scope:global align:4 +__ct__Q28Morimura8TIndPaneFPCcff = .text:0x803A1634; // type:function size:0x124 scope:global align:4 +createIndTexture__Q28Morimura8TIndPaneFPCc = .text:0x803A1758; // type:function size:0xA4 scope:global align:4 +createCaptureTexture__Q28Morimura8TIndPaneF9_GXTexFmt = .text:0x803A17FC; // type:function size:0x74 scope:global align:4 +draw__Q28Morimura8TIndPaneFv = .text:0x803A1870; // type:function size:0x308 scope:global align:4 +setValue__Q28Morimura15TScaleUpCounterFbb = .text:0x803A1B78; // type:function size:0xA8 scope:global align:4 +forceScaleUp__Q28Morimura15TScaleUpCounterFb = .text:0x803A1C20; // type:function size:0x60 scope:global align:4 +setScale__Q28Morimura15TScaleUpCounterFff = .text:0x803A1C80; // type:function size:0x40 scope:global align:4 +setScaleUpCounter__8MorimuraFPQ29P2DScreen3MgrUxPUlUsP10JKRArchive = .text:0x803A1CC0; // type:function size:0x1A4 scope:global align:4 +setScaleUpCounter2__8MorimuraFPQ29P2DScreen3MgrUxUxPUlUsP10JKRArchive = .text:0x803A1E64; // type:function size:0x12C scope:global align:4 +drawSelf__Q28Morimura12TScissorPaneFffPA3_A4_f = .text:0x803A1F90; // type:function size:0xB8 scope:global align:4 +__dt__Q28Morimura12TScissorPaneFv = .text:0x803A2048; // type:function size:0x60 scope:weak align:4 +__dt__Q28Morimura15TScaleUpCounterFv = .text:0x803A20A8; // type:function size:0x90 scope:weak align:4 +__dt__Q28Morimura16TCallbackScissorFv = .text:0x803A2138; // type:function size:0x80 scope:weak align:4 +__ct__Q28Morimura11TIndexGroupFv = .text:0x803A21B8; // type:function size:0x4C scope:global align:4 +upIndex__Q28Morimura11TIndexGroupFv = .text:0x803A2204; // type:function size:0x6C scope:global align:4 +downIndex__Q28Morimura11TIndexGroupFv = .text:0x803A2270; // type:function size:0x6C scope:global align:4 +rollSpUp__Q28Morimura11TIndexGroupFv = .text:0x803A22DC; // type:function size:0x30 scope:global align:4 +update__Q28Morimura10TIndexPaneFv = .text:0x803A230C; // type:function size:0x9C scope:global align:4 +createIconInfo__Q28Morimura10TIndexPaneFii = .text:0x803A23A8; // type:function size:0x94 scope:global align:4 +setIndex__Q28Morimura10TIndexPaneFi = .text:0x803A243C; // type:function size:0x1E4 scope:global align:4 +getIndex__Q28Morimura10TIndexPaneFv = .text:0x803A2620; // type:function size:0x58 scope:global align:4 +getListIndex__Q28Morimura10TIndexPaneFv = .text:0x803A2678; // type:function size:0x8 scope:global align:4 +doIconOffsetY__Q28Morimura10TIndexPaneFv = .text:0x803A2680; // type:function size:0xF4 scope:global align:4 +__ct__Q28Morimura9TIconInfoFv = .text:0x803A2774; // type:function size:0x68 scope:global align:4 +init__Q28Morimura9TIconInfoFPQ28Morimura15TScaleUpCounterP7J2DPaneP7J2DPane = .text:0x803A27DC; // type:function size:0xD0 scope:global align:4 +update__Q28Morimura9TIconInfoFf = .text:0x803A28AC; // type:function size:0x198 scope:global align:4 +setInfo__Q28Morimura9TIconInfoFiPC7ResTIMG = .text:0x803A2A44; // type:function size:0x1B4 scope:global align:4 +startScaleUp__Q28Morimura9TIconInfoFf = .text:0x803A2BF8; // type:function size:0x40 scope:global align:4 +create__Q28Morimura11TListScreenFPCcUl = .text:0x803A2C38; // type:function size:0xE4 scope:global align:4 +__ct__Q28Morimura11TScrollListFPc = .text:0x803A2D1C; // type:function size:0x90 scope:global align:4 +updateIndex__Q28Morimura11TScrollListFb = .text:0x803A2DAC; // type:function size:0x428 scope:global align:4 +getUpdateIndex__Q28Morimura11TScrollListFRib = .text:0x803A31D4; // type:function size:0xDC scope:global align:4 +updateList__Q28Morimura11TScrollListFv = .text:0x803A32B0; // type:function size:0x390 scope:global align:4 +changeIndex__Q28Morimura11TScrollListFv = .text:0x803A3640; // type:function size:0x60 scope:global align:4 +@24@__dt__Q28Morimura11TScrollListFv = .text:0x803A36A0; // type:function size:0x8 scope:weak align:4 +__ct__Q28Morimura17TConfirmEndWindowFPCc = .text:0x803A36A8; // type:function size:0x50 scope:global align:4 +doStart__Q28Morimura17TConfirmEndWindowFPCQ26Screen13StartSceneArg = .text:0x803A36F8; // type:function size:0x40 scope:global align:4 +doUpdateFadeinFinish__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3738; // type:function size:0x54 scope:global align:4 +doUpdateFadein__Q28Morimura17TConfirmEndWindowFv = .text:0x803A378C; // type:function size:0x20 scope:global align:4 +doUpdateFadeoutFinish__Q28Morimura17TConfirmEndWindowFv = .text:0x803A37AC; // type:function size:0x40 scope:global align:4 +doUpdateFadeout__Q28Morimura17TConfirmEndWindowFv = .text:0x803A37EC; // type:function size:0x28 scope:global align:4 +doDraw__Q28Morimura17TConfirmEndWindowFR8Graphics = .text:0x803A3814; // type:function size:0x38 scope:global align:4 +setRetireMsg__Q28Morimura17TConfirmEndWindowFUx = .text:0x803A384C; // type:function size:0x24 scope:global align:4 +__ct__Q28Morimura24TSelectExplanationWindowFP10JKRArchivei = .text:0x803A3870; // type:function size:0x74 scope:global align:4 +update__Q28Morimura24TSelectExplanationWindowFv = .text:0x803A38E4; // type:function size:0x194 scope:global align:4 +draw__Q28Morimura24TSelectExplanationWindowFR8GraphicsP13J2DPerspGraph = .text:0x803A3A78; // type:function size:0x2C scope:global align:4 +openWindow__Q28Morimura24TSelectExplanationWindowFv = .text:0x803A3AA4; // type:function size:0x14 scope:global align:4 +closeWindow__Q28Morimura24TSelectExplanationWindowFv = .text:0x803A3AB8; // type:function size:0x14 scope:global align:4 +__dt__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3ACC; // type:function size:0x80 scope:weak align:4 +@24@__dt__Q28Morimura17TConfirmEndWindowFv = .text:0x803A3B4C; // type:function size:0x8 scope:weak align:4 +init__Q34Game8BlackMan3FSMFPQ24Game9EnemyBase = .text:0x803A3B54; // type:function size:0x174 scope:global align:4 +__ct__Q34Game8BlackMan9StateWalkFi = .text:0x803A3CC8; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A3D04; // type:function size:0x80 scope:global align:4 +exec__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBase = .text:0x803A3D84; // type:function size:0x1D4 scope:global align:4 +cleanup__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBase = .text:0x803A3F58; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan9StateDeadFi = .text:0x803A3F7C; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A3FB8; // type:function size:0x64 scope:global align:4 +exec__Q34Game8BlackMan9StateDeadFPQ24Game9EnemyBase = .text:0x803A401C; // type:function size:0xFC scope:global align:4 +__ct__Q34Game8BlackMan11StateFreezeFi = .text:0x803A4118; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4154; // type:function size:0x90 scope:global align:4 +exec__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBase = .text:0x803A41E4; // type:function size:0x2F4 scope:global align:4 +cleanup__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBase = .text:0x803A44D8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan9StateBendFi = .text:0x803A44FC; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4538; // type:function size:0x74 scope:global align:4 +exec__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBase = .text:0x803A45AC; // type:function size:0x1E8 scope:global align:4 +cleanup__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBase = .text:0x803A4794; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan11StateEscapeFi = .text:0x803A47B8; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan11StateEscapeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A47F4; // type:function size:0xB0 scope:global align:4 +exec__Q34Game8BlackMan11StateEscapeFPQ24Game9EnemyBase = .text:0x803A48A4; // type:function size:0x2B4 scope:global align:4 +__ct__Q34Game8BlackMan9StateFallFi = .text:0x803A4B58; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4B94; // type:function size:0x4C scope:global align:4 +exec__Q34Game8BlackMan9StateFallFPQ24Game9EnemyBase = .text:0x803A4BE0; // type:function size:0x178 scope:global align:4 +__ct__Q34Game8BlackMan12StateRecoverFi = .text:0x803A4D58; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan12StateRecoverFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A4D94; // type:function size:0xC8 scope:global align:4 +exec__Q34Game8BlackMan12StateRecoverFPQ24Game9EnemyBase = .text:0x803A4E5C; // type:function size:0x16C scope:global align:4 +__ct__Q34Game8BlackMan10StateFlickFi = .text:0x803A4FC8; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A5004; // type:function size:0x158 scope:global align:4 +exec__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBase = .text:0x803A515C; // type:function size:0xB8 scope:global align:4 +cleanup__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBase = .text:0x803A5214; // type:function size:0x24 scope:global align:4 +__ct__Q34Game8BlackMan10StateTiredFi = .text:0x803A5238; // type:function size:0x3C scope:global align:4 +init__Q34Game8BlackMan10StateTiredFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803A5274; // type:function size:0x5C scope:global align:4 +exec__Q34Game8BlackMan10StateTiredFPQ24Game9EnemyBase = .text:0x803A52D0; // type:function size:0xC0 scope:global align:4 +__sinit_blackManState_cpp = .text:0x803A5390; // type:function size:0x28 scope:local align:4 +setAnimMgr__Q34Game8BlackMan14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x803A53B8; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game8BlackMan14ProperAnimatorFi = .text:0x803A53C0; // type:function size:0x8 scope:global align:4 +__dt__Q34Game8BlackMan14ProperAnimatorFv = .text:0x803A53C8; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game8BlackMan14ProperAnimatorFv = .text:0x803A5424; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game8BlackMan3MgrFiUc = .text:0x803A542C; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game8BlackMan3MgrFv = .text:0x803A547C; // type:function size:0x48 scope:global align:4 +__ct__Q34Game8BlackMan5ParmsFv = .text:0x803A54C4; // type:function size:0xEC scope:weak align:4 +__ct__Q44Game8BlackMan5Parms11ProperParmsFv = .text:0x803A55B0; // type:function size:0x368 scope:weak align:4 +birth__Q34Game8BlackMan3MgrFRQ24Game13EnemyBirthArg = .text:0x803A5918; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game8BlackMan3MgrFv = .text:0x803A5938; // type:function size:0x94 scope:global align:4 +loadTexData__Q34Game8BlackMan3MgrFv = .text:0x803A59CC; // type:function size:0xBC scope:global align:4 +doLoadBmd__Q34Game8BlackMan3MgrFPv = .text:0x803A5A88; // type:function size:0x2C scope:global align:4 +createModel__Q34Game8BlackMan3MgrFv = .text:0x803A5AB4; // type:function size:0x124 scope:global align:4 +__dt__Q34Game8BlackMan3MgrFv = .text:0x803A5BD8; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game8BlackMan3MgrFv = .text:0x803A5C88; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game8BlackMan3MgrFi = .text:0x803A5C90; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game8BlackMan3ObjFv = .text:0x803A5CF0; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game8BlackMan3MgrFi = .text:0x803A5DAC; // type:function size:0x10 scope:weak align:4 +read__Q34Game8BlackMan5ParmsFR6Stream = .text:0x803A5DBC; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game8BlackMan3MgrFv = .text:0x803A5E0C; // type:function size:0x8 scope:weak align:4 +lHandCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5E14; // type:function size:0x3C scope:local align:4 +rHandCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5E50; // type:function size:0x3C scope:local align:4 +lFootCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5E8C; // type:function size:0x3C scope:local align:4 +rFootCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5EC8; // type:function size:0x3C scope:local align:4 +bodyCallBack__Q24Game8BlackManFP8J3DJointi = .text:0x803A5F04; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game8BlackMan3ObjFv = .text:0x803A5F3C; // type:function size:0xF0 scope:global align:4 +birth__Q34Game8BlackMan3ObjFR10Vector3f = .text:0x803A602C; // type:function size:0x20 scope:global align:4 +onInit__Q34Game8BlackMan3ObjFPQ24Game15CreatureInitArg = .text:0x803A604C; // type:function size:0x6B4 scope:global align:4 +__ct__Q34Game8BlackMan3ObjFv = .text:0x803A6700; // type:function size:0x560 scope:global align:4 +setFSM__Q34Game8BlackMan3ObjFPQ34Game8BlackMan3FSM = .text:0x803A6C60; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game8BlackMan3ObjFv = .text:0x803A6CAC; // type:function size:0x6C4 scope:global align:4 +doDirectDraw__Q34Game8BlackMan3ObjFR8Graphics = .text:0x803A7370; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game8BlackMan3ObjFR8Graphics = .text:0x803A7374; // type:function size:0x20 scope:global align:4 +doSimulation__Q34Game8BlackMan3ObjFf = .text:0x803A7394; // type:function size:0x174 scope:global align:4 +doAnimationCullingOff__Q34Game8BlackMan3ObjFv = .text:0x803A7508; // type:function size:0x238 scope:global align:4 +onKill__Q34Game8BlackMan3ObjFPQ24Game15CreatureKillArg = .text:0x803A7740; // type:function size:0x3C scope:global align:4 +doStartStoneState__Q34Game8BlackMan3ObjFv = .text:0x803A777C; // type:function size:0xDC scope:global align:4 +doFinishStoneState__Q34Game8BlackMan3ObjFv = .text:0x803A7858; // type:function size:0xBC scope:global align:4 +isUnderground__Q34Game8BlackMan3ObjFv = .text:0x803A7914; // type:function size:0x58 scope:global align:4 +doGetLifeGaugeParam__Q34Game8BlackMan3ObjFRQ24Game14LifeGaugeParam = .text:0x803A796C; // type:function size:0xA4 scope:global align:4 +collisionCallback__Q34Game8BlackMan3ObjFRQ24Game9CollEvent = .text:0x803A7A10; // type:function size:0x1B8 scope:global align:4 +damageCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803A7BC8; // type:function size:0x16C scope:global align:4 +hipdropCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803A7D34; // type:function size:0x134 scope:global align:4 +earthquakeCallBack__Q34Game8BlackMan3ObjFPQ24Game8Creaturef = .text:0x803A7E68; // type:function size:0xDC scope:global align:4 +doEntry__Q34Game8BlackMan3ObjFv = .text:0x803A7F44; // type:function size:0x68 scope:global align:4 +changeMaterial__Q34Game8BlackMan3ObjFv = .text:0x803A7FAC; // type:function size:0x31C scope:global align:4 +getShadowParam__Q34Game8BlackMan3ObjFRQ24Game11ShadowParam = .text:0x803A82C8; // type:function size:0x50 scope:global align:4 +initWalkSmokeEffect__Q34Game8BlackMan3ObjFv = .text:0x803A8318; // type:function size:0x64 scope:global align:4 +getWalkSmokeEffectMgr__Q34Game8BlackMan3ObjFv = .text:0x803A837C; // type:function size:0x1C scope:global align:4 +walkFunc__Q34Game8BlackMan3ObjFv = .text:0x803A8398; // type:function size:0x848 scope:global align:4 +isReachToGoal__Q34Game8BlackMan3ObjFf = .text:0x803A8BE0; // type:function size:0x34 scope:global align:4 +findNextRoutePoint__Q34Game8BlackMan3ObjFv = .text:0x803A8C14; // type:function size:0xED0 scope:global align:4 +findNextTraceRoutePoint__Q34Game8BlackMan3ObjFv = .text:0x803A9AE4; // type:function size:0xD0 scope:global align:4 +isEndPathFinder__Q34Game8BlackMan3ObjFv = .text:0x803A9BB4; // type:function size:0x114 scope:global align:4 +setPathFinder__Q34Game8BlackMan3ObjFb = .text:0x803A9CC8; // type:function size:0x1D8 scope:global align:4 +releasePathFinder__Q34Game8BlackMan3ObjFv = .text:0x803A9EA0; // type:function size:0x44 scope:global align:4 +jointMtxCalc__Q34Game8BlackMan3ObjFi = .text:0x803A9EE4; // type:function size:0x590 scope:global align:4 +bodyMtxCalc__Q34Game8BlackMan3ObjFv = .text:0x803AA474; // type:function size:0x28C scope:global align:4 +isTyreFreeze__Q34Game8BlackMan3ObjFv = .text:0x803AA700; // type:function size:0x40 scope:global align:4 +isTyreDead__Q34Game8BlackMan3ObjFv = .text:0x803AA740; // type:function size:0x9C scope:global align:4 +isFallEnd__Q34Game8BlackMan3ObjFv = .text:0x803AA7DC; // type:function size:0x74 scope:global align:4 +moveRestart__Q34Game8BlackMan3ObjFv = .text:0x803AA850; // type:function size:0x1D4 scope:global align:4 +escape__Q34Game8BlackMan3ObjFv = .text:0x803AAA24; // type:function size:0x4 scope:global align:4 +setTimer__Q34Game8BlackMan3ObjFf = .text:0x803AAA28; // type:function size:0x8 scope:global align:4 +getTimer__Q34Game8BlackMan3ObjFv = .text:0x803AAA30; // type:function size:0x8 scope:global align:4 +collisionStOn__Q34Game8BlackMan3ObjFv = .text:0x803AAA38; // type:function size:0xA0 scope:global align:4 +collisionStOff__Q34Game8BlackMan3ObjFv = .text:0x803AAAD8; // type:function size:0x98 scope:global align:4 +flick__Q34Game8BlackMan3ObjFv = .text:0x803AAB70; // type:function size:0x4C scope:global align:4 +recover__Q34Game8BlackMan3ObjFv = .text:0x803AABBC; // type:function size:0x150 scope:global align:4 +recoverFlick__Q34Game8BlackMan3ObjFv = .text:0x803AAD0C; // type:function size:0xF8 scope:global align:4 +tyreFlick__Q34Game8BlackMan3ObjFv = .text:0x803AAE04; // type:function size:0x2C scope:global align:4 +deadEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAE30; // type:function size:0xD0 scope:global align:4 +deadTraceEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAF00; // type:function size:0x34 scope:global align:4 +tyreUpEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAF34; // type:function size:0x74 scope:global align:4 +tyreDownEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAFA8; // type:function size:0x50 scope:global align:4 +bendEffect__Q34Game8BlackMan3ObjFv = .text:0x803AAFF8; // type:function size:0x94 scope:global align:4 +createTraceEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB08C; // type:function size:0x5C scope:global align:4 +fadeTraceEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB0E8; // type:function size:0x50 scope:global align:4 +createFlickEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB138; // type:function size:0x58 scope:global align:4 +fadeFlickEffect__Q34Game8BlackMan3ObjFv = .text:0x803AB190; // type:function size:0x50 scope:global align:4 +isFinalFloor__Q34Game8BlackMan3ObjFv = .text:0x803AB1E0; // type:function size:0xC4 scope:global align:4 +appearFanfare__Q34Game8BlackMan3ObjFv = .text:0x803AB2A4; // type:function size:0x1C0 scope:global align:4 +getName__Q23efx11ArgPrmColorFv = .text:0x803AB464; // type:function size:0xC scope:weak align:4 +__dt__Q23efx10TKageFlickFv = .text:0x803AB470; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx11TKageTyreupFv = .text:0x803AB50C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx10TKageDead1Fv = .text:0x803AB5A8; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TKageRunFv = .text:0x803AB644; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TKageMoveFv = .text:0x803AB6E0; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game8BlackMan3ObjFPQ24Game21EnemyInitialParamBase = .text:0x803AB77C; // type:function size:0x4 scope:weak align:4 +throwupItemInDeathProcedure__Q34Game8BlackMan3ObjFv = .text:0x803AB780; // type:function size:0x4 scope:weak align:4 +createEfxHamon__Q34Game8BlackMan3ObjFv = .text:0x803AB784; // type:function size:0x2C scope:weak align:4 +updateEfxHamon__Q34Game8BlackMan3ObjFv = .text:0x803AB7B0; // type:function size:0x40 scope:weak align:4 +bombCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreatureR10Vector3f = .text:0x803AB7F0; // type:function size:0x8 scope:weak align:4 +getEnemyTypeID__Q34Game8BlackMan3ObjFv = .text:0x803AB7F8; // type:function size:0x8 scope:weak align:4 +__sinit_blackMan_cpp = .text:0x803AB800; // type:function size:0x28 scope:local align:4 +@940@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x803AB828; // type:function size:0x14 scope:weak align:4 +@940@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AB83C; // type:function size:0x14 scope:weak align:4 +@940@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AB850; // type:function size:0x14 scope:weak align:4 +@940@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AB864; // type:function size:0x14 scope:weak align:4 +@940@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AB878; // type:function size:0x14 scope:weak align:4 +@940@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x803AB88C; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx9TKageMoveFv = .text:0x803AB8A0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TKageRunFv = .text:0x803AB8A8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TKageDead1Fv = .text:0x803AB8B0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TKageTyreupFv = .text:0x803AB8B8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TKageFlickFv = .text:0x803AB8C0; // type:function size:0x8 scope:weak align:4 +init__Q34Game4Tyre3FSMFPQ24Game9EnemyBase = .text:0x803AB8C8; // type:function size:0xC0 scope:global align:4 +__ct__Q34Game4Tyre9StateMoveFi = .text:0x803AB988; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803AB9C4; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBase = .text:0x803ABA0C; // type:function size:0xBC scope:global align:4 +cleanup__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBase = .text:0x803ABAC8; // type:function size:0x24 scope:global align:4 +__ct__Q34Game4Tyre9StateLandFi = .text:0x803ABAEC; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803ABB28; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tyre9StateLandFPQ24Game9EnemyBase = .text:0x803ABB70; // type:function size:0xB4 scope:global align:4 +__ct__Q34Game4Tyre11StateFreezeFi = .text:0x803ABC24; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre11StateFreezeFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803ABC60; // type:function size:0x74 scope:global align:4 +exec__Q34Game4Tyre11StateFreezeFPQ24Game9EnemyBase = .text:0x803ABCD4; // type:function size:0xB4 scope:global align:4 +__ct__Q34Game4Tyre9StateDeadFi = .text:0x803ABD88; // type:function size:0x3C scope:global align:4 +init__Q34Game4Tyre9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg = .text:0x803ABDC4; // type:function size:0x48 scope:global align:4 +exec__Q34Game4Tyre9StateDeadFPQ24Game9EnemyBase = .text:0x803ABE0C; // type:function size:0x44 scope:global align:4 +setAnimMgr__Q34Game4Tyre14ProperAnimatorFPQ28SysShape7AnimMgr = .text:0x803ABE50; // type:function size:0x8 scope:global align:4 +getAnimator__Q34Game4Tyre14ProperAnimatorFi = .text:0x803ABE58; // type:function size:0x8 scope:global align:4 +__dt__Q34Game4Tyre14ProperAnimatorFv = .text:0x803ABE60; // type:function size:0x5C scope:weak align:4 +getAnimator__Q34Game4Tyre14ProperAnimatorFv = .text:0x803ABEBC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game4Tyre3MgrFiUc = .text:0x803ABEC4; // type:function size:0x50 scope:global align:4 +doAlloc__Q34Game4Tyre3MgrFv = .text:0x803ABF14; // type:function size:0x48 scope:global align:4 +__ct__Q34Game4Tyre5ParmsFv = .text:0x803ABF5C; // type:function size:0xDC scope:weak align:4 +birth__Q34Game4Tyre3MgrFRQ24Game13EnemyBirthArg = .text:0x803AC038; // type:function size:0x20 scope:global align:4 +loadModelData__Q34Game4Tyre3MgrFv = .text:0x803AC058; // type:function size:0x94 scope:global align:4 +doLoadBmd__Q34Game4Tyre3MgrFPv = .text:0x803AC0EC; // type:function size:0x2C scope:global align:4 +__dt__Q34Game4Tyre3MgrFv = .text:0x803AC118; // type:function size:0xB0 scope:weak align:4 +getEnemyTypeID__Q34Game4Tyre3MgrFv = .text:0x803AC1C8; // type:function size:0x8 scope:weak align:4 +createObj__Q34Game4Tyre3MgrFi = .text:0x803AC1D0; // type:function size:0x60 scope:weak align:4 +__dt__Q34Game4Tyre3ObjFv = .text:0x803AC230; // type:function size:0xBC scope:weak align:4 +getEnemy__Q34Game4Tyre3MgrFi = .text:0x803AC2EC; // type:function size:0x10 scope:weak align:4 +read__Q34Game4Tyre5ParmsFR6Stream = .text:0x803AC2FC; // type:function size:0x50 scope:weak align:4 +@4@__dt__Q34Game4Tyre3MgrFv = .text:0x803AC34C; // type:function size:0x8 scope:weak align:4 +frontTyreCallBack__Q24Game4TyreFP8J3DJointi = .text:0x803AC354; // type:function size:0x38 scope:local align:4 +rearTyreCallBack__Q24Game4TyreFP8J3DJointi = .text:0x803AC38C; // type:function size:0x38 scope:local align:4 +setParameters__Q34Game4Tyre3ObjFv = .text:0x803AC3C4; // type:function size:0x20 scope:global align:4 +birth__Q34Game4Tyre3ObjFR10Vector3f = .text:0x803AC3E4; // type:function size:0x20 scope:global align:4 +onInit__Q34Game4Tyre3ObjFPQ24Game15CreatureInitArg = .text:0x803AC404; // type:function size:0x18C scope:global align:4 +__ct__Q34Game4Tyre3ObjFv = .text:0x803AC590; // type:function size:0x3C0 scope:global align:4 +setFSM__Q34Game4Tyre3ObjFPQ34Game4Tyre3FSM = .text:0x803AC950; // type:function size:0x4C scope:weak align:4 +doUpdate__Q34Game4Tyre3ObjFv = .text:0x803AC99C; // type:function size:0x4C scope:global align:4 +doAnimationCullingOff__Q34Game4Tyre3ObjFv = .text:0x803AC9E8; // type:function size:0xB8 scope:global align:4 +doDirectDraw__Q34Game4Tyre3ObjFR8Graphics = .text:0x803ACAA0; // type:function size:0x4 scope:global align:4 +doDebugDraw__Q34Game4Tyre3ObjFR8Graphics = .text:0x803ACAA4; // type:function size:0x20 scope:global align:4 +doSimulation__Q34Game4Tyre3ObjFf = .text:0x803ACAC4; // type:function size:0x20 scope:global align:4 +doGetLifeGaugeParam__Q34Game4Tyre3ObjFRQ24Game14LifeGaugeParam = .text:0x803ACAE4; // type:function size:0x80 scope:global align:4 +doStartStoneState__Q34Game4Tyre3ObjFv = .text:0x803ACB64; // type:function size:0x12C scope:global align:4 +doFinishStoneState__Q34Game4Tyre3ObjFv = .text:0x803ACC90; // type:function size:0x124 scope:global align:4 +collisionCallback__Q34Game4Tyre3ObjFRQ24Game9CollEvent = .text:0x803ACDB4; // type:function size:0x538 scope:global align:4 +damageCallBack__Q34Game4Tyre3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803AD2EC; // type:function size:0xA0 scope:global align:4 +hipdropCallBack__Q34Game4Tyre3ObjFPQ24Game8CreaturefP8CollPart = .text:0x803AD38C; // type:function size:0x3C scope:global align:4 +earthquakeCallBack__Q34Game4Tyre3ObjFPQ24Game8Creaturef = .text:0x803AD3C8; // type:function size:0x58 scope:global align:4 +inWaterCallback__Q34Game4Tyre3ObjFPQ24Game8WaterBox = .text:0x803AD420; // type:function size:0x34 scope:global align:4 +outWaterCallback__Q34Game4Tyre3ObjFv = .text:0x803AD454; // type:function size:0x44 scope:global align:4 +getShadowParam__Q34Game4Tyre3ObjFRQ24Game11ShadowParam = .text:0x803AD498; // type:function size:0x50 scope:global align:4 +needShadow__Q34Game4Tyre3ObjFv = .text:0x803AD4E8; // type:function size:0x4C scope:global align:4 +isFreeze__Q34Game4Tyre3ObjFv = .text:0x803AD534; // type:function size:0x50 scope:global align:4 +frontRollMtxCalc__Q34Game4Tyre3ObjFv = .text:0x803AD584; // type:function size:0x298 scope:global align:4 +rearRollMtxCalc__Q34Game4Tyre3ObjFv = .text:0x803AD81C; // type:function size:0x38C scope:global align:4 +getEnemyTypeID__Q34Game4Tyre3ObjFv = .text:0x803ADBA8; // type:function size:0x8 scope:weak align:4 +moveStart__Q34Game4Tyre3ObjFv = .text:0x803ADBB0; // type:function size:0x88 scope:global align:4 +collisionStOn__Q34Game4Tyre3ObjFv = .text:0x803ADC38; // type:function size:0xE8 scope:global align:4 +collisionStOff__Q34Game4Tyre3ObjFv = .text:0x803ADD20; // type:function size:0x108 scope:global align:4 +flick__Q34Game4Tyre3ObjFv = .text:0x803ADE28; // type:function size:0x5CC scope:global align:4 +deadEffect__Q34Game4Tyre3ObjFv = .text:0x803AE3F4; // type:function size:0x100 scope:global align:4 +createSmokeEffect__Q34Game4Tyre3ObjFv = .text:0x803AE4F4; // type:function size:0x64 scope:global align:4 +fadeSmokeEffect__Q34Game4Tyre3ObjFv = .text:0x803AE558; // type:function size:0x50 scope:global align:4 +landEffect__Q34Game4Tyre3ObjFR10Vector3 = .text:0x803AE5A8; // type:function size:0x1E8 scope:global align:4 +scaleUpShadow__Q34Game4Tyre3ObjFv = .text:0x803AE790; // type:function size:0x2C scope:global align:4 +__dt__Q23efx14TKageTyresmokeFv = .text:0x803AE7BC; // type:function size:0x9C scope:weak align:4 +setInitialSetting__Q34Game4Tyre3ObjFPQ24Game21EnemyInitialParamBase = .text:0x803AE858; // type:function size:0x4 scope:weak align:4 +isUnderground__Q34Game4Tyre3ObjFv = .text:0x803AE85C; // type:function size:0x8 scope:weak align:4 +bombCallBack__Q34Game4Tyre3ObjFPQ24Game8CreatureR10Vector3f = .text:0x803AE864; // type:function size:0x8 scope:weak align:4 +__sinit_tyre_cpp = .text:0x803AE86C; // type:function size:0x28 scope:local align:4 +@836@12@viewOnPelletKilled__Q24Game9EnemyBaseFv = .text:0x803AE894; // type:function size:0x14 scope:weak align:4 +@836@12@viewStartCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AE8A8; // type:function size:0x14 scope:weak align:4 +@836@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv = .text:0x803AE8BC; // type:function size:0x14 scope:weak align:4 +@836@12@view_finish_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AE8D0; // type:function size:0x14 scope:weak align:4 +@836@12@view_start_carrymotion__Q24Game9EnemyBaseFv = .text:0x803AE8E4; // type:function size:0x14 scope:weak align:4 +@836@12@viewGetShape__Q24Game9EnemyBaseFv = .text:0x803AE8F8; // type:function size:0x14 scope:weak align:4 +@4@__dt__Q23efx14TKageTyresmokeFv = .text:0x803AE90C; // type:function size:0x8 scope:weak align:4 +executeAfter__Q23efx24TCallBack_StaticClippingFP14JPABaseEmitter = .text:0x803AE914; // type:function size:0x3C scope:global align:4 +add__Q23efx11TOneEmitterFPQ23efx7Context = .text:0x803AE950; // type:function size:0x48 scope:global align:4 +executeAfter__Q23efx11TOneEmitterFP14JPABaseEmitter = .text:0x803AE998; // type:function size:0xC0 scope:global align:4 +create__Q23efx11TOneEmitterFPQ23efx3Arg = .text:0x803AEA58; // type:function size:0xA8 scope:global align:4 +fade__Q23efx11TOneEmitterFv = .text:0x803AEB00; // type:function size:0x58 scope:global align:4 +forceKill__Q23efx11TOneEmitterFv = .text:0x803AEB58; // type:function size:0x58 scope:global align:4 +add__Q23efx19TOneEmitterChasePosFPQ23efx15ContextChasePos = .text:0x803AEBB0; // type:function size:0x48 scope:global align:4 +del__Q23efx19TOneEmitterChasePosFPQ23efx15ContextChasePos = .text:0x803AEBF8; // type:function size:0x24 scope:global align:4 +create__Q23efx19TOneEmitterChasePosFPQ23efx3Arg = .text:0x803AEC1C; // type:function size:0xA8 scope:global align:4 +executeAfter__Q23efx19TOneEmitterChasePosFP14JPABaseEmitter = .text:0x803AECC4; // type:function size:0xAC scope:global align:4 +fade__Q23efx19TOneEmitterChasePosFv = .text:0x803AED70; // type:function size:0x58 scope:global align:4 +forceKill__Q23efx19TOneEmitterChasePosFv = .text:0x803AEDC8; // type:function size:0x58 scope:global align:4 +create__Q23efx17TOneEmitterSimpleFPQ23efx3Arg = .text:0x803AEE20; // type:function size:0xBC scope:global align:4 +executeAfter__Q23efx17TOneEmitterSimpleFP14JPABaseEmitter = .text:0x803AEEDC; // type:function size:0x10C scope:global align:4 +create__Q23efx8TSimple1FPQ23efx3Arg = .text:0x803AEFE8; // type:function size:0x90 scope:global align:4 +create__Q23efx8TSimple2FPQ23efx3Arg = .text:0x803AF078; // type:function size:0xA8 scope:global align:4 +create__Q23efx8TSimple3FPQ23efx3Arg = .text:0x803AF120; // type:function size:0xA8 scope:global align:4 +create__Q23efx8TSimple4FPQ23efx3Arg = .text:0x803AF1C8; // type:function size:0xA8 scope:global align:4 +create__Q23efx8TSimple5FPQ23efx3Arg = .text:0x803AF270; // type:function size:0xA8 scope:global align:4 +create__Q23efx11TSimpleMtx1FPQ23efx3Arg = .text:0x803AF318; // type:function size:0xE4 scope:global align:4 +create__Q23efx11TSimpleMtx2FPQ23efx3Arg = .text:0x803AF3FC; // type:function size:0x11C scope:global align:4 +create__Q23efx11TSimpleMtx3FPQ23efx3Arg = .text:0x803AF518; // type:function size:0x11C scope:global align:4 +create__Q23efx11TSimpleMtx4FPQ23efx3Arg = .text:0x803AF634; // type:function size:0x11C scope:global align:4 +create__Q23efx5TSyncFPQ23efx3Arg = .text:0x803AF750; // type:function size:0xDC scope:global align:4 +execute__Q23efx5TSyncFP14JPABaseEmitter = .text:0x803AF82C; // type:function size:0x6C scope:global align:4 +executeAfter__Q23efx5TSyncFP14JPABaseEmitter = .text:0x803AF898; // type:function size:0x90 scope:global align:4 +forceKill__Q23efx5TSyncFv = .text:0x803AF928; // type:function size:0x3C scope:global align:4 +fade__Q23efx5TSyncFv = .text:0x803AF964; // type:function size:0x70 scope:global align:4 +doExecuteEmitterOperation__Q23efx9TChasePosFP14JPABaseEmitter = .text:0x803AF9D4; // type:function size:0x78 scope:global align:4 +doExecuteEmitterOperation__Q23efx13TChasePosYRotFP14JPABaseEmitter = .text:0x803AFA4C; // type:function size:0xD8 scope:global align:4 +doExecuteEmitterOperation__Q23efx9TChaseMtxFP14JPABaseEmitter = .text:0x803AFB24; // type:function size:0x6C scope:global align:4 +doExecuteEmitterOperation__Q23efx10TChaseMtxTFP14JPABaseEmitter = .text:0x803AFB90; // type:function size:0x78 scope:global align:4 +doExecuteEmitterOperation__Q23efx12TChasePosPosFP14JPABaseEmitter = .text:0x803AFC08; // type:function size:0xDC scope:global align:4 +makeMtxZAxisAlongPosPos__3efxFPA4_fR10Vector3R10Vector3 = .text:0x803AFCE4; // type:function size:0xF8 scope:weak align:4 +doExecuteEmitterOperation__Q23efx23TChasePosPosLocalZScaleFP14JPABaseEmitter = .text:0x803AFDDC; // type:function size:0x14C scope:global align:4 +doExecuteEmitterOperation__Q23efx23TChasePosPosLocalYScaleFP14JPABaseEmitter = .text:0x803AFF28; // type:function size:0x14C scope:global align:4 +__ct__Q23efx9TForever2FUsUs = .text:0x803B0074; // type:function size:0x98 scope:global align:4 +__ct__Q23efx8TForeverFv = .text:0x803B010C; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx9TForever3FUsUsUs = .text:0x803B0164; // type:function size:0xA8 scope:global align:4 +__ct__Q23efx9TForever4FUsUsUsUs = .text:0x803B020C; // type:function size:0x98 scope:global align:4 +__ct__Q23efx10TChasePos2FP10Vector3UsUs = .text:0x803B02A4; // type:function size:0xAC scope:global align:4 +__ct__Q23efx9TChasePosFv = .text:0x803B0350; // type:function size:0x58 scope:weak align:4 +setPosptr__Q23efx10TChasePos2FP10Vector3 = .text:0x803B03A8; // type:function size:0xC scope:global align:4 +__ct__Q23efx10TChasePos3FP10Vector3UsUsUs = .text:0x803B03B4; // type:function size:0xA0 scope:global align:4 +__ct__Q23efx10TChasePos4FP10Vector3UsUsUsUs = .text:0x803B0454; // type:function size:0xAC scope:global align:4 +__ct__Q23efx10TChaseMtx2FPA4_fUsUs = .text:0x803B0500; // type:function size:0xAC scope:global align:4 +__ct__Q23efx9TChaseMtxFv = .text:0x803B05AC; // type:function size:0x58 scope:weak align:4 +setMtxptr__Q23efx10TChaseMtx2FPA4_f = .text:0x803B0604; // type:function size:0xC scope:global align:4 +__ct__Q23efx10TChaseMtx3FPA4_fUsUsUs = .text:0x803B0610; // type:function size:0xA0 scope:global align:4 +setMtxptr__Q23efx10TChaseMtx3FPA4_f = .text:0x803B06B0; // type:function size:0x10 scope:global align:4 +__ct__Q23efx10TChaseMtx4FPA4_fUsUsUsUs = .text:0x803B06C0; // type:function size:0xAC scope:global align:4 +setMtxptr__Q23efx10TChaseMtx4FPA4_f = .text:0x803B076C; // type:function size:0x14 scope:global align:4 +__ct__Q23efx10TChaseMtx6FPA4_fUsUsUsUsUsUs = .text:0x803B0780; // type:function size:0xC4 scope:global align:4 +setMtxptr__Q23efx10TChaseMtx6FPA4_f = .text:0x803B0844; // type:function size:0x1C scope:global align:4 +__ct__Q23efx11TChaseMtxT2FPA4_fUsUs = .text:0x803B0860; // type:function size:0xAC scope:global align:4 +__ct__Q23efx10TChaseMtxTFv = .text:0x803B090C; // type:function size:0x58 scope:weak align:4 +setMtxptr__Q23efx11TChaseMtxT2FPA4_f = .text:0x803B0964; // type:function size:0xC scope:global align:4 +__ct__Q23efx11TChaseMtxT4FPA4_fUsUsUsUs = .text:0x803B0970; // type:function size:0xAC scope:global align:4 +setMtxptr__Q23efx11TChaseMtxT4FPA4_f = .text:0x803B0A1C; // type:function size:0x14 scope:global align:4 +__ct__Q23efx14TChasePosYRot2FP10Vector3PfUsUs = .text:0x803B0A30; // type:function size:0xA0 scope:global align:4 +__ct__Q23efx13TChasePosYRotFv = .text:0x803B0AD0; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx14TChasePosYRot3FP10Vector3PfUsUsUs = .text:0x803B0B28; // type:function size:0xB0 scope:global align:4 +__ct__Q23efx23TChasePosPosLocalYScaleFv = .text:0x803B0BD8; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx24TChasePosPosLocalYScale3FP10Vector3P10Vector3fUsUsUs = .text:0x803B0C30; // type:function size:0xC8 scope:global align:4 +setPosptr__Q23efx24TChasePosPosLocalYScale3FP10Vector3P10Vector3 = .text:0x803B0CF8; // type:function size:0x1C scope:global align:4 +__ct__Q23efx23TChasePosPosLocalZScaleFv = .text:0x803B0D14; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx24TChasePosPosLocalZScale3FP10Vector3P10Vector3fUsUsUs = .text:0x803B0D6C; // type:function size:0xC8 scope:global align:4 +setPosptr__Q23efx24TChasePosPosLocalZScale3FP10Vector3P10Vector3 = .text:0x803B0E34; // type:function size:0x1C scope:global align:4 +__dt__Q23efx19TOneEmitterChasePosFv = .text:0x803B0E50; // type:function size:0x8C scope:weak align:4 +startDemoDrawOff__Q23efx19TOneEmitterChasePosFv = .text:0x803B0EDC; // type:function size:0x1C scope:weak align:4 +endDemoDrawOn__Q23efx19TOneEmitterChasePosFv = .text:0x803B0EF8; // type:function size:0x1C scope:weak align:4 +__dt__Q23efx24TCallBack_StaticClippingFv = .text:0x803B0F14; // type:function size:0x60 scope:weak align:4 +create__Q23efx29TSyncGroup6FPQ23efx3Arg = .text:0x803B0F74; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup6Fv = .text:0x803B0FF0; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup6Fv = .text:0x803B1048; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup6Fv = .text:0x803B10A0; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup6Fv = .text:0x803B10F8; // type:function size:0x58 scope:weak align:4 +create__Q23efx31TSyncGroup4FPQ23efx3Arg = .text:0x803B1150; // type:function size:0x7C scope:weak align:4 +fade__Q23efx31TSyncGroup4Fv = .text:0x803B11CC; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx31TSyncGroup4Fv = .text:0x803B1224; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx31TSyncGroup4Fv = .text:0x803B127C; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx31TSyncGroup4Fv = .text:0x803B12D4; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup4FPQ23efx3Arg = .text:0x803B132C; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup4Fv = .text:0x803B13A8; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup4Fv = .text:0x803B1400; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup4Fv = .text:0x803B1458; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup4Fv = .text:0x803B14B0; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup4FPQ23efx3Arg = .text:0x803B1508; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup4Fv = .text:0x803B1584; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup4Fv = .text:0x803B15DC; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup4Fv = .text:0x803B1634; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup4Fv = .text:0x803B168C; // type:function size:0x58 scope:weak align:4 +create__Q23efx28TSyncGroup4FPQ23efx3Arg = .text:0x803B16E4; // type:function size:0x7C scope:weak align:4 +fade__Q23efx28TSyncGroup4Fv = .text:0x803B1760; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx28TSyncGroup4Fv = .text:0x803B17B8; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx28TSyncGroup4Fv = .text:0x803B1810; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx28TSyncGroup4Fv = .text:0x803B1868; // type:function size:0x58 scope:weak align:4 +create__Q23efx44TSyncGroup3FPQ23efx3Arg = .text:0x803B18C0; // type:function size:0x7C scope:weak align:4 +fade__Q23efx44TSyncGroup3Fv = .text:0x803B193C; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx44TSyncGroup3Fv = .text:0x803B1994; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx44TSyncGroup3Fv = .text:0x803B19EC; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx44TSyncGroup3Fv = .text:0x803B1A44; // type:function size:0x58 scope:weak align:4 +create__Q23efx44TSyncGroup3FPQ23efx3Arg = .text:0x803B1A9C; // type:function size:0x7C scope:weak align:4 +fade__Q23efx44TSyncGroup3Fv = .text:0x803B1B18; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx44TSyncGroup3Fv = .text:0x803B1B70; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx44TSyncGroup3Fv = .text:0x803B1BC8; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx44TSyncGroup3Fv = .text:0x803B1C20; // type:function size:0x58 scope:weak align:4 +create__Q23efx34TSyncGroup3FPQ23efx3Arg = .text:0x803B1C78; // type:function size:0x7C scope:weak align:4 +fade__Q23efx34TSyncGroup3Fv = .text:0x803B1CF4; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx34TSyncGroup3Fv = .text:0x803B1D4C; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx34TSyncGroup3Fv = .text:0x803B1DA4; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx34TSyncGroup3Fv = .text:0x803B1DFC; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup3FPQ23efx3Arg = .text:0x803B1E54; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup3Fv = .text:0x803B1ED0; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup3Fv = .text:0x803B1F28; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup3Fv = .text:0x803B1F80; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup3Fv = .text:0x803B1FD8; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup3FPQ23efx3Arg = .text:0x803B2030; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup3Fv = .text:0x803B20AC; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup3Fv = .text:0x803B2104; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup3Fv = .text:0x803B215C; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup3Fv = .text:0x803B21B4; // type:function size:0x58 scope:weak align:4 +create__Q23efx28TSyncGroup3FPQ23efx3Arg = .text:0x803B220C; // type:function size:0x7C scope:weak align:4 +fade__Q23efx28TSyncGroup3Fv = .text:0x803B2288; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx28TSyncGroup3Fv = .text:0x803B22E0; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx28TSyncGroup3Fv = .text:0x803B2338; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx28TSyncGroup3Fv = .text:0x803B2390; // type:function size:0x58 scope:weak align:4 +create__Q23efx34TSyncGroup2FPQ23efx3Arg = .text:0x803B23E8; // type:function size:0x7C scope:weak align:4 +fade__Q23efx34TSyncGroup2Fv = .text:0x803B2464; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx34TSyncGroup2Fv = .text:0x803B24BC; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx34TSyncGroup2Fv = .text:0x803B2514; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx34TSyncGroup2Fv = .text:0x803B256C; // type:function size:0x58 scope:weak align:4 +create__Q23efx31TSyncGroup2FPQ23efx3Arg = .text:0x803B25C4; // type:function size:0x7C scope:weak align:4 +fade__Q23efx31TSyncGroup2Fv = .text:0x803B2640; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx31TSyncGroup2Fv = .text:0x803B2698; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx31TSyncGroup2Fv = .text:0x803B26F0; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx31TSyncGroup2Fv = .text:0x803B2748; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup2FPQ23efx3Arg = .text:0x803B27A0; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup2Fv = .text:0x803B281C; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup2Fv = .text:0x803B2874; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup2Fv = .text:0x803B28CC; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup2Fv = .text:0x803B2924; // type:function size:0x58 scope:weak align:4 +create__Q23efx29TSyncGroup2FPQ23efx3Arg = .text:0x803B297C; // type:function size:0x7C scope:weak align:4 +fade__Q23efx29TSyncGroup2Fv = .text:0x803B29F8; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx29TSyncGroup2Fv = .text:0x803B2A50; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx29TSyncGroup2Fv = .text:0x803B2AA8; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx29TSyncGroup2Fv = .text:0x803B2B00; // type:function size:0x58 scope:weak align:4 +create__Q23efx28TSyncGroup2FPQ23efx3Arg = .text:0x803B2B58; // type:function size:0x7C scope:weak align:4 +fade__Q23efx28TSyncGroup2Fv = .text:0x803B2BD4; // type:function size:0x58 scope:weak align:4 +forceKill__Q23efx28TSyncGroup2Fv = .text:0x803B2C2C; // type:function size:0x58 scope:weak align:4 +startDemoDrawOff__Q23efx28TSyncGroup2Fv = .text:0x803B2C84; // type:function size:0x58 scope:weak align:4 +endDemoDrawOn__Q23efx28TSyncGroup2Fv = .text:0x803B2CDC; // type:function size:0x58 scope:weak align:4 +__sinit_efxBase_cpp = .text:0x803B2D34; // type:function size:0x4C scope:local align:4 +@4@executeAfter__Q23efx11TOneEmitterFP14JPABaseEmitter = .text:0x803B2D80; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11TOneEmitterFv = .text:0x803B2D88; // type:function size:0x8 scope:weak align:4 +@4@executeAfter__Q23efx19TOneEmitterChasePosFP14JPABaseEmitter = .text:0x803B2D90; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx19TOneEmitterChasePosFv = .text:0x803B2D98; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx17TOneEmitterSimpleFv = .text:0x803B2DA0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx5TSyncFv = .text:0x803B2DA8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TChasePosFv = .text:0x803B2DB0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TChasePosYRotFv = .text:0x803B2DB8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TChaseMtxFv = .text:0x803B2DC0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx10TChaseMtxTFv = .text:0x803B2DC8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TChasePosPosFv = .text:0x803B2DD0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx23TChasePosPosLocalZScaleFv = .text:0x803B2DD8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx23TChasePosPosLocalYScaleFv = .text:0x803B2DE0; // type:function size:0x8 scope:weak align:4 +create__Q23efx9TChibiHitFPQ23efx3Arg = .text:0x803B2DE8; // type:function size:0x124 scope:global align:4 +create__Q23efx9TChouDownFPQ23efx3Arg = .text:0x803B2F0C; // type:function size:0xE0 scope:global align:4 +setGlobalScale__Q23efx9TUmiHamonFf = .text:0x803B2FEC; // type:function size:0x44 scope:global align:4 +create__Q23efx9TUmiFlickFPQ23efx3Arg = .text:0x803B3030; // type:function size:0x100 scope:global align:4 +create__Q23efx10TUmiAttackFPQ23efx3Arg = .text:0x803B3130; // type:function size:0xD0 scope:global align:4 +setGlobalScale__Q23efx7TUmiEatFf = .text:0x803B3200; // type:function size:0x24 scope:global align:4 +setGlobalScale__Q23efx11TUmiDeadawaFf = .text:0x803B3224; // type:function size:0x24 scope:global align:4 +create__Q23efx12TUmiDeadmeltFPQ23efx3Arg = .text:0x803B3248; // type:function size:0xD0 scope:global align:4 +create__Q23efx10TJgmAttackFPQ23efx3Arg = .text:0x803B3318; // type:function size:0xE8 scope:global align:4 +create__Q23efx11TJgmAttackWFPQ23efx3Arg = .text:0x803B3400; // type:function size:0x100 scope:global align:4 +create__Q23efx8TJgmBackFPQ23efx3Arg = .text:0x803B3500; // type:function size:0xD0 scope:global align:4 +create__Q23efx9TJgmBackWFPQ23efx3Arg = .text:0x803B35D0; // type:function size:0xE8 scope:global align:4 +create__Q23efx7TImoEatFPQ23efx3Arg = .text:0x803B36B8; // type:function size:0xC0 scope:global align:4 +create__Q23efx13TUjinkoHd_ImoFPQ23efx3Arg = .text:0x803B3778; // type:function size:0x74 scope:global align:4 +create__Q23efx13TUjinkoAp_ImoFPQ23efx3Arg = .text:0x803B37EC; // type:function size:0x74 scope:global align:4 +create__Q23efx9TImoSmokeFPQ23efx3Arg = .text:0x803B3860; // type:function size:0xD0 scope:global align:4 +create__Q23efx12TOtaPartsoffFPQ23efx3Arg = .text:0x803B3930; // type:function size:0xD0 scope:global align:4 +setGlobalTranslation__Q23efx13TNewkurageSuiFR10Vector3 = .text:0x803B3A00; // type:function size:0x40 scope:global align:4 +setLifeTime__Q23efx14TNewkurageHireFs = .text:0x803B3A40; // type:function size:0x34 scope:global align:4 +setGlobalTranslation__Q23efx10TKurageSuiFR10Vector3 = .text:0x803B3A74; // type:function size:0x40 scope:global align:4 +setLifeTime__Q23efx11TKurageHireFs = .text:0x803B3AB4; // type:function size:0x34 scope:global align:4 +setGlobalScale__Q23efx9TQuriGlowFf = .text:0x803B3AE8; // type:function size:0x24 scope:global align:4 +create__Q23efx14THebiAphd_baseFPQ23efx3Arg = .text:0x803B3B0C; // type:function size:0xA4 scope:global align:4 +setGlobalAlpha__Q23efx13TKechappyTestFUc = .text:0x803B3BB0; // type:function size:0x34 scope:global align:4 +setGlobalParticleScale__Q23efx13TKechappyTestFf = .text:0x803B3BE4; // type:function size:0x24 scope:global align:4 +setAwayFromCenterSpeed__Q23efx13TKechappyTestFf = .text:0x803B3C08; // type:function size:0x24 scope:global align:4 +setSpread__Q23efx13TKechappyTestFf = .text:0x803B3C2C; // type:function size:0x24 scope:global align:4 +setGlobalDynamicsScale__Q23efx13TKechappyTestFR10Vector3 = .text:0x803B3C50; // type:function size:0x4C scope:global align:4 +setRateLOD__Q23efx9TYakiBodyFi = .text:0x803B3C9C; // type:function size:0xDC scope:global align:4 +create__Q23efx7TPanAppFPQ23efx3Arg = .text:0x803B3D78; // type:function size:0xD0 scope:global align:4 +create__Q23efx8TPanHideFPQ23efx3Arg = .text:0x803B3E48; // type:function size:0xD0 scope:global align:4 +create__Q23efx9TPanSmokeFPQ23efx3Arg = .text:0x803B3F18; // type:function size:0xD0 scope:global align:4 +create__Q23efx14TBabaFly_ver01FPQ23efx3Arg = .text:0x803B3FE8; // type:function size:0xD0 scope:global align:4 +create__Q23efx7TBabaHeFPQ23efx3Arg = .text:0x803B40B8; // type:function size:0x184 scope:global align:4 +create__Q23efx10TKoganeHitFPQ23efx3Arg = .text:0x803B423C; // type:function size:0xE8 scope:global align:4 +create__Q23efx11TKoganeDiveFPQ23efx3Arg = .text:0x803B4324; // type:function size:0xE8 scope:global align:4 +init__Q23efx26TParticleCallBack_TankFireFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B440C; // type:function size:0x4 scope:global align:4 +execute__Q23efx26TParticleCallBack_TankFireFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B4410; // type:function size:0x144 scope:global align:4 +create__Q23efx12TTankFireABCFPQ23efx3Arg = .text:0x803B4554; // type:function size:0x90 scope:global align:4 +create__Q23efx12TTankFireINDFPQ23efx3Arg = .text:0x803B45E4; // type:function size:0x44 scope:global align:4 +create__Q23efx9TTankFireFPQ23efx3Arg = .text:0x803B4628; // type:function size:0x84 scope:global align:4 +create__Q23efx8TTankWatFPQ23efx3Arg = .text:0x803B46AC; // type:function size:0x98 scope:global align:4 +doExecuteEmitterOperation__Q23efx14TDnkmsThunderAFP14JPABaseEmitter = .text:0x803B4744; // type:function size:0x168 scope:global align:4 +doExecuteEmitterOperation__Q23efx14TDnkmsThunderBFP14JPABaseEmitter = .text:0x803B48AC; // type:function size:0x168 scope:global align:4 +setRateLOD__Q23efx9THibaFireFi = .text:0x803B4A14; // type:function size:0xDC scope:global align:4 +create__Q23efx9TGasuHibaFPQ23efx3Arg = .text:0x803B4AF0; // type:function size:0xC0 scope:global align:4 +setRateLOD__Q23efx9TGasuHibaFi = .text:0x803B4BB0; // type:function size:0x78 scope:global align:4 +create__Q23efx10TDenkiHibaFPQ23efx3Arg = .text:0x803B4C28; // type:function size:0x218 scope:global align:4 +create__Q23efx13TDenkiHibaMgrFPQ23efx3Arg = .text:0x803B4E40; // type:function size:0x128 scope:global align:4 +createHiba__Q23efx13TDenkiHibaMgrFi = .text:0x803B4F68; // type:function size:0x178 scope:global align:4 +forceKill__Q23efx13TDenkiHibaMgrFv = .text:0x803B50E0; // type:function size:0x8C scope:global align:4 +fade__Q23efx13TDenkiHibaMgrFv = .text:0x803B516C; // type:function size:0x8C scope:global align:4 +setRateLOD__Q23efx13TDenkiHibaMgrFi = .text:0x803B51F8; // type:function size:0xB4 scope:global align:4 +forceKill__Q23efx8TTankWatFv = .text:0x803B52AC; // type:function size:0x48 scope:weak align:4 +forceKill__Q23efx9TTankFireFv = .text:0x803B52F4; // type:function size:0x50 scope:weak align:4 +forceKill__Q23efx12TTankFireABCFv = .text:0x803B5344; // type:function size:0x48 scope:weak align:4 +__dt__Q23efx14TBabaFly_ver01Fv = .text:0x803B538C; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TPanSmokeFv = .text:0x803B5428; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TPanHideFv = .text:0x803B54C4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TImoSmokeFv = .text:0x803B5560; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx7TImoEatFv = .text:0x803B55FC; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx8TJgmBackFv = .text:0x803B5698; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx9TChouDownFv = .text:0x803B5734; // type:function size:0x9C scope:weak align:4 +@4@__dt__Q23efx9TChouDownFv = .text:0x803B57D0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TJgmBackFv = .text:0x803B57D8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx7TImoEatFv = .text:0x803B57E0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TImoSmokeFv = .text:0x803B57E8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx8TPanHideFv = .text:0x803B57F0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9TPanSmokeFv = .text:0x803B57F8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TBabaFly_ver01Fv = .text:0x803B5800; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TTankFireINDFv = .text:0x803B5808; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDnkmsThunderAFv = .text:0x803B5810; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx14TDnkmsThunderBFv = .text:0x803B5818; // type:function size:0x8 scope:weak align:4 +create__Q23efx12TOtakaraDiveFPQ23efx3Arg = .text:0x803B5820; // type:function size:0x108 scope:global align:4 +create__Q23efx11TTsuyuGrow0FPQ23efx3Arg = .text:0x803B5928; // type:function size:0x108 scope:global align:4 +create__Q23efx11TOtakaraApLFPQ23efx3Arg = .text:0x803B5A30; // type:function size:0x100 scope:global align:4 +create__Q23efx11TOtakaraApSFPQ23efx3Arg = .text:0x803B5B30; // type:function size:0xE8 scope:global align:4 +create__Q23efx10TOtakaraApFPQ23efx3Arg = .text:0x803B5C18; // type:function size:0x314 scope:global align:4 +create__Q23efx8TEgateBCFPQ23efx3Arg = .text:0x803B5F2C; // type:function size:0x124 scope:global align:4 +create__Q23efx13TKouhaiDamageFPQ23efx3Arg = .text:0x803B6050; // type:function size:0x124 scope:global align:4 +create__Q23efx14TPelkira_ver01FPQ23efx3Arg = .text:0x803B6174; // type:function size:0xE8 scope:global align:4 +create__Q23efx9ContainerFPQ23efx3Arg = .text:0x803B625C; // type:function size:0xD0 scope:global align:4 +create__Q23efx12ContainerActFPQ23efx3Arg = .text:0x803B632C; // type:function size:0xE8 scope:global align:4 +setRateLOD__Q23efx8WarpZoneFib = .text:0x803B6414; // type:function size:0x1B0 scope:global align:4 +__dt__Q23efx9ContainerFv = .text:0x803B65C4; // type:function size:0x9C scope:weak align:4 +__dt__Q23efx14TPelkira_ver01Fv = .text:0x803B6660; // type:function size:0x9C scope:weak align:4 +forceKill__Q23efx10TOtakaraApFv = .text:0x803B66FC; // type:function size:0x4 scope:weak align:4 +fade__Q23efx10TOtakaraApFv = .text:0x803B6700; // type:function size:0x4 scope:weak align:4 +@4@__dt__Q23efx14TPelkira_ver01Fv = .text:0x803B6704; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx9ContainerFv = .text:0x803B670C; // type:function size:0x8 scope:weak align:4 +create__Q23efx11TPkNageBlurFPQ23efx3Arg = .text:0x803B6714; // type:function size:0xF0 scope:global align:4 +create__Q23efx12TDopingSmokeFPQ23efx3Arg = .text:0x803B6804; // type:function size:0x1E0 scope:global align:4 +create__Q23efx11TOrimaLightFPQ23efx3Arg = .text:0x803B69E4; // type:function size:0x60 scope:global align:4 +create__Q23efx14TOrimaLightActFPQ23efx3Arg = .text:0x803B6A44; // type:function size:0x60 scope:global align:4 +init__Q23efx7TCursorFll = .text:0x803B6AA4; // type:function size:0x78 scope:global align:4 +create__Q23efx7TCursorFPQ23efx3Arg = .text:0x803B6B1C; // type:function size:0x154 scope:global align:4 +update__Q23efx7TCursorFPQ23efx3Arg = .text:0x803B6C70; // type:function size:0x100 scope:global align:4 +calcPos___Q23efx7TCursorFP10Vector3fl = .text:0x803B6D70; // type:function size:0x148 scope:global align:4 +create__Q23efx13TFueactCircleFPQ23efx3Arg = .text:0x803B6EB8; // type:function size:0xAC scope:global align:4 +execute__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B6F64; // type:function size:0x124 scope:global align:4 +execute__Q23efx13TFueactCircleFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B7088; // type:function size:0x2CC scope:global align:4 +doExecuteEmitterOperation__Q23efx15TFueactBiriBaseFP14JPABaseEmitter = .text:0x803B7354; // type:function size:0x1D4 scope:global align:4 +createSimpleDead__3efxFR10Vector3l = .text:0x803B7528; // type:function size:0x10C scope:global align:4 +createSimpleChinka__3efxFR10Vector3 = .text:0x803B7634; // type:function size:0x5C scope:global align:4 +createSimpleGedoku__3efxFR10Vector3 = .text:0x803B7690; // type:function size:0x5C scope:global align:4 +createSimpleBlackDrop__3efxFR10Vector3 = .text:0x803B76EC; // type:function size:0x98 scope:global align:4 +createSimpleGate1Attack__3efxFR10Vector3 = .text:0x803B7784; // type:function size:0x8C scope:global align:4 +createSimplePkAp__3efxFR10Vector3 = .text:0x803B7810; // type:function size:0x8C scope:global align:4 +createSimpleWaterOff__3efxFR10Vector3 = .text:0x803B789C; // type:function size:0x5C scope:global align:4 +createSimpleDive__3efxFR10Vector3 = .text:0x803B78F8; // type:function size:0x5C scope:global align:4 +createSimpleChiru__3efxFR10Vector3l = .text:0x803B7954; // type:function size:0x98 scope:global align:4 +createSimpleInattack__3efxFR10Vector3 = .text:0x803B79EC; // type:function size:0x5C scope:global align:4 +createSimpleInstick__3efxFR10Vector3 = .text:0x803B7A48; // type:function size:0x80 scope:global align:4 +createSimpleGate2Attack__3efxFR10Vector3 = .text:0x803B7AC8; // type:function size:0x8C scope:global align:4 +createSimpleBridgeAttack__3efxFR10Vector3 = .text:0x803B7B54; // type:function size:0x80 scope:global align:4 +createSimpleWalksmoke__3efxFR10Vector3 = .text:0x803B7BD4; // type:function size:0x5C scope:global align:4 +createSimpleGlow2__3efxFR10Vector3 = .text:0x803B7C30; // type:function size:0x8C scope:global align:4 +createSimpleStoneAttack__3efxFR10Vector3 = .text:0x803B7CBC; // type:function size:0x80 scope:global align:4 +createSimpleDig__3efxFR10Vector3 = .text:0x803B7D3C; // type:function size:0x5C scope:global align:4 +createSimpleGate3Attack__3efxFR10Vector3 = .text:0x803B7D98; // type:function size:0x5C scope:global align:4 +createSimpleWalkwater__3efxFR10Vector3 = .text:0x803B7DF4; // type:function size:0x5C scope:global align:4 +init__Q23efx11TNaviEffectFP10Vector3PA4_fP10Vector3Q33efx11TNaviEffect12enumNaviType = .text:0x803B7E50; // type:function size:0x38 scope:global align:4 +setNaviType__Q23efx11TNaviEffectFQ33efx11TNaviEffect12enumNaviType = .text:0x803B7E88; // type:function size:0xD8 scope:global align:4 +update__Q23efx11TNaviEffectFv = .text:0x803B7F60; // type:function size:0x20 scope:global align:4 +updateHamon___Q23efx11TNaviEffectFv = .text:0x803B7F80; // type:function size:0xD8 scope:global align:4 +createHamonA___Q23efx11TNaviEffectFP10Vector3 = .text:0x803B8058; // type:function size:0x60 scope:global align:4 +killHamonA___Q23efx11TNaviEffectFv = .text:0x803B80B8; // type:function size:0x24 scope:global align:4 +createHamonB___Q23efx11TNaviEffectFP10Vector3 = .text:0x803B80DC; // type:function size:0x60 scope:global align:4 +killHamonB___Q23efx11TNaviEffectFv = .text:0x803B813C; // type:function size:0x24 scope:global align:4 +createLight___Q23efx11TNaviEffectFPA4_f = .text:0x803B8160; // type:function size:0x78 scope:global align:4 +killLight___Q23efx11TNaviEffectFv = .text:0x803B81D8; // type:function size:0x2C scope:global align:4 +createLightAct___Q23efx11TNaviEffectFPA4_f = .text:0x803B8204; // type:function size:0x78 scope:global align:4 +killLightAct___Q23efx11TNaviEffectFv = .text:0x803B827C; // type:function size:0x2C scope:global align:4 +createCursor___Q23efx11TNaviEffectF10Vector3f = .text:0x803B82A8; // type:function size:0x64 scope:global align:4 +killCursor___Q23efx11TNaviEffectFv = .text:0x803B830C; // type:function size:0x2C scope:global align:4 +updateCursor___Q23efx11TNaviEffectF10Vector3f = .text:0x803B8338; // type:function size:0x284 scope:global align:4 +createFueact___Q23efx11TNaviEffectFPA4_fP10Vector3 = .text:0x803B85BC; // type:function size:0xB4 scope:global align:4 +killFueact___Q23efx11TNaviEffectFv = .text:0x803B8670; // type:function size:0x2C scope:global align:4 +createOrimadamage___Q23efx11TNaviEffectFPA4_f = .text:0x803B869C; // type:function size:0x78 scope:global align:4 +init__Q23efx9TPkEffectFv = .text:0x803B8714; // type:function size:0x3C scope:global align:4 +update__Q23efx9TPkEffectFv = .text:0x803B8750; // type:function size:0x34 scope:global align:4 +updateMoeSmoke___Q23efx9TPkEffectFv = .text:0x803B8784; // type:function size:0x38 scope:global align:4 +updateHamon___Q23efx9TPkEffectFv = .text:0x803B87BC; // type:function size:0xD0 scope:global align:4 +createKourin___Q23efx9TPkEffectFP10Vector3 = .text:0x803B888C; // type:function size:0x64 scope:global align:4 +killKourin___Q23efx9TPkEffectFv = .text:0x803B88F0; // type:function size:0x24 scope:global align:4 +createDoping___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8914; // type:function size:0x60 scope:global align:4 +killDoping___Q23efx9TPkEffectFv = .text:0x803B8974; // type:function size:0x24 scope:global align:4 +createNage___Q23efx9TPkEffectFP10Vector3PA4_f = .text:0x803B8998; // type:function size:0xF8 scope:global align:4 +killNage___Q23efx9TPkEffectFv = .text:0x803B8A90; // type:function size:0x44 scope:global align:4 +createMoe___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8AD4; // type:function size:0x7C scope:global align:4 +killMoe___Q23efx9TPkEffectFv = .text:0x803B8B50; // type:function size:0x44 scope:global align:4 +createChudoku___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8B94; // type:function size:0x60 scope:global align:4 +killChudoku___Q23efx9TPkEffectFv = .text:0x803B8BF4; // type:function size:0x24 scope:global align:4 +createMoeSmoke___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8C18; // type:function size:0x60 scope:global align:4 +killMoeSmoke___Q23efx9TPkEffectFv = .text:0x803B8C78; // type:function size:0x24 scope:global align:4 +createBlackDown___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8C9C; // type:function size:0x70 scope:global align:4 +killBlackDown___Q23efx9TPkEffectFv = .text:0x803B8D0C; // type:function size:0x2C scope:global align:4 +createWater___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8D38; // type:function size:0x60 scope:global align:4 +killWater___Q23efx9TPkEffectFv = .text:0x803B8D98; // type:function size:0x24 scope:global align:4 +createHamonA___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8DBC; // type:function size:0x60 scope:global align:4 +killHamonA___Q23efx9TPkEffectFv = .text:0x803B8E1C; // type:function size:0x24 scope:global align:4 +createHamonB___Q23efx9TPkEffectFP10Vector3 = .text:0x803B8E40; // type:function size:0x60 scope:global align:4 +killHamonB___Q23efx9TPkEffectFv = .text:0x803B8EA0; // type:function size:0x24 scope:global align:4 +init__Q23efx13TPkEffectTaneFv = .text:0x803B8EC4; // type:function size:0x20 scope:global align:4 +createTanekira___Q23efx13TPkEffectTaneFP10Vector3 = .text:0x803B8EE4; // type:function size:0x60 scope:global align:4 +killTanekira___Q23efx13TPkEffectTaneFv = .text:0x803B8F44; // type:function size:0x24 scope:global align:4 +createKourin___Q23efx13TPkEffectTaneFP10Vector3 = .text:0x803B8F68; // type:function size:0x64 scope:global align:4 +killKourin___Q23efx13TPkEffectTaneFv = .text:0x803B8FCC; // type:function size:0x24 scope:global align:4 +createGlow1___Q23efx13TPkEffectTaneFP10Vector3 = .text:0x803B8FF0; // type:function size:0x70 scope:global align:4 +executeAfter__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B9060; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx7TCursorFv = .text:0x803B9064; // type:function size:0x2C scope:weak align:4 +@4@__dt__Q23efx11TPkNageBlurFv = .text:0x803B9090; // type:function size:0x8 scope:weak align:4 +@4@executeAfter__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B9098; // type:function size:0x8 scope:weak align:4 +@4@execute__Q23efx13TFueactCircleFP14JPABaseEmitter = .text:0x803B90A0; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx13TFueactCircleFv = .text:0x803B90A8; // type:function size:0x8 scope:weak align:4 +@8@execute__Q23efx13TFueactCircleFP14JPABaseEmitterP15JPABaseParticle = .text:0x803B90B0; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q23efx13TFueactCircleFv = .text:0x803B90B8; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TFueactBiriBaseFv = .text:0x803B90C0; // type:function size:0x8 scope:weak align:4 +__dt__14TParticle2dMgrFv = .text:0x803B90C8; // type:function size:0x84 scope:global align:4 +globalInstance__14TParticle2dMgrFv = .text:0x803B914C; // type:function size:0x24 scope:global align:4 +Instance__14TParticle2dMgrFv = .text:0x803B9170; // type:function size:0x48 scope:global align:4 +deleteInstance__14TParticle2dMgrFv = .text:0x803B91B8; // type:function size:0x50 scope:global align:4 +__ct__14TParticle2dMgrFv = .text:0x803B9208; // type:function size:0x88 scope:global align:4 +createHeap__14TParticle2dMgrFUl = .text:0x803B9290; // type:function size:0x94 scope:global align:4 +createMgr__14TParticle2dMgrFPcUlUlUl = .text:0x803B9324; // type:function size:0x154 scope:global align:4 +setSceneEmitterAndResourceManager__14TParticle2dMgrFP17JPAEmitterManagerP18JPAResourceManager = .text:0x803B9478; // type:function size:0xAC scope:global align:4 +clearSceneEmitterAndResourceManager__14TParticle2dMgrFv = .text:0x803B9524; // type:function size:0x78 scope:global align:4 +setSceneResourceManager__14TParticle2dMgrFP18JPAResourceManager = .text:0x803B959C; // type:function size:0x50 scope:global align:4 +clearSceneResourceManager__14TParticle2dMgrFv = .text:0x803B95EC; // type:function size:0x28 scope:global align:4 +update__14TParticle2dMgrFv = .text:0x803B9614; // type:function size:0x24 scope:global align:4 +draw__14TParticle2dMgrFUcUs = .text:0x803B9638; // type:function size:0x148 scope:global align:4 +create__14TParticle2dMgrFUsR10Vector2UcUc = .text:0x803B9780; // type:function size:0x4C scope:global align:4 +kill__14TParticle2dMgrFP14JPABaseEmitter = .text:0x803B97CC; // type:function size:0x2C scope:global align:4 +fade__14TParticle2dMgrFP14JPABaseEmitter = .text:0x803B97F8; // type:function size:0x20 scope:global align:4 +killAll__14TParticle2dMgrFv = .text:0x803B9818; // type:function size:0x24 scope:global align:4 +killGroup__14TParticle2dMgrFUc = .text:0x803B983C; // type:function size:0x28 scope:global align:4 +__sinit_particle2dMgr_cpp = .text:0x803B9864; // type:function size:0x28 scope:local align:4 +@24@__dt__14TParticle2dMgrFv = .text:0x803B988C; // type:function size:0x8 scope:weak align:4 +create__Q25efx2d8TSimple1FPQ25efx2d3Arg = .text:0x803B9894; // type:function size:0x98 scope:global align:4 +create__Q25efx2d8TSimple2FPQ25efx2d3Arg = .text:0x803B992C; // type:function size:0xB0 scope:global align:4 +create__Q25efx2d8TSimple3FPQ25efx2d3Arg = .text:0x803B99DC; // type:function size:0xB0 scope:global align:4 +create__Q25efx2d8TForeverFPQ25efx2d3Arg = .text:0x803B9A8C; // type:function size:0xA4 scope:global align:4 +kill__Q25efx2d8TForeverFv = .text:0x803B9B30; // type:function size:0x3C scope:global align:4 +fade__Q25efx2d8TForeverFv = .text:0x803B9B6C; // type:function size:0x3C scope:global align:4 +setGlobalScale__Q25efx2d8TForeverFf = .text:0x803B9BA8; // type:function size:0x24 scope:global align:4 +setGlobalEnvColor__Q25efx2d8TForeverFRQ28JUtility6TColor = .text:0x803B9BCC; // type:function size:0x28 scope:global align:4 +setGlobalAlpha__Q25efx2d8TForeverFUc = .text:0x803B9BF4; // type:function size:0x14 scope:global align:4 +__ct__Q25efx2d9TForeverNFUc = .text:0x803B9C08; // type:function size:0x80 scope:global align:4 +__ct__Q25efx2d8TForeverFv = .text:0x803B9C88; // type:function size:0x50 scope:weak align:4 +create__Q25efx2d9TForeverNFPQ25efx2d3Arg = .text:0x803B9CD8; // type:function size:0x98 scope:global align:4 +kill__Q25efx2d9TForeverNFv = .text:0x803B9D70; // type:function size:0x6C scope:global align:4 +fade__Q25efx2d9TForeverNFv = .text:0x803B9DDC; // type:function size:0x6C scope:global align:4 +setGroup__Q25efx2d9TForeverNFUc = .text:0x803B9E48; // type:function size:0x7C scope:global align:4 +setGlobalAlpha__Q25efx2d9TForeverNFUc = .text:0x803B9EC4; // type:function size:0x40 scope:global align:4 +create__Q25efx2d9TChasePosFPQ25efx2d3Arg = .text:0x803B9F04; // type:function size:0x88 scope:global align:4 +execute__Q25efx2d9TChasePosFP14JPABaseEmitter = .text:0x803B9F8C; // type:function size:0x78 scope:global align:4 +create__Q25efx2d12TChasePosDirFPQ25efx2d3Arg = .text:0x803BA004; // type:function size:0x88 scope:global align:4 +execute__Q25efx2d12TChasePosDirFP14JPABaseEmitter = .text:0x803BA08C; // type:function size:0xB8 scope:global align:4 +__dt__Q25efx2d12TChasePosDirFv = .text:0x803BA144; // type:function size:0x84 scope:weak align:4 +@8@__dt__Q25efx2d8TForeverFv = .text:0x803BA1C8; // type:function size:0x8 scope:weak align:4 +@8@execute__Q25efx2d9TChasePosFP14JPABaseEmitter = .text:0x803BA1D0; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d9TChasePosFv = .text:0x803BA1D8; // type:function size:0x8 scope:weak align:4 +@8@execute__Q25efx2d12TChasePosDirFP14JPABaseEmitter = .text:0x803BA1E0; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d12TChasePosDirFv = .text:0x803BA1E8; // type:function size:0x8 scope:weak align:4 +create__Q25efx2d9T2DCursorFPQ25efx2d3Arg = .text:0x803BA1F0; // type:function size:0x7C scope:global align:4 +create__Q25efx2d12T2DCountKiraFPQ25efx2d3Arg = .text:0x803BA26C; // type:function size:0x5C scope:global align:4 +create__Q25efx2d18T2DSensorGet_forVSFPQ25efx2d3Arg = .text:0x803BA2C8; // type:function size:0xD8 scope:global align:4 +create__Q25efx2d17T2DSprayset_forVSFPQ25efx2d3Arg = .text:0x803BA3A0; // type:function size:0x140 scope:global align:4 +create__Q35efx2d10FileSelect13T2DFilecopiedFPQ25efx2d3Arg = .text:0x803BA4E0; // type:function size:0xC8 scope:global align:4 +create__Q35efx2d10FileSelect13T2DFiledeleteFPQ25efx2d3Arg = .text:0x803BA5A8; // type:function size:0xC8 scope:global align:4 +create__Q35efx2d10FileSelect14T2DFiledeleteMFPQ25efx2d3Arg = .text:0x803BA670; // type:function size:0xC8 scope:global align:4 +create__Q35efx2d10FileSelect15T2DFilecopyBaseFPQ25efx2d3Arg = .text:0x803BA738; // type:function size:0x1CC scope:global align:4 +create__Q35efx2d8WorldMap10T2DShstar2FPQ25efx2d3Arg = .text:0x803BA904; // type:function size:0xDC scope:global align:4 +create__Q35efx2d8WorldMap9T2DNewmapFPQ25efx2d3Arg = .text:0x803BA9E0; // type:function size:0xF4 scope:global align:4 +create__Q35efx2d8WorldMap19TSimple_ArgDirScaleFPQ25efx2d3Arg = .text:0x803BAAD4; // type:function size:0xAC scope:global align:4 +create__Q35efx2d8WorldMap12T2DOnyonKiraFPQ25efx2d3Arg = .text:0x803BAB80; // type:function size:0x5C scope:global align:4 +setGlobalParticleScale__Q35efx2d8WorldMap12T2DOnyonKiraFf = .text:0x803BABDC; // type:function size:0x40 scope:global align:4 +setGlobalParticleScale__Q35efx2d8WorldMap13T2DRocketGlowFf = .text:0x803BAC1C; // type:function size:0x18 scope:global align:4 +create__Q35efx2d8WorldMap10T2DRocketBFPQ25efx2d3Arg = .text:0x803BAC34; // type:function size:0x5C scope:global align:4 +setGlobalParticleScale__Q35efx2d8WorldMap10T2DRocketBFf = .text:0x803BAC90; // type:function size:0x40 scope:global align:4 +__dt__Q35efx2d8WorldMap10T2DRocketBFv = .text:0x803BACD0; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d8WorldMap12T2DOnyonKiraFv = .text:0x803BAD6C; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d10FileSelect15T2DFilecopyBaseFv = .text:0x803BAE08; // type:function size:0x84 scope:weak align:4 +__dt__Q25efx2d12T2DCountKiraFv = .text:0x803BAE8C; // type:function size:0x84 scope:weak align:4 +__dt__Q25efx2d9T2DCursorFv = .text:0x803BAF10; // type:function size:0x9C scope:weak align:4 +@8@__dt__Q25efx2d9T2DCursorFv = .text:0x803BAFAC; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q25efx2d12T2DCountKiraFv = .text:0x803BAFB4; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect15T2DFilecopyBaseFv = .text:0x803BAFBC; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap12T2DOnyonKiraFv = .text:0x803BAFC4; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap10T2DRocketBFv = .text:0x803BAFCC; // type:function size:0x8 scope:weak align:4 +globalInstance__11ParticleMgrFv = .text:0x803BAFD4; // type:function size:0x44 scope:global align:4 +deleteInstance__11ParticleMgrFv = .text:0x803BB018; // type:function size:0x48 scope:global align:4 +__ct__11ParticleMgrFv = .text:0x803BB060; // type:function size:0x114 scope:global align:4 +__dt__19ModelEffectDataRootFv = .text:0x803BB174; // type:function size:0x70 scope:weak align:4 +__dt__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BB1E4; // type:function size:0xC8 scope:weak align:4 +__dt__26TObjectNode<11ModelEffect>Fv = .text:0x803BB2AC; // type:function size:0x60 scope:weak align:4 +__dt__24ObjectMgr<11ModelEffect>Fv = .text:0x803BB30C; // type:function size:0x88 scope:weak align:4 +__dt__24Container<11ModelEffect>Fv = .text:0x803BB394; // type:function size:0x70 scope:weak align:4 +__dt__11ParticleMgrFv = .text:0x803BB404; // type:function size:0x12C scope:global align:4 +createHeap__11ParticleMgrFUl = .text:0x803BB530; // type:function size:0x70 scope:global align:4 +createMgr__11ParticleMgrFPcUlUlUl = .text:0x803BB5A0; // type:function size:0x14C scope:global align:4 +Instance_TPkEffectMgr__11ParticleMgrFv = .text:0x803BB6EC; // type:function size:0x20 scope:global align:4 +deleteInstance_TPkEffectMgr__11ParticleMgrFv = .text:0x803BB70C; // type:function size:0x20 scope:global align:4 +beginEntryModelEffect__11ParticleMgrFv = .text:0x803BB72C; // type:function size:0x2C scope:global align:4 +endEntryModelEffect__11ParticleMgrFv = .text:0x803BB758; // type:function size:0x24 scope:global align:4 +start__11ParticleMgrFv = .text:0x803BB77C; // type:function size:0x24 scope:global align:4 +reset__11ParticleMgrFv = .text:0x803BB7A0; // type:function size:0x58 scope:global align:4 +killAll__11ParticleMgrFv = .text:0x803BB7F8; // type:function size:0x24 scope:global align:4 +update__11ParticleMgrFv = .text:0x803BB81C; // type:function size:0x2C scope:global align:4 +setXfb__11ParticleMgrFPC7ResTIMG = .text:0x803BB848; // type:function size:0x2C scope:global align:4 +draw__11ParticleMgrFP8ViewportUc = .text:0x803BB874; // type:function size:0xA4 scope:global align:4 +create__11ParticleMgrFUsR10Vector3Uc = .text:0x803BB918; // type:function size:0xC8 scope:global align:4 +createDemo__11ParticleMgrFUsR10Vector3UcUc = .text:0x803BB9E0; // type:function size:0x5C scope:global align:4 +setGlobalColor__11ParticleMgrFP14JPABaseEmitter = .text:0x803BBA3C; // type:function size:0xA8 scope:global align:4 +forceKill__11ParticleMgrFP14JPABaseEmitter = .text:0x803BBAE4; // type:function size:0x2C scope:global align:4 +fade__11ParticleMgrFP14JPABaseEmitter = .text:0x803BBB10; // type:function size:0x2C scope:global align:4 +setDemoResourceManager__11ParticleMgrFP18JPAResourceManager = .text:0x803BBB3C; // type:function size:0x28 scope:global align:4 +clearDemoResourceManager__11ParticleMgrFv = .text:0x803BBB64; // type:function size:0x28 scope:global align:4 +setViewport__11ParticleMgrFR8Graphics = .text:0x803BBB8C; // type:function size:0xA8 scope:global align:4 +cullByResFlg__11ParticleMgrFR10Vector3Us = .text:0x803BBC34; // type:function size:0x114 scope:global align:4 +cullByResFlg__11ParticleMgrFP14JPABaseEmitter = .text:0x803BBD48; // type:function size:0x178 scope:global align:4 +loadResources__19ModelEffectDataRootFv = .text:0x803BBEC0; // type:function size:0x4 scope:weak align:4 +getID__19ModelEffectDataRootFv = .text:0x803BBEC4; // type:function size:0x10 scope:weak align:4 +onCreate__19ModelEffectDataRootFP20ModelEffectCreateArg = .text:0x803BBED4; // type:function size:0x8 scope:weak align:4 +get__28NodeObjectMgr<11ModelEffect>FPv = .text:0x803BBEDC; // type:function size:0x8 scope:weak align:4 +getNext__28NodeObjectMgr<11ModelEffect>FPv = .text:0x803BBEE4; // type:function size:0x8 scope:weak align:4 +getStart__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BBEEC; // type:function size:0x8 scope:weak align:4 +getEnd__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BBEF4; // type:function size:0x8 scope:weak align:4 +resetMgr__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BBEFC; // type:function size:0x18 scope:weak align:4 +getObject__24Container<11ModelEffect>FPv = .text:0x803BBF14; // type:function size:0x2C scope:weak align:4 +getAt__24Container<11ModelEffect>Fi = .text:0x803BBF40; // type:function size:0x8 scope:weak align:4 +getTo__24Container<11ModelEffect>Fv = .text:0x803BBF48; // type:function size:0x8 scope:weak align:4 +doDirectDraw__24ObjectMgr<11ModelEffect>FR8Graphics = .text:0x803BBF50; // type:function size:0x1F4 scope:weak align:4 +isDone__23Iterator<11ModelEffect>Fv = .text:0x803BC144; // type:function size:0x4C scope:weak align:4 +doSimulation__24ObjectMgr<11ModelEffect>Ff = .text:0x803BC190; // type:function size:0x1F4 scope:weak align:4 +doViewCalc__24ObjectMgr<11ModelEffect>Fv = .text:0x803BC384; // type:function size:0x1E4 scope:weak align:4 +doSetView__24ObjectMgr<11ModelEffect>Fi = .text:0x803BC568; // type:function size:0x1F4 scope:weak align:4 +doEntry__24ObjectMgr<11ModelEffect>Fv = .text:0x803BC75C; // type:function size:0x1E4 scope:weak align:4 +doAnimation__24ObjectMgr<11ModelEffect>Fv = .text:0x803BC940; // type:function size:0x1E4 scope:weak align:4 +__ml__23Iterator<11ModelEffect>Fv = .text:0x803BCB24; // type:function size:0x38 scope:weak align:4 +next__23Iterator<11ModelEffect>Fv = .text:0x803BCB5C; // type:function size:0xE4 scope:weak align:4 +first__23Iterator<11ModelEffect>Fv = .text:0x803BCC40; // type:function size:0xDC scope:weak align:4 +__sinit_particleMgr_cpp = .text:0x803BCD1C; // type:function size:0x28 scope:local align:4 +@28@resetMgr__28NodeObjectMgr<11ModelEffect>Fv = .text:0x803BCD44; // type:function size:0x8 scope:weak align:4 +@28@doDirectDraw__24ObjectMgr<11ModelEffect>FR8Graphics = .text:0x803BCD4C; // type:function size:0x8 scope:weak align:4 +@28@doSimulation__24ObjectMgr<11ModelEffect>Ff = .text:0x803BCD54; // type:function size:0x8 scope:weak align:4 +@28@doViewCalc__24ObjectMgr<11ModelEffect>Fv = .text:0x803BCD5C; // type:function size:0x8 scope:weak align:4 +@28@doSetView__24ObjectMgr<11ModelEffect>Fi = .text:0x803BCD64; // type:function size:0x8 scope:weak align:4 +@28@doEntry__24ObjectMgr<11ModelEffect>Fv = .text:0x803BCD6C; // type:function size:0x8 scope:weak align:4 +@28@doAnimation__24ObjectMgr<11ModelEffect>Fv = .text:0x803BCD74; // type:function size:0x8 scope:weak align:4 +__ct__Q33ebi5title9TTitleMgrFv = .text:0x803BCD7C; // type:function size:0x5EC scope:global align:4 +__ct__Q33ebi5title16TTitleParametersFv = .text:0x803BD368; // type:function size:0x458 scope:weak align:4 +__dt__Q33ebi5title12TTitleFogMgrFv = .text:0x803BD7C0; // type:function size:0x70 scope:weak align:4 +__dt__6FogMgrFv = .text:0x803BD830; // type:function size:0x60 scope:weak align:4 +__dt__Q33ebi5title14TTitleLightMgrFv = .text:0x803BD890; // type:function size:0xE4 scope:weak align:4 +__ct__Q33ebi5title14TTitleLightMgrFv = .text:0x803BD974; // type:function size:0xD8 scope:weak align:4 +__ct__Q33ebi5title18TTitleLightSettingFv = .text:0x803BDA4C; // type:function size:0x14C scope:weak align:4 +__ct__Q43ebi5title18TTitleLightSetting10TSpecParmsFv = .text:0x803BDB98; // type:function size:0x228 scope:weak align:4 +__ct__Q43ebi5title18TTitleLightSetting10TMainParmsFv = .text:0x803BDDC0; // type:function size:0x350 scope:weak align:4 +__dt__8LightObjFv = .text:0x803BE110; // type:function size:0x60 scope:weak align:4 +__dt__Q33ebi5title15TTitleCameraMgrFv = .text:0x803BE170; // type:function size:0xD0 scope:weak align:4 +__dt__8ViewportFv = .text:0x803BE240; // type:function size:0x60 scope:weak align:4 +__dt__Q33ebi5title9TCoordMgrFv = .text:0x803BE2A0; // type:function size:0x60 scope:weak align:4 +__dt__Q43ebi5title6Chappy4TMgrFv = .text:0x803BE300; // type:function size:0x60 scope:weak align:4 +__dt__Q43ebi5title6Kogane4TMgrFv = .text:0x803BE360; // type:function size:0x60 scope:weak align:4 +__dt__Q43ebi5title6Pikmin4TMgrFv = .text:0x803BE3C0; // type:function size:0x84 scope:weak align:4 +__dt__12J3DFrameCtrlFv = .text:0x803BE444; // type:function size:0x48 scope:weak align:4 +__dt__Q33ebi5title9TTitleMgrFv = .text:0x803BE48C; // type:function size:0x34C scope:global align:4 +globalInstance__Q33ebi5title9TTitleMgrFv = .text:0x803BE7D8; // type:function size:0x24 scope:global align:4 +Instance__Q33ebi5title9TTitleMgrFv = .text:0x803BE7FC; // type:function size:0x48 scope:global align:4 +deleteInstance__Q33ebi5title9TTitleMgrFv = .text:0x803BE844; // type:function size:0x50 scope:global align:4 +init__Q33ebi5title9TTitleMgrFv = .text:0x803BE894; // type:function size:0x228 scope:global align:4 +setLogo__Q33ebi5title9TTitleMgrFv = .text:0x803BEABC; // type:function size:0x50 scope:global align:4 +loadResource__Q33ebi5title9TTitleMgrFv = .text:0x803BEB0C; // type:function size:0x300 scope:global align:4 +initAfterLoadRes__Q33ebi5title9TTitleMgrFv = .text:0x803BEE0C; // type:function size:0x40 scope:global align:4 +setController__Q33ebi5title9TTitleMgrFP10Controller = .text:0x803BEE4C; // type:function size:0x44 scope:global align:4 +inField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BEE90; // type:function size:0x70 scope:global align:4 +isCalc__Q33ebi5title8TObjBaseFv = .text:0x803BEF00; // type:function size:0x8 scope:weak align:4 +inViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BEF08; // type:function size:0x80 scope:global align:4 +isInViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BEF88; // type:function size:0x88 scope:global align:4 +isOutViewField__Q33ebi5title9TTitleMgrFR10Vector2f = .text:0x803BF010; // type:function size:0x44 scope:global align:4 +isOutViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase = .text:0x803BF054; // type:function size:0x88 scope:global align:4 +getPosOutOfViewField__Q33ebi5title9TTitleMgrFv = .text:0x803BF0DC; // type:function size:0x20 scope:global align:4 +start__Q33ebi5title9TTitleMgrFv = .text:0x803BF0FC; // type:function size:0x408 scope:global align:4 +breakup__Q33ebi5title9TTitleMgrFv = .text:0x803BF504; // type:function size:0x20C scope:global align:4 +startKogane__Q33ebi5title9TTitleMgrFv = .text:0x803BF710; // type:function size:0x1A0 scope:global align:4 +startChappy__Q33ebi5title9TTitleMgrFv = .text:0x803BF8B0; // type:function size:0x1A0 scope:global align:4 +boidToAssemble__Q33ebi5title9TTitleMgrFl = .text:0x803BFA50; // type:function size:0x23C scope:global align:4 +isControllerOK__Q33ebi5title9TTitleMgrFv = .text:0x803BFC8C; // type:function size:0x1C scope:global align:4 +isPressStart__Q33ebi5title9TTitleMgrFv = .text:0x803BFCA8; // type:function size:0x1C scope:global align:4 +startState__Q33ebi5title9TTitleMgrFQ43ebi5title9TTitleMgr9enumState = .text:0x803BFCC4; // type:function size:0x124 scope:global align:4 +update__Q33ebi5title9TTitleMgrFv = .text:0x803BFDE8; // type:function size:0x458 scope:global align:4 +updateState__Q33ebi5title9TTitleMgrFv = .text:0x803C0240; // type:function size:0x34C scope:global align:4 +checkEncounter___Q33ebi5title9TTitleMgrFv = .text:0x803C058C; // type:function size:0x22C scope:global align:4 +draw__Q33ebi5title9TTitleMgrFv = .text:0x803C07B8; // type:function size:0x268 scope:global align:4 +readTitleParam__Q33ebi5title9TTitleMgrFP10JKRArchivePc = .text:0x803C0A20; // type:function size:0x7C scope:global align:4 +__dt__Q43ebi5title6Pikmin13TBoidParamMgrFv = .text:0x803C0A9C; // type:function size:0x60 scope:weak align:4 +read__Q33ebi5title15TTitleCameraMgrFR6Stream = .text:0x803C0AFC; // type:function size:0x24 scope:weak align:4 +doUpdate__6CameraFv = .text:0x803C0B20; // type:function size:0x4 scope:weak align:4 +getCreatureType__Q33ebi5title8TObjBaseFv = .text:0x803C0B24; // type:function size:0x8 scope:weak align:4 +__sinit_ebiP2Title_cpp = .text:0x803C0B2C; // type:function size:0x28 scope:local align:4 +@24@__dt__Q33ebi5title9TTitleMgrFv = .text:0x803C0B54; // type:function size:0x8 scope:weak align:4 +loadSettingFile__Q33ebi5title10TParamBaseFP10JKRArchivePc = .text:0x803C0B5C; // type:function size:0x88 scope:global align:4 +calcModelBaseMtx___Q33ebi5title8TObjBaseFv = .text:0x803C0BE4; // type:function size:0xB0 scope:global align:4 +pushOut__Q33ebi5title8TObjBaseFPQ33ebi5title8TObjBase = .text:0x803C0C94; // type:function size:0x94 scope:global align:4 +setArchive__Q33ebi5title8TMapBaseFP10JKRArchive = .text:0x803C0D28; // type:function size:0x220 scope:global align:4 +startWind__Q33ebi5title8TMapBaseFf = .text:0x803C0F48; // type:function size:0x48 scope:global align:4 +update__Q33ebi5title8TMapBaseFv = .text:0x803C0F90; // type:function size:0x27C scope:global align:4 +setArchive__Q33ebi5title12TBGEnemyBaseFP10JKRArchive = .text:0x803C120C; // type:function size:0x150 scope:global align:4 +start__Q33ebi5title12TBGEnemyBaseFv = .text:0x803C135C; // type:function size:0x5C scope:global align:4 +update__Q33ebi5title12TBGEnemyBaseFv = .text:0x803C13B8; // type:function size:0x124 scope:global align:4 +setArchive__Q33ebi5title11TBlackPlaneFP10JKRArchive = .text:0x803C14DC; // type:function size:0x2D8 scope:global align:4 +start__Q33ebi5title11TBlackPlaneFv = .text:0x803C17B4; // type:function size:0xA0 scope:global align:4 +updateBeforeCamera__Q33ebi5title11TBlackPlaneFv = .text:0x803C1854; // type:function size:0x110 scope:global align:4 +updateAfterCamera__Q33ebi5title11TBlackPlaneFv = .text:0x803C1964; // type:function size:0x50 scope:global align:4 +setLogo__Q33ebi5title11TBlackPlaneFv = .text:0x803C19B4; // type:function size:0x4C scope:global align:4 +getCameraPos__Q33ebi5title11TBlackPlaneFv = .text:0x803C1A00; // type:function size:0x78 scope:global align:4 +__sinit_ebiP2TitleUnit_cpp = .text:0x803C1A78; // type:function size:0x28 scope:local align:4 +init__Q23ebi24EUTPadInterface_countNumFP10ControllerllPlQ33ebi24EUTPadInterface_countNum8enumModeff = .text:0x803C1AA0; // type:function size:0x60 scope:global align:4 +update__Q23ebi24EUTPadInterface_countNumFv = .text:0x803C1B00; // type:function size:0x304 scope:global align:4 +EUTColor_complement__3ebiFRQ28JUtility6TColorRQ28JUtility6TColorffPQ28JUtility6TColor = .text:0x803C1E04; // type:function size:0x114 scope:global align:4 +EUTDebug_Tag64ToName__3ebiFUxPc = .text:0x803C1F18; // type:function size:0x4 scope:global align:4 +EUTDebug_Tag32ToName__3ebiFUlPc = .text:0x803C1F1C; // type:function size:0x4 scope:global align:4 +update__Q33ebi5title15TTitleCameraMgrFv = .text:0x803C1F20; // type:function size:0x74 scope:global align:4 +__sinit_ebiP2TitleCamera_cpp = .text:0x803C1F94; // type:function size:0x28 scope:local align:4 +loadSettingFile__Q33ebi5title14TTitleLightMgrFP10JKRArchivePc = .text:0x803C1FBC; // type:function size:0x94 scope:global align:4 +setParam___Q33ebi5title14TTitleLightMgrFv = .text:0x803C2050; // type:function size:0x17C scope:global align:4 +update__Q33ebi5title14TTitleLightMgrFv = .text:0x803C21CC; // type:function size:0x20 scope:global align:4 +setCameraMtx__Q33ebi5title14TTitleLightMgrFPA4_f = .text:0x803C21EC; // type:function size:0x94 scope:global align:4 +__sinit_ebiP2TitleLight_cpp = .text:0x803C2280; // type:function size:0x28 scope:local align:4 +__dt__Q33ebi6Screen17TResourceObserverFv = .text:0x803C22A8; // type:function size:0x6C scope:global align:4 +loadResource__Q33ebi6Screen11TMemoryCardFP7JKRHeap = .text:0x803C2314; // type:function size:0xD8 scope:global align:4 +setArchive__Q33ebi6Screen11TMemoryCardFP10JKRArchive = .text:0x803C23EC; // type:function size:0x39C scope:global align:4 +set__Q23ebi26E2DCallBack_BlinkFontColorFP10J2DTextBoxP10J2DTextBox = .text:0x803C2788; // type:function size:0x1BC scope:weak align:4 +destroyResource__Q33ebi6Screen11TMemoryCardFv = .text:0x803C2944; // type:function size:0x18 scope:global align:4 +open__Q33ebi6Screen11TMemoryCardFl = .text:0x803C295C; // type:function size:0x1208 scope:global align:4 +close__Q33ebi6Screen11TMemoryCardFv = .text:0x803C3B64; // type:function size:0x30 scope:global align:4 +killScreen__Q33ebi6Screen11TMemoryCardFv = .text:0x803C3B94; // type:function size:0x24 scope:global align:4 +setSelect___Q33ebi6Screen11TMemoryCardFb = .text:0x803C3BB8; // type:function size:0x334 scope:global align:4 +update__Q23ebi12TYesNoCursorFv = .text:0x803C3EEC; // type:function size:0x128 scope:weak align:4 +isFinish__Q33ebi6Screen11TMemoryCardFv = .text:0x803C4014; // type:function size:0x28 scope:global align:4 +startState__Q33ebi6Screen11TMemoryCardFQ43ebi6Screen11TMemoryCard9enumState = .text:0x803C403C; // type:function size:0x4EC scope:global align:4 +update__Q33ebi6Screen11TMemoryCardFv = .text:0x803C4528; // type:function size:0x8C8 scope:global align:4 +draw__Q33ebi6Screen11TMemoryCardFv = .text:0x803C4DF0; // type:function size:0x80 scope:global align:4 +create__Q23efx19TPkOneEmitterSimpleFPQ23efx3Arg = .text:0x803C4E70; // type:function size:0xB4 scope:global align:4 +executeAfter__Q23efx19TPkOneEmitterSimpleFP14JPABaseEmitter = .text:0x803C4F24; // type:function size:0xD4 scope:global align:4 +globalInstance__Q23efx12TPkEffectMgrFv = .text:0x803C4FF8; // type:function size:0x24 scope:global align:4 +deleteInstance__Q23efx12TPkEffectMgrFv = .text:0x803C501C; // type:function size:0x50 scope:global align:4 +Instance__Q23efx12TPkEffectMgrFv = .text:0x803C506C; // type:function size:0x48 scope:global align:4 +__ct__Q23efx12TPkEffectMgrFv = .text:0x803C50B4; // type:function size:0x13BC scope:global align:4 +__dt__Q23efx11TOEContextSFv = .text:0x803C6470; // type:function size:0x58 scope:weak align:4 +__ct__Q23efx11TOEContextSFv = .text:0x803C64C8; // type:function size:0x34 scope:weak align:4 +__dt__Q23efx12TPkEffectMgrFv = .text:0x803C64FC; // type:function size:0x108 scope:global align:4 +__dt__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C6604; // type:function size:0x80 scope:weak align:4 +startMgr__Q23efx12TPkEffectMgrFv = .text:0x803C6684; // type:function size:0x98 scope:global align:4 +exitMgr__Q23efx12TPkEffectMgrFv = .text:0x803C671C; // type:function size:0x90 scope:global align:4 +forceKill__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C67AC; // type:function size:0x44 scope:weak align:4 +resetContextS__Q23efx12TPkEffectMgrFv = .text:0x803C67F0; // type:function size:0xC scope:global align:4 +createS_Dead__Q23efx12TPkEffectMgrFR10Vector3l = .text:0x803C67FC; // type:function size:0x21C scope:global align:4 +createS_Chinka__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6A18; // type:function size:0xC8 scope:global align:4 +createS_Gedoku__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6AE0; // type:function size:0xC8 scope:global align:4 +createS_WaterOff__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6BA8; // type:function size:0xC8 scope:global align:4 +createS_Dive__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6C70; // type:function size:0xC8 scope:global align:4 +createS_Chiru__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6D38; // type:function size:0x74 scope:global align:4 +createS_Inattack__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6DAC; // type:function size:0x74 scope:global align:4 +createS_Walksmoke__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6E20; // type:function size:0x74 scope:global align:4 +createS_Dig__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6E94; // type:function size:0x74 scope:global align:4 +createS_ChiruRed__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6F08; // type:function size:0x74 scope:global align:4 +createS_Gate3Attack__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6F7C; // type:function size:0x74 scope:global align:4 +createS_Walkwater__Q23efx12TPkEffectMgrFR10Vector3 = .text:0x803C6FF0; // type:function size:0xC8 scope:global align:4 +create__Q23efx9ToeKourinFP10Vector3l = .text:0x803C70B8; // type:function size:0x128 scope:global align:4 +kill__Q23efx9ToeKourinFv = .text:0x803C71E0; // type:function size:0xB8 scope:global align:4 +create__Q23efx9ToeDopingFP10Vector3 = .text:0x803C7298; // type:function size:0x68 scope:global align:4 +kill__Q23efx9ToeDopingFv = .text:0x803C7300; // type:function size:0x2C scope:global align:4 +create__Q23efx11ToeNagekiraFP10Vector3 = .text:0x803C732C; // type:function size:0x68 scope:global align:4 +kill__Q23efx11ToeNagekiraFv = .text:0x803C7394; // type:function size:0x2C scope:global align:4 +create__Q23efx8ToeMoeBCFP10Vector3 = .text:0x803C73C0; // type:function size:0x7C scope:global align:4 +kill__Q23efx8ToeMoeBCFv = .text:0x803C743C; // type:function size:0x48 scope:global align:4 +create__Q23efx10ToeChudokuFP10Vector3 = .text:0x803C7484; // type:function size:0x68 scope:global align:4 +kill__Q23efx10ToeChudokuFv = .text:0x803C74EC; // type:function size:0x2C scope:global align:4 +create__Q23efx8ToeWaterFP10Vector3 = .text:0x803C7518; // type:function size:0x7C scope:global align:4 +kill__Q23efx8ToeWaterFv = .text:0x803C7594; // type:function size:0x48 scope:global align:4 +create__Q23efx9ToeHamonAFP10Vector3 = .text:0x803C75DC; // type:function size:0x74 scope:global align:4 +kill__Q23efx9ToeHamonAFv = .text:0x803C7650; // type:function size:0x2C scope:global align:4 +create__Q23efx9ToeHamonBFP10Vector3 = .text:0x803C767C; // type:function size:0x74 scope:global align:4 +kill__Q23efx9ToeHamonBFv = .text:0x803C76F0; // type:function size:0x2C scope:global align:4 +create__Q23efx11ToeMoeSmokeFP10Vector3 = .text:0x803C771C; // type:function size:0x68 scope:global align:4 +kill__Q23efx11ToeMoeSmokeFv = .text:0x803C7784; // type:function size:0x2C scope:global align:4 +create__Q23efx11ToeTanekiraFP10Vector3 = .text:0x803C77B0; // type:function size:0x68 scope:global align:4 +kill__Q23efx11ToeTanekiraFv = .text:0x803C7818; // type:function size:0x2C scope:global align:4 +fade__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C7844; // type:function size:0x44 scope:weak align:4 +@4@executeAfter__Q23efx19TPkOneEmitterSimpleFP14JPABaseEmitter = .text:0x803C7888; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx19TPkOneEmitterSimpleFv = .text:0x803C7890; // type:function size:0x8 scope:weak align:4 +create__Q23efx10TEnemyPiyoFPQ23efx3Arg = .text:0x803C7898; // type:function size:0x274 scope:global align:4 +create__Q23efx13TEnemyPoisonLFPQ23efx3Arg = .text:0x803C7B0C; // type:function size:0xDC scope:global align:4 +create__Q23efx13TEnemyPoisonSFPQ23efx3Arg = .text:0x803C7BE8; // type:function size:0xDC scope:global align:4 +create__Q23efx11TSekikaLOffFPQ23efx3Arg = .text:0x803C7CC4; // type:function size:0xDC scope:global align:4 +create__Q23efx10TSekikaLOnFPQ23efx3Arg = .text:0x803C7DA0; // type:function size:0xDC scope:global align:4 +create__Q23efx11TSekikaSOffFPQ23efx3Arg = .text:0x803C7E7C; // type:function size:0xDC scope:global align:4 +create__Q23efx10TSekikaSOnFPQ23efx3Arg = .text:0x803C7F58; // type:function size:0xDC scope:global align:4 +create__Q23efx19TEnemyDead_ArgScaleFPQ23efx3Arg = .text:0x803C8034; // type:function size:0xDC scope:global align:4 +create__Q23efx10TEnemyDeadFPQ23efx3Arg = .text:0x803C8110; // type:function size:0x24C scope:global align:4 +create__Q23efx15TEnemyWalkSmokeFPQ23efx3Arg = .text:0x803C835C; // type:function size:0x318 scope:global align:4 +create__Q23efx16TEnemyWalkSmokeMFPQ23efx3Arg = .text:0x803C8674; // type:function size:0xDC scope:global align:4 +create__Q23efx16TEnemyWalkSmokeSFPQ23efx3Arg = .text:0x803C8750; // type:function size:0x78 scope:global align:4 +create__Q23efx15TEnemyDownSmokeFPQ23efx3Arg = .text:0x803C87C8; // type:function size:0x68 scope:global align:4 +create__Q23efx13TEnemyDownWatFPQ23efx3Arg = .text:0x803C8830; // type:function size:0x10C scope:global align:4 +create__Q23efx10TEnemyDiveFPQ23efx3Arg = .text:0x803C893C; // type:function size:0xF4 scope:global align:4 +__ct__Q23efx20TEnemyBombScaleTableFQ34Game11EnemyTypeID12EEnemyTypeID = .text:0x803C8A30; // type:function size:0x3B8 scope:global align:4 +create__Q23efx10TEnemyBombFPQ23efx3Arg = .text:0x803C8DE8; // type:function size:0x1EC scope:global align:4 +create__Q23efx11TEnemyBombMFPQ23efx3Arg = .text:0x803C8FD4; // type:function size:0x124 scope:global align:4 +create__Q23efx11TEnemyBombSFPQ23efx3Arg = .text:0x803C90F8; // type:function size:0x124 scope:global align:4 +create__Q23efx13TEnemyApsmokeFPQ23efx3Arg = .text:0x803C921C; // type:function size:0x1A4 scope:global align:4 +create__Q23efx14TEnemyApsmokeMFPQ23efx3Arg = .text:0x803C93C0; // type:function size:0xDC scope:global align:4 +create__Q23efx14TEnemyApsmokeSFPQ23efx3Arg = .text:0x803C949C; // type:function size:0xDC scope:global align:4 +create__Q23efx12TEnemyHamonMFPQ23efx3Arg = .text:0x803C9578; // type:function size:0xDC scope:global align:4 +create__Q23efx15TEnemyHamonMIndFPQ23efx3Arg = .text:0x803C9654; // type:function size:0xDC scope:global align:4 +create__Q23efx19TEnemyHamonChasePosFPQ23efx3Arg = .text:0x803C9730; // type:function size:0x2FC scope:global align:4 +update__Q23efx11TEnemyHamonFR10Vector3 = .text:0x803C9A2C; // type:function size:0x138 scope:global align:4 +create__Q23efx11TEnemyHamonFPQ23efx3Arg = .text:0x803C9B64; // type:function size:0xA0 scope:global align:4 +getLimitDepth___Q23efx11TEnemyHamonFv = .text:0x803C9C04; // type:function size:0x140 scope:global align:4 +forceKill__Q23efx13TEnemyApsmokeFv = .text:0x803C9D44; // type:function size:0x4 scope:weak align:4 +fade__Q23efx13TEnemyApsmokeFv = .text:0x803C9D48; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx10TEnemyBombFv = .text:0x803C9D4C; // type:function size:0x4 scope:weak align:4 +fade__Q23efx10TEnemyBombFv = .text:0x803C9D50; // type:function size:0x4 scope:weak align:4 +forceKill__Q23efx15TEnemyWalkSmokeFv = .text:0x803C9D54; // type:function size:0x4 scope:weak align:4 +fade__Q23efx15TEnemyWalkSmokeFv = .text:0x803C9D58; // type:function size:0x4 scope:weak align:4 +@4@__dt__Q23efx10TEnemyPiyoFv = .text:0x803C9D5C; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx12TEnemyHamonMFv = .text:0x803C9D64; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx15TEnemyHamonMIndFv = .text:0x803C9D6C; // type:function size:0x8 scope:weak align:4 +load__Q23ebi10E3DAnimResFP12J3DModelDataP10JKRArchivePc = .text:0x803C9D74; // type:function size:0x104 scope:global align:4 +setAnimFolder__Q23ebi11E3DAnimCtrlFPQ23ebi17E3DAnimFolderBase = .text:0x803C9E78; // type:function size:0x58 scope:global align:4 +init__Q23ebi11E3DAnimCtrlFlf = .text:0x803C9ED0; // type:function size:0xA4 scope:global align:4 +play__Q23ebi11E3DAnimCtrlFv = .text:0x803C9F74; // type:function size:0x80 scope:global align:4 +playStopEnd__Q23ebi11E3DAnimCtrlFv = .text:0x803C9FF4; // type:function size:0x64 scope:global align:4 +isOut__Q23ebi8EGEBox2fFR10Vector2 = .text:0x803CA058; // type:function size:0x58 scope:global align:4 +isIn__Q23ebi8EGEBox2fFR10Vector2f = .text:0x803CA0B0; // type:function size:0x70 scope:global align:4 +isOut__Q23ebi8EGEBox2fFR10Vector2f = .text:0x803CA120; // type:function size:0x68 scope:global align:4 +in__Q23ebi8EGEBox2fFP10Vector2f = .text:0x803CA188; // type:function size:0x64 scope:global align:4 +isOut__Q23ebi11EGECircle2fFR10Vector2 = .text:0x803CA1EC; // type:function size:0x5C scope:global align:4 +in__Q23ebi11EGECircle2fFP10Vector2 = .text:0x803CA248; // type:function size:0xB8 scope:global align:4 +out__Q23ebi11EGECircle2fFP10Vector2 = .text:0x803CA300; // type:function size:0xBC scope:global align:4 +E2DScreen_searchAssert__3ebiFP9J2DScreenUx = .text:0x803CA3BC; // type:function size:0x8C scope:global align:4 +E2DPane_setTreeInfluencedAlpha__3ebiFP7J2DPaneb = .text:0x803CA448; // type:function size:0x1D8 scope:global align:4 +E2DPane_setTreeShow__3ebiFP7J2DPane = .text:0x803CA620; // type:function size:0x1A4 scope:global align:4 +show__7J2DPaneFv = .text:0x803CA7C4; // type:function size:0xC scope:weak align:4 +E2DPane_setTreeHide__3ebiFP7J2DPane = .text:0x803CA7D0; // type:function size:0x1A4 scope:global align:4 +hide__7J2DPaneFv = .text:0x803CA974; // type:function size:0xC scope:weak align:4 +E2DPane_setTreeCallBackMessage__3ebiFPQ29P2DScreen3MgrP7J2DPane = .text:0x803CA980; // type:function size:0x3DC scope:global align:4 +E2DPane_getGlbCenter__3ebiFP7J2DPane = .text:0x803CAD5C; // type:function size:0xD0 scope:global align:4 +loadRam__Q33ebi6Screen16TOptionParameterFv = .text:0x803CAE2C; // type:function size:0x100 scope:global align:4 +saveRam__Q33ebi6Screen16TOptionParameterFv = .text:0x803CAF2C; // type:function size:0xFC scope:global align:4 +initParamForTest__Q33ebi6Screen16TOptionParameterFv = .text:0x803CB028; // type:function size:0x24 scope:global align:4 +doSetArchive__Q33ebi6Screen7TOptionFP10JKRArchive = .text:0x803CB04C; // type:function size:0x8D4 scope:global align:4 +doOpenScreen__Q33ebi6Screen7TOptionFPQ33ebi6Screen7ArgOpen = .text:0x803CB920; // type:function size:0x134 scope:global align:4 +doCloseScreen__Q33ebi6Screen7TOptionFPQ33ebi6Screen8ArgClose = .text:0x803CBA54; // type:function size:0x4C scope:global align:4 +doInitWaitState__Q33ebi6Screen7TOptionFv = .text:0x803CBAA0; // type:function size:0x24 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen7TOptionFv = .text:0x803CBAC4; // type:function size:0x90 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen7TOptionFv = .text:0x803CBB54; // type:function size:0x9C0 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen7TOptionFv = .text:0x803CC514; // type:function size:0x74 scope:global align:4 +doDraw__Q33ebi6Screen7TOptionFv = .text:0x803CC588; // type:function size:0x244 scope:global align:4 +loadResource__Q33ebi6Screen7TOptionFv = .text:0x803CC7CC; // type:function size:0xB0 scope:global align:4 +setController__Q33ebi6Screen7TOptionFP10Controller = .text:0x803CC87C; // type:function size:0xBC scope:global align:4 +initScreen___Q33ebi6Screen7TOptionFv = .text:0x803CC938; // type:function size:0x174 scope:global align:4 +setOptionParamToScreen___Q33ebi6Screen7TOptionFv = .text:0x803CCAAC; // type:function size:0xC9C scope:global align:4 +getName__Q33ebi6Screen7TOptionFv = .text:0x803CD748; // type:function size:0x8 scope:weak align:4 +doKillScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803CD750; // type:function size:0x4 scope:weak align:4 +loadResource__Q23ebi13TScreenProgreFv = .text:0x803CD754; // type:function size:0xB0 scope:global align:4 +setArchive__Q23ebi13TScreenProgreFP10JKRArchive = .text:0x803CD804; // type:function size:0x318 scope:global align:4 +startScreen__Q23ebi13TScreenProgreFlUl = .text:0x803CDB1C; // type:function size:0x3E4 scope:global align:4 +fadeout__Q23ebi13TScreenProgreFUl = .text:0x803CDF00; // type:function size:0x54 scope:global align:4 +isFinish__Q23ebi13TScreenProgreFv = .text:0x803CDF54; // type:function size:0x28 scope:global align:4 +startState__Q23ebi13TScreenProgreFQ33ebi13TScreenProgre9enumStateUl = .text:0x803CDF7C; // type:function size:0xC0 scope:global align:4 +update__Q23ebi13TScreenProgreFv = .text:0x803CE03C; // type:function size:0x554 scope:global align:4 +draw__Q23ebi13TScreenProgreFv = .text:0x803CE590; // type:function size:0xDC scope:global align:4 +setDecide__Q23ebi13TScreenProgreFv = .text:0x803CE66C; // type:function size:0x308 scope:global align:4 +init__Q33ebi6Option15FSMStateMachineFPQ33ebi6Option4TMgr = .text:0x803CE974; // type:function size:0x2D8 scope:global align:4 +init__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEC4C; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEC78; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgr = .text:0x803CEC7C; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgr = .text:0x803CECA8; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi6Option19FSMState_ScreenOpenFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CECAC; // type:function size:0x50 scope:global align:4 +do_exec__Q33ebi6Option19FSMState_ScreenOpenFPQ33ebi6Option4TMgr = .text:0x803CECFC; // type:function size:0x64 scope:global align:4 +transit__Q24Game28FSMStateFPQ33ebi6Option4TMgriPQ24Game8StateArg = .text:0x803CED60; // type:function size:0x30 scope:weak align:4 +do_init__Q33ebi6Option19FSMState_ScreenWaitFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CED90; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi6Option19FSMState_ScreenWaitFPQ33ebi6Option4TMgr = .text:0x803CED9C; // type:function size:0x144 scope:global align:4 +do_init__Q33ebi6Option20FSMState_ScreenCloseFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEEE0; // type:function size:0x3C scope:global align:4 +do_exec__Q33ebi6Option20FSMState_ScreenCloseFPQ33ebi6Option4TMgr = .text:0x803CEF1C; // type:function size:0x4C scope:global align:4 +do_init__Q33ebi6Option27FSMState_WaitCloseForNoCardFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CEF68; // type:function size:0x44 scope:global align:4 +do_exec__Q33ebi6Option27FSMState_WaitCloseForNoCardFPQ33ebi6Option4TMgr = .text:0x803CEFAC; // type:function size:0x84 scope:global align:4 +do_init__Q33ebi6Option27FSMState_WorldMapInfoWindowFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CF030; // type:function size:0xB8 scope:global align:4 +do_exec__Q33ebi6Option27FSMState_WorldMapInfoWindowFPQ33ebi6Option4TMgr = .text:0x803CF0E8; // type:function size:0xA0 scope:global align:4 +do_init__Q33ebi6Option19FSMState_LoadOptionFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CF188; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi6Option19FSMState_LoadOptionFPQ33ebi6Option4TMgr = .text:0x803CF194; // type:function size:0x1A0 scope:global align:4 +do_init__Q33ebi6Option16FSMState_SaveMgrFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803CF334; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi6Option16FSMState_SaveMgrFPQ33ebi6Option4TMgr = .text:0x803CF360; // type:function size:0x100 scope:global align:4 +__ct__Q33ebi6Option4TMgrFv = .text:0x803CF460; // type:function size:0xC0 scope:global align:4 +start__Q24Game32StateMachineFPQ33ebi6Option4TMgriPQ24Game8StateArg = .text:0x803CF520; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi6Screen7TOptionFv = .text:0x803CF554; // type:function size:0x30C scope:weak align:4 +__dt__Q23ebi20E2DCallBack_PurupuruFv = .text:0x803CF860; // type:function size:0x90 scope:weak align:4 +__ct__Q33ebi6Screen7TOptionFv = .text:0x803CF8F0; // type:function size:0x43C scope:weak align:4 +__dt__Q23ebi24E2DCallBack_WindowCursorFv = .text:0x803CFD2C; // type:function size:0x90 scope:weak align:4 +__ct__Q23ebi20E2DCallBack_PurupuruFv = .text:0x803CFDBC; // type:function size:0x8C scope:weak align:4 +__dt__Q23ebi22E2DCallBack_BlinkAlphaFv = .text:0x803CFE48; // type:function size:0x90 scope:weak align:4 +__dt__Q23ebi26E2DCallBack_BlinkFontColorFv = .text:0x803CFED8; // type:function size:0x90 scope:weak align:4 +__ct__Q23ebi16E2DFullFontColorFv = .text:0x803CFF68; // type:function size:0x18 scope:weak align:4 +__dt__Q23ebi25E2DCallBack_CalcAnimationFv = .text:0x803CFF80; // type:function size:0x90 scope:weak align:4 +__dt__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0010; // type:function size:0xAC scope:weak align:4 +__dt__Q23ebi16E2DCallBack_BaseFv = .text:0x803D00BC; // type:function size:0x80 scope:weak align:4 +loadResource__Q33ebi6Option4TMgrFv = .text:0x803D013C; // type:function size:0x88 scope:global align:4 +setController__Q33ebi6Option4TMgrFP10Controller = .text:0x803D01C4; // type:function size:0x4C scope:global align:4 +start__Q33ebi6Option4TMgrFv = .text:0x803D0210; // type:function size:0x3C scope:global align:4 +isFinish__Q33ebi6Option4TMgrFv = .text:0x803D024C; // type:function size:0x28 scope:global align:4 +goEnd___Q33ebi6Option4TMgrFv = .text:0x803D0274; // type:function size:0x7C scope:global align:4 +update__Q33ebi6Option4TMgrFv = .text:0x803D02F0; // type:function size:0x94 scope:global align:4 +draw__Q33ebi6Option4TMgrFv = .text:0x803D0384; // type:function size:0x90 scope:global align:4 +getStateID__Q33ebi6Option4TMgrFv = .text:0x803D0414; // type:function size:0x58 scope:global align:4 +do_update__Q23ebi25E2DCallBack_CalcAnimationFv = .text:0x803D046C; // type:function size:0x50 scope:weak align:4 +update__Q23ebi16E2DCallBack_BaseFv = .text:0x803D04BC; // type:function size:0x38 scope:weak align:4 +do_update__Q23ebi16E2DCallBack_BaseFv = .text:0x803D04F4; // type:function size:0x4 scope:weak align:4 +draw__Q23ebi16E2DCallBack_BaseFR8GraphicsR14J2DGrafContext = .text:0x803D04F8; // type:function size:0x38 scope:weak align:4 +do_draw__Q23ebi16E2DCallBack_BaseFR8GraphicsR14J2DGrafContext = .text:0x803D0530; // type:function size:0x4 scope:weak align:4 +init__Q24Game28FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg = .text:0x803D0534; // type:function size:0x4 scope:weak align:4 +exec__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D0538; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D053C; // type:function size:0x4 scope:weak align:4 +resume__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D0540; // type:function size:0x4 scope:weak align:4 +restart__Q24Game28FSMStateFPQ33ebi6Option4TMgr = .text:0x803D0544; // type:function size:0x4 scope:weak align:4 +init__Q24Game32StateMachineFPQ33ebi6Option4TMgr = .text:0x803D0548; // type:function size:0x4 scope:weak align:4 +exec__Q24Game32StateMachineFPQ33ebi6Option4TMgr = .text:0x803D054C; // type:function size:0x38 scope:weak align:4 +create__Q24Game32StateMachineFi = .text:0x803D0584; // type:function size:0x64 scope:weak align:4 +transit__Q24Game32StateMachineFPQ33ebi6Option4TMgriPQ24Game8StateArg = .text:0x803D05E8; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game32StateMachineFPQ24Game28FSMState = .text:0x803D0684; // type:function size:0x84 scope:weak align:4 +do_update__Q23ebi20E2DCallBack_PurupuruFv = .text:0x803D0708; // type:function size:0x60 scope:global align:4 +do_update__Q23ebi26E2DCallBack_BlinkFontColorFv = .text:0x803D0768; // type:function size:0x2CC scope:global align:4 +do_update__Q23ebi22E2DCallBack_BlinkAlphaFv = .text:0x803D0A34; // type:function size:0x118 scope:global align:4 +loadAnm__Q23ebi19E2DCallBack_AnmBaseFPcP10JKRArchivell = .text:0x803D0B4C; // type:function size:0xC8 scope:global align:4 +play__Q23ebi19E2DCallBack_AnmBaseFf10J3DAnmAttrb = .text:0x803D0C14; // type:function size:0x10C scope:global align:4 +playBack__Q23ebi19E2DCallBack_AnmBaseFfb = .text:0x803D0D20; // type:function size:0x110 scope:global align:4 +stop__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0E30; // type:function size:0x14 scope:global align:4 +setStartFrame__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0E44; // type:function size:0x3C scope:global align:4 +setEndFrame__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0E80; // type:function size:0x3C scope:global align:4 +setRandFrame__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0EBC; // type:function size:0xC0 scope:global align:4 +getPlayFinRate__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0F7C; // type:function size:0x54 scope:global align:4 +do_update__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D0FD0; // type:function size:0x5C scope:global align:4 +isFinish__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D102C; // type:function size:0x8 scope:global align:4 +do_update__Q23ebi24E2DCallBack_WindowCursorFv = .text:0x803D1034; // type:function size:0x14C scope:global align:4 +init__Q33ebi9CardError15FSMStateMachineFPQ33ebi9CardError4TMgr = .text:0x803D1180; // type:function size:0xA2C scope:global align:4 +init__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1BAC; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1BD8; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D1BDC; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D1C08; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi9CardError16FSMState_WarningFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1C0C; // type:function size:0x84 scope:global align:4 +do_exec__Q33ebi9CardError16FSMState_WarningFPQ33ebi9CardError4TMgr = .text:0x803D1C90; // type:function size:0xA4 scope:global align:4 +do_init__Q33ebi9CardError17FSMState_QuestionFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1D34; // type:function size:0x3C scope:global align:4 +do_exec__Q33ebi9CardError17FSMState_QuestionFPQ33ebi9CardError4TMgr = .text:0x803D1D70; // type:function size:0x98 scope:global align:4 +do_init__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D1E08; // type:function size:0x74 scope:global align:4 +do_exec__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D1E7C; // type:function size:0x350 scope:global align:4 +do_transitCardNoCard__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D21CC; // type:function size:0x64 scope:global align:4 +transit__Q24Game31FSMStateFPQ33ebi9CardError4TMgriPQ24Game8StateArg = .text:0x803D2230; // type:function size:0x30 scope:weak align:4 +do_transitCardIOError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2260; // type:function size:0x64 scope:global align:4 +do_transitCardWrongDevice__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D22C4; // type:function size:0x64 scope:global align:4 +do_transitCardWrongSector__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2328; // type:function size:0x64 scope:global align:4 +do_transitCardBroken__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D238C; // type:function size:0x64 scope:global align:4 +do_transitCardEncoding__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D23F0; // type:function size:0x64 scope:global align:4 +do_transitCardNoFileSpace__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2454; // type:function size:0x64 scope:global align:4 +do_transitCardNoFileEntry__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D24B8; // type:function size:0x64 scope:global align:4 +do_transitCardFileOpenError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D251C; // type:function size:0x64 scope:global align:4 +do_transitCardSerialNoError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr = .text:0x803D2580; // type:function size:0x68 scope:global align:4 +do_init__Q33ebi9CardError15FSMState_NoCardFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D25E8; // type:function size:0x34 scope:global align:4 +do_exec__Q33ebi9CardError15FSMState_NoCardFPQ33ebi9CardError4TMgr = .text:0x803D261C; // type:function size:0xB0 scope:global align:4 +__ct__Q33ebi9CardError4TMgrFv = .text:0x803D26CC; // type:function size:0x94 scope:global align:4 +start__Q24Game35StateMachineFPQ33ebi9CardError4TMgriPQ24Game8StateArg = .text:0x803D2760; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi6Screen11TMemoryCardFv = .text:0x803D2794; // type:function size:0x460 scope:weak align:4 +__ct__Q33ebi6Screen11TMemoryCardFv = .text:0x803D2BF4; // type:function size:0x4C8 scope:weak align:4 +startSeq__Q33ebi9CardError4TMgrFQ43ebi9CardError4TMgr9enumStart = .text:0x803D30BC; // type:function size:0x378 scope:global align:4 +forceQuitSeq__Q33ebi9CardError4TMgrFv = .text:0x803D3434; // type:function size:0x50 scope:global align:4 +goEnd___Q33ebi9CardError4TMgrFQ43ebi9CardError4TMgr7enumEnd = .text:0x803D3484; // type:function size:0x44 scope:global align:4 +checkAndTransitNoCard___Q33ebi9CardError4TMgrFv = .text:0x803D34C8; // type:function size:0xE0 scope:global align:4 +update__Q33ebi9CardError4TMgrFv = .text:0x803D35A8; // type:function size:0x6C scope:global align:4 +draw__Q33ebi9CardError4TMgrFv = .text:0x803D3614; // type:function size:0x3C scope:global align:4 +isGetEnd__Q33ebi9CardError4TMgrFv = .text:0x803D3650; // type:function size:0x50 scope:global align:4 +getStateID__Q33ebi9CardError4TMgrFv = .text:0x803D36A0; // type:function size:0x58 scope:global align:4 +init__Q24Game31FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg = .text:0x803D36F8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D36FC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D3700; // type:function size:0x4 scope:weak align:4 +resume__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D3704; // type:function size:0x4 scope:weak align:4 +restart__Q24Game31FSMStateFPQ33ebi9CardError4TMgr = .text:0x803D3708; // type:function size:0x4 scope:weak align:4 +init__Q24Game35StateMachineFPQ33ebi9CardError4TMgr = .text:0x803D370C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game35StateMachineFPQ33ebi9CardError4TMgr = .text:0x803D3710; // type:function size:0x38 scope:weak align:4 +create__Q24Game35StateMachineFi = .text:0x803D3748; // type:function size:0x64 scope:weak align:4 +transit__Q24Game35StateMachineFPQ33ebi9CardError4TMgriPQ24Game8StateArg = .text:0x803D37AC; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game35StateMachineFPQ24Game31FSMState = .text:0x803D3848; // type:function size:0x84 scope:weak align:4 +setArchive__Q33ebi6Screen11TScreenBaseFP10JKRArchive = .text:0x803D38CC; // type:function size:0x3C scope:global align:4 +doSetArchive__Q33ebi6Screen11TScreenBaseFP10JKRArchive = .text:0x803D3908; // type:function size:0x4 scope:weak align:4 +openScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen7ArgOpen = .text:0x803D390C; // type:function size:0x58 scope:global align:4 +doOpenScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen7ArgOpen = .text:0x803D3964; // type:function size:0x4 scope:weak align:4 +closeScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen8ArgClose = .text:0x803D3968; // type:function size:0x58 scope:global align:4 +doCloseScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen8ArgClose = .text:0x803D39C0; // type:function size:0x4 scope:weak align:4 +killScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D39C4; // type:function size:0x40 scope:global align:4 +isFinishScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3A04; // type:function size:0x10 scope:global align:4 +isWaitScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3A14; // type:function size:0x14 scope:global align:4 +isCloseScreen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3A28; // type:function size:0x14 scope:global align:4 +update__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3A3C; // type:function size:0xEC scope:global align:4 +doUpdateStateClose__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B28; // type:function size:0x8 scope:weak align:4 +doUpdateStateWait__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B30; // type:function size:0x8 scope:weak align:4 +doInitWaitState__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B38; // type:function size:0x4 scope:weak align:4 +doUpdateStateOpen__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B3C; // type:function size:0x8 scope:weak align:4 +draw__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B44; // type:function size:0x38 scope:global align:4 +doDraw__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B7C; // type:function size:0x4 scope:weak align:4 +getName__Q33ebi6Screen11TScreenBaseFv = .text:0x803D3B80; // type:function size:0xC scope:weak align:4 +doSetArchive__Q33ebi6Screen11TPressStartFP10JKRArchive = .text:0x803D3B8C; // type:function size:0x324 scope:global align:4 +doOpenScreen__Q33ebi6Screen11TPressStartFPQ33ebi6Screen7ArgOpen = .text:0x803D3EB0; // type:function size:0x28 scope:global align:4 +doCloseScreen__Q33ebi6Screen11TPressStartFPQ33ebi6Screen8ArgClose = .text:0x803D3ED8; // type:function size:0x44 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen11TPressStartFv = .text:0x803D3F1C; // type:function size:0xA4 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen11TPressStartFv = .text:0x803D3FC0; // type:function size:0x108 scope:global align:4 +doDraw__Q33ebi6Screen11TPressStartFv = .text:0x803D40C8; // type:function size:0x80 scope:global align:4 +startLoop___Q33ebi6Screen11TPressStartFv = .text:0x803D4148; // type:function size:0x16C scope:global align:4 +getName__Q33ebi6Screen11TPressStartFv = .text:0x803D42B4; // type:function size:0xC scope:weak align:4 +setData__Q43ebi6Screen10FileSelect22TScreenDataWindow_dataFlUlUlUlUlUlUl = .text:0x803D42C0; // type:function size:0x254 scope:global align:4 +__ct__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D4514; // type:function size:0xEB0 scope:global align:4 +loadResource__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D53C4; // type:function size:0xB0 scope:global align:4 +doSetArchive__Q43ebi6Screen10FileSelect11TMainScreenFP10JKRArchive = .text:0x803D5474; // type:function size:0x12E4 scope:global align:4 +doKillScreen__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D6758; // type:function size:0x100 scope:global align:4 +doOpenScreen__Q43ebi6Screen10FileSelect11TMainScreenFPQ33ebi6Screen7ArgOpen = .text:0x803D6858; // type:function size:0x284 scope:global align:4 +doInitWaitState__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D6ADC; // type:function size:0x1B0 scope:global align:4 +doCloseScreen__Q43ebi6Screen10FileSelect11TMainScreenFPQ33ebi6Screen8ArgClose = .text:0x803D6C8C; // type:function size:0x98 scope:global align:4 +doUpdateStateOpen__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D6D24; // type:function size:0x88 scope:global align:4 +doUpdateStateWait__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D6DAC; // type:function size:0x31C scope:global align:4 +doUpdateStateClose__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D70C8; // type:function size:0xCC scope:global align:4 +doDraw__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7194; // type:function size:0x374 scope:global align:4 +inDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7508; // type:function size:0x1B0 scope:global align:4 +outDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D76B8; // type:function size:0xA4 scope:global align:4 +decideDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D775C; // type:function size:0xA4 scope:global align:4 +createFiledecide__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7800; // type:function size:0x124 scope:global align:4 +isFinishOutDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7924; // type:function size:0x30 scope:global align:4 +isFinishDecideDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7954; // type:function size:0x30 scope:global align:4 +createCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7984; // type:function size:0xF4 scope:global align:4 +fadeCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7A78; // type:function size:0x50 scope:global align:4 +moveLeftCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7AC8; // type:function size:0x10 scope:global align:4 +moveRightCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7AD8; // type:function size:0x10 scope:global align:4 +createFilecopyEffect__Q43ebi6Screen10FileSelect11TMainScreenFll = .text:0x803D7AE8; // type:function size:0x1E0 scope:global align:4 +fadeFilecopyEffect__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7CC8; // type:function size:0x58 scope:global align:4 +createFiledeletingEffect__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7D20; // type:function size:0x118 scope:global align:4 +fadeFiledeletingEffect__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D7E38; // type:function size:0x58 scope:global align:4 +openDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D7E90; // type:function size:0x318 scope:global align:4 +closeDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D81A8; // type:function size:0x6C scope:global align:4 +decideDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8214; // type:function size:0x6C scope:global align:4 +isFinishCloseDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8280; // type:function size:0x24 scope:global align:4 +openMSG__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D82A4; // type:function size:0x2A0 scope:global align:4 +closeMSG__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8544; // type:function size:0x60 scope:global align:4 +isFinishCloseMSG__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D85A4; // type:function size:0x28 scope:global align:4 +setYesNo__Q43ebi6Screen10FileSelect11TMainScreenFb = .text:0x803D85CC; // type:function size:0xC4 scope:global align:4 +updateMsg___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8690; // type:function size:0x144 scope:global align:4 +setMsgID___Q43ebi6Screen10FileSelect11TMainScreenFUxUxUx = .text:0x803D87D4; // type:function size:0x4C scope:global align:4 +inCopyErase__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8820; // type:function size:0x8C scope:global align:4 +outCopyErase__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D88AC; // type:function size:0x8C scope:global align:4 +inYesNo___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8938; // type:function size:0x8C scope:global align:4 +outYesNo___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D89C4; // type:function size:0x8C scope:global align:4 +setDataBallCopyResult__Q43ebi6Screen10FileSelect11TMainScreenFll = .text:0x803D8A50; // type:function size:0x1C0 scope:global align:4 +setDataBallNew__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D8C10; // type:function size:0x250 scope:global align:4 +setDataBallBroken__Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D8E60; // type:function size:0x98 scope:global align:4 +initDataBalls___Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D8EF8; // type:function size:0x4C scope:global align:4 +setColorTimgDataBall___Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D8F44; // type:function size:0x550 scope:global align:4 +getDataBallColor___Q43ebi6Screen10FileSelect11TMainScreenFl = .text:0x803D9494; // type:function size:0xCC scope:global align:4 +calcDataBallColor___Q43ebi6Screen10FileSelect11TMainScreenFUlUlUlUlUl = .text:0x803D9560; // type:function size:0x1C0 scope:global align:4 +setIconColorAlpha___Q43ebi6Screen10FileSelect11TMainScreenFUc = .text:0x803D9720; // type:function size:0x80 scope:global align:4 +__ct__Q43ebi6Screen10FileSelect9TFileDataFv = .text:0x803D97A0; // type:function size:0x58 scope:weak align:4 +getName__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803D97F8; // type:function size:0xC scope:weak align:4 +__dt__Q35efx2d10FileSelect11T2DFileselMFv = .text:0x803D9804; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d10FileSelect16T2DFiledeletingMFv = .text:0x803D98A0; // type:function size:0x84 scope:weak align:4 +__dt__Q35efx2d10FileSelect15T2DFiledeletingFv = .text:0x803D9924; // type:function size:0x84 scope:weak align:4 +__dt__Q35efx2d10FileSelect12T2DFilecopyMFv = .text:0x803D99A8; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d10FileSelect11T2DFilecopyFv = .text:0x803D9A44; // type:function size:0x9C scope:weak align:4 +__ct__Q23ebi19E2DCallBack_AnmBaseFv = .text:0x803D9AE0; // type:function size:0x94 scope:weak align:4 +set__Q23ebi26E2DCallBack_BlinkFontColorFRQ23ebi16E2DFullFontColorRQ23ebi16E2DFullFontColor = .text:0x803D9B74; // type:function size:0x104 scope:weak align:4 +getName__Q25efx2d8ArgColorFv = .text:0x803D9C78; // type:function size:0xC scope:weak align:4 +getName__Q35efx2d10FileSelect11ArgFilecopyFv = .text:0x803D9C84; // type:function size:0xC scope:weak align:4 +__dt__Q35efx2d10FileSelect10T2DFileselFv = .text:0x803D9C90; // type:function size:0x9C scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect11T2DFilecopyFv = .text:0x803D9D2C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect12T2DFilecopyMFv = .text:0x803D9D34; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect15T2DFiledeletingFv = .text:0x803D9D3C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect16T2DFiledeletingMFv = .text:0x803D9D44; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect10T2DFileselFv = .text:0x803D9D4C; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d10FileSelect11T2DFileselMFv = .text:0x803D9D54; // type:function size:0x8 scope:weak align:4 +doSetArchive__Q33ebi6Screen10TTitleMenuFP10JKRArchive = .text:0x803D9D5C; // type:function size:0x928 scope:global align:4 +doOpenScreen__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen7ArgOpen = .text:0x803DA684; // type:function size:0x21C scope:global align:4 +doInitWaitState__Q33ebi6Screen10TTitleMenuFv = .text:0x803DA8A0; // type:function size:0x1C4 scope:global align:4 +doCloseScreen__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen8ArgClose = .text:0x803DAA64; // type:function size:0x70 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen10TTitleMenuFv = .text:0x803DAAD4; // type:function size:0x84 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen10TTitleMenuFv = .text:0x803DAB58; // type:function size:0x470 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen10TTitleMenuFv = .text:0x803DAFC8; // type:function size:0xD4 scope:global align:4 +doDraw__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB09C; // type:function size:0x74 scope:global align:4 +setController__Q33ebi6Screen10TTitleMenuFP10Controller = .text:0x803DB110; // type:function size:0x8 scope:global align:4 +openMenuSet__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen7ArgOpen = .text:0x803DB118; // type:function size:0x60 scope:global align:4 +isDecide__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB178; // type:function size:0x8 scope:global align:4 +isCancel__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB180; // type:function size:0x8 scope:global align:4 +showPika___Q33ebi6Screen10TTitleMenuFl = .text:0x803DB188; // type:function size:0x3C scope:global align:4 +hidePika___Q33ebi6Screen10TTitleMenuFl = .text:0x803DB1C4; // type:function size:0x3C scope:global align:4 +getName__Q33ebi6Screen10TTitleMenuFv = .text:0x803DB200; // type:function size:0xC scope:weak align:4 +init__Q33ebi4Save15FSMStateMachineFPQ33ebi4Save4TMgr = .text:0x803DB20C; // type:function size:0x34C scope:global align:4 +init__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB558; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB584; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgr = .text:0x803DB588; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgr = .text:0x803DB5B4; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi4Save18FSMState_DoYouSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB5B8; // type:function size:0x4C scope:global align:4 +do_exec__Q33ebi4Save18FSMState_DoYouSaveFPQ33ebi4Save4TMgr = .text:0x803DB604; // type:function size:0x144 scope:global align:4 +transit__Q24Game26FSMStateFPQ33ebi4Save4TMgriPQ24Game8StateArg = .text:0x803DB748; // type:function size:0x30 scope:weak align:4 +do_init__Q33ebi4Save22FSMState_DoYouContinueFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB778; // type:function size:0x28 scope:global align:4 +do_exec__Q33ebi4Save22FSMState_DoYouContinueFPQ33ebi4Save4TMgr = .text:0x803DB7A0; // type:function size:0x114 scope:global align:4 +do_init__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DB8B4; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DB8C0; // type:function size:0x264 scope:global align:4 +do_transitCardNoCard__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBB24; // type:function size:0x3C scope:global align:4 +do_transitCardIOError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBB60; // type:function size:0x3C scope:global align:4 +do_transitCardWrongDevice__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBB9C; // type:function size:0x3C scope:global align:4 +do_transitCardWrongSector__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBBD8; // type:function size:0x3C scope:global align:4 +do_transitCardBroken__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBC14; // type:function size:0x3C scope:global align:4 +do_transitCardEncoding__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBC50; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileSpace__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBC8C; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileEntry__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBCC8; // type:function size:0x3C scope:global align:4 +do_transitCardFileOpenError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBD04; // type:function size:0x3C scope:global align:4 +do_transitCardSerialNoError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBD40; // type:function size:0x3C scope:global align:4 +do_transitCardPlayerDataBroken__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr = .text:0x803DBD7C; // type:function size:0x2C scope:global align:4 +do_cardRequest__Q33ebi4Save19FSMState_MountCheckFPQ33ebi4Save4TMgr = .text:0x803DBDA8; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi4Save19FSMState_MountCheckFPQ33ebi4Save4TMgr = .text:0x803DBDD0; // type:function size:0x34 scope:global align:4 +do_cardRequest__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr = .text:0x803DBE04; // type:function size:0x2C scope:global align:4 +do_transitCardReady__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr = .text:0x803DBE30; // type:function size:0xF8 scope:global align:4 +do_transitCardSerialNoError__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr = .text:0x803DBF28; // type:function size:0x38 scope:global align:4 +do_cardRequest__Q33ebi4Save24FSMState_CheckBeforeSaveFPQ33ebi4Save4TMgr = .text:0x803DBF60; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi4Save24FSMState_CheckBeforeSaveFPQ33ebi4Save4TMgr = .text:0x803DBF88; // type:function size:0x3C scope:global align:4 +do_init__Q33ebi4Save16FSMState_NowSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DBFC4; // type:function size:0xD0 scope:global align:4 +do_exec__Q33ebi4Save16FSMState_NowSaveFPQ33ebi4Save4TMgr = .text:0x803DC094; // type:function size:0x424 scope:global align:4 +do_init__Q33ebi4Save18FSMState_AfterSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DC4B8; // type:function size:0x50 scope:global align:4 +do_exec__Q33ebi4Save18FSMState_AfterSaveFPQ33ebi4Save4TMgr = .text:0x803DC508; // type:function size:0xD8 scope:global align:4 +do_init__Q33ebi4Save18FSMState_CardErrorFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DC5E0; // type:function size:0x68 scope:global align:4 +do_exec__Q33ebi4Save18FSMState_CardErrorFPQ33ebi4Save4TMgr = .text:0x803DC648; // type:function size:0x104 scope:global align:4 +__dt__Q33ebi4Save4TMgrFv = .text:0x803DC74C; // type:function size:0x14C scope:global align:4 +__dt__Q33ebi9CardError4TMgrFv = .text:0x803DC898; // type:function size:0x54 scope:weak align:4 +createInstance__Q33ebi4Save4TMgrFv = .text:0x803DC8EC; // type:function size:0x48 scope:global align:4 +onDvdErrorOccured__Q33ebi4Save4TMgrFv = .text:0x803DC934; // type:function size:0x58 scope:global align:4 +onDvdErrorRecovered__Q33ebi4Save4TMgrFv = .text:0x803DC98C; // type:function size:0x44 scope:global align:4 +__ct__Q33ebi4Save4TMgrFv = .text:0x803DC9D0; // type:function size:0xD4 scope:global align:4 +start__Q24Game30StateMachineFPQ33ebi4Save4TMgriPQ24Game8StateArg = .text:0x803DCAA4; // type:function size:0x34 scope:weak align:4 +__ct__Q33ebi6Screen9TSaveMenuFv = .text:0x803DCAD8; // type:function size:0x1A0 scope:weak align:4 +start__Q33ebi4Save4TMgrFv = .text:0x803DCC78; // type:function size:0x80 scope:global align:4 +forceQuit__Q33ebi4Save4TMgrFv = .text:0x803DCCF8; // type:function size:0x64 scope:global align:4 +isFinish__Q33ebi4Save4TMgrFv = .text:0x803DCD5C; // type:function size:0x4C scope:global align:4 +goEnd___Q33ebi4Save4TMgrFQ43ebi4Save4TMgr7enumEnd = .text:0x803DCDA8; // type:function size:0x68 scope:global align:4 +update__Q33ebi4Save4TMgrFv = .text:0x803DCE10; // type:function size:0x98 scope:global align:4 +draw__Q33ebi4Save4TMgrFv = .text:0x803DCEA8; // type:function size:0x50 scope:global align:4 +getStateID__Q33ebi4Save4TMgrFv = .text:0x803DCEF8; // type:function size:0x58 scope:global align:4 +init__Q24Game26FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg = .text:0x803DCF50; // type:function size:0x4 scope:weak align:4 +exec__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCF54; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCF58; // type:function size:0x4 scope:weak align:4 +resume__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCF5C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game26FSMStateFPQ33ebi4Save4TMgr = .text:0x803DCF60; // type:function size:0x4 scope:weak align:4 +init__Q24Game30StateMachineFPQ33ebi4Save4TMgr = .text:0x803DCF64; // type:function size:0x4 scope:weak align:4 +exec__Q24Game30StateMachineFPQ33ebi4Save4TMgr = .text:0x803DCF68; // type:function size:0x38 scope:weak align:4 +create__Q24Game30StateMachineFi = .text:0x803DCFA0; // type:function size:0x64 scope:weak align:4 +transit__Q24Game30StateMachineFPQ33ebi4Save4TMgriPQ24Game8StateArg = .text:0x803DD004; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game30StateMachineFPQ24Game26FSMState = .text:0x803DD0A0; // type:function size:0x84 scope:weak align:4 +doSetArchive__Q33ebi6Screen9TSaveMenuFP10JKRArchive = .text:0x803DD124; // type:function size:0x350 scope:global align:4 +doOpenScreen__Q33ebi6Screen9TSaveMenuFPQ33ebi6Screen7ArgOpen = .text:0x803DD474; // type:function size:0x7C scope:global align:4 +doCloseScreen__Q33ebi6Screen9TSaveMenuFPQ33ebi6Screen8ArgClose = .text:0x803DD4F0; // type:function size:0x64 scope:global align:4 +doKillScreen__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD554; // type:function size:0x84 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD5D8; // type:function size:0xDC scope:global align:4 +doUpdateStateWait__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD6B4; // type:function size:0x74 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD728; // type:function size:0xD4 scope:global align:4 +doDraw__Q33ebi6Screen9TSaveMenuFv = .text:0x803DD7FC; // type:function size:0x234 scope:global align:4 +loadResource__Q33ebi6Screen9TSaveMenuFv = .text:0x803DDA30; // type:function size:0xB0 scope:global align:4 +openMsg__Q33ebi6Screen9TSaveMenuFl = .text:0x803DDAE0; // type:function size:0x94 scope:global align:4 +closeMsg__Q33ebi6Screen9TSaveMenuFv = .text:0x803DDB74; // type:function size:0x3C scope:global align:4 +noMsg__Q33ebi6Screen9TSaveMenuFv = .text:0x803DDBB0; // type:function size:0x54 scope:global align:4 +isFinishMsg__Q33ebi6Screen9TSaveMenuFv = .text:0x803DDC04; // type:function size:0x10 scope:global align:4 +startMsgState___Q33ebi6Screen9TSaveMenuFQ43ebi6Screen9TSaveMenu12enumMsgState = .text:0x803DDC14; // type:function size:0x3B4 scope:global align:4 +updateMsg___Q33ebi6Screen9TSaveMenuFv = .text:0x803DDFC8; // type:function size:0x368 scope:global align:4 +getName__Q33ebi6Screen9TSaveMenuFv = .text:0x803DE330; // type:function size:0xC scope:weak align:4 +init__Q33ebi2FS15FSMStateMachineFPQ33ebi2FS4TMgr = .text:0x803DE33C; // type:function size:0x5B0 scope:global align:4 +init__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DE8EC; // type:function size:0x2C scope:global align:4 +exec__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgr = .text:0x803DE918; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DE944; // type:function size:0x70 scope:global align:4 +do_exec__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgr = .text:0x803DE9B4; // type:function size:0x204 scope:global align:4 +do_set__Q33ebi2FS21FSMState01_DataBrokenFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEBB8; // type:function size:0x60 scope:global align:4 +do_set__Q33ebi2FS22FSMState03_DoYouDeleteFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEC18; // type:function size:0x24 scope:global align:4 +do_decide__Q33ebi2FS22FSMState03_DoYouDeleteFPQ33ebi2FS4TMgr = .text:0x803DEC3C; // type:function size:0x24 scope:global align:4 +do_set__Q33ebi2FS25FSMState07_DoYouOverwriteFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEC60; // type:function size:0x24 scope:global align:4 +do_decide__Q33ebi2FS25FSMState07_DoYouOverwriteFPQ33ebi2FS4TMgr = .text:0x803DEC84; // type:function size:0x38 scope:global align:4 +do_init__Q33ebi2FS16FSMState_WarningFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DECBC; // type:function size:0x60 scope:global align:4 +do_exec__Q33ebi2FS16FSMState_WarningFPQ33ebi2FS4TMgr = .text:0x803DED1C; // type:function size:0xC4 scope:global align:4 +do_open__Q33ebi2FS23FSMState05_FailToDeleteFPQ33ebi2FS4TMgr = .text:0x803DEDE0; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS23FSMState05_FailToDeleteFPQ33ebi2FS4TMgr = .text:0x803DEE08; // type:function size:0x44 scope:global align:4 +do_open__Q33ebi2FS23FSMState06_FinishDeleteFPQ33ebi2FS4TMgr = .text:0x803DEE4C; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS23FSMState06_FinishDeleteFPQ33ebi2FS4TMgr = .text:0x803DEE74; // type:function size:0x34 scope:global align:4 +do_open__Q33ebi2FS21FSMState08_FailToCopyFPQ33ebi2FS4TMgr = .text:0x803DEEA8; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS21FSMState08_FailToCopyFPQ33ebi2FS4TMgr = .text:0x803DEED0; // type:function size:0x44 scope:global align:4 +do_open__Q33ebi2FS21FSMState10_FinishCopyFPQ33ebi2FS4TMgr = .text:0x803DEF14; // type:function size:0x28 scope:global align:4 +do_transit__Q33ebi2FS21FSMState10_FinishCopyFPQ33ebi2FS4TMgr = .text:0x803DEF3C; // type:function size:0x34 scope:global align:4 +init__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DEF70; // type:function size:0x6C scope:global align:4 +exec__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr = .text:0x803DEFDC; // type:function size:0x2C0 scope:global align:4 +do_transitCardPlayerDataBroken__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr = .text:0x803DF29C; // type:function size:0x34 scope:global align:4 +do_init__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF2D0; // type:function size:0x40 scope:global align:4 +do_close__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF310; // type:function size:0x24 scope:global align:4 +do_cardRequest__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF334; // type:function size:0x2C scope:global align:4 +do_transitCardReady__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF360; // type:function size:0x60 scope:global align:4 +do_transitCardNoCard__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF3C0; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF3F4; // type:function size:0x34 scope:global align:4 +cleanup__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr = .text:0x803DF428; // type:function size:0x24 scope:global align:4 +do_init__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF44C; // type:function size:0x44 scope:global align:4 +do_close__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF490; // type:function size:0x24 scope:global align:4 +do_cardRequest__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF4B4; // type:function size:0x34 scope:global align:4 +do_transitCardReady__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF4E8; // type:function size:0x64 scope:global align:4 +do_transitCardNoCard__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF54C; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF580; // type:function size:0x34 scope:global align:4 +cleanup__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr = .text:0x803DF5B4; // type:function size:0x24 scope:global align:4 +do_init__Q33ebi2FS21FSMState00a_OpenSceneFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF5D8; // type:function size:0x4C scope:global align:4 +do_exec__Q33ebi2FS21FSMState00a_OpenSceneFPQ33ebi2FS4TMgr = .text:0x803DF624; // type:function size:0x64 scope:global align:4 +do_init__Q33ebi2FS21FSMState00_SelectDataFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF688; // type:function size:0xAC scope:global align:4 +do_exec__Q33ebi2FS21FSMState00_SelectDataFPQ33ebi2FS4TMgr = .text:0x803DF734; // type:function size:0x254 scope:global align:4 +do_init__Q33ebi2FS21FSMState00b_CheckDataFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DF988; // type:function size:0x64 scope:global align:4 +do_exec__Q33ebi2FS21FSMState00b_CheckDataFPQ33ebi2FS4TMgr = .text:0x803DF9EC; // type:function size:0x1E0 scope:global align:4 +do_init__Q33ebi2FS22FSMState00c_DecideDataFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DFBCC; // type:function size:0x3C scope:global align:4 +do_exec__Q33ebi2FS22FSMState00c_DecideDataFPQ33ebi2FS4TMgr = .text:0x803DFC08; // type:function size:0xB4 scope:global align:4 +do_init__Q33ebi2FS31FSMState04_WhichDataDoYouCopyToFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803DFCBC; // type:function size:0xB0 scope:global align:4 +do_exec__Q33ebi2FS31FSMState04_WhichDataDoYouCopyToFPQ33ebi2FS4TMgr = .text:0x803DFD6C; // type:function size:0x29C scope:global align:4 +__ct__Q33ebi2FS4TMgrFv = .text:0x803E0008; // type:function size:0xA4 scope:global align:4 +setController__Q33ebi2FS4TMgrFP10Controller = .text:0x803E00AC; // type:function size:0x48 scope:global align:4 +perseInfo__Q33ebi2FS4TMgrFRQ34Game10MemoryCard14PlayerFileInfo = .text:0x803E00F4; // type:function size:0xFC scope:global align:4 +update__Q33ebi2FS4TMgrFv = .text:0x803E01F0; // type:function size:0x98 scope:global align:4 +draw__Q33ebi2FS4TMgrFv = .text:0x803E0288; // type:function size:0x48 scope:global align:4 +startSeq__Q33ebi2FS4TMgrFv = .text:0x803E02D0; // type:function size:0x44 scope:global align:4 +forceQuitSeq__Q33ebi2FS4TMgrFv = .text:0x803E0314; // type:function size:0x58 scope:global align:4 +isFinish__Q33ebi2FS4TMgrFv = .text:0x803E036C; // type:function size:0x28 scope:global align:4 +goEnd___Q33ebi2FS4TMgrFQ43ebi2FS4TMgr7enumEnd = .text:0x803E0394; // type:function size:0x60 scope:global align:4 +checkAndTransitNoCard___Q33ebi2FS4TMgrFv = .text:0x803E03F4; // type:function size:0xD0 scope:global align:4 +getStateID__Q33ebi2FS4TMgrFv = .text:0x803E04C4; // type:function size:0x58 scope:global align:4 +do_init__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803E051C; // type:function size:0x4 scope:weak align:4 +do_exec__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgr = .text:0x803E0520; // type:function size:0x4 scope:weak align:4 +do_decide__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgr = .text:0x803E0524; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803E0528; // type:function size:0x4 scope:weak align:4 +do_close__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr = .text:0x803E052C; // type:function size:0x4 scope:weak align:4 +transit__Q24Game24FSMStateFPQ33ebi2FS4TMgriPQ24Game8StateArg = .text:0x803E0530; // type:function size:0x30 scope:weak align:4 +start__Q24Game28StateMachineFPQ33ebi2FS4TMgriPQ24Game8StateArg = .text:0x803E0560; // type:function size:0x34 scope:weak align:4 +__dt__Q43ebi6Screen10FileSelect11TMainScreenFv = .text:0x803E0594; // type:function size:0xBF4 scope:weak align:4 +init__Q24Game24FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg = .text:0x803E1188; // type:function size:0x4 scope:weak align:4 +exec__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E118C; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E1190; // type:function size:0x4 scope:weak align:4 +resume__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E1194; // type:function size:0x4 scope:weak align:4 +restart__Q24Game24FSMStateFPQ33ebi2FS4TMgr = .text:0x803E1198; // type:function size:0x4 scope:weak align:4 +init__Q24Game28StateMachineFPQ33ebi2FS4TMgr = .text:0x803E119C; // type:function size:0x4 scope:weak align:4 +exec__Q24Game28StateMachineFPQ33ebi2FS4TMgr = .text:0x803E11A0; // type:function size:0x38 scope:weak align:4 +create__Q24Game28StateMachineFi = .text:0x803E11D8; // type:function size:0x64 scope:weak align:4 +transit__Q24Game28StateMachineFPQ33ebi2FS4TMgriPQ24Game8StateArg = .text:0x803E123C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game28StateMachineFPQ24Game24FSMState = .text:0x803E12D8; // type:function size:0x84 scope:weak align:4 +init__Q33ebi10FileSelect15FSMStateMachineFPQ33ebi10FileSelect4TMgr = .text:0x803E135C; // type:function size:0x248 scope:global align:4 +init__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E15A4; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E15D0; // type:function size:0x4 scope:weak align:4 +exec__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E15D4; // type:function size:0x2C scope:global align:4 +do_exec__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E1600; // type:function size:0x4 scope:weak align:4 +do_init__Q33ebi10FileSelect20FSMState_EmptyUpdateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1604; // type:function size:0x10 scope:global align:4 +do_exec__Q33ebi10FileSelect20FSMState_EmptyUpdateFPQ33ebi10FileSelect4TMgr = .text:0x803E1614; // type:function size:0x54 scope:global align:4 +transit__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg = .text:0x803E1668; // type:function size:0x30 scope:weak align:4 +do_init__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1698; // type:function size:0xC scope:global align:4 +do_exec__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E16A4; // type:function size:0x278 scope:global align:4 +do_transitCardNoCard__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E191C; // type:function size:0x3C scope:global align:4 +do_transitCardIOError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1958; // type:function size:0x3C scope:global align:4 +do_transitCardWrongDevice__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1994; // type:function size:0x3C scope:global align:4 +do_transitCardWrongSector__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E19D0; // type:function size:0x3C scope:global align:4 +do_transitCardBroken__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1A0C; // type:function size:0x3C scope:global align:4 +do_transitCardEncoding__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1A48; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileSpace__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1A84; // type:function size:0x3C scope:global align:4 +do_transitCardNoFileEntry__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1AC0; // type:function size:0x3C scope:global align:4 +do_transitCardFileOpenError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1AFC; // type:function size:0x3C scope:global align:4 +do_transitCardPlayerDataBroken__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1B38; // type:function size:0x2C scope:global align:4 +do_transitCardSerialNoError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr = .text:0x803E1B64; // type:function size:0x54 scope:global align:4 +do_cardRequest__Q33ebi10FileSelect19FSMState_MountCheckFPQ33ebi10FileSelect4TMgr = .text:0x803E1BB8; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi10FileSelect19FSMState_MountCheckFPQ33ebi10FileSelect4TMgr = .text:0x803E1BE0; // type:function size:0x34 scope:global align:4 +do_cardRequest__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr = .text:0x803E1C14; // type:function size:0x2C scope:global align:4 +do_transitCardReady__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr = .text:0x803E1C40; // type:function size:0x34 scope:global align:4 +do_transitCardSerialNoError__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr = .text:0x803E1C74; // type:function size:0x38 scope:global align:4 +do_init__Q33ebi10FileSelect25FSMState_ScreenFileSelectFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1CAC; // type:function size:0x44 scope:global align:4 +do_exec__Q33ebi10FileSelect25FSMState_ScreenFileSelectFPQ33ebi10FileSelect4TMgr = .text:0x803E1CF0; // type:function size:0xC4 scope:global align:4 +do_init__Q33ebi10FileSelect18FSMState_CardErrorFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E1DB4; // type:function size:0x60 scope:global align:4 +do_exec__Q33ebi10FileSelect18FSMState_CardErrorFPQ33ebi10FileSelect4TMgr = .text:0x803E1E14; // type:function size:0xB8 scope:global align:4 +start__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg = .text:0x803E1ECC; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi2FS4TMgrFv = .text:0x803E1F00; // type:function size:0x54 scope:weak align:4 +__dt__Q33ebi10FileSelect4TMgrFv = .text:0x803E1F54; // type:function size:0x84 scope:global align:4 +createInstance__Q33ebi10FileSelect4TMgrFv = .text:0x803E1FD8; // type:function size:0xDC scope:global align:4 +onDvdErrorOccured__Q33ebi10FileSelect4TMgrFv = .text:0x803E20B4; // type:function size:0x58 scope:global align:4 +onDvdErrorRecovered__Q33ebi10FileSelect4TMgrFv = .text:0x803E210C; // type:function size:0x44 scope:global align:4 +start__Q33ebi10FileSelect4TMgrFv = .text:0x803E2150; // type:function size:0x4C scope:global align:4 +forceQuit__Q33ebi10FileSelect4TMgrFv = .text:0x803E219C; // type:function size:0x58 scope:global align:4 +update__Q33ebi10FileSelect4TMgrFv = .text:0x803E21F4; // type:function size:0x8C scope:global align:4 +draw__Q33ebi10FileSelect4TMgrFv = .text:0x803E2280; // type:function size:0x44 scope:global align:4 +showInfo__Q33ebi10FileSelect4TMgrFv = .text:0x803E22C4; // type:function size:0x4 scope:global align:4 +isFinish__Q33ebi10FileSelect4TMgrFv = .text:0x803E22C8; // type:function size:0x4C scope:global align:4 +goEnd___Q33ebi10FileSelect4TMgrFQ43ebi10FileSelect4TMgr7enumEnd = .text:0x803E2314; // type:function size:0x5C scope:global align:4 +getStateID__Q33ebi10FileSelect4TMgrFv = .text:0x803E2370; // type:function size:0x58 scope:global align:4 +init__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg = .text:0x803E23C8; // type:function size:0x4 scope:weak align:4 +exec__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E23CC; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E23D0; // type:function size:0x4 scope:weak align:4 +resume__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E23D4; // type:function size:0x4 scope:weak align:4 +restart__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr = .text:0x803E23D8; // type:function size:0x4 scope:weak align:4 +init__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgr = .text:0x803E23DC; // type:function size:0x4 scope:weak align:4 +exec__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgr = .text:0x803E23E0; // type:function size:0x38 scope:weak align:4 +create__Q24Game37StateMachineFi = .text:0x803E2418; // type:function size:0x64 scope:weak align:4 +transit__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg = .text:0x803E247C; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game37StateMachineFPQ24Game33FSMState = .text:0x803E2518; // type:function size:0x84 scope:weak align:4 +do_open__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E259C; // type:function size:0x4C scope:global align:4 +do_transit__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E25E8; // type:function size:0x58 scope:global align:4 +do_transitOnCard__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2640; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError20FSMState_W01_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E268C; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError20FSMState_W01_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E26E0; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError24FSMState_W02_WrongDeviceFPQ33ebi9CardError4TMgr = .text:0x803E2738; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError24FSMState_W02_WrongDeviceFPQ33ebi9CardError4TMgr = .text:0x803E278C; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError24FSMState_W03_WrongSectorFPQ33ebi9CardError4TMgr = .text:0x803E27E4; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError24FSMState_W03_WrongSectorFPQ33ebi9CardError4TMgr = .text:0x803E2838; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError25FSMState_W04_OverCapacityFPQ33ebi9CardError4TMgr = .text:0x803E2890; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError25FSMState_W04_OverCapacityFPQ33ebi9CardError4TMgr = .text:0x803E28E4; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W05_InitCardOnIPLFPQ33ebi9CardError4TMgr = .text:0x803E2948; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W05_InitCardOnIPLFPQ33ebi9CardError4TMgr = .text:0x803E299C; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W06_CardNotUsableFPQ33ebi9CardError4TMgr = .text:0x803E2A00; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W06_CardNotUsableFPQ33ebi9CardError4TMgr = .text:0x803E2A54; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W07_NoFileForSaveFPQ33ebi9CardError4TMgr = .text:0x803E2AAC; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W07_NoFileForSaveFPQ33ebi9CardError4TMgr = .text:0x803E2B00; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError25FSMState_W08_FinishFormatFPQ33ebi9CardError4TMgr = .text:0x803E2B58; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError25FSMState_W08_FinishFormatFPQ33ebi9CardError4TMgr = .text:0x803E2BAC; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError32FSMState_W09_FinishCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E2BF8; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError32FSMState_W09_FinishCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E2C4C; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError26FSMState_W10_SerialNoErrorFPQ33ebi9CardError4TMgr = .text:0x803E2C98; // type:function size:0x64 scope:global align:4 +do_transit__Q33ebi9CardError26FSMState_W10_SerialNoErrorFPQ33ebi9CardError4TMgr = .text:0x803E2CFC; // type:function size:0x5C scope:global align:4 +do_open__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2D58; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2DAC; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2DF8; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2E4C; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2E98; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2EEC; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2F38; // type:function size:0x54 scope:global align:4 +do_transit__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E2F8C; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E2FD8; // type:function size:0x64 scope:global align:4 +do_transit__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCardFPQ33ebi9CardError4TMgr = .text:0x803E303C; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError31FSMState_WF5_FailToSave_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E3088; // type:function size:0x64 scope:global align:4 +do_transit__Q33ebi9CardError31FSMState_WF5_FailToSave_IOErrorFPQ33ebi9CardError4TMgr = .text:0x803E30EC; // type:function size:0x4C scope:global align:4 +do_open__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E3138; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E318C; // type:function size:0x64 scope:global align:4 +do_transitNo__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E31F0; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr = .text:0x803E3254; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr = .text:0x803E32A8; // type:function size:0x58 scope:global align:4 +do_transitNo__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr = .text:0x803E3300; // type:function size:0x58 scope:global align:4 +do_open__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E3358; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E33AC; // type:function size:0x64 scope:global align:4 +do_transitNo__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr = .text:0x803E3410; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E3474; // type:function size:0x54 scope:global align:4 +do_transitYes__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E34C8; // type:function size:0x64 scope:global align:4 +do_transitNo__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E352C; // type:function size:0x64 scope:global align:4 +do_open__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr = .text:0x803E3590; // type:function size:0x64 scope:global align:4 +do_transitYes__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr = .text:0x803E35F4; // type:function size:0x5C scope:global align:4 +do_transitNo__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr = .text:0x803E3650; // type:function size:0x5C scope:global align:4 +do_open__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr = .text:0x803E36AC; // type:function size:0x64 scope:global align:4 +do_transitYes__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr = .text:0x803E3710; // type:function size:0x5C scope:global align:4 +do_transitNo__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr = .text:0x803E376C; // type:function size:0x5C scope:global align:4 +do_cardRequest__Q33ebi9CardError22FSMState_WN0_NowFormatFv = .text:0x803E37C8; // type:function size:0x28 scope:global align:4 +do_open__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E37F0; // type:function size:0x4C scope:global align:4 +do_transitCardReady__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E383C; // type:function size:0x34 scope:global align:4 +do_transitCardNoCard__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E3870; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr = .text:0x803E38A4; // type:function size:0x34 scope:global align:4 +do_open__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E38D8; // type:function size:0x4C scope:global align:4 +do_cardRequest__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFv = .text:0x803E3924; // type:function size:0x28 scope:global align:4 +do_transitCardReady__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E394C; // type:function size:0x34 scope:global align:4 +do_transitCardNoCard__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E3980; // type:function size:0x34 scope:global align:4 +do_transitCardIOError__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr = .text:0x803E39B4; // type:function size:0x34 scope:global align:4 +__ct__Q33ebi5title9TCoordMgrFv = .text:0x803E39E8; // type:function size:0x1A4 scope:global align:4 +copyCoordinate__Q33ebi5title9TCoordMgrFP10Vector2 = .text:0x803E3B8C; // type:function size:0x118 scope:global align:4 +readCoordinate__Q33ebi5title9TCoordMgrFP10JKRArchivePc = .text:0x803E3CA4; // type:function size:0x7C scope:global align:4 +readCoordinate__Q33ebi5title9TCoordMgrFR6Stream = .text:0x803E3D20; // type:function size:0x144 scope:global align:4 +setArchive__Q43ebi5title6Pikmin9TAnimatorFP10JKRArchive = .text:0x803E3E64; // type:function size:0x2D8 scope:global align:4 +__ct__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E413C; // type:function size:0x198 scope:global align:4 +__dt__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E42D4; // type:function size:0x74 scope:weak align:4 +setArchive__Q43ebi5title6Pikmin4TMgrFP10JKRArchive = .text:0x803E4348; // type:function size:0xD8 scope:global align:4 +initUnit__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4420; // type:function size:0x11C scope:global align:4 +update__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E453C; // type:function size:0x1A8 scope:global align:4 +setStartPos__Q43ebi5title6Pikmin4TMgrFP10Vector2 = .text:0x803E46E4; // type:function size:0x164 scope:global align:4 +setDestPos__Q43ebi5title6Pikmin4TMgrFP10Vector2 = .text:0x803E4848; // type:function size:0x164 scope:global align:4 +forceArriveDest__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E49AC; // type:function size:0xC0 scope:global align:4 +assemble__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4A6C; // type:function size:0x88 scope:global align:4 +quickAssemble__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4AF4; // type:function size:0x88 scope:global align:4 +startBoid1__Q43ebi5title6Pikmin4TMgrFf = .text:0x803E4B7C; // type:function size:0x90 scope:global align:4 +startBoid2__Q43ebi5title6Pikmin4TMgrFf = .text:0x803E4C0C; // type:function size:0x90 scope:global align:4 +startBoid3__Q43ebi5title6Pikmin4TMgrFf = .text:0x803E4C9C; // type:function size:0x90 scope:global align:4 +startWindBlow__Q43ebi5title6Pikmin4TMgrFRQ23ebi8EGEBox2f = .text:0x803E4D2C; // type:function size:0x9C scope:global align:4 +startDemo__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4DC8; // type:function size:0xAC scope:global align:4 +enemyPushOut__Q43ebi5title6Pikmin4TMgrFPQ33ebi5title8TObjBase = .text:0x803E4E74; // type:function size:0x6C scope:global align:4 +updateCalcBoid___Q43ebi5title6Pikmin4TMgrFv = .text:0x803E4EE0; // type:function size:0x3B8 scope:global align:4 +isAssemble__Q43ebi5title6Pikmin4TMgrFv = .text:0x803E5298; // type:function size:0x70 scope:global align:4 +getUnit__Q43ebi5title6Pikmin4TMgrFl = .text:0x803E5308; // type:function size:0x10 scope:global align:4 +init__Q43ebi5title6Pikmin5TUnitFPQ43ebi5title6Pikmin4TMgrl = .text:0x803E5318; // type:function size:0x360 scope:global align:4 +goDestination__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5678; // type:function size:0x98 scope:global align:4 +beAttacked__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5710; // type:function size:0x6C scope:global align:4 +alive__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E577C; // type:function size:0xC scope:global align:4 +isCalc__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5788; // type:function size:0x14 scope:global align:4 +isAssemble__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E579C; // type:function size:0x24 scope:global align:4 +isWalk__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E57C0; // type:function size:0x24 scope:global align:4 +startState__Q43ebi5title6Pikmin5TUnitFQ53ebi5title6Pikmin5TUnit9enumState = .text:0x803E57E4; // type:function size:0x150 scope:global align:4 +update__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E5934; // type:function size:0xDD4 scope:global align:4 +updateSmoothWalk___Q43ebi5title6Pikmin5TUnitFR10Vector2 = .text:0x803E6708; // type:function size:0x200 scope:global align:4 +updateEnemyReaction___Q43ebi5title6Pikmin5TUnitFv = .text:0x803E6908; // type:function size:0x350 scope:global align:4 +__ct__Q43ebi5title6Pikmin10TBoidParamFv = .text:0x803E6C58; // type:function size:0x238 scope:weak align:4 +__ct__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E6E90; // type:function size:0xFC scope:weak align:4 +__ct__Q43ebi5title6Pikmin6TParamFv = .text:0x803E6F8C; // type:function size:0x418 scope:weak align:4 +getCreatureType__Q43ebi5title6Pikmin5TUnitFv = .text:0x803E73A4; // type:function size:0x8 scope:weak align:4 +__sinit_ebiP2TitlePikmin_cpp = .text:0x803E73AC; // type:function size:0x28 scope:local align:4 +__ct__Q43ebi5title6Kogane4TMgrFv = .text:0x803E73D4; // type:function size:0x148 scope:global align:4 +setArchive__Q43ebi5title6Kogane4TMgrFP10JKRArchive = .text:0x803E751C; // type:function size:0x50 scope:global align:4 +initUnit__Q43ebi5title6Kogane4TMgrFv = .text:0x803E756C; // type:function size:0x28 scope:global align:4 +__ct__Q43ebi5title6Kogane9TAnimatorFv = .text:0x803E7594; // type:function size:0x68 scope:global align:4 +setArchive__Q43ebi5title6Kogane9TAnimatorFP10JKRArchive = .text:0x803E75FC; // type:function size:0x11C scope:global align:4 +setController__Q43ebi5title6Kogane5TUnitFP10Controller = .text:0x803E7718; // type:function size:0x8 scope:global align:4 +init__Q43ebi5title6Kogane5TUnitFPQ43ebi5title6Kogane4TMgr = .text:0x803E7720; // type:function size:0xF4 scope:global align:4 +startZigzagWalk__Q43ebi5title6Kogane5TUnitFR10Vector2R10Vector2 = .text:0x803E7814; // type:function size:0x4C scope:global align:4 +goHome__Q43ebi5title6Kogane5TUnitFv = .text:0x803E7860; // type:function size:0x30 scope:global align:4 +outOfCalc__Q43ebi5title6Kogane5TUnitFv = .text:0x803E7890; // type:function size:0x24 scope:global align:4 +isCalc__Q43ebi5title6Kogane5TUnitFv = .text:0x803E78B4; // type:function size:0x14 scope:global align:4 +isController__Q43ebi5title6Kogane5TUnitFv = .text:0x803E78C8; // type:function size:0x14 scope:global align:4 +startState__Q43ebi5title6Kogane5TUnitFQ53ebi5title6Kogane5TUnit9enumState = .text:0x803E78DC; // type:function size:0x2D0 scope:global align:4 +update__Q43ebi5title6Kogane5TUnitFv = .text:0x803E7BAC; // type:function size:0x734 scope:global align:4 +__ct__Q43ebi5title6Kogane6TParamFv = .text:0x803E82E0; // type:function size:0x32C scope:weak align:4 +getCreatureType__Q43ebi5title6Kogane5TUnitFv = .text:0x803E860C; // type:function size:0x8 scope:weak align:4 +getAnimRes__Q43ebi5title6Kogane11TAnimFolderFl = .text:0x803E8614; // type:function size:0x14 scope:weak align:4 +__ct__Q23ebi10E3DAnimResFv = .text:0x803E8628; // type:function size:0x4 scope:weak align:4 +__sinit_ebiP2TitleKogane_cpp = .text:0x803E862C; // type:function size:0x28 scope:local align:4 +__ct__Q43ebi5title6Chappy4TMgrFv = .text:0x803E8654; // type:function size:0x150 scope:global align:4 +setArchive__Q43ebi5title6Chappy4TMgrFP10JKRArchive = .text:0x803E87A4; // type:function size:0x50 scope:global align:4 +initUnit__Q43ebi5title6Chappy4TMgrFv = .text:0x803E87F4; // type:function size:0x28 scope:global align:4 +__ct__Q43ebi5title6Chappy9TAnimatorFv = .text:0x803E881C; // type:function size:0x68 scope:global align:4 +setArchive__Q43ebi5title6Chappy9TAnimatorFP10JKRArchive = .text:0x803E8884; // type:function size:0x128 scope:global align:4 +setController__Q43ebi5title6Chappy5TUnitFP10Controller = .text:0x803E89AC; // type:function size:0x8 scope:global align:4 +init__Q43ebi5title6Chappy5TUnitFPQ43ebi5title6Chappy4TMgr = .text:0x803E89B4; // type:function size:0xF4 scope:global align:4 +startZigzagWalk__Q43ebi5title6Chappy5TUnitFR10Vector2R10Vector2 = .text:0x803E8AA8; // type:function size:0x54 scope:global align:4 +goHome__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8AFC; // type:function size:0x30 scope:global align:4 +outOfCalc__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8B2C; // type:function size:0x24 scope:global align:4 +isCalc__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8B50; // type:function size:0x14 scope:global align:4 +isController__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8B64; // type:function size:0x14 scope:global align:4 +startAIState___Q43ebi5title6Chappy5TUnitFQ53ebi5title6Chappy5TUnit11enumAIState = .text:0x803E8B78; // type:function size:0x318 scope:global align:4 +update__Q43ebi5title6Chappy5TUnitFv = .text:0x803E8E90; // type:function size:0xA64 scope:global align:4 +__ct__Q43ebi5title6Chappy6TParamFv = .text:0x803E98F4; // type:function size:0x3A4 scope:weak align:4 +getCreatureType__Q43ebi5title6Chappy5TUnitFv = .text:0x803E9C98; // type:function size:0x8 scope:weak align:4 +getAnimRes__Q43ebi5title6Chappy11TAnimFolderFl = .text:0x803E9CA0; // type:function size:0x14 scope:weak align:4 +__sinit_ebiP2TitleChappy_cpp = .text:0x803E9CB4; // type:function size:0x28 scope:local align:4 +doSetArchive__Q33ebi6Screen7TTMBackFP10JKRArchive = .text:0x803E9CDC; // type:function size:0xB4 scope:global align:4 +doOpenScreen__Q33ebi6Screen7TTMBackFPQ33ebi6Screen7ArgOpen = .text:0x803E9D90; // type:function size:0x70 scope:global align:4 +doCloseScreen__Q33ebi6Screen7TTMBackFPQ33ebi6Screen8ArgClose = .text:0x803E9E00; // type:function size:0x44 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen7TTMBackFv = .text:0x803E9E44; // type:function size:0xDC scope:global align:4 +doUpdateStateWait__Q33ebi6Screen7TTMBackFv = .text:0x803E9F20; // type:function size:0x34 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen7TTMBackFv = .text:0x803E9F54; // type:function size:0xD4 scope:global align:4 +doDraw__Q33ebi6Screen7TTMBackFv = .text:0x803EA028; // type:function size:0x74 scope:global align:4 +doSetArchive__Q33ebi6Screen13TNintendoLogoFP10JKRArchive = .text:0x803EA09C; // type:function size:0x90 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen13TNintendoLogoFv = .text:0x803EA12C; // type:function size:0x34 scope:global align:4 +doDraw__Q33ebi6Screen13TNintendoLogoFv = .text:0x803EA160; // type:function size:0x74 scope:global align:4 +getName__Q33ebi6Screen13TNintendoLogoFv = .text:0x803EA1D4; // type:function size:0xC scope:weak align:4 +getName__Q33ebi6Screen7TTMBackFv = .text:0x803EA1E0; // type:function size:0xC scope:weak align:4 +__ct__Q23ebi13TMainTitleMgrFv = .text:0x803EA1EC; // type:function size:0x3B4 scope:global align:4 +setMode__Q23ebi13TMainTitleMgrFl = .text:0x803EA5A0; // type:function size:0x68 scope:global align:4 +loadResource__Q23ebi13TMainTitleMgrFv = .text:0x803EA608; // type:function size:0x124 scope:global align:4 +setController__Q23ebi13TMainTitleMgrFP10Controller = .text:0x803EA72C; // type:function size:0x4C scope:global align:4 +start__Q23ebi13TMainTitleMgrFv = .text:0x803EA778; // type:function size:0xC0 scope:global align:4 +startMenuSet__Q23ebi13TMainTitleMgrFll = .text:0x803EA838; // type:function size:0x1F0 scope:global align:4 +forceQuit__Q23ebi13TMainTitleMgrFv = .text:0x803EAA28; // type:function size:0xC scope:global align:4 +isFinish__Q23ebi13TMainTitleMgrFv = .text:0x803EAA34; // type:function size:0x10 scope:global align:4 +getSelectedMenu__Q23ebi13TMainTitleMgrFv = .text:0x803EAA44; // type:function size:0x8 scope:global align:4 +update__Q23ebi13TMainTitleMgrFv = .text:0x803EAA4C; // type:function size:0x4B0 scope:global align:4 +draw__Q23ebi13TMainTitleMgrFv = .text:0x803EAEFC; // type:function size:0x274 scope:global align:4 +__ct__Q23ebi25E2DCallBack_CalcAnimationFv = .text:0x803EB170; // type:function size:0x70 scope:weak align:4 +__ct__Q33ebi6Screen22TTitleMenu_Object_IconFv = .text:0x803EB1E0; // type:function size:0x4 scope:weak align:4 +getName__Q33ebi6Screen8ArgCloseFv = .text:0x803EB1E4; // type:function size:0xC scope:weak align:4 +getName__Q33ebi6Screen7ArgOpenFv = .text:0x803EB1F0; // type:function size:0x8 scope:weak align:4 +__sinit_ebiMainTitleMgr_cpp = .text:0x803EB1F8; // type:function size:0x28 scope:local align:4 +setGX__Q33ebi5title12TTitleFogMgrFR6Camera = .text:0x803EB220; // type:function size:0x118 scope:global align:4 +loadSettingFile__Q33ebi5title12TTitleFogMgrFP10JKRArchivePc = .text:0x803EB338; // type:function size:0x7C scope:global align:4 +__sinit_ebiP2TitleFog_cpp = .text:0x803EB3B4; // type:function size:0x28 scope:local align:4 +create__Q23efx11TDangoCrashFPQ23efx3Arg = .text:0x803EB3DC; // type:function size:0x1A8 scope:global align:4 +create__Q23efx10TDangoTurnFPQ23efx3Arg = .text:0x803EB584; // type:function size:0x11C scope:global align:4 +setGlobalPrmColor__Q23efx9TKageMoveFR6Color4 = .text:0x803EB6A0; // type:function size:0x30 scope:global align:4 +setGlobalPrmColor__Q23efx8TKageRunFR6Color4 = .text:0x803EB6D0; // type:function size:0x30 scope:global align:4 +setGlobalPrmColor__Q23efx10TKageDead1FR6Color4 = .text:0x803EB700; // type:function size:0x30 scope:global align:4 +create__Q23efx10TKageDead2FPQ23efx3Arg = .text:0x803EB730; // type:function size:0xCC scope:global align:4 +create__Q23efx13TOootaBombLegFPQ23efx3Arg = .text:0x803EB7FC; // type:function size:0x174 scope:global align:4 +create__Q23efx10TOootaFireFPQ23efx3Arg = .text:0x803EB970; // type:function size:0x150 scope:global align:4 +create__Q23efx13TKchFlickSandFPQ23efx3Arg = .text:0x803EBAC0; // type:function size:0x154 scope:global align:4 +create__Q23efx10TKchApSandFPQ23efx3Arg = .text:0x803EBC14; // type:function size:0x154 scope:global align:4 +create__Q23efx9TKchApWatFPQ23efx3Arg = .text:0x803EBD68; // type:function size:0x154 scope:global align:4 +setGlobalScale__Q23efx12TKchDiveSandFf = .text:0x803EBEBC; // type:function size:0x40 scope:global align:4 +setGlobalScale__Q23efx11TKchDiveWatFf = .text:0x803EBEFC; // type:function size:0x40 scope:global align:4 +setGlobalScale__Q23efx9TKchCryABFf = .text:0x803EBF3C; // type:function size:0x2C scope:global align:4 +setGlobalScale__Q23efx10TKchCryIndFf = .text:0x803EBF68; // type:function size:0x18 scope:global align:4 +create__Q23efx10TKchDamageFPQ23efx3Arg = .text:0x803EBF80; // type:function size:0x118 scope:global align:4 +setGlobalScale__Q23efx13TKchSmokeHanaFf = .text:0x803EC098; // type:function size:0x18 scope:global align:4 +create__Q23efx13TKchDownsmokeFPQ23efx3Arg = .text:0x803EC0B0; // type:function size:0xD0 scope:global align:4 +setGlobalScale__Q23efx12TKchDeadHanaFf = .text:0x803EC180; // type:function size:0x2C scope:global align:4 +init__Q23efx27TParticleCallBack_KchYodareFP14JPABaseEmitterP15JPABaseParticle = .text:0x803EC1AC; // type:function size:0x4 scope:global align:4 +execute__Q23efx27TParticleCallBack_KchYodareFP14JPABaseEmitterP15JPABaseParticle = .text:0x803EC1B0; // type:function size:0x17C scope:global align:4 +create__Q23efx22TKchYodareBaseChaseMtxFPQ23efx3Arg = .text:0x803EC32C; // type:function size:0x108 scope:global align:4 +setGlobalScale__Q23efx22TKchYodareBaseChaseMtxFf = .text:0x803EC434; // type:function size:0x18 scope:global align:4 +setPosNrm__Q23efx11THdamaSightFR10Vector3R10Vector3 = .text:0x803EC44C; // type:function size:0x108 scope:global align:4 +create__Q23efx11THdamaShellFPQ23efx3Arg = .text:0x803EC554; // type:function size:0xD0 scope:global align:4 +create__Q23efx11THdamaHit2WFPQ23efx3Arg = .text:0x803EC624; // type:function size:0x1BC scope:global align:4 +create__Q23efx16THdamaDeadHahen1FPQ23efx3Arg = .text:0x803EC7E0; // type:function size:0x174 scope:global align:4 +create__Q23efx16THdamaDeadHahen2FPQ23efx3Arg = .text:0x803EC954; // type:function size:0x18C scope:global align:4 +setGlobalScale__Q23efx10TOdamaFur1Ff = .text:0x803ECAE0; // type:function size:0x18 scope:global align:4 +setGlobalScale__Q23efx10TOdamaFur2Ff = .text:0x803ECAF8; // type:function size:0x18 scope:global align:4 +__dt__Q23efx11THdamaShellFv = .text:0x803ECB10; // type:function size:0x9C scope:weak align:4 +@4@__dt__Q23efx22TKchYodareBaseChaseMtxFv = .text:0x803ECBAC; // type:function size:0x8 scope:weak align:4 +@4@__dt__Q23efx11THdamaShellFv = .text:0x803ECBB4; // type:function size:0x8 scope:weak align:4 +gCardEMgr_ThreadFunc__3ebiFPv = .text:0x803ECBBC; // type:function size:0x5C scope:global align:4 +CardE_uploadToGBA__Q23ebi11CardEReaderFlPUcUl = .text:0x803ECC18; // type:function size:0x274 scope:global align:4 +__dt__Q33ebi11CardEReader4TMgrFv = .text:0x803ECE8C; // type:function size:0x68 scope:global align:4 +globalInstance__Q33ebi11CardEReader4TMgrFv = .text:0x803ECEF4; // type:function size:0x6C scope:global align:4 +loadResource__Q33ebi11CardEReader4TMgrFv = .text:0x803ECF60; // type:function size:0x11C scope:global align:4 +init__Q33ebi11CardEReader4TMgrFv = .text:0x803ED07C; // type:function size:0x3C scope:global align:4 +uploadToGBA__Q33ebi11CardEReader4TMgrFl = .text:0x803ED0B8; // type:function size:0x1C scope:global align:4 +probeAGB__Q33ebi11CardEReader4TMgrFv = .text:0x803ED0D4; // type:function size:0x18 scope:global align:4 +update__Q33ebi11CardEReader4TMgrFv = .text:0x803ED0EC; // type:function size:0x150 scope:global align:4 +isFinish__Q33ebi11CardEReader4TMgrFv = .text:0x803ED23C; // type:function size:0x10 scope:global align:4 +threadProc__Q33ebi11CardEReader4TMgrFPv = .text:0x803ED24C; // type:function size:0x74 scope:global align:4 +tryUploadToGBA___Q33ebi11CardEReader4TMgrFv = .text:0x803ED2C0; // type:function size:0x54 scope:global align:4 +goEnd___Q33ebi11CardEReader4TMgrFQ43ebi11CardEReader4TMgr7enumErr = .text:0x803ED314; // type:function size:0x10 scope:global align:4 +__ct__Q33ebi6Screen6TOmakeFv = .text:0x803ED324; // type:function size:0x274 scope:global align:4 +doSetArchive__Q33ebi6Screen6TOmakeFP10JKRArchive = .text:0x803ED598; // type:function size:0x5F0 scope:global align:4 +doOpenScreen__Q33ebi6Screen6TOmakeFPQ33ebi6Screen7ArgOpen = .text:0x803EDB88; // type:function size:0x5F0 scope:global align:4 +doCloseScreen__Q33ebi6Screen6TOmakeFPQ33ebi6Screen8ArgClose = .text:0x803EE178; // type:function size:0x4C scope:global align:4 +doInitWaitState__Q33ebi6Screen6TOmakeFv = .text:0x803EE1C4; // type:function size:0x48 scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen6TOmakeFv = .text:0x803EE20C; // type:function size:0x84 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen6TOmakeFv = .text:0x803EE290; // type:function size:0x484 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen6TOmakeFv = .text:0x803EE714; // type:function size:0x74 scope:global align:4 +doDraw__Q33ebi6Screen6TOmakeFv = .text:0x803EE788; // type:function size:0x244 scope:global align:4 +setController__Q33ebi6Screen6TOmakeFP10Controller = .text:0x803EE9CC; // type:function size:0x44 scope:global align:4 +showPanes___Q33ebi6Screen6TOmakeFv = .text:0x803EEA10; // type:function size:0x64 scope:global align:4 +hidePanes___Q33ebi6Screen6TOmakeFv = .text:0x803EEA74; // type:function size:0x28 scope:global align:4 +openFromMovie___Q33ebi6Screen6TOmakeFv = .text:0x803EEA9C; // type:function size:0x54 scope:global align:4 +openFromCardE___Q33ebi6Screen6TOmakeFv = .text:0x803EEAF0; // type:function size:0xB0 scope:global align:4 +__ct__Q23ebi26E2DCallBack_BlinkFontColorFv = .text:0x803EEBA0; // type:function size:0xBC scope:weak align:4 +getName__Q33ebi6Screen6TOmakeFv = .text:0x803EEC5C; // type:function size:0x8 scope:weak align:4 +init__Q33ebi5Omake15FSMStateMachineFPQ33ebi5Omake4TMgr = .text:0x803EEC64; // type:function size:0x1D0 scope:global align:4 +init__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EEE34; // type:function size:0x2C scope:global align:4 +exec__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgr = .text:0x803EEE60; // type:function size:0x2C scope:global align:4 +do_init__Q33ebi5Omake20FSMState_OmakeScreenFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EEE8C; // type:function size:0xDC scope:global align:4 +do_exec__Q33ebi5Omake20FSMState_OmakeScreenFPQ33ebi5Omake4TMgr = .text:0x803EEF68; // type:function size:0xA8 scope:global align:4 +do_init__Q33ebi5Omake20FSMState_CardEScreenFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EF010; // type:function size:0x34 scope:global align:4 +do_exec__Q33ebi5Omake20FSMState_CardEScreenFPQ33ebi5Omake4TMgr = .text:0x803EF044; // type:function size:0xA0 scope:global align:4 +do_init__Q33ebi5Omake19FSMState_SelectGameFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EF0E4; // type:function size:0x48 scope:global align:4 +do_exec__Q33ebi5Omake19FSMState_SelectGameFPQ33ebi5Omake4TMgr = .text:0x803EF12C; // type:function size:0x378 scope:global align:4 +__ct__Q33ebi5Omake4TMgrFv = .text:0x803EF4A4; // type:function size:0xB4 scope:global align:4 +loadResource__Q33ebi5Omake4TMgrFv = .text:0x803EF558; // type:function size:0xE8 scope:global align:4 +newCardEMgrAndTask__Q33ebi5Omake4TMgrFv = .text:0x803EF640; // type:function size:0x50 scope:global align:4 +start__Q33ebi5Omake4TMgrFv = .text:0x803EF690; // type:function size:0x3C scope:global align:4 +goEnd___Q33ebi5Omake4TMgrFv = .text:0x803EF6CC; // type:function size:0x3C scope:global align:4 +isFinish__Q33ebi5Omake4TMgrFv = .text:0x803EF708; // type:function size:0x28 scope:global align:4 +update__Q33ebi5Omake4TMgrFv = .text:0x803EF730; // type:function size:0xE0 scope:global align:4 +draw__Q33ebi5Omake4TMgrFv = .text:0x803EF810; // type:function size:0x80 scope:global align:4 +isMovieState__Q33ebi5Omake4TMgrFv = .text:0x803EF890; // type:function size:0x2C scope:global align:4 +restartFromMovieState__Q33ebi5Omake4TMgrFv = .text:0x803EF8BC; // type:function size:0x54 scope:global align:4 +getMovieID__Q33ebi5Omake4TMgrFv = .text:0x803EF910; // type:function size:0x8 scope:global align:4 +getStateID__Q33ebi5Omake4TMgrFv = .text:0x803EF918; // type:function size:0x58 scope:global align:4 +do_init__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803EF970; // type:function size:0x4 scope:weak align:4 +do_exec__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgr = .text:0x803EF974; // type:function size:0x4 scope:weak align:4 +transit__Q24Game27FSMStateFPQ33ebi5Omake4TMgriPQ24Game8StateArg = .text:0x803EF978; // type:function size:0x30 scope:weak align:4 +start__Q24Game31StateMachineFPQ33ebi5Omake4TMgriPQ24Game8StateArg = .text:0x803EF9A8; // type:function size:0x34 scope:weak align:4 +__dt__Q33ebi6Screen10TOmakeGameFv = .text:0x803EF9DC; // type:function size:0x278 scope:weak align:4 +__dt__Q33ebi6Screen11TOmakeCardEFv = .text:0x803EFC54; // type:function size:0x2E4 scope:weak align:4 +__dt__Q33ebi6Screen6TOmakeFv = .text:0x803EFF38; // type:function size:0x208 scope:weak align:4 +init__Q24Game27FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg = .text:0x803F0140; // type:function size:0x4 scope:weak align:4 +exec__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F0144; // type:function size:0x4 scope:weak align:4 +cleanup__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F0148; // type:function size:0x4 scope:weak align:4 +resume__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F014C; // type:function size:0x4 scope:weak align:4 +restart__Q24Game27FSMStateFPQ33ebi5Omake4TMgr = .text:0x803F0150; // type:function size:0x4 scope:weak align:4 +init__Q24Game31StateMachineFPQ33ebi5Omake4TMgr = .text:0x803F0154; // type:function size:0x4 scope:weak align:4 +exec__Q24Game31StateMachineFPQ33ebi5Omake4TMgr = .text:0x803F0158; // type:function size:0x38 scope:weak align:4 +create__Q24Game31StateMachineFi = .text:0x803F0190; // type:function size:0x64 scope:weak align:4 +transit__Q24Game31StateMachineFPQ33ebi5Omake4TMgriPQ24Game8StateArg = .text:0x803F01F4; // type:function size:0x9C scope:weak align:4 +registerState__Q24Game31StateMachineFPQ24Game27FSMState = .text:0x803F0290; // type:function size:0x84 scope:weak align:4 +getName__Q33ebi6Screen12ArgOpenOmakeFv = .text:0x803F0314; // type:function size:0xC scope:weak align:4 +__ct__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0320; // type:function size:0x2B4 scope:global align:4 +doSetArchive__Q33ebi6Screen11TOmakeCardEFP10JKRArchive = .text:0x803F05D4; // type:function size:0x290 scope:global align:4 +doOpenScreen__Q33ebi6Screen11TOmakeCardEFPQ33ebi6Screen7ArgOpen = .text:0x803F0864; // type:function size:0xBC scope:global align:4 +doCloseScreen__Q33ebi6Screen11TOmakeCardEFPQ33ebi6Screen8ArgClose = .text:0x803F0920; // type:function size:0x50 scope:global align:4 +doInitWaitState__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0970; // type:function size:0x3C scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F09AC; // type:function size:0x54 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0A00; // type:function size:0x29C scope:global align:4 +doUpdateStateClose__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0C9C; // type:function size:0x54 scope:global align:4 +doDraw__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0CF0; // type:function size:0x74 scope:global align:4 +getName__Q33ebi6Screen11TOmakeCardEFv = .text:0x803F0D64; // type:function size:0xC scope:weak align:4 +__ct__Q33ebi6Screen10TOmakeGameFv = .text:0x803F0D70; // type:function size:0x278 scope:global align:4 +doSetArchive__Q33ebi6Screen10TOmakeGameFP10JKRArchive = .text:0x803F0FE8; // type:function size:0x2F4 scope:global align:4 +doOpenScreen__Q33ebi6Screen10TOmakeGameFPQ33ebi6Screen7ArgOpen = .text:0x803F12DC; // type:function size:0x294 scope:global align:4 +doCloseScreen__Q33ebi6Screen10TOmakeGameFPQ33ebi6Screen8ArgClose = .text:0x803F1570; // type:function size:0x3C scope:global align:4 +doUpdateStateOpen__Q33ebi6Screen10TOmakeGameFv = .text:0x803F15AC; // type:function size:0x54 scope:global align:4 +doUpdateStateWait__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1600; // type:function size:0x258 scope:global align:4 +doUpdateStateClose__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1858; // type:function size:0x54 scope:global align:4 +doDraw__Q33ebi6Screen10TOmakeGameFv = .text:0x803F18AC; // type:function size:0x74 scope:global align:4 +setController__Q33ebi6Screen10TOmakeGameFP10Controller = .text:0x803F1920; // type:function size:0x44 scope:global align:4 +isDelegateControl__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1964; // type:function size:0x48 scope:global align:4 +setSelfControl__Q33ebi6Screen10TOmakeGameFv = .text:0x803F19AC; // type:function size:0x3C scope:global align:4 +openMsg__Q33ebi6Screen10TOmakeGameFl = .text:0x803F19E8; // type:function size:0x108 scope:global align:4 +getName__Q33ebi6Screen10TOmakeGameFv = .text:0x803F1AF0; // type:function size:0xC scope:weak align:4 +__dt__Q29P2DScreen3MgrFv = .text:0x803F1AFC; // type:function size:0x84 scope:weak align:4 +__dt__Q32kh6Screen14khUtilFadePaneFv = .text:0x803F1B80; // type:function size:0x9C scope:weak align:4 +fadeout_finish__Q32kh6Screen16khUtilFadePaneWMFv = .text:0x803F1C1C; // type:function size:0x58 scope:global align:4 +__dt__Q32kh6Screen14khUtilColorAnmFv = .text:0x803F1C74; // type:function size:0x80 scope:weak align:4 +do_update__Q32kh6Screen16khUtilColorAnmWMFv = .text:0x803F1CF4; // type:function size:0x7C scope:global align:4 +__ct__Q32kh6Screen8WorldMapFv = .text:0x803F1D70; // type:function size:0x1E8 scope:global align:4 +__dt__Q34Game8WorldMap4BaseFv = .text:0x803F1F58; // type:function size:0x60 scope:weak align:4 +init__Q32kh6Screen8WorldMapFRQ34Game8WorldMap7InitArg = .text:0x803F1FB8; // type:function size:0xCC scope:global align:4 +loadResource__Q32kh6Screen8WorldMapFv = .text:0x803F2084; // type:function size:0x1790 scope:global align:4 +__dt__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F3814; // type:function size:0x3C scope:weak align:4 +update__Q32kh6Screen8WorldMapFRQ34Game8WorldMap9UpdateArg = .text:0x803F3850; // type:function size:0x1C20 scope:global align:4 +draw1st__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F5470; // type:function size:0x198 scope:global align:4 +draw2nd__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F5608; // type:function size:0x64 scope:global align:4 +draw3rd__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F566C; // type:function size:0x2A0 scope:global align:4 +draw4th__Q32kh6Screen8WorldMapFR8Graphics = .text:0x803F590C; // type:function size:0x110 scope:global align:4 +rocketMove__Q32kh6Screen8WorldMapFP7J2DPaneb = .text:0x803F5A1C; // type:function size:0x330 scope:global align:4 +rocketUpdate__Q32kh6Screen8WorldMapFP7J2DPane = .text:0x803F5D4C; // type:function size:0x404 scope:global align:4 +onyonMove__Q32kh6Screen8WorldMapFv = .text:0x803F6150; // type:function size:0x90 scope:global align:4 +onyonUpdate__Q32kh6Screen8WorldMapFv = .text:0x803F61E0; // type:function size:0x68 scope:global align:4 +postureControl__Q32kh6Screen8WorldMapFP7J2DPane = .text:0x803F6248; // type:function size:0x1F4 scope:global align:4 +changeState__Q32kh6Screen8WorldMapFv = .text:0x803F643C; // type:function size:0x230 scope:global align:4 +tag2num__Q32kh6Screen8WorldMapFUx = .text:0x803F666C; // type:function size:0xC0 scope:global align:4 +finish__Q32kh6Screen8WorldMapFv = .text:0x803F672C; // type:function size:0x8C scope:global align:4 +newMapOpen__Q32kh6Screen8WorldMapFv = .text:0x803F67B8; // type:function size:0x7C scope:global align:4 +getTarget__Q32kh6Screen8WorldMapFv = .text:0x803F6834; // type:function size:0x13C scope:global align:4 +getRotDir__Q32kh6Screen8WorldMapFRCQ29JGeometry8TVec2f = .text:0x803F6970; // type:function size:0x174 scope:global align:4 +changeInfo__Q32kh6Screen8WorldMapFv = .text:0x803F6AE4; // type:function size:0xA4C scope:global align:4 +effectFirstTime__Q32kh6Screen8WorldMapFv = .text:0x803F7530; // type:function size:0x550 scope:global align:4 +__ct__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F7A80; // type:function size:0x44 scope:global align:4 +initPtcl__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F7AC4; // type:function size:0xF8 scope:global align:4 +move__Q42kh6Screen8WorldMap13OnyonDynamicsFPQ32kh6Screen8WorldMapRCQ29JGeometry8TVec2 = .text:0x803F7BBC; // type:function size:0x458 scope:global align:4 +update__Q42kh6Screen8WorldMap13OnyonDynamicsFPQ32kh6Screen8WorldMap = .text:0x803F8014; // type:function size:0x12C scope:global align:4 +kill__Q42kh6Screen8WorldMap13OnyonDynamicsFv = .text:0x803F8140; // type:function size:0x30 scope:global align:4 +getName__Q35efx2d8WorldMap11ArgDirScaleFv = .text:0x803F8170; // type:function size:0xC scope:weak align:4 +__dt__Q35efx2d8WorldMap10T2DShstar1Fv = .text:0x803F817C; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d8WorldMap11T2DMapFlareFv = .text:0x803F8218; // type:function size:0x9C scope:weak align:4 +__dt__Q35efx2d8WorldMap13T2DRocketGlowFv = .text:0x803F82B4; // type:function size:0x9C scope:weak align:4 +__dt__Q32kh6Screen8WorldMapFv = .text:0x803F8350; // type:function size:0x70 scope:weak align:4 +draw__Q34Game8WorldMap4BaseFR8Graphics = .text:0x803F83C0; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen16khUtilColorAnmWMFv = .text:0x803F83C4; // type:function size:0x90 scope:weak align:4 +__dt__Q32kh6Screen16khUtilFadePaneWMFv = .text:0x803F8454; // type:function size:0xAC scope:weak align:4 +fadein_finish__Q32kh6Screen14khUtilFadePaneFv = .text:0x803F8500; // type:function size:0x4 scope:weak align:4 +__dt__Q42kh6Screen14khUtilFadePane10khPaneNodeFv = .text:0x803F8504; // type:function size:0x48 scope:weak align:4 +__sinit_khWorldMap_cpp = .text:0x803F854C; // type:function size:0x1A8 scope:local align:4 +__ct__Q29JGeometry8TVec2Fv = .text:0x803F86F4; // type:function size:0x4 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap13T2DRocketGlowFv = .text:0x803F86F8; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap11T2DMapFlareFv = .text:0x803F8700; // type:function size:0x8 scope:weak align:4 +@8@__dt__Q35efx2d8WorldMap10T2DShstar1Fv = .text:0x803F8708; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen14DispCaveResultFPQ34Game6Result5TNodeUlUlUlUlbP7JKRHeapb = .text:0x803F8710; // type:function size:0x7C scope:global align:4 +init__Q32kh6Screen14DispCaveResultFPQ34Game6Result5TNodeUlb = .text:0x803F878C; // type:function size:0xAC scope:global align:4 +__ct__Q32kh6Screen13ObjCaveResultFv = .text:0x803F8838; // type:function size:0x134 scope:global align:4 +doCreate__Q32kh6Screen13ObjCaveResultFP10JKRArchive = .text:0x803F896C; // type:function size:0xB08 scope:global align:4 +doUpdate__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9474; // type:function size:0x34C scope:global align:4 +doDraw__Q32kh6Screen13ObjCaveResultFR8Graphics = .text:0x803F97C0; // type:function size:0x760 scope:global align:4 +doUpdateFadein__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9F20; // type:function size:0x68 scope:global align:4 +doUpdateFadeinFinish__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9F88; // type:function size:0x14 scope:global align:4 +doUpdateFadeout__Q32kh6Screen13ObjCaveResultFv = .text:0x803F9F9C; // type:function size:0x6C scope:global align:4 +statusNormal__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA008; // type:function size:0x1DC scope:global align:4 +statusScrollUp__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA1E4; // type:function size:0xF4 scope:global align:4 +statusScrollDown__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA2D8; // type:function size:0xF4 scope:global align:4 +statusForceScroll__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA3CC; // type:function size:0x2F0 scope:global align:4 +statusDrumRoll__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA6BC; // type:function size:0x1C scope:global align:4 +statusAllMoney__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA6D8; // type:function size:0xC0 scope:global align:4 +statusDecP__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA798; // type:function size:0xE8 scope:global align:4 +statusLost__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA880; // type:function size:0x110 scope:global align:4 +statusEffect__Q32kh6Screen13ObjCaveResultFv = .text:0x803FA990; // type:function size:0x1D4 scope:global align:4 +updateAnimation__Q32kh6Screen13ObjCaveResultFv = .text:0x803FAB64; // type:function size:0x564 scope:global align:4 +setAlpha__Q32kh6Screen13ObjCaveResultFiUc = .text:0x803FB0C8; // type:function size:0x78 scope:global align:4 +pikminSE__Q32kh6Screen13ObjCaveResultFv = .text:0x803FB140; // type:function size:0xC4 scope:global align:4 +__ct__Q32kh6Screen8LostItemFv = .text:0x803FB204; // type:function size:0x38 scope:global align:4 +__ct__Q32kh6Screen11LostItemMgrFi = .text:0x803FB23C; // type:function size:0x80 scope:global align:4 +init__Q32kh6Screen11LostItemMgrFRCQ29JGeometry8TVec2b = .text:0x803FB2BC; // type:function size:0x3EC scope:global align:4 +update__Q32kh6Screen11LostItemMgrFv = .text:0x803FB6A8; // type:function size:0x108 scope:global align:4 +draw__Q32kh6Screen11LostItemMgrFPQ29P2DScreen10Mgr_tuningUxPC7ResTIMGR8Graphics = .text:0x803FB7B0; // type:function size:0x170 scope:global align:4 +doUserCallBackFunc__Q32kh6Screen15SceneCaveResultFPQ28Resource10MgrCommand = .text:0x803FB920; // type:function size:0xA4 scope:global align:4 +getResName__Q32kh6Screen15SceneCaveResultCFv = .text:0x803FB9C4; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen15SceneCaveResultFv = .text:0x803FB9CC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen15SceneCaveResultFv = .text:0x803FB9D4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen15SceneCaveResultFv = .text:0x803FB9DC; // type:function size:0x10 scope:weak align:4 +doCreateObj__Q32kh6Screen15SceneCaveResultFP10JKRArchive = .text:0x803FB9EC; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen13ObjCaveResultFv = .text:0x803FB9F0; // type:function size:0xAC scope:weak align:4 +getSize__Q32kh6Screen14DispCaveResultFv = .text:0x803FBA9C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen14DispCaveResultFv = .text:0x803FBAA4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen14DispCaveResultFv = .text:0x803FBAAC; // type:function size:0x10 scope:weak align:4 +__sinit_khCaveResult_cpp = .text:0x803FBABC; // type:function size:0x8C scope:local align:4 +@24@__dt__Q32kh6Screen13ObjCaveResultFv = .text:0x803FBB48; // type:function size:0x8 scope:weak align:4 +createScene_Koono__Q22kh6ScreenFl = .text:0x803FBB50; // type:function size:0x1F8 scope:global align:4 +getResName__Q32kh6Screen21SceneDayEndResultTitlCFv = .text:0x803FBD48; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultTitlFv = .text:0x803FBD54; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultTitlFv = .text:0x803FBD5C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultTitlFv = .text:0x803FBD64; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultTitlFP10JKRArchive = .text:0x803FBD78; // type:function size:0x58 scope:weak align:4 +getResName__Q32kh6Screen12SceneWinLoseCFv = .text:0x803FBDD0; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen12SceneWinLoseFv = .text:0x803FBDDC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen12SceneWinLoseFv = .text:0x803FBDE4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen12SceneWinLoseFv = .text:0x803FBDEC; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen12SceneWinLoseFP10JKRArchive = .text:0x803FBE00; // type:function size:0x58 scope:weak align:4 +getResName__Q32kh6Screen21SceneDayEndResultIncPCFv = .text:0x803FBE58; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultIncPFv = .text:0x803FBE64; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultIncPFv = .text:0x803FBE6C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultIncPFv = .text:0x803FBE74; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultIncPFP10JKRArchive = .text:0x803FBE88; // type:function size:0x58 scope:weak align:4 +getResName__Q32kh6Screen21SceneDayEndResultItemCFv = .text:0x803FBEE0; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultItemFv = .text:0x803FBEEC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultItemFv = .text:0x803FBEF4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultItemFv = .text:0x803FBEFC; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultItemFP10JKRArchive = .text:0x803FBF10; // type:function size:0x58 scope:weak align:4 +create__Q26Screen9Game2DMgrFv = .text:0x803FBF68; // type:function size:0x60 scope:global align:4 +__ct__Q26Screen9Game2DMgrFv = .text:0x803FBFC8; // type:function size:0x58 scope:global align:4 +__dt__Q26Screen9Game2DMgrFv = .text:0x803FC020; // type:function size:0x68 scope:global align:4 +initInCourse__Q26Screen9Game2DMgrFv = .text:0x803FC088; // type:function size:0x20 scope:global align:4 +update__Q26Screen9Game2DMgrFv = .text:0x803FC0A8; // type:function size:0x24 scope:global align:4 +draw__Q26Screen9Game2DMgrFR8Graphics = .text:0x803FC0CC; // type:function size:0x24 scope:global align:4 +drawIndirect__Q26Screen9Game2DMgrFR8Graphics = .text:0x803FC0F0; // type:function size:0x4 scope:global align:4 +setGamePad__Q26Screen9Game2DMgrFP10Controller = .text:0x803FC0F4; // type:function size:0x24 scope:global align:4 +setDispMember__Q26Screen9Game2DMgrFPQ32og6Screen14DispMemberBase = .text:0x803FC118; // type:function size:0x34 scope:global align:4 +setToumeiBG__Q26Screen9Game2DMgrFv = .text:0x803FC14C; // type:function size:0x38 scope:global align:4 +open_GameGround__Q26Screen9Game2DMgrFRQ32og6Screen16DispMemberGround = .text:0x803FC184; // type:function size:0xBC scope:global align:4 +is_GameGround__Q26Screen9Game2DMgrFv = .text:0x803FC240; // type:function size:0x60 scope:global align:4 +open_GameCave__Q26Screen9Game2DMgrFRQ32og6Screen14DispMemberCavei = .text:0x803FC2A0; // type:function size:0x1B4 scope:global align:4 +is_GameCave__Q26Screen9Game2DMgrFv = .text:0x803FC454; // type:function size:0x60 scope:global align:4 +open_GameVs__Q26Screen9Game2DMgrFRQ32og6Screen12DispMemberVsi = .text:0x803FC4B4; // type:function size:0x1A0 scope:global align:4 +check_VsStatus__Q26Screen9Game2DMgrFv = .text:0x803FC654; // type:function size:0x9C scope:global align:4 +open_GameChallenge2P__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberChallenge2Pi = .text:0x803FC6F0; // type:function size:0x334 scope:global align:4 +open_GameChallenge1P__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberChallenge1Pi = .text:0x803FCA24; // type:function size:0x328 scope:global align:4 +open_SMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberSMenuAll = .text:0x803FCD4C; // type:function size:0xB0 scope:global align:4 +open_SMenu_Sub__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberSMenuAll = .text:0x803FCDFC; // type:function size:0x1B0 scope:global align:4 +check_SMenu__Q26Screen9Game2DMgrFv = .text:0x803FCFAC; // type:function size:0x128 scope:global align:4 +open_WorldMapInfoWin0__Q26Screen9Game2DMgrFRQ32og6Screen26DispMemberWorldMapInfoWin0 = .text:0x803FD0D4; // type:function size:0xA8 scope:global align:4 +check_WorldMapInfoWin0__Q26Screen9Game2DMgrCFv = .text:0x803FD17C; // type:function size:0x7C scope:global align:4 +open_WorldMapInfoWin1__Q26Screen9Game2DMgrFRQ32og6Screen26DispMemberWorldMapInfoWin1 = .text:0x803FD1F8; // type:function size:0xA8 scope:global align:4 +check_WorldMapInfoWin1__Q26Screen9Game2DMgrCFv = .text:0x803FD2A0; // type:function size:0x7C scope:global align:4 +open_Kantei__Q26Screen9Game2DMgrFRQ32og6Screen16DispMemberKantei = .text:0x803FD31C; // type:function size:0x124 scope:global align:4 +close_Kantei__Q26Screen9Game2DMgrFv = .text:0x803FD440; // type:function size:0x84 scope:global align:4 +update_Kantei__Q26Screen9Game2DMgrFv = .text:0x803FD4C4; // type:function size:0x74 scope:global align:4 +open_SpecialItem__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberSpecialItem = .text:0x803FD538; // type:function size:0x90 scope:global align:4 +close_SpecialItem__Q26Screen9Game2DMgrFv = .text:0x803FD5C8; // type:function size:0x84 scope:global align:4 +open_Floor__Q26Screen9Game2DMgrFRQ32og6Screen15DispMemberFloor = .text:0x803FD64C; // type:function size:0x90 scope:global align:4 +close_Floor__Q26Screen9Game2DMgrFv = .text:0x803FD6DC; // type:function size:0x70 scope:global align:4 +set_FloorVS_LoadEnd__Q26Screen9Game2DMgrFv = .text:0x803FD74C; // type:function size:0x5C scope:global align:4 +startCount_Floor__Q26Screen9Game2DMgrFv = .text:0x803FD7A8; // type:function size:0x48 scope:global align:4 +startFadeBG_Floor__Q26Screen9Game2DMgrFv = .text:0x803FD7F0; // type:function size:0x48 scope:global align:4 +open_CourseName__Q26Screen9Game2DMgrFRQ32og6Screen20DispMemberCourseName = .text:0x803FD838; // type:function size:0x90 scope:global align:4 +startFadeBG_CourseName__Q26Screen9Game2DMgrFv = .text:0x803FD8C8; // type:function size:0x48 scope:global align:4 +close_CourseName__Q26Screen9Game2DMgrFv = .text:0x803FD910; // type:function size:0x70 scope:global align:4 +startCount_CourseName__Q26Screen9Game2DMgrFv = .text:0x803FD980; // type:function size:0x48 scope:global align:4 +open_GameOver__Q26Screen9Game2DMgrFQ36Screen9Game2DMgr13GameOverTitle = .text:0x803FD9C8; // type:function size:0x258 scope:global align:4 +close_GameOver__Q26Screen9Game2DMgrFv = .text:0x803FDC20; // type:function size:0xAC scope:global align:4 +open_CaveInMenu__Q26Screen9Game2DMgrFRQ32og6Screen17DispMemberAnaDemo = .text:0x803FDCCC; // type:function size:0xE0 scope:global align:4 +check_CaveInMenu__Q26Screen9Game2DMgrFv = .text:0x803FDDAC; // type:function size:0x9C scope:global align:4 +open_KanketuMenu__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberKanketuMenu = .text:0x803FDE48; // type:function size:0xE0 scope:global align:4 +open_ChallengeKanketuMenu__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberKanketuMenu = .text:0x803FDF28; // type:function size:0xF4 scope:global align:4 +check_KanketuMenu__Q26Screen9Game2DMgrFv = .text:0x803FE01C; // type:function size:0x9C scope:global align:4 +open_CaveMoreMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberCaveMore = .text:0x803FE0B8; // type:function size:0x100 scope:global align:4 +check_CaveMoreMenu__Q26Screen9Game2DMgrFv = .text:0x803FE1B8; // type:function size:0x9C scope:global align:4 +open_FinalResult__Q26Screen9Game2DMgrFRQ32kh6Screen15DispFinalResult = .text:0x803FE254; // type:function size:0xAC scope:global align:4 +check_FinalResult__Q26Screen9Game2DMgrCFv = .text:0x803FE300; // type:function size:0x8C scope:global align:4 +open_CaveResult__Q26Screen9Game2DMgrFRQ32kh6Screen14DispCaveResult = .text:0x803FE38C; // type:function size:0xA8 scope:global align:4 +check_CaveResult__Q26Screen9Game2DMgrCFv = .text:0x803FE434; // type:function size:0x8C scope:global align:4 +open_DayEndResult__Q26Screen9Game2DMgrFRQ32kh6Screen16DispDayEndResult = .text:0x803FE4C0; // type:function size:0xAC scope:global align:4 +check_DayEndResult__Q26Screen9Game2DMgrCFv = .text:0x803FE56C; // type:function size:0xB0 scope:global align:4 +open_PayDept__Q26Screen9Game2DMgrFRQ32kh6Screen11DispPayDept = .text:0x803FE61C; // type:function size:0xA8 scope:global align:4 +check_PayDept__Q26Screen9Game2DMgrCFv = .text:0x803FE6C4; // type:function size:0x5C scope:global align:4 +open_Save__Q26Screen9Game2DMgrFRQ32og6Screen14DispMemberSave = .text:0x803FE720; // type:function size:0xA8 scope:global align:4 +check_Save__Q26Screen9Game2DMgrCFv = .text:0x803FE7C8; // type:function size:0x5C scope:global align:4 +open_FinalMessage__Q26Screen9Game2DMgrFRQ32og6Screen22DispMemberFinalMessage = .text:0x803FE824; // type:function size:0xA8 scope:global align:4 +check_FinalMessage__Q26Screen9Game2DMgrCFv = .text:0x803FE8CC; // type:function size:0x48 scope:global align:4 +stopFinalFloorSound__Q26Screen9Game2DMgrFv = .text:0x803FE914; // type:function size:0x70 scope:global align:4 +restartFinalFloorSound__Q26Screen9Game2DMgrFv = .text:0x803FE984; // type:function size:0x70 scope:global align:4 +check_ReadyGo__Q26Screen9Game2DMgrCFv = .text:0x803FE9F4; // type:function size:0x90 scope:global align:4 +open_WinLoseReason__Q26Screen9Game2DMgrFRQ32kh6Screen17DispWinLoseReason = .text:0x803FEA84; // type:function size:0xA8 scope:global align:4 +check_WinLoseReason__Q26Screen9Game2DMgrCFv = .text:0x803FEB2C; // type:function size:0x68 scope:global align:4 +open_WinLose__Q26Screen9Game2DMgrFRQ32kh6Screen11DispWinLose = .text:0x803FEB94; // type:function size:0xA8 scope:global align:4 +check_WinLose__Q26Screen9Game2DMgrCFv = .text:0x803FEC3C; // type:function size:0x90 scope:global align:4 +open_TimeUp1P__Q26Screen9Game2DMgrFv = .text:0x803FECCC; // type:function size:0xD4 scope:global align:4 +open_TimeUp2P__Q26Screen9Game2DMgrFv = .text:0x803FEDA0; // type:function size:0xD4 scope:global align:4 +open_Contena__Q26Screen9Game2DMgrFRQ32og6Screen17DispMemberContena = .text:0x803FEE74; // type:function size:0x158 scope:global align:4 +check_Contena__Q26Screen9Game2DMgrFv = .text:0x803FEFCC; // type:function size:0xC8 scope:global align:4 +result_Contena__Q26Screen9Game2DMgrFv = .text:0x803FF094; // type:function size:0xA8 scope:global align:4 +open_UfoMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberUfoGroup = .text:0x803FF13C; // type:function size:0x244 scope:global align:4 +check_UfoMenu__Q26Screen9Game2DMgrFv = .text:0x803FF380; // type:function size:0x130 scope:global align:4 +result_UfoMenu__Q26Screen9Game2DMgrFPiPi = .text:0x803FF4B0; // type:function size:0x98 scope:global align:4 +open_ZukanEnemy__Q26Screen9Game2DMgrFRQ28Morimura20DispMemberZukanEnemy = .text:0x803FF548; // type:function size:0x9C scope:global align:4 +open_ZukanItem__Q26Screen9Game2DMgrFRQ28Morimura19DispMemberZukanItem = .text:0x803FF5E4; // type:function size:0x9C scope:global align:4 +isZukanEnemy__Q26Screen9Game2DMgrFv = .text:0x803FF680; // type:function size:0x30 scope:global align:4 +isZukanItem__Q26Screen9Game2DMgrFv = .text:0x803FF6B0; // type:function size:0x30 scope:global align:4 +check_ZukanItemRequest__Q26Screen9Game2DMgrFRi = .text:0x803FF6E0; // type:function size:0x84 scope:global align:4 +check_ZukanEnemyRequest__Q26Screen9Game2DMgrFRi = .text:0x803FF764; // type:function size:0x84 scope:global align:4 +getZukanEnemyCurrSelectId__Q26Screen9Game2DMgrFv = .text:0x803FF7E8; // type:function size:0x90 scope:global align:4 +getZukanItemCurrSelectId__Q26Screen9Game2DMgrFv = .text:0x803FF878; // type:function size:0x90 scope:global align:4 +requireZukanRequest__Q26Screen9Game2DMgrFv = .text:0x803FF908; // type:function size:0xBC scope:global align:4 +requireZukanEffectOff__Q26Screen9Game2DMgrFv = .text:0x803FF9C4; // type:function size:0xBC scope:global align:4 +isZukanEnlargedWindow__Q26Screen9Game2DMgrFv = .text:0x803FFA80; // type:function size:0xE4 scope:global align:4 +isZukanMemoWindow__Q26Screen9Game2DMgrFv = .text:0x803FFB64; // type:function size:0xE4 scope:global align:4 +isAppearConfirmWindow__Q26Screen9Game2DMgrFv = .text:0x803FFC48; // type:function size:0xC4 scope:global align:4 +open_ChallengeSelect__Q26Screen9Game2DMgrFRQ28Morimura25DispMemberChallengeSelect = .text:0x803FFD0C; // type:function size:0x9C scope:global align:4 +check_ChallengeSelect__Q26Screen9Game2DMgrFRiRi = .text:0x803FFDA8; // type:function size:0x6C scope:global align:4 +open_ChallengeResult__Q26Screen9Game2DMgrFRQ28Morimura25DispMemberChallengeResult = .text:0x803FFE14; // type:function size:0x9C scope:global align:4 +isEndChallengeResult__Q26Screen9Game2DMgrFv = .text:0x803FFEB0; // type:function size:0x34 scope:global align:4 +open_VsSelect__Q26Screen9Game2DMgrFRQ28Morimura18DispMemberVsSelect = .text:0x803FFEE4; // type:function size:0x9C scope:global align:4 +check_VsSelect__Q26Screen9Game2DMgrFRiRiRi = .text:0x803FFF80; // type:function size:0x78 scope:global align:4 +open_HighScore__Q26Screen9Game2DMgrFRQ28Morimura19DispMemberHighScore = .text:0x803FFFF8; // type:function size:0x9C scope:global align:4 +isEndHighScore__Q26Screen9Game2DMgrFv = .text:0x80400094; // type:function size:0x58 scope:global align:4 +drawKanteiMsg__Q26Screen9Game2DMgrFR8Graphics = .text:0x804000EC; // type:function size:0x6C scope:global align:4 +checkDayEnd__Q26Screen9Game2DMgrCFf = .text:0x80400158; // type:function size:0x8C scope:global align:4 +getClassSize__Q26Screen11EndSceneArgFv = .text:0x804001E4; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen15SArgChallenge1PCFv = .text:0x804001EC; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32og9newScreen15SArgChallenge1PFv = .text:0x804001F4; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32og9newScreen15SArgChallenge2PCFv = .text:0x804001FC; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32og9newScreen15SArgChallenge2PFv = .text:0x80400204; // type:function size:0x8 scope:weak align:4 +getSize__Q32kh6Screen11DispReadyGoFv = .text:0x8040020C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen11DispReadyGoFv = .text:0x80400214; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen11DispReadyGoFv = .text:0x8040021C; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen14DispFinalFloorFv = .text:0x80400230; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen14DispFinalFloorFv = .text:0x80400238; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen14DispFinalFloorFv = .text:0x80400240; // type:function size:0x14 scope:weak align:4 +createScene_Ogawa__9newScreenFl = .text:0x80400254; // type:function size:0x3CC scope:global align:4 +createScene_Morimura__9newScreenFl = .text:0x80400620; // type:function size:0x348 scope:global align:4 +doGetSceneBase__Q29newScreen3MgrFl = .text:0x80400968; // type:function size:0x50 scope:global align:4 +create__Q29newScreen3MgrFv = .text:0x804009B8; // type:function size:0xAC scope:global align:4 +__dt__Q26Screen3MgrFv = .text:0x80400A64; // type:function size:0xB0 scope:weak align:4 +drawBG__Q29newScreen3MgrFR8Graphics = .text:0x80400B14; // type:function size:0x1A0 scope:global align:4 +reset__Q29newScreen3MgrFv = .text:0x80400CB4; // type:function size:0x64 scope:global align:4 +__dt__Q29newScreen3MgrFv = .text:0x80400D18; // type:function size:0xC0 scope:weak align:4 +setColorBG__Q29newScreen3MgrFRQ28JUtility6TColor = .text:0x80400DD8; // type:function size:0x24 scope:weak align:4 +setBGMode__Q29newScreen3MgrFi = .text:0x80400DFC; // type:function size:0x8 scope:weak align:4 +drawWipe__Q26Screen3MgrFR8Graphics = .text:0x80400E04; // type:function size:0x4 scope:weak align:4 +__dt__Q26Screen7MgrBaseFv = .text:0x80400E08; // type:function size:0x60 scope:weak align:4 +getResName__Q28Morimura16TPikminDownSceneCFv = .text:0x80400E68; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura16TPikminDownSceneFP10JKRArchive = .text:0x80400E74; // type:function size:0x80 scope:weak align:4 +isUseBackupSceneInfo__Q28Morimura16TPikminDownSceneFv = .text:0x80400EF4; // type:function size:0x8 scope:weak align:4 +getSceneType__Q28Morimura16TPikminDownSceneFv = .text:0x80400EFC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura16TPikminDownSceneFv = .text:0x80400F04; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura16TPikminDownSceneFv = .text:0x80400F10; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura19TPresidentDownSceneCFv = .text:0x80400F24; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura19TPresidentDownSceneFP10JKRArchive = .text:0x80400F30; // type:function size:0x80 scope:weak align:4 +getSceneType__Q28Morimura19TPresidentDownSceneFv = .text:0x80400FB0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura19TPresidentDownSceneFv = .text:0x80400FB8; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura19TPresidentDownSceneFv = .text:0x80400FC4; // type:function size:0x14 scope:weak align:4 +isUseBackupSceneInfo__Q28Morimura18TGameOverSceneBaseFv = .text:0x80400FD8; // type:function size:0x4C scope:weak align:4 +getResName__Q28Morimura14TLujiDownSceneCFv = .text:0x80401024; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura14TLujiDownSceneFP10JKRArchive = .text:0x80401030; // type:function size:0x80 scope:weak align:4 +getSceneType__Q28Morimura14TLujiDownSceneFv = .text:0x804010B0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura14TLujiDownSceneFv = .text:0x804010B8; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura14TLujiDownSceneFv = .text:0x804010C4; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura15TOrimaDownSceneCFv = .text:0x804010D8; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura15TOrimaDownSceneFP10JKRArchive = .text:0x804010E4; // type:function size:0x80 scope:weak align:4 +getSceneType__Q28Morimura15TOrimaDownSceneFv = .text:0x80401164; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura15TOrimaDownSceneFv = .text:0x8040116C; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura15TOrimaDownSceneFv = .text:0x80401178; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura14TGameOverSceneCFv = .text:0x8040118C; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura14TGameOverSceneFP10JKRArchive = .text:0x80401198; // type:function size:0x80 scope:weak align:4 +isUseBackupSceneInfo__Q28Morimura14TGameOverSceneFv = .text:0x80401218; // type:function size:0x8 scope:weak align:4 +getSceneType__Q28Morimura14TGameOverSceneFv = .text:0x80401220; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura14TGameOverSceneFv = .text:0x80401228; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura14TGameOverSceneFv = .text:0x80401234; // type:function size:0x14 scope:weak align:4 +getResName__Q28Morimura13THurryUpSceneCFv = .text:0x80401248; // type:function size:0xC scope:weak align:4 +doCreateObj__Q28Morimura13THurryUpSceneFP10JKRArchive = .text:0x80401254; // type:function size:0x68 scope:weak align:4 +getSceneType__Q28Morimura13THurryUpSceneFv = .text:0x804012BC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q28Morimura13THurryUpSceneFv = .text:0x804012C4; // type:function size:0xC scope:weak align:4 +getMemberID__Q28Morimura13THurryUpSceneFv = .text:0x804012D0; // type:function size:0x14 scope:weak align:4 +doUpdateFadein__Q32kh6Screen10ObjReadyGoFv = .text:0x804012E4; // type:function size:0xA4 scope:global align:4 +doCreate__Q32kh6Screen10ObjReadyGoFP10JKRArchive = .text:0x80401388; // type:function size:0x1D4 scope:global align:4 +doUpdate__Q32kh6Screen10ObjReadyGoFv = .text:0x8040155C; // type:function size:0x20 scope:global align:4 +doDraw__Q32kh6Screen10ObjReadyGoFR8Graphics = .text:0x8040157C; // type:function size:0xDC scope:global align:4 +doUpdateFadeout__Q32kh6Screen10ObjReadyGoFv = .text:0x80401658; // type:function size:0x18C scope:global align:4 +updateAnimation__Q32kh6Screen10ObjReadyGoFv = .text:0x804017E4; // type:function size:0x384 scope:global align:4 +doConfirmSetScene__Q32kh6Screen12SceneReadyGoFRQ26Screen11SetSceneArg = .text:0x80401B68; // type:function size:0x40 scope:global align:4 +getResName__Q32kh6Screen12SceneReadyGoCFv = .text:0x80401BA8; // type:function size:0xC scope:weak align:4 +isUseBackupSceneInfo__Q32kh6Screen12SceneReadyGoFv = .text:0x80401BB4; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen12SceneReadyGoFv = .text:0x80401BBC; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen12SceneReadyGoFv = .text:0x80401BC4; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen12SceneReadyGoFv = .text:0x80401BCC; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen12SceneReadyGoFP10JKRArchive = .text:0x80401BE0; // type:function size:0xC4 scope:weak align:4 +__dt__Q32kh6Screen10ObjReadyGoFv = .text:0x80401CA4; // type:function size:0xAC scope:weak align:4 +__sinit_khReadyGo_cpp = .text:0x80401D50; // type:function size:0x5C scope:local align:4 +@24@__dt__Q32kh6Screen10ObjReadyGoFv = .text:0x80401DAC; // type:function size:0x8 scope:weak align:4 +doCreate__Q32kh6Screen13ObjFinalFloorFP10JKRArchive = .text:0x80401DB4; // type:function size:0x21C scope:global align:4 +doUpdate__Q32kh6Screen13ObjFinalFloorFv = .text:0x80401FD0; // type:function size:0x20 scope:global align:4 +doDraw__Q32kh6Screen13ObjFinalFloorFR8Graphics = .text:0x80401FF0; // type:function size:0xDC scope:global align:4 +doUpdateFadein__Q32kh6Screen13ObjFinalFloorFv = .text:0x804020CC; // type:function size:0x38 scope:global align:4 +doUpdateFadeout__Q32kh6Screen13ObjFinalFloorFv = .text:0x80402104; // type:function size:0x1F8 scope:global align:4 +doUpdateFadeoutFinish__Q32kh6Screen13ObjFinalFloorFv = .text:0x804022FC; // type:function size:0x34 scope:global align:4 +updateAnimation__Q32kh6Screen13ObjFinalFloorFv = .text:0x80402330; // type:function size:0x1C8 scope:global align:4 +stopSound__Q32kh6Screen13ObjFinalFloorFv = .text:0x804024F8; // type:function size:0x40 scope:global align:4 +restartSound__Q32kh6Screen13ObjFinalFloorFv = .text:0x80402538; // type:function size:0x15C scope:global align:4 +doConfirmSetScene__Q32kh6Screen15SceneFinalFloorFRQ26Screen11SetSceneArg = .text:0x80402694; // type:function size:0x40 scope:global align:4 +getResName__Q32kh6Screen15SceneFinalFloorCFv = .text:0x804026D4; // type:function size:0xC scope:weak align:4 +isUseBackupSceneInfo__Q32kh6Screen15SceneFinalFloorFv = .text:0x804026E0; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen15SceneFinalFloorFv = .text:0x804026E8; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen15SceneFinalFloorFv = .text:0x804026F0; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen15SceneFinalFloorFv = .text:0x804026F8; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen15SceneFinalFloorFP10JKRArchive = .text:0x8040270C; // type:function size:0xBC scope:weak align:4 +__dt__Q32kh6Screen13ObjFinalFloorFv = .text:0x804027C8; // type:function size:0xAC scope:weak align:4 +__sinit_khFinalFloor_cpp = .text:0x80402874; // type:function size:0x4C scope:local align:4 +@24@__dt__Q32kh6Screen13ObjFinalFloorFv = .text:0x804028C0; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen20DispDayEndResultItemFPQ34Game6Result5TNodeiib = .text:0x804028C8; // type:function size:0x8C scope:global align:4 +__ct__Q32kh6Screen4IncPFv = .text:0x80402954; // type:function size:0x294 scope:global align:4 +__ct__Q32kh6Screen20DispDayEndResultIncPFPCQ32kh6Screen4IncP = .text:0x80402BE8; // type:function size:0x30 scope:global align:4 +__ct__Q32kh6Screen20DispDayEndResultMailFP7JKRHeapQ32kh6Screen12MailCategory = .text:0x80402C18; // type:function size:0x50 scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultBaseFP10JKRArchive = .text:0x80402C68; // type:function size:0xFC scope:global align:4 +doStart__Q32kh6Screen19ObjDayEndResultBaseFPCQ26Screen13StartSceneArg = .text:0x80402D64; // type:function size:0x98 scope:global align:4 +doUpdateFinish__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402DFC; // type:function size:0x44 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402E40; // type:function size:0xF4 scope:global align:4 +doUpdateFadeinFinish__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402F34; // type:function size:0x10 scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80402F44; // type:function size:0xFC scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultBaseFR8Graphics = .text:0x80403040; // type:function size:0x118 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80403158; // type:function size:0x280 scope:global align:4 +setFadeinFrm__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x804033D8; // type:function size:0x98 scope:global align:4 +setFadeoutFrm__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x80403470; // type:function size:0x98 scope:global align:4 +__ct__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80403508; // type:function size:0x144 scope:global align:4 +__dt__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x8040364C; // type:function size:0xAC scope:weak align:4 +doCreate__Q32kh6Screen19ObjDayEndResultItemFP10JKRArchive = .text:0x804036F8; // type:function size:0x7AC scope:global align:4 +doStart__Q32kh6Screen19ObjDayEndResultItemFPCQ26Screen13StartSceneArg = .text:0x80403EA4; // type:function size:0x108 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80403FAC; // type:function size:0x11C scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x804040C8; // type:function size:0x2CC scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404394; // type:function size:0x124 scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultItemFR8Graphics = .text:0x804044B8; // type:function size:0x6C4 scope:global align:4 +statusNormal__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404B7C; // type:function size:0x1D4 scope:global align:4 +statusScrollUp__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404D50; // type:function size:0xF4 scope:global align:4 +statusScrollDown__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404E44; // type:function size:0xF4 scope:global align:4 +statusForceScroll__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80404F38; // type:function size:0x1D4 scope:global align:4 +statusDrumRoll__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x8040510C; // type:function size:0x1C scope:global align:4 +statusTotalValue__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x80405128; // type:function size:0xC8 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x804051F0; // type:function size:0x3C8 scope:global align:4 +__ct__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x804055B8; // type:function size:0x19C scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultIncPFP10JKRArchive = .text:0x80405754; // type:function size:0x1374 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80406AC8; // type:function size:0x17C scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80406C44; // type:function size:0x47C scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x804070C0; // type:function size:0x184 scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultIncPFR8Graphics = .text:0x80407244; // type:function size:0x148 scope:global align:4 +statusNormal__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x8040738C; // type:function size:0x50 scope:global align:4 +statusFadeout__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x804073DC; // type:function size:0x100 scope:global align:4 +statusDecP__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x804074DC; // type:function size:0x50 scope:global align:4 +statusFadein__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x8040752C; // type:function size:0x64 scope:global align:4 +statusSlot__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407590; // type:function size:0x140 scope:global align:4 +statusDecPSlot__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x804076D0; // type:function size:0x19C scope:global align:4 +callIncPSE__Q32kh6Screen19ObjDayEndResultIncPFi = .text:0x8040786C; // type:function size:0x88 scope:global align:4 +callDecPSE__Q32kh6Screen19ObjDayEndResultIncPFi = .text:0x804078F4; // type:function size:0x4C scope:global align:4 +effectCommon__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407940; // type:function size:0x188 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x80407AC8; // type:function size:0x36C scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultMailFP10JKRArchive = .text:0x80407E34; // type:function size:0x8B4 scope:global align:4 +__ct__Q42kh6Screen19ObjDayEndResultMail11MailIconAnmFv = .text:0x804086E8; // type:function size:0x10 scope:weak align:4 +doStart__Q32kh6Screen19ObjDayEndResultMailFPCQ26Screen13StartSceneArg = .text:0x804086F8; // type:function size:0x170 scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80408868; // type:function size:0x1B8 scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80408A20; // type:function size:0x280 scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80408CA0; // type:function size:0x1B4 scope:global align:4 +statusNormal__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80408E54; // type:function size:0x214 scope:global align:4 +statusFadeoutToLeft__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409068; // type:function size:0xA8 scope:global align:4 +statusFadeinFromLeft__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409110; // type:function size:0x38 scope:global align:4 +statusFadeoutToRight__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409148; // type:function size:0xB8 scope:global align:4 +statusFadeinFromRight__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409200; // type:function size:0x38 scope:global align:4 +statusWaitOpen__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409238; // type:function size:0x12C scope:global align:4 +statusOpenW__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409364; // type:function size:0xD4 scope:global align:4 +statusOpenH__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409438; // type:function size:0xCC scope:global align:4 +changeMail__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409504; // type:function size:0x480 scope:global align:4 +changeAlpha__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409984; // type:function size:0x64 scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultMailFR8Graphics = .text:0x804099E8; // type:function size:0x1C4 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x80409BAC; // type:function size:0x288 scope:global align:4 +setCallBackMessage__Q32kh6Screen19ObjDayEndResultMailFPQ29P2DScreen3MgrP7J2DPane = .text:0x80409E34; // type:function size:0x3BC scope:global align:4 +setCallBackMessage__Q32kh6Screen19ObjDayEndResultMailFPQ29P2DScreen3Mgr = .text:0x8040A1F0; // type:function size:0x24 scope:global align:4 +skipped__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040A214; // type:function size:0x5C scope:global align:4 +__ct__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A270; // type:function size:0x68 scope:global align:4 +doCreate__Q32kh6Screen19ObjDayEndResultTitlFP10JKRArchive = .text:0x8040A2D8; // type:function size:0x1BC scope:global align:4 +doUpdateFadein__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A494; // type:function size:0x78 scope:global align:4 +doUpdate__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A50C; // type:function size:0x64 scope:global align:4 +doUpdateFadeout__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A570; // type:function size:0x74 scope:global align:4 +doUpdateFadeoutFinish__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A5E4; // type:function size:0xCC scope:global align:4 +doDraw__Q32kh6Screen19ObjDayEndResultTitlFR8Graphics = .text:0x8040A6B0; // type:function size:0x144 scope:global align:4 +updateCommon__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040A7F4; // type:function size:0xE0 scope:global align:4 +__ct__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040A8D4; // type:function size:0x48 scope:global align:4 +doUserCallBackFunc__Q32kh6Screen21SceneDayEndResultMailFPQ28Resource10MgrCommand = .text:0x8040A91C; // type:function size:0x58C scope:global align:4 +getResName__Q32kh6Screen21SceneDayEndResultMailCFv = .text:0x8040AEA8; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040AEB0; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040AEB8; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen21SceneDayEndResultMailFv = .text:0x8040AEC0; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen21SceneDayEndResultMailFP10JKRArchive = .text:0x8040AED4; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040AED8; // type:function size:0xAC scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x8040AF84; // type:function size:0xC4 scope:weak align:4 +getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B048; // type:function size:0x8 scope:weak align:4 +getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B050; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B058; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B060; // type:function size:0x8 scope:weak align:4 +getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B068; // type:function size:0x8 scope:weak align:4 +getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B070; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B078; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B080; // type:function size:0x8 scope:weak align:4 +getStarWTagNum__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B088; // type:function size:0x8 scope:weak align:4 +getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B090; // type:function size:0x8 scope:weak align:4 +getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv = .text:0x8040B098; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultItemFv = .text:0x8040B0A0; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen20SArgDayEndResultItemCFv = .text:0x8040B0A8; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultMailFv = .text:0x8040B0B0; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen20SArgDayEndResultMailCFv = .text:0x8040B0B8; // type:function size:0x8 scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x8040B0C0; // type:function size:0xC4 scope:weak align:4 +getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B184; // type:function size:0x8 scope:weak align:4 +getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B18C; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B194; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B19C; // type:function size:0x8 scope:weak align:4 +getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B1A4; // type:function size:0x8 scope:weak align:4 +getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B1AC; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B1B4; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B1BC; // type:function size:0x8 scope:weak align:4 +getStarWTagNum__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B1C4; // type:function size:0x8 scope:weak align:4 +getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B1CC; // type:function size:0x8 scope:weak align:4 +getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv = .text:0x8040B1D4; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultIncPFv = .text:0x8040B1DC; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen20SArgDayEndResultIncPCFv = .text:0x8040B1E4; // type:function size:0x8 scope:weak align:4 +getClassSize__Q32kh6Screen20SArgDayEndResultBaseFv = .text:0x8040B1EC; // type:function size:0x8 scope:weak align:4 +__dt__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x8040B1F4; // type:function size:0xC4 scope:weak align:4 +getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2B8; // type:function size:0x8 scope:weak align:4 +getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2C0; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2C8; // type:function size:0x8 scope:weak align:4 +getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2D0; // type:function size:0x8 scope:weak align:4 +getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2D8; // type:function size:0x8 scope:weak align:4 +getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2E0; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2E8; // type:function size:0x8 scope:weak align:4 +getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2F0; // type:function size:0x8 scope:weak align:4 +getStarWTagNum__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B2F8; // type:function size:0x8 scope:weak align:4 +getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B300; // type:function size:0x8 scope:weak align:4 +getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv = .text:0x8040B308; // type:function size:0x8 scope:weak align:4 +getSize__Q32kh6Screen20DispDayEndResultMailFv = .text:0x8040B310; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultMailFv = .text:0x8040B318; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultMailFv = .text:0x8040B320; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen20DispDayEndResultIncPFv = .text:0x8040B334; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultIncPFv = .text:0x8040B33C; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultIncPFv = .text:0x8040B344; // type:function size:0x14 scope:weak align:4 +getSize__Q32kh6Screen20DispDayEndResultItemFv = .text:0x8040B358; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen20DispDayEndResultItemFv = .text:0x8040B360; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen20DispDayEndResultItemFv = .text:0x8040B368; // type:function size:0x14 scope:weak align:4 +__sinit_khDayEndResult_cpp = .text:0x8040B37C; // type:function size:0xCC scope:local align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultBaseFv = .text:0x8040B448; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultItemFv = .text:0x8040B450; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultIncPFv = .text:0x8040B458; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultMailFv = .text:0x8040B460; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q32kh6Screen19ObjDayEndResultTitlFv = .text:0x8040B468; // type:function size:0x8 scope:weak align:4 +getSerialTagName__Q22kh6ScreenFUxi = .text:0x8040B470; // type:function size:0x4C scope:global align:4 +setTex__Q22kh6ScreenFP9J2DScreenUxPC7ResTIMG = .text:0x8040B4BC; // type:function size:0x50 scope:global align:4 +setTex__Q22kh6ScreenFP9J2DScreenUxPCc = .text:0x8040B50C; // type:function size:0x50 scope:global align:4 +setMatAnm__Q22kh6ScreenFP7J2DPaneP10J2DAnmBase = .text:0x8040B55C; // type:function size:0x210 scope:global align:4 +setInfAlpha__Q22kh6ScreenFP7J2DPane = .text:0x8040B76C; // type:function size:0x21C scope:global align:4 +getPaneCenterX__Q22kh6ScreenFP7J2DPane = .text:0x8040B988; // type:function size:0xEC scope:global align:4 +getPaneCenterY__Q22kh6ScreenFP7J2DPane = .text:0x8040BA74; // type:function size:0xEC scope:global align:4 +create__Q32kh6Screen14khUtilFadePaneFPQ29P2DScreen3MgrUxUc = .text:0x8040BB60; // type:function size:0xA4 scope:global align:4 +__ct__Q32kh6Screen14khUtilFadePaneFUc = .text:0x8040BC04; // type:function size:0x88 scope:global align:4 +update__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BC8C; // type:function size:0x104 scope:global align:4 +fadeout_finish__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BD90; // type:function size:0x4 scope:weak align:4 +add__Q32kh6Screen14khUtilFadePaneFP7J2DPane = .text:0x8040BD94; // type:function size:0xB8 scope:global align:4 +fadein__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BE4C; // type:function size:0x20 scope:global align:4 +fadeout__Q32kh6Screen14khUtilFadePaneFv = .text:0x8040BE6C; // type:function size:0x20 scope:global align:4 +set_init_alpha__Q32kh6Screen14khUtilFadePaneFUc = .text:0x8040BE8C; // type:function size:0x60 scope:global align:4 +__ct__Q32kh6Screen14khUtilColorAnmFPQ29P2DScreen3MgrUxii = .text:0x8040BEEC; // type:function size:0x158 scope:global align:4 +update__Q32kh6Screen14khUtilColorAnmFv = .text:0x8040C044; // type:function size:0x21C scope:global align:4 +do_update__Q32kh6Screen14khUtilColorAnmFv = .text:0x8040C260; // type:function size:0x4 scope:weak align:4 +__ct__Q32kh6Screen15DispFinalResultFPQ32kh6Screen15TotalResultDataQ42kh6Screen15DispFinalResult10ResultTypeP7JKRHeap = .text:0x8040C264; // type:function size:0x34 scope:global align:4 +__ct__Q32kh6Screen14ObjFinalResultFv = .text:0x8040C298; // type:function size:0x1A0 scope:global align:4 +doCreate__Q32kh6Screen14ObjFinalResultFP10JKRArchive = .text:0x8040C438; // type:function size:0xB8C scope:global align:4 +doUpdate__Q32kh6Screen14ObjFinalResultFv = .text:0x8040CFC4; // type:function size:0x1BC scope:global align:4 +doUpdateFadein__Q32kh6Screen14ObjFinalResultFv = .text:0x8040D180; // type:function size:0x7C scope:global align:4 +doUpdateFadeout__Q32kh6Screen14ObjFinalResultFv = .text:0x8040D1FC; // type:function size:0x6C scope:global align:4 +doDraw__Q32kh6Screen14ObjFinalResultFR8Graphics = .text:0x8040D268; // type:function size:0x3F0 scope:global align:4 +updateCommon__Q32kh6Screen14ObjFinalResultFv = .text:0x8040D658; // type:function size:0x5F4 scope:global align:4 +statusNormal__Q32kh6Screen14ObjFinalResultFv = .text:0x8040DC4C; // type:function size:0x3A4 scope:global align:4 +statusScrollUp__Q32kh6Screen14ObjFinalResultFv = .text:0x8040DFF0; // type:function size:0x8C scope:global align:4 +statusScrollDown__Q32kh6Screen14ObjFinalResultFv = .text:0x8040E07C; // type:function size:0x90 scope:global align:4 +statusForceScroll__Q32kh6Screen14ObjFinalResultFv = .text:0x8040E10C; // type:function size:0x1B8 scope:global align:4 +drawReplace__Q32kh6Screen14ObjFinalResultFR8Graphicsi = .text:0x8040E2C4; // type:function size:0x8C0 scope:global align:4 +getClr__Q32kh6Screen14ObjFinalResultFRCQ28JUtility6TColorRCQ28JUtility6TColorf = .text:0x8040EB84; // type:function size:0x128 scope:global align:4 +doUserCallBackFunc__Q32kh6Screen16SceneFinalResultFPQ28Resource10MgrCommand = .text:0x8040ECAC; // type:function size:0xD8 scope:global align:4 +createDispMember__Q32kh6Screen16SceneFinalResultFPCiPCiPPQ24Game9Highscore = .text:0x8040ED84; // type:function size:0x2E4 scope:global align:4 +getResName__Q32kh6Screen16SceneFinalResultCFv = .text:0x8040F068; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen16SceneFinalResultFv = .text:0x8040F070; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen16SceneFinalResultFv = .text:0x8040F078; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen16SceneFinalResultFv = .text:0x8040F080; // type:function size:0x10 scope:weak align:4 +doCreateObj__Q32kh6Screen16SceneFinalResultFP10JKRArchive = .text:0x8040F090; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen14ObjFinalResultFv = .text:0x8040F094; // type:function size:0xAC scope:weak align:4 +getSize__Q32kh6Screen15DispFinalResultFv = .text:0x8040F140; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen15DispFinalResultFv = .text:0x8040F148; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen15DispFinalResultFv = .text:0x8040F150; // type:function size:0x10 scope:weak align:4 +__sinit_khFinalResult_cpp = .text:0x8040F160; // type:function size:0xF4 scope:local align:4 +@24@__dt__Q32kh6Screen14ObjFinalResultFv = .text:0x8040F254; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen11DispPayDeptFQ42kh6Screen11DispPayDept11PayDeptTypei = .text:0x8040F25C; // type:function size:0x2C scope:global align:4 +doCreate__Q32kh6Screen10ObjPayDeptFP10JKRArchive = .text:0x8040F288; // type:function size:0x25C scope:global align:4 +doUpdateFadein__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F4E4; // type:function size:0xCC scope:global align:4 +doUpdate__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F5B0; // type:function size:0x20 scope:global align:4 +doUpdateFadeoutFinish__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F5D0; // type:function size:0xC0 scope:global align:4 +doDraw__Q32kh6Screen10ObjPayDeptFR8Graphics = .text:0x8040F690; // type:function size:0x64 scope:global align:4 +updateAnimation__Q32kh6Screen10ObjPayDeptFv = .text:0x8040F6F4; // type:function size:0xDC scope:global align:4 +searchNumPane__Q32kh6Screen10ObjPayDeptFP7J2DPaneii = .text:0x8040F7D0; // type:function size:0x31C scope:global align:4 +doUserCallBackFunc__Q32kh6Screen12ScenePayDeptFPQ28Resource10MgrCommand = .text:0x8040FAEC; // type:function size:0x15C scope:global align:4 +getResName__Q32kh6Screen12ScenePayDeptCFv = .text:0x8040FC48; // type:function size:0x8 scope:weak align:4 +isUseBackupSceneInfo__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FC50; // type:function size:0x8 scope:weak align:4 +getSceneType__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FC58; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FC60; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen12ScenePayDeptFv = .text:0x8040FC68; // type:function size:0x14 scope:weak align:4 +doCreateObj__Q32kh6Screen12ScenePayDeptFP10JKRArchive = .text:0x8040FC7C; // type:function size:0x4 scope:weak align:4 +__dt__Q32kh6Screen10ObjPayDeptFv = .text:0x8040FC80; // type:function size:0xAC scope:weak align:4 +getSize__Q32kh6Screen11DispPayDeptFv = .text:0x8040FD2C; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen11DispPayDeptFv = .text:0x8040FD34; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen11DispPayDeptFv = .text:0x8040FD3C; // type:function size:0x14 scope:weak align:4 +__sinit_khPayDept_cpp = .text:0x8040FD50; // type:function size:0xC scope:local align:4 +@24@__dt__Q32kh6Screen10ObjPayDeptFv = .text:0x8040FD5C; // type:function size:0x8 scope:weak align:4 +__ct__Q32kh6Screen10ObjWinLoseFv = .text:0x8040FD64; // type:function size:0xB8 scope:global align:4 +doCreate__Q32kh6Screen10ObjWinLoseFP10JKRArchive = .text:0x8040FE1C; // type:function size:0x418 scope:global align:4 +doUpdate__Q32kh6Screen10ObjWinLoseFv = .text:0x80410234; // type:function size:0x20 scope:global align:4 +doDraw__Q32kh6Screen10ObjWinLoseFR8Graphics = .text:0x80410254; // type:function size:0xB8 scope:global align:4 +updateAnimation__Q32kh6Screen10ObjWinLoseFv = .text:0x8041030C; // type:function size:0x38C scope:global align:4 +__dt__Q32kh6Screen10ObjWinLoseFv = .text:0x80410698; // type:function size:0xAC scope:weak align:4 +__sinit_khWinLose_cpp = .text:0x80410744; // type:function size:0x44 scope:local align:4 +@24@__dt__Q32kh6Screen10ObjWinLoseFv = .text:0x80410788; // type:function size:0x8 scope:weak align:4 +doCreate__Q32kh6Screen16ObjWinLoseReasonFP10JKRArchive = .text:0x80410790; // type:function size:0xCC scope:global align:4 +doUpdate__Q32kh6Screen16ObjWinLoseReasonFv = .text:0x8041085C; // type:function size:0x8 scope:global align:4 +doDraw__Q32kh6Screen16ObjWinLoseReasonFR8Graphics = .text:0x80410864; // type:function size:0x4 scope:global align:4 +__ct__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410868; // type:function size:0x60 scope:global align:4 +doCreateObj__Q32kh6Screen18SceneWinLoseReasonFP10JKRArchive = .text:0x804108C8; // type:function size:0x588 scope:global align:4 +doUpdateActive__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410E50; // type:function size:0xCC scope:global align:4 +doEnd__Q32kh6Screen18SceneWinLoseReasonFPQ26Screen11EndSceneArg = .text:0x80410F1C; // type:function size:0x20 scope:global align:4 +getResName__Q32kh6Screen18SceneWinLoseReasonCFv = .text:0x80410F3C; // type:function size:0xC scope:weak align:4 +getSceneType__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410F48; // type:function size:0x8 scope:weak align:4 +getOwnerID__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410F50; // type:function size:0x8 scope:weak align:4 +getMemberID__Q32kh6Screen18SceneWinLoseReasonFv = .text:0x80410F58; // type:function size:0x10 scope:weak align:4 +__dt__Q32kh6Screen16ObjWinLoseReasonFv = .text:0x80410F68; // type:function size:0xAC scope:weak align:4 +__sinit_khWinLoseReason_cpp = .text:0x80411014; // type:function size:0x40 scope:local align:4 +@24@__dt__Q32kh6Screen16ObjWinLoseReasonFv = .text:0x80411054; // type:function size:0x8 scope:weak align:4 +clear__Q32kh6Screen12MailSaveDataFv = .text:0x8041105C; // type:function size:0x9C scope:global align:4 +read__Q32kh6Screen12MailSaveDataFR6Stream = .text:0x804110F8; // type:function size:0x88 scope:global align:4 +write__Q32kh6Screen12MailSaveDataFR6Stream = .text:0x80411180; // type:function size:0x88 scope:global align:4 +set_history__Q32kh6Screen12MailSaveDataFSc = .text:0x80411208; // type:function size:0x28 scope:global align:4 +main = .text:0x80411230; // type:function size:0x50 scope:global align:4 +init__4NodeFv = .text:0x80411280; // type:function size:0x4 scope:global align:4 +displayInfo__4NodeFi = .text:0x80411284; // type:function size:0xB0 scope:global align:4 +update__4NodeFv = .text:0x80411334; // type:function size:0x64 scope:global align:4 +draw__4NodeFR8Graphics = .text:0x80411398; // type:function size:0x74 scope:global align:4 +__ct__5CNodeFv = .text:0x8041140C; // type:function size:0x30 scope:global align:4 +addHead__5CNodeFP5CNode = .text:0x8041143C; // type:function size:0x48 scope:global align:4 +add__5CNodeFP5CNode = .text:0x80411484; // type:function size:0xB0 scope:global align:4 +calcNextCount__5CNodeFv = .text:0x80411534; // type:function size:0x20 scope:global align:4 +concat__5CNodeFP5CNode = .text:0x80411554; // type:function size:0xB0 scope:global align:4 +__dt__5CNodeFv = .text:0x80411604; // type:function size:0x48 scope:global align:4 +del__5CNodeFv = .text:0x8041164C; // type:function size:0x98 scope:global align:4 +getChildCount__5CNodeFv = .text:0x804116E4; // type:function size:0x34 scope:global align:4 +getChildAt__5CNodeFi = .text:0x80411718; // type:function size:0x94 scope:global align:4 +pikmin2_sinf__Ff = .text:0x804117AC; // type:function size:0x68 scope:global align:4 +pikmin2_cosf__Ff = .text:0x80411814; // type:function size:0x44 scope:global align:4 +pikmin2_atan2f__Fff = .text:0x80411858; // type:function size:0x28 scope:global align:4 +pikmin2_sqrtf__Ff = .text:0x80411880; // type:function size:0x18 scope:global align:4 +qdist2__Fffff = .text:0x80411898; // type:function size:0x3C scope:global align:4 +CRSplineTangent__FfP10Vector3 = .text:0x804118D4; // type:function size:0xF4 scope:global align:4 +read__8BoundBoxFR6Stream = .text:0x804119C8; // type:function size:0x44 scope:global align:4 +read__10Vector3FR6Stream = .text:0x80411A0C; // type:function size:0x58 scope:global align:4 +write__10Vector3FR6Stream = .text:0x80411A64; // type:function size:0x58 scope:global align:4 +write__5PlaneFR6Stream = .text:0x80411ABC; // type:function size:0x64 scope:global align:4 +read__5PlaneFR6Stream = .text:0x80411B20; // type:function size:0x64 scope:global align:4 +write__6Color4FR6Stream = .text:0x80411B84; // type:function size:0x64 scope:global align:4 +read__6Color4FR6Stream = .text:0x80411BE8; // type:function size:0x64 scope:global align:4 +roundAng__Ff = .text:0x80411C4C; // type:function size:0x2C scope:global align:4 +angDist__Fff = .text:0x80411C78; // type:function size:0x74 scope:global align:4 +makeIdentity__8Matrix3fFv = .text:0x80411CEC; // type:function size:0x30 scope:global align:4 +calcEigenMatrix__8Matrix3fFR8Matrix3fR8Matrix3f = .text:0x80411D1C; // type:function size:0x728 scope:global align:4 +__ct__4QuatFv = .text:0x80412444; // type:function size:0x18 scope:global align:4 +__ct__4QuatFf10Vector3 = .text:0x8041245C; // type:function size:0x20 scope:global align:4 +__ml__FR4QuatR4Quat = .text:0x8041247C; // type:function size:0xFC scope:weak align:4 +set__4QuatFR10Vector3 = .text:0x80412578; // type:function size:0x264 scope:global align:4 +__ct__4QuatFR4Quat = .text:0x804127DC; // type:function size:0x24 scope:global align:4 +set__4QuatFffff = .text:0x80412800; // type:function size:0x14 scope:global align:4 +inverse__4QuatFv = .text:0x80412814; // type:function size:0xB4 scope:global align:4 +normalise__4QuatFv = .text:0x804128C8; // type:function size:0xA4 scope:global align:4 +slerp__4QuatFR4QuatfR4Quat = .text:0x8041296C; // type:function size:0x348 scope:global align:4 +fromMatrixf__4QuatFR7Matrixf = .text:0x80412CB4; // type:function size:0x33C scope:global align:4 +makeBoundSphere__8BoundBoxFRQ23Sys6Sphere = .text:0x80412FF0; // type:function size:0xC8 scope:global align:4 +transform__8BoundBoxFR7Matrixf = .text:0x804130B8; // type:function size:0x1EC scope:global align:4 +__sinit_sysMath_cpp = .text:0x804132A4; // type:function size:0x2C scope:local align:4 +isEof__4ID32Fv = .text:0x804132D0; // type:function size:0x1C scope:global align:4 +__ct__4ID32Fv = .text:0x804132EC; // type:function size:0x38 scope:global align:4 +__ct__4ID32FUl = .text:0x80413324; // type:function size:0x30 scope:global align:4 +setID__4ID32FUl = .text:0x80413354; // type:function size:0x24 scope:global align:4 +match__4ID32FUlc = .text:0x80413378; // type:function size:0xB8 scope:global align:4 +updateID__4ID32Fv = .text:0x80413430; // type:function size:0x24 scope:global align:4 +updateString__4ID32Fv = .text:0x80413454; // type:function size:0x2C scope:global align:4 +__as__4ID32FUl = .text:0x80413480; // type:function size:0x30 scope:global align:4 +__eq__4ID32FUl = .text:0x804134B0; // type:function size:0x14 scope:global align:4 +__ne__4ID32FUl = .text:0x804134C4; // type:function size:0x18 scope:global align:4 +write__4ID32FR6Stream = .text:0x804134DC; // type:function size:0x90 scope:global align:4 +read__4ID32FR6Stream = .text:0x8041356C; // type:function size:0xEC scope:global align:4 +print__4ID32Fv = .text:0x80413658; // type:function size:0x4 scope:global align:4 +sprint__4ID32FPc = .text:0x8041365C; // type:function size:0x38 scope:global align:4 +__sinit_id32_cpp = .text:0x80413694; // type:function size:0x40 scope:local align:4 +__ct__8BaseParmFP10ParametersUlPc = .text:0x804136D4; // type:function size:0xAC scope:global align:4 +write__10ParametersFR6Stream = .text:0x80413780; // type:function size:0xEC scope:global align:4 +write__8BaseParmFR6Stream = .text:0x8041386C; // type:function size:0x4 scope:weak align:4 +read__10ParametersFR6Stream = .text:0x80413870; // type:function size:0xC8 scope:global align:4 +read__8BaseParmFR6Stream = .text:0x80413938; // type:function size:0x4 scope:weak align:4 +findParm__10ParametersFUl = .text:0x8041393C; // type:function size:0x64 scope:global align:4 +read__7ParmFR6Stream = .text:0x804139A0; // type:function size:0x34 scope:global align:4 +write__7ParmFR6Stream = .text:0x804139D4; // type:function size:0x2C scope:global align:4 +read__8ParmFR6Stream = .text:0x80413A00; // type:function size:0x34 scope:global align:4 +write__8ParmFR6Stream = .text:0x80413A34; // type:function size:0x2C scope:global align:4 +read__7ParmFR6Stream = .text:0x80413A60; // type:function size:0x44 scope:global align:4 +write__7ParmFR6Stream = .text:0x80413AA4; // type:function size:0x34 scope:global align:4 +read__7ParmFR6Stream = .text:0x80413AD8; // type:function size:0x34 scope:global align:4 +write__7ParmFR6Stream = .text:0x80413B0C; // type:function size:0x28 scope:global align:4 +__ct__10ParmStringFP10ParametersPciUlPc = .text:0x80413B34; // type:function size:0x1B0 scope:global align:4 +write__10ParmStringFR6Stream = .text:0x80413CE4; // type:function size:0x2C scope:global align:4 +read__10ParmStringFR6Stream = .text:0x80413D10; // type:function size:0x30 scope:global align:4 +__ct__8ParmEnumFP10ParametersPPcUlilPc = .text:0x80413D40; // type:function size:0xB8 scope:global align:4 +write__8ParmEnumFR6Stream = .text:0x80413DF8; // type:function size:0x2C scope:global align:4 +read__8ParmEnumFR6Stream = .text:0x80413E24; // type:function size:0x34 scope:global align:4 +size__8ParmEnumFv = .text:0x80413E58; // type:function size:0x8 scope:weak align:4 +size__10ParmStringFv = .text:0x80413E60; // type:function size:0x8 scope:weak align:4 +eof__6StreamFv = .text:0x80413E68; // type:function size:0x8 scope:weak align:4 +getNextToken__6StreamFv = .text:0x80413E70; // type:function size:0x228 scope:global align:4 +textBeginGroup__6StreamFPc = .text:0x80414098; // type:function size:0x84 scope:global align:4 +textEndGroup__6StreamFv = .text:0x8041411C; // type:function size:0x58 scope:global align:4 +printf__6StreamFPce = .text:0x80414174; // type:function size:0xE4 scope:global align:4 +textWriteText__6StreamFPce = .text:0x80414258; // type:function size:0xEC scope:global align:4 +skipReading__6StreamFUl = .text:0x80414344; // type:function size:0xC4 scope:global align:4 +skipReadingText__6StreamFv = .text:0x80414408; // type:function size:0xA8 scope:global align:4 +textWriteTab__6StreamFi = .text:0x804144B0; // type:function size:0x68 scope:global align:4 +readByte__6StreamFv = .text:0x80414518; // type:function size:0x278 scope:global align:4 +_readByte__6StreamFv = .text:0x80414790; // type:function size:0x50 scope:global align:4 +readShort__6StreamFv = .text:0x804147E0; // type:function size:0x32C scope:global align:4 +readInt__6StreamFv = .text:0x80414B0C; // type:function size:0x31C scope:global align:4 +readFloat__6StreamFv = .text:0x80414E28; // type:function size:0x328 scope:global align:4 +readString__6StreamFPci = .text:0x80415150; // type:function size:0x4F8 scope:global align:4 +writeString__6StreamFPc = .text:0x80415648; // type:function size:0xA4 scope:global align:4 +writeByte__6StreamFUc = .text:0x804156EC; // type:function size:0x70 scope:global align:4 +_writeByte__6StreamFUc = .text:0x8041575C; // type:function size:0x50 scope:global align:4 +writeShort__6StreamFs = .text:0x804157AC; // type:function size:0x90 scope:global align:4 +writeInt__6StreamFi = .text:0x8041583C; // type:function size:0x88 scope:global align:4 +writeFloat__6StreamFf = .text:0x804158C4; // type:function size:0xB0 scope:global align:4 +__ct__9RamStreamFPvi = .text:0x80415974; // type:function size:0x50 scope:global align:4 +read__9RamStreamFPvi = .text:0x804159C4; // type:function size:0x94 scope:global align:4 +write__9RamStreamFPvi = .text:0x80415A58; // type:function size:0x94 scope:global align:4 +eof__9RamStreamFv = .text:0x80415AEC; // type:function size:0x2C scope:global align:4 +getPending__6StreamFv = .text:0x80415B18; // type:function size:0x8 scope:weak align:4 +getAxisVector__Q23Sys4TubeFR10Vector3 = .text:0x80415B20; // type:function size:0xB4 scope:global align:4 +collide__Q23Sys4TubeFRQ23Sys6SphereR10Vector3Rf = .text:0x80415BD4; // type:function size:0x27C scope:global align:4 +getPosRatio__Q23Sys4TubeFRC10Vector3 = .text:0x80415E50; // type:function size:0xF4 scope:global align:4 +setPos__Q23Sys4TubeFf = .text:0x80415F44; // type:function size:0x4C scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys6Sphere = .text:0x80415F90; // type:function size:0x58 scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys6SphereR10Vector3 = .text:0x80415FE8; // type:function size:0x120 scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys4EdgeRf = .text:0x80416108; // type:function size:0x204 scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys4EdgeRfR10Vector3 = .text:0x8041630C; // type:function size:0x28C scope:global align:4 +intersect__Q23Sys6SphereFRQ23Sys4EdgeRfR10Vector3Rf = .text:0x80416598; // type:function size:0x3D4 scope:global align:4 +__ct__Q23Sys8TriangleFv = .text:0x8041696C; // type:function size:0x68 scope:global align:4 +createSphere__Q23Sys8TriangleFRQ23Sys11VertexTable = .text:0x804169D4; // type:function size:0x168 scope:global align:4 +fastIntersect__Q23Sys8TriangleFRQ23Sys6Sphere = .text:0x80416B3C; // type:function size:0x84 scope:global align:4 +calcDist__Q23Sys8TriangleFR5PlaneRQ23Sys11VertexTable = .text:0x80416BC0; // type:function size:0x104 scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys4EdgefR10Vector3 = .text:0x80416CC4; // type:function size:0x334 scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys4EdgefR10Vector3Rf = .text:0x80416FF8; // type:function size:0x370 scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6Sphere = .text:0x80417368; // type:function size:0x2AC scope:global align:4 +intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6SphereR10Vector3 = .text:0x80417614; // type:function size:0x2F8 scope:global align:4 +intersectHard__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6SphereR10Vector3 = .text:0x8041790C; // type:function size:0x2F8 scope:global align:4 +insideXZ__Q23Sys8TriangleFR10Vector3 = .text:0x80417C04; // type:function size:0xEC scope:global align:4 +makePlanes__Q23Sys8TriangleFRQ23Sys11VertexTable = .text:0x80417CF0; // type:function size:0x4C8 scope:global align:4 +condition__Q23Sys16RayIntersectInfoFRQ23Sys8Triangle = .text:0x804181B8; // type:function size:0x40 scope:global align:4 +createTriangles__Q23Sys11GridDividerFRQ23Sys17CreateTriangleArg = .text:0x804181F8; // type:function size:0x428 scope:global align:4 +getMinY__Q23Sys11GridDividerFR10Vector3 = .text:0x80418620; // type:function size:0x1D8 scope:global align:4 +getCurrTri__Q23Sys11GridDividerFRQ24Game11CurrTriInfo = .text:0x804187F8; // type:function size:0x234 scope:global align:4 +findTriLists__Q23Sys11GridDividerFRQ23Sys6Sphere = .text:0x80418A2C; // type:function size:0x230 scope:global align:4 +create__Q23Sys11GridDividerFR8BoundBoxiiPQ23Sys11VertexTablePQ23Sys13TriangleTable = .text:0x80418C5C; // type:function size:0x45C scope:global align:4 +__ct__Q23Sys12TriIndexListFv = .text:0x804190B8; // type:function size:0x88 scope:weak align:4 +write__31ArrayContainerFR6Stream = .text:0x80419140; // type:function size:0xD4 scope:weak align:4 +writeObject__31ArrayContainerFR6StreamRQ23Sys8Triangle = .text:0x80419214; // type:function size:0x4 scope:weak align:4 +read__Q23Sys11GridDividerFR6Stream = .text:0x80419218; // type:function size:0x248 scope:global align:4 +read__31ArrayContainerFR6Stream = .text:0x80419460; // type:function size:0xB0 scope:weak align:4 +readObject__31ArrayContainerFR6StreamRQ23Sys8Triangle = .text:0x80419510; // type:function size:0x4 scope:weak align:4 +createTriangleSphere__Q23Sys13TriangleTableFRQ23Sys11VertexTable = .text:0x80419514; // type:function size:0x74 scope:global align:4 +constructClone__Q23Sys12TriIndexListFRQ23Sys13TriangleTable = .text:0x80419588; // type:function size:0x88 scope:global align:4 +getMinMax__Q23Sys12TriIndexListFRQ23Sys11VertexTableRQ23Sys13TriangleTableR10Vector3R10Vector3RfRf = .text:0x80419610; // type:function size:0x150 scope:global align:4 +makeCovarianceMatrix__Q23Sys12TriIndexListFRQ23Sys11VertexTableRQ23Sys13TriangleTableR8Matrix3fR10Vector3 = .text:0x80419760; // type:function size:0x294 scope:global align:4 +draw__Q23Sys12TriIndexListFR8GraphicsRQ23Sys11VertexTableRQ23Sys13TriangleTableb = .text:0x804199F4; // type:function size:0x4 scope:global align:4 +__ct__Q23Sys13TriangleTableFv = .text:0x804199F8; // type:function size:0x7C scope:global align:4 +__dt__31ArrayContainerFv = .text:0x80419A74; // type:function size:0x80 scope:weak align:4 +__dt__26ContainerFv = .text:0x80419AF4; // type:function size:0x70 scope:weak align:4 +transform__Q23Sys11VertexTableFR7Matrixf = .text:0x80419B64; // type:function size:0x13C scope:global align:4 +write__Q23Sys11VertexTableFR6Stream = .text:0x80419CA0; // type:function size:0xD4 scope:global align:4 +writeObject__Q23Sys11VertexTableFR6StreamR10Vector3 = .text:0x80419D74; // type:function size:0x24 scope:global align:4 +__dt__Q23Sys11VertexTableFv = .text:0x80419D98; // type:function size:0x90 scope:weak align:4 +readObject__Q23Sys11VertexTableFR6StreamR10Vector3 = .text:0x80419E28; // type:function size:0x24 scope:weak align:4 +__dt__Q23Sys13TriangleTableFv = .text:0x80419E4C; // type:function size:0x90 scope:weak align:4 +readObject__Q23Sys13TriangleTableFR6StreamRQ23Sys8Triangle = .text:0x80419EDC; // type:function size:0x88 scope:weak align:4 +writeObject__Q23Sys13TriangleTableFR6StreamRQ23Sys8Triangle = .text:0x80419F64; // type:function size:0x88 scope:weak align:4 +getBoundBox__Q23Sys11GridDividerFR8BoundBox = .text:0x80419FEC; // type:function size:0x34 scope:weak align:4 +setArray__31ArrayContainerFPQ23Sys8Trianglei = .text:0x8041A020; // type:function size:0x10 scope:weak align:4 +get__31ArrayContainerFPv = .text:0x8041A030; // type:function size:0x10 scope:weak align:4 +getNext__31ArrayContainerFPv = .text:0x8041A040; // type:function size:0x8 scope:weak align:4 +getStart__31ArrayContainerFv = .text:0x8041A048; // type:function size:0x8 scope:weak align:4 +getEnd__31ArrayContainerFv = .text:0x8041A050; // type:function size:0x8 scope:weak align:4 +getAt__31ArrayContainerFi = .text:0x8041A058; // type:function size:0x10 scope:weak align:4 +getTo__31ArrayContainerFv = .text:0x8041A068; // type:function size:0x8 scope:weak align:4 +getObject__26ContainerFPv = .text:0x8041A070; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x8041A09C; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x8041A0A4; // type:function size:0x8 scope:weak align:4 +getCurrTri__12MapCollisionFRQ24Game11CurrTriInfo = .text:0x8041A0AC; // type:function size:0x30 scope:global align:4 +read__12MapCollisionFR6Stream = .text:0x8041A0DC; // type:function size:0xB4 scope:global align:4 +clone__12MapCollisionFR7Matrixf = .text:0x8041A190; // type:function size:0x7C scope:global align:4 +isVisible__9CullPlaneFRQ23Sys6Sphere = .text:0x8041A20C; // type:function size:0x70 scope:global align:4 +isCylinderVisible__9CullPlaneFRQ23Sys8Cylinder = .text:0x8041A27C; // type:function size:0x88 scope:global align:4 +getUpVector__11CullFrustumFv = .text:0x8041A304; // type:function size:0x20 scope:global align:4 +getSideVector__11CullFrustumFv = .text:0x8041A324; // type:function size:0x2C scope:global align:4 +getViewVector__11CullFrustumFv = .text:0x8041A350; // type:function size:0x2C scope:global align:4 +getPosition__11CullFrustumFv = .text:0x8041A37C; // type:function size:0x74 scope:global align:4 +updatePlanes__11CullFrustumFv = .text:0x8041A3F0; // type:function size:0x2D4 scope:global align:4 +__ct__6CameraFv = .text:0x8041A6C4; // type:function size:0x158 scope:global align:4 +__dt__11CullFrustumFv = .text:0x8041A81C; // type:function size:0xA0 scope:weak align:4 +setFixNearFar__6CameraFbff = .text:0x8041A8BC; // type:function size:0x18 scope:global align:4 +copyFrom__6CameraFP6Camera = .text:0x8041A8D4; // type:function size:0xA8 scope:global align:4 +updatePlanes__6CameraFv = .text:0x8041A97C; // type:function size:0x198 scope:global align:4 +getLookAtPosition__6CameraFv = .text:0x8041AB14; // type:function size:0xB0 scope:global align:4 +getLookAtPosition___6CameraFv = .text:0x8041ABC4; // type:function size:0x20 scope:weak align:4 +isRunning__Q34Game5P2JST12ObjectCameraFv = .text:0x8041ABE4; // type:function size:0x8 scope:weak align:4 +getPosition__6CameraFv = .text:0x8041ABEC; // type:function size:0x108 scope:global align:4 +getPositionPtr__6CameraFv = .text:0x8041ACF4; // type:function size:0x8C scope:global align:4 +on_getPositionPtr__6CameraFv = .text:0x8041AD80; // type:function size:0x8 scope:weak align:4 +getNear__6CameraFv = .text:0x8041AD88; // type:function size:0x1C scope:global align:4 +getFar__6CameraFv = .text:0x8041ADA4; // type:function size:0x1C scope:global align:4 +setProjection__6CameraFv = .text:0x8041ADC0; // type:function size:0x70 scope:global align:4 +update__6CameraFv = .text:0x8041AE30; // type:function size:0x128 scope:global align:4 +updateMatrix__6CameraFv = .text:0x8041AF58; // type:function size:0x4 scope:weak align:4 +getViewMatrix__6CameraFb = .text:0x8041AF5C; // type:function size:0x18 scope:global align:4 +calcProperDistance__6CameraFff = .text:0x8041AF74; // type:function size:0x120 scope:global align:4 +updateScreenConstants__6CameraFv = .text:0x8041B094; // type:function size:0xE0 scope:global align:4 +calcScreenSize__6CameraFRQ23Sys6Sphere = .text:0x8041B174; // type:function size:0xB8 scope:global align:4 +updateSoundCamera__6CameraFf = .text:0x8041B22C; // type:function size:0x2E8 scope:global align:4 +__ct__12LookAtCameraFv = .text:0x8041B514; // type:function size:0x1AC scope:global align:4 +__dt__6CameraFv = .text:0x8041B6C0; // type:function size:0xB0 scope:weak align:4 +updateMatrix__12LookAtCameraFv = .text:0x8041B770; // type:function size:0x34 scope:global align:4 +__ct__11BlendCameraFiPP6Camera = .text:0x8041B7A4; // type:function size:0x180 scope:global align:4 +setCameras__11BlendCameraFPP6Camera = .text:0x8041B924; // type:function size:0x8C scope:global align:4 +setBlendFactor__11BlendCameraFf = .text:0x8041B9B0; // type:function size:0x60 scope:global align:4 +doUpdate__11BlendCameraFv = .text:0x8041BA10; // type:function size:0x2A8 scope:global align:4 +__dt__11BlendCameraFv = .text:0x8041BCB8; // type:function size:0xC0 scope:weak align:4 +getViewMatrix__11CullFrustumFb = .text:0x8041BD78; // type:function size:0x8 scope:weak align:4 +__sinit_camera_cpp = .text:0x8041BD80; // type:function size:0x28 scope:local align:4 +doRead__7TagParmFR6Stream = .text:0x8041BDA8; // type:function size:0x4 scope:weak align:4 +doWrite__7TagParmFR6Stream = .text:0x8041BDAC; // type:function size:0x4 scope:weak align:4 +doDump__7TagParmFv = .text:0x8041BDB0; // type:function size:0x4 scope:weak align:4 +doRead__14PrimTagParmFR6Stream = .text:0x8041BDB4; // type:function size:0x34 scope:global align:4 +doWrite__14PrimTagParmFR6Stream = .text:0x8041BDE8; // type:function size:0x2C scope:global align:4 +doDump__14PrimTagParmFv = .text:0x8041BE14; // type:function size:0x4 scope:global align:4 +doRead__15PrimTagParmFR6Stream = .text:0x8041BE18; // type:function size:0x34 scope:global align:4 +doWrite__15PrimTagParmFR6Stream = .text:0x8041BE4C; // type:function size:0x2C scope:global align:4 +doDump__15PrimTagParmFv = .text:0x8041BE78; // type:function size:0x4 scope:global align:4 +doRead__15PrimTagParmFR6Stream = .text:0x8041BE7C; // type:function size:0x78 scope:global align:4 +doWrite__15PrimTagParmFR6Stream = .text:0x8041BEF4; // type:function size:0x6C scope:global align:4 +doDump__15PrimTagParmFv = .text:0x8041BF60; // type:function size:0x4 scope:global align:4 +doRead__14PrimTagParmFR6Stream = .text:0x8041BF64; // type:function size:0x34 scope:global align:4 +doWrite__14PrimTagParmFR6Stream = .text:0x8041BF98; // type:function size:0x28 scope:global align:4 +doDump__14PrimTagParmFv = .text:0x8041BFC0; // type:function size:0x4 scope:global align:4 +doRead__25PrimTagParm<10Vector3>FR6Stream = .text:0x8041BFC4; // type:function size:0x24 scope:global align:4 +doWrite__25PrimTagParm<10Vector3>FR6Stream = .text:0x8041BFE8; // type:function size:0x24 scope:global align:4 +doDump__25PrimTagParm<10Vector3>Fv = .text:0x8041C00C; // type:function size:0x4 scope:global align:4 +__ct__13StringTagParmFP13TagParametersPc = .text:0x8041C010; // type:function size:0x44 scope:global align:4 +flushValue__13StringTagParmFv = .text:0x8041C054; // type:function size:0x4 scope:global align:4 +doRead__13StringTagParmFR6Stream = .text:0x8041C058; // type:function size:0x3C scope:global align:4 +doWrite__13StringTagParmFR6Stream = .text:0x8041C094; // type:function size:0x2C scope:global align:4 +doDump__13StringTagParmFv = .text:0x8041C0C0; // type:function size:0x4 scope:global align:4 +__ct__13TagParametersFPc = .text:0x8041C0C4; // type:function size:0x54 scope:global align:4 +__ct__7TagParmFP13TagParametersPc = .text:0x8041C118; // type:function size:0x38 scope:global align:4 +read__13TagParametersFR6Stream = .text:0x8041C150; // type:function size:0xD4 scope:global align:4 +__ct__8BitFlagsFv = .text:0x8041C224; // type:function size:0x10 scope:global align:4 +dump__8BitFlagsFv = .text:0x8041C234; // type:function size:0x50 scope:global align:4 +read__8BitFlagsFR6Stream = .text:0x8041C284; // type:function size:0x64 scope:global align:4 +write__8BitFlagsFR6Stream = .text:0x8041C2E8; // type:function size:0x64 scope:global align:4 +create__8BitFlagsFUsPUc = .text:0x8041C34C; // type:function size:0x54 scope:global align:4 +reset__8BitFlagsFv = .text:0x8041C3A0; // type:function size:0x28 scope:global align:4 +all_zero__8BitFlagsFv = .text:0x8041C3C8; // type:function size:0x28 scope:global align:4 +all_one__8BitFlagsFv = .text:0x8041C3F0; // type:function size:0x28 scope:global align:4 +setFlag__8BitFlagsFUs = .text:0x8041C418; // type:function size:0x30 scope:global align:4 +resetFlag__8BitFlagsFUs = .text:0x8041C448; // type:function size:0x30 scope:global align:4 +isFlag__8BitFlagsFUs = .text:0x8041C478; // type:function size:0x38 scope:global align:4 +getAttribute__Q27MapCode4CodeFv = .text:0x8041C4B0; // type:function size:0xC scope:global align:4 +getSlipCode__Q27MapCode4CodeFv = .text:0x8041C4BC; // type:function size:0xC scope:global align:4 +isBald__Q27MapCode4CodeFv = .text:0x8041C4C8; // type:function size:0xC scope:global align:4 +setCode__Q27MapCode4CodeFiib = .text:0x8041C4D4; // type:function size:0x24 scope:global align:4 +__ct__Q27MapCode3MgrFv = .text:0x8041C4F8; // type:function size:0x7C scope:global align:4 +__dt__Q37MapCode3Mgr9CodeArrayFv = .text:0x8041C574; // type:function size:0x90 scope:weak align:4 +__dt__31ArrayContainerFv = .text:0x8041C604; // type:function size:0x80 scope:weak align:4 +__dt__26ContainerFv = .text:0x8041C684; // type:function size:0x70 scope:weak align:4 +write__31ArrayContainerFR6Stream = .text:0x8041C6F4; // type:function size:0xE4 scope:weak align:4 +writeObject__31ArrayContainerFR6StreamRQ27MapCode4Code = .text:0x8041C7D8; // type:function size:0x4 scope:weak align:4 +read__Q27MapCode3MgrFR6Stream = .text:0x8041C7DC; // type:function size:0x2C scope:global align:4 +read__31ArrayContainerFR6Stream = .text:0x8041C808; // type:function size:0xA0 scope:weak align:4 +readObject__31ArrayContainerFR6StreamRQ27MapCode4Code = .text:0x8041C8A8; // type:function size:0x4 scope:weak align:4 +alloc__31ArrayContainerFi = .text:0x8041C8AC; // type:function size:0x4C scope:weak align:4 +attachCodes__Q27MapCode3MgrFPQ23Sys13TriangleTable = .text:0x8041C8F8; // type:function size:0x44 scope:global align:4 +writeObject__Q37MapCode3Mgr9CodeArrayFR6StreamRQ27MapCode4Code = .text:0x8041C93C; // type:function size:0x2C scope:global align:4 +readObject__Q37MapCode3Mgr9CodeArrayFR6StreamRQ27MapCode4Code = .text:0x8041C968; // type:function size:0x34 scope:global align:4 +addOne__31ArrayContainerFRQ27MapCode4Code = .text:0x8041C99C; // type:function size:0x28 scope:weak align:4 +setArray__31ArrayContainerFPQ27MapCode4Codei = .text:0x8041C9C4; // type:function size:0x10 scope:weak align:4 +get__31ArrayContainerFPv = .text:0x8041C9D4; // type:function size:0xC scope:weak align:4 +getNext__31ArrayContainerFPv = .text:0x8041C9E0; // type:function size:0x8 scope:weak align:4 +getStart__31ArrayContainerFv = .text:0x8041C9E8; // type:function size:0x8 scope:weak align:4 +getEnd__31ArrayContainerFv = .text:0x8041C9F0; // type:function size:0x8 scope:weak align:4 +getAt__31ArrayContainerFi = .text:0x8041C9F8; // type:function size:0xC scope:weak align:4 +getTo__31ArrayContainerFv = .text:0x8041CA04; // type:function size:0x8 scope:weak align:4 +getObject__26ContainerFPv = .text:0x8041CA0C; // type:function size:0x2C scope:weak align:4 +getAt__26ContainerFi = .text:0x8041CA38; // type:function size:0x8 scope:weak align:4 +getTo__26ContainerFv = .text:0x8041CA40; // type:function size:0x8 scope:weak align:4 +intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ33Sys8Triangle11SphereSweep = .text:0x8041CA48; // type:function size:0x4F0 scope:global align:4 +clone__Q23Sys7OBBTreeFR7Matrixf = .text:0x8041CF38; // type:function size:0x170 scope:global align:4 +create2__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTableR8Matrix3fR8Matrix3fR10Vector3 = .text:0x8041D0A8; // type:function size:0x704 scope:global align:4 +autoDivide__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTableii = .text:0x8041D7AC; // type:function size:0x2D8 scope:global align:4 +getNum__17ArrayContainerFv = .text:0x8041DA84; // type:function size:0x8 scope:weak align:4 +determineDivPlane__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTable = .text:0x8041DA8C; // type:function size:0x1C4 scope:global align:4 +divide__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTable = .text:0x8041DC50; // type:function size:0x480 scope:global align:4 +__ct__Q23Sys7OBBTreeFv = .text:0x8041E0D0; // type:function size:0x144 scope:global align:4 +getCurrTri__Q23Sys7OBBTreeFRQ24Game11CurrTriInfo = .text:0x8041E214; // type:function size:0x2C scope:global align:4 +getCurrTri__Q23Sys3OBBFRQ24Game11CurrTriInfo = .text:0x8041E240; // type:function size:0x498 scope:global align:4 +calcDist__5PlaneCFRC10Vector3 = .text:0x8041E6D8; // type:function size:0x30 scope:weak align:4 +isLeaf__Q23Sys3OBBFv = .text:0x8041E708; // type:function size:0x28 scope:weak align:4 +getCurrTriTriList__Q23Sys3OBBFRQ24Game11CurrTriInfo = .text:0x8041E730; // type:function size:0x118 scope:global align:4 +construct__Q23Sys7OBBTreeFPQ23Sys11VertexTablePQ23Sys13TriangleTableii = .text:0x8041E848; // type:function size:0xB4 scope:global align:4 +read__Q23Sys7OBBTreeFR6Stream = .text:0x8041E8FC; // type:function size:0x118 scope:global align:4 +readWithoutVerts__Q23Sys7OBBTreeFR6StreamRQ23Sys11VertexTable = .text:0x8041EA14; // type:function size:0x78 scope:global align:4 +traceMove__Q23Sys7OBBTreeFR7MatrixfR7MatrixfRQ24Game8MoveInfof = .text:0x8041EA8C; // type:function size:0x24 scope:global align:4 +traceMove_global__Q23Sys7OBBTreeFRQ24Game8MoveInfof = .text:0x8041EAB0; // type:function size:0x24 scope:global align:4 +findRayIntersection__Q23Sys7OBBTreeFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf = .text:0x8041EAD4; // type:function size:0x214 scope:global align:4 +findRayIntersection__Q23Sys3OBBFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf = .text:0x8041ECE8; // type:function size:0x5C0 scope:global align:4 +findRayIntersectionTriList__Q23Sys3OBBFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf = .text:0x8041F2A8; // type:function size:0x114 scope:global align:4 +findTriLists__Q23Sys3OBBFRQ23Sys6Sphere = .text:0x8041F3BC; // type:function size:0x178 scope:global align:4 +getMinY__Q23Sys7OBBTreeFR10Vector3 = .text:0x8041F534; // type:function size:0x2C scope:global align:4 +getMinY__Q23Sys3OBBFR10Vector3RQ23Sys13TriangleTablef = .text:0x8041F560; // type:function size:0x6C0 scope:global align:4 +getMinYTriList__Q23Sys3OBBFR10Vector3RQ23Sys13TriangleTable = .text:0x8041FC20; // type:function size:0xB4 scope:global align:4 +read__Q23Sys3OBBFR6Stream = .text:0x8041FCD4; // type:function size:0x320 scope:global align:4 +findTriLists__Q23Sys7OBBTreeFRQ23Sys6Sphere = .text:0x8041FFF4; // type:function size:0x24 scope:weak align:4 +getBoundBox__Q23Sys7OBBTreeFR8BoundBox = .text:0x80420018; // type:function size:0x4 scope:weak align:4 +do_clone__Q23Sys10TriDividerFR7MatrixfPQ23Sys11VertexTablePQ23Sys13TriangleTable = .text:0x8042001C; // type:function size:0x8 scope:weak align:4 +traceMove_new__Q23Sys7OBBTreeFR7MatrixfR7MatrixfRQ24Game8MoveInfof = .text:0x80420024; // type:function size:0x1C0 scope:global align:4 +traceMoveTriList_new__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableR7MatrixfR7MatrixfRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x804201E4; // type:function size:0x2FC scope:global align:4 +traceMove_new__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableR7MatrixfR7MatrixfRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x804204E0; // type:function size:0x7F0 scope:global align:4 +traceMove_new_global__Q23Sys7OBBTreeFRQ24Game8MoveInfof = .text:0x80420CD0; // type:function size:0x98 scope:global align:4 +traceMoveTriList_new_global__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x80420D68; // type:function size:0x24C scope:global align:4 +traceMove_new_global__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableRiPPQ23Sys8TrianglePfP10Vector3 = .text:0x80420FB4; // type:function size:0x6F0 scope:global align:4 +__ct__Q23Sys8CylinderFRC10Vector3RC10Vector3ff = .text:0x804216A4; // type:function size:0x3C scope:global align:4 +set__Q23Sys8CylinderFRC10Vector3RC10Vector3f = .text:0x804216E0; // type:function size:0x100 scope:global align:4 +culled__Q23Sys8CylinderFRC5Plane = .text:0x804217E0; // type:function size:0x190 scope:global align:4 +intersect__Q23Sys8CylinderFRCQ23Sys8TriangleRf = .text:0x80421970; // type:function size:0x1D8 scope:global align:4 +clone__Q23Sys10TriDividerFR7Matrixf = .text:0x80421B48; // type:function size:0x120 scope:global align:4 +cloneFrom__Q23Sys11VertexTableFR7MatrixfPQ23Sys11VertexTable = .text:0x80421C68; // type:function size:0x160 scope:global align:4 +cloneFrom__Q23Sys13TriangleTableFR7MatrixfPQ23Sys13TriangleTablePQ23Sys11VertexTable = .text:0x80421DC8; // type:function size:0xB4 scope:global align:4 +do_clone__Q23Sys11GridDividerFR7MatrixfPQ23Sys11VertexTablePQ23Sys13TriangleTable = .text:0x80421E7C; // type:function size:0xC4 scope:global align:4 +Pikmin2DefaultMemoryErrorRoutine__FPvUli = .text:0x80421F40; // type:function size:0xA0 scope:local align:4 +kando_panic_f__FbPCciPCce = .text:0x80421FE0; // type:function size:0x188 scope:local align:4 +preUserCallback__FUsP9OSContextUlUl = .text:0x80422168; // type:function size:0x118 scope:local align:4 +myTask__FPv = .text:0x80422280; // type:function size:0x2C scope:global align:4 +__ct__Q26System20FragmentationCheckerFPcb = .text:0x804222AC; // type:function size:0x54 scope:global align:4 +__dt__Q26System20FragmentationCheckerFv = .text:0x80422300; // type:function size:0x5C scope:global align:4 +assert_fragmentation__6SystemFPc = .text:0x8042235C; // type:function size:0x3C scope:global align:4 +enableCPULockDetector__6SystemFi = .text:0x80422398; // type:function size:0x10 scope:global align:4 +disableCPULockDetector__6SystemFv = .text:0x804223A8; // type:function size:0x18 scope:global align:4 +retraceCallback__FUl = .text:0x804223C0; // type:function size:0xA4 scope:global align:4 +__ct__6SystemFv = .text:0x80422464; // type:function size:0x11C scope:global align:4 +construct__6SystemFv = .text:0x80422580; // type:function size:0x214 scope:global align:4 +constructWithDvdAccessFirst__6SystemFv = .text:0x80422794; // type:function size:0xE8 scope:global align:4 +constructWithDvdAccessSecond__6SystemFv = .text:0x8042287C; // type:function size:0x120 scope:global align:4 +createRomFont__6SystemFP7JKRHeap = .text:0x8042299C; // type:function size:0x54 scope:global align:4 +destroyRomFont__6SystemFv = .text:0x804229F0; // type:function size:0x50 scope:global align:4 +createSoundSystem__6SystemFv = .text:0x80422A40; // type:function size:0x1B8 scope:global align:4 +loadSoundResource__6SystemFv = .text:0x80422BF8; // type:function size:0xE8 scope:global align:4 +initialize__6SystemFv = .text:0x80422CE0; // type:function size:0xF8 scope:global align:4 +loadResourceFirst__6SystemFv = .text:0x80422DD8; // type:function size:0x94 scope:global align:4 +loadResourceSecond__6SystemFv = .text:0x80422E6C; // type:function size:0x94 scope:global align:4 +run__6SystemFv = .text:0x80422F00; // type:function size:0x34 scope:global align:4 +getTime__6SystemFv = .text:0x80422F34; // type:function size:0x58 scope:global align:4 +clearOptionBlockSaveFlag__6SystemFv = .text:0x80422F8C; // type:function size:0x10 scope:global align:4 +setOptionBlockSaveFlag__6SystemFv = .text:0x80422F9C; // type:function size:0x10 scope:global align:4 +getPlayCommonData__6SystemFv = .text:0x80422FAC; // type:function size:0x8 scope:global align:4 +dvdLoadUseCallBack__6SystemFP16DvdThreadCommandP9IDelegate = .text:0x80422FB4; // type:function size:0x58 scope:global align:4 +deleteThreads__6SystemFv = .text:0x8042300C; // type:function size:0x54 scope:global align:4 +__dt__9DvdThreadFv = .text:0x80423060; // type:function size:0x8C scope:weak align:4 +setCurrentDisplay__6SystemFP10JFWDisplay = .text:0x804230EC; // type:function size:0x10 scope:global align:4 +clearCurrentDisplay__6SystemFP10JFWDisplay = .text:0x804230FC; // type:function size:0x1C scope:global align:4 +beginFrame__6SystemFv = .text:0x80423118; // type:function size:0x3C scope:global align:4 +endFrame__6SystemFv = .text:0x80423154; // type:function size:0x5C scope:global align:4 +beginRender__6SystemFv = .text:0x804231B0; // type:function size:0x48 scope:global align:4 +endRender__6SystemFv = .text:0x804231F8; // type:function size:0x98 scope:global align:4 +setRenderMode__6SystemFQ26System11ERenderMode = .text:0x80423290; // type:function size:0x10 scope:global align:4 +getRenderModeObj__6SystemFv = .text:0x804232A0; // type:function size:0x18 scope:global align:4 +changeRenderMode__6SystemFQ26System11ERenderMode = .text:0x804232B8; // type:function size:0x120 scope:global align:4 +heapStatusStart__6SystemFPcP7JKRHeap = .text:0x804233D8; // type:function size:0x8 scope:global align:4 +heapStatusEnd__6SystemFPc = .text:0x804233E0; // type:function size:0x4 scope:global align:4 +heapStatusDump__6SystemFb = .text:0x804233E4; // type:function size:0x4 scope:global align:4 +heapStatusIndividual__6SystemFv = .text:0x804233E8; // type:function size:0x4 scope:global align:4 +heapStatusNormal__6SystemFv = .text:0x804233EC; // type:function size:0x4 scope:global align:4 +resetOn__6SystemFb = .text:0x804233F0; // type:function size:0x28 scope:global align:4 +resetPermissionOn__6SystemFv = .text:0x80423418; // type:function size:0x14 scope:global align:4 +isResetActive__6SystemFv = .text:0x8042342C; // type:function size:0x18 scope:global align:4 +activeGP__6SystemFv = .text:0x80423444; // type:function size:0x14 scope:global align:4 +inactiveGP__6SystemFv = .text:0x80423458; // type:function size:0x14 scope:global align:4 +isDvdErrorOccured__6SystemFv = .text:0x8042346C; // type:function size:0x24 scope:global align:4 +initCurrentHeapMutex__6SystemFv = .text:0x80423490; // type:function size:0x34 scope:global align:4 +startChangeCurrentHeap__6SystemFP7JKRHeap = .text:0x804234C4; // type:function size:0x70 scope:global align:4 +endChangeCurrentHeap__6SystemFv = .text:0x80423534; // type:function size:0x68 scope:global align:4 +addGenNode__6SystemFP5CNode = .text:0x8042359C; // type:function size:0x4 scope:global align:4 +initGenNode__6SystemFv = .text:0x804235A0; // type:function size:0x4 scope:global align:4 +refreshGenNode__6SystemFv = .text:0x804235A4; // type:function size:0x4 scope:global align:4 +setFrameRate__6SystemFi = .text:0x804235A8; // type:function size:0xA0 scope:global align:4 +getCurrentSection__11ISectionMgrFv = .text:0x80423648; // type:function size:0x8 scope:weak align:4 +dvdLoadSyncNoBlock__6SystemFP16DvdThreadCommand = .text:0x80423650; // type:function size:0x60 scope:global align:4 +dvdLoadSyncAllNoBlock__6SystemFv = .text:0x804236B0; // type:function size:0x5C scope:global align:4 +__dt__9AppThreadFv = .text:0x8042370C; // type:function size:0x60 scope:weak align:4 +newSceneMgr__Q23PSM7FactoryFv = .text:0x8042376C; // type:function size:0x38 scope:weak align:4 +invoke__17Delegate<6System>Fv = .text:0x804237A4; // type:function size:0x30 scope:weak align:4 +__sinit_system_cpp = .text:0x804237D4; // type:function size:0x18 scope:local align:4 +init__7SectionFv = .text:0x804237EC; // type:function size:0x4 scope:global align:4 +__ct__7SectionFP10JFWDisplayP7JKRHeapb = .text:0x804237F0; // type:function size:0x224 scope:global align:4 +__dt__8ISectionFv = .text:0x80423A14; // type:function size:0x60 scope:weak align:4 +__dt__7SectionFv = .text:0x80423A74; // type:function size:0x120 scope:global align:4 +run__7SectionFv = .text:0x80423B94; // type:function size:0x558 scope:global align:4 +exit__7SectionFv = .text:0x804240EC; // type:function size:0x50 scope:global align:4 +beginFrame__7SectionFv = .text:0x8042413C; // type:function size:0x24 scope:weak align:4 +endFrame__7SectionFv = .text:0x80424160; // type:function size:0x24 scope:weak align:4 +beginRender__7SectionFv = .text:0x80424184; // type:function size:0x24 scope:weak align:4 +endRender__7SectionFv = .text:0x804241A8; // type:function size:0x40 scope:weak align:4 +update__7SectionFv = .text:0x804241E8; // type:function size:0x7C scope:global align:4 +draw__7SectionFR8Graphics = .text:0x80424264; // type:function size:0x5C scope:global align:4 +__sinit_section_cpp = .text:0x804242C0; // type:function size:0x54 scope:local align:4 +__ct__8GameFlowFv = .text:0x80424314; // type:function size:0x2C scope:global align:4 +run__8GameFlowFv = .text:0x80424340; // type:function size:0xDC scope:global align:4 +setSection__8GameFlowFv = .text:0x8042441C; // type:function size:0xC0 scope:global align:4 +getSectionInfo__8GameFlowFi = .text:0x804244DC; // type:function size:0xB0 scope:global align:4 +createSection__8GameFlowFP7JKRHeap = .text:0x8042458C; // type:function size:0x148 scope:global align:4 +getCurrentSection__8GameFlowFv = .text:0x804246D4; // type:function size:0x40 scope:weak align:4 +__sinit_gameflow_cpp = .text:0x80424714; // type:function size:0x28 scope:local align:4 +__ct__11MenuSectionFP10JFWDisplayP7JKRHeapb = .text:0x8042473C; // type:function size:0x48 scope:global align:4 +run__11MenuSectionFv = .text:0x80424784; // type:function size:0x54 scope:global align:4 +runChildSection__11MenuSectionFv = .text:0x804247D8; // type:function size:0x148 scope:global align:4 +__dt__11MenuSectionFv = .text:0x80424920; // type:function size:0x60 scope:weak align:4 +getCurrentSection__11MenuSectionFv = .text:0x80424980; // type:function size:0x8 scope:weak align:4 +__ct__16DvdThreadCommandFv = .text:0x80424988; // type:function size:0x80 scope:global align:4 +loadUseCallBack__16DvdThreadCommandFP9IDelegate = .text:0x80424A08; // type:function size:0x20 scope:global align:4 +__ct__9DvdThreadFUlii = .text:0x80424A28; // type:function size:0x4C scope:global align:4 +run__9DvdThreadFv = .text:0x80424A74; // type:function size:0x194 scope:global align:4 +loadArchive__9DvdThreadFP16DvdThreadCommand = .text:0x80424C08; // type:function size:0x9C scope:global align:4 +loadFile__9DvdThreadFP16DvdThreadCommand = .text:0x80424CA4; // type:function size:0x108 scope:global align:4 +sendCommand__9DvdThreadFP16DvdThreadCommand = .text:0x80424DAC; // type:function size:0x60 scope:global align:4 +sync__9DvdThreadFP16DvdThreadCommandQ29DvdThread14ESyncBlockFlag = .text:0x80424E0C; // type:function size:0xB0 scope:global align:4 +syncAll__9DvdThreadFQ29DvdThread14ESyncBlockFlag = .text:0x80424EBC; // type:function size:0xCC scope:global align:4 +__ct__9AppThreadFUlii = .text:0x80424F88; // type:function size:0x3C scope:global align:4 +__ct__10ControllerFQ210JUTGamePad8EPadPort = .text:0x80424FC4; // type:function size:0x3C scope:global align:4 +__ct__17HorizonalSplitterFP8Graphics = .text:0x80425000; // type:function size:0x150 scope:global align:4 +split2__17HorizonalSplitterFf = .text:0x80425150; // type:function size:0xBC scope:global align:4 +__ct__8ViewportFv = .text:0x8042520C; // type:function size:0xC0 scope:global align:4 +getMatrix__8ViewportFb = .text:0x804252CC; // type:function size:0x44 scope:global align:4 +setProjection__8ViewportFv = .text:0x80425310; // type:function size:0x2C scope:global align:4 +getNumActiveViewports__8GraphicsFv = .text:0x8042533C; // type:function size:0x74 scope:global align:4 +viewable__8ViewportFv = .text:0x804253B0; // type:function size:0x50 scope:global align:4 +updateCameraAspect__8ViewportFv = .text:0x80425400; // type:function size:0x4C scope:global align:4 +refresh__8ViewportFv = .text:0x8042544C; // type:function size:0xA4 scope:global align:4 +setRect__8ViewportFR7Rect = .text:0x804254F0; // type:function size:0xC4 scope:global align:4 +setViewport__8ViewportFv = .text:0x804255B4; // type:function size:0xD4 scope:global align:4 +setJ3DViewMtx__8ViewportFb = .text:0x80425688; // type:function size:0x50 scope:global align:4 +allocateViewports__8GraphicsFi = .text:0x804256D8; // type:function size:0x44 scope:global align:4 +deleteViewports__8GraphicsFv = .text:0x8042571C; // type:function size:0x14 scope:global align:4 +addViewport__8GraphicsFP8Viewport = .text:0x80425730; // type:function size:0x30 scope:global align:4 +getViewport__8GraphicsFi = .text:0x80425760; // type:function size:0x10 scope:global align:4 +mapViewport__8GraphicsFP22IDelegate1 = .text:0x80425770; // type:function size:0xE0 scope:global align:4 +graphicsTokenCallback__FUs = .text:0x80425850; // type:function size:0x30 scope:local align:4 +setToken__8GraphicsFPc = .text:0x80425880; // type:function size:0x78 scope:global align:4 +getTokenName__8GraphicsFUs = .text:0x804258F8; // type:function size:0x10 scope:global align:4 +findTokenIndex__8GraphicsFPc = .text:0x80425908; // type:function size:0x84 scope:global align:4 +initPrimDraw__8GraphicsFP7Matrixf = .text:0x8042598C; // type:function size:0x1CC scope:global align:4 +drawLine__8GraphicsFR10Vector3R10Vector3 = .text:0x80425B58; // type:function size:0xC4 scope:global align:4 +drawSphere__8GraphicsFR10Vector3f = .text:0x80425C1C; // type:function size:0x598 scope:global align:4 +drawSphere__8GraphicsFfP7Matrixf = .text:0x804261B4; // type:function size:0x5C8 scope:global align:4 +drawAxis__8GraphicsFfP7Matrixf = .text:0x8042677C; // type:function size:0x2B8 scope:global align:4 +clearZBuffer__8GraphicsFR7Rect = .text:0x80426A34; // type:function size:0x24 scope:global align:4 +fillZBuffer__8GraphicsFR7Rectf = .text:0x80426A58; // type:function size:0x3D0 scope:global align:4 +drawCone__8GraphicsFR10Vector3R10Vector3fi = .text:0x80426E28; // type:function size:0x70C scope:global align:4 +__ct__8GraphicsFv = .text:0x80427534; // type:function size:0xA4 scope:global align:4 +setupJ2DOrthoGraphDefault__8GraphicsFv = .text:0x804275D8; // type:function size:0x16C scope:global align:4 +setupJ2DPerspGraphDefault__8GraphicsFv = .text:0x80427744; // type:function size:0x11C scope:global align:4 +clearVtxDesc__8GraphicsFv = .text:0x80427860; // type:function size:0x20 scope:global align:4 +setVtxDesc__8GraphicsF7_GXAttr11_GXAttrType = .text:0x80427880; // type:function size:0x28 scope:global align:4 +setVtxAttrFmt__8GraphicsF9_GXVtxFmt7_GXAttr10_GXCompCnt11_GXCompTypeUc = .text:0x804278A8; // type:function size:0x34 scope:global align:4 +disableLight__8GraphicsFv = .text:0x804278DC; // type:function size:0x3C scope:global align:4 +setTextureGX__8GraphicsFv = .text:0x80427918; // type:function size:0x100 scope:global align:4 +initPerspPrintf__8GraphicsFP8Viewport = .text:0x80427A18; // type:function size:0x234 scope:global align:4 +perspPrintf__8GraphicsFR15PerspPrintfInfoR10Vector3Pce = .text:0x80427C4C; // type:function size:0x3C4 scope:global align:4 +initGX__8GraphicsFv = .text:0x80428010; // type:function size:0x60 scope:global align:4 +dirtyInitGX__8GraphicsFv = .text:0x80428070; // type:function size:0x4 scope:global align:4 +clearInitGX__8GraphicsFv = .text:0x80428074; // type:function size:0x60 scope:global align:4 +split4__8SplitterFff = .text:0x804280D4; // type:function size:0x4 scope:weak align:4 +__sinit_graphics_cpp = .text:0x804280D8; // type:function size:0x28 scope:local align:4 +makeNaturalPosture__7MatrixfFR10Vector3f = .text:0x80428100; // type:function size:0x344 scope:global align:4 +print__7MatrixfFPc = .text:0x80428444; // type:function size:0x4 scope:global align:4 +makeSRT__7MatrixfFR10Vector3R10Vector3R10Vector3 = .text:0x80428448; // type:function size:0x288 scope:global align:4 +makeST__7MatrixfFR10Vector3R10Vector3 = .text:0x804286D0; // type:function size:0x50 scope:global align:4 +makeSR__7MatrixfFR10Vector3R10Vector3 = .text:0x80428720; // type:function size:0x290 scope:global align:4 +makeT__7MatrixfFR10Vector3 = .text:0x804289B0; // type:function size:0x48 scope:global align:4 +makeTR__7MatrixfFR10Vector3R10Vector3 = .text:0x804289F8; // type:function size:0x230 scope:global align:4 +makeTQ__7MatrixfFR10Vector3R4Quat = .text:0x80428C28; // type:function size:0xD0 scope:global align:4 +makeQ__7MatrixfFR4Quat = .text:0x80428CF8; // type:function size:0xC8 scope:global align:4 +clearAnimatorAll__Q28SysShape5ModelFv = .text:0x80428DC0; // type:function size:0x38 scope:global align:4 +startAnim__Q28SysShape8AnimatorFiPQ28SysShape14MotionListener = .text:0x80428DF8; // type:function size:0xC8 scope:global align:4 +startExAnim__Q28SysShape8AnimatorFPQ28SysShape8AnimInfo = .text:0x80428EC0; // type:function size:0x68 scope:global align:4 +assertValid__Q28SysShape8AnimatorFPQ28SysShape5Model = .text:0x80428F28; // type:function size:0x8 scope:global align:4 +setCurrFrame__Q28SysShape8AnimatorFf = .text:0x80428F30; // type:function size:0x40 scope:global align:4 +setFrameByKeyType__Q28SysShape8AnimatorFUl = .text:0x80428F70; // type:function size:0x100 scope:global align:4 +setLastFrame__Q28SysShape8AnimatorFv = .text:0x80429070; // type:function size:0x78 scope:global align:4 +animate__Q28SysShape8AnimatorFf = .text:0x804290E8; // type:function size:0x2AC scope:global align:4 +__ct__Q28SysShape13BlendAnimatorFv = .text:0x80429394; // type:function size:0x80 scope:global align:4 +setAnimMgr__Q28SysShape13BlendAnimatorFPQ28SysShape7AnimMgr = .text:0x80429414; // type:function size:0x154 scope:global align:4 +startBlend__Q28SysShape13BlendAnimatorFPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener = .text:0x80429568; // type:function size:0x15C scope:global align:4 +endBlend__Q28SysShape13BlendAnimatorFv = .text:0x804296C4; // type:function size:0x18 scope:global align:4 +animate__Q28SysShape13BlendAnimatorFPQ28SysShape13BlendFunctionfff = .text:0x804296DC; // type:function size:0x278 scope:global align:4 +getCalc__Q28SysShape13BlendAnimatorFv = .text:0x80429954; // type:function size:0x40 scope:global align:4 +init__Q28SysShape5JointFUsPQ28SysShape5ModelP8J3DJoint = .text:0x80429994; // type:function size:0x7C scope:global align:4 +getWorldMatrix__Q28SysShape5JointFv = .text:0x80429A10; // type:function size:0x20 scope:global align:4 +getLowestAnimKey__Q28SysShape8AnimInfoFf = .text:0x80429A30; // type:function size:0x6C scope:global align:4 +getLastLoopStart__Q28SysShape8AnimInfoFPQ28SysShape8KeyEvent = .text:0x80429A9C; // type:function size:0x28 scope:global align:4 +getAnimKeyByType__Q28SysShape8AnimInfoFUl = .text:0x80429AC4; // type:function size:0x28 scope:global align:4 +read__Q28SysShape8AnimInfoFR6Stream = .text:0x80429AEC; // type:function size:0x20 scope:global align:4 +readEditor__Q28SysShape8AnimInfoFR6Stream = .text:0x80429B0C; // type:function size:0x10C scope:global align:4 +load__Q28SysShape7AnimMgrFPcP12J3DModelDataP13JKRFileLoader = .text:0x80429C18; // type:function size:0x13C scope:global align:4 +__dt__Q28SysShape8AnimInfoFv = .text:0x80429D54; // type:function size:0x84 scope:weak align:4 +dump__Q28SysShape7AnimMgrFv = .text:0x80429DD8; // type:function size:0x80 scope:global align:4 +__dt__Q28SysShape7AnimMgrFv = .text:0x80429E58; // type:function size:0xA0 scope:weak align:4 +__sinit_sysShape_cpp = .text:0x80429EF8; // type:function size:0x28 scope:local align:4 +__ct__12ResetManagerFf = .text:0x80429F20; // type:function size:0xC8 scope:global align:4 +update__12ResetManagerFv = .text:0x80429FE8; // type:function size:0x2B4 scope:global align:4 +updateStatusEffects__12ResetManagerFv = .text:0x8042A29C; // type:function size:0x38 scope:global align:4 +draw__12ResetManagerFv = .text:0x8042A2D4; // type:function size:0x158 scope:global align:4 +isWritingMemoryCard__12ResetManagerFv = .text:0x8042A42C; // type:function size:0x14 scope:global align:4 +isSoundSystemStopped__12ResetManagerFv = .text:0x8042A440; // type:function size:0x44 scope:global align:4 +__ct__9DvdStatusFv = .text:0x8042A484; // type:function size:0x14 scope:global align:4 +isErrorOccured__9DvdStatusFv = .text:0x8042A498; // type:function size:0x2C scope:global align:4 +update__9DvdStatusFv = .text:0x8042A4C4; // type:function size:0x1F0 scope:global align:4 +draw__9DvdStatusFv = .text:0x8042A6B4; // type:function size:0x2B8 scope:global align:4 +__ct__9SysTimersFv = .text:0x8042A96C; // type:function size:0xE0 scope:global align:4 +__defctor__8TimerInfFv = .text:0x8042AA4C; // type:function size:0x6C scope:weak align:4 +__dt__9SysTimersFv = .text:0x8042AAB8; // type:function size:0x68 scope:global align:4 +get__9SysTimersFi = .text:0x8042AB20; // type:function size:0x7C scope:global align:4 +__dt__8TimerInfFv = .text:0x8042AB9C; // type:function size:0x74 scope:global align:4 +reset__9SysTimersFv = .text:0x8042AC10; // type:function size:0x38 scope:global align:4 +newFrame__9SysTimersFv = .text:0x8042AC48; // type:function size:0x10 scope:global align:4 +remove__9SysTimersFP8TimerInf = .text:0x8042AC58; // type:function size:0x10 scope:global align:4 +_start__9SysTimersFPcb = .text:0x8042AC68; // type:function size:0x4 scope:global align:4 +_stop__9SysTimersFPc = .text:0x8042AC6C; // type:function size:0x4 scope:global align:4 +__ct__Q28SysShape8ModelMgrFiPP12J3DModelDataiUlUlP30IDelegate1 = .text:0x8042AC70; // type:function size:0x1D8 scope:global align:4 +calcMaximumModelSize__Q28SysShape8ModelMgrFv = .text:0x8042AE48; // type:function size:0x84 scope:global align:4 +calcModelSize__Q28SysShape8ModelMgrFP12J3DModelData = .text:0x8042AECC; // type:function size:0xA0 scope:global align:4 +createModel__Q28SysShape8ModelMgrFii = .text:0x8042AF6C; // type:function size:0x1C8 scope:global align:4 +__ct__10HeapStatusFv = .text:0x8042B134; // type:function size:0xB0 scope:global align:4 +__dt__8HeapInfoFv = .text:0x8042B1E4; // type:function size:0x1A0 scope:global align:4 +getNextChild__18JSUTree<8CoreNode>CFv = .text:0x8042B384; // type:function size:0x14 scope:weak align:4 +__ne__26JSUTreeIterator<8CoreNode>CFPC18JSUTree<8CoreNode> = .text:0x8042B398; // type:function size:0x18 scope:weak align:4 +getEndChild__18JSUTree<8CoreNode>CFv = .text:0x8042B3B0; // type:function size:0x8 scope:weak align:4 +__pp__26JSUTreeIterator<8CoreNode>Fv = .text:0x8042B3B8; // type:function size:0x1C scope:weak align:4 +getObject__26JSUTreeIterator<8CoreNode>CFv = .text:0x8042B3D4; // type:function size:0xC scope:weak align:4 +__ct__26JSUTreeIterator<8CoreNode>FP18JSUTree<8CoreNode> = .text:0x8042B3E0; // type:function size:0x8 scope:weak align:4 +getFirstChild__18JSUTree<8CoreNode>CFv = .text:0x8042B3E8; // type:function size:0x14 scope:weak align:4 +search__8HeapInfoFP8HeapInfo = .text:0x8042B3FC; // type:function size:0x1D8 scope:global align:4 +@36@__dt__8HeapInfoFv = .text:0x8042B5D4; // type:function size:0x8 scope:weak align:4 +__ct__8LightObjFPc10_GXLightID14ELightTypeFlagQ28JUtility6TColor = .text:0x8042B5DC; // type:function size:0xC4 scope:global align:4 +set__8LightObjFR7Matrixf = .text:0x8042B6A0; // type:function size:0x2DC scope:global align:4 +drawPos__8LightObjFR8Graphics = .text:0x8042B97C; // type:function size:0x5C scope:global align:4 +drawPos__8LightObjFR8GraphicsR6Camera = .text:0x8042B9D8; // type:function size:0x7C scope:global align:4 +drawPos__8LightObjFR8GraphicsR7Matrixf = .text:0x8042BA54; // type:function size:0x1A8 scope:global align:4 +__ct__8LightMgrFPc = .text:0x8042BBFC; // type:function size:0xD8 scope:global align:4 +registLightObj__8LightMgrFP8LightObj = .text:0x8042BCD4; // type:function size:0x3C scope:global align:4 +set__8LightMgrFR8Graphics = .text:0x8042BD10; // type:function size:0x50 scope:global align:4 +set__8LightMgrFR7Matrixf = .text:0x8042BD60; // type:function size:0x94 scope:global align:4 +drawDebugInfo__8LightMgrFR8Graphics = .text:0x8042BDF4; // type:function size:0x5C scope:global align:4 +update__8LightMgrFv = .text:0x8042BE50; // type:function size:0x4 scope:weak align:4 +__sinit_light_cpp = .text:0x8042BE54; // type:function size:0x28 scope:local align:4 +__ct__8WipeBaseFv = .text:0x8042BE7C; // type:function size:0x5C scope:global align:4 +start__8WipeBaseFf = .text:0x8042BED8; // type:function size:0x40 scope:global align:4 +on_start__8WipeBaseFv = .text:0x8042BF18; // type:function size:0x4 scope:weak align:4 +update__8WipeBaseFv = .text:0x8042BF1C; // type:function size:0x78 scope:global align:4 +draw__8WipeBaseFv = .text:0x8042BF94; // type:function size:0x60 scope:global align:4 +do_draw__8WipeBaseFf = .text:0x8042BFF4; // type:function size:0x4 scope:weak align:4 +isWhite__11WipeInFaderFv = .text:0x8042BFF8; // type:function size:0x18 scope:global align:4 +isBlack__11WipeInFaderFv = .text:0x8042C010; // type:function size:0x18 scope:global align:4 +__ct__11WipeInFaderFv = .text:0x8042C028; // type:function size:0x78 scope:global align:4 +do_draw__11WipeInFaderFf = .text:0x8042C0A0; // type:function size:0x144 scope:global align:4 +__ct__12WipeOutFaderFv = .text:0x8042C1E4; // type:function size:0x78 scope:global align:4 +on_start__12WipeOutFaderFv = .text:0x8042C25C; // type:function size:0x4 scope:global align:4 +isWhite__12WipeOutFaderFv = .text:0x8042C260; // type:function size:0x18 scope:global align:4 +isBlack__12WipeOutFaderFv = .text:0x8042C278; // type:function size:0x18 scope:global align:4 +do_draw__12WipeOutFaderFf = .text:0x8042C290; // type:function size:0x138 scope:global align:4 +on_start__14WipeOutInFaderFv = .text:0x8042C3C8; // type:function size:0x50 scope:global align:4 +isWhite__14WipeOutInFaderFv = .text:0x8042C418; // type:function size:0x3C scope:global align:4 +isBlack__14WipeOutInFaderFv = .text:0x8042C454; // type:function size:0x38 scope:global align:4 +do_draw__14WipeOutInFaderFf = .text:0x8042C48C; // type:function size:0xA8 scope:global align:4 +__ct__10BlackFaderFv = .text:0x8042C534; // type:function size:0x7C scope:global align:4 +isWhite__10BlackFaderFv = .text:0x8042C5B0; // type:function size:0x10 scope:global align:4 +isBlack__10BlackFaderFv = .text:0x8042C5C0; // type:function size:0x8 scope:global align:4 +do_draw__10BlackFaderFf = .text:0x8042C5C8; // type:function size:0x120 scope:global align:4 +isWhite__8WipeBaseFv = .text:0x8042C6E8; // type:function size:0x8 scope:weak align:4 +isBlack__8WipeBaseFv = .text:0x8042C6F0; // type:function size:0x8 scope:weak align:4 +__dt__10BlackFaderFv = .text:0x8042C6F8; // type:function size:0x70 scope:weak align:4 +__dt__14WipeOutInFaderFv = .text:0x8042C768; // type:function size:0xE0 scope:weak align:4 +__sinit_wipe_cpp = .text:0x8042C848; // type:function size:0x28 scope:local align:4 +__ct__Q24Game11MoviePlayerFv = .text:0x8042C870; // type:function size:0x150 scope:global align:4 +__dt__Q24Game12MovieContextFv = .text:0x8042C9C0; // type:function size:0x60 scope:weak align:4 +reset__Q24Game11MoviePlayerFv = .text:0x8042CA20; // type:function size:0x2C scope:global align:4 +getActiveOrima__Q24Game11MoviePlayerFv = .text:0x8042CA4C; // type:function size:0x1C scope:global align:4 +getActiveGameCamera__Q24Game11MoviePlayerFv = .text:0x8042CA68; // type:function size:0x1C scope:global align:4 +allocMovieHeap__Q24Game11MoviePlayerFUl = .text:0x8042CA84; // type:function size:0xBC scope:global align:4 +play__Q24Game11MoviePlayerFRQ24Game12MoviePlayArg = .text:0x8042CB40; // type:function size:0x60 scope:global align:4 +play__Q24Game11MoviePlayerFPQ24Game11MovieConfigRQ24Game12MoviePlayArgb = .text:0x8042CBA0; // type:function size:0x33C scope:global align:4 +findConfig__Q24Game11MoviePlayerFPcPc = .text:0x8042CEDC; // type:function size:0x24 scope:global align:4 +__ct__Q24Game12MovieContextFv = .text:0x8042CF00; // type:function size:0xB0 scope:global align:4 +allocContexts__Q24Game11MoviePlayerFv = .text:0x8042CFB0; // type:function size:0x9C scope:global align:4 +clearContexts__Q24Game11MoviePlayerFv = .text:0x8042D04C; // type:function size:0xAC scope:global align:4 +clearSuspendedDemo__Q24Game11MoviePlayerFv = .text:0x8042D0F8; // type:function size:0xAC scope:global align:4 +getNewContext__Q24Game11MoviePlayerFv = .text:0x8042D1A4; // type:function size:0x6C scope:global align:4 +getChild__Q24Game12MovieContextFv = .text:0x8042D210; // type:function size:0x8 scope:weak align:4 +setContext__Q24Game11MoviePlayerFPQ24Game12MovieContextPQ24Game11MovieConfigRQ24Game12MoviePlayArg = .text:0x8042D218; // type:function size:0x88 scope:global align:4 +loadResource__Q24Game11MoviePlayerFv = .text:0x8042D2A0; // type:function size:0x478 scope:global align:4 +parse__Q24Game11MoviePlayerFb = .text:0x8042D718; // type:function size:0xC0 scope:global align:4 +update__Q24Game11MoviePlayerFP10ControllerP10Controller = .text:0x8042D7D8; // type:function size:0x7C4 scope:global align:4 +update__Q25P2JME8TControlFP10ControllerP10Controller = .text:0x8042DF9C; // type:function size:0x2C scope:weak align:4 +draw__Q24Game11MoviePlayerFR8Graphics = .text:0x8042DFC8; // type:function size:0x78 scope:global align:4 +start__Q24Game11MoviePlayerFP6Camera = .text:0x8042E040; // type:function size:0x74 scope:global align:4 +stop__Q24Game11MoviePlayerFv = .text:0x8042E0B4; // type:function size:0x120 scope:global align:4 +setCamera__Q24Game11MoviePlayerFP6Camera = .text:0x8042E1D4; // type:function size:0x324 scope:global align:4 +unsuspend__Q24Game11MoviePlayerFlb = .text:0x8042E4F8; // type:function size:0xD0 scope:global align:4 +resetFrame__Q24Game11MoviePlayerFv = .text:0x8042E5C8; // type:function size:0xC4 scope:global align:4 +setTransform__Q24Game11MoviePlayerFR10Vector3f = .text:0x8042E68C; // type:function size:0x9C scope:global align:4 +isPlaying__Q24Game11MoviePlayerFPc = .text:0x8042E728; // type:function size:0x34 scope:global align:4 +drawLoading__Q24Game11MoviePlayerFR8Graphics = .text:0x8042E75C; // type:function size:0x148 scope:global align:4 +skip__Q24Game11MoviePlayerFv = .text:0x8042E8A4; // type:function size:0x108 scope:global align:4 +getNext__Q24Game12MovieContextFv = .text:0x8042E9AC; // type:function size:0x8 scope:weak align:4 +__dt__Q24Game11MoviePlayerFv = .text:0x8042E9B4; // type:function size:0xC4 scope:weak align:4 +invoke__30DelegateFv = .text:0x8042EA78; // type:function size:0x30 scope:weak align:4 +__sinit_moviePlayer_cpp = .text:0x8042EAA8; // type:function size:0x28 scope:local align:4 +__ct__Q34Game5P2JST11ObjectActorFPCcPQ24Game11MoviePlayer = .text:0x8042EAD0; // type:function size:0xD0 scope:global align:4 +__dt__Q34Game5P2JST11ObjectActorFv = .text:0x8042EBA0; // type:function size:0x68 scope:global align:4 +reset__Q34Game5P2JST11ObjectActorFv = .text:0x8042EC08; // type:function size:0x70 scope:global align:4 +update__Q34Game5P2JST11ObjectActorFv = .text:0x8042EC78; // type:function size:0x390 scope:global align:4 +entry__Q34Game5P2JST11ObjectActorFv = .text:0x8042F008; // type:function size:0x68 scope:global align:4 +setShape__Q34Game5P2JST11ObjectActorFv = .text:0x8042F070; // type:function size:0x1A4 scope:global align:4 +setAnim__Q34Game5P2JST11ObjectActorFv = .text:0x8042F214; // type:function size:0x128 scope:global align:4 +mountArchive__Q34Game5P2JST11ObjectActorFv = .text:0x8042F33C; // type:function size:0x38 scope:global align:4 +parseUserData___Q34Game5P2JST11ObjectActorFUlPCv = .text:0x8042F374; // type:function size:0x260 scope:global align:4 +JSGFindNodeID__Q34Game5P2JST11ObjectActorCFPCc = .text:0x8042F5D4; // type:function size:0x6C scope:global align:4 +JSGGetNodeTransformation__Q34Game5P2JST11ObjectActorCFUlPA4_f = .text:0x8042F640; // type:function size:0x8C scope:global align:4 +JSGGetName__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F6CC; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q34Game5P2JST11ObjectActorFUl = .text:0x8042F6D4; // type:function size:0x8 scope:global align:4 +JSGGetFlag__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F6DC; // type:function size:0x8 scope:global align:4 +JSGSetData__Q34Game5P2JST11ObjectActorFUlPCvUl = .text:0x8042F6E4; // type:function size:0x38 scope:global align:4 +JSGSetTranslation__Q34Game5P2JST11ObjectActorFRC3Vec = .text:0x8042F71C; // type:function size:0x1C scope:global align:4 +JSGGetTranslation__Q34Game5P2JST11ObjectActorCFP3Vec = .text:0x8042F738; // type:function size:0x1C scope:global align:4 +JSGSetRotation__Q34Game5P2JST11ObjectActorFRC3Vec = .text:0x8042F754; // type:function size:0x1C scope:global align:4 +JSGGetRotation__Q34Game5P2JST11ObjectActorCFP3Vec = .text:0x8042F770; // type:function size:0x1C scope:global align:4 +JSGSetScaling__Q34Game5P2JST11ObjectActorFRC3Vec = .text:0x8042F78C; // type:function size:0x1C scope:global align:4 +JSGGetScaling__Q34Game5P2JST11ObjectActorCFP3Vec = .text:0x8042F7A8; // type:function size:0x1C scope:global align:4 +JSGSetShape__Q34Game5P2JST11ObjectActorFUl = .text:0x8042F7C4; // type:function size:0x8 scope:global align:4 +JSGGetShape__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F7CC; // type:function size:0x8 scope:global align:4 +JSGSetAnimation__Q34Game5P2JST11ObjectActorFUl = .text:0x8042F7D4; // type:function size:0x8 scope:global align:4 +JSGGetAnimation__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F7DC; // type:function size:0x8 scope:global align:4 +JSGGetAnimationFrameMax__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F7E4; // type:function size:0x8 scope:global align:4 +JSGSetAnimationFrame__Q34Game5P2JST11ObjectActorFf = .text:0x8042F7EC; // type:function size:0x4 scope:global align:4 +JSGGetAnimationFrame__Q34Game5P2JST11ObjectActorCFv = .text:0x8042F7F0; // type:function size:0x8 scope:global align:4 +stop__Q34Game5P2JST11ObjectActorFv = .text:0x8042F7F8; // type:function size:0x4 scope:weak align:4 +start__Q34Game5P2JST11ObjectActorFv = .text:0x8042F7FC; // type:function size:0x4 scope:weak align:4 +parseUserData___Q34Game5P2JST10ObjectBaseFUlPCv = .text:0x8042F800; // type:function size:0x4 scope:weak align:4 +__sinit_JSTObjectActor_cpp = .text:0x8042F804; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST11ObjectActorFUlPCv = .text:0x8042F82C; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST11ObjectActorFv = .text:0x8042F834; // type:function size:0x8 scope:weak align:4 +@4@start__Q34Game5P2JST11ObjectActorFv = .text:0x8042F83C; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST11ObjectActorFv = .text:0x8042F844; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST11ObjectActorFv = .text:0x8042F84C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST12ObjectCameraFPCcPQ24Game11MoviePlayer = .text:0x8042F854; // type:function size:0xF0 scope:global align:4 +__dt__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F944; // type:function size:0x68 scope:global align:4 +reset__Q34Game5P2JST12ObjectCameraFv = .text:0x8042F9AC; // type:function size:0xA8 scope:global align:4 +update__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FA54; // type:function size:0x4 scope:global align:4 +setProjection__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FA58; // type:function size:0x24 scope:global align:4 +setView__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FA7C; // type:function size:0x7C scope:global align:4 +updateCamera__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FAF8; // type:function size:0x6C scope:global align:4 +JSGGetName__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FB64; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q34Game5P2JST12ObjectCameraFUl = .text:0x8042FB6C; // type:function size:0x8 scope:global align:4 +JSGGetFlag__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FB74; // type:function size:0x8 scope:global align:4 +JSGSetData__Q34Game5P2JST12ObjectCameraFUlPCvUl = .text:0x8042FB7C; // type:function size:0x10 scope:global align:4 +JSGSetViewPosition__Q34Game5P2JST12ObjectCameraFRC3Vec = .text:0x8042FB8C; // type:function size:0x1C scope:global align:4 +JSGGetViewPosition__Q34Game5P2JST12ObjectCameraCFP3Vec = .text:0x8042FBA8; // type:function size:0x1C scope:global align:4 +JSGSetViewTargetPosition__Q34Game5P2JST12ObjectCameraFRC3Vec = .text:0x8042FBC4; // type:function size:0x1C scope:global align:4 +JSGGetViewTargetPosition__Q34Game5P2JST12ObjectCameraCFP3Vec = .text:0x8042FBE0; // type:function size:0x1C scope:global align:4 +JSGSetViewRoll__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FBFC; // type:function size:0x8 scope:global align:4 +JSGGetViewRoll__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FC04; // type:function size:0x8 scope:global align:4 +JSGSetProjectionNear__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FC0C; // type:function size:0x8 scope:global align:4 +JSGGetProjectionNear__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FC14; // type:function size:0x8 scope:global align:4 +JSGSetProjectionFar__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FC1C; // type:function size:0x8 scope:global align:4 +JSGGetProjectionFar__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FC24; // type:function size:0x8 scope:global align:4 +JSGSetProjectionFovy__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FC2C; // type:function size:0x8 scope:global align:4 +JSGGetProjectionFovy__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FC34; // type:function size:0x8 scope:global align:4 +JSGSetProjectionAspect__Q34Game5P2JST12ObjectCameraFf = .text:0x8042FC3C; // type:function size:0x64 scope:global align:4 +JSGGetProjectionAspect__Q34Game5P2JST12ObjectCameraCFv = .text:0x8042FCA0; // type:function size:0x8 scope:global align:4 +setCamera__Q34Game5P2JST12ObjectCameraFP6Camera = .text:0x8042FCA8; // type:function size:0x1A0 scope:global align:4 +start__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FE48; // type:function size:0x38 scope:global align:4 +stop__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FE80; // type:function size:0x50 scope:global align:4 +__sinit_JSTObjectCamera_cpp = .text:0x8042FED0; // type:function size:0x28 scope:local align:4 +@4@stop__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FEF8; // type:function size:0x8 scope:weak align:4 +@4@start__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FF00; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FF08; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST12ObjectCameraFv = .text:0x8042FF10; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST15ObjectGameActorFPCcPQ24Game11MoviePlayerPQ24Game8Creature = .text:0x8042FF18; // type:function size:0x94 scope:global align:4 +reset__Q34Game5P2JST15ObjectGameActorFv = .text:0x8042FFAC; // type:function size:0x54 scope:global align:4 +stop__Q34Game5P2JST15ObjectGameActorFv = .text:0x80430000; // type:function size:0x124 scope:global align:4 +update__Q34Game5P2JST15ObjectGameActorFv = .text:0x80430124; // type:function size:0x4D8 scope:global align:4 +JSGSetAnimation__Q34Game5P2JST15ObjectGameActorFUl = .text:0x804305FC; // type:function size:0x74 scope:global align:4 +JSGSetShape__Q34Game5P2JST15ObjectGameActorFUl = .text:0x80430670; // type:function size:0x8 scope:global align:4 +JSGSetTranslation__Q34Game5P2JST15ObjectGameActorFRC3Vec = .text:0x80430678; // type:function size:0x1C scope:global align:4 +JSGGetTranslation__Q34Game5P2JST15ObjectGameActorCFP3Vec = .text:0x80430694; // type:function size:0x58 scope:global align:4 +JSGSetRotation__Q34Game5P2JST15ObjectGameActorFRC3Vec = .text:0x804306EC; // type:function size:0x1C scope:global align:4 +JSGGetRotation__Q34Game5P2JST15ObjectGameActorCFP3Vec = .text:0x80430708; // type:function size:0x1C scope:global align:4 +JSGFindNodeID__Q34Game5P2JST15ObjectGameActorCFPCc = .text:0x80430724; // type:function size:0xE0 scope:global align:4 +JSGGetNodeTransformation__Q34Game5P2JST15ObjectGameActorCFUlPA4_f = .text:0x80430804; // type:function size:0xD8 scope:global align:4 +parseUserData___Q34Game5P2JST15ObjectGameActorFUlPCv = .text:0x804308DC; // type:function size:0x138 scope:global align:4 +__dt__Q34Game5P2JST15ObjectGameActorFv = .text:0x80430A14; // type:function size:0x68 scope:weak align:4 +__sinit_JSTObjectGameActor_cpp = .text:0x80430A7C; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST15ObjectGameActorFUlPCv = .text:0x80430AA4; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST15ObjectGameActorFv = .text:0x80430AAC; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST15ObjectGameActorFv = .text:0x80430AB4; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST15ObjectGameActorFv = .text:0x80430ABC; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST12ObjectSystemFPCcPQ24Game11MoviePlayer = .text:0x80430AC4; // type:function size:0xA0 scope:global align:4 +__dt__Q34Game5P2JST12ObjectSystemFv = .text:0x80430B64; // type:function size:0x84 scope:global align:4 +destroyObjectAll__Q34Game5P2JST12ObjectSystemFv = .text:0x80430BE8; // type:function size:0xA8 scope:global align:4 +reset__Q34Game5P2JST12ObjectSystemFv = .text:0x80430C90; // type:function size:0xF4 scope:global align:4 +entry__Q34Game5P2JST12ObjectSystemFv = .text:0x80430D84; // type:function size:0xAC scope:global align:4 +update__Q34Game5P2JST12ObjectSystemFv = .text:0x80430E30; // type:function size:0xD4 scope:global align:4 +start__Q34Game5P2JST12ObjectSystemFv = .text:0x80430F04; // type:function size:0xD4 scope:global align:4 +stop__Q34Game5P2JST12ObjectSystemFv = .text:0x80430FD8; // type:function size:0xD4 scope:global align:4 +findObject__Q34Game5P2JST12ObjectSystemCFPCcQ26JStage8TEObject = .text:0x804310AC; // type:function size:0xFC scope:global align:4 +JSGFindObject__Q34Game5P2JST12ObjectSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject = .text:0x804311A8; // type:function size:0x310 scope:global align:4 +JSGGetName__Q34Game5P2JST12ObjectSystemCFv = .text:0x804314B8; // type:function size:0x8 scope:global align:4 +JSGSetFlag__Q34Game5P2JST12ObjectSystemFUl = .text:0x804314C0; // type:function size:0x8 scope:global align:4 +JSGGetFlag__Q34Game5P2JST12ObjectSystemCFv = .text:0x804314C8; // type:function size:0x8 scope:global align:4 +JSGSetData__Q34Game5P2JST12ObjectSystemFUlPCvUl = .text:0x804314D0; // type:function size:0x10 scope:global align:4 +__sinit_JSTObjectSystem_cpp = .text:0x804314E0; // type:function size:0x28 scope:local align:4 +@4@stop__Q34Game5P2JST12ObjectSystemFv = .text:0x80431508; // type:function size:0x8 scope:weak align:4 +@4@start__Q34Game5P2JST12ObjectSystemFv = .text:0x80431510; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST12ObjectSystemFv = .text:0x80431518; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST12ObjectSystemFv = .text:0x80431520; // type:function size:0x8 scope:weak align:4 +findCreature__Q34Game5P2JST12ObjectSystemCFPCc = .text:0x80431528; // type:function size:0x450 scope:global align:4 +__sinit_JSTFindCreature_cpp = .text:0x80431978; // type:function size:0x28 scope:local align:4 +__dt__Q34Game11MovieConfig6TParmsFv = .text:0x804319A0; // type:function size:0x70 scope:weak align:4 +dump__Q24Game11MovieConfigFv = .text:0x80431A10; // type:function size:0x4 scope:global align:4 +isSkippable__Q24Game11MovieConfigFv = .text:0x80431A14; // type:function size:0x1C scope:global align:4 +isNeverSkippable__Q24Game11MovieConfigFv = .text:0x80431A30; // type:function size:0xC scope:global align:4 +is__Q24Game11MovieConfigFPc = .text:0x80431A3C; // type:function size:0x54 scope:global align:4 +read__Q24Game11MovieConfigFR6Stream = .text:0x80431A90; // type:function size:0x2D4 scope:global align:4 +construct__Q24Game9MovieListFv = .text:0x80431D64; // type:function size:0x38 scope:global align:4 +__ct__Q24Game9MovieListFv = .text:0x80431D9C; // type:function size:0x1BC scope:global align:4 +__dt__Q24Game11MovieConfigFv = .text:0x80431F58; // type:function size:0x98 scope:weak align:4 +findConfig__Q24Game9MovieListFPcPc = .text:0x80431FF0; // type:function size:0xB0 scope:global align:4 +read__Q24Game9MovieListFR6Stream = .text:0x804320A0; // type:function size:0x164 scope:global align:4 +__dt__Q24Game9MovieListFv = .text:0x80432204; // type:function size:0xB4 scope:weak align:4 +__sinit_movieConfig_cpp = .text:0x804322B8; // type:function size:0x28 scope:local align:4 +__ct__Q24Game10GameConfigFv = .text:0x804322E0; // type:function size:0x130 scope:global align:4 +__dt__Q34Game10GameConfig5ParmsFv = .text:0x80432410; // type:function size:0x70 scope:weak align:4 +__ct__Q34Game10GameConfig5ParmsFv = .text:0x80432480; // type:function size:0x460 scope:weak align:4 +load__Q24Game10GameConfigFPc = .text:0x804328E0; // type:function size:0x128 scope:global align:4 +__sinit_gameConfig_cpp = .text:0x80432A08; // type:function size:0x3C scope:local align:4 +__dt__Q24Game10GameConfigFv = .text:0x80432A44; // type:function size:0x74 scope:weak align:4 +__ct__6FogMgrFv = .text:0x80432AB8; // type:function size:0x74 scope:global align:4 +off__6FogMgrFR8Graphics = .text:0x80432B2C; // type:function size:0x40 scope:global align:4 +set__6FogMgrFR8Graphics = .text:0x80432B6C; // type:function size:0xAC scope:global align:4 +setColor__6FogMgrFR6Color4 = .text:0x80432C18; // type:function size:0x24 scope:global align:4 +getColor__6FogMgrFR6Color4 = .text:0x80432C3C; // type:function size:0x24 scope:global align:4 +__sinit_fogMgr_cpp = .text:0x80432C60; // type:function size:0x28 scope:local align:4 +init__Q24ARAM3MgrFv = .text:0x80432C88; // type:function size:0x30 scope:global align:4 +__ct__Q24ARAM3MgrFv = .text:0x80432CB8; // type:function size:0x80 scope:global align:4 +dvdToAram__Q24ARAM3MgrFPCcb = .text:0x80432D38; // type:function size:0x24C scope:global align:4 +__dt__Q24ARAM4NodeFv = .text:0x80432F84; // type:function size:0x60 scope:weak align:4 +aramToMainRam__Q24ARAM3MgrFPCcPUcUlUl15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectioniPUl = .text:0x80432FE4; // type:function size:0x154 scope:global align:4 +dump__Q24ARAM3MgrFv = .text:0x80433138; // type:function size:0xA0 scope:global align:4 +search__Q24ARAM3MgrFPCc = .text:0x804331D8; // type:function size:0x70 scope:global align:4 +__dt__Q28Resource4NodeFv = .text:0x80433248; // type:function size:0xDC scope:global align:4 +__ct__Q28Resource10MgrCommandFPc = .text:0x80433324; // type:function size:0x138 scope:global align:4 +__dt__Q28Resource10MgrCommandFv = .text:0x8043345C; // type:function size:0xB8 scope:global align:4 +becomeCurrentHeap__Q28Resource10MgrCommandFv = .text:0x80433514; // type:function size:0x70 scope:global align:4 +releaseCurrentHeap__Q28Resource10MgrCommandFv = .text:0x80433584; // type:function size:0x88 scope:global align:4 +getResource__Q28Resource10MgrCommandFv = .text:0x8043360C; // type:function size:0xC scope:global align:4 +setModeInvalid__Q28Resource10MgrCommandFv = .text:0x80433618; // type:function size:0x1C scope:global align:4 +memoryCallBackFunc__Q28Resource10MgrCommandFv = .text:0x80433634; // type:function size:0x48 scope:global align:4 +aramLoadCallBackFunc__Q28Resource10MgrCommandFv = .text:0x8043367C; // type:function size:0x94 scope:global align:4 +dvdLoadCallBackFunc__Q28Resource10MgrCommandFv = .text:0x80433710; // type:function size:0xBC scope:global align:4 +userCallBackInvoke__Q28Resource10MgrCommandFv = .text:0x804337CC; // type:function size:0x74 scope:global align:4 +__ct__Q28Resource3MgrFP7JKRHeapUl = .text:0x80433840; // type:function size:0x10C scope:global align:4 +drawDump__Q28Resource3MgrFR8Graphicsii = .text:0x8043394C; // type:function size:0x4 scope:global align:4 +createNewNode__Q28Resource3MgrFPCc = .text:0x80433950; // type:function size:0x1B4 scope:global align:4 +loadResource__Q28Resource3MgrFPQ28Resource10MgrCommandPCcb = .text:0x80433B04; // type:function size:0x188 scope:global align:4 +destroy__Q28Resource3MgrFPQ28Resource10MgrCommand = .text:0x80433C8C; // type:function size:0x70 scope:global align:4 +destroyAll__Q28Resource3MgrFv = .text:0x80433CFC; // type:function size:0x64 scope:global align:4 +sync__Q28Resource3MgrFPQ28Resource10MgrCommandb = .text:0x80433D60; // type:function size:0x1E0 scope:global align:4 +delFinishCommand__Q28Resource3MgrFv = .text:0x80433F40; // type:function size:0x130 scope:global align:4 +searchCommand__Q28Resource3MgrFPQ28Resource10MgrCommand = .text:0x80434070; // type:function size:0x30 scope:global align:4 +invoke__33DelegateFv = .text:0x804340A0; // type:function size:0x30 scope:weak align:4 +@24@__dt__Q28Resource4NodeFv = .text:0x804340D0; // type:function size:0x8 scope:weak align:4 +@24@__dt__Q28Resource10MgrCommandFv = .text:0x804340D8; // type:function size:0x8 scope:weak align:4 +init__Q28Resource5Mgr2DFP7JKRHeap = .text:0x804340E0; // type:function size:0xB0 scope:global align:4 +attachResource__Q23Sys16MatBaseAnimationFPvP12J3DModelData = .text:0x80434190; // type:function size:0x84 scope:global align:4 +getFrameMax__Q23Sys16MatBaseAnimationFv = .text:0x80434214; // type:function size:0x90 scope:global align:4 +__ct__Q23Sys15MatTexAnimationFv = .text:0x804342A4; // type:function size:0x2C scope:global align:4 +onAttachResource__Q23Sys15MatTexAnimationFPv = .text:0x804342D0; // type:function size:0x88 scope:global align:4 +set__Q23Sys15MatTexAnimationFv = .text:0x80434358; // type:function size:0x2C scope:global align:4 +remove__Q23Sys15MatTexAnimationFv = .text:0x80434384; // type:function size:0x2C scope:global align:4 +__ct__Q23Sys18MatTevRegAnimationFv = .text:0x804343B0; // type:function size:0x30 scope:global align:4 +onAttachResource__Q23Sys18MatTevRegAnimationFPv = .text:0x804343E0; // type:function size:0x8C scope:global align:4 +set__Q23Sys18MatTevRegAnimationFv = .text:0x8043446C; // type:function size:0x2C scope:global align:4 +remove__Q23Sys18MatTevRegAnimationFv = .text:0x80434498; // type:function size:0x2C scope:global align:4 +__ct__Q23Sys15MatBaseAnimatorFv = .text:0x804344C4; // type:function size:0x18 scope:global align:4 +start__Q23Sys15MatBaseAnimatorFPQ23Sys16MatBaseAnimation = .text:0x804344DC; // type:function size:0x70 scope:global align:4 +setCurrentFrame__Q23Sys15MatBaseAnimatorFf = .text:0x8043454C; // type:function size:0x170 scope:global align:4 +animate__Q23Sys15MatBaseAnimatorFf = .text:0x804346BC; // type:function size:0x78 scope:global align:4 +do_animate__Q23Sys15MatBaseAnimatorFf = .text:0x80434734; // type:function size:0x4 scope:weak align:4 +do_animate__Q23Sys15MatLoopAnimatorFf = .text:0x80434738; // type:function size:0x1B0 scope:global align:4 +onStart__Q23Sys17MatRepeatAnimatorFv = .text:0x804348E8; // type:function size:0xC scope:global align:4 +do_animate__Q23Sys17MatRepeatAnimatorFf = .text:0x804348F4; // type:function size:0x328 scope:global align:4 +onStart__Q23Sys15MatBaseAnimatorFv = .text:0x80434C1C; // type:function size:0x4 scope:weak align:4 +getAnmBase__Q23Sys18MatTevRegAnimationFv = .text:0x80434C20; // type:function size:0x8 scope:weak align:4 +getAnmBase__Q23Sys15MatTexAnimationFv = .text:0x80434C28; // type:function size:0x8 scope:weak align:4 +__ct__Q29P2DScreen3MgrFv = .text:0x80434C30; // type:function size:0x64 scope:global align:4 +addCallBack__Q29P2DScreen3MgrFUxPQ29P2DScreen4Node = .text:0x80434C94; // type:function size:0x138 scope:global align:4 +addCallBackPane__Q29P2DScreen3MgrFP7J2DPanePQ29P2DScreen4Node = .text:0x80434DCC; // type:function size:0x84 scope:global align:4 +update__Q29P2DScreen3MgrFv = .text:0x80434E50; // type:function size:0x4C scope:global align:4 +draw__Q29P2DScreen3MgrFR8GraphicsR14J2DGrafContext = .text:0x80434E9C; // type:function size:0x80 scope:global align:4 +__ct__Q29P2DScreen10Mgr_tuningFv = .text:0x80434F1C; // type:function size:0x88 scope:global align:4 +draw__Q29P2DScreen10Mgr_tuningFR8GraphicsR14J2DGrafContext = .text:0x80434FA4; // type:function size:0x128 scope:global align:4 +doInit__Q35P2JME5Movie10WindowPaneFv = .text:0x804350CC; // type:function size:0x20 scope:global align:4 +update__Q35P2JME5Movie10WindowPaneFv = .text:0x804350EC; // type:function size:0x164 scope:global align:4 +moveWindow__Q35P2JME5Movie10WindowPaneFb = .text:0x80435250; // type:function size:0x278 scope:global align:4 +open__Q35P2JME5Movie10WindowPaneFf = .text:0x804354C8; // type:function size:0x48 scope:global align:4 +doInit__Q35P2JME5Movie8AbtnPaneFv = .text:0x80435510; // type:function size:0x54 scope:global align:4 +update__Q35P2JME5Movie8AbtnPaneFv = .text:0x80435564; // type:function size:0x170 scope:global align:4 +update__Q35P2JME5Movie13PodIconScreenFv = .text:0x804356D4; // type:function size:0x438 scope:global align:4 +__ct__Q35P2JME5Movie8TControlFv = .text:0x80435B0C; // type:function size:0x80 scope:global align:4 +__dt__Q35P2JME6Window8TControlFv = .text:0x80435B8C; // type:function size:0x70 scope:weak align:4 +onInit__Q35P2JME5Movie8TControlFv = .text:0x80435BFC; // type:function size:0x7B0 scope:global align:4 +reset__Q35P2JME5Movie8TControlFv = .text:0x804363AC; // type:function size:0x38 scope:global align:4 +setMode__Q35P2JME5Movie8TControlFQ45P2JME5Movie8TControl9EModeFlag = .text:0x804363E4; // type:function size:0x4E0 scope:global align:4 +open__Q35P2JME5Movie19MessageWindowScreenFf = .text:0x804368C4; // type:function size:0x24 scope:weak align:4 +update__Q35P2JME5Movie8TControlFP10ControllerP10Controller = .text:0x804368E8; // type:function size:0x228 scope:global align:4 +draw__Q35P2JME5Movie8TControlFR8Graphics = .text:0x80436B10; // type:function size:0xCC scope:global align:4 +__dt__Q35P2JME5Movie8TControlFv = .text:0x80436BDC; // type:function size:0x80 scope:weak align:4 +draw__Q35P2JME6Window8TControlFPA4_fPA4_f = .text:0x80436C5C; // type:function size:0x20 scope:weak align:4 +createRenderingProcessor__Q35P2JME6Window8TControlFv = .text:0x80436C7C; // type:function size:0x7C scope:weak align:4 +createSequenceProcessor__Q35P2JME6Window8TControlFv = .text:0x80436CF8; // type:function size:0x80 scope:weak align:4 +setMessageID__Q25P2JME8TControlFUx = .text:0x80436D78; // type:function size:0x38 scope:weak align:4 +createReference__Q25P2JME8TControlFv = .text:0x80436DB0; // type:function size:0x10 scope:weak align:4 +createResourceContainer__Q25P2JME8TControlFv = .text:0x80436DC0; // type:function size:0x10 scope:weak align:4 +__dt__Q35P2JME5Movie19MessageWindowScreenFv = .text:0x80436DD0; // type:function size:0xA4 scope:weak align:4 +__dt__Q35P2JME5Movie13PodIconScreenFv = .text:0x80436E74; // type:function size:0xA4 scope:weak align:4 +__dt__Q35P2JME5Movie8AbtnPaneFv = .text:0x80436F18; // type:function size:0x80 scope:weak align:4 +__dt__Q35P2JME5Movie10WindowPaneFv = .text:0x80436F98; // type:function size:0x80 scope:weak align:4 +__sinit_movieMessage_cpp = .text:0x80437018; // type:function size:0x28 scope:local align:4 +setPauseAndDraw__Q24Game11MoviePlayerFPQ24Game11MovieConfig = .text:0x80437040; // type:function size:0x70 scope:global align:4 +clearPauseAndDraw__Q24Game11MoviePlayerFv = .text:0x804370B0; // type:function size:0x498 scope:global align:4 +__sinit_moviePlayerPauseAndDraw_cpp = .text:0x80437548; // type:function size:0x28 scope:local align:4 +__ct__Q34Game5P2JST18ObjectSpecialActorFPCcPQ24Game11MoviePlayer = .text:0x80437570; // type:function size:0x58 scope:global align:4 +reset__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x804375C8; // type:function size:0x5C scope:global align:4 +stop__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x80437624; // type:function size:0x4 scope:global align:4 +update__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x80437628; // type:function size:0x254 scope:global align:4 +JSGSetAnimation__Q34Game5P2JST18ObjectSpecialActorFUl = .text:0x8043787C; // type:function size:0x84 scope:global align:4 +parseUserData___Q34Game5P2JST18ObjectSpecialActorFUlPCv = .text:0x80437900; // type:function size:0x4 scope:global align:4 +__dt__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x80437904; // type:function size:0x68 scope:weak align:4 +__sinit_JSTObjectSpecialActor_cpp = .text:0x8043796C; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST18ObjectSpecialActorFUlPCv = .text:0x80437994; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x8043799C; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x804379A4; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST18ObjectSpecialActorFv = .text:0x804379AC; // type:function size:0x8 scope:weak align:4 +__ct__Q25P2JME18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x804379B4; // type:function size:0x84 scope:global align:4 +do_begin__Q25P2JME18TSequenceProcessorFPCvPCc = .text:0x80437A38; // type:function size:0x34 scope:global align:4 +do_end__Q25P2JME18TSequenceProcessorFv = .text:0x80437A6C; // type:function size:0x4 scope:global align:4 +do_tag__Q25P2JME18TSequenceProcessorFUlPCvUl = .text:0x80437A70; // type:function size:0xA4 scope:global align:4 +do_systemTagCode__Q25P2JME18TSequenceProcessorFUsPCvUl = .text:0x80437B14; // type:function size:0x8 scope:global align:4 +do_isReady__Q25P2JME18TSequenceProcessorFv = .text:0x80437B1C; // type:function size:0x1D8 scope:global align:4 +doFastForwardSE__Q25P2JME18TSequenceProcessorFv = .text:0x80437CF4; // type:function size:0x4 scope:weak align:4 +do_jump_isReady__Q25P2JME18TSequenceProcessorFv = .text:0x80437CF8; // type:function size:0x8 scope:global align:4 +do_jump__Q25P2JME18TSequenceProcessorFPCvPCc = .text:0x80437D00; // type:function size:0xC scope:global align:4 +do_branch_query__Q25P2JME18TSequenceProcessorFUs = .text:0x80437D0C; // type:function size:0x4 scope:global align:4 +do_branch_queryResult__Q25P2JME18TSequenceProcessorFv = .text:0x80437D10; // type:function size:0x8 scope:global align:4 +do_branch__Q25P2JME18TSequenceProcessorFPCvPCc = .text:0x80437D18; // type:function size:0xC scope:global align:4 +do_character__Q25P2JME18TSequenceProcessorFi = .text:0x80437D24; // type:function size:0xA8 scope:global align:4 +doCharacterSE__Q25P2JME18TSequenceProcessorFi = .text:0x80437DCC; // type:function size:0x4 scope:weak align:4 +doCharacterSEStart__Q25P2JME18TSequenceProcessorFv = .text:0x80437DD0; // type:function size:0x4 scope:weak align:4 +tagControl__Q25P2JME18TSequenceProcessorFUsPCvUl = .text:0x80437DD4; // type:function size:0xF4 scope:global align:4 +setAbtnWait__Q25P2JME18TSequenceProcessorFv = .text:0x80437EC8; // type:function size:0x4C scope:global align:4 +doCharacterSEEnd__Q25P2JME18TSequenceProcessorFv = .text:0x80437F14; // type:function size:0x4 scope:weak align:4 +resetAbtnWait__Q25P2JME18TSequenceProcessorFv = .text:0x80437F18; // type:function size:0x60 scope:global align:4 +doResetAbtnWaitSE__Q25P2JME18TSequenceProcessorFv = .text:0x80437F78; // type:function size:0x2C scope:global align:4 +reset__Q25P2JME18TSequenceProcessorFv = .text:0x80437FA4; // type:function size:0x18 scope:global align:4 +__dt__Q25P2JME18TSequenceProcessorFv = .text:0x80437FBC; // type:function size:0x60 scope:weak align:4 +create__Q25P2JME3MgrFP10JKRExpHeap = .text:0x8043801C; // type:function size:0x40 scope:global align:4 +__ct__Q25P2JME3MgrFP10JKRExpHeap = .text:0x8043805C; // type:function size:0x170 scope:global align:4 +__dt__Q25P2JME3MgrFv = .text:0x804381CC; // type:function size:0x68 scope:global align:4 +setupMessage__Q25P2JME3MgrFv = .text:0x80438234; // type:function size:0x100 scope:global align:4 +setupTex__Q25P2JME3MgrFv = .text:0x80438334; // type:function size:0xF8 scope:global align:4 +setupFont__Q25P2JME3MgrFPCcP10JKRExpHeap = .text:0x8043842C; // type:function size:0x248 scope:global align:4 +createImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDi = .text:0x80438674; // type:function size:0x1A8 scope:global align:4 +setImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDiP10JUTTexture = .text:0x8043881C; // type:function size:0xC4 scope:global align:4 +getImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDi = .text:0x804388E0; // type:function size:0xB8 scope:global align:4 +setupMessageResource__Q25P2JME3MgrFP10JKRArchivePCc = .text:0x80438998; // type:function size:0x104 scope:global align:4 +setupColor__Q25P2JME3MgrFP10JKRArchivePCc = .text:0x80438A9C; // type:function size:0xE0 scope:global align:4 +__sinit_messageMgr_cpp = .text:0x80438B7C; // type:function size:0x28 scope:local align:4 +__ct__Q25P2JME8TControlFv = .text:0x80438BA4; // type:function size:0x74 scope:global align:4 +setController__Q25P2JME8TControlFP10ControllerP10Controller = .text:0x80438C18; // type:function size:0x24 scope:global align:4 +setFont__Q25P2JME8TControlFP7JUTFont = .text:0x80438C3C; // type:function size:0x6C scope:global align:4 +setRubyFont__Q25P2JME8TControlFP7JUTFont = .text:0x80438CA8; // type:function size:0x9C scope:global align:4 +init__Q25P2JME8TControlFv = .text:0x80438D44; // type:function size:0x104 scope:global align:4 +onInit__Q25P2JME8TControlFv = .text:0x80438E48; // type:function size:0x8 scope:weak align:4 +createRenderingProcessor__Q25P2JME8TControlFv = .text:0x80438E50; // type:function size:0x7C scope:weak align:4 +createSequenceProcessor__Q25P2JME8TControlFv = .text:0x80438ECC; // type:function size:0x80 scope:weak align:4 +reset__Q25P2JME8TControlFv = .text:0x80438F4C; // type:function size:0x70 scope:global align:4 +update__Q25P2JME8TControlFv = .text:0x80438FBC; // type:function size:0x8C scope:global align:4 +update__Q25P2JME19TRenderingProcessorFv = .text:0x80439048; // type:function size:0x4 scope:weak align:4 +draw__Q25P2JME8TControlFR8Graphics = .text:0x8043904C; // type:function size:0x20 scope:global align:4 +draw__Q25P2JME8TControlFPA4_fPA4_f = .text:0x8043906C; // type:function size:0x80 scope:global align:4 +setLocate__Q25P2JME8TControlFii = .text:0x804390EC; // type:function size:0x50 scope:global align:4 +setMessageID__Q25P2JME8TControlFPc = .text:0x8043913C; // type:function size:0x54 scope:global align:4 +setMessageID__Q25P2JME8TControlFUlUl = .text:0x80439190; // type:function size:0x84 scope:global align:4 +setMessageCode__Q25P2JME8TControlFUsUs = .text:0x80439214; // type:function size:0x7C scope:global align:4 +setMessageCode__Q25P2JME8TControlFUl = .text:0x80439290; // type:function size:0x70 scope:global align:4 +__dt__Q25P2JME8TControlFv = .text:0x80439300; // type:function size:0x60 scope:weak align:4 +__ct__Q25P2JME23TRenderingProcessorBaseFPCQ28JMessage10TReference = .text:0x80439360; // type:function size:0x3C scope:global align:4 +do_tag__Q25P2JME23TRenderingProcessorBaseFUlPCvUl = .text:0x8043939C; // type:function size:0x174 scope:global align:4 +tagFont__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x80439510; // type:function size:0x8 scope:weak align:4 +tagRuby__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x80439518; // type:function size:0x8 scope:weak align:4 +tagSize__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x80439520; // type:function size:0x8 scope:weak align:4 +tagColor__Q25P2JME23TRenderingProcessorBaseFPCvUl = .text:0x80439528; // type:function size:0x8 scope:weak align:4 +tagPosition__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x80439530; // type:function size:0x8 scope:weak align:4 +tagControl__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x80439538; // type:function size:0x8 scope:weak align:4 +tagColorEX__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x80439540; // type:function size:0x8 scope:weak align:4 +tagImage__Q25P2JME23TRenderingProcessorBaseFUsPCvUl = .text:0x80439548; // type:function size:0x8 scope:weak align:4 +__ct__Q25P2JME19TRenderingProcessorFPCQ28JMessage10TReference = .text:0x80439550; // type:function size:0x218 scope:global align:4 +__dt__Q25P2JME23TRenderingProcessorBaseFv = .text:0x80439768; // type:function size:0x60 scope:weak align:4 +do_begin__Q25P2JME19TRenderingProcessorFPCvPCc = .text:0x804397C8; // type:function size:0xE8 scope:global align:4 +setDrawLocate__Q25P2JME19TRenderingProcessorFv = .text:0x804398B0; // type:function size:0x3B0 scope:weak align:4 +newParagraph__Q25P2JME19TRenderingProcessorFv = .text:0x80439C60; // type:function size:0xDC scope:global align:4 +do_character__Q25P2JME19TRenderingProcessorFi = .text:0x80439D3C; // type:function size:0x31C scope:global align:4 +do_select_begin__Q25P2JME19TRenderingProcessorFUl = .text:0x8043A058; // type:function size:0xB8 scope:global align:4 +do_select_end__Q25P2JME19TRenderingProcessorFv = .text:0x8043A110; // type:function size:0x6C scope:global align:4 +do_select_separate__Q25P2JME19TRenderingProcessorFv = .text:0x8043A17C; // type:function size:0xBC scope:global align:4 +do_tag__Q25P2JME19TRenderingProcessorFUlPCvUl = .text:0x8043A238; // type:function size:0x174 scope:global align:4 +do_systemTagCode__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A3AC; // type:function size:0x8 scope:global align:4 +tagColor__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A3B4; // type:function size:0x2C scope:global align:4 +tagSize__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A3E0; // type:function size:0x3C scope:global align:4 +tagRuby__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A41C; // type:function size:0x164 scope:global align:4 +tagFont__Q25P2JME19TRenderingProcessorFPCvUl = .text:0x8043A580; // type:function size:0x8 scope:global align:4 +tagColorEX__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A588; // type:function size:0x24 scope:global align:4 +tagControl__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A5AC; // type:function size:0x6C scope:global align:4 +doTagControlAbtnWait__Q25P2JME19TRenderingProcessorFv = .text:0x8043A618; // type:function size:0x14 scope:weak align:4 +tagPosition__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043A62C; // type:function size:0x71C scope:global align:4 +initRuby__Q25P2JME19TRenderingProcessorFv = .text:0x8043AD48; // type:function size:0x1C scope:global align:4 +drawRuby__Q25P2JME19TRenderingProcessorFv = .text:0x8043AD64; // type:function size:0x360 scope:global align:4 +tagImage__Q25P2JME19TRenderingProcessorFUsPCvUl = .text:0x8043B0C4; // type:function size:0x438 scope:global align:4 +doDrawLetter__Q25P2JME19TRenderingProcessorFffffib = .text:0x8043B4FC; // type:function size:0x440 scope:global align:4 +doDrawRuby__Q25P2JME19TRenderingProcessorFffffib = .text:0x8043B93C; // type:function size:0x29C scope:global align:4 +doDrawImage__Q25P2JME19TRenderingProcessorFP10JUTTextureffff = .text:0x8043BBD8; // type:function size:0x74 scope:global align:4 +setImageGX__Q25P2JME19TRenderingProcessorFv = .text:0x8043BC4C; // type:function size:0x334 scope:global align:4 +drawImage__Q25P2JME19TRenderingProcessorFP10JUTTextureffff = .text:0x8043BF80; // type:function size:0x4F4 scope:global align:4 +reset__Q25P2JME19TRenderingProcessorFv = .text:0x8043C474; // type:function size:0x10 scope:global align:4 +calcWidth__Q25P2JME19TRenderingProcessorFP7JUTFontifb = .text:0x8043C484; // type:function size:0x128 scope:global align:4 +setLineWidth__Q25P2JME19TRenderingProcessorFv = .text:0x8043C5AC; // type:function size:0x24 scope:global align:4 +resetLineWidth__Q25P2JME19TRenderingProcessorFv = .text:0x8043C5D0; // type:function size:0xD8 scope:global align:4 +setOnePageLine__Q25P2JME19TRenderingProcessorFv = .text:0x8043C6A8; // type:function size:0x40 scope:global align:4 +resetOnePageLine__Q25P2JME19TRenderingProcessorFv = .text:0x8043C6E8; // type:function size:0xD8 scope:global align:4 +setPageInfo__Q25P2JME19TRenderingProcessorFv = .text:0x8043C7C0; // type:function size:0x8C scope:global align:4 +preProcCode__Q25P2JME19TRenderingProcessorFUi = .text:0x8043C84C; // type:function size:0x20 scope:global align:4 +preProcID__Q25P2JME19TRenderingProcessorFUiUi = .text:0x8043C86C; // type:function size:0x20 scope:global align:4 +preProcCenteringCode__Q25P2JME19TRenderingProcessorFUi = .text:0x8043C88C; // type:function size:0x39C scope:global align:4 +preProcCenteringID__Q25P2JME19TRenderingProcessorFUiUi = .text:0x8043CC28; // type:function size:0x3AC scope:global align:4 +setFont__Q25P2JME19TRenderingProcessorFP7JUTFont = .text:0x8043CFD4; // type:function size:0x8 scope:global align:4 +setTextBoxInfo__Q25P2JME19TRenderingProcessorFP7J2DPane = .text:0x8043CFDC; // type:function size:0x44C scope:global align:4 +__dt__Q25P2JME19TRenderingProcessorFv = .text:0x8043D428; // type:function size:0x70 scope:weak align:4 +do_character__Q25P2JME23TRenderingProcessorBaseFi = .text:0x8043D498; // type:function size:0x4 scope:weak align:4 +convertU64ToMessageID__5P2JMEFUxPUlPUl = .text:0x8043D49C; // type:function size:0x48 scope:global align:4 +convertCharToMessageID__5P2JMEFPcPUlPUl = .text:0x8043D4E4; // type:function size:0x128 scope:global align:4 +entry__15ModelEffectDataFv = .text:0x8043D60C; // type:function size:0x6C scope:global align:4 +allocModelData__15ModelEffectDataFi = .text:0x8043D678; // type:function size:0x10C scope:global align:4 +entryModelEffect__11ParticleMgrFP15ModelEffectData = .text:0x8043D784; // type:function size:0x24 scope:global align:4 +createModelEffect__11ParticleMgrFP20ModelEffectCreateArg = .text:0x8043D7A8; // type:function size:0x11C scope:global align:4 +doAnimation__11ModelEffectFv = .text:0x8043D8C4; // type:function size:0x1A8 scope:global align:4 +getLODCylinder__11ModelEffectFRQ23Sys8Cylinder = .text:0x8043DA6C; // type:function size:0x4 scope:weak align:4 +useCylinderLOD__11ModelEffectFv = .text:0x8043DA70; // type:function size:0x8 scope:weak align:4 +doEntry__11ModelEffectFv = .text:0x8043DA78; // type:function size:0x98 scope:global align:4 +changeMaterial__11ModelEffectFv = .text:0x8043DB10; // type:function size:0x4 scope:weak align:4 +doSetView__11ModelEffectFi = .text:0x8043DB14; // type:function size:0x78 scope:global align:4 +doViewCalc__11ModelEffectFv = .text:0x8043DB8C; // type:function size:0x24 scope:global align:4 +doAnimation__11ParticleMgrFv = .text:0x8043DBB0; // type:function size:0x2C scope:global align:4 +doEntry__11ParticleMgrFv = .text:0x8043DBDC; // type:function size:0x2C scope:global align:4 +doSetView__11ParticleMgrFi = .text:0x8043DC08; // type:function size:0x2C scope:global align:4 +doViewCalc__11ParticleMgrFv = .text:0x8043DC34; // type:function size:0x2C scope:global align:4 +__sinit_modelEffect_cpp = .text:0x8043DC60; // type:function size:0x28 scope:local align:4 +do_word__Q25P2JME10TReferenceCFUl = .text:0x8043DC88; // type:function size:0x74 scope:global align:4 +__dt__Q25P2JME10TReferenceFv = .text:0x8043DCFC; // type:function size:0x60 scope:weak align:4 +__ct__Q25P2JME13SimpleMessageFv = .text:0x8043DD5C; // type:function size:0x4 scope:global align:4 +init__Q25P2JME13SimpleMessageFv = .text:0x8043DD60; // type:function size:0x6C scope:global align:4 +drawMessageID__Q25P2JME13SimpleMessageFR8GraphicsUlUl = .text:0x8043DDCC; // type:function size:0x80 scope:global align:4 +attach__Q28SysShape8AnimInfoFP12J3DModelDataPv = .text:0x8043DE4C; // type:function size:0x80 scope:global align:4 +load__Q28SysShape7AnimMgrFP13JKRFileLoaderPcP12J3DModelDataP13JKRFileLoaderPc = .text:0x8043DECC; // type:function size:0x120 scope:global align:4 +load__Q28SysShape7AnimMgrFR6StreamP12J3DModelDataP13JKRFileLoaderPc = .text:0x8043DFEC; // type:function size:0x110 scope:global align:4 +read__Q28SysShape7AnimMgrFR6Stream = .text:0x8043E0FC; // type:function size:0xD8 scope:global align:4 +connectBasArc__Q28SysShape7AnimMgrFPcPcP13JKRFileLoader = .text:0x8043E1D4; // type:function size:0xF8 scope:global align:4 +registerSoundViewer__Q28SysShape7AnimMgrFPQ26PSGame16SoundCreatureMgr = .text:0x8043E2CC; // type:function size:0x54 scope:global align:4 +__sinit_sysShapeAnimation_cpp = .text:0x8043E320; // type:function size:0x28 scope:local align:4 +__ct__Q28SysShape5ModelFP12J3DModelDataUlUl = .text:0x8043E348; // type:function size:0xC4 scope:global align:4 +enableMaterialAnim__Q28SysShape5ModelFP12J3DModelDatai = .text:0x8043E40C; // type:function size:0x17C scope:global align:4 +enableMaterialAnim__Q28SysShape5ModelFi = .text:0x8043E588; // type:function size:0x174 scope:global align:4 +getMatrix__Q28SysShape5ModelFi = .text:0x8043E6FC; // type:function size:0x48 scope:global align:4 +getRoughBoundingRadius__Q28SysShape5ModelFv = .text:0x8043E744; // type:function size:0x15C scope:global align:4 +getRoughCenter__Q28SysShape5ModelFv = .text:0x8043E8A0; // type:function size:0x174 scope:global align:4 +isVisible__Q28SysShape5ModelFRQ23Sys6Sphere = .text:0x8043EA14; // type:function size:0x98 scope:global align:4 +jointVisible__Q28SysShape5ModelFbi = .text:0x8043EAAC; // type:function size:0x80 scope:global align:4 +hide__Q28SysShape5ModelFv = .text:0x8043EB2C; // type:function size:0x58 scope:global align:4 +show__Q28SysShape5ModelFv = .text:0x8043EB84; // type:function size:0x58 scope:global align:4 +hidePackets__Q28SysShape5ModelFv = .text:0x8043EBDC; // type:function size:0x44 scope:global align:4 +showPackets__Q28SysShape5ModelFv = .text:0x8043EC20; // type:function size:0x44 scope:global align:4 +initJoints__Q28SysShape5ModelFv = .text:0x8043EC64; // type:function size:0xBC scope:global align:4 +__dt__Q28SysShape5JointFv = .text:0x8043ED20; // type:function size:0x60 scope:weak align:4 +__ct__Q28SysShape5JointFv = .text:0x8043ED80; // type:function size:0x5C scope:weak align:4 +initJointsRec__Q28SysShape5ModelFiPQ28SysShape5Joint = .text:0x8043EDDC; // type:function size:0x330 scope:global align:4 +getJntNo__8J3DJointCFv = .text:0x8043F10C; // type:function size:0x8 scope:weak align:4 +getYounger__8J3DJointFv = .text:0x8043F114; // type:function size:0x8 scope:weak align:4 +getChild__8J3DJointFv = .text:0x8043F11C; // type:function size:0x8 scope:weak align:4 +getJointIndex__Q28SysShape5ModelFPc = .text:0x8043F124; // type:function size:0x30 scope:global align:4 +getJoint__Q28SysShape5ModelFPc = .text:0x8043F154; // type:function size:0x5C scope:global align:4 +setViewCalcModeImm__Q28SysShape5ModelFv = .text:0x8043F1B0; // type:function size:0xC scope:global align:4 +setViewCalcModeInd__Q28SysShape5ModelFv = .text:0x8043F1BC; // type:function size:0xC scope:global align:4 +viewCalc__Q28SysShape5ModelFv = .text:0x8043F1C8; // type:function size:0x68 scope:global align:4 +setCurrentViewNo__Q28SysShape5ModelFUl = .text:0x8043F230; // type:function size:0x4C scope:global align:4 +isMtxImmediate__Q28SysShape5ModelFv = .text:0x8043F27C; // type:function size:0x14 scope:global align:4 +isModel__Q28SysShape5ModelFv = .text:0x8043F290; // type:function size:0x8 scope:weak align:4 +isVisible__Q28SysShape5ModelFv = .text:0x8043F298; // type:function size:0x8 scope:weak align:4 +jointVisible__Q28SysShape5ModelFbPQ28SysShape5Joint = .text:0x8043F2A0; // type:function size:0x30 scope:weak align:4 +__sinit_sysShapeModel_cpp = .text:0x8043F2D0; // type:function size:0x28 scope:local align:4 +__ct__Q35P2JME6Window8DrawInfoFv = .text:0x8043F2F8; // type:function size:0x50 scope:global align:4 +__dt__Q35P2JME6Window8DrawInfoFv = .text:0x8043F348; // type:function size:0x60 scope:weak align:4 +searchDrawInfo__Q35P2JME6Window11DrawInfoMgrFi = .text:0x8043F3A8; // type:function size:0x30 scope:global align:4 +getDrawInfo__Q35P2JME6Window11DrawInfoMgrFi = .text:0x8043F3D8; // type:function size:0x60 scope:global align:4 +__ct__Q35P2JME6Window18TSequenceProcessorFPQ28JMessage10TReferencePQ28JMessage8TControl = .text:0x8043F438; // type:function size:0x3C scope:global align:4 +doCharacterSE__Q35P2JME6Window18TSequenceProcessorFi = .text:0x8043F474; // type:function size:0xA4 scope:global align:4 +doCharacterSEStart__Q35P2JME6Window18TSequenceProcessorFv = .text:0x8043F518; // type:function size:0x7C scope:global align:4 +doCharacterSEEnd__Q35P2JME6Window18TSequenceProcessorFv = .text:0x8043F594; // type:function size:0x7C scope:global align:4 +doFastForwardSE__Q35P2JME6Window18TSequenceProcessorFv = .text:0x8043F610; // type:function size:0x5C scope:global align:4 +__ct__Q35P2JME6Window19TRenderingProcessorFPQ28JMessage10TReference = .text:0x8043F66C; // type:function size:0x60 scope:global align:4 +doDrawCommon__Q35P2JME6Window19TRenderingProcessorFffP7MatrixfP7Matrixf = .text:0x8043F6CC; // type:function size:0x344 scope:global align:4 +doGetDrawInfo__Q35P2JME6Window19TRenderingProcessorFPQ35P2JME6Window8DrawInfo = .text:0x8043FA10; // type:function size:0x4 scope:weak align:4 +makeMatrix__Q35P2JME6Window19TRenderingProcessorFP7MatrixfPQ35P2JME6Window8DrawInfof10Vector3 = .text:0x8043FA14; // type:function size:0x284 scope:global align:4 +doDrawLetter__Q35P2JME6Window19TRenderingProcessorFffffib = .text:0x8043FC98; // type:function size:0x188 scope:global align:4 +doDrawRuby__Q35P2JME6Window19TRenderingProcessorFffffib = .text:0x8043FE20; // type:function size:0x17C scope:global align:4 +doDrawImage__Q35P2JME6Window19TRenderingProcessorFP10JUTTextureffff = .text:0x8043FF9C; // type:function size:0x1DC scope:global align:4 +update__Q35P2JME6Window19TRenderingProcessorFv = .text:0x80440178; // type:function size:0x40 scope:global align:4 +reset__Q35P2JME6Window19TRenderingProcessorFv = .text:0x804401B8; // type:function size:0xA4 scope:global align:4 +__ct__Q35P2JME6Window8TControlFv = .text:0x8044025C; // type:function size:0x50 scope:global align:4 +initRenderingProcessor__Q35P2JME6Window8TControlFUl = .text:0x804402AC; // type:function size:0x100 scope:global align:4 +update__Q35P2JME6Window8TControlFP10ControllerP10Controller = .text:0x804403AC; // type:function size:0x188 scope:global align:4 +reset__Q35P2JME6Window8TControlFv = .text:0x80440534; // type:function size:0x20 scope:global align:4 +draw__Q35P2JME6Window8TControlFR8Graphics = .text:0x80440554; // type:function size:0x7C scope:global align:4 +onInit__Q35P2JME6Window8TControlFv = .text:0x804405D0; // type:function size:0x50 scope:global align:4 +__dt__Q35P2JME6Window19TRenderingProcessorFv = .text:0x80440620; // type:function size:0xA8 scope:weak align:4 +__dt__Q35P2JME6Window18TSequenceProcessorFv = .text:0x804406C8; // type:function size:0x70 scope:weak align:4 +__sinit_windowMessage_cpp = .text:0x80440738; // type:function size:0x28 scope:local align:4 +__ct__13MemoryCardMgrFv = .text:0x80440760; // type:function size:0x7C scope:global align:4 +__defctor__20MemoryCardMgrCommandFv = .text:0x804407DC; // type:function size:0x24 scope:weak align:4 +resetCommandFlagQueue__13MemoryCardMgrFv = .text:0x80440800; // type:function size:0x24 scope:global align:4 +setCommand__13MemoryCardMgrFi = .text:0x80440824; // type:function size:0x40 scope:global align:4 +setCommand__13MemoryCardMgrFP24MemoryCardMgrCommandBase = .text:0x80440864; // type:function size:0x138 scope:global align:4 +cardFormat__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x8044099C; // type:function size:0x2A0 scope:global align:4 +init__13MemoryCardMgrFv = .text:0x80440C3C; // type:function size:0x7C scope:global align:4 +doInit__13MemoryCardMgrFv = .text:0x80440CB8; // type:function size:0x4 scope:weak align:4 +update__13MemoryCardMgrFv = .text:0x80440CBC; // type:function size:0x320 scope:global align:4 +cardMount__13MemoryCardMgrFv = .text:0x80440FDC; // type:function size:0x150 scope:global align:4 +checkStatus__13MemoryCardMgrFv = .text:0x8044112C; // type:function size:0x104 scope:global align:4 +cardProc__13MemoryCardMgrFPv = .text:0x80441230; // type:function size:0x250 scope:global align:4 +doCardProc__13MemoryCardMgrFPvP20MemoryCardMgrCommand = .text:0x80441480; // type:function size:0x8 scope:weak align:4 +isErrorOccured__13MemoryCardMgrFv = .text:0x80441488; // type:function size:0x110 scope:global align:4 +fileOpen__13MemoryCardMgrFP12CARDFileInfoQ213MemoryCardMgr9ECardSlotPCc = .text:0x80441598; // type:function size:0x1A0 scope:global align:4 +writeHeader__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCc = .text:0x80441738; // type:function size:0x278 scope:global align:4 +getHeaderSize__13MemoryCardMgrFv = .text:0x804419B0; // type:function size:0x8 scope:weak align:4 +writeCardStatus__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCc = .text:0x804419B8; // type:function size:0x254 scope:global align:4 +write__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCcPUcll = .text:0x80441C0C; // type:function size:0x204 scope:global align:4 +checkCardStat__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotP12CARDFileInfo = .text:0x80441E10; // type:function size:0xC4 scope:global align:4 +read__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCcPUcll = .text:0x80441ED4; // type:function size:0x280 scope:global align:4 +format__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x80442154; // type:function size:0x88 scope:global align:4 +attach__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x804421DC; // type:function size:0x98 scope:global align:4 +detach__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x80442274; // type:function size:0x3C scope:global align:4 +mount__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot = .text:0x804422B0; // type:function size:0x168 scope:global align:4 +checkSpace__13MemoryCardMgrFQ213MemoryCardMgr9ECardSloti = .text:0x80442418; // type:function size:0xFC scope:global align:4 +doMakeHeader__13MemoryCardMgrFPUc = .text:0x80442514; // type:function size:0x104 scope:global align:4 +doCheckCardStat__13MemoryCardMgrFP8CARDStat = .text:0x80442618; // type:function size:0xE0 scope:global align:4 +doSetCardStat__13MemoryCardMgrFP8CARDStat = .text:0x804426F8; // type:function size:0x108 scope:global align:4 +calcCheckSum__13MemoryCardMgrFPvUl = .text:0x80442800; // type:function size:0xF8 scope:global align:4 +readCardSerialNo__13MemoryCardMgrFPUxQ213MemoryCardMgr9ECardSlot = .text:0x804428F8; // type:function size:0xB8 scope:global align:4 +setInsideStatusFlag__13MemoryCardMgrFQ213MemoryCardMgr17EInsideStatusFlag = .text:0x804429B0; // type:function size:0x14 scope:global align:4 +resetInsideStatusFlag__13MemoryCardMgrFQ213MemoryCardMgr17EInsideStatusFlag = .text:0x804429C4; // type:function size:0x8 scope:global align:4 +__dt__13MemoryCardMgrFv = .text:0x804429CC; // type:function size:0x48 scope:weak align:4 +getClassSize__20MemoryCardMgrCommandFv = .text:0x80442A14; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game10MemoryCard6PlayerFv = .text:0x80442A1C; // type:function size:0x3C scope:global align:4 +__ct__Q34Game10MemoryCard14PlayerFileInfoFv = .text:0x80442A58; // type:function size:0x44 scope:global align:4 +getPlayer__Q34Game10MemoryCard14PlayerFileInfoFi = .text:0x80442A9C; // type:function size:0x74 scope:global align:4 +isBrokenFile__Q34Game10MemoryCard14PlayerFileInfoFi = .text:0x80442B10; // type:function size:0x80 scope:global align:4 +isNewFile__Q34Game10MemoryCard14PlayerFileInfoFi = .text:0x80442B90; // type:function size:0x94 scope:global align:4 +__dt__Q34Game10MemoryCard8ResourceFv = .text:0x80442C24; // type:function size:0x6C scope:global align:4 +__ct__Q34Game10MemoryCard3MgrFv = .text:0x80442C90; // type:function size:0x7C scope:global align:4 +isErrorOccured__Q34Game10MemoryCard3MgrFv = .text:0x80442D0C; // type:function size:0x30 scope:global align:4 +loadResource__Q34Game10MemoryCard3MgrFP7JKRHeap = .text:0x80442D3C; // type:function size:0x120 scope:global align:4 +destroyResource__Q34Game10MemoryCard3MgrFv = .text:0x80442E5C; // type:function size:0x10 scope:global align:4 +update__Q34Game10MemoryCard3MgrFv = .text:0x80442E6C; // type:function size:0x20 scope:global align:4 +format__Q34Game10MemoryCard3MgrFv = .text:0x80442E8C; // type:function size:0x6C scope:global align:4 +checkBeforeSave__Q34Game10MemoryCard3MgrFv = .text:0x80442EF8; // type:function size:0x74 scope:global align:4 +checkError__Q34Game10MemoryCard3MgrFv = .text:0x80442F6C; // type:function size:0x74 scope:global align:4 +createNewFile__Q34Game10MemoryCard3MgrFv = .text:0x80442FE0; // type:function size:0x74 scope:global align:4 +saveGameOption__Q34Game10MemoryCard3MgrFv = .text:0x80443054; // type:function size:0xB8 scope:global align:4 +loadGameOption__Q34Game10MemoryCard3MgrFv = .text:0x8044310C; // type:function size:0xB8 scope:global align:4 +savePlayerNoCheckSerialNumber__Q34Game10MemoryCard3MgrFi = .text:0x804431C4; // type:function size:0x124 scope:global align:4 +savePlayer__Q34Game10MemoryCard3MgrFi = .text:0x804432E8; // type:function size:0x114 scope:global align:4 +loadPlayer__Q34Game10MemoryCard3MgrFi = .text:0x804433FC; // type:function size:0x124 scope:global align:4 +deletePlayer__Q34Game10MemoryCard3MgrFi = .text:0x80443520; // type:function size:0x124 scope:global align:4 +copyPlayer__Q34Game10MemoryCard3MgrFii = .text:0x80443644; // type:function size:0x150 scope:global align:4 +getPlayerHeader__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard14PlayerFileInfo = .text:0x80443794; // type:function size:0xE8 scope:global align:4 +doCardProc__Q34Game10MemoryCard3MgrFPvP20MemoryCardMgrCommand = .text:0x8044387C; // type:function size:0x354 scope:global align:4 +commandUpdatePlayerHeader__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard14PlayerFileInfo = .text:0x80443BD0; // type:function size:0x390 scope:global align:4 +commandCheckBeforeSave__Q34Game10MemoryCard3MgrFv = .text:0x80443F60; // type:function size:0x7C scope:global align:4 +commandCheckError__Q34Game10MemoryCard3MgrFv = .text:0x80443FDC; // type:function size:0x80 scope:global align:4 +checkSpace__Q34Game10MemoryCard3MgrFQ213MemoryCardMgr9ECardSlot = .text:0x8044405C; // type:function size:0xB8 scope:global align:4 +commandSaveHeader__Q34Game10MemoryCard3MgrFv = .text:0x80444114; // type:function size:0x118 scope:global align:4 +commandCreateNewFile__Q34Game10MemoryCard3MgrFv = .text:0x8044422C; // type:function size:0x1A0 scope:global align:4 +dataFormat__Q34Game10MemoryCard3MgrFQ213MemoryCardMgr9ECardSlot = .text:0x804443CC; // type:function size:0x100 scope:global align:4 +varifyCardStatus__Q34Game10MemoryCard3MgrFv = .text:0x804444CC; // type:function size:0x170 scope:global align:4 +commandSaveGameOption__Q34Game10MemoryCard3MgrFbb = .text:0x8044463C; // type:function size:0x1C0 scope:global align:4 +commandLoadGameOption__Q34Game10MemoryCard3MgrFv = .text:0x804447FC; // type:function size:0x248 scope:global align:4 +writeGameOption__Q34Game10MemoryCard3MgrFR6Stream = .text:0x80444A44; // type:function size:0x28 scope:global align:4 +readGameOption__Q34Game10MemoryCard3MgrFR6Stream = .text:0x80444A6C; // type:function size:0x28 scope:global align:4 +checkSerialNo__Q34Game10MemoryCard3MgrFb = .text:0x80444A94; // type:function size:0x70 scope:global align:4 +commandSavePlayer__Q34Game10MemoryCard3MgrFScb = .text:0x80444B04; // type:function size:0xD0 scope:global align:4 +commandSavePlayerNoCheckSerialNo__Q34Game10MemoryCard3MgrFScb = .text:0x80444BD4; // type:function size:0x374 scope:global align:4 +getPlayerInfo__Q34Game10MemoryCard3MgrFScPQ34Game10MemoryCard16PlayerInfoHeaderPb = .text:0x80444F48; // type:function size:0x70 scope:global align:4 +getIndexPlayerInfo__Q34Game10MemoryCard3MgrFScPQ34Game10MemoryCard16PlayerInfoHeaderPb = .text:0x80444FB8; // type:function size:0x2B0 scope:global align:4 +commandLoadPlayer__Q34Game10MemoryCard3MgrFSc = .text:0x80445268; // type:function size:0x19C scope:global align:4 +loadPlayerForNoCard__Q34Game10MemoryCard3MgrFSc = .text:0x80445404; // type:function size:0x9C scope:global align:4 +loadPlayerProc__Q34Game10MemoryCard3MgrFScPUc = .text:0x804454A0; // type:function size:0x178 scope:global align:4 +commandDeletePlayer__Q34Game10MemoryCard3MgrFSc = .text:0x80445618; // type:function size:0x94 scope:global align:4 +savePlayerProc__Q34Game10MemoryCard3MgrFScPUcb = .text:0x804456AC; // type:function size:0x19C scope:global align:4 +commandCheckSerialNo__Q34Game10MemoryCard3MgrFv = .text:0x80445848; // type:function size:0x68 scope:global align:4 +commandCopyPlayer__Q34Game10MemoryCard3MgrFScSc = .text:0x804458B0; // type:function size:0x1C8 scope:global align:4 +writePlayer__Q34Game10MemoryCard3MgrFR6Stream = .text:0x80445A78; // type:function size:0x24 scope:global align:4 +readPlayer__Q34Game10MemoryCard3MgrFR6Stream = .text:0x80445A9C; // type:function size:0x24 scope:global align:4 +checkOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo = .text:0x80445AC0; // type:function size:0x74 scope:global align:4 +calcCheckSumOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo = .text:0x80445B34; // type:function size:0x24 scope:global align:4 +testCheckSumOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo = .text:0x80445B58; // type:function size:0x40 scope:global align:4 +checkPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo = .text:0x80445B98; // type:function size:0x74 scope:global align:4 +calcCheckSumPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo = .text:0x80445C0C; // type:function size:0x28 scope:global align:4 +testCheckSumPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo = .text:0x80445C34; // type:function size:0x48 scope:global align:4 +getCardStatus__Q34Game10MemoryCard3MgrFv = .text:0x80445C7C; // type:function size:0xB8 scope:global align:4 +writeInvalidGameOption__Q34Game10MemoryCard3MgrFv = .text:0x80445D34; // type:function size:0xB8 scope:global align:4 +writeInvalidPlayerInfoAll__Q34Game10MemoryCard3MgrFv = .text:0x80445DEC; // type:function size:0x70 scope:global align:4 +writeInvalidPlayerInfo__Q34Game10MemoryCard3MgrFiSc = .text:0x80445E5C; // type:function size:0x110 scope:global align:4 +checkPlayerNoPlayerInfo__Q34Game10MemoryCard3MgrFiScPQ34Game10MemoryCard16PlayerInfoHeader = .text:0x80445F6C; // type:function size:0x1A8 scope:global align:4 +getIndexInvalidPlayerInfo__Q34Game10MemoryCard3MgrFPiPScScUlb = .text:0x80446114; // type:function size:0x380 scope:global align:4 +modifyPlayerInfo__Q34Game10MemoryCard3MgrFScPb = .text:0x80446494; // type:function size:0x4BC scope:global align:4 +verifyCardSerialNo__Q34Game10MemoryCard3MgrFPUxQ213MemoryCardMgr9ECardSlot = .text:0x80446950; // type:function size:0x84 scope:global align:4 +resetError__Q34Game10MemoryCard3MgrFv = .text:0x804469D4; // type:function size:0x7C scope:global align:4 +doMakeHeader__Q34Game10MemoryCard3MgrFPUc = .text:0x80446A50; // type:function size:0x12C scope:global align:4 +doSetCardStat__Q34Game10MemoryCard3MgrFP8CARDStat = .text:0x80446B7C; // type:function size:0x104 scope:global align:4 +doCheckCardStat__Q34Game10MemoryCard3MgrFP8CARDStat = .text:0x80446C80; // type:function size:0xDC scope:global align:4 +getClassSize__Q34Game10MemoryCard25MgrCommandGetPlayerHeaderFv = .text:0x80446D5C; // type:function size:0x8 scope:weak align:4 +getClassSize__Q34Game10MemoryCard20MgrCommandCopyPlayerFv = .text:0x80446D64; // type:function size:0x8 scope:weak align:4 +getClassSize__Q34Game10MemoryCard18MgrCommandPlayerNoFv = .text:0x80446D6C; // type:function size:0x8 scope:weak align:4 +__dt__Q34Game10MemoryCard3MgrFv = .text:0x80446D74; // type:function size:0x5C scope:weak align:4 +getHeaderSize__Q34Game10MemoryCard3MgrFv = .text:0x80446DD0; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game14CommonSaveData3MgrFv = .text:0x80446DD8; // type:function size:0x44 scope:global align:4 +setDefault__Q34Game14CommonSaveData3MgrFv = .text:0x80446E1C; // type:function size:0x78 scope:global align:4 +setCardSerialNo__Q34Game14CommonSaveData3MgrFUx = .text:0x80446E94; // type:function size:0x18 scope:global align:4 +resetCardSerialNo__Q34Game14CommonSaveData3MgrFv = .text:0x80446EAC; // type:function size:0x20 scope:global align:4 +write__Q34Game14CommonSaveData3MgrFR6Stream = .text:0x80446ECC; // type:function size:0xAC scope:global align:4 +read__Q34Game14CommonSaveData3MgrFR6Stream = .text:0x80446F78; // type:function size:0xAC scope:global align:4 +setup__Q34Game14CommonSaveData3MgrFv = .text:0x80447024; // type:function size:0x100 scope:global align:4 +resetPlayer__Q34Game14CommonSaveData3MgrFSc = .text:0x80447124; // type:function size:0x14 scope:global align:4 +setDeflicker__Q34Game14CommonSaveData3MgrFv = .text:0x80447138; // type:function size:0x30 scope:global align:4 +setDeflicker__Q34Game14CommonSaveData3MgrFb = .text:0x80447168; // type:function size:0xD0 scope:global align:4 +setSoundModeMono__Q34Game14CommonSaveData3MgrFv = .text:0x80447238; // type:function size:0x34 scope:global align:4 +setSoundModeStereo__Q34Game14CommonSaveData3MgrFv = .text:0x8044726C; // type:function size:0x34 scope:global align:4 +setSoundModeSurround__Q34Game14CommonSaveData3MgrFv = .text:0x804472A0; // type:function size:0x34 scope:global align:4 +setBgmVolume__Q34Game14CommonSaveData3MgrFf = .text:0x804472D4; // type:function size:0x12C scope:global align:4 +setSeVolume__Q34Game14CommonSaveData3MgrFf = .text:0x80447400; // type:function size:0x12C scope:global align:4 +__ct__10TinyPikminFv = .text:0x8044752C; // type:function size:0x30 scope:global align:4 +update__10TinyPikminFv = .text:0x8044755C; // type:function size:0x4B8 scope:global align:4 +init__13TinyPikminMgrFv = .text:0x80447A14; // type:function size:0x4C8 scope:global align:4 +__ct__11BootSectionFP7JKRHeap = .text:0x80447EDC; // type:function size:0x348 scope:global align:4 +__dt__11BootSectionFv = .text:0x80448224; // type:function size:0x84 scope:global align:4 +init__11BootSectionFv = .text:0x804482A8; // type:function size:0x4 scope:global align:4 +loadBootResource__11BootSectionFv = .text:0x804482AC; // type:function size:0x2B8 scope:global align:4 +load2DResource__11BootSectionFv = .text:0x80448564; // type:function size:0x128 scope:global align:4 +__ct__Q23ebi13TScreenProgreFv = .text:0x8044868C; // type:function size:0x294 scope:weak align:4 +loadResident__11BootSectionFv = .text:0x80448920; // type:function size:0x44 scope:global align:4 +doDraw__11BootSectionFR8Graphics = .text:0x80448964; // type:function size:0x19C scope:global align:4 +drawProgressive__11BootSectionFR8Graphics = .text:0x80448B00; // type:function size:0x20 scope:global align:4 +drawSetProgressive__11BootSectionFR8Graphics = .text:0x80448B20; // type:function size:0x20 scope:global align:4 +drawSetInterlace__11BootSectionFR8Graphics = .text:0x80448B40; // type:function size:0x20 scope:global align:4 +drawNintendoLogo__11BootSectionFR8Graphics = .text:0x80448B60; // type:function size:0x3E0 scope:global align:4 +drawDolbyLogo__11BootSectionFR8Graphics = .text:0x80448F40; // type:function size:0xB4 scope:global align:4 +doUpdate__11BootSectionFv = .text:0x80448FF4; // type:function size:0x4D4 scope:global align:4 +updateLoadResourceFirst__11BootSectionFv = .text:0x804494C8; // type:function size:0x124 scope:global align:4 +updateLoadMemoryCard__11BootSectionFv = .text:0x804495EC; // type:function size:0x13C scope:global align:4 +updateNintendoLogo__11BootSectionFv = .text:0x80449728; // type:function size:0x288 scope:global align:4 +updateProgressive__11BootSectionFv = .text:0x804499B0; // type:function size:0x180 scope:global align:4 +updateWaitProgressive__11BootSectionFv = .text:0x80449B30; // type:function size:0x64 scope:global align:4 +run__11BootSectionFv = .text:0x80449B94; // type:function size:0x120 scope:global align:4 +runWait__11BootSectionFM11BootSectionFPCvPv_b = .text:0x80449CB4; // type:function size:0x9C scope:global align:4 +waitLoadResource__11BootSectionFv = .text:0x80449D50; // type:function size:0x30 scope:global align:4 +setMode__11BootSectionFi = .text:0x80449D80; // type:function size:0x84 scope:global align:4 +setModeEpilepsy__11BootSectionFv = .text:0x80449E04; // type:function size:0x88 scope:global align:4 +forceReset__11BootSectionFv = .text:0x80449E8C; // type:function size:0x8 scope:weak align:4 +invoke__23Delegate<11BootSection>Fv = .text:0x80449E94; // type:function size:0x30 scope:weak align:4 +__sinit_bootSection_cpp = .text:0x80449EC4; // type:function size:0x28 scope:local align:4 +__ct__Q25Title7SectionFP7JKRHeap = .text:0x80449EEC; // type:function size:0xF0 scope:global align:4 +__dt__Q33ebi5Omake4TMgrFv = .text:0x80449FDC; // type:function size:0x70 scope:weak align:4 +__dt__Q33ebi6Option4TMgrFv = .text:0x8044A04C; // type:function size:0x54 scope:weak align:4 +__dt__Q23ebi13TMainTitleMgrFv = .text:0x8044A0A0; // type:function size:0x270 scope:weak align:4 +__dt__Q25Title7SectionFv = .text:0x8044A310; // type:function size:0xA4 scope:global align:4 +doExit__Q25Title7SectionFv = .text:0x8044A3B4; // type:function size:0xC4 scope:global align:4 +loadResident__Q25Title7SectionFv = .text:0x8044A478; // type:function size:0x104 scope:global align:4 +init__Q25Title7SectionFv = .text:0x8044A57C; // type:function size:0x434 scope:global align:4 +menuCancel__Q25Title7SectionFR4Menu = .text:0x8044A9B0; // type:function size:0x2C scope:global align:4 +menuSelect__Q25Title7SectionFR4Menu = .text:0x8044A9DC; // type:function size:0x54 scope:global align:4 +doDraw__Q25Title7SectionFR8Graphics = .text:0x8044AA30; // type:function size:0x110 scope:global align:4 +doUpdateMainTitle__Q25Title7SectionFv = .text:0x8044AB40; // type:function size:0x688 scope:global align:4 +doUpdateOmake__Q25Title7SectionFv = .text:0x8044B1C8; // type:function size:0x4C8 scope:global align:4 +run__Q25Title7SectionFv = .text:0x8044B690; // type:function size:0x108 scope:global align:4 +doUpdate__Q25Title7SectionFv = .text:0x8044B798; // type:function size:0x5B8 scope:global align:4 +isFinishable__Q25Title7SectionFv = .text:0x8044BD50; // type:function size:0x40 scope:global align:4 +doLoadingStart__Q25Title7SectionFv = .text:0x8044BD90; // type:function size:0x8C scope:global align:4 +doLoading__Q25Title7SectionFv = .text:0x8044BE1C; // type:function size:0xEC scope:global align:4 +loadResource__Q25Title7SectionFv = .text:0x8044BF08; // type:function size:0x3C8 scope:global align:4 +forceReset__Q25Title7SectionFv = .text:0x8044C2D0; // type:function size:0x8 scope:weak align:4 +__dt__11HIORootNodeFv = .text:0x8044C2D8; // type:function size:0x70 scope:weak align:4 +invoke__34Delegate1FR4Menu = .text:0x8044C348; // type:function size:0x30 scope:weak align:4 +invoke__26DelegateFv = .text:0x8044C378; // type:function size:0x30 scope:weak align:4 +__sinit_titleSection_cpp = .text:0x8044C3A8; // type:function size:0x28 scope:local align:4 +__dt__Q212LoadResource4NodeFv = .text:0x8044C3D0; // type:function size:0xB8 scope:global align:4 +__ct__Q212LoadResource3ArgFPCc = .text:0x8044C488; // type:function size:0x44 scope:global align:4 +__ct__Q212LoadResource11ArgAramOnlyFPCc = .text:0x8044C4CC; // type:function size:0x48 scope:global align:4 +init__Q212LoadResource3MgrFv = .text:0x8044C514; // type:function size:0xB0 scope:global align:4 +mountArchive__Q212LoadResource3MgrFRQ212LoadResource3Arg = .text:0x8044C5C4; // type:function size:0x8C scope:global align:4 +load__Q212LoadResource3MgrFRQ212LoadResource3Arg = .text:0x8044C650; // type:function size:0x324 scope:global align:4 +@24@__dt__Q212LoadResource4NodeFv = .text:0x8044C974; // type:function size:0x8 scope:weak align:4 +__ct__15RootMenuSectionFP7JKRHeap = .text:0x8044C97C; // type:function size:0x48 scope:global align:4 +__dt__15RootMenuSectionFv = .text:0x8044C9C4; // type:function size:0x70 scope:global align:4 +setChildSection__15RootMenuSectionFP7JKRHeap = .text:0x8044CA34; // type:function size:0x24 scope:global align:4 +drawInit__15RootMenuSectionFR8Graphics = .text:0x8044CA58; // type:function size:0x4 scope:global align:4 +doUpdate__15RootMenuSectionFv = .text:0x8044CA5C; // type:function size:0x8 scope:weak align:4 +doDraw__15RootMenuSectionFR8Graphics = .text:0x8044CA64; // type:function size:0x4 scope:weak align:4 +__ct__Q24Demo7SectionFP7JKRHeap = .text:0x8044CA68; // type:function size:0x54 scope:global align:4 +__dt__Q24Demo7SectionFv = .text:0x8044CABC; // type:function size:0x88 scope:global align:4 +init__Q24Demo7SectionFv = .text:0x8044CB44; // type:function size:0x1A0 scope:global align:4 +doDraw__Q24Demo7SectionFR8Graphics = .text:0x8044CCE4; // type:function size:0xE8 scope:global align:4 +doUpdate__Q24Demo7SectionFv = .text:0x8044CDCC; // type:function size:0xAC scope:global align:4 +doExit__Q24Demo7SectionFv = .text:0x8044CE78; // type:function size:0xB0 scope:global align:4 +doLoadingStart__Q24Demo7SectionFv = .text:0x8044CF28; // type:function size:0xA4 scope:global align:4 +doLoading__Q24Demo7SectionFv = .text:0x8044CFCC; // type:function size:0x38 scope:global align:4 +loadResource__Q24Demo7SectionFv = .text:0x8044D004; // type:function size:0xC8 scope:global align:4 +__dt__Q24Demo11HIORootNodeFv = .text:0x8044D0CC; // type:function size:0x70 scope:weak align:4 +forceReset__Q24Demo7SectionFv = .text:0x8044D13C; // type:function size:0x8 scope:weak align:4 +invoke__25DelegateFv = .text:0x8044D144; // type:function size:0x30 scope:weak align:4 +CreateAudioDecodeThread = .text:0x8044D174; // type:function size:0xD4 scope:global align:4 +AudioDecodeThreadStart = .text:0x8044D248; // type:function size:0x34 scope:global align:4 +AudioDecodeThreadCancel = .text:0x8044D27C; // type:function size:0x3C scope:global align:4 +AudioDecoder__FPv = .text:0x8044D2B8; // type:function size:0x28 scope:local align:4 +AudioDecoderForOnMemory__FPv = .text:0x8044D2E0; // type:function size:0xA8 scope:local align:4 +AudioDecode__FP13THPReadBuffer = .text:0x8044D388; // type:function size:0xD4 scope:local align:4 +PopFreeAudioBuffer = .text:0x8044D45C; // type:function size:0x34 scope:global align:4 +PushFreeAudioBuffer = .text:0x8044D490; // type:function size:0x30 scope:global align:4 +PopDecodedAudioBuffer = .text:0x8044D4C0; // type:function size:0x44 scope:global align:4 +PushDecodedAudioBuffer = .text:0x8044D504; // type:function size:0x30 scope:global align:4 +THPGXRestore = .text:0x8044D534; // type:function size:0x118 scope:global align:4 +THPGXYuv2RgbSetup = .text:0x8044D64C; // type:function size:0x4C0 scope:global align:4 +THPGXYuv2RgbDraw = .text:0x8044DB0C; // type:function size:0x1DC scope:global align:4 +audioCallbackWithMSound__Fl = .text:0x8044DCE8; // type:function size:0xA8 scope:local align:4 +THPPlayerInit = .text:0x8044DD90; // type:function size:0xD8 scope:global align:4 +THPPlayerQuit = .text:0x8044DE68; // type:function size:0x34 scope:global align:4 +THPPlayerOpen = .text:0x8044DE9C; // type:function size:0x334 scope:global align:4 +THPPlayerClose = .text:0x8044E1D0; // type:function size:0x54 scope:global align:4 +THPPlayerCalcNeedMemory = .text:0x8044E224; // type:function size:0xB0 scope:global align:4 +THPPlayerSetBuffer = .text:0x8044E2D4; // type:function size:0x210 scope:global align:4 +PrepareReady__Fi = .text:0x8044E4E4; // type:function size:0x30 scope:global align:4 +THPPlayerPrepare = .text:0x8044E514; // type:function size:0x394 scope:global align:4 +THPPlayerPlay = .text:0x8044E8A8; // type:function size:0x60 scope:global align:4 +THPPlayerStop = .text:0x8044E908; // type:function size:0xD0 scope:global align:4 +THPPlayerPause = .text:0x8044E9D8; // type:function size:0x3C scope:global align:4 +PlayControl__FUl = .text:0x8044EA14; // type:function size:0x2B8 scope:local align:4 +ProperTimingForStart__Fv = .text:0x8044ECCC; // type:function size:0x6C scope:local align:4 +ProperTimingForGettingNextFrame__Fv = .text:0x8044ED38; // type:function size:0x140 scope:local align:4 +THPPlayerDrawCurrentFrame = .text:0x8044EE78; // type:function size:0xD8 scope:global align:4 +THPPlayerGetVideoInfo = .text:0x8044EF50; // type:function size:0x48 scope:global align:4 +THPPlayerGetAudioInfo = .text:0x8044EF98; // type:function size:0x48 scope:global align:4 +PushUsedTextureSet__FPv = .text:0x8044EFE0; // type:function size:0x30 scope:local align:4 +PopUsedTextureSet__Fv = .text:0x8044F010; // type:function size:0x44 scope:local align:4 +THPPlayerDrawDone = .text:0x8044F054; // type:function size:0x70 scope:global align:4 +MixAudio__FPsPsUl = .text:0x8044F0C4; // type:function size:0x250 scope:local align:4 +THPPlayerSetVolume = .text:0x8044F314; // type:function size:0x128 scope:global align:4 +CreateReadThread = .text:0x8044F43C; // type:function size:0xA0 scope:global align:4 +ReadThreadStart = .text:0x8044F4DC; // type:function size:0x34 scope:global align:4 +ReadThreadCancel = .text:0x8044F510; // type:function size:0x3C scope:global align:4 +Reader__FPv = .text:0x8044F54C; // type:function size:0xEC scope:local align:4 +PopReadedBuffer = .text:0x8044F638; // type:function size:0x34 scope:global align:4 +PushReadedBuffer = .text:0x8044F66C; // type:function size:0x30 scope:global align:4 +PopFreeReadBuffer = .text:0x8044F69C; // type:function size:0x34 scope:global align:4 +PushFreeReadBuffer = .text:0x8044F6D0; // type:function size:0x30 scope:global align:4 +PopReadedBuffer2 = .text:0x8044F700; // type:function size:0x34 scope:global align:4 +PushReadedBuffer2 = .text:0x8044F734; // type:function size:0x30 scope:global align:4 +CreateVideoDecodeThread = .text:0x8044F764; // type:function size:0xD8 scope:global align:4 +VideoDecodeThreadStart = .text:0x8044F83C; // type:function size:0x34 scope:global align:4 +VideoDecodeThreadCancel = .text:0x8044F870; // type:function size:0x3C scope:global align:4 +VideoDecoder__FPv = .text:0x8044F8AC; // type:function size:0xC8 scope:local align:4 +VideoDecoderForOnMemory__FPv = .text:0x8044F974; // type:function size:0x134 scope:local align:4 +VideoDecode__FP13THPReadBuffer = .text:0x8044FAA8; // type:function size:0x120 scope:local align:4 +PopFreeTextureSet = .text:0x8044FBC8; // type:function size:0x34 scope:global align:4 +PushFreeTextureSet = .text:0x8044FBFC; // type:function size:0x30 scope:global align:4 +PopDecodedTextureSet = .text:0x8044FC2C; // type:function size:0x44 scope:global align:4 +PushDecodedTextureSet = .text:0x8044FC70; // type:function size:0x30 scope:global align:4 +__ct__Q24Game9THPPlayerFv = .text:0x8044FCA0; // type:function size:0x118 scope:global align:4 +__dt__Q24Game9THPPlayerFv = .text:0x8044FDB8; // type:function size:0x98 scope:global align:4 +load__Q24Game9THPPlayerFQ34Game9THPPlayer11EMovieIndex = .text:0x8044FE50; // type:function size:0xCC scope:global align:4 +load__Q24Game9THPPlayerFv = .text:0x8044FF1C; // type:function size:0x6C scope:global align:4 +loadResource__Q24Game9THPPlayerFv = .text:0x8044FF88; // type:function size:0x24 scope:global align:4 +loadResource__Q24Game9THPPlayerFRCQ24Game24THPPlayerLoadResourceArg = .text:0x8044FFAC; // type:function size:0x1CC scope:global align:4 +prepare__Q24Game9THPPlayerFv = .text:0x80450178; // type:function size:0xFC scope:global align:4 +init__Q24Game9THPPlayerFP7JKRHeap = .text:0x80450274; // type:function size:0xC0 scope:global align:4 +play__Q24Game9THPPlayerFv = .text:0x80450334; // type:function size:0xA0 scope:global align:4 +pause__Q24Game9THPPlayerFv = .text:0x804503D4; // type:function size:0x38 scope:global align:4 +stop__Q24Game9THPPlayerFv = .text:0x8045040C; // type:function size:0x28 scope:global align:4 +update__Q24Game9THPPlayerFv = .text:0x80450434; // type:function size:0x94 scope:global align:4 +draw__Q24Game9THPPlayerFR8Graphics = .text:0x804504C8; // type:function size:0xDC scope:global align:4 +draw__Q24Game9THPPlayerFR8Graphicsllf = .text:0x804505A4; // type:function size:0xBC scope:global align:4 +draw__Q24Game9THPPlayerFR8GraphicsllUlUl = .text:0x80450660; // type:function size:0x88 scope:global align:4 +isFinishLoading__Q24Game9THPPlayerFv = .text:0x804506E8; // type:function size:0x5C scope:global align:4 +isFinishPlaying__Q24Game9THPPlayerFv = .text:0x80450744; // type:function size:0x1C scope:global align:4 +invoke__27DelegateFv = .text:0x80450760; // type:function size:0x30 scope:weak align:4 +@24@__dt__Q24Game9THPPlayerFv = .text:0x80450790; // type:function size:0x8 scope:weak align:4 +read__Q27Caption4NodeFR6Stream = .text:0x80450798; // type:function size:0x64 scope:global align:4 +__ct__Q27Caption3MgrFv = .text:0x804507FC; // type:function size:0xD4 scope:global align:4 +__dt__Q35P2JME7Caption8TControlFv = .text:0x804508D0; // type:function size:0x80 scope:weak align:4 +read__Q27Caption3MgrFR6Stream = .text:0x80450950; // type:function size:0x108 scope:global align:4 +reset__Q27Caption3MgrFv = .text:0x80450A58; // type:function size:0x68 scope:global align:4 +resetMessageObjs__Q27Caption3MgrFv = .text:0x80450AC0; // type:function size:0x68 scope:global align:4 +update__Q27Caption3MgrFl = .text:0x80450B28; // type:function size:0x194 scope:global align:4 +draw__Q27Caption3MgrFR8Graphics = .text:0x80450CBC; // type:function size:0x98 scope:global align:4 +getFreeMessage__Q27Caption3MgrFv = .text:0x80450D54; // type:function size:0x5C scope:global align:4 +__dt__Q27Caption3MgrFv = .text:0x80450DB0; // type:function size:0x60 scope:weak align:4 +__dt__Q27Caption4NodeFv = .text:0x80450E10; // type:function size:0x60 scope:weak align:4 +doGetDrawInfo__Q35P2JME7Caption19TRenderingProcessorFPQ35P2JME6Window8DrawInfo = .text:0x80450E70; // type:function size:0xC scope:global align:4 +doDrawCommon__Q35P2JME7Caption19TRenderingProcessorFffP7MatrixfP7Matrixf = .text:0x80450E7C; // type:function size:0x1EC scope:global align:4 +__ct__Q35P2JME7Caption8TControlFv = .text:0x80451068; // type:function size:0x54 scope:global align:4 +onInit__Q35P2JME7Caption8TControlFv = .text:0x804510BC; // type:function size:0xE8 scope:global align:4 +reset__Q35P2JME7Caption8TControlFv = .text:0x804511A4; // type:function size:0x34 scope:global align:4 +updateSetFrame__Q35P2JME7Caption8TControlFl = .text:0x804511D8; // type:function size:0x128 scope:global align:4 +draw__Q35P2JME7Caption8TControlFR8Graphics = .text:0x80451300; // type:function size:0x84 scope:global align:4 +start__Q35P2JME7Caption8TControlFPcll = .text:0x80451384; // type:function size:0x58 scope:global align:4 +createSequenceProcessor__Q35P2JME7Caption8TControlFv = .text:0x804513DC; // type:function size:0x88 scope:weak align:4 +createRenderingProcessor__Q35P2JME7Caption8TControlFv = .text:0x80451464; // type:function size:0x8C scope:weak align:4 +__dt__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x804514F0; // type:function size:0x80 scope:weak align:4 +do_isReady__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x80451570; // type:function size:0x8 scope:weak align:4 +doResetAbtnWaitSE__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x80451578; // type:function size:0x4 scope:weak align:4 +doCharacterSE__Q35P2JME7Caption18TSequenceProcessorFi = .text:0x8045157C; // type:function size:0x4 scope:weak align:4 +doCharacterSEStart__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x80451580; // type:function size:0x4 scope:weak align:4 +doCharacterSEEnd__Q35P2JME7Caption18TSequenceProcessorFv = .text:0x80451584; // type:function size:0x4 scope:weak align:4 +__dt__Q35P2JME7Caption19TRenderingProcessorFv = .text:0x80451588; // type:function size:0xB8 scope:weak align:4 +__ct__Q26Screen9SceneBaseFv = .text:0x80451640; // type:function size:0x134 scope:global align:4 +searchObj__Q26Screen9SceneBaseFPc = .text:0x80451774; // type:function size:0x30 scope:global align:4 +destroy__Q26Screen9SceneBaseFv = .text:0x804517A4; // type:function size:0x38 scope:global align:4 +create__Q26Screen9SceneBaseFv = .text:0x804517DC; // type:function size:0xBC scope:global align:4 +update__Q26Screen9SceneBaseFv = .text:0x80451898; // type:function size:0x15C scope:global align:4 +updateActive__Q26Screen9SceneBaseFv = .text:0x804519F4; // type:function size:0x40 scope:global align:4 +doUpdateActive__Q26Screen9SceneBaseFv = .text:0x80451A34; // type:function size:0x4 scope:global align:4 +draw__Q26Screen9SceneBaseFR8Graphics = .text:0x80451A38; // type:function size:0x90 scope:global align:4 +start__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451AC8; // type:function size:0x50 scope:global align:4 +doStart__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451B18; // type:function size:0x28 scope:global align:4 +end__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451B40; // type:function size:0x68 scope:global align:4 +doEnd__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451BA8; // type:function size:0x24 scope:global align:4 +userCallBackFunc__Q26Screen9SceneBaseFPQ28Resource10MgrCommand = .text:0x80451BCC; // type:function size:0x2C scope:global align:4 +createObj__Q26Screen9SceneBaseFP10JKRArchive = .text:0x80451BF8; // type:function size:0x2C scope:global align:4 +registObj__Q26Screen9SceneBaseFPQ26Screen7ObjBaseP10JKRArchive = .text:0x80451C24; // type:function size:0x5C scope:global align:4 +confirmSetScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x80451C80; // type:function size:0x78 scope:global align:4 +confirmStartScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451CF8; // type:function size:0x78 scope:global align:4 +confirmEndScene__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451D70; // type:function size:0x70 scope:global align:4 +setScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg = .text:0x80451DE0; // type:function size:0x30 scope:global align:4 +startScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg = .text:0x80451E10; // type:function size:0x30 scope:global align:4 +endScene__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg = .text:0x80451E40; // type:function size:0x30 scope:global align:4 +setBackupScene__Q26Screen9SceneBaseFv = .text:0x80451E70; // type:function size:0x100 scope:global align:4 +setDispMember__Q26Screen9SceneBaseFPQ32og6Screen14DispMemberBase = .text:0x80451F70; // type:function size:0x130 scope:global align:4 +getFinishState__Q26Screen9SceneBaseFv = .text:0x804520A0; // type:function size:0x40 scope:global align:4 +getGamePad__Q26Screen9SceneBaseCFv = .text:0x804520E0; // type:function size:0x54 scope:global align:4 +setColorBG__Q26Screen9SceneBaseFUcUcUcUc = .text:0x80452134; // type:function size:0x44 scope:global align:4 +setColorBG__Q26Screen3MgrFRQ28JUtility6TColor = .text:0x80452178; // type:function size:0x4 scope:weak align:4 +setBGMode__Q26Screen3MgrFi = .text:0x8045217C; // type:function size:0x4 scope:weak align:4 +invoke__55Delegate1FPQ28Resource10MgrCommand = .text:0x80452180; // type:function size:0x30 scope:weak align:4 +__ct__Q26Screen13SceneInfoListFv = .text:0x804521B0; // type:function size:0x54 scope:global align:4 +__ct__Q26Screen3MgrFv = .text:0x80452204; // type:function size:0x1CC scope:global align:4 +__dt__Q26Screen13SceneInfoListFv = .text:0x804523D0; // type:function size:0x60 scope:weak align:4 +init__Q26Screen3MgrFv = .text:0x80452430; // type:function size:0x70 scope:global align:4 +reset__Q26Screen3MgrFv = .text:0x804524A0; // type:function size:0xFC scope:global align:4 +startScene__Q26Screen3MgrFPQ26Screen13StartSceneArg = .text:0x8045259C; // type:function size:0x1E8 scope:global align:4 +endScene__Q26Screen3MgrFPQ26Screen11EndSceneArg = .text:0x80452784; // type:function size:0x18C scope:global align:4 +getCurrentCommand__Q26Screen3MgrFv = .text:0x80452910; // type:function size:0x8 scope:global align:4 +getNewCommand__Q26Screen3MgrFv = .text:0x80452918; // type:function size:0xA8 scope:global align:4 +releaseCommand__Q26Screen3MgrFPQ26Screen10MgrCommand = .text:0x804529C0; // type:function size:0x58 scope:global align:4 +update__Q26Screen3MgrFv = .text:0x80452A18; // type:function size:0x2D8 scope:global align:4 +draw__Q26Screen3MgrFR8Graphics = .text:0x80452CF0; // type:function size:0xB4 scope:global align:4 +drawBG__Q26Screen3MgrFR8Graphics = .text:0x80452DA4; // type:function size:0x4 scope:weak align:4 +doGetSceneBase__Q26Screen3MgrFl = .text:0x80452DA8; // type:function size:0x8 scope:global align:4 +clearBackupSceneInfo__Q26Screen3MgrFv = .text:0x80452DB0; // type:function size:0x78 scope:global align:4 +changeScene__Q26Screen3MgrFRQ26Screen11SetSceneArgPUc = .text:0x80452E28; // type:function size:0x24C scope:global align:4 +setScene__Q26Screen3MgrFRQ26Screen11SetSceneArg = .text:0x80453074; // type:function size:0x598 scope:global align:4 +isCurrentSceneLoading__Q26Screen3MgrFv = .text:0x8045360C; // type:function size:0x24 scope:global align:4 +copyDispMember__Q26Screen3MgrFPUcPUc = .text:0x80453630; // type:function size:0x160 scope:global align:4 +setDispMember__Q26Screen3MgrFPQ32og6Screen14DispMemberBase = .text:0x80453790; // type:function size:0x34 scope:global align:4 +getDispMember__Q26Screen3MgrFv = .text:0x804537C4; // type:function size:0x1C scope:global align:4 +getSceneType__Q26Screen3MgrFv = .text:0x804537E0; // type:function size:0x40 scope:global align:4 +isSceneFinish__Q26Screen3MgrFv = .text:0x80453820; // type:function size:0x28 scope:global align:4 +getSceneFinishState__Q26Screen3MgrFv = .text:0x80453848; // type:function size:0x38 scope:global align:4 +setGamePad__Q26Screen3MgrFP10Controller = .text:0x80453880; // type:function size:0x1C scope:global align:4 +setBackupScene__Q26Screen3MgrFv = .text:0x8045389C; // type:function size:0x34 scope:global align:4 +isAnyReservation__Q26Screen3MgrCFv = .text:0x804538D0; // type:function size:0x38 scope:global align:4 +__dt__Q26Screen10MgrCommandFv = .text:0x80453908; // type:function size:0x68 scope:weak align:4 +__sinit_screenMgr_cpp = .text:0x80453970; // type:function size:0x28 scope:local align:4 +__ct__Q26Screen7ObjBaseFv = .text:0x80453998; // type:function size:0x90 scope:global align:4 +create__Q26Screen7ObjBaseFP10JKRArchive = .text:0x80453A28; // type:function size:0x2C scope:global align:4 +start__Q26Screen7ObjBaseFPCQ26Screen13StartSceneArg = .text:0x80453A54; // type:function size:0xAC scope:global align:4 +end__Q26Screen7ObjBaseFPCQ26Screen11EndSceneArg = .text:0x80453B00; // type:function size:0x138 scope:global align:4 +update__Q26Screen7ObjBaseFv = .text:0x80453C38; // type:function size:0x110 scope:global align:4 +draw__Q26Screen7ObjBaseFR8Graphics = .text:0x80453D48; // type:function size:0x38 scope:global align:4 +doDraw__Q26Screen7ObjBaseFR8Graphics = .text:0x80453D80; // type:function size:0xD8 scope:global align:4 +getDispMember__Q26Screen7ObjBaseFv = .text:0x80453E58; // type:function size:0xC scope:global align:4 +confirmSetScene__Q26Screen7ObjBaseFRQ26Screen11SetSceneArg = .text:0x80453E64; // type:function size:0x2C scope:global align:4 +confirmStartScene__Q26Screen7ObjBaseFPQ26Screen13StartSceneArg = .text:0x80453E90; // type:function size:0x2C scope:global align:4 +confirmEndScene__Q26Screen7ObjBaseFPQ26Screen11EndSceneArg = .text:0x80453EBC; // type:function size:0x34 scope:global align:4 +getGamePad__Q26Screen7ObjBaseCFv = .text:0x80453EF0; // type:function size:0x30 scope:global align:4 +__ct__Q26Screen10ObjMgrBaseFv = .text:0x80453F20; // type:function size:0x44 scope:global align:4 +registObj__Q26Screen10ObjMgrBaseFPQ26Screen8IObjBasePQ26Screen9SceneBase = .text:0x80453F64; // type:function size:0x58 scope:global align:4 +update__Q26Screen10ObjMgrBaseFv = .text:0x80453FBC; // type:function size:0x68 scope:global align:4 +draw__Q26Screen10ObjMgrBaseFR8Graphics = .text:0x80454024; // type:function size:0x5C scope:global align:4 +search__Q26Screen10ObjMgrBaseFPQ26Screen9SceneBasePc = .text:0x80454080; // type:function size:0x98 scope:global align:4 +start__Q26Screen10ObjMgrBaseFPQ26Screen13StartSceneArg = .text:0x80454118; // type:function size:0x78 scope:global align:4 +end__Q26Screen10ObjMgrBaseFPQ26Screen11EndSceneArg = .text:0x80454190; // type:function size:0x78 scope:global align:4 +confirmSetScene__Q26Screen10ObjMgrBaseFRQ26Screen11SetSceneArg = .text:0x80454208; // type:function size:0x7C scope:global align:4 +confirmStartScene__Q26Screen10ObjMgrBaseFPQ26Screen13StartSceneArg = .text:0x80454284; // type:function size:0x7C scope:global align:4 +confirmEndScene__Q26Screen10ObjMgrBaseFPQ26Screen11EndSceneArg = .text:0x80454300; // type:function size:0x7C scope:global align:4 +@24@__dt__Q26Screen7ObjBaseFv = .text:0x8045437C; // type:function size:0x8 scope:weak align:4 +__ct__Q34Game5P2JST19ObjectParticleActorFPCcPQ24Game11MoviePlayerPQ24Game8Creature = .text:0x80454384; // type:function size:0x168 scope:global align:4 +reset__Q34Game5P2JST19ObjectParticleActorFv = .text:0x804544EC; // type:function size:0x28 scope:global align:4 +stop__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454514; // type:function size:0x20 scope:global align:4 +update__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454534; // type:function size:0xC0 scope:global align:4 +JSGSetShape__Q34Game5P2JST19ObjectParticleActorFUl = .text:0x804545F4; // type:function size:0x3C scope:global align:4 +parseUserData___Q34Game5P2JST19ObjectParticleActorFUlPCv = .text:0x80454630; // type:function size:0x178 scope:global align:4 +JSGSetTranslation__Q34Game5P2JST19ObjectParticleActorFRC3Vec = .text:0x804547A8; // type:function size:0x1C scope:global align:4 +JSGGetTranslation__Q34Game5P2JST19ObjectParticleActorCFP3Vec = .text:0x804547C4; // type:function size:0x1C scope:global align:4 +emit__Q34Game5P2JST19ObjectParticleActorFv = .text:0x804547E0; // type:function size:0x1F0 scope:global align:4 +executeAfter__Q34Game5P2JST19ObjectParticleActorFP14JPABaseEmitter = .text:0x804549D0; // type:function size:0xF4 scope:global align:4 +killEmitter__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454AC4; // type:function size:0x44 scope:global align:4 +__dt__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454B08; // type:function size:0x80 scope:weak align:4 +__sinit_JSTObjectParticleActor_cpp = .text:0x80454B88; // type:function size:0x28 scope:local align:4 +@4@parseUserData___Q34Game5P2JST19ObjectParticleActorFUlPCv = .text:0x80454BB0; // type:function size:0x8 scope:weak align:4 +@4@stop__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454BB8; // type:function size:0x8 scope:weak align:4 +@4@update__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454BC0; // type:function size:0x8 scope:weak align:4 +@4@reset__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454BC8; // type:function size:0x8 scope:weak align:4 +@112@executeAfter__Q34Game5P2JST19ObjectParticleActorFP14JPABaseEmitter = .text:0x80454BD0; // type:function size:0x8 scope:weak align:4 +@112@__dt__Q34Game5P2JST19ObjectParticleActorFv = .text:0x80454BD8; // type:function size:0x8 scope:weak align:4 +__ct__27Pikmin_TCreateObject_JAudioFP8JAIBasicPCQ26JStage7TSystem = .text:0x80454BE0; // type:function size:0x3C scope:global align:4 +create__27Pikmin_TCreateObject_JAudioFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object = .text:0x80454C1C; // type:function size:0x194 scope:global align:4 +__dt__27Pikmin_TCreateObject_JAudioFv = .text:0x80454DB0; // type:function size:0x60 scope:weak align:4 +__sinit_moviePlayerAudio_cpp = .text:0x80454E10; // type:function size:0x28 scope:local align:4 +__dt__Q25P2JME13TSeqProcNoSeqFv = .text:0x80454E38; // type:function size:0x70 scope:weak align:4 +makeMatrix__Q35P2JME15IllustratedBook19TRenderingProcessorFP7MatrixfPQ35P2JME6Window8DrawInfof10Vector3 = .text:0x80454EA8; // type:function size:0x4C scope:global align:4 +__ct__Q35P2JME15IllustratedBook8TControlFv = .text:0x80454EF4; // type:function size:0x60 scope:global align:4 +onInit__Q35P2JME15IllustratedBook8TControlFv = .text:0x80454F54; // type:function size:0x3C scope:global align:4 +reset__Q35P2JME15IllustratedBook8TControlFv = .text:0x80454F90; // type:function size:0x3C scope:global align:4 +getScrollPosition__Q35P2JME15IllustratedBook8TControlFv = .text:0x80454FCC; // type:function size:0x28 scope:global align:4 +scroll__Q35P2JME15IllustratedBook8TControlFf = .text:0x80454FF4; // type:function size:0xF4 scope:global align:4 +update__Q35P2JME15IllustratedBook8TControlFP10ControllerP10Controller = .text:0x804550E8; // type:function size:0xD0 scope:global align:4 +setTextBoxInfo__Q35P2JME15IllustratedBook8TControlFP10J2DTextBox = .text:0x804551B8; // type:function size:0x80 scope:global align:4 +draw__Q35P2JME15IllustratedBook8TControlFPA4_fPA4_f = .text:0x80455238; // type:function size:0x78 scope:global align:4 +__dt__Q35P2JME15IllustratedBook8TControlFv = .text:0x804552B0; // type:function size:0x80 scope:weak align:4 +draw__Q35P2JME15IllustratedBook8TControlFR8Graphics = .text:0x80455330; // type:function size:0x20 scope:weak align:4 +createRenderingProcessor__Q35P2JME15IllustratedBook8TControlFv = .text:0x80455350; // type:function size:0x84 scope:weak align:4 +createSequenceProcessor__Q35P2JME15IllustratedBook8TControlFv = .text:0x804553D4; // type:function size:0x94 scope:weak align:4 +__dt__Q35P2JME15IllustratedBook19TRenderingProcessorFv = .text:0x80455468; // type:function size:0xB8 scope:weak align:4 +doTagControlAbtnWait__Q35P2JME15IllustratedBook19TRenderingProcessorFv = .text:0x80455520; // type:function size:0x8 scope:weak align:4 +__dt__Q35P2JME15IllustratedBook18TSequenceProcessorFv = .text:0x80455528; // type:function size:0x80 scope:weak align:4 +do_isReady__Q25P2JME13TSeqProcNoSeqFv = .text:0x804555A8; // type:function size:0x8 scope:weak align:4 +__ct__Q23Sys10DrawBufferFv = .text:0x804555B0; // type:function size:0x5C scope:global align:4 +__dt__Q23Sys10DrawBufferFv = .text:0x8045560C; // type:function size:0x60 scope:global align:4 +create__Q23Sys10DrawBufferFRQ33Sys10DrawBuffer9CreateArg = .text:0x8045566C; // type:function size:0xDC scope:global align:4 +draw__Q23Sys10DrawBufferFv = .text:0x80455748; // type:function size:0x88 scope:global align:4 +frameInit__Q23Sys10DrawBufferFv = .text:0x804557D0; // type:function size:0x58 scope:global align:4 +__ct__Q23Sys11DrawBuffersFv = .text:0x80455828; // type:function size:0x54 scope:global align:4 +__dt__Q23Sys11DrawBuffersFv = .text:0x8045587C; // type:function size:0x60 scope:global align:4 +allocate__Q23Sys11DrawBuffersFi = .text:0x804558DC; // type:function size:0x98 scope:global align:4 +get__Q23Sys11DrawBuffersFi = .text:0x80455974; // type:function size:0x8C scope:global align:4 +frameInitAll__Q23Sys11DrawBuffersFv = .text:0x80455A00; // type:function size:0xE0 scope:global align:4 +init__Q211Pikmin2ARAM3MgrFv = .text:0x80455AE0; // type:function size:0x60 scope:global align:4 +__ct__Q211Pikmin2ARAM3MgrFv = .text:0x80455B40; // type:function size:0x18 scope:global align:4 +setLoadPermission__Q211Pikmin2ARAM3MgrFb = .text:0x80455B58; // type:function size:0x8 scope:global align:4 +load__Q211Pikmin2ARAM3MgrFv = .text:0x80455B60; // type:function size:0x60 scope:global align:4 +dump__Q211Pikmin2ARAM3MgrFv = .text:0x80455BC0; // type:function size:0x24 scope:global align:4 +loadEnemy__Q211Pikmin2ARAM3MgrFv = .text:0x80455BE4; // type:function size:0x1A4 scope:global align:4 +load2D__Q211Pikmin2ARAM3MgrFv = .text:0x80455D88; // type:function size:0xB8 scope:global align:4 +loadDemo__Q211Pikmin2ARAM3MgrFv = .text:0x80455E40; // type:function size:0x78 scope:global align:4 +loadItem__Q211Pikmin2ARAM3MgrFv = .text:0x80455EB8; // type:function size:0x78 scope:global align:4 +__dt__Q211Pikmin2ARAM3MgrFv = .text:0x80455F30; // type:function size:0x48 scope:weak align:4 +__ct__Q25P2JME8AnalyzerFPCQ28JMessage10TReference = .text:0x80455F78; // type:function size:0x3C scope:global align:4 +do_character__Q25P2JME8AnalyzerFi = .text:0x80455FB4; // type:function size:0x4 scope:global align:4 +exec__Q25P2JME8AnalyzerFPc = .text:0x80455FB8; // type:function size:0x7C scope:global align:4 +__ct__4MenuFP10JUTGamePadP7JUTFontb = .text:0x80456034; // type:function size:0x12C scope:global align:4 +addOption__4MenuFiPcP18IDelegate1b = .text:0x80456160; // type:function size:0xC0 scope:global align:4 +addKeyEvent__4MenuFQ34Menu8KeyEvent9cTypeFlagUlP18IDelegate1 = .text:0x80456220; // type:function size:0xC8 scope:global align:4 +doUpdate__4MenuFb = .text:0x804562E8; // type:function size:0x3A0 scope:global align:4 +__ct__Q24Menu8KeyEventFQ34Menu8KeyEvent9cTypeFlagUlP18IDelegate1 = .text:0x80456688; // type:function size:0x68 scope:global align:4 +__ct__Q24Menu8MenuItemFQ34Menu8MenuItem9cTypeFlagiPc = .text:0x804566F0; // type:function size:0x80 scope:global align:4 +getNext__Q24Menu8MenuItemFv = .text:0x80456770; // type:function size:0x1C scope:global align:4 +getPrev__Q24Menu8MenuItemFv = .text:0x8045678C; // type:function size:0x1C scope:global align:4 +checkEvents__Q24Menu8MenuItemFP4Menui = .text:0x804567A8; // type:function size:0x200 scope:global align:4 +__ct__Q23PSM14DamageDirectorFv = .text:0x804569A8; // type:function size:0x80 scope:global align:4 +__dt__Q23PSM15OneShotDirectorFv = .text:0x80456A28; // type:function size:0x80 scope:weak align:4 +directOnTrack__Q23PSM14DamageDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80456AA8; // type:function size:0x34 scope:global align:4 +execInner__Q23PSM14DamageDirectorFv = .text:0x80456ADC; // type:function size:0x3C scope:global align:4 +__dt__Q23PSM16SwitcherDirectorFv = .text:0x80456B18; // type:function size:0x80 scope:weak align:4 +directOnTrack__Q23PSM23TempoChangeDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x80456B98; // type:function size:0x30 scope:global align:4 +directOffTrack__Q23PSM23TempoChangeDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x80456BC8; // type:function size:0x30 scope:global align:4 +__ct__Q23PSM25ActorDirector_TempoChangeFv = .text:0x80456BF8; // type:function size:0x84 scope:global align:4 +__dt__Q23PSM23TempoChangeDirectorBaseFv = .text:0x80456C7C; // type:function size:0x90 scope:weak align:4 +execInner__Q23PSM25ActorDirector_TempoChangeFv = .text:0x80456D0C; // type:function size:0x3C scope:global align:4 +__ct__Q23PSM20PikminNumberDirectorFiUcRQ28PSSystem11DirectedBgm = .text:0x80456D48; // type:function size:0x78 scope:global align:4 +directOnTrack__Q23PSM20PikminNumberDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80456DC0; // type:function size:0x4C scope:global align:4 +directOffTrack__Q23PSM20PikminNumberDirectorFRQ28PSSystem12SeqTrackBase = .text:0x80456E0C; // type:function size:0x2C scope:global align:4 +execInner__Q23PSM20PikminNumberDirectorFv = .text:0x80456E38; // type:function size:0x3C scope:global align:4 +__ct__Q23PSM28PikminNumberDirector_AutoBgmFiUcRQ28PSSystem11DirectedBgm = .text:0x80456E74; // type:function size:0x94 scope:global align:4 +__dt__Q23PSM20PikminNumberDirectorFv = .text:0x80456F08; // type:function size:0x90 scope:weak align:4 +directOnTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase = .text:0x80456F98; // type:function size:0x88 scope:global align:4 +directOffTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase = .text:0x80457020; // type:function size:0x88 scope:global align:4 +getTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase = .text:0x804570A8; // type:function size:0xB8 scope:global align:4 +__ct__Q23PSM19TrackOnDirectorBaseFiPCcll = .text:0x80457160; // type:function size:0x7C scope:global align:4 +onPlayInit__Q23PSM19TrackOnDirectorBaseFP8JASTrack = .text:0x804571DC; // type:function size:0x34 scope:global align:4 +directOnTrack__Q23PSM19TrackOnDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x80457210; // type:function size:0x50 scope:global align:4 +directOffTrack__Q23PSM19TrackOnDirectorBaseFRQ28PSSystem12SeqTrackBase = .text:0x80457260; // type:function size:0x2C scope:global align:4 +execInner__Q23PSM22TrackOnDirector_VotingFv = .text:0x8045728C; // type:function size:0x90 scope:global align:4 +__dt__Q23PSM19TrackOnDirectorBaseFv = .text:0x8045731C; // type:function size:0x90 scope:weak align:4 +underDirection__Q23PSM22TrackOnDirector_ScaledFv = .text:0x804573AC; // type:function size:0xFC scope:global align:4 +onUpdateFromMasterD__Q23PSM17ListDirectorActorFv = .text:0x804574A8; // type:function size:0x8C scope:global align:4 +__ct__Q23PSM21ActorDirector_TrackOnFPCcill = .text:0x80457534; // type:function size:0x98 scope:global align:4 +execInner__Q23PSM21ActorDirector_TrackOnFv = .text:0x804575CC; // type:function size:0x3C scope:global align:4 +__ct__Q23PSM20ActorDirector_ScaledFPCciffllUl = .text:0x80457608; // type:function size:0xF4 scope:global align:4 +__dt__Q23PSM22TrackOnDirector_ScaledFv = .text:0x804576FC; // type:function size:0xA0 scope:weak align:4 +execInner__Q23PSM20ActorDirector_ScaledFv = .text:0x8045779C; // type:function size:0x3C scope:global align:4 +getNearestDistance__Q23PSM20ActorDirector_ScaledFv = .text:0x804577D8; // type:function size:0x614 scope:global align:4 +__ct__Q23PSM19ActorDirector_EnemyFPCcillUl = .text:0x80457DEC; // type:function size:0xE4 scope:global align:4 +__dt__Q23PSM20ActorDirector_ScaledFv = .text:0x80457ED0; // type:function size:0xB0 scope:weak align:4 +onSetMinDistObj__Q23PSM19ActorDirector_EnemyFPQ24Game8Creature = .text:0x80457F80; // type:function size:0x8 scope:global align:4 +underDirection__Q23PSM19ActorDirector_EnemyFv = .text:0x80457F88; // type:function size:0x1D0 scope:global align:4 +getVolZeroDist__Q23PSM20ActorDirector_BattleFPQ24Game9EnemyBase = .text:0x80458158; // type:function size:0x44 scope:global align:4 +getVolMaxDist__Q23PSM20ActorDirector_BattleFPQ24Game9EnemyBase = .text:0x8045819C; // type:function size:0x44 scope:global align:4 +getVolZeroDist__Q23PSM19ActorDirector_KehaiFPQ24Game9EnemyBase = .text:0x804581E0; // type:function size:0x44 scope:global align:4 +getVolMaxDist__Q23PSM19ActorDirector_KehaiFPQ24Game9EnemyBase = .text:0x80458224; // type:function size:0x44 scope:global align:4 +__ct__Q23PSM17PikAttackDirectorFi = .text:0x80458268; // type:function size:0x7C scope:global align:4 +__ct__Q23PSM13ExiteDirectorFi = .text:0x804582E4; // type:function size:0x7C scope:global align:4 +__ct__Q23PSM15DirectorUpdatorFPQ28PSSystem12DirectorBaseUcQ33PSM15DirectorUpdator4Type = .text:0x80458360; // type:function size:0x68 scope:global align:4 +directOn__Q23PSM15DirectorUpdatorFUc = .text:0x804583C8; // type:function size:0x34 scope:global align:4 +directOff__Q23PSM15DirectorUpdatorFUc = .text:0x804583FC; // type:function size:0x34 scope:global align:4 +frameEndWork__Q23PSM15DirectorUpdatorFv = .text:0x80458430; // type:function size:0x12C scope:global align:4 +PSMGetBattleDirector__FUc = .text:0x8045855C; // type:function size:0x148 scope:global align:4 +PSMGetKehaiD__Fv = .text:0x804586A4; // type:function size:0x108 scope:global align:4 +PSMGetBattleD__Fv = .text:0x804587AC; // type:function size:0x108 scope:global align:4 +PSMGetEventD__Fv = .text:0x804588B4; // type:function size:0x108 scope:global align:4 +PSMGetOtakaraEventD__Fv = .text:0x804589BC; // type:function size:0xF0 scope:global align:4 +PSMGetGroundD__Fv = .text:0x80458AAC; // type:function size:0x194 scope:global align:4 +PSMGetPikminNumD__Fv = .text:0x80458C40; // type:function size:0xF0 scope:global align:4 +PSMGetDamageD__Fv = .text:0x80458D30; // type:function size:0xF0 scope:global align:4 +PSMGetLifeD__Fv = .text:0x80458E20; // type:function size:0xF0 scope:global align:4 +PSMGetBeedamaForOrimerD__Fv = .text:0x80458F10; // type:function size:0xF0 scope:global align:4 +PSMGetBeedamaForLugieD__Fv = .text:0x80459000; // type:function size:0xF0 scope:global align:4 +PSMGetIchouForOrimerD__Fv = .text:0x804590F0; // type:function size:0xF0 scope:global align:4 +PSMGetIchouForLugieD__Fv = .text:0x804591E0; // type:function size:0xF0 scope:global align:4 +PSMGetPikiBattleD__Fv = .text:0x804592D0; // type:function size:0xF0 scope:global align:4 +__dt__Q23PSM13ExiteDirectorFv = .text:0x804593C0; // type:function size:0xA0 scope:weak align:4 +onSetMinDistObj__Q23PSM20ActorDirector_ScaledFPQ24Game8Creature = .text:0x80459460; // type:function size:0x4 scope:weak align:4 +is1PGame__Q23PSM11ObjCalcBaseFv = .text:0x80459464; // type:function size:0x8 scope:weak align:4 +is2PBattle__Q23PSM16OtakaraEventLinkFv = .text:0x8045946C; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM17PikAttackDirectorFv = .text:0x80459474; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM19ActorDirector_KehaiFv = .text:0x80459514; // type:function size:0xD0 scope:weak align:4 +__dt__Q23PSM20ActorDirector_BattleFv = .text:0x804595E4; // type:function size:0xD0 scope:weak align:4 +__dt__Q23PSM19ActorDirector_EnemyFv = .text:0x804596B4; // type:function size:0xC0 scope:weak align:4 +__dt__Q23PSM21ActorDirector_TrackOnFv = .text:0x80459774; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM22TrackOnDirector_VotingFv = .text:0x80459814; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM28PikminNumberDirector_AutoBgmFv = .text:0x804598B4; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM25ActorDirector_TempoChangeFv = .text:0x80459954; // type:function size:0xA0 scope:weak align:4 +__dt__Q23PSM14DamageDirectorFv = .text:0x804599F4; // type:function size:0x90 scope:weak align:4 +play__Q23PSM12Env_PollutinFv = .text:0x80459A84; // type:function size:0x274 scope:global align:4 +play__Q23PSM24EnvSe_Perspective_AvoidYFv = .text:0x80459CF8; // type:function size:0x280 scope:global align:4 +newSeObj__Q23PSM15EnvSeObjBuilderFUlf3Vec = .text:0x80459F78; // type:function size:0xA0 scope:global align:4 +onBuild__Q23PSM15EnvSeObjBuilderFPQ28PSSystem9EnvSeBase = .text:0x8045A018; // type:function size:0x5C scope:global align:4 +__ct__Q23PSM8SceneMgrFv = .text:0x8045A074; // type:function size:0x3C scope:global align:4 +newMainBgm__Q23PSM8SceneMgrFPCcRQ27JAInter9SoundInfo = .text:0x8045A0B0; // type:function size:0xD8 scope:global align:4 +curSceneIsBigBossFloor__Q23PSM8SceneMgrFv = .text:0x8045A188; // type:function size:0x14 scope:global align:4 +newDirectedBgm__Q23PSM8SceneMgrFPCcRQ27JAInter9SoundInfo = .text:0x8045A19C; // type:function size:0x1C0 scope:global align:4 +newGameScene__Q23PSM8SceneMgrFUcPQ26PSGame9SceneInfo = .text:0x8045A35C; // type:function size:0x1F4 scope:global align:4 +initEnvironmentSe__Q23PSM8SceneMgrFPQ23PSM10Scene_Game = .text:0x8045A550; // type:function size:0x18BC scope:global align:4 +SetBossBgmMuteVol__3PSMFPQ28PSSystem8EnvSeMgrUlf = .text:0x8045BE0C; // type:function size:0x8C scope:weak align:4 +SetNoYOfset__3PSMFPQ28PSSystem8EnvSeMgr = .text:0x8045BE98; // type:function size:0x74 scope:weak align:4 +setInfo__Q23PSM15EnvSeObjBuilderFQ23PSM11PersEnvInfo = .text:0x8045BF0C; // type:function size:0x2C scope:weak align:4 +__ct__Q23PSM15EnvSeObjBuilderFQ29JGeometry8TBox3 = .text:0x8045BF38; // type:function size:0x70 scope:weak align:4 +__ct__Q29JGeometry8TBox3FRCQ29JGeometry8TBox3 = .text:0x8045BFA8; // type:function size:0x34 scope:weak align:4 +newAutoBgm__Q23PSM8SceneMgrFPCcPCcRQ27JAInter9SoundInfoQ210JADUtility10AccessModeRQ26PSGame9SceneInfoPQ28PSSystem15DirectorMgrBase = .text:0x8045BFDC; // type:function size:0x164 scope:global align:4 +__ct__Q23PSM13MiddleBossSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x8045C140; // type:function size:0x60 scope:global align:4 +onJump__Q23PSM13MiddleBossSeqFUs = .text:0x8045C1A0; // type:function size:0x94 scope:global align:4 +exec__Q23PSM13MiddleBossSeqFv = .text:0x8045C234; // type:function size:0x40 scope:global align:4 +requestJumpBgmQuickly__Q23PSM13MiddleBossSeqFUs = .text:0x8045C274; // type:function size:0x5C scope:global align:4 +requestJumpBgmOnBeat__Q23PSM13MiddleBossSeqFUs = .text:0x8045C2D0; // type:function size:0x5C scope:global align:4 +requestJumpBgmEveryBeat__Q23PSM13MiddleBossSeqFUs = .text:0x8045C32C; // type:function size:0x5C scope:global align:4 +jumpCheck__Q23PSM13MiddleBossSeqFUs = .text:0x8045C388; // type:function size:0x214 scope:global align:4 +__ct__Q23PSM10BigBossSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase = .text:0x8045C59C; // type:function size:0x6C scope:global align:4 +__dt__Q23PSM13MiddleBossSeqFv = .text:0x8045C608; // type:function size:0x80 scope:weak align:4 +jumpCheck__Q23PSM10BigBossSeqFUs = .text:0x8045C688; // type:function size:0x1B4 scope:global align:4 +onJump__Q23PSM10BigBossSeqFUs = .text:0x8045C83C; // type:function size:0x98 scope:global align:4 +__ct__Q23PSM14PersEnvManagerFPQ28PSSystem8EnvSeMgr = .text:0x8045C8D4; // type:function size:0x58 scope:global align:4 +playOk__Q23PSM14PersEnvManagerFPQ23PSM24EnvSe_Perspective_AvoidY = .text:0x8045C92C; // type:function size:0x40 scope:global align:4 +exec__Q23PSM14PersEnvManagerFv = .text:0x8045C96C; // type:function size:0x1C4 scope:global align:4 +__dt__Q23PSM10BigBossSeqFv = .text:0x8045CB30; // type:function size:0x90 scope:weak align:4 +getCastType__Q23PSM24EnvSe_Perspective_AvoidYFv = .text:0x8045CBC0; // type:function size:0xC scope:weak align:4 +getCastType__Q23PSM12Env_PollutinFv = .text:0x8045CBCC; // type:function size:0xC scope:weak align:4 +__dt__Q23PSM9SceneBaseFv = .text:0x8045CBD8; // type:function size:0x60 scope:weak align:4 +__ct__Q28PSSystem8EnvSeMgrFv = .text:0x8045CC38; // type:function size:0x54 scope:weak align:4 +__dt__Q23PSM15EnvSeObjBuilderFv = .text:0x8045CC8C; // type:function size:0x60 scope:weak align:4 +__sinit_PSMainSide_Factory_cpp = .text:0x8045CCEC; // type:function size:0x28 scope:local align:4 +__dt__Q23PSM7ObjBaseFv = .text:0x8045CD14; // type:function size:0x80 scope:global align:4 +frameEnd_onPlaySe__Q23PSM6ObjMgrFv = .text:0x8045CD94; // type:function size:0x4C scope:global align:4 +__dt__Q23PSM6ObjMgrFv = .text:0x8045CDE0; // type:function size:0x104 scope:global align:4 +exec__Q23PSM8CreatureFv = .text:0x8045CEE4; // type:function size:0x58 scope:global align:4 +judgeNearWithPlayer__Q23PSM8CreatureFRC3VecRC3Vecff = .text:0x8045CF3C; // type:function size:0x128 scope:global align:4 +isNear__Q23PSM8CreatureFPQ24Game8Creaturef = .text:0x8045D064; // type:function size:0xA0 scope:global align:4 +getPlayingHandleNum__Q23PSM8CreatureFv = .text:0x8045D104; // type:function size:0x70 scope:global align:4 +loopCalc__Q23PSM8CreatureFRQ23PSM12FrameCalcArg = .text:0x8045D174; // type:function size:0x15C scope:global align:4 +startSoundInner__Q23PSM8CreatureFRQ23PSM13StartSoundArg = .text:0x8045D2D0; // type:function size:0x380 scope:global align:4 +onPlayingSe__Q23PSM8CreatureFUlP8JAISound = .text:0x8045D650; // type:function size:0x4 scope:global align:4 +__ct__Q23PSM11CreatureObjFPQ24Game8CreatureUc = .text:0x8045D654; // type:function size:0x10C scope:global align:4 +__dt__Q23PSM8CreatureFv = .text:0x8045D760; // type:function size:0x98 scope:weak align:4 +startSound__Q23PSM11CreatureObjFUlUl = .text:0x8045D7F8; // type:function size:0x3C scope:global align:4 +startSound__Q23PSM11CreatureObjFUcUlUl = .text:0x8045D834; // type:function size:0x8C scope:global align:4 +startSound__Q23PSM11CreatureObjFPP8JAISoundUlUl = .text:0x8045D8C0; // type:function size:0xA8 scope:global align:4 +frameEnd_onPlaySe__Q23PSM11CreatureObjFv = .text:0x8045D968; // type:function size:0x4C scope:global align:4 +startAnimSound__Q23PSM13CreatureAnimeFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x8045D9B4; // type:function size:0x148 scope:global align:4 +startSound__Q23PSM13CreatureAnimeFUlUl = .text:0x8045DAFC; // type:function size:0x3C scope:global align:4 +startSound__Q23PSM13CreatureAnimeFUcUlUl = .text:0x8045DB38; // type:function size:0xB0 scope:global align:4 +startSound__Q23PSM13CreatureAnimeFPP8JAISoundUlUl = .text:0x8045DBE8; // type:function size:0xA8 scope:global align:4 +setAnime__Q23PSM13CreatureAnimeFP17JAIAnimeSoundDataUlff = .text:0x8045DC90; // type:function size:0x40 scope:global align:4 +playActorAnimSound__Q23PSM13CreatureAnimeFPQ27JAInter5ActorfUc = .text:0x8045DCD0; // type:function size:0x304 scope:global align:4 +exec__Q23PSM13CreatureAnimeFv = .text:0x8045DFD4; // type:function size:0xB4 scope:global align:4 +onCalcOn__Q23PSM13CreatureAnimeFv = .text:0x8045E088; // type:function size:0xC8 scope:global align:4 +onCalcTurnOn__Q23PSM13CreatureAnimeFv = .text:0x8045E150; // type:function size:0x24 scope:global align:4 +onCalcTurnOff__Q23PSM13CreatureAnimeFv = .text:0x8045E174; // type:function size:0x4 scope:global align:4 +frameEnd_onPlaySe__Q23PSM13CreatureAnimeFv = .text:0x8045E178; // type:function size:0x4C scope:global align:4 +battleOn__Q23PSM10BattleLinkFv = .text:0x8045E1C4; // type:function size:0x4C scope:global align:4 +battleOff__Q23PSM10BattleLinkFv = .text:0x8045E210; // type:function size:0x4C scope:global align:4 +kehaiOn__Q23PSM9KehaiLinkFv = .text:0x8045E25C; // type:function size:0x4C scope:global align:4 +kehaiOff__Q23PSM9KehaiLinkFv = .text:0x8045E2A8; // type:function size:0x4C scope:global align:4 +__ct__Q23PSM9EnemyBaseFPQ24Game9EnemyBaseUc = .text:0x8045E2F4; // type:function size:0x180 scope:global align:4 +__dt__Q23PSM13CreatureAnimeFv = .text:0x8045E474; // type:function size:0xDC scope:weak align:4 +startAnimSound__Q23PSM9EnemyBaseFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x8045E550; // type:function size:0x174 scope:global align:4 +startSoundInner__Q23PSM9EnemyBaseFRQ23PSM13StartSoundArg = .text:0x8045E6C4; // type:function size:0x5C scope:global align:4 +onCalcTurnOn__Q23PSM9EnemyBaseFv = .text:0x8045E720; // type:function size:0x44 scope:global align:4 +onCalcTurnOff__Q23PSM9EnemyBaseFv = .text:0x8045E764; // type:function size:0x4C scope:global align:4 +onCalcOn__Q23PSM9EnemyBaseFv = .text:0x8045E7B0; // type:function size:0xF0 scope:global align:4 +battleOff__Q23PSM9EnemyBaseFv = .text:0x8045E8A0; // type:function size:0x60 scope:global align:4 +updateKehai__Q23PSM9EnemyBaseFv = .text:0x8045E900; // type:function size:0x88 scope:global align:4 +updateBattle__Q23PSM9EnemyBaseFv = .text:0x8045E988; // type:function size:0xC8 scope:global align:4 +calcKehai__Q23PSM9EnemyBaseFv = .text:0x8045EA50; // type:function size:0x338 scope:global align:4 +judgeNearWithPlayer__Q23PSM9EnemyBaseFRC3VecRC3Vecff = .text:0x8045ED88; // type:function size:0x94 scope:global align:4 +__ct__Q23PSM18EnemyNotAggressiveFPQ24Game9EnemyBaseUc = .text:0x8045EE1C; // type:function size:0x1AC scope:global align:4 +__ct__Q23PSM9TsuyukusaFPQ24Game8Creature = .text:0x8045EFC8; // type:function size:0x160 scope:global align:4 +noukouFrameWork__Q23PSM9TsuyukusaFb = .text:0x8045F128; // type:function size:0xB8 scope:global align:4 +judgeNearWithPlayer__Q23PSM8EnemyBigFRC3VecRC3Vecff = .text:0x8045F1E0; // type:function size:0x128 scope:global align:4 +onPlayingSe__Q23PSM9EnemyBossFUlP8JAISound = .text:0x8045F308; // type:function size:0x74 scope:global align:4 +judgeNearWithPlayer__Q23PSM9EnemyBossFRC3VecRC3Vecff = .text:0x8045F37C; // type:function size:0x14 scope:global align:4 +exec__Q23PSM9EnemyBossFv = .text:0x8045F390; // type:function size:0xB4 scope:global align:4 +onCalcOn__Q23PSM9EnemyBossFv = .text:0x8045F444; // type:function size:0xF8 scope:global align:4 +calcDistance__Q23PSM9EnemyBossFv = .text:0x8045F53C; // type:function size:0x364 scope:global align:4 +setAppearFlag__Q23PSM9EnemyBossFb = .text:0x8045F8A0; // type:function size:0x140 scope:global align:4 +dyingFrameWork__Q23PSM9EnemyBossFv = .text:0x8045F9E0; // type:function size:0x5C scope:global align:4 +onDeathMotionTop__Q23PSM9EnemyBossFv = .text:0x8045FA3C; // type:function size:0x234 scope:global align:4 +setKilled__Q23PSM9EnemyBossFv = .text:0x8045FC70; // type:function size:0x15C scope:global align:4 +isOnDisappearing__Q23PSM9EnemyBossFv = .text:0x8045FDCC; // type:function size:0x24 scope:global align:4 +updateDisappearing__Q23PSM9EnemyBossFv = .text:0x8045FDF0; // type:function size:0x30 scope:global align:4 +__ct__Q23PSM12EnemyMidBossFPQ24Game9EnemyBase = .text:0x8045FE20; // type:function size:0x260 scope:global align:4 +__dt__Q23PSM9EnemyBossFv = .text:0x80460080; // type:function size:0x1A8 scope:weak align:4 +onCalcOn__Q23PSM12EnemyMidBossFv = .text:0x80460228; // type:function size:0x21C scope:global align:4 +jumpRequest__Q23PSM12EnemyMidBossFUs = .text:0x80460444; // type:function size:0xEC scope:global align:4 +onAppear1st__Q23PSM12EnemyMidBossFv = .text:0x80460530; // type:function size:0x10C scope:global align:4 +postPikiAttack__Q23PSM12EnemyMidBossFb = .text:0x8046063C; // type:function size:0x60 scope:global align:4 +__ct__Q23PSM12EnemyBigBossFPQ24Game9EnemyBase = .text:0x8046069C; // type:function size:0x68 scope:global align:4 +__dt__Q23PSM12EnemyMidBossFv = .text:0x80460704; // type:function size:0x1F0 scope:weak align:4 +__dt__Q23PSM12EnemyBigBossFv = .text:0x804608F4; // type:function size:0x88 scope:global align:4 +jumpRequest__Q23PSM12EnemyBigBossFUs = .text:0x8046097C; // type:function size:0xE8 scope:global align:4 +onDeathMotionTop__Q23PSM12EnemyBigBossFv = .text:0x80460A64; // type:function size:0x38 scope:global align:4 +onAppear1st__Q23PSM12EnemyBigBossFv = .text:0x80460A9C; // type:function size:0x10C scope:global align:4 +onPlayingSe__Q23PSM19Enemy_SpecialChappyFUlP8JAISound = .text:0x80460BA8; // type:function size:0xBC scope:global align:4 +eventStart__Q23PSM12DirectorLinkFv = .text:0x80460C64; // type:function size:0x2C scope:global align:4 +eventRestart__Q23PSM12DirectorLinkFv = .text:0x80460C90; // type:function size:0x4C scope:global align:4 +eventStop__Q23PSM12DirectorLinkFv = .text:0x80460CDC; // type:function size:0x4C scope:global align:4 +eventFinish__Q23PSM12DirectorLinkFv = .text:0x80460D28; // type:function size:0x2C scope:global align:4 +getListDirectorActor__Q23PSM9EventLinkFv = .text:0x80460D54; // type:function size:0x34 scope:global align:4 +getListDirectorActor__Q23PSM16OtakaraEventLinkFv = .text:0x80460D88; // type:function size:0x34 scope:global align:4 +eventFinish__Q23PSM16OtakaraEventLinkFv = .text:0x80460DBC; // type:function size:0x4 scope:global align:4 +getTargetDirector__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x80460DC0; // type:function size:0x250 scope:global align:4 +eventStart__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x80461010; // type:function size:0x194 scope:global align:4 +eventRestart__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x804611A4; // type:function size:0x2C scope:global align:4 +eventStop__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x804611D0; // type:function size:0x194 scope:global align:4 +eventFinish__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x80461364; // type:function size:0x2C scope:global align:4 +getListDirectorActor__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x80461390; // type:function size:0x140 scope:global align:4 +__ct__Q23PSM8WorkItemFPQ24Game8BaseItem = .text:0x804614D0; // type:function size:0x170 scope:global align:4 +eventStart__Q23PSM8WorkItemFv = .text:0x80461640; // type:function size:0x30 scope:global align:4 +eventRestart__Q23PSM8WorkItemFv = .text:0x80461670; // type:function size:0x30 scope:global align:4 +eventStop__Q23PSM8WorkItemFv = .text:0x804616A0; // type:function size:0x30 scope:global align:4 +eventFinish__Q23PSM8WorkItemFv = .text:0x804616D0; // type:function size:0x30 scope:global align:4 +setGoalOnyon__Q23PSM7OtakaraFPQ24Game8Creature = .text:0x80461700; // type:function size:0x1A0 scope:global align:4 +otakaraEventStart__Q23PSM7OtakaraFv = .text:0x804618A0; // type:function size:0xDC scope:global align:4 +otakaraEventRestart__Q23PSM7OtakaraFv = .text:0x8046197C; // type:function size:0xDC scope:global align:4 +otakaraEventStop__Q23PSM7OtakaraFv = .text:0x80461A58; // type:function size:0xDC scope:global align:4 +otakaraEventFinish__Q23PSM7OtakaraFv = .text:0x80461B34; // type:function size:0xDC scope:global align:4 +__ct__Q23PSM13PelletOtakaraFPQ34Game13PelletOtakara6Objectb = .text:0x80461C10; // type:function size:0x224 scope:global align:4 +__dt__Q23PSM7OtakaraFv = .text:0x80461E34; // type:function size:0x148 scope:weak align:4 +__ct__Q23PSM10PelletItemFPQ34Game10PelletItem6Object = .text:0x80461F7C; // type:function size:0x1D4 scope:global align:4 +__ct__Q23PSM4PikiFPQ24Game4Piki = .text:0x80462150; // type:function size:0x148 scope:global align:4 +onCalcOn__Q23PSM4PikiFv = .text:0x80462298; // type:function size:0x180 scope:global align:4 +becomeFree__Q23PSM4PikiFv = .text:0x80462418; // type:function size:0xC scope:global align:4 +becomeNotFree__Q23PSM4PikiFv = .text:0x80462424; // type:function size:0xC scope:global align:4 +startFreePikiSound__Q23PSM4PikiFUlUlUl = .text:0x80462430; // type:function size:0x144 scope:global align:4 +startPikiSound__Q23PSM4PikiFPQ27JAInter6ObjectUlUl = .text:0x80462574; // type:function size:0x70 scope:global align:4 +startPikiSetSound__Q23PSM4PikiFPQ27JAInter6ObjectUlQ36PSGame5SeMgr7SetSeIdUl = .text:0x804625E4; // type:function size:0xB4 scope:global align:4 +startFreePikiSetSound__Q23PSM4PikiFUlQ36PSGame5SeMgr7SetSeIdUlUl = .text:0x80462698; // type:function size:0x1D4 scope:global align:4 +checkHappaChappySE__Q23PSM4PikiFUl = .text:0x8046286C; // type:function size:0x104 scope:global align:4 +__ct__Q23PSM4NaviFPQ24Game4Navi = .text:0x80462970; // type:function size:0x138 scope:global align:4 +init__Q23PSM4NaviFUs = .text:0x80462AA8; // type:function size:0x24 scope:global align:4 +setShacho__Q23PSM4NaviFv = .text:0x80462ACC; // type:function size:0x28 scope:global align:4 +stopWaitVoice__Q23PSM4NaviFv = .text:0x80462AF4; // type:function size:0x50 scope:global align:4 +startSound__Q23PSM4NaviFUlUl = .text:0x80462B44; // type:function size:0x108 scope:global align:4 +getManType__Q23PSM4NaviFv = .text:0x80462C4C; // type:function size:0x28 scope:global align:4 +playShugoSE__Q23PSM4NaviFv = .text:0x80462C74; // type:function size:0xA0 scope:global align:4 +playKaisanSE__Q23PSM4NaviFv = .text:0x80462D14; // type:function size:0xA0 scope:global align:4 +playWalkSound__Q23PSM4NaviFQ33PSM4Navi8FootTypei = .text:0x80462DB4; // type:function size:0x130 scope:global align:4 +__ct__Q23PSM7ClusterFPQ24Game8CreatureRQ38PSSystem9ClusterSe7Factory = .text:0x80462EE4; // type:function size:0x158 scope:global align:4 +startClusterSound__Q23PSM7ClusterFUc = .text:0x8046303C; // type:function size:0x60 scope:global align:4 +PSSetCurCameraNo__FUc = .text:0x8046309C; // type:function size:0x58 scope:global align:4 +PSMGetNoukouDist__Fv = .text:0x804630F4; // type:function size:0x8 scope:global align:4 +PSSetLastBeedamaDirection__Fbb = .text:0x804630FC; // type:function size:0x70 scope:global align:4 +__dt__Q23PSM7ClusterFv = .text:0x8046316C; // type:function size:0xE8 scope:weak align:4 +getSeSceneGate__Q23PSM9SceneBaseFPQ23PSM7ObjBaseUl = .text:0x80463254; // type:function size:0x8 scope:weak align:4 +isDemoScene__Q23PSM9SceneBaseFv = .text:0x8046325C; // type:function size:0x8 scope:weak align:4 +onDisappear__Q23PSM9EnemyBossFv = .text:0x80463264; // type:function size:0x4 scope:weak align:4 +onAppear__Q23PSM9EnemyBossFv = .text:0x80463268; // type:function size:0x4 scope:weak align:4 +onAppear1st__Q23PSM9EnemyBossFv = .text:0x8046326C; // type:function size:0x4 scope:weak align:4 +getCastType__Q23PSM4NaviFv = .text:0x80463270; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM4PikiFv = .text:0x80463278; // type:function size:0xE8 scope:weak align:4 +getCastType__Q23PSM4PikiFv = .text:0x80463360; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM10PelletItemFv = .text:0x80463368; // type:function size:0x168 scope:weak align:4 +getCastType__Q23PSM10PelletItemFv = .text:0x804634D0; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM13PelletOtakaraFv = .text:0x804634D8; // type:function size:0x168 scope:weak align:4 +getCastType__Q23PSM13PelletOtakaraFv = .text:0x80463640; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM7OtakaraFv = .text:0x80463648; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM8WorkItemFv = .text:0x80463650; // type:function size:0x148 scope:weak align:4 +getCastType__Q23PSM8WorkItemFv = .text:0x80463798; // type:function size:0x8 scope:weak align:4 +is2PBattle__Q23PSM25OtakaraEventLink_2PBattleFv = .text:0x804637A0; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM19Enemy_SpecialChappyFv = .text:0x804637A8; // type:function size:0x1C0 scope:weak align:4 +getCastType__Q23PSM8EnemyBigFv = .text:0x80463968; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM12EnemyBigBossFv = .text:0x80463970; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM12EnemyMidBossFv = .text:0x80463978; // type:function size:0x8 scope:weak align:4 +getCastType__Q23PSM9EnemyBossFv = .text:0x80463980; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM9TsuyukusaFv = .text:0x80463988; // type:function size:0x100 scope:weak align:4 +__dt__Q23PSM18EnemyNotAggressiveFv = .text:0x80463A88; // type:function size:0x190 scope:weak align:4 +getCastType__Q23PSM18EnemyNotAggressiveFv = .text:0x80463C18; // type:function size:0x8 scope:weak align:4 +updateKehai__Q23PSM18EnemyNotAggressiveFv = .text:0x80463C20; // type:function size:0x4 scope:weak align:4 +updateBattle__Q23PSM18EnemyNotAggressiveFv = .text:0x80463C24; // type:function size:0x4 scope:weak align:4 +battleOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463C28; // type:function size:0x4 scope:weak align:4 +battleOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463C2C; // type:function size:0x4 scope:weak align:4 +kehaiOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463C30; // type:function size:0x4 scope:weak align:4 +kehaiOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463C34; // type:function size:0x4 scope:weak align:4 +getCastType__Q23PSM13CreatureAnimeFv = .text:0x80463C38; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM4NaviFv = .text:0x80463C40; // type:function size:0xF8 scope:weak align:4 +@16@__dt__Q23PSM7ObjBaseFv = .text:0x80463D38; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM6ObjMgrFv = .text:0x80463D40; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM6ObjMgrFv = .text:0x80463D48; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM8CreatureFv = .text:0x80463D50; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM11CreatureObjFv = .text:0x80463D58; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM11CreatureObjFv = .text:0x80463D60; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM13CreatureAnimeFv = .text:0x80463D68; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM13CreatureAnimeFv = .text:0x80463D70; // type:function size:0x8 scope:weak align:4 +@48@startAnimSound__Q23PSM13CreatureAnimeFUlPP8JAISoundPQ27JAInter5ActorUc = .text:0x80463D78; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM9EnemyBaseFv = .text:0x80463D80; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9EnemyBaseFv = .text:0x80463D88; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D90; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM18EnemyNotAggressiveFv = .text:0x80463D98; // type:function size:0x8 scope:weak align:4 +@184@battleOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463DA0; // type:function size:0x8 scope:weak align:4 +@184@battleOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463DA8; // type:function size:0x8 scope:weak align:4 +@204@kehaiOff__Q23PSM18EnemyNotAggressiveFv = .text:0x80463DB0; // type:function size:0x8 scope:weak align:4 +@204@kehaiOn__Q23PSM18EnemyNotAggressiveFv = .text:0x80463DB8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM9TsuyukusaFv = .text:0x80463DC0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9TsuyukusaFv = .text:0x80463DC8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM8EnemyBigFv = .text:0x80463DD0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM8EnemyBigFv = .text:0x80463DD8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM9EnemyBossFv = .text:0x80463DE0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM9EnemyBossFv = .text:0x80463DE8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM12EnemyMidBossFv = .text:0x80463DF0; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM12EnemyMidBossFv = .text:0x80463DF8; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM12EnemyBigBossFv = .text:0x80463E00; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM12EnemyBigBossFv = .text:0x80463E08; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM19Enemy_SpecialChappyFv = .text:0x80463E10; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM19Enemy_SpecialChappyFv = .text:0x80463E18; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM8WorkItemFv = .text:0x80463E20; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM8WorkItemFv = .text:0x80463E28; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM7OtakaraFv = .text:0x80463E30; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM7OtakaraFv = .text:0x80463E38; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM13PelletOtakaraFv = .text:0x80463E40; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM13PelletOtakaraFv = .text:0x80463E48; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM10PelletItemFv = .text:0x80463E50; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM10PelletItemFv = .text:0x80463E58; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM4PikiFv = .text:0x80463E60; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM4PikiFv = .text:0x80463E68; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM4NaviFv = .text:0x80463E70; // type:function size:0x8 scope:weak align:4 +@48@startSound__Q23PSM4NaviFUlUl = .text:0x80463E78; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM4NaviFv = .text:0x80463E80; // type:function size:0x8 scope:weak align:4 +@16@__dt__Q23PSM7ClusterFv = .text:0x80463E88; // type:function size:0x8 scope:weak align:4 +@48@__dt__Q23PSM7ClusterFv = .text:0x80463E90; // type:function size:0x8 scope:weak align:4 +__ct__Q23PSM4DemoFv = .text:0x80463E98; // type:function size:0x5C scope:global align:4 +init__Q23PSM4DemoFP3VecP3VecPA4_fQ23PSM7DemoArg = .text:0x80463EF4; // type:function size:0x20C scope:global align:4 +demo1stLoadSync__Q23PSM4DemoFv = .text:0x80464100; // type:function size:0xEC scope:global align:4 +initDemoScene__Q23PSM4DemoFRQ23PSM7DemoArgPQ23PSM10Scene_Demo = .text:0x804641EC; // type:function size:0x48 scope:global align:4 +initiate__Q23PSM4DemoFQ23PSM7DemoArgPUc = .text:0x80464234; // type:function size:0x1DA4 scope:global align:4 +__dt__Q23PSM4DemoFv = .text:0x80465FD8; // type:function size:0x184 scope:global align:4 +onDemoTop__Q23PSM4DemoFv = .text:0x8046615C; // type:function size:0x6C0 scope:global align:4 +becomeSceneCamera__Q23PSM4DemoFv = .text:0x8046681C; // type:function size:0x104 scope:global align:4 +onDemoFadeoutStart__Q23PSM4DemoFUl = .text:0x80466920; // type:function size:0xFC scope:global align:4 +onDemoEnd__Q23PSM4DemoFv = .text:0x80466A1C; // type:function size:0x664 scope:global align:4 +onMessageEnd__Q23PSM4DemoFi = .text:0x80467080; // type:function size:0x268 scope:global align:4 +PSMCancelToPauseOffMainBgm__Fv = .text:0x804672E8; // type:function size:0xE4 scope:global align:4 +PSMGetGameSceneA__Fv = .text:0x804673CC; // type:function size:0xEC scope:weak align:4 +isPollutUp__Q23PSM10Scene_CaveFv = .text:0x804674B8; // type:function size:0x18 scope:weak align:4 +getEnvSe__Q23PSM9SceneBaseFv = .text:0x804674D0; // type:function size:0x8 scope:weak align:4 +setMode__Q23PSM11ObjCalcBaseFQ33PSM11ObjCalcBase4Mode = .text:0x804674D8; // type:function size:0x8 scope:weak align:4 +__ct__Q23PSM9SceneBaseFUcPQ26PSGame9SceneInfo = .text:0x804674E0; // type:function size:0x84 scope:global align:4 +getSceneFx__Q23PSM9SceneBaseFv = .text:0x80467564; // type:function size:0x8 scope:global align:4 +becomeSceneCamera__Q23PSM9SceneBaseFv = .text:0x8046756C; // type:function size:0x58 scope:global align:4 +getSceneInfoA__Q23PSM9SceneBaseFv = .text:0x804675C4; // type:function size:0x54 scope:global align:4 +pauseOn_2D__Q23PSM9SceneBaseFUcUc = .text:0x80467618; // type:function size:0x28 scope:global align:4 +pauseOff_2D__Q23PSM9SceneBaseFv = .text:0x80467640; // type:function size:0x24 scope:global align:4 +pauseOn_Demo__Q23PSM9SceneBaseFv = .text:0x80467664; // type:function size:0x4 scope:global align:4 +pauseOff_Demo__Q23PSM9SceneBaseFv = .text:0x80467668; // type:function size:0x4 scope:global align:4 +__ct__Q23PSM12Scene_GlobalFUcPQ26PSGame9SceneInfo = .text:0x8046766C; // type:function size:0x90 scope:global align:4 +__dt__Q23PSM12Scene_GlobalFv = .text:0x804676FC; // type:function size:0xC8 scope:global align:4 +getCamDistVol__Q23PSM12Scene_GlobalFUc = .text:0x804677C4; // type:function size:0x8 scope:global align:4 +getGlobalStream__Q23PSM12Scene_GlobalFv = .text:0x804677CC; // type:function size:0x94 scope:global align:4 +startGlobalStream__Q23PSM12Scene_GlobalFUl = .text:0x80467860; // type:function size:0xBC scope:global align:4 +__ct__Q23PSM10Scene_DemoFUcPQ26PSGame9SceneInfo = .text:0x8046791C; // type:function size:0x98 scope:global align:4 +getSeSceneGate__Q23PSM10Scene_DemoFPQ23PSM7ObjBaseUl = .text:0x804679B4; // type:function size:0x84 scope:global align:4 +getCamDistVol__Q23PSM10Scene_DemoFUc = .text:0x80467A38; // type:function size:0x8 scope:global align:4 +__ct__Q23PSM13Scene_ObjectsFUcPQ26PSGame9SceneInfo = .text:0x80467A40; // type:function size:0x114 scope:global align:4 +__dt__Q23PSM13Scene_ObjectsFv = .text:0x80467B54; // type:function size:0xF8 scope:global align:4 +__dt__Q23PSM11ObjCalcBaseFv = .text:0x80467C4C; // type:function size:0x64 scope:weak align:4 +adaptObjMgr__Q23PSM13Scene_ObjectsFv = .text:0x80467CB0; // type:function size:0x60 scope:global align:4 +detachObjMgr__Q23PSM13Scene_ObjectsFv = .text:0x80467D10; // type:function size:0x1C scope:global align:4 +startMainSeq__Q23PSM13Scene_ObjectsFv = .text:0x80467D2C; // type:function size:0x40 scope:global align:4 +onStartMainSeq__Q23PSM13Scene_ObjectsFv = .text:0x80467D6C; // type:function size:0x24 scope:global align:4 +getSeSceneGate__Q23PSM13Scene_ObjectsFPQ23PSM7ObjBaseUl = .text:0x80467D90; // type:function size:0x14 scope:global align:4 +getCamDistVol__Q23PSM13Scene_ObjectsFUc = .text:0x80467DA4; // type:function size:0x24 scope:global align:4 +exec__Q23PSM13Scene_ObjectsFv = .text:0x80467DC8; // type:function size:0x210 scope:global align:4 +init__Q23PSM10Scene_GameFv = .text:0x80467FD8; // type:function size:0x114 scope:global align:4 +__dt__Q23PSM10Scene_GameFv = .text:0x804680EC; // type:function size:0x168 scope:global align:4 +__dt__Q33PSM12BossBgmFader3MgrFv = .text:0x80468254; // type:function size:0xB0 scope:weak align:4 +attachBossFaderMgr__Q23PSM10Scene_GameFv = .text:0x80468304; // type:function size:0x58 scope:global align:4 +bossKilled__Q23PSM10Scene_GameFPQ23PSM9EnemyBoss = .text:0x8046835C; // type:function size:0x1DC scope:global align:4 +startMainSeq__Q23PSM10Scene_GameFv = .text:0x80468538; // type:function size:0x100 scope:global align:4 +stopMainSeq__Q23PSM10Scene_GameFUl = .text:0x80468638; // type:function size:0x8C scope:global align:4 +stopAllSound__Q23PSM10Scene_GameFUl = .text:0x804686C4; // type:function size:0x50 scope:global align:4 +exec__Q23PSM10Scene_GameFv = .text:0x80468714; // type:function size:0x3C4 scope:global align:4 +getEnvSe__Q23PSM10Scene_GameFv = .text:0x80468AD8; // type:function size:0x8 scope:global align:4 +adaptEnvSe__Q23PSM10Scene_GameFPQ28PSSystem8EnvSeMgr = .text:0x80468AE0; // type:function size:0x58 scope:global align:4 +bossAppear__Q23PSM10Scene_GameFPQ23PSM9EnemyBossUs = .text:0x80468B38; // type:function size:0x100 scope:global align:4 +pauseOn_2D__Q23PSM10Scene_GameFUcUc = .text:0x80468C38; // type:function size:0x578 scope:global align:4 +pauseOff_2D__Q23PSM10Scene_GameFv = .text:0x804691B0; // type:function size:0x40 scope:global align:4 +pauseOn_Demo__Q23PSM10Scene_GameFv = .text:0x804691F0; // type:function size:0x548 scope:global align:4 +pauseOff_Demo__Q23PSM10Scene_GameFv = .text:0x80469738; // type:function size:0x4 scope:global align:4 +akubiOK__Q23PSM10Scene_GameFv = .text:0x8046973C; // type:function size:0xB4 scope:global align:4 +__ct__Q23PSM12Scene_GroundFUcPQ26PSGame9SceneInfo = .text:0x804697F0; // type:function size:0x184 scope:global align:4 +exec__Q23PSM12Scene_GroundFv = .text:0x80469974; // type:function size:0x44 scope:global align:4 +setPollutUp__Q23PSM12Scene_GroundFv = .text:0x804699B8; // type:function size:0xC scope:global align:4 +fadeMainBgm__Q23PSM12Scene_GroundFfUlQ33PSM12Scene_Ground4Time = .text:0x804699C4; // type:function size:0x1AC scope:global align:4 +jumpMainBgm__Q23PSM12Scene_GroundFUc = .text:0x80469B70; // type:function size:0x184 scope:global align:4 +changeEnvSE_Noon__Q23PSM12Scene_GroundFv = .text:0x80469CF4; // type:function size:0x50 scope:global align:4 +__ct__Q23PSM10Scene_CaveFUcPQ26PSGame9SceneInfo = .text:0x80469D44; // type:function size:0x1E4 scope:global align:4 +getSceneFx__Q23PSM10Scene_CaveFv = .text:0x80469F28; // type:function size:0x8 scope:global align:4 +isBossFloor__Q23PSM10Scene_CaveFv = .text:0x80469F30; // type:function size:0x30 scope:global align:4 +exec__Q23PSM10Scene_CaveFv = .text:0x80469F60; // type:function size:0x44 scope:global align:4 +stopPollutionSe__Q23PSM10Scene_CaveFv = .text:0x80469FA4; // type:function size:0x4C scope:global align:4 +startPollutUpSe__Q23PSM10Scene_CaveFv = .text:0x80469FF0; // type:function size:0xF8 scope:global align:4 +startMainSeq__Q23PSM10Scene_CaveFv = .text:0x8046A0E8; // type:function size:0x144 scope:global align:4 +init__Q23PSM10Scene_CaveFv = .text:0x8046A22C; // type:function size:0x24C scope:global align:4 +bossAppear__Q23PSM10Scene_CaveFPQ23PSM9EnemyBossUs = .text:0x8046A478; // type:function size:0x1D0 scope:global align:4 +bossKilled__Q23PSM10Scene_CaveFPQ23PSM9EnemyBoss = .text:0x8046A648; // type:function size:0x318 scope:global align:4 +akubiOK__Q23PSM10Scene_CaveFv = .text:0x8046A960; // type:function size:0xD4 scope:global align:4 +__ct__Q23PSM15Scene_ChallengeFUcPQ26PSGame9SceneInfo = .text:0x8046AA34; // type:function size:0x1EC scope:global align:4 +__dt__Q23PSM10Scene_CaveFv = .text:0x8046AC20; // type:function size:0x178 scope:weak align:4 +init__Q23PSM15Scene_ChallengeFv = .text:0x8046AD98; // type:function size:0x24C scope:global align:4 +startMainSeq__Q23PSM15Scene_ChallengeFv = .text:0x8046AFE4; // type:function size:0x1FC scope:global align:4 +akubiOK__Q23PSM15Scene_ChallengeFv = .text:0x8046B1E0; // type:function size:0x78 scope:global align:4 +getCamDistVol__Q23PSM11Scene_ZukanFUc = .text:0x8046B258; // type:function size:0x8 scope:global align:4 +getSeSceneGate__Q23PSM11Scene_ZukanFPQ23PSM7ObjBaseUl = .text:0x8046B260; // type:function size:0xBC scope:global align:4 +__ct__Q23PSM14Scene_WorldMapFUcPQ26PSGame9SceneInfo = .text:0x8046B31C; // type:function size:0xD4 scope:global align:4 +__dt__Q23PSM15Scene_NoObjectsFv = .text:0x8046B3F0; // type:function size:0x70 scope:weak align:4 +getCamDistVol__Q23PSM15Scene_NoObjectsFUc = .text:0x8046B460; // type:function size:0x8 scope:global align:4 +PSChangeBgm_ChallengeGame__Fv = .text:0x8046B468; // type:function size:0x1B8 scope:global align:4 +PSStart2DStream__FUl = .text:0x8046B620; // type:function size:0x100 scope:global align:4 +PSStop2DStream__Fv = .text:0x8046B720; // type:function size:0xEC scope:global align:4 +PSPause_StartMenuOn__Fv = .text:0x8046B80C; // type:function size:0x1EC scope:global align:4 +PSPause_StartMenuOff__Fv = .text:0x8046B9F8; // type:function size:0x20 scope:global align:4 +PSPauseOn__FUcUc = .text:0x8046BA18; // type:function size:0xEC scope:global align:4 +PSPauseOff__Fv = .text:0x8046BB04; // type:function size:0xCC scope:global align:4 +PSStartChallengeTimeUpStream__Fv = .text:0x8046BBD0; // type:function size:0x1C8 scope:global align:4 +PSMuteSE_on2D__Fv = .text:0x8046BD98; // type:function size:0xB4 scope:global align:4 +PSMuteOffSE_on2D__Fv = .text:0x8046BE4C; // type:function size:0xB4 scope:global align:4 +__dt__Q23PSM10Scene_DemoFv = .text:0x8046BF00; // type:function size:0x70 scope:weak align:4 +isCave__Q23PSM10Scene_CaveFv = .text:0x8046BF70; // type:function size:0x8 scope:weak align:4 +getPollutUpTimer__Q23PSM10Scene_CaveCFv = .text:0x8046BF78; // type:function size:0x8 scope:weak align:4 +isDemoScene__Q23PSM10Scene_GameFv = .text:0x8046BF80; // type:function size:0x8 scope:weak align:4 +isGameScene__Q23PSM10Scene_GameFv = .text:0x8046BF88; // type:function size:0x8 scope:weak align:4 +__dt__Q23PSM12Scene_GroundFv = .text:0x8046BF90; // type:function size:0x178 scope:weak align:4 +isPollutUp__Q23PSM12Scene_GroundFv = .text:0x8046C108; // type:function size:0x18 scope:weak align:4 +getPollutUpTimer__Q23PSM12Scene_GroundCFv = .text:0x8046C120; // type:function size:0x8 scope:weak align:4 +isBossFloor__Q23PSM10Scene_GameFv = .text:0x8046C128; // type:function size:0x8 scope:weak align:4 +isPollutUp__Q23PSM10Scene_GameFv = .text:0x8046C130; // type:function size:0x8 scope:weak align:4 +getPollutUpTimer__Q23PSM10Scene_GameCFv = .text:0x8046C138; // type:function size:0x8 scope:weak align:4 +isDemoScene__Q23PSM10Scene_DemoFv = .text:0x8046C140; // type:function size:0x8 scope:weak align:4 +getSeSceneGate__Q23PSM12Scene_GlobalFPQ23PSM7ObjBaseUl = .text:0x8046C148; // type:function size:0x3C scope:weak align:4 +__dt__Q23PSM14Scene_WorldMapFv = .text:0x8046C184; // type:function size:0x80 scope:weak align:4 +__dt__Q23PSM11Scene_ZukanFv = .text:0x8046C204; // type:function size:0x114 scope:weak align:4 +__dt__Q23PSM15Scene_ChallengeFv = .text:0x8046C318; // type:function size:0x188 scope:weak align:4 +__dt__Q28PSSystem39SingletonBaseFv = .text:0x8046C4A0; // type:function size:0x50 scope:weak align:4 +__dt__Q28PSSystem34SingletonBaseFv = .text:0x8046C4F0; // type:function size:0x50 scope:weak align:4 +__sinit_PSMainSide_Scene_cpp = .text:0x8046C540; // type:function size:0x28 scope:local align:4 +update__Q33PSM12BossBgmFader9TypedProcFv = .text:0x8046C568; // type:function size:0x1D8 scope:global align:4 +update__Q33PSM12BossBgmFader17TypedProc_MidBossFv = .text:0x8046C740; // type:function size:0x3C scope:global align:4 +__ct__Q33PSM12BossBgmFader3MgrFv = .text:0x8046C77C; // type:function size:0xEC scope:global align:4 +appendTarget__Q33PSM12BossBgmFader3MgrFP25JSULink = .text:0x8046C868; // type:function size:0x24 scope:global align:4 +exec__Q33PSM12BossBgmFader3MgrFv = .text:0x8046C88C; // type:function size:0x768 scope:global align:4 +partInit__Q23PSM14ClusterFactoryFUc = .text:0x8046CFF4; // type:function size:0x21C scope:global align:4 +__ct__Q23PSM14WorldMapRocketFv = .text:0x8046D210; // type:function size:0x74 scope:global align:4 +__dt__Q23PSM14WorldMapRocketFv = .text:0x8046D284; // type:function size:0x60 scope:global align:4 +startRocketSE__Q23PSM14WorldMapRocketFff = .text:0x8046D2E4; // type:function size:0x490 scope:global align:4 +stateChange__Q23PSM14WorldMapRocketFQ33PSM14WorldMapRocket11rocketState = .text:0x8046D774; // type:function size:0x8 scope:global align:4 +__ct__Q23PSM11PikiHummingFv = .text:0x8046D77C; // type:function size:0x4 scope:global align:4 +__ct__Q23PSM14PikiHummingMgrFv = .text:0x8046D780; // type:function size:0xFC scope:global align:4 +exec__Q23PSM14PikiHummingMgrFv = .text:0x8046D87C; // type:function size:0x624 scope:global align:4 +play__Q23PSM14PikiHummingMgrFPQ23PSM4Piki = .text:0x8046DEA0; // type:function size:0xC4 scope:global align:4 +PSStartSoundVec__FUlP3Vec = .text:0x8046DF64; // type:function size:0x15C scope:global align:4 +newPSCluster_SijimiChou__FPQ24Game8Creature = .text:0x8046E0C0; // type:function size:0x6C scope:global align:4 +PSStartEnemyGhostSE__FPQ24Game9EnemyBasef = .text:0x8046E12C; // type:function size:0x198 scope:global align:4 +PSStartEnemyFatalHitSE__FPQ24Game9EnemyBasef = .text:0x8046E2C4; // type:function size:0x27C scope:global align:4 +PSStartEnemyDownSmokeSE__FPQ24Game9EnemyBasef = .text:0x8046E540; // type:function size:0x1B0 scope:global align:4 +PSStartEnemyDownWatSE__FPQ24Game9EnemyBasef = .text:0x8046E6F0; // type:function size:0x200 scope:global align:4 +PSStartTreasureLaderSE__Ff = .text:0x8046E8F0; // type:function size:0x260 scope:global align:4 +PSStartTresureLaderNoiseSE__FUcff = .text:0x8046EB50; // type:function size:0x450 scope:global align:4 +PSMGetWorldMapRocket__Fv = .text:0x8046EFA0; // type:function size:0xB0 scope:global align:4 +PSPlayCaveHoleSound__FPQ23PSM8Creature = .text:0x8046F050; // type:function size:0x7C scope:global align:4 +identifyPart__Q23PSM14ClusterFactoryFUc = .text:0x8046F0CC; // type:function size:0x30 scope:weak align:4 +startSoundVecReturnHandleT<8JAISound>__8JAIBasicFPP8JAISoundUlP3VecUlUlUc = .text:0x8046F0FC; // type:function size:0x70 scope:weak align:4 +__ct__Q23PSM17DirectorMgr_SceneFPQ23PSM17DirectorMgr_SceneUc = .text:0x8046F16C; // type:function size:0x2D8 scope:global align:4 +__dt__Q23PSM17DirectorMgr_SceneFv = .text:0x8046F444; // type:function size:0x8C scope:global align:4 +initTrackMap__Q23PSM17DirectorMgr_SceneFRQ28PSSystem11DirectedBgm = .text:0x8046F4D0; // type:function size:0x294 scope:global align:4 +newDirector__Q23PSM17DirectorMgr_SceneFUcRQ28PSSystem11DirectedBgm = .text:0x8046F764; // type:function size:0x770 scope:global align:4 +adaptDirectorActor__Q23PSM17DirectorMgr_SceneFPQ28PSSystem12DirectorBaseUc = .text:0x8046FED4; // type:function size:0xA8 scope:global align:4 +newPikminNumberDirector__Q23PSM17DirectorMgr_SceneFiUcRQ28PSSystem11DirectedBgm = .text:0x8046FF7C; // type:function size:0x94 scope:global align:4 +newPikminNumberDirector__Q23PSM25DirectorMgr_Scene_AutoBgmFiUcRQ28PSSystem11DirectedBgm = .text:0x80470010; // type:function size:0x90 scope:global align:4 +__ct__Q23PSM18DirectorMgr_BattleFv = .text:0x804700A0; // type:function size:0x50 scope:global align:4 +newDirector__Q23PSM18DirectorMgr_BattleFUcRQ28PSSystem11DirectedBgm = .text:0x804700F0; // type:function size:0x244 scope:global align:4 +__ct__Q23PSM20DirectorMgr_2PBattleFv = .text:0x80470334; // type:function size:0x50 scope:global align:4 +newDirector__Q23PSM20DirectorMgr_2PBattleFUcRQ28PSSystem11DirectedBgm = .text:0x80470384; // type:function size:0x6B8 scope:global align:4 +__dt__Q23PSM20DirectorMgr_2PBattleFv = .text:0x80470A3C; // type:function size:0x8C scope:weak align:4 +__dt__Q23PSM18DirectorMgr_BattleFv = .text:0x80470AC8; // type:function size:0x8C scope:weak align:4 +__dt__Q23PSM25DirectorMgr_Scene_AutoBgmFv = .text:0x80470B54; // type:function size:0xA4 scope:weak align:4 +isSlave__Q23PSM17DirectorMgr_SceneFv = .text:0x80470BF8; // type:function size:0x14 scope:weak align:4 +__dt__Q23PSM15BgmTrackMapFileFv = .text:0x80470C0C; // type:function size:0x88 scope:weak align:4 +__dt__Q23PSM19GroundDirector_CaveFv = .text:0x80470C94; // type:function size:0xB0 scope:weak align:4 +directOn__Q23PSM19GroundDirector_CaveFv = .text:0x80470D44; // type:function size:0x4 scope:weak align:4 +directOff__Q23PSM19GroundDirector_CaveFv = .text:0x80470D48; // type:function size:0x4 scope:weak align:4 +__dt__Q28PSSystem38SingletonBaseFv = .text:0x80470D4C; // type:function size:0x50 scope:weak align:4 +@12@__dt__Q23PSM17DirectorMgr_SceneFv = .text:0x80470D9C; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM25DirectorMgr_Scene_AutoBgmFv = .text:0x80470DA4; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM18DirectorMgr_BattleFv = .text:0x80470DAC; // type:function size:0x8 scope:weak align:4 +@12@__dt__Q23PSM20DirectorMgr_2PBattleFv = .text:0x80470DB4; // type:function size:0x8 scope:weak align:4 +makeSeSound__Q23PSM7SeSoundFv = .text:0x80470DBC; // type:function size:0x78 scope:global align:4 +onGet__Q23PSM7SeSoundFv = .text:0x80470E34; // type:function size:0x4 scope:global align:4 +onRelease__Q23PSM7SeSoundFv = .text:0x80470E38; // type:function size:0xA4 scope:global align:4 +initParameter__Q23PSM7SeSoundFPvPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo = .text:0x80470EDC; // type:function size:0x154 scope:global align:4 +setDistanceVolumeCommon__Q23PSM7SeSoundFfUc = .text:0x80471030; // type:function size:0x2D8 scope:global align:4 +specializePerspCalc__Q23PSM7SeSoundFRCQ36PSGame10SoundTable11SePerspInfo = .text:0x80471308; // type:function size:0x44 scope:global align:4 +calcVolumeSpecialized__Q23PSM7SeSoundFf = .text:0x8047134C; // type:function size:0x6C scope:global align:4 +calcVolume__Q23PSM7SeSoundFfUcUc = .text:0x804713B8; // type:function size:0x8C scope:global align:4 +setSeDistancePan__Q23PSM7SeSoundFUc = .text:0x80471444; // type:function size:0xB8 scope:global align:4 +calcPan__Q23PSM7SeSoundFRC3Vecf = .text:0x804714FC; // type:function size:0xC8 scope:global align:4 +setSeDistanceDolby__Q23PSM7SeSoundFUc = .text:0x804715C4; // type:function size:0x88 scope:global align:4 +calcDolby__Q23PSM7SeSoundFRC3Vecf = .text:0x8047164C; // type:function size:0x10C scope:global align:4 +__sinit_PSMainSide_Sound_cpp = .text:0x80471758; // type:function size:0x28 scope:local align:4 +__ct__Q23PSM15BgmTrackMapFileFb = .text:0x80471780; // type:function size:0xA8 scope:global align:4 +readTrackMap__Q23PSM15BgmTrackMapFileFPCc = .text:0x80471828; // type:function size:0x77C scope:global align:4 +read__Q23PSM15BgmTrackMapFileFR6Stream = .text:0x80471FA4; // type:function size:0x294 scope:global align:4 +__ct__Q23PSM11BgmTrackMapFv = .text:0x80472238; // type:function size:0x110 scope:weak align:4 +@28@__dt__Q23PSM15BgmTrackMapFileFv = .text:0x80472348; // type:function size:0x8 scope:weak align:4 +setSetting__Q23PSM15THPDinamicsProcFQ23PSM6THP_ID = .text:0x80472350; // type:function size:0x70 scope:global align:4 +setSetting__Q23PSM15THPDinamicsProcFPQ23PSM15THPDemoDinamics = .text:0x804723C0; // type:function size:0x110 scope:global align:4 +dinamics__Q23PSM15THPDinamicsProcFf = .text:0x804724D0; // type:function size:0x130 scope:global align:4 +__dt__Q23PSM11CreaturePrmFv = .text:0x80472600; // type:function size:0x64 scope:weak align:4 +__dt__Q28PSSystem34SingletonBaseFv = .text:0x80472664; // type:function size:0x50 scope:weak align:4 +__sinit_PSMainSide_CreaturePrm_cpp = .text:0x804726B4; // type:function size:0xA0 scope:local align:4 +newInstance_SingleGame__Q23PSM18ObjCalc_SingleGameFv = .text:0x80472754; // type:function size:0x60 scope:global align:4 +getPlayerNo__Q23PSM18ObjCalc_SingleGameFPQ23PSM8Creature = .text:0x804727B4; // type:function size:0x8 scope:global align:4 +getPlayerNo__Q23PSM18ObjCalc_SingleGameFR3Vec = .text:0x804727BC; // type:function size:0x8 scope:global align:4 +newInstance_2PGame__Q23PSM14ObjCalc_2PGameFv = .text:0x804727C4; // type:function size:0x5C scope:global align:4 +getPlayerNo__Q23PSM14ObjCalc_2PGameFR3Vec = .text:0x80472820; // type:function size:0x3BC scope:global align:4 +getPlayerNo__Q23PSM14ObjCalc_2PGameFPQ23PSM8Creature = .text:0x80472BDC; // type:function size:0xC8 scope:global align:4 +__dt__Q23PSM18ObjCalc_SingleGameFv = .text:0x80472CA4; // type:function size:0x74 scope:weak align:4 +__dt__Q23PSM14ObjCalc_2PGameFv = .text:0x80472D18; // type:function size:0x74 scope:weak align:4 +is1PGame__Q23PSM14ObjCalc_2PGameFv = .text:0x80472D8C; // type:function size:0x8 scope:weak align:4 +__init_cpp_exceptions_reference = .ctors:0x80472DA0; // type:object size:0x4 scope:global align:4 +_ctors = .ctors:0x80472DA0; // type:label scope:global data:4byte +__destroy_global_chain_reference = .dtors:0x80473160; // type:object size:0x4 scope:global align:4 +_dtors = .dtors:0x80473160; // type:label scope:global data:4byte +__fini_cpp_exceptions_reference = .dtors:0x80473164; // type:object size:0x4 scope:global align:4 +__destroy_global_chain_reference = .dtors:0x80473168; // type:object size:0x4 scope:local align:4 +@1581 = .rodata:0x80473180; // type:object size:0xC scope:local align:4 data:4byte +gapfnExtrapolateParameter___Q27JStudio27@unnamed@functionvalue_cpp@ = .rodata:0x80473190; // type:object size:0x10 scope:local align:4 data:4byte +saCompositeOperation___Q37JStudio3fvb17@unnamed@fvb_cpp@ = .rodata:0x804731A0; // type:object size:0x40 scope:local align:4 +@741 = .rodata:0x804731E0; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x804731F0; // type:label scope:local +sauVariableValue_3_TRANSLATION_XYZ__Q27JStudio14TAdaptor_actor = .rodata:0x804731F0; // type:object size:0xC scope:global align:4 +sauVariableValue_3_ROTATION_XYZ__Q27JStudio14TAdaptor_actor = .rodata:0x804731FC; // type:object size:0xC scope:global align:4 +sauVariableValue_3_SCALING_XYZ__Q27JStudio14TAdaptor_actor = .rodata:0x80473208; // type:object size:0xC scope:global align:4 data:4byte +sauVariableValue_3_COLOR_RGB__Q27JStudio21TAdaptor_ambientLight = .rodata:0x80473214; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio21TAdaptor_ambientLight = .rodata:0x80473220; // type:object size:0x10 scope:global align:4 data:4byte +sauVariableValue_3_POSITION_XYZ__Q27JStudio15TAdaptor_camera = .rodata:0x80473230; // type:object size:0xC scope:global align:4 +sauVariableValue_3_TARGET_POSITION_XYZ__Q27JStudio15TAdaptor_camera = .rodata:0x8047323C; // type:object size:0xC scope:global align:4 +sauVariableValue_3_COLOR_RGB__Q27JStudio12TAdaptor_fog = .rodata:0x80473248; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio12TAdaptor_fog = .rodata:0x80473254; // type:object size:0x10 scope:global align:4 +sauVariableValue_3_COLOR_RGB__Q27JStudio14TAdaptor_light = .rodata:0x80473264; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio14TAdaptor_light = .rodata:0x80473270; // type:object size:0x10 scope:global align:4 +sauVariableValue_3_POSITION_XYZ__Q27JStudio14TAdaptor_light = .rodata:0x80473280; // type:object size:0xC scope:global align:4 +sauVariableValue_3_TARGET_POSITION_XYZ__Q27JStudio14TAdaptor_light = .rodata:0x8047328C; // type:object size:0xC scope:global align:4 +sauVariableValue_3_TRANSLATION_XYZ__Q27JStudio17TAdaptor_particle = .rodata:0x80473298; // type:object size:0xC scope:global align:4 +sauVariableValue_3_ROTATION_XYZ__Q27JStudio17TAdaptor_particle = .rodata:0x804732A4; // type:object size:0xC scope:global align:4 +sauVariableValue_3_SCALING_XYZ__Q27JStudio17TAdaptor_particle = .rodata:0x804732B0; // type:object size:0xC scope:global align:4 +sauVariableValue_3_COLOR_RGB__Q27JStudio17TAdaptor_particle = .rodata:0x804732BC; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR_RGBA__Q27JStudio17TAdaptor_particle = .rodata:0x804732C8; // type:object size:0x10 scope:global align:4 +sauVariableValue_3_COLOR1_RGB__Q27JStudio17TAdaptor_particle = .rodata:0x804732D8; // type:object size:0xC scope:global align:4 +sauVariableValue_4_COLOR1_RGBA__Q27JStudio17TAdaptor_particle = .rodata:0x804732E4; // type:object size:0x10 scope:global align:4 data:4byte +sauVariableValue_3_POSITION_XYZ__Q27JStudio14TAdaptor_sound = .rodata:0x804732F4; // type:object size:0xC scope:global align:4 data:4byte +gauDataSize_TEParagraph_data__Q37JStudio3stb4data = .rodata:0x80473300; // type:object size:0x20 scope:global align:4 +...rodata.0 = .rodata:0x80473320; // type:label scope:local +@560 = .rodata:0x80473320; // type:object size:0xC scope:local align:4 data:string +@562 = .rodata:0x8047332C; // type:object size:0x1F scope:local align:4 data:string +@949 = .rodata:0x8047334C; // type:object size:0x1E scope:local align:4 data:string +@1067 = .rodata:0x8047336C; // type:object size:0x43 scope:local align:4 data:string +@2766 = .rodata:0x804733B0; // type:object size:0x13 scope:local align:4 data:string +@2767 = .rodata:0x804733C4; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x804733E0; // type:label scope:local +@347 = .rodata:0x804733E0; // type:object size:0x10 scope:local align:4 data:string +@348 = .rodata:0x804733F0; // type:object size:0xD scope:local align:4 data:string +@349 = .rodata:0x80473400; // type:object size:0x12 scope:local align:4 data:string +@350 = .rodata:0x80473414; // type:object size:0xD scope:local align:4 data:string +@351 = .rodata:0x80473424; // type:object size:0x11 scope:local align:4 data:string +@573 = .rodata:0x80473438; // type:object size:0x12 scope:local align:4 data:string +@575 = .rodata:0x8047344C; // type:object size:0x18 scope:local align:4 data:string +@2776 = .rodata:0x80473468; // type:object size:0x13 scope:local align:4 data:string +@2778 = .rodata:0x8047347C; // type:object size:0x11 scope:local align:4 data:string +@2841 = .rodata:0x80473490; // type:object size:0x12 scope:local align:4 data:string +@706 = .rodata:0x804734A8; // type:object size:0xF scope:local align:4 data:string +@707 = .rodata:0x804734B8; // type:object size:0x17 scope:local align:4 data:string +...rodata.0 = .rodata:0x804734D0; // type:label scope:local +@879 = .rodata:0x804734D0; // type:object size:0x12 scope:local align:4 data:string +@880 = .rodata:0x804734E4; // type:object size:0x26 scope:local align:4 data:string +@881 = .rodata:0x8047350C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80473528; // type:label scope:local +@451 = .rodata:0x80473528; // type:object size:0x11 scope:local align:4 data:string +@452 = .rodata:0x8047353C; // type:object size:0x26 scope:local align:4 data:string +@453 = .rodata:0x80473564; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x80473588; // type:label scope:local +@584 = .rodata:0x80473588; // type:object size:0x25 scope:local align:4 data:string +@950 = .rodata:0x804735B0; // type:object size:0xF scope:local align:4 data:string +@951 = .rodata:0x804735C0; // type:object size:0x1A scope:local align:4 data:string +@1043 = .rodata:0x804735DC; // type:object size:0x24 scope:local align:4 data:string +@1044 = .rodata:0x80473600; // type:object size:0x10 scope:local align:4 data:string +@1102 = .rodata:0x80473610; // type:object size:0x2A scope:local align:4 data:string +@1103 = .rodata:0x8047363C; // type:object size:0x2D scope:local align:4 data:string +@1104 = .rodata:0x8047366C; // type:object size:0x2B scope:local align:4 data:string +@1105 = .rodata:0x80473698; // type:object size:0x29 scope:local align:4 data:string +@1106 = .rodata:0x804736C4; // type:object size:0x25 scope:local align:4 data:string +@1107 = .rodata:0x804736EC; // type:object size:0x2D scope:local align:4 data:string +@1108 = .rodata:0x8047371C; // type:object size:0x26 scope:local align:4 data:string +@1142 = .rodata:0x80473744; // type:object size:0x37 scope:local align:4 data:string +@1143 = .rodata:0x8047377C; // type:object size:0xF scope:local align:4 data:string +@1145 = .rodata:0x8047378C; // type:object size:0x3A scope:local align:4 data:string +@1146 = .rodata:0x804737C8; // type:object size:0x25 scope:local align:4 data:string +@1149 = .rodata:0x804737F0; // type:object size:0xF scope:local align:4 data:string +@1151 = .rodata:0x80473800; // type:object size:0x2A scope:local align:4 data:string +@1228 = .rodata:0x8047382C; // type:object size:0x1C scope:local align:4 data:string +@1229 = .rodata:0x80473848; // type:object size:0x30 scope:local align:4 data:string +@1230 = .rodata:0x80473878; // type:object size:0x12 scope:local align:4 data:string +@1231 = .rodata:0x8047388C; // type:object size:0x9 scope:local align:4 data:string +@1232 = .rodata:0x80473898; // type:object size:0x1C scope:local align:4 data:string +@1233 = .rodata:0x804738B4; // type:object size:0x11 scope:local align:4 data:string +@1234 = .rodata:0x804738C8; // type:object size:0x12 scope:local align:4 data:string +@1235 = .rodata:0x804738DC; // type:object size:0x11 scope:local align:4 data:string +@1236 = .rodata:0x804738F0; // type:object size:0x15 scope:local align:4 data:string +@912 = .rodata:0x80473908; // type:object size:0xC scope:local align:4 data:string +@2646 = .rodata:0x80473918; // type:object size:0x12 scope:local align:4 data:string +@2647 = .rodata:0x8047392C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80473948; // type:label scope:local +@581 = .rodata:0x80473948; // type:object size:0x31 scope:local align:4 data:string +@596 = .rodata:0x8047397C; // type:object size:0x31 scope:local align:4 data:string +@601 = .rodata:0x804739B0; // type:object size:0x27 scope:local align:4 data:string +@631 = .rodata:0x804739D8; // type:object size:0x2F scope:local align:4 data:string +@636 = .rodata:0x80473A08; // type:object size:0x2E scope:local align:4 data:string +@684 = .rodata:0x80473A38; // type:object size:0x31 scope:local align:4 data:string +@695 = .rodata:0x80473A6C; // type:object size:0x11 scope:local align:4 data:string +@696 = .rodata:0x80473A80; // type:object size:0x11 scope:local align:4 data:string +@697 = .rodata:0x80473A94; // type:object size:0x1E scope:local align:4 data:string +...rodata.0 = .rodata:0x80473AB8; // type:label scope:local +@2413 = .rodata:0x80473AB8; // type:object size:0xD scope:local align:4 data:string +@2414 = .rodata:0x80473AC8; // type:object size:0xE scope:local align:4 data:string +@2417 = .rodata:0x80473AD8; // type:object size:0x13 scope:local align:4 data:string +@2418 = .rodata:0x80473AEC; // type:object size:0xA scope:local align:4 data:string +@2420 = .rodata:0x80473AF8; // type:object size:0xF scope:local align:4 data:string +@2421 = .rodata:0x80473B08; // type:object size:0xC scope:local align:4 data:string +@2422 = .rodata:0x80473B14; // type:object size:0xC scope:local align:4 data:string +@2424 = .rodata:0x80473B20; // type:object size:0x13 scope:local align:4 data:string +@2425 = .rodata:0x80473B34; // type:object size:0xC scope:local align:4 data:string +@2426 = .rodata:0x80473B40; // type:object size:0x11 scope:local align:4 data:string +@2427 = .rodata:0x80473B54; // type:object size:0x12 scope:local align:4 data:string +@2428 = .rodata:0x80473B68; // type:object size:0xB scope:local align:4 data:string +@2496 = .rodata:0x80473B74; // type:object size:0x17 scope:local align:4 data:string +@2558 = .rodata:0x80473B8C; // type:object size:0x11 scope:local align:4 data:string +@2559 = .rodata:0x80473BA0; // type:object size:0x10 scope:local align:4 data:string +@2560 = .rodata:0x80473BB0; // type:object size:0x10 scope:local align:4 data:string +@2562 = .rodata:0x80473BC0; // type:object size:0x11 scope:local align:4 data:string +@2563 = .rodata:0x80473BD4; // type:object size:0xC scope:local align:4 data:string +@2717 = .rodata:0x80473BE0; // type:object size:0x26 scope:local align:4 data:string +@2791 = .rodata:0x80473C08; // type:object size:0x28 scope:local align:4 data:string +@2792 = .rodata:0x80473C30; // type:object size:0x20 scope:local align:4 data:string +@2793 = .rodata:0x80473C50; // type:object size:0x11 scope:local align:4 data:string +@2794 = .rodata:0x80473C64; // type:object size:0x15 scope:local align:4 data:string +@2836 = .rodata:0x80473C7C; // type:object size:0x1F scope:local align:4 data:string +@2837 = .rodata:0x80473C9C; // type:object size:0xF scope:local align:4 data:string +@2838 = .rodata:0x80473CAC; // type:object size:0x19 scope:local align:4 data:string +@2840 = .rodata:0x80473CC8; // type:object size:0x16 scope:local align:4 data:string +@2841 = .rodata:0x80473CE0; // type:object size:0x16 scope:local align:4 data:string +@2843 = .rodata:0x80473CF8; // type:object size:0xF scope:local align:4 data:string +@2844 = .rodata:0x80473D08; // type:object size:0x12 scope:local align:4 data:string +@2845 = .rodata:0x80473D1C; // type:object size:0x13 scope:local align:4 data:string +@2846 = .rodata:0x80473D30; // type:object size:0x16 scope:local align:4 data:string +@2847 = .rodata:0x80473D48; // type:object size:0x1A scope:local align:4 data:string +@2848 = .rodata:0x80473D64; // type:object size:0x10 scope:local align:4 data:string +@2849 = .rodata:0x80473D74; // type:object size:0x11 scope:local align:4 data:string +@2850 = .rodata:0x80473D88; // type:object size:0x15 scope:local align:4 data:string +@2851 = .rodata:0x80473DA0; // type:object size:0x16 scope:local align:4 data:string +@2852 = .rodata:0x80473DB8; // type:object size:0x1C scope:local align:4 data:string +@2853 = .rodata:0x80473DD4; // type:object size:0x1C scope:local align:4 data:string +@2867 = .rodata:0x80473DF0; // type:object size:0x26 scope:local align:4 data:string +@2868 = .rodata:0x80473E18; // type:object size:0x27 scope:local align:4 data:string +@2869 = .rodata:0x80473E40; // type:object size:0x1A scope:local align:4 data:string +@2934 = .rodata:0x80473E5C; // type:object size:0x15 scope:local align:4 data:string +@3015 = .rodata:0x80473E74; // type:object size:0x29 scope:local align:4 data:string +@3016 = .rodata:0x80473EA0; // type:object size:0xD scope:local align:4 data:string +@3017 = .rodata:0x80473EB0; // type:object size:0x12 scope:local align:4 data:string +@3018 = .rodata:0x80473EC4; // type:object size:0x26 scope:local align:4 data:string +@3091 = .rodata:0x80473EEC; // type:object size:0x2A scope:local align:4 data:string +@3092 = .rodata:0x80473F18; // type:object size:0xC scope:local align:4 data:string +@3181 = .rodata:0x80473F24; // type:object size:0x19 scope:local align:4 data:string +@3453 = .rodata:0x80473F40; // type:object size:0x37 scope:local align:4 data:string +@3454 = .rodata:0x80473F78; // type:object size:0x2D scope:local align:4 data:string +@3455 = .rodata:0x80473FA8; // type:object size:0x22 scope:local align:4 data:string +@3684 = .rodata:0x80473FCC; // type:object size:0x20 scope:local align:4 data:string +@325 = .rodata:0x80473FF0; // type:object size:0xF scope:local align:4 data:string +@326 = .rodata:0x80474000; // type:object size:0x1A scope:local align:4 data:string +saoAboutEncoding___10JUTResFont = .rodata:0x80474020; // type:object size:0xC scope:global align:4 +@566 = .rodata:0x8047402C; // type:object size:0x20 scope:local align:4 data:string +@588 = .rodata:0x8047404C; // type:object size:0x14 scope:local align:4 data:string +halftofull$725 = .rodata:0x80474060; // type:object size:0xBE scope:local align:4 +@648 = .rodata:0x80474120; // type:object size:0x15 scope:local align:4 data:string +@649 = .rodata:0x80474138; // type:object size:0x1B scope:local align:4 data:string +JUTResFONT_Ascfont_fix12 = .rodata:0x80474160; // type:object size:0x4160 scope:global +...rodata.0 = .rodata:0x804782C0; // type:label scope:local +@570 = .rodata:0x804782C0; // type:object size:0x22 scope:local align:4 data:string +@708 = .rodata:0x804782E4; // type:object size:0x11 scope:local align:4 data:string +@710 = .rodata:0x804782F8; // type:object size:0x26 scope:local align:4 data:string +@711 = .rodata:0x80478320; // type:object size:0x14 scope:local align:4 data:string +@2033 = .rodata:0x80478338; // type:object size:0x10 scope:local align:4 data:4byte +@2051 = .rodata:0x80478348; // type:object size:0x10 scope:local align:4 data:4byte +@3276 = .rodata:0x80478358; // type:object size:0x10 scope:local align:4 data:4byte +@3285 = .rodata:0x80478368; // type:object size:0x14 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80478380; // type:label scope:local +@1699 = .rodata:0x80478380; // type:object size:0x10 scope:local align:4 data:4byte +@1751 = .rodata:0x80478390; // type:object size:0x10 scope:local align:4 +@1760 = .rodata:0x804783A0; // type:object size:0x10 scope:local align:4 +@1769 = .rodata:0x804783B0; // type:object size:0x10 scope:local align:4 +@1775 = .rodata:0x804783C0; // type:object size:0x10 scope:local align:4 +@1781 = .rodata:0x804783D0; // type:object size:0x10 scope:local align:4 +@1790 = .rodata:0x804783E0; // type:object size:0x10 scope:local align:4 +@1799 = .rodata:0x804783F0; // type:object size:0x10 scope:local align:4 +@1806 = .rodata:0x80478400; // type:object size:0x10 scope:local align:4 +@2720 = .rodata:0x80478410; // type:object size:0x18 scope:local align:4 +@2721 = .rodata:0x80478428; // type:object size:0x18 scope:local align:4 +@2722 = .rodata:0x80478440; // type:object size:0x1E scope:local align:4 +@3319 = .rodata:0x80478460; // type:object size:0x10 scope:local align:4 data:4byte +@1657 = .rodata:0x80478470; // type:object size:0x10 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80478480; // type:label scope:local +@2844 = .rodata:0x80478480; // type:object size:0x20 scope:local align:4 data:4byte +@2845 = .rodata:0x804784A0; // type:object size:0x20 scope:local align:4 +@2846 = .rodata:0x804784C0; // type:object size:0x28 scope:local align:4 +j2dDefaultTexCoordInfo = .rodata:0x804784E8; // type:object size:0x20 scope:global align:4 data:byte +j2dDefaultTexMtxInfo = .rodata:0x80478508; // type:object size:0x24 scope:global align:4 data:byte +j2dDefaultIndTexMtxInfo = .rodata:0x8047852C; // type:object size:0x1C scope:global align:4 data:float +j2dDefaultTevStageInfo = .rodata:0x80478548; // type:object size:0x14 scope:global align:4 +j2dDefaultIndTevStageInfo = .rodata:0x8047855C; // type:object size:0xC scope:global align:4 data:4byte +...rodata.0 = .rodata:0x80478568; // type:label scope:local +@2141 = .rodata:0x80478568; // type:object size:0xC scope:local align:4 data:4byte +@2142 = .rodata:0x80478574; // type:object size:0xC scope:local align:4 +@2143 = .rodata:0x80478580; // type:object size:0xF scope:local align:4 +@2144 = .rodata:0x80478590; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x804785A0; // type:label scope:local +@1369 = .rodata:0x804785A0; // type:object size:0x10 scope:local align:4 data:4byte +@1370 = .rodata:0x804785B0; // type:object size:0x10 scope:local align:4 +@1413 = .rodata:0x804785C0; // type:object size:0x18 scope:local align:4 +@1595 = .rodata:0x804785D8; // type:object size:0x9 scope:local align:4 data:string +@1596 = .rodata:0x804785E4; // type:object size:0x31 scope:local align:4 data:string +@1597 = .rodata:0x80478618; // type:object size:0x23 scope:local align:4 data:string +@1598 = .rodata:0x8047863C; // type:object size:0x26 scope:local align:4 data:string +@1599 = .rodata:0x80478664; // type:object size:0x1C scope:local align:4 data:string +@1600 = .rodata:0x80478680; // type:object size:0x22 scope:local align:4 data:string +@1601 = .rodata:0x804786A4; // type:object size:0x1E scope:local align:4 data:string +@1602 = .rodata:0x804786C4; // type:object size:0x1C scope:local align:4 +j3dDefaultTransformInfo = .rodata:0x804786E0; // type:object size:0x20 scope:global align:4 data:4byte +j3dDefaultScale = .rodata:0x80478700; // type:object size:0xC scope:global align:4 +j3dDefaultMtx = .rodata:0x8047870C; // type:object size:0x30 scope:global align:4 +@1411 = .rodata:0x8047873C; // type:object size:0xC scope:local align:4 data:4byte +j3dDefaultTexCoordInfo = .rodata:0x80478748; // type:object size:0x20 scope:global align:4 data:byte +j3dDefaultTexMtxInfo = .rodata:0x80478768; // type:object size:0x64 scope:global align:4 data:byte +j3dDefaultIndTexMtxInfo = .rodata:0x804787CC; // type:object size:0x1C scope:global align:4 data:byte +j3dDefaultTevStageInfo = .rodata:0x804787E8; // type:object size:0x14 scope:global align:4 +j3dDefaultIndTevStageInfo = .rodata:0x804787FC; // type:object size:0xC scope:global align:4 data:byte +j3dDefaultFogInfo = .rodata:0x80478808; // type:object size:0x2C scope:global align:4 data:byte +j3dDefaultNBTScaleInfo = .rodata:0x80478834; // type:object size:0x10 scope:global align:4 data:byte +@1878 = .rodata:0x80478844; // type:object size:0xB scope:local align:4 data:4byte +@1474 = .rodata:0x80478850; // type:object size:0xC scope:local align:4 data:4byte +@1485 = .rodata:0x8047885C; // type:object size:0xC scope:local align:4 data:4byte +@1835 = .rodata:0x80478868; // type:object size:0xC scope:local align:4 data:4byte +@1837 = .rodata:0x80478874; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80478880; // type:label scope:local +@3938 = .rodata:0x80478880; // type:object size:0x1C scope:local align:4 data:string +@3939 = .rodata:0x8047889C; // type:object size:0x1E scope:local align:4 data:string +@3940 = .rodata:0x804788BC; // type:object size:0x28 scope:local align:4 data:string +@3941 = .rodata:0x804788E4; // type:object size:0x25 scope:local align:4 data:string +@3942 = .rodata:0x8047890C; // type:object size:0x30 scope:local align:4 data:string +@3943 = .rodata:0x8047893C; // type:object size:0x19 scope:local align:4 data:string +OSC_RELEASE_TABLE__10JASBankMgr = .rodata:0x80478958; // type:object size:0xC scope:local align:4 +OSC_ENV__10JASBankMgr = .rodata:0x80478964; // type:object size:0x18 scope:local align:4 +s_key_table = .rodata:0x80478980; // type:object size:0x100 scope:local align:4 +sAdsrDef__9JASPlayer = .rodata:0x80478A80; // type:object size:0x18 scope:global align:4 data:4byte +sEnvelopeDef__9JASPlayer = .rodata:0x80478A98; // type:object size:0x18 scope:global align:4 data:4byte +sVibratoDef__9JASPlayer = .rodata:0x80478AB0; // type:object size:0x18 scope:global align:4 data:4byte +sTremoroDef__9JASPlayer = .rodata:0x80478AC8; // type:object size:0x18 scope:global align:4 data:4byte +Arglist = .rodata:0x80478AE0; // type:object size:0x100 scope:local align:4 +...rodata.0 = .rodata:0x80478BE0; // type:label scope:local +relTableSampleCell__13JASOscillator = .rodata:0x80478BE0; // type:object size:0x44 scope:global align:4 +relTableSqRoot__13JASOscillator = .rodata:0x80478C24; // type:object size:0x44 scope:global align:4 +relTableSquare__13JASOscillator = .rodata:0x80478C68; // type:object size:0x44 scope:global align:4 +oscTableForceStop__13JASOscillator = .rodata:0x80478CAC; // type:object size:0xC scope:global align:4 +calc_sw_table__10JASChannel = .rodata:0x80478CB8; // type:object size:0x51 scope:global align:4 +C5BASE_PITCHTABLE__9JASDriver = .rodata:0x80478D10; // type:object size:0x200 scope:local align:4 +DSPADPCM_FILTER__6JASDsp = .rodata:0x80478F20; // type:object size:0x40 scope:local align:32 +DSPRES_FILTER__6JASDsp = .rodata:0x80478F60; // type:object size:0x500 scope:local align:32 +connect_table$774 = .rodata:0x80479460; // type:object size:0x18 scope:local align:4 +@495 = .rodata:0x80479478; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80479488; // type:label scope:local +sMixFuncs__9JASDriver = .rodata:0x80479488; // type:object size:0x10 scope:local align:4 +@456 = .rodata:0x80479498; // type:object size:0xB scope:local align:4 data:string +@458 = .rodata:0x804794A4; // type:object size:0x11 scope:local align:4 data:string +@527 = .rodata:0x804794B8; // type:object size:0x9 scope:local align:4 data:string +@577 = .rodata:0x804794C4; // type:object size:0x9 scope:local align:4 data:string +@589 = .rodata:0x804794D0; // type:object size:0xC scope:local align:4 data:string +OSC_RELEASE_TABLE = .rodata:0x804794E0; // type:object size:0xC scope:local align:4 +OSC_ENV = .rodata:0x804794EC; // type:object size:0x18 scope:local align:4 +@85 = .rodata:0x80479508; // type:object size:0x1F scope:local align:4 data:string +@1341 = .rodata:0x80479528; // type:object size:0xC scope:local align:4 data:string +@1345 = .rodata:0x80479534; // type:object size:0xA scope:local align:4 data:string +@1346 = .rodata:0x80479540; // type:object size:0xC scope:local align:4 data:string +@1144 = .rodata:0x80479550; // type:object size:0x18 scope:local align:4 data:4byte +@133 = .rodata:0x80479568; // type:object size:0x1B scope:local align:4 data:string +@154 = .rodata:0x80479584; // type:object size:0x10 scope:local align:4 data:string +@98 = .rodata:0x80479598; // type:object size:0x25 scope:local align:4 data:string +@618 = .rodata:0x804795C0; // type:object size:0x1D scope:local align:4 data:string +...rodata.0 = .rodata:0x804795E0; // type:label scope:local +@121 = .rodata:0x804795E0; // type:object size:0x22 scope:local align:4 data:string +@122 = .rodata:0x80479604; // type:object size:0x22 scope:local align:4 data:string +@123 = .rodata:0x80479628; // type:object size:0x22 scope:local align:4 data:string +@124 = .rodata:0x8047964C; // type:object size:0x20 scope:local align:4 data:string +@125 = .rodata:0x8047966C; // type:object size:0x20 scope:local align:4 data:string +@126 = .rodata:0x8047968C; // type:object size:0x21 scope:local align:4 data:string +@146 = .rodata:0x804796B0; // type:object size:0x24 scope:local align:4 data:string +@147 = .rodata:0x804796D4; // type:object size:0x1B scope:local align:4 data:string +@148 = .rodata:0x804796F0; // type:object size:0x31 scope:local align:4 data:string +@149 = .rodata:0x80479724; // type:object size:0x28 scope:local align:4 data:string +@150 = .rodata:0x8047974C; // type:object size:0x1D scope:local align:4 data:string +@126 = .rodata:0x80479770; // type:object size:0x19 scope:local align:4 data:string +@127 = .rodata:0x8047978C; // type:object size:0x1D scope:local align:4 data:string +...rodata.0 = .rodata:0x804797B0; // type:label scope:local +@321 = .rodata:0x804797B0; // type:object size:0x1F scope:local align:4 data:string +@322 = .rodata:0x804797D0; // type:object size:0x8 scope:local align:4 data:string +@323 = .rodata:0x804797D8; // type:object size:0x9 scope:local align:4 data:string +@370 = .rodata:0x804797E4; // type:object size:0xC scope:local align:4 data:string +@402 = .rodata:0x804797F0; // type:object size:0x1F scope:local align:4 data:string +@403 = .rodata:0x80479810; // type:object size:0x1F scope:local align:4 data:string +@404 = .rodata:0x80479830; // type:object size:0x17 scope:local align:4 data:string +@462 = .rodata:0x80479848; // type:object size:0x28 scope:local align:4 data:string +@463 = .rodata:0x80479870; // type:object size:0x36 scope:local align:4 data:string +@464 = .rodata:0x804798A8; // type:object size:0x28 scope:local align:4 data:string +@465 = .rodata:0x804798D0; // type:object size:0x2F scope:local align:4 data:string +@466 = .rodata:0x80479900; // type:object size:0x2F scope:local align:4 data:string +@498 = .rodata:0x80479930; // type:object size:0x2D scope:local align:4 data:string +@535 = .rodata:0x80479960; // type:object size:0x2C scope:local align:4 data:string +@573 = .rodata:0x8047998C; // type:object size:0x6 scope:local align:4 data:string +@574 = .rodata:0x80479994; // type:object size:0x2 scope:local align:4 data:string +...rodata.0 = .rodata:0x80479998; // type:label scope:local +@274 = .rodata:0x80479998; // type:object size:0x15 scope:local align:4 data:string +@275 = .rodata:0x804799B0; // type:object size:0x28 scope:local align:4 data:string +@276 = .rodata:0x804799D8; // type:object size:0x14 scope:local align:4 data:string +@277 = .rodata:0x804799EC; // type:object size:0x51 scope:local align:4 data:string +gTRKMemMap = .rodata:0x80479A40; // type:object size:0x10 scope:global align:4 data:4byte +@276 = .rodata:0x80479A50; // type:object size:0x28 scope:local align:4 data:4byte +@283 = .rodata:0x80479A78; // type:object size:0x28 scope:local align:4 data:4byte +@290 = .rodata:0x80479AA0; // type:object size:0x28 scope:local align:4 data:4byte +@422 = .rodata:0x80479AC8; // type:object size:0x10 scope:local align:4 data:string +@80 = .rodata:0x80479AD8; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80479AE8; // type:label scope:local +EndofProgramInstruction$162 = .rodata:0x80479AE8; // type:object size:0x4 scope:local align:4 +@165 = .rodata:0x80479AEC; // type:object size:0x4 scope:local align:4 data:string +@215 = .rodata:0x80479AF0; // type:object size:0x15 scope:local align:4 data:string +@216 = .rodata:0x80479B08; // type:object size:0x17 scope:local align:4 data:string +@217 = .rodata:0x80479B20; // type:object size:0x21 scope:local align:4 data:string +@218 = .rodata:0x80479B44; // type:object size:0x24 scope:local align:4 data:string +@219 = .rodata:0x80479B68; // type:object size:0x2B scope:local align:4 data:string +@220 = .rodata:0x80479B94; // type:object size:0x2F scope:local align:4 data:string +@221 = .rodata:0x80479BC4; // type:object size:0x28 scope:local align:4 data:string +...rodata.0 = .rodata:0x80479BF0; // type:label scope:local +@318 = .rodata:0x80479BF0; // type:object size:0x14 scope:local align:4 data:string +@319 = .rodata:0x80479C04; // type:object size:0x29 scope:local align:4 data:string +@320 = .rodata:0x80479C30; // type:object size:0x1C scope:local align:4 data:string +@342 = .rodata:0x80479C4C; // type:object size:0x25 scope:local align:4 data:string +@343 = .rodata:0x80479C74; // type:object size:0x2D scope:local align:4 data:string +@349 = .rodata:0x80479CA4; // type:object size:0x13 scope:local align:4 data:string +@350 = .rodata:0x80479CB8; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x80479CD0; // type:label scope:local +@318 = .rodata:0x80479CD0; // type:object size:0x14 scope:local align:4 data:string +@319 = .rodata:0x80479CE4; // type:object size:0x29 scope:local align:4 data:string +@320 = .rodata:0x80479D10; // type:object size:0x1C scope:local align:4 data:string +@341 = .rodata:0x80479D2C; // type:object size:0x25 scope:local align:4 data:string +@342 = .rodata:0x80479D54; // type:object size:0x2D scope:local align:4 data:string +@348 = .rodata:0x80479D84; // type:object size:0x13 scope:local align:4 data:string +@349 = .rodata:0x80479D98; // type:object size:0x18 scope:local align:4 data:string +__ptmf_null = .rodata:0x80479DB0; // type:object size:0xC scope:global align:4 data:4byte +__constants = .rodata:0x80479DC0; // type:object size:0x18 scope:local align:8 data:double +@55 = .rodata:0x80479DD8; // type:object size:0x36 scope:local align:4 data:string +@56 = .rodata:0x80479E10; // type:object size:0x39 scope:local align:4 data:string +fix_pool_sizes = .rodata:0x80479E50; // type:object size:0x18 scope:local align:4 data:4byte +@stringBase0 = .rodata:0x80479E68; // type:object size:0xDD scope:local align:4 data:byte +@stringBase0 = .rodata:0x80479F48; // type:object size:0x5 scope:local align:4 data:string_table +@stringBase0 = .rodata:0x80479F50; // type:object size:0x25 scope:local align:4 data:string_table +@47 = .rodata:0x80479F78; // type:object size:0x28 scope:local align:4 data:4byte +@47 = .rodata:0x80479FA0; // type:object size:0x2A scope:local align:4 data:4byte +@62 = .rodata:0x80479FCC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80479FD8; // type:label scope:local +halF = .rodata:0x80479FD8; // type:object size:0x10 scope:local align:8 +ln2HI = .rodata:0x80479FE8; // type:object size:0x10 scope:local align:8 +ln2LO = .rodata:0x80479FF8; // type:object size:0x10 scope:local align:8 +Zero = .rodata:0x8047A008; // type:object size:0x10 scope:local align:8 +...rodata.0 = .rodata:0x8047A018; // type:label scope:local +bp = .rodata:0x8047A018; // type:object size:0x10 scope:local align:8 +dp_h = .rodata:0x8047A028; // type:object size:0x10 scope:local align:8 +dp_l = .rodata:0x8047A038; // type:object size:0x10 scope:local align:8 +two_over_pi = .rodata:0x8047A048; // type:object size:0x108 scope:local align:4 +npio2_hw = .rodata:0x8047A150; // type:object size:0x80 scope:local align:4 +init_jk = .rodata:0x8047A1D0; // type:object size:0x10 scope:local align:4 +PIo2 = .rodata:0x8047A1E0; // type:object size:0x40 scope:local align:8 data:double +T = .rodata:0x8047A220; // type:object size:0x68 scope:local align:8 data:double +...rodata.0 = .rodata:0x8047A288; // type:label scope:local +atanhi = .rodata:0x8047A288; // type:object size:0x20 scope:local align:8 +atanlo = .rodata:0x8047A2A8; // type:object size:0x20 scope:local align:8 +aT = .rodata:0x8047A2C8; // type:object size:0x58 scope:local align:8 +...rodata.0 = .rodata:0x8047A320; // type:label scope:local +ClampRegion = .rodata:0x8047A320; // type:object size:0xA scope:local align:4 data:byte +...rodata.0 = .rodata:0x8047A330; // type:label scope:local +__THPJpegNaturalOrder = .rodata:0x8047A330; // type:object size:0x50 scope:local align:4 data:byte +__THPAANScaleFactor = .rodata:0x8047A380; // type:object size:0x40 scope:local align:8 +...rodata.0 = .rodata:0x8047A3C0; // type:label scope:local +@3958 = .rodata:0x8047A3C0; // type:object size:0xC scope:local align:4 +@4041 = .rodata:0x8047A3CC; // type:object size:0xA scope:local align:4 data:string +@4378 = .rodata:0x8047A3D8; // type:object size:0x9 scope:local align:4 data:string +@4578 = .rodata:0x8047A3E4; // type:object size:0xE scope:local align:4 data:string +@4579 = .rodata:0x8047A3F4; // type:object size:0x9 scope:local align:4 data:string +@4782 = .rodata:0x8047A400; // type:object size:0xE scope:local align:4 data:string +@4783 = .rodata:0x8047A410; // type:object size:0x14 scope:local align:4 data:string +@4784 = .rodata:0x8047A424; // type:object size:0x14 scope:local align:4 data:string +@4785 = .rodata:0x8047A438; // type:object size:0x16 scope:local align:4 data:string +@4786 = .rodata:0x8047A450; // type:object size:0x18 scope:local align:4 data:string +@4790 = .rodata:0x8047A468; // type:object size:0xB scope:local align:4 data:string +@5221 = .rodata:0x8047A474; // type:object size:0x16 scope:local align:4 data:string +@5520 = .rodata:0x8047A48C; // type:object size:0xD scope:local align:4 data:string +@5538 = .rodata:0x8047A49C; // type:object size:0x10 scope:local align:4 data:string +@7572 = .rodata:0x8047A4AC; // type:object size:0x10 scope:local align:4 data:string +@8011 = .rodata:0x8047A4BC; // type:object size:0xE scope:local align:4 data:string +@8014 = .rodata:0x8047A4CC; // type:object size:0x9 scope:local align:4 data:string +@8016 = .rodata:0x8047A4D8; // type:object size:0x13 scope:local align:4 data:string +@8176 = .rodata:0x8047A4EC; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8047A500; // type:label scope:local +@3535 = .rodata:0x8047A500; // type:object size:0xD scope:local align:4 data:string +@3559 = .rodata:0x8047A510; // type:object size:0x15 scope:local align:4 data:string +@3560 = .rodata:0x8047A528; // type:object size:0x15 scope:local align:4 data:string +@3576 = .rodata:0x8047A540; // type:object size:0x9 scope:local align:4 data:string +@3648 = .rodata:0x8047A54C; // type:object size:0x9 scope:local align:4 data:string +@3649 = .rodata:0x8047A558; // type:object size:0x9 scope:local align:4 data:string +@3780 = .rodata:0x8047A564; // type:object size:0x14 scope:local align:4 data:string +@3784 = .rodata:0x8047A578; // type:object size:0x9 scope:local align:4 data:string +@3910 = .rodata:0x8047A584; // type:object size:0x1A scope:local align:4 data:string +@3950 = .rodata:0x8047A5A0; // type:object size:0xC scope:local align:4 data:string +@4175 = .rodata:0x8047A5AC; // type:object size:0x15 scope:local align:4 +@4199 = .rodata:0x8047A5C4; // type:object size:0xF scope:local align:4 data:string +@4200 = .rodata:0x8047A5D4; // type:object size:0xE scope:local align:4 +@4203 = .rodata:0x8047A5E4; // type:object size:0xE scope:local align:4 +@4204 = .rodata:0x8047A5F4; // type:object size:0xF scope:local align:4 +@4239 = .rodata:0x8047A604; // type:object size:0x13 scope:local align:4 data:string +@4240 = .rodata:0x8047A618; // type:object size:0x13 scope:local align:4 data:string +@4241 = .rodata:0x8047A62C; // type:object size:0xF scope:local align:4 data:string +@4242 = .rodata:0x8047A63C; // type:object size:0xE scope:local align:4 data:string +@4247 = .rodata:0x8047A64C; // type:object size:0xD scope:local align:4 data:string +@4300 = .rodata:0x8047A65C; // type:object size:0xD scope:local align:4 +@4302 = .rodata:0x8047A66C; // type:object size:0xD scope:local align:4 +@4303 = .rodata:0x8047A67C; // type:object size:0xB scope:local align:4 +@4305 = .rodata:0x8047A688; // type:object size:0xF scope:local align:4 +@4307 = .rodata:0x8047A698; // type:object size:0x1F scope:local align:4 +@4309 = .rodata:0x8047A6B8; // type:object size:0x13 scope:local align:4 +@4311 = .rodata:0x8047A6CC; // type:object size:0x13 scope:local align:4 +@4313 = .rodata:0x8047A6E0; // type:object size:0x12 scope:local align:4 +@4314 = .rodata:0x8047A6F4; // type:object size:0x11 scope:local align:4 +@4319 = .rodata:0x8047A708; // type:object size:0xB scope:local align:4 +@4320 = .rodata:0x8047A714; // type:object size:0xD scope:local align:4 +@4323 = .rodata:0x8047A724; // type:object size:0xB scope:local align:4 +@4325 = .rodata:0x8047A730; // type:object size:0xB scope:local align:4 +@4327 = .rodata:0x8047A73C; // type:object size:0x11 scope:local align:4 +@4329 = .rodata:0x8047A750; // type:object size:0x9 scope:local align:4 +@4331 = .rodata:0x8047A75C; // type:object size:0x9 scope:local align:4 +@4334 = .rodata:0x8047A768; // type:object size:0x9 scope:local align:4 +@4336 = .rodata:0x8047A774; // type:object size:0x9 scope:local align:4 +@4337 = .rodata:0x8047A780; // type:object size:0xB scope:local align:4 +@4338 = .rodata:0x8047A78C; // type:object size:0x11 scope:local align:4 +@4339 = .rodata:0x8047A7A0; // type:object size:0xD scope:local align:4 +@4340 = .rodata:0x8047A7B0; // type:object size:0xB scope:local align:4 +@4341 = .rodata:0x8047A7BC; // type:object size:0xD scope:local align:4 +@4342 = .rodata:0x8047A7CC; // type:object size:0xD scope:local align:4 +@4343 = .rodata:0x8047A7DC; // type:object size:0xF scope:local align:4 +@4344 = .rodata:0x8047A7EC; // type:object size:0xF scope:local align:4 +@4346 = .rodata:0x8047A7FC; // type:object size:0x9 scope:local align:4 +@4348 = .rodata:0x8047A808; // type:object size:0x9 scope:local align:4 +@4350 = .rodata:0x8047A814; // type:object size:0x17 scope:local align:4 +@4351 = .rodata:0x8047A82C; // type:object size:0xD scope:local align:4 +@4353 = .rodata:0x8047A83C; // type:object size:0xD scope:local align:4 +@4354 = .rodata:0x8047A84C; // type:object size:0xF scope:local align:4 +@4355 = .rodata:0x8047A85C; // type:object size:0xF scope:local align:4 +@4356 = .rodata:0x8047A86C; // type:object size:0xF scope:local align:4 +@4357 = .rodata:0x8047A87C; // type:object size:0xF scope:local align:4 +@4358 = .rodata:0x8047A88C; // type:object size:0xF scope:local align:4 +@4359 = .rodata:0x8047A89C; // type:object size:0xF scope:local align:4 +@4360 = .rodata:0x8047A8AC; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8047A8C0; // type:label scope:local +@3875 = .rodata:0x8047A8C0; // type:object size:0xB scope:local align:4 data:string +@3876 = .rodata:0x8047A8CC; // type:object size:0xE scope:local align:4 data:string +@3877 = .rodata:0x8047A8DC; // type:object size:0xD scope:local align:4 data:string +@3919 = .rodata:0x8047A8EC; // type:object size:0xB scope:local align:4 data:string +@3920 = .rodata:0x8047A8F8; // type:object size:0xC scope:local align:4 data:string +@3921 = .rodata:0x8047A904; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047A910; // type:label scope:local +@4569 = .rodata:0x8047A910; // type:object size:0xA scope:local align:4 data:string +@5161 = .rodata:0x8047A91C; // type:object size:0x11 scope:local align:4 +@5162 = .rodata:0x8047A930; // type:object size:0x10 scope:local align:4 data:string +@5163 = .rodata:0x8047A940; // type:object size:0xD scope:local align:4 +@5387 = .rodata:0x8047A950; // type:object size:0xA scope:local align:4 data:string +@5388 = .rodata:0x8047A95C; // type:object size:0x14 scope:local align:4 data:string +@5389 = .rodata:0x8047A970; // type:object size:0x9 scope:local align:4 data:string +@5390 = .rodata:0x8047A97C; // type:object size:0x1B scope:local align:4 data:string +@5391 = .rodata:0x8047A998; // type:object size:0xF scope:local align:4 data:string +@6234 = .rodata:0x8047A9A8; // type:object size:0xD scope:local align:4 data:string +@6236 = .rodata:0x8047A9B8; // type:object size:0x10 scope:local align:4 data:string +@4626 = .rodata:0x8047A9C8; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047A9D8; // type:label scope:local +@3523 = .rodata:0x8047A9D8; // type:object size:0xC scope:local align:4 data:string +@3524 = .rodata:0x8047A9E4; // type:object size:0x2E scope:local align:4 data:string +@3532 = .rodata:0x8047AA14; // type:object size:0x19 scope:local align:4 +@3558 = .rodata:0x8047AA30; // type:object size:0xF scope:local align:4 data:string +@3559 = .rodata:0x8047AA40; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x8047AA50; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x8047AA60; // type:object size:0xD scope:local align:4 +@3602 = .rodata:0x8047AA70; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x8047AA84; // type:object size:0x13 scope:local align:4 data:string +@3606 = .rodata:0x8047AA98; // type:object size:0xF scope:local align:4 data:string +@3607 = .rodata:0x8047AAA8; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x8047AAB8; // type:object size:0xD scope:local align:4 data:string +@3665 = .rodata:0x8047AAC8; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x8047AAD8; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x8047AAE8; // type:object size:0xB scope:local align:4 +@3670 = .rodata:0x8047AAF4; // type:object size:0xF scope:local align:4 +@3672 = .rodata:0x8047AB04; // type:object size:0x1F scope:local align:4 +@3674 = .rodata:0x8047AB24; // type:object size:0x13 scope:local align:4 +@3676 = .rodata:0x8047AB38; // type:object size:0x13 scope:local align:4 +@3678 = .rodata:0x8047AB4C; // type:object size:0x12 scope:local align:4 +@3679 = .rodata:0x8047AB60; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x8047AB74; // type:object size:0xB scope:local align:4 +@3685 = .rodata:0x8047AB80; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x8047AB90; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8047AB9C; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x8047ABA8; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x8047ABBC; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x8047ABC8; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8047ABD4; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x8047ABE0; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x8047ABEC; // type:object size:0xB scope:local align:4 +@3702 = .rodata:0x8047ABF8; // type:object size:0x11 scope:local align:4 +@3703 = .rodata:0x8047AC0C; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x8047AC1C; // type:object size:0xB scope:local align:4 +@3705 = .rodata:0x8047AC28; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8047AC38; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x8047AC48; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8047AC58; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8047AC68; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x8047AC74; // type:object size:0x9 scope:local align:4 +@3714 = .rodata:0x8047AC80; // type:object size:0x17 scope:local align:4 +@3715 = .rodata:0x8047AC98; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x8047ACA8; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x8047ACB8; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x8047ACC8; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8047ACD8; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x8047ACE8; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8047ACF8; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x8047AD08; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8047AD18; // type:object size:0xF scope:local align:4 +@4032 = .rodata:0x8047AD28; // type:object size:0xA scope:local align:4 data:string +@4486 = .rodata:0x8047AD34; // type:object size:0x11 scope:local align:4 data:string +@3574 = .rodata:0x8047AD48; // type:object size:0x11 scope:local align:4 data:string +@4706 = .rodata:0x8047AD5C; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047AD68; // type:label scope:local +@3524 = .rodata:0x8047AD68; // type:object size:0xA scope:local align:4 data:string +@3525 = .rodata:0x8047AD74; // type:object size:0x23 scope:local align:4 data:string +@3526 = .rodata:0x8047AD98; // type:object size:0x25 scope:local align:4 data:string +@3534 = .rodata:0x8047ADC0; // type:object size:0x17 scope:local align:4 +@3589 = .rodata:0x8047ADD8; // type:object size:0xC scope:local align:4 data:string +@3590 = .rodata:0x8047ADE4; // type:object size:0x9 scope:local align:4 +@3594 = .rodata:0x8047ADF0; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x8047AE00; // type:object size:0xB scope:local align:4 +@3632 = .rodata:0x8047AE0C; // type:object size:0x13 scope:local align:4 data:string +@3633 = .rodata:0x8047AE20; // type:object size:0x13 scope:local align:4 data:string +@3636 = .rodata:0x8047AE34; // type:object size:0xF scope:local align:4 data:string +@3637 = .rodata:0x8047AE44; // type:object size:0xE scope:local align:4 data:string +@3643 = .rodata:0x8047AE54; // type:object size:0xD scope:local align:4 data:string +@3694 = .rodata:0x8047AE64; // type:object size:0xF scope:local align:4 data:string +@3697 = .rodata:0x8047AE74; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x8047AE84; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x8047AE94; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8047AEA0; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x8047AEB0; // type:object size:0x1F scope:local align:4 +@3705 = .rodata:0x8047AED0; // type:object size:0x13 scope:local align:4 +@3707 = .rodata:0x8047AEE4; // type:object size:0x13 scope:local align:4 +@3709 = .rodata:0x8047AEF8; // type:object size:0x12 scope:local align:4 +@3710 = .rodata:0x8047AF0C; // type:object size:0x11 scope:local align:4 +@3715 = .rodata:0x8047AF20; // type:object size:0xB scope:local align:4 +@3716 = .rodata:0x8047AF2C; // type:object size:0xD scope:local align:4 +@3719 = .rodata:0x8047AF3C; // type:object size:0xB scope:local align:4 +@3721 = .rodata:0x8047AF48; // type:object size:0xB scope:local align:4 +@3723 = .rodata:0x8047AF54; // type:object size:0x11 scope:local align:4 +@3725 = .rodata:0x8047AF68; // type:object size:0x9 scope:local align:4 +@3727 = .rodata:0x8047AF74; // type:object size:0x9 scope:local align:4 +@3730 = .rodata:0x8047AF80; // type:object size:0x9 scope:local align:4 +@3732 = .rodata:0x8047AF8C; // type:object size:0x9 scope:local align:4 +@3734 = .rodata:0x8047AF98; // type:object size:0xB scope:local align:4 +@3735 = .rodata:0x8047AFA4; // type:object size:0x11 scope:local align:4 +@3736 = .rodata:0x8047AFB8; // type:object size:0xD scope:local align:4 +@3737 = .rodata:0x8047AFC8; // type:object size:0xB scope:local align:4 +@3738 = .rodata:0x8047AFD4; // type:object size:0xD scope:local align:4 +@3739 = .rodata:0x8047AFE4; // type:object size:0xD scope:local align:4 +@3740 = .rodata:0x8047AFF4; // type:object size:0xF scope:local align:4 +@3741 = .rodata:0x8047B004; // type:object size:0xF scope:local align:4 +@3743 = .rodata:0x8047B014; // type:object size:0x9 scope:local align:4 +@3745 = .rodata:0x8047B020; // type:object size:0x9 scope:local align:4 +@3747 = .rodata:0x8047B02C; // type:object size:0x17 scope:local align:4 +@3748 = .rodata:0x8047B044; // type:object size:0xD scope:local align:4 +@3750 = .rodata:0x8047B054; // type:object size:0xD scope:local align:4 +@3751 = .rodata:0x8047B064; // type:object size:0xF scope:local align:4 +@3752 = .rodata:0x8047B074; // type:object size:0xF scope:local align:4 +@3753 = .rodata:0x8047B084; // type:object size:0xF scope:local align:4 +@3754 = .rodata:0x8047B094; // type:object size:0xF scope:local align:4 +@3755 = .rodata:0x8047B0A4; // type:object size:0xF scope:local align:4 +@3756 = .rodata:0x8047B0B4; // type:object size:0xF scope:local align:4 +@3757 = .rodata:0x8047B0C4; // type:object size:0xF scope:local align:4 +@4016 = .rodata:0x8047B0D8; // type:object size:0x20 scope:local align:4 data:string +@4017 = .rodata:0x8047B0F8; // type:object size:0xE scope:local align:4 data:string +@3286 = .rodata:0x8047B108; // type:object size:0x11 scope:local align:4 data:string +@3287 = .rodata:0x8047B11C; // type:object size:0x14 scope:local align:4 data:string +@3558 = .rodata:0x8047B130; // type:object size:0x20 scope:local align:4 data:string +@3559 = .rodata:0x8047B150; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8047B160; // type:label scope:local +@2732 = .rodata:0x8047B160; // type:object size:0xC scope:local align:4 +@3574 = .rodata:0x8047B16C; // type:object size:0xD scope:local align:4 data:string +@3738 = .rodata:0x8047B17C; // type:object size:0xB scope:local align:4 data:string +@3742 = .rodata:0x8047B188; // type:object size:0x9 scope:local align:4 +@3759 = .rodata:0x8047B194; // type:object size:0xD scope:local align:4 data:string +@3802 = .rodata:0x8047B1A4; // type:object size:0xA scope:local align:4 data:string +@3803 = .rodata:0x8047B1B0; // type:object size:0xF scope:local align:4 +@3806 = .rodata:0x8047B1C0; // type:object size:0xB scope:local align:4 +@3809 = .rodata:0x8047B1CC; // type:object size:0xB scope:local align:4 +@3947 = .rodata:0x8047B1D8; // type:object size:0xA scope:local align:4 data:string +@3948 = .rodata:0x8047B1E4; // type:object size:0xB scope:local align:4 +@3990 = .rodata:0x8047B1F0; // type:object size:0xF scope:local align:4 +@3991 = .rodata:0x8047B200; // type:object size:0xD scope:local align:4 +@3992 = .rodata:0x8047B210; // type:object size:0xD scope:local align:4 +@4048 = .rodata:0x8047B220; // type:object size:0x11 scope:local align:4 data:string +@4049 = .rodata:0x8047B234; // type:object size:0x17 scope:local align:4 data:string +@4458 = .rodata:0x8047B24C; // type:object size:0xD scope:local align:4 +@4459 = .rodata:0x8047B25C; // type:object size:0xB scope:local align:4 +@4460 = .rodata:0x8047B268; // type:object size:0x12 scope:local align:4 +@4589 = .rodata:0x8047B27C; // type:object size:0x2D scope:local align:4 data:string +@5990 = .rodata:0x8047B2AC; // type:object size:0x14 scope:local align:4 data:string +@2724 = .rodata:0x8047B2C0; // type:object size:0x11 scope:local align:4 data:string +@3121 = .rodata:0x8047B2D4; // type:object size:0x10 scope:local align:4 data:4byte +@2429 = .rodata:0x8047B2E8; // type:object size:0x9 scope:local align:4 data:string +@2430 = .rodata:0x8047B2F4; // type:object size:0x9 scope:local align:4 data:string +@2432 = .rodata:0x8047B300; // type:object size:0xD scope:local align:4 data:string +@2433 = .rodata:0x8047B310; // type:object size:0xF scope:local align:4 data:string +@2434 = .rodata:0x8047B320; // type:object size:0xD scope:local align:4 data:string +@2436 = .rodata:0x8047B330; // type:object size:0xB scope:local align:4 data:string +@2437 = .rodata:0x8047B33C; // type:object size:0xD scope:local align:4 data:string +@2441 = .rodata:0x8047B34C; // type:object size:0xA scope:local align:4 data:string +@2442 = .rodata:0x8047B358; // type:object size:0x9 scope:local align:4 data:string +@2443 = .rodata:0x8047B364; // type:object size:0x9 scope:local align:4 data:string +@2449 = .rodata:0x8047B370; // type:object size:0x9 scope:local align:4 data:string +@2454 = .rodata:0x8047B37C; // type:object size:0x9 scope:local align:4 data:string +@2463 = .rodata:0x8047B388; // type:object size:0x9 scope:local align:4 data:string +@2466 = .rodata:0x8047B394; // type:object size:0xA scope:local align:4 data:string +@2473 = .rodata:0x8047B3A0; // type:object size:0xD scope:local align:4 data:string +@2475 = .rodata:0x8047B3B0; // type:object size:0xA scope:local align:4 data:string +@2478 = .rodata:0x8047B3BC; // type:object size:0xB scope:local align:4 data:string +@2480 = .rodata:0x8047B3C8; // type:object size:0xB scope:local align:4 data:string +@2481 = .rodata:0x8047B3D4; // type:object size:0xB scope:local align:4 data:string +@2482 = .rodata:0x8047B3E0; // type:object size:0xA scope:local align:4 data:string +@2483 = .rodata:0x8047B3EC; // type:object size:0xB scope:local align:4 data:string +@2486 = .rodata:0x8047B3F8; // type:object size:0xA scope:local align:4 data:string +@2487 = .rodata:0x8047B404; // type:object size:0xC scope:local align:4 data:string +@2488 = .rodata:0x8047B410; // type:object size:0x9 scope:local align:4 data:string +@2493 = .rodata:0x8047B41C; // type:object size:0xD scope:local align:4 data:string +@2495 = .rodata:0x8047B42C; // type:object size:0xC scope:local align:4 data:string +@2497 = .rodata:0x8047B438; // type:object size:0xC scope:local align:4 data:string +@2498 = .rodata:0x8047B444; // type:object size:0x9 scope:local align:4 data:string +@2499 = .rodata:0x8047B450; // type:object size:0x9 scope:local align:4 data:string +@2501 = .rodata:0x8047B45C; // type:object size:0xA scope:local align:4 data:string +@2502 = .rodata:0x8047B468; // type:object size:0xC scope:local align:4 data:string +@2504 = .rodata:0x8047B474; // type:object size:0xC scope:local align:4 data:string +@2505 = .rodata:0x8047B480; // type:object size:0xA scope:local align:4 data:string +@2507 = .rodata:0x8047B48C; // type:object size:0xB scope:local align:4 data:string +@2509 = .rodata:0x8047B498; // type:object size:0x9 scope:local align:4 data:string +@2512 = .rodata:0x8047B4A4; // type:object size:0xC scope:local align:4 data:string +@2514 = .rodata:0x8047B4B0; // type:object size:0xD scope:local align:4 data:string +@2515 = .rodata:0x8047B4C0; // type:object size:0xB scope:local align:4 data:string +@2516 = .rodata:0x8047B4CC; // type:object size:0xC scope:local align:4 data:string +@2518 = .rodata:0x8047B4D8; // type:object size:0xC scope:local align:4 data:string +@2519 = .rodata:0x8047B4E4; // type:object size:0xD scope:local align:4 data:string +@2520 = .rodata:0x8047B4F4; // type:object size:0x9 scope:local align:4 data:string +@2521 = .rodata:0x8047B500; // type:object size:0xE scope:local align:4 data:string +@2522 = .rodata:0x8047B510; // type:object size:0xC scope:local align:4 data:string +@2523 = .rodata:0x8047B51C; // type:object size:0xC scope:local align:4 data:string +@2524 = .rodata:0x8047B528; // type:object size:0xB scope:local align:4 data:string +@2525 = .rodata:0x8047B534; // type:object size:0xC scope:local align:4 data:string +@2527 = .rodata:0x8047B540; // type:object size:0xC scope:local align:4 data:string +@2528 = .rodata:0x8047B54C; // type:object size:0x9 scope:local align:4 data:string +@2530 = .rodata:0x8047B558; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047B568; // type:label scope:local +@3333 = .rodata:0x8047B568; // type:object size:0xD scope:local align:4 data:string +@3334 = .rodata:0x8047B578; // type:object size:0xA scope:local align:4 data:string +@3387 = .rodata:0x8047B584; // type:object size:0xE scope:local align:4 data:string +@3391 = .rodata:0x8047B594; // type:object size:0xC scope:local align:4 data:string +@3392 = .rodata:0x8047B5A0; // type:object size:0xA scope:local align:4 data:string +@3426 = .rodata:0x8047B5AC; // type:object size:0x9 scope:local align:4 data:string +@3571 = .rodata:0x8047B5B8; // type:object size:0xF scope:local align:4 +@3572 = .rodata:0x8047B5C8; // type:object size:0xD scope:local align:4 +@3679 = .rodata:0x8047B5D8; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047B5F0; // type:label scope:local +@3551 = .rodata:0x8047B5F0; // type:object size:0x9 scope:local align:4 data:string +@3581 = .rodata:0x8047B5FC; // type:object size:0xC scope:local align:4 data:string +@3582 = .rodata:0x8047B608; // type:object size:0xB scope:local align:4 +@3599 = .rodata:0x8047B614; // type:object size:0x9 scope:local align:4 +@3855 = .rodata:0x8047B620; // type:object size:0xA scope:local align:4 data:string +@3857 = .rodata:0x8047B62C; // type:object size:0x10 scope:local align:4 data:string +@3858 = .rodata:0x8047B63C; // type:object size:0x9 scope:local align:4 data:string +@3859 = .rodata:0x8047B648; // type:object size:0xF scope:local align:4 data:string +@3860 = .rodata:0x8047B658; // type:object size:0x11 scope:local align:4 data:string +@3861 = .rodata:0x8047B66C; // type:object size:0xE scope:local align:4 data:string +@3862 = .rodata:0x8047B67C; // type:object size:0xB scope:local align:4 data:string +@3863 = .rodata:0x8047B688; // type:object size:0xF scope:local align:4 data:string +@4374 = .rodata:0x8047B698; // type:object size:0xF scope:local align:4 +@4375 = .rodata:0x8047B6A8; // type:object size:0xF scope:local align:4 +@4376 = .rodata:0x8047B6B8; // type:object size:0xF scope:local align:4 +@4377 = .rodata:0x8047B6C8; // type:object size:0xD scope:local align:4 +@4378 = .rodata:0x8047B6D8; // type:object size:0xD scope:local align:4 +@4379 = .rodata:0x8047B6E8; // type:object size:0xD scope:local align:4 +@4380 = .rodata:0x8047B6F8; // type:object size:0xD scope:local align:4 +@4381 = .rodata:0x8047B708; // type:object size:0xD scope:local align:4 +@4382 = .rodata:0x8047B718; // type:object size:0xD scope:local align:4 +@4383 = .rodata:0x8047B728; // type:object size:0xD scope:local align:4 +@4384 = .rodata:0x8047B738; // type:object size:0xD scope:local align:4 +@4385 = .rodata:0x8047B748; // type:object size:0xB scope:local align:4 +@4387 = .rodata:0x8047B754; // type:object size:0xD scope:local align:4 +@4388 = .rodata:0x8047B764; // type:object size:0xB scope:local align:4 +@4389 = .rodata:0x8047B770; // type:object size:0xB scope:local align:4 +@4390 = .rodata:0x8047B77C; // type:object size:0xB scope:local align:4 +@4391 = .rodata:0x8047B788; // type:object size:0xB scope:local align:4 +@4392 = .rodata:0x8047B794; // type:object size:0x9 scope:local align:4 +@4393 = .rodata:0x8047B7A0; // type:object size:0xB scope:local align:4 +@4394 = .rodata:0x8047B7AC; // type:object size:0xB scope:local align:4 +@4396 = .rodata:0x8047B7B8; // type:object size:0x9 scope:local align:4 +@4397 = .rodata:0x8047B7C4; // type:object size:0xB scope:local align:4 +@4398 = .rodata:0x8047B7D0; // type:object size:0xD scope:local align:4 +@4399 = .rodata:0x8047B7E0; // type:object size:0x11 scope:local align:4 +@4402 = .rodata:0x8047B7F4; // type:object size:0xB scope:local align:4 +@4403 = .rodata:0x8047B800; // type:object size:0x11 scope:local align:4 +@4404 = .rodata:0x8047B814; // type:object size:0x13 scope:local align:4 +@4405 = .rodata:0x8047B828; // type:object size:0x11 scope:local align:4 +@4406 = .rodata:0x8047B83C; // type:object size:0xB scope:local align:4 +@4407 = .rodata:0x8047B848; // type:object size:0xF scope:local align:4 +@4408 = .rodata:0x8047B858; // type:object size:0xB scope:local align:4 +@4409 = .rodata:0x8047B864; // type:object size:0xF scope:local align:4 +@4410 = .rodata:0x8047B874; // type:object size:0x9 scope:local align:4 +@4411 = .rodata:0x8047B880; // type:object size:0xD scope:local align:4 +@4412 = .rodata:0x8047B890; // type:object size:0xB scope:local align:4 +@4413 = .rodata:0x8047B89C; // type:object size:0xD scope:local align:4 +@4414 = .rodata:0x8047B8AC; // type:object size:0xD scope:local align:4 +@4415 = .rodata:0x8047B8BC; // type:object size:0x9 scope:local align:4 +@4416 = .rodata:0x8047B8C8; // type:object size:0x9 scope:local align:4 +@4418 = .rodata:0x8047B8D4; // type:object size:0xB scope:local align:4 +@4419 = .rodata:0x8047B8E0; // type:object size:0xD scope:local align:4 +@4420 = .rodata:0x8047B8F0; // type:object size:0x15 scope:local align:4 +@4421 = .rodata:0x8047B908; // type:object size:0x19 scope:local align:4 +@4422 = .rodata:0x8047B924; // type:object size:0x15 scope:local align:4 +@4423 = .rodata:0x8047B93C; // type:object size:0x19 scope:local align:4 +@4424 = .rodata:0x8047B958; // type:object size:0xB scope:local align:4 +@4425 = .rodata:0x8047B964; // type:object size:0xB scope:local align:4 +@4427 = .rodata:0x8047B970; // type:object size:0xD scope:local align:4 +@4428 = .rodata:0x8047B980; // type:object size:0xD scope:local align:4 +@4429 = .rodata:0x8047B990; // type:object size:0xD scope:local align:4 +@4430 = .rodata:0x8047B9A0; // type:object size:0xD scope:local align:4 +@4432 = .rodata:0x8047B9B0; // type:object size:0x9 scope:local align:4 +@4433 = .rodata:0x8047B9BC; // type:object size:0x11 scope:local align:4 +@4434 = .rodata:0x8047B9D0; // type:object size:0x9 scope:local align:4 +@4435 = .rodata:0x8047B9DC; // type:object size:0x13 scope:local align:4 +@4436 = .rodata:0x8047B9F0; // type:object size:0x9 scope:local align:4 +@4437 = .rodata:0x8047B9FC; // type:object size:0xF scope:local align:4 +@4438 = .rodata:0x8047BA0C; // type:object size:0xF scope:local align:4 +@4439 = .rodata:0x8047BA1C; // type:object size:0xF scope:local align:4 +@4440 = .rodata:0x8047BA2C; // type:object size:0xF scope:local align:4 +@4441 = .rodata:0x8047BA3C; // type:object size:0x11 scope:local align:4 +@4442 = .rodata:0x8047BA50; // type:object size:0x11 scope:local align:4 +@4443 = .rodata:0x8047BA64; // type:object size:0x11 scope:local align:4 +@4445 = .rodata:0x8047BA78; // type:object size:0x9 scope:local align:4 +@4446 = .rodata:0x8047BA84; // type:object size:0x9 scope:local align:4 +@4447 = .rodata:0x8047BA90; // type:object size:0x11 scope:local align:4 +@4448 = .rodata:0x8047BAA4; // type:object size:0x11 scope:local align:4 +@4449 = .rodata:0x8047BAB8; // type:object size:0xB scope:local align:4 +@4450 = .rodata:0x8047BAC4; // type:object size:0x11 scope:local align:4 +@4451 = .rodata:0x8047BAD8; // type:object size:0xF scope:local align:4 +@4452 = .rodata:0x8047BAE8; // type:object size:0x9 scope:local align:4 +@4453 = .rodata:0x8047BAF4; // type:object size:0xF scope:local align:4 +@4454 = .rodata:0x8047BB04; // type:object size:0xB scope:local align:4 +@4455 = .rodata:0x8047BB10; // type:object size:0x11 scope:local align:4 +@4456 = .rodata:0x8047BB24; // type:object size:0x13 scope:local align:4 +@4457 = .rodata:0x8047BB38; // type:object size:0x11 scope:local align:4 +@4458 = .rodata:0x8047BB4C; // type:object size:0xF scope:local align:4 +@4459 = .rodata:0x8047BB5C; // type:object size:0x11 scope:local align:4 +@4460 = .rodata:0x8047BB70; // type:object size:0x9 scope:local align:4 +@4461 = .rodata:0x8047BB7C; // type:object size:0xD scope:local align:4 +@4462 = .rodata:0x8047BB8C; // type:object size:0x11 scope:local align:4 +@4463 = .rodata:0x8047BBA0; // type:object size:0x9 scope:local align:4 +@4464 = .rodata:0x8047BBAC; // type:object size:0xD scope:local align:4 +@4466 = .rodata:0x8047BBBC; // type:object size:0xD scope:local align:4 +@4467 = .rodata:0x8047BBCC; // type:object size:0xB scope:local align:4 +@4571 = .rodata:0x8047BBD8; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8047BBE8; // type:label scope:local +@2674 = .rodata:0x8047BBE8; // type:object size:0x11 scope:local align:4 +@2693 = .rodata:0x8047BBFC; // type:object size:0xD scope:local align:4 data:string +@2694 = .rodata:0x8047BC0C; // type:object size:0xF scope:local align:4 +@2698 = .rodata:0x8047BC1C; // type:object size:0xF scope:local align:4 +@2700 = .rodata:0x8047BC2C; // type:object size:0xF scope:local align:4 +@2703 = .rodata:0x8047BC3C; // type:object size:0xB scope:local align:4 +@2705 = .rodata:0x8047BC48; // type:object size:0xB scope:local align:4 +@2706 = .rodata:0x8047BC54; // type:object size:0xB scope:local align:4 +@2708 = .rodata:0x8047BC60; // type:object size:0xD scope:local align:4 +@2710 = .rodata:0x8047BC70; // type:object size:0x11 scope:local align:4 +@2712 = .rodata:0x8047BC84; // type:object size:0x11 scope:local align:4 +@2714 = .rodata:0x8047BC98; // type:object size:0xD scope:local align:4 +@2715 = .rodata:0x8047BCA8; // type:object size:0xB scope:local align:4 +@2717 = .rodata:0x8047BCB4; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8047BCC8; // type:label scope:local +@3339 = .rodata:0x8047BCC8; // type:object size:0xB scope:local align:4 +@3375 = .rodata:0x8047BCD4; // type:object size:0xA scope:local align:4 data:string +@3376 = .rodata:0x8047BCE0; // type:object size:0xC scope:local align:4 data:string +@3377 = .rodata:0x8047BCEC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8047BCF8; // type:label scope:local +@3303 = .rodata:0x8047BCF8; // type:object size:0x14 scope:local align:4 data:string +@3304 = .rodata:0x8047BD0C; // type:object size:0x14 scope:local align:4 data:string +@3360 = .rodata:0x8047BD20; // type:object size:0x1E scope:local align:4 data:string +@3361 = .rodata:0x8047BD40; // type:object size:0x1C scope:local align:4 data:string +@3362 = .rodata:0x8047BD5C; // type:object size:0x1E scope:local align:4 data:string +@3363 = .rodata:0x8047BD7C; // type:object size:0x21 scope:local align:4 data:string +@3811 = .rodata:0x8047BDA0; // type:object size:0x9 scope:local align:4 data:string +@3812 = .rodata:0x8047BDAC; // type:object size:0x9 scope:local align:4 data:string +@3866 = .rodata:0x8047BDB8; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047BDD0; // type:label scope:local +@3588 = .rodata:0x8047BDD0; // type:object size:0xA scope:local align:4 data:string +@3688 = .rodata:0x8047BDDC; // type:object size:0x14 scope:local align:4 data:string +@3689 = .rodata:0x8047BDF0; // type:object size:0xD scope:local align:4 data:string +@3690 = .rodata:0x8047BE00; // type:object size:0xD scope:local align:4 data:string +@3796 = .rodata:0x8047BE10; // type:object size:0xD scope:local align:4 data:string +@3562 = .rodata:0x8047BE20; // type:object size:0x1B scope:local align:4 +@3572 = .rodata:0x8047BE3C; // type:object size:0xC scope:local align:4 data:4byte +@3589 = .rodata:0x8047BE48; // type:object size:0xC scope:local align:4 data:4byte +@3634 = .rodata:0x8047BE54; // type:object size:0xA scope:local align:4 data:string +@3525 = .rodata:0x8047BE60; // type:object size:0x27 scope:local align:4 data:string +@3526 = .rodata:0x8047BE88; // type:object size:0x29 scope:local align:4 data:string +@3534 = .rodata:0x8047BEB4; // type:object size:0x17 scope:local align:4 +@3793 = .rodata:0x8047BED0; // type:object size:0x29 scope:local align:4 data:string +@3794 = .rodata:0x8047BEFC; // type:object size:0x2B scope:local align:4 data:string +@3802 = .rodata:0x8047BF28; // type:object size:0x17 scope:local align:4 +@3886 = .rodata:0x8047BF40; // type:object size:0x11 scope:local align:4 data:string +@3887 = .rodata:0x8047BF54; // type:object size:0x9 scope:local align:4 data:string +@3524 = .rodata:0x8047BF60; // type:object size:0x32 scope:local align:4 data:string +@3532 = .rodata:0x8047BF94; // type:object size:0x19 scope:local align:4 +@3524 = .rodata:0x8047BFB0; // type:object size:0x34 scope:local align:4 data:string +@3532 = .rodata:0x8047BFE4; // type:object size:0x19 scope:local align:4 +@3561 = .rodata:0x8047C000; // type:object size:0x1D scope:local align:4 +@3571 = .rodata:0x8047C020; // type:object size:0xC scope:local align:4 data:4byte +@3588 = .rodata:0x8047C02C; // type:object size:0xC scope:local align:4 data:4byte +@3632 = .rodata:0x8047C038; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C048; // type:label scope:local +@2437 = .rodata:0x8047C048; // type:object size:0xA scope:local align:4 data:string +@2438 = .rodata:0x8047C054; // type:object size:0xD scope:local align:4 data:string +@2439 = .rodata:0x8047C064; // type:object size:0xC scope:local align:4 data:string +@2440 = .rodata:0x8047C070; // type:object size:0xB scope:local align:4 data:string +@2441 = .rodata:0x8047C07C; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C088; // type:label scope:local +@3328 = .rodata:0x8047C088; // type:object size:0x11 scope:local align:4 data:string +@3565 = .rodata:0x8047C09C; // type:object size:0x21 scope:local align:4 data:string +@3566 = .rodata:0x8047C0C0; // type:object size:0x21 scope:local align:4 data:string +@3583 = .rodata:0x8047C0E4; // type:object size:0x20 scope:local align:4 data:string +@3613 = .rodata:0x8047C104; // type:object size:0xD scope:local align:4 data:string +@3614 = .rodata:0x8047C114; // type:object size:0x9 scope:local align:4 data:string +@3648 = .rodata:0x8047C120; // type:object size:0x11 scope:local align:4 data:string +@3776 = .rodata:0x8047C134; // type:object size:0x11 scope:local align:4 data:string +@3788 = .rodata:0x8047C148; // type:object size:0x16 scope:local align:4 data:string +@3803 = .rodata:0x8047C160; // type:object size:0xA scope:local align:4 data:string +@3804 = .rodata:0x8047C16C; // type:object size:0xA scope:local align:4 data:string +@3805 = .rodata:0x8047C178; // type:object size:0x23 scope:local align:4 data:string +@3813 = .rodata:0x8047C19C; // type:object size:0x19 scope:local align:4 data:string +@3829 = .rodata:0x8047C1B8; // type:object size:0x18 scope:local align:4 data:string +@3830 = .rodata:0x8047C1D0; // type:object size:0x14 scope:local align:4 data:string +@3860 = .rodata:0x8047C1E4; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C1F8; // type:label scope:local +@3273 = .rodata:0x8047C1F8; // type:object size:0xC scope:local align:4 +@3670 = .rodata:0x8047C204; // type:object size:0x18 scope:local align:4 data:string +@3671 = .rodata:0x8047C21C; // type:object size:0xF scope:local align:4 data:string +@3742 = .rodata:0x8047C22C; // type:object size:0xE scope:local align:4 data:string +@3743 = .rodata:0x8047C23C; // type:object size:0xD scope:local align:4 +@3747 = .rodata:0x8047C24C; // type:object size:0xD scope:local align:4 +@3748 = .rodata:0x8047C25C; // type:object size:0xD scope:local align:4 +@3749 = .rodata:0x8047C26C; // type:object size:0xB scope:local align:4 +@3768 = .rodata:0x8047C278; // type:object size:0xF scope:local align:4 +@3804 = .rodata:0x8047C288; // type:object size:0xB scope:local align:4 data:string +@3808 = .rodata:0x8047C294; // type:object size:0x9 scope:local align:4 +@3826 = .rodata:0x8047C2A0; // type:object size:0xC scope:local align:4 data:string +@3830 = .rodata:0x8047C2AC; // type:object size:0xD scope:local align:4 +@3832 = .rodata:0x8047C2BC; // type:object size:0xD scope:local align:4 +@3833 = .rodata:0x8047C2CC; // type:object size:0xD scope:local align:4 +@3835 = .rodata:0x8047C2DC; // type:object size:0xF scope:local align:4 +@3837 = .rodata:0x8047C2EC; // type:object size:0xF scope:local align:4 +@3838 = .rodata:0x8047C2FC; // type:object size:0xF scope:local align:4 +@3839 = .rodata:0x8047C30C; // type:object size:0xD scope:local align:4 +@3842 = .rodata:0x8047C31C; // type:object size:0xD scope:local align:4 +@3844 = .rodata:0x8047C32C; // type:object size:0xD scope:local align:4 +@3845 = .rodata:0x8047C33C; // type:object size:0xD scope:local align:4 +@3906 = .rodata:0x8047C34C; // type:object size:0xD scope:local align:4 +@3907 = .rodata:0x8047C35C; // type:object size:0xD scope:local align:4 +@3908 = .rodata:0x8047C36C; // type:object size:0xD scope:local align:4 +@3945 = .rodata:0x8047C37C; // type:object size:0x9 scope:local align:4 +@4023 = .rodata:0x8047C388; // type:object size:0x9 scope:local align:4 +@4049 = .rodata:0x8047C394; // type:object size:0x9 scope:local align:4 data:string +@4050 = .rodata:0x8047C3A0; // type:object size:0xC scope:local align:4 data:string +@4069 = .rodata:0x8047C3AC; // type:object size:0x11 scope:local align:4 data:string +@4070 = .rodata:0x8047C3C0; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C3D0; // type:label scope:local +@2732 = .rodata:0x8047C3D0; // type:object size:0xC scope:local align:4 +@3040 = .rodata:0x8047C3DC; // type:object size:0xB scope:local align:4 +@3043 = .rodata:0x8047C3E8; // type:object size:0xD scope:local align:4 +@3046 = .rodata:0x8047C3F8; // type:object size:0x12 scope:local align:4 +@3025 = .rodata:0x8047C410; // type:object size:0xA scope:local align:4 data:string +@3070 = .rodata:0x8047C41C; // type:object size:0x13 scope:local align:4 data:string +@3071 = .rodata:0x8047C430; // type:object size:0x9 scope:local align:4 data:string +@3245 = .rodata:0x8047C440; // type:object size:0xD scope:local align:4 data:string +@3246 = .rodata:0x8047C450; // type:object size:0x19 scope:local align:4 data:string +@3443 = .rodata:0x8047C46C; // type:object size:0x9 scope:local align:4 data:string +@3559 = .rodata:0x8047C478; // type:object size:0x27 scope:local align:4 data:string +@4780 = .rodata:0x8047C4A0; // type:object size:0x14 scope:local align:4 data:string +@5915 = .rodata:0x8047C4B4; // type:object size:0x19 scope:local align:4 data:string +@5989 = .rodata:0x8047C4D0; // type:object size:0x9 scope:local align:4 data:string +@6189 = .rodata:0x8047C4DC; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C4E8; // type:label scope:local +@2650 = .rodata:0x8047C4E8; // type:object size:0x9 scope:local align:4 data:string +@2685 = .rodata:0x8047C4F4; // type:object size:0xF scope:local align:4 +@2686 = .rodata:0x8047C504; // type:object size:0x9 scope:local align:4 data:string +@2692 = .rodata:0x8047C510; // type:object size:0x10 scope:local align:4 data:string +@2694 = .rodata:0x8047C520; // type:object size:0x10 scope:local align:4 +@2695 = .rodata:0x8047C530; // type:object size:0xB scope:local align:4 data:string +@2699 = .rodata:0x8047C53C; // type:object size:0xC scope:local align:4 +@2700 = .rodata:0x8047C548; // type:object size:0x9 scope:local align:4 +@2701 = .rodata:0x8047C554; // type:object size:0xB scope:local align:4 +@2704 = .rodata:0x8047C560; // type:object size:0x13 scope:local align:4 +@2705 = .rodata:0x8047C574; // type:object size:0x14 scope:local align:4 +@3816 = .rodata:0x8047C588; // type:object size:0xD scope:local align:4 data:string +@3817 = .rodata:0x8047C598; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C5A8; // type:label scope:local +@3865 = .rodata:0x8047C5A8; // type:object size:0xC scope:local align:4 +@3901 = .rodata:0x8047C5B4; // type:object size:0x9 scope:local align:4 data:string +@3974 = .rodata:0x8047C5C0; // type:object size:0xD scope:local align:4 data:string +@3975 = .rodata:0x8047C5D0; // type:object size:0x9 scope:local align:4 data:string +@4297 = .rodata:0x8047C5DC; // type:object size:0xB scope:local align:4 data:string +@5415 = .rodata:0x8047C5E8; // type:object size:0xF scope:local align:4 data:string +@5416 = .rodata:0x8047C5F8; // type:object size:0xA scope:local align:4 data:string +@5607 = .rodata:0x8047C604; // type:object size:0x12 scope:local align:4 data:string +@5912 = .rodata:0x8047C618; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C628; // type:label scope:local +@2721 = .rodata:0x8047C628; // type:object size:0xC scope:local align:4 +@4412 = .rodata:0x8047C634; // type:object size:0x9 scope:local align:4 data:string +@4413 = .rodata:0x8047C640; // type:object size:0x1C scope:local align:4 +@4414 = .rodata:0x8047C65C; // type:object size:0xA scope:local align:4 data:string +@5854 = .rodata:0x8047C668; // type:object size:0x14 scope:local align:4 data:string +@5855 = .rodata:0x8047C67C; // type:object size:0x18 scope:local align:4 data:string +@5889 = .rodata:0x8047C694; // type:object size:0x9 scope:local align:4 data:string +@6901 = .rodata:0x8047C6A0; // type:object size:0x1E scope:local align:4 data:string +@6902 = .rodata:0x8047C6C0; // type:object size:0x1E scope:local align:4 data:string +@8379 = .rodata:0x8047C6E0; // type:object size:0xB scope:local align:4 data:string +@8381 = .rodata:0x8047C6EC; // type:object size:0x12 scope:local align:4 data:string +@8383 = .rodata:0x8047C700; // type:object size:0xA scope:local align:4 data:string +@8398 = .rodata:0x8047C70C; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C720; // type:label scope:local +@2735 = .rodata:0x8047C720; // type:object size:0xC scope:local align:4 +@3999 = .rodata:0x8047C72C; // type:object size:0xA scope:local align:4 data:string +@4284 = .rodata:0x8047C738; // type:object size:0xA scope:local align:4 data:string +@4285 = .rodata:0x8047C744; // type:object size:0xA scope:local align:4 data:string +@4286 = .rodata:0x8047C750; // type:object size:0x9 scope:local align:4 data:string +@4287 = .rodata:0x8047C75C; // type:object size:0x16 scope:local align:4 data:string +@4288 = .rodata:0x8047C774; // type:object size:0x16 scope:local align:4 data:string +@4289 = .rodata:0x8047C78C; // type:object size:0xC scope:local align:4 data:string +@4290 = .rodata:0x8047C798; // type:object size:0x11 scope:local align:4 data:string +@5351 = .rodata:0x8047C7AC; // type:object size:0x9 scope:local align:4 data:string +@5625 = .rodata:0x8047C7B8; // type:object size:0xF scope:local align:4 data:string +@6139 = .rodata:0x8047C7C8; // type:object size:0x12 scope:local align:4 data:string +@6141 = .rodata:0x8047C7DC; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047C7E8; // type:label scope:local +@2741 = .rodata:0x8047C7E8; // type:object size:0xC scope:local align:4 +@4422 = .rodata:0x8047C7F4; // type:object size:0x10 scope:local align:4 data:string +@4525 = .rodata:0x8047C804; // type:object size:0x14 scope:local align:4 data:string +@4526 = .rodata:0x8047C818; // type:object size:0xE scope:local align:4 +@4536 = .rodata:0x8047C828; // type:object size:0x21 scope:local align:4 +@4558 = .rodata:0x8047C84C; // type:object size:0x9 scope:local align:4 data:string +@4559 = .rodata:0x8047C858; // type:object size:0x9 scope:local align:4 data:string +@4584 = .rodata:0x8047C864; // type:object size:0xD scope:local align:4 data:string +@4668 = .rodata:0x8047C874; // type:object size:0xA scope:local align:4 data:string +@4669 = .rodata:0x8047C880; // type:object size:0xB scope:local align:4 data:string +@4670 = .rodata:0x8047C88C; // type:object size:0x16 scope:local align:4 data:string +@4671 = .rodata:0x8047C8A4; // type:object size:0x19 scope:local align:4 data:string +@4672 = .rodata:0x8047C8C0; // type:object size:0x1D scope:local align:4 data:string +@4673 = .rodata:0x8047C8E0; // type:object size:0x19 scope:local align:4 data:string +@4674 = .rodata:0x8047C8FC; // type:object size:0x1B scope:local align:4 data:string +@4675 = .rodata:0x8047C918; // type:object size:0x1B scope:local align:4 data:string +@4801 = .rodata:0x8047C934; // type:object size:0x9 scope:local align:4 data:string +@4832 = .rodata:0x8047C940; // type:object size:0x9 scope:local align:4 data:string +@4955 = .rodata:0x8047C94C; // type:object size:0xE scope:local align:4 data:string +@4960 = .rodata:0x8047C95C; // type:object size:0xB scope:local align:4 data:string +@4961 = .rodata:0x8047C968; // type:object size:0xB scope:local align:4 data:string +@5535 = .rodata:0x8047C974; // type:object size:0x13 scope:local align:4 data:string +@5536 = .rodata:0x8047C988; // type:object size:0x10 scope:local align:4 data:string +@5537 = .rodata:0x8047C998; // type:object size:0x11 scope:local align:4 data:string +@5538 = .rodata:0x8047C9AC; // type:object size:0x10 scope:local align:4 +@5539 = .rodata:0x8047C9BC; // type:object size:0xF scope:local align:4 data:string +@5540 = .rodata:0x8047C9CC; // type:object size:0x12 scope:local align:4 data:string +@5541 = .rodata:0x8047C9E0; // type:object size:0x12 scope:local align:4 data:string +@5542 = .rodata:0x8047C9F4; // type:object size:0xF scope:local align:4 data:string +@5543 = .rodata:0x8047CA04; // type:object size:0xE scope:local align:4 data:string +@5544 = .rodata:0x8047CA14; // type:object size:0xB scope:local align:4 data:string +@5545 = .rodata:0x8047CA20; // type:object size:0xE scope:local align:4 data:string +@5555 = .rodata:0x8047CA30; // type:object size:0xC scope:local align:4 data:string +@5556 = .rodata:0x8047CA3C; // type:object size:0xF scope:local align:4 data:string +@5744 = .rodata:0x8047CA4C; // type:object size:0xB scope:local align:4 data:string +@5745 = .rodata:0x8047CA58; // type:object size:0xF scope:local align:4 data:string +@6327 = .rodata:0x8047CA68; // type:object size:0x17 scope:local align:4 +@6467 = .rodata:0x8047CA80; // type:object size:0x12 scope:local align:4 data:string +@6494 = .rodata:0x8047CA94; // type:object size:0x10 scope:local align:4 +@6533 = .rodata:0x8047CAA4; // type:object size:0xB scope:local align:4 data:string +@6552 = .rodata:0x8047CAB0; // type:object size:0x9 scope:local align:4 data:string +@6553 = .rodata:0x8047CABC; // type:object size:0x9 scope:local align:4 data:string +@6917 = .rodata:0x8047CAC8; // type:object size:0xF scope:local align:4 data:string +@6918 = .rodata:0x8047CAD8; // type:object size:0x14 scope:local align:4 data:string +@6919 = .rodata:0x8047CAEC; // type:object size:0xA scope:local align:4 data:string +@6920 = .rodata:0x8047CAF8; // type:object size:0x1D scope:local align:4 data:string +@6921 = .rodata:0x8047CB18; // type:object size:0x25 scope:local align:4 data:string +@6922 = .rodata:0x8047CB40; // type:object size:0xA scope:local align:4 data:string +@6931 = .rodata:0x8047CB4C; // type:object size:0x19 scope:local align:4 data:string +@7280 = .rodata:0x8047CB68; // type:object size:0xB scope:local align:4 data:string +@7281 = .rodata:0x8047CB74; // type:object size:0x11 scope:local align:4 data:string +@7283 = .rodata:0x8047CB88; // type:object size:0x11 scope:local align:4 data:string +@7284 = .rodata:0x8047CB9C; // type:object size:0x20 scope:local align:4 data:string +@7286 = .rodata:0x8047CBBC; // type:object size:0xF scope:local align:4 data:string +@7291 = .rodata:0x8047CBCC; // type:object size:0xC scope:local align:4 data:string +@7293 = .rodata:0x8047CBD8; // type:object size:0xF scope:local align:4 data:string +@7298 = .rodata:0x8047CBE8; // type:object size:0xE scope:local align:4 data:string +@7305 = .rodata:0x8047CBF8; // type:object size:0xD scope:local align:4 data:string +@7396 = .rodata:0x8047CC08; // type:object size:0x12 scope:local align:4 data:string +@7398 = .rodata:0x8047CC1C; // type:object size:0xA scope:local align:4 data:string +@7541 = .rodata:0x8047CC28; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047CC38; // type:label scope:local +@2741 = .rodata:0x8047CC38; // type:object size:0xC scope:local align:4 +@4396 = .rodata:0x8047CC44; // type:object size:0x12 scope:local align:4 data:string +@4465 = .rodata:0x8047CC58; // type:object size:0x9 scope:local align:4 data:string +@4466 = .rodata:0x8047CC64; // type:object size:0x9 scope:local align:4 data:string +@4467 = .rodata:0x8047CC70; // type:object size:0xA scope:local align:4 data:string +@4468 = .rodata:0x8047CC7C; // type:object size:0x24 scope:local align:4 data:string +@4469 = .rodata:0x8047CCA0; // type:object size:0x13 scope:local align:4 data:string +@4688 = .rodata:0x8047CCB4; // type:object size:0xB scope:local align:4 data:string +@4787 = .rodata:0x8047CCC0; // type:object size:0xC scope:local align:4 data:string +@4788 = .rodata:0x8047CCCC; // type:object size:0x9 scope:local align:4 data:string +@4789 = .rodata:0x8047CCD8; // type:object size:0xE scope:local align:4 data:string +@4899 = .rodata:0x8047CCE8; // type:object size:0x16 scope:local align:4 data:string +@5061 = .rodata:0x8047CD00; // type:object size:0x23 scope:local align:4 data:string +@5138 = .rodata:0x8047CD24; // type:object size:0x10 scope:local align:4 data:string +@5139 = .rodata:0x8047CD34; // type:object size:0x10 scope:local align:4 data:string +@5140 = .rodata:0x8047CD44; // type:object size:0x10 scope:local align:4 data:string +@5227 = .rodata:0x8047CD54; // type:object size:0x13 scope:local align:4 data:string +@5228 = .rodata:0x8047CD68; // type:object size:0xD scope:local align:4 data:string +@5229 = .rodata:0x8047CD78; // type:object size:0x16 scope:local align:4 data:string +@5230 = .rodata:0x8047CD90; // type:object size:0x14 scope:local align:4 data:string +@5231 = .rodata:0x8047CDA4; // type:object size:0x15 scope:local align:4 data:string +@5232 = .rodata:0x8047CDBC; // type:object size:0x15 scope:local align:4 data:string +@5433 = .rodata:0x8047CDD4; // type:object size:0xC scope:local align:4 data:string +@5466 = .rodata:0x8047CDE0; // type:object size:0xD scope:local align:4 data:string +@5507 = .rodata:0x8047CDF0; // type:object size:0xC scope:local align:4 data:string +@5601 = .rodata:0x8047CDFC; // type:object size:0x9 scope:local align:4 data:string +@5603 = .rodata:0x8047CE08; // type:object size:0xC scope:local align:4 data:string +@5604 = .rodata:0x8047CE14; // type:object size:0x9 scope:local align:4 data:string +@5606 = .rodata:0x8047CE20; // type:object size:0xC scope:local align:4 data:string +@5607 = .rodata:0x8047CE2C; // type:object size:0x9 scope:local align:4 data:string +@5751 = .rodata:0x8047CE38; // type:object size:0x12 scope:local align:4 data:string +@5968 = .rodata:0x8047CE4C; // type:object size:0xB scope:local align:4 data:string +@6324 = .rodata:0x8047CE58; // type:object size:0xC scope:local align:4 data:string +@6335 = .rodata:0x8047CE64; // type:object size:0xC scope:local align:4 data:string +@6337 = .rodata:0x8047CE70; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047CE80; // type:label scope:local +@3394 = .rodata:0x8047CE80; // type:object size:0xC scope:local align:4 data:string +@4260 = .rodata:0x8047CE8C; // type:object size:0x10 scope:local align:4 data:string +@4261 = .rodata:0x8047CE9C; // type:object size:0x9 scope:local align:4 data:string +@4392 = .rodata:0x8047CEA8; // type:object size:0x14 scope:local align:4 data:string +@4725 = .rodata:0x8047CEBC; // type:object size:0x2D scope:local align:4 +@4726 = .rodata:0x8047CEEC; // type:object size:0x1C scope:local align:4 +@4727 = .rodata:0x8047CF08; // type:object size:0x1D scope:local align:4 data:string +...rodata.0 = .rodata:0x8047CF28; // type:label scope:local +@3552 = .rodata:0x8047CF28; // type:object size:0xC scope:local align:4 data:string +@3553 = .rodata:0x8047CF34; // type:object size:0xF scope:local align:4 +@3557 = .rodata:0x8047CF44; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x8047CF54; // type:object size:0x12 scope:local align:4 +@3562 = .rodata:0x8047CF68; // type:object size:0x11 scope:local align:4 +@3564 = .rodata:0x8047CF7C; // type:object size:0x11 scope:local align:4 +@3566 = .rodata:0x8047CF90; // type:object size:0x11 scope:local align:4 +@3568 = .rodata:0x8047CFA4; // type:object size:0x11 scope:local align:4 +@3569 = .rodata:0x8047CFB8; // type:object size:0x9 scope:local align:4 +@3571 = .rodata:0x8047CFC4; // type:object size:0x13 scope:local align:4 +@3572 = .rodata:0x8047CFD8; // type:object size:0xD scope:local align:4 +@3577 = .rodata:0x8047CFE8; // type:object size:0x9 scope:local align:4 data:string +@3581 = .rodata:0x8047CFF4; // type:object size:0xB scope:local align:4 +@3584 = .rodata:0x8047D000; // type:object size:0x11 scope:local align:4 +@3586 = .rodata:0x8047D014; // type:object size:0xE scope:local align:4 +@3588 = .rodata:0x8047D024; // type:object size:0xE scope:local align:4 +@3589 = .rodata:0x8047D034; // type:object size:0xE scope:local align:4 +@3591 = .rodata:0x8047D044; // type:object size:0xE scope:local align:4 +@3592 = .rodata:0x8047D054; // type:object size:0xF scope:local align:4 +@3594 = .rodata:0x8047D064; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x8047D074; // type:object size:0xD scope:local align:4 +@3598 = .rodata:0x8047D084; // type:object size:0x9 scope:local align:4 +@3600 = .rodata:0x8047D090; // type:object size:0x15 scope:local align:4 +@3601 = .rodata:0x8047D0A8; // type:object size:0xF scope:local align:4 +@3602 = .rodata:0x8047D0B8; // type:object size:0xF scope:local align:4 +@3603 = .rodata:0x8047D0C8; // type:object size:0x23 scope:local align:4 +@3605 = .rodata:0x8047D0EC; // type:object size:0xD scope:local align:4 +@3607 = .rodata:0x8047D0FC; // type:object size:0x11 scope:local align:4 +@3609 = .rodata:0x8047D110; // type:object size:0xB scope:local align:4 +@3611 = .rodata:0x8047D11C; // type:object size:0x17 scope:local align:4 +@3613 = .rodata:0x8047D134; // type:object size:0xD scope:local align:4 +@3615 = .rodata:0x8047D144; // type:object size:0xF scope:local align:4 +@3616 = .rodata:0x8047D154; // type:object size:0xD scope:local align:4 +@3617 = .rodata:0x8047D164; // type:object size:0x15 scope:local align:4 +@3619 = .rodata:0x8047D17C; // type:object size:0xF scope:local align:4 +@3620 = .rodata:0x8047D18C; // type:object size:0x11 scope:local align:4 +@3621 = .rodata:0x8047D1A0; // type:object size:0x11 scope:local align:4 +@3624 = .rodata:0x8047D1B4; // type:object size:0x19 scope:local align:4 +@3625 = .rodata:0x8047D1D0; // type:object size:0x17 scope:local align:4 +@3626 = .rodata:0x8047D1E8; // type:object size:0x17 scope:local align:4 +@3628 = .rodata:0x8047D200; // type:object size:0x13 scope:local align:4 +@3629 = .rodata:0x8047D214; // type:object size:0x15 scope:local align:4 +@3630 = .rodata:0x8047D22C; // type:object size:0x15 scope:local align:4 +@3631 = .rodata:0x8047D244; // type:object size:0x15 scope:local align:4 +@3635 = .rodata:0x8047D25C; // type:object size:0x9 scope:local align:4 +@3636 = .rodata:0x8047D268; // type:object size:0x11 scope:local align:4 +@3637 = .rodata:0x8047D27C; // type:object size:0x13 scope:local align:4 data:string +@3638 = .rodata:0x8047D290; // type:object size:0xF scope:local align:4 data:string +@3639 = .rodata:0x8047D2A0; // type:object size:0x10 scope:local align:4 data:string +@3640 = .rodata:0x8047D2B0; // type:object size:0x1E scope:local align:4 +@3641 = .rodata:0x8047D2D0; // type:object size:0xD scope:local align:4 +@3642 = .rodata:0x8047D2E0; // type:object size:0xD scope:local align:4 +@3643 = .rodata:0x8047D2F0; // type:object size:0xD scope:local align:4 +@3644 = .rodata:0x8047D300; // type:object size:0xD scope:local align:4 +@3645 = .rodata:0x8047D310; // type:object size:0x13 scope:local align:4 +@3647 = .rodata:0x8047D324; // type:object size:0xF scope:local align:4 +@3648 = .rodata:0x8047D334; // type:object size:0x17 scope:local align:4 +@3649 = .rodata:0x8047D34C; // type:object size:0x13 scope:local align:4 +@3650 = .rodata:0x8047D360; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8047D374; // type:object size:0x13 scope:local align:4 data:string +@3663 = .rodata:0x8047D388; // type:object size:0x13 scope:local align:4 data:string +@3664 = .rodata:0x8047D39C; // type:object size:0xF scope:local align:4 data:string +@3665 = .rodata:0x8047D3AC; // type:object size:0xE scope:local align:4 data:string +@3669 = .rodata:0x8047D3BC; // type:object size:0xD scope:local align:4 data:string +@3684 = .rodata:0x8047D3CC; // type:object size:0x10 scope:local align:4 data:string +@3685 = .rodata:0x8047D3DC; // type:object size:0x15 scope:local align:4 +@3686 = .rodata:0x8047D3F4; // type:object size:0x12 scope:local align:4 +@3687 = .rodata:0x8047D408; // type:object size:0x11 scope:local align:4 +@3689 = .rodata:0x8047D41C; // type:object size:0x14 scope:local align:4 +@3691 = .rodata:0x8047D430; // type:object size:0x19 scope:local align:4 +@3692 = .rodata:0x8047D44C; // type:object size:0x19 scope:local align:4 +@3693 = .rodata:0x8047D468; // type:object size:0x18 scope:local align:4 +@3694 = .rodata:0x8047D480; // type:object size:0x18 scope:local align:4 +@3695 = .rodata:0x8047D498; // type:object size:0x1B scope:local align:4 +@3696 = .rodata:0x8047D4B4; // type:object size:0x1B scope:local align:4 +@3825 = .rodata:0x8047D4D0; // type:object size:0xC scope:local align:4 data:string +@3826 = .rodata:0x8047D4DC; // type:object size:0x9 scope:local align:4 data:string +@3865 = .rodata:0x8047D4E8; // type:object size:0x1C scope:local align:4 data:string +@3902 = .rodata:0x8047D504; // type:object size:0x1B scope:local align:4 data:string +@3903 = .rodata:0x8047D520; // type:object size:0x11 scope:local align:4 data:string +@3904 = .rodata:0x8047D534; // type:object size:0x1B scope:local align:4 data:string +@3905 = .rodata:0x8047D550; // type:object size:0x17 scope:local align:4 data:string +@3906 = .rodata:0x8047D568; // type:object size:0xC scope:local align:4 data:string +@3908 = .rodata:0x8047D574; // type:object size:0xD scope:local align:4 data:string +@3909 = .rodata:0x8047D584; // type:object size:0x12 scope:local align:4 data:string +@3910 = .rodata:0x8047D598; // type:object size:0x12 scope:local align:4 data:string +@3911 = .rodata:0x8047D5AC; // type:object size:0x17 scope:local align:4 data:string +@3912 = .rodata:0x8047D5C4; // type:object size:0x16 scope:local align:4 data:string +@3913 = .rodata:0x8047D5DC; // type:object size:0x17 scope:local align:4 data:string +@3914 = .rodata:0x8047D5F4; // type:object size:0x16 scope:local align:4 data:string +@3945 = .rodata:0x8047D60C; // type:object size:0x18 scope:local align:4 data:string +@3946 = .rodata:0x8047D624; // type:object size:0x17 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047D640; // type:label scope:local +@3797 = .rodata:0x8047D640; // type:object size:0xC scope:local align:4 +@4009 = .rodata:0x8047D64C; // type:object size:0xC scope:local align:4 data:string +@4010 = .rodata:0x8047D658; // type:object size:0x9 scope:local align:4 +@4014 = .rodata:0x8047D664; // type:object size:0x9 scope:local align:4 +@4016 = .rodata:0x8047D670; // type:object size:0xF scope:local align:4 +@4018 = .rodata:0x8047D680; // type:object size:0xF scope:local align:4 +@4020 = .rodata:0x8047D690; // type:object size:0x11 scope:local align:4 +@4023 = .rodata:0x8047D6A4; // type:object size:0xB scope:local align:4 +@4026 = .rodata:0x8047D6B0; // type:object size:0xD scope:local align:4 +@4028 = .rodata:0x8047D6C0; // type:object size:0xB scope:local align:4 +@4030 = .rodata:0x8047D6CC; // type:object size:0xA scope:local align:4 +@4031 = .rodata:0x8047D6D8; // type:object size:0xA scope:local align:4 +@4033 = .rodata:0x8047D6E4; // type:object size:0xA scope:local align:4 +@4034 = .rodata:0x8047D6F0; // type:object size:0xB scope:local align:4 +@4036 = .rodata:0x8047D6FC; // type:object size:0xB scope:local align:4 +@4037 = .rodata:0x8047D708; // type:object size:0x1B scope:local align:4 +@4038 = .rodata:0x8047D724; // type:object size:0x17 scope:local align:4 +@4039 = .rodata:0x8047D73C; // type:object size:0x17 scope:local align:4 +@4041 = .rodata:0x8047D754; // type:object size:0x15 scope:local align:4 +@4043 = .rodata:0x8047D76C; // type:object size:0x19 scope:local align:4 +@4045 = .rodata:0x8047D788; // type:object size:0xD scope:local align:4 +@4047 = .rodata:0x8047D798; // type:object size:0xF scope:local align:4 +@4050 = .rodata:0x8047D7A8; // type:object size:0x14 scope:local align:4 +@4052 = .rodata:0x8047D7BC; // type:object size:0x15 scope:local align:4 +@4053 = .rodata:0x8047D7D4; // type:object size:0x12 scope:local align:4 +@4055 = .rodata:0x8047D7E8; // type:object size:0x11 scope:local align:4 +@4057 = .rodata:0x8047D7FC; // type:object size:0x14 scope:local align:4 +@4059 = .rodata:0x8047D810; // type:object size:0x19 scope:local align:4 +@4061 = .rodata:0x8047D82C; // type:object size:0x19 scope:local align:4 +@4063 = .rodata:0x8047D848; // type:object size:0x18 scope:local align:4 +@4064 = .rodata:0x8047D860; // type:object size:0x18 scope:local align:4 +@4065 = .rodata:0x8047D878; // type:object size:0x1B scope:local align:4 +@4066 = .rodata:0x8047D894; // type:object size:0x1B scope:local align:4 +@4067 = .rodata:0x8047D8B0; // type:object size:0x12 scope:local align:4 +@4069 = .rodata:0x8047D8C4; // type:object size:0x12 scope:local align:4 +@4070 = .rodata:0x8047D8D8; // type:object size:0xB scope:local align:4 +@4072 = .rodata:0x8047D8E4; // type:object size:0x11 scope:local align:4 +@4074 = .rodata:0x8047D8F8; // type:object size:0xB scope:local align:4 +@4077 = .rodata:0x8047D904; // type:object size:0xA scope:local align:4 +@4078 = .rodata:0x8047D910; // type:object size:0x9 scope:local align:4 +@4079 = .rodata:0x8047D91C; // type:object size:0x11 scope:local align:4 +@4080 = .rodata:0x8047D930; // type:object size:0x10 scope:local align:4 +@4082 = .rodata:0x8047D940; // type:object size:0x1C scope:local align:4 +@4084 = .rodata:0x8047D95C; // type:object size:0x1B scope:local align:4 +@4085 = .rodata:0x8047D978; // type:object size:0x17 scope:local align:4 +@4087 = .rodata:0x8047D990; // type:object size:0x11 scope:local align:4 +@4088 = .rodata:0x8047D9A4; // type:object size:0x15 scope:local align:4 +@4089 = .rodata:0x8047D9BC; // type:object size:0x15 scope:local align:4 +@4090 = .rodata:0x8047D9D4; // type:object size:0x11 scope:local align:4 +@4091 = .rodata:0x8047D9E8; // type:object size:0x15 scope:local align:4 +@4092 = .rodata:0x8047DA00; // type:object size:0x17 scope:local align:4 +@4093 = .rodata:0x8047DA18; // type:object size:0x17 scope:local align:4 +@4094 = .rodata:0x8047DA30; // type:object size:0x1F scope:local align:4 +@4096 = .rodata:0x8047DA50; // type:object size:0x1F scope:local align:4 +@4097 = .rodata:0x8047DA70; // type:object size:0x1A scope:local align:4 +@4098 = .rodata:0x8047DA8C; // type:object size:0x1A scope:local align:4 +@4099 = .rodata:0x8047DAA8; // type:object size:0x1A scope:local align:4 +@4100 = .rodata:0x8047DAC4; // type:object size:0x1A scope:local align:4 +@4101 = .rodata:0x8047DAE0; // type:object size:0xD scope:local align:4 +@4103 = .rodata:0x8047DAF0; // type:object size:0x11 scope:local align:4 +@4104 = .rodata:0x8047DB04; // type:object size:0x11 scope:local align:4 +@4105 = .rodata:0x8047DB18; // type:object size:0x11 scope:local align:4 +@4107 = .rodata:0x8047DB2C; // type:object size:0xF scope:local align:4 +@4108 = .rodata:0x8047DB3C; // type:object size:0x12 scope:local align:4 +@4109 = .rodata:0x8047DB50; // type:object size:0x1B scope:local align:4 +@4110 = .rodata:0x8047DB6C; // type:object size:0x1D scope:local align:4 +@4111 = .rodata:0x8047DB8C; // type:object size:0xF scope:local align:4 +@4112 = .rodata:0x8047DB9C; // type:object size:0xD scope:local align:4 +@4114 = .rodata:0x8047DBAC; // type:object size:0x14 scope:local align:4 +@4115 = .rodata:0x8047DBC0; // type:object size:0x13 scope:local align:4 +@4116 = .rodata:0x8047DBD4; // type:object size:0x12 scope:local align:4 +@4117 = .rodata:0x8047DBE8; // type:object size:0x12 scope:local align:4 +@4119 = .rodata:0x8047DBFC; // type:object size:0x11 scope:local align:4 +@4121 = .rodata:0x8047DC10; // type:object size:0xD scope:local align:4 +@4123 = .rodata:0x8047DC20; // type:object size:0x11 scope:local align:4 +@4124 = .rodata:0x8047DC34; // type:object size:0x1D scope:local align:4 +@4125 = .rodata:0x8047DC54; // type:object size:0x13 scope:local align:4 +@4126 = .rodata:0x8047DC68; // type:object size:0x10 scope:local align:4 +@4127 = .rodata:0x8047DC78; // type:object size:0xF scope:local align:4 data:string +@4129 = .rodata:0x8047DC88; // type:object size:0xF scope:local align:4 data:string +@4130 = .rodata:0x8047DC98; // type:object size:0x12 scope:local align:4 +@4131 = .rodata:0x8047DCAC; // type:object size:0x12 scope:local align:4 +@4132 = .rodata:0x8047DCC0; // type:object size:0xE scope:local align:4 +@4133 = .rodata:0x8047DCD0; // type:object size:0x10 scope:local align:4 +@4135 = .rodata:0x8047DCE0; // type:object size:0x10 scope:local align:4 +@4136 = .rodata:0x8047DCF0; // type:object size:0xF scope:local align:4 +@4138 = .rodata:0x8047DD00; // type:object size:0xF scope:local align:4 +@4139 = .rodata:0x8047DD10; // type:object size:0xF scope:local align:4 +@4140 = .rodata:0x8047DD20; // type:object size:0xD scope:local align:4 +@4141 = .rodata:0x8047DD30; // type:object size:0xD scope:local align:4 +@4142 = .rodata:0x8047DD40; // type:object size:0x14 scope:local align:4 +@4143 = .rodata:0x8047DD54; // type:object size:0x12 scope:local align:4 +@4144 = .rodata:0x8047DD68; // type:object size:0x10 scope:local align:4 +@4146 = .rodata:0x8047DD78; // type:object size:0x13 scope:local align:4 +@4147 = .rodata:0x8047DD8C; // type:object size:0x14 scope:local align:4 +@4149 = .rodata:0x8047DDA0; // type:object size:0x18 scope:local align:4 +@4152 = .rodata:0x8047DDB8; // type:object size:0xF scope:local align:4 +@4154 = .rodata:0x8047DDC8; // type:object size:0xB scope:local align:4 +@4155 = .rodata:0x8047DDD4; // type:object size:0x19 scope:local align:4 +@4167 = .rodata:0x8047DDF0; // type:object size:0x13 scope:local align:4 data:string +@4168 = .rodata:0x8047DE04; // type:object size:0x13 scope:local align:4 data:string +@4169 = .rodata:0x8047DE18; // type:object size:0xF scope:local align:4 data:string +@4170 = .rodata:0x8047DE28; // type:object size:0xE scope:local align:4 data:string +@4173 = .rodata:0x8047DE38; // type:object size:0xD scope:local align:4 data:string +@4189 = .rodata:0x8047DE48; // type:object size:0x10 scope:local align:4 data:string +@4205 = .rodata:0x8047DE58; // type:object size:0xC scope:local align:4 data:string +@4206 = .rodata:0x8047DE64; // type:object size:0x11 scope:local align:4 data:string +@4369 = .rodata:0x8047DE78; // type:object size:0x1C scope:local align:4 data:string +@4428 = .rodata:0x8047DE94; // type:object size:0x1B scope:local align:4 data:string +@4429 = .rodata:0x8047DEB0; // type:object size:0x17 scope:local align:4 data:string +@4430 = .rodata:0x8047DEC8; // type:object size:0xD scope:local align:4 data:string +@4431 = .rodata:0x8047DED8; // type:object size:0xC scope:local align:4 data:string +@4432 = .rodata:0x8047DEE4; // type:object size:0xF scope:local align:4 data:string +@4433 = .rodata:0x8047DEF4; // type:object size:0xE scope:local align:4 data:string +@4434 = .rodata:0x8047DF04; // type:object size:0xE scope:local align:4 data:string +@4435 = .rodata:0x8047DF14; // type:object size:0xE scope:local align:4 data:string +@4436 = .rodata:0x8047DF24; // type:object size:0xC scope:local align:4 data:string +@4437 = .rodata:0x8047DF30; // type:object size:0x15 scope:local align:4 data:string +@4438 = .rodata:0x8047DF48; // type:object size:0x14 scope:local align:4 data:string +@4439 = .rodata:0x8047DF5C; // type:object size:0x17 scope:local align:4 data:string +@4440 = .rodata:0x8047DF74; // type:object size:0x18 scope:local align:4 data:string +@4441 = .rodata:0x8047DF8C; // type:object size:0x1B scope:local align:4 data:string +@4442 = .rodata:0x8047DFA8; // type:object size:0x10 scope:local align:4 data:string +@4447 = .rodata:0x8047DFB8; // type:object size:0x12 scope:local align:4 data:string +@4741 = .rodata:0x8047DFCC; // type:object size:0x9 scope:local align:4 data:string +@5155 = .rodata:0x8047DFD8; // type:object size:0xE scope:local align:4 data:string +@5272 = .rodata:0x8047DFE8; // type:object size:0x19 scope:local align:4 data:string +@5423 = .rodata:0x8047E004; // type:object size:0xF scope:local align:4 data:string +@5438 = .rodata:0x8047E014; // type:object size:0xC scope:local align:4 data:string +@5440 = .rodata:0x8047E020; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E030; // type:label scope:local +@3488 = .rodata:0x8047E030; // type:object size:0xC scope:local align:4 +@3895 = .rodata:0x8047E03C; // type:object size:0xB scope:local align:4 data:string +@3896 = .rodata:0x8047E048; // type:object size:0x9 scope:local align:4 data:string +@4281 = .rodata:0x8047E054; // type:object size:0xB scope:local align:4 data:string +@4282 = .rodata:0x8047E060; // type:object size:0xB scope:local align:4 data:string +@4283 = .rodata:0x8047E06C; // type:object size:0xA scope:local align:4 data:string +@4284 = .rodata:0x8047E078; // type:object size:0xA scope:local align:4 data:string +@4285 = .rodata:0x8047E084; // type:object size:0xC scope:local align:4 data:string +@4286 = .rodata:0x8047E090; // type:object size:0xE scope:local align:4 data:string +@4287 = .rodata:0x8047E0A0; // type:object size:0xD scope:local align:4 data:string +@4288 = .rodata:0x8047E0B0; // type:object size:0xD scope:local align:4 data:string +@4289 = .rodata:0x8047E0C0; // type:object size:0x9 scope:local align:4 data:string +@4290 = .rodata:0x8047E0CC; // type:object size:0xE scope:local align:4 data:string +@4291 = .rodata:0x8047E0DC; // type:object size:0xD scope:local align:4 data:string +@4292 = .rodata:0x8047E0EC; // type:object size:0x9 scope:local align:4 data:string +@4293 = .rodata:0x8047E0F8; // type:object size:0xC scope:local align:4 data:string +@4294 = .rodata:0x8047E104; // type:object size:0xA scope:local align:4 data:string +@4381 = .rodata:0x8047E110; // type:object size:0xE scope:local align:4 data:string +@4383 = .rodata:0x8047E120; // type:object size:0xD scope:local align:4 data:string +@4385 = .rodata:0x8047E130; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E140; // type:label scope:local +@3360 = .rodata:0x8047E140; // type:object size:0xC scope:local align:4 +@3846 = .rodata:0x8047E14C; // type:object size:0xF scope:local align:4 data:string +@3867 = .rodata:0x8047E15C; // type:object size:0xF scope:local align:4 data:string +@3868 = .rodata:0x8047E16C; // type:object size:0x13 scope:local align:4 data:string +@3869 = .rodata:0x8047E180; // type:object size:0x26 scope:local align:4 data:string +@3956 = .rodata:0x8047E1A8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E1B8; // type:label scope:local +@3884 = .rodata:0x8047E1B8; // type:object size:0xC scope:local align:4 +@3944 = .rodata:0x8047E1C4; // type:object size:0xA scope:local align:4 data:string +@3953 = .rodata:0x8047E1D0; // type:object size:0x11 scope:local align:4 data:string +@4152 = .rodata:0x8047E1E4; // type:object size:0xE scope:local align:4 data:string +@4153 = .rodata:0x8047E1F4; // type:object size:0x9 scope:local align:4 data:string +@4313 = .rodata:0x8047E200; // type:object size:0x14 scope:local align:4 +@4638 = .rodata:0x8047E214; // type:object size:0x9 scope:local align:4 data:string +@4639 = .rodata:0x8047E220; // type:object size:0x9 scope:local align:4 data:string +@5446 = .rodata:0x8047E22C; // type:object size:0xA scope:local align:4 +@6412 = .rodata:0x8047E238; // type:object size:0x9 scope:local align:4 data:string +@6413 = .rodata:0x8047E244; // type:object size:0xA scope:local align:4 data:string +@6414 = .rodata:0x8047E250; // type:object size:0x24 scope:local align:4 data:string +@6415 = .rodata:0x8047E274; // type:object size:0x13 scope:local align:4 data:string +@7146 = .rodata:0x8047E288; // type:object size:0x10 scope:local align:4 data:string +@7764 = .rodata:0x8047E298; // type:object size:0x15 scope:local align:4 data:string +@7768 = .rodata:0x8047E2B0; // type:object size:0x13 scope:local align:4 data:string +@7772 = .rodata:0x8047E2C4; // type:object size:0x1C scope:local align:4 data:string +@7880 = .rodata:0x8047E2E0; // type:object size:0x11 scope:local align:4 data:string +@7881 = .rodata:0x8047E2F4; // type:object size:0x13 scope:local align:4 data:string +@7882 = .rodata:0x8047E308; // type:object size:0x14 scope:local align:4 data:string +@7964 = .rodata:0x8047E31C; // type:object size:0x17 scope:local align:4 data:string +@8152 = .rodata:0x8047E334; // type:object size:0x13 scope:local align:4 +@8587 = .rodata:0x8047E348; // type:object size:0x13 scope:local align:4 data:string +@8588 = .rodata:0x8047E35C; // type:object size:0x2C scope:local align:4 data:string +@8599 = .rodata:0x8047E388; // type:object size:0x15 scope:local align:4 data:string +@8727 = .rodata:0x8047E3A0; // type:object size:0x17 scope:local align:4 +@9433 = .rodata:0x8047E3B8; // type:object size:0x9 scope:local align:4 data:string +@9512 = .rodata:0x8047E3C4; // type:object size:0xE scope:local align:4 data:string +@9529 = .rodata:0x8047E3D4; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E3E8; // type:label scope:local +@3234 = .rodata:0x8047E3E8; // type:object size:0x9 scope:local align:4 data:string +@3357 = .rodata:0x8047E3F4; // type:object size:0xD scope:local align:4 data:string +@3358 = .rodata:0x8047E404; // type:object size:0x9 scope:local align:4 data:string +@3470 = .rodata:0x8047E410; // type:object size:0xC scope:local align:4 data:string +@3471 = .rodata:0x8047E41C; // type:object size:0xB scope:local align:4 data:string +@3472 = .rodata:0x8047E428; // type:object size:0xE scope:local align:4 data:string +@3473 = .rodata:0x8047E438; // type:object size:0xD scope:local align:4 data:string +@3551 = .rodata:0x8047E448; // type:object size:0x9 scope:local align:4 data:string +@3605 = .rodata:0x8047E454; // type:object size:0x25 scope:local align:4 data:string +@4325 = .rodata:0x8047E47C; // type:object size:0x29 scope:local align:4 data:string +@4503 = .rodata:0x8047E4A8; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E4C0; // type:label scope:local +@3546 = .rodata:0x8047E4C0; // type:object size:0xC scope:local align:4 +@4266 = .rodata:0x8047E4CC; // type:object size:0x9 scope:local align:4 data:string +@4559 = .rodata:0x8047E4D8; // type:object size:0xD scope:local align:4 data:string +@4560 = .rodata:0x8047E4E8; // type:object size:0x12 scope:local align:4 data:string +@4563 = .rodata:0x8047E4FC; // type:object size:0x17 scope:local align:4 data:string +@4852 = .rodata:0x8047E514; // type:object size:0x9 scope:local align:4 data:string +@4854 = .rodata:0x8047E520; // type:object size:0x9 scope:local align:4 data:string +@4936 = .rodata:0x8047E52C; // type:object size:0x25 scope:local align:4 data:string +@5556 = .rodata:0x8047E554; // type:object size:0xC scope:local align:4 data:4byte +@5928 = .rodata:0x8047E560; // type:object size:0x9 scope:local align:4 data:string +@5929 = .rodata:0x8047E56C; // type:object size:0xA scope:local align:4 data:string +@5930 = .rodata:0x8047E578; // type:object size:0x24 scope:local align:4 data:string +@5958 = .rodata:0x8047E59C; // type:object size:0xA scope:local align:4 data:string +@5959 = .rodata:0x8047E5A8; // type:object size:0x11 scope:local align:4 data:string +@6246 = .rodata:0x8047E5BC; // type:object size:0xE scope:local align:4 data:string +@6247 = .rodata:0x8047E5CC; // type:object size:0xF scope:local align:4 data:string +@6304 = .rodata:0x8047E5DC; // type:object size:0xF scope:local align:4 data:string +@6318 = .rodata:0x8047E5EC; // type:object size:0xC scope:local align:4 data:string +@6327 = .rodata:0x8047E5F8; // type:object size:0xC scope:local align:4 data:string +@6335 = .rodata:0x8047E604; // type:object size:0x9 scope:local align:4 data:string +@6508 = .rodata:0x8047E610; // type:object size:0xA scope:local align:4 data:string +@6509 = .rodata:0x8047E61C; // type:object size:0xA scope:local align:4 data:string +@6510 = .rodata:0x8047E628; // type:object size:0xA scope:local align:4 data:string +@6511 = .rodata:0x8047E634; // type:object size:0xC scope:local align:4 data:4byte +@6751 = .rodata:0x8047E640; // type:object size:0x1C scope:local align:4 data:string +@6849 = .rodata:0x8047E65C; // type:object size:0x9 scope:local align:4 data:string +@6965 = .rodata:0x8047E668; // type:object size:0x9 scope:local align:4 +@7050 = .rodata:0x8047E674; // type:object size:0x9 scope:local align:4 data:string +@7051 = .rodata:0x8047E680; // type:object size:0x9 scope:local align:4 data:string +@7052 = .rodata:0x8047E68C; // type:object size:0xC scope:local align:4 +@7088 = .rodata:0x8047E698; // type:object size:0xF scope:local align:4 data:string +@7180 = .rodata:0x8047E6A8; // type:object size:0x11 scope:local align:4 data:string +@7181 = .rodata:0x8047E6BC; // type:object size:0x19 scope:local align:4 data:string +@7678 = .rodata:0x8047E6D8; // type:object size:0x18 scope:local align:4 data:string +@7784 = .rodata:0x8047E6F0; // type:object size:0xA scope:local align:4 data:string +@7785 = .rodata:0x8047E6FC; // type:object size:0x19 scope:local align:4 data:string +@7786 = .rodata:0x8047E718; // type:object size:0x9 scope:local align:4 data:string +@7787 = .rodata:0x8047E724; // type:object size:0x17 scope:local align:4 data:string +@7788 = .rodata:0x8047E73C; // type:object size:0x1C scope:local align:4 data:string +@7789 = .rodata:0x8047E758; // type:object size:0x17 scope:local align:4 data:string +@7791 = .rodata:0x8047E770; // type:object size:0x16 scope:local align:4 data:string +@7792 = .rodata:0x8047E788; // type:object size:0xF scope:local align:4 data:string +@7793 = .rodata:0x8047E798; // type:object size:0xE scope:local align:4 data:string +@7794 = .rodata:0x8047E7A8; // type:object size:0x11 scope:local align:4 data:string +@7795 = .rodata:0x8047E7BC; // type:object size:0x11 scope:local align:4 data:string +@7796 = .rodata:0x8047E7D0; // type:object size:0xA scope:local align:4 data:string +@7797 = .rodata:0x8047E7DC; // type:object size:0x11 scope:local align:4 data:string +@7798 = .rodata:0x8047E7F0; // type:object size:0xE scope:local align:4 data:string +@7799 = .rodata:0x8047E800; // type:object size:0x14 scope:local align:4 data:string +@7800 = .rodata:0x8047E814; // type:object size:0xF scope:local align:4 data:string +@7801 = .rodata:0x8047E824; // type:object size:0xC scope:local align:4 data:string +@7802 = .rodata:0x8047E830; // type:object size:0x9 scope:local align:4 data:string +@7803 = .rodata:0x8047E83C; // type:object size:0x1C scope:local align:4 data:string +@7804 = .rodata:0x8047E858; // type:object size:0x17 scope:local align:4 data:string +@7806 = .rodata:0x8047E870; // type:object size:0x14 scope:local align:4 data:string +@7808 = .rodata:0x8047E884; // type:object size:0xA scope:local align:4 data:string +@7809 = .rodata:0x8047E890; // type:object size:0x14 scope:local align:4 data:string +@7810 = .rodata:0x8047E8A4; // type:object size:0xF scope:local align:4 data:string +@7811 = .rodata:0x8047E8B4; // type:object size:0xC scope:local align:4 data:string +@7855 = .rodata:0x8047E8C0; // type:object size:0x12 scope:local align:4 data:string +@7857 = .rodata:0x8047E8D4; // type:object size:0xA scope:local align:4 data:string +@7859 = .rodata:0x8047E8E0; // type:object size:0xC scope:local align:4 data:string +@8060 = .rodata:0x8047E8EC; // type:object size:0x10 scope:local align:4 data:string +@8075 = .rodata:0x8047E8FC; // type:object size:0x16 scope:local align:4 data:string +@8077 = .rodata:0x8047E914; // type:object size:0xC scope:local align:4 data:string +@2636 = .rodata:0x8047E920; // type:object size:0x9 scope:local align:4 data:string +@2640 = .rodata:0x8047E92C; // type:object size:0x9 scope:local align:4 data:string +@2641 = .rodata:0x8047E938; // type:object size:0xC scope:local align:4 data:string +@2643 = .rodata:0x8047E944; // type:object size:0x9 scope:local align:4 data:string +@2644 = .rodata:0x8047E950; // type:object size:0xA scope:local align:4 data:string +@2645 = .rodata:0x8047E95C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047E968; // type:label scope:local +@3589 = .rodata:0x8047E968; // type:object size:0xC scope:local align:4 +@4429 = .rodata:0x8047E974; // type:object size:0xA scope:local align:4 data:string +@5602 = .rodata:0x8047E980; // type:object size:0x20 scope:local align:4 data:4byte +@5603 = .rodata:0x8047E9A0; // type:object size:0x20 scope:local align:4 data:4byte +@5960 = .rodata:0x8047E9C0; // type:object size:0x20 scope:local align:4 data:4byte +@6514 = .rodata:0x8047E9E0; // type:object size:0x9 scope:local align:4 data:string +@6913 = .rodata:0x8047E9EC; // type:object size:0xE scope:local align:4 data:string +@6914 = .rodata:0x8047E9FC; // type:object size:0x9 scope:local align:4 data:string +@7576 = .rodata:0x8047EA08; // type:object size:0xC scope:local align:4 data:string +@7843 = .rodata:0x8047EA14; // type:object size:0x20 scope:local align:4 data:string +@8206 = .rodata:0x8047EA34; // type:object size:0xB scope:local align:4 data:string +@8207 = .rodata:0x8047EA40; // type:object size:0xA scope:local align:4 data:string +@10182 = .rodata:0x8047EA4C; // type:object size:0x12 scope:local align:4 data:string +@10184 = .rodata:0x8047EA60; // type:object size:0xA scope:local align:4 data:string +@10204 = .rodata:0x8047EA6C; // type:object size:0x9 scope:local align:4 data:string +@10207 = .rodata:0x8047EA78; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8047EA88; // type:label scope:local +@3355 = .rodata:0x8047EA88; // type:object size:0xC scope:local align:4 +@4111 = .rodata:0x8047EA94; // type:object size:0xA scope:local align:4 data:string +@4491 = .rodata:0x8047EAA0; // type:object size:0x9 scope:local align:4 data:string +@4495 = .rodata:0x8047EAAC; // type:object size:0xC scope:local align:4 data:string +@4497 = .rodata:0x8047EAB8; // type:object size:0xB scope:local align:4 data:string +@4501 = .rodata:0x8047EAC4; // type:object size:0xA scope:local align:4 data:string +@4507 = .rodata:0x8047EAD0; // type:object size:0x9 scope:local align:4 data:string +@4512 = .rodata:0x8047EADC; // type:object size:0xC scope:local align:4 data:string +@4513 = .rodata:0x8047EAE8; // type:object size:0x9 scope:local align:4 data:string +@4518 = .rodata:0x8047EAF4; // type:object size:0xB scope:local align:4 data:string +@4545 = .rodata:0x8047EB00; // type:object size:0xE scope:local align:4 data:string +@4546 = .rodata:0x8047EB10; // type:object size:0x1D scope:local align:4 data:string +@4547 = .rodata:0x8047EB30; // type:object size:0x17 scope:local align:4 +@4857 = .rodata:0x8047EB48; // type:object size:0x17 scope:local align:4 data:string +@5015 = .rodata:0x8047EB60; // type:object size:0x1B scope:local align:4 data:string +@5147 = .rodata:0x8047EB7C; // type:object size:0x9 scope:local align:4 data:string +@5226 = .rodata:0x8047EB88; // type:object size:0x10 scope:local align:4 data:string +@5227 = .rodata:0x8047EB98; // type:object size:0xF scope:local align:4 data:string +@5421 = .rodata:0x8047EBA8; // type:object size:0x9 scope:local align:4 data:string +@5697 = .rodata:0x8047EBB4; // type:object size:0xB scope:local align:4 data:string +@6762 = .rodata:0x8047EBC0; // type:object size:0xF scope:local align:4 data:string +@6765 = .rodata:0x8047EBD0; // type:object size:0x9 scope:local align:4 data:string +@7018 = .rodata:0x8047EBDC; // type:object size:0x12 scope:local align:4 data:string +@7062 = .rodata:0x8047EBF0; // type:object size:0x12 scope:local align:4 data:string +@7147 = .rodata:0x8047EC04; // type:object size:0x1F scope:local align:4 data:string +@7826 = .rodata:0x8047EC24; // type:object size:0x18 scope:local align:4 +@7829 = .rodata:0x8047EC3C; // type:object size:0x18 scope:local align:4 +@7832 = .rodata:0x8047EC54; // type:object size:0x10 scope:local align:4 +@7835 = .rodata:0x8047EC64; // type:object size:0x10 scope:local align:4 +@7866 = .rodata:0x8047EC74; // type:object size:0x2E scope:local align:4 +@8025 = .rodata:0x8047ECA4; // type:object size:0x13 scope:local align:4 data:string +@8367 = .rodata:0x8047ECB8; // type:object size:0xB scope:local align:4 data:string +@8371 = .rodata:0x8047ECC4; // type:object size:0x16 scope:local align:4 data:string +@8373 = .rodata:0x8047ECDC; // type:object size:0xC scope:local align:4 data:string +@8395 = .rodata:0x8047ECE8; // type:object size:0xC scope:local align:4 data:string +@8397 = .rodata:0x8047ECF4; // type:object size:0x10 scope:local align:4 data:string +@8404 = .rodata:0x8047ED04; // type:object size:0x9 scope:local align:4 data:string +@8406 = .rodata:0x8047ED10; // type:object size:0x12 scope:local align:4 data:string +@8408 = .rodata:0x8047ED24; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047ED30; // type:label scope:local +@3880 = .rodata:0x8047ED30; // type:object size:0xC scope:local align:4 +@3961 = .rodata:0x8047ED3C; // type:object size:0xD scope:local align:4 data:string +@4028 = .rodata:0x8047ED4C; // type:object size:0x14 scope:local align:4 data:string +@4029 = .rodata:0x8047ED60; // type:object size:0x13 scope:local align:4 data:string +@4030 = .rodata:0x8047ED74; // type:object size:0x16 scope:local align:4 data:string +@4031 = .rodata:0x8047ED8C; // type:object size:0xC scope:local align:4 +@4440 = .rodata:0x8047ED98; // type:object size:0x13 scope:local align:4 data:string +@4441 = .rodata:0x8047EDAC; // type:object size:0x13 scope:local align:4 data:string +@4754 = .rodata:0x8047EDC0; // type:object size:0x11 scope:local align:4 data:string +@4755 = .rodata:0x8047EDD4; // type:object size:0x9 scope:local align:4 data:string +@4963 = .rodata:0x8047EDE0; // type:object size:0xD scope:local align:4 data:string +@4965 = .rodata:0x8047EDF0; // type:object size:0x10 scope:local align:4 data:string +@4967 = .rodata:0x8047EE00; // type:object size:0x16 scope:local align:4 data:string +@4969 = .rodata:0x8047EE18; // type:object size:0xC scope:local align:4 data:string +@4997 = .rodata:0x8047EE24; // type:object size:0x12 scope:local align:4 data:string +@4999 = .rodata:0x8047EE38; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047EE48; // type:label scope:local +@3387 = .rodata:0x8047EE48; // type:object size:0xC scope:local align:4 data:string +@3388 = .rodata:0x8047EE54; // type:object size:0xF scope:local align:4 +@3392 = .rodata:0x8047EE64; // type:object size:0xD scope:local align:4 +@3396 = .rodata:0x8047EE74; // type:object size:0x19 scope:local align:4 +@3614 = .rodata:0x8047EE90; // type:object size:0xF scope:local align:4 data:string +@3615 = .rodata:0x8047EEA0; // type:object size:0x9 scope:local align:4 data:string +@3641 = .rodata:0x8047EEAC; // type:object size:0xC scope:local align:4 data:string +@3668 = .rodata:0x8047EEB8; // type:object size:0x18 scope:local align:4 data:string +@3871 = .rodata:0x8047EED0; // type:object size:0x15 scope:local align:4 data:string +@2742 = .rodata:0x8047EEE8; // type:object size:0xE scope:local align:4 data:string +@2743 = .rodata:0x8047EEF8; // type:object size:0x14 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047EF10; // type:label scope:local +@3867 = .rodata:0x8047EF10; // type:object size:0xC scope:local align:4 +@3900 = .rodata:0x8047EF1C; // type:object size:0xD scope:local align:4 data:string +@3976 = .rodata:0x8047EF2C; // type:object size:0x15 scope:local align:4 data:string +@3977 = .rodata:0x8047EF44; // type:object size:0x11 scope:local align:4 data:string +@3978 = .rodata:0x8047EF58; // type:object size:0x9 scope:local align:4 data:string +@3980 = .rodata:0x8047EF64; // type:object size:0xA scope:local align:4 data:string +@4144 = .rodata:0x8047EF70; // type:object size:0xC scope:local align:4 data:string +@4635 = .rodata:0x8047EF7C; // type:object size:0xC scope:local align:4 data:string +@4748 = .rodata:0x8047EF88; // type:object size:0xA scope:local align:4 data:string +@4749 = .rodata:0x8047EF94; // type:object size:0x9 scope:local align:4 data:string +@4750 = .rodata:0x8047EFA0; // type:object size:0xD scope:local align:4 data:string +@4831 = .rodata:0x8047EFB0; // type:object size:0x10 scope:local align:4 data:string +@4832 = .rodata:0x8047EFC0; // type:object size:0xE scope:local align:4 data:string +@4872 = .rodata:0x8047EFD0; // type:object size:0xF scope:local align:4 data:string +@6584 = .rodata:0x8047EFE0; // type:object size:0x15 scope:local align:4 data:string +@6884 = .rodata:0x8047EFF8; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F008; // type:label scope:local +@3430 = .rodata:0x8047F008; // type:object size:0xC scope:local align:4 +@3559 = .rodata:0x8047F014; // type:object size:0xD scope:local align:4 data:string +@3574 = .rodata:0x8047F024; // type:object size:0xA scope:local align:4 data:string +@3625 = .rodata:0x8047F030; // type:object size:0x10 scope:local align:4 data:string +@3626 = .rodata:0x8047F040; // type:object size:0x9 scope:local align:4 data:string +@3627 = .rodata:0x8047F04C; // type:object size:0xE scope:local align:4 data:string +@3934 = .rodata:0x8047F05C; // type:object size:0x15 scope:local align:4 data:string +@3935 = .rodata:0x8047F074; // type:object size:0xB scope:local align:4 data:string +@5100 = .rodata:0x8047F080; // type:object size:0x11 scope:local align:4 data:string +@5178 = .rodata:0x8047F094; // type:object size:0x12 scope:local align:4 data:string +@5180 = .rodata:0x8047F0A8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F0B8; // type:label scope:local +@3222 = .rodata:0x8047F0B8; // type:object size:0xE scope:local align:4 data:string +@3282 = .rodata:0x8047F0C8; // type:object size:0x12 scope:local align:4 data:string +@3283 = .rodata:0x8047F0DC; // type:object size:0x9 scope:local align:4 data:string +@3576 = .rodata:0x8047F0E8; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F100; // type:label scope:local +@3449 = .rodata:0x8047F100; // type:object size:0xB scope:local align:4 data:string +@3450 = .rodata:0x8047F10C; // type:object size:0xB scope:local align:4 data:string +@3451 = .rodata:0x8047F118; // type:object size:0x9 scope:local align:4 data:string +@3454 = .rodata:0x8047F124; // type:object size:0xA scope:local align:4 data:string +@3661 = .rodata:0x8047F130; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F140; // type:label scope:local +@3488 = .rodata:0x8047F140; // type:object size:0xA scope:local align:4 data:string +@3497 = .rodata:0x8047F14C; // type:object size:0x14 scope:local align:4 data:4byte +@3499 = .rodata:0x8047F160; // type:object size:0xA scope:local align:4 data:string +@3541 = .rodata:0x8047F16C; // type:object size:0xD scope:local align:4 data:string +@3542 = .rodata:0x8047F17C; // type:object size:0xD scope:local align:4 data:string +@3543 = .rodata:0x8047F18C; // type:object size:0x9 scope:local align:4 data:string +@3549 = .rodata:0x8047F198; // type:object size:0xA scope:local align:4 data:string +@3954 = .rodata:0x8047F1A4; // type:object size:0x15 scope:local align:4 data:string +@3956 = .rodata:0x8047F1BC; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F1D8; // type:label scope:local +@3445 = .rodata:0x8047F1D8; // type:object size:0xD scope:local align:4 data:string +@3452 = .rodata:0x8047F1E8; // type:object size:0xC scope:local align:4 data:4byte +@3454 = .rodata:0x8047F1F4; // type:object size:0x9 scope:local align:4 data:string +@3488 = .rodata:0x8047F200; // type:object size:0x10 scope:local align:4 data:string +@3489 = .rodata:0x8047F210; // type:object size:0x10 scope:local align:4 data:string +@3490 = .rodata:0x8047F220; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x8047F22C; // type:object size:0xA scope:local align:4 data:string +@3590 = .rodata:0x8047F238; // type:object size:0x9 scope:local align:4 data:string +@3816 = .rodata:0x8047F244; // type:object size:0xC scope:local align:4 data:string +@3818 = .rodata:0x8047F250; // type:object size:0xC scope:local align:4 data:string +@3497 = .rodata:0x8047F260; // type:object size:0xC scope:local align:4 data:string +@3498 = .rodata:0x8047F26C; // type:object size:0x9 scope:local align:4 data:string +@3854 = .rodata:0x8047F278; // type:object size:0xF scope:local align:4 data:string +@3856 = .rodata:0x8047F288; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F2A0; // type:label scope:local +@2787 = .rodata:0x8047F2A0; // type:object size:0xB scope:local align:4 data:string +@2899 = .rodata:0x8047F2AC; // type:object size:0xF scope:local align:4 data:string +@2900 = .rodata:0x8047F2BC; // type:object size:0x9 scope:local align:4 data:string +@2901 = .rodata:0x8047F2C8; // type:object size:0x27 scope:local align:4 data:string +@2922 = .rodata:0x8047F2F0; // type:object size:0x15 scope:local align:4 data:string +@2923 = .rodata:0x8047F308; // type:object size:0x13 scope:local align:4 data:string +@2975 = .rodata:0x8047F31C; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F330; // type:label scope:local +@3827 = .rodata:0x8047F330; // type:object size:0xC scope:local align:4 +@4086 = .rodata:0x8047F33C; // type:object size:0xC scope:local align:4 data:string +@4211 = .rodata:0x8047F348; // type:object size:0x10 scope:local align:4 data:string +@4212 = .rodata:0x8047F358; // type:object size:0x9 scope:local align:4 data:string +@4478 = .rodata:0x8047F364; // type:object size:0xE scope:local align:4 data:string +@4990 = .rodata:0x8047F374; // type:object size:0x11 scope:local align:4 data:string +@4992 = .rodata:0x8047F388; // type:object size:0x14 scope:local align:4 data:string +@4993 = .rodata:0x8047F39C; // type:object size:0x11 scope:local align:4 data:string +@4994 = .rodata:0x8047F3B0; // type:object size:0x14 scope:local align:4 data:string +@4995 = .rodata:0x8047F3C4; // type:object size:0x12 scope:local align:4 data:string +@4996 = .rodata:0x8047F3D8; // type:object size:0x13 scope:local align:4 data:string +@4997 = .rodata:0x8047F3EC; // type:object size:0x9 scope:local align:4 data:string +@4998 = .rodata:0x8047F3F8; // type:object size:0x15 scope:local align:4 data:string +@4999 = .rodata:0x8047F410; // type:object size:0x16 scope:local align:4 data:string +@5000 = .rodata:0x8047F428; // type:object size:0x14 scope:local align:4 data:string +@5001 = .rodata:0x8047F43C; // type:object size:0xF scope:local align:4 data:string +@5005 = .rodata:0x8047F44C; // type:object size:0x9 scope:local align:4 data:string +@5428 = .rodata:0x8047F458; // type:object size:0x9 scope:local align:4 data:string +@5429 = .rodata:0x8047F464; // type:object size:0xA scope:local align:4 data:string +@5430 = .rodata:0x8047F470; // type:object size:0x24 scope:local align:4 data:string +@5431 = .rodata:0x8047F494; // type:object size:0x13 scope:local align:4 data:string +@6157 = .rodata:0x8047F4A8; // type:object size:0x13 scope:local align:4 data:string +@6182 = .rodata:0x8047F4BC; // type:object size:0x13 scope:local align:4 data:string +@3272 = .rodata:0x8047F4D0; // type:object size:0x10 scope:local align:4 data:string +@3273 = .rodata:0x8047F4E0; // type:object size:0x13 scope:local align:4 data:string +@4153 = .rodata:0x8047F4F4; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F508; // type:label scope:local +@3345 = .rodata:0x8047F508; // type:object size:0xC scope:local align:4 +@3430 = .rodata:0x8047F514; // type:object size:0xA scope:local align:4 data:string +@3438 = .rodata:0x8047F520; // type:object size:0x9 scope:local align:4 data:string +@3617 = .rodata:0x8047F52C; // type:object size:0x12 scope:local align:4 data:string +@3618 = .rodata:0x8047F540; // type:object size:0x27 scope:local align:4 data:string +@3621 = .rodata:0x8047F568; // type:object size:0x9 scope:local align:4 data:string +@3819 = .rodata:0x8047F574; // type:object size:0xD scope:local align:4 data:string +@3820 = .rodata:0x8047F584; // type:object size:0xE scope:local align:4 data:string +@3821 = .rodata:0x8047F594; // type:object size:0xE scope:local align:4 +@3822 = .rodata:0x8047F5A4; // type:object size:0xA scope:local align:4 data:string +@3823 = .rodata:0x8047F5B0; // type:object size:0x9 scope:local align:4 data:string +@3824 = .rodata:0x8047F5BC; // type:object size:0xC scope:local align:4 data:string +@3858 = .rodata:0x8047F5C8; // type:object size:0xD scope:local align:4 data:string +@4283 = .rodata:0x8047F5D8; // type:object size:0x16 scope:local align:4 data:string +@4284 = .rodata:0x8047F5F0; // type:object size:0xE scope:local align:4 data:string +@4285 = .rodata:0x8047F600; // type:object size:0xE scope:local align:4 data:string +@4286 = .rodata:0x8047F610; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F628; // type:label scope:local +@3316 = .rodata:0x8047F628; // type:object size:0xC scope:local align:4 data:string +@3317 = .rodata:0x8047F634; // type:object size:0x10 scope:local align:4 +@3320 = .rodata:0x8047F644; // type:object size:0xC scope:local align:4 +@3331 = .rodata:0x8047F650; // type:object size:0xF scope:local align:4 +@3539 = .rodata:0x8047F660; // type:object size:0xC scope:local align:4 +@3655 = .rodata:0x8047F66C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F678; // type:label scope:local +@3423 = .rodata:0x8047F678; // type:object size:0xC scope:local align:4 data:string +@3424 = .rodata:0x8047F684; // type:object size:0xE scope:local align:4 +@3425 = .rodata:0x8047F694; // type:object size:0xD scope:local align:4 +@3438 = .rodata:0x8047F6A4; // type:object size:0xB scope:local align:4 +...rodata.0 = .rodata:0x8047F6B0; // type:label scope:local +@3378 = .rodata:0x8047F6B0; // type:object size:0xC scope:local align:4 data:string +@3379 = .rodata:0x8047F6BC; // type:object size:0xE scope:local align:4 +@3391 = .rodata:0x8047F6CC; // type:object size:0xF scope:local align:4 +@3438 = .rodata:0x8047F6DC; // type:object size:0xD scope:local align:4 data:string +@3439 = .rodata:0x8047F6EC; // type:object size:0xE scope:local align:4 data:string +@3440 = .rodata:0x8047F6FC; // type:object size:0x18 scope:local align:4 data:string +@3457 = .rodata:0x8047F714; // type:object size:0xC scope:local align:4 data:string +@3458 = .rodata:0x8047F720; // type:object size:0x17 scope:local align:4 data:string +@3523 = .rodata:0x8047F738; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8047F748; // type:label scope:local +@2833 = .rodata:0x8047F748; // type:object size:0xB scope:local align:4 data:string +@2838 = .rodata:0x8047F754; // type:object size:0x11 scope:local align:4 data:string +@3092 = .rodata:0x8047F768; // type:object size:0xB scope:local align:4 data:string +@3094 = .rodata:0x8047F774; // type:object size:0xA scope:local align:4 data:string +@3095 = .rodata:0x8047F780; // type:object size:0x9 scope:local align:4 data:string +@3100 = .rodata:0x8047F78C; // type:object size:0xB scope:local align:4 data:string +@3159 = .rodata:0x8047F798; // type:object size:0xF scope:local align:4 data:string +@3160 = .rodata:0x8047F7A8; // type:object size:0x9 scope:local align:4 data:string +@3213 = .rodata:0x8047F7B4; // type:object size:0x14 scope:local align:4 data:string +@3411 = .rodata:0x8047F7C8; // type:object size:0xE scope:local align:4 data:string +@3412 = .rodata:0x8047F7D8; // type:object size:0xF scope:local align:4 data:string +@3414 = .rodata:0x8047F7E8; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F7F8; // type:label scope:local +@3311 = .rodata:0x8047F7F8; // type:object size:0xC scope:local align:4 +@3475 = .rodata:0x8047F804; // type:object size:0xF scope:local align:4 data:string +@3476 = .rodata:0x8047F814; // type:object size:0x11 scope:local align:4 +@3556 = .rodata:0x8047F828; // type:object size:0xC scope:local align:4 data:string +@4022 = .rodata:0x8047F834; // type:object size:0x1C scope:local align:4 data:string +@4023 = .rodata:0x8047F850; // type:object size:0x1E scope:local align:4 data:string +@4024 = .rodata:0x8047F870; // type:object size:0x9 scope:local align:4 data:string +@4025 = .rodata:0x8047F87C; // type:object size:0x18 scope:local align:4 data:string +@4026 = .rodata:0x8047F894; // type:object size:0xA scope:local align:4 data:string +@4027 = .rodata:0x8047F8A0; // type:object size:0x18 scope:local align:4 data:string +@4028 = .rodata:0x8047F8B8; // type:object size:0xA scope:local align:4 data:string +@5420 = .rodata:0x8047F8C8; // type:object size:0xB scope:local align:4 data:string +@5478 = .rodata:0x8047F8D4; // type:object size:0xB scope:local align:4 data:string +@5479 = .rodata:0x8047F8E0; // type:object size:0x9 scope:local align:4 data:string +@5495 = .rodata:0x8047F8EC; // type:object size:0xD scope:local align:4 data:string +@5499 = .rodata:0x8047F8FC; // type:object size:0x10 scope:local align:4 data:string +@5501 = .rodata:0x8047F90C; // type:object size:0x10 scope:local align:4 data:string +@5503 = .rodata:0x8047F91C; // type:object size:0x10 scope:local align:4 data:string +@5507 = .rodata:0x8047F92C; // type:object size:0xD scope:local align:4 data:string +@5509 = .rodata:0x8047F93C; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8047F948; // type:label scope:local +@3271 = .rodata:0x8047F948; // type:object size:0xD scope:local align:4 data:string +@3351 = .rodata:0x8047F958; // type:object size:0xD scope:local align:4 data:string +@3354 = .rodata:0x8047F968; // type:object size:0xC scope:local align:4 data:string +@3357 = .rodata:0x8047F974; // type:object size:0x9 scope:local align:4 data:string +@3359 = .rodata:0x8047F980; // type:object size:0x9 scope:local align:4 data:string +@3361 = .rodata:0x8047F98C; // type:object size:0xF scope:local align:4 data:string +@3362 = .rodata:0x8047F99C; // type:object size:0xD scope:local align:4 data:string +@3363 = .rodata:0x8047F9AC; // type:object size:0xD scope:local align:4 data:string +@3364 = .rodata:0x8047F9BC; // type:object size:0xD scope:local align:4 data:string +@3365 = .rodata:0x8047F9CC; // type:object size:0x9 scope:local align:4 data:string +@3368 = .rodata:0x8047F9D8; // type:object size:0xD scope:local align:4 data:string +@3369 = .rodata:0x8047F9E8; // type:object size:0xD scope:local align:4 data:string +@3370 = .rodata:0x8047F9F8; // type:object size:0x9 scope:local align:4 data:string +@3373 = .rodata:0x8047FA04; // type:object size:0x9 scope:local align:4 data:string +@3374 = .rodata:0x8047FA10; // type:object size:0xD scope:local align:4 data:string +@3376 = .rodata:0x8047FA20; // type:object size:0xA scope:local align:4 data:string +@3384 = .rodata:0x8047FA2C; // type:object size:0xB scope:local align:4 data:string +@3408 = .rodata:0x8047FA38; // type:object size:0x11 scope:local align:4 data:string +@3409 = .rodata:0x8047FA4C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8047FA58; // type:label scope:local +@3342 = .rodata:0x8047FA58; // type:object size:0xC scope:local align:4 +@3536 = .rodata:0x8047FA64; // type:object size:0xB scope:local align:4 data:string +@3654 = .rodata:0x8047FA70; // type:object size:0xC scope:local align:4 data:string +@3655 = .rodata:0x8047FA7C; // type:object size:0x17 scope:local align:4 data:string +@4179 = .rodata:0x8047FA94; // type:object size:0x9 scope:local align:4 data:string +@4180 = .rodata:0x8047FAA0; // type:object size:0xB scope:local align:4 +@4181 = .rodata:0x8047FAAC; // type:object size:0x17 scope:local align:4 +...rodata.0 = .rodata:0x8047FAC8; // type:label scope:local +@2645 = .rodata:0x8047FAC8; // type:object size:0xC scope:local align:4 data:string +@2672 = .rodata:0x8047FAD4; // type:object size:0xA scope:local align:4 data:string +@2674 = .rodata:0x8047FAE0; // type:object size:0xD scope:local align:4 data:string +@2676 = .rodata:0x8047FAF0; // type:object size:0x1C scope:local align:4 data:string +...rodata.0 = .rodata:0x8047FB10; // type:label scope:local +@3334 = .rodata:0x8047FB10; // type:object size:0xC scope:local align:4 +@4059 = .rodata:0x8047FB1C; // type:object size:0xD scope:local align:4 data:string +@4077 = .rodata:0x8047FB2C; // type:object size:0x1B scope:local align:4 data:string +@4096 = .rodata:0x8047FB48; // type:object size:0xB scope:local align:4 data:string +@4097 = .rodata:0x8047FB54; // type:object size:0x16 scope:local align:4 data:string +@4098 = .rodata:0x8047FB6C; // type:object size:0x10 scope:local align:4 data:string +@4197 = .rodata:0x8047FB7C; // type:object size:0x17 scope:local align:4 data:string +@4342 = .rodata:0x8047FB94; // type:object size:0x11 scope:local align:4 data:string +@4343 = .rodata:0x8047FBA8; // type:object size:0xE scope:local align:4 +@4350 = .rodata:0x8047FBB8; // type:object size:0x12 scope:local align:4 data:string +@4424 = .rodata:0x8047FBCC; // type:object size:0xB scope:local align:4 data:string +@4425 = .rodata:0x8047FBD8; // type:object size:0x9 scope:local align:4 data:string +@4426 = .rodata:0x8047FBE4; // type:object size:0x9 scope:local align:4 data:string +@4427 = .rodata:0x8047FBF0; // type:object size:0xC scope:local align:4 data:string +@4428 = .rodata:0x8047FBFC; // type:object size:0xA scope:local align:4 data:string +@4429 = .rodata:0x8047FC08; // type:object size:0xD scope:local align:4 data:string +@4430 = .rodata:0x8047FC18; // type:object size:0x9 scope:local align:4 data:string +@4431 = .rodata:0x8047FC24; // type:object size:0xC scope:local align:4 data:string +@4432 = .rodata:0x8047FC30; // type:object size:0xD scope:local align:4 data:string +@4433 = .rodata:0x8047FC40; // type:object size:0xA scope:local align:4 data:string +@5187 = .rodata:0x8047FC4C; // type:object size:0x1C scope:local align:4 data:string +@5188 = .rodata:0x8047FC68; // type:object size:0xA scope:local align:4 data:string +@5189 = .rodata:0x8047FC74; // type:object size:0x14 scope:local align:4 data:string +@5466 = .rodata:0x8047FC88; // type:object size:0x1D scope:local align:4 data:string +@5467 = .rodata:0x8047FCA8; // type:object size:0x10 scope:local align:4 data:string +@5468 = .rodata:0x8047FCB8; // type:object size:0x11 scope:local align:4 data:string +@5469 = .rodata:0x8047FCCC; // type:object size:0x14 scope:local align:4 data:string +@5470 = .rodata:0x8047FCE0; // type:object size:0x25 scope:local align:4 data:string +@5471 = .rodata:0x8047FD08; // type:object size:0xE scope:local align:4 data:string +@5472 = .rodata:0x8047FD18; // type:object size:0xB scope:local align:4 data:string +@5473 = .rodata:0x8047FD24; // type:object size:0x14 scope:local align:4 data:string +@5474 = .rodata:0x8047FD38; // type:object size:0x14 scope:local align:4 data:string +@5475 = .rodata:0x8047FD4C; // type:object size:0xF scope:local align:4 data:string +@5542 = .rodata:0x8047FD5C; // type:object size:0x1B scope:local align:4 data:string +@5652 = .rodata:0x8047FD78; // type:object size:0x11 scope:local align:4 data:string +@7361 = .rodata:0x8047FD8C; // type:object size:0xD scope:local align:4 data:string +@7973 = .rodata:0x8047FD9C; // type:object size:0xC scope:local align:4 +@7975 = .rodata:0x8047FDA8; // type:object size:0xC scope:local align:4 +@7977 = .rodata:0x8047FDB4; // type:object size:0xC scope:local align:4 +@7979 = .rodata:0x8047FDC0; // type:object size:0xC scope:local align:4 +@8587 = .rodata:0x8047FDCC; // type:object size:0x9 scope:local align:4 data:string +@8835 = .rodata:0x8047FDD8; // type:object size:0x10 scope:local align:4 data:string +@8837 = .rodata:0x8047FDE8; // type:object size:0x19 scope:local align:4 data:string +@8839 = .rodata:0x8047FE04; // type:object size:0x12 scope:local align:4 data:string +@8841 = .rodata:0x8047FE18; // type:object size:0xE scope:local align:4 data:string +@9555 = .rodata:0x8047FE28; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8047FE38; // type:label scope:local +@2741 = .rodata:0x8047FE38; // type:object size:0xC scope:local align:4 +@4371 = .rodata:0x8047FE44; // type:object size:0xE scope:local align:4 data:string +@4504 = .rodata:0x8047FE54; // type:object size:0x9 scope:local align:4 data:string +@4505 = .rodata:0x8047FE60; // type:object size:0x9 scope:local align:4 data:string +@4506 = .rodata:0x8047FE6C; // type:object size:0xA scope:local align:4 data:string +@4575 = .rodata:0x8047FE78; // type:object size:0xD scope:local align:4 data:string +@4715 = .rodata:0x8047FE88; // type:object size:0xC scope:local align:4 +@4747 = .rodata:0x8047FE94; // type:object size:0x12 scope:local align:4 data:string +@4748 = .rodata:0x8047FEA8; // type:object size:0x9 scope:local align:4 data:string +@4795 = .rodata:0x8047FEB4; // type:object size:0x27 scope:local align:4 data:string +@4796 = .rodata:0x8047FEDC; // type:object size:0x22 scope:local align:4 data:string +@4809 = .rodata:0x8047FF00; // type:object size:0x18 scope:local align:4 data:string +@4864 = .rodata:0x8047FF18; // type:object size:0xA scope:local align:4 data:string +@4991 = .rodata:0x8047FF24; // type:object size:0x9 scope:local align:4 data:string +@4993 = .rodata:0x8047FF30; // type:object size:0xC scope:local align:4 data:string +@4995 = .rodata:0x8047FF3C; // type:object size:0xE scope:local align:4 data:string +@5022 = .rodata:0x8047FF4C; // type:object size:0xE scope:local align:4 data:string +@5135 = .rodata:0x8047FF5C; // type:object size:0x12 scope:local align:4 data:string +@5371 = .rodata:0x8047FF70; // type:object size:0x19 scope:local align:4 data:string +@5391 = .rodata:0x8047FF8C; // type:object size:0x15 scope:local align:4 data:string +@5553 = .rodata:0x8047FFA4; // type:object size:0x10 scope:local align:4 data:string +@5772 = .rodata:0x8047FFB4; // type:object size:0xB scope:local align:4 data:string +@6075 = .rodata:0x8047FFC0; // type:object size:0xD scope:local align:4 data:string +@6076 = .rodata:0x8047FFD0; // type:object size:0xB scope:local align:4 data:string +@6090 = .rodata:0x8047FFDC; // type:object size:0xD scope:local align:4 data:string +@6095 = .rodata:0x8047FFEC; // type:object size:0xC scope:local align:4 data:string +@6107 = .rodata:0x8047FFF8; // type:object size:0xE scope:local align:4 data:string +@3499 = .rodata:0x80480008; // type:object size:0x9 scope:local align:4 data:string +@4249 = .rodata:0x80480014; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80480028; // type:label scope:local +@3880 = .rodata:0x80480028; // type:object size:0xC scope:local align:4 +@3916 = .rodata:0x80480034; // type:object size:0x9 scope:local align:4 data:string +@4081 = .rodata:0x80480040; // type:object size:0xD scope:local align:4 data:string +@4082 = .rodata:0x80480050; // type:object size:0xC scope:local align:4 data:string +@4207 = .rodata:0x8048005C; // type:object size:0x9 scope:local align:4 data:string +@4675 = .rodata:0x80480068; // type:object size:0x9 scope:local align:4 data:string +@4676 = .rodata:0x80480074; // type:object size:0x19 scope:local align:4 data:string +@4677 = .rodata:0x80480090; // type:object size:0xD scope:local align:4 data:string +@4678 = .rodata:0x804800A0; // type:object size:0xE scope:local align:4 data:string +@4679 = .rodata:0x804800B0; // type:object size:0xF scope:local align:4 data:string +@4680 = .rodata:0x804800C0; // type:object size:0x10 scope:local align:4 data:string +@4681 = .rodata:0x804800D0; // type:object size:0xD scope:local align:4 data:string +@4682 = .rodata:0x804800E0; // type:object size:0x9 scope:local align:4 data:string +@4683 = .rodata:0x804800EC; // type:object size:0x9 scope:local align:4 data:string +@4684 = .rodata:0x804800F8; // type:object size:0x1E scope:local align:4 data:string +@4685 = .rodata:0x80480118; // type:object size:0xE scope:local align:4 data:string +@4720 = .rodata:0x80480128; // type:object size:0xA scope:local align:4 data:string +@4727 = .rodata:0x80480134; // type:object size:0x9 scope:local align:4 data:string +@4728 = .rodata:0x80480140; // type:object size:0xB scope:local align:4 data:string +@4856 = .rodata:0x8048014C; // type:object size:0xB scope:local align:4 +@4857 = .rodata:0x80480158; // type:object size:0xA scope:local align:4 data:string +@5020 = .rodata:0x80480164; // type:object size:0xE scope:local align:4 data:string +@5064 = .rodata:0x80480174; // type:object size:0xB scope:local align:4 +@5065 = .rodata:0x80480180; // type:object size:0x10 scope:local align:4 data:string +@5066 = .rodata:0x80480190; // type:object size:0xF scope:local align:4 data:string +@5067 = .rodata:0x804801A0; // type:object size:0xB scope:local align:4 data:string +@5068 = .rodata:0x804801AC; // type:object size:0x11 scope:local align:4 data:string +@5069 = .rodata:0x804801C0; // type:object size:0xE scope:local align:4 data:string +@5070 = .rodata:0x804801D0; // type:object size:0xB scope:local align:4 data:string +@5071 = .rodata:0x804801DC; // type:object size:0xB scope:local align:4 data:string +@5072 = .rodata:0x804801E8; // type:object size:0xB scope:local align:4 data:string +@5073 = .rodata:0x804801F4; // type:object size:0x20 scope:local align:4 data:string +@5074 = .rodata:0x80480214; // type:object size:0xB scope:local align:4 data:string +@5866 = .rodata:0x80480220; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480230; // type:label scope:local +@3523 = .rodata:0x80480230; // type:object size:0xC scope:local align:4 data:string +@3524 = .rodata:0x8048023C; // type:object size:0x18 scope:local align:4 data:string +@3622 = .rodata:0x80480254; // type:object size:0x19 scope:local align:4 data:string +@3703 = .rodata:0x80480270; // type:object size:0x9 scope:local align:4 data:string +@3831 = .rodata:0x8048027C; // type:object size:0x9 scope:local align:4 data:string +@3874 = .rodata:0x80480288; // type:object size:0xD scope:local align:4 data:string +@3890 = .rodata:0x80480298; // type:object size:0x1E scope:local align:4 data:string +@3979 = .rodata:0x804802B8; // type:object size:0x1D scope:local align:4 data:string +@4284 = .rodata:0x804802D8; // type:object size:0x13 scope:local align:4 +@4820 = .rodata:0x804802EC; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480300; // type:label scope:local +@3446 = .rodata:0x80480300; // type:object size:0xD scope:local align:4 data:string +@3468 = .rodata:0x80480310; // type:object size:0xA scope:local align:4 data:string +@3478 = .rodata:0x8048031C; // type:object size:0x10 scope:local align:4 data:string +@3479 = .rodata:0x8048032C; // type:object size:0x10 scope:local align:4 data:string +@3480 = .rodata:0x8048033C; // type:object size:0x9 scope:local align:4 data:string +@3482 = .rodata:0x80480348; // type:object size:0xA scope:local align:4 data:string +@3716 = .rodata:0x80480354; // type:object size:0x15 scope:local align:4 data:string +@3718 = .rodata:0x8048036C; // type:object size:0x11 scope:local align:4 data:string +@3720 = .rodata:0x80480380; // type:object size:0x1B scope:local align:4 data:string +@3413 = .rodata:0x804803A0; // type:object size:0xD scope:local align:4 data:string +@3414 = .rodata:0x804803B0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804803C0; // type:label scope:local +@3723 = .rodata:0x804803C0; // type:object size:0xC scope:local align:4 +@3814 = .rodata:0x804803CC; // type:object size:0x9 scope:local align:4 data:string +@4028 = .rodata:0x804803D8; // type:object size:0x10 scope:local align:4 data:string +@4330 = .rodata:0x804803E8; // type:object size:0x20 scope:local align:4 data:string +@4353 = .rodata:0x80480408; // type:object size:0x11 scope:local align:4 data:string +@4354 = .rodata:0x8048041C; // type:object size:0xA scope:local align:4 data:string +@4355 = .rodata:0x80480428; // type:object size:0x11 scope:local align:4 data:string +@4356 = .rodata:0x8048043C; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480450; // type:label scope:local +@3664 = .rodata:0x80480450; // type:object size:0xA scope:local align:4 data:string +@4065 = .rodata:0x8048045C; // type:object size:0xE scope:local align:4 data:string +@4066 = .rodata:0x8048046C; // type:object size:0xE scope:local align:4 data:string +@4123 = .rodata:0x8048047C; // type:object size:0xC scope:local align:4 data:4byte +@4187 = .rodata:0x80480488; // type:object size:0x19 scope:local align:4 data:string +@4231 = .rodata:0x804804A4; // type:object size:0x9 scope:local align:4 data:string +@4232 = .rodata:0x804804B0; // type:object size:0xA scope:local align:4 data:string +@4233 = .rodata:0x804804BC; // type:object size:0x11 scope:local align:4 data:string +@4967 = .rodata:0x804804D0; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x804804E0; // type:label scope:local +@3464 = .rodata:0x804804E0; // type:object size:0x9 scope:local align:4 data:string +@3570 = .rodata:0x804804EC; // type:object size:0x11 scope:local align:4 data:string +@3571 = .rodata:0x80480500; // type:object size:0x19 scope:local align:4 +@3643 = .rodata:0x8048051C; // type:object size:0xA scope:local align:4 data:string +@3654 = .rodata:0x80480528; // type:object size:0xD scope:local align:4 +@3658 = .rodata:0x80480538; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x80480544; // type:object size:0xA scope:local align:4 data:string +@3682 = .rodata:0x80480550; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x8048055C; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x80480568; // type:object size:0x9 scope:local align:4 +@3685 = .rodata:0x80480574; // type:object size:0xF scope:local align:4 +@3686 = .rodata:0x80480584; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x80480594; // type:object size:0xF scope:local align:4 +@3688 = .rodata:0x804805A4; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x804805B0; // type:object size:0xD scope:local align:4 +@3691 = .rodata:0x804805C0; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x804805D4; // type:object size:0xA scope:local align:4 data:string +@3693 = .rodata:0x804805E0; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x804805F0; // type:object size:0xA scope:local align:4 data:string +@3695 = .rodata:0x804805FC; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x80480608; // type:object size:0x22 scope:local align:4 +@3703 = .rodata:0x8048062C; // type:object size:0xE scope:local align:4 data:string +@3729 = .rodata:0x8048063C; // type:object size:0x9 scope:local align:4 data:string +@3935 = .rodata:0x80480648; // type:object size:0x9 scope:local align:4 data:string +@4004 = .rodata:0x80480654; // type:object size:0x10 scope:local align:4 data:string +@3480 = .rodata:0x80480668; // type:object size:0x10 scope:local align:4 data:string +@3481 = .rodata:0x80480678; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x80480684; // type:object size:0xC scope:local align:4 data:4byte +@3547 = .rodata:0x80480690; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x804806A0; // type:label scope:local +@3958 = .rodata:0x804806A0; // type:object size:0xC scope:local align:4 +@3991 = .rodata:0x804806AC; // type:object size:0xD scope:local align:4 data:string +@4567 = .rodata:0x804806BC; // type:object size:0xA scope:local align:4 data:string +@4808 = .rodata:0x804806C8; // type:object size:0x11 scope:local align:4 data:string +@4809 = .rodata:0x804806DC; // type:object size:0x10 scope:local align:4 data:string +@4953 = .rodata:0x804806EC; // type:object size:0x9 scope:local align:4 data:string +@4981 = .rodata:0x804806F8; // type:object size:0x9 scope:local align:4 data:string +@4982 = .rodata:0x80480704; // type:object size:0x1C scope:local align:4 data:string +@5016 = .rodata:0x80480720; // type:object size:0xD scope:local align:4 data:string +@5017 = .rodata:0x80480730; // type:object size:0xA scope:local align:4 data:string +@5018 = .rodata:0x8048073C; // type:object size:0x14 scope:local align:4 data:string +@5205 = .rodata:0x80480750; // type:object size:0x14 scope:local align:4 +@5263 = .rodata:0x80480764; // type:object size:0x9 scope:local align:4 data:string +@5388 = .rodata:0x80480770; // type:object size:0x9 scope:local align:4 data:string +@5974 = .rodata:0x8048077C; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480790; // type:label scope:local +@3721 = .rodata:0x80480790; // type:object size:0xA scope:local align:4 data:string +@3900 = .rodata:0x8048079C; // type:object size:0xE scope:local align:4 data:string +@3901 = .rodata:0x804807AC; // type:object size:0x9 scope:local align:4 data:string +@4813 = .rodata:0x804807B8; // type:object size:0xF scope:local align:4 data:string +@4815 = .rodata:0x804807C8; // type:object size:0xA scope:local align:4 data:string +@5034 = .rodata:0x804807D4; // type:object size:0xA scope:local align:4 data:string +@5036 = .rodata:0x804807E0; // type:object size:0xA scope:local align:4 data:string +@5037 = .rodata:0x804807EC; // type:object size:0xA scope:local align:4 data:string +@5038 = .rodata:0x804807F8; // type:object size:0xA scope:local align:4 data:string +@5324 = .rodata:0x80480804; // type:object size:0x1A scope:local align:4 data:string +@5325 = .rodata:0x80480820; // type:object size:0x1D scope:local align:4 data:string +@5348 = .rodata:0x80480840; // type:object size:0x13 scope:local align:4 data:string +@5349 = .rodata:0x80480854; // type:object size:0x13 scope:local align:4 data:string +@5350 = .rodata:0x80480868; // type:object size:0xF scope:local align:4 data:string +@5351 = .rodata:0x80480878; // type:object size:0xE scope:local align:4 data:string +@5356 = .rodata:0x80480888; // type:object size:0xD scope:local align:4 data:string +@5358 = .rodata:0x80480898; // type:object size:0xD scope:local align:4 data:string +@5359 = .rodata:0x804808A8; // type:object size:0x11 scope:local align:4 +@5361 = .rodata:0x804808BC; // type:object size:0x11 scope:local align:4 +@5362 = .rodata:0x804808D0; // type:object size:0x15 scope:local align:4 +@5365 = .rodata:0x804808E8; // type:object size:0x15 scope:local align:4 +@5366 = .rodata:0x80480900; // type:object size:0xB scope:local align:4 +@5367 = .rodata:0x8048090C; // type:object size:0xF scope:local align:4 +@5424 = .rodata:0x8048091C; // type:object size:0xA scope:local align:4 data:string +@5425 = .rodata:0x80480928; // type:object size:0xA scope:local align:4 data:string +@5426 = .rodata:0x80480934; // type:object size:0xA scope:local align:4 data:string +@5427 = .rodata:0x80480940; // type:object size:0x11 scope:local align:4 data:string +@5450 = .rodata:0x80480954; // type:object size:0xD scope:local align:4 +@5507 = .rodata:0x80480964; // type:object size:0xC scope:local align:4 +@5509 = .rodata:0x80480970; // type:object size:0xC scope:local align:4 +@5511 = .rodata:0x8048097C; // type:object size:0xC scope:local align:4 +@5513 = .rodata:0x80480988; // type:object size:0xC scope:local align:4 +@5515 = .rodata:0x80480994; // type:object size:0xC scope:local align:4 +@5691 = .rodata:0x804809A0; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x804809B0; // type:label scope:local +@3748 = .rodata:0x804809B0; // type:object size:0x9 scope:local align:4 data:string +@4470 = .rodata:0x804809BC; // type:object size:0x11 scope:local align:4 +@4471 = .rodata:0x804809D0; // type:object size:0x1D scope:local align:4 data:string +@4472 = .rodata:0x804809F0; // type:object size:0x1C scope:local align:4 data:string +@4485 = .rodata:0x80480A0C; // type:object size:0x13 scope:local align:4 data:string +@4486 = .rodata:0x80480A20; // type:object size:0x13 scope:local align:4 data:string +@4488 = .rodata:0x80480A34; // type:object size:0xF scope:local align:4 data:string +@4489 = .rodata:0x80480A44; // type:object size:0xE scope:local align:4 data:string +@4495 = .rodata:0x80480A54; // type:object size:0xD scope:local align:4 data:string +@4512 = .rodata:0x80480A64; // type:object size:0xD scope:local align:4 data:string +@4513 = .rodata:0x80480A74; // type:object size:0xA scope:local align:4 +@4516 = .rodata:0x80480A80; // type:object size:0xA scope:local align:4 +@4518 = .rodata:0x80480A8C; // type:object size:0xA scope:local align:4 +@4520 = .rodata:0x80480A98; // type:object size:0xA scope:local align:4 +@4522 = .rodata:0x80480AA4; // type:object size:0x11 scope:local align:4 +@4524 = .rodata:0x80480AB8; // type:object size:0x11 scope:local align:4 +@4525 = .rodata:0x80480ACC; // type:object size:0x11 scope:local align:4 +@4526 = .rodata:0x80480AE0; // type:object size:0x11 scope:local align:4 +@4527 = .rodata:0x80480AF4; // type:object size:0xC scope:local align:4 +@4583 = .rodata:0x80480B00; // type:object size:0x9 scope:local align:4 data:string +@4584 = .rodata:0x80480B0C; // type:object size:0xA scope:local align:4 data:string +@4585 = .rodata:0x80480B18; // type:object size:0xC scope:local align:4 data:string +@4685 = .rodata:0x80480B24; // type:object size:0xA scope:local align:4 data:string +@4697 = .rodata:0x80480B30; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80480B40; // type:label scope:local +@3420 = .rodata:0x80480B40; // type:object size:0xD scope:local align:4 data:string +@3446 = .rodata:0x80480B50; // type:object size:0xA scope:local align:4 data:string +@3456 = .rodata:0x80480B5C; // type:object size:0x10 scope:local align:4 data:string +@3457 = .rodata:0x80480B6C; // type:object size:0x10 scope:local align:4 data:string +@3458 = .rodata:0x80480B7C; // type:object size:0x9 scope:local align:4 data:string +@3460 = .rodata:0x80480B88; // type:object size:0xA scope:local align:4 data:string +@3648 = .rodata:0x80480B94; // type:object size:0x15 scope:local align:4 data:string +@3650 = .rodata:0x80480BAC; // type:object size:0x11 scope:local align:4 data:string +@3652 = .rodata:0x80480BC0; // type:object size:0x1B scope:local align:4 data:string +...rodata.0 = .rodata:0x80480BE0; // type:label scope:local +@3423 = .rodata:0x80480BE0; // type:object size:0xD scope:local align:4 data:string +@3461 = .rodata:0x80480BF0; // type:object size:0xB scope:local align:4 data:string +@3462 = .rodata:0x80480BFC; // type:object size:0xB scope:local align:4 data:string +@3463 = .rodata:0x80480C08; // type:object size:0x9 scope:local align:4 data:string +@3465 = .rodata:0x80480C14; // type:object size:0xA scope:local align:4 data:string +@3893 = .rodata:0x80480C20; // type:object size:0x15 scope:local align:4 data:string +@3895 = .rodata:0x80480C38; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480C50; // type:label scope:local +@3518 = .rodata:0x80480C50; // type:object size:0xC scope:local align:4 +@3555 = .rodata:0x80480C5C; // type:object size:0xB scope:local align:4 data:string +@3634 = .rodata:0x80480C68; // type:object size:0x9 scope:local align:4 data:string +@3635 = .rodata:0x80480C74; // type:object size:0xB scope:local align:4 data:string +@3637 = .rodata:0x80480C80; // type:object size:0xC scope:local align:4 data:string +@3638 = .rodata:0x80480C8C; // type:object size:0xB scope:local align:4 data:string +@3639 = .rodata:0x80480C98; // type:object size:0xB scope:local align:4 data:string +@3646 = .rodata:0x80480CA4; // type:object size:0xE scope:local align:4 data:string +@3647 = .rodata:0x80480CB4; // type:object size:0x9 scope:local align:4 data:string +@3649 = .rodata:0x80480CC0; // type:object size:0xE scope:local align:4 data:string +@3717 = .rodata:0x80480CD0; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480CE0; // type:label scope:local +@3462 = .rodata:0x80480CE0; // type:object size:0x9 scope:local align:4 data:string +@3473 = .rodata:0x80480CEC; // type:object size:0x11 scope:local align:4 data:string +@3474 = .rodata:0x80480D00; // type:object size:0x9 scope:local align:4 data:string +@3971 = .rodata:0x80480D0C; // type:object size:0x9 scope:local align:4 data:string +@4200 = .rodata:0x80480D18; // type:object size:0xF scope:local align:4 data:string +@4682 = .rodata:0x80480D28; // type:object size:0x12 scope:local align:4 data:string +@4879 = .rodata:0x80480D3C; // type:object size:0x14 scope:local align:4 data:string +@4997 = .rodata:0x80480D50; // type:object size:0x20 scope:local align:4 data:string +@5057 = .rodata:0x80480D70; // type:object size:0x29 scope:local align:4 data:string +@5121 = .rodata:0x80480D9C; // type:object size:0xD scope:local align:4 +@5141 = .rodata:0x80480DAC; // type:object size:0xB scope:local align:4 +@5142 = .rodata:0x80480DB8; // type:object size:0x9 scope:local align:4 +@5143 = .rodata:0x80480DC4; // type:object size:0x9 scope:local align:4 +@5159 = .rodata:0x80480DD0; // type:object size:0x26 scope:local align:4 +repay_levs__26@unnamed@gamePlayData_cpp@ = .rodata:0x80480DF8; // type:object size:0x28 scope:local align:4 data:float +@5509 = .rodata:0x80480E20; // type:object size:0x12 scope:local align:4 +...rodata.0 = .rodata:0x80480E38; // type:label scope:local +@2735 = .rodata:0x80480E38; // type:object size:0xC scope:local align:4 +@3887 = .rodata:0x80480E44; // type:object size:0x9 scope:local align:4 data:string +@3988 = .rodata:0x80480E50; // type:object size:0xA scope:local align:4 data:string +@3996 = .rodata:0x80480E5C; // type:object size:0x9 scope:local align:4 data:string +@3998 = .rodata:0x80480E68; // type:object size:0xB scope:local align:4 data:string +@4000 = .rodata:0x80480E74; // type:object size:0xB scope:local align:4 data:string +@4079 = .rodata:0x80480E80; // type:object size:0x12 scope:local align:4 data:string +@4540 = .rodata:0x80480E94; // type:object size:0x9 scope:local align:4 data:string +@4562 = .rodata:0x80480EA0; // type:object size:0x20 scope:local align:4 data:string +@4600 = .rodata:0x80480EC0; // type:object size:0x11 scope:local align:4 data:string +@4601 = .rodata:0x80480ED4; // type:object size:0xA scope:local align:4 data:string +@4602 = .rodata:0x80480EE0; // type:object size:0x11 scope:local align:4 data:string +@4603 = .rodata:0x80480EF4; // type:object size:0x12 scope:local align:4 data:string +@4642 = .rodata:0x80480F08; // type:object size:0xD scope:local align:4 data:string +@4643 = .rodata:0x80480F18; // type:object size:0x9 scope:local align:4 data:string +@4645 = .rodata:0x80480F24; // type:object size:0x19 scope:local align:4 data:string +...rodata.0 = .rodata:0x80480F40; // type:label scope:local +@3808 = .rodata:0x80480F40; // type:object size:0xC scope:local align:4 +@3858 = .rodata:0x80480F4C; // type:object size:0x10 scope:local align:4 data:string +@4021 = .rodata:0x80480F5C; // type:object size:0x14 scope:local align:4 data:string +@4022 = .rodata:0x80480F70; // type:object size:0x9 scope:local align:4 data:string +@4127 = .rodata:0x80480F7C; // type:object size:0x14 scope:local align:4 data:string +@4226 = .rodata:0x80480F90; // type:object size:0x1D scope:local align:4 data:string +@4266 = .rodata:0x80480FB0; // type:object size:0x19 scope:local align:4 data:string +@4511 = .rodata:0x80480FCC; // type:object size:0x1E scope:local align:4 data:string +@4512 = .rodata:0x80480FEC; // type:object size:0xB scope:local align:4 +@4513 = .rodata:0x80480FF8; // type:object size:0x20 scope:local align:4 data:string +@4531 = .rodata:0x80481018; // type:object size:0x13 scope:local align:4 data:string +@4532 = .rodata:0x8048102C; // type:object size:0x13 scope:local align:4 data:string +@4534 = .rodata:0x80481040; // type:object size:0xF scope:local align:4 data:string +@4535 = .rodata:0x80481050; // type:object size:0xE scope:local align:4 data:string +@4541 = .rodata:0x80481060; // type:object size:0xD scope:local align:4 data:string +@4543 = .rodata:0x80481070; // type:object size:0x10 scope:local align:4 data:string +@4569 = .rodata:0x80481080; // type:object size:0xF scope:local align:4 data:string +@4570 = .rodata:0x80481090; // type:object size:0xA scope:local align:4 data:string +@4571 = .rodata:0x8048109C; // type:object size:0xC scope:local align:4 data:string +@4572 = .rodata:0x804810A8; // type:object size:0xD scope:local align:4 data:string +@4689 = .rodata:0x804810B8; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804810C8; // type:label scope:local +@3775 = .rodata:0x804810C8; // type:object size:0xB scope:local align:4 data:string +@3889 = .rodata:0x804810D4; // type:object size:0xF scope:local align:4 data:string +@3890 = .rodata:0x804810E4; // type:object size:0x19 scope:local align:4 data:string +@4078 = .rodata:0x80481100; // type:object size:0x9 scope:local align:4 data:string +@4945 = .rodata:0x8048110C; // type:object size:0xD scope:local align:4 +@4994 = .rodata:0x8048111C; // type:object size:0x1A scope:local align:4 data:string +@4995 = .rodata:0x80481138; // type:object size:0x1F scope:local align:4 data:string +@4996 = .rodata:0x80481158; // type:object size:0x1E scope:local align:4 data:string +@5014 = .rodata:0x80481178; // type:object size:0x13 scope:local align:4 data:string +@5015 = .rodata:0x8048118C; // type:object size:0x13 scope:local align:4 data:string +@5017 = .rodata:0x804811A0; // type:object size:0xF scope:local align:4 data:string +@5018 = .rodata:0x804811B0; // type:object size:0xE scope:local align:4 data:string +@5024 = .rodata:0x804811C0; // type:object size:0xD scope:local align:4 data:string +@5026 = .rodata:0x804811D0; // type:object size:0xE scope:local align:4 data:string +@5115 = .rodata:0x804811E0; // type:object size:0x1B scope:local align:4 data:string +@5117 = .rodata:0x804811FC; // type:object size:0xD scope:local align:4 data:string +@5118 = .rodata:0x8048120C; // type:object size:0x1A scope:local align:4 data:string +@5119 = .rodata:0x80481228; // type:object size:0xC scope:local align:4 data:string +@5120 = .rodata:0x80481234; // type:object size:0x1B scope:local align:4 data:string +@5121 = .rodata:0x80481250; // type:object size:0xD scope:local align:4 data:string +@5122 = .rodata:0x80481260; // type:object size:0xA scope:local align:4 data:string +@5123 = .rodata:0x8048126C; // type:object size:0xD scope:local align:4 data:string +@5186 = .rodata:0x8048127C; // type:object size:0x9 scope:local align:4 data:string +@5187 = .rodata:0x80481288; // type:object size:0x20 scope:local align:4 data:string +@5189 = .rodata:0x804812A8; // type:object size:0xE scope:local align:4 data:string +@5215 = .rodata:0x804812B8; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x804812C8; // type:label scope:local +@3228 = .rodata:0x804812C8; // type:object size:0xE scope:local align:4 data:string +@3306 = .rodata:0x804812D8; // type:object size:0x12 scope:local align:4 data:string +@3307 = .rodata:0x804812EC; // type:object size:0x9 scope:local align:4 data:string +@3417 = .rodata:0x804812F8; // type:object size:0x10 scope:local align:4 data:string +@3418 = .rodata:0x80481308; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481320; // type:label scope:local +@3376 = .rodata:0x80481320; // type:object size:0xF scope:local align:4 data:string +@3608 = .rodata:0x80481330; // type:object size:0x17 scope:local align:4 data:string +@3609 = .rodata:0x80481348; // type:object size:0x18 scope:local align:4 data:string +@3611 = .rodata:0x80481360; // type:object size:0x13 scope:local align:4 data:string +@3612 = .rodata:0x80481374; // type:object size:0xD scope:local align:4 data:string +@3713 = .rodata:0x80481384; // type:object size:0x22 scope:local align:4 data:string +@3714 = .rodata:0x804813A8; // type:object size:0x24 scope:local align:4 data:string +@3735 = .rodata:0x804813CC; // type:object size:0x9 scope:local align:4 data:string +@3773 = .rodata:0x804813D8; // type:object size:0x1A scope:local align:4 data:string +@3943 = .rodata:0x804813F4; // type:object size:0xB scope:local align:4 data:string +@3944 = .rodata:0x80481400; // type:object size:0xF scope:local align:4 data:string +@3945 = .rodata:0x80481410; // type:object size:0xA scope:local align:4 data:string +@3946 = .rodata:0x8048141C; // type:object size:0xE scope:local align:4 data:string +@3947 = .rodata:0x8048142C; // type:object size:0x10 scope:local align:4 data:string +@3948 = .rodata:0x8048143C; // type:object size:0xE scope:local align:4 data:string +@4038 = .rodata:0x8048144C; // type:object size:0x1E scope:local align:4 data:string +@4039 = .rodata:0x8048146C; // type:object size:0x18 scope:local align:4 data:string +@4053 = .rodata:0x80481484; // type:object size:0xF scope:local align:4 data:string +@4054 = .rodata:0x80481494; // type:object size:0x10 scope:local align:4 data:string +@4055 = .rodata:0x804814A4; // type:object size:0xB scope:local align:4 data:string +@4056 = .rodata:0x804814B0; // type:object size:0x9 scope:local align:4 data:string +@4057 = .rodata:0x804814BC; // type:object size:0x12 scope:local align:4 data:string +@4058 = .rodata:0x804814D0; // type:object size:0x12 scope:local align:4 data:string +@4059 = .rodata:0x804814E4; // type:object size:0x11 scope:local align:4 data:string +@4060 = .rodata:0x804814F8; // type:object size:0x11 scope:local align:4 data:string +@4061 = .rodata:0x8048150C; // type:object size:0x11 scope:local align:4 data:string +@4062 = .rodata:0x80481520; // type:object size:0x11 scope:local align:4 data:string +@4081 = .rodata:0x80481534; // type:object size:0x16 scope:local align:4 data:string +@4083 = .rodata:0x8048154C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80481558; // type:label scope:local +@3842 = .rodata:0x80481558; // type:object size:0xC scope:local align:4 +@3880 = .rodata:0x80481564; // type:object size:0xD scope:local align:4 data:string +@4066 = .rodata:0x80481574; // type:object size:0xE scope:local align:4 data:string +@4113 = .rodata:0x80481584; // type:object size:0x11 scope:local align:4 data:string +@4114 = .rodata:0x80481598; // type:object size:0x9 scope:local align:4 data:string +@4454 = .rodata:0x804815A4; // type:object size:0x9 scope:local align:4 data:string +@4455 = .rodata:0x804815B0; // type:object size:0x1C scope:local align:4 data:string +@4456 = .rodata:0x804815CC; // type:object size:0x20 scope:local align:4 data:string +@4477 = .rodata:0x804815EC; // type:object size:0x13 scope:local align:4 data:string +@4478 = .rodata:0x80481600; // type:object size:0x13 scope:local align:4 data:string +@4479 = .rodata:0x80481614; // type:object size:0xF scope:local align:4 data:string +@4480 = .rodata:0x80481624; // type:object size:0xE scope:local align:4 data:string +@4485 = .rodata:0x80481634; // type:object size:0xD scope:local align:4 data:string +@4487 = .rodata:0x80481644; // type:object size:0xD scope:local align:4 data:string +@4488 = .rodata:0x80481654; // type:object size:0xA scope:local align:4 +@4491 = .rodata:0x80481660; // type:object size:0xA scope:local align:4 +@4493 = .rodata:0x8048166C; // type:object size:0xA scope:local align:4 +@4495 = .rodata:0x80481678; // type:object size:0xA scope:local align:4 +@4656 = .rodata:0x80481684; // type:object size:0xE scope:local align:4 data:string +@4787 = .rodata:0x80481694; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804816A0; // type:label scope:local +@3856 = .rodata:0x804816A0; // type:object size:0xC scope:local align:4 +@3917 = .rodata:0x804816AC; // type:object size:0xE scope:local align:4 data:string +@4039 = .rodata:0x804816BC; // type:object size:0x12 scope:local align:4 data:string +@4040 = .rodata:0x804816D0; // type:object size:0xC scope:local align:4 data:string +@4142 = .rodata:0x804816DC; // type:object size:0x38 scope:local align:4 data:string +@4424 = .rodata:0x80481714; // type:object size:0x9 scope:local align:4 data:string +@4508 = .rodata:0x80481720; // type:object size:0xA scope:local align:4 data:string +@4509 = .rodata:0x8048172C; // type:object size:0xE scope:local align:4 data:string +@4510 = .rodata:0x8048173C; // type:object size:0x1D scope:local align:4 data:string +@4511 = .rodata:0x8048175C; // type:object size:0xA scope:local align:4 data:string +@4513 = .rodata:0x80481768; // type:object size:0x11 scope:local align:4 data:string +@4514 = .rodata:0x8048177C; // type:object size:0x11 scope:local align:4 data:string +@4515 = .rodata:0x80481790; // type:object size:0x11 scope:local align:4 data:string +@4516 = .rodata:0x804817A4; // type:object size:0xC scope:local align:4 data:string +@4517 = .rodata:0x804817B0; // type:object size:0xD scope:local align:4 data:string +@4518 = .rodata:0x804817C0; // type:object size:0xF scope:local align:4 data:string +@4519 = .rodata:0x804817D0; // type:object size:0xF scope:local align:4 data:string +@4559 = .rodata:0x804817E0; // type:object size:0xA scope:local align:4 data:string +@4571 = .rodata:0x804817EC; // type:object size:0x9 scope:local align:4 data:string +@4572 = .rodata:0x804817F8; // type:object size:0xE scope:local align:4 data:string +@4618 = .rodata:0x80481808; // type:object size:0xB scope:local align:4 data:string +@4619 = .rodata:0x80481814; // type:object size:0xB scope:local align:4 data:string +@4767 = .rodata:0x80481820; // type:object size:0x9 scope:local align:4 data:string +@4824 = .rodata:0x8048182C; // type:object size:0xD scope:local align:4 +@4825 = .rodata:0x8048183C; // type:object size:0x9 scope:local align:4 data:string +@4826 = .rodata:0x80481848; // type:object size:0xE scope:local align:4 data:string +@4997 = .rodata:0x80481858; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80481868; // type:label scope:local +@3808 = .rodata:0x80481868; // type:object size:0xC scope:local align:4 +@3841 = .rodata:0x80481874; // type:object size:0xB scope:local align:4 data:string +@3937 = .rodata:0x80481880; // type:object size:0xF scope:local align:4 data:string +@3938 = .rodata:0x80481890; // type:object size:0x9 scope:local align:4 data:string +@3981 = .rodata:0x8048189C; // type:object size:0x10 scope:local align:4 data:string +@4262 = .rodata:0x804818AC; // type:object size:0x1A scope:local align:4 data:string +@4263 = .rodata:0x804818C8; // type:object size:0x1E scope:local align:4 data:string +@4281 = .rodata:0x804818E8; // type:object size:0x13 scope:local align:4 data:string +@4282 = .rodata:0x804818FC; // type:object size:0x13 scope:local align:4 data:string +@4284 = .rodata:0x80481910; // type:object size:0xF scope:local align:4 data:string +@4285 = .rodata:0x80481920; // type:object size:0xE scope:local align:4 data:string +@4291 = .rodata:0x80481930; // type:object size:0xD scope:local align:4 data:string +@4293 = .rodata:0x80481940; // type:object size:0xE scope:local align:4 data:string +@4350 = .rodata:0x80481950; // type:object size:0xA scope:local align:4 data:string +@4351 = .rodata:0x8048195C; // type:object size:0xA scope:local align:4 data:string +@4352 = .rodata:0x80481968; // type:object size:0xC scope:local align:4 data:string +@4353 = .rodata:0x80481974; // type:object size:0x9 scope:local align:4 data:string +@3733 = .rodata:0x80481980; // type:object size:0xD scope:local align:4 data:string +@3734 = .rodata:0x80481990; // type:object size:0x11 scope:local align:4 data:string +@3789 = .rodata:0x804819A4; // type:object size:0x11 scope:local align:4 data:string +@3790 = .rodata:0x804819B8; // type:object size:0x1C scope:local align:4 data:string +@3871 = .rodata:0x804819D4; // type:object size:0xB scope:local align:4 data:string +@4005 = .rodata:0x804819E0; // type:object size:0xC scope:local align:4 data:string +@3620 = .rodata:0x804819F0; // type:object size:0x12 scope:local align:4 data:string +@3621 = .rodata:0x80481A04; // type:object size:0x9 scope:local align:4 data:string +@3791 = .rodata:0x80481A10; // type:object size:0xD scope:local align:4 data:string +@3970 = .rodata:0x80481A20; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481A38; // type:label scope:local +@3277 = .rodata:0x80481A38; // type:object size:0xA scope:local align:4 data:string +@3285 = .rodata:0x80481A44; // type:object size:0xC scope:local align:4 data:string +@3286 = .rodata:0x80481A50; // type:object size:0x10 scope:local align:4 +@3311 = .rodata:0x80481A60; // type:object size:0xD scope:local align:4 +@3351 = .rodata:0x80481A70; // type:object size:0xC scope:local align:4 data:string +@3352 = .rodata:0x80481A7C; // type:object size:0xE scope:local align:4 data:string +@3353 = .rodata:0x80481A8C; // type:object size:0x1A scope:local align:4 data:string +@3371 = .rodata:0x80481AA8; // type:object size:0xE scope:local align:4 data:string +@3372 = .rodata:0x80481AB8; // type:object size:0x19 scope:local align:4 data:string +@3417 = .rodata:0x80481AD4; // type:object size:0x9 scope:local align:4 data:string +@3433 = .rodata:0x80481AE0; // type:object size:0xF scope:local align:4 data:string +@3388 = .rodata:0x80481AF0; // type:object size:0xF scope:local align:4 data:string +@3389 = .rodata:0x80481B00; // type:object size:0x9 scope:local align:4 data:string +@3499 = .rodata:0x80481B0C; // type:object size:0xA scope:local align:4 data:string +@3500 = .rodata:0x80481B18; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80481B28; // type:label scope:local +@3192 = .rodata:0x80481B28; // type:object size:0x10 scope:local align:4 data:string +@3263 = .rodata:0x80481B38; // type:object size:0x22 scope:local align:4 data:string +@3264 = .rodata:0x80481B5C; // type:object size:0x14 scope:local align:4 data:string +@3265 = .rodata:0x80481B70; // type:object size:0x9 scope:local align:4 data:string +@3266 = .rodata:0x80481B7C; // type:object size:0xE scope:local align:4 data:string +@3267 = .rodata:0x80481B8C; // type:object size:0xE scope:local align:4 data:string +@3268 = .rodata:0x80481B9C; // type:object size:0x13 scope:local align:4 data:string +@3269 = .rodata:0x80481BB0; // type:object size:0x12 scope:local align:4 data:string +@3270 = .rodata:0x80481BC4; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481BE0; // type:label scope:local +@3433 = .rodata:0x80481BE0; // type:object size:0xC scope:local align:4 +@3847 = .rodata:0x80481BEC; // type:object size:0xD scope:local align:4 data:string +@3870 = .rodata:0x80481BFC; // type:object size:0xA scope:local align:4 data:string +@3871 = .rodata:0x80481C08; // type:object size:0xA scope:local align:4 data:string +@3875 = .rodata:0x80481C14; // type:object size:0xA scope:local align:4 data:string +@3877 = .rodata:0x80481C20; // type:object size:0xB scope:local align:4 data:string +@3888 = .rodata:0x80481C2C; // type:object size:0xA scope:local align:4 data:string +@3889 = .rodata:0x80481C38; // type:object size:0x9 scope:local align:4 data:string +@3894 = .rodata:0x80481C44; // type:object size:0x9 scope:local align:4 data:string +@3897 = .rodata:0x80481C50; // type:object size:0xB scope:local align:4 data:string +@3899 = .rodata:0x80481C5C; // type:object size:0xC scope:local align:4 data:string +@3967 = .rodata:0x80481C68; // type:object size:0x11 scope:local align:4 data:string +@3968 = .rodata:0x80481C7C; // type:object size:0x9 scope:local align:4 data:string +@3988 = .rodata:0x80481C88; // type:object size:0xF scope:local align:4 data:string +@4017 = .rodata:0x80481C98; // type:object size:0x9 scope:local align:4 data:string +@4018 = .rodata:0x80481CA4; // type:object size:0xD scope:local align:4 +@4020 = .rodata:0x80481CB4; // type:object size:0xC scope:local align:4 +@4023 = .rodata:0x80481CC0; // type:object size:0xF scope:local align:4 +@5750 = .rodata:0x80481CD0; // type:object size:0xA scope:local align:4 +@5810 = .rodata:0x80481CDC; // type:object size:0xB scope:local align:4 data:string +@5926 = .rodata:0x80481CE8; // type:object size:0x9 scope:local align:4 data:string +@5927 = .rodata:0x80481CF4; // type:object size:0x1C scope:local align:4 data:string +@5929 = .rodata:0x80481D10; // type:object size:0x12 scope:local align:4 data:string +@5930 = .rodata:0x80481D24; // type:object size:0x12 scope:local align:4 data:string +@5932 = .rodata:0x80481D38; // type:object size:0xA scope:local align:4 data:string +@5933 = .rodata:0x80481D44; // type:object size:0xA scope:local align:4 data:string +@6059 = .rodata:0x80481D50; // type:object size:0x9 scope:local align:4 data:string +@6157 = .rodata:0x80481D5C; // type:object size:0xF scope:local align:4 +@6204 = .rodata:0x80481D6C; // type:object size:0x16 scope:local align:4 data:string +@7403 = .rodata:0x80481D84; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481D98; // type:label scope:local +@3368 = .rodata:0x80481D98; // type:object size:0xC scope:local align:4 +@3836 = .rodata:0x80481DA4; // type:object size:0xB scope:local align:4 data:string +@3837 = .rodata:0x80481DB0; // type:object size:0xB scope:local align:4 data:string +@3838 = .rodata:0x80481DBC; // type:object size:0x9 scope:local align:4 data:string +@3839 = .rodata:0x80481DC8; // type:object size:0xE scope:local align:4 data:string +@3840 = .rodata:0x80481DD8; // type:object size:0x12 scope:local align:4 data:string +@3841 = .rodata:0x80481DEC; // type:object size:0xC scope:local align:4 data:string +@3844 = .rodata:0x80481DF8; // type:object size:0xA scope:local align:4 data:string +@3872 = .rodata:0x80481E04; // type:object size:0xB scope:local align:4 data:string +@4161 = .rodata:0x80481E10; // type:object size:0x15 scope:local align:4 data:string +@4298 = .rodata:0x80481E28; // type:object size:0x15 scope:local align:4 data:string +@3220 = .rodata:0x80481E40; // type:object size:0xD scope:local align:4 data:string +@3221 = .rodata:0x80481E50; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481E60; // type:label scope:local +@3433 = .rodata:0x80481E60; // type:object size:0xC scope:local align:4 +@3798 = .rodata:0x80481E6C; // type:object size:0x9 scope:local align:4 data:string +@4044 = .rodata:0x80481E78; // type:object size:0xD scope:local align:4 data:string +@4045 = .rodata:0x80481E88; // type:object size:0x9 scope:local align:4 data:string +@4130 = .rodata:0x80481E94; // type:object size:0xA scope:local align:4 +@4188 = .rodata:0x80481EA0; // type:object size:0xB scope:local align:4 data:string +@4245 = .rodata:0x80481EAC; // type:object size:0x9 scope:local align:4 +@4246 = .rodata:0x80481EB8; // type:object size:0x18 scope:local align:4 data:string +@4248 = .rodata:0x80481ED0; // type:object size:0xA scope:local align:4 data:string +@4249 = .rodata:0x80481EDC; // type:object size:0xB scope:local align:4 data:string +@4250 = .rodata:0x80481EE8; // type:object size:0xB scope:local align:4 data:string +@4251 = .rodata:0x80481EF4; // type:object size:0xB scope:local align:4 data:string +@4417 = .rodata:0x80481F00; // type:object size:0xF scope:local align:4 +@4418 = .rodata:0x80481F10; // type:object size:0xD scope:local align:4 +@4469 = .rodata:0x80481F20; // type:object size:0x12 scope:local align:4 data:string +@4581 = .rodata:0x80481F34; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481F48; // type:label scope:local +@3426 = .rodata:0x80481F48; // type:object size:0xA scope:local align:4 data:string +@3485 = .rodata:0x80481F54; // type:object size:0xD scope:local align:4 data:string +@3486 = .rodata:0x80481F64; // type:object size:0xD scope:local align:4 data:string +@3487 = .rodata:0x80481F74; // type:object size:0x9 scope:local align:4 data:string +@3489 = .rodata:0x80481F80; // type:object size:0xA scope:local align:4 data:string +@3693 = .rodata:0x80481F8C; // type:object size:0x15 scope:local align:4 data:string +@3695 = .rodata:0x80481FA4; // type:object size:0x11 scope:local align:4 data:string +@3697 = .rodata:0x80481FB8; // type:object size:0x1B scope:local align:4 data:string +@3523 = .rodata:0x80481FD8; // type:object size:0xB scope:local align:4 data:string +@3524 = .rodata:0x80481FE4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80481FF0; // type:label scope:local +@2741 = .rodata:0x80481FF0; // type:object size:0xC scope:local align:4 +@4385 = .rodata:0x80481FFC; // type:object size:0xE scope:local align:4 data:string +@4415 = .rodata:0x8048200C; // type:object size:0xE scope:local align:4 data:string +@4416 = .rodata:0x8048201C; // type:object size:0x14 scope:local align:4 data:string +@4417 = .rodata:0x80482030; // type:object size:0x17 scope:local align:4 data:string +@4418 = .rodata:0x80482048; // type:object size:0x12 scope:local align:4 data:string +@4419 = .rodata:0x8048205C; // type:object size:0x10 scope:local align:4 +@4743 = .rodata:0x8048206C; // type:object size:0x16 scope:local align:4 data:string +@4744 = .rodata:0x80482084; // type:object size:0x9 scope:local align:4 data:string +@4746 = .rodata:0x80482090; // type:object size:0x10 scope:local align:4 data:string +@4747 = .rodata:0x804820A0; // type:object size:0xD scope:local align:4 data:string +@4748 = .rodata:0x804820B0; // type:object size:0x10 scope:local align:4 data:string +@4749 = .rodata:0x804820C0; // type:object size:0x1F scope:local align:4 data:string +@4752 = .rodata:0x804820E0; // type:object size:0x9 scope:local align:4 data:string +@4753 = .rodata:0x804820EC; // type:object size:0xA scope:local align:4 data:string +@4754 = .rodata:0x804820F8; // type:object size:0x24 scope:local align:4 data:string +@4755 = .rodata:0x8048211C; // type:object size:0x13 scope:local align:4 data:string +@4935 = .rodata:0x80482130; // type:object size:0x10 scope:local align:4 data:string +@4936 = .rodata:0x80482140; // type:object size:0x10 scope:local align:4 data:string +@4937 = .rodata:0x80482150; // type:object size:0xE scope:local align:4 data:string +@5277 = .rodata:0x80482160; // type:object size:0x12 scope:local align:4 data:string +@5278 = .rodata:0x80482174; // type:object size:0xF scope:local align:4 data:string +@5279 = .rodata:0x80482184; // type:object size:0xA scope:local align:4 data:string +@5280 = .rodata:0x80482190; // type:object size:0x15 scope:local align:4 data:string +@5281 = .rodata:0x804821A8; // type:object size:0xA scope:local align:4 data:string +@5282 = .rodata:0x804821B4; // type:object size:0xC scope:local align:4 data:string +@5283 = .rodata:0x804821C0; // type:object size:0x10 scope:local align:4 data:string +@5510 = .rodata:0x804821D0; // type:object size:0xB scope:local align:4 data:string +@5514 = .rodata:0x804821DC; // type:object size:0xE scope:local align:4 data:string +@5516 = .rodata:0x804821EC; // type:object size:0xF scope:local align:4 data:string +@5571 = .rodata:0x804821FC; // type:object size:0xE scope:local align:4 data:string +@5590 = .rodata:0x8048220C; // type:object size:0xB scope:local align:4 data:string +@6421 = .rodata:0x80482218; // type:object size:0x12 scope:local align:4 data:string +@6422 = .rodata:0x8048222C; // type:object size:0x13 scope:local align:4 data:string +@6423 = .rodata:0x80482240; // type:object size:0x11 scope:local align:4 data:string +@6424 = .rodata:0x80482254; // type:object size:0xC scope:local align:4 data:string +@6425 = .rodata:0x80482260; // type:object size:0x12 scope:local align:4 data:string +@6426 = .rodata:0x80482274; // type:object size:0x13 scope:local align:4 data:string +@6436 = .rodata:0x80482288; // type:object size:0x18 scope:local align:4 data:string +@6478 = .rodata:0x804822A0; // type:object size:0xC scope:local align:4 data:string +@6493 = .rodata:0x804822AC; // type:object size:0xC scope:local align:4 data:string +@6520 = .rodata:0x804822B8; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x804822D0; // type:label scope:local +@2741 = .rodata:0x804822D0; // type:object size:0xC scope:local align:4 +@4450 = .rodata:0x804822DC; // type:object size:0xE scope:local align:4 data:string +@4527 = .rodata:0x804822EC; // type:object size:0x10 scope:local align:4 data:string +@4588 = .rodata:0x804822FC; // type:object size:0x9 scope:local align:4 data:string +@4589 = .rodata:0x80482308; // type:object size:0x9 scope:local align:4 data:string +@4590 = .rodata:0x80482314; // type:object size:0xA scope:local align:4 data:string +@4591 = .rodata:0x80482320; // type:object size:0x24 scope:local align:4 data:string +@4592 = .rodata:0x80482344; // type:object size:0x13 scope:local align:4 data:string +@4697 = .rodata:0x80482358; // type:object size:0xF scope:local align:4 data:string +@4854 = .rodata:0x80482368; // type:object size:0xA scope:local align:4 data:string +@4855 = .rodata:0x80482374; // type:object size:0xE scope:local align:4 data:string +@4856 = .rodata:0x80482384; // type:object size:0x16 scope:local align:4 data:string +@4857 = .rodata:0x8048239C; // type:object size:0xF scope:local align:4 data:string +@4859 = .rodata:0x804823AC; // type:object size:0x19 scope:local align:4 data:string +@4909 = .rodata:0x804823C8; // type:object size:0x12 scope:local align:4 data:string +@4930 = .rodata:0x804823DC; // type:object size:0xE scope:local align:4 data:string +@4955 = .rodata:0x804823EC; // type:object size:0xE scope:local align:4 data:string +@4986 = .rodata:0x804823FC; // type:object size:0xB scope:local align:4 data:string +@5705 = .rodata:0x80482408; // type:object size:0x11 scope:local align:4 data:string +@5725 = .rodata:0x8048241C; // type:object size:0xC scope:local align:4 data:string +@5727 = .rodata:0x80482428; // type:object size:0x10 scope:local align:4 data:string +@4482 = .rodata:0x80482438; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482450; // type:label scope:local +@2741 = .rodata:0x80482450; // type:object size:0xC scope:local align:4 +@4175 = .rodata:0x8048245C; // type:object size:0x14 scope:local align:4 data:string +@4224 = .rodata:0x80482470; // type:object size:0xB scope:local align:4 data:string +@4225 = .rodata:0x8048247C; // type:object size:0x18 scope:local align:4 data:string +@4226 = .rodata:0x80482494; // type:object size:0x9 scope:local align:4 data:string +@4308 = .rodata:0x804824A0; // type:object size:0x9 scope:local align:4 data:string +@4309 = .rodata:0x804824AC; // type:object size:0xA scope:local align:4 data:string +@4310 = .rodata:0x804824B8; // type:object size:0x24 scope:local align:4 data:string +@4331 = .rodata:0x804824DC; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x804824F8; // type:label scope:local +@2741 = .rodata:0x804824F8; // type:object size:0xC scope:local align:4 +@4193 = .rodata:0x80482504; // type:object size:0xE scope:local align:4 data:string +@4366 = .rodata:0x80482514; // type:object size:0x9 scope:local align:4 data:string +@4367 = .rodata:0x80482520; // type:object size:0x9 scope:local align:4 data:string +@4368 = .rodata:0x8048252C; // type:object size:0x16 scope:local align:4 data:string +@4369 = .rodata:0x80482544; // type:object size:0x14 scope:local align:4 data:string +@4370 = .rodata:0x80482558; // type:object size:0xA scope:local align:4 data:string +@4371 = .rodata:0x80482564; // type:object size:0x16 scope:local align:4 data:string +@4372 = .rodata:0x8048257C; // type:object size:0x28 scope:local align:4 data:string +@4373 = .rodata:0x804825A4; // type:object size:0xE scope:local align:4 data:string +@4374 = .rodata:0x804825B4; // type:object size:0x14 scope:local align:4 data:string +@4375 = .rodata:0x804825C8; // type:object size:0x10 scope:local align:4 data:string +@4503 = .rodata:0x804825D8; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x804825E8; // type:label scope:local +@2741 = .rodata:0x804825E8; // type:object size:0xC scope:local align:4 +@4364 = .rodata:0x804825F4; // type:object size:0xE scope:local align:4 data:string +@4478 = .rodata:0x80482604; // type:object size:0x9 scope:local align:4 data:string +@4479 = .rodata:0x80482610; // type:object size:0x9 scope:local align:4 data:string +@4480 = .rodata:0x8048261C; // type:object size:0xA scope:local align:4 data:string +@4575 = .rodata:0x80482628; // type:object size:0x18 scope:local align:4 data:string +@4576 = .rodata:0x80482640; // type:object size:0x17 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482658; // type:label scope:local +@3457 = .rodata:0x80482658; // type:object size:0x10 scope:local align:4 data:string +@3607 = .rodata:0x80482668; // type:object size:0xC scope:local align:4 data:string +@3608 = .rodata:0x80482674; // type:object size:0xD scope:local align:4 +@3609 = .rodata:0x80482684; // type:object size:0x11 scope:local align:4 +@3610 = .rodata:0x80482698; // type:object size:0x11 scope:local align:4 +@3611 = .rodata:0x804826AC; // type:object size:0x20 scope:local align:4 +@3613 = .rodata:0x804826CC; // type:object size:0x17 scope:local align:4 data:string +@3614 = .rodata:0x804826E4; // type:object size:0x1C scope:local align:4 data:string +@3615 = .rodata:0x80482700; // type:object size:0x15 scope:local align:4 data:string +@3616 = .rodata:0x80482718; // type:object size:0xB scope:local align:4 +@3617 = .rodata:0x80482724; // type:object size:0x1E scope:local align:4 +@3618 = .rodata:0x80482744; // type:object size:0x1A scope:local align:4 +@3619 = .rodata:0x80482760; // type:object size:0x18 scope:local align:4 +@3620 = .rodata:0x80482778; // type:object size:0x1D scope:local align:4 +@3621 = .rodata:0x80482798; // type:object size:0x1A scope:local align:4 +@3622 = .rodata:0x804827B4; // type:object size:0x24 scope:local align:4 +@3623 = .rodata:0x804827D8; // type:object size:0x24 scope:local align:4 +@3624 = .rodata:0x804827FC; // type:object size:0x1A scope:local align:4 +@3625 = .rodata:0x80482818; // type:object size:0xE scope:local align:4 data:string +@3626 = .rodata:0x80482828; // type:object size:0x11 scope:local align:4 +@3627 = .rodata:0x8048283C; // type:object size:0xF scope:local align:4 +@3628 = .rodata:0x8048284C; // type:object size:0xE scope:local align:4 +@3629 = .rodata:0x8048285C; // type:object size:0x18 scope:local align:4 data:string +@3630 = .rodata:0x80482874; // type:object size:0x9 scope:local align:4 data:string +@3632 = .rodata:0x80482880; // type:object size:0x11 scope:local align:4 +@3633 = .rodata:0x80482894; // type:object size:0xD scope:local align:4 data:string +@3634 = .rodata:0x804828A4; // type:object size:0x24 scope:local align:4 +@3635 = .rodata:0x804828C8; // type:object size:0xB scope:local align:4 +@3636 = .rodata:0x804828D4; // type:object size:0xB scope:local align:4 +@3637 = .rodata:0x804828E0; // type:object size:0x17 scope:local align:4 +@3638 = .rodata:0x804828F8; // type:object size:0x22 scope:local align:4 +@3639 = .rodata:0x8048291C; // type:object size:0x14 scope:local align:4 +@3640 = .rodata:0x80482930; // type:object size:0x13 scope:local align:4 +@3641 = .rodata:0x80482944; // type:object size:0x2A scope:local align:4 +@3800 = .rodata:0x80482970; // type:object size:0x2D scope:local align:4 data:string +@3809 = .rodata:0x804829A0; // type:object size:0x9 scope:local align:4 data:string +@3826 = .rodata:0x804829AC; // type:object size:0xC scope:local align:4 data:string +@3827 = .rodata:0x804829B8; // type:object size:0xA scope:local align:4 data:string +@3842 = .rodata:0x804829C4; // type:object size:0x2B scope:local align:4 data:string +@3880 = .rodata:0x804829F0; // type:object size:0x14 scope:local align:4 data:string +@3881 = .rodata:0x80482A04; // type:object size:0x11 scope:local align:4 data:string +@3882 = .rodata:0x80482A18; // type:object size:0x14 scope:local align:4 data:string +@3924 = .rodata:0x80482A2C; // type:object size:0xE scope:local align:4 data:string +@3954 = .rodata:0x80482A3C; // type:object size:0x14 scope:local align:4 data:string +@3955 = .rodata:0x80482A50; // type:object size:0xA scope:local align:4 data:string +@3956 = .rodata:0x80482A5C; // type:object size:0x11 scope:local align:4 data:string +@3957 = .rodata:0x80482A70; // type:object size:0xF scope:local align:4 data:string +@3958 = .rodata:0x80482A80; // type:object size:0x14 scope:local align:4 data:string +@3959 = .rodata:0x80482A94; // type:object size:0x14 scope:local align:4 data:string +@3960 = .rodata:0x80482AA8; // type:object size:0x16 scope:local align:4 data:string +@4187 = .rodata:0x80482AC0; // type:object size:0xE scope:local align:4 data:string +@4189 = .rodata:0x80482AD0; // type:object size:0xF scope:local align:4 data:string +@4190 = .rodata:0x80482AE0; // type:object size:0xF scope:local align:4 data:string +@4191 = .rodata:0x80482AF0; // type:object size:0xE scope:local align:4 data:string +@4192 = .rodata:0x80482B00; // type:object size:0x16 scope:local align:4 data:string +@4193 = .rodata:0x80482B18; // type:object size:0xA scope:local align:4 data:string +@4194 = .rodata:0x80482B24; // type:object size:0xD scope:local align:4 data:string +@4195 = .rodata:0x80482B34; // type:object size:0xD scope:local align:4 data:string +@4196 = .rodata:0x80482B44; // type:object size:0xC scope:local align:4 data:string +@4197 = .rodata:0x80482B50; // type:object size:0x17 scope:local align:4 data:string +@4199 = .rodata:0x80482B68; // type:object size:0xB scope:local align:4 data:string +@4200 = .rodata:0x80482B74; // type:object size:0x11 scope:local align:4 data:string +@4201 = .rodata:0x80482B88; // type:object size:0xA scope:local align:4 data:string +@4202 = .rodata:0x80482B94; // type:object size:0x16 scope:local align:4 data:string +@4311 = .rodata:0x80482BAC; // type:object size:0x13 scope:local align:4 data:string +@4312 = .rodata:0x80482BC0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482BD0; // type:label scope:local +@3365 = .rodata:0x80482BD0; // type:object size:0xC scope:local align:4 +@3826 = .rodata:0x80482BDC; // type:object size:0xE scope:local align:4 data:string +@4753 = .rodata:0x80482BEC; // type:object size:0x12 scope:local align:4 data:string +@4754 = .rodata:0x80482C00; // type:object size:0x12 scope:local align:4 data:string +@4756 = .rodata:0x80482C14; // type:object size:0x13 scope:local align:4 data:string +@4758 = .rodata:0x80482C28; // type:object size:0x16 scope:local align:4 data:string +@4760 = .rodata:0x80482C40; // type:object size:0x14 scope:local align:4 data:string +@4762 = .rodata:0x80482C54; // type:object size:0x12 scope:local align:4 data:string +@4764 = .rodata:0x80482C68; // type:object size:0x13 scope:local align:4 data:string +@4765 = .rodata:0x80482C7C; // type:object size:0xE scope:local align:4 data:string +@4767 = .rodata:0x80482C8C; // type:object size:0x11 scope:local align:4 data:string +@4769 = .rodata:0x80482CA0; // type:object size:0x11 scope:local align:4 data:string +@4770 = .rodata:0x80482CB4; // type:object size:0x15 scope:local align:4 data:string +@4771 = .rodata:0x80482CCC; // type:object size:0xE scope:local align:4 data:string +@4772 = .rodata:0x80482CDC; // type:object size:0x10 scope:local align:4 data:string +@4773 = .rodata:0x80482CEC; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x80482D00; // type:label scope:local +@2741 = .rodata:0x80482D00; // type:object size:0xC scope:local align:4 +@4422 = .rodata:0x80482D0C; // type:object size:0xF scope:local align:4 data:string +@4423 = .rodata:0x80482D1C; // type:object size:0x9 scope:local align:4 data:string +@4425 = .rodata:0x80482D28; // type:object size:0xA scope:local align:4 data:string +@4462 = .rodata:0x80482D34; // type:object size:0xD scope:local align:4 +@4490 = .rodata:0x80482D44; // type:object size:0x21 scope:local align:4 data:string +@4491 = .rodata:0x80482D68; // type:object size:0x14 scope:local align:4 data:string +@4492 = .rodata:0x80482D7C; // type:object size:0x13 scope:local align:4 data:string +@4493 = .rodata:0x80482D90; // type:object size:0x9 scope:local align:4 data:string +@4494 = .rodata:0x80482D9C; // type:object size:0xF scope:local align:4 data:string +@4532 = .rodata:0x80482DAC; // type:object size:0xB scope:local align:4 +@4627 = .rodata:0x80482DB8; // type:object size:0xD scope:local align:4 data:string +@4628 = .rodata:0x80482DC8; // type:object size:0xD scope:local align:4 data:string +@4630 = .rodata:0x80482DD8; // type:object size:0xD scope:local align:4 data:string +@4631 = .rodata:0x80482DE8; // type:object size:0xD scope:local align:4 data:string +@5310 = .rodata:0x80482DF8; // type:object size:0x15 scope:local align:4 data:string +@5346 = .rodata:0x80482E10; // type:object size:0xA scope:local align:4 data:string +@5347 = .rodata:0x80482E1C; // type:object size:0xC scope:local align:4 data:string +@5348 = .rodata:0x80482E28; // type:object size:0x11 scope:local align:4 data:string +@5350 = .rodata:0x80482E3C; // type:object size:0xB scope:local align:4 data:string +@5351 = .rodata:0x80482E48; // type:object size:0x13 scope:local align:4 data:string +@5353 = .rodata:0x80482E5C; // type:object size:0xD scope:local align:4 data:string +@5355 = .rodata:0x80482E6C; // type:object size:0x24 scope:local align:4 +@5616 = .rodata:0x80482E90; // type:object size:0x9 scope:local align:4 data:string +@5617 = .rodata:0x80482E9C; // type:object size:0xA scope:local align:4 data:string +@5618 = .rodata:0x80482EA8; // type:object size:0x24 scope:local align:4 data:string +@5619 = .rodata:0x80482ECC; // type:object size:0x14 scope:local align:4 data:string +@5651 = .rodata:0x80482EE0; // type:object size:0x18 scope:local align:4 data:string +@6614 = .rodata:0x80482EF8; // type:object size:0x1A scope:local align:4 data:string +@6615 = .rodata:0x80482F14; // type:object size:0x11 scope:local align:4 data:string +@6617 = .rodata:0x80482F28; // type:object size:0x9 scope:local align:4 data:string +@6619 = .rodata:0x80482F34; // type:object size:0x9 scope:local align:4 data:string +@6882 = .rodata:0x80482F40; // type:object size:0x23 scope:local align:4 data:string +@6883 = .rodata:0x80482F64; // type:object size:0xB scope:local align:4 data:string +@6886 = .rodata:0x80482F70; // type:object size:0xB scope:local align:4 data:string +@6958 = .rodata:0x80482F7C; // type:object size:0x10 scope:local align:4 data:string +@7479 = .rodata:0x80482F8C; // type:object size:0x31 scope:local align:4 +@7480 = .rodata:0x80482FC0; // type:object size:0x11 scope:local align:4 +@7481 = .rodata:0x80482FD4; // type:object size:0x1D scope:local align:4 +@7483 = .rodata:0x80482FF4; // type:object size:0x1B scope:local align:4 data:string +@7784 = .rodata:0x80483010; // type:object size:0x11 scope:local align:4 data:string +@7911 = .rodata:0x80483024; // type:object size:0xC scope:local align:4 data:string +@7913 = .rodata:0x80483030; // type:object size:0x10 scope:local align:4 data:string +@7928 = .rodata:0x80483040; // type:object size:0xE scope:local align:4 data:string +@7937 = .rodata:0x80483050; // type:object size:0xC scope:local align:4 data:string +@8064 = .rodata:0x8048305C; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80483068; // type:label scope:local +@3565 = .rodata:0x80483068; // type:object size:0xD scope:local align:4 data:string +@3634 = .rodata:0x80483078; // type:object size:0x22 scope:local align:4 data:string +@3638 = .rodata:0x8048309C; // type:object size:0x15 scope:local align:4 data:string +@3639 = .rodata:0x804830B4; // type:object size:0x25 scope:local align:4 data:string +@3640 = .rodata:0x804830DC; // type:object size:0x19 scope:local align:4 data:string +@3641 = .rodata:0x804830F8; // type:object size:0x12 scope:local align:4 data:string +@3642 = .rodata:0x8048310C; // type:object size:0xF scope:local align:4 data:string +@3650 = .rodata:0x8048311C; // type:object size:0x9 scope:local align:4 data:string +@3709 = .rodata:0x80483128; // type:object size:0x12 scope:local align:4 data:string +@3726 = .rodata:0x80483140; // type:object size:0x18 scope:local align:8 data:double +@3760 = .rodata:0x80483158; // type:object size:0x18 scope:local align:4 data:string +@3788 = .rodata:0x80483170; // type:object size:0x18 scope:local align:4 data:string +@3841 = .rodata:0x80483188; // type:object size:0x36 scope:local align:4 data:string +...rodata.0 = .rodata:0x804831C0; // type:label scope:local +@3259 = .rodata:0x804831C0; // type:object size:0xF scope:local align:4 data:string +@3268 = .rodata:0x804831D0; // type:object size:0x13 scope:local align:4 data:string +@3269 = .rodata:0x804831E4; // type:object size:0x9 scope:local align:4 data:string +@3332 = .rodata:0x804831F0; // type:object size:0x18 scope:local align:4 data:string +@3333 = .rodata:0x80483208; // type:object size:0x13 scope:local align:4 data:string +@3334 = .rodata:0x8048321C; // type:object size:0x11 scope:local align:4 data:string +@3335 = .rodata:0x80483230; // type:object size:0x13 scope:local align:4 data:string +@3336 = .rodata:0x80483244; // type:object size:0x10 scope:local align:4 data:string +@3337 = .rodata:0x80483254; // type:object size:0x14 scope:local align:4 +@3364 = .rodata:0x80483268; // type:object size:0x26 scope:local align:4 data:string +@3367 = .rodata:0x80483290; // type:object size:0x12 scope:local align:4 data:string +@3368 = .rodata:0x804832A4; // type:object size:0x1B scope:local align:4 data:string +@3369 = .rodata:0x804832C0; // type:object size:0x13 scope:local align:4 data:string +@3370 = .rodata:0x804832D4; // type:object size:0x15 scope:local align:4 data:string +@3481 = .rodata:0x804832EC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804832F8; // type:label scope:local +@2741 = .rodata:0x804832F8; // type:object size:0xC scope:local align:4 +@3992 = .rodata:0x80483304; // type:object size:0xB scope:local align:4 data:string +@3993 = .rodata:0x80483310; // type:object size:0xD scope:local align:4 data:string +@3994 = .rodata:0x80483320; // type:object size:0x13 scope:local align:4 data:string +@3995 = .rodata:0x80483334; // type:object size:0x12 scope:local align:4 data:string +@3996 = .rodata:0x80483348; // type:object size:0x14 scope:local align:4 data:string +@3999 = .rodata:0x8048335C; // type:object size:0xD scope:local align:4 +@4171 = .rodata:0x8048336C; // type:object size:0x9 scope:local align:4 data:string +@4172 = .rodata:0x80483378; // type:object size:0x9 scope:local align:4 data:string +@4173 = .rodata:0x80483384; // type:object size:0xA scope:local align:4 data:string +@4256 = .rodata:0x80483390; // type:object size:0x2E scope:local align:4 data:string +@4257 = .rodata:0x804833C0; // type:object size:0xF scope:local align:4 data:string +@4258 = .rodata:0x804833D0; // type:object size:0xE scope:local align:4 data:string +@4269 = .rodata:0x804833E0; // type:object size:0x10 scope:local align:4 +...rodata.0 = .rodata:0x804833F0; // type:label scope:local +@2741 = .rodata:0x804833F0; // type:object size:0xC scope:local align:4 +@4310 = .rodata:0x804833FC; // type:object size:0xA scope:local align:4 data:string +@4507 = .rodata:0x80483408; // type:object size:0x10 scope:local align:4 data:string +@4508 = .rodata:0x80483418; // type:object size:0xB scope:local align:4 data:string +@4509 = .rodata:0x80483424; // type:object size:0xB scope:local align:4 data:string +@4934 = .rodata:0x80483430; // type:object size:0xA scope:local align:4 data:string +@4937 = .rodata:0x8048343C; // type:object size:0xA scope:local align:4 data:string +@4938 = .rodata:0x80483448; // type:object size:0x9 scope:local align:4 data:string +@4939 = .rodata:0x80483454; // type:object size:0xB scope:local align:4 data:string +@4940 = .rodata:0x80483460; // type:object size:0xE scope:local align:4 data:string +@4941 = .rodata:0x80483470; // type:object size:0x9 scope:local align:4 data:string +@5076 = .rodata:0x8048347C; // type:object size:0xD scope:local align:4 data:string +@5178 = .rodata:0x8048348C; // type:object size:0x10 scope:local align:4 +@5181 = .rodata:0x8048349C; // type:object size:0xE scope:local align:4 data:string +@5182 = .rodata:0x804834AC; // type:object size:0xF scope:local align:4 data:string +@5249 = .rodata:0x804834BC; // type:object size:0x10 scope:local align:4 data:string +@5304 = .rodata:0x804834CC; // type:object size:0xE scope:local align:4 data:string +@5337 = .rodata:0x804834DC; // type:object size:0xF scope:local align:4 data:string +@5480 = .rodata:0x804834EC; // type:object size:0x10 scope:local align:4 data:string +@5481 = .rodata:0x804834FC; // type:object size:0x14 scope:local align:4 data:string +@5482 = .rodata:0x80483510; // type:object size:0xE scope:local align:4 data:string +@5483 = .rodata:0x80483520; // type:object size:0xB scope:local align:4 data:string +@5484 = .rodata:0x8048352C; // type:object size:0xE scope:local align:4 data:string +@5822 = .rodata:0x8048353C; // type:object size:0x9 scope:local align:4 data:string +@5823 = .rodata:0x80483548; // type:object size:0xA scope:local align:4 data:string +@5824 = .rodata:0x80483554; // type:object size:0x24 scope:local align:4 data:string +@5825 = .rodata:0x80483578; // type:object size:0x13 scope:local align:4 data:string +@5826 = .rodata:0x8048358C; // type:object size:0x11 scope:local align:4 data:string +@5828 = .rodata:0x804835A0; // type:object size:0x9 scope:local align:4 data:string +@5829 = .rodata:0x804835AC; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x804835C0; // type:label scope:local +@2741 = .rodata:0x804835C0; // type:object size:0xC scope:local align:4 +@3969 = .rodata:0x804835CC; // type:object size:0xC scope:local align:4 data:string +@4035 = .rodata:0x804835D8; // type:object size:0x10 scope:local align:4 data:string +@4036 = .rodata:0x804835E8; // type:object size:0x9 scope:local align:4 data:string +@4100 = .rodata:0x804835F4; // type:object size:0x1C scope:local align:4 +@4159 = .rodata:0x80483610; // type:object size:0x9 scope:local align:4 data:string +@4160 = .rodata:0x8048361C; // type:object size:0xA scope:local align:4 data:string +@3324 = .rodata:0x80483628; // type:object size:0xD scope:local align:4 data:string +@3400 = .rodata:0x80483638; // type:object size:0x13 scope:local align:4 +@3454 = .rodata:0x8048364C; // type:object size:0x10 scope:local align:4 data:string +@3455 = .rodata:0x8048365C; // type:object size:0x18 scope:local align:4 data:string +@3512 = .rodata:0x80483674; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80483688; // type:label scope:local +@2646 = .rodata:0x80483688; // type:object size:0xD scope:local align:4 data:string +@2666 = .rodata:0x80483698; // type:object size:0xF scope:local align:4 +@2667 = .rodata:0x804836A8; // type:object size:0x11 scope:local align:4 +@2669 = .rodata:0x804836BC; // type:object size:0xA scope:local align:4 data:string +@3400 = .rodata:0x804836C8; // type:object size:0x11 scope:local align:4 data:string +@3403 = .rodata:0x804836DC; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x804836F0; // type:label scope:local +@2741 = .rodata:0x804836F0; // type:object size:0xC scope:local align:4 +@3951 = .rodata:0x804836FC; // type:object size:0xA scope:local align:4 data:string +@3977 = .rodata:0x80483708; // type:object size:0x9 scope:local align:4 data:string +@3978 = .rodata:0x80483714; // type:object size:0x9 scope:local align:4 data:string +@3979 = .rodata:0x80483720; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80483730; // type:label scope:local +@3841 = .rodata:0x80483730; // type:object size:0x9 scope:local align:4 data:string +@4035 = .rodata:0x8048373C; // type:object size:0xD scope:local align:4 data:string +@4036 = .rodata:0x8048374C; // type:object size:0xD scope:local align:4 data:string +@4037 = .rodata:0x8048375C; // type:object size:0x9 scope:local align:4 data:string +@4047 = .rodata:0x80483768; // type:object size:0xA scope:local align:4 data:string +@4313 = .rodata:0x80483774; // type:object size:0x15 scope:local align:4 data:string +@2728 = .rodata:0x80483790; // type:object size:0xD scope:local align:4 data:string +@3283 = .rodata:0x804837A0; // type:object size:0x13 scope:local align:4 data:string +@3284 = .rodata:0x804837B4; // type:object size:0x9 scope:local align:4 data:string +@3306 = .rodata:0x804837C0; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x804837D0; // type:label scope:local +@3411 = .rodata:0x804837D0; // type:object size:0x20 scope:local align:4 data:4byte +@3421 = .rodata:0x804837F0; // type:object size:0xB scope:local align:4 data:string +@3422 = .rodata:0x804837FC; // type:object size:0x9 scope:local align:4 data:string +@3747 = .rodata:0x80483808; // type:object size:0x9 scope:local align:4 data:string +@3748 = .rodata:0x80483814; // type:object size:0xA scope:local align:4 data:string +@3749 = .rodata:0x80483820; // type:object size:0x24 scope:local align:4 data:string +@3886 = .rodata:0x80483844; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80483850; // type:label scope:local +@2741 = .rodata:0x80483850; // type:object size:0xC scope:local align:4 +@4180 = .rodata:0x8048385C; // type:object size:0x10 scope:local align:4 data:string +@4310 = .rodata:0x8048386C; // type:object size:0x9 scope:local align:4 data:string +@4311 = .rodata:0x80483878; // type:object size:0x9 scope:local align:4 data:string +@4312 = .rodata:0x80483884; // type:object size:0xA scope:local align:4 data:string +@3289 = .rodata:0x80483890; // type:object size:0x14 scope:local align:4 data:string +@3290 = .rodata:0x804838A4; // type:object size:0x15 scope:local align:4 data:string +@3317 = .rodata:0x804838BC; // type:object size:0x9 scope:local align:4 data:string +@3327 = .rodata:0x804838C8; // type:object size:0x1C scope:local align:4 data:string +@2741 = .rodata:0x804838E8; // type:object size:0x11 scope:local align:4 data:string +@2742 = .rodata:0x804838FC; // type:object size:0x9 scope:local align:4 data:string +@2665 = .rodata:0x80483908; // type:object size:0x12 scope:local align:4 data:string +@2666 = .rodata:0x8048391C; // type:object size:0x9 scope:local align:4 data:string +@2901 = .rodata:0x80483928; // type:object size:0x17 scope:local align:4 data:string +@2902 = .rodata:0x80483940; // type:object size:0x9 scope:local align:4 data:string +@2696 = .rodata:0x80483950; // type:object size:0x14 scope:local align:4 data:string +@2697 = .rodata:0x80483964; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483970; // type:label scope:local +@3469 = .rodata:0x80483970; // type:object size:0xC scope:local align:4 +@3864 = .rodata:0x8048397C; // type:object size:0xA scope:local align:4 data:string +@4006 = .rodata:0x80483988; // type:object size:0xD scope:local align:4 data:string +@4007 = .rodata:0x80483998; // type:object size:0xE scope:local align:4 data:string +@4008 = .rodata:0x804839A8; // type:object size:0xF scope:local align:4 data:string +@4009 = .rodata:0x804839B8; // type:object size:0xF scope:local align:4 data:string +@4010 = .rodata:0x804839C8; // type:object size:0xF scope:local align:4 data:string +@4011 = .rodata:0x804839D8; // type:object size:0xD scope:local align:4 data:string +@4012 = .rodata:0x804839E8; // type:object size:0x11 scope:local align:4 data:string +@4013 = .rodata:0x804839FC; // type:object size:0x12 scope:local align:4 data:string +@4014 = .rodata:0x80483A10; // type:object size:0xF scope:local align:4 data:string +@4015 = .rodata:0x80483A20; // type:object size:0xE scope:local align:4 data:string +@4016 = .rodata:0x80483A30; // type:object size:0xE scope:local align:4 data:string +cardData__Q34Game6VsGame23@unnamed@vsCardMgr_cpp@ = .rodata:0x80483A40; // type:object size:0x60 scope:local align:4 +@4017 = .rodata:0x80483AA0; // type:object size:0x16 scope:local align:4 data:string +@4018 = .rodata:0x80483AB8; // type:object size:0x15 scope:local align:4 data:string +@4079 = .rodata:0x80483AD0; // type:object size:0x19 scope:local align:4 data:string +@4080 = .rodata:0x80483AEC; // type:object size:0xE scope:local align:4 data:string +@4081 = .rodata:0x80483AFC; // type:object size:0x1B scope:local align:4 data:string +@4082 = .rodata:0x80483B18; // type:object size:0x10 scope:local align:4 data:string +@4083 = .rodata:0x80483B28; // type:object size:0xC scope:local align:4 data:string +@4084 = .rodata:0x80483B34; // type:object size:0xC scope:local align:4 data:string +@4085 = .rodata:0x80483B40; // type:object size:0xD scope:local align:4 data:string +@4210 = .rodata:0x80483B50; // type:object size:0x9 scope:local align:4 data:string +@5872 = .rodata:0x80483B5C; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483B70; // type:label scope:local +@3521 = .rodata:0x80483B70; // type:object size:0xA scope:local align:4 data:string +@3558 = .rodata:0x80483B7C; // type:object size:0xD scope:local align:4 data:string +@3559 = .rodata:0x80483B8C; // type:object size:0x9 scope:local align:4 data:string +@3733 = .rodata:0x80483B98; // type:object size:0x9 scope:local align:4 data:string +@3899 = .rodata:0x80483BA4; // type:object size:0x15 scope:local align:4 data:string +@3901 = .rodata:0x80483BBC; // type:object size:0xA scope:local align:4 data:string +@3631 = .rodata:0x80483BC8; // type:object size:0xA scope:local align:4 data:string +@3650 = .rodata:0x80483BD4; // type:object size:0xA scope:local align:4 data:string +@3726 = .rodata:0x80483BE0; // type:object size:0xA scope:local align:4 data:string +@3945 = .rodata:0x80483BF0; // type:object size:0x12 scope:local align:4 data:string +@3946 = .rodata:0x80483C04; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483C10; // type:label scope:local +@3259 = .rodata:0x80483C10; // type:object size:0xC scope:local align:4 +@4283 = .rodata:0x80483C1C; // type:object size:0x10 scope:local align:4 data:string +@4408 = .rodata:0x80483C2C; // type:object size:0x14 scope:local align:4 data:string +@4409 = .rodata:0x80483C40; // type:object size:0x9 scope:local align:4 data:string +@4548 = .rodata:0x80483C4C; // type:object size:0xB scope:local align:4 data:string +@4549 = .rodata:0x80483C58; // type:object size:0x14 scope:local align:4 data:string +@4550 = .rodata:0x80483C6C; // type:object size:0x16 scope:local align:4 data:string +@4551 = .rodata:0x80483C84; // type:object size:0xB scope:local align:4 data:string +@4552 = .rodata:0x80483C90; // type:object size:0x15 scope:local align:4 data:string +@4553 = .rodata:0x80483CA8; // type:object size:0xB scope:local align:4 data:string +@4554 = .rodata:0x80483CB4; // type:object size:0xD scope:local align:4 data:string +@4719 = .rodata:0x80483CC4; // type:object size:0xE scope:local align:4 data:string +@4720 = .rodata:0x80483CD4; // type:object size:0x13 scope:local align:4 data:string +@4902 = .rodata:0x80483CE8; // type:object size:0xB scope:local align:4 data:string +@4913 = .rodata:0x80483CF4; // type:object size:0xC scope:local align:4 data:string +@4915 = .rodata:0x80483D00; // type:object size:0x12 scope:local align:4 data:string +@4917 = .rodata:0x80483D14; // type:object size:0xA scope:local align:4 data:string +@4919 = .rodata:0x80483D20; // type:object size:0xC scope:local align:4 data:string +@4921 = .rodata:0x80483D2C; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483D40; // type:label scope:local +@2767 = .rodata:0x80483D40; // type:object size:0xA scope:local align:4 data:string +@2796 = .rodata:0x80483D4C; // type:object size:0xE scope:local align:4 data:string +@2797 = .rodata:0x80483D5C; // type:object size:0x9 scope:local align:4 data:string +@2947 = .rodata:0x80483D68; // type:object size:0x1D scope:local align:4 data:string +@2626 = .rodata:0x80483D88; // type:object size:0xB scope:local align:4 data:string +@2627 = .rodata:0x80483D94; // type:object size:0xF scope:local align:4 data:string +@2628 = .rodata:0x80483DA4; // type:object size:0xE scope:local align:4 data:string +@2629 = .rodata:0x80483DB4; // type:object size:0x11 scope:local align:4 data:string +@3284 = .rodata:0x80483DC8; // type:object size:0x16 scope:local align:4 data:string +@3285 = .rodata:0x80483DE0; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483DF8; // type:label scope:local +@3315 = .rodata:0x80483DF8; // type:object size:0xC scope:local align:4 +@3356 = .rodata:0x80483E04; // type:object size:0x13 scope:local align:4 data:string +@3371 = .rodata:0x80483E18; // type:object size:0x13 scope:local align:4 data:string +@3372 = .rodata:0x80483E2C; // type:object size:0x9 scope:local align:4 data:string +@3681 = .rodata:0x80483E38; // type:object size:0xC scope:local align:4 +@3682 = .rodata:0x80483E44; // type:object size:0xC scope:local align:4 +@3683 = .rodata:0x80483E50; // type:object size:0xC scope:local align:4 +@3759 = .rodata:0x80483E5C; // type:object size:0xF scope:local align:4 data:string +@3578 = .rodata:0x80483E70; // type:object size:0xB scope:local align:4 data:string +@3617 = .rodata:0x80483E7C; // type:object size:0xF scope:local align:4 data:string +@3618 = .rodata:0x80483E8C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80483E98; // type:label scope:local +@3309 = .rodata:0x80483E98; // type:object size:0xC scope:local align:4 +@3351 = .rodata:0x80483EA4; // type:object size:0xE scope:local align:4 data:string +@3420 = .rodata:0x80483EB4; // type:object size:0xA scope:local align:4 data:string +@3472 = .rodata:0x80483EC0; // type:object size:0xC scope:local align:4 data:string +@3473 = .rodata:0x80483ECC; // type:object size:0xB scope:local align:4 +@3477 = .rodata:0x80483ED8; // type:object size:0xA scope:local align:4 +@3479 = .rodata:0x80483EE4; // type:object size:0x27 scope:local align:4 data:string +@3391 = .rodata:0x80483F10; // type:object size:0xB scope:local align:4 data:string +@3443 = .rodata:0x80483F1C; // type:object size:0x12 scope:local align:4 data:string +@3360 = .rodata:0x80483F30; // type:object size:0x10 scope:local align:4 data:string +@3361 = .rodata:0x80483F40; // type:object size:0x14 scope:local align:4 data:string +@4297 = .rodata:0x80483F54; // type:object size:0xC scope:local align:4 data:4byte +@3411 = .rodata:0x80483F60; // type:object size:0x10 scope:local align:4 data:4byte +@3884 = .rodata:0x80483F70; // type:object size:0xC scope:local align:4 data:4byte +@4112 = .rodata:0x80483F7C; // type:object size:0xC scope:local align:4 data:4byte +@4298 = .rodata:0x80483F88; // type:object size:0x10 scope:local align:4 data:4byte +@3437 = .rodata:0x80483F98; // type:object size:0x14 scope:local align:4 data:4byte +@3869 = .rodata:0x80483FAC; // type:object size:0xC scope:local align:4 data:4byte +@3977 = .rodata:0x80483FB8; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80483FC8; // type:label scope:local +@3381 = .rodata:0x80483FC8; // type:object size:0x11 scope:local align:4 data:string +@3556 = .rodata:0x80483FDC; // type:object size:0x11 scope:local align:4 data:string +@3557 = .rodata:0x80483FF0; // type:object size:0x10 scope:local align:4 data:string +@3558 = .rodata:0x80484000; // type:object size:0x16 scope:local align:4 data:string +@4077 = .rodata:0x80484018; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x80484030; // type:label scope:local +@3480 = .rodata:0x80484030; // type:object size:0xC scope:local align:4 +@3549 = .rodata:0x8048403C; // type:object size:0xE scope:local align:4 data:string +@3555 = .rodata:0x8048404C; // type:object size:0xA scope:local align:4 data:string +@3589 = .rodata:0x80484058; // type:object size:0x2B scope:local align:4 data:string +@3590 = .rodata:0x80484084; // type:object size:0x2D scope:local align:4 data:string +@3614 = .rodata:0x804840B4; // type:object size:0xF scope:local align:4 data:string +@3615 = .rodata:0x804840C4; // type:object size:0x15 scope:local align:4 data:string +@3619 = .rodata:0x804840DC; // type:object size:0x16 scope:local align:4 data:string +@3621 = .rodata:0x804840F4; // type:object size:0x14 scope:local align:4 data:string +@3623 = .rodata:0x80484108; // type:object size:0x16 scope:local align:4 data:string +@3626 = .rodata:0x80484120; // type:object size:0x18 scope:local align:4 data:string +@3628 = .rodata:0x80484138; // type:object size:0x16 scope:local align:4 data:string +@3630 = .rodata:0x80484150; // type:object size:0x16 scope:local align:4 data:string +@3632 = .rodata:0x80484168; // type:object size:0x17 scope:local align:4 data:string +@3634 = .rodata:0x80484180; // type:object size:0x15 scope:local align:4 data:string +@3636 = .rodata:0x80484198; // type:object size:0x14 scope:local align:4 data:string +@3639 = .rodata:0x804841AC; // type:object size:0x16 scope:local align:4 data:string +@3640 = .rodata:0x804841C4; // type:object size:0x15 scope:local align:4 data:string +@3642 = .rodata:0x804841DC; // type:object size:0x10 scope:local align:4 data:string +@3643 = .rodata:0x804841EC; // type:object size:0x12 scope:local align:4 data:string +@3644 = .rodata:0x80484200; // type:object size:0x11 scope:local align:4 data:string +@3645 = .rodata:0x80484214; // type:object size:0x13 scope:local align:4 data:string +@3647 = .rodata:0x80484228; // type:object size:0x15 scope:local align:4 data:string +@3649 = .rodata:0x80484240; // type:object size:0x14 scope:local align:4 data:string +@3650 = .rodata:0x80484254; // type:object size:0x11 scope:local align:4 data:string +@3718 = .rodata:0x80484268; // type:object size:0xC scope:local align:4 data:string +@3719 = .rodata:0x80484274; // type:object size:0xE scope:local align:4 +@3722 = .rodata:0x80484284; // type:object size:0x12 scope:local align:4 +@3724 = .rodata:0x80484298; // type:object size:0x10 scope:local align:4 +@3726 = .rodata:0x804842A8; // type:object size:0x14 scope:local align:4 +@3728 = .rodata:0x804842BC; // type:object size:0x12 scope:local align:4 +@3729 = .rodata:0x804842D0; // type:object size:0x12 scope:local align:4 data:string +@3731 = .rodata:0x804842E4; // type:object size:0xE scope:local align:4 data:string +@3733 = .rodata:0x804842F4; // type:object size:0xD scope:local align:4 data:string +@3734 = .rodata:0x80484304; // type:object size:0xD scope:local align:4 +@3735 = .rodata:0x80484314; // type:object size:0x11 scope:local align:4 +@3737 = .rodata:0x80484328; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x80484338; // type:object size:0x13 scope:local align:4 +@3741 = .rodata:0x8048434C; // type:object size:0x11 scope:local align:4 +@3742 = .rodata:0x80484360; // type:object size:0x11 scope:local align:4 data:string +@3744 = .rodata:0x80484374; // type:object size:0xD scope:local align:4 data:string +@3745 = .rodata:0x80484384; // type:object size:0xC scope:local align:4 data:string +@3746 = .rodata:0x80484390; // type:object size:0xD scope:local align:4 +@3748 = .rodata:0x804843A0; // type:object size:0x11 scope:local align:4 +@3749 = .rodata:0x804843B4; // type:object size:0xF scope:local align:4 +@3751 = .rodata:0x804843C4; // type:object size:0x13 scope:local align:4 +@3753 = .rodata:0x804843D8; // type:object size:0x11 scope:local align:4 +@3755 = .rodata:0x804843EC; // type:object size:0x11 scope:local align:4 data:string +@3757 = .rodata:0x80484400; // type:object size:0xD scope:local align:4 data:string +@3758 = .rodata:0x80484410; // type:object size:0xC scope:local align:4 data:string +@3759 = .rodata:0x8048441C; // type:object size:0xF scope:local align:4 +@3760 = .rodata:0x8048442C; // type:object size:0x13 scope:local align:4 +@3761 = .rodata:0x80484440; // type:object size:0x11 scope:local align:4 +@3762 = .rodata:0x80484454; // type:object size:0x15 scope:local align:4 +@3763 = .rodata:0x8048446C; // type:object size:0x13 scope:local align:4 +@3764 = .rodata:0x80484480; // type:object size:0x13 scope:local align:4 data:string +@3766 = .rodata:0x80484494; // type:object size:0xF scope:local align:4 data:string +@3767 = .rodata:0x804844A4; // type:object size:0xE scope:local align:4 data:string +@3768 = .rodata:0x804844B4; // type:object size:0xE scope:local align:4 +@3769 = .rodata:0x804844C4; // type:object size:0x12 scope:local align:4 +@3770 = .rodata:0x804844D8; // type:object size:0x10 scope:local align:4 +@3771 = .rodata:0x804844E8; // type:object size:0x14 scope:local align:4 +@3773 = .rodata:0x804844FC; // type:object size:0x12 scope:local align:4 +@3774 = .rodata:0x80484510; // type:object size:0x12 scope:local align:4 data:string +@3776 = .rodata:0x80484524; // type:object size:0xE scope:local align:4 data:string +@3777 = .rodata:0x80484534; // type:object size:0xD scope:local align:4 data:string +@3778 = .rodata:0x80484544; // type:object size:0xE scope:local align:4 +@3780 = .rodata:0x80484554; // type:object size:0x12 scope:local align:4 +@3781 = .rodata:0x80484568; // type:object size:0x10 scope:local align:4 +@3783 = .rodata:0x80484578; // type:object size:0x14 scope:local align:4 +@3784 = .rodata:0x8048458C; // type:object size:0x12 scope:local align:4 +@3786 = .rodata:0x804845A0; // type:object size:0x12 scope:local align:4 data:string +@3788 = .rodata:0x804845B4; // type:object size:0xE scope:local align:4 data:string +@3789 = .rodata:0x804845C4; // type:object size:0xD scope:local align:4 data:string +@3790 = .rodata:0x804845D4; // type:object size:0xA scope:local align:4 +@3792 = .rodata:0x804845E0; // type:object size:0xE scope:local align:4 +@3794 = .rodata:0x804845F0; // type:object size:0xC scope:local align:4 +@3795 = .rodata:0x804845FC; // type:object size:0xF scope:local align:4 +@3797 = .rodata:0x8048460C; // type:object size:0x13 scope:local align:4 +@3800 = .rodata:0x80484620; // type:object size:0x11 scope:local align:4 +@3801 = .rodata:0x80484634; // type:object size:0x11 scope:local align:4 +@3802 = .rodata:0x80484648; // type:object size:0xD scope:local align:4 +@3804 = .rodata:0x80484658; // type:object size:0x9 scope:local align:4 +@3806 = .rodata:0x80484664; // type:object size:0xD scope:local align:4 +@3808 = .rodata:0x80484674; // type:object size:0xB scope:local align:4 +@3809 = .rodata:0x80484680; // type:object size:0xD scope:local align:4 +@3811 = .rodata:0x80484690; // type:object size:0xB scope:local align:4 +@3825 = .rodata:0x8048469C; // type:object size:0xE scope:local align:4 data:string +@3826 = .rodata:0x804846AC; // type:object size:0x9 scope:local align:4 data:string +@3850 = .rodata:0x804846B8; // type:object size:0x10 scope:local align:4 data:string +@4132 = .rodata:0x804846C8; // type:object size:0x10 scope:local align:4 data:string +@4174 = .rodata:0x804846D8; // type:object size:0x17 scope:local align:4 data:string +@2886 = .rodata:0x804846F0; // type:object size:0xC scope:local align:4 data:4byte +@2887 = .rodata:0x804846FC; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80484708; // type:label scope:local +@3430 = .rodata:0x80484708; // type:object size:0xE scope:local align:4 data:string +@3436 = .rodata:0x80484718; // type:object size:0xA scope:local align:4 data:string +@3465 = .rodata:0x80484724; // type:object size:0xC scope:local align:4 data:string +@3466 = .rodata:0x80484730; // type:object size:0xD scope:local align:4 data:string +@3470 = .rodata:0x80484740; // type:object size:0x27 scope:local align:4 data:string +@3471 = .rodata:0x80484768; // type:object size:0x26 scope:local align:4 data:string +@3729 = .rodata:0x80484790; // type:object size:0xE scope:local align:4 data:string +@3730 = .rodata:0x804847A0; // type:object size:0x10 scope:local align:4 data:string +@3756 = .rodata:0x804847B0; // type:object size:0x17 scope:local align:4 data:string +@3770 = .rodata:0x804847C8; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x804847E0; // type:label scope:local +@3612 = .rodata:0x804847E0; // type:object size:0xC scope:local align:4 +@3698 = .rodata:0x804847EC; // type:object size:0xB scope:local align:4 data:string +@3704 = .rodata:0x804847F8; // type:object size:0x15 scope:local align:4 +@3784 = .rodata:0x80484810; // type:object size:0xF scope:local align:4 data:string +@3785 = .rodata:0x80484820; // type:object size:0x14 scope:local align:4 +@3786 = .rodata:0x80484834; // type:object size:0x14 scope:local align:4 +@3787 = .rodata:0x80484848; // type:object size:0x12 scope:local align:4 +@3788 = .rodata:0x8048485C; // type:object size:0x9 scope:local align:4 +@3792 = .rodata:0x80484868; // type:object size:0xB scope:local align:4 +@3794 = .rodata:0x80484874; // type:object size:0xB scope:local align:4 +@3830 = .rodata:0x80484880; // type:object size:0x13 scope:local align:4 data:string +@3831 = .rodata:0x80484894; // type:object size:0x13 scope:local align:4 data:string +@3833 = .rodata:0x804848A8; // type:object size:0xF scope:local align:4 data:string +@3834 = .rodata:0x804848B8; // type:object size:0xE scope:local align:4 data:string +@3840 = .rodata:0x804848C8; // type:object size:0xD scope:local align:4 data:string +@3894 = .rodata:0x804848D8; // type:object size:0xD scope:local align:4 +@3897 = .rodata:0x804848E8; // type:object size:0xD scope:local align:4 +@3898 = .rodata:0x804848F8; // type:object size:0xB scope:local align:4 +@3899 = .rodata:0x80484904; // type:object size:0xF scope:local align:4 +@3901 = .rodata:0x80484914; // type:object size:0x1F scope:local align:4 +@3903 = .rodata:0x80484934; // type:object size:0x13 scope:local align:4 +@3905 = .rodata:0x80484948; // type:object size:0x13 scope:local align:4 +@3907 = .rodata:0x8048495C; // type:object size:0x12 scope:local align:4 +@3908 = .rodata:0x80484970; // type:object size:0x11 scope:local align:4 +@3913 = .rodata:0x80484984; // type:object size:0xB scope:local align:4 +@3914 = .rodata:0x80484990; // type:object size:0xD scope:local align:4 +@3917 = .rodata:0x804849A0; // type:object size:0xB scope:local align:4 +@3919 = .rodata:0x804849AC; // type:object size:0xB scope:local align:4 +@3921 = .rodata:0x804849B8; // type:object size:0x11 scope:local align:4 +@3923 = .rodata:0x804849CC; // type:object size:0x9 scope:local align:4 +@3925 = .rodata:0x804849D8; // type:object size:0x9 scope:local align:4 +@3928 = .rodata:0x804849E4; // type:object size:0x9 scope:local align:4 +@3930 = .rodata:0x804849F0; // type:object size:0x9 scope:local align:4 +@3932 = .rodata:0x804849FC; // type:object size:0xB scope:local align:4 +@3934 = .rodata:0x80484A08; // type:object size:0x11 scope:local align:4 +@3935 = .rodata:0x80484A1C; // type:object size:0xD scope:local align:4 +@3936 = .rodata:0x80484A2C; // type:object size:0xB scope:local align:4 +@3937 = .rodata:0x80484A38; // type:object size:0xD scope:local align:4 +@3938 = .rodata:0x80484A48; // type:object size:0xD scope:local align:4 +@3939 = .rodata:0x80484A58; // type:object size:0xF scope:local align:4 +@3940 = .rodata:0x80484A68; // type:object size:0xF scope:local align:4 +@3942 = .rodata:0x80484A78; // type:object size:0x9 scope:local align:4 +@3944 = .rodata:0x80484A84; // type:object size:0x9 scope:local align:4 +@3945 = .rodata:0x80484A90; // type:object size:0x17 scope:local align:4 +@3946 = .rodata:0x80484AA8; // type:object size:0xD scope:local align:4 +@3948 = .rodata:0x80484AB8; // type:object size:0xD scope:local align:4 +@3949 = .rodata:0x80484AC8; // type:object size:0xF scope:local align:4 +@3950 = .rodata:0x80484AD8; // type:object size:0xF scope:local align:4 +@3951 = .rodata:0x80484AE8; // type:object size:0xF scope:local align:4 +@3952 = .rodata:0x80484AF8; // type:object size:0xF scope:local align:4 +@3953 = .rodata:0x80484B08; // type:object size:0xF scope:local align:4 +@3954 = .rodata:0x80484B18; // type:object size:0xF scope:local align:4 +@3955 = .rodata:0x80484B28; // type:object size:0xF scope:local align:4 +@3972 = .rodata:0x80484B38; // type:object size:0x18 scope:local align:4 data:4byte +@4035 = .rodata:0x80484B50; // type:object size:0xB scope:local align:4 data:string +@4036 = .rodata:0x80484B5C; // type:object size:0x9 scope:local align:4 data:string +@4037 = .rodata:0x80484B68; // type:object size:0xC scope:local align:4 data:string +@3991 = .rodata:0x80484B78; // type:object size:0xC scope:local align:4 data:string +@4055 = .rodata:0x80484B84; // type:object size:0xB scope:local align:4 data:string +@4313 = .rodata:0x80484B90; // type:object size:0x14 scope:local align:4 data:4byte +@3651 = .rodata:0x80484BA8; // type:object size:0x9 scope:local align:4 data:string +@3655 = .rodata:0x80484BB4; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80484BC0; // type:label scope:local +@3510 = .rodata:0x80484BC0; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x80484BCC; // type:object size:0x15 scope:local align:4 +@3541 = .rodata:0x80484BE4; // type:object size:0xA scope:local align:4 data:string +@3542 = .rodata:0x80484BF0; // type:object size:0x9 scope:local align:4 +@3546 = .rodata:0x80484BFC; // type:object size:0xD scope:local align:4 +@3549 = .rodata:0x80484C0C; // type:object size:0x9 scope:local align:4 +@3552 = .rodata:0x80484C18; // type:object size:0xB scope:local align:4 +@3588 = .rodata:0x80484C24; // type:object size:0x13 scope:local align:4 data:string +@3589 = .rodata:0x80484C38; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x80484C4C; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x80484C5C; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x80484C6C; // type:object size:0xD scope:local align:4 data:string +@3649 = .rodata:0x80484C7C; // type:object size:0xF scope:local align:4 data:string +@3653 = .rodata:0x80484C8C; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x80484C9C; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x80484CAC; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x80484CB8; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x80484CC8; // type:object size:0x1F scope:local align:4 +@3661 = .rodata:0x80484CE8; // type:object size:0x13 scope:local align:4 +@3663 = .rodata:0x80484CFC; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x80484D10; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x80484D24; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x80484D38; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80484D44; // type:object size:0xD scope:local align:4 +@3674 = .rodata:0x80484D54; // type:object size:0xB scope:local align:4 +@3676 = .rodata:0x80484D60; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x80484D6C; // type:object size:0x11 scope:local align:4 +@3680 = .rodata:0x80484D80; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x80484D8C; // type:object size:0x9 scope:local align:4 +@3685 = .rodata:0x80484D98; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x80484DA4; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x80484DB0; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x80484DBC; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x80484DD0; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x80484DE0; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x80484DEC; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80484DFC; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x80484E0C; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x80484E1C; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x80484E2C; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x80484E38; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80484E44; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x80484E5C; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80484E6C; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x80484E7C; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x80484E8C; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80484E9C; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80484EAC; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x80484EBC; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80484ECC; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x80484EDC; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80484EF0; // type:label scope:local +@3510 = .rodata:0x80484EF0; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x80484EFC; // type:object size:0x15 scope:local align:4 +@3539 = .rodata:0x80484F14; // type:object size:0xF scope:local align:4 data:string +@3540 = .rodata:0x80484F24; // type:object size:0xB scope:local align:4 +@3544 = .rodata:0x80484F30; // type:object size:0xD scope:local align:4 +@3580 = .rodata:0x80484F40; // type:object size:0x13 scope:local align:4 data:string +@3581 = .rodata:0x80484F54; // type:object size:0x13 scope:local align:4 data:string +@3584 = .rodata:0x80484F68; // type:object size:0xF scope:local align:4 data:string +@3585 = .rodata:0x80484F78; // type:object size:0xE scope:local align:4 data:string +@3591 = .rodata:0x80484F88; // type:object size:0xD scope:local align:4 data:string +@3644 = .rodata:0x80484F98; // type:object size:0xD scope:local align:4 +@3646 = .rodata:0x80484FA8; // type:object size:0xD scope:local align:4 +@3647 = .rodata:0x80484FB8; // type:object size:0xB scope:local align:4 +@3649 = .rodata:0x80484FC4; // type:object size:0xF scope:local align:4 +@3651 = .rodata:0x80484FD4; // type:object size:0x1F scope:local align:4 +@3653 = .rodata:0x80484FF4; // type:object size:0x13 scope:local align:4 +@3655 = .rodata:0x80485008; // type:object size:0x13 scope:local align:4 +@3657 = .rodata:0x8048501C; // type:object size:0x12 scope:local align:4 +@3658 = .rodata:0x80485030; // type:object size:0x11 scope:local align:4 +@3663 = .rodata:0x80485044; // type:object size:0xB scope:local align:4 +@3664 = .rodata:0x80485050; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x80485060; // type:object size:0xB scope:local align:4 +@3669 = .rodata:0x8048506C; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80485078; // type:object size:0x11 scope:local align:4 +@3673 = .rodata:0x8048508C; // type:object size:0x9 scope:local align:4 +@3675 = .rodata:0x80485098; // type:object size:0x9 scope:local align:4 +@3678 = .rodata:0x804850A4; // type:object size:0x9 scope:local align:4 +@3680 = .rodata:0x804850B0; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x804850BC; // type:object size:0xB scope:local align:4 +@3683 = .rodata:0x804850C8; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x804850DC; // type:object size:0xD scope:local align:4 +@3685 = .rodata:0x804850EC; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x804850F8; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x80485108; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x80485118; // type:object size:0xF scope:local align:4 +@3689 = .rodata:0x80485128; // type:object size:0xF scope:local align:4 +@3691 = .rodata:0x80485138; // type:object size:0x9 scope:local align:4 +@3693 = .rodata:0x80485144; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x80485150; // type:object size:0x17 scope:local align:4 +@3696 = .rodata:0x80485168; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x80485178; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x80485188; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x80485198; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x804851A8; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x804851B8; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x804851C8; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x804851D8; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x804851E8; // type:object size:0xF scope:local align:4 +@4610 = .rodata:0x804851F8; // type:object size:0xA scope:local align:4 data:string +@3689 = .rodata:0x80485208; // type:object size:0x9 scope:local align:4 data:string +@3690 = .rodata:0x80485214; // type:object size:0xB scope:local align:4 data:string +@3854 = .rodata:0x80485220; // type:object size:0xA scope:local align:4 data:string +@3523 = .rodata:0x80485230; // type:object size:0x11 scope:local align:4 +@3533 = .rodata:0x80485244; // type:object size:0xC scope:local align:4 data:4byte +@3563 = .rodata:0x80485250; // type:object size:0xC scope:local align:4 data:4byte +@3609 = .rodata:0x8048525C; // type:object size:0xE scope:local align:4 data:string +@3610 = .rodata:0x8048526C; // type:object size:0x9 scope:local align:4 data:string +@3970 = .rodata:0x80485278; // type:object size:0xC scope:local align:4 data:4byte +@3601 = .rodata:0x80485288; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80485298; // type:label scope:local +@3510 = .rodata:0x80485298; // type:object size:0xF scope:local align:4 data:string +@3523 = .rodata:0x804852A8; // type:object size:0x15 scope:local align:4 +@3544 = .rodata:0x804852C0; // type:object size:0xB scope:local align:4 data:string +@3545 = .rodata:0x804852CC; // type:object size:0xD scope:local align:4 data:string +@3559 = .rodata:0x804852DC; // type:object size:0x13 scope:local align:4 +@3585 = .rodata:0x804852F0; // type:object size:0xF scope:local align:4 data:string +@3586 = .rodata:0x80485300; // type:object size:0x9 scope:local align:4 +@3590 = .rodata:0x8048530C; // type:object size:0xF scope:local align:4 +@3593 = .rodata:0x8048531C; // type:object size:0xD scope:local align:4 +@3596 = .rodata:0x8048532C; // type:object size:0x9 scope:local align:4 +@3599 = .rodata:0x80485338; // type:object size:0x9 scope:local align:4 +@3634 = .rodata:0x80485344; // type:object size:0x13 scope:local align:4 data:string +@3635 = .rodata:0x80485358; // type:object size:0x13 scope:local align:4 data:string +@3637 = .rodata:0x8048536C; // type:object size:0xF scope:local align:4 data:string +@3638 = .rodata:0x8048537C; // type:object size:0xE scope:local align:4 data:string +@3644 = .rodata:0x8048538C; // type:object size:0xD scope:local align:4 data:string +@3697 = .rodata:0x8048539C; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x804853AC; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x804853BC; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x804853C8; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x804853D8; // type:object size:0x1F scope:local align:4 +@3704 = .rodata:0x804853F8; // type:object size:0x13 scope:local align:4 +@3706 = .rodata:0x8048540C; // type:object size:0x13 scope:local align:4 +@3708 = .rodata:0x80485420; // type:object size:0x12 scope:local align:4 +@3709 = .rodata:0x80485434; // type:object size:0x11 scope:local align:4 +@3714 = .rodata:0x80485448; // type:object size:0xB scope:local align:4 +@3715 = .rodata:0x80485454; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x80485464; // type:object size:0xB scope:local align:4 +@3718 = .rodata:0x80485470; // type:object size:0xB scope:local align:4 +@3720 = .rodata:0x8048547C; // type:object size:0x11 scope:local align:4 +@3722 = .rodata:0x80485490; // type:object size:0x9 scope:local align:4 +@3724 = .rodata:0x8048549C; // type:object size:0x9 scope:local align:4 +@3727 = .rodata:0x804854A8; // type:object size:0x9 scope:local align:4 +@3729 = .rodata:0x804854B4; // type:object size:0x9 scope:local align:4 +@3731 = .rodata:0x804854C0; // type:object size:0xB scope:local align:4 +@3733 = .rodata:0x804854CC; // type:object size:0x11 scope:local align:4 +@3734 = .rodata:0x804854E0; // type:object size:0xD scope:local align:4 +@3735 = .rodata:0x804854F0; // type:object size:0xB scope:local align:4 +@3736 = .rodata:0x804854FC; // type:object size:0xD scope:local align:4 +@3737 = .rodata:0x8048550C; // type:object size:0xD scope:local align:4 +@3738 = .rodata:0x8048551C; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x8048552C; // type:object size:0xF scope:local align:4 +@3741 = .rodata:0x8048553C; // type:object size:0x9 scope:local align:4 +@3743 = .rodata:0x80485548; // type:object size:0x9 scope:local align:4 +@3744 = .rodata:0x80485554; // type:object size:0x17 scope:local align:4 +@3745 = .rodata:0x8048556C; // type:object size:0xD scope:local align:4 +@3747 = .rodata:0x8048557C; // type:object size:0xD scope:local align:4 +@3748 = .rodata:0x8048558C; // type:object size:0xF scope:local align:4 +@3749 = .rodata:0x8048559C; // type:object size:0xF scope:local align:4 +@3750 = .rodata:0x804855AC; // type:object size:0xF scope:local align:4 +@3751 = .rodata:0x804855BC; // type:object size:0xF scope:local align:4 +@3752 = .rodata:0x804855CC; // type:object size:0xF scope:local align:4 +@3753 = .rodata:0x804855DC; // type:object size:0xF scope:local align:4 +@3754 = .rodata:0x804855EC; // type:object size:0xF scope:local align:4 +@4272 = .rodata:0x80485600; // type:object size:0xA scope:local align:4 data:string +@3520 = .rodata:0x80485610; // type:object size:0x15 scope:local align:4 +@3997 = .rodata:0x80485628; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80485638; // type:label scope:local +@3517 = .rodata:0x80485638; // type:object size:0xC scope:local align:4 data:string +@3530 = .rodata:0x80485644; // type:object size:0x11 scope:local align:4 +@3552 = .rodata:0x80485658; // type:object size:0x10 scope:local align:4 data:string +@3553 = .rodata:0x80485668; // type:object size:0xE scope:local align:4 data:string +@3554 = .rodata:0x80485678; // type:object size:0xD scope:local align:4 data:string +@3568 = .rodata:0x80485688; // type:object size:0xF scope:local align:4 +@3590 = .rodata:0x80485698; // type:object size:0xF scope:local align:4 data:string +@3591 = .rodata:0x804856A8; // type:object size:0x13 scope:local align:4 +@3628 = .rodata:0x804856BC; // type:object size:0x13 scope:local align:4 data:string +@3629 = .rodata:0x804856D0; // type:object size:0x13 scope:local align:4 data:string +@3632 = .rodata:0x804856E4; // type:object size:0xF scope:local align:4 data:string +@3633 = .rodata:0x804856F4; // type:object size:0xE scope:local align:4 data:string +@3639 = .rodata:0x80485704; // type:object size:0xD scope:local align:4 data:string +@3692 = .rodata:0x80485714; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80485724; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x80485734; // type:object size:0xB scope:local align:4 +@3697 = .rodata:0x80485740; // type:object size:0xF scope:local align:4 +@3699 = .rodata:0x80485750; // type:object size:0x1F scope:local align:4 +@3700 = .rodata:0x80485770; // type:object size:0x13 scope:local align:4 +@3702 = .rodata:0x80485784; // type:object size:0x13 scope:local align:4 +@3704 = .rodata:0x80485798; // type:object size:0x12 scope:local align:4 +@3705 = .rodata:0x804857AC; // type:object size:0x11 scope:local align:4 +@3710 = .rodata:0x804857C0; // type:object size:0xB scope:local align:4 +@3711 = .rodata:0x804857CC; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x804857DC; // type:object size:0xB scope:local align:4 +@3716 = .rodata:0x804857E8; // type:object size:0xB scope:local align:4 +@3718 = .rodata:0x804857F4; // type:object size:0x11 scope:local align:4 +@3720 = .rodata:0x80485808; // type:object size:0x9 scope:local align:4 +@3722 = .rodata:0x80485814; // type:object size:0x9 scope:local align:4 +@3725 = .rodata:0x80485820; // type:object size:0x9 scope:local align:4 +@3727 = .rodata:0x8048582C; // type:object size:0x9 scope:local align:4 +@3729 = .rodata:0x80485838; // type:object size:0xB scope:local align:4 +@3731 = .rodata:0x80485844; // type:object size:0x11 scope:local align:4 +@3732 = .rodata:0x80485858; // type:object size:0xD scope:local align:4 +@3733 = .rodata:0x80485868; // type:object size:0xB scope:local align:4 +@3734 = .rodata:0x80485874; // type:object size:0xD scope:local align:4 +@3735 = .rodata:0x80485884; // type:object size:0xD scope:local align:4 +@3736 = .rodata:0x80485894; // type:object size:0xF scope:local align:4 +@3737 = .rodata:0x804858A4; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x804858B4; // type:object size:0x9 scope:local align:4 +@3741 = .rodata:0x804858C0; // type:object size:0x9 scope:local align:4 +@3743 = .rodata:0x804858CC; // type:object size:0x17 scope:local align:4 +@3744 = .rodata:0x804858E4; // type:object size:0xD scope:local align:4 +@3746 = .rodata:0x804858F4; // type:object size:0xD scope:local align:4 +@3747 = .rodata:0x80485904; // type:object size:0xF scope:local align:4 +@3748 = .rodata:0x80485914; // type:object size:0xF scope:local align:4 +@3749 = .rodata:0x80485924; // type:object size:0xF scope:local align:4 +@3750 = .rodata:0x80485934; // type:object size:0xF scope:local align:4 +@3751 = .rodata:0x80485944; // type:object size:0xF scope:local align:4 +@3752 = .rodata:0x80485954; // type:object size:0xF scope:local align:4 +@3753 = .rodata:0x80485964; // type:object size:0xF scope:local align:4 +@3665 = .rodata:0x80485978; // type:object size:0x9 scope:local align:4 data:string +@3666 = .rodata:0x80485984; // type:object size:0xB scope:local align:4 data:string +@3516 = .rodata:0x80485990; // type:object size:0x15 scope:local align:4 +@3538 = .rodata:0x804859A8; // type:object size:0xF scope:local align:4 data:string +@3539 = .rodata:0x804859B8; // type:object size:0xD scope:local align:4 +@4599 = .rodata:0x804859C8; // type:object size:0xA scope:local align:4 data:string +@3967 = .rodata:0x804859D8; // type:object size:0x9 scope:local align:4 data:string +@3968 = .rodata:0x804859E4; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x804859F0; // type:label scope:local +@3510 = .rodata:0x804859F0; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x804859FC; // type:object size:0x13 scope:local align:4 +@3542 = .rodata:0x80485A10; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x80485A20; // type:object size:0xB scope:local align:4 +@3547 = .rodata:0x80485A2C; // type:object size:0xB scope:local align:4 +@3549 = .rodata:0x80485A38; // type:object size:0xF scope:local align:4 +@3552 = .rodata:0x80485A48; // type:object size:0xB scope:local align:4 +@3554 = .rodata:0x80485A54; // type:object size:0xD scope:local align:4 +@3590 = .rodata:0x80485A64; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x80485A78; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x80485A8C; // type:object size:0xF scope:local align:4 data:string +@3593 = .rodata:0x80485A9C; // type:object size:0xE scope:local align:4 data:string +@3599 = .rodata:0x80485AAC; // type:object size:0xD scope:local align:4 data:string +@3652 = .rodata:0x80485ABC; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x80485ACC; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x80485ADC; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x80485AE8; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x80485AF8; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x80485B18; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x80485B2C; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x80485B40; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x80485B54; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x80485B68; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80485B74; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x80485B84; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x80485B90; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x80485B9C; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x80485BB0; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x80485BBC; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x80485BC8; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x80485BD4; // type:object size:0x9 scope:local align:4 +@3691 = .rodata:0x80485BE0; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x80485BEC; // type:object size:0x11 scope:local align:4 +@3693 = .rodata:0x80485C00; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80485C10; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x80485C1C; // type:object size:0xD scope:local align:4 +@3696 = .rodata:0x80485C2C; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x80485C3C; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x80485C4C; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x80485C5C; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80485C68; // type:object size:0x9 scope:local align:4 +@3703 = .rodata:0x80485C74; // type:object size:0x17 scope:local align:4 +@3704 = .rodata:0x80485C8C; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x80485C9C; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x80485CAC; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80485CBC; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80485CCC; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x80485CDC; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80485CEC; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x80485CFC; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x80485D0C; // type:object size:0xF scope:local align:4 +@4794 = .rodata:0x80485D20; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80485D30; // type:label scope:local +@3510 = .rodata:0x80485D30; // type:object size:0xC scope:local align:4 data:string +@3520 = .rodata:0x80485D3C; // type:object size:0xF scope:local align:4 +@3554 = .rodata:0x80485D4C; // type:object size:0xF scope:local align:4 data:string +@3555 = .rodata:0x80485D5C; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x80485D6C; // type:object size:0xB scope:local align:4 +@3560 = .rodata:0x80485D78; // type:object size:0x9 scope:local align:4 +@3562 = .rodata:0x80485D84; // type:object size:0x9 scope:local align:4 data:string +@3565 = .rodata:0x80485D90; // type:object size:0xB scope:local align:4 data:string +@3600 = .rodata:0x80485D9C; // type:object size:0x13 scope:local align:4 data:string +@3601 = .rodata:0x80485DB0; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x80485DC4; // type:object size:0xF scope:local align:4 data:string +@3604 = .rodata:0x80485DD4; // type:object size:0xE scope:local align:4 data:string +@3610 = .rodata:0x80485DE4; // type:object size:0xD scope:local align:4 data:string +@3663 = .rodata:0x80485DF4; // type:object size:0xD scope:local align:4 +@3666 = .rodata:0x80485E04; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x80485E14; // type:object size:0xB scope:local align:4 +@3669 = .rodata:0x80485E20; // type:object size:0xF scope:local align:4 +@3671 = .rodata:0x80485E30; // type:object size:0x1F scope:local align:4 +@3673 = .rodata:0x80485E50; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x80485E64; // type:object size:0x13 scope:local align:4 +@3677 = .rodata:0x80485E78; // type:object size:0x12 scope:local align:4 +@3678 = .rodata:0x80485E8C; // type:object size:0x11 scope:local align:4 +@3683 = .rodata:0x80485EA0; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80485EAC; // type:object size:0xD scope:local align:4 +@3686 = .rodata:0x80485EBC; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x80485EC8; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x80485ED4; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x80485EE8; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80485EF4; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x80485F00; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x80485F0C; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x80485F18; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x80485F24; // type:object size:0x11 scope:local align:4 +@3704 = .rodata:0x80485F38; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80485F48; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x80485F54; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x80485F64; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x80485F74; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80485F84; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80485F94; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x80485FA0; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x80485FAC; // type:object size:0x17 scope:local align:4 +@3716 = .rodata:0x80485FC4; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x80485FD4; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x80485FE4; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80485FF4; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80486004; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80486014; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x80486024; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x80486034; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x80486044; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80486058; // type:label scope:local +@3510 = .rodata:0x80486058; // type:object size:0xF scope:local align:4 data:string +@3520 = .rodata:0x80486068; // type:object size:0x13 scope:local align:4 +@3555 = .rodata:0x8048607C; // type:object size:0xF scope:local align:4 data:string +@3556 = .rodata:0x8048608C; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x8048609C; // type:object size:0xD scope:local align:4 +@3561 = .rodata:0x804860AC; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x804860BC; // type:object size:0x9 scope:local align:4 +@3565 = .rodata:0x804860C8; // type:object size:0x9 scope:local align:4 data:string +@3567 = .rodata:0x804860D4; // type:object size:0xB scope:local align:4 data:string +@3602 = .rodata:0x804860E0; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x804860F4; // type:object size:0x13 scope:local align:4 data:string +@3605 = .rodata:0x80486108; // type:object size:0xF scope:local align:4 data:string +@3606 = .rodata:0x80486118; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x80486128; // type:object size:0xD scope:local align:4 data:string +@3665 = .rodata:0x80486138; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x80486148; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x80486158; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80486164; // type:object size:0xF scope:local align:4 +@3673 = .rodata:0x80486174; // type:object size:0x1F scope:local align:4 +@3675 = .rodata:0x80486194; // type:object size:0x13 scope:local align:4 +@3677 = .rodata:0x804861A8; // type:object size:0x13 scope:local align:4 +@3679 = .rodata:0x804861BC; // type:object size:0x12 scope:local align:4 +@3680 = .rodata:0x804861D0; // type:object size:0x11 scope:local align:4 +@3685 = .rodata:0x804861E4; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x804861F0; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x80486200; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048620C; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x80486218; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x8048622C; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80486238; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x80486244; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x80486250; // type:object size:0x9 scope:local align:4 +@3703 = .rodata:0x8048625C; // type:object size:0xB scope:local align:4 +@3705 = .rodata:0x80486268; // type:object size:0x11 scope:local align:4 +@3706 = .rodata:0x8048627C; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x8048628C; // type:object size:0xB scope:local align:4 +@3708 = .rodata:0x80486298; // type:object size:0xD scope:local align:4 +@3709 = .rodata:0x804862A8; // type:object size:0xD scope:local align:4 +@3710 = .rodata:0x804862B8; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x804862C8; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x804862D8; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x804862E4; // type:object size:0x9 scope:local align:4 +@3717 = .rodata:0x804862F0; // type:object size:0x17 scope:local align:4 +@3718 = .rodata:0x80486308; // type:object size:0xD scope:local align:4 +@3719 = .rodata:0x80486318; // type:object size:0xD scope:local align:4 +@3720 = .rodata:0x80486328; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80486338; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x80486348; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x80486358; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x80486368; // type:object size:0xF scope:local align:4 +@3725 = .rodata:0x80486378; // type:object size:0xF scope:local align:4 +@3726 = .rodata:0x80486388; // type:object size:0xF scope:local align:4 +@4348 = .rodata:0x80486398; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804863A8; // type:label scope:local +@3513 = .rodata:0x804863A8; // type:object size:0x10 scope:local align:4 data:string +@3526 = .rodata:0x804863B8; // type:object size:0x15 scope:local align:4 +@3546 = .rodata:0x804863D0; // type:object size:0x10 scope:local align:4 data:string +@3564 = .rodata:0x804863E0; // type:object size:0x13 scope:local align:4 +@3599 = .rodata:0x804863F4; // type:object size:0xF scope:local align:4 data:string +@3600 = .rodata:0x80486404; // type:object size:0xD scope:local align:4 +@3603 = .rodata:0x80486414; // type:object size:0x9 scope:local align:4 +@3604 = .rodata:0x80486420; // type:object size:0x9 scope:local align:4 +@3605 = .rodata:0x8048642C; // type:object size:0x9 scope:local align:4 +@3607 = .rodata:0x80486438; // type:object size:0x9 scope:local align:4 data:string +@3610 = .rodata:0x80486444; // type:object size:0xB scope:local align:4 data:string +@3645 = .rodata:0x80486450; // type:object size:0x13 scope:local align:4 data:string +@3646 = .rodata:0x80486464; // type:object size:0x13 scope:local align:4 data:string +@3648 = .rodata:0x80486478; // type:object size:0xF scope:local align:4 data:string +@3649 = .rodata:0x80486488; // type:object size:0xE scope:local align:4 data:string +@3655 = .rodata:0x80486498; // type:object size:0xD scope:local align:4 data:string +@3708 = .rodata:0x804864A8; // type:object size:0xD scope:local align:4 +@3711 = .rodata:0x804864B8; // type:object size:0xD scope:local align:4 +@3712 = .rodata:0x804864C8; // type:object size:0xB scope:local align:4 +@3714 = .rodata:0x804864D4; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x804864E4; // type:object size:0x1F scope:local align:4 +@3718 = .rodata:0x80486504; // type:object size:0x13 scope:local align:4 +@3720 = .rodata:0x80486518; // type:object size:0x13 scope:local align:4 +@3722 = .rodata:0x8048652C; // type:object size:0x12 scope:local align:4 +@3723 = .rodata:0x80486540; // type:object size:0x11 scope:local align:4 +@3728 = .rodata:0x80486554; // type:object size:0xB scope:local align:4 +@3729 = .rodata:0x80486560; // type:object size:0xD scope:local align:4 +@3731 = .rodata:0x80486570; // type:object size:0xB scope:local align:4 +@3733 = .rodata:0x8048657C; // type:object size:0xB scope:local align:4 +@3735 = .rodata:0x80486588; // type:object size:0x11 scope:local align:4 +@3737 = .rodata:0x8048659C; // type:object size:0x9 scope:local align:4 +@3739 = .rodata:0x804865A8; // type:object size:0x9 scope:local align:4 +@3742 = .rodata:0x804865B4; // type:object size:0x9 scope:local align:4 +@3744 = .rodata:0x804865C0; // type:object size:0x9 scope:local align:4 +@3746 = .rodata:0x804865CC; // type:object size:0xB scope:local align:4 +@3748 = .rodata:0x804865D8; // type:object size:0x11 scope:local align:4 +@3749 = .rodata:0x804865EC; // type:object size:0xD scope:local align:4 +@3750 = .rodata:0x804865FC; // type:object size:0xB scope:local align:4 +@3751 = .rodata:0x80486608; // type:object size:0xD scope:local align:4 +@3752 = .rodata:0x80486618; // type:object size:0xD scope:local align:4 +@3753 = .rodata:0x80486628; // type:object size:0xF scope:local align:4 +@3754 = .rodata:0x80486638; // type:object size:0xF scope:local align:4 +@3756 = .rodata:0x80486648; // type:object size:0x9 scope:local align:4 +@3758 = .rodata:0x80486654; // type:object size:0x9 scope:local align:4 +@3760 = .rodata:0x80486660; // type:object size:0x17 scope:local align:4 +@3761 = .rodata:0x80486678; // type:object size:0xD scope:local align:4 +@3762 = .rodata:0x80486688; // type:object size:0xD scope:local align:4 +@3763 = .rodata:0x80486698; // type:object size:0xF scope:local align:4 +@3764 = .rodata:0x804866A8; // type:object size:0xF scope:local align:4 +@3765 = .rodata:0x804866B8; // type:object size:0xF scope:local align:4 +@3766 = .rodata:0x804866C8; // type:object size:0xF scope:local align:4 +@3767 = .rodata:0x804866D8; // type:object size:0xF scope:local align:4 +@3768 = .rodata:0x804866E8; // type:object size:0xF scope:local align:4 +@3769 = .rodata:0x804866F8; // type:object size:0xF scope:local align:4 +@4614 = .rodata:0x80486708; // type:object size:0xD scope:local align:4 data:string +@3936 = .rodata:0x80486718; // type:object size:0x9 scope:local align:4 data:string +@3937 = .rodata:0x80486724; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80486730; // type:label scope:local +@3510 = .rodata:0x80486730; // type:object size:0xD scope:local align:4 data:string +@3516 = .rodata:0x80486740; // type:object size:0x15 scope:local align:4 +@3551 = .rodata:0x80486758; // type:object size:0xF scope:local align:4 data:string +@3552 = .rodata:0x80486768; // type:object size:0xD scope:local align:4 +@3556 = .rodata:0x80486778; // type:object size:0xD scope:local align:4 +@3558 = .rodata:0x80486788; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x80486798; // type:object size:0xD scope:local align:4 +@3561 = .rodata:0x804867A8; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x804867B8; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x804867C8; // type:object size:0xC scope:local align:4 +@3569 = .rodata:0x804867D4; // type:object size:0xC scope:local align:4 +@3571 = .rodata:0x804867E0; // type:object size:0xC scope:local align:4 +@3573 = .rodata:0x804867EC; // type:object size:0xC scope:local align:4 +@3575 = .rodata:0x804867F8; // type:object size:0xB scope:local align:4 +@3576 = .rodata:0x80486804; // type:object size:0xF scope:local align:4 +@3578 = .rodata:0x80486814; // type:object size:0xF scope:local align:4 +@3580 = .rodata:0x80486824; // type:object size:0xF scope:local align:4 +@3616 = .rodata:0x80486834; // type:object size:0x13 scope:local align:4 data:string +@3617 = .rodata:0x80486848; // type:object size:0x13 scope:local align:4 data:string +@3619 = .rodata:0x8048685C; // type:object size:0xF scope:local align:4 data:string +@3620 = .rodata:0x8048686C; // type:object size:0xE scope:local align:4 data:string +@3625 = .rodata:0x8048687C; // type:object size:0xD scope:local align:4 data:string +@3677 = .rodata:0x8048688C; // type:object size:0xD scope:local align:4 +@3678 = .rodata:0x8048689C; // type:object size:0xD scope:local align:4 +@3679 = .rodata:0x804868AC; // type:object size:0xB scope:local align:4 +@3681 = .rodata:0x804868B8; // type:object size:0xF scope:local align:4 +@3683 = .rodata:0x804868C8; // type:object size:0x1F scope:local align:4 +@3685 = .rodata:0x804868E8; // type:object size:0x13 scope:local align:4 +@3687 = .rodata:0x804868FC; // type:object size:0x13 scope:local align:4 +@3689 = .rodata:0x80486910; // type:object size:0x12 scope:local align:4 +@3690 = .rodata:0x80486924; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x80486938; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x80486944; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x80486954; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x80486960; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x8048696C; // type:object size:0x11 scope:local align:4 +@3702 = .rodata:0x80486980; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x8048698C; // type:object size:0x9 scope:local align:4 +@3707 = .rodata:0x80486998; // type:object size:0x9 scope:local align:4 +@3709 = .rodata:0x804869A4; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x804869B0; // type:object size:0xB scope:local align:4 +@3712 = .rodata:0x804869BC; // type:object size:0x11 scope:local align:4 +@3713 = .rodata:0x804869D0; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x804869E0; // type:object size:0xB scope:local align:4 +@3715 = .rodata:0x804869EC; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x804869FC; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x80486A0C; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80486A1C; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80486A2C; // type:object size:0x9 scope:local align:4 +@3722 = .rodata:0x80486A38; // type:object size:0x9 scope:local align:4 +@3724 = .rodata:0x80486A44; // type:object size:0x17 scope:local align:4 +@3725 = .rodata:0x80486A5C; // type:object size:0xD scope:local align:4 +@3727 = .rodata:0x80486A6C; // type:object size:0xD scope:local align:4 +@3728 = .rodata:0x80486A7C; // type:object size:0xF scope:local align:4 +@3729 = .rodata:0x80486A8C; // type:object size:0xF scope:local align:4 +@3730 = .rodata:0x80486A9C; // type:object size:0xF scope:local align:4 +@3731 = .rodata:0x80486AAC; // type:object size:0xF scope:local align:4 +@3732 = .rodata:0x80486ABC; // type:object size:0xF scope:local align:4 +@3733 = .rodata:0x80486ACC; // type:object size:0xF scope:local align:4 +@3734 = .rodata:0x80486ADC; // type:object size:0xF scope:local align:4 +@3954 = .rodata:0x80486AF0; // type:object size:0x9 scope:local align:4 data:string +@3955 = .rodata:0x80486AFC; // type:object size:0x9 scope:local align:4 data:string +@3614 = .rodata:0x80486B08; // type:object size:0x9 scope:local align:4 data:string +@3615 = .rodata:0x80486B14; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80486B20; // type:label scope:local +@3517 = .rodata:0x80486B20; // type:object size:0xC scope:local align:4 data:string +@3523 = .rodata:0x80486B2C; // type:object size:0x17 scope:local align:4 +@3596 = .rodata:0x80486B44; // type:object size:0xC scope:local align:4 data:string +@3597 = .rodata:0x80486B50; // type:object size:0x9 scope:local align:4 data:string +@3598 = .rodata:0x80486B5C; // type:object size:0x11 scope:local align:4 data:string +@3519 = .rodata:0x80486B70; // type:object size:0x11 scope:local align:4 +@3516 = .rodata:0x80486B88; // type:object size:0x11 scope:local align:4 +@3538 = .rodata:0x80486B9C; // type:object size:0xF scope:local align:4 data:string +@3539 = .rodata:0x80486BAC; // type:object size:0x11 scope:local align:4 +...rodata.0 = .rodata:0x80486BC0; // type:label scope:local +@3529 = .rodata:0x80486BC0; // type:object size:0x11 scope:local align:4 data:string +@3659 = .rodata:0x80486BD4; // type:object size:0xA scope:local align:4 data:string +@3660 = .rodata:0x80486BE0; // type:object size:0xC scope:local align:4 data:string +@3661 = .rodata:0x80486BEC; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80486C00; // type:label scope:local +@3510 = .rodata:0x80486C00; // type:object size:0xF scope:local align:4 data:string +@3516 = .rodata:0x80486C10; // type:object size:0x15 scope:local align:4 +@3540 = .rodata:0x80486C28; // type:object size:0xF scope:local align:4 data:string +@3541 = .rodata:0x80486C38; // type:object size:0x11 scope:local align:4 +@3545 = .rodata:0x80486C4C; // type:object size:0xD scope:local align:4 +@3547 = .rodata:0x80486C5C; // type:object size:0x9 scope:local align:4 +@3582 = .rodata:0x80486C68; // type:object size:0x13 scope:local align:4 data:string +@3583 = .rodata:0x80486C7C; // type:object size:0x13 scope:local align:4 data:string +@3586 = .rodata:0x80486C90; // type:object size:0xF scope:local align:4 data:string +@3587 = .rodata:0x80486CA0; // type:object size:0xE scope:local align:4 data:string +@3593 = .rodata:0x80486CB0; // type:object size:0xD scope:local align:4 data:string +@3647 = .rodata:0x80486CC0; // type:object size:0xD scope:local align:4 +@3650 = .rodata:0x80486CD0; // type:object size:0xD scope:local align:4 +@3651 = .rodata:0x80486CE0; // type:object size:0xB scope:local align:4 +@3653 = .rodata:0x80486CEC; // type:object size:0xF scope:local align:4 +@3655 = .rodata:0x80486CFC; // type:object size:0x1F scope:local align:4 +@3657 = .rodata:0x80486D1C; // type:object size:0x13 scope:local align:4 +@3659 = .rodata:0x80486D30; // type:object size:0x13 scope:local align:4 +@3661 = .rodata:0x80486D44; // type:object size:0x12 scope:local align:4 +@3662 = .rodata:0x80486D58; // type:object size:0x11 scope:local align:4 +@3667 = .rodata:0x80486D6C; // type:object size:0xB scope:local align:4 +@3668 = .rodata:0x80486D78; // type:object size:0xD scope:local align:4 +@3670 = .rodata:0x80486D88; // type:object size:0xB scope:local align:4 +@3672 = .rodata:0x80486D94; // type:object size:0xB scope:local align:4 +@3674 = .rodata:0x80486DA0; // type:object size:0x11 scope:local align:4 +@3676 = .rodata:0x80486DB4; // type:object size:0x9 scope:local align:4 +@3678 = .rodata:0x80486DC0; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x80486DCC; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x80486DD8; // type:object size:0x9 scope:local align:4 +@3685 = .rodata:0x80486DE4; // type:object size:0xB scope:local align:4 +@3687 = .rodata:0x80486DF0; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x80486E04; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x80486E14; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x80486E20; // type:object size:0xD scope:local align:4 +@3691 = .rodata:0x80486E30; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x80486E40; // type:object size:0xF scope:local align:4 +@3693 = .rodata:0x80486E50; // type:object size:0xF scope:local align:4 +@3695 = .rodata:0x80486E60; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x80486E6C; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x80486E78; // type:object size:0x17 scope:local align:4 +@3700 = .rodata:0x80486E90; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x80486EA0; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x80486EB0; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80486EC0; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80486ED0; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80486EE0; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x80486EF0; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80486F00; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80486F10; // type:object size:0xF scope:local align:4 +@3515 = .rodata:0x80486F20; // type:object size:0x31 scope:local align:4 data:string +@3523 = .rodata:0x80486F54; // type:object size:0x1B scope:local align:4 +@3546 = .rodata:0x80486F70; // type:object size:0xA scope:local align:4 data:string +@3751 = .rodata:0x80486F7C; // type:object size:0xD scope:local align:4 data:string +@3752 = .rodata:0x80486F8C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80486F98; // type:label scope:local +@3510 = .rodata:0x80486F98; // type:object size:0xD scope:local align:4 data:string +@3516 = .rodata:0x80486FA8; // type:object size:0x15 scope:local align:4 +@3540 = .rodata:0x80486FC0; // type:object size:0xF scope:local align:4 data:string +@3541 = .rodata:0x80486FD0; // type:object size:0xB scope:local align:4 +@3545 = .rodata:0x80486FDC; // type:object size:0xF scope:local align:4 +@3547 = .rodata:0x80486FEC; // type:object size:0xD scope:local align:4 +@3582 = .rodata:0x80486FFC; // type:object size:0x13 scope:local align:4 data:string +@3583 = .rodata:0x80487010; // type:object size:0x13 scope:local align:4 data:string +@3586 = .rodata:0x80487024; // type:object size:0xF scope:local align:4 data:string +@3587 = .rodata:0x80487034; // type:object size:0xE scope:local align:4 data:string +@3593 = .rodata:0x80487044; // type:object size:0xD scope:local align:4 data:string +@3646 = .rodata:0x80487054; // type:object size:0xD scope:local align:4 +@3649 = .rodata:0x80487064; // type:object size:0xD scope:local align:4 +@3650 = .rodata:0x80487074; // type:object size:0xB scope:local align:4 +@3652 = .rodata:0x80487080; // type:object size:0xF scope:local align:4 +@3654 = .rodata:0x80487090; // type:object size:0x1F scope:local align:4 +@3656 = .rodata:0x804870B0; // type:object size:0x13 scope:local align:4 +@3658 = .rodata:0x804870C4; // type:object size:0x13 scope:local align:4 +@3660 = .rodata:0x804870D8; // type:object size:0x12 scope:local align:4 +@3661 = .rodata:0x804870EC; // type:object size:0x11 scope:local align:4 +@3666 = .rodata:0x80487100; // type:object size:0xB scope:local align:4 +@3667 = .rodata:0x8048710C; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x8048711C; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80487128; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80487134; // type:object size:0x11 scope:local align:4 +@3675 = .rodata:0x80487148; // type:object size:0x9 scope:local align:4 +@3677 = .rodata:0x80487154; // type:object size:0x9 scope:local align:4 +@3680 = .rodata:0x80487160; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x8048716C; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x80487178; // type:object size:0xB scope:local align:4 +@3685 = .rodata:0x80487184; // type:object size:0x11 scope:local align:4 +@3686 = .rodata:0x80487198; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x804871A8; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x804871B4; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x804871C4; // type:object size:0xD scope:local align:4 +@3690 = .rodata:0x804871D4; // type:object size:0xF scope:local align:4 +@3691 = .rodata:0x804871E4; // type:object size:0xF scope:local align:4 +@3693 = .rodata:0x804871F4; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x80487200; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8048720C; // type:object size:0x17 scope:local align:4 +@3698 = .rodata:0x80487224; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x80487234; // type:object size:0xD scope:local align:4 +@3701 = .rodata:0x80487244; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x80487254; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x80487264; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80487274; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80487284; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80487294; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x804872A4; // type:object size:0xF scope:local align:4 +@4886 = .rodata:0x804872B8; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x804872C8; // type:label scope:local +@3510 = .rodata:0x804872C8; // type:object size:0xB scope:local align:4 data:string +@3511 = .rodata:0x804872D4; // type:object size:0x21 scope:local align:4 data:string +@3512 = .rodata:0x804872F8; // type:object size:0x21 scope:local align:4 data:string +@3518 = .rodata:0x8048731C; // type:object size:0x1B scope:local align:4 +@3547 = .rodata:0x80487338; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x80487348; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x80487358; // type:object size:0x9 scope:local align:4 +@3555 = .rodata:0x80487364; // type:object size:0x11 scope:local align:4 +@3557 = .rodata:0x80487378; // type:object size:0x11 scope:local align:4 +@3558 = .rodata:0x8048738C; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x8048739C; // type:object size:0xF scope:local align:4 +@3560 = .rodata:0x804873AC; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x804873BC; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x804873CC; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x804873E0; // type:object size:0x13 scope:local align:4 data:string +@3600 = .rodata:0x804873F4; // type:object size:0xF scope:local align:4 data:string +@3601 = .rodata:0x80487404; // type:object size:0xE scope:local align:4 data:string +@3607 = .rodata:0x80487414; // type:object size:0xD scope:local align:4 data:string +@3661 = .rodata:0x80487424; // type:object size:0xD scope:local align:4 +@3664 = .rodata:0x80487434; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x80487444; // type:object size:0xB scope:local align:4 +@3667 = .rodata:0x80487450; // type:object size:0xF scope:local align:4 +@3669 = .rodata:0x80487460; // type:object size:0x1F scope:local align:4 +@3671 = .rodata:0x80487480; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x80487494; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x804874A8; // type:object size:0x12 scope:local align:4 +@3676 = .rodata:0x804874BC; // type:object size:0x11 scope:local align:4 +@3681 = .rodata:0x804874D0; // type:object size:0xB scope:local align:4 +@3682 = .rodata:0x804874DC; // type:object size:0xD scope:local align:4 +@3684 = .rodata:0x804874EC; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x804874F8; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x80487504; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x80487518; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x80487524; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80487530; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x8048753C; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x80487548; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x80487554; // type:object size:0x11 scope:local align:4 +@3701 = .rodata:0x80487568; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x80487578; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x80487584; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x80487594; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x804875A4; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x804875B4; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x804875C4; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x804875D0; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x804875DC; // type:object size:0x17 scope:local align:4 +@3713 = .rodata:0x804875F4; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x80487604; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x80487614; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80487624; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80487634; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80487644; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80487654; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80487664; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x80487674; // type:object size:0xF scope:local align:4 +@3773 = .rodata:0x80487684; // type:object size:0xB scope:local align:4 data:string +@3774 = .rodata:0x80487690; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804876A0; // type:label scope:local +@3788 = .rodata:0x804876A0; // type:object size:0xD scope:local align:4 data:string +@3941 = .rodata:0x804876B0; // type:object size:0xC scope:local align:4 data:string +@3947 = .rodata:0x804876BC; // type:object size:0x9 scope:local align:4 data:string +@3948 = .rodata:0x804876C8; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804876D8; // type:label scope:local +@3521 = .rodata:0x804876D8; // type:object size:0xF scope:local align:4 data:string +@3522 = .rodata:0x804876E8; // type:object size:0x24 scope:local align:4 data:string +@3530 = .rodata:0x8048770C; // type:object size:0x17 scope:local align:4 +@3561 = .rodata:0x80487724; // type:object size:0xF scope:local align:4 data:string +@3562 = .rodata:0x80487734; // type:object size:0xE scope:local align:4 +@3566 = .rodata:0x80487744; // type:object size:0xE scope:local align:4 +@3568 = .rodata:0x80487754; // type:object size:0xE scope:local align:4 +@3571 = .rodata:0x80487764; // type:object size:0xE scope:local align:4 +@3573 = .rodata:0x80487774; // type:object size:0xE scope:local align:4 +@3574 = .rodata:0x80487784; // type:object size:0xE scope:local align:4 +@3575 = .rodata:0x80487794; // type:object size:0xD scope:local align:4 +@3578 = .rodata:0x804877A4; // type:object size:0x9 scope:local align:4 +@3614 = .rodata:0x804877B0; // type:object size:0x13 scope:local align:4 data:string +@3615 = .rodata:0x804877C4; // type:object size:0x13 scope:local align:4 data:string +@3617 = .rodata:0x804877D8; // type:object size:0xF scope:local align:4 data:string +@3618 = .rodata:0x804877E8; // type:object size:0xE scope:local align:4 data:string +@3623 = .rodata:0x804877F8; // type:object size:0xD scope:local align:4 data:string +@3676 = .rodata:0x80487808; // type:object size:0xD scope:local align:4 +@3679 = .rodata:0x80487818; // type:object size:0xD scope:local align:4 +@3680 = .rodata:0x80487828; // type:object size:0xB scope:local align:4 +@3681 = .rodata:0x80487834; // type:object size:0xF scope:local align:4 +@3683 = .rodata:0x80487844; // type:object size:0x1F scope:local align:4 +@3685 = .rodata:0x80487864; // type:object size:0x13 scope:local align:4 +@3687 = .rodata:0x80487878; // type:object size:0x13 scope:local align:4 +@3689 = .rodata:0x8048788C; // type:object size:0x12 scope:local align:4 +@3690 = .rodata:0x804878A0; // type:object size:0x11 scope:local align:4 +@3695 = .rodata:0x804878B4; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x804878C0; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x804878D0; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x804878DC; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x804878E8; // type:object size:0x11 scope:local align:4 +@3703 = .rodata:0x804878FC; // type:object size:0x9 scope:local align:4 +@3705 = .rodata:0x80487908; // type:object size:0x9 scope:local align:4 +@3707 = .rodata:0x80487914; // type:object size:0x9 scope:local align:4 +@3709 = .rodata:0x80487920; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x8048792C; // type:object size:0xB scope:local align:4 +@3713 = .rodata:0x80487938; // type:object size:0x11 scope:local align:4 +@3714 = .rodata:0x8048794C; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x8048795C; // type:object size:0xB scope:local align:4 +@3716 = .rodata:0x80487968; // type:object size:0xD scope:local align:4 +@3717 = .rodata:0x80487978; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x80487988; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80487998; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x804879A8; // type:object size:0x9 scope:local align:4 +@3723 = .rodata:0x804879B4; // type:object size:0x9 scope:local align:4 +@3725 = .rodata:0x804879C0; // type:object size:0x17 scope:local align:4 +@3726 = .rodata:0x804879D8; // type:object size:0xD scope:local align:4 +@3728 = .rodata:0x804879E8; // type:object size:0xD scope:local align:4 +@3729 = .rodata:0x804879F8; // type:object size:0xF scope:local align:4 +@3730 = .rodata:0x80487A08; // type:object size:0xF scope:local align:4 +@3731 = .rodata:0x80487A18; // type:object size:0xF scope:local align:4 +@3732 = .rodata:0x80487A28; // type:object size:0xF scope:local align:4 +@3733 = .rodata:0x80487A38; // type:object size:0xF scope:local align:4 +@3734 = .rodata:0x80487A48; // type:object size:0xF scope:local align:4 +@3735 = .rodata:0x80487A58; // type:object size:0xF scope:local align:4 +@3776 = .rodata:0x80487A68; // type:object size:0xF scope:local align:4 data:string +@3777 = .rodata:0x80487A78; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x80487A88; // type:object size:0x25 scope:local align:4 data:string +@3530 = .rodata:0x80487AB0; // type:object size:0x15 scope:local align:4 +@3776 = .rodata:0x80487AC8; // type:object size:0xC scope:local align:4 data:string +@3777 = .rodata:0x80487AD4; // type:object size:0x9 scope:local align:4 data:string +@3968 = .rodata:0x80487AE0; // type:object size:0x9 scope:local align:4 data:string +@3969 = .rodata:0x80487AEC; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80487AF8; // type:label scope:local +@3510 = .rodata:0x80487AF8; // type:object size:0xD scope:local align:4 data:string +@3511 = .rodata:0x80487B08; // type:object size:0x28 scope:local align:4 data:string +@3517 = .rodata:0x80487B30; // type:object size:0x1D scope:local align:4 +@3543 = .rodata:0x80487B50; // type:object size:0xB scope:local align:4 data:string +@3544 = .rodata:0x80487B5C; // type:object size:0xF scope:local align:4 +@3548 = .rodata:0x80487B6C; // type:object size:0x11 scope:local align:4 +@3549 = .rodata:0x80487B80; // type:object size:0xE scope:local align:4 data:string +@3552 = .rodata:0x80487B90; // type:object size:0xF scope:local align:4 +@3553 = .rodata:0x80487BA0; // type:object size:0xF scope:local align:4 +@3587 = .rodata:0x80487BB0; // type:object size:0x13 scope:local align:4 data:string +@3588 = .rodata:0x80487BC4; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x80487BD8; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x80487BE8; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x80487BF8; // type:object size:0xD scope:local align:4 data:string +@3649 = .rodata:0x80487C08; // type:object size:0xF scope:local align:4 data:string +@3652 = .rodata:0x80487C18; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x80487C28; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x80487C38; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x80487C44; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x80487C54; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x80487C74; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x80487C88; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x80487C9C; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x80487CB0; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x80487CC4; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80487CD0; // type:object size:0xD scope:local align:4 +@3675 = .rodata:0x80487CE0; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x80487CEC; // type:object size:0xB scope:local align:4 +@3679 = .rodata:0x80487CF8; // type:object size:0x11 scope:local align:4 +@3681 = .rodata:0x80487D0C; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x80487D18; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x80487D24; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x80487D30; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x80487D3C; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x80487D48; // type:object size:0x11 scope:local align:4 +@3693 = .rodata:0x80487D5C; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x80487D6C; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x80487D78; // type:object size:0xD scope:local align:4 +@3696 = .rodata:0x80487D88; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x80487D98; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x80487DA8; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x80487DB8; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80487DC4; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x80487DD0; // type:object size:0x17 scope:local align:4 +@3705 = .rodata:0x80487DE8; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x80487DF8; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x80487E08; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x80487E18; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x80487E28; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80487E38; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x80487E48; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x80487E58; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x80487E68; // type:object size:0xF scope:local align:4 +@3773 = .rodata:0x80487E78; // type:object size:0xD scope:local align:4 data:string +@3774 = .rodata:0x80487E88; // type:object size:0x9 scope:local align:4 data:string +@4586 = .rodata:0x80487E98; // type:object size:0x9 scope:local align:4 data:string +@4772 = .rodata:0x80487EA4; // type:object size:0x16 scope:local align:4 data:string +@4773 = .rodata:0x80487EBC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80487EC8; // type:label scope:local +@3510 = .rodata:0x80487EC8; // type:object size:0xC scope:local align:4 data:string +@3516 = .rodata:0x80487ED4; // type:object size:0x1B scope:local align:4 +@3539 = .rodata:0x80487EF0; // type:object size:0xF scope:local align:4 data:string +@3540 = .rodata:0x80487F00; // type:object size:0xB scope:local align:4 +@3544 = .rodata:0x80487F0C; // type:object size:0xB scope:local align:4 +@3580 = .rodata:0x80487F18; // type:object size:0x13 scope:local align:4 data:string +@3581 = .rodata:0x80487F2C; // type:object size:0x13 scope:local align:4 data:string +@3583 = .rodata:0x80487F40; // type:object size:0xF scope:local align:4 data:string +@3584 = .rodata:0x80487F50; // type:object size:0xE scope:local align:4 data:string +@3590 = .rodata:0x80487F60; // type:object size:0xD scope:local align:4 data:string +@3644 = .rodata:0x80487F70; // type:object size:0xD scope:local align:4 +@3647 = .rodata:0x80487F80; // type:object size:0xD scope:local align:4 +@3648 = .rodata:0x80487F90; // type:object size:0xB scope:local align:4 +@3650 = .rodata:0x80487F9C; // type:object size:0xF scope:local align:4 +@3652 = .rodata:0x80487FAC; // type:object size:0x1F scope:local align:4 +@3654 = .rodata:0x80487FCC; // type:object size:0x13 scope:local align:4 +@3656 = .rodata:0x80487FE0; // type:object size:0x13 scope:local align:4 +@3657 = .rodata:0x80487FF4; // type:object size:0x12 scope:local align:4 +@3658 = .rodata:0x80488008; // type:object size:0x11 scope:local align:4 +@3663 = .rodata:0x8048801C; // type:object size:0xB scope:local align:4 +@3664 = .rodata:0x80488028; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x80488038; // type:object size:0xB scope:local align:4 +@3669 = .rodata:0x80488044; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80488050; // type:object size:0x11 scope:local align:4 +@3673 = .rodata:0x80488064; // type:object size:0x9 scope:local align:4 +@3675 = .rodata:0x80488070; // type:object size:0x9 scope:local align:4 +@3678 = .rodata:0x8048807C; // type:object size:0x9 scope:local align:4 +@3680 = .rodata:0x80488088; // type:object size:0x9 scope:local align:4 +@3682 = .rodata:0x80488094; // type:object size:0xB scope:local align:4 +@3683 = .rodata:0x804880A0; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x804880B4; // type:object size:0xD scope:local align:4 +@3685 = .rodata:0x804880C4; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x804880D0; // type:object size:0xD scope:local align:4 +@3687 = .rodata:0x804880E0; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x804880F0; // type:object size:0xF scope:local align:4 +@3689 = .rodata:0x80488100; // type:object size:0xF scope:local align:4 +@3691 = .rodata:0x80488110; // type:object size:0x9 scope:local align:4 +@3693 = .rodata:0x8048811C; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x80488128; // type:object size:0x17 scope:local align:4 +@3696 = .rodata:0x80488140; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x80488150; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x80488160; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x80488170; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x80488180; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x80488190; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x804881A0; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x804881B0; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x804881C0; // type:object size:0xF scope:local align:4 +@3519 = .rodata:0x804881D0; // type:object size:0x15 scope:local align:4 +@3515 = .rodata:0x804881E8; // type:object size:0x26 scope:local align:4 data:string +@3516 = .rodata:0x80488210; // type:object size:0x26 scope:local align:4 data:string +@3522 = .rodata:0x80488238; // type:object size:0x19 scope:local align:4 +@3807 = .rodata:0x80488254; // type:object size:0x12 scope:local align:4 data:string +@3808 = .rodata:0x80488268; // type:object size:0x9 scope:local align:4 data:string +@4035 = .rodata:0x80488278; // type:object size:0xA scope:local align:4 data:string +@4039 = .rodata:0x80488284; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80488290; // type:label scope:local +@3511 = .rodata:0x80488290; // type:object size:0x11 scope:local align:4 data:string +@3517 = .rodata:0x804882A4; // type:object size:0x15 scope:local align:4 +@3543 = .rodata:0x804882BC; // type:object size:0xF scope:local align:4 data:string +@3544 = .rodata:0x804882CC; // type:object size:0xB scope:local align:4 +@3548 = .rodata:0x804882D8; // type:object size:0xD scope:local align:4 +@3551 = .rodata:0x804882E8; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x804882F8; // type:object size:0xB scope:local align:4 +@3555 = .rodata:0x80488304; // type:object size:0xE scope:local align:4 data:string +@3591 = .rodata:0x80488314; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x80488328; // type:object size:0x13 scope:local align:4 data:string +@3594 = .rodata:0x8048833C; // type:object size:0xF scope:local align:4 data:string +@3595 = .rodata:0x8048834C; // type:object size:0xE scope:local align:4 data:string +@3600 = .rodata:0x8048835C; // type:object size:0xD scope:local align:4 data:string +@3653 = .rodata:0x8048836C; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x8048837C; // type:object size:0xD scope:local align:4 +@3657 = .rodata:0x8048838C; // type:object size:0xB scope:local align:4 +@3659 = .rodata:0x80488398; // type:object size:0xF scope:local align:4 +@3661 = .rodata:0x804883A8; // type:object size:0x1F scope:local align:4 +@3663 = .rodata:0x804883C8; // type:object size:0x13 scope:local align:4 +@3665 = .rodata:0x804883DC; // type:object size:0x13 scope:local align:4 +@3667 = .rodata:0x804883F0; // type:object size:0x12 scope:local align:4 +@3668 = .rodata:0x80488404; // type:object size:0x11 scope:local align:4 +@3673 = .rodata:0x80488418; // type:object size:0xB scope:local align:4 +@3674 = .rodata:0x80488424; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x80488434; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x80488440; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x8048844C; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x80488460; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048846C; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x80488478; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x80488484; // type:object size:0x9 scope:local align:4 +@3691 = .rodata:0x80488490; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x8048849C; // type:object size:0x11 scope:local align:4 +@3693 = .rodata:0x804884B0; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x804884C0; // type:object size:0xB scope:local align:4 +@3695 = .rodata:0x804884CC; // type:object size:0xD scope:local align:4 +@3696 = .rodata:0x804884DC; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x804884EC; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x804884FC; // type:object size:0xF scope:local align:4 +@3700 = .rodata:0x8048850C; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80488518; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x80488524; // type:object size:0x17 scope:local align:4 +@3705 = .rodata:0x8048853C; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x8048854C; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x8048855C; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048856C; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048857C; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048858C; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048859C; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x804885AC; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x804885BC; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x804885D0; // type:label scope:local +@3605 = .rodata:0x804885D0; // type:object size:0xC scope:local align:4 +@3937 = .rodata:0x804885DC; // type:object size:0xE scope:local align:4 data:string +@4102 = .rodata:0x804885EC; // type:object size:0x9 scope:local align:4 data:string +@4151 = .rodata:0x804885F8; // type:object size:0x9 scope:local align:4 data:string +@4152 = .rodata:0x80488604; // type:object size:0x9 scope:local align:4 data:string +@4153 = .rodata:0x80488610; // type:object size:0x9 scope:local align:4 data:string +@4279 = .rodata:0x8048861C; // type:object size:0x14 scope:local align:4 data:4byte +@4280 = .rodata:0x80488630; // type:object size:0x14 scope:local align:4 data:4byte +@4339 = .rodata:0x80488644; // type:object size:0x14 scope:local align:4 +@4340 = .rodata:0x80488658; // type:object size:0x14 scope:local align:4 +@4341 = .rodata:0x8048866C; // type:object size:0x14 scope:local align:4 +@4342 = .rodata:0x80488680; // type:object size:0x14 scope:local align:4 +@4343 = .rodata:0x80488694; // type:object size:0x14 scope:local align:4 +@4344 = .rodata:0x804886A8; // type:object size:0x14 scope:local align:4 +@4535 = .rodata:0x804886BC; // type:object size:0x14 scope:local align:4 +@4536 = .rodata:0x804886D0; // type:object size:0x14 scope:local align:4 +@4537 = .rodata:0x804886E4; // type:object size:0x14 scope:local align:4 +@4538 = .rodata:0x804886F8; // type:object size:0x14 scope:local align:4 +@4539 = .rodata:0x8048870C; // type:object size:0x14 scope:local align:4 +@4540 = .rodata:0x80488720; // type:object size:0x14 scope:local align:4 +@4919 = .rodata:0x80488734; // type:object size:0x16 scope:local align:4 data:string +@4920 = .rodata:0x8048874C; // type:object size:0x9 scope:local align:4 data:string +@5061 = .rodata:0x80488758; // type:object size:0x9 scope:local align:4 data:string +@3641 = .rodata:0x80488768; // type:object size:0x9 scope:local align:4 data:string +@3643 = .rodata:0x80488774; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80488780; // type:label scope:local +@3509 = .rodata:0x80488780; // type:object size:0x12 scope:local align:4 data:string +@3515 = .rodata:0x80488794; // type:object size:0x19 scope:local align:4 +@3539 = .rodata:0x804887B0; // type:object size:0xF scope:local align:4 data:string +@3540 = .rodata:0x804887C0; // type:object size:0xB scope:local align:4 +@3544 = .rodata:0x804887CC; // type:object size:0x13 scope:local align:4 +@3548 = .rodata:0x804887E0; // type:object size:0x13 scope:local align:4 +@3583 = .rodata:0x804887F4; // type:object size:0x13 scope:local align:4 data:string +@3584 = .rodata:0x80488808; // type:object size:0x13 scope:local align:4 data:string +@3586 = .rodata:0x8048881C; // type:object size:0xF scope:local align:4 data:string +@3587 = .rodata:0x8048882C; // type:object size:0xE scope:local align:4 data:string +@3593 = .rodata:0x8048883C; // type:object size:0xD scope:local align:4 data:string +@3647 = .rodata:0x8048884C; // type:object size:0xD scope:local align:4 +@3650 = .rodata:0x8048885C; // type:object size:0xD scope:local align:4 +@3651 = .rodata:0x8048886C; // type:object size:0xB scope:local align:4 +@3652 = .rodata:0x80488878; // type:object size:0xF scope:local align:4 +@3654 = .rodata:0x80488888; // type:object size:0x1F scope:local align:4 +@3655 = .rodata:0x804888A8; // type:object size:0x13 scope:local align:4 +@3657 = .rodata:0x804888BC; // type:object size:0x13 scope:local align:4 +@3659 = .rodata:0x804888D0; // type:object size:0x12 scope:local align:4 +@3660 = .rodata:0x804888E4; // type:object size:0x11 scope:local align:4 +@3665 = .rodata:0x804888F8; // type:object size:0xB scope:local align:4 +@3666 = .rodata:0x80488904; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x80488914; // type:object size:0xB scope:local align:4 +@3670 = .rodata:0x80488920; // type:object size:0xB scope:local align:4 +@3672 = .rodata:0x8048892C; // type:object size:0x11 scope:local align:4 +@3674 = .rodata:0x80488940; // type:object size:0x9 scope:local align:4 +@3676 = .rodata:0x8048894C; // type:object size:0x9 scope:local align:4 +@3679 = .rodata:0x80488958; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x80488964; // type:object size:0x9 scope:local align:4 +@3683 = .rodata:0x80488970; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x8048897C; // type:object size:0x11 scope:local align:4 +@3685 = .rodata:0x80488990; // type:object size:0xD scope:local align:4 +@3686 = .rodata:0x804889A0; // type:object size:0xB scope:local align:4 +@3687 = .rodata:0x804889AC; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x804889BC; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x804889CC; // type:object size:0xF scope:local align:4 +@3690 = .rodata:0x804889DC; // type:object size:0xF scope:local align:4 +@3692 = .rodata:0x804889EC; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x804889F8; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80488A04; // type:object size:0x17 scope:local align:4 +@3697 = .rodata:0x80488A1C; // type:object size:0xD scope:local align:4 +@3699 = .rodata:0x80488A2C; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x80488A3C; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x80488A4C; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x80488A5C; // type:object size:0xF scope:local align:4 +@3703 = .rodata:0x80488A6C; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80488A7C; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80488A8C; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80488A9C; // type:object size:0xF scope:local align:4 +@3909 = .rodata:0x80488AB0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80488AC0; // type:label scope:local +@3510 = .rodata:0x80488AC0; // type:object size:0xF scope:local align:4 data:string +@3516 = .rodata:0x80488AD0; // type:object size:0x17 scope:local align:4 +@3546 = .rodata:0x80488AE8; // type:object size:0xF scope:local align:4 data:string +@3547 = .rodata:0x80488AF8; // type:object size:0xE scope:local align:4 +@3551 = .rodata:0x80488B08; // type:object size:0xE scope:local align:4 +@3553 = .rodata:0x80488B18; // type:object size:0x9 scope:local align:4 +@3555 = .rodata:0x80488B24; // type:object size:0xC scope:local align:4 +@3557 = .rodata:0x80488B30; // type:object size:0x17 scope:local align:4 +@3559 = .rodata:0x80488B48; // type:object size:0x17 scope:local align:4 +@3560 = .rodata:0x80488B60; // type:object size:0xB scope:local align:4 +@3561 = .rodata:0x80488B6C; // type:object size:0x11 scope:local align:4 +@3562 = .rodata:0x80488B80; // type:object size:0xB scope:local align:4 +@3598 = .rodata:0x80488B8C; // type:object size:0x13 scope:local align:4 data:string +@3599 = .rodata:0x80488BA0; // type:object size:0x13 scope:local align:4 data:string +@3600 = .rodata:0x80488BB4; // type:object size:0xF scope:local align:4 data:string +@3601 = .rodata:0x80488BC4; // type:object size:0xE scope:local align:4 data:string +@3607 = .rodata:0x80488BD4; // type:object size:0xD scope:local align:4 data:string +@3660 = .rodata:0x80488BE4; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x80488BF4; // type:object size:0xD scope:local align:4 +@3664 = .rodata:0x80488C04; // type:object size:0xB scope:local align:4 +@3665 = .rodata:0x80488C10; // type:object size:0xF scope:local align:4 +@3667 = .rodata:0x80488C20; // type:object size:0x1F scope:local align:4 +@3669 = .rodata:0x80488C40; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x80488C54; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x80488C68; // type:object size:0x12 scope:local align:4 +@3674 = .rodata:0x80488C7C; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x80488C90; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x80488C9C; // type:object size:0xD scope:local align:4 +@3682 = .rodata:0x80488CAC; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80488CB8; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80488CC4; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x80488CD8; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x80488CE4; // type:object size:0x9 scope:local align:4 +@3693 = .rodata:0x80488CF0; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x80488CFC; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x80488D08; // type:object size:0xB scope:local align:4 +@3699 = .rodata:0x80488D14; // type:object size:0x11 scope:local align:4 +@3700 = .rodata:0x80488D28; // type:object size:0xD scope:local align:4 +@3701 = .rodata:0x80488D38; // type:object size:0xB scope:local align:4 +@3702 = .rodata:0x80488D44; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x80488D54; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x80488D64; // type:object size:0xF scope:local align:4 +@3705 = .rodata:0x80488D74; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x80488D84; // type:object size:0x9 scope:local align:4 +@3709 = .rodata:0x80488D90; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x80488D9C; // type:object size:0x17 scope:local align:4 +@3712 = .rodata:0x80488DB4; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x80488DC4; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x80488DD4; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x80488DE4; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80488DF4; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80488E04; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80488E14; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80488E24; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80488E34; // type:object size:0xF scope:local align:4 +@4674 = .rodata:0x80488E48; // type:object size:0xA scope:local align:4 data:string +@3522 = .rodata:0x80488E58; // type:object size:0x23 scope:local align:4 data:string +@3530 = .rodata:0x80488E7C; // type:object size:0x11 scope:local align:4 +@3776 = .rodata:0x80488E90; // type:object size:0x13 scope:local align:4 data:string +@3777 = .rodata:0x80488EA4; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x80488EB0; // type:object size:0x30 scope:local align:4 data:string +@3523 = .rodata:0x80488EE0; // type:object size:0x17 scope:local align:4 +@3751 = .rodata:0x80488EF8; // type:object size:0xD scope:local align:4 data:string +@3752 = .rodata:0x80488F08; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80488F18; // type:label scope:local +@3788 = .rodata:0x80488F18; // type:object size:0x16 scope:local align:4 data:string +@3953 = .rodata:0x80488F30; // type:object size:0xC scope:local align:4 data:string +@3959 = .rodata:0x80488F3C; // type:object size:0x9 scope:local align:4 data:string +@3960 = .rodata:0x80488F48; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80488F58; // type:label scope:local +@3510 = .rodata:0x80488F58; // type:object size:0x14 scope:local align:4 data:string +@3511 = .rodata:0x80488F6C; // type:object size:0x30 scope:local align:4 data:string +@3512 = .rodata:0x80488F9C; // type:object size:0x30 scope:local align:4 data:string +@3518 = .rodata:0x80488FCC; // type:object size:0x1D scope:local align:4 +@3547 = .rodata:0x80488FEC; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x80488FFC; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x8048900C; // type:object size:0x9 scope:local align:4 +@3555 = .rodata:0x80489018; // type:object size:0x11 scope:local align:4 +@3557 = .rodata:0x8048902C; // type:object size:0x11 scope:local align:4 +@3558 = .rodata:0x80489040; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x80489050; // type:object size:0xF scope:local align:4 +@3560 = .rodata:0x80489060; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x80489070; // type:object size:0xD scope:local align:4 +@3597 = .rodata:0x80489080; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x80489094; // type:object size:0x13 scope:local align:4 data:string +@3600 = .rodata:0x804890A8; // type:object size:0xF scope:local align:4 data:string +@3601 = .rodata:0x804890B8; // type:object size:0xE scope:local align:4 data:string +@3607 = .rodata:0x804890C8; // type:object size:0xD scope:local align:4 data:string +@3661 = .rodata:0x804890D8; // type:object size:0xD scope:local align:4 +@3664 = .rodata:0x804890E8; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x804890F8; // type:object size:0xB scope:local align:4 +@3667 = .rodata:0x80489104; // type:object size:0xF scope:local align:4 +@3669 = .rodata:0x80489114; // type:object size:0x1F scope:local align:4 +@3671 = .rodata:0x80489134; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x80489148; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x8048915C; // type:object size:0x12 scope:local align:4 +@3676 = .rodata:0x80489170; // type:object size:0x11 scope:local align:4 +@3681 = .rodata:0x80489184; // type:object size:0xB scope:local align:4 +@3682 = .rodata:0x80489190; // type:object size:0xD scope:local align:4 +@3684 = .rodata:0x804891A0; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x804891AC; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x804891B8; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x804891CC; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x804891D8; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x804891E4; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x804891F0; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x804891FC; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x80489208; // type:object size:0x11 scope:local align:4 +@3701 = .rodata:0x8048921C; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x8048922C; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x80489238; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x80489248; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80489258; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80489268; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80489278; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x80489284; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x80489290; // type:object size:0x17 scope:local align:4 +@3713 = .rodata:0x804892A8; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x804892B8; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x804892C8; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x804892D8; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x804892E8; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x804892F8; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80489308; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x80489318; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x80489328; // type:object size:0xF scope:local align:4 +@3773 = .rodata:0x80489338; // type:object size:0x14 scope:local align:4 data:string +@3774 = .rodata:0x8048934C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80489358; // type:label scope:local +@3512 = .rodata:0x80489358; // type:object size:0x10 scope:local align:4 data:string +@3513 = .rodata:0x80489368; // type:object size:0x28 scope:local align:4 data:string +@3514 = .rodata:0x80489390; // type:object size:0x28 scope:local align:4 data:string +@3520 = .rodata:0x804893B8; // type:object size:0x13 scope:local align:4 +@3547 = .rodata:0x804893CC; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x804893DC; // type:object size:0xB scope:local align:4 +@3552 = .rodata:0x804893E8; // type:object size:0xD scope:local align:4 +@3556 = .rodata:0x804893F8; // type:object size:0xD scope:local align:4 +@3558 = .rodata:0x80489408; // type:object size:0xF scope:local align:4 +@3561 = .rodata:0x80489418; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x80489428; // type:object size:0xD scope:local align:4 +@3598 = .rodata:0x80489438; // type:object size:0x13 scope:local align:4 data:string +@3599 = .rodata:0x8048944C; // type:object size:0x13 scope:local align:4 data:string +@3601 = .rodata:0x80489460; // type:object size:0xF scope:local align:4 data:string +@3602 = .rodata:0x80489470; // type:object size:0xE scope:local align:4 data:string +@3608 = .rodata:0x80489480; // type:object size:0xD scope:local align:4 data:string +@3662 = .rodata:0x80489490; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x804894A0; // type:object size:0xD scope:local align:4 +@3666 = .rodata:0x804894B0; // type:object size:0xB scope:local align:4 +@3668 = .rodata:0x804894BC; // type:object size:0xF scope:local align:4 +@3670 = .rodata:0x804894CC; // type:object size:0x1F scope:local align:4 +@3672 = .rodata:0x804894EC; // type:object size:0x13 scope:local align:4 +@3674 = .rodata:0x80489500; // type:object size:0x13 scope:local align:4 +@3676 = .rodata:0x80489514; // type:object size:0x12 scope:local align:4 +@3677 = .rodata:0x80489528; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x8048953C; // type:object size:0xB scope:local align:4 +@3683 = .rodata:0x80489548; // type:object size:0xD scope:local align:4 +@3685 = .rodata:0x80489558; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80489564; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x80489570; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x80489584; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x80489590; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x8048959C; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x804895A8; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x804895B4; // type:object size:0xB scope:local align:4 +@3700 = .rodata:0x804895C0; // type:object size:0x11 scope:local align:4 +@3701 = .rodata:0x804895D4; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x804895E4; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x804895F0; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x80489600; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80489610; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80489620; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x80489630; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x8048963C; // type:object size:0x9 scope:local align:4 +@3712 = .rodata:0x80489648; // type:object size:0x17 scope:local align:4 +@3713 = .rodata:0x80489660; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x80489670; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x80489680; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80489690; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x804896A0; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x804896B0; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x804896C0; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x804896D0; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x804896E0; // type:object size:0xF scope:local align:4 +@3790 = .rodata:0x804896F0; // type:object size:0x10 scope:local align:4 data:string +@3791 = .rodata:0x80489700; // type:object size:0x9 scope:local align:4 data:string +@4376 = .rodata:0x80489710; // type:object size:0xA scope:local align:4 data:string +@4377 = .rodata:0x8048971C; // type:object size:0xA scope:local align:4 data:string +@4378 = .rodata:0x80489728; // type:object size:0xA scope:local align:4 data:string +@4379 = .rodata:0x80489734; // type:object size:0xA scope:local align:4 data:string +@4380 = .rodata:0x80489740; // type:object size:0xA scope:local align:4 data:string +@4381 = .rodata:0x8048974C; // type:object size:0xA scope:local align:4 data:string +@4382 = .rodata:0x80489758; // type:object size:0xA scope:local align:4 data:string +@4383 = .rodata:0x80489764; // type:object size:0xA scope:local align:4 data:string +@4384 = .rodata:0x80489770; // type:object size:0xA scope:local align:4 data:string +@4385 = .rodata:0x8048977C; // type:object size:0xA scope:local align:4 data:string +@4386 = .rodata:0x80489788; // type:object size:0xA scope:local align:4 data:string +@4387 = .rodata:0x80489794; // type:object size:0xA scope:local align:4 data:string +@4388 = .rodata:0x804897A0; // type:object size:0x30 scope:local align:4 data:4byte +@4578 = .rodata:0x804897D0; // type:object size:0x10 scope:local align:4 data:4byte +@4614 = .rodata:0x804897E0; // type:object size:0x16 scope:local align:4 data:string +@4615 = .rodata:0x804897F8; // type:object size:0x9 scope:local align:4 data:string +@4119 = .rodata:0x80489808; // type:object size:0x10 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80489818; // type:label scope:local +@3515 = .rodata:0x80489818; // type:object size:0x13 scope:local align:4 data:string +@3634 = .rodata:0x8048982C; // type:object size:0xA scope:local align:4 data:string +@3635 = .rodata:0x80489838; // type:object size:0xA scope:local align:4 data:string +@3636 = .rodata:0x80489844; // type:object size:0xA scope:local align:4 data:string +@3637 = .rodata:0x80489850; // type:object size:0xA scope:local align:4 data:string +@3638 = .rodata:0x8048985C; // type:object size:0xA scope:local align:4 data:string +@3639 = .rodata:0x80489868; // type:object size:0xA scope:local align:4 data:string +@3640 = .rodata:0x80489874; // type:object size:0xA scope:local align:4 data:string +@3641 = .rodata:0x80489880; // type:object size:0xA scope:local align:4 data:string +@3642 = .rodata:0x8048988C; // type:object size:0xA scope:local align:4 data:string +@3643 = .rodata:0x80489898; // type:object size:0xA scope:local align:4 data:string +@3644 = .rodata:0x804898A4; // type:object size:0xA scope:local align:4 data:string +@3645 = .rodata:0x804898B0; // type:object size:0xA scope:local align:4 data:string +@4063 = .rodata:0x804898C0; // type:object size:0x9 scope:local align:4 data:string +@4064 = .rodata:0x804898CC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804898D8; // type:label scope:local +@3510 = .rodata:0x804898D8; // type:object size:0xE scope:local align:4 data:string +@3516 = .rodata:0x804898E8; // type:object size:0x19 scope:local align:4 +@3545 = .rodata:0x80489904; // type:object size:0xF scope:local align:4 data:string +@3546 = .rodata:0x80489914; // type:object size:0x9 scope:local align:4 +@3550 = .rodata:0x80489920; // type:object size:0x9 scope:local align:4 +@3553 = .rodata:0x8048992C; // type:object size:0x11 scope:local align:4 +@3555 = .rodata:0x80489940; // type:object size:0xD scope:local align:4 +@3557 = .rodata:0x80489950; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x80489960; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x80489970; // type:object size:0xF scope:local align:4 +@3561 = .rodata:0x80489980; // type:object size:0xF scope:local align:4 +@3595 = .rodata:0x80489990; // type:object size:0x13 scope:local align:4 data:string +@3596 = .rodata:0x804899A4; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x804899B8; // type:object size:0xF scope:local align:4 data:string +@3599 = .rodata:0x804899C8; // type:object size:0xE scope:local align:4 data:string +@3605 = .rodata:0x804899D8; // type:object size:0xD scope:local align:4 data:string +@3659 = .rodata:0x804899E8; // type:object size:0xD scope:local align:4 +@3662 = .rodata:0x804899F8; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x80489A08; // type:object size:0xB scope:local align:4 +@3665 = .rodata:0x80489A14; // type:object size:0xF scope:local align:4 +@3667 = .rodata:0x80489A24; // type:object size:0x1F scope:local align:4 +@3669 = .rodata:0x80489A44; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x80489A58; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x80489A6C; // type:object size:0x12 scope:local align:4 +@3674 = .rodata:0x80489A80; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x80489A94; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x80489AA0; // type:object size:0xD scope:local align:4 +@3682 = .rodata:0x80489AB0; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80489ABC; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80489AC8; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x80489ADC; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x80489AE8; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x80489AF4; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x80489B00; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80489B0C; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x80489B18; // type:object size:0x11 scope:local align:4 +@3699 = .rodata:0x80489B2C; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x80489B3C; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x80489B48; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x80489B58; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x80489B68; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x80489B78; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x80489B88; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x80489B94; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x80489BA0; // type:object size:0x17 scope:local align:4 +@3711 = .rodata:0x80489BB8; // type:object size:0xD scope:local align:4 +@3713 = .rodata:0x80489BC8; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x80489BD8; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x80489BE8; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x80489BF8; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80489C08; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x80489C18; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x80489C28; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x80489C38; // type:object size:0xF scope:local align:4 +@4123 = .rodata:0x80489C48; // type:object size:0x1C scope:local align:4 data:4byte +@4124 = .rodata:0x80489C64; // type:object size:0x1C scope:local align:4 data:4byte +@4142 = .rodata:0x80489C80; // type:object size:0x1C scope:local align:4 data:4byte +@4143 = .rodata:0x80489C9C; // type:object size:0x1C scope:local align:4 data:4byte +@4161 = .rodata:0x80489CB8; // type:object size:0x14 scope:local align:4 data:4byte +@4162 = .rodata:0x80489CCC; // type:object size:0x14 scope:local align:4 data:4byte +@4180 = .rodata:0x80489CE0; // type:object size:0x20 scope:local align:4 data:4byte +@4181 = .rodata:0x80489D00; // type:object size:0x20 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80489D20; // type:label scope:local +@3600 = .rodata:0x80489D20; // type:object size:0xC scope:local align:4 +@3917 = .rodata:0x80489D2C; // type:object size:0x13 scope:local align:4 data:string +@4081 = .rodata:0x80489D40; // type:object size:0x9 scope:local align:4 data:string +@4083 = .rodata:0x80489D4C; // type:object size:0x9 scope:local align:4 data:string +@4087 = .rodata:0x80489D58; // type:object size:0x9 scope:local align:4 data:string +@4088 = .rodata:0x80489D64; // type:object size:0x9 scope:local align:4 data:string +@4090 = .rodata:0x80489D70; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80489D80; // type:label scope:local +@3510 = .rodata:0x80489D80; // type:object size:0x11 scope:local align:4 data:string +@3516 = .rodata:0x80489D94; // type:object size:0x19 scope:local align:4 +@3546 = .rodata:0x80489DB0; // type:object size:0xF scope:local align:4 data:string +@3547 = .rodata:0x80489DC0; // type:object size:0x9 scope:local align:4 +@3551 = .rodata:0x80489DCC; // type:object size:0xD scope:local align:4 +@3554 = .rodata:0x80489DDC; // type:object size:0xF scope:local align:4 +@3557 = .rodata:0x80489DEC; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x80489DFC; // type:object size:0xC scope:local align:4 +@3562 = .rodata:0x80489E08; // type:object size:0xC scope:local align:4 +@3564 = .rodata:0x80489E14; // type:object size:0xC scope:local align:4 +@3566 = .rodata:0x80489E20; // type:object size:0xC scope:local align:4 +@3568 = .rodata:0x80489E2C; // type:object size:0xB scope:local align:4 +@3603 = .rodata:0x80489E38; // type:object size:0x13 scope:local align:4 data:string +@3604 = .rodata:0x80489E4C; // type:object size:0x13 scope:local align:4 data:string +@3606 = .rodata:0x80489E60; // type:object size:0xF scope:local align:4 data:string +@3607 = .rodata:0x80489E70; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x80489E80; // type:object size:0xD scope:local align:4 data:string +@3666 = .rodata:0x80489E90; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x80489EA0; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x80489EB0; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x80489EBC; // type:object size:0xF scope:local align:4 +@3673 = .rodata:0x80489ECC; // type:object size:0x1F scope:local align:4 +@3675 = .rodata:0x80489EEC; // type:object size:0x13 scope:local align:4 +@3677 = .rodata:0x80489F00; // type:object size:0x13 scope:local align:4 +@3679 = .rodata:0x80489F14; // type:object size:0x12 scope:local align:4 +@3680 = .rodata:0x80489F28; // type:object size:0x11 scope:local align:4 +@3685 = .rodata:0x80489F3C; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x80489F48; // type:object size:0xD scope:local align:4 +@3688 = .rodata:0x80489F58; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x80489F64; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x80489F70; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x80489F84; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x80489F90; // type:object size:0x9 scope:local align:4 +@3698 = .rodata:0x80489F9C; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x80489FA8; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x80489FB4; // type:object size:0xB scope:local align:4 +@3703 = .rodata:0x80489FC0; // type:object size:0x11 scope:local align:4 +@3704 = .rodata:0x80489FD4; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x80489FE4; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x80489FF0; // type:object size:0xD scope:local align:4 +@3707 = .rodata:0x8048A000; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x8048A010; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048A020; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048A030; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x8048A03C; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x8048A048; // type:object size:0x17 scope:local align:4 +@3716 = .rodata:0x8048A060; // type:object size:0xD scope:local align:4 +@3718 = .rodata:0x8048A070; // type:object size:0xD scope:local align:4 +@3719 = .rodata:0x8048A080; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048A090; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x8048A0A0; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8048A0B0; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x8048A0C0; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8048A0D0; // type:object size:0xF scope:local align:4 +@3725 = .rodata:0x8048A0E0; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8048A0F0; // type:label scope:local +@3952 = .rodata:0x8048A0F0; // type:object size:0xE scope:local align:4 data:string +@4086 = .rodata:0x8048A100; // type:object size:0xC scope:local align:4 data:string +@4259 = .rodata:0x8048A10C; // type:object size:0xA scope:local align:4 data:string +@4387 = .rodata:0x8048A118; // type:object size:0xC scope:local align:4 data:string +@4435 = .rodata:0x8048A124; // type:object size:0x9 scope:local align:4 data:string +@4436 = .rodata:0x8048A130; // type:object size:0x9 scope:local align:4 data:string +@4437 = .rodata:0x8048A13C; // type:object size:0x9 scope:local align:4 data:string +@4438 = .rodata:0x8048A148; // type:object size:0x9 scope:local align:4 data:string +@4439 = .rodata:0x8048A154; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A160; // type:label scope:local +@3525 = .rodata:0x8048A160; // type:object size:0x15 scope:local align:4 data:string +@3704 = .rodata:0x8048A178; // type:object size:0x9 scope:local align:4 data:string +@3705 = .rodata:0x8048A184; // type:object size:0x9 scope:local align:4 data:string +@3706 = .rodata:0x8048A190; // type:object size:0x9 scope:local align:4 data:string +@3707 = .rodata:0x8048A19C; // type:object size:0xA scope:local align:4 data:string +@3708 = .rodata:0x8048A1A8; // type:object size:0x9 scope:local align:4 data:string +@3709 = .rodata:0x8048A1B4; // type:object size:0x9 scope:local align:4 data:string +@3710 = .rodata:0x8048A1C0; // type:object size:0xA scope:local align:4 data:string +@3711 = .rodata:0x8048A1CC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A1D8; // type:label scope:local +@3517 = .rodata:0x8048A1D8; // type:object size:0x13 scope:local align:4 data:string +@3523 = .rodata:0x8048A1EC; // type:object size:0x17 scope:local align:4 +@3533 = .rodata:0x8048A204; // type:object size:0x14 scope:local align:4 data:4byte +@3550 = .rodata:0x8048A218; // type:object size:0x14 scope:local align:4 data:4byte +@3596 = .rodata:0x8048A22C; // type:object size:0x13 scope:local align:4 data:string +@3597 = .rodata:0x8048A240; // type:object size:0x9 scope:local align:4 data:string +@3598 = .rodata:0x8048A24C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A258; // type:label scope:local +@3521 = .rodata:0x8048A258; // type:object size:0x13 scope:local align:4 data:string +@3522 = .rodata:0x8048A26C; // type:object size:0x2D scope:local align:4 data:string +@3530 = .rodata:0x8048A29C; // type:object size:0x19 scope:local align:4 +@3557 = .rodata:0x8048A2B8; // type:object size:0x11 scope:local align:4 data:string +@3558 = .rodata:0x8048A2CC; // type:object size:0xF scope:local align:4 +@3562 = .rodata:0x8048A2DC; // type:object size:0x11 scope:local align:4 +@3565 = .rodata:0x8048A2F0; // type:object size:0x11 scope:local align:4 +@3567 = .rodata:0x8048A304; // type:object size:0x11 scope:local align:4 +@3602 = .rodata:0x8048A318; // type:object size:0x13 scope:local align:4 data:string +@3603 = .rodata:0x8048A32C; // type:object size:0x13 scope:local align:4 data:string +@3605 = .rodata:0x8048A340; // type:object size:0xF scope:local align:4 data:string +@3606 = .rodata:0x8048A350; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x8048A360; // type:object size:0xD scope:local align:4 data:string +@3663 = .rodata:0x8048A370; // type:object size:0xF scope:local align:4 data:string +@3666 = .rodata:0x8048A380; // type:object size:0xD scope:local align:4 +@3669 = .rodata:0x8048A390; // type:object size:0xD scope:local align:4 +@3670 = .rodata:0x8048A3A0; // type:object size:0xB scope:local align:4 +@3672 = .rodata:0x8048A3AC; // type:object size:0xF scope:local align:4 +@3674 = .rodata:0x8048A3BC; // type:object size:0x1F scope:local align:4 +@3676 = .rodata:0x8048A3DC; // type:object size:0x13 scope:local align:4 +@3678 = .rodata:0x8048A3F0; // type:object size:0x13 scope:local align:4 +@3680 = .rodata:0x8048A404; // type:object size:0x12 scope:local align:4 +@3681 = .rodata:0x8048A418; // type:object size:0x11 scope:local align:4 +@3686 = .rodata:0x8048A42C; // type:object size:0xB scope:local align:4 +@3687 = .rodata:0x8048A438; // type:object size:0xD scope:local align:4 +@3689 = .rodata:0x8048A448; // type:object size:0xB scope:local align:4 +@3691 = .rodata:0x8048A454; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048A460; // type:object size:0x11 scope:local align:4 +@3695 = .rodata:0x8048A474; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8048A480; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048A48C; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048A498; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x8048A4A4; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x8048A4B0; // type:object size:0x11 scope:local align:4 +@3707 = .rodata:0x8048A4C4; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x8048A4D4; // type:object size:0xB scope:local align:4 +@3709 = .rodata:0x8048A4E0; // type:object size:0xD scope:local align:4 +@3710 = .rodata:0x8048A4F0; // type:object size:0xD scope:local align:4 +@3711 = .rodata:0x8048A500; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048A510; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x8048A520; // type:object size:0x9 scope:local align:4 +@3716 = .rodata:0x8048A52C; // type:object size:0x9 scope:local align:4 +@3718 = .rodata:0x8048A538; // type:object size:0x17 scope:local align:4 +@3719 = .rodata:0x8048A550; // type:object size:0xD scope:local align:4 +@3721 = .rodata:0x8048A560; // type:object size:0xD scope:local align:4 +@3722 = .rodata:0x8048A570; // type:object size:0xF scope:local align:4 +@3723 = .rodata:0x8048A580; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8048A590; // type:object size:0xF scope:local align:4 +@3725 = .rodata:0x8048A5A0; // type:object size:0xF scope:local align:4 +@3726 = .rodata:0x8048A5B0; // type:object size:0xF scope:local align:4 +@3727 = .rodata:0x8048A5C0; // type:object size:0xF scope:local align:4 +@3728 = .rodata:0x8048A5D0; // type:object size:0xF scope:local align:4 +@3769 = .rodata:0x8048A5E0; // type:object size:0x13 scope:local align:4 data:string +@3770 = .rodata:0x8048A5F4; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x8048A600; // type:object size:0x2F scope:local align:4 data:string +@3530 = .rodata:0x8048A630; // type:object size:0x19 scope:local align:4 +@3769 = .rodata:0x8048A64C; // type:object size:0x14 scope:local align:4 data:string +@3770 = .rodata:0x8048A660; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x8048A670; // type:object size:0x2F scope:local align:4 data:string +@3530 = .rodata:0x8048A6A0; // type:object size:0x1B scope:local align:4 +@3769 = .rodata:0x8048A6BC; // type:object size:0x12 scope:local align:4 data:string +@3770 = .rodata:0x8048A6D0; // type:object size:0x9 scope:local align:4 data:string +@3522 = .rodata:0x8048A6E0; // type:object size:0x30 scope:local align:4 data:string +@3530 = .rodata:0x8048A710; // type:object size:0x1B scope:local align:4 +@3769 = .rodata:0x8048A72C; // type:object size:0x13 scope:local align:4 data:string +@3770 = .rodata:0x8048A740; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A750; // type:label scope:local +@3801 = .rodata:0x8048A750; // type:object size:0x12 scope:local align:4 data:string +@3975 = .rodata:0x8048A764; // type:object size:0x9 scope:local align:4 data:string +@3976 = .rodata:0x8048A770; // type:object size:0x9 scope:local align:4 data:string +@3985 = .rodata:0x8048A77C; // type:object size:0xA scope:local align:4 data:string +@3986 = .rodata:0x8048A788; // type:object size:0xC scope:local align:4 data:string +@3987 = .rodata:0x8048A794; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048A7A0; // type:label scope:local +@3510 = .rodata:0x8048A7A0; // type:object size:0x10 scope:local align:4 data:string +@3516 = .rodata:0x8048A7B0; // type:object size:0x13 scope:local align:4 +@3542 = .rodata:0x8048A7C4; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x8048A7D4; // type:object size:0xB scope:local align:4 +@3547 = .rodata:0x8048A7E0; // type:object size:0xB scope:local align:4 +@3549 = .rodata:0x8048A7EC; // type:object size:0xB scope:local align:4 +@3551 = .rodata:0x8048A7F8; // type:object size:0xE scope:local align:4 +@3553 = .rodata:0x8048A808; // type:object size:0xB scope:local align:4 +@3589 = .rodata:0x8048A814; // type:object size:0x13 scope:local align:4 data:string +@3590 = .rodata:0x8048A828; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x8048A83C; // type:object size:0xF scope:local align:4 data:string +@3593 = .rodata:0x8048A84C; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x8048A85C; // type:object size:0xD scope:local align:4 data:string +@3650 = .rodata:0x8048A86C; // type:object size:0xD scope:local align:4 +@3653 = .rodata:0x8048A87C; // type:object size:0xD scope:local align:4 +@3654 = .rodata:0x8048A88C; // type:object size:0xB scope:local align:4 +@3656 = .rodata:0x8048A898; // type:object size:0xF scope:local align:4 +@3658 = .rodata:0x8048A8A8; // type:object size:0x1F scope:local align:4 +@3660 = .rodata:0x8048A8C8; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8048A8DC; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048A8F0; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x8048A904; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x8048A918; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x8048A924; // type:object size:0xD scope:local align:4 +@3673 = .rodata:0x8048A934; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048A940; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048A94C; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048A960; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048A96C; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048A978; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048A984; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048A990; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048A99C; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x8048A9B0; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x8048A9C0; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048A9CC; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048A9DC; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048A9EC; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x8048A9FC; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x8048AA0C; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048AA18; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048AA24; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x8048AA3C; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x8048AA4C; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048AA5C; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x8048AA6C; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048AA7C; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048AA8C; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048AA9C; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048AAAC; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048AABC; // type:object size:0xF scope:local align:4 +@4209 = .rodata:0x8048AAD0; // type:object size:0xA scope:local align:4 data:string +@4695 = .rodata:0x8048AADC; // type:object size:0x9 scope:local align:4 data:string +@4744 = .rodata:0x8048AAE8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048AAF8; // type:label scope:local +@3512 = .rodata:0x8048AAF8; // type:object size:0xE scope:local align:4 data:string +@3513 = .rodata:0x8048AB08; // type:object size:0x24 scope:local align:4 data:string +@3514 = .rodata:0x8048AB2C; // type:object size:0x24 scope:local align:4 data:string +@3520 = .rodata:0x8048AB50; // type:object size:0x13 scope:local align:4 +@3552 = .rodata:0x8048AB64; // type:object size:0xF scope:local align:4 data:string +@3553 = .rodata:0x8048AB74; // type:object size:0xB scope:local align:4 +@3557 = .rodata:0x8048AB80; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x8048AB90; // type:object size:0xD scope:local align:4 +@3562 = .rodata:0x8048ABA0; // type:object size:0xF scope:local align:4 +@3565 = .rodata:0x8048ABB0; // type:object size:0xF scope:local align:4 +@3566 = .rodata:0x8048ABC0; // type:object size:0xD scope:local align:4 +@3569 = .rodata:0x8048ABD0; // type:object size:0xB scope:local align:4 +@3571 = .rodata:0x8048ABDC; // type:object size:0xB scope:local align:4 +@3573 = .rodata:0x8048ABE8; // type:object size:0xC scope:local align:4 +@3574 = .rodata:0x8048ABF4; // type:object size:0xC scope:local align:4 +@3575 = .rodata:0x8048AC00; // type:object size:0x11 scope:local align:4 data:string +@3611 = .rodata:0x8048AC14; // type:object size:0x13 scope:local align:4 data:string +@3612 = .rodata:0x8048AC28; // type:object size:0x13 scope:local align:4 data:string +@3613 = .rodata:0x8048AC3C; // type:object size:0xF scope:local align:4 data:string +@3614 = .rodata:0x8048AC4C; // type:object size:0xE scope:local align:4 data:string +@3619 = .rodata:0x8048AC5C; // type:object size:0xD scope:local align:4 data:string +@3673 = .rodata:0x8048AC6C; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x8048AC7C; // type:object size:0xD scope:local align:4 +@3677 = .rodata:0x8048AC8C; // type:object size:0xB scope:local align:4 +@3679 = .rodata:0x8048AC98; // type:object size:0xF scope:local align:4 +@3681 = .rodata:0x8048ACA8; // type:object size:0x1F scope:local align:4 +@3682 = .rodata:0x8048ACC8; // type:object size:0x13 scope:local align:4 +@3684 = .rodata:0x8048ACDC; // type:object size:0x13 scope:local align:4 +@3686 = .rodata:0x8048ACF0; // type:object size:0x12 scope:local align:4 +@3687 = .rodata:0x8048AD04; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x8048AD18; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048AD24; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048AD34; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x8048AD40; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x8048AD4C; // type:object size:0x11 scope:local align:4 +@3700 = .rodata:0x8048AD60; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048AD6C; // type:object size:0x9 scope:local align:4 +@3704 = .rodata:0x8048AD78; // type:object size:0x9 scope:local align:4 +@3706 = .rodata:0x8048AD84; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x8048AD90; // type:object size:0xB scope:local align:4 +@3710 = .rodata:0x8048AD9C; // type:object size:0x11 scope:local align:4 +@3711 = .rodata:0x8048ADB0; // type:object size:0xD scope:local align:4 +@3712 = .rodata:0x8048ADC0; // type:object size:0xB scope:local align:4 +@3713 = .rodata:0x8048ADCC; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x8048ADDC; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x8048ADEC; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x8048ADFC; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x8048AE0C; // type:object size:0x9 scope:local align:4 +@3720 = .rodata:0x8048AE18; // type:object size:0x9 scope:local align:4 +@3722 = .rodata:0x8048AE24; // type:object size:0x17 scope:local align:4 +@3723 = .rodata:0x8048AE3C; // type:object size:0xD scope:local align:4 +@3725 = .rodata:0x8048AE4C; // type:object size:0xD scope:local align:4 +@3726 = .rodata:0x8048AE5C; // type:object size:0xF scope:local align:4 +@3727 = .rodata:0x8048AE6C; // type:object size:0xF scope:local align:4 +@3728 = .rodata:0x8048AE7C; // type:object size:0xF scope:local align:4 +@3729 = .rodata:0x8048AE8C; // type:object size:0xF scope:local align:4 +@3730 = .rodata:0x8048AE9C; // type:object size:0xF scope:local align:4 +@3731 = .rodata:0x8048AEAC; // type:object size:0xF scope:local align:4 +@3732 = .rodata:0x8048AEBC; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8048AED0; // type:label scope:local +@3515 = .rodata:0x8048AED0; // type:object size:0x11 scope:local align:4 data:string +@3663 = .rodata:0x8048AEE4; // type:object size:0xA scope:local align:4 data:string +@3664 = .rodata:0x8048AEF0; // type:object size:0xA scope:local align:4 data:string +@3665 = .rodata:0x8048AEFC; // type:object size:0xA scope:local align:4 data:string +@3666 = .rodata:0x8048AF08; // type:object size:0xA scope:local align:4 data:string +@3667 = .rodata:0x8048AF14; // type:object size:0xA scope:local align:4 data:string +@3668 = .rodata:0x8048AF20; // type:object size:0xA scope:local align:4 data:string +@3669 = .rodata:0x8048AF2C; // type:object size:0xA scope:local align:4 data:string +@3670 = .rodata:0x8048AF38; // type:object size:0xA scope:local align:4 data:string +@3671 = .rodata:0x8048AF44; // type:object size:0xA scope:local align:4 data:string +@3672 = .rodata:0x8048AF50; // type:object size:0xA scope:local align:4 data:string +@3673 = .rodata:0x8048AF5C; // type:object size:0xA scope:local align:4 data:string +@3674 = .rodata:0x8048AF68; // type:object size:0xA scope:local align:4 data:string +@4416 = .rodata:0x8048AF78; // type:object size:0xA scope:local align:4 data:string +@4417 = .rodata:0x8048AF84; // type:object size:0xA scope:local align:4 data:string +@4418 = .rodata:0x8048AF90; // type:object size:0xA scope:local align:4 data:string +@4419 = .rodata:0x8048AF9C; // type:object size:0xA scope:local align:4 data:string +@4420 = .rodata:0x8048AFA8; // type:object size:0xA scope:local align:4 data:string +@4421 = .rodata:0x8048AFB4; // type:object size:0xA scope:local align:4 data:string +@4422 = .rodata:0x8048AFC0; // type:object size:0xA scope:local align:4 data:string +@4423 = .rodata:0x8048AFCC; // type:object size:0xA scope:local align:4 data:string +@4424 = .rodata:0x8048AFD8; // type:object size:0xA scope:local align:4 data:string +@4425 = .rodata:0x8048AFE4; // type:object size:0xA scope:local align:4 data:string +@4426 = .rodata:0x8048AFF0; // type:object size:0xA scope:local align:4 data:string +@4427 = .rodata:0x8048AFFC; // type:object size:0xA scope:local align:4 data:string +@4428 = .rodata:0x8048B008; // type:object size:0x30 scope:local align:4 data:4byte +@4694 = .rodata:0x8048B038; // type:object size:0x16 scope:local align:4 data:string +@4695 = .rodata:0x8048B050; // type:object size:0x9 scope:local align:4 data:string +@5149 = .rodata:0x8048B05C; // type:object size:0xA scope:local align:4 data:string +@5150 = .rodata:0x8048B068; // type:object size:0xA scope:local align:4 data:string +@5151 = .rodata:0x8048B074; // type:object size:0xA scope:local align:4 data:string +@5152 = .rodata:0x8048B080; // type:object size:0xC scope:local align:4 data:4byte +@5654 = .rodata:0x8048B08C; // type:object size:0xA scope:local align:4 data:string +@3519 = .rodata:0x8048B098; // type:object size:0x1B scope:local align:4 +...rodata.0 = .rodata:0x8048B0B8; // type:label scope:local +@3512 = .rodata:0x8048B0B8; // type:object size:0xF scope:local align:4 data:string +@3513 = .rodata:0x8048B0C8; // type:object size:0x25 scope:local align:4 data:string +@3519 = .rodata:0x8048B0F0; // type:object size:0x13 scope:local align:4 +@3555 = .rodata:0x8048B104; // type:object size:0xF scope:local align:4 data:string +@3556 = .rodata:0x8048B114; // type:object size:0xB scope:local align:4 +@3560 = .rodata:0x8048B120; // type:object size:0xD scope:local align:4 +@3564 = .rodata:0x8048B130; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x8048B140; // type:object size:0xF scope:local align:4 +@3569 = .rodata:0x8048B150; // type:object size:0xF scope:local align:4 +@3570 = .rodata:0x8048B160; // type:object size:0xD scope:local align:4 +@3573 = .rodata:0x8048B170; // type:object size:0xE scope:local align:4 +@3574 = .rodata:0x8048B180; // type:object size:0x10 scope:local align:4 +@3575 = .rodata:0x8048B190; // type:object size:0x10 scope:local align:4 +@3576 = .rodata:0x8048B1A0; // type:object size:0x12 scope:local align:4 +@3578 = .rodata:0x8048B1B4; // type:object size:0x12 scope:local align:4 +@3579 = .rodata:0x8048B1C8; // type:object size:0x10 scope:local align:4 +@3580 = .rodata:0x8048B1D8; // type:object size:0x12 scope:local align:4 +@3582 = .rodata:0x8048B1EC; // type:object size:0xD scope:local align:4 +@3584 = .rodata:0x8048B1FC; // type:object size:0xF scope:local align:4 +@3618 = .rodata:0x8048B20C; // type:object size:0x13 scope:local align:4 data:string +@3619 = .rodata:0x8048B220; // type:object size:0x13 scope:local align:4 data:string +@3621 = .rodata:0x8048B234; // type:object size:0xF scope:local align:4 data:string +@3622 = .rodata:0x8048B244; // type:object size:0xE scope:local align:4 data:string +@3628 = .rodata:0x8048B254; // type:object size:0xD scope:local align:4 data:string +@3681 = .rodata:0x8048B264; // type:object size:0xD scope:local align:4 +@3683 = .rodata:0x8048B274; // type:object size:0xD scope:local align:4 +@3684 = .rodata:0x8048B284; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x8048B290; // type:object size:0xF scope:local align:4 +@3688 = .rodata:0x8048B2A0; // type:object size:0x1F scope:local align:4 +@3690 = .rodata:0x8048B2C0; // type:object size:0x13 scope:local align:4 +@3692 = .rodata:0x8048B2D4; // type:object size:0x13 scope:local align:4 +@3694 = .rodata:0x8048B2E8; // type:object size:0x12 scope:local align:4 +@3695 = .rodata:0x8048B2FC; // type:object size:0x11 scope:local align:4 +@3700 = .rodata:0x8048B310; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8048B31C; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x8048B32C; // type:object size:0xB scope:local align:4 +@3704 = .rodata:0x8048B338; // type:object size:0xB scope:local align:4 +@3706 = .rodata:0x8048B344; // type:object size:0x11 scope:local align:4 +@3708 = .rodata:0x8048B358; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x8048B364; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x8048B370; // type:object size:0x9 scope:local align:4 +@3715 = .rodata:0x8048B37C; // type:object size:0x9 scope:local align:4 +@3716 = .rodata:0x8048B388; // type:object size:0xB scope:local align:4 +@3718 = .rodata:0x8048B394; // type:object size:0x11 scope:local align:4 +@3719 = .rodata:0x8048B3A8; // type:object size:0xD scope:local align:4 +@3720 = .rodata:0x8048B3B8; // type:object size:0xB scope:local align:4 +@3721 = .rodata:0x8048B3C4; // type:object size:0xD scope:local align:4 +@3722 = .rodata:0x8048B3D4; // type:object size:0xD scope:local align:4 +@3723 = .rodata:0x8048B3E4; // type:object size:0xF scope:local align:4 +@3724 = .rodata:0x8048B3F4; // type:object size:0xF scope:local align:4 +@3726 = .rodata:0x8048B404; // type:object size:0x9 scope:local align:4 +@3728 = .rodata:0x8048B410; // type:object size:0x9 scope:local align:4 +@3730 = .rodata:0x8048B41C; // type:object size:0x17 scope:local align:4 +@3731 = .rodata:0x8048B434; // type:object size:0xD scope:local align:4 +@3733 = .rodata:0x8048B444; // type:object size:0xD scope:local align:4 +@3734 = .rodata:0x8048B454; // type:object size:0xF scope:local align:4 +@3735 = .rodata:0x8048B464; // type:object size:0xF scope:local align:4 +@3736 = .rodata:0x8048B474; // type:object size:0xF scope:local align:4 +@3737 = .rodata:0x8048B484; // type:object size:0xF scope:local align:4 +@3738 = .rodata:0x8048B494; // type:object size:0xF scope:local align:4 +@3739 = .rodata:0x8048B4A4; // type:object size:0xF scope:local align:4 +@3740 = .rodata:0x8048B4B4; // type:object size:0xF scope:local align:4 +@3799 = .rodata:0x8048B4C4; // type:object size:0xF scope:local align:4 data:string +@3800 = .rodata:0x8048B4D4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048B4E0; // type:label scope:local +@3515 = .rodata:0x8048B4E0; // type:object size:0x12 scope:local align:4 data:string +@3634 = .rodata:0x8048B4F4; // type:object size:0xA scope:local align:4 data:string +@3635 = .rodata:0x8048B500; // type:object size:0xA scope:local align:4 data:string +@3636 = .rodata:0x8048B50C; // type:object size:0xA scope:local align:4 data:string +@3637 = .rodata:0x8048B518; // type:object size:0xA scope:local align:4 data:string +@3638 = .rodata:0x8048B524; // type:object size:0xA scope:local align:4 data:string +@3639 = .rodata:0x8048B530; // type:object size:0xA scope:local align:4 data:string +@3640 = .rodata:0x8048B53C; // type:object size:0xA scope:local align:4 data:string +@3641 = .rodata:0x8048B548; // type:object size:0xA scope:local align:4 data:string +@3642 = .rodata:0x8048B554; // type:object size:0xA scope:local align:4 data:string +@3643 = .rodata:0x8048B560; // type:object size:0xA scope:local align:4 data:string +@3644 = .rodata:0x8048B56C; // type:object size:0xA scope:local align:4 data:string +@3645 = .rodata:0x8048B578; // type:object size:0xA scope:local align:4 data:string +@4414 = .rodata:0x8048B588; // type:object size:0xA scope:local align:4 data:string +@4415 = .rodata:0x8048B594; // type:object size:0xA scope:local align:4 data:string +@4416 = .rodata:0x8048B5A0; // type:object size:0xA scope:local align:4 data:string +@4417 = .rodata:0x8048B5AC; // type:object size:0xA scope:local align:4 data:string +@4418 = .rodata:0x8048B5B8; // type:object size:0xA scope:local align:4 data:string +@4419 = .rodata:0x8048B5C4; // type:object size:0xA scope:local align:4 data:string +@4420 = .rodata:0x8048B5D0; // type:object size:0xA scope:local align:4 data:string +@4421 = .rodata:0x8048B5DC; // type:object size:0xA scope:local align:4 data:string +@4422 = .rodata:0x8048B5E8; // type:object size:0xA scope:local align:4 data:string +@4423 = .rodata:0x8048B5F4; // type:object size:0xA scope:local align:4 data:string +@4424 = .rodata:0x8048B600; // type:object size:0xA scope:local align:4 data:string +@4425 = .rodata:0x8048B60C; // type:object size:0xA scope:local align:4 data:string +@4426 = .rodata:0x8048B618; // type:object size:0x30 scope:local align:4 data:4byte +@4641 = .rodata:0x8048B648; // type:object size:0x10 scope:local align:4 data:4byte +@4674 = .rodata:0x8048B658; // type:object size:0x16 scope:local align:4 data:string +@4675 = .rodata:0x8048B670; // type:object size:0x9 scope:local align:4 data:string +@5160 = .rodata:0x8048B67C; // type:object size:0x10 scope:local align:4 data:4byte +@4059 = .rodata:0x8048B690; // type:object size:0xA scope:local align:4 data:string +@4065 = .rodata:0x8048B69C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048B6A8; // type:label scope:local +@3511 = .rodata:0x8048B6A8; // type:object size:0x12 scope:local align:4 data:string +@3517 = .rodata:0x8048B6BC; // type:object size:0x19 scope:local align:4 +@3542 = .rodata:0x8048B6D8; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x8048B6E8; // type:object size:0xB scope:local align:4 +@3547 = .rodata:0x8048B6F4; // type:object size:0xD scope:local align:4 +@3550 = .rodata:0x8048B704; // type:object size:0xD scope:local align:4 +@3551 = .rodata:0x8048B714; // type:object size:0xB scope:local align:4 +@3587 = .rodata:0x8048B720; // type:object size:0x13 scope:local align:4 data:string +@3588 = .rodata:0x8048B734; // type:object size:0x13 scope:local align:4 data:string +@3590 = .rodata:0x8048B748; // type:object size:0xF scope:local align:4 data:string +@3591 = .rodata:0x8048B758; // type:object size:0xE scope:local align:4 data:string +@3596 = .rodata:0x8048B768; // type:object size:0xD scope:local align:4 data:string +@3650 = .rodata:0x8048B778; // type:object size:0xD scope:local align:4 +@3653 = .rodata:0x8048B788; // type:object size:0xD scope:local align:4 +@3654 = .rodata:0x8048B798; // type:object size:0xB scope:local align:4 +@3656 = .rodata:0x8048B7A4; // type:object size:0xF scope:local align:4 +@3658 = .rodata:0x8048B7B4; // type:object size:0x1F scope:local align:4 +@3660 = .rodata:0x8048B7D4; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8048B7E8; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048B7FC; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x8048B810; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x8048B824; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x8048B830; // type:object size:0xD scope:local align:4 +@3673 = .rodata:0x8048B840; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048B84C; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048B858; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048B86C; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048B878; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048B884; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048B890; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048B89C; // type:object size:0xB scope:local align:4 +@3689 = .rodata:0x8048B8A8; // type:object size:0x11 scope:local align:4 +@3690 = .rodata:0x8048B8BC; // type:object size:0xD scope:local align:4 +@3691 = .rodata:0x8048B8CC; // type:object size:0xB scope:local align:4 +@3692 = .rodata:0x8048B8D8; // type:object size:0xD scope:local align:4 +@3693 = .rodata:0x8048B8E8; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048B8F8; // type:object size:0xF scope:local align:4 +@3695 = .rodata:0x8048B908; // type:object size:0xF scope:local align:4 +@3697 = .rodata:0x8048B918; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x8048B924; // type:object size:0x9 scope:local align:4 +@3701 = .rodata:0x8048B930; // type:object size:0x17 scope:local align:4 +@3702 = .rodata:0x8048B948; // type:object size:0xD scope:local align:4 +@3704 = .rodata:0x8048B958; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048B968; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x8048B978; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048B988; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048B998; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048B9A8; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048B9B8; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048B9C8; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x8048B9D8; // type:label scope:local +@3793 = .rodata:0x8048B9D8; // type:object size:0xF scope:local align:4 data:string +@3923 = .rodata:0x8048B9E8; // type:object size:0x9 scope:local align:4 data:string +@3971 = .rodata:0x8048B9F4; // type:object size:0x9 scope:local align:4 data:string +@3972 = .rodata:0x8048BA00; // type:object size:0x9 scope:local align:4 data:string +@3973 = .rodata:0x8048BA0C; // type:object size:0x9 scope:local align:4 data:string +@4302 = .rodata:0x8048BA18; // type:object size:0x14 scope:local align:4 data:4byte +@4303 = .rodata:0x8048BA2C; // type:object size:0x14 scope:local align:4 data:4byte +@4362 = .rodata:0x8048BA40; // type:object size:0x14 scope:local align:4 +@4363 = .rodata:0x8048BA54; // type:object size:0x14 scope:local align:4 +@4364 = .rodata:0x8048BA68; // type:object size:0x14 scope:local align:4 +@4365 = .rodata:0x8048BA7C; // type:object size:0x14 scope:local align:4 +@4366 = .rodata:0x8048BA90; // type:object size:0x14 scope:local align:4 +@4367 = .rodata:0x8048BAA4; // type:object size:0x14 scope:local align:4 +@4558 = .rodata:0x8048BAB8; // type:object size:0x14 scope:local align:4 +@4559 = .rodata:0x8048BACC; // type:object size:0x14 scope:local align:4 +@4560 = .rodata:0x8048BAE0; // type:object size:0x14 scope:local align:4 +@4561 = .rodata:0x8048BAF4; // type:object size:0x14 scope:local align:4 +@4562 = .rodata:0x8048BB08; // type:object size:0x14 scope:local align:4 +@4563 = .rodata:0x8048BB1C; // type:object size:0x14 scope:local align:4 +@4956 = .rodata:0x8048BB30; // type:object size:0x16 scope:local align:4 data:string +@4957 = .rodata:0x8048BB48; // type:object size:0x9 scope:local align:4 data:string +@5055 = .rodata:0x8048BB54; // type:object size:0xC scope:local align:4 data:string +cJointModRatio__Q24Game27@unnamed@SnakeJointMgr_cpp@ = .rodata:0x8048BB60; // type:object size:0x18 scope:local align:4 data:float +@3549 = .rodata:0x8048BB78; // type:object size:0x9 scope:local align:4 data:string +@3550 = .rodata:0x8048BB84; // type:object size:0x9 scope:local align:4 data:string +@3551 = .rodata:0x8048BB90; // type:object size:0x9 scope:local align:4 data:string +@3552 = .rodata:0x8048BB9C; // type:object size:0x9 scope:local align:4 data:string +@3553 = .rodata:0x8048BBA8; // type:object size:0x9 scope:local align:4 data:string +@3554 = .rodata:0x8048BBB4; // type:object size:0x9 scope:local align:4 data:string +@3555 = .rodata:0x8048BBC0; // type:object size:0x18 scope:local align:4 data:4byte +@4076 = .rodata:0x8048BBD8; // type:object size:0x9 scope:local align:4 data:string +@4077 = .rodata:0x8048BBE4; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8048BBF0; // type:label scope:local +@3510 = .rodata:0x8048BBF0; // type:object size:0x11 scope:local align:4 data:string +@3516 = .rodata:0x8048BC04; // type:object size:0x15 scope:local align:4 +@3545 = .rodata:0x8048BC1C; // type:object size:0xF scope:local align:4 data:string +@3546 = .rodata:0x8048BC2C; // type:object size:0x9 scope:local align:4 +@3550 = .rodata:0x8048BC38; // type:object size:0x9 scope:local align:4 +@3553 = .rodata:0x8048BC44; // type:object size:0x11 scope:local align:4 +@3555 = .rodata:0x8048BC58; // type:object size:0xD scope:local align:4 +@3557 = .rodata:0x8048BC68; // type:object size:0xD scope:local align:4 +@3559 = .rodata:0x8048BC78; // type:object size:0xD scope:local align:4 +@3560 = .rodata:0x8048BC88; // type:object size:0xF scope:local align:4 +@3561 = .rodata:0x8048BC98; // type:object size:0xF scope:local align:4 +@3595 = .rodata:0x8048BCA8; // type:object size:0x13 scope:local align:4 data:string +@3596 = .rodata:0x8048BCBC; // type:object size:0x13 scope:local align:4 data:string +@3598 = .rodata:0x8048BCD0; // type:object size:0xF scope:local align:4 data:string +@3599 = .rodata:0x8048BCE0; // type:object size:0xE scope:local align:4 data:string +@3605 = .rodata:0x8048BCF0; // type:object size:0xD scope:local align:4 data:string +@3659 = .rodata:0x8048BD00; // type:object size:0xD scope:local align:4 +@3662 = .rodata:0x8048BD10; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x8048BD20; // type:object size:0xB scope:local align:4 +@3665 = .rodata:0x8048BD2C; // type:object size:0xF scope:local align:4 +@3667 = .rodata:0x8048BD3C; // type:object size:0x1F scope:local align:4 +@3669 = .rodata:0x8048BD5C; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x8048BD70; // type:object size:0x13 scope:local align:4 +@3673 = .rodata:0x8048BD84; // type:object size:0x12 scope:local align:4 +@3674 = .rodata:0x8048BD98; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048BDAC; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x8048BDB8; // type:object size:0xD scope:local align:4 +@3682 = .rodata:0x8048BDC8; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x8048BDD4; // type:object size:0xB scope:local align:4 +@3686 = .rodata:0x8048BDE0; // type:object size:0x11 scope:local align:4 +@3688 = .rodata:0x8048BDF4; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x8048BE00; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x8048BE0C; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x8048BE18; // type:object size:0x9 scope:local align:4 +@3696 = .rodata:0x8048BE24; // type:object size:0xB scope:local align:4 +@3698 = .rodata:0x8048BE30; // type:object size:0x11 scope:local align:4 +@3699 = .rodata:0x8048BE44; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x8048BE54; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8048BE60; // type:object size:0xD scope:local align:4 +@3702 = .rodata:0x8048BE70; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x8048BE80; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x8048BE90; // type:object size:0xF scope:local align:4 +@3706 = .rodata:0x8048BEA0; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x8048BEAC; // type:object size:0x9 scope:local align:4 +@3710 = .rodata:0x8048BEB8; // type:object size:0x17 scope:local align:4 +@3711 = .rodata:0x8048BED0; // type:object size:0xD scope:local align:4 +@3713 = .rodata:0x8048BEE0; // type:object size:0xD scope:local align:4 +@3714 = .rodata:0x8048BEF0; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x8048BF00; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x8048BF10; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x8048BF20; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x8048BF30; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x8048BF40; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048BF50; // type:object size:0xF scope:local align:4 +@4272 = .rodata:0x8048BF60; // type:object size:0x1C scope:local align:4 data:4byte +@4273 = .rodata:0x8048BF7C; // type:object size:0x1C scope:local align:4 data:4byte +@4291 = .rodata:0x8048BF98; // type:object size:0x1C scope:local align:4 data:4byte +@4292 = .rodata:0x8048BFB4; // type:object size:0x1C scope:local align:4 data:4byte +@4310 = .rodata:0x8048BFD0; // type:object size:0x14 scope:local align:4 data:4byte +@4311 = .rodata:0x8048BFE4; // type:object size:0x14 scope:local align:4 data:4byte +@4329 = .rodata:0x8048BFF8; // type:object size:0x20 scope:local align:4 data:4byte +@4330 = .rodata:0x8048C018; // type:object size:0x20 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x8048C038; // type:label scope:local +@3606 = .rodata:0x8048C038; // type:object size:0xC scope:local align:4 +@3657 = .rodata:0x8048C044; // type:object size:0x15 scope:local align:4 data:string +@3810 = .rodata:0x8048C05C; // type:object size:0x9 scope:local align:4 data:string +@3812 = .rodata:0x8048C068; // type:object size:0xA scope:local align:4 data:string +@3815 = .rodata:0x8048C074; // type:object size:0x9 scope:local align:4 data:string +@3817 = .rodata:0x8048C080; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048C090; // type:label scope:local +@3515 = .rodata:0x8048C090; // type:object size:0x13 scope:local align:4 data:string +@3516 = .rodata:0x8048C0A4; // type:object size:0x2C scope:local align:4 data:string +@3517 = .rodata:0x8048C0D0; // type:object size:0x2C scope:local align:4 data:string +@3526 = .rodata:0x8048C0FC; // type:object size:0x14 scope:local align:4 data:4byte +@3550 = .rodata:0x8048C110; // type:object size:0x17 scope:local align:4 +@3638 = .rodata:0x8048C128; // type:object size:0xF scope:local align:4 data:string +@3639 = .rodata:0x8048C138; // type:object size:0xB scope:local align:4 +@3643 = .rodata:0x8048C144; // type:object size:0xD scope:local align:4 +@3647 = .rodata:0x8048C154; // type:object size:0xD scope:local align:4 +@3649 = .rodata:0x8048C164; // type:object size:0xF scope:local align:4 +@3652 = .rodata:0x8048C174; // type:object size:0xF scope:local align:4 +@3653 = .rodata:0x8048C184; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x8048C194; // type:object size:0xF scope:local align:4 +@3658 = .rodata:0x8048C1A4; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x8048C1B4; // type:object size:0xF scope:local align:4 +@3661 = .rodata:0x8048C1C4; // type:object size:0xF scope:local align:4 +@3662 = .rodata:0x8048C1D4; // type:object size:0xD scope:local align:4 +@3663 = .rodata:0x8048C1E4; // type:object size:0xF scope:local align:4 +@3664 = .rodata:0x8048C1F4; // type:object size:0xD scope:local align:4 +@3665 = .rodata:0x8048C204; // type:object size:0xF scope:local align:4 +@3666 = .rodata:0x8048C214; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x8048C224; // type:object size:0xE scope:local align:4 +@3670 = .rodata:0x8048C234; // type:object size:0xE scope:local align:4 +@3672 = .rodata:0x8048C244; // type:object size:0x10 scope:local align:4 +@3675 = .rodata:0x8048C254; // type:object size:0x10 scope:local align:4 +@3677 = .rodata:0x8048C264; // type:object size:0xF scope:local align:4 +@3679 = .rodata:0x8048C274; // type:object size:0xF scope:local align:4 +@3680 = .rodata:0x8048C284; // type:object size:0xE scope:local align:4 +@3682 = .rodata:0x8048C294; // type:object size:0xE scope:local align:4 +@3684 = .rodata:0x8048C2A4; // type:object size:0xC scope:local align:4 +@3685 = .rodata:0x8048C2B0; // type:object size:0xE scope:local align:4 +@3687 = .rodata:0x8048C2C0; // type:object size:0xE scope:local align:4 +@3688 = .rodata:0x8048C2D0; // type:object size:0x10 scope:local align:4 +@3690 = .rodata:0x8048C2E0; // type:object size:0x10 scope:local align:4 +@3692 = .rodata:0x8048C2F0; // type:object size:0xF scope:local align:4 +@3694 = .rodata:0x8048C300; // type:object size:0xF scope:local align:4 +@3695 = .rodata:0x8048C310; // type:object size:0xE scope:local align:4 +@3697 = .rodata:0x8048C320; // type:object size:0xE scope:local align:4 +@3698 = .rodata:0x8048C330; // type:object size:0xC scope:local align:4 +@3699 = .rodata:0x8048C33C; // type:object size:0xE scope:local align:4 +@3701 = .rodata:0x8048C34C; // type:object size:0xE scope:local align:4 +@3702 = .rodata:0x8048C35C; // type:object size:0x10 scope:local align:4 +@3704 = .rodata:0x8048C36C; // type:object size:0x10 scope:local align:4 +@3706 = .rodata:0x8048C37C; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048C38C; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048C39C; // type:object size:0xE scope:local align:4 +@3709 = .rodata:0x8048C3AC; // type:object size:0xE scope:local align:4 +@3711 = .rodata:0x8048C3BC; // type:object size:0xC scope:local align:4 +@3712 = .rodata:0x8048C3C8; // type:object size:0xE scope:local align:4 +@3714 = .rodata:0x8048C3D8; // type:object size:0xE scope:local align:4 +@3716 = .rodata:0x8048C3E8; // type:object size:0x10 scope:local align:4 +@3717 = .rodata:0x8048C3F8; // type:object size:0x10 scope:local align:4 +@3719 = .rodata:0x8048C408; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048C418; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8048C428; // type:object size:0xE scope:local align:4 +@3723 = .rodata:0x8048C438; // type:object size:0xE scope:local align:4 +@3725 = .rodata:0x8048C448; // type:object size:0xC scope:local align:4 +@3726 = .rodata:0x8048C454; // type:object size:0x11 scope:local align:4 +@3727 = .rodata:0x8048C468; // type:object size:0x10 scope:local align:4 +@3728 = .rodata:0x8048C478; // type:object size:0x10 scope:local align:4 +@3730 = .rodata:0x8048C488; // type:object size:0x10 scope:local align:4 +@3734 = .rodata:0x8048C498; // type:object size:0x10 scope:local align:4 +@3735 = .rodata:0x8048C4A8; // type:object size:0xE scope:local align:4 +@3737 = .rodata:0x8048C4B8; // type:object size:0xE scope:local align:4 +@3739 = .rodata:0x8048C4C8; // type:object size:0xC scope:local align:4 +@3741 = .rodata:0x8048C4D4; // type:object size:0x10 scope:local align:4 +@3742 = .rodata:0x8048C4E4; // type:object size:0x10 scope:local align:4 +@3743 = .rodata:0x8048C4F4; // type:object size:0xC scope:local align:4 +@3744 = .rodata:0x8048C500; // type:object size:0x10 scope:local align:4 +@3746 = .rodata:0x8048C510; // type:object size:0x10 scope:local align:4 +@3781 = .rodata:0x8048C520; // type:object size:0x13 scope:local align:4 data:string +@3782 = .rodata:0x8048C534; // type:object size:0x13 scope:local align:4 data:string +@3783 = .rodata:0x8048C548; // type:object size:0xF scope:local align:4 data:string +@3784 = .rodata:0x8048C558; // type:object size:0xE scope:local align:4 data:string +@3786 = .rodata:0x8048C568; // type:object size:0xD scope:local align:4 data:string +@3839 = .rodata:0x8048C578; // type:object size:0xD scope:local align:4 +@3841 = .rodata:0x8048C588; // type:object size:0xD scope:local align:4 +@3842 = .rodata:0x8048C598; // type:object size:0xB scope:local align:4 +@3843 = .rodata:0x8048C5A4; // type:object size:0xF scope:local align:4 +@3845 = .rodata:0x8048C5B4; // type:object size:0x1F scope:local align:4 +@3846 = .rodata:0x8048C5D4; // type:object size:0x13 scope:local align:4 +@3848 = .rodata:0x8048C5E8; // type:object size:0x13 scope:local align:4 +@3849 = .rodata:0x8048C5FC; // type:object size:0x12 scope:local align:4 +@3850 = .rodata:0x8048C610; // type:object size:0x11 scope:local align:4 +@3854 = .rodata:0x8048C624; // type:object size:0xB scope:local align:4 +@3855 = .rodata:0x8048C630; // type:object size:0xD scope:local align:4 +@3857 = .rodata:0x8048C640; // type:object size:0xB scope:local align:4 +@3858 = .rodata:0x8048C64C; // type:object size:0xB scope:local align:4 +@3860 = .rodata:0x8048C658; // type:object size:0x11 scope:local align:4 +@3861 = .rodata:0x8048C66C; // type:object size:0x9 scope:local align:4 +@3863 = .rodata:0x8048C678; // type:object size:0x9 scope:local align:4 +@3865 = .rodata:0x8048C684; // type:object size:0x9 scope:local align:4 +@3867 = .rodata:0x8048C690; // type:object size:0x9 scope:local align:4 +@3868 = .rodata:0x8048C69C; // type:object size:0xB scope:local align:4 +@3870 = .rodata:0x8048C6A8; // type:object size:0x11 scope:local align:4 +@3871 = .rodata:0x8048C6BC; // type:object size:0xD scope:local align:4 +@3872 = .rodata:0x8048C6CC; // type:object size:0xB scope:local align:4 +@3873 = .rodata:0x8048C6D8; // type:object size:0xD scope:local align:4 +@3874 = .rodata:0x8048C6E8; // type:object size:0xD scope:local align:4 +@3875 = .rodata:0x8048C6F8; // type:object size:0xF scope:local align:4 +@3876 = .rodata:0x8048C708; // type:object size:0xF scope:local align:4 +@3878 = .rodata:0x8048C718; // type:object size:0x9 scope:local align:4 +@3880 = .rodata:0x8048C724; // type:object size:0x9 scope:local align:4 +@3881 = .rodata:0x8048C730; // type:object size:0x17 scope:local align:4 +@3882 = .rodata:0x8048C748; // type:object size:0xD scope:local align:4 +@3884 = .rodata:0x8048C758; // type:object size:0xD scope:local align:4 +@3885 = .rodata:0x8048C768; // type:object size:0xF scope:local align:4 +@3886 = .rodata:0x8048C778; // type:object size:0xF scope:local align:4 +@3887 = .rodata:0x8048C788; // type:object size:0xF scope:local align:4 +@3888 = .rodata:0x8048C798; // type:object size:0xF scope:local align:4 +@3889 = .rodata:0x8048C7A8; // type:object size:0xF scope:local align:4 +@3890 = .rodata:0x8048C7B8; // type:object size:0xF scope:local align:4 +@3891 = .rodata:0x8048C7C8; // type:object size:0xF scope:local align:4 +@3947 = .rodata:0x8048C7D8; // type:object size:0x13 scope:local align:4 data:string +@3948 = .rodata:0x8048C7EC; // type:object size:0x9 scope:local align:4 data:string +@3990 = .rodata:0x8048C7F8; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8048C808; // type:label scope:local +@3518 = .rodata:0x8048C808; // type:object size:0x16 scope:local align:4 data:string +@3718 = .rodata:0x8048C820; // type:object size:0xA scope:local align:4 data:string +@3719 = .rodata:0x8048C82C; // type:object size:0xA scope:local align:4 data:string +@3720 = .rodata:0x8048C838; // type:object size:0xA scope:local align:4 data:string +@3721 = .rodata:0x8048C844; // type:object size:0xA scope:local align:4 data:string +@3722 = .rodata:0x8048C850; // type:object size:0xA scope:local align:4 data:string +@3723 = .rodata:0x8048C85C; // type:object size:0xA scope:local align:4 data:string +@3724 = .rodata:0x8048C868; // type:object size:0xA scope:local align:4 data:string +@3725 = .rodata:0x8048C874; // type:object size:0xA scope:local align:4 data:string +@3726 = .rodata:0x8048C880; // type:object size:0xA scope:local align:4 data:string +@3727 = .rodata:0x8048C88C; // type:object size:0xA scope:local align:4 data:string +@3728 = .rodata:0x8048C898; // type:object size:0xA scope:local align:4 data:string +@3729 = .rodata:0x8048C8A4; // type:object size:0xA scope:local align:4 data:string +@3730 = .rodata:0x8048C8B0; // type:object size:0xD scope:local align:4 data:string +@3731 = .rodata:0x8048C8C0; // type:object size:0xD scope:local align:4 data:string +@3732 = .rodata:0x8048C8D0; // type:object size:0xC scope:local align:4 data:string +@3733 = .rodata:0x8048C8DC; // type:object size:0xE scope:local align:4 data:string +@3740 = .rodata:0x8048C8EC; // type:object size:0xA scope:local align:4 data:string +@3741 = .rodata:0x8048C8F8; // type:object size:0xA scope:local align:4 data:string +@3742 = .rodata:0x8048C904; // type:object size:0xA scope:local align:4 data:string +@3743 = .rodata:0x8048C910; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048C920; // type:label scope:local +@3673 = .rodata:0x8048C920; // type:object size:0xC scope:local align:4 +@4028 = .rodata:0x8048C92C; // type:object size:0x10 scope:local align:4 data:string +@4207 = .rodata:0x8048C93C; // type:object size:0x9 scope:local align:4 data:string +@4208 = .rodata:0x8048C948; // type:object size:0x9 scope:local align:4 data:string +@4209 = .rodata:0x8048C954; // type:object size:0x9 scope:local align:4 data:string +@4502 = .rodata:0x8048C960; // type:object size:0xA scope:local align:4 data:string +@4503 = .rodata:0x8048C96C; // type:object size:0xA scope:local align:4 data:string +@4504 = .rodata:0x8048C978; // type:object size:0xA scope:local align:4 data:string +@4505 = .rodata:0x8048C984; // type:object size:0xA scope:local align:4 data:string +@4506 = .rodata:0x8048C990; // type:object size:0xA scope:local align:4 data:string +@4507 = .rodata:0x8048C99C; // type:object size:0xA scope:local align:4 data:string +@4508 = .rodata:0x8048C9A8; // type:object size:0xA scope:local align:4 data:string +@4509 = .rodata:0x8048C9B4; // type:object size:0xA scope:local align:4 data:string +@4510 = .rodata:0x8048C9C0; // type:object size:0xA scope:local align:4 data:string +@4511 = .rodata:0x8048C9CC; // type:object size:0xA scope:local align:4 data:string +@4512 = .rodata:0x8048C9D8; // type:object size:0xA scope:local align:4 data:string +@4513 = .rodata:0x8048C9E4; // type:object size:0xA scope:local align:4 data:string +@4514 = .rodata:0x8048C9F0; // type:object size:0x30 scope:local align:4 data:4byte +@4669 = .rodata:0x8048CA20; // type:object size:0x10 scope:local align:4 data:4byte +@4704 = .rodata:0x8048CA30; // type:object size:0x10 scope:local align:4 data:string +@4709 = .rodata:0x8048CA40; // type:object size:0x10 scope:local align:4 +@4710 = .rodata:0x8048CA50; // type:object size:0xD scope:local align:4 data:string +@4711 = .rodata:0x8048CA60; // type:object size:0xD scope:local align:4 data:string +@4712 = .rodata:0x8048CA70; // type:object size:0xC scope:local align:4 data:string +@4713 = .rodata:0x8048CA7C; // type:object size:0xE scope:local align:4 data:string +@4714 = .rodata:0x8048CA8C; // type:object size:0x10 scope:local align:4 +@4767 = .rodata:0x8048CA9C; // type:object size:0xE scope:local align:4 data:string +@5704 = .rodata:0x8048CAAC; // type:object size:0x16 scope:local align:4 data:string +@5705 = .rodata:0x8048CAC4; // type:object size:0x9 scope:local align:4 data:string +@6688 = .rodata:0x8048CAD0; // type:object size:0xF scope:local align:4 data:string +@6692 = .rodata:0x8048CAE0; // type:object size:0xA scope:local align:4 data:string +@6788 = .rodata:0x8048CAEC; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8048CB00; // type:label scope:local +@3788 = .rodata:0x8048CB00; // type:object size:0x10 scope:local align:4 data:string +@3956 = .rodata:0x8048CB10; // type:object size:0xA scope:local align:4 data:string +@3960 = .rodata:0x8048CB1C; // type:object size:0xA scope:local align:4 data:string +@3961 = .rodata:0x8048CB28; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048CB38; // type:label scope:local +@3517 = .rodata:0x8048CB38; // type:object size:0xE scope:local align:4 data:string +@3523 = .rodata:0x8048CB48; // type:object size:0x11 scope:local align:4 +@3533 = .rodata:0x8048CB5C; // type:object size:0xC scope:local align:4 data:4byte +@3563 = .rodata:0x8048CB68; // type:object size:0xC scope:local align:4 data:4byte +@3611 = .rodata:0x8048CB74; // type:object size:0xE scope:local align:4 data:string +@3612 = .rodata:0x8048CB84; // type:object size:0x9 scope:local align:4 data:string +@3613 = .rodata:0x8048CB90; // type:object size:0x14 scope:local align:4 data:string +@3614 = .rodata:0x8048CBA4; // type:object size:0x13 scope:local align:4 data:string +@3615 = .rodata:0x8048CBB8; // type:object size:0x14 scope:local align:4 data:string +@3617 = .rodata:0x8048CBD0; // type:object size:0x9 scope:local align:4 data:string +@3337 = .rodata:0x8048CBE0; // type:object size:0x13 scope:local align:4 +@3359 = .rodata:0x8048CBF4; // type:object size:0xF scope:local align:4 data:string +@3360 = .rodata:0x8048CC04; // type:object size:0xB scope:local align:4 +...rodata.0 = .rodata:0x8048CC10; // type:label scope:local +@3600 = .rodata:0x8048CC10; // type:object size:0xC scope:local align:4 +@3651 = .rodata:0x8048CC1C; // type:object size:0x14 scope:local align:4 data:string +@3794 = .rodata:0x8048CC30; // type:object size:0x9 scope:local align:4 data:string +@3795 = .rodata:0x8048CC3C; // type:object size:0x9 scope:local align:4 data:string +@3797 = .rodata:0x8048CC48; // type:object size:0x9 scope:local align:4 data:string +@3798 = .rodata:0x8048CC54; // type:object size:0x9 scope:local align:4 data:string +@3523 = .rodata:0x8048CC60; // type:object size:0x17 scope:local align:4 +@4717 = .rodata:0x8048CC78; // type:object size:0xC scope:local align:4 data:4byte +...rodata.0 = .rodata:0x8048CC88; // type:label scope:local +@3522 = .rodata:0x8048CC88; // type:object size:0x11 scope:local align:4 data:string +@3639 = .rodata:0x8048CC9C; // type:object size:0xA scope:local align:4 data:string +@3641 = .rodata:0x8048CCA8; // type:object size:0xB scope:local align:4 data:string +@3642 = .rodata:0x8048CCB4; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048CCC0; // type:label scope:local +@3510 = .rodata:0x8048CCC0; // type:object size:0xF scope:local align:4 data:string +@3516 = .rodata:0x8048CCD0; // type:object size:0x13 scope:local align:4 +@3547 = .rodata:0x8048CCE4; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x8048CCF4; // type:object size:0xD scope:local align:4 +@3552 = .rodata:0x8048CD04; // type:object size:0xD scope:local align:4 +@3553 = .rodata:0x8048CD14; // type:object size:0xD scope:local align:4 +@3556 = .rodata:0x8048CD24; // type:object size:0xD scope:local align:4 +@3558 = .rodata:0x8048CD34; // type:object size:0x9 scope:local align:4 +@3560 = .rodata:0x8048CD40; // type:object size:0xD scope:local align:4 +@3562 = .rodata:0x8048CD50; // type:object size:0xD scope:local align:4 +@3563 = .rodata:0x8048CD60; // type:object size:0xD scope:local align:4 +@3566 = .rodata:0x8048CD70; // type:object size:0xF scope:local align:4 +@3568 = .rodata:0x8048CD80; // type:object size:0x11 scope:local align:4 +@3603 = .rodata:0x8048CD94; // type:object size:0x13 scope:local align:4 data:string +@3604 = .rodata:0x8048CDA8; // type:object size:0x13 scope:local align:4 data:string +@3606 = .rodata:0x8048CDBC; // type:object size:0xF scope:local align:4 data:string +@3607 = .rodata:0x8048CDCC; // type:object size:0xE scope:local align:4 data:string +@3611 = .rodata:0x8048CDDC; // type:object size:0xD scope:local align:4 data:string +@3665 = .rodata:0x8048CDEC; // type:object size:0xD scope:local align:4 +@3667 = .rodata:0x8048CDFC; // type:object size:0xD scope:local align:4 +@3668 = .rodata:0x8048CE0C; // type:object size:0xB scope:local align:4 +@3670 = .rodata:0x8048CE18; // type:object size:0xF scope:local align:4 +@3672 = .rodata:0x8048CE28; // type:object size:0x1F scope:local align:4 +@3674 = .rodata:0x8048CE48; // type:object size:0x13 scope:local align:4 +@3676 = .rodata:0x8048CE5C; // type:object size:0x13 scope:local align:4 +@3678 = .rodata:0x8048CE70; // type:object size:0x12 scope:local align:4 +@3679 = .rodata:0x8048CE84; // type:object size:0x11 scope:local align:4 +@3684 = .rodata:0x8048CE98; // type:object size:0xB scope:local align:4 +@3685 = .rodata:0x8048CEA4; // type:object size:0xD scope:local align:4 +@3686 = .rodata:0x8048CEB4; // type:object size:0xB scope:local align:4 +@3688 = .rodata:0x8048CEC0; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048CECC; // type:object size:0x11 scope:local align:4 +@3692 = .rodata:0x8048CEE0; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x8048CEEC; // type:object size:0x9 scope:local align:4 +@3695 = .rodata:0x8048CEF8; // type:object size:0x9 scope:local align:4 +@3697 = .rodata:0x8048CF04; // type:object size:0x9 scope:local align:4 +@3699 = .rodata:0x8048CF10; // type:object size:0xB scope:local align:4 +@3701 = .rodata:0x8048CF1C; // type:object size:0x11 scope:local align:4 +@3702 = .rodata:0x8048CF30; // type:object size:0xD scope:local align:4 +@3703 = .rodata:0x8048CF40; // type:object size:0xB scope:local align:4 +@3704 = .rodata:0x8048CF4C; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048CF5C; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8048CF6C; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048CF7C; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048CF8C; // type:object size:0x9 scope:local align:4 +@3711 = .rodata:0x8048CF98; // type:object size:0x9 scope:local align:4 +@3713 = .rodata:0x8048CFA4; // type:object size:0x17 scope:local align:4 +@3714 = .rodata:0x8048CFBC; // type:object size:0xD scope:local align:4 +@3715 = .rodata:0x8048CFCC; // type:object size:0xD scope:local align:4 +@3716 = .rodata:0x8048CFDC; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x8048CFEC; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x8048CFFC; // type:object size:0xF scope:local align:4 +@3719 = .rodata:0x8048D00C; // type:object size:0xF scope:local align:4 +@3720 = .rodata:0x8048D01C; // type:object size:0xF scope:local align:4 +@3721 = .rodata:0x8048D02C; // type:object size:0xF scope:local align:4 +@3722 = .rodata:0x8048D03C; // type:object size:0xF scope:local align:4 +@4010 = .rodata:0x8048D050; // type:object size:0xC scope:local align:4 data:string +@4056 = .rodata:0x8048D060; // type:object size:0xC scope:local align:4 data:string +@4057 = .rodata:0x8048D06C; // type:object size:0xC scope:local align:4 data:string +@3520 = .rodata:0x8048D078; // type:object size:0x17 scope:local align:4 +@4704 = .rodata:0x8048D090; // type:object size:0x11 scope:local align:4 data:string +@5103 = .rodata:0x8048D0A4; // type:object size:0x11 scope:local align:4 data:string +@5471 = .rodata:0x8048D0B8; // type:object size:0x10 scope:local align:4 data:string +@5642 = .rodata:0x8048D0C8; // type:object size:0x12 scope:local align:4 data:string +cSphereShadowRadius__Q34Game9SnakeCrow29@unnamed@SnakeCrowShadow_cpp@ = .rodata:0x8048D0E0; // type:object size:0x20 scope:local align:4 data:float +cTubeShadowRadius__Q34Game9SnakeCrow29@unnamed@SnakeCrowShadow_cpp@ = .rodata:0x8048D100; // type:object size:0x20 scope:local align:4 data:float +@3734 = .rodata:0x8048D120; // type:object size:0x9 scope:local align:4 data:string +@3735 = .rodata:0x8048D12C; // type:object size:0x9 scope:local align:4 data:string +@3736 = .rodata:0x8048D138; // type:object size:0x9 scope:local align:4 data:string +@3737 = .rodata:0x8048D144; // type:object size:0x9 scope:local align:4 data:string +@3738 = .rodata:0x8048D150; // type:object size:0x9 scope:local align:4 data:string +@3739 = .rodata:0x8048D15C; // type:object size:0x9 scope:local align:4 data:string +@3740 = .rodata:0x8048D168; // type:object size:0x9 scope:local align:4 data:string +@3741 = .rodata:0x8048D174; // type:object size:0x9 scope:local align:4 data:string +@3742 = .rodata:0x8048D180; // type:object size:0x20 scope:local align:4 data:4byte +cSphereShadowRadius__Q34Game10SnakeWhole30@unnamed@SnakeWholeShadow_cpp@ = .rodata:0x8048D1A0; // type:object size:0x24 scope:local align:4 data:float +cTubeShadowRadius__Q34Game10SnakeWhole30@unnamed@SnakeWholeShadow_cpp@ = .rodata:0x8048D1C4; // type:object size:0x24 scope:local align:4 data:float +@3734 = .rodata:0x8048D1E8; // type:object size:0xC scope:local align:4 data:string +@3735 = .rodata:0x8048D1F4; // type:object size:0xB scope:local align:4 data:string +@3736 = .rodata:0x8048D200; // type:object size:0xB scope:local align:4 data:string +@3737 = .rodata:0x8048D20C; // type:object size:0x9 scope:local align:4 data:string +@3738 = .rodata:0x8048D218; // type:object size:0x9 scope:local align:4 data:string +@3739 = .rodata:0x8048D224; // type:object size:0x9 scope:local align:4 data:string +@3740 = .rodata:0x8048D230; // type:object size:0x9 scope:local align:4 data:string +@3741 = .rodata:0x8048D23C; // type:object size:0x9 scope:local align:4 data:string +@3742 = .rodata:0x8048D248; // type:object size:0x9 scope:local align:4 data:string +@3743 = .rodata:0x8048D254; // type:object size:0x24 scope:local align:4 data:4byte +@3522 = .rodata:0x8048D278; // type:object size:0x2E scope:local align:4 data:string +@3530 = .rodata:0x8048D2A8; // type:object size:0x1F scope:local align:4 +@3769 = .rodata:0x8048D2C8; // type:object size:0x13 scope:local align:4 data:string +@3770 = .rodata:0x8048D2DC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048D2E8; // type:label scope:local +@3512 = .rodata:0x8048D2E8; // type:object size:0x12 scope:local align:4 data:string +@3513 = .rodata:0x8048D2FC; // type:object size:0x26 scope:local align:4 data:string +@3519 = .rodata:0x8048D324; // type:object size:0x15 scope:local align:4 +@3544 = .rodata:0x8048D33C; // type:object size:0xF scope:local align:4 data:string +@3545 = .rodata:0x8048D34C; // type:object size:0x13 scope:local align:4 +@3549 = .rodata:0x8048D360; // type:object size:0x15 scope:local align:4 +@3552 = .rodata:0x8048D378; // type:object size:0x17 scope:local align:4 +@3555 = .rodata:0x8048D390; // type:object size:0x11 scope:local align:4 +@3591 = .rodata:0x8048D3A4; // type:object size:0x13 scope:local align:4 data:string +@3592 = .rodata:0x8048D3B8; // type:object size:0x13 scope:local align:4 data:string +@3594 = .rodata:0x8048D3CC; // type:object size:0xF scope:local align:4 data:string +@3595 = .rodata:0x8048D3DC; // type:object size:0xE scope:local align:4 data:string +@3600 = .rodata:0x8048D3EC; // type:object size:0xD scope:local align:4 data:string +@3654 = .rodata:0x8048D3FC; // type:object size:0xD scope:local align:4 +@3657 = .rodata:0x8048D40C; // type:object size:0xD scope:local align:4 +@3658 = .rodata:0x8048D41C; // type:object size:0xB scope:local align:4 +@3659 = .rodata:0x8048D428; // type:object size:0xF scope:local align:4 +@3661 = .rodata:0x8048D438; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x8048D458; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048D46C; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x8048D480; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x8048D494; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x8048D4A8; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x8048D4B4; // type:object size:0xD scope:local align:4 +@3674 = .rodata:0x8048D4C4; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048D4D0; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048D4DC; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048D4F0; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048D4FC; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048D508; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048D514; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048D520; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048D52C; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x8048D540; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x8048D550; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048D55C; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048D56C; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048D57C; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x8048D58C; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x8048D59C; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048D5A8; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048D5B4; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x8048D5CC; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048D5DC; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8048D5EC; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048D5FC; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048D60C; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048D61C; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048D62C; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048D63C; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048D64C; // type:object size:0xF scope:local align:4 +@3771 = .rodata:0x8048D65C; // type:object size:0x12 scope:local align:4 data:string +@3772 = .rodata:0x8048D670; // type:object size:0x9 scope:local align:4 data:string +@4054 = .rodata:0x8048D680; // type:object size:0xB scope:local align:4 data:string +@5139 = .rodata:0x8048D68C; // type:object size:0x16 scope:local align:4 data:string +@5140 = .rodata:0x8048D6A4; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x8048D6B0; // type:object size:0x2D scope:local align:4 data:string +@3523 = .rodata:0x8048D6E0; // type:object size:0x19 scope:local align:4 +@3546 = .rodata:0x8048D6FC; // type:object size:0xF scope:local align:4 data:string +@3750 = .rodata:0x8048D70C; // type:object size:0x13 scope:local align:4 data:string +@3751 = .rodata:0x8048D720; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x8048D730; // type:object size:0x2C scope:local align:4 data:string +@3523 = .rodata:0x8048D75C; // type:object size:0x17 scope:local align:4 +@3750 = .rodata:0x8048D774; // type:object size:0x11 scope:local align:4 data:string +@3751 = .rodata:0x8048D788; // type:object size:0x9 scope:local align:4 data:string +@3515 = .rodata:0x8048D798; // type:object size:0x2D scope:local align:4 data:string +@3523 = .rodata:0x8048D7C8; // type:object size:0x15 scope:local align:4 +@3750 = .rodata:0x8048D7E0; // type:object size:0x11 scope:local align:4 data:string +@3751 = .rodata:0x8048D7F4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048D800; // type:label scope:local +@3514 = .rodata:0x8048D800; // type:object size:0x16 scope:local align:4 data:string +@3522 = .rodata:0x8048D818; // type:object size:0x1F scope:local align:4 +@3547 = .rodata:0x8048D838; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x8048D848; // type:object size:0x13 scope:local align:4 +@3552 = .rodata:0x8048D85C; // type:object size:0x13 scope:local align:4 +@3587 = .rodata:0x8048D870; // type:object size:0x13 scope:local align:4 data:string +@3588 = .rodata:0x8048D884; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x8048D898; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x8048D8A8; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x8048D8B8; // type:object size:0xD scope:local align:4 data:string +@3652 = .rodata:0x8048D8C8; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x8048D8D8; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x8048D8E8; // type:object size:0xB scope:local align:4 +@3657 = .rodata:0x8048D8F4; // type:object size:0xF scope:local align:4 +@3659 = .rodata:0x8048D904; // type:object size:0x1F scope:local align:4 +@3660 = .rodata:0x8048D924; // type:object size:0x13 scope:local align:4 +@3662 = .rodata:0x8048D938; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x8048D94C; // type:object size:0x12 scope:local align:4 +@3665 = .rodata:0x8048D960; // type:object size:0x11 scope:local align:4 +@3670 = .rodata:0x8048D974; // type:object size:0xB scope:local align:4 +@3671 = .rodata:0x8048D980; // type:object size:0xD scope:local align:4 +@3673 = .rodata:0x8048D990; // type:object size:0xB scope:local align:4 +@3675 = .rodata:0x8048D99C; // type:object size:0xB scope:local align:4 +@3677 = .rodata:0x8048D9A8; // type:object size:0x11 scope:local align:4 +@3679 = .rodata:0x8048D9BC; // type:object size:0x9 scope:local align:4 +@3681 = .rodata:0x8048D9C8; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x8048D9D4; // type:object size:0x9 scope:local align:4 +@3686 = .rodata:0x8048D9E0; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x8048D9EC; // type:object size:0xB scope:local align:4 +@3690 = .rodata:0x8048D9F8; // type:object size:0x11 scope:local align:4 +@3691 = .rodata:0x8048DA0C; // type:object size:0xD scope:local align:4 +@3692 = .rodata:0x8048DA1C; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x8048DA28; // type:object size:0xD scope:local align:4 +@3694 = .rodata:0x8048DA38; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x8048DA48; // type:object size:0xF scope:local align:4 +@3696 = .rodata:0x8048DA58; // type:object size:0xF scope:local align:4 +@3698 = .rodata:0x8048DA68; // type:object size:0x9 scope:local align:4 +@3700 = .rodata:0x8048DA74; // type:object size:0x9 scope:local align:4 +@3702 = .rodata:0x8048DA80; // type:object size:0x17 scope:local align:4 +@3703 = .rodata:0x8048DA98; // type:object size:0xD scope:local align:4 +@3705 = .rodata:0x8048DAA8; // type:object size:0xD scope:local align:4 +@3706 = .rodata:0x8048DAB8; // type:object size:0xF scope:local align:4 +@3707 = .rodata:0x8048DAC8; // type:object size:0xF scope:local align:4 +@3708 = .rodata:0x8048DAD8; // type:object size:0xF scope:local align:4 +@3709 = .rodata:0x8048DAE8; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x8048DAF8; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x8048DB08; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x8048DB18; // type:object size:0xF scope:local align:4 +@3522 = .rodata:0x8048DB28; // type:object size:0x1B scope:local align:4 +@3962 = .rodata:0x8048DB48; // type:object size:0xA scope:local align:4 data:string +@3963 = .rodata:0x8048DB54; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048DB60; // type:label scope:local +@3500 = .rodata:0x8048DB60; // type:object size:0x9 scope:local align:4 data:string +@3625 = .rodata:0x8048DB6C; // type:object size:0xD scope:local align:4 data:string +@3626 = .rodata:0x8048DB7C; // type:object size:0x19 scope:local align:4 data:string +@4039 = .rodata:0x8048DB98; // type:object size:0x12 scope:local align:4 data:string +@4050 = .rodata:0x8048DBAC; // type:object size:0x10 scope:local align:4 data:string +@4051 = .rodata:0x8048DBBC; // type:object size:0xB scope:local align:4 data:string +@4052 = .rodata:0x8048DBC8; // type:object size:0xB scope:local align:4 data:string +@4053 = .rodata:0x8048DBD4; // type:object size:0xB scope:local align:4 data:string +@4054 = .rodata:0x8048DBE0; // type:object size:0xB scope:local align:4 data:string +@4055 = .rodata:0x8048DBEC; // type:object size:0xB scope:local align:4 data:string +@4056 = .rodata:0x8048DBF8; // type:object size:0xB scope:local align:4 data:string +@4057 = .rodata:0x8048DC04; // type:object size:0xB scope:local align:4 data:string +@4058 = .rodata:0x8048DC10; // type:object size:0xB scope:local align:4 data:string +@4059 = .rodata:0x8048DC1C; // type:object size:0xB scope:local align:4 data:string +@4060 = .rodata:0x8048DC28; // type:object size:0xC scope:local align:4 data:string +@4061 = .rodata:0x8048DC34; // type:object size:0xC scope:local align:4 data:string +@4062 = .rodata:0x8048DC40; // type:object size:0xC scope:local align:4 data:string +@4063 = .rodata:0x8048DC4C; // type:object size:0xB scope:local align:4 data:string +@4064 = .rodata:0x8048DC58; // type:object size:0xB scope:local align:4 data:string +@4065 = .rodata:0x8048DC64; // type:object size:0xB scope:local align:4 data:string +@4066 = .rodata:0x8048DC70; // type:object size:0xA scope:local align:4 data:string +@4067 = .rodata:0x8048DC7C; // type:object size:0xA scope:local align:4 data:string +@4068 = .rodata:0x8048DC88; // type:object size:0xA scope:local align:4 data:string +@4103 = .rodata:0x8048DC94; // type:object size:0x1B scope:local align:4 data:string +@4104 = .rodata:0x8048DCB0; // type:object size:0x15 scope:local align:4 data:string +@4146 = .rodata:0x8048DCC8; // type:object size:0xA scope:local align:4 data:string +@4175 = .rodata:0x8048DCD4; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048DCF0; // type:label scope:local +@3500 = .rodata:0x8048DCF0; // type:object size:0xC scope:local align:4 data:string +@3532 = .rodata:0x8048DCFC; // type:object size:0x18 scope:local align:4 data:string +@3709 = .rodata:0x8048DD14; // type:object size:0x1A scope:local align:4 data:string +@3483 = .rodata:0x8048DD30; // type:object size:0x9 scope:local align:4 data:string +@3484 = .rodata:0x8048DD3C; // type:object size:0x9 scope:local align:4 data:string +@3485 = .rodata:0x8048DD48; // type:object size:0x9 scope:local align:4 data:string +@3486 = .rodata:0x8048DD54; // type:object size:0x9 scope:local align:4 data:string +@3487 = .rodata:0x8048DD60; // type:object size:0x9 scope:local align:4 data:string +@3488 = .rodata:0x8048DD6C; // type:object size:0x9 scope:local align:4 data:string +@3489 = .rodata:0x8048DD78; // type:object size:0x9 scope:local align:4 data:string +@3490 = .rodata:0x8048DD84; // type:object size:0x9 scope:local align:4 data:string +@3491 = .rodata:0x8048DD90; // type:object size:0x9 scope:local align:4 data:string +@3492 = .rodata:0x8048DD9C; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x8048DDA8; // type:object size:0x9 scope:local align:4 data:string +@3504 = .rodata:0x8048DDB4; // type:object size:0x9 scope:local align:4 data:string +@3505 = .rodata:0x8048DDC0; // type:object size:0x9 scope:local align:4 data:string +@3506 = .rodata:0x8048DDCC; // type:object size:0x9 scope:local align:4 data:string +@3507 = .rodata:0x8048DDD8; // type:object size:0x9 scope:local align:4 data:string +@3508 = .rodata:0x8048DDE4; // type:object size:0x9 scope:local align:4 data:string +@3509 = .rodata:0x8048DDF0; // type:object size:0x9 scope:local align:4 data:string +@3510 = .rodata:0x8048DDFC; // type:object size:0x9 scope:local align:4 data:string +@3511 = .rodata:0x8048DE08; // type:object size:0x9 scope:local align:4 data:string +@3512 = .rodata:0x8048DE14; // type:object size:0x9 scope:local align:4 data:string +@3513 = .rodata:0x8048DE20; // type:object size:0x9 scope:local align:4 data:string +@3539 = .rodata:0x8048DE2C; // type:object size:0xE scope:local align:4 data:string +@3540 = .rodata:0x8048DE3C; // type:object size:0x1B scope:local align:4 data:string +@3793 = .rodata:0x8048DE58; // type:object size:0x10 scope:local align:4 data:string +@3794 = .rodata:0x8048DE68; // type:object size:0x16 scope:local align:4 data:string +@3513 = .rodata:0x8048DE80; // type:object size:0xE scope:local align:4 data:string +@3515 = .rodata:0x8048DE90; // type:object size:0xE scope:local align:4 data:string +@3802 = .rodata:0x8048DEA0; // type:object size:0x15 scope:local align:4 data:string +@3803 = .rodata:0x8048DEB8; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048DED0; // type:label scope:local +@3743 = .rodata:0x8048DED0; // type:object size:0x9 scope:local align:4 data:string +@3744 = .rodata:0x8048DEDC; // type:object size:0x9 scope:local align:4 data:string +@3745 = .rodata:0x8048DEE8; // type:object size:0xA scope:local align:4 data:string +@3746 = .rodata:0x8048DEF4; // type:object size:0x24 scope:local align:4 data:string +@3727 = .rodata:0x8048DF18; // type:object size:0xC scope:local align:4 data:string +@3728 = .rodata:0x8048DF24; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048DF30; // type:label scope:local +@3702 = .rodata:0x8048DF30; // type:object size:0xE scope:local align:4 data:string +@3770 = .rodata:0x8048DF40; // type:object size:0x9 scope:local align:4 data:string +@3771 = .rodata:0x8048DF4C; // type:object size:0x9 scope:local align:4 data:string +@3772 = .rodata:0x8048DF58; // type:object size:0xA scope:local align:4 data:string +@3773 = .rodata:0x8048DF64; // type:object size:0x24 scope:local align:4 data:string +@3774 = .rodata:0x8048DF88; // type:object size:0xC scope:local align:4 data:string +@3778 = .rodata:0x8048DF94; // type:object size:0xA scope:local align:4 data:string +@3783 = .rodata:0x8048DFA0; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8048DFB0; // type:label scope:local +@3627 = .rodata:0x8048DFB0; // type:object size:0xC scope:local align:4 +@3660 = .rodata:0x8048DFBC; // type:object size:0x10 scope:local align:4 data:string +@3751 = .rodata:0x8048DFCC; // type:object size:0x1E scope:local align:4 +@3752 = .rodata:0x8048DFEC; // type:object size:0xE scope:local align:4 data:string +@3753 = .rodata:0x8048DFFC; // type:object size:0xB scope:local align:4 data:string +@3754 = .rodata:0x8048E008; // type:object size:0xA scope:local align:4 data:string +@3755 = .rodata:0x8048E014; // type:object size:0xE scope:local align:4 data:string +@3756 = .rodata:0x8048E024; // type:object size:0xB scope:local align:4 data:string +@3915 = .rodata:0x8048E030; // type:object size:0xC scope:local align:4 data:string +@3916 = .rodata:0x8048E03C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E048; // type:label scope:local +@3782 = .rodata:0x8048E048; // type:object size:0xC scope:local align:4 +@3823 = .rodata:0x8048E054; // type:object size:0x12 scope:local align:4 data:string +@3997 = .rodata:0x8048E068; // type:object size:0x27 scope:local align:4 data:string +@3998 = .rodata:0x8048E090; // type:object size:0x11 scope:local align:4 data:string +@3999 = .rodata:0x8048E0A4; // type:object size:0xF scope:local align:4 data:string +@4000 = .rodata:0x8048E0B4; // type:object size:0x12 scope:local align:4 data:string +@4001 = .rodata:0x8048E0C8; // type:object size:0xD scope:local align:4 data:string +@4068 = .rodata:0x8048E0D8; // type:object size:0x18 scope:local align:8 data:double +@4333 = .rodata:0x8048E0F0; // type:object size:0xD scope:local align:4 data:string +@4334 = .rodata:0x8048E100; // type:object size:0x17 scope:local align:4 data:string +@4385 = .rodata:0x8048E118; // type:object size:0x20 scope:local align:4 data:string +@4782 = .rodata:0x8048E138; // type:object size:0x11 scope:local align:4 data:string +@4783 = .rodata:0x8048E14C; // type:object size:0x11 scope:local align:4 data:string +@4784 = .rodata:0x8048E160; // type:object size:0x14 scope:local align:4 data:string +@4785 = .rodata:0x8048E174; // type:object size:0x14 scope:local align:4 data:string +@5269 = .rodata:0x8048E188; // type:object size:0xC scope:local align:4 data:string +@5270 = .rodata:0x8048E194; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E1A0; // type:label scope:local +@3780 = .rodata:0x8048E1A0; // type:object size:0xC scope:local align:4 +@3816 = .rodata:0x8048E1AC; // type:object size:0x14 scope:local align:4 data:string +@3861 = .rodata:0x8048E1C0; // type:object size:0x16 scope:local align:4 data:string +@3862 = .rodata:0x8048E1D8; // type:object size:0x2B scope:local align:4 data:string +@3863 = .rodata:0x8048E204; // type:object size:0x29 scope:local align:4 data:string +@3864 = .rodata:0x8048E230; // type:object size:0x2C scope:local align:4 data:string +@3865 = .rodata:0x8048E25C; // type:object size:0x27 scope:local align:4 data:string +@3867 = .rodata:0x8048E284; // type:object size:0xF scope:local align:4 data:string +@3868 = .rodata:0x8048E294; // type:object size:0x10 scope:local align:4 data:string +@3877 = .rodata:0x8048E2A4; // type:object size:0x10 scope:local align:4 data:string +@3914 = .rodata:0x8048E2B4; // type:object size:0x9 scope:local align:4 +@3916 = .rodata:0x8048E2C0; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E2D8; // type:label scope:local +@3638 = .rodata:0x8048E2D8; // type:object size:0x13 scope:local align:4 data:string +@3771 = .rodata:0x8048E2EC; // type:object size:0x12 scope:local align:4 data:string +@3772 = .rodata:0x8048E300; // type:object size:0x18 scope:local align:4 data:string +@3773 = .rodata:0x8048E318; // type:object size:0x16 scope:local align:4 data:string +@3778 = .rodata:0x8048E330; // type:object size:0x12 scope:local align:4 data:string +@3779 = .rodata:0x8048E344; // type:object size:0x15 scope:local align:4 data:string +@3780 = .rodata:0x8048E35C; // type:object size:0x15 scope:local align:4 data:string +@3781 = .rodata:0x8048E374; // type:object size:0x15 scope:local align:4 data:string +@3782 = .rodata:0x8048E38C; // type:object size:0x15 scope:local align:4 data:string +@3783 = .rodata:0x8048E3A4; // type:object size:0x16 scope:local align:4 data:string +@3785 = .rodata:0x8048E3BC; // type:object size:0x17 scope:local align:4 data:string +@3953 = .rodata:0x8048E3D4; // type:object size:0xC scope:local align:4 data:string +@3954 = .rodata:0x8048E3E0; // type:object size:0x9 scope:local align:4 data:string +@3572 = .rodata:0x8048E3F0; // type:object size:0x11 scope:local align:4 data:string +@3578 = .rodata:0x8048E404; // type:object size:0x14 scope:local align:4 data:string +@3674 = .rodata:0x8048E418; // type:object size:0x12 scope:local align:4 data:string +@3697 = .rodata:0x8048E42C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E448; // type:label scope:local +@3641 = .rodata:0x8048E448; // type:object size:0x14 scope:local align:4 data:string +@3737 = .rodata:0x8048E45C; // type:object size:0x13 scope:local align:4 data:string +@3740 = .rodata:0x8048E470; // type:object size:0x13 scope:local align:4 data:string +@3741 = .rodata:0x8048E484; // type:object size:0x16 scope:local align:4 data:string +@3742 = .rodata:0x8048E49C; // type:object size:0x16 scope:local align:4 data:string +@3743 = .rodata:0x8048E4B4; // type:object size:0x16 scope:local align:4 data:string +@3964 = .rodata:0x8048E4CC; // type:object size:0x13 scope:local align:4 data:string +@4404 = .rodata:0x8048E4E0; // type:object size:0xC scope:local align:4 data:string +@4405 = .rodata:0x8048E4EC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E4F8; // type:label scope:local +@3629 = .rodata:0x8048E4F8; // type:object size:0x13 scope:local align:4 data:string +@3696 = .rodata:0x8048E50C; // type:object size:0x18 scope:local align:4 data:string +@3728 = .rodata:0x8048E524; // type:object size:0xD scope:local align:4 data:string +@3739 = .rodata:0x8048E534; // type:object size:0x13 scope:local align:4 data:string +@3750 = .rodata:0x8048E548; // type:object size:0xA scope:local align:4 +@3835 = .rodata:0x8048E554; // type:object size:0x13 scope:local align:4 data:string +@3965 = .rodata:0x8048E568; // type:object size:0xD scope:local align:4 data:string +@4013 = .rodata:0x8048E578; // type:object size:0xE scope:local align:4 data:string +@4051 = .rodata:0x8048E588; // type:object size:0xC scope:local align:4 data:string +@4052 = .rodata:0x8048E594; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E5A0; // type:label scope:local +@3629 = .rodata:0x8048E5A0; // type:object size:0x14 scope:local align:4 data:string +@3670 = .rodata:0x8048E5B8; // type:object size:0x20 scope:local align:8 +@3722 = .rodata:0x8048E5D8; // type:object size:0x24 scope:local align:4 +@3904 = .rodata:0x8048E5FC; // type:object size:0xC scope:local align:4 data:string +@3905 = .rodata:0x8048E608; // type:object size:0x9 scope:local align:4 data:string +@3129 = .rodata:0x8048E618; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E630; // type:label scope:local +@2688 = .rodata:0x8048E630; // type:object size:0x16 scope:local align:4 data:string +@2689 = .rodata:0x8048E648; // type:object size:0x11 scope:local align:4 data:string +@2709 = .rodata:0x8048E65C; // type:object size:0xF scope:local align:4 data:string +@2710 = .rodata:0x8048E66C; // type:object size:0x10 scope:local align:4 data:string +@2723 = .rodata:0x8048E67C; // type:object size:0x13 scope:local align:4 data:string +@2724 = .rodata:0x8048E690; // type:object size:0x16 scope:local align:4 data:string +@2725 = .rodata:0x8048E6A8; // type:object size:0x16 scope:local align:4 data:string +@2726 = .rodata:0x8048E6C0; // type:object size:0x16 scope:local align:4 data:string +@2727 = .rodata:0x8048E6D8; // type:object size:0x16 scope:local align:4 data:string +@2728 = .rodata:0x8048E6F0; // type:object size:0x12 scope:local align:4 data:string +@2729 = .rodata:0x8048E704; // type:object size:0x12 scope:local align:4 data:string +@2730 = .rodata:0x8048E718; // type:object size:0x12 scope:local align:4 data:string +@2731 = .rodata:0x8048E72C; // type:object size:0x12 scope:local align:4 data:string +@2732 = .rodata:0x8048E740; // type:object size:0x12 scope:local align:4 data:string +@2733 = .rodata:0x8048E754; // type:object size:0x12 scope:local align:4 data:string +@2734 = .rodata:0x8048E768; // type:object size:0x12 scope:local align:4 data:string +@2735 = .rodata:0x8048E77C; // type:object size:0x12 scope:local align:4 data:string +@2736 = .rodata:0x8048E790; // type:object size:0x12 scope:local align:4 data:string +@2737 = .rodata:0x8048E7A4; // type:object size:0x12 scope:local align:4 data:string +@2738 = .rodata:0x8048E7B8; // type:object size:0x12 scope:local align:4 data:string +@2739 = .rodata:0x8048E7CC; // type:object size:0x12 scope:local align:4 data:string +@2740 = .rodata:0x8048E7E0; // type:object size:0x12 scope:local align:4 data:string +@2741 = .rodata:0x8048E7F4; // type:object size:0x12 scope:local align:4 data:string +@2742 = .rodata:0x8048E808; // type:object size:0x12 scope:local align:4 data:string +@2743 = .rodata:0x8048E81C; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E830; // type:label scope:local +@3655 = .rodata:0x8048E830; // type:object size:0x10 scope:local align:4 data:string +@3720 = .rodata:0x8048E840; // type:object size:0x18 scope:local align:8 +@3803 = .rodata:0x8048E858; // type:object size:0x20 scope:local align:4 +@3804 = .rodata:0x8048E878; // type:object size:0xE scope:local align:4 data:string +@3805 = .rodata:0x8048E888; // type:object size:0x1A scope:local align:4 data:string +@3806 = .rodata:0x8048E8A4; // type:object size:0x16 scope:local align:4 data:string +@3807 = .rodata:0x8048E8BC; // type:object size:0x17 scope:local align:4 data:string +@3808 = .rodata:0x8048E8D4; // type:object size:0x1B scope:local align:4 data:string +@3809 = .rodata:0x8048E8F0; // type:object size:0x11 scope:local align:4 data:string +@3821 = .rodata:0x8048E904; // type:object size:0x9 scope:local align:4 data:string +@3822 = .rodata:0x8048E910; // type:object size:0x9 scope:local align:4 data:string +@4103 = .rodata:0x8048E91C; // type:object size:0xA scope:local align:4 data:string +@4104 = .rodata:0x8048E928; // type:object size:0x24 scope:local align:4 data:string +@4200 = .rodata:0x8048E94C; // type:object size:0xC scope:local align:4 data:string +@3539 = .rodata:0x8048E958; // type:object size:0xE scope:local align:4 data:string +@3541 = .rodata:0x8048E968; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x8048E978; // type:label scope:local +@3629 = .rodata:0x8048E978; // type:object size:0x15 scope:local align:4 data:string +@3683 = .rodata:0x8048E990; // type:object size:0x1E scope:local align:4 +@3684 = .rodata:0x8048E9B0; // type:object size:0x12 scope:local align:4 data:string +@3756 = .rodata:0x8048E9C4; // type:object size:0x9 scope:local align:4 data:string +@3757 = .rodata:0x8048E9D0; // type:object size:0x9 scope:local align:4 data:string +@3758 = .rodata:0x8048E9DC; // type:object size:0xA scope:local align:4 data:string +@3759 = .rodata:0x8048E9E8; // type:object size:0x24 scope:local align:4 data:string +@3804 = .rodata:0x8048EA0C; // type:object size:0xC scope:local align:4 data:string +@2679 = .rodata:0x8048EA18; // type:object size:0x14 scope:local align:4 data:string +@2690 = .rodata:0x8048EA2C; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EA48; // type:label scope:local +@3647 = .rodata:0x8048EA48; // type:object size:0xF scope:local align:4 data:string +@4059 = .rodata:0x8048EA58; // type:object size:0x1F scope:local align:4 +@4060 = .rodata:0x8048EA78; // type:object size:0xF scope:local align:4 data:string +@4061 = .rodata:0x8048EA88; // type:object size:0x17 scope:local align:4 data:string +@4062 = .rodata:0x8048EAA0; // type:object size:0xE scope:local align:4 data:string +@4063 = .rodata:0x8048EAB0; // type:object size:0x19 scope:local align:4 data:string +@4066 = .rodata:0x8048EACC; // type:object size:0x19 scope:local align:4 data:string +@4067 = .rodata:0x8048EAE8; // type:object size:0x1C scope:local align:4 data:string +@4382 = .rodata:0x8048EB04; // type:object size:0xC scope:local align:4 data:string +@4383 = .rodata:0x8048EB10; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EB20; // type:label scope:local +@3531 = .rodata:0x8048EB20; // type:object size:0x11 scope:local align:4 data:string +@3572 = .rodata:0x8048EB34; // type:object size:0x17 scope:local align:4 data:string +@3573 = .rodata:0x8048EB4C; // type:object size:0x1B scope:local align:4 data:string +@3574 = .rodata:0x8048EB68; // type:object size:0xF scope:local align:4 data:string +@3575 = .rodata:0x8048EB78; // type:object size:0x10 scope:local align:4 data:string +@3576 = .rodata:0x8048EB88; // type:object size:0xD scope:local align:4 data:string +@3577 = .rodata:0x8048EB98; // type:object size:0x1B scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EBB8; // type:label scope:local +@3620 = .rodata:0x8048EBB8; // type:object size:0xC scope:local align:4 +@3653 = .rodata:0x8048EBC4; // type:object size:0xE scope:local align:4 data:string +@3756 = .rodata:0x8048EBD4; // type:object size:0x1E scope:local align:4 +@3757 = .rodata:0x8048EBF4; // type:object size:0xB scope:local align:4 data:string +@3758 = .rodata:0x8048EC00; // type:object size:0xA scope:local align:4 data:string +@3759 = .rodata:0x8048EC0C; // type:object size:0x10 scope:local align:4 data:string +@3760 = .rodata:0x8048EC1C; // type:object size:0x14 scope:local align:4 data:string +@3761 = .rodata:0x8048EC30; // type:object size:0xB scope:local align:4 data:string +@3962 = .rodata:0x8048EC3C; // type:object size:0xC scope:local align:4 data:string +@3963 = .rodata:0x8048EC48; // type:object size:0x9 scope:local align:4 data:string +@3539 = .rodata:0x8048EC58; // type:object size:0xC scope:local align:4 data:string +@3541 = .rodata:0x8048EC64; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EC78; // type:label scope:local +@3827 = .rodata:0x8048EC78; // type:object size:0x11 scope:local align:4 data:string +@4130 = .rodata:0x8048EC8C; // type:object size:0x21 scope:local align:4 +@4131 = .rodata:0x8048ECB0; // type:object size:0xD scope:local align:4 data:string +@4132 = .rodata:0x8048ECC0; // type:object size:0x14 scope:local align:4 data:string +@4133 = .rodata:0x8048ECD4; // type:object size:0x10 scope:local align:4 data:string +@4137 = .rodata:0x8048ECE4; // type:object size:0xD scope:local align:4 data:string +@4139 = .rodata:0x8048ECF4; // type:object size:0x10 scope:local align:4 data:string +@4140 = .rodata:0x8048ED04; // type:object size:0x10 scope:local align:4 data:string +@4363 = .rodata:0x8048ED14; // type:object size:0xA scope:local align:4 +@4402 = .rodata:0x8048ED20; // type:object size:0xC scope:local align:4 data:string +@4403 = .rodata:0x8048ED2C; // type:object size:0x9 scope:local align:4 data:string +@3713 = .rodata:0x8048ED38; // type:object size:0x13 scope:local align:4 data:string +@3728 = .rodata:0x8048ED4C; // type:object size:0x1E scope:local align:4 +@3751 = .rodata:0x8048ED6C; // type:object size:0x10 scope:local align:4 data:string +@3753 = .rodata:0x8048ED7C; // type:object size:0x11 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048ED90; // type:label scope:local +@3665 = .rodata:0x8048ED90; // type:object size:0x15 scope:local align:4 data:string +@3844 = .rodata:0x8048EDA8; // type:object size:0x25 scope:local align:4 +@3845 = .rodata:0x8048EDD0; // type:object size:0x11 scope:local align:4 data:string +@3846 = .rodata:0x8048EDE4; // type:object size:0x11 scope:local align:4 data:string +@3847 = .rodata:0x8048EDF8; // type:object size:0x16 scope:local align:4 data:string +@4061 = .rodata:0x8048EE10; // type:object size:0xC scope:local align:4 data:string +@4062 = .rodata:0x8048EE1C; // type:object size:0x9 scope:local align:4 data:string +@3574 = .rodata:0x8048EE28; // type:object size:0x13 scope:local align:4 data:string +@3590 = .rodata:0x8048EE3C; // type:object size:0x14 scope:local align:4 data:string +@3591 = .rodata:0x8048EE50; // type:object size:0x14 scope:local align:4 data:string +@3593 = .rodata:0x8048EE64; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048EE80; // type:label scope:local +@3640 = .rodata:0x8048EE80; // type:object size:0x11 scope:local align:4 data:string +@3907 = .rodata:0x8048EE94; // type:object size:0x1A scope:local align:4 data:string +@3908 = .rodata:0x8048EEB0; // type:object size:0x21 scope:local align:4 +@3909 = .rodata:0x8048EED4; // type:object size:0xE scope:local align:4 data:string +@3910 = .rodata:0x8048EEE4; // type:object size:0xE scope:local align:4 data:string +@3911 = .rodata:0x8048EEF4; // type:object size:0xE scope:local align:4 data:string +@3912 = .rodata:0x8048EF04; // type:object size:0xF scope:local align:4 data:string +@3913 = .rodata:0x8048EF14; // type:object size:0xE scope:local align:4 data:string +@3914 = .rodata:0x8048EF24; // type:object size:0x1C scope:local align:4 data:string +@3915 = .rodata:0x8048EF40; // type:object size:0xC scope:local align:4 data:string +@3916 = .rodata:0x8048EF4C; // type:object size:0x9 scope:local align:4 data:string +@4128 = .rodata:0x8048EF58; // type:object size:0x1B scope:local align:4 data:string +@4129 = .rodata:0x8048EF74; // type:object size:0x15 scope:local align:4 data:string +@4369 = .rodata:0x8048EF8C; // type:object size:0xA scope:local align:4 +@4370 = .rodata:0x8048EF98; // type:object size:0x19 scope:local align:4 data:string +@4371 = .rodata:0x8048EFB4; // type:object size:0x14 scope:local align:4 data:string +@4385 = .rodata:0x8048EFC8; // type:object size:0xC scope:local align:4 data:string +@4386 = .rodata:0x8048EFD4; // type:object size:0x9 scope:local align:4 data:string +@3541 = .rodata:0x8048EFE0; // type:object size:0xF scope:local align:4 data:string +@3543 = .rodata:0x8048EFF0; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F000; // type:label scope:local +@3641 = .rodata:0x8048F000; // type:object size:0x1B scope:local align:4 data:string +@3715 = .rodata:0x8048F01C; // type:object size:0x1B scope:local align:4 data:string +@3718 = .rodata:0x8048F038; // type:object size:0x1B scope:local align:4 data:string +@3719 = .rodata:0x8048F054; // type:object size:0x1E scope:local align:4 data:string +@3720 = .rodata:0x8048F074; // type:object size:0x1E scope:local align:4 data:string +@3721 = .rodata:0x8048F094; // type:object size:0x1E scope:local align:4 data:string +@3788 = .rodata:0x8048F0B4; // type:object size:0x13 scope:local align:4 data:string +@3981 = .rodata:0x8048F0C8; // type:object size:0xC scope:local align:4 data:string +@3982 = .rodata:0x8048F0D4; // type:object size:0x9 scope:local align:4 data:string +@3674 = .rodata:0x8048F0E0; // type:object size:0x19 scope:local align:4 data:string +@3709 = .rodata:0x8048F0FC; // type:object size:0x1D scope:local align:4 data:string +@3635 = .rodata:0x8048F120; // type:object size:0xD scope:local align:4 data:string +@3707 = .rodata:0x8048F130; // type:object size:0x14 scope:local align:4 data:string +@3711 = .rodata:0x8048F144; // type:object size:0x14 scope:local align:4 data:string +@3811 = .rodata:0x8048F158; // type:object size:0xA scope:local align:4 +@3519 = .rodata:0x8048F168; // type:object size:0x10 scope:local align:4 data:string +@3537 = .rodata:0x8048F178; // type:object size:0xC scope:local align:4 data:string +@3829 = .rodata:0x8048F188; // type:object size:0xE scope:local align:4 data:string +@3857 = .rodata:0x8048F198; // type:object size:0x1E scope:local align:4 +@3754 = .rodata:0x8048F1B8; // type:object size:0xA scope:local align:4 data:string +@3689 = .rodata:0x8048F1C8; // type:object size:0x10 scope:local align:4 data:string +@3539 = .rodata:0x8048F1D8; // type:object size:0x17 scope:local align:4 data:string +@3548 = .rodata:0x8048F1F0; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F208; // type:label scope:local +@3665 = .rodata:0x8048F208; // type:object size:0xC scope:local align:4 data:string +@3825 = .rodata:0x8048F214; // type:object size:0x1C scope:local align:4 +@3826 = .rodata:0x8048F230; // type:object size:0x11 scope:local align:4 data:string +@3827 = .rodata:0x8048F244; // type:object size:0x11 scope:local align:4 data:string +@3828 = .rodata:0x8048F258; // type:object size:0xB scope:local align:4 data:string +@3829 = .rodata:0x8048F264; // type:object size:0xF scope:local align:4 data:string +@4696 = .rodata:0x8048F274; // type:object size:0x9 scope:local align:4 data:string +@4699 = .rodata:0x8048F280; // type:object size:0x13 scope:local align:4 data:string +@4709 = .rodata:0x8048F294; // type:object size:0xC scope:local align:4 data:string +@4710 = .rodata:0x8048F2A0; // type:object size:0x9 scope:local align:4 data:string +@3539 = .rodata:0x8048F2B0; // type:object size:0xA scope:local align:4 data:string +@3541 = .rodata:0x8048F2BC; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F2C8; // type:label scope:local +@3623 = .rodata:0x8048F2C8; // type:object size:0xC scope:local align:4 +@3656 = .rodata:0x8048F2D4; // type:object size:0x15 scope:local align:4 data:string +@3806 = .rodata:0x8048F2EC; // type:object size:0x25 scope:local align:4 +@3807 = .rodata:0x8048F314; // type:object size:0xB scope:local align:4 data:string +@3808 = .rodata:0x8048F320; // type:object size:0xA scope:local align:4 data:string +@3809 = .rodata:0x8048F32C; // type:object size:0x10 scope:local align:4 data:string +@3810 = .rodata:0x8048F33C; // type:object size:0x16 scope:local align:4 data:string +@4050 = .rodata:0x8048F354; // type:object size:0xC scope:local align:4 data:string +@4051 = .rodata:0x8048F360; // type:object size:0x9 scope:local align:4 data:string +@3560 = .rodata:0x8048F370; // type:object size:0x13 scope:local align:4 data:string +@3576 = .rodata:0x8048F384; // type:object size:0x12 scope:local align:4 data:string +@3578 = .rodata:0x8048F398; // type:object size:0x15 scope:local align:4 data:string +@3701 = .rodata:0x8048F3B0; // type:object size:0x10 scope:local align:4 data:string +@3662 = .rodata:0x8048F3C0; // type:object size:0x14 scope:local align:4 data:string +@3693 = .rodata:0x8048F3D4; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F3F0; // type:label scope:local +@3517 = .rodata:0x8048F3F0; // type:object size:0xD scope:local align:4 data:string +@3518 = .rodata:0x8048F400; // type:object size:0xC scope:local align:4 data:string +@3609 = .rodata:0x8048F40C; // type:object size:0x9 scope:local align:4 data:string +@3621 = .rodata:0x8048F418; // type:object size:0x12 scope:local align:4 data:string +@3728 = .rodata:0x8048F42C; // type:object size:0x1B scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F448; // type:label scope:local +@3635 = .rodata:0x8048F448; // type:object size:0x1D scope:local align:4 data:string +@3641 = .rodata:0x8048F468; // type:object size:0x14 scope:local align:4 data:string +@3691 = .rodata:0x8048F47C; // type:object size:0x9 scope:local align:4 data:string +@3692 = .rodata:0x8048F488; // type:object size:0x10 scope:local align:4 data:string +@3748 = .rodata:0x8048F498; // type:object size:0xC scope:local align:4 data:string +@3657 = .rodata:0x8048F4A8; // type:object size:0x1B scope:local align:4 data:string +@3670 = .rodata:0x8048F4C4; // type:object size:0x1F scope:local align:4 data:string +@3641 = .rodata:0x8048F4E8; // type:object size:0x14 scope:local align:4 data:string +@3678 = .rodata:0x8048F4FC; // type:object size:0x10 scope:local align:4 data:string +@3657 = .rodata:0x8048F510; // type:object size:0x1B scope:local align:4 data:string +@3670 = .rodata:0x8048F52C; // type:object size:0x1F scope:local align:4 data:string +@3615 = .rodata:0x8048F550; // type:object size:0x15 scope:local align:4 data:string +@3616 = .rodata:0x8048F568; // type:object size:0x15 scope:local align:4 data:string +@3645 = .rodata:0x8048F580; // type:object size:0x18 scope:local align:4 data:string +@3646 = .rodata:0x8048F598; // type:object size:0x18 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F5B0; // type:label scope:local +@3649 = .rodata:0x8048F5B0; // type:object size:0x10 scope:local align:4 data:string +@3681 = .rodata:0x8048F5C0; // type:object size:0x14 scope:local align:4 data:string +@3682 = .rodata:0x8048F5D4; // type:object size:0xC scope:local align:4 data:string +@3818 = .rodata:0x8048F5E0; // type:object size:0x9 scope:local align:4 data:string +@3819 = .rodata:0x8048F5EC; // type:object size:0x9 scope:local align:4 data:string +@3820 = .rodata:0x8048F5F8; // type:object size:0xA scope:local align:4 data:string +@3821 = .rodata:0x8048F604; // type:object size:0x24 scope:local align:4 data:string +@3822 = .rodata:0x8048F628; // type:object size:0x13 scope:local align:4 data:string +@3572 = .rodata:0x8048F640; // type:object size:0x11 scope:local align:4 data:string +@3578 = .rodata:0x8048F654; // type:object size:0x1A scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F670; // type:label scope:local +@3637 = .rodata:0x8048F670; // type:object size:0x13 scope:local align:4 data:string +@3682 = .rodata:0x8048F684; // type:object size:0x16 scope:local align:4 data:string +@3683 = .rodata:0x8048F69C; // type:object size:0x16 scope:local align:4 data:string +@3684 = .rodata:0x8048F6B4; // type:object size:0x19 scope:local align:4 data:string +@3827 = .rodata:0x8048F6D0; // type:object size:0xC scope:local align:4 data:string +@3828 = .rodata:0x8048F6DC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F6E8; // type:label scope:local +@2844 = .rodata:0x8048F6E8; // type:object size:0xA scope:local align:4 data:string +@2845 = .rodata:0x8048F6F4; // type:object size:0x9 scope:local align:4 data:string +@2846 = .rodata:0x8048F700; // type:object size:0xA scope:local align:4 data:string +@2847 = .rodata:0x8048F70C; // type:object size:0x18 scope:local align:4 data:string +@2893 = .rodata:0x8048F724; // type:object size:0x1E scope:local align:4 data:string +@3024 = .rodata:0x8048F744; // type:object size:0x2F scope:local align:4 data:string +@3142 = .rodata:0x8048F774; // type:object size:0xD scope:local align:4 data:string +@3250 = .rodata:0x8048F784; // type:object size:0xF scope:local align:4 data:string +@3264 = .rodata:0x8048F794; // type:object size:0xD scope:local align:4 data:string +@3504 = .rodata:0x8048F7A4; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8048F7B8; // type:label scope:local +@3033 = .rodata:0x8048F7B8; // type:object size:0xB scope:local align:4 data:string +@3034 = .rodata:0x8048F7C4; // type:object size:0x9 scope:local align:4 data:string +@3035 = .rodata:0x8048F7D0; // type:object size:0xA scope:local align:4 data:string +@3129 = .rodata:0x8048F7DC; // type:object size:0x9 scope:local align:4 data:string +@3130 = .rodata:0x8048F7E8; // type:object size:0xD scope:local align:4 data:string +@3131 = .rodata:0x8048F7F8; // type:object size:0xA scope:local align:4 data:string +@3134 = .rodata:0x8048F804; // type:object size:0xA scope:local align:4 data:string +@3135 = .rodata:0x8048F810; // type:object size:0xE scope:local align:4 data:string +@3136 = .rodata:0x8048F820; // type:object size:0xB scope:local align:4 data:string +@3137 = .rodata:0x8048F82C; // type:object size:0x9 scope:local align:4 data:string +@3138 = .rodata:0x8048F838; // type:object size:0xD scope:local align:4 data:string +@3139 = .rodata:0x8048F848; // type:object size:0xA scope:local align:4 data:string +@3142 = .rodata:0x8048F854; // type:object size:0x9 scope:local align:4 data:string +@3143 = .rodata:0x8048F860; // type:object size:0xD scope:local align:4 data:string +@3144 = .rodata:0x8048F870; // type:object size:0xA scope:local align:4 data:string +@3145 = .rodata:0x8048F87C; // type:object size:0xE scope:local align:4 data:string +@3146 = .rodata:0x8048F88C; // type:object size:0xC scope:local align:4 data:string +@3147 = .rodata:0x8048F898; // type:object size:0x10 scope:local align:4 data:string +@3148 = .rodata:0x8048F8A8; // type:object size:0xA scope:local align:4 data:string +@3149 = .rodata:0x8048F8B4; // type:object size:0xE scope:local align:4 data:string +@3288 = .rodata:0x8048F8C4; // type:object size:0xA scope:local align:4 data:string +@3289 = .rodata:0x8048F8D0; // type:object size:0x18 scope:local align:4 +@3387 = .rodata:0x8048F8E8; // type:object size:0xC scope:local align:4 data:string +@3388 = .rodata:0x8048F8F4; // type:object size:0x18 scope:local align:4 data:string +@3389 = .rodata:0x8048F90C; // type:object size:0xD scope:local align:4 data:string +@3390 = .rodata:0x8048F91C; // type:object size:0x12 scope:local align:4 data:string +@3391 = .rodata:0x8048F930; // type:object size:0xB scope:local align:4 data:string +@3405 = .rodata:0x8048F93C; // type:object size:0xB scope:local align:4 data:string +@3440 = .rodata:0x8048F948; // type:object size:0x9 scope:local align:4 data:string +@3473 = .rodata:0x8048F954; // type:object size:0x10 scope:local align:4 +@3514 = .rodata:0x8048F964; // type:object size:0xB scope:local align:4 data:string +@3515 = .rodata:0x8048F970; // type:object size:0xB scope:local align:4 data:string +@3527 = .rodata:0x8048F97C; // type:object size:0x10 scope:local align:4 +@3529 = .rodata:0x8048F98C; // type:object size:0x10 scope:local align:4 +@3615 = .rodata:0x8048F99C; // type:object size:0x28 scope:local align:4 +@3616 = .rodata:0x8048F9C4; // type:object size:0x1C scope:local align:4 data:string +@3617 = .rodata:0x8048F9E0; // type:object size:0x19 scope:local align:4 data:string +@3756 = .rodata:0x8048F9FC; // type:object size:0xF scope:local align:4 +@3757 = .rodata:0x8048FA0C; // type:object size:0xA scope:local align:4 data:string +@3758 = .rodata:0x8048FA18; // type:object size:0x22 scope:local align:4 +@3785 = .rodata:0x8048FA3C; // type:object size:0x10 scope:local align:4 +@3807 = .rodata:0x8048FA4C; // type:object size:0x10 scope:local align:4 +@3889 = .rodata:0x8048FA5C; // type:object size:0xC scope:local align:4 data:string +@3890 = .rodata:0x8048FA68; // type:object size:0x16 scope:local align:4 data:string +@3891 = .rodata:0x8048FA80; // type:object size:0xF scope:local align:4 data:string +@3892 = .rodata:0x8048FA90; // type:object size:0xF scope:local align:4 data:string +@3893 = .rodata:0x8048FAA0; // type:object size:0xE scope:local align:4 data:string +@3897 = .rodata:0x8048FAB0; // type:object size:0x10 scope:local align:4 +@4232 = .rodata:0x8048FAC0; // type:object size:0x22 scope:local align:4 data:string +@4233 = .rodata:0x8048FAE4; // type:object size:0xD scope:local align:4 data:string +@4234 = .rodata:0x8048FAF4; // type:object size:0x12 scope:local align:4 data:string +@4235 = .rodata:0x8048FB08; // type:object size:0xE scope:local align:4 data:string +@4236 = .rodata:0x8048FB18; // type:object size:0xD scope:local align:4 data:string +@4237 = .rodata:0x8048FB28; // type:object size:0x22 scope:local align:4 data:string +@4238 = .rodata:0x8048FB4C; // type:object size:0x20 scope:local align:4 data:string +@4239 = .rodata:0x8048FB6C; // type:object size:0x23 scope:local align:4 data:string +@4240 = .rodata:0x8048FB90; // type:object size:0x1E scope:local align:4 data:string +@4241 = .rodata:0x8048FBB0; // type:object size:0x21 scope:local align:4 data:string +@4242 = .rodata:0x8048FBD4; // type:object size:0xC scope:local align:4 data:string +@4243 = .rodata:0x8048FBE0; // type:object size:0xF scope:local align:4 data:string +@4244 = .rodata:0x8048FBF0; // type:object size:0xB scope:local align:4 data:string +@4245 = .rodata:0x8048FBFC; // type:object size:0xE scope:local align:4 data:string +@4246 = .rodata:0x8048FC0C; // type:object size:0x9 scope:local align:4 data:string +@4247 = .rodata:0x8048FC18; // type:object size:0xD scope:local align:4 data:string +@4248 = .rodata:0x8048FC28; // type:object size:0x13 scope:local align:4 data:string +@4249 = .rodata:0x8048FC3C; // type:object size:0xB scope:local align:4 data:string +@4250 = .rodata:0x8048FC48; // type:object size:0x9 scope:local align:4 data:string +@4251 = .rodata:0x8048FC54; // type:object size:0x10 scope:local align:4 data:string +@4252 = .rodata:0x8048FC64; // type:object size:0xD scope:local align:4 data:string +@4301 = .rodata:0x8048FC74; // type:object size:0xE scope:local align:4 data:string +@4302 = .rodata:0x8048FC84; // type:object size:0xF scope:local align:4 data:string +@4303 = .rodata:0x8048FC94; // type:object size:0x10 scope:local align:4 data:string +@4617 = .rodata:0x8048FCA4; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FCC8; // type:label scope:local +@2929 = .rodata:0x8048FCC8; // type:object size:0xF scope:local align:4 data:string +@2930 = .rodata:0x8048FCD8; // type:object size:0x9 scope:local align:4 data:string +@2959 = .rodata:0x8048FCE4; // type:object size:0x9 scope:local align:4 data:string +@3135 = .rodata:0x8048FCF0; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FD00; // type:label scope:local +@3166 = .rodata:0x8048FD00; // type:object size:0xE scope:local align:4 data:string +@3167 = .rodata:0x8048FD10; // type:object size:0x9 scope:local align:4 data:string +@3596 = .rodata:0x8048FD1C; // type:object size:0x55 scope:local align:4 +@4979 = .rodata:0x8048FD74; // type:object size:0xC scope:local align:4 data:string +@5228 = .rodata:0x8048FD80; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FD90; // type:label scope:local +@2793 = .rodata:0x8048FD90; // type:object size:0xD scope:local align:4 data:string +@2794 = .rodata:0x8048FDA0; // type:object size:0x9 scope:local align:4 data:string +@3031 = .rodata:0x8048FDAC; // type:object size:0x10 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FDC0; // type:label scope:local +@2972 = .rodata:0x8048FDC0; // type:object size:0xF scope:local align:4 data:string +@2973 = .rodata:0x8048FDD0; // type:object size:0x9 scope:local align:4 data:string +@2987 = .rodata:0x8048FDDC; // type:object size:0xD scope:local align:4 data:string +sTable__Q28PSSystem20TriangleTableModTask = .rodata:0x8048FDF0; // type:object size:0xA0 scope:global align:4 +@2843 = .rodata:0x8048FE90; // type:object size:0xE scope:local align:4 data:string +@2844 = .rodata:0x8048FEA0; // type:object size:0x9 scope:local align:4 data:string +@2926 = .rodata:0x8048FEB0; // type:object size:0x1B scope:local align:4 data:string +@2927 = .rodata:0x8048FECC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FED8; // type:label scope:local +@2896 = .rodata:0x8048FED8; // type:object size:0x11 scope:local align:4 +@2897 = .rodata:0x8048FEEC; // type:object size:0xD scope:local align:4 +@2898 = .rodata:0x8048FEFC; // type:object size:0xF scope:local align:4 +@2899 = .rodata:0x8048FF0C; // type:object size:0x17 scope:local align:4 +@2900 = .rodata:0x8048FF24; // type:object size:0x1F scope:local align:4 +@2901 = .rodata:0x8048FF44; // type:object size:0xD scope:local align:4 +@2902 = .rodata:0x8048FF54; // type:object size:0x13 scope:local align:4 +@2904 = .rodata:0x8048FF68; // type:object size:0x9 scope:local align:4 data:string +@2905 = .rodata:0x8048FF74; // type:object size:0x9 scope:local align:4 data:string +@3433 = .rodata:0x8048FF80; // type:object size:0xB scope:local align:4 data:string +@3434 = .rodata:0x8048FF8C; // type:object size:0x13 scope:local align:4 +@2835 = .rodata:0x8048FFA0; // type:object size:0xD scope:local align:4 data:string +@2836 = .rodata:0x8048FFB0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8048FFC0; // type:label scope:local +@2843 = .rodata:0x8048FFC0; // type:object size:0xC scope:local align:4 data:string +@2844 = .rodata:0x8048FFCC; // type:object size:0x9 scope:local align:4 data:string +@3028 = .rodata:0x8048FFD8; // type:object size:0xA scope:local align:4 data:string +@3210 = .rodata:0x8048FFE4; // type:object size:0xD scope:local align:4 data:string +@2965 = .rodata:0x8048FFF8; // type:object size:0xC scope:local align:4 data:string +@2966 = .rodata:0x80490004; // type:object size:0x9 scope:local align:4 data:string +@3193 = .rodata:0x80490010; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80490020; // type:label scope:local +@2811 = .rodata:0x80490020; // type:object size:0xF scope:local align:4 data:string +@2812 = .rodata:0x80490030; // type:object size:0x9 scope:local align:4 data:string +@2885 = .rodata:0x8049003C; // type:object size:0x1E scope:local align:4 data:string +@3073 = .rodata:0x8049005C; // type:object size:0x17 scope:local align:4 +@3142 = .rodata:0x80490074; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80490088; // type:label scope:local +@3521 = .rodata:0x80490088; // type:object size:0xC scope:local align:4 data:string +@3528 = .rodata:0x80490094; // type:object size:0xC scope:local align:4 data:string +@3622 = .rodata:0x804900A0; // type:object size:0xA scope:local align:4 data:string +@3623 = .rodata:0x804900AC; // type:object size:0x10 scope:local align:4 data:string +@3624 = .rodata:0x804900BC; // type:object size:0x9 scope:local align:4 data:string +@4034 = .rodata:0x804900C8; // type:object size:0x12 scope:local align:4 data:string +@4061 = .rodata:0x804900DC; // type:object size:0x14 scope:local align:4 data:string +@4088 = .rodata:0x804900F0; // type:object size:0x14 scope:local align:4 data:string +@4163 = .rodata:0x80490104; // type:object size:0xF scope:local align:4 data:string +@4192 = .rodata:0x80490114; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80490120; // type:label scope:local +@3608 = .rodata:0x80490120; // type:object size:0xC scope:local align:4 +@3855 = .rodata:0x8049012C; // type:object size:0xA scope:local align:4 data:string +@3893 = .rodata:0x80490138; // type:object size:0xA scope:local align:4 data:string +@3979 = .rodata:0x80490144; // type:object size:0x9 scope:local align:4 data:string +@3980 = .rodata:0x80490150; // type:object size:0xE scope:local align:4 data:string +@3981 = .rodata:0x80490160; // type:object size:0x9 scope:local align:4 data:string +@3982 = .rodata:0x8049016C; // type:object size:0xB scope:local align:4 data:string +@4418 = .rodata:0x80490178; // type:object size:0x11 scope:local align:4 data:string +@4479 = .rodata:0x8049018C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80490198; // type:label scope:local +@3709 = .rodata:0x80490198; // type:object size:0xB scope:local align:4 data:string +@3799 = .rodata:0x804901A4; // type:object size:0x16 scope:local align:4 data:string +@3800 = .rodata:0x804901BC; // type:object size:0x16 scope:local align:4 data:string +@3801 = .rodata:0x804901D4; // type:object size:0x16 scope:local align:4 data:string +@3802 = .rodata:0x804901EC; // type:object size:0x19 scope:local align:4 data:string +@3812 = .rodata:0x80490208; // type:object size:0x13 scope:local align:4 data:string +@3813 = .rodata:0x8049021C; // type:object size:0x13 scope:local align:4 data:string +@3814 = .rodata:0x80490230; // type:object size:0x16 scope:local align:4 data:string +@3824 = .rodata:0x80490248; // type:object size:0x13 scope:local align:4 data:string +@3825 = .rodata:0x8049025C; // type:object size:0x13 scope:local align:4 data:string +@3826 = .rodata:0x80490270; // type:object size:0x16 scope:local align:4 data:string +@3836 = .rodata:0x80490288; // type:object size:0x17 scope:local align:4 data:string +@3837 = .rodata:0x804902A0; // type:object size:0x17 scope:local align:4 data:string +@3838 = .rodata:0x804902B8; // type:object size:0x1A scope:local align:4 data:string +@3848 = .rodata:0x804902D4; // type:object size:0x14 scope:local align:4 data:string +@3849 = .rodata:0x804902E8; // type:object size:0x14 scope:local align:4 data:string +@3850 = .rodata:0x804902FC; // type:object size:0x17 scope:local align:4 data:string +@3860 = .rodata:0x80490318; // type:object size:0x48 scope:local align:8 +@3916 = .rodata:0x80490360; // type:object size:0xF scope:local align:4 data:string +@3917 = .rodata:0x80490370; // type:object size:0x9 scope:local align:4 data:string +@4202 = .rodata:0x8049037C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80490388; // type:label scope:local +@3787 = .rodata:0x80490388; // type:object size:0xF scope:local align:4 +@3812 = .rodata:0x80490398; // type:object size:0xF scope:local align:4 data:string +@3813 = .rodata:0x804903A8; // type:object size:0xF scope:local align:4 +@3817 = .rodata:0x804903B8; // type:object size:0xF scope:local align:4 +@3819 = .rodata:0x804903C8; // type:object size:0x11 scope:local align:4 +@3820 = .rodata:0x804903DC; // type:object size:0xD scope:local align:4 +@3854 = .rodata:0x804903EC; // type:object size:0x13 scope:local align:4 data:string +@3855 = .rodata:0x80490400; // type:object size:0x13 scope:local align:4 data:string +@3858 = .rodata:0x80490414; // type:object size:0xF scope:local align:4 data:string +@3859 = .rodata:0x80490424; // type:object size:0xE scope:local align:4 data:string +@3865 = .rodata:0x80490434; // type:object size:0xD scope:local align:4 data:string +@3919 = .rodata:0x80490444; // type:object size:0xD scope:local align:4 +@3921 = .rodata:0x80490454; // type:object size:0xD scope:local align:4 +@3922 = .rodata:0x80490464; // type:object size:0xB scope:local align:4 +@3924 = .rodata:0x80490470; // type:object size:0xF scope:local align:4 +@3926 = .rodata:0x80490480; // type:object size:0x1F scope:local align:4 +@3928 = .rodata:0x804904A0; // type:object size:0x13 scope:local align:4 +@3930 = .rodata:0x804904B4; // type:object size:0x13 scope:local align:4 +@3932 = .rodata:0x804904C8; // type:object size:0x12 scope:local align:4 +@3933 = .rodata:0x804904DC; // type:object size:0x11 scope:local align:4 +@3938 = .rodata:0x804904F0; // type:object size:0xB scope:local align:4 +@3939 = .rodata:0x804904FC; // type:object size:0xD scope:local align:4 +@3942 = .rodata:0x8049050C; // type:object size:0xB scope:local align:4 +@3944 = .rodata:0x80490518; // type:object size:0xB scope:local align:4 +@3946 = .rodata:0x80490524; // type:object size:0x11 scope:local align:4 +@3948 = .rodata:0x80490538; // type:object size:0x9 scope:local align:4 +@3950 = .rodata:0x80490544; // type:object size:0x9 scope:local align:4 +@3953 = .rodata:0x80490550; // type:object size:0x9 scope:local align:4 +@3955 = .rodata:0x8049055C; // type:object size:0x9 scope:local align:4 +@3957 = .rodata:0x80490568; // type:object size:0xB scope:local align:4 +@3959 = .rodata:0x80490574; // type:object size:0x11 scope:local align:4 +@3960 = .rodata:0x80490588; // type:object size:0xD scope:local align:4 +@3961 = .rodata:0x80490598; // type:object size:0xB scope:local align:4 +@3962 = .rodata:0x804905A4; // type:object size:0xD scope:local align:4 +@3963 = .rodata:0x804905B4; // type:object size:0xD scope:local align:4 +@3964 = .rodata:0x804905C4; // type:object size:0xF scope:local align:4 +@3965 = .rodata:0x804905D4; // type:object size:0xF scope:local align:4 +@3967 = .rodata:0x804905E4; // type:object size:0x9 scope:local align:4 +@3969 = .rodata:0x804905F0; // type:object size:0x9 scope:local align:4 +@3971 = .rodata:0x804905FC; // type:object size:0x17 scope:local align:4 +@3972 = .rodata:0x80490614; // type:object size:0xD scope:local align:4 +@3974 = .rodata:0x80490624; // type:object size:0xD scope:local align:4 +@3975 = .rodata:0x80490634; // type:object size:0xF scope:local align:4 +@3976 = .rodata:0x80490644; // type:object size:0xF scope:local align:4 +@3977 = .rodata:0x80490654; // type:object size:0xF scope:local align:4 +@3978 = .rodata:0x80490664; // type:object size:0xF scope:local align:4 +@3979 = .rodata:0x80490674; // type:object size:0xF scope:local align:4 +@3980 = .rodata:0x80490684; // type:object size:0xF scope:local align:4 +@3981 = .rodata:0x80490694; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x804906A8; // type:label scope:local +@3522 = .rodata:0x804906A8; // type:object size:0x11 scope:local align:4 +@3547 = .rodata:0x804906BC; // type:object size:0xF scope:local align:4 data:string +@3548 = .rodata:0x804906CC; // type:object size:0x9 scope:local align:4 +@3551 = .rodata:0x804906D8; // type:object size:0xB scope:local align:4 +@3552 = .rodata:0x804906E4; // type:object size:0x14 scope:local align:4 +@3553 = .rodata:0x804906F8; // type:object size:0x13 scope:local align:4 +@3554 = .rodata:0x8049070C; // type:object size:0x13 scope:local align:4 +@3588 = .rodata:0x80490720; // type:object size:0x13 scope:local align:4 data:string +@3589 = .rodata:0x80490734; // type:object size:0x13 scope:local align:4 data:string +@3591 = .rodata:0x80490748; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x80490758; // type:object size:0xE scope:local align:4 data:string +@3598 = .rodata:0x80490768; // type:object size:0xD scope:local align:4 data:string +@3652 = .rodata:0x80490778; // type:object size:0xD scope:local align:4 +@3655 = .rodata:0x80490788; // type:object size:0xD scope:local align:4 +@3656 = .rodata:0x80490798; // type:object size:0xB scope:local align:4 +@3658 = .rodata:0x804907A4; // type:object size:0xF scope:local align:4 +@3660 = .rodata:0x804907B4; // type:object size:0x1F scope:local align:4 +@3662 = .rodata:0x804907D4; // type:object size:0x13 scope:local align:4 +@3664 = .rodata:0x804907E8; // type:object size:0x13 scope:local align:4 +@3666 = .rodata:0x804907FC; // type:object size:0x12 scope:local align:4 +@3667 = .rodata:0x80490810; // type:object size:0x11 scope:local align:4 +@3672 = .rodata:0x80490824; // type:object size:0xB scope:local align:4 +@3673 = .rodata:0x80490830; // type:object size:0xD scope:local align:4 +@3676 = .rodata:0x80490840; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x8049084C; // type:object size:0xB scope:local align:4 +@3680 = .rodata:0x80490858; // type:object size:0x11 scope:local align:4 +@3682 = .rodata:0x8049086C; // type:object size:0x9 scope:local align:4 +@3684 = .rodata:0x80490878; // type:object size:0x9 scope:local align:4 +@3687 = .rodata:0x80490884; // type:object size:0x9 scope:local align:4 +@3689 = .rodata:0x80490890; // type:object size:0x9 scope:local align:4 +@3691 = .rodata:0x8049089C; // type:object size:0xB scope:local align:4 +@3693 = .rodata:0x804908A8; // type:object size:0x11 scope:local align:4 +@3694 = .rodata:0x804908BC; // type:object size:0xD scope:local align:4 +@3695 = .rodata:0x804908CC; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x804908D8; // type:object size:0xD scope:local align:4 +@3697 = .rodata:0x804908E8; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x804908F8; // type:object size:0xF scope:local align:4 +@3699 = .rodata:0x80490908; // type:object size:0xF scope:local align:4 +@3701 = .rodata:0x80490918; // type:object size:0x9 scope:local align:4 +@3703 = .rodata:0x80490924; // type:object size:0x9 scope:local align:4 +@3705 = .rodata:0x80490930; // type:object size:0x17 scope:local align:4 +@3706 = .rodata:0x80490948; // type:object size:0xD scope:local align:4 +@3708 = .rodata:0x80490958; // type:object size:0xD scope:local align:4 +@3709 = .rodata:0x80490968; // type:object size:0xF scope:local align:4 +@3710 = .rodata:0x80490978; // type:object size:0xF scope:local align:4 +@3711 = .rodata:0x80490988; // type:object size:0xF scope:local align:4 +@3712 = .rodata:0x80490998; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x804909A8; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x804909B8; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x804909C8; // type:object size:0xF scope:local align:4 +@4603 = .rodata:0x804909D8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804909E8; // type:label scope:local +@3812 = .rodata:0x804909E8; // type:object size:0xD scope:local align:4 data:string +@3818 = .rodata:0x804909F8; // type:object size:0x15 scope:local align:4 +@3849 = .rodata:0x80490A10; // type:object size:0xF scope:local align:4 data:string +@3850 = .rodata:0x80490A20; // type:object size:0xB scope:local align:4 +@3854 = .rodata:0x80490A2C; // type:object size:0x17 scope:local align:4 +@3855 = .rodata:0x80490A44; // type:object size:0xD scope:local align:4 +@3857 = .rodata:0x80490A54; // type:object size:0xF scope:local align:4 +@3859 = .rodata:0x80490A64; // type:object size:0x9 scope:local align:4 +@3862 = .rodata:0x80490A70; // type:object size:0x11 scope:local align:4 +@3864 = .rodata:0x80490A84; // type:object size:0xF scope:local align:4 +@3865 = .rodata:0x80490A94; // type:object size:0x9 scope:local align:4 +@3867 = .rodata:0x80490AA0; // type:object size:0x9 scope:local align:4 +@3870 = .rodata:0x80490AAC; // type:object size:0x19 scope:local align:4 +@3904 = .rodata:0x80490AC8; // type:object size:0x13 scope:local align:4 data:string +@3905 = .rodata:0x80490ADC; // type:object size:0x13 scope:local align:4 data:string +@3907 = .rodata:0x80490AF0; // type:object size:0xF scope:local align:4 data:string +@3908 = .rodata:0x80490B00; // type:object size:0xE scope:local align:4 data:string +@3913 = .rodata:0x80490B10; // type:object size:0xD scope:local align:4 data:string +@3966 = .rodata:0x80490B20; // type:object size:0xD scope:local align:4 +@3967 = .rodata:0x80490B30; // type:object size:0xD scope:local align:4 +@3968 = .rodata:0x80490B40; // type:object size:0xB scope:local align:4 +@3970 = .rodata:0x80490B4C; // type:object size:0xF scope:local align:4 +@3972 = .rodata:0x80490B5C; // type:object size:0x1F scope:local align:4 +@3973 = .rodata:0x80490B7C; // type:object size:0x13 scope:local align:4 +@3975 = .rodata:0x80490B90; // type:object size:0x13 scope:local align:4 +@3977 = .rodata:0x80490BA4; // type:object size:0x12 scope:local align:4 +@3978 = .rodata:0x80490BB8; // type:object size:0x11 scope:local align:4 +@3983 = .rodata:0x80490BCC; // type:object size:0xB scope:local align:4 +@3984 = .rodata:0x80490BD8; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x80490BE8; // type:object size:0xB scope:local align:4 +@3988 = .rodata:0x80490BF4; // type:object size:0xB scope:local align:4 +@3990 = .rodata:0x80490C00; // type:object size:0x11 scope:local align:4 +@3992 = .rodata:0x80490C14; // type:object size:0x9 scope:local align:4 +@3994 = .rodata:0x80490C20; // type:object size:0x9 scope:local align:4 +@3996 = .rodata:0x80490C2C; // type:object size:0x9 scope:local align:4 +@3998 = .rodata:0x80490C38; // type:object size:0x9 scope:local align:4 +@4000 = .rodata:0x80490C44; // type:object size:0xB scope:local align:4 +@4001 = .rodata:0x80490C50; // type:object size:0x11 scope:local align:4 +@4002 = .rodata:0x80490C64; // type:object size:0xD scope:local align:4 +@4003 = .rodata:0x80490C74; // type:object size:0xB scope:local align:4 +@4004 = .rodata:0x80490C80; // type:object size:0xD scope:local align:4 +@4005 = .rodata:0x80490C90; // type:object size:0xD scope:local align:4 +@4006 = .rodata:0x80490CA0; // type:object size:0xF scope:local align:4 +@4007 = .rodata:0x80490CB0; // type:object size:0xF scope:local align:4 +@4009 = .rodata:0x80490CC0; // type:object size:0x9 scope:local align:4 +@4011 = .rodata:0x80490CCC; // type:object size:0x9 scope:local align:4 +@4013 = .rodata:0x80490CD8; // type:object size:0x17 scope:local align:4 +@4014 = .rodata:0x80490CF0; // type:object size:0xD scope:local align:4 +@4016 = .rodata:0x80490D00; // type:object size:0xD scope:local align:4 +@4017 = .rodata:0x80490D10; // type:object size:0xF scope:local align:4 +@4018 = .rodata:0x80490D20; // type:object size:0xF scope:local align:4 +@4019 = .rodata:0x80490D30; // type:object size:0xF scope:local align:4 +@4020 = .rodata:0x80490D40; // type:object size:0xF scope:local align:4 +@4021 = .rodata:0x80490D50; // type:object size:0xF scope:local align:4 +@4022 = .rodata:0x80490D60; // type:object size:0xF scope:local align:4 +@4023 = .rodata:0x80490D70; // type:object size:0xF scope:local align:4 +@4045 = .rodata:0x80490D80; // type:object size:0x17 scope:local align:4 +@4042 = .rodata:0x80490D98; // type:object size:0xE scope:local align:4 data:string +@4043 = .rodata:0x80490DA8; // type:object size:0x9 scope:local align:4 data:string +@3487 = .rodata:0x80490DB8; // type:object size:0x13 scope:local align:4 +@3697 = .rodata:0x80490DCC; // type:object size:0x15 scope:local align:4 +@3717 = .rodata:0x80490DE4; // type:object size:0x17 scope:local align:4 +@3737 = .rodata:0x80490DFC; // type:object size:0x1F scope:local align:4 +@3757 = .rodata:0x80490E1C; // type:object size:0x23 scope:local align:4 +@3777 = .rodata:0x80490E40; // type:object size:0x1F scope:local align:4 +@3797 = .rodata:0x80490E60; // type:object size:0x23 scope:local align:4 +@3817 = .rodata:0x80490E84; // type:object size:0x15 scope:local align:4 +@3837 = .rodata:0x80490E9C; // type:object size:0x15 scope:local align:4 +@3857 = .rodata:0x80490EB4; // type:object size:0x11 scope:local align:4 +@3877 = .rodata:0x80490EC8; // type:object size:0xF scope:local align:4 +@3897 = .rodata:0x80490ED8; // type:object size:0x17 scope:local align:4 +@3917 = .rodata:0x80490EF0; // type:object size:0x17 scope:local align:4 +@3937 = .rodata:0x80490F08; // type:object size:0x17 scope:local align:4 +@3957 = .rodata:0x80490F20; // type:object size:0x17 scope:local align:4 +@3977 = .rodata:0x80490F38; // type:object size:0x11 scope:local align:4 +@3997 = .rodata:0x80490F4C; // type:object size:0x13 scope:local align:4 +@4371 = .rodata:0x80490F60; // type:object size:0xC scope:local align:4 data:string +@4372 = .rodata:0x80490F6C; // type:object size:0x9 scope:local align:4 data:string +@4191 = .rodata:0x80490F78; // type:object size:0xB scope:local align:4 data:string +@4192 = .rodata:0x80490F84; // type:object size:0x9 scope:local align:4 data:string +@4305 = .rodata:0x80490F90; // type:object size:0x16 scope:local align:4 data:string +@4306 = .rodata:0x80490FA8; // type:object size:0x9 scope:local align:4 data:string +@5045 = .rodata:0x80490FB4; // type:object size:0x9 scope:local align:4 data:string +@5266 = .rodata:0x80490FC0; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80490FD0; // type:label scope:local +@3786 = .rodata:0x80490FD0; // type:object size:0xE scope:local align:4 data:string +@3792 = .rodata:0x80490FE0; // type:object size:0x1D scope:local align:4 +@3837 = .rodata:0x80491000; // type:object size:0xF scope:local align:4 data:string +@3838 = .rodata:0x80491010; // type:object size:0x10 scope:local align:4 +@3842 = .rodata:0x80491020; // type:object size:0xF scope:local align:4 +@3845 = .rodata:0x80491030; // type:object size:0x16 scope:local align:4 +@3847 = .rodata:0x80491048; // type:object size:0x11 scope:local align:4 +@3849 = .rodata:0x8049105C; // type:object size:0xD scope:local align:4 +@3852 = .rodata:0x8049106C; // type:object size:0xD scope:local align:4 +@3854 = .rodata:0x8049107C; // type:object size:0xD scope:local align:4 +@3856 = .rodata:0x8049108C; // type:object size:0xD scope:local align:4 +@3857 = .rodata:0x8049109C; // type:object size:0x11 scope:local align:4 +@3858 = .rodata:0x804910B0; // type:object size:0xF scope:local align:4 +@3860 = .rodata:0x804910C0; // type:object size:0x13 scope:local align:4 +@3862 = .rodata:0x804910D4; // type:object size:0xD scope:local align:4 +@3863 = .rodata:0x804910E4; // type:object size:0x13 scope:local align:4 +@3865 = .rodata:0x804910F8; // type:object size:0xB scope:local align:4 +@3867 = .rodata:0x80491104; // type:object size:0xC scope:local align:4 +@3869 = .rodata:0x80491110; // type:object size:0xA scope:local align:4 +@3873 = .rodata:0x8049111C; // type:object size:0xE scope:local align:4 +@3875 = .rodata:0x8049112C; // type:object size:0x10 scope:local align:4 +@3877 = .rodata:0x8049113C; // type:object size:0x10 scope:local align:4 +@3879 = .rodata:0x8049114C; // type:object size:0x12 scope:local align:4 +@3880 = .rodata:0x80491160; // type:object size:0xF scope:local align:4 +@3881 = .rodata:0x80491170; // type:object size:0xF scope:local align:4 +@3882 = .rodata:0x80491180; // type:object size:0x11 scope:local align:4 +@3916 = .rodata:0x80491194; // type:object size:0x13 scope:local align:4 data:string +@3917 = .rodata:0x804911A8; // type:object size:0x13 scope:local align:4 data:string +@3918 = .rodata:0x804911BC; // type:object size:0xF scope:local align:4 data:string +@3919 = .rodata:0x804911CC; // type:object size:0xE scope:local align:4 data:string +@3923 = .rodata:0x804911DC; // type:object size:0xD scope:local align:4 data:string +@3976 = .rodata:0x804911EC; // type:object size:0xD scope:local align:4 +@3978 = .rodata:0x804911FC; // type:object size:0xD scope:local align:4 +@3979 = .rodata:0x8049120C; // type:object size:0xB scope:local align:4 +@3981 = .rodata:0x80491218; // type:object size:0xF scope:local align:4 +@3983 = .rodata:0x80491228; // type:object size:0x1F scope:local align:4 +@3985 = .rodata:0x80491248; // type:object size:0x13 scope:local align:4 +@3987 = .rodata:0x8049125C; // type:object size:0x13 scope:local align:4 +@3989 = .rodata:0x80491270; // type:object size:0x12 scope:local align:4 +@3990 = .rodata:0x80491284; // type:object size:0x11 scope:local align:4 +@3994 = .rodata:0x80491298; // type:object size:0xB scope:local align:4 +@3995 = .rodata:0x804912A4; // type:object size:0xD scope:local align:4 +@3996 = .rodata:0x804912B4; // type:object size:0xB scope:local align:4 +@3997 = .rodata:0x804912C0; // type:object size:0xB scope:local align:4 +@3998 = .rodata:0x804912CC; // type:object size:0x11 scope:local align:4 +@3999 = .rodata:0x804912E0; // type:object size:0x9 scope:local align:4 +@4001 = .rodata:0x804912EC; // type:object size:0x9 scope:local align:4 +@4003 = .rodata:0x804912F8; // type:object size:0x9 scope:local align:4 +@4005 = .rodata:0x80491304; // type:object size:0x9 scope:local align:4 +@4007 = .rodata:0x80491310; // type:object size:0xB scope:local align:4 +@4008 = .rodata:0x8049131C; // type:object size:0x11 scope:local align:4 +@4009 = .rodata:0x80491330; // type:object size:0xD scope:local align:4 +@4010 = .rodata:0x80491340; // type:object size:0xB scope:local align:4 +@4011 = .rodata:0x8049134C; // type:object size:0xD scope:local align:4 +@4012 = .rodata:0x8049135C; // type:object size:0xD scope:local align:4 +@4013 = .rodata:0x8049136C; // type:object size:0xF scope:local align:4 +@4014 = .rodata:0x8049137C; // type:object size:0xF scope:local align:4 +@4016 = .rodata:0x8049138C; // type:object size:0x9 scope:local align:4 +@4018 = .rodata:0x80491398; // type:object size:0x9 scope:local align:4 +@4020 = .rodata:0x804913A4; // type:object size:0x17 scope:local align:4 +@4021 = .rodata:0x804913BC; // type:object size:0xD scope:local align:4 +@4023 = .rodata:0x804913CC; // type:object size:0xD scope:local align:4 +@4024 = .rodata:0x804913DC; // type:object size:0xF scope:local align:4 +@4025 = .rodata:0x804913EC; // type:object size:0xF scope:local align:4 +@4026 = .rodata:0x804913FC; // type:object size:0xF scope:local align:4 +@4027 = .rodata:0x8049140C; // type:object size:0xF scope:local align:4 +@4028 = .rodata:0x8049141C; // type:object size:0xF scope:local align:4 +@4029 = .rodata:0x8049142C; // type:object size:0xF scope:local align:4 +@4030 = .rodata:0x8049143C; // type:object size:0xF scope:local align:4 +@4069 = .rodata:0x8049144C; // type:object size:0x12 scope:local align:4 data:string +@4070 = .rodata:0x80491460; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80491470; // type:label scope:local +@3897 = .rodata:0x80491470; // type:object size:0xC scope:local align:4 +@3949 = .rodata:0x8049147C; // type:object size:0xB scope:local align:4 data:string +@4096 = .rodata:0x80491488; // type:object size:0xF scope:local align:4 data:string +@4097 = .rodata:0x80491498; // type:object size:0x9 scope:local align:4 data:string +@4105 = .rodata:0x804914A4; // type:object size:0x16 scope:local align:4 data:string +@5062 = .rodata:0x804914BC; // type:object size:0x24 scope:local align:4 data:4byte +@6419 = .rodata:0x804914E0; // type:object size:0xD scope:local align:4 data:string +@6421 = .rodata:0x804914F0; // type:object size:0x9 scope:local align:4 data:string +@6423 = .rodata:0x804914FC; // type:object size:0xD scope:local align:4 data:string +@3789 = .rodata:0x80491510; // type:object size:0xC scope:local align:4 data:string +@3812 = .rodata:0x8049151C; // type:object size:0xA scope:local align:4 data:string +@4128 = .rodata:0x80491528; // type:object size:0xA scope:local align:4 data:string +@4218 = .rodata:0x80491534; // type:object size:0x10 scope:local align:4 data:string +@4219 = .rodata:0x80491544; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80491550; // type:label scope:local +@3512 = .rodata:0x80491550; // type:object size:0xA scope:local align:4 data:string +@3518 = .rodata:0x8049155C; // type:object size:0x13 scope:local align:4 +@3546 = .rodata:0x80491570; // type:object size:0xF scope:local align:4 data:string +@3547 = .rodata:0x80491580; // type:object size:0x11 scope:local align:4 +@3548 = .rodata:0x80491594; // type:object size:0xF scope:local align:4 +@3552 = .rodata:0x804915A4; // type:object size:0x11 scope:local align:4 +@3555 = .rodata:0x804915B8; // type:object size:0x13 scope:local align:4 +@3556 = .rodata:0x804915CC; // type:object size:0xD scope:local align:4 +@3557 = .rodata:0x804915DC; // type:object size:0x11 scope:local align:4 +@3559 = .rodata:0x804915F0; // type:object size:0xD scope:local align:4 +@3595 = .rodata:0x80491600; // type:object size:0x13 scope:local align:4 data:string +@3596 = .rodata:0x80491614; // type:object size:0x13 scope:local align:4 data:string +@3599 = .rodata:0x80491628; // type:object size:0xF scope:local align:4 data:string +@3600 = .rodata:0x80491638; // type:object size:0xE scope:local align:4 data:string +@3605 = .rodata:0x80491648; // type:object size:0xD scope:local align:4 data:string +@3658 = .rodata:0x80491658; // type:object size:0xD scope:local align:4 +@3661 = .rodata:0x80491668; // type:object size:0xD scope:local align:4 +@3662 = .rodata:0x80491678; // type:object size:0xB scope:local align:4 +@3663 = .rodata:0x80491684; // type:object size:0xF scope:local align:4 +@3665 = .rodata:0x80491694; // type:object size:0x1F scope:local align:4 +@3667 = .rodata:0x804916B4; // type:object size:0x13 scope:local align:4 +@3669 = .rodata:0x804916C8; // type:object size:0x13 scope:local align:4 +@3671 = .rodata:0x804916DC; // type:object size:0x12 scope:local align:4 +@3672 = .rodata:0x804916F0; // type:object size:0x11 scope:local align:4 +@3677 = .rodata:0x80491704; // type:object size:0xB scope:local align:4 +@3678 = .rodata:0x80491710; // type:object size:0xD scope:local align:4 +@3680 = .rodata:0x80491720; // type:object size:0xB scope:local align:4 +@3682 = .rodata:0x8049172C; // type:object size:0xB scope:local align:4 +@3684 = .rodata:0x80491738; // type:object size:0x11 scope:local align:4 +@3686 = .rodata:0x8049174C; // type:object size:0x9 scope:local align:4 +@3688 = .rodata:0x80491758; // type:object size:0x9 scope:local align:4 +@3690 = .rodata:0x80491764; // type:object size:0x9 scope:local align:4 +@3692 = .rodata:0x80491770; // type:object size:0x9 scope:local align:4 +@3694 = .rodata:0x8049177C; // type:object size:0xB scope:local align:4 +@3696 = .rodata:0x80491788; // type:object size:0x11 scope:local align:4 +@3697 = .rodata:0x8049179C; // type:object size:0xD scope:local align:4 +@3698 = .rodata:0x804917AC; // type:object size:0xB scope:local align:4 +@3699 = .rodata:0x804917B8; // type:object size:0xD scope:local align:4 +@3700 = .rodata:0x804917C8; // type:object size:0xD scope:local align:4 +@3701 = .rodata:0x804917D8; // type:object size:0xF scope:local align:4 +@3702 = .rodata:0x804917E8; // type:object size:0xF scope:local align:4 +@3704 = .rodata:0x804917F8; // type:object size:0x9 scope:local align:4 +@3706 = .rodata:0x80491804; // type:object size:0x9 scope:local align:4 +@3708 = .rodata:0x80491810; // type:object size:0x17 scope:local align:4 +@3709 = .rodata:0x80491828; // type:object size:0xD scope:local align:4 +@3711 = .rodata:0x80491838; // type:object size:0xD scope:local align:4 +@3712 = .rodata:0x80491848; // type:object size:0xF scope:local align:4 +@3713 = .rodata:0x80491858; // type:object size:0xF scope:local align:4 +@3714 = .rodata:0x80491868; // type:object size:0xF scope:local align:4 +@3715 = .rodata:0x80491878; // type:object size:0xF scope:local align:4 +@3716 = .rodata:0x80491888; // type:object size:0xF scope:local align:4 +@3717 = .rodata:0x80491898; // type:object size:0xF scope:local align:4 +@3718 = .rodata:0x804918A8; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x804918B8; // type:label scope:local +@3827 = .rodata:0x804918B8; // type:object size:0xA scope:local align:4 data:string +@3828 = .rodata:0x804918C4; // type:object size:0xB scope:local align:4 data:string +@3829 = .rodata:0x804918D0; // type:object size:0x9 scope:local align:4 data:string +@3955 = .rodata:0x804918DC; // type:object size:0xA scope:local align:4 data:string +@3957 = .rodata:0x804918E8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x804918F8; // type:label scope:local +@3792 = .rodata:0x804918F8; // type:object size:0xA scope:local align:4 data:string +@3798 = .rodata:0x80491904; // type:object size:0x11 scope:local align:4 +@3824 = .rodata:0x80491918; // type:object size:0xF scope:local align:4 data:string +@3825 = .rodata:0x80491928; // type:object size:0x9 scope:local align:4 +@3829 = .rodata:0x80491934; // type:object size:0x9 scope:local align:4 +@3830 = .rodata:0x80491940; // type:object size:0xD scope:local align:4 +@3833 = .rodata:0x80491950; // type:object size:0xD scope:local align:4 +@3835 = .rodata:0x80491960; // type:object size:0xB scope:local align:4 +@3837 = .rodata:0x8049196C; // type:object size:0xF scope:local align:4 +@3880 = .rodata:0x8049197C; // type:object size:0x13 scope:local align:4 data:string +@3881 = .rodata:0x80491990; // type:object size:0x13 scope:local align:4 data:string +@3883 = .rodata:0x804919A4; // type:object size:0xF scope:local align:4 data:string +@3884 = .rodata:0x804919B4; // type:object size:0xE scope:local align:4 data:string +@3890 = .rodata:0x804919C4; // type:object size:0xD scope:local align:4 data:string +@3943 = .rodata:0x804919D4; // type:object size:0xD scope:local align:4 +@3945 = .rodata:0x804919E4; // type:object size:0xD scope:local align:4 +@3946 = .rodata:0x804919F4; // type:object size:0xB scope:local align:4 +@3947 = .rodata:0x80491A00; // type:object size:0xF scope:local align:4 +@3949 = .rodata:0x80491A10; // type:object size:0x1F scope:local align:4 +@3951 = .rodata:0x80491A30; // type:object size:0x13 scope:local align:4 +@3953 = .rodata:0x80491A44; // type:object size:0x13 scope:local align:4 +@3955 = .rodata:0x80491A58; // type:object size:0x12 scope:local align:4 +@3956 = .rodata:0x80491A6C; // type:object size:0x11 scope:local align:4 +@3961 = .rodata:0x80491A80; // type:object size:0xB scope:local align:4 +@3962 = .rodata:0x80491A8C; // type:object size:0xD scope:local align:4 +@3965 = .rodata:0x80491A9C; // type:object size:0xB scope:local align:4 +@3967 = .rodata:0x80491AA8; // type:object size:0xB scope:local align:4 +@3969 = .rodata:0x80491AB4; // type:object size:0x11 scope:local align:4 +@3971 = .rodata:0x80491AC8; // type:object size:0x9 scope:local align:4 +@3973 = .rodata:0x80491AD4; // type:object size:0x9 scope:local align:4 +@3976 = .rodata:0x80491AE0; // type:object size:0x9 scope:local align:4 +@3978 = .rodata:0x80491AEC; // type:object size:0x9 scope:local align:4 +@3980 = .rodata:0x80491AF8; // type:object size:0xB scope:local align:4 +@3981 = .rodata:0x80491B04; // type:object size:0x11 scope:local align:4 +@3982 = .rodata:0x80491B18; // type:object size:0xD scope:local align:4 +@3983 = .rodata:0x80491B28; // type:object size:0xB scope:local align:4 +@3984 = .rodata:0x80491B34; // type:object size:0xD scope:local align:4 +@3985 = .rodata:0x80491B44; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x80491B54; // type:object size:0xF scope:local align:4 +@3987 = .rodata:0x80491B64; // type:object size:0xF scope:local align:4 +@3989 = .rodata:0x80491B74; // type:object size:0x9 scope:local align:4 +@3991 = .rodata:0x80491B80; // type:object size:0x9 scope:local align:4 +@3993 = .rodata:0x80491B8C; // type:object size:0x17 scope:local align:4 +@3994 = .rodata:0x80491BA4; // type:object size:0xD scope:local align:4 +@3995 = .rodata:0x80491BB4; // type:object size:0xD scope:local align:4 +@3996 = .rodata:0x80491BC4; // type:object size:0xF scope:local align:4 +@3997 = .rodata:0x80491BD4; // type:object size:0xF scope:local align:4 +@3998 = .rodata:0x80491BE4; // type:object size:0xF scope:local align:4 +@3999 = .rodata:0x80491BF4; // type:object size:0xF scope:local align:4 +@4000 = .rodata:0x80491C04; // type:object size:0xF scope:local align:4 +@4001 = .rodata:0x80491C14; // type:object size:0xF scope:local align:4 +@4002 = .rodata:0x80491C24; // type:object size:0xF scope:local align:4 +...rodata.0 = .rodata:0x80491C38; // type:label scope:local +@3881 = .rodata:0x80491C38; // type:object size:0xB scope:local align:4 data:string +@3882 = .rodata:0x80491C44; // type:object size:0x9 scope:local align:4 data:string +@3922 = .rodata:0x80491C50; // type:object size:0xC scope:local align:4 data:string +@3923 = .rodata:0x80491C5C; // type:object size:0xC scope:local align:4 data:string +@5459 = .rodata:0x80491C68; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80491C78; // type:label scope:local +@3339 = .rodata:0x80491C78; // type:object size:0xD scope:local align:4 data:string +@3345 = .rodata:0x80491C88; // type:object size:0xD scope:local align:4 +@3393 = .rodata:0x80491C98; // type:object size:0x13 scope:local align:4 data:string +@3394 = .rodata:0x80491CAC; // type:object size:0x13 scope:local align:4 data:string +@3398 = .rodata:0x80491CC0; // type:object size:0xF scope:local align:4 data:string +@3399 = .rodata:0x80491CD0; // type:object size:0xE scope:local align:4 data:string +@3405 = .rodata:0x80491CE0; // type:object size:0xD scope:local align:4 data:string +@3456 = .rodata:0x80491CF0; // type:object size:0xF scope:local align:4 data:string +@3460 = .rodata:0x80491D00; // type:object size:0xD scope:local align:4 +@3463 = .rodata:0x80491D10; // type:object size:0xD scope:local align:4 +@3464 = .rodata:0x80491D20; // type:object size:0xB scope:local align:4 +@3466 = .rodata:0x80491D2C; // type:object size:0xF scope:local align:4 +@3468 = .rodata:0x80491D3C; // type:object size:0x1F scope:local align:4 +@3470 = .rodata:0x80491D5C; // type:object size:0x13 scope:local align:4 +@3472 = .rodata:0x80491D70; // type:object size:0x13 scope:local align:4 +@3474 = .rodata:0x80491D84; // type:object size:0x12 scope:local align:4 +@3475 = .rodata:0x80491D98; // type:object size:0x11 scope:local align:4 +@3480 = .rodata:0x80491DAC; // type:object size:0xB scope:local align:4 +@3481 = .rodata:0x80491DB8; // type:object size:0xD scope:local align:4 +@3484 = .rodata:0x80491DC8; // type:object size:0xB scope:local align:4 +@3486 = .rodata:0x80491DD4; // type:object size:0xB scope:local align:4 +@3488 = .rodata:0x80491DE0; // type:object size:0x11 scope:local align:4 +@3490 = .rodata:0x80491DF4; // type:object size:0x9 scope:local align:4 +@3492 = .rodata:0x80491E00; // type:object size:0x9 scope:local align:4 +@3495 = .rodata:0x80491E0C; // type:object size:0x9 scope:local align:4 +@3497 = .rodata:0x80491E18; // type:object size:0x9 scope:local align:4 +@3499 = .rodata:0x80491E24; // type:object size:0xB scope:local align:4 +@3501 = .rodata:0x80491E30; // type:object size:0x11 scope:local align:4 +@3502 = .rodata:0x80491E44; // type:object size:0xD scope:local align:4 +@3503 = .rodata:0x80491E54; // type:object size:0xB scope:local align:4 +@3504 = .rodata:0x80491E60; // type:object size:0xD scope:local align:4 +@3505 = .rodata:0x80491E70; // type:object size:0xD scope:local align:4 +@3506 = .rodata:0x80491E80; // type:object size:0xF scope:local align:4 +@3507 = .rodata:0x80491E90; // type:object size:0xF scope:local align:4 +@3509 = .rodata:0x80491EA0; // type:object size:0x9 scope:local align:4 +@3511 = .rodata:0x80491EAC; // type:object size:0x9 scope:local align:4 +@3513 = .rodata:0x80491EB8; // type:object size:0x17 scope:local align:4 +@3514 = .rodata:0x80491ED0; // type:object size:0xD scope:local align:4 +@3516 = .rodata:0x80491EE0; // type:object size:0xD scope:local align:4 +@3517 = .rodata:0x80491EF0; // type:object size:0xF scope:local align:4 +@3518 = .rodata:0x80491F00; // type:object size:0xF scope:local align:4 +@3519 = .rodata:0x80491F10; // type:object size:0xF scope:local align:4 +@3520 = .rodata:0x80491F20; // type:object size:0xF scope:local align:4 +@3521 = .rodata:0x80491F30; // type:object size:0xF scope:local align:4 +@3522 = .rodata:0x80491F40; // type:object size:0xF scope:local align:4 +@3523 = .rodata:0x80491F50; // type:object size:0xF scope:local align:4 +@3559 = .rodata:0x80491F60; // type:object size:0xA scope:local align:4 data:string +@3560 = .rodata:0x80491F6C; // type:object size:0x22 scope:local align:4 data:string +@3561 = .rodata:0x80491F90; // type:object size:0x11 scope:local align:4 data:string +@3562 = .rodata:0x80491FA4; // type:object size:0x9 scope:local align:4 data:string +@3566 = .rodata:0x80491FB0; // type:object size:0x30 scope:local align:4 +@3682 = .rodata:0x80491FE0; // type:object size:0x11 scope:local align:4 data:string +@3683 = .rodata:0x80491FF4; // type:object size:0x1A scope:local align:4 data:string +...rodata.0 = .rodata:0x80492010; // type:label scope:local +@3807 = .rodata:0x80492010; // type:object size:0xF scope:local align:4 data:string +@3813 = .rodata:0x80492020; // type:object size:0x15 scope:local align:4 +@3875 = .rodata:0x80492038; // type:object size:0xF scope:local align:4 data:string +@3876 = .rodata:0x80492048; // type:object size:0x9 scope:local align:4 +@3880 = .rodata:0x80492054; // type:object size:0x9 scope:local align:4 +@3883 = .rodata:0x80492060; // type:object size:0x9 scope:local align:4 +@3885 = .rodata:0x8049206C; // type:object size:0xD scope:local align:4 +@3886 = .rodata:0x8049207C; // type:object size:0xD scope:local align:4 +@3887 = .rodata:0x8049208C; // type:object size:0xD scope:local align:4 +@3888 = .rodata:0x8049209C; // type:object size:0xD scope:local align:4 +@3929 = .rodata:0x804920AC; // type:object size:0x13 scope:local align:4 data:string +@3930 = .rodata:0x804920C0; // type:object size:0x13 scope:local align:4 data:string +@3932 = .rodata:0x804920D4; // type:object size:0xF scope:local align:4 data:string +@3933 = .rodata:0x804920E4; // type:object size:0xE scope:local align:4 data:string +@3939 = .rodata:0x804920F4; // type:object size:0xD scope:local align:4 data:string +@3992 = .rodata:0x80492104; // type:object size:0xD scope:local align:4 +@3994 = .rodata:0x80492114; // type:object size:0xD scope:local align:4 +@3995 = .rodata:0x80492124; // type:object size:0xB scope:local align:4 +@3996 = .rodata:0x80492130; // type:object size:0xF scope:local align:4 +@3997 = .rodata:0x80492140; // type:object size:0x1F scope:local align:4 +@3999 = .rodata:0x80492160; // type:object size:0x13 scope:local align:4 +@4001 = .rodata:0x80492174; // type:object size:0x13 scope:local align:4 +@4002 = .rodata:0x80492188; // type:object size:0x12 scope:local align:4 +@4003 = .rodata:0x8049219C; // type:object size:0x11 scope:local align:4 +@4007 = .rodata:0x804921B0; // type:object size:0xB scope:local align:4 +@4008 = .rodata:0x804921BC; // type:object size:0xD scope:local align:4 +@4010 = .rodata:0x804921CC; // type:object size:0xB scope:local align:4 +@4011 = .rodata:0x804921D8; // type:object size:0xB scope:local align:4 +@4013 = .rodata:0x804921E4; // type:object size:0x11 scope:local align:4 +@4015 = .rodata:0x804921F8; // type:object size:0x9 scope:local align:4 +@4017 = .rodata:0x80492204; // type:object size:0x9 scope:local align:4 +@4020 = .rodata:0x80492210; // type:object size:0x9 scope:local align:4 +@4022 = .rodata:0x8049221C; // type:object size:0x9 scope:local align:4 +@4024 = .rodata:0x80492228; // type:object size:0xB scope:local align:4 +@4025 = .rodata:0x80492234; // type:object size:0x11 scope:local align:4 +@4026 = .rodata:0x80492248; // type:object size:0xD scope:local align:4 +@4027 = .rodata:0x80492258; // type:object size:0xB scope:local align:4 +@4028 = .rodata:0x80492264; // type:object size:0xD scope:local align:4 +@4029 = .rodata:0x80492274; // type:object size:0xD scope:local align:4 +@4030 = .rodata:0x80492284; // type:object size:0xF scope:local align:4 +@4031 = .rodata:0x80492294; // type:object size:0xF scope:local align:4 +@4033 = .rodata:0x804922A4; // type:object size:0x9 scope:local align:4 +@4035 = .rodata:0x804922B0; // type:object size:0x9 scope:local align:4 +@4037 = .rodata:0x804922BC; // type:object size:0x17 scope:local align:4 +@4038 = .rodata:0x804922D4; // type:object size:0xD scope:local align:4 +@4040 = .rodata:0x804922E4; // type:object size:0xD scope:local align:4 +@4041 = .rodata:0x804922F4; // type:object size:0xF scope:local align:4 +@4042 = .rodata:0x80492304; // type:object size:0xF scope:local align:4 +@4043 = .rodata:0x80492314; // type:object size:0xF scope:local align:4 +@4044 = .rodata:0x80492324; // type:object size:0xF scope:local align:4 +@4045 = .rodata:0x80492334; // type:object size:0xF scope:local align:4 +@4046 = .rodata:0x80492344; // type:object size:0xF scope:local align:4 +@4047 = .rodata:0x80492354; // type:object size:0xF scope:local align:4 +@4202 = .rodata:0x80492364; // type:object size:0x13 scope:local align:4 data:string +@4203 = .rodata:0x80492378; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80492388; // type:label scope:local +@3813 = .rodata:0x80492388; // type:object size:0xC scope:local align:4 data:string +@3884 = .rodata:0x80492394; // type:object size:0x10 scope:local align:4 data:string +@3885 = .rodata:0x804923A4; // type:object size:0x9 scope:local align:4 data:string +@3886 = .rodata:0x804923B0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804923C0; // type:label scope:local +@3769 = .rodata:0x804923C0; // type:object size:0xC scope:local align:4 +@3978 = .rodata:0x804923CC; // type:object size:0xC scope:local align:4 data:string +@3979 = .rodata:0x804923D8; // type:object size:0x9 scope:local align:4 data:string +@4174 = .rodata:0x804923E4; // type:object size:0xC scope:local align:4 data:string +@4181 = .rodata:0x804923F0; // type:object size:0xA scope:local align:4 data:string +@4567 = .rodata:0x804923FC; // type:object size:0x9 scope:local align:4 data:string +@4861 = .rodata:0x80492408; // type:object size:0x50 scope:local align:8 +@4863 = .rodata:0x80492458; // type:object size:0x3C0 scope:local align:8 data:string +@4968 = .rodata:0x80492818; // type:object size:0xF scope:local align:4 data:string +@5600 = .rodata:0x80492828; // type:object size:0x15 scope:local align:4 data:string +@5632 = .rodata:0x80492840; // type:object size:0xB scope:local align:4 data:string +@5764 = .rodata:0x80492850; // type:object size:0x10 scope:local align:8 +@5766 = .rodata:0x80492860; // type:object size:0x10 scope:local align:8 +@5768 = .rodata:0x80492870; // type:object size:0x10 scope:local align:8 +@6172 = .rodata:0x80492880; // type:object size:0x27 scope:local align:4 data:string +@6174 = .rodata:0x804928A8; // type:object size:0x1A scope:local align:4 data:string +@6175 = .rodata:0x804928C4; // type:object size:0x1A scope:local align:4 data:string +@6176 = .rodata:0x804928E0; // type:object size:0x1A scope:local align:4 data:string +@6177 = .rodata:0x804928FC; // type:object size:0x18 scope:local align:4 data:string +@6178 = .rodata:0x80492914; // type:object size:0x1C scope:local align:4 data:string +@6179 = .rodata:0x80492930; // type:object size:0x1C scope:local align:4 data:string +@6180 = .rodata:0x8049294C; // type:object size:0x1A scope:local align:4 data:string +@6181 = .rodata:0x80492968; // type:object size:0x1A scope:local align:4 data:string +@6182 = .rodata:0x80492984; // type:object size:0x16 scope:local align:4 data:string +@6183 = .rodata:0x8049299C; // type:object size:0x16 scope:local align:4 data:string +@6184 = .rodata:0x804929B4; // type:object size:0x16 scope:local align:4 data:string +@6185 = .rodata:0x804929CC; // type:object size:0x1F scope:local align:4 data:string +@6252 = .rodata:0x804929EC; // type:object size:0x11 scope:local align:4 data:string +@6289 = .rodata:0x80492A00; // type:object size:0x70 scope:local align:8 +@6291 = .rodata:0x80492A70; // type:object size:0x540 scope:local align:8 data:string +@6883 = .rodata:0x80492FB0; // type:object size:0xA scope:local align:4 data:string +@6945 = .rodata:0x80492FBC; // type:object size:0xA scope:local align:4 data:string +@7411 = .rodata:0x80492FC8; // type:object size:0x18 scope:local align:8 +@7413 = .rodata:0x80492FE0; // type:object size:0x18 scope:local align:8 +@7415 = .rodata:0x80492FF8; // type:object size:0x18 scope:local align:8 +@7417 = .rodata:0x80493010; // type:object size:0x10 scope:local align:8 +@7825 = .rodata:0x80493020; // type:object size:0x15 scope:local align:4 data:string +@7826 = .rodata:0x80493038; // type:object size:0x1A scope:local align:4 data:string +@7827 = .rodata:0x80493054; // type:object size:0x1A scope:local align:4 data:string +@7828 = .rodata:0x80493070; // type:object size:0x1A scope:local align:4 data:string +@7829 = .rodata:0x8049308C; // type:object size:0x1A scope:local align:4 data:string +@7830 = .rodata:0x804930A8; // type:object size:0x18 scope:local align:4 data:string +@7831 = .rodata:0x804930C0; // type:object size:0x1C scope:local align:4 data:string +@7832 = .rodata:0x804930DC; // type:object size:0x1C scope:local align:4 data:string +@7833 = .rodata:0x804930F8; // type:object size:0x1E scope:local align:4 data:string +@7834 = .rodata:0x80493118; // type:object size:0x1F scope:local align:4 data:string +@8024 = .rodata:0x80493138; // type:object size:0x12 scope:local align:4 data:string +@8705 = .rodata:0x8049314C; // type:object size:0x12 scope:local align:4 data:string +@8746 = .rodata:0x80493160; // type:object size:0xC scope:local align:4 data:string +@8751 = .rodata:0x8049316C; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493180; // type:label scope:local +@3573 = .rodata:0x80493180; // type:object size:0xA scope:local align:4 data:string +@4005 = .rodata:0x8049318C; // type:object size:0x15 scope:local align:4 data:string +@4006 = .rodata:0x804931A4; // type:object size:0x15 scope:local align:4 data:string +@4007 = .rodata:0x804931BC; // type:object size:0x15 scope:local align:4 data:string +@4008 = .rodata:0x804931D4; // type:object size:0x15 scope:local align:4 data:string +@4009 = .rodata:0x804931EC; // type:object size:0x15 scope:local align:4 data:string +@4010 = .rodata:0x80493204; // type:object size:0x15 scope:local align:4 data:string +@4011 = .rodata:0x8049321C; // type:object size:0x15 scope:local align:4 data:string +@4012 = .rodata:0x80493234; // type:object size:0x15 scope:local align:4 data:string +@4013 = .rodata:0x8049324C; // type:object size:0x15 scope:local align:4 data:string +@4014 = .rodata:0x80493264; // type:object size:0x15 scope:local align:4 data:string +@4015 = .rodata:0x8049327C; // type:object size:0x15 scope:local align:4 data:string +@4016 = .rodata:0x80493294; // type:object size:0x15 scope:local align:4 data:string +@4017 = .rodata:0x804932AC; // type:object size:0x15 scope:local align:4 data:string +@4018 = .rodata:0x804932C4; // type:object size:0x15 scope:local align:4 data:string +@4019 = .rodata:0x804932DC; // type:object size:0x15 scope:local align:4 data:string +@4020 = .rodata:0x804932F4; // type:object size:0x15 scope:local align:4 data:string +@4021 = .rodata:0x8049330C; // type:object size:0x40 scope:local align:4 +@4040 = .rodata:0x80493350; // type:object size:0x28 scope:local align:8 +@4041 = .rodata:0x80493378; // type:object size:0x28 scope:local align:8 +@4058 = .rodata:0x804933A0; // type:object size:0x30 scope:local align:8 +@4059 = .rodata:0x804933D0; // type:object size:0x30 scope:local align:8 +@4060 = .rodata:0x80493400; // type:object size:0x30 scope:local align:8 +@4061 = .rodata:0x80493430; // type:object size:0x30 scope:local align:8 +@4062 = .rodata:0x80493460; // type:object size:0x30 scope:local align:8 +@4327 = .rodata:0x80493490; // type:object size:0xE scope:local align:4 data:string +@4328 = .rodata:0x804934A0; // type:object size:0x9 scope:local align:4 data:string +@4329 = .rodata:0x804934AC; // type:object size:0x12 scope:local align:4 data:string +@4330 = .rodata:0x804934C0; // type:object size:0x12 scope:local align:4 data:string +@4331 = .rodata:0x804934D4; // type:object size:0x12 scope:local align:4 data:string +@4332 = .rodata:0x804934E8; // type:object size:0x12 scope:local align:4 data:string +@4333 = .rodata:0x804934FC; // type:object size:0x13 scope:local align:4 data:string +@4334 = .rodata:0x80493510; // type:object size:0x10 scope:local align:4 data:string +@5461 = .rodata:0x80493520; // type:object size:0x10 scope:local align:4 data:string +@5501 = .rodata:0x80493530; // type:object size:0xC scope:local align:4 data:string +@4337 = .rodata:0x80493540; // type:object size:0x12 scope:local align:4 data:string +@4366 = .rodata:0x80493554; // type:object size:0x16 scope:local align:4 data:string +@4367 = .rodata:0x8049356C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493578; // type:label scope:local +@3783 = .rodata:0x80493578; // type:object size:0xC scope:local align:4 data:string +@3789 = .rodata:0x80493584; // type:object size:0x13 scope:local align:4 +@3827 = .rodata:0x80493598; // type:object size:0xF scope:local align:4 data:string +@3828 = .rodata:0x804935A8; // type:object size:0xF scope:local align:4 +@3830 = .rodata:0x804935B8; // type:object size:0xD scope:local align:4 +@3833 = .rodata:0x804935C8; // type:object size:0xD scope:local align:4 +@3834 = .rodata:0x804935D8; // type:object size:0xF scope:local align:4 +@3836 = .rodata:0x804935E8; // type:object size:0x11 scope:local align:4 +@3838 = .rodata:0x804935FC; // type:object size:0x13 scope:local align:4 +@3841 = .rodata:0x80493610; // type:object size:0x19 scope:local align:4 +@3842 = .rodata:0x8049362C; // type:object size:0xF scope:local align:4 +@3845 = .rodata:0x8049363C; // type:object size:0xB scope:local align:4 +@3848 = .rodata:0x80493648; // type:object size:0xD scope:local align:4 +@3850 = .rodata:0x80493658; // type:object size:0xF scope:local align:4 +@3851 = .rodata:0x80493668; // type:object size:0xF scope:local align:4 +@3852 = .rodata:0x80493678; // type:object size:0xF scope:local align:4 +@3886 = .rodata:0x80493688; // type:object size:0x13 scope:local align:4 data:string +@3887 = .rodata:0x8049369C; // type:object size:0x13 scope:local align:4 data:string +@3889 = .rodata:0x804936B0; // type:object size:0xF scope:local align:4 data:string +@3890 = .rodata:0x804936C0; // type:object size:0xE scope:local align:4 data:string +@3895 = .rodata:0x804936D0; // type:object size:0xD scope:local align:4 data:string +@3947 = .rodata:0x804936E0; // type:object size:0xD scope:local align:4 +@3949 = .rodata:0x804936F0; // type:object size:0xD scope:local align:4 +@3950 = .rodata:0x80493700; // type:object size:0xB scope:local align:4 +@3952 = .rodata:0x8049370C; // type:object size:0xF scope:local align:4 +@3954 = .rodata:0x8049371C; // type:object size:0x1F scope:local align:4 +@3955 = .rodata:0x8049373C; // type:object size:0x13 scope:local align:4 +@3957 = .rodata:0x80493750; // type:object size:0x13 scope:local align:4 +@3959 = .rodata:0x80493764; // type:object size:0x12 scope:local align:4 +@3960 = .rodata:0x80493778; // type:object size:0x11 scope:local align:4 +@3965 = .rodata:0x8049378C; // type:object size:0xB scope:local align:4 +@3966 = .rodata:0x80493798; // type:object size:0xD scope:local align:4 +@3967 = .rodata:0x804937A8; // type:object size:0xB scope:local align:4 +@3968 = .rodata:0x804937B4; // type:object size:0xB scope:local align:4 +@3970 = .rodata:0x804937C0; // type:object size:0x11 scope:local align:4 +@3972 = .rodata:0x804937D4; // type:object size:0x9 scope:local align:4 +@3974 = .rodata:0x804937E0; // type:object size:0x9 scope:local align:4 +@3976 = .rodata:0x804937EC; // type:object size:0x9 scope:local align:4 +@3978 = .rodata:0x804937F8; // type:object size:0x9 scope:local align:4 +@3980 = .rodata:0x80493804; // type:object size:0xB scope:local align:4 +@3981 = .rodata:0x80493810; // type:object size:0x11 scope:local align:4 +@3982 = .rodata:0x80493824; // type:object size:0xD scope:local align:4 +@3983 = .rodata:0x80493834; // type:object size:0xB scope:local align:4 +@3984 = .rodata:0x80493840; // type:object size:0xD scope:local align:4 +@3985 = .rodata:0x80493850; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x80493860; // type:object size:0xF scope:local align:4 +@3987 = .rodata:0x80493870; // type:object size:0xF scope:local align:4 +@3989 = .rodata:0x80493880; // type:object size:0x9 scope:local align:4 +@3991 = .rodata:0x8049388C; // type:object size:0x9 scope:local align:4 +@3992 = .rodata:0x80493898; // type:object size:0x17 scope:local align:4 +@3993 = .rodata:0x804938B0; // type:object size:0xD scope:local align:4 +@3994 = .rodata:0x804938C0; // type:object size:0xD scope:local align:4 +@3995 = .rodata:0x804938D0; // type:object size:0xF scope:local align:4 +@3996 = .rodata:0x804938E0; // type:object size:0xF scope:local align:4 +@3997 = .rodata:0x804938F0; // type:object size:0xF scope:local align:4 +@3998 = .rodata:0x80493900; // type:object size:0xF scope:local align:4 +@3999 = .rodata:0x80493910; // type:object size:0xF scope:local align:4 +@4000 = .rodata:0x80493920; // type:object size:0xF scope:local align:4 +@4001 = .rodata:0x80493930; // type:object size:0xF scope:local align:4 +@4048 = .rodata:0x80493940; // type:object size:0x28 scope:local align:4 data:string +@4049 = .rodata:0x80493968; // type:object size:0x10 scope:local align:4 data:string +@4050 = .rodata:0x80493978; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493988; // type:label scope:local +@3782 = .rodata:0x80493988; // type:object size:0x9 scope:local align:4 data:string +@3937 = .rodata:0x80493994; // type:object size:0xC scope:local align:4 data:string +@3938 = .rodata:0x804939A0; // type:object size:0xD scope:local align:4 data:string +@3939 = .rodata:0x804939B0; // type:object size:0x9 scope:local align:4 data:string +@3940 = .rodata:0x804939BC; // type:object size:0xA scope:local align:4 data:string +@3941 = .rodata:0x804939C8; // type:object size:0x16 scope:local align:4 data:string +@3943 = .rodata:0x804939E0; // type:object size:0xC scope:local align:4 data:string +@3944 = .rodata:0x804939EC; // type:object size:0xC scope:local align:4 data:string +@3945 = .rodata:0x804939F8; // type:object size:0x9 scope:local align:4 data:string +@3946 = .rodata:0x80493A04; // type:object size:0x9 scope:local align:4 data:string +@3947 = .rodata:0x80493A10; // type:object size:0xC scope:local align:4 data:string +@4498 = .rodata:0x80493A1C; // type:object size:0xC scope:local align:4 data:string +@4499 = .rodata:0x80493A28; // type:object size:0xC scope:local align:4 data:string +@4500 = .rodata:0x80493A34; // type:object size:0xC scope:local align:4 data:string +@4501 = .rodata:0x80493A40; // type:object size:0xC scope:local align:4 data:string +@4502 = .rodata:0x80493A4C; // type:object size:0xC scope:local align:4 data:string +@4503 = .rodata:0x80493A58; // type:object size:0xC scope:local align:4 data:string +@4504 = .rodata:0x80493A64; // type:object size:0xC scope:local align:4 data:string +@4505 = .rodata:0x80493A70; // type:object size:0x1C scope:local align:4 data:4byte +@5717 = .rodata:0x80493A8C; // type:object size:0xC scope:local align:4 data:string +@5809 = .rodata:0x80493A98; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493AA8; // type:label scope:local +@3789 = .rodata:0x80493AA8; // type:object size:0xF scope:local align:4 data:string +@3795 = .rodata:0x80493AB8; // type:object size:0x13 scope:local align:4 +@3873 = .rodata:0x80493ACC; // type:object size:0xF scope:local align:4 data:string +@3874 = .rodata:0x80493ADC; // type:object size:0x9 scope:local align:4 +@3878 = .rodata:0x80493AE8; // type:object size:0x17 scope:local align:4 +@3880 = .rodata:0x80493B00; // type:object size:0x9 scope:local align:4 +@3881 = .rodata:0x80493B0C; // type:object size:0x9 scope:local align:4 +@3883 = .rodata:0x80493B18; // type:object size:0xB scope:local align:4 +@3885 = .rodata:0x80493B24; // type:object size:0x9 scope:local align:4 +@3923 = .rodata:0x80493B30; // type:object size:0x13 scope:local align:4 data:string +@3924 = .rodata:0x80493B44; // type:object size:0x13 scope:local align:4 data:string +@3926 = .rodata:0x80493B58; // type:object size:0xF scope:local align:4 data:string +@3927 = .rodata:0x80493B68; // type:object size:0xE scope:local align:4 data:string +@3932 = .rodata:0x80493B78; // type:object size:0xD scope:local align:4 data:string +@3984 = .rodata:0x80493B88; // type:object size:0xD scope:local align:4 +@3986 = .rodata:0x80493B98; // type:object size:0xD scope:local align:4 +@3987 = .rodata:0x80493BA8; // type:object size:0xB scope:local align:4 +@3989 = .rodata:0x80493BB4; // type:object size:0xF scope:local align:4 +@3991 = .rodata:0x80493BC4; // type:object size:0x1F scope:local align:4 +@3993 = .rodata:0x80493BE4; // type:object size:0x13 scope:local align:4 +@3995 = .rodata:0x80493BF8; // type:object size:0x13 scope:local align:4 +@3997 = .rodata:0x80493C0C; // type:object size:0x12 scope:local align:4 +@3998 = .rodata:0x80493C20; // type:object size:0x11 scope:local align:4 +@4003 = .rodata:0x80493C34; // type:object size:0xB scope:local align:4 +@4004 = .rodata:0x80493C40; // type:object size:0xD scope:local align:4 +@4006 = .rodata:0x80493C50; // type:object size:0xB scope:local align:4 +@4007 = .rodata:0x80493C5C; // type:object size:0xB scope:local align:4 +@4009 = .rodata:0x80493C68; // type:object size:0x11 scope:local align:4 +@4010 = .rodata:0x80493C7C; // type:object size:0x9 scope:local align:4 +@4012 = .rodata:0x80493C88; // type:object size:0x9 scope:local align:4 +@4015 = .rodata:0x80493C94; // type:object size:0x9 scope:local align:4 +@4017 = .rodata:0x80493CA0; // type:object size:0x9 scope:local align:4 +@4019 = .rodata:0x80493CAC; // type:object size:0xB scope:local align:4 +@4020 = .rodata:0x80493CB8; // type:object size:0x11 scope:local align:4 +@4021 = .rodata:0x80493CCC; // type:object size:0xD scope:local align:4 +@4022 = .rodata:0x80493CDC; // type:object size:0xB scope:local align:4 +@4023 = .rodata:0x80493CE8; // type:object size:0xD scope:local align:4 +@4024 = .rodata:0x80493CF8; // type:object size:0xD scope:local align:4 +@4025 = .rodata:0x80493D08; // type:object size:0xF scope:local align:4 +@4026 = .rodata:0x80493D18; // type:object size:0xF scope:local align:4 +@4028 = .rodata:0x80493D28; // type:object size:0x9 scope:local align:4 +@4030 = .rodata:0x80493D34; // type:object size:0x9 scope:local align:4 +@4032 = .rodata:0x80493D40; // type:object size:0x17 scope:local align:4 +@4033 = .rodata:0x80493D58; // type:object size:0xD scope:local align:4 +@4034 = .rodata:0x80493D68; // type:object size:0xD scope:local align:4 +@4035 = .rodata:0x80493D78; // type:object size:0xF scope:local align:4 +@4036 = .rodata:0x80493D88; // type:object size:0xF scope:local align:4 +@4037 = .rodata:0x80493D98; // type:object size:0xF scope:local align:4 +@4038 = .rodata:0x80493DA8; // type:object size:0xF scope:local align:4 +@4039 = .rodata:0x80493DB8; // type:object size:0xF scope:local align:4 +@4040 = .rodata:0x80493DC8; // type:object size:0xF scope:local align:4 +@4041 = .rodata:0x80493DD8; // type:object size:0xF scope:local align:4 +@4091 = .rodata:0x80493DE8; // type:object size:0x13 scope:local align:4 data:string +@4092 = .rodata:0x80493DFC; // type:object size:0x9 scope:local align:4 data:string +@4093 = .rodata:0x80493E08; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493E20; // type:label scope:local +@3837 = .rodata:0x80493E20; // type:object size:0xC scope:local align:4 data:string +@3895 = .rodata:0x80493E2C; // type:object size:0x13 scope:local align:4 data:string +@3896 = .rodata:0x80493E40; // type:object size:0x10 scope:local align:4 data:string +@3897 = .rodata:0x80493E50; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80493E60; // type:label scope:local +@3546 = .rodata:0x80493E60; // type:object size:0x12 scope:local align:4 data:string +@3562 = .rodata:0x80493E74; // type:object size:0x16 scope:local align:4 data:string +@3563 = .rodata:0x80493E8C; // type:object size:0x9 scope:local align:4 data:string +@3790 = .rodata:0x80493E98; // type:object size:0xB scope:local align:4 data:string +@4242 = .rodata:0x80493EA8; // type:object size:0x80 scope:local align:8 data:4byte +@4375 = .rodata:0x80493F28; // type:object size:0x20 scope:local align:8 +@4929 = .rodata:0x80493F48; // type:object size:0x10 scope:local align:4 data:string +@4999 = .rodata:0x80493F58; // type:object size:0x10 scope:local align:8 +@5001 = .rodata:0x80493F68; // type:object size:0x15 scope:local align:4 data:string +@5002 = .rodata:0x80493F80; // type:object size:0x13 scope:local align:4 data:string +@5003 = .rodata:0x80493F94; // type:object size:0x15 scope:local align:4 data:string +@5004 = .rodata:0x80493FAC; // type:object size:0x17 scope:local align:4 data:string +@5005 = .rodata:0x80493FC4; // type:object size:0x10 scope:local align:4 +@5029 = .rodata:0x80493FD8; // type:object size:0x28 scope:local align:8 +@5036 = .rodata:0x80494000; // type:object size:0x2D0 scope:local align:8 +@5369 = .rodata:0x804942D0; // type:object size:0x27 scope:local align:4 data:string +@5370 = .rodata:0x804942F8; // type:object size:0x22 scope:local align:4 data:string +@5372 = .rodata:0x8049431C; // type:object size:0x19 scope:local align:4 data:string +@5373 = .rodata:0x80494338; // type:object size:0x1A scope:local align:4 data:string +@5374 = .rodata:0x80494354; // type:object size:0x1A scope:local align:4 data:string +@5375 = .rodata:0x80494370; // type:object size:0x1D scope:local align:4 data:string +@5376 = .rodata:0x80494390; // type:object size:0x1D scope:local align:4 data:string +@5377 = .rodata:0x804943B0; // type:object size:0x1D scope:local align:4 data:string +@5378 = .rodata:0x804943D0; // type:object size:0x1D scope:local align:4 data:string +@5379 = .rodata:0x804943F0; // type:object size:0x19 scope:local align:4 data:string +@5380 = .rodata:0x8049440C; // type:object size:0x19 scope:local align:4 data:string +@5381 = .rodata:0x80494428; // type:object size:0x19 scope:local align:4 data:string +@5382 = .rodata:0x80494444; // type:object size:0x19 scope:local align:4 data:string +@5383 = .rodata:0x80494460; // type:object size:0x1C scope:local align:4 data:string +@5384 = .rodata:0x8049447C; // type:object size:0x1C scope:local align:4 data:string +@5385 = .rodata:0x80494498; // type:object size:0x1C scope:local align:4 data:string +@5386 = .rodata:0x804944B4; // type:object size:0x1C scope:local align:4 data:string +@5387 = .rodata:0x804944D0; // type:object size:0x1C scope:local align:4 data:string +@5388 = .rodata:0x804944EC; // type:object size:0x1C scope:local align:4 data:string +@5389 = .rodata:0x80494508; // type:object size:0x1C scope:local align:4 data:string +@5390 = .rodata:0x80494524; // type:object size:0x10 scope:local align:4 data:string +@5925 = .rodata:0x80494534; // type:object size:0x9 scope:local align:4 data:string +@6174 = .rodata:0x80494540; // type:object size:0x10 scope:local align:4 data:string +@6175 = .rodata:0x80494550; // type:object size:0x10 scope:local align:4 data:string +@6176 = .rodata:0x80494560; // type:object size:0xF scope:local align:4 data:string +@6177 = .rodata:0x80494570; // type:object size:0x11 scope:local align:4 data:string +@6178 = .rodata:0x80494584; // type:object size:0xC scope:local align:4 data:string +@6511 = .rodata:0x80494590; // type:object size:0xA scope:local align:4 data:string +@6517 = .rodata:0x8049459C; // type:object size:0x18 scope:local align:4 data:string +@6562 = .rodata:0x804945B4; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804945C0; // type:label scope:local +@3749 = .rodata:0x804945C0; // type:object size:0x12 scope:local align:4 data:string +cRandArray__8Morimura = .rodata:0x804945D4; // type:object size:0x48 scope:local align:4 +@3758 = .rodata:0x80494620; // type:object size:0x98 scope:local align:8 data:4byte +@3809 = .rodata:0x804946B8; // type:object size:0x1F scope:local align:4 data:string +@3859 = .rodata:0x804946D8; // type:object size:0x18 scope:local align:8 data:string +@3870 = .rodata:0x804946F0; // type:object size:0x16 scope:local align:4 data:string +@3871 = .rodata:0x80494708; // type:object size:0x9 scope:local align:4 data:string +@4149 = .rodata:0x80494714; // type:object size:0xF scope:local align:4 data:string +@4582 = .rodata:0x80494724; // type:object size:0x10 scope:local align:4 data:string +@4644 = .rodata:0x80494738; // type:object size:0x10 scope:local align:8 +@5026 = .rodata:0x80494748; // type:object size:0x27 scope:local align:4 data:string +@5027 = .rodata:0x80494770; // type:object size:0x22 scope:local align:4 data:string +@5028 = .rodata:0x80494794; // type:object size:0x13 scope:local align:4 data:string +@5029 = .rodata:0x804947A8; // type:object size:0x15 scope:local align:4 data:string +@5030 = .rodata:0x804947C0; // type:object size:0x17 scope:local align:4 data:string +@5031 = .rodata:0x804947D8; // type:object size:0x1A scope:local align:4 data:string +@5032 = .rodata:0x804947F4; // type:object size:0x1A scope:local align:4 data:string +@5033 = .rodata:0x80494810; // type:object size:0x1A scope:local align:4 data:string +@5034 = .rodata:0x8049482C; // type:object size:0x1A scope:local align:4 data:string +@5035 = .rodata:0x80494848; // type:object size:0x1A scope:local align:4 data:string +@5036 = .rodata:0x80494864; // type:object size:0x1A scope:local align:4 data:string +@5037 = .rodata:0x80494880; // type:object size:0x1D scope:local align:4 data:string +@5038 = .rodata:0x804948A0; // type:object size:0x1D scope:local align:4 data:string +@5039 = .rodata:0x804948C0; // type:object size:0x14 scope:local align:4 data:string +@5042 = .rodata:0x804948D4; // type:object size:0x1F scope:local align:4 data:string +@5043 = .rodata:0x804948F4; // type:object size:0x1F scope:local align:4 data:string +@5287 = .rodata:0x80494914; // type:object size:0x9 scope:local align:4 data:string +@5798 = .rodata:0x80494920; // type:object size:0xF scope:local align:4 data:string +@5799 = .rodata:0x80494930; // type:object size:0xF scope:local align:4 data:string +@5800 = .rodata:0x80494940; // type:object size:0xF scope:local align:4 data:string +@5801 = .rodata:0x80494950; // type:object size:0xC scope:local align:4 data:string +@5802 = .rodata:0x8049495C; // type:object size:0x10 scope:local align:4 data:string +@5803 = .rodata:0x8049496C; // type:object size:0xC scope:local align:4 data:string +@5804 = .rodata:0x80494978; // type:object size:0xB scope:local align:4 data:string +@5916 = .rodata:0x80494984; // type:object size:0xC scope:local align:4 +@6781 = .rodata:0x80494990; // type:object size:0x18 scope:local align:4 data:string +@6818 = .rodata:0x804949A8; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804949B8; // type:label scope:local +@3552 = .rodata:0x804949B8; // type:object size:0xB scope:local align:4 data:string +@3591 = .rodata:0x804949C4; // type:object size:0xF scope:local align:4 data:string +@3592 = .rodata:0x804949D4; // type:object size:0x9 scope:local align:4 data:string +@4211 = .rodata:0x804949E0; // type:object size:0x9 scope:local align:4 data:string +@4280 = .rodata:0x804949EC; // type:object size:0x11 scope:local align:4 data:string +@4281 = .rodata:0x80494A00; // type:object size:0x12 scope:local align:4 data:string +@4282 = .rodata:0x80494A14; // type:object size:0x12 scope:local align:4 data:string +@4283 = .rodata:0x80494A28; // type:object size:0x13 scope:local align:4 data:string +@4284 = .rodata:0x80494A3C; // type:object size:0xF scope:local align:4 data:string +@4285 = .rodata:0x80494A4C; // type:object size:0x12 scope:local align:4 data:string +@4286 = .rodata:0x80494A60; // type:object size:0x12 scope:local align:4 data:string +@4287 = .rodata:0x80494A74; // type:object size:0x12 scope:local align:4 data:string +@4288 = .rodata:0x80494A88; // type:object size:0xF scope:local align:4 data:string +@4289 = .rodata:0x80494A98; // type:object size:0xE scope:local align:4 data:string +@4290 = .rodata:0x80494AA8; // type:object size:0x28 scope:local align:4 +@4298 = .rodata:0x80494AD0; // type:object size:0x12 scope:local align:4 data:string +@4299 = .rodata:0x80494AE4; // type:object size:0x12 scope:local align:4 data:string +@4300 = .rodata:0x80494AF8; // type:object size:0x12 scope:local align:4 data:string +@4301 = .rodata:0x80494B0C; // type:object size:0x12 scope:local align:4 data:string +@4302 = .rodata:0x80494B20; // type:object size:0x12 scope:local align:4 data:string +@4303 = .rodata:0x80494B34; // type:object size:0x14 scope:local align:4 +@4304 = .rodata:0x80494B48; // type:object size:0x10 scope:local align:4 data:string +@4305 = .rodata:0x80494B58; // type:object size:0x10 scope:local align:4 data:string +@4306 = .rodata:0x80494B68; // type:object size:0x10 scope:local align:4 data:string +@4307 = .rodata:0x80494B78; // type:object size:0x10 scope:local align:4 data:string +@4308 = .rodata:0x80494B88; // type:object size:0x10 scope:local align:4 data:string +@4309 = .rodata:0x80494B98; // type:object size:0x14 scope:local align:4 +@4316 = .rodata:0x80494BB0; // type:object size:0x60 scope:local align:8 data:string +@4332 = .rodata:0x80494C10; // type:object size:0x18 scope:local align:8 +@4341 = .rodata:0x80494C28; // type:object size:0x50 scope:local align:8 +@4350 = .rodata:0x80494C78; // type:object size:0x50 scope:local align:8 +@4375 = .rodata:0x80494CC8; // type:object size:0x28 scope:local align:8 +@4936 = .rodata:0x80494CF0; // type:object size:0x27 scope:local align:4 data:string +@4937 = .rodata:0x80494D18; // type:object size:0xC scope:local align:4 data:string +@4938 = .rodata:0x80494D24; // type:object size:0xC scope:local align:4 data:string +@4939 = .rodata:0x80494D30; // type:object size:0xC scope:local align:4 data:string +@4940 = .rodata:0x80494D3C; // type:object size:0xD scope:local align:4 data:string +@4941 = .rodata:0x80494D4C; // type:object size:0xD scope:local align:4 data:string +@4942 = .rodata:0x80494D5C; // type:object size:0xD scope:local align:4 data:string +@4943 = .rodata:0x80494D6C; // type:object size:0x10 scope:local align:4 data:string +@4944 = .rodata:0x80494D7C; // type:object size:0x18 scope:local align:4 data:string +@4945 = .rodata:0x80494D94; // type:object size:0xE scope:local align:4 data:string +@4946 = .rodata:0x80494DA4; // type:object size:0x14 scope:local align:4 data:string +@4947 = .rodata:0x80494DB8; // type:object size:0x14 scope:local align:4 data:string +@4950 = .rodata:0x80494DCC; // type:object size:0xC scope:local align:4 data:string +@4953 = .rodata:0x80494DD8; // type:object size:0x11 scope:local align:4 data:string +@4954 = .rodata:0x80494DEC; // type:object size:0x13 scope:local align:4 data:string +@4955 = .rodata:0x80494E00; // type:object size:0x13 scope:local align:4 data:string +@4956 = .rodata:0x80494E14; // type:object size:0x16 scope:local align:4 data:string +@4957 = .rodata:0x80494E2C; // type:object size:0x16 scope:local align:4 data:string +@4958 = .rodata:0x80494E44; // type:object size:0x13 scope:local align:4 data:string +@4959 = .rodata:0x80494E58; // type:object size:0x11 scope:local align:4 data:string +@4960 = .rodata:0x80494E6C; // type:object size:0x11 scope:local align:4 data:string +@4961 = .rodata:0x80494E80; // type:object size:0x13 scope:local align:4 data:string +@4962 = .rodata:0x80494E94; // type:object size:0x13 scope:local align:4 data:string +@4963 = .rodata:0x80494EA8; // type:object size:0x16 scope:local align:4 data:string +@4964 = .rodata:0x80494EC0; // type:object size:0x18 scope:local align:4 data:string +@4965 = .rodata:0x80494ED8; // type:object size:0x18 scope:local align:4 data:string +@4966 = .rodata:0x80494EF0; // type:object size:0x1B scope:local align:4 data:string +@4967 = .rodata:0x80494F0C; // type:object size:0x1B scope:local align:4 data:string +@4968 = .rodata:0x80494F28; // type:object size:0x1B scope:local align:4 data:string +@4969 = .rodata:0x80494F44; // type:object size:0x1B scope:local align:4 data:string +@4970 = .rodata:0x80494F60; // type:object size:0x1B scope:local align:4 data:string +@4971 = .rodata:0x80494F7C; // type:object size:0x1B scope:local align:4 data:string +@4972 = .rodata:0x80494F98; // type:object size:0x1B scope:local align:4 data:string +@4973 = .rodata:0x80494FB4; // type:object size:0x1B scope:local align:4 data:string +@4974 = .rodata:0x80494FD0; // type:object size:0x1B scope:local align:4 data:string +@4975 = .rodata:0x80494FEC; // type:object size:0x1B scope:local align:4 data:string +@4976 = .rodata:0x80495008; // type:object size:0x1B scope:local align:4 data:string +@5840 = .rodata:0x80495024; // type:object size:0xB scope:local align:4 data:string +@5958 = .rodata:0x80495030; // type:object size:0x19 scope:local align:4 data:string +@5959 = .rodata:0x8049504C; // type:object size:0x1B scope:local align:4 data:string +@6519 = .rodata:0x80495068; // type:object size:0xA scope:local align:4 data:string +@6525 = .rodata:0x80495074; // type:object size:0x11 scope:local align:4 data:string +@6566 = .rodata:0x80495088; // type:object size:0xC scope:local align:4 data:string +@3586 = .rodata:0x80495098; // type:object size:0xB scope:local align:4 data:string +@3683 = .rodata:0x804950A4; // type:object size:0x9 scope:local align:4 data:string +@3734 = .rodata:0x804950B0; // type:object size:0xF scope:local align:4 data:string +@3735 = .rodata:0x804950C0; // type:object size:0x9 scope:local align:4 data:string +@4237 = .rodata:0x804950D0; // type:object size:0x16 scope:local align:4 data:string +@4238 = .rodata:0x804950E8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804950F8; // type:label scope:local +@3787 = .rodata:0x804950F8; // type:object size:0xC scope:local align:4 data:string +@3793 = .rodata:0x80495104; // type:object size:0x11 scope:local align:4 +@3839 = .rodata:0x80495118; // type:object size:0xF scope:local align:4 data:string +@3840 = .rodata:0x80495128; // type:object size:0xF scope:local align:4 +@3843 = .rodata:0x80495138; // type:object size:0x9 scope:local align:4 +@3845 = .rodata:0x80495144; // type:object size:0xF scope:local align:4 +@3847 = .rodata:0x80495154; // type:object size:0x11 scope:local align:4 +@3849 = .rodata:0x80495168; // type:object size:0xA scope:local align:4 +@3852 = .rodata:0x80495174; // type:object size:0x10 scope:local align:4 +@3853 = .rodata:0x80495184; // type:object size:0x12 scope:local align:4 +@3854 = .rodata:0x80495198; // type:object size:0x9 scope:local align:4 +@3855 = .rodata:0x804951A4; // type:object size:0x12 scope:local align:4 +@3856 = .rodata:0x804951B8; // type:object size:0x13 scope:local align:4 +@3857 = .rodata:0x804951CC; // type:object size:0x11 scope:local align:4 +@3858 = .rodata:0x804951E0; // type:object size:0x11 scope:local align:4 +@3859 = .rodata:0x804951F4; // type:object size:0x13 scope:local align:4 +@3893 = .rodata:0x80495208; // type:object size:0x13 scope:local align:4 data:string +@3894 = .rodata:0x8049521C; // type:object size:0x13 scope:local align:4 data:string +@3896 = .rodata:0x80495230; // type:object size:0xF scope:local align:4 data:string +@3897 = .rodata:0x80495240; // type:object size:0xE scope:local align:4 data:string +@3902 = .rodata:0x80495250; // type:object size:0xD scope:local align:4 data:string +@3955 = .rodata:0x80495260; // type:object size:0xD scope:local align:4 +@3956 = .rodata:0x80495270; // type:object size:0xD scope:local align:4 +@3957 = .rodata:0x80495280; // type:object size:0xB scope:local align:4 +@3959 = .rodata:0x8049528C; // type:object size:0xF scope:local align:4 +@3961 = .rodata:0x8049529C; // type:object size:0x1F scope:local align:4 +@3962 = .rodata:0x804952BC; // type:object size:0x13 scope:local align:4 +@3964 = .rodata:0x804952D0; // type:object size:0x13 scope:local align:4 +@3965 = .rodata:0x804952E4; // type:object size:0x12 scope:local align:4 +@3966 = .rodata:0x804952F8; // type:object size:0x11 scope:local align:4 +@3971 = .rodata:0x8049530C; // type:object size:0xB scope:local align:4 +@3972 = .rodata:0x80495318; // type:object size:0xD scope:local align:4 +@3973 = .rodata:0x80495328; // type:object size:0xB scope:local align:4 +@3974 = .rodata:0x80495334; // type:object size:0xB scope:local align:4 +@3976 = .rodata:0x80495340; // type:object size:0x11 scope:local align:4 +@3978 = .rodata:0x80495354; // type:object size:0x9 scope:local align:4 +@3980 = .rodata:0x80495360; // type:object size:0x9 scope:local align:4 +@3983 = .rodata:0x8049536C; // type:object size:0x9 scope:local align:4 +@3985 = .rodata:0x80495378; // type:object size:0x9 scope:local align:4 +@3987 = .rodata:0x80495384; // type:object size:0xB scope:local align:4 +@3988 = .rodata:0x80495390; // type:object size:0x11 scope:local align:4 +@3989 = .rodata:0x804953A4; // type:object size:0xD scope:local align:4 +@3990 = .rodata:0x804953B4; // type:object size:0xB scope:local align:4 +@3991 = .rodata:0x804953C0; // type:object size:0xD scope:local align:4 +@3992 = .rodata:0x804953D0; // type:object size:0xD scope:local align:4 +@3993 = .rodata:0x804953E0; // type:object size:0xF scope:local align:4 +@3994 = .rodata:0x804953F0; // type:object size:0xF scope:local align:4 +@3996 = .rodata:0x80495400; // type:object size:0x9 scope:local align:4 +@3998 = .rodata:0x8049540C; // type:object size:0x9 scope:local align:4 +@4000 = .rodata:0x80495418; // type:object size:0x17 scope:local align:4 +@4001 = .rodata:0x80495430; // type:object size:0xD scope:local align:4 +@4003 = .rodata:0x80495440; // type:object size:0xD scope:local align:4 +@4004 = .rodata:0x80495450; // type:object size:0xF scope:local align:4 +@4005 = .rodata:0x80495460; // type:object size:0xF scope:local align:4 +@4006 = .rodata:0x80495470; // type:object size:0xF scope:local align:4 +@4007 = .rodata:0x80495480; // type:object size:0xF scope:local align:4 +@4008 = .rodata:0x80495490; // type:object size:0xF scope:local align:4 +@4009 = .rodata:0x804954A0; // type:object size:0xF scope:local align:4 +@4010 = .rodata:0x804954B0; // type:object size:0xF scope:local align:4 +@4046 = .rodata:0x804954C0; // type:object size:0x10 scope:local align:4 data:string +@4047 = .rodata:0x804954D0; // type:object size:0x9 scope:local align:4 data:string +@4061 = .rodata:0x804954DC; // type:object size:0x28 scope:local align:4 data:string +@4099 = .rodata:0x80495504; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495510; // type:label scope:local +@3905 = .rodata:0x80495510; // type:object size:0xC scope:local align:4 +@4027 = .rodata:0x8049551C; // type:object size:0x9 scope:local align:4 data:string +@4262 = .rodata:0x80495528; // type:object size:0xD scope:local align:4 data:string +@4263 = .rodata:0x80495538; // type:object size:0x9 scope:local align:4 data:string +@4266 = .rodata:0x80495544; // type:object size:0x9 scope:local align:4 data:string +@4267 = .rodata:0x80495550; // type:object size:0x9 scope:local align:4 data:string +@4276 = .rodata:0x8049555C; // type:object size:0x16 scope:local align:4 data:string +@4277 = .rodata:0x80495574; // type:object size:0x9 scope:local align:4 data:string +@4690 = .rodata:0x80495580; // type:object size:0x9 scope:local align:4 data:string +@4691 = .rodata:0x8049558C; // type:object size:0xA scope:local align:4 data:string +@4692 = .rodata:0x80495598; // type:object size:0xD scope:local align:4 data:string +@6243 = .rodata:0x804955A8; // type:object size:0x18 scope:local align:4 data:string +@6258 = .rodata:0x804955C0; // type:object size:0x16 scope:local align:4 data:string +@6380 = .rodata:0x804955D8; // type:object size:0x10 scope:local align:4 +@6381 = .rodata:0x804955E8; // type:object size:0x10 scope:local align:4 +@6386 = .rodata:0x804955F8; // type:object size:0x10 scope:local align:4 +@6391 = .rodata:0x80495608; // type:object size:0x10 scope:local align:4 +@6392 = .rodata:0x80495618; // type:object size:0xA scope:local align:4 data:string +@6393 = .rodata:0x80495624; // type:object size:0xA scope:local align:4 data:string +@6396 = .rodata:0x80495630; // type:object size:0x10 scope:local align:4 +@7008 = .rodata:0x80495640; // type:object size:0x24 scope:local align:4 data:string +@7012 = .rodata:0x80495664; // type:object size:0xC scope:local align:4 data:string +@3784 = .rodata:0x80495670; // type:object size:0x11 scope:local align:4 +@3805 = .rodata:0x80495684; // type:object size:0xF scope:local align:4 data:string +@3806 = .rodata:0x80495694; // type:object size:0xD scope:local align:4 +@4008 = .rodata:0x804956A4; // type:object size:0xC scope:local align:4 data:string +@4009 = .rodata:0x804956B0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804956C0; // type:label scope:local +@3877 = .rodata:0x804956C0; // type:object size:0xC scope:local align:4 +@3998 = .rodata:0x804956CC; // type:object size:0x9 scope:local align:4 data:string +@3999 = .rodata:0x804956D8; // type:object size:0x9 scope:local align:4 data:string +@4000 = .rodata:0x804956E4; // type:object size:0xA scope:local align:4 data:string +@4001 = .rodata:0x804956F0; // type:object size:0x9 scope:local align:4 data:string +@4972 = .rodata:0x804956FC; // type:object size:0xD scope:local align:4 data:string +@5002 = .rodata:0x8049570C; // type:object size:0xD scope:local align:4 data:string +@2886 = .rodata:0x80495720; // type:object size:0xC scope:local align:4 data:string +@3097 = .rodata:0x8049572C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495738; // type:label scope:local +@3035 = .rodata:0x80495738; // type:object size:0xD scope:local align:4 data:string +@3074 = .rodata:0x80495748; // type:object size:0x9 scope:local align:4 data:string +@3075 = .rodata:0x80495754; // type:object size:0x9 scope:local align:4 data:string +@3379 = .rodata:0x80495760; // type:object size:0xA scope:local align:4 data:string +@3695 = .rodata:0x8049576C; // type:object size:0x30 scope:local align:4 data:4byte +@4221 = .rodata:0x8049579C; // type:object size:0x30 scope:local align:4 data:4byte +@4251 = .rodata:0x804957CC; // type:object size:0xC scope:local align:4 data:string +@4255 = .rodata:0x804957D8; // type:object size:0x18 scope:local align:4 data:4byte +@4343 = .rodata:0x804957F0; // type:object size:0xD scope:local align:4 data:string +@4347 = .rodata:0x80495800; // type:object size:0x24 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x80495828; // type:label scope:local +@3039 = .rodata:0x80495828; // type:object size:0xE scope:local align:4 data:string +@3081 = .rodata:0x80495838; // type:object size:0x9 scope:local align:4 data:string +@3082 = .rodata:0x80495844; // type:object size:0x9 scope:local align:4 data:string +@3334 = .rodata:0x80495850; // type:object size:0xA scope:local align:4 data:string +@3352 = .rodata:0x8049585C; // type:object size:0xB scope:local align:4 data:string +@3391 = .rodata:0x80495868; // type:object size:0x30 scope:local align:4 data:4byte +@3400 = .rodata:0x80495898; // type:object size:0x30 scope:local align:4 data:4byte +...rodata.0 = .rodata:0x804958C8; // type:label scope:local +@3047 = .rodata:0x804958C8; // type:object size:0xE scope:local align:4 data:string +@3122 = .rodata:0x804958D8; // type:object size:0x9 scope:local align:4 data:string +@3177 = .rodata:0x804958E4; // type:object size:0xF scope:local align:4 data:string +@3243 = .rodata:0x804958F4; // type:object size:0xA scope:local align:4 data:string +@4172 = .rodata:0x80495900; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495910; // type:label scope:local +@2932 = .rodata:0x80495910; // type:object size:0xC scope:local align:4 +@3622 = .rodata:0x8049591C; // type:object size:0xE scope:local align:4 data:string +@3661 = .rodata:0x8049592C; // type:object size:0xF scope:local align:4 data:string +@3672 = .rodata:0x8049593C; // type:object size:0x1B scope:local align:4 data:string +@3673 = .rodata:0x80495958; // type:object size:0x12 scope:local align:4 data:string +@3674 = .rodata:0x8049596C; // type:object size:0x9 scope:local align:4 data:string +@3693 = .rodata:0x80495978; // type:object size:0x1D scope:local align:4 data:string +@3694 = .rodata:0x80495998; // type:object size:0x1A scope:local align:4 data:string +@3695 = .rodata:0x804959B4; // type:object size:0x21 scope:local align:4 data:string +@3776 = .rodata:0x804959D8; // type:object size:0xA scope:local align:4 data:string +@2760 = .rodata:0x804959E8; // type:object size:0xE scope:local align:4 data:string +@2761 = .rodata:0x804959F8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80495A08; // type:label scope:local +@2762 = .rodata:0x80495A08; // type:object size:0xC scope:local align:4 data:string +@2850 = .rodata:0x80495A14; // type:object size:0x9 scope:local align:4 data:string +@2851 = .rodata:0x80495A20; // type:object size:0x10 scope:local align:4 data:string +@2852 = .rodata:0x80495A30; // type:object size:0x9 scope:local align:4 data:string +@2933 = .rodata:0x80495A3C; // type:object size:0x13 scope:local align:4 data:string +@2962 = .rodata:0x80495A50; // type:object size:0x9 scope:local align:4 data:string +@3116 = .rodata:0x80495A5C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80495A68; // type:label scope:local +@2848 = .rodata:0x80495A68; // type:object size:0xC scope:local align:4 +@3467 = .rodata:0x80495A74; // type:object size:0xC scope:local align:4 data:string +@3522 = .rodata:0x80495A80; // type:object size:0xC scope:local align:4 data:string +@3584 = .rodata:0x80495A8C; // type:object size:0x10 scope:local align:4 data:string +@3585 = .rodata:0x80495A9C; // type:object size:0x9 scope:local align:4 data:string +@3604 = .rodata:0x80495AA8; // type:object size:0x1D scope:local align:4 data:string +@3605 = .rodata:0x80495AC8; // type:object size:0x21 scope:local align:4 data:string +@3656 = .rodata:0x80495AEC; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80495AF8; // type:label scope:local +@3020 = .rodata:0x80495AF8; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x80495B04; // type:object size:0xB scope:local align:4 data:string +@3460 = .rodata:0x80495B10; // type:object size:0xA scope:local align:4 data:string +@3464 = .rodata:0x80495B1C; // type:object size:0x17 scope:local align:4 data:string +@3465 = .rodata:0x80495B34; // type:object size:0xF scope:local align:4 +@3472 = .rodata:0x80495B44; // type:object size:0x14 scope:local align:4 data:string +@3473 = .rodata:0x80495B58; // type:object size:0xF scope:local align:4 +@3505 = .rodata:0x80495B68; // type:object size:0x11 scope:local align:4 data:string +@3506 = .rodata:0x80495B7C; // type:object size:0xE scope:local align:4 +@3509 = .rodata:0x80495B8C; // type:object size:0xE scope:local align:4 +@3511 = .rodata:0x80495B9C; // type:object size:0xE scope:local align:4 +@3513 = .rodata:0x80495BAC; // type:object size:0xE scope:local align:4 +@3515 = .rodata:0x80495BBC; // type:object size:0x16 scope:local align:4 +@3518 = .rodata:0x80495BD4; // type:object size:0x16 scope:local align:4 +@3521 = .rodata:0x80495BEC; // type:object size:0x15 scope:local align:4 +@3524 = .rodata:0x80495C04; // type:object size:0x2F scope:local align:4 +@3526 = .rodata:0x80495C34; // type:object size:0x13 scope:local align:4 +@3528 = .rodata:0x80495C48; // type:object size:0x11 scope:local align:4 +@3530 = .rodata:0x80495C5C; // type:object size:0x12 scope:local align:4 +@3533 = .rodata:0x80495C70; // type:object size:0x12 scope:local align:4 +@3534 = .rodata:0x80495C84; // type:object size:0x12 scope:local align:4 +@3536 = .rodata:0x80495C98; // type:object size:0xF scope:local align:4 +@3537 = .rodata:0x80495CA8; // type:object size:0xF scope:local align:4 +@3538 = .rodata:0x80495CB8; // type:object size:0x17 scope:local align:4 +@3540 = .rodata:0x80495CD0; // type:object size:0x19 scope:local align:4 +@3565 = .rodata:0x80495CEC; // type:object size:0x9 scope:local align:4 data:string +@3566 = .rodata:0x80495CF8; // type:object size:0xD scope:local align:4 +@3567 = .rodata:0x80495D08; // type:object size:0x11 scope:local align:4 +@3577 = .rodata:0x80495D1C; // type:object size:0xA scope:local align:4 data:string +@3578 = .rodata:0x80495D28; // type:object size:0x10 scope:local align:4 +@3579 = .rodata:0x80495D38; // type:object size:0x10 scope:local align:4 +@3580 = .rodata:0x80495D48; // type:object size:0x10 scope:local align:4 +@3581 = .rodata:0x80495D58; // type:object size:0x10 scope:local align:4 +@3594 = .rodata:0x80495D68; // type:object size:0xB scope:local align:4 data:string +@3595 = .rodata:0x80495D74; // type:object size:0xA scope:local align:4 +@3596 = .rodata:0x80495D80; // type:object size:0xA scope:local align:4 +@3597 = .rodata:0x80495D8C; // type:object size:0xA scope:local align:4 +@3598 = .rodata:0x80495D98; // type:object size:0xA scope:local align:4 +@3622 = .rodata:0x80495DA4; // type:object size:0xB scope:local align:4 data:string +@3628 = .rodata:0x80495DB0; // type:object size:0xE scope:local align:4 +@3629 = .rodata:0x80495DC0; // type:object size:0x10 scope:local align:4 +@3630 = .rodata:0x80495DD0; // type:object size:0xF scope:local align:4 +@3842 = .rodata:0x80495DE0; // type:object size:0xE scope:local align:4 data:string +@3843 = .rodata:0x80495DF0; // type:object size:0xF scope:local align:4 data:string +@3844 = .rodata:0x80495E00; // type:object size:0xE scope:local align:4 data:string +@4016 = .rodata:0x80495E10; // type:object size:0x1A scope:local align:4 data:string +@4017 = .rodata:0x80495E2C; // type:object size:0x23 scope:local align:4 data:string +@4018 = .rodata:0x80495E50; // type:object size:0x1D scope:local align:4 data:string +@4019 = .rodata:0x80495E70; // type:object size:0xF scope:local align:4 data:string +@4020 = .rodata:0x80495E80; // type:object size:0x9 scope:local align:4 data:string +@4021 = .rodata:0x80495E8C; // type:object size:0x16 scope:local align:4 data:string +@4022 = .rodata:0x80495EA4; // type:object size:0x14 scope:local align:4 data:string +@4023 = .rodata:0x80495EB8; // type:object size:0x19 scope:local align:4 data:string +@4024 = .rodata:0x80495ED4; // type:object size:0x14 scope:local align:4 data:string +@4025 = .rodata:0x80495EE8; // type:object size:0x1D scope:local align:4 data:string +@4026 = .rodata:0x80495F08; // type:object size:0x1B scope:local align:4 data:string +@4027 = .rodata:0x80495F24; // type:object size:0x1D scope:local align:4 data:string +@4028 = .rodata:0x80495F44; // type:object size:0x1B scope:local align:4 data:string +@4029 = .rodata:0x80495F60; // type:object size:0x1D scope:local align:4 data:string +@4030 = .rodata:0x80495F80; // type:object size:0x1B scope:local align:4 data:string +@4031 = .rodata:0x80495F9C; // type:object size:0x1D scope:local align:4 data:string +@4032 = .rodata:0x80495FBC; // type:object size:0x1B scope:local align:4 data:string +@4034 = .rodata:0x80495FD8; // type:object size:0x21 scope:local align:4 data:string +@4035 = .rodata:0x80495FFC; // type:object size:0x21 scope:local align:4 data:string +@4036 = .rodata:0x80496020; // type:object size:0x21 scope:local align:4 data:string +@4037 = .rodata:0x80496044; // type:object size:0x21 scope:local align:4 data:string +@5545 = .rodata:0x80496068; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80496078; // type:label scope:local +@2736 = .rodata:0x80496078; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x80496084; // type:object size:0xF scope:local align:4 data:string +@3485 = .rodata:0x80496094; // type:object size:0xC scope:local align:4 data:string +@3486 = .rodata:0x804960A0; // type:object size:0x13 scope:local align:4 data:string +@3487 = .rodata:0x804960B4; // type:object size:0x9 scope:local align:4 data:string +@3488 = .rodata:0x804960C0; // type:object size:0x11 scope:local align:4 data:string +@3489 = .rodata:0x804960D4; // type:object size:0x11 scope:local align:4 data:string +@3621 = .rodata:0x804960E8; // type:object size:0xA scope:local align:4 data:string +@3622 = .rodata:0x804960F4; // type:object size:0xA scope:local align:4 data:string +@3896 = .rodata:0x80496100; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80496110; // type:label scope:local +@3655 = .rodata:0x80496110; // type:object size:0x14 scope:local align:4 data:string +@3680 = .rodata:0x80496124; // type:object size:0x20 scope:local align:4 data:string +@3681 = .rodata:0x80496144; // type:object size:0x10 scope:local align:4 data:string +@3682 = .rodata:0x80496154; // type:object size:0x18 scope:local align:4 data:string +@3683 = .rodata:0x8049616C; // type:object size:0x9 scope:local align:4 data:string +@3714 = .rodata:0x80496178; // type:object size:0x1E scope:local align:4 data:string +@3715 = .rodata:0x80496198; // type:object size:0x10 scope:local align:4 data:string +@3716 = .rodata:0x804961A8; // type:object size:0x10 scope:local align:4 data:string +@3717 = .rodata:0x804961B8; // type:object size:0x19 scope:local align:4 data:string +@3718 = .rodata:0x804961D4; // type:object size:0x19 scope:local align:4 data:string +@3719 = .rodata:0x804961F0; // type:object size:0x14 scope:local align:4 data:string +@3720 = .rodata:0x80496204; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496218; // type:label scope:local +@2910 = .rodata:0x80496218; // type:object size:0x14 scope:local align:4 data:string +@3809 = .rodata:0x8049622C; // type:object size:0xE scope:local align:4 data:string +@4146 = .rodata:0x8049623C; // type:object size:0x9 scope:local align:4 data:string +@4147 = .rodata:0x80496248; // type:object size:0x19 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496268; // type:label scope:local +@2894 = .rodata:0x80496268; // type:object size:0x14 scope:local align:4 data:string +@2992 = .rodata:0x8049627C; // type:object size:0xD scope:local align:4 data:string +@2993 = .rodata:0x8049628C; // type:object size:0x9 scope:local align:4 data:string +@3056 = .rodata:0x80496298; // type:object size:0x9 scope:local align:4 data:string +@2674 = .rodata:0x804962A8; // type:object size:0xF scope:local align:4 data:string +@2675 = .rodata:0x804962B8; // type:object size:0x9 scope:local align:4 data:string +@2881 = .rodata:0x804962C8; // type:object size:0xF scope:local align:4 data:string +@2882 = .rodata:0x804962D8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804962E8; // type:label scope:local +@3682 = .rodata:0x804962E8; // type:object size:0x10 scope:local align:4 data:string +@3818 = .rodata:0x804962F8; // type:object size:0x1C scope:local align:4 data:string +@3819 = .rodata:0x80496314; // type:object size:0x28 scope:local align:4 data:string +@3820 = .rodata:0x8049633C; // type:object size:0xB scope:local align:4 data:string +@3821 = .rodata:0x80496348; // type:object size:0x20 scope:local align:4 data:string +@3822 = .rodata:0x80496368; // type:object size:0xB scope:local align:4 data:string +@4266 = .rodata:0x80496374; // type:object size:0x16 scope:local align:4 data:string +@4267 = .rodata:0x8049638C; // type:object size:0xE scope:local align:4 data:string +@4268 = .rodata:0x8049639C; // type:object size:0x14 scope:local align:4 data:string +@4269 = .rodata:0x804963B0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804963C0; // type:label scope:local +@3651 = .rodata:0x804963C0; // type:object size:0x10 scope:local align:4 data:string +@3659 = .rodata:0x804963D0; // type:object size:0x1C scope:local align:4 data:string +@3660 = .rodata:0x804963EC; // type:object size:0xB scope:local align:4 data:string +@3661 = .rodata:0x804963F8; // type:object size:0x14 scope:local align:4 data:string +@3662 = .rodata:0x8049640C; // type:object size:0x9 scope:local align:4 data:string +@3680 = .rodata:0x80496418; // type:object size:0x1A scope:local align:4 data:string +@3681 = .rodata:0x80496434; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80496440; // type:label scope:local +@3806 = .rodata:0x80496440; // type:object size:0xD scope:local align:4 data:string +@3908 = .rodata:0x80496450; // type:object size:0xB scope:local align:4 data:string +@3909 = .rodata:0x8049645C; // type:object size:0xB scope:local align:4 data:string +@3910 = .rodata:0x80496468; // type:object size:0xB scope:local align:4 data:string +@3911 = .rodata:0x80496474; // type:object size:0xC scope:local align:4 data:string +@3913 = .rodata:0x80496480; // type:object size:0x13 scope:local align:4 data:string +@3914 = .rodata:0x80496494; // type:object size:0x13 scope:local align:4 data:string +@4085 = .rodata:0x804964A8; // type:object size:0x11 scope:local align:4 data:string +@4086 = .rodata:0x804964BC; // type:object size:0x31 scope:local align:4 data:string +@4380 = .rodata:0x804964F0; // type:object size:0x1B scope:local align:4 data:string +@4450 = .rodata:0x8049650C; // type:object size:0x9 scope:local align:4 data:string +@3781 = .rodata:0x80496518; // type:object size:0x12 scope:local align:4 data:string +@3782 = .rodata:0x8049652C; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496538; // type:label scope:local +@3682 = .rodata:0x80496538; // type:object size:0xB scope:local align:4 data:string +@4058 = .rodata:0x80496544; // type:object size:0xC scope:local align:4 data:string +@4059 = .rodata:0x80496550; // type:object size:0xB scope:local align:4 data:string +@4060 = .rodata:0x8049655C; // type:object size:0xC scope:local align:4 data:string +@4061 = .rodata:0x80496568; // type:object size:0x10 scope:local align:4 data:string +@4062 = .rodata:0x80496578; // type:object size:0x10 scope:local align:4 data:string +@4063 = .rodata:0x80496588; // type:object size:0x11 scope:local align:4 data:string +@4064 = .rodata:0x8049659C; // type:object size:0x12 scope:local align:4 data:string +@4065 = .rodata:0x804965B0; // type:object size:0x12 scope:local align:4 data:string +@4066 = .rodata:0x804965C4; // type:object size:0x12 scope:local align:4 data:string +@4067 = .rodata:0x804965D8; // type:object size:0x11 scope:local align:4 data:string +@4068 = .rodata:0x804965EC; // type:object size:0x18 scope:local align:4 data:string +@4069 = .rodata:0x80496604; // type:object size:0x12 scope:local align:4 data:string +@4070 = .rodata:0x80496618; // type:object size:0x18 scope:local align:4 data:string +@4071 = .rodata:0x80496630; // type:object size:0x19 scope:local align:4 data:string +@4072 = .rodata:0x8049664C; // type:object size:0x1F scope:local align:4 data:string +@4073 = .rodata:0x8049666C; // type:object size:0x20 scope:local align:4 data:string +@4074 = .rodata:0x8049668C; // type:object size:0x16 scope:local align:4 data:string +@4075 = .rodata:0x804966A4; // type:object size:0x17 scope:local align:4 data:string +@4076 = .rodata:0x804966BC; // type:object size:0x1D scope:local align:4 data:string +@4077 = .rodata:0x804966DC; // type:object size:0x1A scope:local align:4 data:string +@4078 = .rodata:0x804966F8; // type:object size:0x10 scope:local align:4 data:string +@4079 = .rodata:0x80496708; // type:object size:0x17 scope:local align:4 data:string +@4080 = .rodata:0x80496720; // type:object size:0x1E scope:local align:4 data:string +@4081 = .rodata:0x80496740; // type:object size:0x11 scope:local align:4 data:string +@4082 = .rodata:0x80496754; // type:object size:0xE scope:local align:4 data:string +@4083 = .rodata:0x80496764; // type:object size:0x15 scope:local align:4 data:string +@4227 = .rodata:0x8049677C; // type:object size:0xF scope:local align:4 data:string +@4228 = .rodata:0x8049678C; // type:object size:0x9 scope:local align:4 data:string +@2723 = .rodata:0x80496798; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x804967A8; // type:label scope:local +@3650 = .rodata:0x804967A8; // type:object size:0x13 scope:local align:4 data:string +@3691 = .rodata:0x804967BC; // type:object size:0x28 scope:local align:4 data:string +@3692 = .rodata:0x804967E4; // type:object size:0x11 scope:local align:4 data:string +@3693 = .rodata:0x804967F8; // type:object size:0x28 scope:local align:4 data:string +@3694 = .rodata:0x80496820; // type:object size:0x11 scope:local align:4 data:string +@3695 = .rodata:0x80496834; // type:object size:0x28 scope:local align:4 data:string +@3696 = .rodata:0x8049685C; // type:object size:0x11 scope:local align:4 data:string +@3697 = .rodata:0x80496870; // type:object size:0x28 scope:local align:4 data:string +@3698 = .rodata:0x80496898; // type:object size:0x11 scope:local align:4 data:string +@3699 = .rodata:0x804968AC; // type:object size:0x2D scope:local align:4 data:string +@3700 = .rodata:0x804968DC; // type:object size:0x11 scope:local align:4 data:string +@3701 = .rodata:0x804968F0; // type:object size:0x11 scope:local align:4 data:string +@3702 = .rodata:0x80496904; // type:object size:0x11 scope:local align:4 data:string +@3703 = .rodata:0x80496918; // type:object size:0x11 scope:local align:4 data:string +@3704 = .rodata:0x8049692C; // type:object size:0x11 scope:local align:4 data:string +@3705 = .rodata:0x80496940; // type:object size:0x11 scope:local align:4 data:string +@3706 = .rodata:0x80496954; // type:object size:0x11 scope:local align:4 data:string +@3707 = .rodata:0x80496968; // type:object size:0x11 scope:local align:4 data:string +@3806 = .rodata:0x8049697C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80496988; // type:label scope:local +@3720 = .rodata:0x80496988; // type:object size:0x14 scope:local align:4 data:string +@3730 = .rodata:0x8049699C; // type:object size:0x28 scope:local align:4 data:string +@3731 = .rodata:0x804969C4; // type:object size:0x17 scope:local align:4 data:string +@3732 = .rodata:0x804969DC; // type:object size:0x34 scope:local align:4 data:string +@3760 = .rodata:0x80496A10; // type:object size:0x18 scope:local align:4 data:string +@3761 = .rodata:0x80496A28; // type:object size:0x9 scope:local align:4 data:string +@3771 = .rodata:0x80496A34; // type:object size:0x18 scope:local align:4 data:string +@4367 = .rodata:0x80496A4C; // type:object size:0x20 scope:local align:4 data:string +@4368 = .rodata:0x80496A6C; // type:object size:0x10 scope:local align:4 data:string +@4488 = .rodata:0x80496A7C; // type:object size:0x1E scope:local align:4 data:string +@4489 = .rodata:0x80496A9C; // type:object size:0x28 scope:local align:4 data:string +@4490 = .rodata:0x80496AC4; // type:object size:0x10 scope:local align:4 data:string +@4491 = .rodata:0x80496AD4; // type:object size:0x10 scope:local align:4 data:string +@4492 = .rodata:0x80496AE4; // type:object size:0x10 scope:local align:4 data:string +@4493 = .rodata:0x80496AF4; // type:object size:0x13 scope:local align:4 data:string +@4494 = .rodata:0x80496B08; // type:object size:0x13 scope:local align:4 data:string +@4495 = .rodata:0x80496B1C; // type:object size:0x10 scope:local align:4 data:string +@4496 = .rodata:0x80496B2C; // type:object size:0x13 scope:local align:4 data:string +@4497 = .rodata:0x80496B40; // type:object size:0x10 scope:local align:4 data:string +@4498 = .rodata:0x80496B50; // type:object size:0x2A scope:local align:4 data:string +@5643 = .rodata:0x80496B7C; // type:object size:0x13 scope:local align:4 data:string +@5644 = .rodata:0x80496B90; // type:object size:0xD scope:local align:4 data:string +@5645 = .rodata:0x80496BA0; // type:object size:0xF scope:local align:4 data:string +@5719 = .rodata:0x80496BB0; // type:object size:0x9 scope:local align:4 data:string +@5721 = .rodata:0x80496BBC; // type:object size:0xC scope:local align:4 data:string +@5735 = .rodata:0x80496BC8; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80496BD8; // type:label scope:local +@3660 = .rodata:0x80496BD8; // type:object size:0x13 scope:local align:4 data:string +@3715 = .rodata:0x80496BEC; // type:object size:0x17 scope:local align:4 data:string +@3716 = .rodata:0x80496C04; // type:object size:0x11 scope:local align:4 data:string +@3717 = .rodata:0x80496C18; // type:object size:0x17 scope:local align:4 data:string +@3718 = .rodata:0x80496C30; // type:object size:0x9 scope:local align:4 data:string +@3719 = .rodata:0x80496C3C; // type:object size:0x11 scope:local align:4 data:string +@3720 = .rodata:0x80496C50; // type:object size:0x11 scope:local align:4 data:string +@4019 = .rodata:0x80496C64; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80496C70; // type:label scope:local +@3700 = .rodata:0x80496C70; // type:object size:0xB scope:local align:4 data:string +@3818 = .rodata:0x80496C7C; // type:object size:0xA scope:local align:4 data:string +@3819 = .rodata:0x80496C88; // type:object size:0xE scope:local align:4 data:string +@3820 = .rodata:0x80496C98; // type:object size:0xB scope:local align:4 data:string +@3821 = .rodata:0x80496CA4; // type:object size:0x10 scope:local align:4 data:string +@3822 = .rodata:0x80496CB4; // type:object size:0x10 scope:local align:4 data:string +@3824 = .rodata:0x80496CC4; // type:object size:0xA scope:local align:4 data:string +@3825 = .rodata:0x80496CD0; // type:object size:0xA scope:local align:4 data:string +@3936 = .rodata:0x80496CDC; // type:object size:0xF scope:local align:4 data:string +@3937 = .rodata:0x80496CEC; // type:object size:0x9 scope:local align:4 data:string +@4237 = .rodata:0x80496CF8; // type:object size:0x17 scope:local align:4 +...rodata.0 = .rodata:0x80496D10; // type:label scope:local +@3672 = .rodata:0x80496D10; // type:object size:0x12 scope:local align:4 data:string +@3693 = .rodata:0x80496D24; // type:object size:0x10 scope:local align:4 data:string +@3902 = .rodata:0x80496D34; // type:object size:0x1E scope:local align:4 data:string +@3903 = .rodata:0x80496D54; // type:object size:0x10 scope:local align:4 data:string +@3904 = .rodata:0x80496D64; // type:object size:0x16 scope:local align:4 data:string +@3905 = .rodata:0x80496D7C; // type:object size:0x9 scope:local align:4 data:string +@4006 = .rodata:0x80496D88; // type:object size:0x24 scope:local align:4 +@4100 = .rodata:0x80496DAC; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80496DB8; // type:label scope:local +@3697 = .rodata:0x80496DB8; // type:object size:0x18 scope:local align:4 data:string +@3909 = .rodata:0x80496DD0; // type:object size:0xA scope:local align:4 data:string +@3910 = .rodata:0x80496DDC; // type:object size:0xA scope:local align:4 data:string +@3911 = .rodata:0x80496DE8; // type:object size:0xB scope:local align:4 data:string +@3912 = .rodata:0x80496DF4; // type:object size:0xB scope:local align:4 data:string +@3913 = .rodata:0x80496E00; // type:object size:0xB scope:local align:4 data:string +@3914 = .rodata:0x80496E0C; // type:object size:0xA scope:local align:4 data:string +@3915 = .rodata:0x80496E18; // type:object size:0xC scope:local align:4 data:string +@3916 = .rodata:0x80496E24; // type:object size:0x15 scope:local align:4 data:string +@3917 = .rodata:0x80496E3C; // type:object size:0xD scope:local align:4 data:string +@3918 = .rodata:0x80496E4C; // type:object size:0xD scope:local align:4 data:string +@3919 = .rodata:0x80496E5C; // type:object size:0xF scope:local align:4 data:string +@3920 = .rodata:0x80496E6C; // type:object size:0xB scope:local align:4 data:string +@3922 = .rodata:0x80496E78; // type:object size:0xB scope:local align:4 data:string +@4185 = .rodata:0x80496E84; // type:object size:0x1C scope:local align:4 data:string +@4186 = .rodata:0x80496EA0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496EB0; // type:label scope:local +@3698 = .rodata:0x80496EB0; // type:object size:0x11 scope:local align:4 data:string +@3780 = .rodata:0x80496EC4; // type:object size:0xC scope:local align:4 data:string +@3781 = .rodata:0x80496ED0; // type:object size:0xB scope:local align:4 data:string +@3782 = .rodata:0x80496EDC; // type:object size:0x10 scope:local align:4 data:string +@3783 = .rodata:0x80496EEC; // type:object size:0xA scope:local align:4 data:string +@3784 = .rodata:0x80496EF8; // type:object size:0x11 scope:local align:4 data:string +@3866 = .rodata:0x80496F0C; // type:object size:0x15 scope:local align:4 data:string +@3867 = .rodata:0x80496F24; // type:object size:0x9 scope:local align:4 data:string +@3868 = .rodata:0x80496F30; // type:object size:0x2B scope:local align:4 +@3923 = .rodata:0x80496F5C; // type:object size:0x26 scope:local align:4 +@3987 = .rodata:0x80496F84; // type:object size:0x34 scope:local align:4 +@3907 = .rodata:0x80496FB8; // type:object size:0x14 scope:local align:4 data:string +@3908 = .rodata:0x80496FCC; // type:object size:0x9 scope:local align:4 data:string +@2681 = .rodata:0x80496FD8; // type:object size:0xA scope:local align:4 data:string +@2682 = .rodata:0x80496FE4; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x80496FF8; // type:label scope:local +@2736 = .rodata:0x80496FF8; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x80497004; // type:object size:0x11 scope:local align:4 data:string +@3348 = .rodata:0x80497018; // type:object size:0xE scope:local align:4 data:string +@3362 = .rodata:0x80497028; // type:object size:0x16 scope:local align:4 data:string +@3363 = .rodata:0x80497040; // type:object size:0x19 scope:local align:4 +@3366 = .rodata:0x8049705C; // type:object size:0x15 scope:local align:4 +@3368 = .rodata:0x80497074; // type:object size:0xD scope:local align:4 +@3370 = .rodata:0x80497084; // type:object size:0x11 scope:local align:4 +@3373 = .rodata:0x80497098; // type:object size:0x13 scope:local align:4 +@3376 = .rodata:0x804970AC; // type:object size:0x11 scope:local align:4 +@3378 = .rodata:0x804970C0; // type:object size:0x19 scope:local align:4 +@3381 = .rodata:0x804970DC; // type:object size:0x1D scope:local align:4 +@3455 = .rodata:0x804970FC; // type:object size:0x1A scope:local align:4 data:string +@3456 = .rodata:0x80497118; // type:object size:0x15 scope:local align:4 data:string +@3457 = .rodata:0x80497130; // type:object size:0x9 scope:local align:4 data:string +@3458 = .rodata:0x8049713C; // type:object size:0x1D scope:local align:4 data:string +@3459 = .rodata:0x8049715C; // type:object size:0x1B scope:local align:4 data:string +@3460 = .rodata:0x80497178; // type:object size:0x1C scope:local align:4 data:string +@3461 = .rodata:0x80497194; // type:object size:0x1C scope:local align:4 data:string +@3462 = .rodata:0x804971B0; // type:object size:0x10 scope:local align:4 data:string +@3463 = .rodata:0x804971C0; // type:object size:0x10 scope:local align:4 data:string +@3587 = .rodata:0x804971D0; // type:object size:0xA scope:local align:4 data:string +@3639 = .rodata:0x804971DC; // type:object size:0xF scope:local align:4 +@3641 = .rodata:0x804971EC; // type:object size:0x11 scope:local align:4 +@3643 = .rodata:0x80497200; // type:object size:0xF scope:local align:4 +@3645 = .rodata:0x80497210; // type:object size:0x9 scope:local align:4 +@3647 = .rodata:0x8049721C; // type:object size:0x9 scope:local align:4 +@3649 = .rodata:0x80497228; // type:object size:0xA scope:local align:4 +@3650 = .rodata:0x80497234; // type:object size:0xA scope:local align:4 +@3651 = .rodata:0x80497240; // type:object size:0x1F scope:local align:4 +@3653 = .rodata:0x80497260; // type:object size:0x11 scope:local align:4 +@3654 = .rodata:0x80497274; // type:object size:0x17 scope:local align:4 +@3655 = .rodata:0x8049728C; // type:object size:0x17 scope:local align:4 +@3656 = .rodata:0x804972A4; // type:object size:0x13 scope:local align:4 +@3658 = .rodata:0x804972B8; // type:object size:0x19 scope:local align:4 +@3660 = .rodata:0x804972D4; // type:object size:0x15 scope:local align:4 +@3662 = .rodata:0x804972EC; // type:object size:0xF scope:local align:4 +@3664 = .rodata:0x804972FC; // type:object size:0x11 scope:local align:4 +@3678 = .rodata:0x80497310; // type:object size:0x17 scope:local align:4 data:string +@3679 = .rodata:0x80497328; // type:object size:0x15 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497340; // type:label scope:local +@2736 = .rodata:0x80497340; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x8049734C; // type:object size:0x11 scope:local align:4 data:string +@3374 = .rodata:0x80497360; // type:object size:0xA scope:local align:4 data:string +@3397 = .rodata:0x8049736C; // type:object size:0x9 scope:local align:4 +@3400 = .rodata:0x80497378; // type:object size:0xD scope:local align:4 +@3403 = .rodata:0x80497388; // type:object size:0xF scope:local align:4 +@3404 = .rodata:0x80497398; // type:object size:0x11 scope:local align:4 +@3406 = .rodata:0x804973AC; // type:object size:0x11 scope:local align:4 +@3409 = .rodata:0x804973C0; // type:object size:0x9 scope:local align:4 +@3411 = .rodata:0x804973CC; // type:object size:0x9 scope:local align:4 +@3413 = .rodata:0x804973D8; // type:object size:0x11 scope:local align:4 +@3414 = .rodata:0x804973EC; // type:object size:0x11 scope:local align:4 +@3416 = .rodata:0x80497400; // type:object size:0x11 scope:local align:4 +@3418 = .rodata:0x80497414; // type:object size:0x11 scope:local align:4 +@3419 = .rodata:0x80497428; // type:object size:0x19 scope:local align:4 +@3425 = .rodata:0x80497444; // type:object size:0x17 scope:local align:4 data:string +@3436 = .rodata:0x8049745C; // type:object size:0x17 scope:local align:4 data:string +@3437 = .rodata:0x80497474; // type:object size:0x17 scope:local align:4 data:string +@3468 = .rodata:0x8049748C; // type:object size:0x18 scope:local align:4 data:string +@3469 = .rodata:0x804974A4; // type:object size:0x15 scope:local align:4 data:string +@3470 = .rodata:0x804974BC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804974C8; // type:label scope:local +@2736 = .rodata:0x804974C8; // type:object size:0xC scope:local align:4 +@3333 = .rodata:0x804974D4; // type:object size:0x11 scope:local align:4 data:string +@3374 = .rodata:0x804974E8; // type:object size:0xA scope:local align:4 data:string +@3399 = .rodata:0x804974F4; // type:object size:0x9 scope:local align:4 +@3402 = .rodata:0x80497500; // type:object size:0xD scope:local align:4 +@3405 = .rodata:0x80497510; // type:object size:0xF scope:local align:4 +@3407 = .rodata:0x80497520; // type:object size:0x11 scope:local align:4 +@3409 = .rodata:0x80497534; // type:object size:0xD scope:local align:4 +@3411 = .rodata:0x80497544; // type:object size:0xB scope:local align:4 +@3412 = .rodata:0x80497550; // type:object size:0x11 scope:local align:4 +@3415 = .rodata:0x80497564; // type:object size:0x9 scope:local align:4 +@3417 = .rodata:0x80497570; // type:object size:0x9 scope:local align:4 +@3419 = .rodata:0x8049757C; // type:object size:0x11 scope:local align:4 +@3421 = .rodata:0x80497590; // type:object size:0x11 scope:local align:4 +@3422 = .rodata:0x804975A4; // type:object size:0x11 scope:local align:4 +@3424 = .rodata:0x804975B8; // type:object size:0x11 scope:local align:4 +@3426 = .rodata:0x804975CC; // type:object size:0x19 scope:local align:4 +@3433 = .rodata:0x804975E8; // type:object size:0x17 scope:local align:4 data:string +@3444 = .rodata:0x80497600; // type:object size:0x11 scope:local align:4 data:string +@3446 = .rodata:0x80497614; // type:object size:0x14 scope:local align:4 data:string +@3448 = .rodata:0x80497628; // type:object size:0x12 scope:local align:4 data:string +@3449 = .rodata:0x8049763C; // type:object size:0x14 scope:local align:4 data:string +@3467 = .rodata:0x80497650; // type:object size:0x19 scope:local align:4 data:string +@3468 = .rodata:0x8049766C; // type:object size:0x15 scope:local align:4 data:string +@3469 = .rodata:0x80497684; // type:object size:0x9 scope:local align:4 data:string +@3655 = .rodata:0x80497690; // type:object size:0x1A scope:local align:4 data:string +@3656 = .rodata:0x804976AC; // type:object size:0xC scope:local align:4 data:string +@3670 = .rodata:0x804976B8; // type:object size:0x14 scope:local align:4 data:string +@3671 = .rodata:0x804976CC; // type:object size:0x9 scope:local align:4 data:string +@3751 = .rodata:0x804976D8; // type:object size:0x20 scope:local align:4 data:string +@3752 = .rodata:0x804976F8; // type:object size:0x14 scope:local align:4 data:string +@3772 = .rodata:0x8049770C; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x80497720; // type:label scope:local +@3020 = .rodata:0x80497720; // type:object size:0xC scope:local align:4 +@3858 = .rodata:0x8049772C; // type:object size:0x10 scope:local align:4 data:string +@4026 = .rodata:0x8049773C; // type:object size:0x1C scope:local align:4 data:string +@4027 = .rodata:0x80497758; // type:object size:0x19 scope:local align:4 data:string +@4028 = .rodata:0x80497774; // type:object size:0xA scope:local align:4 data:string +@4029 = .rodata:0x80497780; // type:object size:0x14 scope:local align:4 data:string +@4030 = .rodata:0x80497794; // type:object size:0x9 scope:local align:4 data:string +@4271 = .rodata:0x804977A0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804977B0; // type:label scope:local +@2959 = .rodata:0x804977B0; // type:object size:0x11 scope:local align:4 data:string +@3028 = .rodata:0x804977C4; // type:object size:0x9 scope:local align:4 data:string +@3122 = .rodata:0x804977D0; // type:object size:0xC scope:local align:4 data:string +@3206 = .rodata:0x804977DC; // type:object size:0xA scope:local align:4 data:string +@3328 = .rodata:0x804977E8; // type:object size:0x9 scope:local align:4 data:string +@3368 = .rodata:0x804977F4; // type:object size:0xD scope:local align:4 data:string +@3708 = .rodata:0x80497804; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80497818; // type:label scope:local +@2645 = .rodata:0x80497818; // type:object size:0xF scope:local align:4 data:string +@2652 = .rodata:0x80497828; // type:object size:0x13 scope:local align:4 data:string +@2653 = .rodata:0x8049783C; // type:object size:0x9 scope:local align:4 data:string +@2792 = .rodata:0x80497848; // type:object size:0x23 scope:local align:4 data:string +@2793 = .rodata:0x8049786C; // type:object size:0x23 scope:local align:4 data:string +@2794 = .rodata:0x80497890; // type:object size:0x23 scope:local align:4 data:string +...rodata.0 = .rodata:0x804978B8; // type:label scope:local +@3653 = .rodata:0x804978B8; // type:object size:0xF scope:local align:4 data:string +@3921 = .rodata:0x804978C8; // type:object size:0x1B scope:local align:4 data:string +@3922 = .rodata:0x804978E4; // type:object size:0xA scope:local align:4 data:string +@3923 = .rodata:0x804978F0; // type:object size:0x24 scope:local align:4 data:string +@3924 = .rodata:0x80497914; // type:object size:0xA scope:local align:4 data:string +@4174 = .rodata:0x80497920; // type:object size:0x13 scope:local align:4 data:string +@4175 = .rodata:0x80497934; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80497940; // type:label scope:local +@3789 = .rodata:0x80497940; // type:object size:0x10 scope:local align:4 data:string +@3853 = .rodata:0x80497950; // type:object size:0x15 scope:local align:4 data:string +@3854 = .rodata:0x80497968; // type:object size:0x15 scope:local align:4 data:string +@3855 = .rodata:0x80497980; // type:object size:0x14 scope:local align:4 data:string +@3856 = .rodata:0x80497994; // type:object size:0xA scope:local align:4 +@4218 = .rodata:0x804979A0; // type:object size:0x18 scope:local align:4 data:string +@4219 = .rodata:0x804979B8; // type:object size:0xA scope:local align:4 data:string +@4220 = .rodata:0x804979C4; // type:object size:0x9 scope:local align:4 data:string +@4414 = .rodata:0x804979D0; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x804979E0; // type:label scope:local +@3738 = .rodata:0x804979E0; // type:object size:0x14 scope:local align:4 data:string +@3870 = .rodata:0x804979F4; // type:object size:0x20 scope:local align:4 data:string +@3871 = .rodata:0x80497A14; // type:object size:0x11 scope:local align:4 data:string +@3872 = .rodata:0x80497A28; // type:object size:0x29 scope:local align:4 data:string +@3875 = .rodata:0x80497A54; // type:object size:0x11 scope:local align:4 data:string +@3876 = .rodata:0x80497A68; // type:object size:0x11 scope:local align:4 data:string +@4008 = .rodata:0x80497A7C; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x80497A88; // type:label scope:local +@3647 = .rodata:0x80497A88; // type:object size:0x13 scope:local align:4 data:string +@3834 = .rodata:0x80497A9C; // type:object size:0x1F scope:local align:4 data:string +@3835 = .rodata:0x80497ABC; // type:object size:0xF scope:local align:4 data:string +@3836 = .rodata:0x80497ACC; // type:object size:0x28 scope:local align:4 data:string +@3837 = .rodata:0x80497AF4; // type:object size:0xF scope:local align:4 data:string +@4138 = .rodata:0x80497B04; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80497B10; // type:label scope:local +@3789 = .rodata:0x80497B10; // type:object size:0xF scope:local align:4 data:string +cOpenMinFrm__Q22kh6Screen = .rodata:0x80497B20; // type:object size:0x10 scope:local align:4 data:float +cOpenMaxFrm__Q22kh6Screen = .rodata:0x80497B30; // type:object size:0x10 scope:local align:4 data:float +@3805 = .rodata:0x80497B40; // type:object size:0x9 scope:local align:4 data:string +@4024 = .rodata:0x80497B4C; // type:object size:0x80 scope:local align:4 +@4035 = .rodata:0x80497BCC; // type:object size:0x12 scope:local align:4 data:string +@4036 = .rodata:0x80497BE0; // type:object size:0x12 scope:local align:4 data:string +@4037 = .rodata:0x80497BF4; // type:object size:0x12 scope:local align:4 data:string +@4038 = .rodata:0x80497C08; // type:object size:0x13 scope:local align:4 data:string +@4039 = .rodata:0x80497C1C; // type:object size:0x13 scope:local align:4 data:string +@4040 = .rodata:0x80497C30; // type:object size:0x13 scope:local align:4 data:string +@4041 = .rodata:0x80497C44; // type:object size:0x18 scope:local align:4 +@4065 = .rodata:0x80497C5C; // type:object size:0x13 scope:local align:4 data:string +@4066 = .rodata:0x80497C70; // type:object size:0x13 scope:local align:4 data:string +@4067 = .rodata:0x80497C84; // type:object size:0x16 scope:local align:4 data:string +@4068 = .rodata:0x80497C9C; // type:object size:0x16 scope:local align:4 data:string +@4069 = .rodata:0x80497CB4; // type:object size:0x10 scope:local align:4 +@4090 = .rodata:0x80497CC8; // type:object size:0xC8 scope:local align:8 +@4091 = .rodata:0x80497D90; // type:object size:0x28 scope:local align:4 +@4101 = .rodata:0x80497DB8; // type:object size:0x10 scope:local align:4 +@4434 = .rodata:0x80497DC8; // type:object size:0xD scope:local align:4 data:string +@4436 = .rodata:0x80497DD8; // type:object size:0x17 scope:local align:4 data:string +@4437 = .rodata:0x80497DF0; // type:object size:0x17 scope:local align:4 data:string +@4438 = .rodata:0x80497E08; // type:object size:0x17 scope:local align:4 data:string +@4439 = .rodata:0x80497E20; // type:object size:0x17 scope:local align:4 data:string +@4440 = .rodata:0x80497E38; // type:object size:0x1A scope:local align:4 data:string +@4444 = .rodata:0x80497E54; // type:object size:0x28 scope:local align:4 data:string +@4487 = .rodata:0x80497E80; // type:object size:0x20 scope:local align:8 +@4488 = .rodata:0x80497EA0; // type:object size:0x20 scope:local align:8 +@4653 = .rodata:0x80497EC0; // type:object size:0x10 scope:local align:8 +@5390 = .rodata:0x80497ED0; // type:object size:0xC scope:local align:4 data:4byte +@5391 = .rodata:0x80497EDC; // type:object size:0xC scope:local align:4 data:4byte +@5699 = .rodata:0x80497EE8; // type:object size:0x20 scope:local align:8 +@5700 = .rodata:0x80497F08; // type:object size:0x20 scope:local align:8 +@5701 = .rodata:0x80497F28; // type:object size:0x20 scope:local align:8 +@5702 = .rodata:0x80497F48; // type:object size:0x20 scope:local align:8 +@5703 = .rodata:0x80497F68; // type:object size:0x20 scope:local align:8 +@5704 = .rodata:0x80497F88; // type:object size:0x10 scope:local align:4 +@5705 = .rodata:0x80497F98; // type:object size:0x20 scope:local align:8 +@5706 = .rodata:0x80497FB8; // type:object size:0x80 scope:local align:8 +@5707 = .rodata:0x80498038; // type:object size:0x20 scope:local align:8 +@5717 = .rodata:0x80498058; // type:object size:0x20 scope:local align:8 +@5887 = .rodata:0x80498078; // type:object size:0x20 scope:local align:8 +@5888 = .rodata:0x80498098; // type:object size:0x20 scope:local align:8 +@5889 = .rodata:0x804980B8; // type:object size:0x20 scope:local align:8 +@5890 = .rodata:0x804980D8; // type:object size:0x20 scope:local align:8 +@5891 = .rodata:0x804980F8; // type:object size:0x20 scope:local align:8 +@5892 = .rodata:0x80498118; // type:object size:0x10 scope:local align:4 +@5893 = .rodata:0x80498128; // type:object size:0x20 scope:local align:8 +@5894 = .rodata:0x80498148; // type:object size:0x80 scope:local align:8 +@6027 = .rodata:0x804981C8; // type:object size:0x20 scope:local align:8 data:double +@6202 = .rodata:0x804981E8; // type:object size:0xC scope:local align:4 data:string +@6204 = .rodata:0x804981F4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80498200; // type:label scope:local +@3841 = .rodata:0x80498200; // type:object size:0x11 scope:local align:4 data:string +@4068 = .rodata:0x80498214; // type:object size:0x10 scope:local align:4 data:string +@4069 = .rodata:0x80498224; // type:object size:0x13 scope:local align:4 data:string +@4070 = .rodata:0x80498238; // type:object size:0x1D scope:local align:4 data:string +@4071 = .rodata:0x80498258; // type:object size:0x13 scope:local align:4 data:string +@4072 = .rodata:0x8049826C; // type:object size:0x13 scope:local align:4 data:string +@4073 = .rodata:0x80498280; // type:object size:0x13 scope:local align:4 data:string +@4074 = .rodata:0x80498294; // type:object size:0x13 scope:local align:4 data:string +@4075 = .rodata:0x804982A8; // type:object size:0x15 scope:local align:4 data:string +@4076 = .rodata:0x804982C0; // type:object size:0x15 scope:local align:4 data:string +@4077 = .rodata:0x804982D8; // type:object size:0x15 scope:local align:4 data:string +@4154 = .rodata:0x804982F0; // type:object size:0x10 scope:local align:8 data:double +@4155 = .rodata:0x80498300; // type:object size:0x10 scope:local align:8 data:double +@4699 = .rodata:0x80498310; // type:object size:0x10 scope:local align:8 data:double +@4771 = .rodata:0x80498320; // type:object size:0x14 scope:local align:4 data:4byte +@4907 = .rodata:0x80498334; // type:object size:0x13 scope:local align:4 data:string +@4957 = .rodata:0x80498348; // type:object size:0xC scope:local align:4 data:string +@4958 = .rodata:0x80498354; // type:object size:0x9 scope:local align:4 data:string +@2757 = .rodata:0x80498360; // type:object size:0x15 scope:local align:4 data:string +@2783 = .rodata:0x80498378; // type:object size:0xD scope:local align:4 data:string +@2792 = .rodata:0x80498388; // type:object size:0x15 scope:local align:4 data:string +@2801 = .rodata:0x804983A0; // type:object size:0x10 scope:local align:4 data:string +@3881 = .rodata:0x804983B0; // type:object size:0x11 scope:local align:4 data:string +@3892 = .rodata:0x804983C4; // type:object size:0x9 scope:local align:4 data:string +@4192 = .rodata:0x804983D0; // type:object size:0x10 scope:local align:4 data:string +@4223 = .rodata:0x804983E0; // type:object size:0x1C scope:local align:4 data:string +@4290 = .rodata:0x804983FC; // type:object size:0x16 scope:local align:4 data:string +@4301 = .rodata:0x80498414; // type:object size:0xF scope:local align:4 data:string +@4562 = .rodata:0x80498424; // type:object size:0x10 scope:local align:4 data:string +@4665 = .rodata:0x80498434; // type:object size:0xF scope:local align:4 data:string +@4809 = .rodata:0x80498444; // type:object size:0xF scope:local align:4 data:string +@4431 = .rodata:0x80498458; // type:object size:0x13 scope:local align:4 data:string +@4439 = .rodata:0x8049846C; // type:object size:0xB scope:local align:4 data:string +@4471 = .rodata:0x80498478; // type:object size:0x16 scope:local align:4 data:string +@4479 = .rodata:0x80498490; // type:object size:0xE scope:local align:4 data:string +@4488 = .rodata:0x804984A0; // type:object size:0x13 scope:local align:4 data:string +@4496 = .rodata:0x804984B4; // type:object size:0x9 scope:local align:4 data:string +@4501 = .rodata:0x804984C0; // type:object size:0x12 scope:local align:4 data:string +@4509 = .rodata:0x804984D4; // type:object size:0xA scope:local align:4 data:string +@4514 = .rodata:0x804984E0; // type:object size:0x11 scope:local align:4 data:string +@4522 = .rodata:0x804984F4; // type:object size:0x9 scope:local align:4 data:string +@4528 = .rodata:0x80498500; // type:object size:0xF scope:local align:4 data:string +...rodata.0 = .rodata:0x80498510; // type:label scope:local +@3411 = .rodata:0x80498510; // type:object size:0xC scope:local align:4 +@3461 = .rodata:0x8049851C; // type:object size:0xE scope:local align:4 data:string +@3493 = .rodata:0x8049852C; // type:object size:0x10 scope:local align:4 data:string +@3498 = .rodata:0x8049853C; // type:object size:0xD scope:local align:4 data:string +@3499 = .rodata:0x8049854C; // type:object size:0xD scope:local align:4 data:string +@3500 = .rodata:0x8049855C; // type:object size:0xD scope:local align:4 data:string +@3501 = .rodata:0x8049856C; // type:object size:0x15 scope:local align:4 data:string +@3502 = .rodata:0x80498584; // type:object size:0x15 scope:local align:4 data:string +@3503 = .rodata:0x8049859C; // type:object size:0x15 scope:local align:4 data:string +@3504 = .rodata:0x804985B4; // type:object size:0x18 scope:local align:4 +@3687 = .rodata:0x804985CC; // type:object size:0xD scope:local align:4 data:string +@3745 = .rodata:0x804985DC; // type:object size:0xC scope:local align:4 data:string +@3746 = .rodata:0x804985E8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804985F8; // type:label scope:local +@3836 = .rodata:0x804985F8; // type:object size:0xC scope:local align:4 +@3926 = .rodata:0x80498604; // type:object size:0x11 scope:local align:4 data:string +@3927 = .rodata:0x80498618; // type:object size:0x10 scope:local align:4 data:string +@3928 = .rodata:0x80498628; // type:object size:0x10 scope:local align:4 data:string +@3929 = .rodata:0x80498638; // type:object size:0x10 scope:local align:4 data:string +@3930 = .rodata:0x80498648; // type:object size:0x10 scope:local align:4 data:string +@3931 = .rodata:0x80498658; // type:object size:0x9 scope:local align:4 data:string +@3932 = .rodata:0x80498664; // type:object size:0x9 scope:local align:4 data:string +@3933 = .rodata:0x80498670; // type:object size:0xA scope:local align:4 data:string +@3934 = .rodata:0x8049867C; // type:object size:0x24 scope:local align:4 data:string +@3935 = .rodata:0x804986A0; // type:object size:0x13 scope:local align:4 data:string +@4127 = .rodata:0x804986B4; // type:object size:0x10 scope:local align:4 data:string +@4178 = .rodata:0x804986C4; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x804986D0; // type:label scope:local +@3907 = .rodata:0x804986D0; // type:object size:0x13 scope:local align:4 data:string +@3965 = .rodata:0x804986E4; // type:object size:0x11 scope:local align:4 data:string +@3966 = .rodata:0x804986F8; // type:object size:0x11 scope:local align:4 data:string +@3967 = .rodata:0x8049870C; // type:object size:0x11 scope:local align:4 data:string +@4211 = .rodata:0x80498720; // type:object size:0x10 scope:local align:4 data:string +@4212 = .rodata:0x80498730; // type:object size:0x10 scope:local align:4 data:string +@4213 = .rodata:0x80498740; // type:object size:0x10 scope:local align:4 data:string +@4214 = .rodata:0x80498750; // type:object size:0x10 scope:local align:4 data:string +@4215 = .rodata:0x80498760; // type:object size:0x1E scope:local align:4 data:string +@4216 = .rodata:0x80498780; // type:object size:0x1E scope:local align:4 data:string +@4217 = .rodata:0x804987A0; // type:object size:0x10 scope:local align:4 data:string +@4306 = .rodata:0x804987B0; // type:object size:0x10 scope:local align:8 data:string +@4307 = .rodata:0x804987C0; // type:object size:0x10 scope:local align:8 data:string +@4678 = .rodata:0x804987D0; // type:object size:0x30 scope:local align:4 +@4881 = .rodata:0x80498800; // type:object size:0x15 scope:local align:4 data:string +@4882 = .rodata:0x80498818; // type:object size:0x15 scope:local align:4 data:string +@4883 = .rodata:0x80498830; // type:object size:0x15 scope:local align:4 data:string +@4884 = .rodata:0x80498848; // type:object size:0x15 scope:local align:4 data:string +@4885 = .rodata:0x80498860; // type:object size:0x1F scope:local align:4 data:string +@4886 = .rodata:0x80498880; // type:object size:0x1F scope:local align:4 data:string +@5331 = .rodata:0x804988A0; // type:object size:0x100 scope:local align:4 +@5410 = .rodata:0x804989A0; // type:object size:0x10 scope:local align:4 data:string +@5411 = .rodata:0x804989B0; // type:object size:0x10 scope:local align:4 data:string +@5412 = .rodata:0x804989C0; // type:object size:0x10 scope:local align:4 data:string +@5413 = .rodata:0x804989D0; // type:object size:0x10 scope:local align:4 data:string +@5414 = .rodata:0x804989E0; // type:object size:0x1A scope:local align:4 data:string +@5415 = .rodata:0x804989FC; // type:object size:0x1A scope:local align:4 data:string +@5416 = .rodata:0x80498A18; // type:object size:0x1E scope:local align:4 data:string +@5417 = .rodata:0x80498A38; // type:object size:0x1E scope:local align:4 data:string +@5418 = .rodata:0x80498A58; // type:object size:0xC scope:local align:4 data:string +@6015 = .rodata:0x80498A68; // type:object size:0x20 scope:local align:8 +@6047 = .rodata:0x80498A88; // type:object size:0x15 scope:local align:4 data:string +@6048 = .rodata:0x80498AA0; // type:object size:0x15 scope:local align:4 data:string +@6049 = .rodata:0x80498AB8; // type:object size:0x15 scope:local align:4 data:string +@6309 = .rodata:0x80498AD0; // type:object size:0x1B scope:local align:4 data:string +@6310 = .rodata:0x80498AEC; // type:object size:0xF scope:local align:4 data:string +@6314 = .rodata:0x80498AFC; // type:object size:0x1A scope:local align:4 data:string +@6315 = .rodata:0x80498B18; // type:object size:0x9 scope:local align:4 data:string +@6316 = .rodata:0x80498B24; // type:object size:0x10 scope:local align:4 data:string +@6349 = .rodata:0x80498B34; // type:object size:0xC scope:local align:4 data:string +@6350 = .rodata:0x80498B40; // type:object size:0x9 scope:local align:4 data:string +@3041 = .rodata:0x80498B50; // type:object size:0xB scope:local align:4 data:string +@3042 = .rodata:0x80498B5C; // type:object size:0x9 scope:local align:4 data:string +@3122 = .rodata:0x80498B68; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80498B78; // type:label scope:local +@3908 = .rodata:0x80498B78; // type:object size:0x12 scope:local align:4 data:string +@3921 = .rodata:0x80498B8C; // type:object size:0x19 scope:local align:4 data:string +@3922 = .rodata:0x80498BA8; // type:object size:0x19 scope:local align:4 data:string +@3923 = .rodata:0x80498BC4; // type:object size:0x19 scope:local align:4 data:string +@3924 = .rodata:0x80498BE0; // type:object size:0x19 scope:local align:4 data:string +@3925 = .rodata:0x80498BFC; // type:object size:0x19 scope:local align:4 data:string +@3926 = .rodata:0x80498C18; // type:object size:0x19 scope:local align:4 data:string +@3927 = .rodata:0x80498C34; // type:object size:0x19 scope:local align:4 data:string +@3928 = .rodata:0x80498C50; // type:object size:0x19 scope:local align:4 data:string +@3929 = .rodata:0x80498C6C; // type:object size:0x19 scope:local align:4 data:string +@3930 = .rodata:0x80498C88; // type:object size:0x19 scope:local align:4 data:string +@3931 = .rodata:0x80498CA4; // type:object size:0x19 scope:local align:4 data:string +@3932 = .rodata:0x80498CC0; // type:object size:0x19 scope:local align:4 data:string +@3933 = .rodata:0x80498CDC; // type:object size:0x19 scope:local align:4 data:string +@3934 = .rodata:0x80498CF8; // type:object size:0x19 scope:local align:4 data:string +@3935 = .rodata:0x80498D14; // type:object size:0x19 scope:local align:4 data:string +@3936 = .rodata:0x80498D30; // type:object size:0x19 scope:local align:4 data:string +@3937 = .rodata:0x80498D4C; // type:object size:0x40 scope:local align:4 +@3938 = .rodata:0x80498D8C; // type:object size:0x40 scope:local align:4 +@3974 = .rodata:0x80498DCC; // type:object size:0x27 scope:local align:4 data:string +@4072 = .rodata:0x80498DF8; // type:object size:0x40 scope:local align:8 +@4073 = .rodata:0x80498E38; // type:object size:0x20 scope:local align:8 +@4074 = .rodata:0x80498E58; // type:object size:0x20 scope:local align:8 +@4198 = .rodata:0x80498E78; // type:object size:0x10 scope:local align:4 data:string +@4199 = .rodata:0x80498E88; // type:object size:0x11 scope:local align:4 data:string +@4200 = .rodata:0x80498E9C; // type:object size:0x11 scope:local align:4 data:string +@4201 = .rodata:0x80498EB0; // type:object size:0x11 scope:local align:4 data:string +@4202 = .rodata:0x80498EC4; // type:object size:0x11 scope:local align:4 data:string +@4203 = .rodata:0x80498ED8; // type:object size:0x11 scope:local align:4 data:string +@4515 = .rodata:0x80498EF0; // type:object size:0x80 scope:local align:8 +@4539 = .rodata:0x80498F70; // type:object size:0x18 scope:local align:8 +@4540 = .rodata:0x80498F88; // type:object size:0x18 scope:local align:8 +@4541 = .rodata:0x80498FA0; // type:object size:0x18 scope:local align:8 +@4542 = .rodata:0x80498FB8; // type:object size:0x18 scope:local align:8 +@4729 = .rodata:0x80498FD0; // type:object size:0x11 scope:local align:4 data:string +@4825 = .rodata:0x80498FE4; // type:object size:0xC scope:local align:4 data:string +@4826 = .rodata:0x80498FF0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80499000; // type:label scope:local +@3196 = .rodata:0x80499000; // type:object size:0xE scope:local align:4 data:string +@3197 = .rodata:0x80499010; // type:object size:0x9 scope:local align:4 data:string +@3198 = .rodata:0x8049901C; // type:object size:0x9 scope:local align:4 data:string +@3199 = .rodata:0x80499028; // type:object size:0x9 scope:local align:4 data:string +@3200 = .rodata:0x80499034; // type:object size:0x9 scope:local align:4 data:string +@3201 = .rodata:0x80499040; // type:object size:0x9 scope:local align:4 data:string +@3202 = .rodata:0x8049904C; // type:object size:0x9 scope:local align:4 data:string +@3203 = .rodata:0x80499058; // type:object size:0x9 scope:local align:4 data:string +@3204 = .rodata:0x80499064; // type:object size:0x9 scope:local align:4 data:string +@3205 = .rodata:0x80499070; // type:object size:0x9 scope:local align:4 data:string +@3206 = .rodata:0x8049907C; // type:object size:0x9 scope:local align:4 data:string +@3224 = .rodata:0x80499088; // type:object size:0x18 scope:local align:4 data:string +@3225 = .rodata:0x804990A0; // type:object size:0x18 scope:local align:4 data:string +@3226 = .rodata:0x804990B8; // type:object size:0x18 scope:local align:4 data:string +@3227 = .rodata:0x804990D0; // type:object size:0xC scope:local align:4 +@3228 = .rodata:0x804990DC; // type:object size:0x17 scope:local align:4 data:string +@3229 = .rodata:0x804990F4; // type:object size:0x17 scope:local align:4 data:string +@3230 = .rodata:0x8049910C; // type:object size:0x17 scope:local align:4 data:string +@3231 = .rodata:0x80499124; // type:object size:0xC scope:local align:4 +@3232 = .rodata:0x80499130; // type:object size:0x18 scope:local align:4 data:string +@3233 = .rodata:0x80499148; // type:object size:0x18 scope:local align:4 data:string +@3234 = .rodata:0x80499160; // type:object size:0x18 scope:local align:4 data:string +@3235 = .rodata:0x80499178; // type:object size:0xC scope:local align:4 +@3260 = .rodata:0x80499184; // type:object size:0x10 scope:local align:4 data:string +@3496 = .rodata:0x80499194; // type:object size:0x18 scope:local align:4 data:string +@3497 = .rodata:0x804991AC; // type:object size:0x17 scope:local align:4 data:string +@3498 = .rodata:0x804991C4; // type:object size:0x18 scope:local align:4 data:string +@3532 = .rodata:0x804991DC; // type:object size:0xC scope:local align:4 data:string +@3533 = .rodata:0x804991E8; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x804991F8; // type:label scope:local +@3733 = .rodata:0x804991F8; // type:object size:0xE scope:local align:4 data:string +@3756 = .rodata:0x80499208; // type:object size:0x9 scope:local align:4 data:string +@3757 = .rodata:0x80499214; // type:object size:0x9 scope:local align:4 data:string +@3758 = .rodata:0x80499220; // type:object size:0x9 scope:local align:4 data:string +@3759 = .rodata:0x8049922C; // type:object size:0xC scope:local align:4 data:string +@3760 = .rodata:0x80499238; // type:object size:0xC scope:local align:4 data:string +@3761 = .rodata:0x80499244; // type:object size:0xC scope:local align:4 data:string +@3762 = .rodata:0x80499250; // type:object size:0x24 scope:local align:4 +@3763 = .rodata:0x80499274; // type:object size:0xD scope:local align:4 data:string +@3764 = .rodata:0x80499284; // type:object size:0xD scope:local align:4 data:string +@3765 = .rodata:0x80499294; // type:object size:0xD scope:local align:4 data:string +@3766 = .rodata:0x804992A4; // type:object size:0xE scope:local align:4 data:string +@3767 = .rodata:0x804992B4; // type:object size:0xE scope:local align:4 data:string +@3768 = .rodata:0x804992C4; // type:object size:0xE scope:local align:4 data:string +@3769 = .rodata:0x804992D4; // type:object size:0x11 scope:local align:4 data:string +@3770 = .rodata:0x804992E8; // type:object size:0x11 scope:local align:4 data:string +@3771 = .rodata:0x804992FC; // type:object size:0x11 scope:local align:4 data:string +@3772 = .rodata:0x80499310; // type:object size:0x9 scope:local align:4 data:string +@3773 = .rodata:0x8049931C; // type:object size:0x9 scope:local align:4 data:string +@3774 = .rodata:0x80499328; // type:object size:0x9 scope:local align:4 data:string +@3775 = .rodata:0x80499334; // type:object size:0x30 scope:local align:4 +@3820 = .rodata:0x80499364; // type:object size:0x10 scope:local align:4 data:string +@3927 = .rodata:0x80499374; // type:object size:0xC scope:local align:4 data:string +@3928 = .rodata:0x80499380; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x80499390; // type:label scope:local +@3803 = .rodata:0x80499390; // type:object size:0x14 scope:local align:4 data:string +@3823 = .rodata:0x804993A4; // type:object size:0x10 scope:local align:4 data:string +@3824 = .rodata:0x804993B4; // type:object size:0x10 scope:local align:4 data:string +@3825 = .rodata:0x804993C4; // type:object size:0x10 scope:local align:4 data:string +@3998 = .rodata:0x804993D4; // type:object size:0x10 scope:local align:4 data:string +@3999 = .rodata:0x804993E4; // type:object size:0xA scope:local align:4 data:string +@4000 = .rodata:0x804993F0; // type:object size:0x9 scope:local align:4 data:string +@4001 = .rodata:0x804993FC; // type:object size:0xB scope:local align:4 data:string +@4002 = .rodata:0x80499408; // type:object size:0x9 scope:local align:4 data:string +@4003 = .rodata:0x80499414; // type:object size:0x9 scope:local align:4 data:string +@4004 = .rodata:0x80499420; // type:object size:0xA scope:local align:4 data:string +@4005 = .rodata:0x8049942C; // type:object size:0x24 scope:local align:4 data:string +@4045 = .rodata:0x80499450; // type:object size:0x14 scope:local align:4 data:string +@4076 = .rodata:0x80499464; // type:object size:0xC scope:local align:4 data:string +@2654 = .rodata:0x80499470; // type:object size:0x20 scope:local align:4 data:string +@2592 = .rodata:0x80499490; // type:object size:0x9 scope:local align:4 data:string +@2593 = .rodata:0x8049949C; // type:object size:0x18 scope:local align:4 data:string +@2621 = .rodata:0x804994B4; // type:object size:0x18 scope:local align:4 data:string +@2674 = .rodata:0x804994CC; // type:object size:0x1C scope:local align:4 data:string +@2853 = .rodata:0x804994E8; // type:object size:0xC scope:local align:4 data:string +@2854 = .rodata:0x804994F4; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80499500; // type:label scope:local +@2778 = .rodata:0x80499500; // type:object size:0xB scope:local align:4 data:string +@2779 = .rodata:0x8049950C; // type:object size:0xD scope:local align:4 data:string +@3025 = .rodata:0x8049951C; // type:object size:0x16 scope:local align:4 data:string +@3110 = .rodata:0x80499534; // type:object size:0x17 scope:local align:4 data:string +@3189 = .rodata:0x8049954C; // type:object size:0x15 scope:local align:4 data:string +@3268 = .rodata:0x80499564; // type:object size:0x17 scope:local align:4 data:string +@3391 = .rodata:0x8049957C; // type:object size:0x9 scope:local align:4 data:string +@3553 = .rodata:0x80499588; // type:object size:0x2A scope:local align:4 data:string +@3578 = .rodata:0x804995B4; // type:object size:0x2B scope:local align:4 data:string +@3651 = .rodata:0x804995E0; // type:object size:0x31 scope:local align:4 data:string +@3658 = .rodata:0x80499614; // type:object size:0x32 scope:local align:4 data:string +@5689 = .rodata:0x80499648; // type:object size:0xA scope:local align:4 data:string +@2844 = .rodata:0x80499658; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80499668; // type:label scope:local +@3364 = .rodata:0x80499668; // type:object size:0xB scope:local align:4 data:string +@3365 = .rodata:0x80499674; // type:object size:0x46 scope:local align:4 data:string +@3386 = .rodata:0x804996BC; // type:object size:0x17 scope:local align:4 data:string +@3387 = .rodata:0x804996D4; // type:object size:0x18 scope:local align:4 data:string +@3429 = .rodata:0x804996EC; // type:object size:0x16 scope:local align:4 +@3451 = .rodata:0x80499704; // type:object size:0x20 scope:local align:4 data:string +@3452 = .rodata:0x80499724; // type:object size:0x18 scope:local align:4 +@3486 = .rodata:0x8049973C; // type:object size:0x9 scope:local align:4 data:string +@3544 = .rodata:0x80499748; // type:object size:0x21 scope:local align:4 data:string +@3545 = .rodata:0x8049976C; // type:object size:0xF scope:local align:4 data:string +@3546 = .rodata:0x8049977C; // type:object size:0xC scope:local align:4 data:string +@3547 = .rodata:0x80499788; // type:object size:0xF scope:local align:4 data:string +@3648 = .rodata:0x80499798; // type:object size:0xA scope:local align:4 data:string +@3649 = .rodata:0x804997A4; // type:object size:0xA scope:local align:4 data:string +@3650 = .rodata:0x804997B0; // type:object size:0xA scope:local align:4 data:string +@3651 = .rodata:0x804997BC; // type:object size:0xD scope:local align:4 data:string +@3654 = .rodata:0x804997CC; // type:object size:0xE scope:local align:4 data:string +@3665 = .rodata:0x804997DC; // type:object size:0x9 scope:local align:4 data:string +@3666 = .rodata:0x804997E8; // type:object size:0x1A scope:local align:4 data:string +@3667 = .rodata:0x80499804; // type:object size:0xF scope:local align:4 data:string +@3682 = .rodata:0x80499814; // type:object size:0x1A scope:local align:4 data:string +@3683 = .rodata:0x80499830; // type:object size:0xB scope:local align:4 data:string +@3746 = .rodata:0x8049983C; // type:object size:0xC scope:local align:4 data:string +@3747 = .rodata:0x80499848; // type:object size:0xA scope:local align:4 data:string +@3748 = .rodata:0x80499854; // type:object size:0xB scope:local align:4 data:string +@3749 = .rodata:0x80499860; // type:object size:0x9 scope:local align:4 data:string +@4006 = .rodata:0x8049986C; // type:object size:0x18 scope:local align:4 data:string +@4122 = .rodata:0x80499884; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80499890; // type:label scope:local +@2741 = .rodata:0x80499890; // type:object size:0xC scope:local align:4 +@3750 = .rodata:0x8049989C; // type:object size:0x9 scope:local align:4 data:string +@3751 = .rodata:0x804998A8; // type:object size:0x9 scope:local align:4 data:string +@3752 = .rodata:0x804998B4; // type:object size:0xA scope:local align:4 data:string +@3869 = .rodata:0x804998C0; // type:object size:0xC scope:local align:4 data:string +@3870 = .rodata:0x804998CC; // type:object size:0x15 scope:local align:4 data:string +@4721 = .rodata:0x804998E8; // type:object size:0xA scope:local align:4 data:string +@4722 = .rodata:0x804998F4; // type:object size:0xE scope:local align:4 data:string +@4723 = .rodata:0x80499904; // type:object size:0xC scope:local align:4 data:string +@4724 = .rodata:0x80499910; // type:object size:0xF scope:local align:4 data:string +@4725 = .rodata:0x80499920; // type:object size:0xF scope:local align:4 data:string +@4726 = .rodata:0x80499930; // type:object size:0xA scope:local align:4 data:string +@4727 = .rodata:0x8049993C; // type:object size:0xC scope:local align:4 data:string +@4728 = .rodata:0x80499948; // type:object size:0x11 scope:local align:4 data:string +@4729 = .rodata:0x8049995C; // type:object size:0xB scope:local align:4 data:string +@4731 = .rodata:0x80499968; // type:object size:0x12 scope:local align:4 data:string +@4733 = .rodata:0x8049997C; // type:object size:0xA scope:local align:4 data:string +@4734 = .rodata:0x80499988; // type:object size:0xA scope:local align:4 data:string +@4735 = .rodata:0x80499994; // type:object size:0xB scope:local align:4 data:string +@4736 = .rodata:0x804999A0; // type:object size:0x9 scope:local align:4 data:string +@4737 = .rodata:0x804999AC; // type:object size:0x9 scope:local align:4 data:string +@4740 = .rodata:0x804999B8; // type:object size:0xC scope:local align:4 data:string +@4741 = .rodata:0x804999C4; // type:object size:0x15 scope:local align:4 data:string +@4742 = .rodata:0x804999DC; // type:object size:0xB scope:local align:4 data:string +@4743 = .rodata:0x804999E8; // type:object size:0x13 scope:local align:4 data:string +@4744 = .rodata:0x804999FC; // type:object size:0xC scope:local align:4 data:string +@4746 = .rodata:0x80499A08; // type:object size:0xB scope:local align:4 data:string +@4748 = .rodata:0x80499A14; // type:object size:0x12 scope:local align:4 data:string +@4749 = .rodata:0x80499A28; // type:object size:0xF scope:local align:4 data:string +@4750 = .rodata:0x80499A38; // type:object size:0x12 scope:local align:4 data:string +@4752 = .rodata:0x80499A4C; // type:object size:0xE scope:local align:4 data:string +@4753 = .rodata:0x80499A5C; // type:object size:0xA scope:local align:4 data:string +@4816 = .rodata:0x80499A68; // type:object size:0xD scope:local align:4 data:string +@4817 = .rodata:0x80499A78; // type:object size:0x1A scope:local align:4 data:string +@4834 = .rodata:0x80499A94; // type:object size:0x9 scope:local align:4 data:string +@2691 = .rodata:0x80499AA0; // type:object size:0x13 scope:local align:4 data:string +@2493 = .rodata:0x80499AB8; // type:object size:0xE scope:local align:4 data:string +@2494 = .rodata:0x80499AC8; // type:object size:0x9 scope:local align:4 data:string +@3771 = .rodata:0x80499AD8; // type:object size:0xD scope:local align:4 data:string +@6711 = .rodata:0x80499AE8; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x80499AF8; // type:label scope:local +@3273 = .rodata:0x80499AF8; // type:object size:0xC scope:local align:4 +@3300 = .rodata:0x80499B04; // type:object size:0x9 scope:local align:4 data:string +@3383 = .rodata:0x80499B10; // type:object size:0xD scope:local align:4 data:string +@3384 = .rodata:0x80499B20; // type:object size:0xE scope:local align:4 data:string +@3484 = .rodata:0x80499B30; // type:object size:0x24 scope:local align:4 data:string +@3688 = .rodata:0x80499B54; // type:object size:0x20 scope:local align:4 data:string +@3798 = .rodata:0x80499B74; // type:object size:0x30 scope:local align:4 data:string +@3823 = .rodata:0x80499BA4; // type:object size:0x9 scope:local align:4 data:string +@4072 = .rodata:0x80499BB0; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x80499BC0; // type:label scope:local +@3145 = .rodata:0x80499BC0; // type:object size:0x21 scope:local align:4 +@3146 = .rodata:0x80499BE4; // type:object size:0x15 scope:local align:4 +@3147 = .rodata:0x80499BFC; // type:object size:0x11 scope:local align:4 +@3148 = .rodata:0x80499C10; // type:object size:0x1F scope:local align:4 +@3149 = .rodata:0x80499C30; // type:object size:0x12 scope:local align:4 +...rodata.0 = .rodata:0x80499C48; // type:label scope:local +@3716 = .rodata:0x80499C48; // type:object size:0xA scope:local align:4 data:string +@3783 = .rodata:0x80499C54; // type:object size:0xE scope:local align:4 data:string +@3784 = .rodata:0x80499C64; // type:object size:0xD scope:local align:4 data:string +@3785 = .rodata:0x80499C74; // type:object size:0x13 scope:local align:4 data:string +@3869 = .rodata:0x80499C88; // type:object size:0xD scope:local align:4 data:string +@3870 = .rodata:0x80499C98; // type:object size:0x15 scope:local align:4 data:string +@2651 = .rodata:0x80499CB0; // type:object size:0xA scope:local align:4 data:string +@2699 = .rodata:0x80499CBC; // type:object size:0xE scope:local align:4 data:string +@2700 = .rodata:0x80499CCC; // type:object size:0x9 scope:local align:4 data:string +@2711 = .rodata:0x80499CD8; // type:object size:0x2D scope:local align:4 +...rodata.0 = .rodata:0x80499D08; // type:label scope:local +@3183 = .rodata:0x80499D08; // type:object size:0x9 scope:local align:4 data:string +@3216 = .rodata:0x80499D14; // type:object size:0xD scope:local align:4 data:string +@3217 = .rodata:0x80499D24; // type:object size:0x1E scope:local align:4 data:string +@3293 = .rodata:0x80499D44; // type:object size:0x9 scope:local align:4 data:string +@3294 = .rodata:0x80499D50; // type:object size:0x11 scope:local align:4 data:string +@3295 = .rodata:0x80499D64; // type:object size:0x24 scope:local align:4 data:string +@2745 = .rodata:0x80499D88; // type:object size:0xF scope:local align:4 data:string +@3219 = .rodata:0x80499D98; // type:object size:0x13 scope:local align:4 +...rodata.0 = .rodata:0x80499DB0; // type:label scope:local +@2521 = .rodata:0x80499DB0; // type:object size:0xC scope:local align:4 +@3967 = .rodata:0x80499DBC; // type:object size:0xC scope:local align:4 data:string +@4045 = .rodata:0x80499DC8; // type:object size:0x10 scope:local align:4 data:string +@4046 = .rodata:0x80499DD8; // type:object size:0x9 scope:local align:4 data:string +@4161 = .rodata:0x80499DE4; // type:object size:0x28 scope:local align:4 +@4162 = .rodata:0x80499E0C; // type:object size:0x1E scope:local align:4 data:string +@4163 = .rodata:0x80499E2C; // type:object size:0x1E scope:local align:4 data:string +@4164 = .rodata:0x80499E4C; // type:object size:0xD scope:local align:4 data:string +@4166 = .rodata:0x80499E5C; // type:object size:0xD scope:local align:4 data:string +@4234 = .rodata:0x80499E6C; // type:object size:0x11 scope:local align:4 data:string +@4235 = .rodata:0x80499E80; // type:object size:0x20 scope:local align:4 +@4387 = .rodata:0x80499EA0; // type:object size:0xD scope:local align:4 data:string +@4389 = .rodata:0x80499EB0; // type:object size:0xE scope:local align:4 data:string +@4394 = .rodata:0x80499EC0; // type:object size:0x9 scope:local align:4 data:string +@4395 = .rodata:0x80499ECC; // type:object size:0xA scope:local align:4 +@4396 = .rodata:0x80499ED8; // type:object size:0x1D scope:local align:4 +@4397 = .rodata:0x80499EF8; // type:object size:0x17 scope:local align:4 data:string +@4398 = .rodata:0x80499F10; // type:object size:0x10 scope:local align:4 data:string +@4413 = .rodata:0x80499F20; // type:object size:0x1A scope:local align:4 +@4631 = .rodata:0x80499F3C; // type:object size:0x11 scope:local align:4 data:string +@4633 = .rodata:0x80499F50; // type:object size:0x11 scope:local align:4 data:string +@4684 = .rodata:0x80499F64; // type:object size:0x1E scope:local align:4 data:string +@4768 = .rodata:0x80499F84; // type:object size:0x9 scope:local align:4 data:string +@4807 = .rodata:0x80499F90; // type:object size:0x12 scope:local align:4 data:string +@4808 = .rodata:0x80499FA4; // type:object size:0x11 scope:local align:4 data:string +@5001 = .rodata:0x80499FB8; // type:object size:0xD scope:local align:4 data:string +@5161 = .rodata:0x80499FC8; // type:object size:0xA scope:local align:4 data:string +@5164 = .rodata:0x80499FD4; // type:object size:0xA scope:local align:4 data:string +@5166 = .rodata:0x80499FE0; // type:object size:0xB scope:local align:4 data:string +@5169 = .rodata:0x80499FEC; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x80499FF8; // type:label scope:local +@2735 = .rodata:0x80499FF8; // type:object size:0xC scope:local align:4 +@3456 = .rodata:0x8049A004; // type:object size:0xF scope:local align:4 data:string +@3681 = .rodata:0x8049A014; // type:object size:0x13 scope:local align:4 data:string +@3682 = .rodata:0x8049A028; // type:object size:0xF scope:local align:4 data:string +@3683 = .rodata:0x8049A038; // type:object size:0xD scope:local align:4 data:string +@3723 = .rodata:0x8049A048; // type:object size:0x13 scope:local align:4 data:string +@4060 = .rodata:0x8049A05C; // type:object size:0x17 scope:local align:4 data:string +@4061 = .rodata:0x8049A074; // type:object size:0x10 scope:local align:4 data:string +@4062 = .rodata:0x8049A084; // type:object size:0xF scope:local align:4 data:string +@4063 = .rodata:0x8049A094; // type:object size:0xE scope:local align:4 data:string +@4074 = .rodata:0x8049A0A4; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A0B0; // type:label scope:local +@2735 = .rodata:0x8049A0B0; // type:object size:0xC scope:local align:4 +@3482 = .rodata:0x8049A0BC; // type:object size:0x10 scope:local align:4 data:string +@3761 = .rodata:0x8049A0CC; // type:object size:0x17 scope:local align:4 data:string +@3762 = .rodata:0x8049A0E4; // type:object size:0x1E scope:local align:4 data:string +@3778 = .rodata:0x8049A104; // type:object size:0x15 scope:local align:4 data:string +@3851 = .rodata:0x8049A11C; // type:object size:0x9 scope:local align:4 data:string +@3852 = .rodata:0x8049A128; // type:object size:0x19 scope:local align:4 data:string +@3870 = .rodata:0x8049A144; // type:object size:0x19 scope:local align:4 data:string +@4004 = .rodata:0x8049A160; // type:object size:0x26 scope:local align:4 data:string +@4005 = .rodata:0x8049A188; // type:object size:0x18 scope:local align:4 data:string +@4165 = .rodata:0x8049A1A0; // type:object size:0x14 scope:local align:4 data:string +@4166 = .rodata:0x8049A1B4; // type:object size:0x20 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A1D8; // type:label scope:local +@2735 = .rodata:0x8049A1D8; // type:object size:0xC scope:local align:4 +@3639 = .rodata:0x8049A1E4; // type:object size:0x10 scope:local align:4 data:string +@3837 = .rodata:0x8049A1F4; // type:object size:0x14 scope:local align:4 data:string +@3838 = .rodata:0x8049A208; // type:object size:0x9 scope:local align:4 data:string +@3839 = .rodata:0x8049A214; // type:object size:0x9 scope:local align:4 data:string +@3840 = .rodata:0x8049A220; // type:object size:0x9 scope:local align:4 data:string +@3841 = .rodata:0x8049A22C; // type:object size:0xB scope:local align:4 data:string +@3842 = .rodata:0x8049A238; // type:object size:0x9 scope:local align:4 data:string +@3843 = .rodata:0x8049A244; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A250; // type:label scope:local +@2735 = .rodata:0x8049A250; // type:object size:0xC scope:local align:4 +@3669 = .rodata:0x8049A25C; // type:object size:0xC scope:local align:4 data:string +@3718 = .rodata:0x8049A268; // type:object size:0xF scope:local align:4 data:string +@3719 = .rodata:0x8049A278; // type:object size:0xA scope:local align:4 data:string +@3902 = .rodata:0x8049A284; // type:object size:0xA scope:local align:4 data:string +@3903 = .rodata:0x8049A290; // type:object size:0x1B scope:local align:4 data:string +@3937 = .rodata:0x8049A2AC; // type:object size:0x10 scope:local align:4 data:string +@3938 = .rodata:0x8049A2BC; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A2C8; // type:label scope:local +@2645 = .rodata:0x8049A2C8; // type:object size:0xB scope:local align:4 data:string +@2738 = .rodata:0x8049A2D4; // type:object size:0xB scope:local align:4 data:string +@2739 = .rodata:0x8049A2E0; // type:object size:0xA scope:local align:4 data:string +@2741 = .rodata:0x8049A2EC; // type:object size:0xB scope:local align:4 data:string +@2742 = .rodata:0x8049A2F8; // type:object size:0xD scope:local align:4 data:string +@2743 = .rodata:0x8049A308; // type:object size:0xF scope:local align:4 data:string +@2744 = .rodata:0x8049A318; // type:object size:0xB scope:local align:4 data:string +@2745 = .rodata:0x8049A324; // type:object size:0xF scope:local align:4 data:string +@2746 = .rodata:0x8049A334; // type:object size:0xD scope:local align:4 data:string +@2747 = .rodata:0x8049A344; // type:object size:0xE scope:local align:4 data:string +@2748 = .rodata:0x8049A354; // type:object size:0xA scope:local align:4 data:string +@2749 = .rodata:0x8049A360; // type:object size:0xC scope:local align:4 data:string +@2750 = .rodata:0x8049A36C; // type:object size:0xC scope:local align:4 data:string +@2751 = .rodata:0x8049A378; // type:object size:0xB scope:local align:4 data:string +@2752 = .rodata:0x8049A384; // type:object size:0xD scope:local align:4 data:string +@2753 = .rodata:0x8049A394; // type:object size:0xD scope:local align:4 data:string +@2754 = .rodata:0x8049A3A4; // type:object size:0xE scope:local align:4 data:string +@2755 = .rodata:0x8049A3B4; // type:object size:0xE scope:local align:4 data:string +@2756 = .rodata:0x8049A3C4; // type:object size:0xE scope:local align:4 data:string +@2757 = .rodata:0x8049A3D4; // type:object size:0xA scope:local align:4 data:string +@2758 = .rodata:0x8049A3E0; // type:object size:0x10 scope:local align:4 data:string +@2762 = .rodata:0x8049A3F0; // type:object size:0xC scope:local align:4 data:string +@2765 = .rodata:0x8049A3FC; // type:object size:0xA scope:local align:4 data:string +@2766 = .rodata:0x8049A408; // type:object size:0xD scope:local align:4 data:string +@2767 = .rodata:0x8049A418; // type:object size:0x11 scope:local align:4 data:string +@2768 = .rodata:0x8049A42C; // type:object size:0x10 scope:local align:4 data:string +@2769 = .rodata:0x8049A43C; // type:object size:0xD scope:local align:4 data:string +@2770 = .rodata:0x8049A44C; // type:object size:0x11 scope:local align:4 data:string +@2771 = .rodata:0x8049A460; // type:object size:0xC scope:local align:4 data:string +@2772 = .rodata:0x8049A46C; // type:object size:0x10 scope:local align:4 data:string +@2773 = .rodata:0x8049A47C; // type:object size:0x9 scope:local align:4 data:string +@2774 = .rodata:0x8049A488; // type:object size:0xC scope:local align:4 data:string +@2775 = .rodata:0x8049A494; // type:object size:0x15 scope:local align:4 data:string +@2994 = .rodata:0x8049A4B0; // type:object size:0x11 scope:local align:4 +@2686 = .rodata:0x8049A4C8; // type:object size:0xC scope:local align:4 data:string +@2687 = .rodata:0x8049A4D4; // type:object size:0x9 scope:local align:4 data:string +@2669 = .rodata:0x8049A4E0; // type:object size:0x10 scope:local align:4 data:string +@2670 = .rodata:0x8049A4F0; // type:object size:0x9 scope:local align:4 data:string +@2854 = .rodata:0x8049A4FC; // type:object size:0x1D scope:local align:4 +@2449 = .rodata:0x8049A520; // type:object size:0x12 scope:local align:4 data:string +@2450 = .rodata:0x8049A534; // type:object size:0x9 scope:local align:4 data:string +@3195 = .rodata:0x8049A540; // type:object size:0x14 scope:local align:4 data:string +@3196 = .rodata:0x8049A554; // type:object size:0x9 scope:local align:4 data:string +@2656 = .rodata:0x8049A560; // type:object size:0xE scope:local align:4 data:string +@2657 = .rodata:0x8049A570; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A580; // type:label scope:local +@2852 = .rodata:0x8049A580; // type:object size:0xC scope:local align:4 +@3542 = .rodata:0x8049A58C; // type:object size:0xD scope:local align:4 data:string +@4007 = .rodata:0x8049A59C; // type:object size:0x11 scope:local align:4 data:string +@4008 = .rodata:0x8049A5B0; // type:object size:0x9 scope:local align:4 data:string +@4009 = .rodata:0x8049A5BC; // type:object size:0xD scope:local align:4 data:string +@4010 = .rodata:0x8049A5CC; // type:object size:0xD scope:local align:4 data:string +@4011 = .rodata:0x8049A5DC; // type:object size:0xD scope:local align:4 data:string +@4214 = .rodata:0x8049A5EC; // type:object size:0xE scope:local align:4 data:string +@4407 = .rodata:0x8049A5FC; // type:object size:0x1F scope:local align:4 data:string +@4408 = .rodata:0x8049A61C; // type:object size:0xF scope:local align:4 data:string +@4409 = .rodata:0x8049A62C; // type:object size:0x22 scope:local align:4 data:string +@4411 = .rodata:0x8049A650; // type:object size:0x2F scope:local align:4 data:string +@4412 = .rodata:0x8049A680; // type:object size:0x2A scope:local align:4 data:string +@4413 = .rodata:0x8049A6AC; // type:object size:0x12 scope:local align:4 data:string +@4414 = .rodata:0x8049A6C0; // type:object size:0x22 scope:local align:4 data:string +@4655 = .rodata:0x8049A6E4; // type:object size:0xD scope:local align:4 data:string +@3514 = .rodata:0x8049A6F8; // type:object size:0x1A scope:local align:4 data:string +@3515 = .rodata:0x8049A714; // type:object size:0x1D scope:local align:4 data:string +@3523 = .rodata:0x8049A734; // type:object size:0x15 scope:local align:4 data:string +@3247 = .rodata:0x8049A750; // type:object size:0x14 scope:local align:4 data:string +@3396 = .rodata:0x8049A764; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049A770; // type:label scope:local +@3021 = .rodata:0x8049A770; // type:object size:0xC scope:local align:4 +@3994 = .rodata:0x8049A77C; // type:object size:0x1A scope:local align:4 data:string +@3995 = .rodata:0x8049A798; // type:object size:0x16 scope:local align:4 data:string +@3996 = .rodata:0x8049A7B0; // type:object size:0x18 scope:local align:4 data:string +@3997 = .rodata:0x8049A7C8; // type:object size:0x18 scope:local align:4 data:string +@3998 = .rodata:0x8049A7E0; // type:object size:0x18 scope:local align:4 data:string +@3999 = .rodata:0x8049A7F8; // type:object size:0x18 scope:local align:4 data:string +@4000 = .rodata:0x8049A810; // type:object size:0x18 scope:local align:4 data:string +@4001 = .rodata:0x8049A828; // type:object size:0x18 scope:local align:4 data:string +@4002 = .rodata:0x8049A840; // type:object size:0x18 scope:local align:4 data:string +@4017 = .rodata:0x8049A858; // type:object size:0xA scope:local align:4 data:string +@4018 = .rodata:0x8049A864; // type:object size:0xA scope:local align:4 data:string +@4019 = .rodata:0x8049A870; // type:object size:0xA scope:local align:4 data:string +@4020 = .rodata:0x8049A87C; // type:object size:0xA scope:local align:4 data:string +@4021 = .rodata:0x8049A888; // type:object size:0xA scope:local align:4 data:string +@4022 = .rodata:0x8049A894; // type:object size:0xA scope:local align:4 data:string +@4023 = .rodata:0x8049A8A0; // type:object size:0xA scope:local align:4 data:string +@4024 = .rodata:0x8049A8AC; // type:object size:0xA scope:local align:4 data:string +@4025 = .rodata:0x8049A8B8; // type:object size:0xB scope:local align:4 data:string +@4026 = .rodata:0x8049A8C4; // type:object size:0xB scope:local align:4 data:string +@4027 = .rodata:0x8049A8D0; // type:object size:0xA scope:local align:4 data:string +@4049 = .rodata:0x8049A8DC; // type:object size:0xF scope:local align:4 data:string +@4050 = .rodata:0x8049A8EC; // type:object size:0x9 scope:local align:4 data:string +@4051 = .rodata:0x8049A8F8; // type:object size:0xB scope:local align:4 data:string +@4052 = .rodata:0x8049A904; // type:object size:0x9 scope:local align:4 data:string +@4053 = .rodata:0x8049A910; // type:object size:0x10 scope:local align:4 data:string +@4093 = .rodata:0x8049A920; // type:object size:0xC scope:local align:4 data:string +@4094 = .rodata:0x8049A92C; // type:object size:0xC scope:local align:4 data:string +@4115 = .rodata:0x8049A938; // type:object size:0x20 scope:local align:4 data:string +@4170 = .rodata:0x8049A958; // type:object size:0xA scope:local align:4 data:string +@4171 = .rodata:0x8049A964; // type:object size:0xA4 scope:local align:4 +@4234 = .rodata:0x8049AA08; // type:object size:0x13 scope:local align:4 +@4248 = .rodata:0x8049AA1C; // type:object size:0x19 scope:local align:4 +@2791 = .rodata:0x8049AA38; // type:object size:0xF scope:local align:4 data:string +@2792 = .rodata:0x8049AA48; // type:object size:0x9 scope:local align:4 data:string +@2822 = .rodata:0x8049AA54; // type:object size:0x13 scope:local align:4 +@2823 = .rodata:0x8049AA68; // type:object size:0xB scope:local align:4 +@2833 = .rodata:0x8049AA74; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AA88; // type:label scope:local +@2980 = .rodata:0x8049AA88; // type:object size:0x15 scope:local align:4 data:string +@2981 = .rodata:0x8049AAA0; // type:object size:0x9 scope:local align:4 data:string +@2998 = .rodata:0x8049AAAC; // type:object size:0x13 scope:local align:4 data:string +@3390 = .rodata:0x8049AAC0; // type:object size:0x10 scope:local align:4 data:string +@3391 = .rodata:0x8049AAD0; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AAE0; // type:label scope:local +@3273 = .rodata:0x8049AAE0; // type:object size:0xC scope:local align:4 +@3300 = .rodata:0x8049AAEC; // type:object size:0xE scope:local align:4 data:string +@3308 = .rodata:0x8049AAFC; // type:object size:0x16 scope:local align:4 data:string +@3309 = .rodata:0x8049AB14; // type:object size:0x10 scope:local align:4 data:string +@3368 = .rodata:0x8049AB24; // type:object size:0xC scope:local align:4 data:string +@3347 = .rodata:0x8049AB30; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AB48; // type:label scope:local +@3361 = .rodata:0x8049AB48; // type:object size:0xC scope:local align:4 +@3502 = .rodata:0x8049AB54; // type:object size:0x12 scope:local align:4 data:string +@3503 = .rodata:0x8049AB68; // type:object size:0x9 scope:local align:4 data:string +@3504 = .rodata:0x8049AB74; // type:object size:0x12 scope:local align:4 data:string +@3581 = .rodata:0x8049AB88; // type:object size:0x9 scope:local align:4 data:string +@4136 = .rodata:0x8049AB94; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8049ABA8; // type:label scope:local +@2647 = .rodata:0x8049ABA8; // type:object size:0xF scope:local align:4 data:string +@2689 = .rodata:0x8049ABB8; // type:object size:0x27 scope:local align:4 data:string +@2730 = .rodata:0x8049ABE0; // type:object size:0x9 scope:local align:4 data:string +@2731 = .rodata:0x8049ABEC; // type:object size:0x17 scope:local align:4 data:string +@2935 = .rodata:0x8049AC04; // type:object size:0x11 scope:local align:4 data:string +@3308 = .rodata:0x8049AC18; // type:object size:0x1A scope:local align:4 +@3309 = .rodata:0x8049AC34; // type:object size:0x1E scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AC58; // type:label scope:local +@2731 = .rodata:0x8049AC58; // type:object size:0x11 scope:local align:4 data:string +@2761 = .rodata:0x8049AC6C; // type:object size:0x19 scope:local align:4 data:string +@2762 = .rodata:0x8049AC88; // type:object size:0x9 scope:local align:4 data:string +@2853 = .rodata:0x8049AC94; // type:object size:0x31 scope:local align:4 data:string +@2882 = .rodata:0x8049ACC8; // type:object size:0x21 scope:local align:4 data:string +@2883 = .rodata:0x8049ACEC; // type:object size:0xB scope:local align:4 data:string +@2884 = .rodata:0x8049ACF8; // type:object size:0x9 scope:local align:4 data:string +@3710 = .rodata:0x8049AD04; // type:object size:0x17 scope:local align:4 data:string +@4115 = .rodata:0x8049AD1C; // type:object size:0x16 scope:local align:4 data:string +@4297 = .rodata:0x8049AD34; // type:object size:0x9 scope:local align:4 data:string +@4298 = .rodata:0x8049AD40; // type:object size:0x1E scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AD60; // type:label scope:local +@3071 = .rodata:0x8049AD60; // type:object size:0x13 scope:local align:4 data:string +@3169 = .rodata:0x8049AD74; // type:object size:0x18 scope:local align:4 data:string +@3229 = .rodata:0x8049AD8C; // type:object size:0x9 scope:local align:4 data:string +@3231 = .rodata:0x8049AD98; // type:object size:0xD scope:local align:4 data:string +...rodata.0 = .rodata:0x8049ADA8; // type:label scope:local +@3767 = .rodata:0x8049ADA8; // type:object size:0xC scope:local align:4 +@4082 = .rodata:0x8049ADB4; // type:object size:0x10 scope:local align:4 data:string +@4370 = .rodata:0x8049ADC4; // type:object size:0x9 scope:local align:4 data:string +@4376 = .rodata:0x8049ADD0; // type:object size:0x12 scope:local align:4 data:string +@4377 = .rodata:0x8049ADE4; // type:object size:0x15 scope:local align:4 data:string +@4378 = .rodata:0x8049ADFC; // type:object size:0x13 scope:local align:4 data:string +@4379 = .rodata:0x8049AE10; // type:object size:0x14 scope:local align:4 data:string +@4380 = .rodata:0x8049AE24; // type:object size:0x15 scope:local align:4 data:string +@4381 = .rodata:0x8049AE3C; // type:object size:0x14 scope:local align:4 +@4661 = .rodata:0x8049AE50; // type:object size:0x11 scope:local align:4 +@4752 = .rodata:0x8049AE64; // type:object size:0x20 scope:local align:4 data:string +@4753 = .rodata:0x8049AE84; // type:object size:0x20 scope:local align:4 data:string +@4754 = .rodata:0x8049AEA4; // type:object size:0x1A scope:local align:4 data:string +@4755 = .rodata:0x8049AEC0; // type:object size:0x17 scope:local align:4 data:string +@4756 = .rodata:0x8049AED8; // type:object size:0x1E scope:local align:4 data:string +@4768 = .rodata:0x8049AEF8; // type:object size:0x1E scope:local align:4 data:string +@4769 = .rodata:0x8049AF18; // type:object size:0xA scope:local align:4 data:string +@4770 = .rodata:0x8049AF24; // type:object size:0xF scope:local align:4 data:string +@4771 = .rodata:0x8049AF34; // type:object size:0x25 scope:local align:4 data:string +@4772 = .rodata:0x8049AF5C; // type:object size:0x13 scope:local align:4 data:string +@4773 = .rodata:0x8049AF70; // type:object size:0x21 scope:local align:4 data:string +@5291 = .rodata:0x8049AF94; // type:object size:0x9 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049AFA0; // type:label scope:local +@3021 = .rodata:0x8049AFA0; // type:object size:0xC scope:local align:4 +@4189 = .rodata:0x8049AFAC; // type:object size:0xD scope:local align:4 data:string +@4543 = .rodata:0x8049AFBC; // type:object size:0x9 scope:local align:4 data:string +@4544 = .rodata:0x8049AFC8; // type:object size:0x9 scope:local align:4 data:string +@4545 = .rodata:0x8049AFD4; // type:object size:0x11 scope:local align:4 data:string +@4546 = .rodata:0x8049AFE8; // type:object size:0x18 scope:local align:4 data:string +@4570 = .rodata:0x8049B000; // type:object size:0x1B scope:local align:4 data:string +@4571 = .rodata:0x8049B01C; // type:object size:0x1B scope:local align:4 data:string +@4572 = .rodata:0x8049B038; // type:object size:0x16 scope:local align:4 data:string +@4573 = .rodata:0x8049B050; // type:object size:0x19 scope:local align:4 data:string +@4725 = .rodata:0x8049B06C; // type:object size:0x13 scope:local align:4 data:string +@4726 = .rodata:0x8049B080; // type:object size:0xF scope:local align:4 data:string +@4727 = .rodata:0x8049B090; // type:object size:0x13 scope:local align:4 +@4728 = .rodata:0x8049B0A4; // type:object size:0xC scope:local align:4 data:string +@4730 = .rodata:0x8049B0B0; // type:object size:0xB scope:local align:4 data:string +@5098 = .rodata:0x8049B0BC; // type:object size:0x1A scope:local align:4 data:string +@5099 = .rodata:0x8049B0D8; // type:object size:0x1A scope:local align:4 data:string +@5100 = .rodata:0x8049B0F4; // type:object size:0xA scope:local align:4 data:string +@5738 = .rodata:0x8049B100; // type:object size:0x1B scope:local align:4 data:string +@5739 = .rodata:0x8049B11C; // type:object size:0xF scope:local align:4 data:string +@5740 = .rodata:0x8049B12C; // type:object size:0x25 scope:local align:4 data:string +@5741 = .rodata:0x8049B154; // type:object size:0x9 scope:local align:4 data:string +@5744 = .rodata:0x8049B160; // type:object size:0xA scope:local align:4 data:string +@5745 = .rodata:0x8049B16C; // type:object size:0xF scope:local align:4 data:string +@5746 = .rodata:0x8049B17C; // type:object size:0x17 scope:local align:4 data:string +@5747 = .rodata:0x8049B194; // type:object size:0xE scope:local align:4 data:string +@5748 = .rodata:0x8049B1A4; // type:object size:0x9 scope:local align:4 data:string +@5821 = .rodata:0x8049B1B0; // type:object size:0x20 scope:local align:4 data:string +@5822 = .rodata:0x8049B1D0; // type:object size:0x21 scope:local align:4 data:string +@5823 = .rodata:0x8049B1F4; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B208; // type:label scope:local +@2449 = .rodata:0x8049B208; // type:object size:0x11 scope:local align:4 data:string +@2505 = .rodata:0x8049B21C; // type:object size:0x9 scope:local align:4 data:string +@2507 = .rodata:0x8049B228; // type:object size:0x9 scope:local align:4 data:string +@2593 = .rodata:0x8049B234; // type:object size:0x12 scope:local align:4 data:string +@2685 = .rodata:0x8049B248; // type:object size:0x12 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B260; // type:label scope:local +@3090 = .rodata:0x8049B260; // type:object size:0x10 scope:local align:4 data:string +@3150 = .rodata:0x8049B270; // type:object size:0x13 scope:local align:4 data:string +@3151 = .rodata:0x8049B284; // type:object size:0xF scope:local align:4 data:string +@3152 = .rodata:0x8049B294; // type:object size:0xE scope:local align:4 +@3153 = .rodata:0x8049B2A4; // type:object size:0xC scope:local align:4 data:string +@3202 = .rodata:0x8049B2B0; // type:object size:0x9 scope:local align:4 data:string +@3203 = .rodata:0x8049B2BC; // type:object size:0x9 scope:local align:4 data:string +@3245 = .rodata:0x8049B2C8; // type:object size:0x29 scope:local align:4 data:string +@3246 = .rodata:0x8049B2F4; // type:object size:0x1C scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B310; // type:label scope:local +@3412 = .rodata:0x8049B310; // type:object size:0xC scope:local align:4 data:string +@3413 = .rodata:0x8049B31C; // type:object size:0x22 scope:local align:4 data:string +@3414 = .rodata:0x8049B340; // type:object size:0x22 scope:local align:4 data:string +@3415 = .rodata:0x8049B364; // type:object size:0x1B scope:local align:4 data:string +@3416 = .rodata:0x8049B380; // type:object size:0x18 scope:local align:4 +@3448 = .rodata:0x8049B398; // type:object size:0x18 scope:local align:4 +...rodata.0 = .rodata:0x8049B3B0; // type:label scope:local +@3189 = .rodata:0x8049B3B0; // type:object size:0x12 scope:local align:4 data:string +@3190 = .rodata:0x8049B3C4; // type:object size:0x12 scope:local align:4 data:string +@3191 = .rodata:0x8049B3D8; // type:object size:0x12 scope:local align:4 data:string +@3192 = .rodata:0x8049B3EC; // type:object size:0x12 scope:local align:4 data:string +@3193 = .rodata:0x8049B400; // type:object size:0x11 scope:local align:4 data:string +@3194 = .rodata:0x8049B414; // type:object size:0x11 scope:local align:4 data:string +@3195 = .rodata:0x8049B428; // type:object size:0x11 scope:local align:4 data:string +@3197 = .rodata:0x8049B43C; // type:object size:0x13 scope:local align:4 data:string +@3198 = .rodata:0x8049B450; // type:object size:0xF scope:local align:4 data:string +@3199 = .rodata:0x8049B460; // type:object size:0xF scope:local align:4 data:string +@3200 = .rodata:0x8049B470; // type:object size:0xF scope:local align:4 data:string +@3201 = .rodata:0x8049B480; // type:object size:0xF scope:local align:4 data:string +@3202 = .rodata:0x8049B490; // type:object size:0xF scope:local align:4 data:string +@3203 = .rodata:0x8049B4A0; // type:object size:0xF scope:local align:4 data:string +@3204 = .rodata:0x8049B4B0; // type:object size:0xF scope:local align:4 data:string +@3205 = .rodata:0x8049B4C0; // type:object size:0xF scope:local align:4 data:string +@3206 = .rodata:0x8049B4D0; // type:object size:0xF scope:local align:4 data:string +@3207 = .rodata:0x8049B4E0; // type:object size:0xF scope:local align:4 data:string +@3208 = .rodata:0x8049B4F0; // type:object size:0xF scope:local align:4 data:string +@3209 = .rodata:0x8049B500; // type:object size:0xF scope:local align:4 data:string +@3210 = .rodata:0x8049B510; // type:object size:0xF scope:local align:4 data:string +@3211 = .rodata:0x8049B520; // type:object size:0xF scope:local align:4 data:string +sTHPFileSettingTable__Q24Game30@unnamed@pikmin2THPPlayer_cpp@ = .rodata:0x8049B530; // type:object size:0xC0 scope:local align:4 +@3237 = .rodata:0x8049B5F0; // type:object size:0xA scope:local align:4 data:string +@3263 = .rodata:0x8049B5FC; // type:object size:0x15 scope:local align:4 data:string +@3264 = .rodata:0x8049B614; // type:object size:0x9 scope:local align:4 data:string +@3271 = .rodata:0x8049B620; // type:object size:0x17 scope:local align:4 data:string +@3302 = .rodata:0x8049B638; // type:object size:0x18 scope:local align:4 data:string +@3303 = .rodata:0x8049B650; // type:object size:0x13 scope:local align:4 data:string +@3304 = .rodata:0x8049B664; // type:object size:0x11 scope:local align:4 data:string +@3305 = .rodata:0x8049B678; // type:object size:0x24 scope:local align:4 data:string +@3306 = .rodata:0x8049B69C; // type:object size:0xE scope:local align:4 data:string +@3307 = .rodata:0x8049B6AC; // type:object size:0x20 scope:local align:4 data:string +@3308 = .rodata:0x8049B6CC; // type:object size:0x12 scope:local align:4 data:string +@3325 = .rodata:0x8049B6E0; // type:object size:0xF scope:local align:4 data:string +@3326 = .rodata:0x8049B6F0; // type:object size:0x1A scope:local align:4 data:string +@3327 = .rodata:0x8049B70C; // type:object size:0x11 scope:local align:4 data:string +@3358 = .rodata:0x8049B720; // type:object size:0xD scope:local align:4 data:string +@3384 = .rodata:0x8049B730; // type:object size:0x15 scope:local align:4 data:string +@2786 = .rodata:0x8049B748; // type:object size:0x17 scope:local align:4 +@2822 = .rodata:0x8049B760; // type:object size:0xF scope:local align:4 data:string +@2823 = .rodata:0x8049B770; // type:object size:0x9 scope:local align:4 data:string +@2951 = .rodata:0x8049B780; // type:object size:0xD scope:local align:4 data:string +@2952 = .rodata:0x8049B790; // type:object size:0x9 scope:local align:4 data:string +@2657 = .rodata:0x8049B7A0; // type:object size:0x10 scope:local align:4 data:string +@2678 = .rodata:0x8049B7B0; // type:object size:0x9 scope:local align:4 data:string +@2853 = .rodata:0x8049B7BC; // type:object size:0xC scope:local align:4 data:string +...rodata.0 = .rodata:0x8049B7C8; // type:label scope:local +@2831 = .rodata:0x8049B7C8; // type:object size:0xC scope:local align:4 +@3109 = .rodata:0x8049B7D4; // type:object size:0xE scope:local align:4 data:string +@3169 = .rodata:0x8049B7E4; // type:object size:0x9 scope:local align:4 data:string +@3182 = .rodata:0x8049B7F0; // type:object size:0x26 scope:local align:4 data:string +@3208 = .rodata:0x8049B818; // type:object size:0x9 scope:local align:4 data:string +@3227 = .rodata:0x8049B824; // type:object size:0xB scope:local align:4 data:string +@3246 = .rodata:0x8049B830; // type:object size:0x9 scope:local align:4 data:string +@3374 = .rodata:0x8049B83C; // type:object size:0x24 scope:local align:4 data:string +@3487 = .rodata:0x8049B860; // type:object size:0x29 scope:local align:4 data:string +@3543 = .rodata:0x8049B88C; // type:object size:0x21 scope:local align:4 data:string +@3544 = .rodata:0x8049B8B0; // type:object size:0x28 scope:local align:4 +@3627 = .rodata:0x8049B8D8; // type:object size:0x27 scope:local align:4 data:string +@3660 = .rodata:0x8049B900; // type:object size:0x13 scope:local align:4 +@3675 = .rodata:0x8049B914; // type:object size:0x21 scope:local align:4 data:string +@3904 = .rodata:0x8049B938; // type:object size:0x1F scope:local align:4 data:string +@2661 = .rodata:0x8049B958; // type:object size:0xE scope:local align:4 data:string +@2662 = .rodata:0x8049B968; // type:object size:0x9 scope:local align:4 data:string +@3653 = .rodata:0x8049B978; // type:object size:0x9 scope:local align:4 data:string +@3655 = .rodata:0x8049B984; // type:object size:0xA scope:local align:4 data:string +@3805 = .rodata:0x8049B990; // type:object size:0xE scope:local align:4 data:string +@2872 = .rodata:0x8049B9A0; // type:object size:0x1B scope:local align:4 data:string +@2873 = .rodata:0x8049B9BC; // type:object size:0x9 scope:local align:4 data:string +@2904 = .rodata:0x8049B9C8; // type:object size:0xD scope:local align:4 data:string +@2716 = .rodata:0x8049B9D8; // type:object size:0x12 scope:local align:4 data:string +@2717 = .rodata:0x8049B9EC; // type:object size:0x9 scope:local align:4 data:string +@2740 = .rodata:0x8049B9F8; // type:object size:0xB scope:local align:4 data:string +@1 = .rodata:0x8049BA08; // type:object size:0x11 scope:local align:4 +@2 = .rodata:0x8049BA1C; // type:object size:0x77 scope:local align:4 +@3 = .rodata:0x8049BA94; // type:object size:0x55 scope:local align:4 +@4 = .rodata:0x8049BAEC; // type:object size:0x2C scope:local align:4 +@5 = .rodata:0x8049BB18; // type:object size:0x57 scope:local align:4 +@6 = .rodata:0x8049BB70; // type:object size:0xD scope:local align:4 data:string +@7 = .rodata:0x8049BB80; // type:object size:0x7D scope:local align:4 data:string +@8 = .rodata:0x8049BC00; // type:object size:0x6F scope:local align:4 data:string +@9 = .rodata:0x8049BC70; // type:object size:0x27 scope:local align:4 data:string +@10 = .rodata:0x8049BC98; // type:object size:0x59 scope:local align:4 data:string +@11 = .rodata:0x8049BCF4; // type:object size:0xE scope:local align:4 +@12 = .rodata:0x8049BD04; // type:object size:0x96 scope:local align:4 data:string +@13 = .rodata:0x8049BD9C; // type:object size:0x7A scope:local align:4 data:string +@14 = .rodata:0x8049BE18; // type:object size:0x2C scope:local align:4 data:string +@15 = .rodata:0x8049BE44; // type:object size:0x5E scope:local align:4 +@16 = .rodata:0x8049BEA4; // type:object size:0x8A scope:local align:4 +@17 = .rodata:0x8049BF30; // type:object size:0x82 scope:local align:4 +@18 = .rodata:0x8049BFB4; // type:object size:0x25 scope:local align:4 +@19 = .rodata:0x8049BFDC; // type:object size:0x4F scope:local align:4 +@20 = .rodata:0x8049C02C; // type:object size:0x84 scope:local align:4 data:string +@21 = .rodata:0x8049C0B0; // type:object size:0x72 scope:local align:4 +@22 = .rodata:0x8049C124; // type:object size:0x1D scope:local align:4 data:string +@23 = .rodata:0x8049C144; // type:object size:0x48 scope:local align:4 data:string +@24 = .rodata:0x8049C18C; // type:object size:0x7D scope:local align:4 +@25 = .rodata:0x8049C20C; // type:object size:0x79 scope:local align:4 data:string +@26 = .rodata:0x8049C288; // type:object size:0x26 scope:local align:4 data:string +@27 = .rodata:0x8049C2B0; // type:object size:0x5E scope:local align:4 data:string +...rodata.0 = .rodata:0x8049C310; // type:label scope:local +@2650 = .rodata:0x8049C310; // type:object size:0x13 scope:local align:4 data:string +@2651 = .rodata:0x8049C324; // type:object size:0xF scope:local align:4 data:string +@2652 = .rodata:0x8049C334; // type:object size:0xD scope:local align:4 data:string +@2653 = .rodata:0x8049C344; // type:object size:0x13 scope:local align:4 data:string +@2654 = .rodata:0x8049C358; // type:object size:0x15 scope:local align:4 data:string +@2655 = .rodata:0x8049C370; // type:object size:0x14 scope:local align:4 data:string +@2656 = .rodata:0x8049C384; // type:object size:0x15 scope:local align:4 data:string +@2657 = .rodata:0x8049C39C; // type:object size:0x15 scope:local align:4 data:string +@2658 = .rodata:0x8049C3B4; // type:object size:0xB scope:local align:4 data:string +@2659 = .rodata:0x8049C3C0; // type:object size:0x1D scope:local align:4 data:string +@2660 = .rodata:0x8049C3E0; // type:object size:0x18 scope:local align:4 data:string +@2661 = .rodata:0x8049C3F8; // type:object size:0x11 scope:local align:4 data:string +@2662 = .rodata:0x8049C40C; // type:object size:0x10 scope:local align:4 data:string +@2663 = .rodata:0x8049C41C; // type:object size:0xC scope:local align:4 data:string +@2664 = .rodata:0x8049C428; // type:object size:0x2B scope:local align:4 data:string +@2665 = .rodata:0x8049C454; // type:object size:0x29 scope:local align:4 data:string +@2666 = .rodata:0x8049C480; // type:object size:0x2C scope:local align:4 data:string +@2667 = .rodata:0x8049C4AC; // type:object size:0x27 scope:local align:4 data:string +@2668 = .rodata:0x8049C4D4; // type:object size:0x28 scope:local align:4 data:string +@2669 = .rodata:0x8049C4FC; // type:object size:0x2B scope:local align:4 data:string +@2670 = .rodata:0x8049C528; // type:object size:0x26 scope:local align:4 data:string +@2671 = .rodata:0x8049C550; // type:object size:0x2B scope:local align:4 data:string +@2672 = .rodata:0x8049C57C; // type:object size:0x2F scope:local align:4 data:string +@2673 = .rodata:0x8049C5AC; // type:object size:0x2D scope:local align:4 data:string +@2674 = .rodata:0x8049C5DC; // type:object size:0x2E scope:local align:4 data:string +@2675 = .rodata:0x8049C60C; // type:object size:0x31 scope:local align:4 data:string +@2676 = .rodata:0x8049C640; // type:object size:0x30 scope:local align:4 data:string +@2677 = .rodata:0x8049C670; // type:object size:0x26 scope:local align:4 data:string +@2678 = .rodata:0x8049C698; // type:object size:0x2D scope:local align:4 data:string +@2679 = .rodata:0x8049C6C8; // type:object size:0x29 scope:local align:4 data:string +@2680 = .rodata:0x8049C6F4; // type:object size:0x30 scope:local align:4 data:string +@2681 = .rodata:0x8049C724; // type:object size:0x2A scope:local align:4 data:string +@2682 = .rodata:0x8049C750; // type:object size:0x31 scope:local align:4 data:string +@2683 = .rodata:0x8049C784; // type:object size:0x29 scope:local align:4 data:string +@2684 = .rodata:0x8049C7B0; // type:object size:0x2B scope:local align:4 data:string +@2685 = .rodata:0x8049C7DC; // type:object size:0x29 scope:local align:4 data:string +@2686 = .rodata:0x8049C808; // type:object size:0x2E scope:local align:4 data:string +@2687 = .rodata:0x8049C838; // type:object size:0x19 scope:local align:4 data:string +@2688 = .rodata:0x8049C854; // type:object size:0x1B scope:local align:4 data:string +@2689 = .rodata:0x8049C870; // type:object size:0x17 scope:local align:4 data:string +@2690 = .rodata:0x8049C888; // type:object size:0x19 scope:local align:4 data:string +@2691 = .rodata:0x8049C8A4; // type:object size:0x1C scope:local align:4 data:string +@2692 = .rodata:0x8049C8C0; // type:object size:0x1E scope:local align:4 data:string +@2693 = .rodata:0x8049C8E0; // type:object size:0x17 scope:local align:4 data:string +@2694 = .rodata:0x8049C8F8; // type:object size:0x19 scope:local align:4 data:string +@2695 = .rodata:0x8049C914; // type:object size:0x1C scope:local align:4 data:string +@2696 = .rodata:0x8049C930; // type:object size:0x1E scope:local align:4 data:string +@2697 = .rodata:0x8049C950; // type:object size:0x26 scope:local align:4 data:string +@2698 = .rodata:0x8049C978; // type:object size:0x28 scope:local align:4 data:string +@2699 = .rodata:0x8049C9A0; // type:object size:0x28 scope:local align:4 data:string +@2700 = .rodata:0x8049C9C8; // type:object size:0x2A scope:local align:4 data:string +@2701 = .rodata:0x8049C9F4; // type:object size:0x28 scope:local align:4 data:string +@2702 = .rodata:0x8049CA1C; // type:object size:0x2A scope:local align:4 data:string +@2703 = .rodata:0x8049CA48; // type:object size:0x24 scope:local align:4 data:string +@2704 = .rodata:0x8049CA6C; // type:object size:0x26 scope:local align:4 data:string +@2705 = .rodata:0x8049CA94; // type:object size:0x23 scope:local align:4 data:string +@2706 = .rodata:0x8049CAB8; // type:object size:0x25 scope:local align:4 data:string +@2707 = .rodata:0x8049CAE0; // type:object size:0x22 scope:local align:4 data:string +@2708 = .rodata:0x8049CB04; // type:object size:0x24 scope:local align:4 data:string +@2709 = .rodata:0x8049CB28; // type:object size:0x23 scope:local align:4 data:string +@2710 = .rodata:0x8049CB4C; // type:object size:0x25 scope:local align:4 data:string +@2711 = .rodata:0x8049CB74; // type:object size:0x28 scope:local align:4 data:string +@2712 = .rodata:0x8049CB9C; // type:object size:0x1C scope:local align:4 data:string +@2713 = .rodata:0x8049CBB8; // type:object size:0x1B scope:local align:4 data:string +@2714 = .rodata:0x8049CBD4; // type:object size:0x22 scope:local align:4 data:string +@2715 = .rodata:0x8049CBF8; // type:object size:0x21 scope:local align:4 data:string +@2716 = .rodata:0x8049CC1C; // type:object size:0x1B scope:local align:4 data:string +@2717 = .rodata:0x8049CC38; // type:object size:0x1A scope:local align:4 data:string +@2728 = .rodata:0x8049CC54; // type:object size:0x9 scope:local align:4 data:string +@2789 = .rodata:0x8049CC60; // type:object size:0x18 scope:local align:4 data:string +@3216 = .rodata:0x8049CC78; // type:object size:0x9 scope:local align:4 data:string +@3217 = .rodata:0x8049CC84; // type:object size:0x14 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049CC98; // type:label scope:local +@3529 = .rodata:0x8049CC98; // type:object size:0xA scope:local align:4 data:string +@3598 = .rodata:0x8049CCA4; // type:object size:0xA scope:local align:4 data:string +@3625 = .rodata:0x8049CCB0; // type:object size:0xA scope:local align:4 data:string +@3769 = .rodata:0x8049CCBC; // type:object size:0x18 scope:local align:4 data:string +@3770 = .rodata:0x8049CCD4; // type:object size:0x9 scope:local align:4 data:string +@3851 = .rodata:0x8049CCE0; // type:object size:0xD scope:local align:4 data:string +@4172 = .rodata:0x8049CCF0; // type:object size:0xB scope:local align:4 data:string +@4257 = .rodata:0x8049CCFC; // type:object size:0x9 scope:local align:4 data:string +@4258 = .rodata:0x8049CD08; // type:object size:0xA scope:local align:4 data:string +@4259 = .rodata:0x8049CD14; // type:object size:0x24 scope:local align:4 data:string +@4427 = .rodata:0x8049CD38; // type:object size:0x16 scope:local align:4 data:string +@4440 = .rodata:0x8049CD50; // type:object size:0xA scope:local align:4 data:string +@4452 = .rodata:0x8049CD5C; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8049CD68; // type:label scope:local +@3626 = .rodata:0x8049CD68; // type:object size:0xC scope:local align:4 +@3722 = .rodata:0x8049CD74; // type:object size:0x17 scope:local align:4 data:string +@3723 = .rodata:0x8049CD8C; // type:object size:0x9 scope:local align:4 data:string +@3724 = .rodata:0x8049CD98; // type:object size:0x9 scope:local align:4 data:string +@3725 = .rodata:0x8049CDA4; // type:object size:0xA scope:local align:4 data:string +@3727 = .rodata:0x8049CDB0; // type:object size:0x24 scope:local align:4 data:string +@3728 = .rodata:0x8049CDD4; // type:object size:0x13 scope:local align:4 data:string +@3729 = .rodata:0x8049CDE8; // type:object size:0xE scope:local align:4 data:string +@3838 = .rodata:0x8049CDF8; // type:object size:0xB scope:local align:4 data:string +@3934 = .rodata:0x8049CE04; // type:object size:0xB scope:local align:4 data:string +@3935 = .rodata:0x8049CE10; // type:object size:0xB scope:local align:4 data:string +@3936 = .rodata:0x8049CE1C; // type:object size:0xD scope:local align:4 data:string +@4017 = .rodata:0x8049CE2C; // type:object size:0x14 scope:local align:4 +@4047 = .rodata:0x8049CE40; // type:object size:0x14 scope:local align:4 +@4061 = .rodata:0x8049CE54; // type:object size:0x14 scope:local align:4 +@4066 = .rodata:0x8049CE68; // type:object size:0x14 scope:local align:4 +@4071 = .rodata:0x8049CE7C; // type:object size:0x14 scope:local align:4 +@5552 = .rodata:0x8049CE90; // type:object size:0xE scope:local align:4 +...rodata.0 = .rodata:0x8049CEA0; // type:label scope:local +@3531 = .rodata:0x8049CEA0; // type:object size:0x18 scope:local align:4 data:string +@3532 = .rodata:0x8049CEB8; // type:object size:0x9 scope:local align:4 data:string +@3578 = .rodata:0x8049CEC4; // type:object size:0x9 scope:local align:4 data:string +@3723 = .rodata:0x8049CED0; // type:object size:0x9 scope:local align:4 data:string +@3724 = .rodata:0x8049CEDC; // type:object size:0xA scope:local align:4 data:string +@3807 = .rodata:0x8049CEE8; // type:object size:0x11 scope:local align:4 +@3970 = .rodata:0x8049CEFC; // type:object size:0x3C scope:local align:4 +@4836 = .rodata:0x8049CF38; // type:object size:0x24 scope:local align:4 data:string +@4837 = .rodata:0x8049CF5C; // type:object size:0xB scope:local align:4 data:string +@5629 = .rodata:0x8049CF68; // type:object size:0x16 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049CF80; // type:label scope:local +@3491 = .rodata:0x8049CF80; // type:object size:0x14 scope:local align:4 data:string +@3492 = .rodata:0x8049CF94; // type:object size:0x9 scope:local align:4 data:string +@3493 = .rodata:0x8049CFA0; // type:object size:0x9 scope:local align:4 data:string +@3494 = .rodata:0x8049CFAC; // type:object size:0xA scope:local align:4 data:string +@3495 = .rodata:0x8049CFB8; // type:object size:0x24 scope:local align:4 data:string +@3532 = .rodata:0x8049CFDC; // type:object size:0x13 scope:local align:4 data:string +@3536 = .rodata:0x8049CFF0; // type:object size:0x10 scope:local align:4 +@4078 = .rodata:0x8049D000; // type:object size:0x12 scope:local align:4 data:string +@4079 = .rodata:0x8049D014; // type:object size:0xB scope:local align:4 data:string +@4080 = .rodata:0x8049D020; // type:object size:0xE scope:local align:4 data:string +@4081 = .rodata:0x8049D030; // type:object size:0xF scope:local align:4 data:string +@4082 = .rodata:0x8049D040; // type:object size:0x11 scope:local align:4 data:string +@4083 = .rodata:0x8049D054; // type:object size:0x11 scope:local align:4 data:string +@4084 = .rodata:0x8049D068; // type:object size:0x14 scope:local align:4 data:string +@4085 = .rodata:0x8049D07C; // type:object size:0x14 scope:local align:4 data:string +@4087 = .rodata:0x8049D090; // type:object size:0x13 scope:local align:4 data:string +@4088 = .rodata:0x8049D0A4; // type:object size:0x16 scope:local align:4 data:string +@4089 = .rodata:0x8049D0BC; // type:object size:0x12 scope:local align:4 data:string +@4090 = .rodata:0x8049D0D0; // type:object size:0x15 scope:local align:4 data:string +@4091 = .rodata:0x8049D0E8; // type:object size:0x15 scope:local align:4 data:string +@4092 = .rodata:0x8049D100; // type:object size:0x16 scope:local align:4 data:string +@4093 = .rodata:0x8049D118; // type:object size:0xF scope:local align:4 data:string +@4094 = .rodata:0x8049D128; // type:object size:0x11 scope:local align:4 data:string +@4095 = .rodata:0x8049D13C; // type:object size:0x10 scope:local align:4 data:string +@4096 = .rodata:0x8049D14C; // type:object size:0x10 scope:local align:4 data:string +@4097 = .rodata:0x8049D15C; // type:object size:0x10 scope:local align:4 data:string +@4098 = .rodata:0x8049D16C; // type:object size:0x13 scope:local align:4 data:string +@4099 = .rodata:0x8049D180; // type:object size:0x16 scope:local align:4 data:string +@4100 = .rodata:0x8049D198; // type:object size:0x14 scope:local align:4 data:string +@4101 = .rodata:0x8049D1AC; // type:object size:0x15 scope:local align:4 data:string +@4102 = .rodata:0x8049D1C4; // type:object size:0x15 scope:local align:4 data:string +@4103 = .rodata:0x8049D1DC; // type:object size:0x10 scope:local align:4 data:string +@4104 = .rodata:0x8049D1EC; // type:object size:0xB scope:local align:4 data:string +@4105 = .rodata:0x8049D1F8; // type:object size:0x11 scope:local align:4 data:string +@4106 = .rodata:0x8049D20C; // type:object size:0x11 scope:local align:4 data:string +@4107 = .rodata:0x8049D220; // type:object size:0x11 scope:local align:4 data:string +@4108 = .rodata:0x8049D234; // type:object size:0x11 scope:local align:4 data:string +@4109 = .rodata:0x8049D248; // type:object size:0x11 scope:local align:4 data:string +@4110 = .rodata:0x8049D25C; // type:object size:0x11 scope:local align:4 data:string +@4111 = .rodata:0x8049D270; // type:object size:0x11 scope:local align:4 data:string +@4112 = .rodata:0x8049D284; // type:object size:0x11 scope:local align:4 data:string +@4113 = .rodata:0x8049D298; // type:object size:0x11 scope:local align:4 data:string +@4114 = .rodata:0x8049D2AC; // type:object size:0x11 scope:local align:4 data:string +@4115 = .rodata:0x8049D2C0; // type:object size:0x11 scope:local align:4 data:string +@4116 = .rodata:0x8049D2D4; // type:object size:0x11 scope:local align:4 data:string +@4117 = .rodata:0x8049D2E8; // type:object size:0x11 scope:local align:4 data:string +@4118 = .rodata:0x8049D2FC; // type:object size:0xE scope:local align:4 data:string +@4119 = .rodata:0x8049D30C; // type:object size:0xC scope:local align:4 data:string +@4120 = .rodata:0x8049D318; // type:object size:0x12 scope:local align:4 data:string +@4121 = .rodata:0x8049D32C; // type:object size:0x13 scope:local align:4 data:string +@4122 = .rodata:0x8049D340; // type:object size:0x13 scope:local align:4 data:string +@4123 = .rodata:0x8049D354; // type:object size:0x13 scope:local align:4 data:string +@4124 = .rodata:0x8049D368; // type:object size:0x13 scope:local align:4 data:string +@4125 = .rodata:0x8049D37C; // type:object size:0x13 scope:local align:4 data:string +@4126 = .rodata:0x8049D390; // type:object size:0x13 scope:local align:4 data:string +@4127 = .rodata:0x8049D3A4; // type:object size:0x13 scope:local align:4 data:string +@4128 = .rodata:0x8049D3B8; // type:object size:0x13 scope:local align:4 data:string +@4129 = .rodata:0x8049D3CC; // type:object size:0x13 scope:local align:4 data:string +@4130 = .rodata:0x8049D3E0; // type:object size:0x13 scope:local align:4 data:string +@4131 = .rodata:0x8049D3F4; // type:object size:0x13 scope:local align:4 data:string +@4132 = .rodata:0x8049D408; // type:object size:0x13 scope:local align:4 data:string +@4133 = .rodata:0x8049D41C; // type:object size:0x13 scope:local align:4 data:string +@4134 = .rodata:0x8049D430; // type:object size:0x13 scope:local align:4 data:string +@4135 = .rodata:0x8049D444; // type:object size:0x11 scope:local align:4 data:string +@4136 = .rodata:0x8049D458; // type:object size:0x15 scope:local align:4 data:string +@4137 = .rodata:0x8049D470; // type:object size:0xE scope:local align:4 data:string +@4138 = .rodata:0x8049D480; // type:object size:0xE scope:local align:4 data:string +@4139 = .rodata:0x8049D490; // type:object size:0x10 scope:local align:4 data:string +@4140 = .rodata:0x8049D4A0; // type:object size:0x12 scope:local align:4 data:string +@4141 = .rodata:0x8049D4B4; // type:object size:0x13 scope:local align:4 data:string +@4142 = .rodata:0x8049D4C8; // type:object size:0xE scope:local align:4 data:string +@4143 = .rodata:0x8049D4D8; // type:object size:0x12 scope:local align:4 data:string +@4144 = .rodata:0x8049D4EC; // type:object size:0x12 scope:local align:4 data:string +@4145 = .rodata:0x8049D500; // type:object size:0xE scope:local align:4 data:string +@4146 = .rodata:0x8049D510; // type:object size:0x15 scope:local align:4 data:string +@4147 = .rodata:0x8049D528; // type:object size:0x9 scope:local align:4 data:string +@4148 = .rodata:0x8049D534; // type:object size:0x10 scope:local align:4 data:string +@4149 = .rodata:0x8049D544; // type:object size:0x16 scope:local align:4 data:string +@4150 = .rodata:0x8049D55C; // type:object size:0x14 scope:local align:4 data:string +@4151 = .rodata:0x8049D570; // type:object size:0x9 scope:local align:4 data:string +@4152 = .rodata:0x8049D57C; // type:object size:0x13 scope:local align:4 data:string +@4153 = .rodata:0x8049D590; // type:object size:0xD scope:local align:4 data:string +@4154 = .rodata:0x8049D5A0; // type:object size:0x12 scope:local align:4 data:string +@4155 = .rodata:0x8049D5B4; // type:object size:0x10 scope:local align:4 data:string +@4156 = .rodata:0x8049D5C4; // type:object size:0x10 scope:local align:4 data:string +@4157 = .rodata:0x8049D5D4; // type:object size:0x11 scope:local align:4 data:string +@4158 = .rodata:0x8049D5E8; // type:object size:0x11 scope:local align:4 data:string +@4159 = .rodata:0x8049D5FC; // type:object size:0x11 scope:local align:4 data:string +@4160 = .rodata:0x8049D610; // type:object size:0x11 scope:local align:4 data:string +@4161 = .rodata:0x8049D624; // type:object size:0xF scope:local align:4 data:string +@4162 = .rodata:0x8049D634; // type:object size:0xE scope:local align:4 data:string +@4163 = .rodata:0x8049D644; // type:object size:0x10 scope:local align:4 data:string +@4164 = .rodata:0x8049D654; // type:object size:0x10 scope:local align:4 data:string +@4165 = .rodata:0x8049D664; // type:object size:0x11 scope:local align:4 data:string +@4166 = .rodata:0x8049D678; // type:object size:0xE scope:local align:4 data:string +@4167 = .rodata:0x8049D688; // type:object size:0xF scope:local align:4 data:string +@4168 = .rodata:0x8049D698; // type:object size:0x14 scope:local align:4 data:string +@4169 = .rodata:0x8049D6AC; // type:object size:0x17 scope:local align:4 data:string +@4170 = .rodata:0x8049D6C4; // type:object size:0x12 scope:local align:4 data:string +@4171 = .rodata:0x8049D6D8; // type:object size:0xA scope:local align:4 data:string +@4172 = .rodata:0x8049D6E4; // type:object size:0xF scope:local align:4 data:string +@4173 = .rodata:0x8049D6F4; // type:object size:0x13 scope:local align:4 data:string +@4174 = .rodata:0x8049D708; // type:object size:0x14 scope:local align:4 data:string +@4175 = .rodata:0x8049D71C; // type:object size:0x11 scope:local align:4 data:string +@4176 = .rodata:0x8049D730; // type:object size:0xE scope:local align:4 data:string +@4177 = .rodata:0x8049D740; // type:object size:0xC scope:local align:4 data:string +@4178 = .rodata:0x8049D74C; // type:object size:0x18 scope:local align:4 data:string +@4179 = .rodata:0x8049D764; // type:object size:0xA scope:local align:4 data:string +@4180 = .rodata:0x8049D770; // type:object size:0xF scope:local align:4 data:string +@4181 = .rodata:0x8049D780; // type:object size:0xF scope:local align:4 data:string +@4182 = .rodata:0x8049D790; // type:object size:0x13 scope:local align:4 data:string +@4183 = .rodata:0x8049D7A4; // type:object size:0xE scope:local align:4 data:string +@4184 = .rodata:0x8049D7B4; // type:object size:0x10 scope:local align:4 data:string +@4185 = .rodata:0x8049D7C4; // type:object size:0x14 scope:local align:4 data:string +@4212 = .rodata:0x8049D7D8; // type:object size:0x13 scope:local align:4 data:string +@4292 = .rodata:0x8049D7EC; // type:object size:0xB scope:local align:4 data:string +@4533 = .rodata:0x8049D7F8; // type:object size:0xE scope:local align:4 data:string +...rodata.0 = .rodata:0x8049D808; // type:label scope:local +@3631 = .rodata:0x8049D808; // type:object size:0xC scope:local align:4 +@3655 = .rodata:0x8049D814; // type:object size:0x15 scope:local align:4 data:string +@3656 = .rodata:0x8049D82C; // type:object size:0x9 scope:local align:4 data:string +@3847 = .rodata:0x8049D838; // type:object size:0xB scope:local align:4 data:string +@4020 = .rodata:0x8049D844; // type:object size:0x9 scope:local align:4 data:string +@4196 = .rodata:0x8049D850; // type:object size:0xA scope:local align:4 data:string +@5843 = .rodata:0x8049D85C; // type:object size:0xD scope:local align:4 data:string +@5918 = .rodata:0x8049D86C; // type:object size:0x24 scope:local align:4 data:string +@6119 = .rodata:0x8049D890; // type:object size:0x13 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049D8A8; // type:label scope:local +@3458 = .rodata:0x8049D8A8; // type:object size:0x17 scope:local align:4 data:string +@3459 = .rodata:0x8049D8C0; // type:object size:0x9 scope:local align:4 data:string +@3923 = .rodata:0x8049D8CC; // type:object size:0x9 scope:local align:4 data:string +@3924 = .rodata:0x8049D8D8; // type:object size:0xA scope:local align:4 data:string +@3925 = .rodata:0x8049D8E4; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049D908; // type:label scope:local +@3483 = .rodata:0x8049D908; // type:object size:0x12 scope:local align:4 data:string +@3484 = .rodata:0x8049D91C; // type:object size:0x9 scope:local align:4 data:string +@3797 = .rodata:0x8049D928; // type:object size:0xB scope:local align:4 data:string +@3798 = .rodata:0x8049D934; // type:object size:0x9 scope:local align:4 data:string +@3799 = .rodata:0x8049D940; // type:object size:0xA scope:local align:4 data:string +@3800 = .rodata:0x8049D94C; // type:object size:0x24 scope:local align:4 data:string +@3868 = .rodata:0x8049D970; // type:object size:0xB scope:local align:4 data:string +...rodata.0 = .rodata:0x8049D980; // type:label scope:local +@3616 = .rodata:0x8049D980; // type:object size:0x1B scope:local align:4 data:string +@3617 = .rodata:0x8049D99C; // type:object size:0x9 scope:local align:4 data:string +@3682 = .rodata:0x8049D9A8; // type:object size:0xE scope:local align:4 data:string +@3683 = .rodata:0x8049D9B8; // type:object size:0xE scope:local align:4 data:string +@3684 = .rodata:0x8049D9C8; // type:object size:0x20 scope:local align:4 data:string +@3685 = .rodata:0x8049D9E8; // type:object size:0xD scope:local align:4 data:string +@3686 = .rodata:0x8049D9F8; // type:object size:0x21 scope:local align:4 data:string +@3688 = .rodata:0x8049DA1C; // type:object size:0xD scope:local align:4 data:string +@3689 = .rodata:0x8049DA2C; // type:object size:0xE scope:local align:4 data:string +@3690 = .rodata:0x8049DA3C; // type:object size:0x20 scope:local align:4 data:string +@3691 = .rodata:0x8049DA5C; // type:object size:0x1F scope:local align:4 data:string +@3909 = .rodata:0x8049DA7C; // type:object size:0x1E scope:local align:4 data:string +@3914 = .rodata:0x8049DA9C; // type:object size:0xA scope:local align:4 data:string +@3915 = .rodata:0x8049DAA8; // type:object size:0xA scope:local align:4 data:string +@3916 = .rodata:0x8049DAB4; // type:object size:0x9 scope:local align:4 data:string +@3917 = .rodata:0x8049DAC0; // type:object size:0xA scope:local align:4 data:string +@4084 = .rodata:0x8049DACC; // type:object size:0x9 scope:local align:4 data:string +@4085 = .rodata:0x8049DAD8; // type:object size:0xB scope:local align:4 data:string +@4286 = .rodata:0x8049DAE4; // type:object size:0xA scope:local align:4 data:string +@4287 = .rodata:0x8049DAF0; // type:object size:0xA scope:local align:4 data:string +@4288 = .rodata:0x8049DAFC; // type:object size:0xA scope:local align:4 data:string +@4289 = .rodata:0x8049DB08; // type:object size:0xA scope:local align:4 data:string +@4290 = .rodata:0x8049DB14; // type:object size:0xA scope:local align:4 data:string +@4291 = .rodata:0x8049DB20; // type:object size:0xA scope:local align:4 data:string +...rodata.0 = .rodata:0x8049DB30; // type:label scope:local +@3626 = .rodata:0x8049DB30; // type:object size:0xC scope:local align:4 +smACosPrm__Q23PSM7SeSound = .rodata:0x8049DB3C; // type:object size:0x194 scope:global align:4 data:float +@3700 = .rodata:0x8049DCD0; // type:object size:0x15 scope:local align:4 data:string +@3701 = .rodata:0x8049DCE8; // type:object size:0x9 scope:local align:4 data:string +@3702 = .rodata:0x8049DCF4; // type:object size:0xB scope:local align:4 data:string +@3803 = .rodata:0x8049DD00; // type:object size:0xD scope:local align:4 data:string +@3804 = .rodata:0x8049DD10; // type:object size:0x9 scope:local align:4 data:string +@3805 = .rodata:0x8049DD1C; // type:object size:0xA scope:local align:4 data:string +@3806 = .rodata:0x8049DD28; // type:object size:0x26 scope:local align:4 data:string +@3807 = .rodata:0x8049DD50; // type:object size:0x24 scope:local align:4 data:string +...rodata.0 = .rodata:0x8049DD78; // type:label scope:local +@3098 = .rodata:0x8049DD78; // type:object size:0x18 scope:local align:4 data:string +@3099 = .rodata:0x8049DD90; // type:object size:0xC scope:local align:4 data:string +@3100 = .rodata:0x8049DD9C; // type:object size:0xA scope:local align:4 data:string +@3101 = .rodata:0x8049DDA8; // type:object size:0x18 scope:local align:4 data:string +@3102 = .rodata:0x8049DDC0; // type:object size:0x1D scope:local align:4 data:string +@3103 = .rodata:0x8049DDE0; // type:object size:0x1D scope:local align:4 data:string +@3104 = .rodata:0x8049DE00; // type:object size:0x1F scope:local align:4 data:string +@3105 = .rodata:0x8049DE20; // type:object size:0x1D scope:local align:4 data:string +@3106 = .rodata:0x8049DE40; // type:object size:0x1E scope:local align:4 data:string +@3107 = .rodata:0x8049DE60; // type:object size:0x1E scope:local align:4 data:string +@3108 = .rodata:0x8049DE80; // type:object size:0x1F scope:local align:4 data:string +@3109 = .rodata:0x8049DEA0; // type:object size:0x20 scope:local align:4 data:string +@3110 = .rodata:0x8049DEC0; // type:object size:0x1D scope:local align:4 data:string +@3128 = .rodata:0x8049DEE0; // type:object size:0x9 scope:local align:4 data:string +@3129 = .rodata:0x8049DEEC; // type:object size:0xF scope:local align:4 data:string +@3180 = .rodata:0x8049DEFC; // type:object size:0x19 scope:local align:4 data:string +@3181 = .rodata:0x8049DF18; // type:object size:0x19 scope:local align:4 data:string +@3182 = .rodata:0x8049DF34; // type:object size:0x1B scope:local align:4 data:string +@3183 = .rodata:0x8049DF50; // type:object size:0x19 scope:local align:4 data:string +@3184 = .rodata:0x8049DF6C; // type:object size:0x1A scope:local align:4 data:string +@3185 = .rodata:0x8049DF88; // type:object size:0x1A scope:local align:4 data:string +@3186 = .rodata:0x8049DFA4; // type:object size:0x1B scope:local align:4 data:string +@3187 = .rodata:0x8049DFC0; // type:object size:0x1C scope:local align:4 data:string +@3188 = .rodata:0x8049DFDC; // type:object size:0xF scope:local align:4 data:string +@3359 = .rodata:0x8049DFF0; // type:object size:0x9 scope:local align:4 data:string +@3360 = .rodata:0x8049DFFC; // type:object size:0x9 scope:local align:4 data:string +@3363 = .rodata:0x8049E008; // type:object size:0xA scope:local align:4 data:string +@3381 = .rodata:0x8049E014; // type:object size:0x1B scope:local align:4 data:string +@3382 = .rodata:0x8049E030; // type:object size:0x9 scope:local align:4 data:string +cVolMaxDist_Kehai__Q23PSM11CreaturePrm = .rodata:0x8049E03C; // type:object size:0x1C scope:global align:4 +cVolMaxDist_Battle__Q23PSM11CreaturePrm = .rodata:0x8049E058; // type:object size:0x1C scope:global align:4 +cVolZeroDist_Kehai__Q23PSM11CreaturePrm = .rodata:0x8049E074; // type:object size:0x1C scope:global align:4 +cVolZeroDist_Battle__Q23PSM11CreaturePrm = .rodata:0x8049E090; // type:object size:0x1C scope:global align:4 +cVolZeroDist_InnerSize_Kehai__Q23PSM11CreaturePrm = .rodata:0x8049E0AC; // type:object size:0x1C scope:global align:4 +...rodata.0 = .rodata:0x8049E0C8; // type:label scope:local +@3517 = .rodata:0x8049E0C8; // type:object size:0x17 scope:local align:4 data:string +@3518 = .rodata:0x8049E0E0; // type:object size:0x9 scope:local align:4 data:string +@3532 = .rodata:0x8049E0EC; // type:object size:0x12 scope:local align:4 +@3533 = .rodata:0x8049E100; // type:object size:0x12 scope:local align:4 +__vt__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_ = .data:0x8049E120; // type:object size:0x1C scope:global align:4 +__vt__Q217JStudio_JParticle17TAdaptor_particle = .data:0x8049E13C; // type:object size:0x40 scope:global align:4 +__vt__18JPAEmitterCallBack = .data:0x8049E17C; // type:object size:0x1C scope:weak align:4 +__vt__Q27JStudio17TAdaptor_particle = .data:0x8049E198; // type:object size:0x40 scope:weak align:4 +__vt__Q217JStudio_JParticle13TCreateObject = .data:0x8049E1D8; // type:object size:0x10 scope:global align:4 +sapfnIsLeadByte___Q28JMessage18TResourceContainer = .data:0x8049E1E8; // type:object size:0x10 scope:global align:4 +__vt__Q28JMessage12TParse_color = .data:0x8049E1F8; // type:object size:0x14 scope:global align:4 +__vt__Q28JMessage6TParse = .data:0x8049E20C; // type:object size:0x14 scope:global align:4 +__vt__Q37JGadget6binary19TParse_header_block = .data:0x8049E220; // type:object size:0x14 scope:weak align:4 +__vt__Q38JMessage18TResourceContainer10TCResource = .data:0x8049E234; // type:object size:0x14 scope:global align:4 +__vt__Q27JGadget42TLinkList_factory = .data:0x8049E248; // type:object size:0x14 scope:weak align:4 +__vt__Q28JMessage19TRenderingProcessor = .data:0x8049E260; // type:object size:0x48 scope:global align:4 +__vt__Q28JMessage18TSequenceProcessor = .data:0x8049E2A8; // type:object size:0x60 scope:global align:4 +__vt__Q28JMessage10TProcessor = .data:0x8049E308; // type:object size:0x40 scope:global align:4 +__vt__Q28JMessage10TReference = .data:0x8049E348; // type:object size:0x10 scope:global align:4 +__vt__Q28JMessage8TControl = .data:0x8049E358; // type:object size:0xC scope:global align:4 +__vt__Q27JStudio22TFunctionValue_hermite = .data:0x8049E368; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio29TFunctionValue_list_parameter = .data:0x8049E388; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio19TFunctionValue_list = .data:0x8049E3A8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio25TFunctionValue_transition = .data:0x8049E3C8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio23TFunctionValue_constant = .data:0x8049E3E8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio24TFunctionValue_composite = .data:0x8049E408; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TFunctionValue = .data:0x8049E428; // type:object size:0x20 scope:weak align:4 +@830 = .data:0x8049E448; // type:object size:0x5C scope:local align:4 +__vt__Q37JStudio3fvb6TParse = .data:0x8049E4A4; // type:object size:0x14 scope:global align:4 +__vt__Q37JStudio3fvb8TFactory = .data:0x8049E4B8; // type:object size:0x14 scope:global align:4 +__vt__Q37JStudio3fvb8TControl = .data:0x8049E4CC; // type:object size:0xC scope:global align:4 +__vt__Q37JStudio3fvb15TObject_hermite = .data:0x8049E4D8; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb22TObject_list_parameter = .data:0x8049E4E8; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb12TObject_list = .data:0x8049E4F8; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb18TObject_transition = .data:0x8049E508; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb16TObject_constant = .data:0x8049E518; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb17TObject_composite = .data:0x8049E528; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio3fvb7TObject = .data:0x8049E538; // type:object size:0x10 scope:weak align:4 +__vt__Q27JStudio6TParse = .data:0x8049E548; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio8TFactory = .data:0x8049E568; // type:object size:0x14 scope:global align:4 +__vt__Q27JStudio13TCreateObject = .data:0x8049E57C; // type:object size:0x10 scope:weak align:4 +__vt__Q27JStudio8TControl = .data:0x8049E58C; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x8049E598; // type:label scope:local +@738 = .data:0x8049E598; // type:object size:0xC scope:local align:4 data:4byte +@741 = .data:0x8049E5A4; // type:object size:0xC scope:local align:4 +@744 = .data:0x8049E5B0; // type:object size:0xC scope:local align:4 +@747 = .data:0x8049E5BC; // type:object size:0xC scope:local align:4 +@750 = .data:0x8049E5C8; // type:object size:0xC scope:local align:4 +@753 = .data:0x8049E5D4; // type:object size:0xC scope:local align:4 +@756 = .data:0x8049E5E0; // type:object size:0xC scope:local align:4 +@759 = .data:0x8049E5EC; // type:object size:0xC scope:local align:4 +@841 = .data:0x8049E5F8; // type:object size:0x4C scope:local align:4 +@1366 = .data:0x8049E644; // type:object size:0xC scope:local align:4 +@1369 = .data:0x8049E650; // type:object size:0xC scope:local align:4 +@1371 = .data:0x8049E65C; // type:object size:0xC scope:local align:4 +@1373 = .data:0x8049E668; // type:object size:0xC scope:local align:4 +@1375 = .data:0x8049E674; // type:object size:0xC scope:local align:4 +@1377 = .data:0x8049E680; // type:object size:0xC scope:local align:4 +@1379 = .data:0x8049E68C; // type:object size:0xC scope:local align:4 +@1381 = .data:0x8049E698; // type:object size:0xC scope:local align:4 +@1384 = .data:0x8049E6A4; // type:object size:0xC scope:local align:4 +@1386 = .data:0x8049E6B0; // type:object size:0xC scope:local align:4 +@1388 = .data:0x8049E6BC; // type:object size:0xC scope:local align:4 +@1390 = .data:0x8049E6C8; // type:object size:0xC scope:local align:4 +@1465 = .data:0x8049E6D4; // type:object size:0x4C scope:local align:4 +@1464 = .data:0x8049E720; // type:object size:0x4C scope:local align:4 +@1463 = .data:0x8049E76C; // type:object size:0x124 scope:local align:4 +@1559 = .data:0x8049E890; // type:object size:0x4C scope:local align:4 +@1589 = .data:0x8049E8DC; // type:object size:0xC scope:local align:4 +@1592 = .data:0x8049E8E8; // type:object size:0xC scope:local align:4 +@1594 = .data:0x8049E8F4; // type:object size:0xC scope:local align:4 +@1597 = .data:0x8049E900; // type:object size:0xC scope:local align:4 +@1599 = .data:0x8049E90C; // type:object size:0xC scope:local align:4 +@1601 = .data:0x8049E918; // type:object size:0xC scope:local align:4 +@1603 = .data:0x8049E924; // type:object size:0xC scope:local align:4 +@1677 = .data:0x8049E930; // type:object size:0x4C scope:local align:4 +@1676 = .data:0x8049E97C; // type:object size:0x4C scope:local align:4 +@1675 = .data:0x8049E9C8; // type:object size:0x100 scope:local align:4 +@1775 = .data:0x8049EAC8; // type:object size:0x4C scope:local align:4 +@1774 = .data:0x8049EB14; // type:object size:0x44 scope:local align:4 +@1805 = .data:0x8049EB58; // type:object size:0xC scope:local align:4 data:4byte +@1808 = .data:0x8049EB64; // type:object size:0xC scope:local align:4 data:4byte +@1886 = .data:0x8049EB70; // type:object size:0x4C scope:local align:4 +@1885 = .data:0x8049EBBC; // type:object size:0x4C scope:local align:4 +@1884 = .data:0x8049EC08; // type:object size:0x8C scope:local align:4 +@1916 = .data:0x8049EC94; // type:object size:0xC scope:local align:4 data:4byte +@2002 = .data:0x8049ECA0; // type:object size:0xC scope:local align:4 +@2005 = .data:0x8049ECAC; // type:object size:0xC scope:local align:4 +@2007 = .data:0x8049ECB8; // type:object size:0xC scope:local align:4 +@2009 = .data:0x8049ECC4; // type:object size:0xC scope:local align:4 +@2011 = .data:0x8049ECD0; // type:object size:0xC scope:local align:4 +@2013 = .data:0x8049ECDC; // type:object size:0xC scope:local align:4 +@2015 = .data:0x8049ECE8; // type:object size:0xC scope:local align:4 +@2017 = .data:0x8049ECF4; // type:object size:0xC scope:local align:4 +@2102 = .data:0x8049ED00; // type:object size:0x4C scope:local align:4 +@2101 = .data:0x8049ED4C; // type:object size:0x4C scope:local align:4 +@2100 = .data:0x8049ED98; // type:object size:0x120 scope:local align:4 +@2132 = .data:0x8049EEB8; // type:object size:0xC scope:local align:4 +@2135 = .data:0x8049EEC4; // type:object size:0xC scope:local align:4 +@2137 = .data:0x8049EED0; // type:object size:0xC scope:local align:4 +@2139 = .data:0x8049EEDC; // type:object size:0xC scope:local align:4 +@2141 = .data:0x8049EEE8; // type:object size:0xC scope:local align:4 +@2143 = .data:0x8049EEF4; // type:object size:0xC scope:local align:4 +@2145 = .data:0x8049EF00; // type:object size:0xC scope:local align:4 +@2147 = .data:0x8049EF0C; // type:object size:0xC scope:local align:4 +@2150 = .data:0x8049EF18; // type:object size:0xC scope:local align:4 +@2219 = .data:0x8049EF24; // type:object size:0x4C scope:local align:4 +@2218 = .data:0x8049EF70; // type:object size:0x4C scope:local align:4 +@2217 = .data:0x8049EFBC; // type:object size:0xF0 scope:local align:4 +__vt__Q27JStudio13TObject_sound = .data:0x8049F0AC; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TAdaptor_sound = .data:0x8049F0CC; // type:object size:0x44 scope:weak align:4 +__vt__Q27JStudio16TObject_particle = .data:0x8049F110; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio15TObject_message = .data:0x8049F170; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio16TAdaptor_message = .data:0x8049F190; // type:object size:0x24 scope:weak align:4 +__vt__Q27JStudio13TObject_light = .data:0x8049F1B4; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TAdaptor_light = .data:0x8049F1D4; // type:object size:0x28 scope:weak align:4 +__vt__Q27JStudio11TObject_fog = .data:0x8049F1FC; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio12TAdaptor_fog = .data:0x8049F21C; // type:object size:0x20 scope:weak align:4 +__vt__Q27JStudio14TObject_camera = .data:0x8049F23C; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio15TAdaptor_camera = .data:0x8049F25C; // type:object size:0x3C scope:weak align:4 +__vt__Q27JStudio20TObject_ambientLight = .data:0x8049F298; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio21TAdaptor_ambientLight = .data:0x8049F2B8; // type:object size:0x20 scope:weak align:4 +__vt__Q27JStudio13TObject_actor = .data:0x8049F2D8; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio14TAdaptor_actor = .data:0x8049F2F8; // type:object size:0x50 scope:weak align:4 +__vt__Q27JStudio7TObject = .data:0x8049F348; // type:object size:0x20 scope:global align:4 +__vt__Q27JStudio8TAdaptor = .data:0x8049F368; // type:object size:0x20 scope:global align:4 +__vt__Q37JStudio14TVariableValue13TOutput_none_ = .data:0x8049F388; // type:object size:0x10 scope:global align:4 +__vt__Q37JStudio14TVariableValue7TOutput = .data:0x8049F398; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_ = .data:0x8049F3A8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_ = .data:0x8049F3B8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_ = .data:0x8049F3C8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_ = .data:0x8049F3D8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_ = .data:0x8049F3E8; // type:object size:0x10 scope:weak align:4 +__vt__Q37JStudio3stb6TParse = .data:0x8049F3F8; // type:object size:0x20 scope:global align:4 +__vt__Q37JStudio3stb8TFactory = .data:0x8049F418; // type:object size:0x14 scope:global align:4 +__vt__Q37JStudio3stb8TControl = .data:0x8049F42C; // type:object size:0xC scope:global align:4 +__vt__Q37JStudio3stb15TObject_control = .data:0x8049F438; // type:object size:0x20 scope:weak align:4 +__vt__Q37JStudio3stb7TObject = .data:0x8049F458; // type:object size:0x20 scope:global align:4 +__vt__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_ = .data:0x8049F478; // type:object size:0x10 scope:global align:4 +__vt__Q214JStudio_JStage14TAdaptor_light = .data:0x8049F488; // type:object size:0x28 scope:global align:4 +...data.0 = .data:0x8049F4B0; // type:label scope:local +@869 = .data:0x8049F4B0; // type:object size:0xC scope:local align:4 data:4byte +@878 = .data:0x8049F4BC; // type:object size:0xC scope:local align:4 data:4byte +@895 = .data:0x8049F4C8; // type:object size:0xC scope:local align:4 data:4byte +@1052 = .data:0x8049F4D4; // type:object size:0xC scope:local align:4 +@1053 = .data:0x8049F4E0; // type:object size:0xC scope:local align:4 +@1058 = .data:0x8049F4EC; // type:object size:0xC scope:local align:4 +@1059 = .data:0x8049F4F8; // type:object size:0xC scope:local align:4 +@1060 = .data:0x8049F504; // type:object size:0xC scope:local align:4 +@1065 = .data:0x8049F510; // type:object size:0xC scope:local align:4 +@1066 = .data:0x8049F51C; // type:object size:0xC scope:local align:4 +@1067 = .data:0x8049F528; // type:object size:0xC scope:local align:4 +__vt__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_ = .data:0x8049F534; // type:object size:0x10 scope:global align:4 +__vt__Q214JStudio_JStage14TAdaptor_actor = .data:0x8049F544; // type:object size:0x50 scope:global align:4 +__vt__Q214JStudio_JStage81TVariableValueOutput_object_ = .data:0x8049F5E4; // type:object size:0x10 scope:weak align:4 +__vt__Q214JStudio_JStage21TAdaptor_ambientLight = .data:0x8049F608; // type:object size:0x20 scope:global align:4 +...data.0 = .data:0x8049F628; // type:label scope:local +@994 = .data:0x8049F628; // type:object size:0xC scope:local align:4 data:4byte +@995 = .data:0x8049F634; // type:object size:0xC scope:local align:4 +@999 = .data:0x8049F640; // type:object size:0xC scope:local align:4 +@1000 = .data:0x8049F64C; // type:object size:0xC scope:local align:4 +@1004 = .data:0x8049F658; // type:object size:0xC scope:local align:4 +@1005 = .data:0x8049F664; // type:object size:0xC scope:local align:4 +@1009 = .data:0x8049F670; // type:object size:0xC scope:local align:4 +@1010 = .data:0x8049F67C; // type:object size:0xC scope:local align:4 +__vt__Q214JStudio_JStage15TAdaptor_camera = .data:0x8049F688; // type:object size:0x3C scope:global align:4 +__vt__Q214JStudio_JStage83TVariableValueOutput_object_ = .data:0x8049F700; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x8049F720; // type:label scope:local +@827 = .data:0x8049F720; // type:object size:0xC scope:local align:4 data:4byte +@828 = .data:0x8049F72C; // type:object size:0xC scope:local align:4 +@832 = .data:0x8049F738; // type:object size:0xC scope:local align:4 +@833 = .data:0x8049F744; // type:object size:0xC scope:local align:4 +__vt__Q214JStudio_JStage12TAdaptor_fog = .data:0x8049F750; // type:object size:0x20 scope:global align:4 +__vt__Q214JStudio_JStage77TVariableValueOutput_object_ = .data:0x8049F790; // type:object size:0x10 scope:weak align:4 +__vt__Q214JStudio_JStage13TCreateObject = .data:0x8049F7B0; // type:object size:0x10 scope:global align:4 +__vt__Q216JStudio_JMessage16TAdaptor_message = .data:0x8049F7C0; // type:object size:0x24 scope:global align:4 +__vt__Q216JStudio_JMessage13TCreateObject = .data:0x8049F7E8; // type:object size:0x14 scope:global align:4 +__vt__Q216JStudio_JMessage18TCreateObject_base = .data:0x8049F7FC; // type:object size:0x14 scope:global align:4 +...data.0 = .data:0x8049F810; // type:label scope:local +@1497 = .data:0x8049F810; // type:object size:0xC scope:local align:4 data:4byte +@1500 = .data:0x8049F81C; // type:object size:0xC scope:local align:4 +@1503 = .data:0x8049F828; // type:object size:0xC scope:local align:4 +@1506 = .data:0x8049F834; // type:object size:0xC scope:local align:4 +@1509 = .data:0x8049F840; // type:object size:0xC scope:local align:4 +__vt__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_ = .data:0x8049F84C; // type:object size:0x10 scope:global align:4 +__vt__Q214JStudio_JAudio14TAdaptor_sound = .data:0x8049F85C; // type:object size:0x44 scope:global align:4 +__vt__Q214JStudio_JAudio13TCreateObject = .data:0x8049F8F8; // type:object size:0x10 scope:global align:4 +__vt__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya> = .data:0x8049F908; // type:object size:0x2C scope:weak align:4 +__vt__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya> = .data:0x8049F934; // type:object size:0x2C scope:weak align:4 +__vt__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x8049F960; // type:object size:0x2C scope:weak align:4 +__vt__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x8049F98C; // type:object size:0x2C scope:weak align:4 +__vt__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic> = .data:0x8049F9B8; // type:object size:0x2C scope:weak align:4 +__vt__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic> = .data:0x8049F9E4; // type:object size:0x2C scope:weak align:4 +__vt__22J3DMtxCalcBlendAnmBase = .data:0x8049FA10; // type:object size:0x2C scope:weak align:4 +__vt__10J3DMtxCalc = .data:0x8049FA3C; // type:object size:0x2C scope:weak align:4 +sMessageBuffer__7JKRAram = .data:0x8049FA68; // type:object size:0x10 scope:global align:4 +sMessageQueue__7JKRAram = .data:0x8049FA78; // type:object size:0x20 scope:global align:4 +__vt__7JKRAram = .data:0x8049FA98; // type:object size:0x10 scope:global align:4 +__vt__7JKRFile = .data:0x8049FAA8; // type:object size:0x20 scope:weak align:4 +__vt__14JKRAramArchive = .data:0x8049FAC8; // type:object size:0x50 scope:global align:4 +__vt__12JKRAramBlock = .data:0x8049FB18; // type:object size:0xC scope:global align:4 +__vt__11JKRAramHeap = .data:0x8049FB28; // type:object size:0xC scope:global align:4 +sMessageBuffer__13JKRAramStream = .data:0x8049FB38; // type:object size:0x10 scope:global align:4 +sMessageQueue__13JKRAramStream = .data:0x8049FB48; // type:object size:0x20 scope:global align:4 +__vt__13JKRAramStream = .data:0x8049FB68; // type:object size:0x10 scope:global align:4 +__vt__10JKRArchive = .data:0x8049FB78; // type:object size:0x50 scope:global align:4 +__vt__14JKRCompArchive = .data:0x8049FBC8; // type:object size:0x50 scope:global align:4 +sMessageBuffer__9JKRDecomp = .data:0x8049FC18; // type:object size:0x10 scope:global align:4 +sMessageQueue__9JKRDecomp = .data:0x8049FC28; // type:object size:0x20 scope:global align:4 +__vt__9JKRDecomp = .data:0x8049FC48; // type:object size:0x10 scope:global align:4 +__vt__11JKRDisposer = .data:0x8049FC58; // type:object size:0xC scope:global align:4 +__vt__10JKRDvdFile = .data:0x8049FC68; // type:object size:0x24 scope:global align:4 +__vt__13JKRDvdArchive = .data:0x8049FC90; // type:object size:0x50 scope:global align:4 +__vt__10JKRExpHeap = .data:0x8049FCE0; // type:object size:0x60 scope:global align:4 +__vt__13JKRFileFinder = .data:0x8049FD40; // type:object size:0x10 scope:weak align:4 +__vt__12JKRFileCache = .data:0x8049FD50; // type:object size:0x4C scope:global align:4 +__vt__12JKRDvdFinder = .data:0x8049FDA0; // type:object size:0x10 scope:global align:4 +__vt__12JKRArcFinder = .data:0x8049FDB0; // type:object size:0x10 scope:global align:4 +__vt__13JKRFileLoader = .data:0x8049FDC0; // type:object size:0x3C scope:global align:4 +__vt__7JKRHeap = .data:0x8049FE00; // type:object size:0x60 scope:global align:4 +__vt__13JKRMemArchive = .data:0x8049FE60; // type:object size:0x50 scope:global align:4 +__vt__12JKRSolidHeap = .data:0x8049FEB0; // type:object size:0x60 scope:global align:4 +__vt__7JKRTask = .data:0x8049FF10; // type:object size:0x10 scope:global align:4 +__vt__9JKRThread = .data:0x8049FF20; // type:object size:0x10 scope:global align:4 +__vt__10JSUIosBase = .data:0x8049FF30; // type:object size:0xC scope:weak align:4 +__vt__20JSURandomInputStream = .data:0x8049FF40; // type:object size:0x24 scope:global align:4 +__vt__14JSUInputStream = .data:0x8049FF64; // type:object size:0x18 scope:global align:4 +__vt__20JSUMemoryInputStream = .data:0x8049FF80; // type:object size:0x24 scope:global align:4 +__vt__18JSUFileInputStream = .data:0x8049FFA8; // type:object size:0x24 scope:global align:4 +__vt__10JUTConsole = .data:0x8049FFD0; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x8049FFE0; // type:label scope:local +sAsciiTable__14JUTDirectPrint = .data:0x8049FFE0; // type:object size:0x80 scope:global align:4 +sFontData__14JUTDirectPrint = .data:0x804A0060; // type:object size:0x100 scope:global align:4 +sFontData2__14JUTDirectPrint = .data:0x804A0160; // type:object size:0x134 scope:global align:4 +twiceBit$379 = .data:0x804A0294; // type:object size:0x10 scope:local align:4 +sMessageQueue__12JUTException = .data:0x804A02A8; // type:object size:0x20 scope:global align:4 +c3bcnt = .data:0x804A02C8; // type:object size:0x20 scope:local align:8 data:4byte +sCpuExpName__12JUTException = .data:0x804A02E8; // type:object size:0x44 scope:global align:4 +__vt__12JUTException = .data:0x804A032C; // type:object size:0x10 scope:global align:4 +__vt__8JUTFader = .data:0x804A0340; // type:object size:0x18 scope:global align:4 +__vt__7JUTFont = .data:0x804A0358; // type:object size:0x44 scope:weak align:4 +sChannelMask__Q210JUTGamePad7CRumble = .data:0x804A03A0; // type:object size:0x10 scope:global align:4 data:4byte +channel_mask = .data:0x804A03B0; // type:object size:0x10 scope:local align:4 data:4byte +__vt__10JUTGamePad = .data:0x804A03C0; // type:object size:0xC scope:global align:4 +__vt__12JUTGraphFifo = .data:0x804A03D0; // type:object size:0xC scope:global align:4 +__vt__10JUTNameTab = .data:0x804A03E0; // type:object size:0xC scope:weak align:4 +__vt__10JUTResFont = .data:0x804A03F0; // type:object size:0x4C scope:global align:4 +saoAboutEncoding___10JUTRomFont = .data:0x804A0440; // type:object size:0x18 scope:global align:4 +__vt__10JUTRomFont = .data:0x804A0458; // type:object size:0x44 scope:global align:4 +__vt__8JUTVideo = .data:0x804A04A0; // type:object size:0xC scope:global align:4 +__vt__12JUTCacheFont = .data:0x804A04B0; // type:object size:0x4C scope:global align:4 +__vt__13J2DOrthoGraph = .data:0x804A0500; // type:object size:0x28 scope:global align:4 +__vt__13J2DPerspGraph = .data:0x804A0528; // type:object size:0x28 scope:global align:4 +__vt__14J2DGrafContext = .data:0x804A0550; // type:object size:0x28 scope:global align:4 +@3085 = .data:0x804A0578; // type:object size:0x20 scope:local align:4 +__vt__7J2DPane = .data:0x804A0598; // type:object size:0x94 scope:global align:4 +__vt__10J2DPicture = .data:0x804A0630; // type:object size:0x14C scope:global align:4 +@936 = .data:0x804A0780; // type:object size:0x60 scope:local align:4 +__vt__8J2DPrint = .data:0x804A07E0; // type:object size:0xC scope:global align:4 +__vt__9J2DScreen = .data:0x804A07F0; // type:object size:0x9C scope:global align:4 +__vt__10J2DTextBox = .data:0x804A0890; // type:object size:0xBC scope:global align:4 +__vt__9J2DWindow = .data:0x804A0950; // type:object size:0xCC scope:global align:4 +__vt__11J2DWindowEx = .data:0x804A0A20; // type:object size:0xCC scope:global align:4 +__vt__20J2DAnmFullLoader_v15 = .data:0x804A0AF0; // type:object size:0x14 scope:global align:4 +__vt__19J2DAnmKeyLoader_v15 = .data:0x804A0B04; // type:object size:0x14 scope:global align:4 +__vt__12J2DAnmLoader = .data:0x804A0B18; // type:object size:0x14 scope:weak align:4 +__vt__20J2DAnmVisibilityFull = .data:0x804A0B2C; // type:object size:0x10 scope:weak align:4 +__vt__14J2DAnmVtxColor = .data:0x804A0B3C; // type:object size:0x14 scope:weak align:4 +__vt__15J2DAnmTransform = .data:0x804A0B50; // type:object size:0x14 scope:weak align:4 +__vt__10J2DAnmBase = .data:0x804A0B64; // type:object size:0x10 scope:weak align:4 +__vt__15J2DIndBlockFull = .data:0x804A0B78; // type:object size:0x38 scope:global align:4 +__vt__11J2DIndBlock = .data:0x804A0BB0; // type:object size:0x38 scope:weak align:4 +__vt__13J2DTevBlock16 = .data:0x804A0BE8; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock8 = .data:0x804A0CA4; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock4 = .data:0x804A0D60; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock2 = .data:0x804A0E1C; // type:object size:0xBC scope:global align:4 +__vt__12J2DTevBlock1 = .data:0x804A0ED8; // type:object size:0xBC scope:global align:4 +__vt__11J2DTevBlock = .data:0x804A0F94; // type:object size:0xBC scope:global align:4 +__vt__14J2DTexGenBlock = .data:0x804A1050; // type:object size:0xC scope:global align:4 +__vt__15J2DIndBlockNull = .data:0x804A1060; // type:object size:0x38 scope:weak align:4 +__vt__11J2DMaterial = .data:0x804A1098; // type:object size:0xC scope:global align:4 +__vt__13J2DColorBlock = .data:0x804A10A4; // type:object size:0xC scope:weak align:4 +__vt__12J2DPictureEx = .data:0x804A10B0; // type:object size:0x14C scope:global align:4 +__vt__12J2DTextBoxEx = .data:0x804A1200; // type:object size:0xBC scope:global align:4 +__vt__15J2DAnmTevRegKey = .data:0x804A12C0; // type:object size:0x10 scope:global align:4 +__vt__16J2DAnmTexPattern = .data:0x804A12D0; // type:object size:0x10 scope:global align:4 +__vt__19J2DAnmTextureSRTKey = .data:0x804A12E0; // type:object size:0x10 scope:global align:4 +__vt__17J2DAnmVtxColorKey = .data:0x804A12F0; // type:object size:0x14 scope:global align:4 +__vt__18J2DAnmVtxColorFull = .data:0x804A1304; // type:object size:0x14 scope:global align:4 +__vt__14J2DAnmColorKey = .data:0x804A1318; // type:object size:0x14 scope:global align:4 +__vt__15J2DAnmColorFull = .data:0x804A132C; // type:object size:0x14 scope:global align:4 +__vt__11J2DAnmColor = .data:0x804A1340; // type:object size:0x14 scope:global align:4 +__vt__18J2DAnmTransformKey = .data:0x804A1354; // type:object size:0x18 scope:global align:4 +__vt__19J2DAnmTransformFull = .data:0x804A136C; // type:object size:0x14 scope:global align:4 +NullTexData = .data:0x804A1380; // type:object size:0x10 scope:local align:32 +j3dIdentityMtx = .data:0x804A1390; // type:object size:0x30 scope:local align:4 +IndMtx = .data:0x804A13C0; // type:object size:0x18 scope:local align:4 +sDifferedRegister = .data:0x804A13D8; // type:object size:0x1C scope:local align:4 data:4byte +sSizeOfDiffered = .data:0x804A13F4; // type:object size:0x1C scope:local align:4 data:4byte +__vt__14J3DShapePacket = .data:0x804A1410; // type:object size:0x14 scope:global align:4 +__vt__12J3DMatPacket = .data:0x804A1424; // type:object size:0x14 scope:global align:4 +__vt__13J3DDrawPacket = .data:0x804A1438; // type:object size:0x14 scope:global align:4 +__vt__9J3DPacket = .data:0x804A144C; // type:object size:0x14 scope:global align:4 +__vt__8J3DShape = .data:0x804A1460; // type:object size:0x18 scope:global align:4 +__vt__17J3DLockedMaterial = .data:0x804A1478; // type:object size:0x30 scope:global align:4 +__vt__18J3DPatchedMaterial = .data:0x804A14A8; // type:object size:0x30 scope:global align:4 +__vt__11J3DMaterial = .data:0x804A14D8; // type:object size:0x30 scope:global align:4 +__vt__10J3DPEBlock = .data:0x804A1508; // type:object size:0x7C scope:weak align:4 +__vt__15J3DIndBlockNull = .data:0x804A1584; // type:object size:0x4C scope:weak align:4 +__vt__11J3DIndBlock = .data:0x804A15D0; // type:object size:0x4C scope:weak align:4 +__vt__14J3DTexGenBlock = .data:0x804A161C; // type:object size:0x6C scope:weak align:4 +__vt__13J3DColorBlock = .data:0x804A1688; // type:object size:0x88 scope:weak align:4 +qMtx$1682 = .data:0x804A1710; // type:object size:0x30 scope:local align:4 +qMtx2$1683 = .data:0x804A1740; // type:object size:0x30 scope:local align:4 +@1740 = .data:0x804A1770; // type:object size:0x30 scope:local align:4 +qMtx$1744 = .data:0x804A17A0; // type:object size:0x30 scope:local align:4 +qMtx2$1745 = .data:0x804A17D0; // type:object size:0x30 scope:local align:4 +@1812 = .data:0x804A1800; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x804A1830; // type:label scope:local +@1324 = .data:0x804A1830; // type:object size:0xC scope:local align:4 data:4byte +@1325 = .data:0x804A183C; // type:object size:0xC scope:local align:4 +@1326 = .data:0x804A1848; // type:object size:0xC scope:local align:4 +@1327 = .data:0x804A1854; // type:object size:0xC scope:local align:4 +@1328 = .data:0x804A1860; // type:object size:0xC scope:local align:4 +@1329 = .data:0x804A186C; // type:object size:0xC scope:local align:4 +sortFuncTable__13J3DDrawBuffer = .data:0x804A1878; // type:object size:0x48 scope:global align:4 data:4byte +@1330 = .data:0x804A18C0; // type:object size:0xC scope:local align:4 +@1331 = .data:0x804A18CC; // type:object size:0xC scope:local align:4 +drawFuncTable__13J3DDrawBuffer = .data:0x804A18D8; // type:object size:0x18 scope:global align:4 data:4byte +__vt__8J3DModel = .data:0x804A18F0; // type:object size:0x24 scope:global align:4 +__vt__12J3DMtxBuffer = .data:0x804A1914; // type:object size:0xC scope:weak align:4 +__vt__14J3DAnmColorKey = .data:0x804A1920; // type:object size:0x14 scope:global align:4 +__vt__10J3DAnmBase = .data:0x804A1934; // type:object size:0x10 scope:weak align:4 +__vt__11J3DAnmColor = .data:0x804A1944; // type:object size:0x14 scope:weak align:4 +__vt__15J3DAnmColorFull = .data:0x804A1958; // type:object size:0x14 scope:global align:4 +__vt__17J3DAnmVtxColorKey = .data:0x804A196C; // type:object size:0x14 scope:global align:4 +__vt__14J3DAnmVtxColor = .data:0x804A1980; // type:object size:0x14 scope:weak align:4 +__vt__18J3DAnmVtxColorFull = .data:0x804A1994; // type:object size:0x14 scope:global align:4 +__vt__16J3DAnmClusterKey = .data:0x804A19A8; // type:object size:0x14 scope:global align:4 +__vt__13J3DAnmCluster = .data:0x804A19BC; // type:object size:0x14 scope:weak align:4 +__vt__17J3DAnmClusterFull = .data:0x804A19D0; // type:object size:0x14 scope:global align:4 +__vt__19J3DAnmTransformFull = .data:0x804A19E4; // type:object size:0x14 scope:global align:4 +__vt__15J3DAnmTransform = .data:0x804A19F8; // type:object size:0x14 scope:weak align:4 +__vt__14J3DMaterialAnm = .data:0x804A1A10; // type:object size:0x10 scope:global align:4 +__vt__11J3DTexNoAnm = .data:0x804A1A20; // type:object size:0xC scope:weak align:4 +__vt__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya> = .data:0x804A1A30; // type:object size:0x2C scope:weak align:4 +__vt__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x804A1A5C; // type:object size:0x2C scope:weak align:4 +__vt__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic> = .data:0x804A1A88; // type:object size:0x2C scope:weak align:4 +__vt__17J3DMtxCalcAnmBase = .data:0x804A1AB4; // type:object size:0x2C scope:weak align:4 +__vt__14J3DPEBlockNull = .data:0x804A1AE0; // type:object size:0x7C scope:weak align:4 +__vt__15J3DTevBlockNull = .data:0x804A1B5C; // type:object size:0xDC scope:weak align:4 +__vt__18J3DTexGenBlockNull = .data:0x804A1C38; // type:object size:0x6C scope:weak align:4 +__vt__17J3DColorBlockNull = .data:0x804A1CA4; // type:object size:0x88 scope:weak align:4 +__vt__18J3DModelLoader_v21 = .data:0x804A1D30; // type:object size:0x44 scope:global align:4 +__vt__18J3DModelLoader_v26 = .data:0x804A1D74; // type:object size:0x44 scope:global align:4 +__vt__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya> = .data:0x804A1DB8; // type:object size:0x2C scope:weak align:4 +__vt__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage> = .data:0x804A1DE4; // type:object size:0x2C scope:weak align:4 +__vt__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic> = .data:0x804A1E10; // type:object size:0x2C scope:weak align:4 +__vt__19J3DMtxCalcNoAnmBase = .data:0x804A1E3C; // type:object size:0x2C scope:weak align:4 +__vt__10J3DTexture = .data:0x804A1E68; // type:object size:0xC scope:weak align:4 +__vt__14J3DModelLoader = .data:0x804A1E74; // type:object size:0x44 scope:global align:4 +__vt__19J3DAnmKeyLoader_v15 = .data:0x804A1EB8; // type:object size:0x14 scope:global align:4 +__vt__20J3DAnmFullLoader_v15 = .data:0x804A1ECC; // type:object size:0x14 scope:global align:4 +__vt__12J3DAnmLoader = .data:0x804A1EE0; // type:object size:0x14 scope:weak align:4 +__vt__20J3DAnmVisibilityFull = .data:0x804A1EF4; // type:object size:0x10 scope:weak align:4 +__vt__16J3DAnmTexPattern = .data:0x804A1F04; // type:object size:0x10 scope:weak align:4 +__vt__15J3DAnmTevRegKey = .data:0x804A1F14; // type:object size:0x10 scope:weak align:4 +__vt__19J3DAnmTextureSRTKey = .data:0x804A1F24; // type:object size:0x10 scope:weak align:4 +__vt__18J3DAnmTransformKey = .data:0x804A1F34; // type:object size:0x14 scope:weak align:4 +@897 = .data:0x804A1F48; // type:object size:0x44 scope:local align:4 +@947 = .data:0x804A1F8C; // type:object size:0x54 scope:local align:4 +c2r$1298 = .data:0x804A1FE0; // type:object size:0x10 scope:local align:4 +@5844 = .data:0x804A1FF0; // type:object size:0x30 scope:local align:4 +@5892 = .data:0x804A2020; // type:object size:0x30 scope:local align:4 +@5931 = .data:0x804A2050; // type:object size:0x30 scope:local align:4 +@5967 = .data:0x804A2080; // type:object size:0x30 scope:local align:4 +__vt__14J3DPEBlockFull = .data:0x804A20B0; // type:object size:0x7C scope:global align:4 +__vt__16J3DPEBlockFogOff = .data:0x804A212C; // type:object size:0x7C scope:global align:4 +__vt__13J3DTevBlock16 = .data:0x804A21A8; // type:object size:0xDC scope:global align:4 +__vt__12J3DTevBlock4 = .data:0x804A2284; // type:object size:0xDC scope:global align:4 +__vt__12J3DTevBlock2 = .data:0x804A2360; // type:object size:0xDC scope:global align:4 +__vt__12J3DTevBlock1 = .data:0x804A243C; // type:object size:0xDC scope:global align:4 +__vt__18J3DTevBlockPatched = .data:0x804A2518; // type:object size:0xDC scope:global align:4 +__vt__19J3DTexGenBlockBasic = .data:0x804A25F4; // type:object size:0x6C scope:global align:4 +__vt__15J3DTexGenBlock4 = .data:0x804A2660; // type:object size:0x6C scope:global align:4 +__vt__21J3DTexGenBlockPatched = .data:0x804A26CC; // type:object size:0x6C scope:global align:4 +__vt__20J3DColorBlockLightOn = .data:0x804A2738; // type:object size:0x88 scope:global align:4 +__vt__22J3DColorBlockAmbientOn = .data:0x804A27C0; // type:object size:0x88 scope:global align:4 +__vt__13J3DPEBlockXlu = .data:0x804A2848; // type:object size:0x7C scope:global align:4 +__vt__17J3DPEBlockTexEdge = .data:0x804A28C4; // type:object size:0x7C scope:global align:4 +__vt__13J3DPEBlockOpa = .data:0x804A2940; // type:object size:0x7C scope:global align:4 +__vt__15J3DIndBlockFull = .data:0x804A29BC; // type:object size:0x4C scope:global align:4 +__vt__11J3DTevBlock = .data:0x804A2A08; // type:object size:0xDC scope:global align:4 +__vt__21J3DColorBlockLightOff = .data:0x804A2AE4; // type:object size:0x88 scope:global align:4 +__vt__13J3DShapeTable = .data:0x804A2B70; // type:object size:0xC scope:weak align:4 +__vt__12J3DModelData = .data:0x804A2B7C; // type:object size:0xC scope:weak align:4 +__vt__16J3DMaterialTable = .data:0x804A2B88; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x804A2B98; // type:label scope:local +@1470 = .data:0x804A2B98; // type:object size:0xC scope:local align:4 data:4byte +@1471 = .data:0x804A2BA4; // type:object size:0xC scope:local align:4 +@1472 = .data:0x804A2BB0; // type:object size:0xC scope:local align:4 +@1473 = .data:0x804A2BBC; // type:object size:0xC scope:local align:4 +sMtxLoadPipeline__11J3DShapeMtx = .data:0x804A2BC8; // type:object size:0x30 scope:global align:4 data:4byte +@1474 = .data:0x804A2BF8; // type:object size:0xC scope:local align:4 +@1475 = .data:0x804A2C04; // type:object size:0xC scope:local align:4 +@1476 = .data:0x804A2C10; // type:object size:0xC scope:local align:4 +@1477 = .data:0x804A2C1C; // type:object size:0xC scope:local align:4 +sMtxLoadPipeline__21J3DShapeMtxConcatView = .data:0x804A2C28; // type:object size:0x30 scope:global align:4 data:4byte +@1478 = .data:0x804A2C58; // type:object size:0xC scope:local align:4 +@1479 = .data:0x804A2C64; // type:object size:0xC scope:local align:4 +@1480 = .data:0x804A2C70; // type:object size:0xC scope:local align:4 +@1481 = .data:0x804A2C7C; // type:object size:0xC scope:local align:4 +sMtxLoadLODPipeline__21J3DShapeMtxConcatView = .data:0x804A2C88; // type:object size:0x30 scope:global align:4 data:4byte +qMtx$1532 = .data:0x804A2CB8; // type:object size:0x30 scope:local align:4 +qMtx2$1533 = .data:0x804A2CE8; // type:object size:0x30 scope:local align:4 +@1660 = .data:0x804A2D18; // type:object size:0x30 scope:local align:4 +@1659 = .data:0x804A2D48; // type:object size:0x30 scope:local align:4 +mtxCache$1887 = .data:0x804A2D78; // type:object size:0x14 scope:local align:4 +__vt__28J3DShapeMtxYBBoardConcatView = .data:0x804A2D8C; // type:object size:0x28 scope:global align:4 +__vt__27J3DShapeMtxBBoardConcatView = .data:0x804A2DB4; // type:object size:0x28 scope:global align:4 +__vt__26J3DShapeMtxMultiConcatView = .data:0x804A2DDC; // type:object size:0x28 scope:global align:4 +__vt__16J3DShapeMtxMulti = .data:0x804A2E04; // type:object size:0x20 scope:global align:4 +__vt__21J3DShapeMtxConcatView = .data:0x804A2E24; // type:object size:0x28 scope:global align:4 +__vt__11J3DShapeMtx = .data:0x804A2E4C; // type:object size:0x20 scope:global align:4 +@1522 = .data:0x804A2E70; // type:object size:0x4C scope:local align:4 +__vt__12J3DJointTree = .data:0x804A2EBC; // type:object size:0x10 scope:global align:4 +__vt__15J3DVtxColorCalc = .data:0x804A2ED0; // type:object size:0x10 scope:global align:4 +__vt__12J3DShapeDraw = .data:0x804A2EE0; // type:object size:0xC scope:weak align:4 +e_mtx = .data:0x804A2F00; // type:object size:0x30 scope:global align:4 +clear_z_TX = .data:0x804A2F40; // type:object size:0x40 scope:local align:32 +__vt__10JFWDisplay = .data:0x804A2F80; // type:object size:0x18 scope:global align:4 +...data.0 = .data:0x804A2FA0; // type:label scope:local +jpa_dl = .data:0x804A2FA0; // type:object size:0x20 scope:local align:32 +jpa_dl_x = .data:0x804A2FC0; // type:object size:0x20 scope:local align:32 +p_prj = .data:0x804A2FE0; // type:object size:0xC scope:local align:4 +p_direction = .data:0x804A2FEC; // type:object size:0x14 scope:local align:4 +p_rot = .data:0x804A3000; // type:object size:0x14 scope:local align:4 +p_plane = .data:0x804A3014; // type:object size:0xC scope:local align:4 +st_bm__12JPABaseShape = .data:0x804A3020; // type:object size:0xC scope:global align:4 +st_bf__12JPABaseShape = .data:0x804A302C; // type:object size:0x28 scope:global align:4 +st_lo__12JPABaseShape = .data:0x804A3054; // type:object size:0x40 scope:global align:4 +st_c__12JPABaseShape = .data:0x804A3094; // type:object size:0x20 scope:global align:4 +st_ao__12JPABaseShape = .data:0x804A30B4; // type:object size:0x10 scope:global align:4 +st_ca__12JPABaseShape = .data:0x804A30C4; // type:object size:0x60 scope:global align:4 +st_aa__12JPABaseShape = .data:0x804A3124; // type:object size:0x20 scope:global align:4 +@2823 = .data:0x804A3148; // type:object size:0x1C scope:local align:4 +@3541 = .data:0x804A3168; // type:object size:0x24 scope:local align:4 +__vt__12JPAFieldBase = .data:0x804A318C; // type:object size:0x14 scope:weak align:4 +__vt__12JPAFieldSpin = .data:0x804A31A0; // type:object size:0x14 scope:global align:4 +__vt__12JPAFieldDrag = .data:0x804A31B4; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldRandom = .data:0x804A31C8; // type:object size:0x14 scope:global align:4 +__vt__18JPAFieldConvection = .data:0x804A31DC; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldVortex = .data:0x804A31F0; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldNewton = .data:0x804A3204; // type:object size:0x14 scope:global align:4 +__vt__14JPAFieldMagnet = .data:0x804A3218; // type:object size:0x14 scope:global align:4 +__vt__11JPAFieldAir = .data:0x804A322C; // type:object size:0x14 scope:global align:4 +__vt__15JPAFieldGravity = .data:0x804A3240; // type:object size:0x14 scope:global align:4 +__vt__19JPAParticleCallBack = .data:0x804A3258; // type:object size:0x14 scope:weak align:4 +jpa_pos = .data:0x804A3280; // type:object size:0x144 scope:local align:32 +jpa_crd = .data:0x804A33E0; // type:object size:0x20 scope:local align:32 +@3059 = .data:0x804A3400; // type:object size:0x2C scope:local align:4 +@3058 = .data:0x804A342C; // type:object size:0x2C scope:local align:4 +@3694 = .data:0x804A3458; // type:object size:0x2C scope:local align:4 +__vt__10JPATexture = .data:0x804A3488; // type:object size:0xC scope:weak align:4 +__vt__Q26JStage7TSystem = .data:0x804A3498; // type:object size:0x50 scope:global align:4 +__vt__Q26JStage7TCamera = .data:0x804A34E8; // type:object size:0x94 scope:global align:4 +__vt__Q26JStage7TObject = .data:0x804A3580; // type:object size:0x3C scope:global align:4 +__vt__Q26JStage6TActor = .data:0x804A35C0; // type:object size:0x8C scope:global align:4 +__vt__12JASBasicBank = .data:0x804A3650; // type:object size:0x14 scope:global align:4 +__vt__7JASBank = .data:0x804A3664; // type:object size:0x14 scope:weak align:4 +__vt__12JASBasicInst = .data:0x804A3678; // type:object size:0x18 scope:global align:4 +__vt__7JASInst = .data:0x804A3690; // type:object size:0x14 scope:weak align:4 +__vt__Q216JASBasicWaveBank10TWaveGroup = .data:0x804A36A8; // type:object size:0x14 scope:global align:4 +__vt__13JASWaveHandle = .data:0x804A36BC; // type:object size:0x14 scope:weak align:4 +__vt__Q216JASBasicWaveBank11TWaveHandle = .data:0x804A36D0; // type:object size:0x14 scope:weak align:4 +__vt__16JASBasicWaveBank = .data:0x804A36E4; // type:object size:0x14 scope:global align:4 +__vt__11JASWaveBank = .data:0x804A36F8; // type:object size:0x14 scope:weak align:4 +__vt__13JASInstEffect = .data:0x804A3710; // type:object size:0xC scope:weak align:4 +__vt__10JASDrumSet = .data:0x804A3720; // type:object size:0x14 scope:global align:4 +__vt__11JASInstRand = .data:0x804A3738; // type:object size:0xC scope:global align:4 +__vt__12JASInstSense = .data:0x804A3748; // type:object size:0xC scope:global align:4 +__vt__Q217JASSimpleWaveBank11TWaveHandle = .data:0x804A3758; // type:object size:0x14 scope:weak align:4 +__vt__17JASSimpleWaveBank = .data:0x804A376C; // type:object size:0x28 scope:global align:4 +sCurrentDir__16JASWaveArcLoader = .data:0x804A3798; // type:object size:0x40 scope:local align:4 +__vt__10JASWaveArc = .data:0x804A37D8; // type:object size:0x14 scope:global align:4 +__vt__11JASDisposer = .data:0x804A37EC; // type:object size:0xC scope:weak align:4 +CUTOFF_TO_IIR_TABLE__9JASPlayer = .data:0x804A37F8; // type:object size:0x400 scope:global align:4 +sAdsTable__9JASPlayer = .data:0x804A3BF8; // type:object size:0x18 scope:global align:4 data:2byte +sRelTable__9JASPlayer = .data:0x804A3C10; // type:object size:0xC scope:global align:4 +sVibTable__9JASPlayer = .data:0x804A3C1C; // type:object size:0x24 scope:global align:4 +sTreTable__9JASPlayer = .data:0x804A3C40; // type:object size:0x24 scope:global align:4 +...data.0 = .data:0x804A3C68; // type:label scope:local +@635 = .data:0x804A3C68; // type:object size:0xC scope:local align:4 data:4byte +@636 = .data:0x804A3C74; // type:object size:0xC scope:local align:4 +@637 = .data:0x804A3C80; // type:object size:0xC scope:local align:4 +@638 = .data:0x804A3C8C; // type:object size:0xC scope:local align:4 +@639 = .data:0x804A3C98; // type:object size:0xC scope:local align:4 +@640 = .data:0x804A3CA4; // type:object size:0xC scope:local align:4 +@641 = .data:0x804A3CB0; // type:object size:0xC scope:local align:4 +@642 = .data:0x804A3CBC; // type:object size:0xC scope:local align:4 +@643 = .data:0x804A3CC8; // type:object size:0xC scope:local align:4 +@644 = .data:0x804A3CD4; // type:object size:0xC scope:local align:4 +@645 = .data:0x804A3CE0; // type:object size:0xC scope:local align:4 +@646 = .data:0x804A3CEC; // type:object size:0xC scope:local align:4 +@647 = .data:0x804A3CF8; // type:object size:0xC scope:local align:4 +@648 = .data:0x804A3D04; // type:object size:0xC scope:local align:4 +@649 = .data:0x804A3D10; // type:object size:0xC scope:local align:4 +@650 = .data:0x804A3D1C; // type:object size:0xC scope:local align:4 +@651 = .data:0x804A3D28; // type:object size:0xC scope:local align:4 +@652 = .data:0x804A3D34; // type:object size:0xC scope:local align:4 +@653 = .data:0x804A3D40; // type:object size:0xC scope:local align:4 +@654 = .data:0x804A3D4C; // type:object size:0xC scope:local align:4 +@655 = .data:0x804A3D58; // type:object size:0xC scope:local align:4 +@656 = .data:0x804A3D64; // type:object size:0xC scope:local align:4 +@657 = .data:0x804A3D70; // type:object size:0xC scope:local align:4 +@658 = .data:0x804A3D7C; // type:object size:0xC scope:local align:4 +@659 = .data:0x804A3D88; // type:object size:0xC scope:local align:4 +@660 = .data:0x804A3D94; // type:object size:0xC scope:local align:4 +@661 = .data:0x804A3DA0; // type:object size:0xC scope:local align:4 +@662 = .data:0x804A3DAC; // type:object size:0xC scope:local align:4 +@663 = .data:0x804A3DB8; // type:object size:0xC scope:local align:4 +@664 = .data:0x804A3DC4; // type:object size:0xC scope:local align:4 +@665 = .data:0x804A3DD0; // type:object size:0xC scope:local align:4 +@666 = .data:0x804A3DDC; // type:object size:0xC scope:local align:4 +@667 = .data:0x804A3DE8; // type:object size:0xC scope:local align:4 +@668 = .data:0x804A3DF4; // type:object size:0xC scope:local align:4 +@669 = .data:0x804A3E00; // type:object size:0xC scope:local align:4 +@670 = .data:0x804A3E0C; // type:object size:0xC scope:local align:4 +@671 = .data:0x804A3E18; // type:object size:0xC scope:local align:4 +@672 = .data:0x804A3E24; // type:object size:0xC scope:local align:4 +@673 = .data:0x804A3E30; // type:object size:0xC scope:local align:4 +@674 = .data:0x804A3E3C; // type:object size:0xC scope:local align:4 +@675 = .data:0x804A3E48; // type:object size:0xC scope:local align:4 +@676 = .data:0x804A3E54; // type:object size:0xC scope:local align:4 +@677 = .data:0x804A3E60; // type:object size:0xC scope:local align:4 +@678 = .data:0x804A3E6C; // type:object size:0xC scope:local align:4 +@679 = .data:0x804A3E78; // type:object size:0xC scope:local align:4 +@680 = .data:0x804A3E84; // type:object size:0xC scope:local align:4 +@681 = .data:0x804A3E90; // type:object size:0xC scope:local align:4 +@682 = .data:0x804A3E9C; // type:object size:0xC scope:local align:4 +@683 = .data:0x804A3EA8; // type:object size:0xC scope:local align:4 +@684 = .data:0x804A3EB4; // type:object size:0xC scope:local align:4 +@685 = .data:0x804A3EC0; // type:object size:0xC scope:local align:4 +@686 = .data:0x804A3ECC; // type:object size:0xC scope:local align:4 +@687 = .data:0x804A3ED8; // type:object size:0xC scope:local align:4 +sCmdPList__12JASSeqParser = .data:0x804A3EE4; // type:object size:0x300 scope:global align:4 data:4byte +@1281 = .data:0x804A41E4; // type:object size:0x34 scope:local align:4 +@1665 = .data:0x804A4218; // type:object size:0x34 scope:local align:4 +@2004 = .data:0x804A4260; // type:object size:0x44 scope:local align:4 +@2208 = .data:0x804A42A4; // type:object size:0x44 scope:local align:4 +c32 = .data:0x804A4300; // type:object size:0x20 scope:local align:32 data:float +@988 = .data:0x804A4320; // type:object size:0x20 scope:local align:4 +@985 = .data:0x804A4340; // type:object size:0x20 scope:local align:4 +__vt__10JASChannel = .data:0x804A4360; // type:object size:0x18 scope:global align:4 +__vt__109JASPoolAllocObject<10JASChannel,Q217JASCreationPolicy15NewFromRootHeap,Q217JASThreadingModel14SingleThreaded> = .data:0x804A4378; // type:object size:0xC scope:weak align:4 +SEND_TABLE__6JASDsp = .data:0x804A4388; // type:object size:0x18 scope:local align:4 +__vt__14JASAudioThread = .data:0x804A43A0; // type:object size:0x10 scope:global align:4 +history$449 = .data:0x804A43B0; // type:object size:0x28 scope:local align:4 data:4byte +__vt__13JASTaskThread = .data:0x804A43D8; // type:object size:0x10 scope:global align:4 +@692 = .data:0x804A43E8; // type:object size:0x34 scope:local align:4 +jdsp = .data:0x804A4420; // type:object size:0x1D20 scope:global align:32 +__vt__13JAIAnimeSound = .data:0x804A6140; // type:object size:0x48 scope:global align:4 +__vt__8JAIBasic = .data:0x804A6188; // type:object size:0x28 scope:global align:4 +dummyZeroVec__Q27JAInter5Const = .data:0x804A61B0; // type:object size:0xC scope:global align:4 data:float +sCInfos_0__Q27JAInter5Const = .data:0x804A61BC; // type:object size:0x20 scope:global align:4 +@927 = .data:0x804A61E0; // type:object size:0x24 scope:local align:4 +__vt__9JAIStream = .data:0x804A6208; // type:object size:0xD4 scope:global align:4 +__vt__5JAISe = .data:0x804A62DC; // type:object size:0xF4 scope:global align:4 +__vt__11JAISequence = .data:0x804A63D0; // type:object size:0xD4 scope:global align:4 +__vt__8JAISound = .data:0x804A64A4; // type:object size:0xD4 scope:global align:4 +@1126 = .data:0x804A6578; // type:object size:0x20 scope:local align:4 +__vt__Q27JAInter6Object = .data:0x804A6598; // type:object size:0x3C scope:global align:4 +__vt__Q27JAInter10ObjectBase = .data:0x804A65D4; // type:object size:0x38 scope:global align:4 +__vt__10JADHioNode = .data:0x804A6610; // type:object size:0xC scope:global align:4 +__vt__Q210JADUtility10PrmSetBase = .data:0x804A6620; // type:object size:0x24 scope:global align:4 +__vt__Q210JADUtility10PrmSetTree = .data:0x804A6644; // type:object size:0x18 scope:weak align:4 +__vt__Q210JADUtility36NodeTree = .data:0x804A665C; // type:object size:0x18 scope:weak align:4 +__vt__Q210JADUtility6StrPrm = .data:0x804A6678; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility10PrmHio = .data:0x804A668C; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility7Prm = .data:0x804A66A0; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility7PrmBase = .data:0x804A66B4; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility11DataMgrNode = .data:0x804A66C8; // type:object size:0x3C scope:weak align:4 +__vt__Q210JADUtility15DataLoadMgrNode = .data:0x804A6704; // type:object size:0x34 scope:global align:4 +__vt__Q210JADUtility11DataMgrBase = .data:0x804A6738; // type:object size:0x10 scope:global align:4 +@128 = .data:0x804A6748; // type:object size:0x6C scope:local align:4 +@499 = .data:0x804A67B8; // type:object size:0x1C scope:local align:4 +@536 = .data:0x804A67D4; // type:object size:0x1C scope:local align:4 +gTRKRestoreFlags = .data:0x804A67F0; // type:object size:0x9 scope:global align:4 data:byte +gTRKExceptionStatus = .data:0x804A67FC; // type:object size:0x10 scope:local align:4 data:4byte +gTRKStepStatus = .data:0x804A680C; // type:object size:0x14 scope:local align:4 data:4byte +TRK_ISR_OFFSETS = .data:0x804A6820; // type:object size:0x3C scope:local align:4 data:4byte +gDBCommTable = .data:0x804A6860; // type:object size:0x28 scope:global align:4 data:4byte +__files = .data:0x804A6888; // type:object size:0x140 scope:global align:4 +pow_10$416 = .data:0x804A69C8; // type:object size:0x40 scope:local align:8 +@1710 = .data:0x804A6A08; // type:object size:0x124 scope:local align:4 +__ctype_map = .data:0x804A6B30; // type:object size:0x100 scope:global align:4 +__lower_map = .data:0x804A6C30; // type:object size:0x100 scope:global align:4 +__upper_map = .data:0x804A6D30; // type:object size:0x100 scope:global align:4 +__lconv = .data:0x804A6E30; // type:object size:0x38 scope:global align:4 data:4byte +@1248 = .data:0x804A6E68; // type:object size:0x84 scope:local align:4 +@1307 = .data:0x804A6EEC; // type:object size:0x84 scope:local align:4 +@1443 = .data:0x804A6F70; // type:object size:0xE0 scope:local align:4 +@1442 = .data:0x804A7050; // type:object size:0x44 scope:local align:4 +@721 = .data:0x804A7098; // type:object size:0xD0 scope:local align:4 +@348 = .data:0x804A7168; // type:object size:0x44 scope:local align:4 +@431 = .data:0x804A71AC; // type:object size:0x44 scope:local align:4 +...data.0 = .data:0x804A71F0; // type:label scope:local +@1 = .data:0x804A71F0; // type:object size:0x44 scope:local align:4 data:string +timing = .data:0x804A7234; // type:object size:0x17C scope:local align:4 +taps = .data:0x804A73B0; // type:object size:0x32 scope:local align:4 +@97 = .data:0x804A73E4; // type:object size:0x6C scope:local align:4 +@347 = .data:0x804A7450; // type:object size:0x29 scope:local align:4 data:string +@348 = .data:0x804A747C; // type:object size:0x29 scope:local align:4 data:string +@349 = .data:0x804A74A8; // type:object size:0x29 scope:local align:4 data:string +@350 = .data:0x804A74D4; // type:object size:0x29 scope:local align:4 data:string +@351 = .data:0x804A7500; // type:object size:0x29 scope:local align:4 data:string +@352 = .data:0x804A752C; // type:object size:0x29 scope:local align:4 data:string +@535 = .data:0x804A7558; // type:object size:0x4B scope:local align:4 data:string +@736 = .data:0x804A75A4; // type:object size:0x1C scope:local align:4 +...data.0 = .data:0x804A75C0; // type:label scope:local +@1 = .data:0x804A75C0; // type:object size:0x44 scope:local align:4 data:string +...data.0 = .data:0x804A7608; // type:label scope:local +@1 = .data:0x804A7608; // type:object size:0x45 scope:local align:4 data:string +...data.0 = .data:0x804A7650; // type:label scope:local +@1 = .data:0x804A7650; // type:object size:0x46 scope:local align:4 data:string +ResetFunctionInfo = .data:0x804A7698; // type:object size:0x10 scope:local align:4 +CardData = .data:0x804A76C0; // type:object size:0x160 scope:local align:32 +SectorSizeTable = .data:0x804A7820; // type:object size:0x20 scope:local align:4 +LatencyTable = .data:0x804A7840; // type:object size:0x20 scope:local align:4 +@9 = .data:0x804A7860; // type:object size:0x18 scope:local align:4 data:string +...data.0 = .data:0x804A7878; // type:label scope:local +@1 = .data:0x804A7878; // type:object size:0x45 scope:local align:4 data:string +@19 = .data:0x804A78C0; // type:object size:0x1E scope:local align:4 data:string +@20 = .data:0x804A78E0; // type:object size:0xC scope:local align:4 data:string +@21 = .data:0x804A78EC; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x804A78F8; // type:label scope:local +@266 = .data:0x804A78F8; // type:object size:0x1D scope:local align:4 data:string +@267 = .data:0x804A7918; // type:object size:0x2D scope:local align:4 data:string +@268 = .data:0x804A7948; // type:object size:0x2D scope:local align:4 data:string +@269 = .data:0x804A7978; // type:object size:0x2D scope:local align:4 data:string +@270 = .data:0x804A79A8; // type:object size:0x2D scope:local align:4 data:string +@271 = .data:0x804A79D8; // type:object size:0x2D scope:local align:4 data:string +@294 = .data:0x804A7A08; // type:object size:0x2B scope:local align:4 data:string +@119 = .data:0x804A7A38; // type:object size:0xC8 scope:local align:4 data:string +@140 = .data:0x804A7B00; // type:object size:0x37 scope:local align:4 data:string +@239 = .data:0x804A7B38; // type:object size:0x34 scope:local align:4 data:string +@265 = .data:0x804A7B6C; // type:object size:0x2F scope:local align:4 data:string +@311 = .data:0x804A7B9C; // type:object size:0x3A scope:local align:4 data:string +...data.0 = .data:0x804A7BD8; // type:label scope:local +@1 = .data:0x804A7BD8; // type:object size:0x45 scope:local align:4 data:string +@18 = .data:0x804A7C20; // type:object size:0xA scope:local align:4 data:string +@24 = .data:0x804A7C2C; // type:object size:0x34 scope:local align:4 data:string +@344 = .data:0x804A7C60; // type:object size:0x40 scope:local align:4 +ImmCommand = .data:0x804A7CA0; // type:object size:0xC scope:local align:4 data:4byte +@768 = .data:0x804A7CAC; // type:object size:0x41 scope:local align:4 data:string +@907 = .data:0x804A7CF0; // type:object size:0x34 scope:local align:4 +@1011 = .data:0x804A7D24; // type:object size:0x34 scope:local align:4 +ErrorTable = .data:0x804A7D58; // type:object size:0x48 scope:local align:4 data:4byte +...data.0 = .data:0x804A7DA0; // type:label scope:local +@38 = .data:0x804A7DA0; // type:object size:0x1A scope:local align:4 data:string +@39 = .data:0x804A7DBC; // type:object size:0x16 scope:local align:4 data:string +@40 = .data:0x804A7DD4; // type:object size:0x14 scope:local align:4 data:string +@41 = .data:0x804A7DE8; // type:object size:0x14 scope:local align:4 data:string +@44 = .data:0x804A7DFC; // type:object size:0x14 scope:local align:4 data:string +...data.0 = .data:0x804A7E10; // type:label scope:local +@1 = .data:0x804A7E10; // type:object size:0x45 scope:local align:4 data:string +@450 = .data:0x804A7E58; // type:object size:0xF scope:local align:4 data:string +@451 = .data:0x804A7E68; // type:object size:0x10 scope:local align:4 data:string +@452 = .data:0x804A7E78; // type:object size:0x10 scope:local align:4 data:string +@453 = .data:0x804A7E88; // type:object size:0x10 scope:local align:4 data:string +@454 = .data:0x804A7E98; // type:object size:0x11 scope:local align:4 data:string +@455 = .data:0x804A7EAC; // type:object size:0x11 scope:local align:4 data:string +@456 = .data:0x804A7EC0; // type:object size:0xC scope:local align:4 data:string +@462 = .data:0x804A7ECC; // type:object size:0x9 scope:local align:4 data:string +@463 = .data:0x804A7ED8; // type:object size:0xD scope:local align:4 data:string +@464 = .data:0x804A7EE8; // type:object size:0x12 scope:local align:4 data:string +@466 = .data:0x804A7EFC; // type:object size:0xE scope:local align:4 data:string +@467 = .data:0x804A7F0C; // type:object size:0xE scope:local align:4 data:string +@121 = .data:0x804A7F20; // type:object size:0x68 scope:local align:4 +...data.0 = .data:0x804A7FA0; // type:label scope:local +@1 = .data:0x804A7FA0; // type:object size:0x44 scope:local align:4 data:string +DefaultTexData = .data:0x804A8000; // type:object size:0x20 scope:local align:32 +GXDefaultVATList = .data:0x804A8020; // type:object size:0xD0 scope:local align:4 +GXDefaultProjData = .data:0x804A80F0; // type:object size:0x1C scope:local align:4 +GXTexRegionAddrTable = .data:0x804A810C; // type:object size:0xC0 scope:local align:4 data:4byte +GXResetFuncInfo = .data:0x804A81CC; // type:object size:0x10 scope:local align:4 +@176 = .data:0x804A81E0; // type:object size:0x68 scope:local align:4 +@498 = .data:0x804A8248; // type:object size:0x44 scope:local align:4 +@525 = .data:0x804A828C; // type:object size:0x44 scope:local align:4 +@820 = .data:0x804A82D0; // type:object size:0x1C scope:local align:4 +@819 = .data:0x804A82EC; // type:object size:0x54 scope:local align:4 +GXNtsc480IntDf = .data:0x804A8340; // type:object size:0x3C scope:global align:4 +GXNtsc480Int = .data:0x804A837C; // type:object size:0x3C scope:global align:4 +GXMpal480IntDf = .data:0x804A83B8; // type:object size:0x3C scope:global align:4 +GXPal528IntDf = .data:0x804A83F4; // type:object size:0x3C scope:global align:4 +GXEurgb60Hz480IntDf = .data:0x804A8430; // type:object size:0x3C scope:global align:4 +@145 = .data:0x804A8470; // type:object size:0x1C scope:local align:4 +@104 = .data:0x804A8490; // type:object size:0xF4 scope:local align:4 +@145 = .data:0x804A8584; // type:object size:0xF4 scope:local align:4 +@224 = .data:0x804A8678; // type:object size:0x3C scope:local align:4 +...data.0 = .data:0x804A86B8; // type:label scope:local +TEVCOpTableST0 = .data:0x804A86B8; // type:object size:0x14 scope:local align:4 +TEVCOpTableST1 = .data:0x804A86CC; // type:object size:0x14 scope:local align:4 +TEVAOpTableST0 = .data:0x804A86E0; // type:object size:0x14 scope:local align:4 +TEVAOpTableST1 = .data:0x804A86F4; // type:object size:0x14 scope:local align:4 +c2r$364 = .data:0x804A8708; // type:object size:0x24 scope:local align:4 +p2f$362 = .data:0x804A8730; // type:object size:0x20 scope:local align:4 +@281 = .data:0x804A8750; // type:object size:0x5C scope:local align:4 +@280 = .data:0x804A87AC; // type:object size:0x90 scope:local align:4 +...data.0 = .data:0x804A8840; // type:label scope:local +@1 = .data:0x804A8840; // type:object size:0x44 scope:local align:4 data:string +@86 = .data:0x804A8884; // type:object size:0xD scope:local align:4 data:string +@87 = .data:0x804A8894; // type:object size:0x16 scope:local align:4 data:string +@88 = .data:0x804A88AC; // type:object size:0xC scope:local align:4 data:string +@89 = .data:0x804A88B8; // type:object size:0x9 scope:local align:4 data:string +@90 = .data:0x804A88C4; // type:object size:0x10 scope:local align:4 data:string +@91 = .data:0x804A88D4; // type:object size:0xB scope:local align:4 data:string +@92 = .data:0x804A88E0; // type:object size:0xE scope:local align:4 data:string +@93 = .data:0x804A88F0; // type:object size:0xD scope:local align:4 data:string +@94 = .data:0x804A8900; // type:object size:0xD scope:local align:4 data:string +@95 = .data:0x804A8910; // type:object size:0xD scope:local align:4 data:string +@96 = .data:0x804A8920; // type:object size:0x19 scope:local align:4 data:string +@98 = .data:0x804A893C; // type:object size:0xE scope:local align:4 data:string +@99 = .data:0x804A894C; // type:object size:0x15 scope:local align:4 data:string +__OSExceptionLocations = .data:0x804A8964; // type:object size:0x3C scope:local align:4 +@133 = .data:0x804A89A0; // type:object size:0x1B scope:local align:4 data:string +@134 = .data:0x804A89BC; // type:object size:0x2E scope:local align:4 data:string +@135 = .data:0x804A89EC; // type:object size:0x2F scope:local align:4 data:string +@136 = .data:0x804A8A1C; // type:object size:0x1B scope:local align:4 data:string +ResetFunctionInfo = .data:0x804A8A38; // type:object size:0x10 scope:local align:4 +DSPInitCode = .data:0x804A8A48; // type:object size:0x80 scope:local align:4 +...data.0 = .data:0x804A8AC8; // type:label scope:local +@63 = .data:0x804A8AC8; // type:object size:0x29 scope:local align:4 data:string +@84 = .data:0x804A8AF4; // type:object size:0x18 scope:local align:4 data:string +@85 = .data:0x804A8B0C; // type:object size:0x1B scope:local align:4 data:string +@86 = .data:0x804A8B28; // type:object size:0x30 scope:local align:4 data:string +@87 = .data:0x804A8B58; // type:object size:0x3C scope:local align:4 data:string +@88 = .data:0x804A8B94; // type:object size:0x37 scope:local align:4 data:string +@89 = .data:0x804A8BCC; // type:object size:0x3F scope:local align:4 data:string +@90 = .data:0x804A8C0C; // type:object size:0x29 scope:local align:4 data:string +@91 = .data:0x804A8C38; // type:object size:0x1D scope:local align:4 data:string +@92 = .data:0x804A8C58; // type:object size:0x19 scope:local align:4 data:string +@104 = .data:0x804A8C74; // type:object size:0x19 scope:local align:4 data:string +@105 = .data:0x804A8C90; // type:object size:0x19 scope:local align:4 data:string +@106 = .data:0x804A8CAC; // type:object size:0x16 scope:local align:4 data:string +@107 = .data:0x804A8CC4; // type:object size:0x2E scope:local align:4 data:string +...data.0 = .data:0x804A8CF8; // type:label scope:local +@61 = .data:0x804A8CF8; // type:object size:0x44 scope:local align:4 data:string +@62 = .data:0x804A8D3C; // type:object size:0x30 scope:local align:4 data:string +@63 = .data:0x804A8D6C; // type:object size:0x2F scope:local align:4 data:string +@64 = .data:0x804A8D9C; // type:object size:0x2F scope:local align:4 data:string +@65 = .data:0x804A8DCC; // type:object size:0x11 scope:local align:4 data:string +@66 = .data:0x804A8DE0; // type:object size:0x21 scope:local align:4 data:string +@67 = .data:0x804A8E04; // type:object size:0x12 scope:local align:4 data:string +@68 = .data:0x804A8E18; // type:object size:0x19 scope:local align:4 data:string +@69 = .data:0x804A8E34; // type:object size:0x12 scope:local align:4 data:string +@70 = .data:0x804A8E48; // type:object size:0x1D scope:local align:4 data:string +@71 = .data:0x804A8E68; // type:object size:0x26 scope:local align:4 data:string +@72 = .data:0x804A8E90; // type:object size:0x1C scope:local align:4 data:string +@76 = .data:0x804A8EAC; // type:object size:0x23 scope:local align:4 data:string +...data.0 = .data:0x804A8ED0; // type:label scope:local +@13 = .data:0x804A8ED0; // type:object size:0x16 scope:local align:4 data:string +@14 = .data:0x804A8EE8; // type:object size:0x26 scope:local align:4 data:string +@15 = .data:0x804A8F10; // type:object size:0x1C scope:local align:4 data:string +@74 = .data:0x804A8F2C; // type:object size:0x1D scope:local align:4 data:string +@75 = .data:0x804A8F4C; // type:object size:0x17 scope:local align:4 data:string +@77 = .data:0x804A8F64; // type:object size:0x31 scope:local align:4 data:string +@78 = .data:0x804A8F98; // type:object size:0x10 scope:local align:4 data:string +@79 = .data:0x804A8FA8; // type:object size:0x60 scope:local align:4 data:string +@80 = .data:0x804A9008; // type:object size:0x4C scope:local align:4 data:string +@81 = .data:0x804A9054; // type:object size:0x62 scope:local align:4 data:string +@82 = .data:0x804A90B8; // type:object size:0x60 scope:local align:4 data:string +@83 = .data:0x804A9118; // type:object size:0x1F scope:local align:4 data:string +@84 = .data:0x804A9138; // type:object size:0x1F scope:local align:4 data:string +@85 = .data:0x804A9158; // type:object size:0x1B scope:local align:4 data:string +@86 = .data:0x804A9174; // type:object size:0x35 scope:local align:4 data:string +@87 = .data:0x804A91AC; // type:object size:0x40 scope:local align:4 +HankakuToCode = .data:0x804A91F0; // type:object size:0x180 scope:local align:4 +Zenkaku2Code = .data:0x804A9370; // type:object size:0x98A scope:local align:4 +InterruptPrioTable = .data:0x804A9D00; // type:object size:0x2C scope:local align:4 data:4byte +ResetFunctionInfo = .data:0x804A9D30; // type:object size:0x10 scope:local align:4 +YearDays = .data:0x804A9D40; // type:object size:0x30 scope:local align:4 +LeapYearDays = .data:0x804A9D70; // type:object size:0x30 scope:local align:4 +...data.0 = .data:0x804A9DA0; // type:label scope:local +@1 = .data:0x804A9DA0; // type:object size:0x45 scope:local align:4 data:string +ResetFunctionInfo = .data:0x804A9DE8; // type:object size:0x10 scope:local align:4 +...data.0 = .data:0x804A9DF8; // type:label scope:local +@1 = .data:0x804A9DF8; // type:object size:0x44 scope:local align:4 data:string +Si = .data:0x804A9E3C; // type:object size:0x14 scope:local align:4 data:4byte +Type = .data:0x804A9E50; // type:object size:0x10 scope:local align:4 +@457 = .data:0x804A9E60; // type:object size:0xC scope:local align:4 data:string +@459 = .data:0x804A9E6C; // type:object size:0xF scope:local align:4 data:string +@460 = .data:0x804A9E7C; // type:object size:0xF scope:local align:4 data:string +@461 = .data:0x804A9E8C; // type:object size:0xD scope:local align:4 data:string +@462 = .data:0x804A9E9C; // type:object size:0xA scope:local align:4 data:string +@463 = .data:0x804A9EA8; // type:object size:0x10 scope:local align:4 data:string +@464 = .data:0x804A9EB8; // type:object size:0x14 scope:local align:4 data:string +@465 = .data:0x804A9ECC; // type:object size:0x12 scope:local align:4 data:string +@466 = .data:0x804A9EE0; // type:object size:0x14 scope:local align:4 data:string +@467 = .data:0x804A9EF4; // type:object size:0x9 scope:local align:4 data:string +@468 = .data:0x804A9F00; // type:object size:0x9 scope:local align:4 data:string +...data.0 = .data:0x804A9F10; // type:label scope:local +XYNTSC = .data:0x804A9F10; // type:object size:0x30 scope:local align:4 +XYPAL = .data:0x804A9F40; // type:object size:0x30 scope:local align:4 +@16 = .data:0x804A9F70; // type:object size:0x33 scope:local align:4 data:string +...data.0 = .data:0x804A9FA8; // type:label scope:local +@1 = .data:0x804A9FA8; // type:object size:0x44 scope:local align:4 data:string +...data.0 = .data:0x804A9FF0; // type:label scope:local +@1 = .data:0x804A9FF0; // type:object size:0x45 scope:local align:4 data:string +...data.0 = .data:0x804AA038; // type:label scope:local +@1 = .data:0x804AA038; // type:object size:0x45 scope:local align:4 data:string +ResetFunctionInfo = .data:0x804AA080; // type:object size:0x10 scope:local align:4 +govNAN___Q24Game5P2JST = .data:0x804AA090; // type:object size:0xC scope:local align:4 data:float +@7139 = .data:0x804AA09C; // type:object size:0x54 scope:local align:4 +@7573 = .data:0x804AA0F0; // type:object size:0x24 scope:local align:4 +__vt__Q34Game10EnemyStone8DrawInfo = .data:0x804AA114; // type:object size:0x10 scope:weak align:4 +__vt__Q23PSM10EnemyHekoi = .data:0x804AA124; // type:object size:0xD4 scope:weak align:4 +__vt__Q24Game13PelletInitArg = .data:0x804AA1F8; // type:object size:0xC scope:weak align:4 +__vt__Q24Game12EnemyKillArg = .data:0x804AA204; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15CreatureKillArg = .data:0x804AA210; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8ArgScale = .data:0x804AA21C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9ItemHoney7InitArg = .data:0x804AA228; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15CreatureInitArg = .data:0x804AA234; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11Interaction = .data:0x804AA240; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game9EnemyBase = .data:0x804AA264; // type:object size:0x328 scope:global align:4 +__vt__Q24Game17EnemyAnimKeyEvent = .data:0x804AA58C; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape8KeyEvent = .data:0x804AA59C; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape14MotionListener = .data:0x804AA5AC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game10PelletView = .data:0x804AA5B8; // type:object size:0x30 scope:weak align:4 +__vt__Q34Game12EnemyBaseFSM12StateMachine = .data:0x804AA5E8; // type:object size:0x38 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM10StoneState = .data:0x804AA620; // type:object size:0x40 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM15EarthquakeState = .data:0x804AA660; // type:object size:0x40 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM8FitState = .data:0x804AA6A0; // type:object size:0x40 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM11LivingState = .data:0x804AA6E0; // type:object size:0x40 scope:global align:4 +__vt__Q23efx12ArgEnemyType = .data:0x804AA720; // type:object size:0xC scope:weak align:4 +__vt__Q23efx3Arg = .data:0x804AA72C; // type:object size:0xC scope:weak align:4 +__vt__Q23efx5TBase = .data:0x804AA738; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game12EnemyBaseFSM11AppearState = .data:0x804AA74C; // type:object size:0x38 scope:global align:4 +__vt__Q34Game12EnemyBaseFSM28BirthTypeDropEarthquakeState = .data:0x804AA784; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM26BirthTypeDropTreasureState = .data:0x804AA7C0; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM24BirthTypeDropOlimarState = .data:0x804AA7FC; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM24BirthTypeDropPikminState = .data:0x804AA838; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM18BirthTypeDropState = .data:0x804AA874; // type:object size:0x3C scope:global align:4 +__vt__Q34Game12EnemyBaseFSM5State = .data:0x804AA8B0; // type:object size:0x38 scope:global align:4 +sLODRadius__Q34Game8Pelplant22@unnamed@pelplant_cpp@ = .data:0x804AA8E8; // type:object size:0x10 scope:local align:4 data:float +@3738 = .data:0x804AA8F8; // type:object size:0x54 scope:local align:4 +@3854 = .data:0x804AA94C; // type:object size:0x54 scope:local align:4 +@3914 = .data:0x804AA9A0; // type:object size:0x54 scope:local align:4 +@3913 = .data:0x804AA9F4; // type:object size:0x54 scope:local align:4 +@4131 = .data:0x804AAA48; // type:object size:0x54 scope:local align:4 +@4169 = .data:0x804AAA9C; // type:object size:0x54 scope:local align:4 +__vt__Q34Game8Pelplant3Mgr = .data:0x804AAAF0; // type:object size:0xE0 scope:global align:4 +__vt__7Parm = .data:0x804AABD0; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game14EnemyParmsBase = .data:0x804AABE4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game13CreatureParms = .data:0x804AABF0; // type:object size:0xC scope:weak align:4 +__vt__7Parm = .data:0x804AABFC; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game8Pelplant5Parms = .data:0x804AAC10; // type:object size:0xC scope:weak align:4 +__vt__16GenericContainer = .data:0x804AAC1C; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game13IEnemyMgrBase = .data:0x804AAC3C; // type:object size:0x98 scope:weak align:4 +__vt__Q28SysShape13BlendFunction = .data:0x804AACD4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Pelplant14ProperAnimator = .data:0x804AACE0; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game8Pelplant3Obj = .data:0x804AAD08; // type:object size:0x32C scope:global align:4 +__vt__Q34Game8Pelplant21BlendAccelerationFunc = .data:0x804AB034; // type:object size:0xC scope:global align:4 +@4082 = .data:0x804AB040; // type:object size:0x54 scope:local align:4 +__vt__Q34Game8Pelplant9StateDead = .data:0x804AB094; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant11StateDamage = .data:0x804AB0B8; // type:object size:0x24 scope:global align:4 +__vt__Q23efx11TPpl20Grow2 = .data:0x804AB0DC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TPpl10Grow2 = .data:0x804AB0F0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TPpl5Grow2 = .data:0x804AB104; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPplGrow2 = .data:0x804AB118; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPplGrow1 = .data:0x804AB12C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game8Pelplant9StateGrow = .data:0x804AB140; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant9StateWait = .data:0x804AB164; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant11StateWither = .data:0x804AB188; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant14StateBlendAnim = .data:0x804AB1AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Pelplant5State = .data:0x804AB1D0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8Pelplant3FSM = .data:0x804AB1F4; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractDrop = .data:0x804AB218; // type:object size:0x24 scope:global align:4 +__vt__Q24Game20InteractFlyCollision = .data:0x804AB23C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractPress = .data:0x804AB260; // type:object size:0x24 scope:global align:4 +__vt__Q24Game18InteractEarthquake = .data:0x804AB284; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractHipdrop = .data:0x804AB2A8; // type:object size:0x24 scope:global align:4 +@5094 = .data:0x804AB2D0; // type:object size:0x194 scope:local align:4 +__vt__Q24Game15GeneralEnemyMgr = .data:0x804AB464; // type:object size:0x4C scope:global align:4 +__vt__Q24Game12EnemyMgrNode = .data:0x804AB4B0; // type:object size:0x80 scope:weak align:4 +__vt__16GenericObjectMgr = .data:0x804AB530; // type:object size:0x38 scope:weak align:4 +__vt__Q34Game12KochappyBase14ProperAnimator = .data:0x804AB568; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8Kochappy3Obj = .data:0x804AB590; // type:object size:0x338 scope:global align:4 +__vt__Q28SysShape12BaseAnimator = .data:0x804AB8C8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804AB8D8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12KochappyBase9StateDemo = .data:0x804AB8E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase11StateGoHome = .data:0x804AB908; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase15StateTurnToHome = .data:0x804AB92C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase10StateFlick = .data:0x804AB950; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase11StateAttack = .data:0x804AB974; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateWalk = .data:0x804AB998; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateTurn = .data:0x804AB9BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateDead = .data:0x804AB9E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase9StateWait = .data:0x804ABA04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase10StatePress = .data:0x804ABA28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KochappyBase5State = .data:0x804ABA4C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game12KochappyBase3FSM = .data:0x804ABA70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Kochappy3Mgr = .data:0x804ABA98; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12KochappyBase5Parms = .data:0x804ABB7C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804ABB88; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9EnemyFunc25EatPikminDefaultCondition = .data:0x804ABB94; // type:object size:0xC scope:weak align:4 +__vt__23Condition = .data:0x804ABBA0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9EnemyFunc21ConditionPikminNearby = .data:0x804ABBAC; // type:object size:0xC scope:weak align:4 +__vt__27Condition = .data:0x804ABBB8; // type:object size:0xC scope:weak align:4 +__vt__26Iterator = .data:0x804ABBC4; // type:object size:0x18 scope:weak align:4 +__vt__22Iterator = .data:0x804ABBDC; // type:object size:0x18 scope:weak align:4 +__vt__22Iterator = .data:0x804ABBF4; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6Chappy3Obj = .data:0x804ABC10; // type:object size:0x364 scope:global align:4 +__vt__Q34Game10ChappyBase11StateGoHome = .data:0x804ABF78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase15StateTurnToHome = .data:0x804ABF9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase10StateFlick = .data:0x804ABFC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase11StateAttack = .data:0x804ABFE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase9StateWalk = .data:0x804AC008; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase9StateTurn = .data:0x804AC02C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase13StateTurnBase = .data:0x804AC050; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10ChappyBase9StateDead = .data:0x804AC074; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase10StateSleep = .data:0x804AC098; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase16StateCautionBase = .data:0x804AC0BC; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10ChappyBase5State = .data:0x804AC0E0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10ChappyBase3FSM = .data:0x804AC104; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10ChappyBase14ProperAnimator = .data:0x804AC128; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10ChappyBase5Parms = .data:0x804AC150; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Chappy3Mgr = .data:0x804AC15C; // type:object size:0xE8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AC248; // type:object size:0xC scope:local align:4 data:float +__vt__13LifeGaugeList = .data:0x804AC254; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804AC260; // type:object size:0xC scope:local align:4 data:float +sColorTableNumerator__26@unnamed@carryInfoMgr_cpp@ = .data:0x804AC26C; // type:object size:0x1C scope:local align:4 +sColorTableDenominator__26@unnamed@carryInfoMgr_cpp@ = .data:0x804AC288; // type:object size:0x1C scope:local align:4 +__vt__12CarryInfoMgr = .data:0x804AC2A4; // type:object size:0x20 scope:global align:4 +__vt__11InfoMgrBase = .data:0x804AC2C4; // type:object size:0x18 scope:weak align:4 +__vt__46InfoListBase<14CarryInfoOwner,13CarryInfoList> = .data:0x804AC2DC; // type:object size:0x1C scope:weak align:4 +__vt__41InfoMgr<14CarryInfoOwner,13CarryInfoList> = .data:0x804AC2F8; // type:object size:0x20 scope:weak align:4 +__vt__14CarryInfoOwner = .data:0x804AC318; // type:object size:0xC scope:weak align:4 +__vt__13PokoInfoOwner = .data:0x804AC324; // type:object size:0x20 scope:global align:4 +__vt__13CarryInfoList = .data:0x804AC344; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AC360; // type:object size:0xC scope:local align:4 data:float +GameLightMgrSettinglabel__Q24Game26@unnamed@gameLightMgr_cpp@ = .data:0x804AC36C; // type:object size:0x14 scope:local align:4 data:4byte +__vt__Q24Game12GameLightMgr = .data:0x804AC380; // type:object size:0x20 scope:global align:4 +__vt__15AmbientLightObj = .data:0x804AC3A0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game18GameLightEventNode = .data:0x804AC3B0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19GameLightMgrSetting = .data:0x804AC3C0; // type:object size:0x14 scope:global align:4 +__vt__Q24Game20GameSpotLightSetting = .data:0x804AC3D4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameLightSpotSetting = .data:0x804AC3E0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19GameLightSunSetting = .data:0x804AC3F0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game14GameFogSetting = .data:0x804AC400; // type:object size:0xC scope:weak align:4 +__vt__Q24Game17GameShadowSetting = .data:0x804AC40C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game23GameLightAmbientSetting = .data:0x804AC418; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameSpecLightSetting = .data:0x804AC424; // type:object size:0xC scope:weak align:4 +__vt__Q24Game23GameDiffuseLightSetting = .data:0x804AC430; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameLightSettingBase = .data:0x804AC43C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game20GameLightTimeSetting = .data:0x804AC448; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16FieldVtxColorMgr = .data:0x804AC458; // type:object size:0x20 scope:global align:4 +gEnemyInfo__4Game = .data:0x804AC478; // type:object size:0x1450 scope:global align:4 data:4byte +__vt__Q34Game4Farm4Farm = .data:0x804AD8C8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Farm8Obstacle = .data:0x804AD8D8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Farm5Plant = .data:0x804AD8E8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804AD8F8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game4Farm7FarmMgr = .data:0x804AD904; // type:object size:0x50 scope:global align:4 +@4469 = .data:0x804AD958; // type:object size:0x198 scope:local align:4 +__vt__Q24Game18EnemyGeneratorBase = .data:0x804ADAF0; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game6GenArg = .data:0x804ADB14; // type:object size:0xC scope:weak align:4 +__vt__Q24Game14GenObjectEnemy = .data:0x804ADB20; // type:object size:0x40 scope:global align:4 +__vt__Q24Game7TimeMgr = .data:0x804ADB60; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game8Pelplant9Generator = .data:0x804ADB70; // type:object size:0x24 scope:global align:4 +__vt__Q24Game17EnemyAnimatorBase = .data:0x804ADB98; // type:object size:0x28 scope:global align:4 +__vt__Q24Game42StateMachine = .data:0x804ADBC0; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10EnemyStone12FSMStateDead = .data:0x804ADBD8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone17FSMStateDisappear = .data:0x804ADBFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone17FSMStateBreakable = .data:0x804ADC20; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone13FSMStateShake = .data:0x804ADC44; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone11FSMStateFit = .data:0x804ADC68; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone21FSMStateExpansionFull = .data:0x804ADC8C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone17FSMStateExpansion = .data:0x804ADCB0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10EnemyStone8FSMState = .data:0x804ADCD4; // type:object size:0x24 scope:global align:4 +__vt__Q24Game38FSMState = .data:0x804ADCF8; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10EnemyStone12StateMachine = .data:0x804ADD18; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ADD38; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10EnemyStone3Obj = .data:0x804ADD44; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10ChappyBase3Mgr = .data:0x804ADD58; // type:object size:0xE8 scope:global align:4 +__vt__Q23efx9THanachoN = .data:0x804ADE40; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10ChappyBase3Obj = .data:0x804ADE8C; // type:object size:0x364 scope:global align:4 +__vt__Q34Game10BlueChappy3Mgr = .data:0x804AE1F0; // type:object size:0xE8 scope:global align:4 +__vt__Q34Game10BlueChappy3Obj = .data:0x804AE2D8; // type:object size:0x364 scope:global align:4 +__vt__Q34Game12YellowChappy3Mgr = .data:0x804AE640; // type:object size:0xE8 scope:global align:4 +__vt__Q23efx29TSyncGroup3 = .data:0x804AE728; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx3 = .data:0x804AE744; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TKechappyTest = .data:0x804AE760; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TKechappyOff = .data:0x804AE77C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game12YellowChappy3Obj = .data:0x804AE790; // type:object size:0x364 scope:global align:4 +__vt__Q34Game12BlueKochappy3Mgr = .data:0x804AEAF8; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12BlueKochappy3Obj = .data:0x804AEBE0; // type:object size:0x338 scope:global align:4 +__vt__Q34Game14YellowKochappy3Obj = .data:0x804AEF18; // type:object size:0x338 scope:global align:4 +__vt__Q34Game14YellowKochappy3Mgr = .data:0x804AF250; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12KochappyBase3Mgr = .data:0x804AF338; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game12KochappyBase3Obj = .data:0x804AF420; // type:object size:0x338 scope:global align:4 +__vt__Q28SysShape14BlendLinearFun = .data:0x804AF758; // type:object size:0xC scope:weak align:4 +__vt__Q24Game22EnemyBlendAnimatorBase = .data:0x804AF764; // type:object size:0x28 scope:global align:4 +__vt__Q28SysShape18BlendQuadraticFunc = .data:0x804AF78C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15EnemyPelletInfo = .data:0x804AF798; // type:object size:0x10 scope:global align:4 +__vt__Q24Game20EnemyEffectNodeHamon = .data:0x804AF7A8; // type:object size:0x1C scope:global align:4 +__vt__Q24Game19EnemyEffectNodeBase = .data:0x804AF7C4; // type:object size:0x1C scope:weak align:4 +__vt__Q24Game12EnemyMgrBase = .data:0x804AF7E0; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game17EnemyStateMachine = .data:0x804AF8C0; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13EnemyFSMState = .data:0x804AF8E4; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AF908; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15IllustratedBook5Parms = .data:0x804AF914; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook13ItemModeParms = .data:0x804AF928; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook9ItemParms = .data:0x804AF93C; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook14EnemyModeParms = .data:0x804AF950; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook10EnemyParms = .data:0x804AF964; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook11CameraParms = .data:0x804AF978; // type:object size:0xC scope:global align:4 +__vt__Q34Game15IllustratedBook17PositionParmsList = .data:0x804AF984; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook13PositionParms = .data:0x804AF998; // type:object size:0x14 scope:global align:4 +__vt__Q34Game15IllustratedBook12ColorSetting = .data:0x804AF9AC; // type:object size:0x14 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804AF9C0; // type:object size:0xC scope:local align:4 data:float +__vt__Q213TreasureLight3Mgr = .data:0x804AF9CC; // type:object size:0x20 scope:global align:4 +sVibration_Move1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AF9F0; // type:object size:0x18 scope:local align:4 +sBristle_Move1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFA08; // type:object size:0x48 scope:local align:4 +sLength_Move1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFA50; // type:object size:0x18 scope:local align:4 +sMove1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFA68; // type:object size:0xC scope:local align:4 +sVibration_Waitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFA74; // type:object size:0x30 scope:local align:4 +sBristle_Waitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFAA4; // type:object size:0x18 scope:local align:4 +sLength_Waitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFABC; // type:object size:0x18 scope:local align:4 +sWaitact1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFAD4; // type:object size:0xC scope:local align:4 +sVibration_Attack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFAE0; // type:object size:0x28 scope:local align:4 +sBristle_Attack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB08; // type:object size:0x30 scope:local align:4 +sLength_Attack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB38; // type:object size:0x18 scope:local align:4 +sAttack__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB50; // type:object size:0xC scope:local align:4 +sVibration_Flick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB5C; // type:object size:0x30 scope:local align:4 +sBristle_Flick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFB8C; // type:object size:0x30 scope:local align:4 +sLength_Flick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFBBC; // type:object size:0x30 scope:local align:4 +sFlick__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFBEC; // type:object size:0xC scope:local align:4 +sVibration_Type1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFBF8; // type:object size:0x58 scope:local align:4 +sBristle_Type1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFC50; // type:object size:0x58 scope:local align:4 +sLength_Type1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFCA8; // type:object size:0x18 scope:local align:4 +sType1__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFCC0; // type:object size:0xC scope:local align:4 +sEffectAnimData__Q214EffectAnimator28@unnamed@effectAnimator_cpp@ = .data:0x804AFCCC; // type:object size:0x24 scope:local align:4 data:4byte +__vt__Q214EffectAnimator9LengthObj = .data:0x804AFCF0; // type:object size:0x14 scope:weak align:4 +__vt__Q214EffectAnimator10BristleObj = .data:0x804AFD04; // type:object size:0x14 scope:weak align:4 +__vt__Q214EffectAnimator12VibrationObj = .data:0x804AFD18; // type:object size:0x14 scope:weak align:4 +__vt__Q214EffectAnimator3Obj = .data:0x804AFD2C; // type:object size:0x14 scope:weak align:4 +__vt__11AgeCollPart = .data:0x804AFD40; // type:object size:0x34 scope:global align:4 +__vt__15CollPartFactory = .data:0x804AFD74; // type:object size:0x34 scope:weak align:4 +__vt__13MouthCollPart = .data:0x804AFDA8; // type:object size:0x34 scope:weak align:4 +__vt__8CollPart = .data:0x804AFDDC; // type:object size:0x34 scope:global align:4 +__vt__Q23Sys3OBB = .data:0x804AFE10; // type:object size:0x10 scope:weak align:4 +__vt__12Container = .data:0x804AFE20; // type:object size:0x2C scope:weak align:4 +__vt__17ArrayContainer = .data:0x804AFE4C; // type:object size:0x48 scope:weak align:4 +__vt__Q23Sys9IndexList = .data:0x804AFE94; // type:object size:0x48 scope:weak align:4 +__vt__Q23Sys12TriIndexList = .data:0x804AFEDC; // type:object size:0x48 scope:weak align:4 +__vt__28ArrayContainer<10Vector3> = .data:0x804AFF24; // type:object size:0x48 scope:weak align:4 +__vt__23Container<10Vector3> = .data:0x804AFF6C; // type:object size:0x2C scope:weak align:4 +__vt__8Platform = .data:0x804AFF98; // type:object size:0x10 scope:weak align:4 +__vt__13DynamicsParms = .data:0x804AFFA8; // type:object size:0x18 scope:global align:4 +__vt__7Parm = .data:0x804AFFC0; // type:object size:0x14 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804AFFD8; // type:object size:0xC scope:local align:4 data:float +@4015 = .data:0x804AFFE4; // type:object size:0xC scope:local align:4 data:4byte +__vt__63Delegate3> = .data:0x804AFFF0; // type:object size:0xC scope:weak align:4 +__vt__47IDelegate3> = .data:0x804AFFFC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game8Creature = .data:0x804B0008; // type:object size:0x1B0 scope:global align:4 +__vt__Q24Game10CellObject = .data:0x804B01B8; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game15TPositionObject = .data:0x804B01E4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B01F0; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game8FakePiki = .data:0x804B01FC; // type:object size:0x220 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B0420; // type:object size:0xC scope:local align:4 data:float +@4850 = .data:0x804B042C; // type:object size:0xC scope:local align:4 data:4byte +@5856 = .data:0x804B0438; // type:object size:0x20 scope:local align:4 +__vt__Q26PikiAI10ActFreeArg = .data:0x804B0458; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI17CreatureActionArg = .data:0x804B0464; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI9ActionArg = .data:0x804B0470; // type:object size:0xC scope:weak align:4 +__vt__Q24Game13NaviDamageArg = .data:0x804B047C; // type:object size:0xC scope:weak align:4 +__vt__23Iterator = .data:0x804B0488; // type:object size:0x18 scope:weak align:4 +__vt__26Iterator = .data:0x804B04A0; // type:object size:0x18 scope:weak align:4 +__vt__44Delegate1 = .data:0x804B04B8; // type:object size:0xC scope:weak align:4 +__vt__32IDelegate1 = .data:0x804B04C4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11GameMessage = .data:0x804B04D0; // type:object size:0x14 scope:weak align:4 +__vt__36Iterator = .data:0x804B04E4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game4Navi = .data:0x804B04FC; // type:object size:0x260 scope:global align:4 +__vt__Q23efx15ContextChasePos = .data:0x804B075C; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx29TSyncGroup2 = .data:0x804B076C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx2 = .data:0x804B0788; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx31TSyncGroup2 = .data:0x804B07A4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TChaseMtxT2 = .data:0x804B07C0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TOrimadamage = .data:0x804B07DC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx7Context = .data:0x804B07F8; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx12TFueactBiri2 = .data:0x804B0808; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TFueactBiri1 = .data:0x804B0854; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx7TFueact = .data:0x804B08A0; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game26StateMachine = .data:0x804B08B4; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B08D0; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game4Piki = .data:0x804B08DC; // type:object size:0x220 scope:global align:4 +__vt__Q23efx12TPkBlackDown = .data:0x804B0AFC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx7TPkMoeA = .data:0x804B0B48; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game26StateMachine = .data:0x804B0B94; // type:object size:0x18 scope:weak align:4 +...data.0 = .data:0x804B0BB0; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804B0BB0; // type:object size:0xC scope:local align:4 data:float +UfoMenuResult__Q22og6Screen = .data:0x804B0BBC; // type:object size:0x10 scope:global align:4 +@4433 = .data:0x804B0BCC; // type:object size:0xC scope:local align:4 data:4byte +@4436 = .data:0x804B0BD8; // type:object size:0xC scope:local align:4 data:4byte +@4600 = .data:0x804B0BE4; // type:object size:0xC scope:local align:4 +@4604 = .data:0x804B0BF0; // type:object size:0xC scope:local align:4 +@4607 = .data:0x804B0BFC; // type:object size:0xC scope:local align:4 +@5050 = .data:0x804B0C08; // type:object size:0xC scope:local align:4 data:4byte +@6821 = .data:0x804B0C14; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q28PSSystem28SingletonBase = .data:0x804B0C20; // type:object size:0xC scope:weak align:4 +__vt__15ModelEffectData = .data:0x804B0C2C; // type:object size:0x1C scope:weak align:4 +__vt__10Controller = .data:0x804B0C48; // type:object size:0xC scope:weak align:4 +__vt__27PikiCond_ExceptChappyPikmin = .data:0x804B0C54; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI19ActFormationInitArg = .data:0x804B0C84; // type:object size:0xC scope:weak align:4 +__vt__49Delegate1> = .data:0x804B0D28; // type:object size:0xC scope:weak align:4 +__vt__25IDelegate1> = .data:0x804B0D34; // type:object size:0xC scope:weak align:4 +__vt__17Container<5Plane> = .data:0x804B0D60; // type:object size:0x2C scope:weak align:4 +__vt__22ArrayContainer<5Plane> = .data:0x804B0D8C; // type:object size:0x48 scope:weak align:4 +__vt__9CullPlane = .data:0x804B0DD4; // type:object size:0x48 scope:weak align:4 +__vt__63Delegate3 = .data:0x804B0E1C; // type:object size:0xC scope:weak align:4 +__vt__39IDelegate3 = .data:0x804B0E28; // type:object size:0xC scope:weak align:4 +__vt__34Delegate = .data:0x804B0E34; // type:object size:0xC scope:weak align:4 +__vt__9IDelegate = .data:0x804B0E40; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15BaseGameSection = .data:0x804B0E4C; // type:object size:0x134 scope:global align:4 +__vt__54Delegate1 = .data:0x804B0F80; // type:object size:0xC scope:weak align:4 +__vt__30IDelegate1 = .data:0x804B0F8C; // type:object size:0xC scope:weak align:4 +__vt__45Delegate1> = .data:0x804B0F98; // type:object size:0xC scope:weak align:4 +__vt__21IDelegate1> = .data:0x804B0FA4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B0FB0; // type:object size:0xC scope:local align:4 data:float +@4714 = .data:0x804B0FBC; // type:object size:0xC scope:local align:4 data:4byte +@4756 = .data:0x804B0FC8; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q32og6Screen14DispMemberCave = .data:0x804B0FD4; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen17DispMemberHurryUp = .data:0x804B0FEC; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen21DispMemberDayEndCount = .data:0x804B1004; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen16DispMemberGround = .data:0x804B101C; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game11PikiInitArg = .data:0x804B1034; // type:object size:0xC scope:weak align:4 +__vt__Q32og6Screen21DispMemberKanketuMenu = .data:0x804B1040; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberCaveMore = .data:0x804B1058; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen17DispMemberAnaDemo = .data:0x804B1070; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen14DispMemberBase = .data:0x804B1088; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game11PikiKillArg = .data:0x804B10A0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TLastMomiji = .data:0x804B10AC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TForestSakura = .data:0x804B10F8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TTutorialSnow = .data:0x804B1144; // type:object size:0x4C scope:weak align:4 +__vt__Q26PSGame13CaveFloorInfo = .data:0x804B1190; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804B11A4; // type:object size:0x18 scope:weak align:4 +__vt__36Delegate = .data:0x804B11BC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10SingleGame15CaveDayEndState = .data:0x804B11C8; // type:object size:0x48 scope:global align:4 +__vt__Q34Game10SingleGame5State = .data:0x804B1210; // type:object size:0x48 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804B1258; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10SingleGame3FSM = .data:0x804B1278; // type:object size:0x18 scope:global align:4 +__vt__Q24Game17SingleGameSection = .data:0x804B1290; // type:object size:0x134 scope:global align:4 +__vt__13SweepCallback = .data:0x804B13C8; // type:object size:0xC scope:weak align:4 +__vt__Q310SweepPrune5World8Callback = .data:0x804B13D4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game7NaviMgr = .data:0x804B13E0; // type:object size:0xA8 scope:global align:4 +__vt__23Container = .data:0x804B1488; // type:object size:0x2C scope:weak align:4 +__vt__23ObjectMgr = .data:0x804B14B4; // type:object size:0x7C scope:weak align:4 +__vt__27MonoObjectMgr = .data:0x804B1530; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game13FakePikiParms = .data:0x804B15BC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game9NaviParms = .data:0x804B15C8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B15D8; // type:object size:0xC scope:local align:4 data:float +@4378 = .data:0x804B15E4; // type:object size:0xC scope:local align:4 data:4byte +__vt__45Delegate1 = .data:0x804B15F0; // type:object size:0xC scope:weak align:4 +__vt__30IDelegate1 = .data:0x804B15FC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game7PikiMgr = .data:0x804B1608; // type:object size:0xA0 scope:global align:4 +__vt__23Container = .data:0x804B16A8; // type:object size:0x2C scope:weak align:4 +__vt__23ObjectMgr = .data:0x804B16D4; // type:object size:0x7C scope:weak align:4 +__vt__27MonoObjectMgr = .data:0x804B1750; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game9PikiParms = .data:0x804B17DC; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B17E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game11ShapeMapMgr = .data:0x804B17F4; // type:object size:0x98 scope:global align:4 +__vt__Q24Game6MapMgr = .data:0x804B188C; // type:object size:0x88 scope:global align:4 +__vt__26Iterator = .data:0x804B1914; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B1930; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game11HIORootNode = .data:0x804B193C; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game14BaseHIOSection = .data:0x804B194C; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B19A0; // type:object size:0xC scope:local align:4 data:float +@4640 = .data:0x804B19AC; // type:object size:0x54 scope:local align:4 +@7914 = .data:0x804B1A00; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game9PelletMgr = .data:0x804B1A0C; // type:object size:0x90 scope:global align:4 +__vt__28Iterator<16GenericObjectMgr> = .data:0x804B1A9C; // type:object size:0x18 scope:weak align:4 +__vt__36Iterator = .data:0x804B1AB4; // type:object size:0x18 scope:weak align:4 +__vt__39Iterator = .data:0x804B1ACC; // type:object size:0x18 scope:weak align:4 +__vt__31TObjectNode<16GenericObjectMgr> = .data:0x804B1AE4; // type:object size:0x10 scope:weak align:4 +__vt__33NodeObjectMgr<16GenericObjectMgr> = .data:0x804B1AF4; // type:object size:0x80 scope:weak align:4 +__vt__29ObjectMgr<16GenericObjectMgr> = .data:0x804B1B74; // type:object size:0x7C scope:weak align:4 +__vt__29Container<16GenericObjectMgr> = .data:0x804B1BF0; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game13BasePelletMgr = .data:0x804B1C1C; // type:object size:0x98 scope:global align:4 +__vt__52Delegate1 = .data:0x804B1CB4; // type:object size:0xC scope:weak align:4 +__vt__20Container<8CollPart> = .data:0x804B1CC0; // type:object size:0x2C scope:weak align:4 +__vt__20ObjectMgr<8CollPart> = .data:0x804B1CEC; // type:object size:0x7C scope:weak align:4 +__vt__24MonoObjectMgr<8CollPart> = .data:0x804B1D68; // type:object size:0x8C scope:weak align:4 +__vt__11CollPartMgr = .data:0x804B1DF4; // type:object size:0x8C scope:weak align:4 +__vt__13WPExcludeSpot = .data:0x804B1E80; // type:object size:0xC scope:weak align:4 +__vt__Q223@unnamed@pelletMgr_cpp@6NotOff = .data:0x804B1E8C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11WPCondition = .data:0x804B1E98; // type:object size:0xC scope:weak align:4 +__vt__27Condition = .data:0x804B1EA4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game6Pellet = .data:0x804B1EB0; // type:object size:0x21C scope:global align:4 +__vt__Q24Game19PelletNumberInitArg = .data:0x804B20CC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game18PelletIndexInitArg = .data:0x804B20D8; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM9EventBase = .data:0x804B20E4; // type:object size:0x88 scope:weak align:4 +__vt__Q24Game28StateMachine = .data:0x804B216C; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game18PelletGoalStateArg = .data:0x804B2184; // type:object size:0xC scope:weak align:4 +__vt__Q24Game12InteractSuck = .data:0x804B2190; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12TFruitsDownP = .data:0x804B21B4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TFruitsDownR = .data:0x804B21C8; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game11InteractEat = .data:0x804B21DC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractMattuan = .data:0x804B2200; // type:object size:0x24 scope:global align:4 +__vt__19Iterator<8CollPart> = .data:0x804B2224; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game14EditorRouteMgr = .data:0x804B2240; // type:object size:0x38 scope:global align:4 +__vt__Q34Game14EditorRouteMgr6WPNode = .data:0x804B2278; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game12GameRouteMgr = .data:0x804B2288; // type:object size:0x38 scope:global align:4 +__vt__26Iterator = .data:0x804B22C0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game8RouteMgr = .data:0x804B22D8; // type:object size:0x38 scope:global align:4 +__vt__27Container = .data:0x804B2310; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game8WayPoint = .data:0x804B233C; // type:object size:0x14 scope:global align:4 +__vt__Q34Game8WayPoint8RoomList = .data:0x804B2350; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B2360; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9ItemOnyon3Mgr = .data:0x804B236C; // type:object size:0xB4 scope:global align:4 +__vt__26TObjectNode = .data:0x804B2420; // type:object size:0x10 scope:weak align:4 +__vt__28NodeObjectMgr = .data:0x804B2430; // type:object size:0x80 scope:weak align:4 +__vt__24ObjectMgr = .data:0x804B24B0; // type:object size:0x7C scope:weak align:4 +__vt__24Container = .data:0x804B252C; // type:object size:0x2C scope:weak align:4 +__vt__12GenOnyonParm = .data:0x804B2558; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11GenItemParm = .data:0x804B2564; // type:object size:0xC scope:weak align:4 +__vt__Q23efx14TOnyonPuffKira = .data:0x804B2570; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOnyonPuffPuff = .data:0x804B2584; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TPodSuck = .data:0x804B2598; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TOnyonEatC = .data:0x804B25AC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7ArgType = .data:0x804B25C0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx9TOnyonLay = .data:0x804B25CC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12OnyonSpotArg = .data:0x804B25E0; // type:object size:0xC scope:weak align:4 +__vt__20ModelEffectCreateArg = .data:0x804B25EC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game5Onyon = .data:0x804B25F8; // type:object size:0x22C scope:global align:4 +__vt__Q23efx11TOnyonEatAB = .data:0x804B2824; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TUfoPodGepu = .data:0x804B2838; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TPodGepu = .data:0x804B284C; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game16InteractSuckDone = .data:0x804B2860; // type:object size:0x24 scope:global align:4 +__vt__Q23efx11TUfoPodSuck = .data:0x804B2884; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game18InteractSuckArrive = .data:0x804B2898; // type:object size:0x24 scope:global align:4 +__vt__Q23efx28TSyncGroup2 = .data:0x804B28BC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TForever2 = .data:0x804B28D8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx34TSyncGroup2 = .data:0x804B28F4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TChasePosYRot2 = .data:0x804B2910; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TPodKira = .data:0x804B292C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TPodSpot = .data:0x804B2978; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TPodOpenB = .data:0x804B2994; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TPodOpenA = .data:0x804B29E0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TUfoGasOut = .data:0x804B2A2C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TUfoGasIn = .data:0x804B2A78; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TUfoPodOpen = .data:0x804B2AC4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TUfoSpotact_ver01 = .data:0x804B2AE0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx15TUfoPodOpenSuck = .data:0x804B2AFC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TUfoSpot = .data:0x804B2B48; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TForever = .data:0x804B2B64; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game12ItemPikihead7InitArg = .data:0x804B2BB0; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11ItemInitArg = .data:0x804B2BBC; // type:object size:0xC scope:weak align:4 +infos = .data:0x804B2BC8; // type:object size:0xB8 scope:global align:4 data:2byte +...data.0 = .data:0x804B2C80; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804B2C80; // type:object size:0xC scope:local align:4 data:float +se_taisos__23@unnamed@naviState_cpp@ = .data:0x804B2C9C; // type:object size:0xC scope:local align:4 +se_chats__23@unnamed@naviState_cpp@ = .data:0x804B2CA8; // type:object size:0xC scope:local align:4 +se_lookbacks__23@unnamed@naviState_cpp@ = .data:0x804B2CB4; // type:object size:0xC scope:local align:4 +se_novis__23@unnamed@naviState_cpp@ = .data:0x804B2CC0; // type:object size:0xC scope:local align:4 +se_jumps__23@unnamed@naviState_cpp@ = .data:0x804B2CCC; // type:object size:0xC scope:local align:4 +se_kyoros__23@unnamed@naviState_cpp@ = .data:0x804B2CD8; // type:object size:0xC scope:local align:4 +@6431 = .data:0x804B2CE4; // type:object size:0xC scope:local align:4 data:4byte +@8655 = .data:0x804B2CF0; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game16NaviPressedState = .data:0x804B2CFC; // type:object size:0x4C scope:global align:4 +__vt__Q24Game20NaviDemo_HoleInState = .data:0x804B2D60; // type:object size:0x4C scope:global align:4 +__vt__Q24Game17NaviDemo_UfoState = .data:0x804B2DAC; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviPelletState = .data:0x804B2DF8; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviThrowState = .data:0x804B2E44; // type:object size:0x5C scope:global align:4 +__vt__Q24Game18NaviThrowWaitState = .data:0x804B2EA0; // type:object size:0x5C scope:global align:4 +__vt__37Delegate = .data:0x804B2EFC; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15NaviGatherState = .data:0x804B2F14; // type:object size:0x4C scope:global align:4 +__vt__Q24Game13NaviDeadState = .data:0x804B2F78; // type:object size:0x4C scope:global align:4 +__vt__Q24Game16NaviDamagedState = .data:0x804B2FC4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviAbsorbState = .data:0x804B3010; // type:object size:0x4C scope:global align:4 +__vt__Q32og6Screen17DispMemberContena = .data:0x804B3074; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen17DispMemberUfoMenu = .data:0x804B308C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberUfoGroup = .data:0x804B30A4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game18NaviContainerState = .data:0x804B30D4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game18NaviSaraiExitState = .data:0x804B3120; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviSaraiState = .data:0x804B316C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game19NaviKokeDamageState = .data:0x804B31B8; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviFlickState = .data:0x804B3204; // type:object size:0x4C scope:global align:4 +__vt__Q24Game17NaviFallMeckState = .data:0x804B325C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviClimbState = .data:0x804B32A8; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14ArgDopingSmoke = .data:0x804B32F4; // type:object size:0xC scope:weak align:4 +__vt__Q24Game13NaviDopeState = .data:0x804B3300; // type:object size:0x4C scope:global align:4 +__vt__Q24Game19NaviNukuAdjustState = .data:0x804B334C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game13NaviNukuState = .data:0x804B3398; // type:object size:0x4C scope:global align:4 +__vt__Q24Game17NaviPathMoveState = .data:0x804B33E4; // type:object size:0x4C scope:global align:4 +__vt__45Delegate1 = .data:0x804B3430; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x804B343C; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TOrimapunch = .data:0x804B3448; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game14NaviPunchState = .data:0x804B347C; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviFollowState = .data:0x804B34C8; // type:object size:0x4C scope:global align:4 +__vt__Q24Game15NaviChangeState = .data:0x804B3514; // type:object size:0x4C scope:global align:4 +__vt__Q24Game13NaviWalkState = .data:0x804B3560; // type:object size:0x4C scope:global align:4 +__vt__Q24Game14NaviStuckState = .data:0x804B35E8; // type:object size:0x4C scope:global align:4 +__vt__Q24Game18NaviCarryBombState = .data:0x804B3634; // type:object size:0x4C scope:global align:4 +__vt__Q24Game22FSMState = .data:0x804B368C; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game7NaviFSM = .data:0x804B36AC; // type:object size:0x18 scope:global align:4 +__vt__Q24Game9NaviState = .data:0x804B36C4; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B3710; // type:object size:0xC scope:local align:4 data:float +@7867 = .data:0x804B371C; // type:object size:0x24 scope:local align:4 +__vt__Q24Game15PikiEscapeState = .data:0x804B3740; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiGrowupState = .data:0x804B37B4; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiAbsorbState = .data:0x804B3828; // type:object size:0x74 scope:global align:4 +__vt__Q24Game16PikiEmotionState = .data:0x804B389C; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiDrownState = .data:0x804B3910; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiKokeState = .data:0x804B3984; // type:object size:0x74 scope:global align:4 +__vt__Q24Game19PikiKokeDamageState = .data:0x804B39F8; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiBlowState = .data:0x804B3A6C; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiFlickState = .data:0x804B3AE0; // type:object size:0x84 scope:global align:4 +__vt__Q26PikiAI10ActCropArg = .data:0x804B3B64; // type:object size:0xC scope:weak align:4 +__vt__Q24Game15PikiFlyingState = .data:0x804B3B70; // type:object size:0x7C scope:global align:4 +__vt__Q24Game16PikiSuikomiState = .data:0x804B3BEC; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17PikiFallMeckState = .data:0x804B3C60; // type:object size:0x74 scope:global align:4 +__vt__Q24Game16PikiHipDropState = .data:0x804B3CD4; // type:object size:0x74 scope:global align:4 +__vt__Q24Game20PikiWaterHangedState = .data:0x804B3D48; // type:object size:0x84 scope:global align:4 +__vt__Q24Game15PikiHangedState = .data:0x804B3DCC; // type:object size:0x84 scope:global align:4 +__vt__Q24Game15PikiGoHangState = .data:0x804B3E50; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17PikiAutoNukiState = .data:0x804B3EC4; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiLookAtState = .data:0x804B3F38; // type:object size:0x84 scope:global align:4 +__vt__Q24Game16PikiPressedState = .data:0x804B3FBC; // type:object size:0x74 scope:global align:4 +__vt__Q23efx9TPkKanden = .data:0x804B4030; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game19PikiDenkiDyingState = .data:0x804B4044; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiDyingState = .data:0x804B40B8; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiDeadState = .data:0x804B412C; // type:object size:0x74 scope:global align:4 +__vt__Q24Game14PikiPanicState = .data:0x804B41A0; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiDopeState = .data:0x804B4214; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiNukareState = .data:0x804B4288; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiTaneState = .data:0x804B42FC; // type:object size:0x74 scope:global align:4 +__vt__Q24Game19PikiFountainonState = .data:0x804B4370; // type:object size:0x74 scope:global align:4 +__vt__Q24Game15PikiHoleinState = .data:0x804B43E4; // type:object size:0x74 scope:global align:4 +__vt__Q24Game18PikiSwallowedState = .data:0x804B4458; // type:object size:0x74 scope:global align:4 +__vt__Q23efx5TPkAp = .data:0x804B44CC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPikuBomb = .data:0x804B44E0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPikuDead = .data:0x804B44F4; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game15PikiCarrotState = .data:0x804B4508; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17PikiDemoWaitState = .data:0x804B457C; // type:object size:0x74 scope:global align:4 +__vt__Q24Game13PikiWalkState = .data:0x804B45F0; // type:object size:0x74 scope:global align:4 +__vt__Q24Game22FSMState = .data:0x804B4664; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game7PikiFSM = .data:0x804B4684; // type:object size:0x18 scope:global align:4 +__vt__Q24Game9PikiState = .data:0x804B469C; // type:object size:0x74 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B4710; // type:object size:0xC scope:local align:4 data:float +__vt__Q26PikiAI12ActBattleArg = .data:0x804B471C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game14InteractBattle = .data:0x804B4728; // type:object size:0x24 scope:global align:4 +__vt__Q24Game11InteractGas = .data:0x804B474C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractBubble = .data:0x804B4770; // type:object size:0x24 scope:global align:4 +__vt__Q24Game16InteractAstonish = .data:0x804B4794; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractFire = .data:0x804B47B8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game20InteractSuikomi_Test = .data:0x804B47DC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractBury = .data:0x804B4800; // type:object size:0x24 scope:global align:4 +__vt__Q24Game16InteractFallMeck = .data:0x804B4824; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractDenki = .data:0x804B4848; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractBomb = .data:0x804B486C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game20InteractHanaChirashi = .data:0x804B4890; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractWind = .data:0x804B48B4; // type:object size:0x24 scope:global align:4 +__vt__Q24Game12InteractDope = .data:0x804B48D8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game11InteractFue = .data:0x804B48FC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractFueFuki = .data:0x804B4920; // type:object size:0x24 scope:global align:4 +__vt__27Container = .data:0x804B4948; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game6CPlate = .data:0x804B4974; // type:object size:0x2C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B49A0; // type:object size:0xC scope:local align:4 data:float +__vt__Q26PikiAI6Action = .data:0x804B49AC; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B49E8; // type:object size:0xC scope:local align:4 data:float +@6795 = .data:0x804B49F4; // type:object size:0x20 scope:local align:4 +__vt__Q26PikiAI20ActFollowVectorField = .data:0x804B4A14; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI9ActGather = .data:0x804B4A50; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI8ActClimb = .data:0x804B4A8C; // type:object size:0x3C scope:global align:4 +__vt__Q23efx10PikiDamage = .data:0x804B4AC8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TPkAttackDP = .data:0x804B4ADC; // type:object size:0x14 scope:weak align:4 +__vt__Q26PikiAI14ActStickAttack = .data:0x804B4AF0; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI11ActPathMove = .data:0x804B4B3C; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI11ActGotoSlot = .data:0x804B4B78; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI14ActApproachPos = .data:0x804B4BB4; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI10ActGotoPos = .data:0x804B4BF0; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B4C30; // type:object size:0xC scope:local align:4 data:float +__vt__Q26PikiAI12ActFormation = .data:0x804B4C3C; // type:object size:0x60 scope:global align:4 +__vt__Q24Game18SlotChangeListener = .data:0x804B4C9C; // type:object size:0xC scope:weak align:4 +__vt__Q24Game8Stickers = .data:0x804B4CA8; // type:object size:0x2C scope:global align:4 +__vt__Q24Game12InteractKill = .data:0x804B4CD8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game15InteractSwallow = .data:0x804B4CFC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractAttack = .data:0x804B4D20; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractFlick = .data:0x804B4D44; // type:object size:0x24 scope:global align:4 +__vt__Q26PikiAI15GatherActionArg = .data:0x804B4D68; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI7ActFree = .data:0x804B4D74; // type:object size:0x4C scope:global align:4 +__vt__13FindCondition = .data:0x804B4DC0; // type:object size:0xC scope:weak align:4 +__vt__20Condition<8CollPart> = .data:0x804B4DCC; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI20ApproachPosActionArg = .data:0x804B4DD8; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI20StickAttackActionArg = .data:0x804B4DE4; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI9ActAttack = .data:0x804B4DF0; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI11PathMoveArg = .data:0x804B4E40; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI11GotoSlotArg = .data:0x804B4E4C; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI12ActTransport = .data:0x804B4E58; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI7ActExit = .data:0x804B4EA8; // type:object size:0x3C scope:global align:4 +__vt__Q26PikiAI14ClimbActionArg = .data:0x804B4EE4; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI16GotoPosActionArg = .data:0x804B4EF0; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI8ActEnter = .data:0x804B4EFC; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B4F48; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game17PelletReturnState = .data:0x804B4F54; // type:object size:0x2C scope:global align:4 +__vt__Q24Game13PelletUpState = .data:0x804B4F80; // type:object size:0x2C scope:global align:4 +__vt__Q24Game16PelletZukanState = .data:0x804B4FAC; // type:object size:0x2C scope:global align:4 +__vt__Q24Game15PelletBuryState = .data:0x804B4FD8; // type:object size:0x2C scope:global align:4 +__vt__Q24Game22PelletScaleAppearState = .data:0x804B5004; // type:object size:0x2C scope:global align:4 +__vt__Q23efx12TTsuyuGrowon = .data:0x804B5030; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game17PelletAppearState = .data:0x804B5044; // type:object size:0x2C scope:global align:4 +__vt__Q24Game15PelletGoalState = .data:0x804B5070; // type:object size:0x2C scope:global align:4 +__vt__Q24Game19PelletGoalWaitState = .data:0x804B509C; // type:object size:0x2C scope:global align:4 +__vt__Q24Game17PelletNormalState = .data:0x804B50C8; // type:object size:0x2C scope:global align:4 +__vt__Q24Game11PelletState = .data:0x804B50F4; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game24FSMState = .data:0x804B5120; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game9PelletFSM = .data:0x804B5140; // type:object size:0x18 scope:global align:4 +@3934 = .data:0x804B5158; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game11DynCreature = .data:0x804B5164; // type:object size:0x1B4 scope:global align:4 +__vt__59Delegate2,R10Vector3> = .data:0x804B5318; // type:object size:0xC scope:weak align:4 +__vt__39IDelegate2,R10Vector3> = .data:0x804B5324; // type:object size:0xC scope:weak align:4 +__vt__Q24Game14DynParticleMgr = .data:0x804B5330; // type:object size:0x8C scope:global align:4 +__vt__31Container = .data:0x804B53BC; // type:object size:0x2C scope:weak align:4 +__vt__31ObjectMgr = .data:0x804B53E8; // type:object size:0x7C scope:weak align:4 +__vt__35MonoObjectMgr = .data:0x804B5464; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game11DynParticle = .data:0x804B54F0; // type:object size:0x24 scope:weak align:4 +__vt__30Iterator = .data:0x804B5514; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B5530; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game12GeneratorMgr = .data:0x804B553C; // type:object size:0x20 scope:global align:4 +__vt__Q24Game9Generator = .data:0x804B555C; // type:object size:0x20 scope:global align:4 +__vt__Q24Game9GenObject = .data:0x804B557C; // type:object size:0x40 scope:global align:4 +__vt__Q24Game7GenBase = .data:0x804B55BC; // type:object size:0x2C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B55E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game13GenObjectPiki = .data:0x804B55F4; // type:object size:0x40 scope:global align:4 +__vt__Q24Game13GenObjectNavi = .data:0x804B5638; // type:object size:0x40 scope:global align:4 +__vt__Q24Game7GenItem = .data:0x804B5678; // type:object size:0x40 scope:global align:4 +__vt__Q24Game10CourseInfo = .data:0x804B56B8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game8LimitGen = .data:0x804B56C8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game11CaveOtakara = .data:0x804B56D8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B56E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game6SeaMgr = .data:0x804B56F4; // type:object size:0x80 scope:weak align:4 +__vt__29TObjectNode = .data:0x804B5774; // type:object size:0x10 scope:weak align:4 +__vt__31NodeObjectMgr = .data:0x804B5784; // type:object size:0x80 scope:weak align:4 +__vt__27ObjectMgr = .data:0x804B5804; // type:object size:0x7C scope:weak align:4 +__vt__27Container = .data:0x804B5880; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game12AABBWaterBox = .data:0x804B58AC; // type:object size:0x48 scope:global align:4 +__vt__Q24Game8WaterBox = .data:0x804B58F4; // type:object size:0x48 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B5940; // type:object size:0xC scope:local align:4 data:float +@5480 = .data:0x804B594C; // type:object size:0x28 scope:local align:4 +__vt__Q26PikiAI12ActBridgeArg = .data:0x804B5974; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI15ActBreakRockArg = .data:0x804B5980; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI15ActBreakGateArg = .data:0x804B598C; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI15ActTransportArg = .data:0x804B5998; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI12ActAttackArg = .data:0x804B59A4; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI10ActWeedArg = .data:0x804B59B0; // type:object size:0xC scope:weak align:4 +__vt__26Iterator = .data:0x804B59BC; // type:object size:0x18 scope:weak align:4 +__vt__15PrimTagParm = .data:0x804B59D8; // type:object size:0x18 scope:weak align:4 +__vt__15PrimTagParm = .data:0x804B59F0; // type:object size:0x18 scope:weak align:4 +__vt__25PrimTagParm<10Vector3> = .data:0x804B5A08; // type:object size:0x18 scope:weak align:4 +__vt__14PrimTagParm = .data:0x804B5A20; // type:object size:0x18 scope:weak align:4 +__vt__14PrimTagParm = .data:0x804B5A38; // type:object size:0x18 scope:weak align:4 +__vt__13TagParameters = .data:0x804B5A50; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game12PelletConfig6TParms = .data:0x804B5A60; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game12PelletConfig = .data:0x804B5A70; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16PelletConfigList = .data:0x804B5A80; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B5A90; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game18OptimiseController = .data:0x804B5A9C; // type:object size:0xC scope:global align:4 +__vt__Q24Game10GameSystem = .data:0x804B5AA8; // type:object size:0xA4 scope:global align:4 +__vt__Q24Game11AIConstants = .data:0x804B5B50; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B5B60; // type:object size:0xC scope:local align:4 data:float +@4818 = .data:0x804B5B6C; // type:object size:0x20 scope:local align:4 +__vt__Q24Game10RoomMapMgr = .data:0x804B5B8C; // type:object size:0xA0 scope:global align:4 +__vt__Q24Game4Door = .data:0x804B5C2C; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16MapUnitInterface = .data:0x804B5C3C; // type:object size:0x2C scope:weak align:4 +__vt__25Iterator = .data:0x804B5C68; // type:object size:0x18 scope:weak align:4 +__vt__26Container = .data:0x804B5C80; // type:object size:0x2C scope:weak align:4 +__vt__26ObjectMgr = .data:0x804B5CAC; // type:object size:0x7C scope:weak align:4 +__vt__30MonoObjectMgr = .data:0x804B5D28; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game7MapRoom = .data:0x804B5DB4; // type:object size:0x48 scope:global align:4 +__vt__Q24Game15ItemGateInitArg = .data:0x804B5DFC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game15ItemBigFountain7InitArg = .data:0x804B5E08; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ItemHole7InitArg = .data:0x804B5E14; // type:object size:0xC scope:weak align:4 +__vt__25Iterator = .data:0x804B5E20; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game10MapUnitMgr = .data:0x804B5E38; // type:object size:0x80 scope:global align:4 +__vt__28TObjectNode = .data:0x804B5EB8; // type:object size:0x10 scope:weak align:4 +__vt__30NodeObjectMgr = .data:0x804B5EC8; // type:object size:0x80 scope:weak align:4 +__vt__26ObjectMgr = .data:0x804B5F48; // type:object size:0x7C scope:weak align:4 +__vt__26Container = .data:0x804B5FC4; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game7MapUnit = .data:0x804B5FF0; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game8DoorLink = .data:0x804B6014; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B6028; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game20GameMessageVsUseCard = .data:0x804B6034; // type:object size:0x14 scope:global align:4 +__vt__Q24Game20GameMessageVsGotCard = .data:0x804B6048; // type:object size:0x14 scope:global align:4 +__vt__Q24Game23GameMessageVsPikminDead = .data:0x804B605C; // type:object size:0x14 scope:global align:4 +__vt__Q24Game30GameMessageVsBirthTekiTreasure = .data:0x804B6070; // type:object size:0x14 scope:global align:4 +__vt__Q24Game21GameMessagePelletDead = .data:0x804B6084; // type:object size:0x14 scope:global align:4 +__vt__Q24Game21GameMessagePelletBorn = .data:0x804B6098; // type:object size:0x14 scope:global align:4 +__vt__Q24Game21GameMessageVsAddEnemy = .data:0x804B60AC; // type:object size:0x14 scope:global align:4 +__vt__Q24Game23GameMessageVsGetOtakara = .data:0x804B60C0; // type:object size:0x14 scope:global align:4 +__vt__Q24Game27GameMessageVsRedOrSuckStart = .data:0x804B60D4; // type:object size:0x14 scope:global align:4 +__vt__Q24Game27GameMessageVsBattleFinished = .data:0x804B60E8; // type:object size:0x14 scope:global align:4 +__vt__Q24Game22GameMessageVsGetDoping = .data:0x804B60FC; // type:object size:0x14 scope:global align:4 +__vt__Q24Game36StateMachine = .data:0x804B6110; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game13VsGameSection = .data:0x804B6128; // type:object size:0x138 scope:global align:4 +__vt__Q34Game6VsGame3FSM = .data:0x804B6260; // type:object size:0x18 scope:global align:4 +__vt__Q24Game7PlatMgr = .data:0x804B6278; // type:object size:0x84 scope:global align:4 +__vt__31Iterator = .data:0x804B62FC; // type:object size:0x18 scope:weak align:4 +__vt__34TObjectNode = .data:0x804B6314; // type:object size:0x10 scope:weak align:4 +__vt__36NodeObjectMgr = .data:0x804B6324; // type:object size:0x80 scope:weak align:4 +__vt__32ObjectMgr = .data:0x804B63A4; // type:object size:0x7C scope:weak align:4 +__vt__32Container = .data:0x804B6420; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game12PlatInstance = .data:0x804B644C; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B6498; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15ItemDengekiGate3Mgr = .data:0x804B64A4; // type:object size:0xC0 scope:global align:4 +__vt__Q24Game29NodeItemMgr = .data:0x804B6564; // type:object size:0xB8 scope:weak align:4 +__vt__Q24Game13GateDownState = .data:0x804B661C; // type:object size:0x34 scope:global align:4 +__vt__Q24Game16GateDamagedState = .data:0x804B6650; // type:object size:0x34 scope:global align:4 +__vt__Q24Game13GateWaitState = .data:0x804B6684; // type:object size:0x34 scope:global align:4 +__vt__11GenGateParm = .data:0x804B66B8; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11ItemGateMgr = .data:0x804B66C4; // type:object size:0x7C scope:global align:4 +__vt__29TObjectNode = .data:0x804B6740; // type:object size:0x10 scope:weak align:4 +__vt__31NodeObjectMgr = .data:0x804B6750; // type:object size:0x80 scope:weak align:4 +__vt__27ObjectMgr = .data:0x804B67D0; // type:object size:0x7C scope:weak align:4 +__vt__27Container = .data:0x804B684C; // type:object size:0x2C scope:weak align:4 +__vt__Q23efx10TGate2Down = .data:0x804B6878; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TGate1Down = .data:0x804B688C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7ArgRotY = .data:0x804B68A0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx7TEgateA = .data:0x804B68AC; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game8ItemGate = .data:0x804B68F8; // type:object size:0x224 scope:global align:4 +__vt__Q24Game60WorkItem = .data:0x804B6B1C; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game25ItemFSM = .data:0x804B6D40; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game30StateMachine = .data:0x804B6D58; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game59FSMItem = .data:0x804B6D70; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game9GateState = .data:0x804B6F94; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game27ItemState = .data:0x804B6FC8; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game26FSMState = .data:0x804B6FFC; // type:object size:0x20 scope:weak align:4 +__vt__Q24Game7GateFSM = .data:0x804B701C; // type:object size:0x18 scope:global align:4 +__vt__Q24Game7ItemMgr = .data:0x804B7038; // type:object size:0x88 scope:global align:4 +__vt__Q24Game12TNodeItemMgr = .data:0x804B70C0; // type:object size:0xBC scope:global align:4 +__vt__29TObjectNode = .data:0x804B717C; // type:object size:0x10 scope:weak align:4 +__vt__31NodeObjectMgr = .data:0x804B718C; // type:object size:0x80 scope:weak align:4 +__vt__27ObjectMgr = .data:0x804B720C; // type:object size:0x7C scope:weak align:4 +__vt__27Container = .data:0x804B7288; // type:object size:0x2C scope:weak align:4 +__vt__Q24Game11BaseItemMgr = .data:0x804B72B4; // type:object size:0x74 scope:global align:4 +__vt__Q24Game17InteractFarmHaero = .data:0x804B7328; // type:object size:0x24 scope:global align:4 +__vt__Q24Game18InteractFarmKarero = .data:0x804B734C; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractAbsorb = .data:0x804B7370; // type:object size:0x24 scope:global align:4 +__vt__Q24Game19InteractFlockAttack = .data:0x804B7394; // type:object size:0x24 scope:global align:4 +__vt__Q24Game14InteractGotKey = .data:0x804B73B8; // type:object size:0x24 scope:global align:4 +__vt__Q24Game19InteractBreakBridge = .data:0x804B73DC; // type:object size:0x24 scope:global align:4 +__vt__Q24Game8CFSMItem = .data:0x804B7400; // type:object size:0x228 scope:global align:4 +__vt__Q24Game8BaseItem = .data:0x804B7628; // type:object size:0x220 scope:global align:4 +__vt__Q26PikiAI26FollowVectorFieldActionArg = .data:0x804B7848; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI12ActBreakGate = .data:0x804B7854; // type:object size:0x4C scope:global align:4 +__vt__Q34Game8GameStat11PikiCounter = .data:0x804B78A0; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804B78B0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8ItemHole3Mgr = .data:0x804B78BC; // type:object size:0xBC scope:global align:4 +__vt__Q24Game8CItemFSM = .data:0x804B7978; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game30StateMachine = .data:0x804B7990; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game8ItemHole4Item = .data:0x804B79A8; // type:object size:0x228 scope:global align:4 +__vt__Q23efx28TSyncGroup4 = .data:0x804B7BD0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TForever4 = .data:0x804B7BEC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8WarpZone = .data:0x804B7C08; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game8ItemHole10CloseState = .data:0x804B7C24; // type:object size:0x38 scope:global align:4 +__vt__Q34Game8ItemHole11AppearState = .data:0x804B7C5C; // type:object size:0x38 scope:global align:4 +__vt__Q34Game8ItemHole11NormalState = .data:0x804B7C94; // type:object size:0x38 scope:global align:4 +__vt__Q34Game8ItemHole5State = .data:0x804B7CCC; // type:object size:0x38 scope:weak align:4 +__vt__Q24Game10CItemState = .data:0x804B7D04; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game26FSMState = .data:0x804B7D38; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemHole3FSM = .data:0x804B7D58; // type:object size:0x18 scope:global align:4 +__vt__Q34Game9ItemHoney3Mgr = .data:0x804B7D70; // type:object size:0xC0 scope:global align:4 +__vt__33ObjectMgr = .data:0x804B7E30; // type:object size:0x7C scope:weak align:4 +__vt__37MonoObjectMgr = .data:0x804B7EAC; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game40FixedSizeItemMgr = .data:0x804B7F38; // type:object size:0xC0 scope:weak align:4 +__vt__33Container = .data:0x804B7FF8; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game9ItemHoney4Item = .data:0x804B8024; // type:object size:0x230 scope:global align:4 +__vt__Q34Game9ItemHoney9DemoState = .data:0x804B8254; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney10TouchState = .data:0x804B8294; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney11ShrinkState = .data:0x804B82D4; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney9WaitState = .data:0x804B8314; // type:object size:0x40 scope:global align:4 +__vt__Q23efx11THoneydownB = .data:0x804B8354; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THoneydownR = .data:0x804B8368; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THoneydownY = .data:0x804B837C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9ItemHoney11BounceState = .data:0x804B8390; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney9FallState = .data:0x804B83D0; // type:object size:0x40 scope:global align:4 +__vt__Q34Game9ItemHoney5State = .data:0x804B8410; // type:object size:0x40 scope:weak align:4 +__vt__Q34Game9ItemHoney3FSM = .data:0x804B8450; // type:object size:0x18 scope:global align:4 +@4401 = .data:0x804B8468; // type:object size:0xC scope:local align:4 data:4byte +__vt__79Delegate1,PQ28SysShape5Model> = .data:0x804B8474; // type:object size:0xC scope:weak align:4 +__vt__32Iterator = .data:0x804B8480; // type:object size:0x18 scope:weak align:4 +enum_floor_alpha_types__26@unnamed@gameCaveInfo_cpp@ = .data:0x804B8498; // type:object size:0x18 scope:local align:4 +enum_floor_beta_types__26@unnamed@gameCaveInfo_cpp@ = .data:0x804B84B0; // type:object size:0xC scope:local align:4 +__vt__Q34Game4Cave8CaveInfo = .data:0x804B84BC; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave9FloorInfo = .data:0x804B84D0; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave7CapInfo = .data:0x804B84E4; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave8GateInfo = .data:0x804B84F8; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave8ItemInfo = .data:0x804B850C; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave8TekiInfo = .data:0x804B8520; // type:object size:0x14 scope:global align:4 +__vt__Q34Game4Cave7BaseGen = .data:0x804B8534; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B8550; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game14InteractKaisan = .data:0x804B8560; // type:object size:0x24 scope:global align:4 +__vt__Q24Game13InteractSarai = .data:0x804B8584; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804B85A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12ItemPikihead3Mgr = .data:0x804B85B4; // type:object size:0xC0 scope:global align:4 +__vt__37ObjectMgr = .data:0x804B8674; // type:object size:0x7C scope:weak align:4 +__vt__41MonoObjectMgr = .data:0x804B86F0; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game44FixedSizeItemMgr = .data:0x804B877C; // type:object size:0xC0 scope:weak align:4 +__vt__37Container = .data:0x804B883C; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game12ItemPikihead4Item = .data:0x804B8868; // type:object size:0x224 scope:global align:4 +__vt__Q23efx8TPkGlow1 = .data:0x804B8A8C; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game35ItemFSM = .data:0x804B8AD8; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804B8AF0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game89FSMItem = .data:0x804B8B08; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game12ItemPikihead10SioreState = .data:0x804B8D2C; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9GrowState = .data:0x804B8D60; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9WaitState = .data:0x804B8D94; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead11HatugaState = .data:0x804B8DC8; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9TaneState = .data:0x804B8DFC; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9BuryState = .data:0x804B8E30; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead9FallState = .data:0x804B8E64; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemPikihead5State = .data:0x804B8E98; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37ItemState = .data:0x804B8ECC; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804B8F00; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game12ItemPikihead3FSM = .data:0x804B8F20; // type:object size:0x18 scope:global align:4 +@5396 = .data:0x804B8F38; // type:object size:0xC scope:local align:4 data:4byte +__vt__83Delegate1,PQ28SysShape5Model> = .data:0x804B8F44; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9ItemPlant9FruitSlot = .data:0x804B8F50; // type:object size:0x10 scope:weak align:4 +__vt__12GenPlantParm = .data:0x804B8F60; // type:object size:0xC scope:weak align:4 +__vt__Q34Game9ItemPlant3Mgr = .data:0x804B8F6C; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game9ItemPlant10PlantParms = .data:0x804B902C; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TTsuyuGrow2 = .data:0x804B9038; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TTsuyuGrow1 = .data:0x804B904C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9ItemPlant5Plant = .data:0x804B9060; // type:object size:0x24C scope:global align:4 +__vt__Q34Game9ItemPlant4Item = .data:0x804B92AC; // type:object size:0x24C scope:global align:4 +__vt__Q24Game31ItemFSM = .data:0x804B94F8; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game36StateMachine = .data:0x804B9510; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game77FSMItem = .data:0x804B9528; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game9ItemPlant11KareruState = .data:0x804B974C; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant11GrowUpState = .data:0x804B9788; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant12DamagedState = .data:0x804B97C4; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant11NormalState = .data:0x804B9800; // type:object size:0x3C scope:global align:4 +__vt__Q34Game9ItemPlant5State = .data:0x804B983C; // type:object size:0x3C scope:weak align:4 +__vt__Q24Game33ItemState = .data:0x804B9878; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32FSMState = .data:0x804B98AC; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game9ItemPlant3FSM = .data:0x804B98CC; // type:object size:0x18 scope:global align:4 +__vt__Q34Game8ItemRock3Mgr = .data:0x804B98E8; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game8ItemRock9RockParms = .data:0x804B99A8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TKouhaiFuku = .data:0x804B99B4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9ArgKouhai = .data:0x804B99C8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TKouhai3 = .data:0x804B99D4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TKouhai2 = .data:0x804B99F0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx8TKouhai1 = .data:0x804B9A0C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game8ItemRock4Item = .data:0x804B9A28; // type:object size:0x224 scope:global align:4 +__vt__Q24Game75WorkItem = .data:0x804B9C4C; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game30ItemFSM = .data:0x804B9E70; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game35StateMachine = .data:0x804B9E88; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game74FSMItem = .data:0x804B9EA0; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game8ItemRock7UpState = .data:0x804BA0C4; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemRock9DownState = .data:0x804BA0F8; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemRock11NormalState = .data:0x804BA12C; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemRock5State = .data:0x804BA160; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32ItemState = .data:0x804BA194; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game31FSMState = .data:0x804BA1C8; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemRock3FSM = .data:0x804BA1E8; // type:object size:0x18 scope:global align:4 +__vt__Q26PikiAI12ActBreakRock = .data:0x804BA200; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI7ActCrop = .data:0x804BA250; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BA2A0; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game8PlayData = .data:0x804BA2B0; // type:object size:0x10 scope:global align:4 +__vt__Q24Game17PelletFirstMemory = .data:0x804BA2C0; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BA2E0; // type:object size:0xC scope:local align:4 data:float +__vt__11GenCaveParm = .data:0x804BA2EC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ItemCave3Mgr = .data:0x804BA2F8; // type:object size:0xBC scope:global align:4 +__vt__Q34Game8ItemCave4Item = .data:0x804BA3B4; // type:object size:0x224 scope:global align:4 +__vt__8Parm = .data:0x804BA5D8; // type:object size:0x14 scope:weak align:4 +__vt__Q24Game30ItemFSM = .data:0x804BA5EC; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game35StateMachine = .data:0x804BA604; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game74FSMItem = .data:0x804BA61C; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game8ItemCave9OpenState = .data:0x804BA840; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemCave11NormalState = .data:0x804BA874; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemCave5State = .data:0x804BA8A8; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32ItemState = .data:0x804BA8DC; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game31FSMState = .data:0x804BA910; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemCave3FSM = .data:0x804BA930; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BA948; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15ItemBigFountain3Mgr = .data:0x804BA954; // type:object size:0xBC scope:global align:4 +__vt__Q34Game15ItemBigFountain13FountainParms = .data:0x804BAA10; // type:object size:0xC scope:weak align:4 +__vt__Q23efx28TSyncGroup3 = .data:0x804BAA1C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TForever3 = .data:0x804BAA38; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TGeyserSet = .data:0x804BAA54; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TGeyserAct = .data:0x804BAA70; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game15ItemBigFountain4Item = .data:0x804BAA8C; // type:object size:0x224 scope:global align:4 +__vt__Q24Game99WorkItem = .data:0x804BACB0; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game38ItemFSM = .data:0x804BAED4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game43StateMachine = .data:0x804BAEEC; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game98FSMItem = .data:0x804BAF04; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game15ItemBigFountain8OutState = .data:0x804BB128; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain9WaitState = .data:0x804BB160; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain10CloseState = .data:0x804BB198; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain11AppearState = .data:0x804BB1D0; // type:object size:0x38 scope:global align:4 +__vt__Q34Game15ItemBigFountain5State = .data:0x804BB208; // type:object size:0x38 scope:weak align:4 +__vt__Q24Game40ItemState = .data:0x804BB240; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game39FSMState = .data:0x804BB274; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game15ItemBigFountain3FSM = .data:0x804BB294; // type:object size:0x18 scope:global align:4 +bridgeFirstPos = .data:0x804BB2B0; // type:object size:0x10 scope:local align:4 +bridgeGrad = .data:0x804BB2C0; // type:object size:0x10 scope:local align:4 +__vt__Q34Game10ItemBridge13BridgeInitArg = .data:0x804BB2D0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10ItemBridge3Mgr = .data:0x804BB2DC; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game10ItemBridge11BridgeParms = .data:0x804BB39C; // type:object size:0xC scope:weak align:4 +__vt__13GenBridgeParm = .data:0x804BB3A8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TBridgeSet = .data:0x804BB3B4; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game10ItemBridge4Item = .data:0x804BB3C8; // type:object size:0x224 scope:global align:4 +__vt__Q24Game84WorkItem = .data:0x804BB5EC; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game33ItemFSM = .data:0x804BB810; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game38StateMachine = .data:0x804BB828; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game83FSMItem = .data:0x804BB840; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game10ItemBridge11NormalState = .data:0x804BBA64; // type:object size:0x34 scope:global align:4 +__vt__Q34Game10ItemBridge5State = .data:0x804BBA98; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game35ItemState = .data:0x804BBACC; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game34FSMState = .data:0x804BBB00; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10ItemBridge3FSM = .data:0x804BBB20; // type:object size:0x18 scope:global align:4 +__vt__Q24Game13PikiContainer = .data:0x804BBB38; // type:object size:0x10 scope:global align:4 +__vt__Q24Game11CourseCache = .data:0x804BBB48; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BBB58; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12ItemTreasure3Mgr = .data:0x804BBB64; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game12ItemTreasure13TreasureParms = .data:0x804BBC24; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12ItemTreasure4Item = .data:0x804BBC30; // type:object size:0x224 scope:global align:4 +__vt__Q44Game12ItemTreasure4Item10DummyShape = .data:0x804BBE54; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape9MtxObject = .data:0x804BBE64; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game90WorkItem = .data:0x804BBE74; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game35ItemFSM = .data:0x804BC098; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804BC0B0; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game89FSMItem = .data:0x804BC0C8; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game12ItemTreasure11NormalState = .data:0x804BC2EC; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemTreasure5State = .data:0x804BC320; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37ItemState = .data:0x804BC354; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804BC388; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game12ItemTreasure3FSM = .data:0x804BC3A8; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BC3C0; // type:object size:0xC scope:local align:4 data:float +__vt__16GenDownFloorParm = .data:0x804BC3CC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game13ItemDownFloor7UpState = .data:0x804BC3D8; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor9DownState = .data:0x804BC410; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor12DamagedState = .data:0x804BC448; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor9WaitState = .data:0x804BC480; // type:object size:0x38 scope:global align:4 +__vt__Q34Game13ItemDownFloor3Mgr = .data:0x804BC4B8; // type:object size:0xC4 scope:global align:4 +__vt__Q23efx13TDownf3Updown = .data:0x804BC57C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TPbagDown = .data:0x804BC590; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TDownf2Updown = .data:0x804BC5A4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TDownf1Updown = .data:0x804BC5B8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TDownf3WUpdown = .data:0x804BC5CC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TDownf2WUpdown = .data:0x804BC5E0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TDownf1WUpdown = .data:0x804BC5F4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7TPbagOn = .data:0x804BC608; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDownf2On = .data:0x804BC61C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDownf1On = .data:0x804BC630; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDownf3WOn = .data:0x804BC644; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDownf2WOn = .data:0x804BC658; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDownf1WOn = .data:0x804BC66C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game13ItemDownFloor4Item = .data:0x804BC680; // type:object size:0x234 scope:global align:4 +__vt__Q24Game36ItemFSM = .data:0x804BC8B4; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game41StateMachine = .data:0x804BC8CC; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game92FSMItem = .data:0x804BC8E4; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game13ItemDownFloor9DeadState = .data:0x804BCB08; // type:object size:0x38 scope:weak align:4 +__vt__Q34Game13ItemDownFloor5State = .data:0x804BCB40; // type:object size:0x38 scope:weak align:4 +__vt__Q24Game38ItemState = .data:0x804BCB78; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37FSMState = .data:0x804BCBAC; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game13ItemDownFloor3FSM = .data:0x804BCBCC; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BCBE8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10ItemBarrel3Mgr = .data:0x804BCBF4; // type:object size:0xC0 scope:global align:4 +__vt__Q34Game10ItemBarrel11BarrelParms = .data:0x804BCCB4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10ItemBarrel4Item = .data:0x804BCCC0; // type:object size:0x224 scope:global align:4 +__vt__Q24Game84WorkItem = .data:0x804BCEE4; // type:object size:0x224 scope:weak align:4 +__vt__Q24Game33ItemFSM = .data:0x804BD108; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game38StateMachine = .data:0x804BD120; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game83FSMItem = .data:0x804BD138; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game10ItemBarrel12DamagedState = .data:0x804BD35C; // type:object size:0x34 scope:global align:4 +__vt__Q23efx11TBarrelDead = .data:0x804BD390; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game10ItemBarrel9DeadState = .data:0x804BD3A4; // type:object size:0x34 scope:global align:4 +__vt__Q34Game10ItemBarrel11NormalState = .data:0x804BD3D8; // type:object size:0x34 scope:global align:4 +__vt__Q34Game10ItemBarrel5State = .data:0x804BD40C; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game35ItemState = .data:0x804BD440; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game34FSMState = .data:0x804BD474; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game10ItemBarrel3FSM = .data:0x804BD494; // type:object size:0x18 scope:global align:4 +@3791 = .data:0x804BD4B0; // type:object size:0x54 scope:local align:4 +__vt__Q34Game12PelletNumber3Mgr = .data:0x804BD504; // type:object size:0xCC scope:global align:4 +__vt__39ObjectMgr = .data:0x804BD5D0; // type:object size:0x7C scope:weak align:4 +__vt__43MonoObjectMgr = .data:0x804BD64C; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game48FixedSizePelletMgr = .data:0x804BD6D8; // type:object size:0xCC scope:weak align:4 +__vt__39Container = .data:0x804BD7A4; // type:object size:0x2C scope:weak align:4 +__vt__Q23efx10ArgPelType = .data:0x804BD7D0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12PelletNumber6Object = .data:0x804BD7DC; // type:object size:0x21C scope:global align:4 +__vt__38Iterator = .data:0x804BD9F8; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game13PelletCarcass3Mgr = .data:0x804BDA10; // type:object size:0xCC scope:global align:4 +__vt__40ObjectMgr = .data:0x804BDADC; // type:object size:0x7C scope:weak align:4 +__vt__44MonoObjectMgr = .data:0x804BDB58; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game49FixedSizePelletMgr = .data:0x804BDBE4; // type:object size:0xCC scope:weak align:4 +__vt__40Container = .data:0x804BDCB0; // type:object size:0x2C scope:weak align:4 +__vt__39Iterator = .data:0x804BDCDC; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game13PelletCarcass6Object = .data:0x804BDCF4; // type:object size:0x21C scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BDF10; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game11PelletFruit3Mgr = .data:0x804BDF1C; // type:object size:0xCC scope:global align:4 +__vt__38ObjectMgr = .data:0x804BDFE8; // type:object size:0x7C scope:weak align:4 +__vt__42MonoObjectMgr = .data:0x804BE064; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game47FixedSizePelletMgr = .data:0x804BE0F0; // type:object size:0xCC scope:weak align:4 +__vt__38Container = .data:0x804BE1BC; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game11PelletFruit6Object = .data:0x804BE1E8; // type:object size:0x21C scope:global align:4 +__vt__37Iterator = .data:0x804BE404; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BE420; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game13PelletOtakara3Mgr = .data:0x804BE42C; // type:object size:0xCC scope:global align:4 +__vt__40ObjectMgr = .data:0x804BE4F8; // type:object size:0x7C scope:weak align:4 +__vt__44MonoObjectMgr = .data:0x804BE574; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game49FixedSizePelletMgr = .data:0x804BE600; // type:object size:0xCC scope:weak align:4 +__vt__40Container = .data:0x804BE6CC; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game13PelletOtakara6Object = .data:0x804BE6F8; // type:object size:0x21C scope:global align:4 +__vt__Q24Game9GenPellet = .data:0x804BE918; // type:object size:0x40 scope:global align:4 +__vt__Q34Game10PelletItem3Mgr = .data:0x804BE958; // type:object size:0xCC scope:global align:4 +__vt__37ObjectMgr = .data:0x804BEA24; // type:object size:0x7C scope:weak align:4 +__vt__41MonoObjectMgr = .data:0x804BEAA0; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game46FixedSizePelletMgr = .data:0x804BEB2C; // type:object size:0xCC scope:weak align:4 +__vt__37Container = .data:0x804BEBF8; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game10PelletItem6Object = .data:0x804BEC24; // type:object size:0x21C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BEE40; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx13OnyonSpotData = .data:0x804BEE50; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9OnyonSpot = .data:0x804BEE6C; // type:object size:0x34 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BEEA0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game12ItemUjamushi7InitArg = .data:0x804BEEAC; // type:object size:0xC scope:weak align:4 +__vt__15GenUjamushiParm = .data:0x804BEEB8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12ItemUjamushi8DigState = .data:0x804BEEC4; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemUjamushi11ActiveState = .data:0x804BEEF8; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemUjamushi9WaitState = .data:0x804BEF2C; // type:object size:0x34 scope:global align:4 +__vt__Q34Game12ItemUjamushi3Mgr = .data:0x804BEF60; // type:object size:0xC0 scope:global align:4 +__vt__36Iterator = .data:0x804BF020; // type:object size:0x18 scope:weak align:4 +__vt__37Container = .data:0x804BF038; // type:object size:0x2C scope:weak align:4 +__vt__37ObjectMgr = .data:0x804BF064; // type:object size:0x7C scope:weak align:4 +__vt__39TObjectNode = .data:0x804BF0E0; // type:object size:0x10 scope:weak align:4 +__vt__41NodeObjectMgr = .data:0x804BF0F0; // type:object size:0x80 scope:weak align:4 +__vt__Q24Game39NodeItemMgr = .data:0x804BF170; // type:object size:0xB8 scope:weak align:4 +__vt__Q34Game12ItemUjamushi4Item = .data:0x804BF228; // type:object size:0x228 scope:global align:4 +__vt__Q44Game12ItemUjamushi4Item10DummyShape = .data:0x804BF450; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game35ItemFSM = .data:0x804BF460; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game40StateMachine = .data:0x804BF478; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game89FSMItem = .data:0x804BF490; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game12ItemUjamushi5State = .data:0x804BF6B4; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game37ItemState = .data:0x804BF6E8; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game36FSMState = .data:0x804BF71C; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game12ItemUjamushi3FSM = .data:0x804BF73C; // type:object size:0x18 scope:global align:4 +__vt__Q34Game12ItemUjamushi6UjaMgr = .data:0x804BF754; // type:object size:0x70 scope:global align:4 +__vt__36ObjectMgr = .data:0x804BF7C4; // type:object size:0x7C scope:weak align:4 +__vt__40MonoObjectMgr = .data:0x804BF840; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game36TFlockMgr = .data:0x804BF8CC; // type:object size:0x70 scope:weak align:4 +__vt__36Container = .data:0x804BF93C; // type:object size:0x2C scope:weak align:4 +__vt__35Iterator = .data:0x804BF968; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game12ItemUjamushi3Uja = .data:0x804BF980; // type:object size:0x24 scope:global align:4 +__vt__Q24Game6TFlock = .data:0x804BF9A4; // type:object size:0x24 scope:weak align:4 +__vt__Q44Game12ItemUjamushi13BoidParameter5TNode = .data:0x804BF9C8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game12ItemUjamushi13BoidParameter = .data:0x804BF9D8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804BF9E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx9TWeedPull = .data:0x804BF9F4; // type:object size:0x14 scope:weak align:4 +__vt__Q26PikiAI14ActFlockAttack = .data:0x804BFA08; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI20FlockAttackActionArg = .data:0x804BFA54; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI7ActWeed = .data:0x804BFA60; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BFAA0; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game12BaseFlockMgr = .data:0x804BFAAC; // type:object size:0x30 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804BFAE0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8ItemWeed7InitArg = .data:0x804BFAEC; // type:object size:0xC scope:weak align:4 +__vt__11GenWeedParm = .data:0x804BFAF8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ItemWeed9WaitState = .data:0x804BFB04; // type:object size:0x34 scope:global align:4 +__vt__Q34Game8ItemWeed3Mgr = .data:0x804BFB38; // type:object size:0xC4 scope:global align:4 +__vt__Q34Game8ItemWeed4Item = .data:0x804BFBFC; // type:object size:0x228 scope:global align:4 +__vt__Q44Game8ItemWeed4Item10DummyShape = .data:0x804BFE24; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game30ItemFSM = .data:0x804BFE34; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game35StateMachine = .data:0x804BFE4C; // type:object size:0x18 scope:weak align:4 +__vt__Q24Game74FSMItem = .data:0x804BFE64; // type:object size:0x224 scope:weak align:4 +__vt__Q34Game8ItemWeed5State = .data:0x804C0088; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game32ItemState = .data:0x804C00BC; // type:object size:0x34 scope:weak align:4 +__vt__Q24Game31FSMState = .data:0x804C00F0; // type:object size:0x20 scope:weak align:4 +__vt__Q34Game8ItemWeed3FSM = .data:0x804C0110; // type:object size:0x18 scope:global align:4 +__vt__Q34Game8ItemWeed7WeedMgr = .data:0x804C0128; // type:object size:0x70 scope:global align:4 +__vt__32ObjectMgr = .data:0x804C0198; // type:object size:0x7C scope:weak align:4 +__vt__36MonoObjectMgr = .data:0x804C0214; // type:object size:0x8C scope:weak align:4 +__vt__Q24Game32TFlockMgr = .data:0x804C02A0; // type:object size:0x70 scope:weak align:4 +__vt__32Container = .data:0x804C0310; // type:object size:0x2C scope:weak align:4 +__vt__Q34Game8ItemWeed4Weed = .data:0x804C033C; // type:object size:0x24 scope:global align:4 +__vt__31Iterator = .data:0x804C0360; // type:object size:0x18 scope:weak align:4 +__vt__Q26PikiAI9ActBridge = .data:0x804C0378; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI7ActTeki = .data:0x804C03C8; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0418; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og6Screen14DispMemberSave = .data:0x804C0424; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen19DispMemberSMenuCont = .data:0x804C043C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen22DispMemberSMenuPauseVS = .data:0x804C0454; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberSMenuMap = .data:0x804C046C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen19DispMemberSMenuItem = .data:0x804C0484; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen27DispMemberSMenuPauseDoukutu = .data:0x804C049C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen20DispMemberSMenuPause = .data:0x804C04B4; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen18DispMemberSMenuAll = .data:0x804C04CC; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame9GameState = .data:0x804C04E4; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0530; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10SingleGame9CaveState = .data:0x804C053C; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0588; // type:object size:0xC scope:local align:4 data:float +@4203 = .data:0x804C0594; // type:object size:0xC scope:local align:4 data:4byte +@4207 = .data:0x804C05A0; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q32kh6Screen20DispDayEndResultTitl = .data:0x804C05AC; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen16DispDayEndResult = .data:0x804C05C4; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame15MainResultState = .data:0x804C05DC; // type:object size:0x48 scope:global align:4 +__vt__Q34Game6Result5TNode = .data:0x804C0624; // type:object size:0x10 scope:weak align:4 +__vt__46Delegate = .data:0x804C0634; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C0640; // type:object size:0xC scope:local align:4 data:float +@4182 = .data:0x804C064C; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q34Game10SingleGame15CaveResultState = .data:0x804C0658; // type:object size:0x48 scope:global align:4 +__vt__46Delegate = .data:0x804C06A0; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C06B0; // type:object size:0xC scope:local align:4 data:float +@4200 = .data:0x804C06BC; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q34Game10SingleGame11SelectState = .data:0x804C06C8; // type:object size:0x48 scope:global align:4 +__vt__42Delegate = .data:0x804C0710; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C0720; // type:object size:0xC scope:local align:4 data:float +@4406 = .data:0x804C072C; // type:object size:0xC scope:local align:4 data:4byte +__vt__39Delegate = .data:0x804C0738; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10SingleGame9FileState = .data:0x804C0744; // type:object size:0x48 scope:global align:4 +__vt__Q24Game16PelletCropMemory = .data:0x804C0790; // type:object size:0x10 scope:global align:4 +__vt__7OgDummy = .data:0x804C07A0; // type:object size:0xC scope:weak align:4 +__vt__Q25Radar5Point = .data:0x804C07AC; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x804C07C0; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804C07C0; // type:object size:0xC scope:local align:4 data:float +opening_strings = .data:0x804C07DC; // type:object size:0x4C scope:global align:4 +ending_strings = .data:0x804C0828; // type:object size:0x1C scope:global align:4 +endingcomplete_strings = .data:0x804C0844; // type:object size:0x1C scope:global align:4 +staffroll_strings = .data:0x804C0860; // type:object size:0x2C scope:global align:4 +mezase_strings = .data:0x804C088C; // type:object size:0x1C scope:global align:4 +__vt__Q34Game10SingleGame10MovieState = .data:0x804C08A8; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0958; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game30EnemyIterator = .data:0x804C0964; // type:object size:0x18 scope:weak align:4 +...data.0 = .data:0x804C0980; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804C0980; // type:object size:0xC scope:local align:4 data:float +sDirName__28@unnamed@singleGS_Zukan_cpp@ = .data:0x804C099C; // type:object size:0x10 scope:local align:4 +@5200 = .data:0x804C09AC; // type:object size:0xC scope:local align:4 +@5203 = .data:0x804C09B8; // type:object size:0xC scope:local align:4 +@5206 = .data:0x804C09C4; // type:object size:0xC scope:local align:4 +__vt__Q28Morimura19DispMemberZukanItem = .data:0x804C0A54; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura20DispMemberZukanEnemy = .data:0x804C0A6C; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura19DispMemberZukanBase = .data:0x804C0A84; // type:object size:0x18 scope:weak align:4 +__vt__41Delegate = .data:0x804C0AB4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10SingleGame10ZukanState = .data:0x804C0ACC; // type:object size:0x48 scope:global align:4 +__vt__Q34Game15IllustratedBook6Camera = .data:0x804C0B7C; // type:object size:0x80 scope:global align:4 +__vt__Q34Game15IllustratedBook11EnemyTexMgr = .data:0x804C0CD8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game15IllustratedBook10DebugParms = .data:0x804C0CE4; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game5DNode = .data:0x804C0CF8; // type:object size:0x10 scope:global align:4 +__vt__Q34Game12ResultTexMgr3Mgr = .data:0x804C0D08; // type:object size:0xC scope:global align:4 +__vt__Q34Game10PelletList3Mgr = .data:0x804C0D18; // type:object size:0xC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0D28; // type:object size:0xC scope:local align:4 data:float +cMaps__24@unnamed@vsGS_Title_cpp@ = .data:0x804C0D34; // type:object size:0x10 scope:local align:4 +@4009 = .data:0x804C0D44; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q28Morimura18DispMemberVsSelect = .data:0x804C0D50; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura25DispMemberChallengeSelect = .data:0x804C0D68; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame10TitleState = .data:0x804C0D80; // type:object size:0x4C scope:global align:4 +__vt__36Delegate = .data:0x804C0DCC; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6VsGame5State = .data:0x804C0DD8; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game32FSMState = .data:0x804C0E24; // type:object size:0x20 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C0E48; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og6Screen12DispMemberVs = .data:0x804C0E54; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen21DispMemberChallenge1P = .data:0x804C0E6C; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen17DispWinLoseReason = .data:0x804C0E84; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen11DispWinLose = .data:0x804C0E9C; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen21DispMemberChallenge2P = .data:0x804C0EB4; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame9GameState = .data:0x804C0ECC; // type:object size:0x54 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C0F20; // type:object size:0xC scope:local align:4 data:float +@3977 = .data:0x804C0F2C; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q28Morimura25DispMemberChallengeResult = .data:0x804C0F38; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame11ResultState = .data:0x804C0F50; // type:object size:0x4C scope:global align:4 +__vt__37Delegate = .data:0x804C0F9C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C0FA8; // type:object size:0xC scope:local align:4 data:float +@3948 = .data:0x804C0FB4; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q32og6Screen15DispMemberFloor = .data:0x804C0FC0; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game6VsGame9LoadState = .data:0x804C0FD8; // type:object size:0x4C scope:global align:4 +__vt__34Delegate = .data:0x804C1024; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1030; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6VsGame9StageList = .data:0x804C103C; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game6VsGame9StageData = .data:0x804C104C; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game13ChallengeGame9StageList = .data:0x804C105C; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game13ChallengeGame9StageData = .data:0x804C106C; // type:object size:0x10 scope:weak align:4 +__vt__12CellMgrParms = .data:0x804C1080; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1098; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6VsGame7VSState = .data:0x804C10A4; // type:object size:0x54 scope:global align:4 +__vt__Q26PikiAI9ActBattle = .data:0x804C10F8; // type:object size:0x4C scope:global align:4 +__vt__Q26PikiAI10ActOneshot = .data:0x804C1148; // type:object size:0x50 scope:global align:4 +__vt__Q26PikiAI7ActRest = .data:0x804C1198; // type:object size:0x50 scope:global align:4 +__vt__Q26PikiAI11ActBoreBase = .data:0x804C11E8; // type:object size:0x4C scope:weak align:4 +__vt__Q26PikiAI13ActOneshotArg = .data:0x804C1234; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI7ActBore = .data:0x804C1240; // type:object size:0x3C scope:global align:4 +__vt__Q24Game9PartsView = .data:0x804C1280; // type:object size:0x2C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C12B0; // type:object size:0xC scope:local align:4 data:float +@4187 = .data:0x804C12BC; // type:object size:0xC scope:local align:4 data:4byte +@4597 = .data:0x804C12C8; // type:object size:0x2C scope:local align:4 +__vt__Q32og6Screen22DispMemberFinalMessage = .data:0x804C12F4; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame11EndingState = .data:0x804C130C; // type:object size:0x4C scope:global align:4 +__vt__42Delegate = .data:0x804C1358; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11IconTexture3Mgr = .data:0x804C1368; // type:object size:0xC scope:global align:4 +__vt__Q34Game11IconTexture6Loader = .data:0x804C1374; // type:object size:0xC scope:global align:4 +__vt__Q24Game9Highscore = .data:0x804C1380; // type:object size:0xC scope:weak align:4 +__vt__Q24Game8Lowscore = .data:0x804C1390; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6VsGame8TekiNode = .data:0x804C13A0; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C13B0; // type:object size:0xC scope:local align:4 data:float +tex_names__Q34Game6VsGame23@unnamed@vsCardMgr_cpp@ = .data:0x804C13BC; // type:object size:0x30 scope:local align:4 data:4byte +@5216 = .data:0x804C13EC; // type:object size:0x2C scope:local align:4 +__vt__Q25efx2d5TBase = .data:0x804C1418; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d7TBaseIF = .data:0x804C1430; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d18ArgScaleColorColor = .data:0x804C1448; // type:object size:0xC scope:weak align:4 +__vt__Q25efx2d3Arg = .data:0x804C1454; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TPkGlow2 = .data:0x804C1460; // type:object size:0x14 scope:weak align:4 +__vt__10WPFindCond = .data:0x804C1478; // type:object size:0xC scope:weak align:4 +__vt__Q26PikiAI9ActRescue = .data:0x804C1484; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C14D0; // type:object size:0xC scope:local align:4 data:float +@3654 = .data:0x804C14DC; // type:object size:0xC scope:local align:4 data:4byte +__vt__46Delegate1 = .data:0x804C14E8; // type:object size:0xC scope:weak align:4 +__vt__22IDelegate1 = .data:0x804C14F4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1500; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og6Screen20DispMemberCourseName = .data:0x804C150C; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game10SingleGame9LoadState = .data:0x804C1524; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1570; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10SingleGame11DayEndState = .data:0x804C157C; // type:object size:0x48 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C15C8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game15BaseGameSection10ZoomCamera = .data:0x804C15D4; // type:object size:0x80 scope:global align:4 +__vt__Q32og6Screen21DispMemberSpecialItem = .data:0x804C1654; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen16DispMemberKantei = .data:0x804C166C; // type:object size:0x18 scope:weak align:4 +__vt__Q29TexCaster6Caster = .data:0x804C1688; // type:object size:0x10 scope:global align:4 +__vt__6VSFifo = .data:0x804C1698; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x804C16C0; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804C16C0; // type:object size:0xC scope:local align:4 data:float +sHighCylinderDL__4Game = .data:0x804C16E0; // type:object size:0x8D scope:local align:32 +sMidCylinderDL__4Game = .data:0x804C1780; // type:object size:0x6D scope:local align:32 +sLowCylinderDL__4Game = .data:0x804C1800; // type:object size:0x4D scope:local align:32 +__vt__Q24Game15ShadowCylinder3 = .data:0x804C1850; // type:object size:0x18 scope:global align:4 +__vt__Q24Game15ShadowCylinder2 = .data:0x804C1868; // type:object size:0x18 scope:global align:4 +__vt__Q24Game12CylinderBase = .data:0x804C1880; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1898; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game10PlayCamera = .data:0x804C18A4; // type:object size:0x84 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1928; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game9ShadowMgr = .data:0x804C1934; // type:object size:0x30 scope:global align:4 +__vt__Q24Game10ShadowNode = .data:0x804C1964; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game15JointShadowNode = .data:0x804C1974; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19JointShadowRootNode = .data:0x804C1984; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave10AdjustNode = .data:0x804C1998; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave7MapNode = .data:0x804C19A8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave9EnemyNode = .data:0x804C19B8; // type:object size:0x30 scope:global align:4 +__vt__Q24Game16ObjectLayoutNode = .data:0x804C19E8; // type:object size:0x30 scope:weak align:4 +__vt__Q24Game8RoomLink = .data:0x804C1A18; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave10RandMapMgr = .data:0x804C1A28; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Cave8DoorNode = .data:0x804C1A38; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1A48; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game4Cave10FixObjNode = .data:0x804C1A58; // type:object size:0x30 scope:weak align:4 +__vt__Q34Game4Cave8ItemNode = .data:0x804C1A88; // type:object size:0x30 scope:global align:4 +__vt__Q34Game4Cave8GateNode = .data:0x804C1AB8; // type:object size:0x30 scope:global align:4 +__vt__Q34Game4Cave12ObjectLayout = .data:0x804C1AE8; // type:object size:0x10 scope:global align:4 +__vt__Q24Game16ObjectLayoutInfo = .data:0x804C1AF8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C1B08; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game9CameraMgr = .data:0x804C1B14; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game10RumbleNode = .data:0x804C1B28; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game9RumbleMgr = .data:0x804C1B38; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game3Pom14ProperAnimator = .data:0x804C1B48; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C1B70; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game3Pom5Parms = .data:0x804C1B7C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game3Pom3Mgr = .data:0x804C1B88; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx8TPonDead = .data:0x804C1C68; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game3Pom3Obj = .data:0x804C1C7C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game3Pom10StateSwing = .data:0x804C1FA8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateShot = .data:0x804C1FCC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom10StateClose = .data:0x804C1FF0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateOpen = .data:0x804C2014; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateDead = .data:0x804C2038; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom9StateWait = .data:0x804C205C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Pom5State = .data:0x804C2080; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game3Pom3FSM = .data:0x804C20A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog11StateGoHome = .data:0x804C20C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog15StateTurnToHome = .data:0x804C20EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateFail = .data:0x804C2110; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog11StateAttack = .data:0x804C2134; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateFall = .data:0x804C2158; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog13StateJumpWait = .data:0x804C217C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateJump = .data:0x804C21A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateTurn = .data:0x804C21C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateWait = .data:0x804C21E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog9StateDead = .data:0x804C220C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog5State = .data:0x804C2230; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Frog3FSM = .data:0x804C2254; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Frog14ProperAnimator = .data:0x804C2278; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Frog5Parms = .data:0x804C22A0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Frog3Mgr = .data:0x804C22AC; // type:object size:0xE0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C2390; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx9TFrogPota = .data:0x804C239C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TFrogLanddrop = .data:0x804C23E8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TFrogDive = .data:0x804C23FC; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Frog3Obj = .data:0x804C2410; // type:object size:0x334 scope:global align:4 +__vt__Q34Game4Ujib5Parms = .data:0x804C2748; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Ujib3Mgr = .data:0x804C2754; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx12TUjinkoPkate = .data:0x804C2838; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TUjinkoEat = .data:0x804C284C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TUjinkoHd = .data:0x804C2860; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TUjinkoAp = .data:0x804C2874; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Ujib3Obj = .data:0x804C2888; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Ujib8StateEat = .data:0x804C2BB8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib12StateAttack2 = .data:0x804C2BDC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib12StateAttack1 = .data:0x804C2C00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib11StateGoHome = .data:0x804C2C24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib12StateMoveTop = .data:0x804C2C48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib15StateMoveCentre = .data:0x804C2C6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib13StateMoveSide = .data:0x804C2C90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateMove = .data:0x804C2CB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateDive = .data:0x804C2CD8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib11StateAppear = .data:0x804C2CFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateStay = .data:0x804C2D20; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib10StatePress = .data:0x804C2D44; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib9StateDead = .data:0x804C2D68; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib5State = .data:0x804C2D8C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Ujib3FSM = .data:0x804C2DB0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujib14ProperAnimator = .data:0x804C2DD8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Kogane10StatePress = .data:0x804C2E00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane9StateWait = .data:0x804C2E24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane9StateMove = .data:0x804C2E48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane14StateDisappear = .data:0x804C2E6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane11StateAppear = .data:0x804C2E90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane5State = .data:0x804C2EB4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Kogane3FSM = .data:0x804C2ED8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane3Mgr = .data:0x804C2F00; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game6Kogane3Obj = .data:0x804C2FE8; // type:object size:0x350 scope:global align:4 +__vt__Q34Game6Kogane14ProperAnimator = .data:0x804C3338; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Qurione9StateDead = .data:0x804C3360; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione9StateDrop = .data:0x804C3384; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione9StateMove = .data:0x804C33A8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione14StateDisappear = .data:0x804C33CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione11StateAppear = .data:0x804C33F0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione9StateStay = .data:0x804C3414; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione5State = .data:0x804C3438; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Qurione3FSM = .data:0x804C345C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Qurione5Parms = .data:0x804C3480; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Qurione3Mgr = .data:0x804C348C; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Qurione9Generator = .data:0x804C356C; // type:object size:0x24 scope:global align:4 +__vt__Q23efx8TQuriHit = .data:0x804C3590; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TQuriDisap = .data:0x804C35A4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TQuriApp = .data:0x804C35F0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TQuriGlow = .data:0x804C363C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7Qurione3Obj = .data:0x804C3688; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7Qurione14ProperAnimator = .data:0x804C39B8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8MaroFrog3Mgr = .data:0x804C39E0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8MaroFrog3Obj = .data:0x804C3AC0; // type:object size:0x334 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C3DF8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game4Rock9StateDead = .data:0x804C3E04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock9StateMove = .data:0x804C3E28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock9StateFall = .data:0x804C3E4C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock13StateDropWait = .data:0x804C3E70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock11StateAppear = .data:0x804C3E94; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock9StateWait = .data:0x804C3EB8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock5State = .data:0x804C3EDC; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Rock3FSM = .data:0x804C3F00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Rock14ProperAnimator = .data:0x804C3F28; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Rock5Parms = .data:0x804C3F50; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Rock3Mgr = .data:0x804C3F5C; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Rock9Generator = .data:0x804C403C; // type:object size:0x24 scope:global align:4 +__vt__Q23efx9TRockDead = .data:0x804C4060; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup3 = .data:0x804C4074; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChasePos3 = .data:0x804C4090; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TRockWRunChasePos = .data:0x804C40AC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TRockWRun = .data:0x804C40C8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TRockGrRun = .data:0x804C40DC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TRockRun = .data:0x804C4128; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Rock3Obj = .data:0x804C4174; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Ujia12StateAttack1 = .data:0x804C44A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia11StateGoHome = .data:0x804C44C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia12StateMoveTop = .data:0x804C44E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia15StateMoveCentre = .data:0x804C450C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia13StateMoveSide = .data:0x804C4530; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateMove = .data:0x804C4554; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateDive = .data:0x804C4578; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia11StateAppear = .data:0x804C459C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateStay = .data:0x804C45C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia10StatePress = .data:0x804C45E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia9StateDead = .data:0x804C4608; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia5State = .data:0x804C462C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Ujia3FSM = .data:0x804C4650; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Ujia14ProperAnimator = .data:0x804C4678; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Ujia5Parms = .data:0x804C46A0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Ujia3Mgr = .data:0x804C46AC; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Ujia3Obj = .data:0x804C4790; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Tobi8StateEat = .data:0x804C4AC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi12StateAttack2 = .data:0x804C4AE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi12StateAttack1 = .data:0x804C4B08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi8StateFly = .data:0x804C4B2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi11StateGoHome = .data:0x804C4B50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi12StateMoveTop = .data:0x804C4B74; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi15StateMoveCentre = .data:0x804C4B98; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi13StateMoveSide = .data:0x804C4BBC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateMove = .data:0x804C4BE0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateDive = .data:0x804C4C04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi11StateAppear = .data:0x804C4C28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateStay = .data:0x804C4C4C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi10StatePress = .data:0x804C4C70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi9StateDead = .data:0x804C4C94; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi5State = .data:0x804C4CB8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Tobi3FSM = .data:0x804C4CDC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tobi14ProperAnimator = .data:0x804C4D00; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Tobi5Parms = .data:0x804C4D28; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Tobi3Mgr = .data:0x804C4D34; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Tobi3Obj = .data:0x804C4E18; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Hiba11StateAttack = .data:0x804C5148; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba9StateWait = .data:0x804C516C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba9StateDead = .data:0x804C5190; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba5State = .data:0x804C51B4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Hiba3FSM = .data:0x804C51D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Hiba14ProperAnimator = .data:0x804C5200; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Hiba5Parms = .data:0x804C5228; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Hiba3Mgr = .data:0x804C5234; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game28EnemyMgrBaseAlwaysMovieActor = .data:0x804C5314; // type:object size:0xE0 scope:weak align:4 +__vt__Q23efx9THibaFire = .data:0x804C53F8; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game4Hiba3Obj = .data:0x804C5414; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7GasHiba11StateAttack = .data:0x804C5740; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba9StateWait = .data:0x804C5764; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba9StateDead = .data:0x804C5788; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba5State = .data:0x804C57AC; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7GasHiba3FSM = .data:0x804C57D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7GasHiba14ProperAnimator = .data:0x804C57F8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7GasHiba5Parms = .data:0x804C5820; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7GasHiba3Mgr = .data:0x804C582C; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx11ArgGasuHiba = .data:0x804C5910; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7GasHiba3Obj = .data:0x804C591C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game8ElecHiba11StateAttack = .data:0x804C5C48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba9StateSign = .data:0x804C5C6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba9StateWait = .data:0x804C5C90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba9StateDead = .data:0x804C5CB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba5State = .data:0x804C5CD8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8ElecHiba3FSM = .data:0x804C5CFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8ElecHiba14ProperAnimator = .data:0x804C5D20; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8ElecHiba3Mgr = .data:0x804C5D48; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8ElecHiba8TeamList = .data:0x804C5E28; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game8ElecHiba5Parms = .data:0x804C5E38; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8ElecHiba9Generator = .data:0x804C5E44; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12ArgDenkiHiba = .data:0x804C5E68; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TDenkiPole = .data:0x804C5E74; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TDenkipoleSign = .data:0x804C5E90; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game8ElecHiba3Obj = .data:0x804C5EDC; // type:object size:0x32C scope:global align:4 +__vt__Q34Game5Sarai13StateFallMeck = .data:0x804C6208; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai13StateCatchFly = .data:0x804C622C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateFail = .data:0x804C6250; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai11StateAttack = .data:0x804C6274; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateMove = .data:0x804C6298; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateWait = .data:0x804C62BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai10StateFlick = .data:0x804C62E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai12StateTakeOff = .data:0x804C6304; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai11StateDamage = .data:0x804C6328; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateFall = .data:0x804C634C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai9StateDead = .data:0x804C6370; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai5State = .data:0x804C6394; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game5Sarai3FSM = .data:0x804C63B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Sarai14ProperAnimator = .data:0x804C63E0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game5Sarai5Parms = .data:0x804C6408; // type:object size:0xC scope:weak align:4 +__vt__Q34Game5Sarai3Mgr = .data:0x804C6414; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game5Sarai3Obj = .data:0x804C64F8; // type:object size:0x33C scope:global align:4 +__vt__Q34Game4Tank10StateFlick = .data:0x804C6838; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank11StateAttack = .data:0x804C685C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank14StateChaseTurn = .data:0x804C6880; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank13StateMoveTurn = .data:0x804C68A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank9StateMove = .data:0x804C68C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank9StateWait = .data:0x804C68EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank9StateDead = .data:0x804C6910; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank5State = .data:0x804C6934; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Tank3FSM = .data:0x804C6958; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tank14ProperAnimator = .data:0x804C6980; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Tank3Mgr = .data:0x804C69A8; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game4Tank3Obj = .data:0x804C6A90; // type:object size:0x358 scope:global align:4 +__vt__Q34Game7Catfish3Mgr = .data:0x804C6DE8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Catfish3Obj = .data:0x804C6EC8; // type:object size:0x338 scope:global align:4 +__vt__Q34Game7Tadpole9StateLeap = .data:0x804C7200; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole11StateEscape = .data:0x804C7224; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole10StateAmaze = .data:0x804C7248; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole9StateMove = .data:0x804C726C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole9StateWait = .data:0x804C7290; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole9StateDead = .data:0x804C72B4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole5State = .data:0x804C72D8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Tadpole3FSM = .data:0x804C72FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Tadpole14ProperAnimator = .data:0x804C7320; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Tadpole5Parms = .data:0x804C7348; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Tadpole3Mgr = .data:0x804C7354; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx8TPkDiveB = .data:0x804C7438; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game7Tadpole3Obj = .data:0x804C744C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7ElecBug11StateReturn = .data:0x804C7778; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug12StateReverse = .data:0x804C779C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug19StateChildDischarge = .data:0x804C77C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug16StateChildCharge = .data:0x804C77E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug14StateDischarge = .data:0x804C7808; // type:object size:0x24 scope:global align:4 +__vt__Q24Game34EnemyIterator = .data:0x804C782C; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game7ElecBug11StateCharge = .data:0x804C7844; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateMove = .data:0x804C7868; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateTurn = .data:0x804C788C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateWait = .data:0x804C78B0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug9StateDead = .data:0x804C78D4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug5State = .data:0x804C78F8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7ElecBug3FSM = .data:0x804C791C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7ElecBug14ProperAnimator = .data:0x804C7940; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7ElecBug5Parms = .data:0x804C7968; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7ElecBug3Mgr = .data:0x804C7974; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx13TDnkmsHoudenB = .data:0x804C7A58; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TDnkmsHoudenA = .data:0x804C7AA4; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7ElecBug3Obj = .data:0x804C7AF0; // type:object size:0x32C scope:global align:4 +__vt__Q34Game5Wtank3Mgr = .data:0x804C7E20; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game4Tank5Parms = .data:0x804C7F04; // type:object size:0xC scope:weak align:4 +__vt__Q23efx29TSyncGroup4 = .data:0x804C7F10; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx4 = .data:0x804C7F2C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TTankWatYodare = .data:0x804C7F48; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TTankWatHit = .data:0x804C7F94; // type:object size:0x40 scope:weak align:4 +__vt__Q34Game5Wtank3Obj = .data:0x804C7FD4; // type:object size:0x358 scope:global align:4 +__vt__Q34Game5Armor5Parms = .data:0x804C8330; // type:object size:0xC scope:weak align:4 +__vt__Q34Game5Armor3Mgr = .data:0x804C833C; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9TYoroiEat = .data:0x804C8420; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TYoroiHd = .data:0x804C8434; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx8TYoroiAp = .data:0x804C8448; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TYoroiAttack = .data:0x804C845C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TYoroiAttackhit = .data:0x804C84A8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game5Armor3Obj = .data:0x804C84BC; // type:object size:0x32C scope:global align:4 +__vt__Q23efx9TFusenSui = .data:0x804C87E8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TFusenAir = .data:0x804C8834; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TFusenAirhit = .data:0x804C8850; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TFusenDead = .data:0x804C886C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game3Mar3Obj = .data:0x804C8888; // type:object size:0x32C scope:global align:4 +__vt__Q34Game3Mar14ProperAnimator = .data:0x804C8BB8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game3Mar3Mgr = .data:0x804C8BE0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game3Mar5Parms = .data:0x804C8CC0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game3Mar16StateGroundFlick = .data:0x804C8CD0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar13StateFlyFlick = .data:0x804C8CF4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar12StateTakeOff = .data:0x804C8D18; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar11StateGround = .data:0x804C8D3C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateLand = .data:0x804C8D60; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateFall = .data:0x804C8D84; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar11StateAttack = .data:0x804C8DA8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar16StateChaseInside = .data:0x804C8DCC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar10StateChase = .data:0x804C8DF0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateMove = .data:0x804C8E14; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateWait = .data:0x804C8E38; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar9StateDead = .data:0x804C8E5C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Mar5State = .data:0x804C8E80; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game3Mar3FSM = .data:0x804C8EA4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kogane5Parms = .data:0x804C8EC8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Wealthy3Mgr = .data:0x804C8ED4; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx11TOoganeKira = .data:0x804C8FB8; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7Wealthy3Obj = .data:0x804C9004; // type:object size:0x350 scope:global align:4 +__vt__Q34Game4Fart3Mgr = .data:0x804C9358; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game4Fart3Obj = .data:0x804C9440; // type:object size:0x350 scope:global align:4 +__vt__Q34Game5Armor9StateFail = .data:0x804C9790; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor10StateFlick = .data:0x804C97B4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor8StateEat = .data:0x804C97D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor12StateAttack2 = .data:0x804C97FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor12StateAttack1 = .data:0x804C9820; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor11StateGoHome = .data:0x804C9844; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor12StateMoveTop = .data:0x804C9868; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor15StateMoveCentre = .data:0x804C988C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor13StateMoveSide = .data:0x804C98B0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateMove = .data:0x804C98D4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateDive = .data:0x804C98F8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor11StateAppear = .data:0x804C991C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateStay = .data:0x804C9940; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor9StateDead = .data:0x804C9964; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor5State = .data:0x804C9988; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game5Armor3FSM = .data:0x804C99AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Armor14ProperAnimator = .data:0x804C99D0; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804C99F8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5Queen9StateBorn = .data:0x804C9A04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen12StateRolling = .data:0x804C9A28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen10StateFlick = .data:0x804C9A4C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen11StateDamage = .data:0x804C9A70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen9StateWait = .data:0x804C9A94; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen10StateSleep = .data:0x804C9AB8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen9StateDead = .data:0x804C9ADC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen5State = .data:0x804C9B00; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game5Queen3FSM = .data:0x804C9B24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game5Queen14ProperAnimator = .data:0x804C9B48; // type:object size:0x28 scope:global align:4 +__vt__Q34Game5Queen3Mgr = .data:0x804C9B70; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game5Queen5Parms = .data:0x804C9C50; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804C9C60; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx34TSyncGroup3 = .data:0x804C9C6C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TChasePosYRot3 = .data:0x804C9C88; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TQueenHanacho = .data:0x804C9CA4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TQueenWakeup = .data:0x804C9CF0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TQueenDead = .data:0x804C9D3C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TQueenFlick = .data:0x804C9D58; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TQueenDamage = .data:0x804C9D74; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TQueenCrashRock = .data:0x804C9DC0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TQueenCrashL = .data:0x804C9E0C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TQueenCrashR = .data:0x804C9E58; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TQueenRoll = .data:0x804C9EA4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TQueenRollCL = .data:0x804C9EC0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TQueenRollCR = .data:0x804C9EDC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TQueenLay = .data:0x804C9EF8; // type:object size:0x4C scope:weak align:4 +__vt__Q24Game31EnemyIterator = .data:0x804C9F44; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game5Queen3Obj = .data:0x804C9F5C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Baby11StateAttack = .data:0x804CA288; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby9StateMove = .data:0x804CA2AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby9StateBorn = .data:0x804CA2D0; // type:object size:0x24 scope:global align:4 +__vt__Q23efx10TBabyBecha = .data:0x804CA2F4; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Baby10StatePress = .data:0x804CA308; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby9StateDead = .data:0x804CA32C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby5State = .data:0x804CA350; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Baby3FSM = .data:0x804CA374; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Baby14ProperAnimator = .data:0x804CA398; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Baby5Parms = .data:0x804CA3C0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game4Baby3Mgr = .data:0x804CA3CC; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9TBabyBorn = .data:0x804CA4B0; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Baby3Obj = .data:0x804CA4FC; // type:object size:0x32C scope:global align:4 +__vt__Q34Game5Demon3Mgr = .data:0x804CA828; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game5Demon3Obj = .data:0x804CA908; // type:object size:0x33C scope:global align:4 +__vt__Q34Game5Queen15QueenShadowNode = .data:0x804CAC48; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10FireChappy3Mgr = .data:0x804CAC58; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx10TYakiSteam = .data:0x804CAD38; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TYakiDeadsmoke = .data:0x804CAD84; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TYakiFlick = .data:0x804CADD0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9THanachoY = .data:0x804CAE1C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TYakiBody = .data:0x804CAE68; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10FireChappy3Obj = .data:0x804CAE84; // type:object size:0x364 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804CB1E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9SnakeCrow13StateStruggle = .data:0x804CB1F4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow8StateEat = .data:0x804CB218; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow11StateAttack = .data:0x804CB23C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow9StateWait = .data:0x804CB260; // type:object size:0x24 scope:global align:4 +__vt__Q23efx14THebiAphd_dive = .data:0x804CB284; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9SnakeCrow14StateDisappear = .data:0x804CB298; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow12StateAppear2 = .data:0x804CB2BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow12StateAppear1 = .data:0x804CB2E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow9StateStay = .data:0x804CB304; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow9StateDead = .data:0x804CB328; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow5State = .data:0x804CB34C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game9SnakeCrow3FSM = .data:0x804CB370; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9SnakeCrow14ProperAnimator = .data:0x804CB398; // type:object size:0x28 scope:global align:4 +__vt__Q34Game9SnakeCrow3Mgr = .data:0x804CB3C0; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9SnakeCrow5Parms = .data:0x804CB4A0; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804CB4B0; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx19THebiDeadHane_ver01 = .data:0x804CB4BC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx22THebiAphd_appear2_late = .data:0x804CB4D0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx23THebiAphd_appear2_first = .data:0x804CB4E4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx17THebiAphd_appear1 = .data:0x804CB4F8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx31TSyncGroup4 = .data:0x804CB50C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TChaseMtxT4 = .data:0x804CB528; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9THebiDead = .data:0x804CB544; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9THebiWait = .data:0x804CB560; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8THebiRot = .data:0x804CB5AC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9SnakeCrow3Obj = .data:0x804CB5F8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game10KumaChappy13StateWalkPath = .data:0x804CB928; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateWalk = .data:0x804CB94C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy13StateTurnPath = .data:0x804CB970; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateTurn = .data:0x804CB994; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy10StateFlick = .data:0x804CB9B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy11StateAttack = .data:0x804CB9DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateLost = .data:0x804CBA00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy12StateRebirth = .data:0x804CBA24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy9StateDead = .data:0x804CBA48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy5State = .data:0x804CBA6C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10KumaChappy3FSM = .data:0x804CBA90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KumaChappy14ProperAnimator = .data:0x804CBAB8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10KumaChappy5Parms = .data:0x804CBAE0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10KumaChappy3Mgr = .data:0x804CBAEC; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game14ChappyRelation = .data:0x804CBBD0; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10KumaChappy3Obj = .data:0x804CBBE0; // type:object size:0x338 scope:global align:4 +__vt__Q34Game7Fuefuki13StateStruggle = .data:0x804CBF18; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki11StateWhisle = .data:0x804CBF3C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateWalk = .data:0x804CBF60; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateTurn = .data:0x804CBF84; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateWait = .data:0x804CBFA8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateJump = .data:0x804CBFCC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateLand = .data:0x804CBFF0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateStay = .data:0x804CC014; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki9StateDead = .data:0x804CC038; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki5State = .data:0x804CC05C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Fuefuki3FSM = .data:0x804CC080; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Fuefuki14ProperAnimator = .data:0x804CC0A8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Fuefuki5Parms = .data:0x804CC0D0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game7Fuefuki3Mgr = .data:0x804CC0DC; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9ArgCursor = .data:0x804CC1C0; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TFuebugOnpa = .data:0x804CC1CC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game7Fuefuki3Obj = .data:0x804CC218; // type:object size:0x32C scope:global align:4 +__vt__Q24Game25InteractFuefukiTimerReset = .data:0x804CC544; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11Koganemushi3Mgr = .data:0x804CC568; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game11Koganemushi3Obj = .data:0x804CC650; // type:object size:0x350 scope:global align:4 +__vt__Q34Game5Ftank3Mgr = .data:0x804CC9A0; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx15TTankFireYodare = .data:0x804CCA88; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TTankFireHit = .data:0x804CCAD4; // type:object size:0x40 scope:weak align:4 +__vt__Q34Game5Ftank3Obj = .data:0x804CCB14; // type:object size:0x358 scope:global align:4 +__vt__Q34Game12Hanachirashi10StateLaugh = .data:0x804CCE70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi16StateGroundFlick = .data:0x804CCE94; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi13StateFlyFlick = .data:0x804CCEB8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi12StateTakeOff = .data:0x804CCEDC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi11StateGround = .data:0x804CCF00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateLand = .data:0x804CCF24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateFall = .data:0x804CCF48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi11StateAttack = .data:0x804CCF6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi16StateChaseInside = .data:0x804CCF90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi10StateChase = .data:0x804CCFB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateMove = .data:0x804CCFD8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateWait = .data:0x804CCFFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi9StateDead = .data:0x804CD020; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi5State = .data:0x804CD044; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game12Hanachirashi3FSM = .data:0x804CD068; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12Hanachirashi14ProperAnimator = .data:0x804CD090; // type:object size:0x28 scope:global align:4 +__vt__Q34Game12Hanachirashi3Mgr = .data:0x804CD0B8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game12Hanachirashi5Parms = .data:0x804CD198; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TFusenhAir = .data:0x804CD1A8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TFusenhAirhit = .data:0x804CD1C4; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game12Hanachirashi3Obj = .data:0x804CD1E0; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804CD510; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8Damagumo9StateWalk = .data:0x804CD51C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo10StateFlick = .data:0x804CD540; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateWait = .data:0x804CD564; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateLand = .data:0x804CD588; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateStay = .data:0x804CD5AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo9StateDead = .data:0x804CD5D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo5State = .data:0x804CD5F4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8Damagumo3FSM = .data:0x804CD618; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Damagumo14ProperAnimator = .data:0x804CD640; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8Damagumo3Mgr = .data:0x804CD668; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Damagumo5Parms = .data:0x804CD748; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804CD758; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx13TDamaDeadBomb = .data:0x804CD764; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDamaWalk = .data:0x804CD778; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDamaWalkw = .data:0x804CD78C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup2 = .data:0x804CD7A0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChasePos2 = .data:0x804CD7BC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx16TDamaDeadHahenC2 = .data:0x804CD7D8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TDamaDeadHahenC1 = .data:0x804CD824; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TDamaSmoke = .data:0x804CD870; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TDamaDeadHahenB = .data:0x804CD8BC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TDamaDeadHahenA = .data:0x804CD908; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TDamaDeadElecB = .data:0x804CD954; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TDamaDeadElecA = .data:0x804CD9A0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TDamaHahen = .data:0x804CD9EC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TDamaFootw = .data:0x804CDA38; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TDamaFoot = .data:0x804CDA84; // type:object size:0x1C scope:weak align:4 +__vt__Q24Game19JointGroundCallBack = .data:0x804CDAA0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game23ConditionNotStickClient = .data:0x804CDAB0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Damagumo3Obj = .data:0x804CDABC; // type:object size:0x32C scope:global align:4 +__vt__Q34Game8Damagumo22DamagumoGroundCallBack = .data:0x804CDDE8; // type:object size:0x10 scope:global align:4 +__vt__Q24Game17TubeShadowSetNode = .data:0x804CDDF8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game19TubeShadowTransNode = .data:0x804CDE08; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game16SphereShadowNode = .data:0x804CDE18; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804CDE28; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6Kurage16StateGroundFlick = .data:0x804CDE34; // type:object size:0x24 scope:global align:4 +__vt__Q23efx15TNewkurageFlick = .data:0x804CDE58; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kurage13StateFlyFlick = .data:0x804CDE6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage11StateGround = .data:0x804CDE90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage12StateTakeOff = .data:0x804CDEB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateLand = .data:0x804CDED8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateFall = .data:0x804CDEFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage11StateAttack = .data:0x804CDF20; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage10StateChase = .data:0x804CDF44; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateMove = .data:0x804CDF68; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateWait = .data:0x804CDF8C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage9StateDead = .data:0x804CDFB0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage5State = .data:0x804CDFD4; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Kurage3FSM = .data:0x804CDFF8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kurage14ProperAnimator = .data:0x804CE020; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Kurage3Mgr = .data:0x804CE048; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Kurage5Parms = .data:0x804CE128; // type:object size:0xC scope:weak align:4 +__vt__Q23efx14TNewkurageBomb = .data:0x804CE138; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx17TNewkurageDeadrun = .data:0x804CE14C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TNewkurageSui = .data:0x804CE198; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TNewkurageKira = .data:0x804CE1B4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TNewkurageHire = .data:0x804CE200; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TNewkurageEye = .data:0x804CE21C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game6Kurage3Obj = .data:0x804CE268; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804CE598; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9BombSarai14StateBombFlick = .data:0x804CE5A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai10StateFlick = .data:0x804CE5C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateTakeOff2 = .data:0x804CE5EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateTakeOff1 = .data:0x804CE610; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateFall = .data:0x804CE634; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai12StateRelease = .data:0x804CE658; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai11StateSupply = .data:0x804CE67C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateBombMove = .data:0x804CE6A0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateMove = .data:0x804CE6C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai13StateBombWait = .data:0x804CE6E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateWait = .data:0x804CE70C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai11StateDamage = .data:0x804CE730; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai9StateDead = .data:0x804CE754; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai5State = .data:0x804CE778; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game9BombSarai3FSM = .data:0x804CE79C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9BombSarai14ProperAnimator = .data:0x804CE7C0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game9BombSarai3Mgr = .data:0x804CE7E8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9BombSarai5Parms = .data:0x804CE8C8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TBsaraiDead = .data:0x804CE8D8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TBsaraiSupli = .data:0x804CE8EC; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9BombSarai3Obj = .data:0x804CE938; // type:object size:0x32C scope:global align:4 +__vt__Q34Game11OtakaraBase13StateBombTurn = .data:0x804CEC68; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateBombMove = .data:0x804CEC8C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateBombWait = .data:0x804CECB0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemDrop = .data:0x804CECD4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase14StateItemFlick = .data:0x804CECF8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemTurn = .data:0x804CED1C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemMove = .data:0x804CED40; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase13StateItemWait = .data:0x804CED64; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateTake = .data:0x804CED88; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateTurn = .data:0x804CEDAC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateMove = .data:0x804CEDD0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateWait = .data:0x804CEDF4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase10StateFlick = .data:0x804CEE18; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase9StateDead = .data:0x804CEE3C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase5State = .data:0x804CEE60; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11OtakaraBase3FSM = .data:0x804CEE84; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11OtakaraBase14ProperAnimator = .data:0x804CEEA8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11OtakaraBase3Mgr = .data:0x804CEED0; // type:object size:0xE4 scope:global align:4 +__vt__Q24Game30ConditionNotStickClientAndItem = .data:0x804CEFB8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11OtakaraBase3Obj = .data:0x804CEFC4; // type:object size:0x354 scope:global align:4 +__vt__Q34Game11FireOtakara3Mgr = .data:0x804CF318; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game11OtakaraBase5Parms = .data:0x804CF3FC; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TOtaFire = .data:0x804CF408; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOtaChargefire = .data:0x804CF41C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11FireOtakara3Obj = .data:0x804CF438; // type:object size:0x354 scope:global align:4 +__vt__Q34Game12WaterOtakara3Mgr = .data:0x804CF790; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx7TOtaWat = .data:0x804CF878; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TOtaChargewat = .data:0x804CF88C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game12WaterOtakara3Obj = .data:0x804CF8A8; // type:object size:0x354 scope:global align:4 +__vt__Q34Game10GasOtakara3Mgr = .data:0x804CFC00; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx7TOtaGas = .data:0x804CFCE8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TOtaChargegas = .data:0x804CFCFC; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10GasOtakara3Obj = .data:0x804CFD18; // type:object size:0x354 scope:global align:4 +__vt__Q34Game11ElecOtakara3Mgr = .data:0x804D0070; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx8TOtaElec = .data:0x804D0158; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOtaChargeelec = .data:0x804D016C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11ElecOtakara3Obj = .data:0x804D0188; // type:object size:0x354 scope:global align:4 +__vt__Q34Game8Imomushi14StateZukanMove = .data:0x804D04E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi16StateZukanAppear = .data:0x804D0504; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi14StateZukanStay = .data:0x804D0528; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateWait = .data:0x804D054C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi11StateAttack = .data:0x804D0570; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi10StateClimb = .data:0x804D0594; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi11StateGoHome = .data:0x804D05B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateMove = .data:0x804D05DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateDive = .data:0x804D0600; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi11StateAppear = .data:0x804D0624; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateStay = .data:0x804D0648; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi13StateFallMove = .data:0x804D066C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi13StateFallDive = .data:0x804D0690; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi9StateDead = .data:0x804D06B4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi5State = .data:0x804D06D8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8Imomushi3FSM = .data:0x804D06FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8Imomushi14ProperAnimator = .data:0x804D0720; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8Imomushi5Parms = .data:0x804D0748; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Imomushi3Mgr = .data:0x804D0754; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx9ArgImoEat = .data:0x804D0838; // type:object size:0xC scope:weak align:4 +__vt__Q34Game8Imomushi3Obj = .data:0x804D0844; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D0B70; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6Houdai9StateShot = .data:0x804D0B7C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateWalk = .data:0x804D0BA0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai10StateFlick = .data:0x804D0BC4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateWait = .data:0x804D0BE8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateLand = .data:0x804D0C0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateStay = .data:0x804D0C30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai9StateDead = .data:0x804D0C54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai5State = .data:0x804D0C78; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Houdai3FSM = .data:0x804D0C9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Houdai14ProperAnimator = .data:0x804D0CC0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Houdai3Mgr = .data:0x804D0CE8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Houdai5Parms = .data:0x804D0DC8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D0DD8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx9ArgPosPos = .data:0x804D0DE4; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10THdamaOpen = .data:0x804D0DF0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14THdamaOnSteam2 = .data:0x804D0E04; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13THdamaOnSmoke = .data:0x804D0E18; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx16THdamaDeadSteamT = .data:0x804D0E2C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TOootaWalk = .data:0x804D0E40; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15THdamaDeadSteam = .data:0x804D0E54; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14THdamaDeadbomb = .data:0x804D0E70; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13THdamaSteamBd = .data:0x804D0E8C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14THdamaOnSteam1 = .data:0x804D0ED8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14THdamaOnHahen1 = .data:0x804D0F24; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11THdamaHahen = .data:0x804D0F70; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13THdamaSteamSt = .data:0x804D0FBC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11THdamaSteam = .data:0x804D1008; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14THdamaOnHahen2 = .data:0x804D1054; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game6Houdai3Obj = .data:0x804D10A0; // type:object size:0x32C scope:global align:4 +__vt__Q34Game6Houdai20HoudaiGroundCallBack = .data:0x804D13CC; // type:object size:0x10 scope:global align:4 +__vt__Q23efx11THdamaShoot = .data:0x804D13E0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THdamaSight = .data:0x804D13F4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10THdamaHit1 = .data:0x804D1440; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10THdamaHit2 = .data:0x804D1454; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10THdamaHit3 = .data:0x804D1468; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx6ArgDir = .data:0x804D147C; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Houdai17HoudaiShotGunNode = .data:0x804D1488; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10LeafChappy3Mgr = .data:0x804D1498; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10LeafChappy3Obj = .data:0x804D1578; // type:object size:0x33C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D18B8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game7BigFoot9StateWalk = .data:0x804D18C4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot10StateFlick = .data:0x804D18E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateWait = .data:0x804D190C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateLand = .data:0x804D1930; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateStay = .data:0x804D1954; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot9StateDead = .data:0x804D1978; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot5State = .data:0x804D199C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7BigFoot3FSM = .data:0x804D19C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7BigFoot14ProperAnimator = .data:0x804D19E8; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7BigFoot3Mgr = .data:0x804D1A10; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7BigFoot5Parms = .data:0x804D1AF0; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D1B00; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx10TOdamaWalk = .data:0x804D1B0C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TOdamaFur1 = .data:0x804D1B20; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx17TOdamaDeadHahenC2 = .data:0x804D1B6C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx17TOdamaDeadHahenC1 = .data:0x804D1BB8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOdamaFur2 = .data:0x804D1C04; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TOdamaDeadHahenB = .data:0x804D1C50; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TOdamaDeadHahenA = .data:0x804D1C9C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TOdamaHahen = .data:0x804D1CE8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOdamaFoot = .data:0x804D1D34; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game7BigFoot3Obj = .data:0x804D1D50; // type:object size:0x32C scope:global align:4 +__vt__Q34Game7BigFoot21BigFootGroundCallBack = .data:0x804D207C; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D2090; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10SnakeWhole13StateStruggle = .data:0x804D209C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole8StateEat = .data:0x804D20C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole11StateAttack = .data:0x804D20E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateHome = .data:0x804D2108; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateWalk = .data:0x804D212C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateWait = .data:0x804D2150; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole14StateDisappear = .data:0x804D2174; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole12StateAppear2 = .data:0x804D2198; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole12StateAppear1 = .data:0x804D21BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateStay = .data:0x804D21E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole9StateDead = .data:0x804D2204; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole5State = .data:0x804D2228; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10SnakeWhole3FSM = .data:0x804D224C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10SnakeWhole14ProperAnimator = .data:0x804D2270; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10SnakeWhole3Mgr = .data:0x804D2298; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10SnakeWhole5Parms = .data:0x804D2378; // type:object size:0xC scope:weak align:4 +__vt__Q23efx15TCphebiDeadHane = .data:0x804D2388; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TCphebiDead = .data:0x804D239C; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10SnakeWhole3Obj = .data:0x804D23B8; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D26E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game9OniKurage16StateGroundFlick = .data:0x804D26F4; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12TKurageFlick = .data:0x804D2718; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game9OniKurage13StateFlyFlick = .data:0x804D272C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage11StateGround = .data:0x804D2750; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage12StateTakeOff = .data:0x804D2774; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateLand = .data:0x804D2798; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateDrop = .data:0x804D27BC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateFall = .data:0x804D27E0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage11StateAttack = .data:0x804D2804; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage10StateChase = .data:0x804D2828; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateMove = .data:0x804D284C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateWait = .data:0x804D2870; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage9StateDead = .data:0x804D2894; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage5State = .data:0x804D28B8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game9OniKurage3FSM = .data:0x804D28DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game9OniKurage14ProperAnimator = .data:0x804D2900; // type:object size:0x28 scope:global align:4 +__vt__Q34Game9OniKurage3Mgr = .data:0x804D2928; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9OniKurage5Parms = .data:0x804D2A08; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D2A18; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx11TKurageBomb = .data:0x804D2A24; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TKurageDeadrun = .data:0x804D2A38; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKurageGepu = .data:0x804D2A84; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TKurageSui = .data:0x804D2AD0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TKurageKira = .data:0x804D2AEC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKurageHire = .data:0x804D2B38; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TKurageEye = .data:0x804D2B54; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9OniKurage3Obj = .data:0x804D2BA0; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D2ED0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game11BigTreasure13StateItemWalk = .data:0x804D2EDC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateWalk = .data:0x804D2F00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure13StateDropItem = .data:0x804D2F24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure12StatePutItem = .data:0x804D2F48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure11StateAttack = .data:0x804D2F6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure14StatePreAttack = .data:0x804D2F90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure10StateFlick = .data:0x804D2FB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure13StateItemWait = .data:0x804D2FD8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateWait = .data:0x804D2FFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateLand = .data:0x804D3020; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateStay = .data:0x804D3044; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure9StateDead = .data:0x804D3068; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure5State = .data:0x804D308C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11BigTreasure3FSM = .data:0x804D30B0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11BigTreasure3Mgr = .data:0x804D30D8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11BigTreasure5Parms = .data:0x804D31B8; // type:object size:0xC scope:weak align:4 +__vt__Q24Game17TubeShadowPosNode = .data:0x804D31C8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D31D8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx14TOootaBombBody = .data:0x804D31E4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx16TOootaStartSmoke = .data:0x804D31F8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TOootaPartsoff = .data:0x804D320C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx44TSyncGroup3 = .data:0x804D3220; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx24TChasePosPosLocalYScale3 = .data:0x804D323C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TOootaParticle = .data:0x804D3258; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TOootaChangeBody = .data:0x804D32A4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TOootaDeadAwa = .data:0x804D32F0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TOootaDeadBody = .data:0x804D333C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx15TOootaStartBody = .data:0x804D3358; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TOootaChangeLeg = .data:0x804D33A4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TOootaDeadLeg = .data:0x804D33F0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx14TOootaStartLeg = .data:0x804D340C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TOootaStartOta = .data:0x804D3458; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOootaFoot = .data:0x804D34A4; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11BigTreasure3Obj = .data:0x804D34C0; // type:object size:0x32C scope:global align:4 +__vt__Q34Game11BigTreasure14ProperAnimator = .data:0x804D37EC; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game11BigTreasure25BigTreasureGroundCallBack = .data:0x804D3814; // type:object size:0x10 scope:global align:4 +__vt__Q34Game6Kabuto13StateFixFlick = .data:0x804D3828; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto14StateFixAttack = .data:0x804D384C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto12StateFixTurn = .data:0x804D3870; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto12StateFixWait = .data:0x804D3894; // type:object size:0x24 scope:global align:4 +__vt__Q23efx22THebiAphd_kkabuto_dive = .data:0x804D38B8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kabuto12StateFixHide = .data:0x804D38CC; // type:object size:0x24 scope:global align:4 +__vt__Q23efx24THebiAphd_kkabuto_appear = .data:0x804D38F0; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kabuto14StateFixAppear = .data:0x804D3904; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto12StateFixStay = .data:0x804D3928; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto11StateAttack = .data:0x804D394C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto10StateFlick = .data:0x804D3970; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateMove = .data:0x804D3994; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateTurn = .data:0x804D39B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateWait = .data:0x804D39DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto9StateDead = .data:0x804D3A00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto5State = .data:0x804D3A24; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Kabuto3FSM = .data:0x804D3A48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Kabuto14ProperAnimator = .data:0x804D3A70; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Kabuto3Mgr = .data:0x804D3A98; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx13TKabutoAttack = .data:0x804D3B80; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Kabuto3Obj = .data:0x804D3B94; // type:object size:0x34C scope:global align:4 +__vt__Q34Game12KumaKochappy13StateWalkPath = .data:0x804D3EE0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy9StateWalk = .data:0x804D3F04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy10StateFlick = .data:0x804D3F28; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy11StateAttack = .data:0x804D3F4C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy9StateWait = .data:0x804D3F70; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy10StatePress = .data:0x804D3F94; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy9StateDead = .data:0x804D3FB8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy5State = .data:0x804D3FDC; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game12KumaKochappy3FSM = .data:0x804D4000; // type:object size:0x24 scope:global align:4 +__vt__Q34Game12KumaKochappy14ProperAnimator = .data:0x804D4028; // type:object size:0x28 scope:global align:4 +__vt__Q34Game12KumaKochappy5Parms = .data:0x804D4050; // type:object size:0xC scope:weak align:4 +__vt__Q34Game12KumaKochappy3Mgr = .data:0x804D405C; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game38EnemyIterator = .data:0x804D4140; // type:object size:0x18 scope:weak align:4 +__vt__Q34Game12KumaKochappy3Obj = .data:0x804D4158; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D4488; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10MiniHoudai13StateWalkPath = .data:0x804D4494; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai13StateWalkHome = .data:0x804D44B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateWalk = .data:0x804D44DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai13StateTurnPath = .data:0x804D4500; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai13StateTurnHome = .data:0x804D4524; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateTurn = .data:0x804D4548; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai10StateFlick = .data:0x804D456C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai11StateAttack = .data:0x804D4590; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateLost = .data:0x804D45B4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai12StateRebirth = .data:0x804D45D8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai9StateDead = .data:0x804D45FC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai5State = .data:0x804D4620; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10MiniHoudai3FSM = .data:0x804D4644; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10MiniHoudai14ProperAnimator = .data:0x804D4668; // type:object size:0x28 scope:global align:4 +__vt__Q34Game10MiniHoudai3Mgr = .data:0x804D4690; // type:object size:0xE0 scope:global align:4 +__vt__Q23efx12TChibiDeadSe = .data:0x804D4770; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TChibiDeadMouth = .data:0x804D4784; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11TChibiShoot = .data:0x804D4798; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TChibiSmokeL = .data:0x804D47AC; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TChibiSmokeS = .data:0x804D47C0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TChibiDeadLight = .data:0x804D47D4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx12TChibiCharge = .data:0x804D4820; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10MiniHoudai3Obj = .data:0x804D486C; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D4B98; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx11TChibiShell = .data:0x804D4BA4; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10MiniHoudai21MiniHoudaiShotGunNode = .data:0x804D4BF0; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game7Sokkuri10StateFlick = .data:0x804D4C00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri14StateMoveWater = .data:0x804D4C24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri15StateMoveGround = .data:0x804D4C48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri9StateWait = .data:0x804D4C6C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri14StateDisappear = .data:0x804D4C90; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri11StateAppear = .data:0x804D4CB4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri9StateStay = .data:0x804D4CD8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri10StatePress = .data:0x804D4CFC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri9StateDead = .data:0x804D4D20; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri5State = .data:0x804D4D44; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game7Sokkuri3FSM = .data:0x804D4D68; // type:object size:0x24 scope:global align:4 +__vt__Q34Game7Sokkuri14ProperAnimator = .data:0x804D4D90; // type:object size:0x28 scope:global align:4 +__vt__Q34Game7Sokkuri3Mgr = .data:0x804D4DB8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Sokkuri5Parms = .data:0x804D4E98; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TJgmBubble = .data:0x804D4EA8; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game7Sokkuri3Obj = .data:0x804D4EBC; // type:object size:0x32C scope:global align:4 +__vt__Q24Game24UmimushiSphereShadowNode = .data:0x804D51E8; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game22UmimushiTubeShadowNode = .data:0x804D51F8; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game4Hana3Mgr = .data:0x804D5208; // type:object size:0xE0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D52E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game21ConditionNotStickSlot = .data:0x804D52F4; // type:object size:0xC scope:weak align:4 +__vt__Q23efx9THanaMiss = .data:0x804D5300; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Hana3Obj = .data:0x804D5314; // type:object size:0x364 scope:global align:4 +__vt__Q23efx12TOootaWbShot = .data:0x804D5678; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup6 = .data:0x804D568C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChaseMtx6 = .data:0x804D56A8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TOootaElecAttack2 = .data:0x804D56C4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx17TOootaElecAttack1 = .data:0x804D56E0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx13TOootaElecLeg = .data:0x804D572C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TOootaGas = .data:0x804D5778; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TOootaPdead = .data:0x804D5794; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx44TSyncGroup3 = .data:0x804D57A8; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx24TChasePosPosLocalZScale3 = .data:0x804D57C4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TOootaPhouden = .data:0x804D57E0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx15TOootaElecparts = .data:0x804D57FC; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TOootaElec = .data:0x804D5848; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11BigTreasure21BigTreasureElecAttack = .data:0x804D5864; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx11TOootaWbHit = .data:0x804D5874; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx29TSyncGroup4 = .data:0x804D5888; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TChasePos4 = .data:0x804D58A4; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TOootaWbomb = .data:0x804D58C0; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game11BigTreasure22BigTreasureWaterAttack = .data:0x804D58DC; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BigTreasure20BigTreasureGasAttack = .data:0x804D58EC; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BigTreasure21BigTreasureFireAttack = .data:0x804D58FC; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BigTreasure16AttackShadowNode = .data:0x804D590C; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game25SnakeCrowSphereShadowNode = .data:0x804D5920; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game23SnakeCrowTubeShadowNode = .data:0x804D5930; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game26SnakeWholeSphereShadowNode = .data:0x804D5940; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game24SnakeWholeTubeShadowNode = .data:0x804D5950; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11BombOtakara3Mgr = .data:0x804D5960; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game11BombOtakara3Obj = .data:0x804D5A48; // type:object size:0x354 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D5DA0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10DangoMushi10StateFlick = .data:0x804D5DAC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi12StateRecover = .data:0x804D5DD0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateTurn = .data:0x804D5DF4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi11StateAttack = .data:0x804D5E18; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateMove = .data:0x804D5E3C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateWait = .data:0x804D5E60; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi11StateAppear = .data:0x804D5E84; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateStay = .data:0x804D5EA8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi9StateDead = .data:0x804D5ECC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi5State = .data:0x804D5EF0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10DangoMushi3FSM = .data:0x804D5F14; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10DangoMushi3Mgr = .data:0x804D5F38; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10DangoMushi5Parms = .data:0x804D6018; // type:object size:0xC scope:weak align:4 +__vt__Q23efx9TDangoFly = .data:0x804D6028; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TDangoDamage = .data:0x804D603C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TDangoDead = .data:0x804D6050; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TDangoDeadSmoke = .data:0x804D6064; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TDangoRun = .data:0x804D6078; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TDangoAttack2 = .data:0x804D6094; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx15TDangoWallBreak = .data:0x804D60E0; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game10DangoMushi3Obj = .data:0x804D612C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game10DangoMushi14ProperAnimator = .data:0x804D6458; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game11GreenKabuto3Mgr = .data:0x804D6480; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game6Kabuto5Parms = .data:0x804D6564; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11GreenKabuto3Obj = .data:0x804D6570; // type:object size:0x34C scope:global align:4 +__vt__Q34Game9RedKabuto3Mgr = .data:0x804D68C0; // type:object size:0xE4 scope:global align:4 +__vt__Q34Game9RedKabuto3Obj = .data:0x804D69A8; // type:object size:0x34C scope:global align:4 +__vt__Q34Game9FixKabuto3Mgr = .data:0x804D6CF8; // type:object size:0xE4 scope:global align:4 +__vt__Q23efx12TKkabutoWait = .data:0x804D6DE0; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKkabutoRot = .data:0x804D6E2C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game9FixKabuto3Obj = .data:0x804D6E78; // type:object size:0x34C scope:global align:4 +__vt__Q34Game14NormMiniHoudai3Obj = .data:0x804D71C8; // type:object size:0x32C scope:weak align:4 +__vt__Q34Game10MiniHoudai5Parms = .data:0x804D74F4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game14NormMiniHoudai3Mgr = .data:0x804D7500; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game13FixMiniHoudai3Obj = .data:0x804D75E0; // type:object size:0x32C scope:weak align:4 +__vt__Q34Game13FixMiniHoudai3Mgr = .data:0x804D790C; // type:object size:0xE0 scope:global align:4 +__vt__Q24Game18TyreTubeShadowNode = .data:0x804D79F0; // type:object size:0x10 scope:weak align:4 +PikiIconTextureName__Q22og6Screen = .data:0x804D7A00; // type:object size:0x4C scope:global align:4 data:4byte +__vt__Q29P2DScreen4Node = .data:0x804D7A4C; // type:object size:0x1C scope:weak align:4 +__vt__Q25efx2d11T2DSprayset = .data:0x804D7A68; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d12T2DExtractUp = .data:0x804D7A80; // type:object size:0x18 scope:weak align:4 +__vt__Q32og6Screen12DopingScreen = .data:0x804D7A98; // type:object size:0xA0 scope:global align:4 +__vt__Q32og6Screen24PikminCounterChallenge1P = .data:0x804D7B38; // type:object size:0xA4 scope:global align:4 +__vt__Q32og6Screen17PikminCounterCave = .data:0x804D7BDC; // type:object size:0xA4 scope:global align:4 +__vt__Q32og6Screen13PikminCounter = .data:0x804D7C80; // type:object size:0xA4 scope:global align:4 +__vt__Q32og6Screen8AnimPane = .data:0x804D7D28; // type:object size:0x10 scope:global align:4 +__vt__Q32og6Screen10AnimScreen = .data:0x804D7D38; // type:object size:0x10 scope:global align:4 +__vt__Q32og6Screen12AnimBaseBase = .data:0x804D7D48; // type:object size:0x10 scope:weak align:4 +SujiTex32__Q22og6Screen = .data:0x804D7D58; // type:object size:0x2C scope:global align:4 +SujiTexMap__Q22og6Screen = .data:0x804D7D84; // type:object size:0x2C scope:global align:4 +__vt__Q32og6Screen13NaviLifeGauge = .data:0x804D7DB0; // type:object size:0xA0 scope:global align:4 +__vt__Q32og6Screen18CallBack_LifeGauge = .data:0x804D7E50; // type:object size:0x1C scope:global align:4 +__vt__Q29P2DScreen12CallBackNode = .data:0x804D7E6C; // type:object size:0x1C scope:weak align:4 +__vt__Q32og6Screen8SunMeter = .data:0x804D7E88; // type:object size:0xA0 scope:weak align:4 +__vt__Q32og6Screen17CallBack_SunMeter = .data:0x804D7F28; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen18CallBack_CatchPiki = .data:0x804D7F48; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen14ContenaCounter = .data:0x804D7F68; // type:object size:0xA0 scope:weak align:4 +__vt__Q32og6Screen10MapCounter = .data:0x804D8008; // type:object size:0xA0 scope:weak align:4 +__vt__Q32og6Screen15AnimText_Screen = .data:0x804D80A8; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen16CallBack_Message = .data:0x804D80C8; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen15CallBack_Screen = .data:0x804D80E8; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen18CallBack_CounterRV = .data:0x804D8108; // type:object size:0x30 scope:global align:4 +__vt__Q32og6Screen19CallBack_CounterDay = .data:0x804D8138; // type:object size:0x30 scope:global align:4 +__vt__Q32og6Screen15DispMemberDummy = .data:0x804D8168; // type:object size:0x18 scope:weak align:4 +__vt__Q26Screen8IObjBase = .data:0x804D8180; // type:object size:0x44 scope:weak align:4 +__vt__Q32og9newScreen6Ground = .data:0x804D81C8; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8218; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen9ObjGround = .data:0x804D8224; // type:object size:0x78 scope:global align:4 +__vt__8Graphics = .data:0x804D82A0; // type:object size:0x24 scope:weak align:4 +__vt__Q22og5Lib2D = .data:0x804D82C8; // type:object size:0xC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D82D8; // type:object size:0xC scope:local align:4 data:float +map_icon_tag__Q22og9newScreen = .data:0x804D82E8; // type:object size:0xB0 scope:global align:8 data:4byte +__vt__Q26Screen11SetSceneArg = .data:0x804D8398; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen12SceneArgBase = .data:0x804D83A8; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen11ObjSMenuMap = .data:0x804D83B8; // type:object size:0xA8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8460; // type:object size:0xC scope:local align:4 data:float +@3897 = .data:0x804D846C; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen8SMenuMap = .data:0x804D84DC; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen14SceneSMenuBase = .data:0x804D852C; // type:object size:0x50 scope:weak align:4 +EquipItemList__Q24Game5Equip = .data:0x804D8580; // type:object size:0x30 scope:global align:4 data:4byte +ItemMsgID_List__Q22og9newScreen = .data:0x804D85B0; // type:object size:0x60 scope:global align:8 data:4byte +__vt__Q32og9newScreen12ObjSMenuItem = .data:0x804D8610; // type:object size:0xA8 scope:global align:4 +@3552 = .data:0x804D86B8; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen9SMenuItem = .data:0x804D8728; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8778; // type:object size:0xC scope:local align:4 data:float +@3693 = .data:0x804D8784; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen10SMenuPause = .data:0x804D87F4; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen13ObjSMenuPause = .data:0x804D8848; // type:object size:0xA8 scope:global align:4 +__vt__Q32og9newScreen12ObjSMenuBase = .data:0x804D88F0; // type:object size:0xA8 scope:global align:4 +__vt__Q32og9newScreen18StartSceneArgSMenu = .data:0x804D8998; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen58StartSceneArgTemplate = .data:0x804D89A8; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen13StartSceneArg = .data:0x804D89B8; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen13ObjCourseName = .data:0x804D89C8; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8A40; // type:object size:0xC scope:local align:4 data:float +@3131 = .data:0x804D8A4C; // type:object size:0x1C scope:local align:4 +CourseNumToSZS__Q22og9newScreen = .data:0x804D8A68; // type:object size:0x10 scope:global align:4 +bloFileNameCourse__Q22og9newScreen = .data:0x804D8A78; // type:object size:0x10 scope:global align:4 +animFile_Course00__Q22og9newScreen = .data:0x804D8A88; // type:object size:0x10 scope:global align:4 +animFile_Course01__Q22og9newScreen = .data:0x804D8A98; // type:object size:0x10 scope:global align:4 +animFile_Course02__Q22og9newScreen = .data:0x804D8AA8; // type:object size:0x10 scope:global align:4 +animFile_Course03__Q22og9newScreen = .data:0x804D8AB8; // type:object size:0x10 scope:global align:4 +animFileTableCourse__Q22og9newScreen = .data:0x804D8AC8; // type:object size:0x10 scope:global align:4 +__vt__Q32og9newScreen10CourseName = .data:0x804D8AD8; // type:object size:0x50 scope:global align:4 +@3999 = .data:0x804D8B28; // type:object size:0x24 scope:local align:4 +__vt__Q25efx2d12T2DOtakantei = .data:0x804D8B4C; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9TForever5 = .data:0x804D8B64; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen9ObjKantei = .data:0x804D8B7C; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen10KanteiDemo = .data:0x804D8BF8; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen14ObjSpecialItem = .data:0x804D8C48; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen11SpecialItem = .data:0x804D8CC0; // type:object size:0x50 scope:global align:4 +vsRuleMsgId__Q22og9newScreen = .data:0x804D8D10; // type:object size:0x30 scope:global align:8 +__vt__Q32og9newScreen8ObjFloor = .data:0x804D8D40; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen5Floor = .data:0x804D8DB8; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D8E08; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen7ObjCave = .data:0x804D8E14; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen4Cave = .data:0x804D8E90; // type:object size:0x50 scope:global align:4 +CaveTitleMsg__Q22og9newScreen = .data:0x804D8EE0; // type:object size:0x438 scope:local align:8 data:4byte +@4303 = .data:0x804D9318; // type:object size:0x1C scope:local align:4 +__vt__Q32og9newScreen10ObjAnaDemo = .data:0x804D9334; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen7AnaDemo = .data:0x804D93B0; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen14ObjChallenge2P = .data:0x804D9400; // type:object size:0x7C scope:global align:4 +__vt__Q32og9newScreen11Challenge2P = .data:0x804D9480; // type:object size:0x54 scope:global align:4 +__vt__Q32og9newScreen10ObjContena = .data:0x804D94D8; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen7Contena = .data:0x804D9550; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen20ObjSMenuPauseDoukutu = .data:0x804D95A0; // type:object size:0xA8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D9648; // type:object size:0xC scope:local align:4 data:float +@3705 = .data:0x804D9654; // type:object size:0x70 scope:local align:4 +__vt__Q32og9newScreen17SMenuPauseDoukutu = .data:0x804D96C4; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen10ObjUfoMenu = .data:0x804D9718; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen7UfoMenu = .data:0x804D9790; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen7ObjSave = .data:0x804D97E0; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen4Save = .data:0x804D9858; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen11ObjFinalMsg = .data:0x804D98A8; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen8FinalMsg = .data:0x804D9920; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d8ArgScale = .data:0x804D9970; // type:object size:0xC scope:weak align:4 +__vt__Q32og9newScreen5ObjVs = .data:0x804D997C; // type:object size:0x78 scope:global align:4 +__vt__Q32og9newScreen2Vs = .data:0x804D99F8; // type:object size:0x50 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D9A48; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen14ObjChallenge1P = .data:0x804D9A54; // type:object size:0x7C scope:global align:4 +__vt__Q32og9newScreen11Challenge1P = .data:0x804D9AD0; // type:object size:0x54 scope:global align:4 +__vt__Q32og9newScreen15ObjSMenuPauseVS = .data:0x804D9B28; // type:object size:0xB8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D9BE0; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen12SMenuPauseVS = .data:0x804D9BEC; // type:object size:0x50 scope:global align:4 +__vt__Q32og6Screen15CallBack_Furiko = .data:0x804D9C40; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen20CallBack_CounterSlot = .data:0x804D9C60; // type:object size:0x30 scope:global align:4 +__vt__Q32og9newScreen22ObjWorldMapInfoWindow0 = .data:0x804D9C90; // type:object size:0xB8 scope:global align:4 +__vt__Q32og6Screen26DispMemberWorldMapInfoWin0 = .data:0x804D9D48; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D9D60; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen19WorldMapInfoWindow0 = .data:0x804D9D6C; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen22ObjWorldMapInfoWindow1 = .data:0x804D9DC0; // type:object size:0xB8 scope:global align:4 +__vt__Q32og6Screen26DispMemberWorldMapInfoWin1 = .data:0x804D9E78; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804D9E90; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen19WorldMapInfoWindow1 = .data:0x804D9E9C; // type:object size:0x50 scope:global align:4 +__vt__Q32og6Screen15TotalPokoScreen = .data:0x804D9EF0; // type:object size:0xA4 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804D9F98; // type:object size:0xC scope:local align:4 data:float +__vt__Q32og9newScreen16ObjChallengeBase = .data:0x804D9FA4; // type:object size:0x7C scope:global align:4 +__vt__Q32og9newScreen13ChallengeBase = .data:0x804DA020; // type:object size:0x54 scope:weak align:4 +__vt__Q32og6Screen16CallBack_Picture = .data:0x804DA078; // type:object size:0x1C scope:global align:4 +__vt__Q32og6Screen18CallBack_DrawAfter = .data:0x804DA098; // type:object size:0x1C scope:global align:4 +__vt__Q25efx2d12T2DSensorAct = .data:0x804DA0B8; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d13T2DSensorComp = .data:0x804DA0D0; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d12T2DSensorGet = .data:0x804DA0E8; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen13TitleMsgClash = .data:0x804DA100; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d11T2DCvnameVs = .data:0x804DA118; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9TForever2 = .data:0x804DA130; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen12TitleMsgWave = .data:0x804DA148; // type:object size:0x1C scope:global align:4 +__vt__Q25efx2d13T2DCvnameChal = .data:0x804DA164; // type:object size:0x38 scope:weak align:4 +__vt__Q32og9newScreen12TitleMsgDrop = .data:0x804DA19C; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d13T2DCvnameCave = .data:0x804DA1B4; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9TForever3 = .data:0x804DA1CC; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen8TitleMsg = .data:0x804DA1E4; // type:object size:0x18 scope:weak align:4 +__vt__Q32og9newScreen20TitleMessageAnalyzer = .data:0x804DA1FC; // type:object size:0x68 scope:global align:4 +@3552 = .data:0x804DA268; // type:object size:0x60 scope:local align:4 +__vt__Q32og9newScreen9SMenuCont = .data:0x804DA2C8; // type:object size:0x50 scope:global align:4 +__vt__Q32og9newScreen12ObjSMenuCont = .data:0x804DA318; // type:object size:0xA8 scope:global align:4 +__vt__Q28PSSystem6SeqMgr = .data:0x804DA3C0; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem10JumpBgmSeq = .data:0x804DA3CC; // type:object size:0x64 scope:global align:4 +__vt__Q28PSSystem20TriangleTableModTask = .data:0x804DA430; // type:object size:0x18 scope:weak align:4 +__vt__Q28PSSystem14PitchResetTask = .data:0x804DA448; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12FlagWaitTask = .data:0x804DA454; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem8TaskBase = .data:0x804DA460; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12BankRandTask = .data:0x804DA46C; // type:object size:0x14 scope:weak align:4 +__vt__Q28PSSystem20SeqTrackRoot_JumpBgm = .data:0x804DA480; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem11DirectedBgm = .data:0x804DA49C; // type:object size:0x4C scope:global align:4 +__vt__Q28PSSystem5SeSeq = .data:0x804DA4E8; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem9StreamBgm = .data:0x804DA52C; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem6BgmSeq = .data:0x804DA570; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem7SeqBase = .data:0x804DA5B4; // type:object size:0x44 scope:global align:4 +__vt__Q28PSSystem10Reservator = .data:0x804DA5F8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem21SeqPauseOffReservator = .data:0x804DA604; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem17SeqPlayReservator = .data:0x804DA610; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem7SeqHeap = .data:0x804DA61C; // type:object size:0x10 scope:global align:4 +__vt__Q28PSSystem11StreamSound = .data:0x804DA62C; // type:object size:0xE8 scope:global align:4 +__vt__Q28PSSystem8SeqSound = .data:0x804DA714; // type:object size:0xE8 scope:global align:4 +__vt__Q28PSSystem12SeqSoundBase = .data:0x804DA7FC; // type:object size:0x10 scope:global align:4 +__vt__Q28PSSystem14StreamDataList = .data:0x804DA80C; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem42SingletonBase = .data:0x804DA828; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem11SeqDataList = .data:0x804DA834; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem39SingletonBase = .data:0x804DA850; // type:object size:0xC scope:weak align:4 +@4254 = .data:0x804DA860; // type:object size:0x54 scope:local align:4 +@4253 = .data:0x804DA8B4; // type:object size:0x54 scope:local align:4 +__vt__Q26PSGame11PikSceneMgr = .data:0x804DA908; // type:object size:0x28 scope:global align:4 +__vt__Q26PSGame8PikScene = .data:0x804DA930; // type:object size:0x28 scope:global align:4 +__vt__Q26PSGame9SceneInfo = .data:0x804DA958; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem24ArcMgr = .data:0x804DA964; // type:object size:0xC scope:weak align:4 +__vt__Q29PSAutoBgm15ConductorArcMgr = .data:0x804DA970; // type:object size:0xC scope:weak align:4 +__vt__Q26PSGame10SysFactory = .data:0x804DA97C; // type:object size:0xC scope:weak align:4 +__vt__Q26PSGame9CameraMgr = .data:0x804DA988; // type:object size:0xC scope:global align:4 +__vt__Q36PSGame10SoundTable11CategoryMgr = .data:0x804DA994; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem49SingletonBase = .data:0x804DA9A0; // type:object size:0xC scope:weak align:4 +__vt__Q26PSGame13ConductorList = .data:0x804DA9AC; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem39SingletonBase = .data:0x804DA9C8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12TextDataBase = .data:0x804DA9D8; // type:object size:0x10 scope:global align:4 +__vt__Q28PSSystem5SysIF = .data:0x804DA9E8; // type:object size:0x2C scope:weak align:4 +__vt__Q29PSAutoBgm7AutoBgm = .data:0x804DAA18; // type:object size:0x4C scope:global align:4 +__vt__Q29PSAutoBgm19AutoBgmSeqTrackRoot = .data:0x804DAA64; // type:object size:0x1C scope:weak align:4 +__vt__Q29PSAutoBgm10MeloArrMgr = .data:0x804DAA80; // type:object size:0xC scope:weak align:4 +__vt__Q29PSAutoBgm12ConductorMgr = .data:0x804DAA8C; // type:object size:0x40 scope:weak align:4 +__vt__Q210JADUtility59PrmDataMgrNode = .data:0x804DAACC; // type:object size:0x3C scope:weak align:4 +__vt__Q29PSAutoBgm8OffCycle = .data:0x804DAB08; // type:object size:0x14 scope:weak align:4 +__vt__Q29PSAutoBgm7OnCycle = .data:0x804DAB1C; // type:object size:0x14 scope:global align:4 +__vt__Q29PSAutoBgm9CycleBase = .data:0x804DAB30; // type:object size:0x14 scope:global align:4 +__vt__Q29PSAutoBgm6Module = .data:0x804DAB44; // type:object size:0x24 scope:global align:4 +__vt__Q29PSAutoBgm5Track = .data:0x804DAB68; // type:object size:0x28 scope:global align:4 +__vt__Q210JADUtility29PrmSetRc = .data:0x804DAB90; // type:object size:0x28 scope:weak align:4 +__vt__Q210JADUtility10StrEditBox = .data:0x804DABB8; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility12PrmSlider = .data:0x804DABCC; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility9PrmHio = .data:0x804DABE0; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility6Prm = .data:0x804DABF4; // type:object size:0x14 scope:weak align:4 +__vt__Q29PSAutoBgm9Conductor = .data:0x804DAC08; // type:object size:0x28 scope:global align:4 +__vt__Q210JADUtility28PrmSetRc = .data:0x804DAC30; // type:object size:0x28 scope:weak align:4 +__vt__Q210JADUtility18PrmRadioButton = .data:0x804DAC58; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility13PrmSlider = .data:0x804DAC6C; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility10PrmHio = .data:0x804DAC80; // type:object size:0x14 scope:weak align:4 +__vt__Q210JADUtility7Prm = .data:0x804DAC94; // type:object size:0x14 scope:weak align:4 +__vt__Q38PSSystem9WaveScene8WaveArea = .data:0x804DACA8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem7BankMgr = .data:0x804DACB4; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem14SimpleWaitTask = .data:0x804DACC0; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem14OuterParamTask = .data:0x804DACCC; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem12PitchModTask = .data:0x804DACE0; // type:object size:0x18 scope:global align:4 +__vt__Q28PSSystem21ModParamWithTableTask = .data:0x804DACF8; // type:object size:0x18 scope:global align:4 +__vt__Q28PSSystem16ModParamWithFade = .data:0x804DAD10; // type:object size:0x14 scope:global align:4 +__vt__Q29PSAutoBgm11MeloArrBase = .data:0x804DAD28; // type:object size:0x2C scope:weak align:4 +__vt__Q29PSAutoBgm19MeloArr_RandomAvoid = .data:0x804DAD54; // type:object size:0x2C scope:global align:4 +__vt__Q26PSGame25Builder_EvnSe_Perspective = .data:0x804DAD80; // type:object size:0x14 scope:global align:4 +__vt__Q26PSGame13EnvSe_AutoPan = .data:0x804DAD94; // type:object size:0x18 scope:global align:4 +__vt__Q26PSGame17EnvSe_Perspective = .data:0x804DADAC; // type:object size:0x18 scope:global align:4 +__vt__Q26PSGame9EnvSe_Pan = .data:0x804DADC4; // type:object size:0x18 scope:global align:4 +__vt__Q26PSGame5Rappa = .data:0x804DADDC; // type:object size:0xC scope:global align:4 +__vt__Q26PSGame5SeMgr = .data:0x804DADE8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem30SingletonBase = .data:0x804DADF4; // type:object size:0xC scope:weak align:4 +__vt__Q38PSSystem9ClusterSe7Factory = .data:0x804DAE00; // type:object size:0x10 scope:global align:4 +__vt__Q38PSSystem9ClusterSe4Part = .data:0x804DAE10; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem24EnvSe_PauseOffReservator = .data:0x804DAE1C; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem9EnvSeBase = .data:0x804DAE28; // type:object size:0x18 scope:global align:4 +__vt__Q28PSSystem5Scene = .data:0x804DAE40; // type:object size:0x28 scope:global align:4 +__vt__Q28PSSystem10WaveLoader = .data:0x804DAE68; // type:object size:0xC scope:global align:4 +__vt__Q28PSSystem9WaveScene = .data:0x804DAE74; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem13SeqTrackChild = .data:0x804DAE80; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem10IdMaskTask = .data:0x804DAE94; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem8MuteTask = .data:0x804DAEA0; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem12SeqTrackRoot = .data:0x804DAEAC; // type:object size:0x1C scope:global align:4 +__vt__Q28PSSystem12SeqTrackBase = .data:0x804DAEC8; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem17DirectorCopyActor = .data:0x804DAEE0; // type:object size:0x14 scope:global align:4 +__vt__Q28PSSystem17DirectorActorBase = .data:0x804DAEF4; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem15DirectorMgrBase = .data:0x804DAF00; // type:object size:0x10 scope:weak align:4 +__vt__Q28PSSystem16SwitcherDirector = .data:0x804DAF10; // type:object size:0x38 scope:global align:4 +__vt__Q28PSSystem15OneShotDirector = .data:0x804DAF48; // type:object size:0x38 scope:global align:4 +__vt__Q28PSSystem12DirectorBase = .data:0x804DAF80; // type:object size:0x38 scope:global align:4 +deTagName__8Morimura = .data:0x804DAFB8; // type:object size:0x2C scope:global align:4 data:4byte +__vt__Q28Morimura15TCountDownScene = .data:0x804DAFE4; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura20TChallengeEndCount2p = .data:0x804DB034; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura20TChallengeEndCount1p = .data:0x804DB0B0; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura18TChallengeEndCount = .data:0x804DB12C; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura12TDayEndCount = .data:0x804DB1A8; // type:object size:0x7C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804DB228; // type:object size:0xC scope:local align:4 data:float +__vt__Q28Morimura10THurryUp2D = .data:0x804DB234; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura15THuWhitePaneSet = .data:0x804DB2B0; // type:object size:0x14C scope:global align:4 +__vt__Q28Morimura10TGXSetPane = .data:0x804DB400; // type:object size:0x14C scope:weak align:4 +__vt__Q28Morimura13TPikminDown2D = .data:0x804DB54C; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura16TPresidentDown2D = .data:0x804DB5C8; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura11TLujiDown2D = .data:0x804DB644; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura12TOrimaDown2D = .data:0x804DB6C0; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura11TGameOver2D = .data:0x804DB73C; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura13TGameOverBase = .data:0x804DB7B8; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura9TTestBase = .data:0x804DB838; // type:object size:0x7C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804DB8B8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx13TBombrockEFGH = .data:0x804DB8C4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TBombrockABCD = .data:0x804DB8D8; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx9TBombrock = .data:0x804DB8EC; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game4Bomb9StateBomb = .data:0x804DB900; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Bomb9StateWait = .data:0x804DB924; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Bomb5State = .data:0x804DB948; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Bomb3FSM = .data:0x804DB96C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Bomb14ProperAnimator = .data:0x804DB990; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Bomb3Mgr = .data:0x804DB9B8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Bomb5Parms = .data:0x804DBA98; // type:object size:0xC scope:weak align:4 +__vt__Q23efx14TBombrockLight = .data:0x804DBAA8; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Bomb3Obj = .data:0x804DBAF4; // type:object size:0x32C scope:global align:4 +__vt__Q23efx8TEggdown = .data:0x804DBE20; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game3Egg9StateWait = .data:0x804DBE34; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Egg5State = .data:0x804DBE58; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game3Egg3FSM = .data:0x804DBE7C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game3Egg14ProperAnimator = .data:0x804DBEA0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game3Egg3Mgr = .data:0x804DBEC8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game3Egg5Parms = .data:0x804DBFA8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game3Egg3Obj = .data:0x804DBFB8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game13PanModokiBase13StateCarryEnd = .data:0x804DC2E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StateSucked = .data:0x804DC30C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase10StateStick = .data:0x804DC330; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateWait = .data:0x804DC354; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StateDamage = .data:0x804DC378; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateHide = .data:0x804DC39C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StateAppear = .data:0x804DC3C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase11StatePulled = .data:0x804DC3E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateBack = .data:0x804DC408; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateWalk = .data:0x804DC42C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase9StateDead = .data:0x804DC450; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase5State = .data:0x804DC474; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game13PanModokiBase3FSM = .data:0x804DC498; // type:object size:0x24 scope:global align:4 +__vt__Q34Game13PanModokiBase14ProperAnimator = .data:0x804DC4C0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11OoPanModoki3Mgr = .data:0x804DC4E8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9PanModoki3Mgr = .data:0x804DC5C8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9PanModoki3Obj = .data:0x804DC6A8; // type:object size:0x340 scope:weak align:4 +__vt__Q34Game13PanModokiBase5Parms = .data:0x804DC9E8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804DC9F8; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game11OoPanModoki3Obj = .data:0x804DCA04; // type:object size:0x340 scope:global align:4 +__vt__Q24Game13PelletKillArg = .data:0x804DCD44; // type:object size:0xC scope:weak align:4 +__vt__Q34Game13PanModokiBase3Obj = .data:0x804DCD50; // type:object size:0x340 scope:global align:4 +__vt__Q24Game18InteractSuckFinish = .data:0x804DD090; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Zenmai3Mgr = .data:0x804DD0B8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Zenmai3Obj = .data:0x804DD198; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game9Chiyogami3Mgr = .data:0x804DD4C8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game9Chiyogami3Obj = .data:0x804DD5A8; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game11Nekojarashi3Mgr = .data:0x804DD8D8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Margaret3Mgr = .data:0x804DD9B8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Margaret3Obj = .data:0x804DDA98; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game10DiodeGreen3Mgr = .data:0x804DDDC8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8DiodeRed3Mgr = .data:0x804DDEA8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Watage3Mgr = .data:0x804DDF88; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Tukushi3Mgr = .data:0x804DE068; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Tukushi3Obj = .data:0x804DE148; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game8Wakame_l3Mgr = .data:0x804DE478; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Wakame_l3Obj = .data:0x804DE558; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game8Wakame_s3Mgr = .data:0x804DE888; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8Wakame_s3Obj = .data:0x804DE968; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game11KareOoinu_l3Mgr = .data:0x804DEC98; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11KareOoinu_l3Obj = .data:0x804DED78; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game7Ooinu_l3Mgr = .data:0x804DF0A8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Ooinu_l3Obj = .data:0x804DF188; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game11KareOoinu_s3Mgr = .data:0x804DF4B8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11KareOoinu_s3Obj = .data:0x804DF598; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game7Ooinu_s3Mgr = .data:0x804DF8C8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Ooinu_s3Obj = .data:0x804DF9A8; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game12HikariKinoko3Mgr = .data:0x804DFCD8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Clover3Mgr = .data:0x804DFDB8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Clover3Obj = .data:0x804DFE98; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game7Tanpopo3Mgr = .data:0x804E01C8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game7Tanpopo3Obj = .data:0x804E02A8; // type:object size:0x330 scope:weak align:4 +__vt__Q34Game6Plants14ProperAnimator = .data:0x804E05D8; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E0600; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10DiodeGreen3Obj = .data:0x804E060C; // type:object size:0x330 scope:global align:4 +__vt__Q34Game8DiodeRed3Obj = .data:0x804E093C; // type:object size:0x330 scope:global align:4 +__vt__Q34Game11Nekojarashi3Obj = .data:0x804E0C6C; // type:object size:0x330 scope:global align:4 +__vt__Q23efx7TWatage = .data:0x804E0F9C; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Watage3Obj = .data:0x804E0FB0; // type:object size:0x330 scope:global align:4 +__vt__Q34Game12HikariKinoko3Obj = .data:0x804E12E0; // type:object size:0x330 scope:global align:4 +__vt__Q34Game6Plants3Obj = .data:0x804E1610; // type:object size:0x330 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E1940; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game10KingChappy12StateSwallow = .data:0x804E194C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy12StateCaution = .data:0x804E1970; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateAppear = .data:0x804E1994; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy13StateHideWait = .data:0x804E19B8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateHide = .data:0x804E19DC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy8StateEat = .data:0x804E1A00; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateTurn = .data:0x804E1A24; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateDamage = .data:0x804E1A48; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateWarCry = .data:0x804E1A6C; // type:object size:0x24 scope:global align:4 +__vt__Q23efx12ArgRotYScale = .data:0x804E1A90; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10KingChappy10StateFlick = .data:0x804E1A9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateDead = .data:0x804E1AC0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy11StateAttack = .data:0x804E1AE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy9StateWalk = .data:0x804E1B08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy5State = .data:0x804E1B2C; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game10KingChappy3FSM = .data:0x804E1B50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game10KingChappy3Mgr = .data:0x804E1B78; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game10KingChappy5Parms = .data:0x804E1C58; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E1C68; // type:object size:0xC scope:local align:4 data:float +@6383 = .data:0x804E1C74; // type:object size:0x24 scope:local align:4 +@6398 = .data:0x804E1C98; // type:object size:0x24 scope:local align:4 +__vt__Q23efx12ArgKchYodare = .data:0x804E1CBC; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TKchYodare = .data:0x804E1CC8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TKchAttackYodare = .data:0x804E1D14; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx14TKchDeadYodare = .data:0x804E1D60; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx16TKchYodareHitWat = .data:0x804E1DAC; // type:object size:0x40 scope:weak align:4 +__vt__Q23efx15TKchYodareHitGr = .data:0x804E1DEC; // type:object size:0x40 scope:weak align:4 +__vt__Q23efx12TKchDeadHana = .data:0x804E1E2C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx13TKchSmokeHana = .data:0x804E1E48; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TKchCryInd = .data:0x804E1E94; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TKchCryAB = .data:0x804E1EE0; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TKchDiveWat = .data:0x804E1EFC; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TKchDiveSand = .data:0x804E1F18; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game10KingChappy14ProperAnimator = .data:0x804E1F34; // type:object size:0x28 scope:weak align:4 +__vt__Q34Game10KingChappy3Obj = .data:0x804E1F5C; // type:object size:0x32C scope:global align:4 +__vt__Q34Game6Miulin9StateDead = .data:0x804E2288; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin10StateFlick = .data:0x804E22AC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin9StateTurn = .data:0x804E22D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin14StateAttackEnd = .data:0x804E22F4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin14StateAttacking = .data:0x804E2318; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin16StateAttackStart = .data:0x804E233C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin9StateWalk = .data:0x804E2360; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin9StateWait = .data:0x804E2384; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin5State = .data:0x804E23A8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Miulin3FSM = .data:0x804E23CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Miulin14ProperAnimator = .data:0x804E23F0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Miulin3Mgr = .data:0x804E2418; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Miulin5Parms = .data:0x804E24F8; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TMiuAttack = .data:0x804E2508; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game6Miulin3Obj = .data:0x804E251C; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E2848; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game6Jigumo10StateSMiss = .data:0x804E2854; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo12StateSAttack = .data:0x804E2878; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo11StateSearch = .data:0x804E289C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo8StateEat = .data:0x804E28C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo10StateFlick = .data:0x804E28E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo10StateCarry = .data:0x804E2908; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo11StateReturn = .data:0x804E292C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateMiss = .data:0x804E2950; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo24ConditionHeightCheckPiki = .data:0x804E2974; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Jigumo11StateAttack = .data:0x804E2980; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateDead = .data:0x804E29A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateHide = .data:0x804E29C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo11StateAppear = .data:0x804E29EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo9StateWait = .data:0x804E2A10; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo5State = .data:0x804E2A34; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game6Jigumo3FSM = .data:0x804E2A58; // type:object size:0x24 scope:global align:4 +__vt__Q34Game6Jigumo14ProperAnimator = .data:0x804E2A80; // type:object size:0x28 scope:global align:4 +__vt__Q34Game6Jigumo3Mgr = .data:0x804E2AA8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game6Jigumo5Parms = .data:0x804E2B88; // type:object size:0xC scope:weak align:4 +__vt__Q34Game6Jigumo3Obj = .data:0x804E2B98; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Nest3Mgr = .data:0x804E2EC8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Nest3Obj = .data:0x804E2FA8; // type:object size:0x328 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateWait = .data:0x804E32D0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateDead = .data:0x804E32F4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateHide = .data:0x804E3318; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi11StateAppear = .data:0x804E333C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateTurn = .data:0x804E3360; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi9StateWalk = .data:0x804E3384; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi5State = .data:0x804E33A8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11TamagoMushi3FSM = .data:0x804E33CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11TamagoMushi14ProperAnimator = .data:0x804E33F0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11TamagoMushi3Mgr = .data:0x804E3418; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11TamagoMushi5Parms = .data:0x804E34F8; // type:object size:0xC scope:weak align:4 +__vt__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable> = .data:0x804E3504; // type:object size:0x10 scope:weak align:4 +__vt__16J3DUMtxCacheBase = .data:0x804E3514; // type:object size:0x10 scope:weak align:4 +__vt__Q23efx9TTamagoAp = .data:0x804E3528; // type:object size:0x14 scope:weak align:4 +__vt__Q34Game11TamagoMushi3Obj = .data:0x804E353C; // type:object size:0x32C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E3868; // type:object size:0xC scope:local align:4 data:float +mCategoryArray__Q28Morimura10TItemZukan = .data:0x804E3874; // type:object size:0x64 scope:global align:4 data:4byte +eIDInfo__8Morimura = .data:0x804E38D8; // type:object size:0x288 scope:local align:4 data:4byte +@6253 = .data:0x804E3B60; // type:object size:0x124 scope:local align:4 +__vt__Q28Morimura12TZukanWindow = .data:0x804E3C84; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura18TCallbackScrollMsg = .data:0x804E3C98; // type:object size:0x1C scope:global align:4 +__vt__Q28Morimura11TDItemScene = .data:0x804E3CB4; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d14T2DChangesmoke = .data:0x804E3D04; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura10TItemZukan = .data:0x804E3D1C; // type:object size:0xEC scope:global align:4 +__vt__Q28Morimura12TDEnemyScene = .data:0x804E3E08; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura9THIOScene = .data:0x804E3E58; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura11TEnemyZukan = .data:0x804E3EA8; // type:object size:0xEC scope:global align:4 +__vt__Q28Morimura10TZukanBase = .data:0x804E3F94; // type:object size:0xEC scope:global align:4 +mPicTexture__Q28Morimura8THiScore = .data:0x804E4080; // type:object size:0x40 scope:global align:4 data:4byte +mNameID__Q28Morimura8THiScore = .data:0x804E40C0; // type:object size:0x80 scope:global align:8 +mHiscoreDataOrder__Q28Morimura8THiScore = .data:0x804E4140; // type:object size:0x40 scope:global align:4 +__vt__Q28Morimura13THiScoreScene = .data:0x804E4180; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura19DispMemberHighScore = .data:0x804E41D0; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura8THiScore = .data:0x804E41E8; // type:object size:0xAC scope:global align:4 +__vt__Q28Morimura18THiScoreListScreen = .data:0x804E4294; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura15THiScoreIndPane = .data:0x804E42A8; // type:object size:0x14 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E42C0; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8UmiMushi9StateLost = .data:0x804E42CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateDead = .data:0x804E42F0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi8StateEat = .data:0x804E4314; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi11StateAttack = .data:0x804E4338; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi10StateFlick = .data:0x804E435C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateTurn = .data:0x804E4380; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi11StateSearch = .data:0x804E43A4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateFind = .data:0x804E43C8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateWalk = .data:0x804E43EC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi9StateWait = .data:0x804E4410; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi5State = .data:0x804E4434; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8UmiMushi3FSM = .data:0x804E4458; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8UmiMushi14ProperAnimator = .data:0x804E4480; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8UmiMushi3Mgr = .data:0x804E44A8; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8UmiMushi5Parms = .data:0x804E4588; // type:object size:0xC scope:weak align:4 +__vt__Q23efx11TUmiDeadawa = .data:0x804E4598; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx7TUmiEat = .data:0x804E45E4; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TUmiEyeBlue = .data:0x804E4630; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx10TUmiEyeRed = .data:0x804E464C; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx12TUmiWeakBlue = .data:0x804E4668; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx11TUmiWeakRed = .data:0x804E4684; // type:object size:0x1C scope:weak align:4 +__vt__Q23efx9TUmiHamon = .data:0x804E46A0; // type:object size:0x1C scope:weak align:4 +__vt__Q34Game8UmiMushi3Obj = .data:0x804E46BC; // type:object size:0x32C scope:global align:4 +__vt__Q34Game11ShijimiChou9StateRest = .data:0x804E49E8; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou10StateLeave = .data:0x804E4A0C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou9StateDead = .data:0x804E4A30; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou9StateFall = .data:0x804E4A54; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou8StateFly = .data:0x804E4A78; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou9StateWait = .data:0x804E4A9C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou5State = .data:0x804E4AC0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game11ShijimiChou3FSM = .data:0x804E4AE4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game11ShijimiChou14ProperAnimator = .data:0x804E4B08; // type:object size:0x28 scope:global align:4 +__vt__Q34Game11ShijimiChou3Mgr = .data:0x804E4B30; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game11ShijimiChou5Parms = .data:0x804E4C10; // type:object size:0xC scope:weak align:4 +__vt__Q23efx8TChouHit = .data:0x804E4C20; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx7ArgChou = .data:0x804E4C34; // type:object size:0xC scope:weak align:4 +__vt__Q34Game11ShijimiChou3Obj = .data:0x804E4C40; // type:object size:0x32C scope:global align:4 +mIconTexture__Q28Morimura16TChallengeSelect = .data:0x804E4F70; // type:object size:0x10 scope:global align:4 data:4byte +__vt__Q28Morimura21TChallengeSelectScene = .data:0x804E4F80; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d14T2DChalDiveEnd = .data:0x804E4FD0; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d11T2DChalDive = .data:0x804E4FE8; // type:object size:0x38 scope:weak align:4 +__vt__Q28Morimura16TChallengeSelect = .data:0x804E5020; // type:object size:0x7C scope:global align:4 +__vt__Q28Morimura33TChallengeSelectExplanationWindow = .data:0x804E509C; // type:object size:0x18 scope:global align:4 +__vt__Q28Morimura24TChallengePlayModeScreen = .data:0x804E50B4; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura16TChallengeScreen = .data:0x804E50C8; // type:object size:0x1C scope:global align:4 +__vt__Q28Morimura21TChallengeResultScene = .data:0x804E50E8; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d11T2DCavecomp = .data:0x804E5138; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura16TChallengeResult = .data:0x804E5150; // type:object size:0x7C scope:global align:4 +__vt__Q25efx2d15T2DCavecompLoop = .data:0x804E51CC; // type:object size:0x38 scope:weak align:4 +__vt__Q28Morimura10TCounterRV = .data:0x804E5204; // type:object size:0x30 scope:global align:4 +__vt__Q28Morimura26TChallengeResultDemoScreen = .data:0x804E5234; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura22TChallengeResultScreen = .data:0x804E5248; // type:object size:0x1C scope:global align:4 +...data.0 = .data:0x804E5268; // type:label scope:local +mOrimaTexture__Q28Morimura9TVsSelect = .data:0x804E5278; // type:object size:0x14 scope:global align:4 data:4byte +mLouieTexture__Q28Morimura9TVsSelect = .data:0x804E528C; // type:object size:0x14 scope:global align:4 data:4byte +slotIDInfo__8Morimura = .data:0x804E52A0; // type:object size:0xC0 scope:local align:8 data:4byte +__vt__Q28Morimura14TVsSelectScene = .data:0x804E5360; // type:object size:0x50 scope:global align:4 +__vt__Q28Morimura19TVsSelectListScreen = .data:0x804E53C8; // type:object size:0x14 scope:weak align:4 +__vt__Q28Morimura9TVsSelect = .data:0x804E5440; // type:object size:0xAC scope:global align:4 +__vt__Q28Morimura17TVsSelectCBWinNum = .data:0x804E5530; // type:object size:0x30 scope:global align:4 +__vt__Q28Morimura15TVsSelectScreen = .data:0x804E5598; // type:object size:0x14 scope:global align:4 +__vt__Q25efx2d13T2DBattleDive = .data:0x804E55AC; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura26TVsSelectExplanationWindow = .data:0x804E5600; // type:object size:0x18 scope:global align:4 +__vt__Q28Morimura16TVsSelectIndPane = .data:0x804E5618; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura12TScissorPane = .data:0x804E5630; // type:object size:0x14C scope:global align:4 +__vt__Q28Morimura15TScaleUpCounter = .data:0x804E577C; // type:object size:0x30 scope:global align:4 +__vt__Q28Morimura8TIndPane = .data:0x804E57AC; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura15TTestAnimScreen = .data:0x804E57C0; // type:object size:0x10 scope:weak align:4 +__vt__Q28Morimura11TScreenBase = .data:0x804E57D0; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura16TCallbackScissor = .data:0x804E57E4; // type:object size:0x1C scope:global align:4 +__vt__Q28Morimura11TScrollList = .data:0x804E5800; // type:object size:0xAC scope:global align:4 +__vt__Q28Morimura11TListScreen = .data:0x804E58AC; // type:object size:0x14 scope:global align:4 +__vt__Q28Morimura24TSelectExplanationWindow = .data:0x804E58C0; // type:object size:0x18 scope:global align:4 +__vt__Q28Morimura17TConfirmEndWindow = .data:0x804E58D8; // type:object size:0xB8 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E5990; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game8BlackMan10StateTired = .data:0x804E599C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan10StateFlick = .data:0x804E59C0; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan12StateRecover = .data:0x804E59E4; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateFall = .data:0x804E5A08; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan11StateEscape = .data:0x804E5A2C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateBend = .data:0x804E5A50; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan11StateFreeze = .data:0x804E5A74; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateDead = .data:0x804E5A98; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan9StateWalk = .data:0x804E5ABC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan5State = .data:0x804E5AE0; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game8BlackMan3FSM = .data:0x804E5B04; // type:object size:0x24 scope:global align:4 +__vt__Q34Game8BlackMan14ProperAnimator = .data:0x804E5B28; // type:object size:0x28 scope:global align:4 +__vt__Q34Game8BlackMan3Mgr = .data:0x804E5B50; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game8BlackMan5Parms = .data:0x804E5C30; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E5C40; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx10TKageBend1 = .data:0x804E5C4C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11ArgPrmColor = .data:0x804E5C60; // type:object size:0xC scope:weak align:4 +__vt__Q23efx10TKageFlick = .data:0x804E5C6C; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx11TKageTyreup = .data:0x804E5CB8; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx10TKageDead1 = .data:0x804E5D04; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx8TKageRun = .data:0x804E5D50; // type:object size:0x4C scope:weak align:4 +__vt__Q23efx9TKageMove = .data:0x804E5D9C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game8BlackMan3Obj = .data:0x804E5DE8; // type:object size:0x32C scope:global align:4 +__vt__Q34Game4Tyre9StateDead = .data:0x804E6118; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre11StateFreeze = .data:0x804E613C; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre9StateLand = .data:0x804E6160; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre9StateMove = .data:0x804E6184; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre5State = .data:0x804E61A8; // type:object size:0x24 scope:weak align:4 +__vt__Q34Game4Tyre3FSM = .data:0x804E61CC; // type:object size:0x24 scope:global align:4 +__vt__Q34Game4Tyre14ProperAnimator = .data:0x804E61F0; // type:object size:0x28 scope:global align:4 +__vt__Q34Game4Tyre3Mgr = .data:0x804E6218; // type:object size:0xE0 scope:global align:4 +__vt__Q34Game4Tyre5Parms = .data:0x804E62F8; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E6308; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx10TKageRecov = .data:0x804E6314; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TKageTyredead = .data:0x804E6328; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx14TKageTyresmoke = .data:0x804E633C; // type:object size:0x4C scope:weak align:4 +__vt__Q34Game4Tyre3Obj = .data:0x804E6388; // type:object size:0x32C scope:global align:4 +__vt__Q23efx23TChasePosPosLocalYScale = .data:0x804E66B8; // type:object size:0x4C scope:global align:4 +__vt__Q23efx23TChasePosPosLocalZScale = .data:0x804E6704; // type:object size:0x4C scope:global align:4 +__vt__Q23efx12TChasePosPos = .data:0x804E6750; // type:object size:0x4C scope:global align:4 +__vt__Q23efx10TChaseMtxT = .data:0x804E679C; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TChaseMtx = .data:0x804E67E8; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TChasePosYRot = .data:0x804E6834; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TChasePos = .data:0x804E6880; // type:object size:0x4C scope:global align:4 +__vt__Q23efx5TSync = .data:0x804E68CC; // type:object size:0x4C scope:global align:4 +__vt__Q23efx11TSimpleMtx4 = .data:0x804E6918; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSimpleMtx3 = .data:0x804E692C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSimpleMtx2 = .data:0x804E6940; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSimpleMtx1 = .data:0x804E6954; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple5 = .data:0x804E6968; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple4 = .data:0x804E697C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple3 = .data:0x804E6990; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple2 = .data:0x804E69A4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TSimple1 = .data:0x804E69B8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx17TOneEmitterSimple = .data:0x804E69CC; // type:object size:0x40 scope:global align:4 +__vt__Q23efx19TOneEmitterChasePos = .data:0x804E6A0C; // type:object size:0x40 scope:global align:4 +__vt__Q23efx11TOneEmitter = .data:0x804E6A4C; // type:object size:0x40 scope:global align:4 +__vt__Q23efx24TCallBack_StaticClipping = .data:0x804E6A8C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx13TDenkiHibaMgr = .data:0x804E6AA8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TDenkiHiba = .data:0x804E6ABC; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9TGasuHiba = .data:0x804E6AD8; // type:object size:0x1C scope:global align:4 +__vt__Q23efx14TDnkmsThunderB = .data:0x804E6AF4; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14TDnkmsThunderA = .data:0x804E6B40; // type:object size:0x4C scope:global align:4 +__vt__Q23efx8TTankWat = .data:0x804E6B8C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9TTankFire = .data:0x804E6BA8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TTankFireIND = .data:0x804E6BBC; // type:object size:0x4C scope:global align:4 +__vt__Q23efx12TTankFireABC = .data:0x804E6C08; // type:object size:0x1C scope:global align:4 +__vt__Q23efx26TParticleCallBack_TankFire = .data:0x804E6C24; // type:object size:0x18 scope:global align:4 +__vt__Q23efx11TKoganeDive = .data:0x804E6C3C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKoganeHit = .data:0x804E6C50; // type:object size:0x14 scope:global align:4 +__vt__Q23efx7TBabaHe = .data:0x804E6C64; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14TBabaFly_ver01 = .data:0x804E6C78; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TPanSmoke = .data:0x804E6CC4; // type:object size:0x4C scope:global align:4 +__vt__Q23efx8TPanHide = .data:0x804E6D10; // type:object size:0x4C scope:global align:4 +__vt__Q23efx7TPanApp = .data:0x804E6D5C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14THebiAphd_base = .data:0x804E6D70; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TOtaPartsoff = .data:0x804E6D84; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TImoSmoke = .data:0x804E6D98; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TUjinkoAp_Imo = .data:0x804E6DE4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TUjinkoHd_Imo = .data:0x804E6DF8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx7TImoEat = .data:0x804E6E0C; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TJgmBackW = .data:0x804E6E58; // type:object size:0x1C scope:global align:4 +__vt__Q23efx8TJgmBack = .data:0x804E6E74; // type:object size:0x4C scope:global align:4 +__vt__Q23efx11TJgmAttackW = .data:0x804E6EC0; // type:object size:0x1C scope:global align:4 +__vt__Q23efx10TJgmAttack = .data:0x804E6EDC; // type:object size:0x1C scope:global align:4 +__vt__Q23efx12TUmiDeadmelt = .data:0x804E6EF8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TUmiAttack = .data:0x804E6F0C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TUmiFlick = .data:0x804E6F20; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TChouDown = .data:0x804E6F34; // type:object size:0x4C scope:global align:4 +__vt__Q23efx9TChibiHit = .data:0x804E6F80; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12ContainerAct = .data:0x804E6F98; // type:object size:0x1C scope:global align:4 +__vt__Q23efx9Container = .data:0x804E6FB4; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14TPelkira_ver01 = .data:0x804E7000; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TKouhaiDamage = .data:0x804E704C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx8TEgateBC = .data:0x804E7060; // type:object size:0x1C scope:global align:4 +__vt__Q23efx10TOtakaraAp = .data:0x804E707C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TOtakaraApS = .data:0x804E7090; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TOtakaraApL = .data:0x804E70A4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TTsuyuGrow0 = .data:0x804E70B8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TOtakaraDive = .data:0x804E70CC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12TStoneAttack = .data:0x804E70E0; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx13TBridgeAttack = .data:0x804E70F4; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TGate2Attack = .data:0x804E7108; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx10TPkInstick = .data:0x804E711C; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TGate1Attack = .data:0x804E7130; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx12TPkBlackDrop = .data:0x804E7144; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx15TFueactBiriBase = .data:0x804E7158; // type:object size:0x4C scope:global align:4 +__vt__Q23efx13TFueactCircle = .data:0x804E71A4; // type:object size:0x54 scope:global align:4 +__vt__Q23efx7TCursor = .data:0x804E71F8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14TOrimaLightAct = .data:0x804E720C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx11TOrimaLight = .data:0x804E7228; // type:object size:0x1C scope:global align:4 +__vt__Q23efx12TDopingSmoke = .data:0x804E7244; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TPkNageBlur = .data:0x804E7258; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E72A8; // type:object size:0xC scope:local align:4 data:float +__vt__14TParticle2dMgr = .data:0x804E72B4; // type:object size:0x1C scope:global align:4 +__vt__Q25efx2d12TChasePosDir = .data:0x804E72D0; // type:object size:0x3C scope:global align:4 +__vt__Q25efx2d9TChasePos = .data:0x804E730C; // type:object size:0x3C scope:global align:4 +__vt__Q25efx2d9TForeverN = .data:0x804E7348; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d8TForever = .data:0x804E7360; // type:object size:0x38 scope:global align:4 +__vt__Q25efx2d8TSimple3 = .data:0x804E7398; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d8TSimple2 = .data:0x804E73B0; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d8TSimple1 = .data:0x804E73C8; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d8WorldMap10T2DRocketB = .data:0x804E73E0; // type:object size:0x3C scope:global align:4 +__vt__Q35efx2d8WorldMap12T2DOnyonKira = .data:0x804E741C; // type:object size:0x3C scope:global align:4 +__vt__Q35efx2d8WorldMap19TSimple_ArgDirScale = .data:0x804E7458; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d8WorldMap9T2DNewmap = .data:0x804E7470; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d8WorldMap10T2DShstar2 = .data:0x804E7488; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d10FileSelect15T2DFilecopyBase = .data:0x804E74A0; // type:object size:0x38 scope:global align:4 +__vt__Q35efx2d10FileSelect14T2DFiledeleteM = .data:0x804E74D8; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d10FileSelect13T2DFiledelete = .data:0x804E74F0; // type:object size:0x18 scope:global align:4 +__vt__Q35efx2d10FileSelect13T2DFilecopied = .data:0x804E7508; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d17T2DSprayset_forVS = .data:0x804E7520; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d18T2DSensorGet_forVS = .data:0x804E7538; // type:object size:0x18 scope:global align:4 +__vt__Q25efx2d12T2DCountKira = .data:0x804E7550; // type:object size:0x38 scope:global align:4 +__vt__Q25efx2d9T2DCursor = .data:0x804E7588; // type:object size:0x3C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E75C8; // type:object size:0xC scope:local align:4 data:float +__vt__11ParticleMgr = .data:0x804E75D4; // type:object size:0x28 scope:global align:4 +__vt__19ModelEffectDataRoot = .data:0x804E75FC; // type:object size:0x1C scope:weak align:4 +__vt__26TObjectNode<11ModelEffect> = .data:0x804E7618; // type:object size:0x10 scope:weak align:4 +__vt__28NodeObjectMgr<11ModelEffect> = .data:0x804E7628; // type:object size:0x80 scope:weak align:4 +__vt__24ObjectMgr<11ModelEffect> = .data:0x804E76A8; // type:object size:0x7C scope:weak align:4 +__vt__24Container<11ModelEffect> = .data:0x804E7724; // type:object size:0x2C scope:weak align:4 +__vt__23Iterator<11ModelEffect> = .data:0x804E7750; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E7768; // type:object size:0xC scope:local align:4 data:float +@5249 = .data:0x804E7774; // type:object size:0x1C scope:local align:4 +__vt__Q33ebi5title9TTitleMgr = .data:0x804E7790; // type:object size:0x1C scope:global align:4 +__vt__Q43ebi5title6Pikmin13TBoidParamMgr = .data:0x804E77AC; // type:object size:0x10 scope:weak align:4 +__vt__Q43ebi5title6Pikmin4TMgr = .data:0x804E77BC; // type:object size:0x10 scope:weak align:4 +__vt__Q43ebi5title6Kogane4TMgr = .data:0x804E77CC; // type:object size:0x10 scope:weak align:4 +__vt__Q43ebi5title6Chappy4TMgr = .data:0x804E77DC; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title9TCoordMgr = .data:0x804E77EC; // type:object size:0x10 scope:weak align:4 +__vt__8Viewport = .data:0x804E77FC; // type:object size:0x10 scope:weak align:4 +__vt__6FogMgr = .data:0x804E780C; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title12TTitleFogMgr = .data:0x804E781C; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title15TTitleCameraMgr = .data:0x804E782C; // type:object size:0x80 scope:weak align:4 +__vt__Q33ebi5title11TBlackPlane = .data:0x804E78AC; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title12TBGEnemyBase = .data:0x804E78BC; // type:object size:0x10 scope:weak align:4 +__vt__12J3DFrameCtrl = .data:0x804E78CC; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi5title8TMapBase = .data:0x804E78D8; // type:object size:0x10 scope:weak align:4 +__vt__Q33ebi5title8TObjBase = .data:0x804E78E8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E78F8; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804E7908; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804E7918; // type:object size:0xC scope:local align:4 data:float +__vt__Q33ebi5title14TTitleLightMgr = .data:0x804E7924; // type:object size:0x20 scope:global align:4 +@4240 = .data:0x804E7948; // type:object size:0xB0 scope:local align:4 +__vt__Q33ebi6Screen17TResourceObserver = .data:0x804E79F8; // type:object size:0xC scope:global align:4 +@4148 = .data:0x804E7A08; // type:object size:0x20 scope:local align:4 +@4162 = .data:0x804E7A28; // type:object size:0x20 scope:local align:4 +__vt__Q23efx12TPkEffectMgr = .data:0x804E7A48; // type:object size:0xC scope:global align:4 +__vt__Q23efx19TPkOneEmitterSimple = .data:0x804E7A54; // type:object size:0x38 scope:global align:4 +@3022 = .data:0x804E7A90; // type:object size:0x190 scope:local align:4 +@3358 = .data:0x804E7C20; // type:object size:0x190 scope:local align:4 +@3459 = .data:0x804E7DB0; // type:object size:0x190 scope:local align:4 +@3688 = .data:0x804E7F40; // type:object size:0x190 scope:local align:4 +@4024 = .data:0x804E80D0; // type:object size:0x190 scope:local align:4 +@4154 = .data:0x804E8260; // type:object size:0x190 scope:local align:4 +__vt__Q23efx11TEnemyHamon = .data:0x804E83F0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx19TEnemyHamonChasePos = .data:0x804E8404; // type:object size:0x14 scope:global align:4 +__vt__Q23efx15TEnemyHamonMInd = .data:0x804E8418; // type:object size:0x4C scope:global align:4 +__vt__Q23efx12TEnemyHamonM = .data:0x804E8464; // type:object size:0x4C scope:global align:4 +__vt__Q23efx14TEnemyApsmokeS = .data:0x804E84B0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx14TEnemyApsmokeM = .data:0x804E84C4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyApsmoke = .data:0x804E84D8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TEnemyBombS = .data:0x804E84EC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TEnemyBombM = .data:0x804E8500; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyBomb = .data:0x804E8514; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyDive = .data:0x804E8528; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyDownWat = .data:0x804E853C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx15TEnemyDownSmoke = .data:0x804E8550; // type:object size:0x14 scope:global align:4 +__vt__Q23efx16TEnemyWalkSmokeS = .data:0x804E8564; // type:object size:0x14 scope:global align:4 +__vt__Q23efx16TEnemyWalkSmokeM = .data:0x804E8578; // type:object size:0x14 scope:global align:4 +__vt__Q23efx15TEnemyWalkSmoke = .data:0x804E858C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyDead = .data:0x804E85A0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx19TEnemyDead_ArgScale = .data:0x804E85B4; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TSekikaSOn = .data:0x804E85C8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSekikaSOff = .data:0x804E85DC; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TSekikaLOn = .data:0x804E85F0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TSekikaLOff = .data:0x804E8604; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyPoisonS = .data:0x804E8618; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TEnemyPoisonL = .data:0x804E862C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TEnemyPiyo = .data:0x804E8640; // type:object size:0x4C scope:global align:4 +@4176 = .data:0x804E8690; // type:object size:0x1C scope:local align:4 +@4734 = .data:0x804E86AC; // type:object size:0x1C scope:local align:4 +__vt__Q33ebi6Screen7TOption = .data:0x804E86C8; // type:object size:0x4C scope:global align:4 +__vt__Q23ebi13TScreenProgre = .data:0x804E8718; // type:object size:0xC scope:global align:4 +__vt__Q33ebi6Screen20TScreenBaseInterface = .data:0x804E8728; // type:object size:0x24 scope:weak align:4 +__vt__Q23ebi25E2DCallBack_CalcAnimation = .data:0x804E874C; // type:object size:0x24 scope:weak align:4 +__vt__Q23ebi16E2DCallBack_Base = .data:0x804E8770; // type:object size:0x24 scope:weak align:4 +__vt__Q24Game32StateMachine = .data:0x804E8794; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi6Option16FSMState_SaveMgr = .data:0x804E87AC; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option19FSMState_LoadOption = .data:0x804E87D4; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option27FSMState_WorldMapInfoWindow = .data:0x804E87FC; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option27FSMState_WaitCloseForNoCard = .data:0x804E8824; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option20FSMState_ScreenClose = .data:0x804E884C; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option19FSMState_ScreenWait = .data:0x804E8874; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option19FSMState_ScreenOpen = .data:0x804E889C; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Option8FSMState = .data:0x804E88C4; // type:object size:0x28 scope:global align:4 +__vt__Q24Game28FSMState = .data:0x804E88EC; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi6Option15FSMStateMachine = .data:0x804E890C; // type:object size:0x18 scope:global align:4 +__vt__Q23ebi24E2DCallBack_WindowCursor = .data:0x804E8928; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi19E2DCallBack_AnmBase = .data:0x804E894C; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi22E2DCallBack_BlinkAlpha = .data:0x804E8970; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi26E2DCallBack_BlinkFontColor = .data:0x804E8994; // type:object size:0x24 scope:global align:4 +__vt__Q23ebi20E2DCallBack_Purupuru = .data:0x804E89B8; // type:object size:0x24 scope:global align:4 +@4229 = .data:0x804E89E0; // type:object size:0x3C scope:local align:4 +@4674 = .data:0x804E8A1C; // type:object size:0x44 scope:local align:4 +__vt__Q24Game35StateMachine = .data:0x804E8A60; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi9CardError15FSMState_NoCard = .data:0x804E8A78; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError20FSMState_CardRequest = .data:0x804E8AAC; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi9CardError17FSMState_Question = .data:0x804E8B08; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError16FSMState_Warning = .data:0x804E8B3C; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError8FSMState = .data:0x804E8B6C; // type:object size:0x28 scope:global align:4 +__vt__Q24Game31FSMState = .data:0x804E8B94; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi9CardError15FSMStateMachine = .data:0x804E8BB4; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi6Screen11TScreenBase = .data:0x804E8BD0; // type:object size:0x4C scope:global align:4 +__vt__Q33ebi6Screen11TPressStart = .data:0x804E8C20; // type:object size:0x4C scope:global align:4 +@5300 = .data:0x804E8C70; // type:object size:0x2C scope:local align:4 +__vt__Q25efx2d8ArgColor = .data:0x804E8C9C; // type:object size:0xC scope:weak align:4 +__vt__Q35efx2d10FileSelect11ArgFilecopy = .data:0x804E8CA8; // type:object size:0xC scope:weak align:4 +__vt__Q35efx2d10FileSelect13T2DFiledecide = .data:0x804E8CB4; // type:object size:0x18 scope:weak align:4 +__vt__Q43ebi6Screen10FileSelect11TMainScreen = .data:0x804E8CCC; // type:object size:0x4C scope:global align:4 +__vt__Q35efx2d10FileSelect11T2DFileselM = .data:0x804E8D18; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d10FileSelect10T2DFilesel = .data:0x804E8D54; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d10FileSelect16T2DFiledeletingM = .data:0x804E8D90; // type:object size:0x38 scope:weak align:4 +__vt__Q35efx2d10FileSelect15T2DFiledeleting = .data:0x804E8DC8; // type:object size:0x38 scope:weak align:4 +__vt__Q35efx2d10FileSelect12T2DFilecopyM = .data:0x804E8E00; // type:object size:0x38 scope:weak align:4 +__vt__Q35efx2d10FileSelect11T2DFilecopy = .data:0x804E8E38; // type:object size:0x38 scope:weak align:4 +__vt__Q33ebi6Screen10TTitleMenu = .data:0x804E8E70; // type:object size:0x4C scope:global align:4 +@3938 = .data:0x804E8EC0; // type:object size:0x3C scope:local align:4 +__vt__Q24Game30StateMachine = .data:0x804E8EFC; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi4Save4TMgr = .data:0x804E8F14; // type:object size:0xC scope:global align:4 +__vt__Q33ebi4Save18FSMState_CardError = .data:0x804E8F20; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save18FSMState_AfterSave = .data:0x804E8F48; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save16FSMState_NowSave = .data:0x804E8F70; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save24FSMState_CheckBeforeSave = .data:0x804E8F98; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save24FSMState_GetPlayerHeader = .data:0x804E8FF4; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save19FSMState_MountCheck = .data:0x804E9050; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save20FSMState_CardRequest = .data:0x804E90AC; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi4Save22FSMState_DoYouContinue = .data:0x804E9108; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save18FSMState_DoYouSave = .data:0x804E9130; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi4Save8FSMState = .data:0x804E9158; // type:object size:0x28 scope:global align:4 +__vt__Q24Game26FSMState = .data:0x804E9180; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi4Save15FSMStateMachine = .data:0x804E91A0; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi6Screen9TSaveMenu = .data:0x804E91B8; // type:object size:0x4C scope:global align:4 +__vt__Q24Game28StateMachine = .data:0x804E9208; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi2FS31FSMState04_WhichDataDoYouCopyTo = .data:0x804E9220; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS22FSMState00c_DecideData = .data:0x804E9248; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS21FSMState00b_CheckData = .data:0x804E9270; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS21FSMState00_SelectData = .data:0x804E9298; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS21FSMState00a_OpenScene = .data:0x804E92C0; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi2FS18FSMState09_NowCopy = .data:0x804E92E8; // type:object size:0x40 scope:global align:4 +__vt__Q33ebi2FS20FSMState02_NowDelete = .data:0x804E9328; // type:object size:0x40 scope:global align:4 +__vt__Q33ebi2FS17FSMState_CardTask = .data:0x804E9368; // type:object size:0x40 scope:global align:4 +__vt__Q33ebi2FS21FSMState10_FinishCopy = .data:0x804E93A8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS21FSMState08_FailToCopy = .data:0x804E93D8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS23FSMState06_FinishDelete = .data:0x804E9408; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS23FSMState05_FailToDelete = .data:0x804E9438; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS16FSMState_Warning = .data:0x804E9468; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS25FSMState07_DoYouOverwrite = .data:0x804E9498; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS22FSMState03_DoYouDelete = .data:0x804E94C8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS21FSMState01_DataBroken = .data:0x804E94F8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS20FSMState_SelectYesNo = .data:0x804E9528; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi2FS8FSMState = .data:0x804E9558; // type:object size:0x28 scope:global align:4 +__vt__Q24Game24FSMState = .data:0x804E9580; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi2FS15FSMStateMachine = .data:0x804E95A0; // type:object size:0x18 scope:global align:4 +@3869 = .data:0x804E95B8; // type:object size:0x3C scope:local align:4 +__vt__Q33ebi10FileSelect4TMgr = .data:0x804E95F4; // type:object size:0xC scope:global align:4 +__vt__Q24Game37StateMachine = .data:0x804E9600; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi10FileSelect18FSMState_CardError = .data:0x804E9618; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi10FileSelect25FSMState_ScreenFileSelect = .data:0x804E9640; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi10FileSelect24FSMState_GetPlayerHeader = .data:0x804E9668; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi10FileSelect19FSMState_MountCheck = .data:0x804E96C4; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi10FileSelect20FSMState_CardRequest = .data:0x804E9720; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi10FileSelect20FSMState_EmptyUpdate = .data:0x804E977C; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi10FileSelect8FSMState = .data:0x804E97A4; // type:object size:0x28 scope:global align:4 +__vt__Q24Game33FSMState = .data:0x804E97CC; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi10FileSelect15FSMStateMachine = .data:0x804E97EC; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi9CardError29FSMState_WN1_NowCreateNewFile = .data:0x804E9808; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi9CardError22FSMState_WN0_NowFormat = .data:0x804E9864; // type:object size:0x5C scope:global align:4 +__vt__Q33ebi9CardError25FSMState_Q05_GameCantSave = .data:0x804E98C0; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSave = .data:0x804E98F4; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFile = .data:0x804E9928; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError24FSMState_Q02_DoYouFormat = .data:0x804E995C; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPL = .data:0x804E9990; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormat = .data:0x804E99C4; // type:object size:0x34 scope:global align:4 +__vt__Q33ebi9CardError31FSMState_WF5_FailToSave_IOError = .data:0x804E99F8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCard = .data:0x804E9A28; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOError = .data:0x804E9A58; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCard = .data:0x804E9A88; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOError = .data:0x804E9AB8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCard = .data:0x804E9AE8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W10_SerialNoError = .data:0x804E9B18; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError32FSMState_W09_FinishCreateNewFile = .data:0x804E9B48; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError25FSMState_W08_FinishFormat = .data:0x804E9B78; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W07_NoFileForSave = .data:0x804E9BA8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W06_CardNotUsable = .data:0x804E9BD8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError26FSMState_W05_InitCardOnIPL = .data:0x804E9C08; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError25FSMState_W04_OverCapacity = .data:0x804E9C38; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError24FSMState_W03_WrongSector = .data:0x804E9C68; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError24FSMState_W02_WrongDevice = .data:0x804E9C98; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError20FSMState_W01_IOError = .data:0x804E9CC8; // type:object size:0x30 scope:global align:4 +__vt__Q33ebi9CardError19FSMState_W00_NoCard = .data:0x804E9CF8; // type:object size:0x34 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E9D30; // type:object size:0xC scope:local align:4 data:float +__vt__Q43ebi5title6Pikmin5TUnit = .data:0x804E9D3C; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E9D50; // type:object size:0xC scope:local align:4 data:float +@3721 = .data:0x804E9D5C; // type:object size:0x1C scope:local align:4 +__vt__Q43ebi5title6Kogane5TUnit = .data:0x804E9D78; // type:object size:0x10 scope:global align:4 +__vt__Q43ebi5title6Kogane11TAnimFolder = .data:0x804E9D88; // type:object size:0xC scope:weak align:4 +__vt__Q23ebi17E3DAnimFolderBase = .data:0x804E9D94; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E9DA0; // type:object size:0xC scope:local align:4 data:float +@3747 = .data:0x804E9DAC; // type:object size:0x20 scope:local align:4 +@4155 = .data:0x804E9DCC; // type:object size:0x20 scope:local align:4 +__vt__Q43ebi5title6Chappy5TUnit = .data:0x804E9DEC; // type:object size:0x10 scope:global align:4 +__vt__Q43ebi5title6Chappy11TAnimFolder = .data:0x804E9DFC; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen13TNintendoLogo = .data:0x804E9E08; // type:object size:0x4C scope:global align:4 +__vt__Q33ebi6Screen7TTMBack = .data:0x804E9E54; // type:object size:0x4C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804E9EA0; // type:object size:0xC scope:local align:4 data:float +__vt__Q33ebi6Screen14ArgCloseTMBack = .data:0x804E9EAC; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen8ArgClose = .data:0x804E9EB8; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen16ArgOpenTitleMenu = .data:0x804E9EC4; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen13ArgOpenTMBack = .data:0x804E9ED0; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi6Screen7ArgOpen = .data:0x804E9EDC; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804E9EE8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23efx16THdamaDeadHahen2 = .data:0x804E9EF8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx16THdamaDeadHahen1 = .data:0x804E9F0C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx12THdamaShootA = .data:0x804E9F20; // type:object size:0x14 scope:weak align:4 +__vt__Q23efx11THdamaHit2W = .data:0x804E9F34; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11THdamaShell = .data:0x804E9F48; // type:object size:0x4C scope:global align:4 +__vt__Q23efx22TKchYodareBaseChaseMtx = .data:0x804E9F94; // type:object size:0x4C scope:global align:4 +__vt__Q23efx27TParticleCallBack_KchYodare = .data:0x804E9FE0; // type:object size:0x18 scope:global align:4 +__vt__Q23efx13TKchDownsmoke = .data:0x804E9FF8; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKchDamage = .data:0x804EA00C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx9TKchApWat = .data:0x804EA020; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKchApSand = .data:0x804EA034; // type:object size:0x14 scope:global align:4 +__vt__Q23efx13TKchFlickSand = .data:0x804EA048; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TOootaFire = .data:0x804EA05C; // type:object size:0x1C scope:global align:4 +__vt__Q23efx13TOootaBombLeg = .data:0x804EA078; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TKageDead2 = .data:0x804EA08C; // type:object size:0x14 scope:global align:4 +__vt__Q23efx10TDangoTurn = .data:0x804EA0A0; // type:object size:0x14 scope:global align:4 +__vt__Q23efx11TDangoCrash = .data:0x804EA0B4; // type:object size:0x14 scope:global align:4 +__vt__Q33ebi11CardEReader4TMgr = .data:0x804EA0C8; // type:object size:0xC scope:global align:4 +@4350 = .data:0x804EA0D8; // type:object size:0x1C scope:local align:4 +__vt__Q33ebi6Screen6TOmake = .data:0x804EA0F4; // type:object size:0x4C scope:global align:4 +__vt__Q24Game31StateMachine = .data:0x804EA140; // type:object size:0x18 scope:weak align:4 +__vt__Q33ebi5Omake19FSMState_SelectGame = .data:0x804EA158; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi5Omake20FSMState_CardEScreen = .data:0x804EA180; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi6Screen12ArgOpenOmake = .data:0x804EA1A8; // type:object size:0xC scope:weak align:4 +__vt__Q33ebi5Omake20FSMState_OmakeScreen = .data:0x804EA1B4; // type:object size:0x28 scope:global align:4 +__vt__Q33ebi5Omake8FSMState = .data:0x804EA1DC; // type:object size:0x28 scope:global align:4 +__vt__Q24Game27FSMState = .data:0x804EA204; // type:object size:0x20 scope:weak align:4 +__vt__Q33ebi5Omake15FSMStateMachine = .data:0x804EA224; // type:object size:0x18 scope:global align:4 +__vt__Q33ebi6Screen11TOmakeCardE = .data:0x804EA240; // type:object size:0x4C scope:global align:4 +__vt__Q33ebi6Screen10TOmakeGame = .data:0x804EA290; // type:object size:0x4C scope:global align:4 +@5192 = .data:0x804EA2E0; // type:object size:0x3C scope:local align:4 +__vt__Q35efx2d8WorldMap10T2DRocketA = .data:0x804EA31C; // type:object size:0x18 scope:weak align:4 +__vt__Q35efx2d8WorldMap11ArgDirScale = .data:0x804EA334; // type:object size:0xC scope:weak align:4 +__vt__Q35efx2d8WorldMap10T2DShstar1 = .data:0x804EA340; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d8WorldMap11T2DMapFlare = .data:0x804EA37C; // type:object size:0x3C scope:weak align:4 +__vt__Q35efx2d8WorldMap13T2DRocketGlow = .data:0x804EA3B8; // type:object size:0x3C scope:weak align:4 +__vt__Q32kh6Screen8WorldMap = .data:0x804EA3F4; // type:object size:0x2C scope:global align:4 +__vt__Q34Game8WorldMap4Base = .data:0x804EA420; // type:object size:0x2C scope:weak align:4 +__vt__Q32kh6Screen16khUtilColorAnmWM = .data:0x804EA44C; // type:object size:0x20 scope:global align:4 +__vt__Q32kh6Screen16khUtilFadePaneWM = .data:0x804EA46C; // type:object size:0x24 scope:global align:4 +__vt__Q42kh6Screen14khUtilFadePane10khPaneNode = .data:0x804EA490; // type:object size:0xC scope:weak align:4 +@4148 = .data:0x804EA4A0; // type:object size:0x24 scope:local align:4 +__vt__Q32kh6Screen15SceneCaveResult = .data:0x804EA4C4; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen13ObjCaveResult = .data:0x804EA514; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen14DispCaveResult = .data:0x804EA58C; // type:object size:0x18 scope:weak align:4 +@2753 = .data:0x804EA5A8; // type:object size:0x2C scope:local align:4 +__vt__Q32kh6Screen21SceneDayEndResultTitl = .data:0x804EA5D4; // type:object size:0x50 scope:weak align:4 +__vt__Q32kh6Screen12SceneWinLose = .data:0x804EA624; // type:object size:0x50 scope:weak align:4 +__vt__Q32kh6Screen21SceneDayEndResultIncP = .data:0x804EA674; // type:object size:0x50 scope:weak align:4 +__vt__Q32kh6Screen21SceneDayEndResultItem = .data:0x804EA6C4; // type:object size:0x50 scope:weak align:4 +@4224 = .data:0x804EA718; // type:object size:0x20 scope:local align:4 +__vt__Q26Screen11EndSceneArg = .data:0x804EA738; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen15SArgChallenge1P = .data:0x804EA748; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen15SArgChallenge2P = .data:0x804EA758; // type:object size:0x10 scope:weak align:4 +__vt__Q32og9newScreen17SArgChallengeBase = .data:0x804EA768; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen11DispReadyGo = .data:0x804EA778; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen14DispFinalFloor = .data:0x804EA790; // type:object size:0x18 scope:weak align:4 +__vt__Q26Screen9Game2DMgr = .data:0x804EA7A8; // type:object size:0xC scope:global align:4 +@4191 = .data:0x804EA7B8; // type:object size:0x70 scope:local align:4 +@4322 = .data:0x804EA828; // type:object size:0x34 scope:local align:4 +__vt__Q29newScreen3Mgr = .data:0x804EA85C; // type:object size:0x30 scope:global align:4 +__vt__Q26Screen7MgrBase = .data:0x804EA88C; // type:object size:0x18 scope:weak align:4 +__vt__Q28Morimura16TPikminDownScene = .data:0x804EA8A4; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura19TPresidentDownScene = .data:0x804EA8F4; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura14TLujiDownScene = .data:0x804EA944; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura15TOrimaDownScene = .data:0x804EA994; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura14TGameOverScene = .data:0x804EA9E4; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura18TGameOverSceneBase = .data:0x804EAA34; // type:object size:0x50 scope:weak align:4 +__vt__Q28Morimura13THurryUpScene = .data:0x804EAA84; // type:object size:0x50 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EAAD8; // type:object size:0xC scope:local align:4 data:float +__vt__Q32kh6Screen12SceneReadyGo = .data:0x804EAAE4; // type:object size:0x50 scope:global align:4 +__vt__Q25efx2d9T2DGoChal = .data:0x804EAB34; // type:object size:0x18 scope:weak align:4 +__vt__Q25efx2d9T2DGoBatl = .data:0x804EAB4C; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen10ObjReadyGo = .data:0x804EAB64; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EABE0; // type:object size:0xC scope:local align:4 data:float +__vt__Q32kh6Screen15SceneFinalFloor = .data:0x804EABEC; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen13ObjFinalFloor = .data:0x804EAC3C; // type:object size:0x78 scope:global align:4 +arrow__Q22kh6Screen = .data:0x804EACB8; // type:object size:0x30 scope:local align:8 data:4byte +@5498 = .data:0x804EACE8; // type:object size:0x20 scope:local align:4 +__vt__Q32kh6Screen21SceneDayEndResultMail = .data:0x804EAD08; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen19ObjDayEndResultTitl = .data:0x804EAD58; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen19ObjDayEndResultMail = .data:0x804EADD0; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen20SArgDayEndResultItem = .data:0x804EAE78; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen20SArgDayEndResultMail = .data:0x804EAE88; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen19ObjDayEndResultIncP = .data:0x804EAE98; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen20SArgDayEndResultIncP = .data:0x804EAF40; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen20SArgDayEndResultBase = .data:0x804EAF50; // type:object size:0x10 scope:weak align:4 +__vt__Q32kh6Screen19ObjDayEndResultItem = .data:0x804EAF60; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen19ObjDayEndResultBase = .data:0x804EB008; // type:object size:0xA8 scope:global align:4 +__vt__Q32kh6Screen20DispDayEndResultMail = .data:0x804EB0B0; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen20DispDayEndResultIncP = .data:0x804EB0C8; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen20DispDayEndResultItem = .data:0x804EB0E0; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen14khUtilColorAnm = .data:0x804EB0F8; // type:object size:0x20 scope:global align:4 +__vt__Q32kh6Screen14khUtilFadePane = .data:0x804EB118; // type:object size:0x24 scope:global align:4 +__vt__Q32kh6Screen16SceneFinalResult = .data:0x804EB140; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen14ObjFinalResult = .data:0x804EB190; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen15DispFinalResult = .data:0x804EB208; // type:object size:0x18 scope:weak align:4 +cpNumTexLargeName__Q22kh6Screen = .data:0x804EB220; // type:object size:0x28 scope:global align:4 +__vt__Q32kh6Screen12ScenePayDept = .data:0x804EB248; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen10ObjPayDept = .data:0x804EB298; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen11DispPayDept = .data:0x804EB310; // type:object size:0x18 scope:weak align:4 +__vt__Q32kh6Screen10ObjWinLose = .data:0x804EB328; // type:object size:0x78 scope:global align:4 +__vt__Q32kh6Screen18SceneWinLoseReason = .data:0x804EB3A0; // type:object size:0x50 scope:global align:4 +__vt__Q32kh6Screen16ObjWinLoseReason = .data:0x804EB3F0; // type:object size:0x78 scope:global align:4 +__vt__5CNode = .data:0x804EB468; // type:object size:0x10 scope:global align:4 +__vt__4Node = .data:0x804EB478; // type:object size:0x14 scope:global align:4 +__vt__8ParmEnum = .data:0x804EB490; // type:object size:0x14 scope:global align:4 +__vt__10ParmString = .data:0x804EB4A4; // type:object size:0x14 scope:global align:4 +__vt__8BaseParm = .data:0x804EB4B8; // type:object size:0x14 scope:weak align:4 +__vt__9RamStream = .data:0x804EB4D0; // type:object size:0x18 scope:global align:4 +__vt__6Stream = .data:0x804EB4E8; // type:object size:0x18 scope:weak align:4 +__vt__Q23Sys11VertexTable = .data:0x804EB500; // type:object size:0x48 scope:global align:4 +__vt__Q23Sys13TriangleTable = .data:0x804EB548; // type:object size:0x48 scope:weak align:4 +__vt__31ArrayContainer = .data:0x804EB590; // type:object size:0x48 scope:weak align:4 +__vt__26Container = .data:0x804EB5D8; // type:object size:0x2C scope:weak align:4 +__vt__Q23Sys11GridDivider = .data:0x804EB604; // type:object size:0x30 scope:global align:4 +__vt__12MapCollision = .data:0x804EB638; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EB658; // type:object size:0xC scope:local align:4 data:float +__vt__11BlendCamera = .data:0x804EB664; // type:object size:0x7C scope:global align:4 +__vt__12LookAtCamera = .data:0x804EB6E0; // type:object size:0x80 scope:global align:4 +__vt__6Camera = .data:0x804EB760; // type:object size:0x7C scope:global align:4 +__vt__11CullFrustum = .data:0x804EB7DC; // type:object size:0x54 scope:global align:4 +__vt__7TagParm = .data:0x804EB830; // type:object size:0x18 scope:weak align:4 +__vt__13StringTagParm = .data:0x804EB848; // type:object size:0x18 scope:global align:4 +__vt__Q37MapCode3Mgr9CodeArray = .data:0x804EB860; // type:object size:0x48 scope:global align:4 +__vt__31ArrayContainer = .data:0x804EB8A8; // type:object size:0x48 scope:weak align:4 +__vt__26Container = .data:0x804EB8F0; // type:object size:0x2C scope:weak align:4 +__vt__Q23Sys7OBBTree = .data:0x804EB920; // type:object size:0x30 scope:global align:4 +__vt__Q23Sys10TriDivider = .data:0x804EB950; // type:object size:0x30 scope:global align:4 +localNtsc608x448IntDfProg = .data:0x804EB980; // type:object size:0x3C scope:local align:4 +localNtsc608x448IntDf = .data:0x804EB9BC; // type:object size:0x3C scope:local align:4 +localPal608x448IntDf = .data:0x804EB9F8; // type:object size:0x3C scope:local align:4 +localPal60608x448IntDf = .data:0x804EBA34; // type:object size:0x3C scope:local align:4 +sRenderModeTable = .data:0x804EBA70; // type:object size:0x10 scope:local align:4 +@3819 = .data:0x804EBA80; // type:object size:0xC scope:local align:4 data:4byte +@3836 = .data:0x804EBA8C; // type:object size:0xC scope:local align:4 data:4byte +__vt__9AppThread = .data:0x804EBA98; // type:object size:0x10 scope:weak align:4 +__vt__17Delegate<6System> = .data:0x804EBAA8; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM7Factory = .data:0x804EBAB4; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EBAC0; // type:object size:0xC scope:local align:4 data:float +__vt__7Section = .data:0x804EBACC; // type:object size:0x48 scope:global align:4 +__vt__8ISection = .data:0x804EBB14; // type:object size:0x18 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EBB30; // type:object size:0xC scope:local align:4 data:float +sSectionInfo__22@unnamed@gameflow_cpp@ = .data:0x804EBB3C; // type:object size:0x118 scope:local align:4 +__vt__8GameFlow = .data:0x804EBC54; // type:object size:0x10 scope:global align:4 +__vt__11ISectionMgr = .data:0x804EBC64; // type:object size:0x10 scope:weak align:4 +__vt__11MenuSection = .data:0x804EBC78; // type:object size:0x4C scope:global align:4 +__vt__9DvdThread = .data:0x804EBCC8; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBCD8; // type:object size:0xC scope:local align:4 data:float +__vt__17HorizonalSplitter = .data:0x804EBCE4; // type:object size:0x10 scope:global align:4 +__vt__8Splitter = .data:0x804EBCF4; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EBD08; // type:object size:0xC scope:local align:4 data:float +__vt__Q28SysShape8AnimInfo = .data:0x804EBD14; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape7AnimMgr = .data:0x804EBD24; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape13BlendAnimator = .data:0x804EBD34; // type:object size:0xC scope:global align:4 +__vt__Q28SysShape8Animator = .data:0x804EBD40; // type:object size:0x10 scope:global align:4 +__vt__12ResetManager = .data:0x804EBD50; // type:object size:0x10 scope:global align:4 +@3876 = .data:0x804EBD60; // type:object size:0x1C scope:local align:4 +__vt__8TimerInf = .data:0x804EBD80; // type:object size:0xC scope:global align:4 +__vt__9SysTimers = .data:0x804EBD8C; // type:object size:0x10 scope:global align:4 +__vt__8HeapInfo = .data:0x804EBDA0; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBDC8; // type:object size:0xC scope:local align:4 data:float +__vt__8LightMgr = .data:0x804EBDD4; // type:object size:0x20 scope:global align:4 +__vt__8LightObj = .data:0x804EBDF4; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBE18; // type:object size:0xC scope:local align:4 data:float +__vt__10BlackFader = .data:0x804EBE24; // type:object size:0x28 scope:global align:4 +__vt__14WipeOutInFader = .data:0x804EBE4C; // type:object size:0x28 scope:global align:4 +__vt__12WipeOutFader = .data:0x804EBE74; // type:object size:0x28 scope:global align:4 +__vt__11WipeInFader = .data:0x804EBE9C; // type:object size:0x28 scope:global align:4 +__vt__8WipeBase = .data:0x804EBEC4; // type:object size:0x28 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EBEF0; // type:object size:0xC scope:local align:4 data:float +@3971 = .data:0x804EBEFC; // type:object size:0xC scope:local align:4 data:4byte +@4637 = .data:0x804EBF08; // type:object size:0x20 scope:local align:4 +__vt__Q24Game12MovieContext = .data:0x804EBF28; // type:object size:0x18 scope:weak align:4 +__vt__30Delegate = .data:0x804EBF40; // type:object size:0xC scope:weak align:4 +__vt__Q24Game11MoviePlayer = .data:0x804EBF4C; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EBF58; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST11ObjectActor = .data:0x804EBF64; // type:object size:0xCC scope:global align:4 +__vt__Q34Game5P2JST10ObjectBase = .data:0x804EC030; // type:object size:0x1C scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EC050; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST12ObjectCamera = .data:0x804EC05C; // type:object size:0xD0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC130; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST15ObjectGameActor = .data:0x804EC13C; // type:object size:0xCC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC208; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST12ObjectSystem = .data:0x804EC214; // type:object size:0x80 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC298; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804EC2A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24Game9MovieList = .data:0x804EC2B4; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game11MovieConfig6TParms = .data:0x804EC2C4; // type:object size:0x10 scope:weak align:4 +__vt__Q24Game11MovieConfig = .data:0x804EC2D4; // type:object size:0x10 scope:weak align:4 +__vt__Q34Game10GameConfig5Parms = .data:0x804EC2E8; // type:object size:0x10 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EC2F8; // type:object size:0xC scope:local align:4 data:float +__vt__Q24ARAM4Node = .data:0x804EC308; // type:object size:0x10 scope:weak align:4 +...data.0 = .data:0x804EC318; // type:label scope:local +@2721 = .data:0x804EC318; // type:object size:0xC scope:local align:4 data:4byte +@2723 = .data:0x804EC324; // type:object size:0xC scope:local align:4 +@2725 = .data:0x804EC330; // type:object size:0xC scope:local align:4 +__vt__Q28Resource3Mgr = .data:0x804EC33C; // type:object size:0xC scope:global align:4 +__vt__Q28Resource10MgrCommand = .data:0x804EC348; // type:object size:0x28 scope:global align:4 +__vt__33Delegate = .data:0x804EC370; // type:object size:0xC scope:weak align:4 +__vt__Q28Resource4Node = .data:0x804EC388; // type:object size:0x1C scope:global align:4 +__vt__Q28Resource5Mgr2D = .data:0x804EC3A8; // type:object size:0xC scope:weak align:4 +__vt__Q23Sys17MatRepeatAnimator = .data:0x804EC3B8; // type:object size:0x14 scope:global align:4 +__vt__Q23Sys15MatLoopAnimator = .data:0x804EC3CC; // type:object size:0x14 scope:global align:4 +__vt__Q23Sys15MatBaseAnimator = .data:0x804EC3E0; // type:object size:0x14 scope:global align:4 +__vt__Q23Sys18MatTevRegAnimation = .data:0x804EC3F4; // type:object size:0x18 scope:global align:4 +__vt__Q23Sys15MatTexAnimation = .data:0x804EC40C; // type:object size:0x18 scope:global align:4 +__vt__Q23Sys16MatBaseAnimation = .data:0x804EC424; // type:object size:0x18 scope:weak align:4 +__vt__Q29P2DScreen10Mgr_tuning = .data:0x804EC440; // type:object size:0xA0 scope:global align:4 +__vt__Q29P2DScreen3Mgr = .data:0x804EC4E0; // type:object size:0xA0 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC580; // type:object size:0xC scope:local align:4 data:float +__vt__Q35P2JME5Movie8TControl = .data:0x804EC58C; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME5Movie19MessageWindowScreen = .data:0x804EC5D4; // type:object size:0xA0 scope:weak align:4 +__vt__Q35P2JME5Movie13PodIconScreen = .data:0x804EC674; // type:object size:0xA0 scope:global align:4 +__vt__Q35P2JME5Movie8AbtnPane = .data:0x804EC714; // type:object size:0x1C scope:global align:4 +__vt__Q35P2JME5Movie10WindowPane = .data:0x804EC730; // type:object size:0x1C scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC750; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804EC760; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST18ObjectSpecialActor = .data:0x804EC76C; // type:object size:0xCC scope:global align:4 +__vt__Q25P2JME18TSequenceProcessor = .data:0x804EC838; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EC8B0; // type:object size:0xC scope:local align:4 data:float +sFontResName__5P2JME = .data:0x804EC8BC; // type:object size:0x1C scope:local align:4 +sMesResName__5P2JME = .data:0x804EC8D8; // type:object size:0x1C scope:local align:4 +cBtnTexName__5P2JME = .data:0x804EC8F4; // type:object size:0x2C scope:local align:4 data:4byte +__vt__Q25P2JME3Mgr = .data:0x804EC920; // type:object size:0xC scope:global align:4 +__vt__Q25P2JME8TControl = .data:0x804EC930; // type:object size:0x48 scope:global align:4 +cBtnIconColor__Q25P2JME30@unnamed@messageRendering_cpp@ = .data:0x804EC978; // type:object size:0x58 scope:local align:4 +@3298 = .data:0x804EC9D0; // type:object size:0x20 scope:local align:4 +__vt__Q25P2JME19TRenderingProcessor = .data:0x804EC9F0; // type:object size:0x84 scope:global align:4 +__vt__Q25P2JME23TRenderingProcessorBase = .data:0x804ECA74; // type:object size:0x68 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ECAE0; // type:object size:0xC scope:local align:4 data:float +__vt__11ModelEffect = .data:0x804ECAEC; // type:object size:0x34 scope:global align:4 +__vt__Q25P2JME10TReference = .data:0x804ECB20; // type:object size:0x10 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ECB30; // type:object size:0xC scope:local align:4 data:float +govNAN___Q24Game5P2JST = .data:0x804ECB40; // type:object size:0xC scope:local align:4 data:float +__vt__Q28SysShape5Joint = .data:0x804ECB4C; // type:object size:0x10 scope:weak align:4 +__vt__Q28SysShape5Model = .data:0x804ECB5C; // type:object size:0x30 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ECB90; // type:object size:0xC scope:local align:4 data:float +__vt__Q35P2JME6Window8TControl = .data:0x804ECB9C; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME6Window19TRenderingProcessor = .data:0x804ECBE4; // type:object size:0x90 scope:global align:4 +__vt__Q35P2JME6Window18TSequenceProcessor = .data:0x804ECC74; // type:object size:0x78 scope:global align:4 +__vt__Q35P2JME6Window8DrawInfo = .data:0x804ECCEC; // type:object size:0x10 scope:weak align:4 +@2936 = .data:0x804ECD00; // type:object size:0x30 scope:local align:4 +@3017 = .data:0x804ECD30; // type:object size:0x30 scope:local align:4 +@3052 = .data:0x804ECD60; // type:object size:0x30 scope:local align:4 +@3092 = .data:0x804ECD90; // type:object size:0x30 scope:local align:4 +@3141 = .data:0x804ECDC0; // type:object size:0x30 scope:local align:4 +@3181 = .data:0x804ECDF0; // type:object size:0x30 scope:local align:4 +@3238 = .data:0x804ECE20; // type:object size:0x30 scope:local align:4 +__vt__13MemoryCardMgr = .data:0x804ECE50; // type:object size:0x2C scope:global align:4 +__vt__20MemoryCardMgrCommand = .data:0x804ECE7C; // type:object size:0xC scope:weak align:4 +__vt__24MemoryCardMgrCommandBase = .data:0x804ECE88; // type:object size:0xC scope:weak align:4 +@3147 = .data:0x804ECE98; // type:object size:0x30 scope:local align:4 +__vt__Q34Game10MemoryCard25MgrCommandGetPlayerHeader = .data:0x804ECEC8; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10MemoryCard20MgrCommandCopyPlayer = .data:0x804ECED4; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10MemoryCard18MgrCommandPlayerNo = .data:0x804ECEE0; // type:object size:0xC scope:weak align:4 +__vt__Q34Game10MemoryCard3Mgr = .data:0x804ECEEC; // type:object size:0x2C scope:global align:4 +__vt__Q34Game10MemoryCard8Resource = .data:0x804ECF18; // type:object size:0xC scope:global align:4 +...data.0 = .data:0x804ECF28; // type:label scope:local +govNAN___Q24Game5P2JST = .data:0x804ECF38; // type:object size:0xC scope:local align:4 data:float +@4590 = .data:0x804ECF44; // type:object size:0xC scope:local align:4 data:4byte +@4931 = .data:0x804ECF50; // type:object size:0x2C scope:local align:4 +@5253 = .data:0x804ECF7C; // type:object size:0x2C scope:local align:4 +@5372 = .data:0x804ECFA8; // type:object size:0xC scope:local align:4 data:4byte +@5507 = .data:0x804ECFB4; // type:object size:0xC scope:local align:4 +@5510 = .data:0x804ECFC0; // type:object size:0xC scope:local align:4 +@5512 = .data:0x804ECFCC; // type:object size:0xC scope:local align:4 +__vt__11BootSection = .data:0x804ED080; // type:object size:0x50 scope:global align:4 +__vt__23Delegate<11BootSection> = .data:0x804ED0D0; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804ED0E8; // type:object size:0xC scope:local align:4 data:float +@4195 = .data:0x804ED0F4; // type:object size:0xC scope:local align:4 data:4byte +@4581 = .data:0x804ED100; // type:object size:0xC scope:local align:4 data:4byte +@4584 = .data:0x804ED10C; // type:object size:0xC scope:local align:4 data:4byte +@5104 = .data:0x804ED118; // type:object size:0x1C scope:local align:4 +@5646 = .data:0x804ED134; // type:object size:0xC scope:local align:4 data:4byte +@5751 = .data:0x804ED140; // type:object size:0x30 scope:local align:4 +__vt__34Delegate1 = .data:0x804ED170; // type:object size:0xC scope:weak align:4 +__vt__18IDelegate1 = .data:0x804ED17C; // type:object size:0xC scope:weak align:4 +__vt__11HIORootNode = .data:0x804ED188; // type:object size:0x10 scope:weak align:4 +__vt__Q25Title7Section = .data:0x804ED198; // type:object size:0x54 scope:global align:4 +__vt__26Delegate = .data:0x804ED1EC; // type:object size:0xC scope:weak align:4 +__vt__Q212LoadResource4Node = .data:0x804ED1F8; // type:object size:0x1C scope:global align:4 +__vt__15RootMenuSection = .data:0x804ED218; // type:object size:0x4C scope:global align:4 +sLogoLocate__Q24Demo25@unnamed@demoSection_cpp@ = .data:0x804ED268; // type:object size:0x20 scope:local align:4 +@3207 = .data:0x804ED288; // type:object size:0xC scope:local align:4 data:4byte +__vt__25Delegate = .data:0x804ED294; // type:object size:0xC scope:weak align:4 +__vt__Q24Demo11HIORootNode = .data:0x804ED2A0; // type:object size:0x10 scope:weak align:4 +__vt__Q24Demo7Section = .data:0x804ED2B0; // type:object size:0x50 scope:global align:4 +VolumeTable = .data:0x804ED300; // type:object size:0x100 scope:local align:4 +@3213 = .data:0x804ED400; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q24Game9THPPlayer = .data:0x804ED40C; // type:object size:0x2C scope:global align:4 +__vt__27Delegate = .data:0x804ED438; // type:object size:0xC scope:weak align:4 +__vt__Q27Caption3Mgr = .data:0x804ED448; // type:object size:0x14 scope:global align:4 +__vt__Q27Caption4Node = .data:0x804ED45C; // type:object size:0x14 scope:global align:4 +__vt__Q35P2JME7Caption8TControl = .data:0x804ED470; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME7Caption18TSequenceProcessor = .data:0x804ED4B8; // type:object size:0x78 scope:weak align:4 +__vt__Q35P2JME7Caption19TRenderingProcessor = .data:0x804ED530; // type:object size:0x90 scope:global align:4 +@2658 = .data:0x804ED5C0; // type:object size:0xC scope:local align:4 data:4byte +__vt__Q26Screen9SceneBase = .data:0x804ED5CC; // type:object size:0x50 scope:global align:4 +__vt__55Delegate1 = .data:0x804ED61C; // type:object size:0xC scope:weak align:4 +__vt__36IDelegate1 = .data:0x804ED628; // type:object size:0xC scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804ED638; // type:object size:0xC scope:local align:4 data:float +__vt__Q26Screen3Mgr = .data:0x804ED644; // type:object size:0x30 scope:global align:4 +__vt__Q26Screen10MgrCommand = .data:0x804ED674; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen13SceneInfoList = .data:0x804ED684; // type:object size:0x10 scope:weak align:4 +__vt__Q26Screen7ObjBase = .data:0x804ED698; // type:object size:0x78 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ED710; // type:object size:0xC scope:local align:4 data:float +__vt__Q34Game5P2JST19ObjectParticleActor = .data:0x804ED71C; // type:object size:0xEC scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804ED808; // type:object size:0xC scope:local align:4 data:float +__vt__27Pikmin_TCreateObject_JAudio = .data:0x804ED814; // type:object size:0x10 scope:global align:4 +__vt__Q35P2JME15IllustratedBook8TControl = .data:0x804ED828; // type:object size:0x48 scope:global align:4 +__vt__Q35P2JME15IllustratedBook19TRenderingProcessor = .data:0x804ED870; // type:object size:0x90 scope:global align:4 +__vt__Q35P2JME15IllustratedBook18TSequenceProcessor = .data:0x804ED900; // type:object size:0x78 scope:weak align:4 +__vt__Q25P2JME13TSeqProcNoSeq = .data:0x804ED978; // type:object size:0x78 scope:weak align:4 +__vt__Q23Sys11DrawBuffers = .data:0x804ED9F0; // type:object size:0x10 scope:global align:4 +__vt__Q23Sys10DrawBuffer = .data:0x804EDA00; // type:object size:0x10 scope:global align:4 +gMessage_jpn__8DvdError = .data:0x804EDA10; // type:object size:0x18 scope:global align:4 +gMessage_eng__8DvdError = .data:0x804EDA28; // type:object size:0x18 scope:global align:4 +gMessage_ger__8DvdError = .data:0x804EDA40; // type:object size:0x18 scope:global align:4 +gMessage_fra__8DvdError = .data:0x804EDA58; // type:object size:0x18 scope:global align:4 +gMessage_spa__8DvdError = .data:0x804EDA70; // type:object size:0x18 scope:global align:4 +gMessage_ita__8DvdError = .data:0x804EDA88; // type:object size:0x18 scope:global align:4 +sAramResName2D__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDAA0; // type:object size:0x34 scope:local align:4 data:4byte +sAramResName2DCmn__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDAD4; // type:object size:0x10 scope:local align:4 data:4byte +sAramResDemo__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDAE4; // type:object size:0x4C scope:local align:4 data:4byte +sAramResItem__Q211Pikmin2ARAM28@unnamed@pikmin2AramMgr_cpp@ = .data:0x804EDB30; // type:object size:0x60 scope:local align:4 data:4byte +__vt__Q211Pikmin2ARAM3Mgr = .data:0x804EDB90; // type:object size:0xC scope:weak align:4 +__vt__Q25P2JME8Analyzer = .data:0x804EDBA0; // type:object size:0x68 scope:global align:4 +@3790 = .data:0x804EDC08; // type:object size:0x84 scope:local align:4 +__vt__Q23PSM13ExiteDirector = .data:0x804EDC90; // type:object size:0x38 scope:weak align:4 +__vt__Q23PSM17PikAttackDirector = .data:0x804EDCC8; // type:object size:0x38 scope:weak align:4 +__vt__Q23PSM19ActorDirector_Kehai = .data:0x804EDD00; // type:object size:0x48 scope:global align:4 +__vt__Q23PSM20ActorDirector_Battle = .data:0x804EDD48; // type:object size:0x48 scope:global align:4 +__vt__Q23PSM19ActorDirector_Enemy = .data:0x804EDD90; // type:object size:0x48 scope:global align:4 +__vt__Q23PSM20ActorDirector_Scaled = .data:0x804EDDD8; // type:object size:0x40 scope:global align:4 +__vt__Q23PSM21ActorDirector_TrackOn = .data:0x804EDE18; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM17ListDirectorActor = .data:0x804EDE50; // type:object size:0x14 scope:global align:4 +__vt__Q23PSM22TrackOnDirector_Scaled = .data:0x804EDE64; // type:object size:0x3C scope:global align:4 +__vt__Q23PSM22TrackOnDirector_Voting = .data:0x804EDEA0; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM19TrackOnDirectorBase = .data:0x804EDED8; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM28PikminNumberDirector_AutoBgm = .data:0x804EDF10; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM20PikminNumberDirector = .data:0x804EDF48; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM25ActorDirector_TempoChange = .data:0x804EDF80; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM23TempoChangeDirectorBase = .data:0x804EDFB8; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM16SwitcherDirector = .data:0x804EDFF0; // type:object size:0x38 scope:weak align:4 +__vt__Q23PSM14DamageDirector = .data:0x804EE028; // type:object size:0x38 scope:global align:4 +__vt__Q23PSM15OneShotDirector = .data:0x804EE060; // type:object size:0x38 scope:weak align:4 +govNAN___Q24Game5P2JST = .data:0x804EE098; // type:object size:0xC scope:local align:4 data:float +@4001 = .data:0x804EE0A4; // type:object size:0x54 scope:local align:4 +@5459 = .data:0x804EE0F8; // type:object size:0x3C scope:local align:4 +@5725 = .data:0x804EE134; // type:object size:0x34 scope:local align:4 +__vt__Q23PSM10BigBossSeq = .data:0x804EE168; // type:object size:0x68 scope:global align:4 +__vt__Q23PSM13MiddleBossSeq = .data:0x804EE1D0; // type:object size:0x68 scope:global align:4 +__vt__Q23PSM8SceneMgr = .data:0x804EE238; // type:object size:0x28 scope:global align:4 +__vt__Q28PSSystem8SceneMgr = .data:0x804EE260; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM15EnvSeObjBuilder = .data:0x804EE26C; // type:object size:0x14 scope:global align:4 +__vt__Q23PSM24EnvSe_Perspective_AvoidY = .data:0x804EE280; // type:object size:0x18 scope:global align:4 +__vt__Q23PSM12Env_Pollutin = .data:0x804EE298; // type:object size:0x18 scope:global align:4 +@6063 = .data:0x804EE2B0; // type:object size:0x1EC scope:local align:4 +__vt__Q23PSM7Cluster = .data:0x804EE49C; // type:object size:0x88 scope:weak align:4 +__vt__Q23PSM4Navi = .data:0x804EE524; // type:object size:0x88 scope:global align:4 +__vt__Q23PSM4Piki = .data:0x804EE5AC; // type:object size:0x88 scope:global align:4 +__vt__Q23PSM10PelletItem = .data:0x804EE634; // type:object size:0x98 scope:weak align:4 +__vt__Q23PSM13PelletOtakara = .data:0x804EE6CC; // type:object size:0x98 scope:weak align:4 +__vt__Q23PSM7Otakara = .data:0x804EE764; // type:object size:0x98 scope:global align:4 +__vt__Q23PSM8WorkItem = .data:0x804EE7FC; // type:object size:0x98 scope:global align:4 +__vt__Q23PSM25OtakaraEventLink_2PBattle = .data:0x804EE894; // type:object size:0x20 scope:global align:4 +__vt__Q23PSM16OtakaraEventLink = .data:0x804EE8B4; // type:object size:0x20 scope:global align:4 +__vt__Q23PSM9EventLink = .data:0x804EE8D4; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM12DirectorLink = .data:0x804EE8F0; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM19Enemy_SpecialChappy = .data:0x804EE90C; // type:object size:0xD4 scope:global align:4 +__vt__Q23PSM12EnemyBigBoss = .data:0x804EE9E0; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM12EnemyMidBoss = .data:0x804EEAD0; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM9EnemyBoss = .data:0x804EEBC0; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM8EnemyBig = .data:0x804EECB0; // type:object size:0xD4 scope:global align:4 +__vt__Q23PSM9Tsuyukusa = .data:0x804EED84; // type:object size:0x88 scope:weak align:4 +__vt__Q23PSM18EnemyNotAggressive = .data:0x804EEE0C; // type:object size:0xE0 scope:weak align:4 +__vt__Q23PSM9EnemyBase = .data:0x804EEEEC; // type:object size:0xD4 scope:global align:4 +__vt__Q23PSM9KehaiLink = .data:0x804EEFC0; // type:object size:0x10 scope:global align:4 +__vt__Q23PSM10BattleLink = .data:0x804EEFD0; // type:object size:0x10 scope:global align:4 +__vt__Q23PSM13CreatureAnime = .data:0x804EEFE0; // type:object size:0xA4 scope:global align:4 +__vt__Q23PSM11CreatureObj = .data:0x804EF084; // type:object size:0x88 scope:global align:4 +__vt__Q23PSM8Creature = .data:0x804EF10C; // type:object size:0x40 scope:global align:4 +__vt__Q23PSM6ObjMgr = .data:0x804EF14C; // type:object size:0x24 scope:global align:4 +__vt__Q23PSM7ObjBase = .data:0x804EF170; // type:object size:0x20 scope:global align:4 +__vt__Q23PSM4Demo = .data:0x804EF190; // type:object size:0x18 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EF1A8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23PSM15Scene_NoObjects = .data:0x804EF1B4; // type:object size:0x54 scope:global align:4 +__vt__Q23PSM14Scene_WorldMap = .data:0x804EF208; // type:object size:0x54 scope:weak align:4 +__vt__Q23PSM11Scene_Zukan = .data:0x804EF25C; // type:object size:0x58 scope:global align:4 +__vt__Q23PSM15Scene_Challenge = .data:0x804EF2B4; // type:object size:0x74 scope:global align:4 +__vt__Q23PSM10Scene_Cave = .data:0x804EF328; // type:object size:0x74 scope:global align:4 +__vt__Q23PSM12Scene_Ground = .data:0x804EF39C; // type:object size:0x74 scope:global align:4 +__vt__Q28PSSystem39SingletonBase = .data:0x804EF410; // type:object size:0xC scope:weak align:4 +__vt__Q33PSM12BossBgmFader3Mgr = .data:0x804EF41C; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM10Scene_Game = .data:0x804EF428; // type:object size:0x74 scope:global align:4 +__vt__Q28PSSystem34SingletonBase = .data:0x804EF49C; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM11ObjCalcBase = .data:0x804EF4A8; // type:object size:0x1C scope:weak align:4 +__vt__Q23PSM13Scene_Objects = .data:0x804EF4C4; // type:object size:0x58 scope:global align:4 +__vt__Q23PSM10Scene_Demo = .data:0x804EF51C; // type:object size:0x54 scope:global align:4 +__vt__Q23PSM12Scene_Global = .data:0x804EF570; // type:object size:0x54 scope:global align:4 +__vt__Q23PSM9SceneBase = .data:0x804EF5C4; // type:object size:0x54 scope:global align:4 +__vt__Q33PSM12BossBgmFader17TypedProc_MidBoss = .data:0x804EF618; // type:object size:0xC scope:global align:4 +__vt__Q33PSM12BossBgmFader9TypedProc = .data:0x804EF624; // type:object size:0xC scope:global align:4 +@3551 = .data:0x804EF630; // type:object size:0x20 scope:local align:4 +@3952 = .data:0x804EF650; // type:object size:0x154 scope:local align:4 +__vt__Q23PSM14ClusterFactory = .data:0x804EF7A4; // type:object size:0x10 scope:weak align:4 +__vt__Q23PSM14WorldMapRocket = .data:0x804EF7B4; // type:object size:0xC scope:global align:4 +@3920 = .data:0x804EF7C0; // type:object size:0x20 scope:local align:4 +@3968 = .data:0x804EF7E0; // type:object size:0x20 scope:local align:4 +@4292 = .data:0x804EF800; // type:object size:0x20 scope:local align:4 +__vt__Q23PSM20DirectorMgr_2PBattle = .data:0x804EF820; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM18DirectorMgr_Battle = .data:0x804EF83C; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM25DirectorMgr_Scene_AutoBgm = .data:0x804EF858; // type:object size:0x24 scope:global align:4 +__vt__Q23PSM19GroundDirector_Cave = .data:0x804EF87C; // type:object size:0x38 scope:weak align:4 +__vt__Q28PSSystem38SingletonBase = .data:0x804EF8B4; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM17DirectorMgr_Scene = .data:0x804EF8C0; // type:object size:0x24 scope:global align:4 +govNAN___Q24Game5P2JST = .data:0x804EF8E8; // type:object size:0xC scope:local align:4 data:float +__vt__Q23PSM7SeSound = .data:0x804EF8F4; // type:object size:0xF4 scope:global align:4 +__vt__Q23PSM15BgmTrackMapFile = .data:0x804EF9E8; // type:object size:0x1C scope:global align:4 +sThpDemoDinamics__3PSM = .data:0x804EFA08; // type:object size:0xF0 scope:global align:4 +__vt__Q23PSM11CreaturePrm = .data:0x804EFAF8; // type:object size:0xC scope:weak align:4 +__vt__Q28PSSystem34SingletonBase = .data:0x804EFB04; // type:object size:0xC scope:weak align:4 +__vt__Q23PSM14ObjCalc_2PGame = .data:0x804EFB10; // type:object size:0x1C scope:global align:4 +__vt__Q23PSM18ObjCalc_SingleGame = .data:0x804EFB2C; // type:object size:0x1C scope:global align:4 +aoData$1232 = .bss:0x804EFB60; // type:object size:0x90 scope:local align:4 data:4byte +...bss.0 = .bss:0x804EFBF0; // type:label scope:local +@740 = .bss:0x804EFBF0; // type:object size:0xC scope:local align:4 +soovv_actor_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFBFC; // type:object size:0x10 scope:local align:4 data:4byte +@743 = .bss:0x804EFC0C; // type:object size:0xC scope:local align:4 +soovv_actor_RELATION_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFC18; // type:object size:0x10 scope:local align:4 data:4byte +@746 = .bss:0x804EFC28; // type:object size:0xC scope:local align:4 +soovv_camera_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFC34; // type:object size:0x10 scope:local align:4 data:4byte +@749 = .bss:0x804EFC44; // type:object size:0xC scope:local align:4 +soovv_camera_TARGET_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFC50; // type:object size:0x10 scope:local align:4 data:4byte +@752 = .bss:0x804EFC60; // type:object size:0xC scope:local align:4 +soovv_light_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFC6C; // type:object size:0x10 scope:local align:4 data:4byte +@755 = .bss:0x804EFC7C; // type:object size:0xC scope:local align:4 +soovv_particle_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFC88; // type:object size:0x10 scope:local align:4 data:4byte +@758 = .bss:0x804EFC98; // type:object size:0xC scope:local align:4 +soovv_sound_PARENT_ENABLE___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFCA4; // type:object size:0x10 scope:local align:4 data:4byte +@761 = .bss:0x804EFCB4; // type:object size:0xC scope:local align:4 +soovv_sound_LOCATED___Q27JStudio28@unnamed@jstudio_object_cpp@ = .bss:0x804EFCC0; // type:object size:0x10 scope:local align:4 data:4byte +@802 = .bss:0x804EFCD0; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFCE0; // type:label scope:local +@917 = .bss:0x804EFCE0; // type:object size:0xC scope:local align:4 +@918 = .bss:0x804EFCEC; // type:object size:0xC scope:local align:4 +@919 = .bss:0x804EFCF8; // type:object size:0xC scope:local align:4 +@920 = .bss:0x804EFD04; // type:object size:0xC scope:local align:4 +@921 = .bss:0x804EFD10; // type:object size:0xC scope:local align:4 +@922 = .bss:0x804EFD1C; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFD28; // type:label scope:local +@1056 = .bss:0x804EFD28; // type:object size:0xC scope:local align:4 +@1057 = .bss:0x804EFD34; // type:object size:0xC scope:local align:4 +@1064 = .bss:0x804EFD40; // type:object size:0xC scope:local align:4 +@1071 = .bss:0x804EFD4C; // type:object size:0xC scope:local align:4 +@1072 = .bss:0x804EFD58; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFD68; // type:label scope:local +@998 = .bss:0x804EFD68; // type:object size:0xC scope:local align:4 +@1003 = .bss:0x804EFD74; // type:object size:0xC scope:local align:4 +@1008 = .bss:0x804EFD80; // type:object size:0xC scope:local align:4 +@1013 = .bss:0x804EFD8C; // type:object size:0xC scope:local align:4 +@1014 = .bss:0x804EFD98; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFDA8; // type:label scope:local +@831 = .bss:0x804EFDA8; // type:object size:0xC scope:local align:4 +@836 = .bss:0x804EFDB4; // type:object size:0xC scope:local align:4 +@837 = .bss:0x804EFDC0; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804EFDD0; // type:label scope:local +aoData$1256 = .bss:0x804EFDD0; // type:object size:0x20 scope:local align:4 data:float +@1499 = .bss:0x804EFDF0; // type:object size:0xC scope:local align:4 +@1502 = .bss:0x804EFDFC; // type:object size:0xC scope:local align:4 +@1505 = .bss:0x804EFE08; // type:object size:0xC scope:local align:4 +@1508 = .bss:0x804EFE14; // type:object size:0xC scope:local align:4 +@1511 = .bss:0x804EFE20; // type:object size:0xC scope:local align:4 +@1513 = .bss:0x804EFE2C; // type:object size:0xC scope:local align:4 +@487 = .bss:0x804EFE38; // type:object size:0xC scope:local align:4 +decompMutex = .bss:0x804EFE44; // type:object size:0x18 scope:local align:4 +@295 = .bss:0x804EFE60; // type:object size:0xC scope:local align:4 +@299 = .bss:0x804EFE70; // type:object size:0xC scope:local align:4 +@612 = .bss:0x804EFE80; // type:object size:0xC scope:local align:4 +@299 = .bss:0x804EFE90; // type:object size:0xC scope:local align:4 +decompMutex = .bss:0x804EFE9C; // type:object size:0x18 scope:local align:4 +@295 = .bss:0x804EFEB8; // type:object size:0xC scope:local align:4 +decompMutex = .bss:0x804EFEC4; // type:object size:0x18 scope:local align:4 +@2412 = .bss:0x804EFEE0; // type:object size:0xC scope:local align:4 +@477 = .bss:0x804EFEF0; // type:object size:0xC scope:local align:4 +@1165 = .bss:0x804EFEFC; // type:object size:0xC scope:local align:4 +sMessageFileLine__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .bss:0x804EFF08; // type:object size:0x40 scope:local align:4 +sMessageString__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .bss:0x804EFF48; // type:object size:0x100 scope:local align:4 +exCallbackObject = .bss:0x804F0048; // type:object size:0x14 scope:local align:4 data:4byte +@2412 = .bss:0x804F005C; // type:object size:0xC scope:local align:4 +context$2483 = .bss:0x804F0068; // type:object size:0x2C8 scope:local align:8 +@520 = .bss:0x804F0330; // type:object size:0xC scope:local align:4 +@1483 = .bss:0x804F033C; // type:object size:0xC scope:local align:4 +@1733 = .bss:0x804F0348; // type:object size:0xC scope:local align:4 +p_name$459 = .bss:0x804F0358; // type:object size:0x101 scope:local align:4 data:byte +@2414 = .bss:0x804F0460; // type:object size:0xC scope:local align:4 +clear_z_tobj = .bss:0x804F046C; // type:object size:0x20 scope:local align:4 +osc$639 = .bss:0x804F0490; // type:object size:0x18 scope:local align:4 data:float +...bss.0 = .bss:0x804F04A8; // type:label scope:local +sDspSyncCallback__9JASDriver = .bss:0x804F04A8; // type:object size:0x80 scope:local align:4 +sSubFrameCallback__9JASDriver = .bss:0x804F0528; // type:object size:0x80 scope:local align:4 +sUpdateDacCallback__9JASDriver = .bss:0x804F05A8; // type:object size:0x80 scope:local align:4 +@614 = .bss:0x804F0628; // type:object size:0xC scope:local align:4 +@615 = .bss:0x804F0634; // type:object size:0xC scope:local align:4 +@618 = .bss:0x804F0640; // type:object size:0xC scope:local align:4 +audioAramHeap__9JASKernel = .bss:0x804F064C; // type:object size:0x44 scope:local align:4 +sMutex = .bss:0x804F0690; // type:object size:0x18 scope:local align:4 +sDmaDacBuffer__9JASDriver = .bss:0x804F06A8; // type:object size:0xC scope:local align:4 data:4byte +audio_task = .bss:0x804F06C0; // type:object size:0x50 scope:local align:32 +AUDIO_YIELD_BUFFER = .bss:0x804F0720; // type:object size:0x2000 scope:local align:32 +taskwork = .bss:0x804F2720; // type:object size:0x80 scope:local align:4 +sync_stack = .bss:0x804F27A0; // type:object size:0xC scope:local align:4 data:4byte +@1162 = .bss:0x804F27B0; // type:object size:0xC scope:local align:4 +gTRKEventQueue = .bss:0x804F27C0; // type:object size:0x28 scope:global align:4 +gTRKBigEndian = .bss:0x804F27E8; // type:object size:0x4 scope:global align:4 data:4byte +gTRKMsgBufs = .bss:0x804F27F0; // type:object size:0x19B0 scope:global align:4 +gTRKFramingState = .bss:0x804F41A0; // type:object size:0x14 scope:local align:4 data:4byte +IsTRKConnected = .bss:0x804F41B8; // type:object size:0x4 scope:local align:4 data:4byte +TRK_saved_exceptionID = .bss:0x804F41C0; // type:object size:0x2 scope:local align:2 data:2byte +gTRKState = .bss:0x804F41C4; // type:object size:0xA4 scope:global align:4 data:4byte +gTRKCPUState = .bss:0x804F4268; // type:object size:0x430 scope:global align:8 +gTRKSaveState = .bss:0x804F4698; // type:object size:0x94 scope:global align:4 data:4byte +TRKvalue128_temp = .bss:0x804F472C; // type:object size:0x10 scope:global align:4 +lc_base = .bss:0x804F4740; // type:object size:0x4 scope:local align:4 data:4byte +TRK_mainError = .bss:0x804F4748; // type:object size:0x4 scope:local align:4 data:4byte +TRK_Use_BBA = .bss:0x804F4750; // type:object size:0x1 scope:global align:1 data:byte +bUseSerialIO = .bss:0x804F4758; // type:object size:0x1 scope:local align:1 data:byte +gRecvBuf = .bss:0x804F4760; // type:object size:0x800 scope:local align:4 +gRecvCB = .bss:0x804F4F60; // type:object size:0x1C scope:local align:4 +gRecvBuf = .bss:0x804F4F80; // type:object size:0x500 scope:local align:4 +gRecvCB = .bss:0x804F5480; // type:object size:0x1C scope:local align:4 +fragmentinfo = .bss:0x804F54A0; // type:object size:0xC scope:local align:4 data:4byte +__atexit_funcs = .bss:0x804F54B0; // type:object size:0x100 scope:global align:4 +protopool$192 = .bss:0x804F55B0; // type:object size:0x38 scope:local align:4 +stderr_buff = .bss:0x804F55E8; // type:object size:0x100 scope:local align:4 +stdout_buff = .bss:0x804F56E8; // type:object size:0x100 scope:local align:4 +stdin_buff = .bss:0x804F57E8; // type:object size:0x100 scope:local align:4 +...bss.0 = .bss:0x804F58E8; // type:label scope:local +regs = .bss:0x804F58E8; // type:object size:0x76 scope:local align:4 data:2byte +shdwRegs = .bss:0x804F5960; // type:object size:0x76 scope:local align:4 +HorVer = .bss:0x804F59D8; // type:object size:0x58 scope:local align:4 data:2byte +...bss.0 = .bss:0x804F5A30; // type:label scope:local +__CARDBlock = .bss:0x804F5A30; // type:object size:0x220 scope:global align:8 data:4byte +__CARDDiskNone = .bss:0x804F5C50; // type:object size:0x20 scope:global align:4 +...bss.0 = .bss:0x804F5C70; // type:label scope:local +CommandList = .bss:0x804F5C70; // type:object size:0x3C scope:local align:4 data:4byte +AlarmForWA = .bss:0x804F5CB0; // type:object size:0x28 scope:local align:8 +AlarmForTimeout = .bss:0x804F5CD8; // type:object size:0x28 scope:local align:8 +AlarmForBreak = .bss:0x804F5D00; // type:object size:0x28 scope:local align:8 +Prev = .bss:0x804F5D28; // type:object size:0xC scope:local align:4 +Curr = .bss:0x804F5D34; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x804F5D40; // type:label scope:local +BB2 = .bss:0x804F5D40; // type:object size:0x20 scope:local align:32 +CurrDiskID = .bss:0x804F5D60; // type:object size:0x20 scope:local align:32 +DummyCommandBlock = .bss:0x804F5D80; // type:object size:0x30 scope:local align:4 +ResetAlarm = .bss:0x804F5DB0; // type:object size:0x28 scope:local align:8 +...bss.0 = .bss:0x804F5DD8; // type:label scope:local +WaitingQueue = .bss:0x804F5DD8; // type:object size:0x20 scope:local align:4 data:4byte +bb2Buf = .bss:0x804F5DF8; // type:object size:0x3F scope:local align:4 +block$18 = .bss:0x804F5E38; // type:object size:0x30 scope:local align:4 +Ecb = .bss:0x804F5E68; // type:object size:0xC0 scope:local align:4 data:4byte +...bss.0 = .bss:0x804F5F28; // type:label scope:local +FifoObj = .bss:0x804F5F28; // type:object size:0x80 scope:local align:4 +gxData = .bss:0x804F5FA8; // type:object size:0x5B0 scope:local align:4 +...bss.0 = .bss:0x804F6560; // type:label scope:local +DriveInfo = .bss:0x804F6560; // type:object size:0x20 scope:local align:32 +DriveBlock = .bss:0x804F6580; // type:object size:0x30 scope:local align:4 +...bss.0 = .bss:0x804F65B0; // type:label scope:local +__OSErrorTable = .bss:0x804F65B0; // type:object size:0x44 scope:global align:4 data:4byte +...bss.0 = .bss:0x804F6600; // type:label scope:local +Header = .bss:0x804F6600; // type:object size:0x20 scope:local align:32 +...bss.0 = .bss:0x804F6620; // type:label scope:local +Scb = .bss:0x804F6620; // type:object size:0x54 scope:local align:32 data:4byte +...bss.0 = .bss:0x804F6678; // type:label scope:local +RunQueue = .bss:0x804F6678; // type:object size:0x100 scope:local align:4 data:4byte +IdleThread = .bss:0x804F6778; // type:object size:0x318 scope:local align:8 +DefaultThread = .bss:0x804F6A90; // type:object size:0x318 scope:local align:8 +IdleContext = .bss:0x804F6DA8; // type:object size:0x2C8 scope:local align:8 +...bss.0 = .bss:0x804F7070; // type:label scope:local +Type = .bss:0x804F7070; // type:object size:0x10 scope:local align:4 +Origin = .bss:0x804F7080; // type:object size:0x30 scope:local align:4 +CmdProbeDevice = .bss:0x804F70B0; // type:object size:0x10 scope:local align:4 +...bss.0 = .bss:0x804F70C0; // type:label scope:local +Packet = .bss:0x804F70C0; // type:object size:0x80 scope:local align:8 data:4byte +Alarm = .bss:0x804F7140; // type:object size:0xA0 scope:local align:8 +TypeTime = .bss:0x804F71E0; // type:object size:0x20 scope:local align:8 +XferTime = .bss:0x804F7200; // type:object size:0x20 scope:local align:8 +TypeCallback = .bss:0x804F7220; // type:object size:0x40 scope:local align:4 +RDSTHandler = .bss:0x804F7260; // type:object size:0x10 scope:local align:4 data:4byte +InputBufferValid = .bss:0x804F7270; // type:object size:0x10 scope:local align:4 +InputBuffer = .bss:0x804F7280; // type:object size:0x20 scope:local align:4 +InputBufferVcount = .bss:0x804F72A0; // type:object size:0x10 scope:local align:4 +cmdFixDevice$327 = .bss:0x804F72B0; // type:object size:0x10 scope:local align:4 +...bss.0 = .bss:0x804F72C0; // type:label scope:local +__THPIDCTWorkspace = .bss:0x804F72C0; // type:object size:0x100 scope:local align:32 +__THPLCWork512 = .bss:0x804F73C0; // type:object size:0xC scope:local align:4 +__THPLCWork672 = .bss:0x804F73CC; // type:object size:0xC scope:local align:4 +__THPMCUBuffer = .bss:0x804F73D8; // type:object size:0x18 scope:local align:4 data:4byte +SecParams = .bss:0x804F7400; // type:object size:0x100 scope:local align:32 +__GBA = .bss:0x804F7500; // type:object size:0x400 scope:global align:8 +dummyPlayer = .bss:0x804F7900; // type:object size:0xC scope:local align:4 data:float +sCylinderVertPos__4Game = .bss:0x804F7910; // type:object size:0x240 scope:local align:4 +@2887 = .bss:0x804F7B50; // type:object size:0xC scope:local align:4 +exCallbackObject = .bss:0x804F7B60; // type:object size:0x14 scope:local align:4 data:4byte +@2646 = .bss:0x804F7B78; // type:object size:0xC scope:local align:4 +sRubyDataBuffer__5P2JME = .bss:0x804F7B88; // type:object size:0x21 scope:local align:4 +str$673 = .bss:0x804F7BB0; // type:object size:0x100 scope:local align:4 +sCardWorkArea = .bss:0x804F7CC0; // type:object size:0xA000 scope:local align:32 +...bss.0 = .bss:0x80501CC0; // type:label scope:local +AudioDecodeThread = .bss:0x80501CC0; // type:object size:0x318 scope:local align:8 +AudioDecodeThreadStack = .bss:0x80501FD8; // type:object size:0x1000 scope:local align:4 +FreeAudioBufferQueue = .bss:0x80502FD8; // type:object size:0x20 scope:local align:4 +DecodedAudioBufferQueue = .bss:0x80502FF8; // type:object size:0x20 scope:local align:4 +FreeAudioBufferMessage = .bss:0x80503018; // type:object size:0xC scope:local align:4 +DecodedAudioBufferMessage = .bss:0x80503024; // type:object size:0xC scope:local align:4 +...bss.0 = .bss:0x80503040; // type:label scope:local +WorkBuffer = .bss:0x80503040; // type:object size:0x40 scope:local align:32 data:4byte +PrepareReadyQueue = .bss:0x80503080; // type:object size:0x20 scope:local align:4 +UsedTextureSetQueue = .bss:0x805030A0; // type:object size:0x20 scope:local align:4 +UsedTextureSetMessage = .bss:0x805030C0; // type:object size:0xC scope:local align:4 +SoundBuffer = .bss:0x805030E0; // type:object size:0x1180 scope:local align:32 +...bss.0 = .bss:0x80504260; // type:label scope:local +FreeReadBufferQueue = .bss:0x80504260; // type:object size:0x20 scope:local align:4 +ReadedBufferQueue = .bss:0x80504280; // type:object size:0x20 scope:local align:4 +ReadedBufferQueue2 = .bss:0x805042A0; // type:object size:0x20 scope:local align:4 +FreeReadBufferMessage = .bss:0x805042C0; // type:object size:0x28 scope:local align:4 +ReadedBufferMessage = .bss:0x805042E8; // type:object size:0x28 scope:local align:4 +ReadedBufferMessage2 = .bss:0x80504310; // type:object size:0x28 scope:local align:4 +ReadThread = .bss:0x80504338; // type:object size:0x318 scope:local align:8 +ReadThreadStack = .bss:0x80504650; // type:object size:0x1000 scope:local align:4 +...bss.0 = .bss:0x80505650; // type:label scope:local +VideoDecodeThread = .bss:0x80505650; // type:object size:0x318 scope:local align:8 +VideoDecodeThreadStack = .bss:0x80505968; // type:object size:0x1000 scope:local align:4 +FreeTextureSetQueue = .bss:0x80506968; // type:object size:0x20 scope:local align:4 +DecodedTextureSetQueue = .bss:0x80506988; // type:object size:0x20 scope:local align:4 +FreeTextureSetMessage = .bss:0x805069A8; // type:object size:0xC scope:local align:4 +DecodedTextureSetMessage = .bss:0x805069B4; // type:object size:0xC scope:local align:4 +@3464 = .bss:0x805069C0; // type:object size:0xC scope:local align:4 +saoVVOutput_direction___Q214JStudio_JStage14TAdaptor_light = .bss:0x805069CC; // type:object size:0x48 scope:global align:4 data:4byte +saoVVOutput___Q214JStudio_JStage14TAdaptor_actor = .bss:0x80506A14; // type:object size:0x40 scope:global align:4 data:4byte +saoVVOutput_ANIMATION_FRAME___Q214JStudio_JStage14TAdaptor_actor = .bss:0x80506AE4; // type:object size:0x90 scope:global align:4 data:4byte +saoVVOutput___Q214JStudio_JStage15TAdaptor_camera = .bss:0x80506B74; // type:object size:0xA0 scope:global align:4 data:4byte +saoVVOutput___Q214JStudio_JStage12TAdaptor_fog = .bss:0x80506C14; // type:object size:0x60 scope:global align:4 data:4byte +saoVVOSetValue___Q214JStudio_JAudio14TAdaptor_sound = .bss:0x80506C74; // type:object size:0x78 scope:global align:4 data:4byte +sAramCommandList__7JKRAram = .bss:0x80506CEC; // type:object size:0xC scope:global align:4 +sAramList__11JKRAramHeap = .bss:0x80506CF8; // type:object size:0xC scope:global align:4 data:4byte +sAramPieceCommandList__12JKRAramPiece = .bss:0x80506D04; // type:object size:0xC scope:global align:4 +mMutex__12JKRAramPiece = .bss:0x80506D28; // type:object size:0x18 scope:global align:4 +sDvdList__10JKRDvdFile = .bss:0x80506D40; // type:object size:0xC scope:global align:4 +sDvdAramAsyncList__16JKRDvdAramRipper = .bss:0x80506D4C; // type:object size:0xC scope:global align:4 +sDvdAsyncList__12JKRDvdRipper = .bss:0x80506D58; // type:object size:0xC scope:global align:4 +sVolumeList__13JKRFileLoader = .bss:0x80506D64; // type:object size:0xC scope:global align:4 data:4byte +sThreadList__9JKRThread = .bss:0x80506D70; // type:object size:0xC scope:global align:4 data:4byte +sTaskList__7JKRTask = .bss:0x80506DA8; // type:object size:0xC scope:global align:4 +sEndMesgQueue__7JKRTask = .bss:0x80506DA8; // type:object size:0x20 stripped +sMapFileList__12JUTException = .bss:0x80506DB4; // type:object size:0xC scope:global align:4 data:4byte +mPadList__10JUTGamePad = .bss:0x80506DC0; // type:object size:0xC scope:global align:4 data:4byte +mPadStatus__10JUTGamePad = .bss:0x80506F48; // type:object size:0x30 scope:global align:4 +mPadButton__10JUTGamePad = .bss:0x80506F78; // type:object size:0xC0 scope:global align:4 data:4byte +mPadMStick__10JUTGamePad = .bss:0x80507038; // type:object size:0x40 scope:global align:4 +mPadSStick__10JUTGamePad = .bss:0x80507078; // type:object size:0x40 scope:global align:4 +sPatternList__19JUTGamePadLongPress = .bss:0x805070B8; // type:object size:0xC scope:global align:4 data:4byte +sincosTable___5JMath = .bss:0x805070E0; // type:object size:0x4000 scope:global align:32 data:float +atanTable___5JMath = .bss:0x8050D120; // type:object size:0x1020 scope:global align:32 data:float +asinAcosTable___5JMath = .bss:0x8050E140; // type:object size:0x1020 scope:global align:32 data:float +static_mBounds__7J2DPane = .bss:0x8050F160; // type:object size:0x10 scope:global align:4 data:float +j3dSys = .bss:0x8050F170; // type:object size:0x11C scope:global align:4 +mCurrentMtx__6J3DSys = .bss:0x8050F314; // type:object size:0x30 scope:global align:4 +mCurrentS__6J3DSys = .bss:0x8050F344; // type:object size:0xC scope:global align:4 data:float +mParentS__6J3DSys = .bss:0x8050F350; // type:object size:0xC scope:global align:4 data:float +sTexCoordScaleTable__6J3DSys = .bss:0x8050F35C; // type:object size:0x40 scope:global align:4 data:2byte +sGDLObj__17J3DDisplayListObj = .bss:0x8050F39C; // type:object size:0x10 scope:global align:4 data:4byte +j3dTexCoordTable = .bss:0x8050F3AC; // type:object size:0x1DC8 scope:global align:4 +j3dTevSwapTableTable = .bss:0x805118D4; // type:object size:0x400 scope:global align:4 data:byte +j3dAlphaCmpTable = .bss:0x80511CD4; // type:object size:0x300 scope:global align:4 +j3dZModeTable = .bss:0x80511FD4; // type:object size:0x60 scope:global align:4 +sMtxLoadCache__11J3DShapeMtx = .bss:0x80512034; // type:object size:0x14 scope:global align:4 data:2byte +sNoUseDrawMtx__12J3DMtxBuffer = .bss:0x80512048; // type:object size:0x30 scope:global align:4 +sNoUseNrmMtx__12J3DMtxBuffer = .bss:0x8051209C; // type:object size:0x24 scope:global align:4 +sList__8JFWAlarm = .bss:0x805120C0; // type:object size:0xC scope:global align:4 data:4byte +sCommandListOnce__10JASPortCmd = .bss:0x805120CC; // type:object size:0xC scope:global align:4 +sCommandListStay__10JASPortCmd = .bss:0x805120E4; // type:object size:0xC scope:global align:4 +nullCamera__Q27JAInter5Const = .bss:0x805120F0; // type:object size:0xC scope:global align:4 data:4byte +nullActor__Q27JAInter5Const = .bss:0x80512158; // type:object size:0x14 scope:global align:4 data:4byte +camMtx__Q27JAInter5Const = .bss:0x8051216C; // type:object size:0x30 scope:global align:4 +camTrans__Q27JAInter5Const = .bss:0x8051219C; // type:object size:0xC scope:global align:4 +camPreTrans__Q27JAInter5Const = .bss:0x805121A8; // type:object size:0xC scope:global align:4 +systemPortCmd__Q27JAInter15SystemInterface = .bss:0x805121B4; // type:object size:0x18 scope:global align:4 +pikiColors__Q24Game4Piki = .bss:0x805121CC; // type:object size:0x20 scope:global align:4 data:byte +pikiColorsCursor__Q24Game4Piki = .bss:0x8051220C; // type:object size:0x20 scope:global align:4 data:byte +formationPikis__Q24Game8GameStat = .bss:0x8051222C; // type:object size:0xE0 scope:global align:4 data:4byte +workPikis__Q24Game8GameStat = .bss:0x8051244C; // type:object size:0xE0 scope:global align:4 data:4byte +alivePikis__Q24Game8GameStat = .bss:0x8051252C; // type:object size:0x20 scope:global align:4 data:4byte +mePikis__Q24Game8GameStat = .bss:0x8051254C; // type:object size:0x20 scope:global align:4 data:4byte +zikatuPikis__Q24Game8GameStat = .bss:0x8051256C; // type:object size:0x20 scope:global align:4 data:4byte +mToday__Q24Game8BirthMgr = .bss:0x8051258C; // type:object size:0x1C scope:global align:4 data:4byte +mCave__Q24Game8BirthMgr = .bss:0x8051264C; // type:object size:0x1C scope:global align:4 data:4byte +mTotal__Q24Game8BirthMgr = .bss:0x80512668; // type:object size:0x1C scope:global align:4 data:4byte +mToday__Q24Game8DeathMgr = .bss:0x80512684; // type:object size:0x24 scope:global align:4 data:4byte +mCave__Q24Game8DeathMgr = .bss:0x805126A8; // type:object size:0x24 scope:global align:4 data:4byte +mTotal__Q24Game8DeathMgr = .bss:0x805126CC; // type:object size:0x24 scope:global align:4 data:4byte +sArgs__Q24Game17PelletBirthBuffer = .bss:0x805126F0; // type:object size:0x1400 scope:global align:4 +PikiIconTextureResTIMG__Q22og6Screen = .bss:0x80513AF0; // type:object size:0x4C scope:global align:4 data:4byte +msVal__Q32og6Screen18CallBack_LifeGauge = .bss:0x80513B3C; // type:object size:0x10 scope:global align:4 data:float +msVal__Q32og6Screen18CallBack_CounterRV = .bss:0x80513B4C; // type:object size:0xC scope:global align:4 data:float +msVal__Q32og9newScreen9ObjGround = .bss:0x80513B58; // type:object size:0x28 scope:global align:4 data:float +msVal__Q32og9newScreen11ObjSMenuMap = .bss:0x80513B80; // type:object size:0x50 scope:global align:4 data:float +msVal__Q32og9newScreen12ObjSMenuItem = .bss:0x80513BD0; // type:object size:0x20 scope:global align:4 data:byte +msVal__Q32og9newScreen13ObjSMenuPause = .bss:0x80513BF0; // type:object size:0x44 scope:global align:4 data:float +msBaseVal__Q32og9newScreen12ObjSMenuBase = .bss:0x80513C34; // type:object size:0x1C scope:global align:4 data:float +msVal__Q32og9newScreen13ObjCourseName = .bss:0x80513C50; // type:object size:0x10 scope:global align:4 data:float +msVal__Q32og9newScreen9ObjKantei = .bss:0x80513C60; // type:object size:0x40 scope:global align:4 data:float +msVal__Q32og9newScreen8ObjFloor = .bss:0x80513CA0; // type:object size:0x7C scope:global align:4 data:float +msVal__Q32og9newScreen7ObjCave = .bss:0x80513D1C; // type:object size:0x4C scope:global align:4 data:float +msVal__Q32og9newScreen10ObjAnaDemo = .bss:0x80513D68; // type:object size:0x10 scope:global align:4 data:float +msVal__Q32og9newScreen14ObjChallenge2P = .bss:0x80513D78; // type:object size:0x90 scope:global align:4 data:float +msVal__Q32og9newScreen10ObjContena = .bss:0x80513E08; // type:object size:0x44 scope:global align:4 data:float +msVal__Q32og9newScreen20ObjSMenuPauseDoukutu = .bss:0x80513E4C; // type:object size:0xC scope:global align:4 data:float +msVal__Q32og9newScreen10ObjUfoMenu = .bss:0x80513E58; // type:object size:0x28 scope:global align:4 data:float +msVal__Q32og9newScreen5ObjVs = .bss:0x80513E80; // type:object size:0x34 scope:global align:4 data:float +msVal__Q32og9newScreen14ObjChallenge1P = .bss:0x80513EB4; // type:object size:0x6C scope:global align:4 data:float +msBaseVal__Q32og9newScreen16ObjChallengeBase = .bss:0x80513F20; // type:object size:0x1C scope:global align:4 data:float +newSeqName__6PSGame = .bss:0x80513F3C; // type:object size:0x20 scope:global align:4 +mScrollParm__Q28Morimura10TZukanBase = .bss:0x80513F5C; // type:object size:0x14 scope:global align:4 data:float +mScrollParm__Q28Morimura8THiScore = .bss:0x80513F70; // type:object size:0x14 scope:global align:4 data:float +mScrollParm__Q28Morimura9TVsSelect = .bss:0x80513F84; // type:object size:0x14 scope:global align:4 data:float +msVal__Q32kh6Screen8WorldMap = .bss:0x80513F98; // type:object size:0x7C scope:global align:4 data:float +msVal__Q32kh6Screen13ObjCaveResult = .bss:0x80514014; // type:object size:0x3C scope:global align:4 data:float +msVal__Q32kh6Screen10ObjReadyGo = .bss:0x80514050; // type:object size:0x18 scope:global align:4 data:float +msVal__Q32kh6Screen13ObjFinalFloor = .bss:0x80514068; // type:object size:0xC scope:global align:4 data:float +msVal__Q32kh6Screen19ObjDayEndResultBase = .bss:0x80514074; // type:object size:0x54 scope:global align:4 data:float +msVal__Q32kh6Screen14ObjFinalResult = .bss:0x805140C8; // type:object size:0x24 scope:global align:4 data:float +msVal__Q32kh6Screen10ObjWinLose = .bss:0x805140EC; // type:object size:0x1C scope:global align:4 data:float +msVal__Q32kh6Screen16ObjWinLoseReason = .bss:0x80514108; // type:object size:0x1C scope:global align:4 data:float +zero__10Vector3 = .bss:0x80514124; // type:object size:0xC scope:global align:4 data:float +eof__4ID32 = .bss:0x80514130; // type:object size:0xC scope:global align:4 data:byte +gGameConfig__4Game = .bss:0x8051413C; // type:object size:0x27C scope:global align:4 +sPikminTex__13TinyPikminMgr = .bss:0x805143B8; // type:object size:0x14 scope:global align:4 data:4byte +ActivePlayer = .bss:0x805143D0; // type:object size:0x1D0 scope:global align:8 +sInsReal__3PSM = .bss:0x805145A0; // type:object size:0x1C scope:global align:4 data:byte +sSZSBufferSize__7JKRAram = .sdata:0x805145C0; // type:object size:0x4 scope:global align:4 data:4byte +errorRetry__16JKRDvdAramRipper = .sdata:0x805145C8; // type:object size:0x1 scope:global align:1 data:byte +sSZSBufferSize__16JKRDvdAramRipper = .sdata:0x805145CC; // type:object size:0x4 scope:global align:4 data:4byte +errorRetry__12JKRDvdRipper = .sdata:0x805145D0; // type:object size:0x1 scope:global align:1 data:byte +sSZSBufferSize__12JKRDvdRipper = .sdata:0x805145D4; // type:object size:0x4 scope:global align:4 data:4byte +rootPath$2747 = .sdata:0x805145D8; // type:object size:0x2 scope:local align:4 data:string +sDefaultFillFlag__7JKRHeap = .sdata:0x805145E0; // type:object size:0x1 scope:global align:1 data:byte +sVisible__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sdata:0x805145E8; // type:object size:0x1 scope:local align:1 data:byte +sMessageBuffer__12JUTException = .sdata:0x805145F0; // type:object size:0x4 scope:global align:4 +sStickMode__10JUTGamePad = .sdata:0x805145F8; // type:object size:0x4 scope:global align:4 data:4byte +sClampMode__10JUTGamePad = .sdata:0x805145FC; // type:object size:0x4 scope:global align:4 data:4byte +sPressPoint__Q210JUTGamePad6CStick = .sdata:0x80514600; // type:object size:0x4 scope:global align:4 data:float +sReleasePoint__Q210JUTGamePad6CStick = .sdata:0x80514604; // type:object size:0x4 scope:global align:4 data:float +sResetPattern__Q210JUTGamePad13C3ButtonReset = .sdata:0x80514608; // type:object size:0x4 scope:global align:4 data:4byte +sResetMaskPattern__Q210JUTGamePad13C3ButtonReset = .sdata:0x8051460C; // type:object size:0x4 scope:global align:4 data:4byte +oneFrameRate = .sdata:0x80514610; // type:object size:0x4 scope:local align:4 data:float +oneFrameRateUser = .sdata:0x80514614; // type:object size:0x4 scope:local align:4 data:float +ColorBlack = .sdata:0x80514618; // type:object size:0x4 scope:local align:4 data:4byte +ColorWhite = .sdata:0x8051461C; // type:object size:0x4 scope:local align:4 data:4byte +Unit01 = .sdata:0x80514620; // type:object size:0x8 scope:local align:4 +cm2hw$551 = .sdata:0x80514628; // type:object size:0x4 scope:local align:4 +J3DGDTexMode0Ids = .sdata:0x8051462C; // type:object size:0x8 scope:local align:4 +J3DGDTexMode1Ids = .sdata:0x80514634; // type:object size:0x8 scope:local align:4 +J3DGDTexImage0Ids = .sdata:0x8051463C; // type:object size:0x8 scope:local align:4 +J3DGDTexImage3Ids = .sdata:0x80514644; // type:object size:0x8 scope:local align:4 +J3DGDTexTlutIds = .sdata:0x8051464C; // type:object size:0x8 scope:local align:4 +GX2HWFiltConv = .sdata:0x80514654; // type:object size:0x6 scope:local align:4 +J3DTexImage1Ids = .sdata:0x8051465C; // type:object size:0x8 scope:local align:4 +J3DTexImage2Ids = .sdata:0x80514664; // type:object size:0x8 scope:local align:4 +SizeOfLoadMatColors = .sdata:0x80514670; // type:object size:0x4 scope:local align:4 data:4byte +SizeOfLoadAmbColors = .sdata:0x80514674; // type:object size:0x4 scope:local align:4 data:4byte +SizeOfLoadColorChans = .sdata:0x80514678; // type:object size:0x4 scope:local align:4 data:4byte +sNoUseDrawMtxPtr__12J3DMtxBuffer = .sdata:0x80514680; // type:object size:0x4 scope:global align:4 +sNoUseNrmMtxPtr__12J3DMtxBuffer = .sdata:0x80514684; // type:object size:0x4 scope:global align:4 +J3DUnit01 = .sdata:0x80514688; // type:object size:0x8 scope:local align:4 +maxStdHeaps__Q29JFWSystem11CSetUpParam = .sdata:0x80514690; // type:object size:0x4 scope:global align:4 data:4byte +sysHeapSize__Q29JFWSystem11CSetUpParam = .sdata:0x80514694; // type:object size:0x4 scope:global align:4 data:4byte +fifoBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x80514698; // type:object size:0x4 scope:global align:4 data:4byte +aramAudioBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x8051469C; // type:object size:0x4 scope:global align:4 data:4byte +aramGraphBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x805146A0; // type:object size:0x4 scope:global align:4 data:4byte +streamPriority__Q29JFWSystem11CSetUpParam = .sdata:0x805146A4; // type:object size:0x4 scope:global align:4 data:4byte +decompPriority__Q29JFWSystem11CSetUpParam = .sdata:0x805146A8; // type:object size:0x4 scope:global align:4 data:4byte +aPiecePriority__Q29JFWSystem11CSetUpParam = .sdata:0x805146AC; // type:object size:0x4 scope:global align:4 data:4byte +systemFontRes__Q29JFWSystem11CSetUpParam = .sdata:0x805146B0; // type:object size:0x4 scope:global align:4 data:4byte +renderMode__Q29JFWSystem11CSetUpParam = .sdata:0x805146B4; // type:object size:0x4 scope:global align:4 data:4byte +exConsoleBufferSize__Q29JFWSystem11CSetUpParam = .sdata:0x805146B8; // type:object size:0x4 scope:global align:4 data:4byte +p_dl = .sdata:0x805146C0; // type:object size:0x8 scope:local align:4 +MAX_MIXERLEVEL__9JASDriver = .sdata:0x805146C8; // type:object size:0x2 scope:local align:2 data:2byte +MAX_AUTOMIXERLEVEL__9JASDriver = .sdata:0x805146CA; // type:object size:0x2 scope:local align:2 data:2byte +JAS_SYSTEM_OUTPUT_MODE__9JASDriver = .sdata:0x805146CC; // type:object size:0x4 scope:local align:4 data:4byte +COMP_BLOCKSAMPLES$600 = .sdata:0x805146D0; // type:object size:0x8 scope:local align:4 +COMP_BLOCKBYTES$601 = .sdata:0x805146D8; // type:object size:0x8 scope:local align:4 +sDspDacBufferCount__9JASDriver = .sdata:0x805146E0; // type:object size:0x1 scope:local align:1 data:byte +sSubFrames__9JASDriver = .sdata:0x805146E4; // type:object size:0x4 scope:local align:4 data:4byte +sMixMode__9JASDriver = .sdata:0x805146E8; // type:object size:0x4 scope:local align:4 data:4byte +sDacRate__9JASDriver = .sdata:0x805146EC; // type:object size:0x4 scope:local align:4 data:float +DSP_MIXERLEVEL = .sdata:0x805146F0; // type:object size:0x2 scope:local align:2 data:2byte +flags__Q27JAInter8BankWave = .sdata:0x805146F8; // type:object size:0x2 scope:global align:4 data:byte +SceneSetFlag__Q27JAInter8BankWave = .sdata:0x805146FC; // type:object size:0x4 scope:global align:4 data:4byte +initCallback__Q27JAInter8BankWave = .sdata:0x80514700; // type:object size:0x4 scope:global align:4 data:4byte +firstLoadCallback__Q27JAInter8BankWave = .sdata:0x80514704; // type:object size:0x4 scope:global align:4 data:4byte +secondLoadCallback__Q27JAInter8BankWave = .sdata:0x80514708; // type:object size:0x4 scope:global align:4 data:4byte +msStopStatus__8JAIBasic = .sdata:0x80514710; // type:object size:0x1 scope:global align:1 data:byte +distanceParameterMoveTime__18JAIGlobalParameter = .sdata:0x80514718; // type:object size:0x1 scope:global align:1 data:byte +audioSystemThreadPriority__18JAIGlobalParameter = .sdata:0x80514719; // type:object size:0x1 scope:global align:1 data:byte +audioDvdThreadPriority__18JAIGlobalParameter = .sdata:0x8051471A; // type:object size:0x1 scope:global align:1 data:byte +seqMuteVolumeSePlay__18JAIGlobalParameter = .sdata:0x8051471B; // type:object size:0x1 scope:global align:1 data:byte +seqParameterLines__18JAIGlobalParameter = .sdata:0x8051471C; // type:object size:0x1 scope:global align:1 data:byte +streamParameterLines__18JAIGlobalParameter = .sdata:0x8051471D; // type:object size:0x1 scope:global align:1 data:byte +seDistanceFxParameter__18JAIGlobalParameter = .sdata:0x8051471E; // type:object size:0x2 scope:global align:2 data:2byte +soundSceneMax__18JAIGlobalParameter = .sdata:0x80514720; // type:object size:0x4 scope:global align:4 data:4byte +seRegistMax__18JAIGlobalParameter = .sdata:0x80514724; // type:object size:0x4 scope:global align:4 data:4byte +seTrackMax__18JAIGlobalParameter = .sdata:0x80514728; // type:object size:0x4 scope:global align:4 data:4byte +seqTrackMax__18JAIGlobalParameter = .sdata:0x8051472C; // type:object size:0x4 scope:global align:4 data:4byte +seqPlayTrackMax__18JAIGlobalParameter = .sdata:0x80514730; // type:object size:0x4 scope:global align:4 data:4byte +seqControlBufferMax__18JAIGlobalParameter = .sdata:0x80514734; // type:object size:0x4 scope:global align:4 data:4byte +autoHeapMax__18JAIGlobalParameter = .sdata:0x80514738; // type:object size:0x4 scope:global align:4 data:4byte +stayHeapMax__18JAIGlobalParameter = .sdata:0x8051473C; // type:object size:0x4 scope:global align:4 data:4byte +autoHeapRoomSize__18JAIGlobalParameter = .sdata:0x80514740; // type:object size:0x4 scope:global align:4 data:4byte +stayHeapSize__18JAIGlobalParameter = .sdata:0x80514744; // type:object size:0x4 scope:global align:4 data:4byte +initDataFileName__18JAIGlobalParameter = .sdata:0x80514748; // type:object size:0x4 scope:global align:4 data:4byte +wavePath__18JAIGlobalParameter = .sdata:0x8051474C; // type:object size:0x4 scope:global align:4 data:4byte +sequenceArchivesPath__18JAIGlobalParameter = .sdata:0x80514750; // type:object size:0x4 scope:global align:4 data:4byte +streamPath__18JAIGlobalParameter = .sdata:0x80514754; // type:object size:0x4 scope:global align:4 data:4byte +audioResPath__18JAIGlobalParameter = .sdata:0x80514758; // type:object size:0x4 scope:global align:4 data:4byte +sequenceArchivesFileName__18JAIGlobalParameter = .sdata:0x8051475C; // type:object size:0x4 scope:global align:4 data:4byte +inputGainDown__18JAIGlobalParameter = .sdata:0x80514760; // type:object size:0x4 scope:global align:4 data:float +outputGainUp__18JAIGlobalParameter = .sdata:0x80514764; // type:object size:0x4 scope:global align:4 data:float +distanceMax__18JAIGlobalParameter = .sdata:0x80514768; // type:object size:0x4 scope:global align:4 data:float +maxVolumeDistance__18JAIGlobalParameter = .sdata:0x8051476C; // type:object size:0x4 scope:global align:4 data:float +seDolbyCenterValue__18JAIGlobalParameter = .sdata:0x80514770; // type:object size:0x4 scope:global align:4 data:float +seDolbyFrontDistanceMax__18JAIGlobalParameter = .sdata:0x80514774; // type:object size:0x4 scope:global align:4 data:float +seDolbyBehindDistanceMax__18JAIGlobalParameter = .sdata:0x80514778; // type:object size:0x4 scope:global align:4 data:float +dopplarMoveTime__18JAIGlobalParameter = .sdata:0x8051477C; // type:object size:0x4 scope:global align:4 data:4byte +dummyObjectLifeTime__18JAIGlobalParameter = .sdata:0x80514780; // type:object size:0x4 scope:global align:4 data:4byte +dummyObjectMax__18JAIGlobalParameter = .sdata:0x80514784; // type:object size:0x4 scope:global align:4 data:4byte +seqMuteMoveSpeedSePlay__18JAIGlobalParameter = .sdata:0x80514788; // type:object size:0x4 scope:global align:4 data:4byte +audioCameraMax__18JAIGlobalParameter = .sdata:0x8051478C; // type:object size:0x4 scope:global align:4 data:4byte +systemTrackMax__18JAIGlobalParameter = .sdata:0x80514790; // type:object size:0x4 scope:global align:4 data:4byte +systemRootTrackMax__18JAIGlobalParameter = .sdata:0x80514794; // type:object size:0x4 scope:global align:4 data:4byte +panDistanceMax__18JAIGlobalParameter = .sdata:0x80514798; // type:object size:0x4 scope:global align:4 data:float +panDistance2Max__18JAIGlobalParameter = .sdata:0x8051479C; // type:object size:0x4 scope:global align:4 data:float +panAngleParameter__18JAIGlobalParameter = .sdata:0x805147A0; // type:object size:0x4 scope:global align:4 data:float +panAngleParameter2__18JAIGlobalParameter = .sdata:0x805147A4; // type:object size:0x4 scope:global align:4 data:float +dopplarParameter__18JAIGlobalParameter = .sdata:0x805147A8; // type:object size:0x4 scope:global align:4 data:float +seDistanceWaitMax__18JAIGlobalParameter = .sdata:0x805147AC; // type:object size:0x2 scope:global align:2 data:2byte +seDistancepitchMax__18JAIGlobalParameter = .sdata:0x805147B0; // type:object size:0x4 scope:global align:4 data:float +wsInitCallback__Q27JAInter8InitData = .sdata:0x805147B8; // type:object size:0x4 scope:global align:4 data:4byte +bnkInitCallback__Q27JAInter8InitData = .sdata:0x805147BC; // type:object size:0x4 scope:global align:4 data:4byte +seStartCallback__Q27JAInter5SeMgr = .sdata:0x805147C0; // type:object size:0x4 scope:global align:4 data:4byte +sChannelMax__Q27JAInter9StreamMgr = .sdata:0x805147C8; // type:object size:0x4 scope:global align:4 data:4byte +decodedBufferBlocks__Q27JAInter9StreamMgr = .sdata:0x805147CC; // type:object size:0x4 scope:global align:4 data:4byte +fragmentID = .sdata:0x805147D0; // type:object size:0x4 scope:local align:4 data:4byte +@wstringBase0 = .sdata:0x805147D8; // type:object size:0x2 scope:local align:4 +next = .sdata:0x805147E0; // type:object size:0x4 scope:local align:4 data:4byte +__float_nan = .sdata:0x805147E8; // type:object size:0x4 scope:global align:4 data:float +__float_huge = .sdata:0x805147EC; // type:object size:0x4 scope:global align:4 data:float +__double_max = .sdata:0x805147F0; // type:object size:0x8 scope:global align:4 data:double +__double_huge = .sdata:0x805147F8; // type:object size:0x8 scope:global align:4 data:double +__extended_min = .sdata:0x80514800; // type:object size:0x8 scope:global align:4 data:double +__extended_max = .sdata:0x80514808; // type:object size:0x8 scope:global align:4 data:double +__float_max = .sdata:0x80514810; // type:object size:0x4 scope:global align:4 data:float +__float_epsilon = .sdata:0x80514814; // type:object size:0x4 scope:global align:4 data:float +SendCount = .sdata:0x80514818; // type:object size:0x1 scope:local align:1 data:byte +__VIVersion = .sdata:0x80514820; // type:object size:0x4 scope:global align:4 data:4byte +@534 = .sdata:0x80514824; // type:object size:0x5 scope:local align:4 data:string +__ARVersion = .sdata:0x80514830; // type:object size:0x4 scope:global align:4 data:4byte +__ARQVersion = .sdata:0x80514838; // type:object size:0x4 scope:global align:4 data:4byte +__CARDVersion = .sdata:0x80514840; // type:object size:0x4 scope:global align:4 data:4byte +next = .sdata:0x80514848; // type:object size:0x4 scope:local align:4 data:4byte +__CARDVendorID = .sdata:0x80514850; // type:object size:0x2 scope:global align:2 data:2byte +__CARDPermMask = .sdata:0x80514852; // type:object size:0x1 scope:global align:1 data:byte +__DSPVersion = .sdata:0x80514858; // type:object size:0x4 scope:global align:4 data:4byte +FirstRead = .sdata:0x80514860; // type:object size:0x4 scope:local align:4 data:4byte +@118 = .sdata:0x80514868; // type:object size:0x8 scope:local align:4 data:string +__DVDVersion = .sdata:0x80514870; // type:object size:0x4 scope:global align:4 data:4byte +autoInvalidation = .sdata:0x80514874; // type:object size:0x4 scope:local align:4 data:4byte +checkOptionalCommand = .sdata:0x80514878; // type:object size:0x4 scope:local align:4 data:4byte +@23 = .sdata:0x8051487C; // type:object size:0x6 scope:local align:4 data:string +DmaCommand = .sdata:0x80514884; // type:object size:0x4 scope:local align:4 data:4byte +@37 = .sdata:0x80514888; // type:object size:0x2 scope:local align:4 data:string +@42 = .sdata:0x8051488C; // type:object size:0x4 scope:local align:4 data:string +@43 = .sdata:0x80514890; // type:object size:0x3 scope:local align:4 data:string +__EXIVersion = .sdata:0x80514898; // type:object size:0x4 scope:global align:4 data:4byte +__GXVersion = .sdata:0x805148A0; // type:object size:0x4 scope:global align:4 data:4byte +tbl1$263 = .sdata:0x805148A8; // type:object size:0x4 scope:local align:4 +tbl2$264 = .sdata:0x805148AC; // type:object size:0x4 scope:local align:4 +tbl3$265 = .sdata:0x805148B0; // type:object size:0x4 scope:local align:4 +GXTexMode0Ids = .sdata:0x805148B8; // type:object size:0x8 scope:local align:4 +GXTexMode1Ids = .sdata:0x805148C0; // type:object size:0x8 scope:local align:4 +GXTexImage0Ids = .sdata:0x805148C8; // type:object size:0x8 scope:local align:4 +GXTexImage1Ids = .sdata:0x805148D0; // type:object size:0x8 scope:local align:4 +GXTexImage2Ids = .sdata:0x805148D8; // type:object size:0x8 scope:local align:4 +GXTexImage3Ids = .sdata:0x805148E0; // type:object size:0x8 scope:local align:4 +GXTexTlutIds = .sdata:0x805148E8; // type:object size:0x8 scope:local align:4 +GX2HWFiltConv = .sdata:0x805148F0; // type:object size:0x6 scope:local align:4 +Unit01 = .sdata:0x805148F8; // type:object size:0x8 scope:local align:4 +__OSVersion = .sdata:0x80514900; // type:object size:0x4 scope:global align:4 data:4byte +@97 = .sdata:0x80514904; // type:object size:0x6 scope:local align:4 data:string +@144 = .sdata:0x8051490C; // type:object size:0x4 scope:local align:4 data:string +__OSCurrHeap = .sdata:0x80514910; // type:object size:0x4 scope:global align:4 data:4byte +__OSArenaLo = .sdata:0x80514918; // type:object size:0x4 scope:local align:4 data:4byte +__OSFpscrEnableBits = .sdata:0x80514920; // type:object size:0x4 scope:global align:4 data:4byte +@76 = .sdata:0x80514924; // type:object size:0x2 scope:local align:4 data:string +fontEncode$80 = .sdata:0x80514928; // type:object size:0x2 scope:local align:2 data:2byte +SwitchThreadCallback = .sdata:0x80514930; // type:object size:0x4 scope:local align:4 data:4byte +__PADVersion = .sdata:0x80514938; // type:object size:0x4 scope:global align:4 data:4byte +ResettingChan = .sdata:0x8051493C; // type:object size:0x4 scope:local align:4 data:4byte +XPatchBits = .sdata:0x80514940; // type:object size:0x4 scope:local align:4 data:4byte +AnalogMode = .sdata:0x80514944; // type:object size:0x4 scope:local align:4 data:4byte +Spec = .sdata:0x80514948; // type:object size:0x4 scope:local align:4 data:4byte +MakeStatus = .sdata:0x8051494C; // type:object size:0x4 scope:local align:4 data:4byte +CmdReadOrigin = .sdata:0x80514950; // type:object size:0x4 scope:local align:4 +CmdCalibrate = .sdata:0x80514954; // type:object size:0x4 scope:local align:4 +__SIVersion = .sdata:0x80514958; // type:object size:0x4 scope:global align:4 data:4byte +__AIVersion = .sdata:0x80514960; // type:object size:0x4 scope:global align:4 data:4byte +__THPVersion = .sdata:0x80514968; // type:object size:0x4 scope:global align:4 data:4byte +__GBAVersion = .sdata:0x80514970; // type:object size:0x4 scope:global align:4 data:4byte +cKochappyChangeTexName__Q34Game8Kochappy25@unnamed@kochappyMgr_cpp@ = .sdata:0x80514978; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName0__Q34Game6Chappy23@unnamed@chappyMgr_cpp@ = .sdata:0x80514980; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName1__Q34Game6Chappy23@unnamed@chappyMgr_cpp@ = .sdata:0x80514984; // type:object size:0x4 scope:local align:4 data:4byte +gEnemyInfoNum__4Game = .sdata:0x80514988; // type:object size:0x4 scope:global align:4 data:4byte +sStoneMdlName__27@unnamed@enemyStoneMgr_cpp@ = .sdata:0x80514990; // type:object size:0x8 scope:local align:4 data:4byte +cChappyChangeTexName0__Q34Game10BlueChappy27@unnamed@BlueChappyMgr_cpp@ = .sdata:0x80514998; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName1__Q34Game10BlueChappy27@unnamed@BlueChappyMgr_cpp@ = .sdata:0x8051499C; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName0__Q34Game12YellowChappy29@unnamed@YellowChappyMgr_cpp@ = .sdata:0x805149A0; // type:object size:0x4 scope:local align:4 data:4byte +cChappyChangeTexName1__Q34Game12YellowChappy29@unnamed@YellowChappyMgr_cpp@ = .sdata:0x805149A4; // type:object size:0x4 scope:local align:4 data:4byte +cKochappyChangeTexName__Q34Game12BlueKochappy29@unnamed@BlueKochappyMgr_cpp@ = .sdata:0x805149A8; // type:object size:0x4 scope:local align:4 data:4byte +cKochappyChangeTexName__Q34Game14YellowKochappy31@unnamed@YellowKochappyMgr_cpp@ = .sdata:0x805149B0; // type:object size:0x4 scope:local align:4 data:4byte +usePacketCulling__Q24Game8Creature = .sdata:0x805149B8; // type:object size:0x1 scope:global align:1 data:byte +kAngleSpeed__Q23efx7TCursor = .sdata:0x805149C0; // type:object size:0x4 scope:global align:4 data:float +sOptDraw__Q24Game15BaseGameSection = .sdata:0x805149C8; // type:object size:0x1 scope:global align:1 data:byte +sOptResolveColl__Q24Game11CellPyramid = .sdata:0x805149D0; // type:object size:0x1 scope:global align:1 data:byte +sCellBugName__Q24Game11CellPyramid = .sdata:0x805149D4; // type:object size:0x4 scope:global align:4 data:4byte +sFromTekiEnable__Q24Game6Pellet = .sdata:0x805149D8; // type:object size:0x1 scope:global align:1 data:byte +newVer = .sdata:0x805149E0; // type:object size:0x1 scope:local align:1 data:byte +maxBuffer__Q24Game8Stickers = .sdata:0x805149E8; // type:object size:0x4 scope:global align:4 data:4byte +GeneratorCurrentVersion = .sdata:0x805149F0; // type:object size:0x4 scope:global align:4 data:4byte +sGraspSituationOptimise__Q24Game4Piki = .sdata:0x805149F8; // type:object size:0x1 scope:global align:1 data:byte +useFixCollision__Q24Game12PlatInstance = .sdata:0x80514A00; // type:object size:0x1 scope:global align:1 data:byte +mUseCellMgr__Q24Game7PlatMgr = .sdata:0x80514A01; // type:object size:0x1 scope:global align:1 data:byte +enum_floor_hiddens__26@unnamed@gameCaveInfo_cpp@ = .sdata:0x80514A08; // type:object size:0x8 scope:local align:4 +mTraceMoveOptLevel__Q24Game6MapMgr = .sdata:0x80514A10; // type:object size:0x1 scope:global align:1 data:byte +mVersion__Q24Game8PlayData = .sdata:0x80514A18; // type:object size:0x4 scope:global align:4 data:4byte +sEntryOpt__Q24Game12BaseHIOParms = .sdata:0x80514A20; // type:object size:0x1 scope:global align:1 data:byte +sEntryOptMapRoom__Q24Game12BaseHIOParms = .sdata:0x80514A21; // type:object size:0x1 scope:global align:1 data:byte +sDrawParticle__Q24Game12BaseHIOParms = .sdata:0x80514A22; // type:object size:0x1 scope:global align:1 data:byte +sMabikiEfx__Q24Game12BaseHIOParms = .sdata:0x80514A23; // type:object size:0x1 scope:global align:1 data:byte +sMapRoomFinal__Q24Game12BaseHIOParms = .sdata:0x80514A24; // type:object size:0x1 scope:global align:1 data:byte +sTekiChappyFlag__Q24Game12BaseHIOParms = .sdata:0x80514A25; // type:object size:0x1 scope:global align:1 data:byte +asArrayOtakara__4Game = .sdata:0x80514A28; // type:object size:0x8 scope:global align:4 data:4byte +cCoin__13VsOtakaraName = .sdata:0x80514A30; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaBlue__13VsOtakaraName = .sdata:0x80514A34; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaRed__13VsOtakaraName = .sdata:0x80514A38; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaYellow__13VsOtakaraName = .sdata:0x80514A3C; // type:object size:0x4 scope:global align:4 data:4byte +cBedamaYellowDepth__13VsOtakaraName = .sdata:0x80514A40; // type:object size:0x4 scope:global align:4 data:float +cTankChangeTexName__Q34Game5Wtank22@unnamed@WtankMgr_cpp@ = .sdata:0x80514A48; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game3Mar20@unnamed@MarMgr_cpp@ = .sdata:0x80514A50; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game3Mar20@unnamed@MarMgr_cpp@ = .sdata:0x80514A54; // type:object size:0x4 scope:local align:4 data:4byte +cKoganeChangeTexName__Q34Game7Wealthy24@unnamed@WealthyMgr_cpp@ = .sdata:0x80514A58; // type:object size:0x4 scope:local align:4 data:4byte +cKoganeChangeTexName__Q34Game4Fart21@unnamed@FartMgr_cpp@ = .sdata:0x80514A60; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game5Queen22@unnamed@QueenMgr_cpp@ = .sdata:0x80514A68; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game10FireChappy27@unnamed@FireChappyMgr_cpp@ = .sdata:0x80514A70; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game10FireChappy27@unnamed@FireChappyMgr_cpp@ = .sdata:0x80514A74; // type:object size:0x4 scope:local align:4 data:4byte +cKoganeChangeTexName__Q34Game11Koganemushi28@unnamed@KoganemushiMgr_cpp@ = .sdata:0x80514A78; // type:object size:0x4 scope:local align:4 data:4byte +cTankChangeTexName__Q34Game5Ftank22@unnamed@FtankMgr_cpp@ = .sdata:0x80514A80; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game12Hanachirashi29@unnamed@HanachirashiMgr_cpp@ = .sdata:0x80514A88; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game12Hanachirashi29@unnamed@HanachirashiMgr_cpp@ = .sdata:0x80514A8C; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBtkTexName__Q34Game8Damagumo25@unnamed@DamagumoMgr_cpp@ = .sdata:0x80514A90; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game8Damagumo25@unnamed@DamagumoMgr_cpp@ = .sdata:0x80514A94; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game11FireOtakara28@unnamed@FireOtakaraMgr_cpp@ = .sdata:0x80514A98; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game12WaterOtakara29@unnamed@WaterOtakaraMgr_cpp@ = .sdata:0x80514AA0; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game10GasOtakara27@unnamed@GasOtakaraMgr_cpp@ = .sdata:0x80514AA8; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game11ElecOtakara28@unnamed@ElecOtakaraMgr_cpp@ = .sdata:0x80514AB0; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game7BigFoot24@unnamed@BigFootMgr_cpp@ = .sdata:0x80514AB8; // type:object size:0x4 scope:local align:4 data:4byte +cOtakaraChangeTexName__Q34Game11BombOtakara28@unnamed@BombOtakaraMgr_cpp@ = .sdata:0x80514AC0; // type:object size:0x4 scope:local align:4 data:4byte +cMatAnimBrkTexName__Q34Game10DangoMushi27@unnamed@DangoMushiMgr_cpp@ = .sdata:0x80514AC8; // type:object size:0x4 scope:local align:4 data:4byte +cKabutoChangeTexName__Q34Game11GreenKabuto28@unnamed@GreenKabutoMgr_cpp@ = .sdata:0x80514AD0; // type:object size:0x4 scope:local align:4 data:4byte +cKabutoChangeTexName__Q34Game9RedKabuto26@unnamed@RedKabutoMgr_cpp@ = .sdata:0x80514AD8; // type:object size:0x4 scope:local align:4 data:4byte +cKabutoChangeTexName__Q34Game9FixKabuto26@unnamed@FixKabutoMgr_cpp@ = .sdata:0x80514AE0; // type:object size:0x4 scope:local align:4 data:4byte +sDistanceParameterMoveTime__8PSSystem = .sdata:0x80514AE8; // type:object size:0x1 scope:global align:1 data:byte +cRatio__Q26PSGame5Rappa = .sdata:0x80514AF0; // type:object size:0x4 scope:global align:4 data:float +cBaseWaitTime__Q26PSGame5Rappa = .sdata:0x80514AF4; // type:object size:0x2 scope:global align:2 data:2byte +sRappa__Q26PSGame5Rappa = .sdata:0x80514AF8; // type:object size:0x8 scope:global align:4 data:4byte +cNotUsingMasterIdRatio__Q26PSGame6RandId = .sdata:0x80514B00; // type:object size:0x4 scope:global align:4 data:float +mWaitTime__Q28Morimura12TDayEndCount = .sdata:0x80514B08; // type:object size:0x4 scope:global align:4 data:float +mAlphaMax__Q28Morimura12TDayEndCount = .sdata:0x80514B0C; // type:object size:0x1 scope:global align:1 data:byte +mWaitAlpha__Q28Morimura12TDayEndCount = .sdata:0x80514B0D; // type:object size:0x1 scope:global align:1 data:byte +mWaitScale__Q28Morimura12TDayEndCount = .sdata:0x80514B10; // type:object size:0x4 scope:global align:4 data:float +mStopScale__Q28Morimura12TDayEndCount = .sdata:0x80514B14; // type:object size:0x4 scope:global align:4 data:float +mScaleMax__Q28Morimura12TDayEndCount = .sdata:0x80514B18; // type:object size:0x4 scope:global align:4 data:float +m2pScale__Q28Morimura12TDayEndCount = .sdata:0x80514B1C; // type:object size:0x4 scope:global align:4 data:float +m2pOffsetY__Q28Morimura12TDayEndCount = .sdata:0x80514B20; // type:object size:0x4 scope:global align:4 data:float +mColor__Q28Morimura12TDayEndCount = .sdata:0x80514B24; // type:object size:0x4 scope:global align:4 data:byte +mNumberColor__Q28Morimura12TDayEndCount = .sdata:0x80514B28; // type:object size:0x4 scope:global align:4 data:4byte +mInitPosX__Q28Morimura10THurryUp2D = .sdata:0x80514B30; // type:object size:0x4 scope:global align:4 data:float +mMoveSp__Q28Morimura10THurryUp2D = .sdata:0x80514B34; // type:object size:0x4 scope:global align:4 data:float +mScaleSp1__Q28Morimura10THurryUp2D = .sdata:0x80514B38; // type:object size:0x4 scope:global align:4 data:float +mScaleSp2__Q28Morimura10THurryUp2D = .sdata:0x80514B3C; // type:object size:0x4 scope:global align:4 data:float +mScaleRate__Q28Morimura10THurryUp2D = .sdata:0x80514B40; // type:object size:0x4 scope:global align:4 data:float +mColorUpSp__Q28Morimura10THurryUp2D = .sdata:0x80514B44; // type:object size:0x4 scope:global align:4 data:float +mRequestTimerMax__Q28Morimura10TZukanBase = .sdata:0x80514B48; // type:object size:0x2 scope:global align:2 data:2byte +mIconMove__Q28Morimura10TZukanBase = .sdata:0x80514B4A; // type:object size:0x1 scope:global align:1 data:byte +mLineSpace__Q28Morimura10TZukanBase = .sdata:0x80514B4C; // type:object size:0x4 scope:global align:4 data:float +mWarpRadius__Q28Morimura10TZukanBase = .sdata:0x80514B50; // type:object size:0x4 scope:global align:4 data:float +mScrollValueCoe__Q28Morimura10TZukanBase = .sdata:0x80514B54; // type:object size:0x4 scope:global align:4 data:float +mScrollSpeedCoe__Q28Morimura10TZukanBase = .sdata:0x80514B58; // type:object size:0x4 scope:global align:4 data:float +mNewScale__Q28Morimura10TZukanBase = .sdata:0x80514B5C; // type:object size:0x4 scope:global align:4 data:float +mPodIconOffsetX__Q28Morimura10TZukanBase = .sdata:0x80514B60; // type:object size:0x4 scope:global align:4 data:float +mLargeCategoryScale__Q28Morimura10TZukanBase = .sdata:0x80514B64; // type:object size:0x4 scope:global align:4 data:float +mCategoryAlphaRate__Q28Morimura10TZukanBase = .sdata:0x80514B68; // type:object size:0x4 scope:global align:4 data:float +mDrawLineType__Q28Morimura10TZukanBase = .sdata:0x80514B6C; // type:object size:0x1 scope:global align:1 data:byte +mPictureOffsetY__Q28Morimura8THiScore = .sdata:0x80514B70; // type:object size:0x4 scope:global align:4 data:float +mChangeAlpha__Q28Morimura8THiScore = .sdata:0x80514B74; // type:object size:0x1 scope:global align:1 data:byte +mListOffsetY__Q28Morimura8THiScore = .sdata:0x80514B78; // type:object size:0x4 scope:global align:4 data:float +mClearListHeightRate__Q28Morimura8THiScore = .sdata:0x80514B7C; // type:object size:0x4 scope:global align:4 data:float +mSelected1p__Q28Morimura16TChallengeSelect = .sdata:0x80514B80; // type:object size:0x1 scope:global align:1 data:byte +mAlphaSpeed__Q28Morimura16TChallengeSelect = .sdata:0x80514B84; // type:object size:0x4 scope:global align:4 data:float +mFlashAnimInterval__Q28Morimura16TChallengeSelect = .sdata:0x80514B88; // type:object size:0x2 scope:global align:2 data:2byte +mTextFlashVal__Q28Morimura16TChallengeSelect = .sdata:0x80514B8C; // type:object size:0x4 scope:global align:4 data:float +mConnect2p__Q28Morimura16TChallengeSelect = .sdata:0x80514B90; // type:object size:0x1 scope:global align:1 data:byte +mPanelMoveVal__Q28Morimura16TChallengeSelect = .sdata:0x80514B94; // type:object size:0x4 scope:global align:4 data:float +mPanelMoveRate__Q28Morimura16TChallengeSelect = .sdata:0x80514B98; // type:object size:0x4 scope:global align:4 data:float +mCircleY__Q28Morimura16TChallengeSelect = .sdata:0x80514B9C; // type:object size:0x4 scope:global align:4 data:float +mTimerSpeed__Q28Morimura16TChallengeSelect = .sdata:0x80514BA0; // type:object size:0x4 scope:global align:4 data:float +mMoveSpeed__Q28Morimura16TChallengeSelect = .sdata:0x80514BA4; // type:object size:0x4 scope:global align:4 data:float +mSelectIconScale__Q28Morimura16TChallengeSelect = .sdata:0x80514BA8; // type:object size:0x4 scope:global align:4 data:float +mMoveSpeed__Q28Morimura16TChallengeResult = .sdata:0x80514BB0; // type:object size:0x4 scope:global align:4 data:float +mAngRate__Q28Morimura16TChallengeResult = .sdata:0x80514BB4; // type:object size:0x4 scope:global align:4 data:float +mAngVelMax__Q28Morimura16TChallengeResult = .sdata:0x80514BB8; // type:object size:0x4 scope:global align:4 data:float +mAccel__Q28Morimura16TChallengeResult = .sdata:0x80514BBC; // type:object size:0x4 scope:global align:4 data:float +mTestDemo__Q28Morimura16TChallengeResult = .sdata:0x80514BC0; // type:object size:0x1 scope:global align:1 data:byte +mComplete__Q28Morimura16TChallengeResult = .sdata:0x80514BC1; // type:object size:0x1 scope:global align:1 data:byte +mTestRankInOrder__Q28Morimura16TChallengeResult = .sdata:0x80514BC2; // type:object size:0x2 scope:global align:2 data:2byte +mFlashInterval__Q28Morimura16TChallengeResult = .sdata:0x80514BC4; // type:object size:0x4 scope:global align:4 data:float +mDemoSpeedUpRate__Q28Morimura16TChallengeResult = .sdata:0x80514BC8; // type:object size:0x4 scope:global align:4 data:float +mDemoSpeedUpMax__Q28Morimura16TChallengeResult = .sdata:0x80514BCC; // type:object size:0x4 scope:global align:4 data:float +mFlashColor__Q28Morimura16TChallengeResult = .sdata:0x80514BD0; // type:object size:0x4 scope:global align:4 data:byte +mAngRate__Q28Morimura9TVsSelect = .sdata:0x80514BD8; // type:object size:0x4 scope:global align:4 data:float +mMoveSpeed__Q28Morimura9TVsSelect = .sdata:0x80514BDC; // type:object size:0x4 scope:global align:4 data:float +mIndVal__Q28Morimura9TVsSelect = .sdata:0x80514BE0; // type:object size:0x4 scope:global align:4 data:float +mIndShuki__Q28Morimura9TVsSelect = .sdata:0x80514BE4; // type:object size:0x4 scope:global align:4 data:float +mZoomFrameMax__Q28Morimura9TVsSelect = .sdata:0x80514BE8; // type:object size:0x4 scope:global align:4 data:float +mTestVal__Q28Morimura9TVsSelect = .sdata:0x80514BEC; // type:object size:0x4 scope:global align:4 data:float +mAngUp__Q28Morimura9TVsSelect = .sdata:0x80514BF0; // type:object size:0x4 scope:global align:4 data:float +mWindowScale__Q28Morimura9TVsSelect = .sdata:0x80514BF4; // type:object size:0x4 scope:global align:4 data:float +mDemoScaleMax__Q28Morimura9TVsSelect = .sdata:0x80514BF8; // type:object size:0x4 scope:global align:4 data:float +mDemoScale__Q28Morimura9TVsSelect = .sdata:0x80514BFC; // type:object size:0x4 scope:global align:4 data:float +mDemoOffsetMax__Q28Morimura9TVsSelect = .sdata:0x80514C00; // type:object size:0x4 scope:global align:4 data:float +mFireAlphaRate__Q28Morimura9TVsSelect = .sdata:0x80514C04; // type:object size:0x4 scope:global align:4 data:float +mWideWindow__Q28Morimura11TScrollList = .sdata:0x80514C08; // type:object size:0x1 scope:global align:1 data:byte +mClipRadiusS__11ParticleMgr = .sdata:0x80514C10; // type:object size:0x4 scope:global align:4 data:float +mClipRadiusM__11ParticleMgr = .sdata:0x80514C14; // type:object size:0x4 scope:global align:4 data:float +mClipRadiusL__11ParticleMgr = .sdata:0x80514C18; // type:object size:0x4 scope:global align:4 data:float +cInitialCode__Q23ebi11CardEReader = .sdata:0x80514C20; // type:object size:0x4 scope:local align:4 data:byte +sUseABXCommand = .sdata:0x80514C28; // type:object size:0x1 scope:local align:1 data:byte +cMapFileName = .sdata:0x80514C2C; // type:object size:0x4 scope:local align:4 data:4byte +mActiveSectionFlag__8GameFlow = .sdata:0x80514C30; // type:object size:0x4 scope:global align:4 data:4byte +viewCalcMode__Q28SysShape5Model = .sdata:0x80514C38; // type:object size:0x1 scope:global align:1 data:byte +cFileName__Q24Game10MemoryCard = .sdata:0x80514C40; // type:object size:0x4 scope:global align:4 data:4byte +sTinyPikminNum__13TinyPikminMgr = .sdata:0x80514C48; // type:object size:0x4 scope:global align:4 data:4byte +sMovieIndex__26@unnamed@titleSection_cpp@ = .sdata:0x80514C50; // type:object size:0x7 scope:local align:4 +sSeasonIndex__26@unnamed@titleSection_cpp@ = .sdata:0x80514C57; // type:object size:0x1 scope:local align:1 data:byte +sMovieIndexTable__Q24Demo25@unnamed@demoSection_cpp@ = .sdata:0x80514C58; // type:object size:0x8 scope:local align:4 +sMovieIndex__Q24Demo25@unnamed@demoSection_cpp@ = .sdata:0x80514C60; // type:object size:0x1 scope:local align:1 data:byte +sTreasureLader_PitchDistance = .sdata:0x80514C68; // type:object size:0x4 scope:global align:4 data:float +sTreasureLader_Pitch = .sdata:0x80514C6C; // type:object size:0x4 scope:global align:4 data:float +sTreasureLader_DistanceExp = .sdata:0x80514C70; // type:object size:0x4 scope:global align:4 data:float +sTreasureLader_MinimumVolume = .sdata:0x80514C74; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseVolumeExp = .sdata:0x80514C78; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseFuefukiTimerCenter = .sdata:0x80514C7C; // type:object size:0x2 scope:global align:2 data:2byte +sLaderNoiseFuefukiTimerRandam = .sdata:0x80514C7E; // type:object size:0x2 scope:global align:2 data:2byte +sLaderNoiseFuefukiSensMax = .sdata:0x80514C80; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseFuefukiVolumeMin = .sdata:0x80514C84; // type:object size:0x4 scope:global align:4 data:float +sLaderNoiseFuefukiVolumeMax = .sdata:0x80514C88; // type:object size:0x4 scope:global align:4 data:float +cDol_0Rad__Q23PSM7SeSound = .sdata:0x80514C90; // type:object size:0x4 scope:global align:4 data:float +cDol_HalfRad__Q23PSM7SeSound = .sdata:0x80514C94; // type:object size:0x4 scope:global align:4 data:float +cDol_FullRad__Q23PSM7SeSound = .sdata:0x80514C98; // type:object size:0x4 scope:global align:4 data:float +cPan_MaxAmp__Q23PSM7SeSound = .sdata:0x80514C9C; // type:object size:0x4 scope:global align:4 data:float +cCenterRad__Q23PSM7SeSound = .sdata:0x80514CA0; // type:object size:0x4 scope:global align:4 data:float +sCamFov__3PSM = .sdata:0x80514CA8; // type:object size:0x4 scope:global align:4 data:float +sBoss_ViewDist__3PSM = .sdata:0x80514CAC; // type:object size:0x4 scope:global align:4 data:float +sBoss_ViewDistVol__3PSM = .sdata:0x80514CB0; // type:object size:0x4 scope:global align:4 data:float +sBoss_DistMax__3PSM = .sdata:0x80514CB4; // type:object size:0x4 scope:global align:4 data:float +init$1233 = .sbss:0x80514CC0; // type:object size:0x1 scope:local align:1 data:byte +@568 = .sbss:0x80514CC8; // type:object size:0x1 scope:local align:4 data:byte +soOutput_none___Q27JStudio14TVariableValue = .sbss:0x80514CD0; // type:object size:0x4 scope:global align:4 data:4byte +init$1257 = .sbss:0x80514CD8; // type:object size:0x1 scope:local align:1 data:byte +sAramObject__7JKRAram = .sbss:0x80514CE0; // type:object size:0x4 scope:global align:4 data:4byte +szpBuf = .sbss:0x80514CE4; // type:object size:0x4 scope:local align:4 data:4byte +szpEnd = .sbss:0x80514CE8; // type:object size:0x4 scope:local align:4 data:4byte +refBuf = .sbss:0x80514CEC; // type:object size:0x4 scope:local align:4 data:4byte +refEnd = .sbss:0x80514CF0; // type:object size:0x4 scope:local align:4 data:4byte +refCurrent = .sbss:0x80514CF4; // type:object size:0x4 scope:local align:4 data:4byte +srcOffset = .sbss:0x80514CF8; // type:object size:0x4 scope:local align:4 data:4byte +transLeft = .sbss:0x80514CFC; // type:object size:0x4 scope:local align:4 data:4byte +srcLimit = .sbss:0x80514D00; // type:object size:0x4 scope:local align:4 data:4byte +srcAddress = .sbss:0x80514D04; // type:object size:0x4 scope:local align:4 data:4byte +fileOffset = .sbss:0x80514D08; // type:object size:0x4 scope:local align:4 data:4byte +readCount = .sbss:0x80514D0C; // type:object size:0x4 scope:local align:4 data:4byte +maxDest = .sbss:0x80514D10; // type:object size:0x4 scope:local align:4 data:4byte +isInitMutex = .sbss:0x80514D14; // type:object size:0x1 scope:local align:1 data:byte +tsPtr = .sbss:0x80514D18; // type:object size:0x4 scope:local align:4 data:4byte +tsArea = .sbss:0x80514D1C; // type:object size:0x4 scope:local align:4 data:4byte +sAramStreamObject__13JKRAramStream = .sbss:0x80514D20; // type:object size:0x4 scope:global align:4 data:4byte +transBuffer__13JKRAramStream = .sbss:0x80514D24; // type:object size:0x4 scope:global align:4 data:4byte +transSize__13JKRAramStream = .sbss:0x80514D28; // type:object size:0x4 scope:global align:4 data:4byte +transHeap__13JKRAramStream = .sbss:0x80514D2C; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentDirID__10JKRArchive = .sbss:0x80514D30; // type:object size:0x4 scope:global align:4 data:4byte +sDecompObject__9JKRDecomp = .sbss:0x80514D38; // type:object size:0x4 scope:global align:4 data:4byte +szpBuf = .sbss:0x80514D40; // type:object size:0x4 scope:local align:4 data:4byte +szpEnd = .sbss:0x80514D44; // type:object size:0x4 scope:local align:4 data:4byte +refBuf = .sbss:0x80514D48; // type:object size:0x4 scope:local align:4 data:4byte +refEnd = .sbss:0x80514D4C; // type:object size:0x4 scope:local align:4 data:4byte +refCurrent = .sbss:0x80514D50; // type:object size:0x4 scope:local align:4 data:4byte +dmaBuf = .sbss:0x80514D54; // type:object size:0x4 scope:local align:4 data:4byte +dmaEnd = .sbss:0x80514D58; // type:object size:0x4 scope:local align:4 data:4byte +dmaCurrent = .sbss:0x80514D5C; // type:object size:0x4 scope:local align:4 data:4byte +srcOffset = .sbss:0x80514D60; // type:object size:0x4 scope:local align:4 data:4byte +transLeft = .sbss:0x80514D64; // type:object size:0x4 scope:local align:4 data:4byte +srcLimit = .sbss:0x80514D68; // type:object size:0x4 scope:local align:4 data:4byte +srcFile = .sbss:0x80514D6C; // type:object size:0x4 scope:local align:4 data:4byte +fileOffset = .sbss:0x80514D70; // type:object size:0x4 scope:local align:4 data:4byte +readCount = .sbss:0x80514D74; // type:object size:0x4 scope:local align:4 data:4byte +maxDest = .sbss:0x80514D78; // type:object size:0x4 scope:local align:4 data:4byte +isInitMutex = .sbss:0x80514D7C; // type:object size:0x1 scope:local align:1 data:byte +tsPtr = .sbss:0x80514D80; // type:object size:0x4 scope:local align:4 data:4byte +tsArea = .sbss:0x80514D84; // type:object size:0x4 scope:local align:4 data:4byte +szpBuf = .sbss:0x80514D88; // type:object size:0x4 scope:local align:4 data:4byte +szpEnd = .sbss:0x80514D8C; // type:object size:0x4 scope:local align:4 data:4byte +refBuf = .sbss:0x80514D90; // type:object size:0x4 scope:local align:4 data:4byte +refEnd = .sbss:0x80514D94; // type:object size:0x4 scope:local align:4 data:4byte +refCurrent = .sbss:0x80514D98; // type:object size:0x4 scope:local align:4 data:4byte +srcOffset = .sbss:0x80514D9C; // type:object size:0x4 scope:local align:4 data:4byte +transLeft = .sbss:0x80514DA0; // type:object size:0x4 scope:local align:4 data:4byte +srcLimit = .sbss:0x80514DA4; // type:object size:0x4 scope:local align:4 data:4byte +srcFile = .sbss:0x80514DA8; // type:object size:0x4 scope:local align:4 data:4byte +fileOffset = .sbss:0x80514DAC; // type:object size:0x4 scope:local align:4 data:4byte +readCount = .sbss:0x80514DB0; // type:object size:0x4 scope:local align:4 data:4byte +maxDest = .sbss:0x80514DB4; // type:object size:0x4 scope:local align:4 data:4byte +isInitMutex = .sbss:0x80514DB8; // type:object size:0x1 scope:local align:1 data:byte +tsPtr = .sbss:0x80514DBC; // type:object size:0x4 scope:local align:4 data:4byte +tsArea = .sbss:0x80514DC0; // type:object size:0x4 scope:local align:4 data:4byte +DBfoundSize = .sbss:0x80514DC8; // type:object size:0x4 scope:local align:4 data:4byte +DBfoundOffset = .sbss:0x80514DCC; // type:object size:0x4 scope:local align:4 data:4byte +DBfoundBlock = .sbss:0x80514DD0; // type:object size:0x4 scope:local align:4 data:4byte +DBnewFreeBlock = .sbss:0x80514DD4; // type:object size:0x4 scope:local align:4 data:4byte +DBnewUsedBlock = .sbss:0x80514DD8; // type:object size:0x4 scope:local align:4 data:4byte +sCurrentVolume__13JKRFileLoader = .sbss:0x80514DE0; // type:object size:0x4 scope:global align:4 data:4byte +sSystemHeap__7JKRHeap = .sbss:0x80514DE8; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentHeap__7JKRHeap = .sbss:0x80514DEC; // type:object size:0x4 scope:global align:4 data:4byte +sRootHeap__7JKRHeap = .sbss:0x80514DF0; // type:object size:0x4 scope:global align:4 data:4byte +mErrorHandler__7JKRHeap = .sbss:0x80514DF4; // type:object size:0x4 scope:global align:4 data:4byte +sDefaultFillCheckFlag__7JKRHeap = .sbss:0x80514DF8; // type:object size:0x1 scope:global align:1 data:byte +mCodeStart__7JKRHeap = .sbss:0x80514DFC; // type:object size:0x4 scope:global align:4 data:4byte +mCodeEnd__7JKRHeap = .sbss:0x80514E00; // type:object size:0x4 scope:global align:4 data:4byte +mUserRamStart__7JKRHeap = .sbss:0x80514E04; // type:object size:0x4 scope:global align:4 data:4byte +mUserRamEnd__7JKRHeap = .sbss:0x80514E08; // type:object size:0x4 scope:global align:4 data:4byte +mMemorySize__7JKRHeap = .sbss:0x80514E0C; // type:object size:0x4 scope:global align:4 data:4byte +bVerbose___Q27JKRHeap6TState = .sbss:0x80514E10; // type:object size:0x1 scope:global align:1 data:byte +sManager__15JKRThreadSwitch = .sbss:0x80514E18; // type:object size:0x4 scope:global align:4 data:4byte +sTotalCount__15JKRThreadSwitch = .sbss:0x80514E1C; // type:object size:0x4 scope:global align:4 data:4byte +sTotalStart__15JKRThreadSwitch = .sbss:0x80514E20; // type:object size:0x8 scope:global align:8 data:4byte +sMessageLife__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sbss:0x80514E28; // type:object size:0x4 scope:local align:4 data:4byte +sManager__17JUTConsoleManager = .sbss:0x80514E30; // type:object size:0x4 scope:global align:4 data:4byte +sReportConsole = .sbss:0x80514E34; // type:object size:0x4 scope:local align:4 data:4byte +sWarningConsole = .sbss:0x80514E38; // type:object size:0x4 scope:local align:4 data:4byte +sDebugPrint__10JUTDbPrint = .sbss:0x80514E40; // type:object size:0x4 scope:global align:4 data:4byte +sDirectPrint__14JUTDirectPrint = .sbss:0x80514E48; // type:object size:0x4 scope:global align:4 data:4byte +sErrorManager__12JUTException = .sbss:0x80514E50; // type:object size:0x4 scope:global align:4 data:4byte +sPreUserCallback__12JUTException = .sbss:0x80514E54; // type:object size:0x4 scope:global align:4 data:4byte +sPostUserCallback__12JUTException = .sbss:0x80514E58; // type:object size:0x4 scope:global align:4 data:4byte +sConsoleBuffer__12JUTException = .sbss:0x80514E5C; // type:object size:0x4 scope:global align:4 data:4byte +sConsoleBufferSize__12JUTException = .sbss:0x80514E60; // type:object size:0x4 scope:global align:4 data:4byte +sConsole__12JUTException = .sbss:0x80514E64; // type:object size:0x4 scope:global align:4 data:4byte +msr__12JUTException = .sbss:0x80514E68; // type:object size:0x4 scope:global align:4 data:4byte +fpscr__12JUTException = .sbss:0x80514E6C; // type:object size:0x4 scope:global align:4 data:4byte +mListInitialized__10JUTGamePad = .sbss:0x80514E70; // type:object size:0x1 scope:global align:1 data:byte +mPadAssign__10JUTGamePad = .sbss:0x80514E74; // type:object size:0x4 scope:global align:4 data:byte +sSuppressPadReset__10JUTGamePad = .sbss:0x80514E78; // type:object size:0x4 scope:global align:4 data:4byte +sAnalogMode__10JUTGamePad = .sbss:0x80514E7C; // type:object size:0x4 scope:global align:4 data:4byte +sRumbleSupported__10JUTGamePad = .sbss:0x80514E80; // type:object size:0x4 scope:global align:4 data:4byte +mStatus__Q210JUTGamePad7CRumble = .sbss:0x80514E84; // type:object size:0x4 scope:global align:4 data:byte +mEnabled__Q210JUTGamePad7CRumble = .sbss:0x80514E88; // type:object size:0x4 scope:global align:4 data:4byte +sCallback__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514E8C; // type:object size:0x4 scope:global align:4 data:4byte +sCallbackArg__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514E90; // type:object size:0x4 scope:global align:4 data:4byte +sThreshold__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514E98; // type:object size:0x8 scope:global align:8 data:4byte +sResetSwitchPushing__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514EA0; // type:object size:0x1 scope:global align:1 data:byte +sResetOccurred__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514EA1; // type:object size:0x1 scope:global align:1 data:byte +sResetOccurredPort__Q210JUTGamePad13C3ButtonReset = .sbss:0x80514EA4; // type:object size:0x4 scope:global align:4 data:4byte +sInitiated__12JUTGraphFifo = .sbss:0x80514EA8; // type:object size:0x1 scope:global align:1 data:byte +sCurrentFifo__12JUTGraphFifo = .sbss:0x80514EAC; // type:object size:0x4 scope:global align:4 data:4byte +mGpStatus__12JUTGraphFifo = .sbss:0x80514EB0; // type:object size:0x5 scope:global align:4 +sManager__10JUTProcBar = .sbss:0x80514EB8; // type:object size:0x4 scope:global align:4 data:4byte +cnt$2595 = .sbss:0x80514EBC; // type:object size:0x4 scope:local align:4 data:4byte +init$2596 = .sbss:0x80514EC0; // type:object size:0x1 scope:local align:1 data:byte +cntUser$2644 = .sbss:0x80514EC4; // type:object size:0x4 scope:local align:4 data:4byte +init$2645 = .sbss:0x80514EC8; // type:object size:0x1 scope:local align:1 data:byte +spAboutEncoding___10JUTRomFont = .sbss:0x80514ED0; // type:object size:0x4 scope:global align:4 data:4byte +spFontHeader___10JUTRomFont = .sbss:0x80514ED4; // type:object size:0x4 scope:global align:4 data:4byte +suFontHeaderRefered___10JUTRomFont = .sbss:0x80514ED8; // type:object size:0x4 scope:global align:4 data:4byte +sManager__8JUTVideo = .sbss:0x80514EE0; // type:object size:0x4 scope:global align:4 data:4byte +sVideoLastTick__8JUTVideo = .sbss:0x80514EE4; // type:object size:0x4 scope:global align:4 data:4byte +sVideoInterval__8JUTVideo = .sbss:0x80514EE8; // type:object size:0x4 scope:global align:4 data:4byte +sDrawWaiting = .sbss:0x80514EEC; // type:object size:0x1 scope:global align:1 data:byte +frameBuffer$2452 = .sbss:0x80514EF0; // type:object size:0x4 scope:local align:4 data:4byte +init$2453 = .sbss:0x80514EF4; // type:object size:0x1 scope:local align:1 data:byte +sManager__6JUTXfb = .sbss:0x80514EF8; // type:object size:0x4 scope:global align:4 data:4byte +mStrBuff__8J2DPrint = .sbss:0x80514F00; // type:object size:0x4 scope:global align:4 data:4byte +mHeapFlag__8J2DPrint = .sbss:0x80514F04; // type:object size:0x1 scope:global align:1 data:byte +mStrBuffSize__8J2DPrint = .sbss:0x80514F08; // type:object size:0x4 scope:global align:4 data:4byte +mBufferNotEnough__8J2DPrint = .sbss:0x80514F0C; // type:object size:0x1 scope:global align:1 data:byte +mDataManage__9J2DScreen = .sbss:0x80514F10; // type:object size:0x4 scope:global align:4 data:4byte +TextureNameConnect__11J2DBloSaver = .sbss:0x80514F18; // type:object size:0x4 scope:global align:4 data:4byte +j3dDefaultViewNo = .sbss:0x80514F20; // type:object size:0x4 scope:global align:4 +sInterruptFlag__17J3DDisplayListObj = .sbss:0x80514F28; // type:object size:0x4 scope:global align:4 data:4byte +sOldVcdVatCmd__8J3DShape = .sbss:0x80514F30; // type:object size:0x4 scope:global align:4 data:4byte +sEnvelopeFlag__8J3DShape = .sbss:0x80514F34; // type:object size:0x1 scope:global align:1 data:byte +sInterruptFlag$1728 = .sbss:0x80514F38; // type:object size:0x4 scope:local align:4 data:4byte +init$1729 = .sbss:0x80514F3C; // type:object size:0x1 scope:local align:1 data:byte +entryNum__13J3DDrawBuffer = .sbss:0x80514F40; // type:object size:0x4 scope:global align:4 data:4byte +mMtxBuffer__10J3DMtxCalc = .sbss:0x80514F48; // type:object size:0x4 scope:global align:4 data:4byte +mJoint__10J3DMtxCalc = .sbss:0x80514F4C; // type:object size:0x4 scope:global align:4 data:4byte +mCurrentMtxCalc__8J3DJoint = .sbss:0x80514F50; // type:object size:0x4 scope:global align:4 data:4byte +SizeOfJ3DColorBlockLightOffLoad = .sbss:0x80514F58; // type:object size:0x4 scope:local align:4 data:4byte +SizeOfJ3DColorBlockAmbientOnLoad = .sbss:0x80514F5C; // type:object size:0x4 scope:local align:4 data:4byte +sInterruptFlag$1509 = .sbss:0x80514F60; // type:object size:0x4 scope:local align:4 data:4byte +init$1510 = .sbss:0x80514F64; // type:object size:0x1 scope:local align:1 data:byte +sCurrentPipeline__11J3DShapeMtx = .sbss:0x80514F68; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentScaleFlag__11J3DShapeMtx = .sbss:0x80514F6C; // type:object size:0x4 scope:global align:4 data:4byte +sNBTFlag__11J3DShapeMtx = .sbss:0x80514F70; // type:object size:0x1 scope:global align:1 data:byte +sLODFlag__11J3DShapeMtx = .sbss:0x80514F71; // type:object size:0x1 scope:global align:1 data:byte +sTexMtxLoadType__11J3DShapeMtx = .sbss:0x80514F74; // type:object size:0x4 scope:global align:4 data:4byte +sMtxPtrTbl__21J3DShapeMtxConcatView = .sbss:0x80514F78; // type:object size:0x8 scope:global align:4 data:4byte +sTexGenBlock__17J3DDifferedTexMtx = .sbss:0x80514F80; // type:object size:0x4 scope:global align:4 data:4byte +sTexMtxObj__17J3DDifferedTexMtx = .sbss:0x80514F84; // type:object size:0x4 scope:global align:4 data:4byte +rootHeap__9JFWSystem = .sbss:0x80514F88; // type:object size:0x4 scope:global align:4 data:4byte +systemHeap__9JFWSystem = .sbss:0x80514F8C; // type:object size:0x4 scope:global align:4 data:4byte +mainThread__9JFWSystem = .sbss:0x80514F90; // type:object size:0x4 scope:global align:4 data:4byte +debugPrint__9JFWSystem = .sbss:0x80514F94; // type:object size:0x4 scope:global align:4 data:4byte +systemFont__9JFWSystem = .sbss:0x80514F98; // type:object size:0x4 scope:global align:4 data:4byte +systemConsoleManager__9JFWSystem = .sbss:0x80514F9C; // type:object size:0x4 scope:global align:4 data:4byte +systemConsole__9JFWSystem = .sbss:0x80514FA0; // type:object size:0x4 scope:global align:4 data:4byte +sInitCalled__9JFWSystem = .sbss:0x80514FA4; // type:object size:0x1 scope:global align:1 data:byte +sManager__10JFWDisplay = .sbss:0x80514FA8; // type:object size:0x4 scope:global align:4 data:4byte +prevFrame$3378 = .sbss:0x80514FAC; // type:object size:0x4 scope:local align:4 data:4byte +init$3379 = .sbss:0x80514FB0; // type:object size:0x1 scope:local align:1 data:byte +nextTick$3423 = .sbss:0x80514FB8; // type:object size:0x8 scope:local align:8 data:4byte +init$3424 = .sbss:0x80514FC0; // type:object size:0x1 scope:local align:1 data:byte +nextCount$3431 = .sbss:0x80514FC4; // type:object size:0x4 scope:local align:4 data:4byte +init$3432 = .sbss:0x80514FC8; // type:object size:0x1 scope:local align:1 data:byte +sUsedHeapSize__11JASWSParser = .sbss:0x80514FD0; // type:object size:0x4 scope:local align:4 data:4byte +sTableSize__10JASBankMgr = .sbss:0x80514FD8; // type:object size:0x4 scope:local align:4 data:4byte +sBankArray__10JASBankMgr = .sbss:0x80514FDC; // type:object size:0x4 scope:local align:4 data:4byte +sVir2PhyTable__10JASBankMgr = .sbss:0x80514FE0; // type:object size:0x4 scope:local align:4 data:4byte +sInstance__123JASSingletonHolder<62JASMemPool<10JASChannel,Q217JASThreadingModel14SingleThreaded>,Q217JASCreationPolicy15NewFromRootHeap> = .sbss:0x80514FE4; // type:object size:0x4 scope:weak align:4 data:4byte +sUsedHeapSize__12JASBNKParser = .sbss:0x80514FE8; // type:object size:0x4 scope:local align:4 data:4byte +oscp$640 = .sbss:0x80514FF0; // type:object size:0x4 scope:local align:4 data:4byte +init$641 = .sbss:0x80514FF4; // type:object size:0x1 scope:local align:1 data:byte +init$644 = .sbss:0x80514FF8; // type:object size:0x1 scope:local align:1 data:byte +oRandom$643 = .sbss:0x80514FFC; // type:object size:0x4 scope:local align:4 data:4byte +sAramHeap__16JASWaveArcLoader = .sbss:0x80515000; // type:object size:0x4 scope:local align:4 data:4byte +sCurrentHeap__11JASWaveBank = .sbss:0x80515008; // type:object size:0x4 scope:global align:4 data:4byte +sTableSize__14JASWaveBankMgr = .sbss:0x80515010; // type:object size:0x4 scope:local align:4 data:4byte +sWaveBank__14JASWaveBankMgr = .sbss:0x80515014; // type:object size:0x4 scope:local align:4 data:4byte +sCurrentHeap__7JASBank = .sbss:0x80515018; // type:object size:0x4 scope:global align:4 data:4byte +sV0$663 = .sbss:0x80515020; // type:object size:0x4 scope:local align:4 data:4byte +init$664 = .sbss:0x80515024; // type:object size:0x1 scope:local align:1 data:byte +sV1$666 = .sbss:0x80515028; // type:object size:0x4 scope:local align:4 data:4byte +init$667 = .sbss:0x8051502C; // type:object size:0x1 scope:local align:1 data:byte +sCallBackFunc__8JASTrack = .sbss:0x80515030; // type:object size:0x4 scope:global align:4 data:4byte +sParser__8JASTrack = .sbss:0x80515034; // type:object size:0x1 scope:global align:4 +sFreeList__8JASTrack = .sbss:0x80515038; // type:object size:0x4 scope:global align:4 data:4byte +sFreeListEnd__8JASTrack = .sbss:0x8051503C; // type:object size:0x4 scope:global align:4 data:4byte +sDspChannels__13JASDSPChannel = .sbss:0x80515040; // type:object size:0x4 scope:global align:4 data:4byte +CH_BUF__6JASDsp = .sbss:0x80515048; // type:object size:0x4 scope:local align:4 data:4byte +FX_BUF__6JASDsp = .sbss:0x8051504C; // type:object size:0x4 scope:local align:4 data:4byte +sDSPVolume__6JASDsp = .sbss:0x80515050; // type:object size:0x4 scope:local align:4 data:float +first$389 = .sbss:0x80515054; // type:object size:0x1 scope:local align:1 data:byte +init$390 = .sbss:0x80515055; // type:object size:0x1 scope:local align:1 data:byte +sAudioThread__14JASAudioThread = .sbss:0x80515058; // type:object size:0x4 scope:global align:4 data:4byte +sThreadQueue__14JASAudioThread = .sbss:0x8051505C; // type:object size:0x8 scope:global align:4 +sVFrameCounter__14JASAudioThread = .sbss:0x80515064; // type:object size:0x4 scope:global align:4 data:4byte +snIntCount__14JASAudioThread = .sbss:0x80515068; // type:object size:0x4 scope:global align:4 data:4byte +sbPauseFlag__14JASAudioThread = .sbss:0x8051506C; // type:object size:0x1 scope:global align:1 data:byte +sThread__6JASDvd = .sbss:0x80515070; // type:object size:0x4 scope:local align:4 data:4byte +JASDram = .sbss:0x80515078; // type:object size:0x4 scope:global align:4 data:4byte +sAramBase__9JASKernel = .sbss:0x8051507C; // type:object size:0x4 scope:local align:4 data:4byte +sSystemHeap__9JASKernel = .sbss:0x80515080; // type:object size:0x4 scope:local align:4 data:4byte +sCommandHeap__9JASKernel = .sbss:0x80515084; // type:object size:0x4 scope:local align:4 data:4byte +sProbes = .sbss:0x80515088; // type:object size:0x4 scope:local align:4 data:4byte +sBuffer = .sbss:0x80515090; // type:object size:0x4 scope:local align:4 data:4byte +sLineMax = .sbss:0x80515094; // type:object size:0x4 scope:local align:4 data:4byte +sLineCount = .sbss:0x80515098; // type:object size:0x4 scope:local align:4 data:4byte +sTop = .sbss:0x8051509C; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacBuffer__9JASDriver = .sbss:0x805150A0; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacWriteBuffer__9JASDriver = .sbss:0x805150A4; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacReadBuffer__9JASDriver = .sbss:0x805150A8; // type:object size:0x4 scope:local align:4 data:4byte +sDspStatus__9JASDriver = .sbss:0x805150AC; // type:object size:0x4 scope:local align:4 data:4byte +sDspDacCallback__9JASDriver = .sbss:0x805150B0; // type:object size:0x4 scope:local align:4 data:4byte +lastRspMadep__9JASDriver = .sbss:0x805150B4; // type:object size:0x4 scope:local align:4 data:4byte +dacCallbackFunc__9JASDriver = .sbss:0x805150B8; // type:object size:0x4 scope:local align:4 data:4byte +extMixCallback__9JASDriver = .sbss:0x805150BC; // type:object size:0x4 scope:local align:4 data:4byte +sOutputRate__9JASDriver = .sbss:0x805150C0; // type:object size:0x4 scope:local align:4 data:4byte +dacp$428 = .sbss:0x805150C4; // type:object size:0x4 scope:local align:4 data:4byte +init$429 = .sbss:0x805150C8; // type:object size:0x1 scope:local align:1 data:byte +old_time$446 = .sbss:0x805150CC; // type:object size:0x4 scope:local align:4 data:4byte +init$447 = .sbss:0x805150D0; // type:object size:0x1 scope:local align:1 data:byte +sLoadThread__13JASAramStream = .sbss:0x805150D8; // type:object size:0x4 scope:global align:4 data:4byte +sReadBuffer__13JASAramStream = .sbss:0x805150DC; // type:object size:0x4 scope:global align:4 data:4byte +sBlockSize__13JASAramStream = .sbss:0x805150E0; // type:object size:0x4 scope:global align:4 data:4byte +sChannelMax__13JASAramStream = .sbss:0x805150E4; // type:object size:0x4 scope:global align:4 data:4byte +sSystemPauseFlag__13JASAramStream = .sbss:0x805150E8; // type:object size:0x1 scope:global align:1 data:byte +sFatalErrorFlag__13JASAramStream = .sbss:0x805150E9; // type:object size:0x1 scope:global align:1 data:byte +flag = .sbss:0x805150F0; // type:object size:0x4 scope:local align:4 data:4byte +taskreadp = .sbss:0x805150F8; // type:object size:0x4 scope:local align:4 data:4byte +taskwritep = .sbss:0x805150FC; // type:object size:0x4 scope:local align:4 data:4byte +DSP_prior_yield = .sbss:0x80515100; // type:object size:0x1 scope:local align:1 data:byte +AUDIO_UPDATE_REQUEST = .sbss:0x80515104; // type:object size:0x4 scope:local align:4 data:4byte +DSP_prior_task = .sbss:0x80515108; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeBnk__Q27JAInter8BankWave = .sbss:0x80515110; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeWs__Q27JAInter8BankWave = .sbss:0x80515114; // type:object size:0x4 scope:global align:4 data:4byte +wsGroupNumber__Q27JAInter8BankWave = .sbss:0x80515118; // type:object size:0x4 scope:global align:4 data:4byte +wsLoadStatus__Q27JAInter8BankWave = .sbss:0x8051511C; // type:object size:0x4 scope:global align:4 data:4byte +wsMax__Q27JAInter8BankWave = .sbss:0x80515120; // type:object size:0x4 scope:global align:4 data:4byte +msBasic__8JAIBasic = .sbss:0x80515128; // type:object size:0x4 scope:global align:4 data:4byte +msCurrentHeap__8JAIBasic = .sbss:0x8051512C; // type:object size:0x4 scope:global align:4 data:4byte +msStopMode__8JAIBasic = .sbss:0x80515130; // type:object size:0x1 scope:global align:1 data:byte +msAudioStopTime__8JAIBasic = .sbss:0x80515134; // type:object size:0x4 scope:global align:4 data:4byte +msDspLevel__8JAIBasic = .sbss:0x80515138; // type:object size:0x4 scope:global align:4 data:float +msAutoLevel__8JAIBasic = .sbss:0x8051513C; // type:object size:0x4 scope:global align:4 data:float +msAutoDif__8JAIBasic = .sbss:0x80515140; // type:object size:0x4 scope:global align:4 data:float +msDspDif__8JAIBasic = .sbss:0x80515144; // type:object size:0x4 scope:global align:4 data:float +random__Q27JAInter5Const = .sbss:0x80515148; // type:object size:0x4 scope:global align:4 data:4byte +deadObjectFreePointer__Q27JAInter14DummyObjectMgr = .sbss:0x80515150; // type:object size:0x4 scope:global align:4 data:4byte +deadObjectUsedPointer__Q27JAInter14DummyObjectMgr = .sbss:0x80515154; // type:object size:0x4 scope:global align:4 data:4byte +deadObjectObject__Q27JAInter14DummyObjectMgr = .sbss:0x80515158; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeFxScene__Q27JAInter2Fx = .sbss:0x80515160; // type:object size:0x4 scope:global align:4 data:4byte +mSceneMax__Q27JAInter2Fx = .sbss:0x80515164; // type:object size:0x1 scope:global align:1 data:byte +mBufferSizeMax__Q27JAInter2Fx = .sbss:0x80515168; // type:object size:0x4 scope:global align:4 data:4byte +mBufferPointer__Q27JAInter2Fx = .sbss:0x8051516C; // type:object size:0x4 scope:global align:4 data:4byte +mFxconfigTable__Q27JAInter2Fx = .sbss:0x80515170; // type:object size:0x4 scope:global align:4 data:4byte +seDefaultFx__18JAIGlobalParameter = .sbss:0x80515178; // type:object size:0x2 scope:global align:2 data:2byte +interfaceHeapSize__18JAIGlobalParameter = .sbss:0x8051517C; // type:object size:0x4 scope:global align:4 data:4byte +minDistanceVolume__18JAIGlobalParameter = .sbss:0x80515180; // type:object size:0x4 scope:global align:4 data:float +aafPointer__Q27JAInter8InitData = .sbss:0x80515188; // type:object size:0x4 scope:global align:4 data:4byte +seTrackUpdate__Q27JAInter5SeMgr = .sbss:0x80515190; // type:object size:0x4 scope:global align:4 data:4byte +categoryInfoTable__Q27JAInter5SeMgr = .sbss:0x80515194; // type:object size:0x4 scope:global align:4 data:4byte +sePlaySound__Q27JAInter5SeMgr = .sbss:0x80515198; // type:object size:0x4 scope:global align:4 data:4byte +seRegist__Q27JAInter5SeMgr = .sbss:0x8051519C; // type:object size:0x4 scope:global align:4 data:4byte +seHandle__Q27JAInter5SeMgr = .sbss:0x805151A0; // type:object size:0x4 scope:global align:4 data:4byte +seScene__Q27JAInter5SeMgr = .sbss:0x805151A4; // type:object size:0x1 scope:global align:1 data:byte +seqMuteFlagFromSe__Q27JAInter5SeMgr = .sbss:0x805151A8; // type:object size:0x4 scope:global align:4 data:4byte +seCategoryVolume__Q27JAInter5SeMgr = .sbss:0x805151AC; // type:object size:0x4 scope:global align:4 data:4byte +seEntryCancel__Q27JAInter5SeMgr = .sbss:0x805151B0; // type:object size:0x4 scope:global align:4 data:4byte +sAutoHeap__Q27JAInter7HeapMgr = .sbss:0x805151B8; // type:object size:0x4 scope:local align:4 data:4byte +sStayHeap__Q27JAInter7HeapMgr = .sbss:0x805151BC; // type:object size:0x4 scope:local align:4 data:4byte +sAutoHeapCount__Q27JAInter7HeapMgr = .sbss:0x805151C0; // type:object size:0x4 scope:local align:4 data:4byte +sStayHeapCount__Q27JAInter7HeapMgr = .sbss:0x805151C4; // type:object size:0x4 scope:local align:4 data:4byte +seqTrackInfo__Q27JAInter11SequenceMgr = .sbss:0x805151C8; // type:object size:0x4 scope:global align:4 data:4byte +FixSeqBufPointer__Q27JAInter11SequenceMgr = .sbss:0x805151CC; // type:object size:0x4 scope:global align:4 data:4byte +seqControl__Q27JAInter11SequenceMgr = .sbss:0x805151D0; // type:object size:0x8 scope:global align:4 data:4byte +arcPointer__Q27JAInter11SequenceMgr = .sbss:0x805151D8; // type:object size:0x4 scope:global align:4 data:4byte +customHeapCallback__Q27JAInter11SequenceMgr = .sbss:0x805151DC; // type:object size:0x4 scope:global align:4 data:4byte +_port$2234 = .sbss:0x805151E0; // type:object size:0x2 scope:local align:2 data:2byte +_port$2291 = .sbss:0x805151E2; // type:object size:0x2 scope:local align:2 data:2byte +init$2292 = .sbss:0x805151E4; // type:object size:0x1 scope:local align:1 data:byte +mVersion__Q27JAInter10SoundTable = .sbss:0x805151E8; // type:object size:0x1 scope:global align:1 data:byte +mCategotyMax__Q27JAInter10SoundTable = .sbss:0x805151E9; // type:object size:0x1 scope:global align:1 data:byte +mSoundMax__Q27JAInter10SoundTable = .sbss:0x805151EC; // type:object size:0x4 scope:global align:4 data:4byte +mDatasize__Q27JAInter10SoundTable = .sbss:0x805151F0; // type:object size:0x4 scope:global align:4 data:4byte +mPointerCategory__Q27JAInter10SoundTable = .sbss:0x805151F4; // type:object size:0x4 scope:global align:4 data:4byte +mAddress__Q27JAInter10SoundTable = .sbss:0x805151F8; // type:object size:0x4 scope:global align:4 data:4byte +flags__Q27JAInter9StreamMgr = .sbss:0x80515200; // type:object size:0x2 scope:global align:4 data:byte +prepareSw__Q27JAInter9StreamMgr = .sbss:0x80515202; // type:object size:0x1 scope:global align:1 data:byte +prepareFlag__Q27JAInter9StreamMgr = .sbss:0x80515203; // type:object size:0x1 scope:global align:1 data:byte +externalAram__Q27JAInter9StreamMgr = .sbss:0x80515204; // type:object size:0x1 scope:global align:1 data:byte +finishFlag__Q27JAInter9StreamMgr = .sbss:0x80515205; // type:object size:0x1 scope:global align:1 data:byte +streamUpdate__Q27JAInter9StreamMgr = .sbss:0x80515208; // type:object size:0x4 scope:global align:4 data:4byte +streamList__Q27JAInter9StreamMgr = .sbss:0x8051520C; // type:object size:0x4 scope:global align:4 data:4byte +streamSound__Q27JAInter9StreamMgr = .sbss:0x80515210; // type:object size:0x4 scope:global align:4 data:4byte +initOnCodeStrm__Q27JAInter9StreamMgr = .sbss:0x80515214; // type:object size:0x4 scope:global align:4 data:4byte +streamSystem__Q27JAInter9StreamMgr = .sbss:0x80515218; // type:object size:0x4 scope:global align:4 data:4byte +systemStatus__Q27JAInter9StreamMgr = .sbss:0x8051521C; // type:object size:0x4 scope:global align:4 data:4byte +controlStatus__Q27JAInter9StreamMgr = .sbss:0x80515220; // type:object size:0x4 scope:global align:4 data:4byte +aramBufferHeap__Q27JAInter9StreamMgr = .sbss:0x80515224; // type:object size:0x4 scope:global align:4 data:4byte +aramParentHeap__Q27JAInter9StreamMgr = .sbss:0x80515228; // type:object size:0x4 scope:global align:4 data:4byte +allocCallback__Q27JAInter9StreamMgr = .sbss:0x8051522C; // type:object size:0x4 scope:local align:4 data:4byte +deallocCallback__Q27JAInter9StreamMgr = .sbss:0x80515230; // type:object size:0x4 scope:local align:4 data:4byte +externalAramCallback__Q27JAInter9StreamMgr = .sbss:0x80515234; // type:object size:0x4 scope:local align:4 data:4byte +dataFileNumber__Q27JAInter9StreamMgr = .sbss:0x80515238; // type:object size:0x4 scope:global align:4 data:4byte +mgrCallback__Q27JAInter9StreamMgr = .sbss:0x8051523C; // type:object size:0x4 scope:global align:4 data:4byte +init$484 = .sbss:0x80515240; // type:object size:0x1 scope:local align:1 data:byte +oRandom$483 = .sbss:0x80515244; // type:object size:0x4 scope:local align:4 data:4byte +gTRKInputPendingPtr = .sbss:0x80515248; // type:object size:0x4 scope:global align:4 data:4byte +gIsInitialized = .sbss:0x80515250; // type:object size:0x4 scope:local align:4 data:4byte +gIsInitialized = .sbss:0x80515258; // type:object size:0x4 scope:local align:4 data:4byte +__global_destructor_chain = .sbss:0x80515260; // type:object size:0x4 scope:global align:4 data:4byte +__aborting = .sbss:0x80515268; // type:object size:0x4 scope:global align:4 data:4byte +__atexit_curr_func = .sbss:0x8051526C; // type:object size:0x4 scope:global align:4 data:4byte +__stdio_exit = .sbss:0x80515270; // type:object size:0x4 scope:global align:4 data:4byte +__console_exit = .sbss:0x80515274; // type:object size:0x4 scope:global align:4 data:4byte +init$193 = .sbss:0x80515278; // type:object size:0x1 scope:local align:1 data:byte +errno = .sbss:0x80515280; // type:object size:0x4 scope:global align:4 data:4byte +initialized$60 = .sbss:0x80515288; // type:object size:0x4 scope:local align:4 data:4byte +zero = .sbss:0x80515290; // type:object size:0x8 scope:local align:8 data:double +zero = .sbss:0x80515298; // type:object size:0x8 scope:local align:8 data:double +MTRCallback = .sbss:0x805152A0; // type:object size:0x4 scope:local align:4 data:4byte +DBGCallback = .sbss:0x805152A4; // type:object size:0x4 scope:local align:4 data:4byte +SendMailData = .sbss:0x805152A8; // type:object size:0x4 scope:local align:4 data:4byte +RecvDataLeng = .sbss:0x805152AC; // type:object size:0x4 scope:local align:4 data:4byte +pEXIInputFlag = .sbss:0x805152B0; // type:object size:0x4 scope:local align:4 data:4byte +EXIInputFlag = .sbss:0x805152B4; // type:object size:0x1 scope:local align:1 data:byte +IsInitialized = .sbss:0x805152B8; // type:object size:0x4 scope:local align:4 data:4byte +retraceCount = .sbss:0x805152BC; // type:object size:0x4 scope:local align:4 data:4byte +flushFlag = .sbss:0x805152C0; // type:object size:0x4 scope:local align:4 data:4byte +retraceQueue = .sbss:0x805152C4; // type:object size:0x8 scope:local align:4 +PreCB = .sbss:0x805152CC; // type:object size:0x4 scope:local align:4 data:4byte +PostCB = .sbss:0x805152D0; // type:object size:0x4 scope:local align:4 data:4byte +PositionCallback = .sbss:0x805152D4; // type:object size:0x4 scope:local align:4 data:4byte +encoderType = .sbss:0x805152D8; // type:object size:0x4 scope:local align:4 data:4byte +displayOffsetH = .sbss:0x805152DC; // type:object size:0x2 scope:local align:2 data:2byte +displayOffsetV = .sbss:0x805152DE; // type:object size:0x2 scope:local align:2 data:2byte +changeMode = .sbss:0x805152E0; // type:object size:0x4 scope:local align:4 data:4byte +changed = .sbss:0x805152E8; // type:object size:0x8 scope:local align:8 data:4byte +shdwChangeMode = .sbss:0x805152F0; // type:object size:0x4 scope:local align:4 data:4byte +shdwChanged = .sbss:0x805152F8; // type:object size:0x8 scope:local align:8 data:4byte +CurrTiming = .sbss:0x80515300; // type:object size:0x4 scope:local align:4 data:4byte +CurrTvMode = .sbss:0x80515304; // type:object size:0x4 scope:local align:4 data:4byte +NextBufAddr = .sbss:0x80515308; // type:object size:0x4 scope:local align:4 data:4byte +CurrBufAddr = .sbss:0x8051530C; // type:object size:0x4 scope:local align:4 data:4byte +FBSet = .sbss:0x80515310; // type:object size:0x4 scope:local align:4 data:4byte +message$343 = .sbss:0x80515314; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Callback = .sbss:0x80515318; // type:object size:0x4 scope:local align:4 data:4byte +__AR_Size = .sbss:0x8051531C; // type:object size:0x4 scope:local align:4 data:4byte +__AR_InternalSize = .sbss:0x80515320; // type:object size:0x4 scope:local align:4 data:4byte +__AR_ExpansionSize = .sbss:0x80515324; // type:object size:0x4 scope:local align:4 data:4byte +__AR_StackPointer = .sbss:0x80515328; // type:object size:0x4 scope:local align:4 data:4byte +__AR_FreeBlocks = .sbss:0x8051532C; // type:object size:0x4 scope:local align:4 data:4byte +__AR_BlockLength = .sbss:0x80515330; // type:object size:0x4 scope:local align:4 data:4byte +__AR_init_flag = .sbss:0x80515334; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueHi = .sbss:0x80515338; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailHi = .sbss:0x8051533C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestQueueLo = .sbss:0x80515340; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestTailLo = .sbss:0x80515344; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingHi = .sbss:0x80515348; // type:object size:0x4 scope:local align:4 data:4byte +__ARQRequestPendingLo = .sbss:0x8051534C; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackHi = .sbss:0x80515350; // type:object size:0x4 scope:local align:4 data:4byte +__ARQCallbackLo = .sbss:0x80515354; // type:object size:0x4 scope:local align:4 data:4byte +__ARQChunkSize = .sbss:0x80515358; // type:object size:0x4 scope:local align:4 data:4byte +__ARQ_init_flag = .sbss:0x8051535C; // type:object size:0x4 scope:local align:4 data:4byte +__CARDEncode = .sbss:0x80515360; // type:object size:0x2 scope:local align:2 data:2byte +__DBInterface = .sbss:0x80515368; // type:object size:0x4 scope:global align:4 data:4byte +DBVerbose = .sbss:0x8051536C; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_init_flag = .sbss:0x80515370; // type:object size:0x4 scope:local align:4 data:4byte +__DSP_tmp_task = .sbss:0x80515378; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_last_task = .sbss:0x8051537C; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_first_task = .sbss:0x80515380; // type:object size:0x4 scope:global align:4 data:4byte +__DSP_curr_task = .sbss:0x80515384; // type:object size:0x4 scope:global align:4 data:4byte +StopAtNextInt = .sbss:0x80515388; // type:object size:0x4 scope:local align:4 data:4byte +LastLength = .sbss:0x8051538C; // type:object size:0x4 scope:local align:4 data:4byte +Callback = .sbss:0x80515390; // type:object size:0x4 scope:local align:4 data:4byte +ResetCoverCallback = .sbss:0x80515394; // type:object size:0x4 scope:local align:4 data:4byte +LastResetEnd = .sbss:0x80515398; // type:object size:0x8 scope:local align:8 data:4byte +ResetOccurred = .sbss:0x805153A0; // type:object size:0x4 scope:local align:4 data:4byte +WaitingCoverClose = .sbss:0x805153A4; // type:object size:0x4 scope:local align:4 data:4byte +Breaking = .sbss:0x805153A8; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundType = .sbss:0x805153AC; // type:object size:0x4 scope:local align:4 data:4byte +WorkAroundSeekLocation = .sbss:0x805153B0; // type:object size:0x4 scope:local align:4 data:4byte +LastReadFinished = .sbss:0x805153B8; // type:object size:0x8 scope:local align:8 data:4byte +LastReadIssued = .sbss:0x805153C0; // type:object size:0x8 scope:local align:8 data:4byte +LastCommandWasRead = .sbss:0x805153C8; // type:object size:0x4 scope:local align:4 data:4byte +NextCommandNumber = .sbss:0x805153CC; // type:object size:0x4 scope:local align:4 data:4byte +BootInfo = .sbss:0x805153D0; // type:object size:0x4 scope:local align:4 data:4byte +FstStart = .sbss:0x805153D4; // type:object size:0x4 scope:local align:4 data:4byte +FstStringStart = .sbss:0x805153D8; // type:object size:0x4 scope:local align:4 data:4byte +MaxEntryNum = .sbss:0x805153DC; // type:object size:0x4 scope:local align:4 data:4byte +currentDirectory = .sbss:0x805153E0; // type:object size:0x4 scope:local align:4 data:4byte +__DVDLongFileNameFlag = .sbss:0x805153E4; // type:object size:0x4 scope:global align:4 data:4byte +__DVDThreadQueue = .sbss:0x805153E8; // type:object size:0x8 scope:global align:4 +executing = .sbss:0x805153F0; // type:object size:0x4 scope:local align:4 data:4byte +IDShouldBe = .sbss:0x805153F4; // type:object size:0x4 scope:local align:4 data:4byte +bootInfo = .sbss:0x805153F8; // type:object size:0x4 scope:local align:4 data:4byte +PauseFlag = .sbss:0x805153FC; // type:object size:0x4 scope:local align:4 data:4byte +PausingFlag = .sbss:0x80515400; // type:object size:0x4 scope:local align:4 data:4byte +AutoFinishing = .sbss:0x80515404; // type:object size:0x4 scope:local align:4 data:4byte +FatalErrorFlag = .sbss:0x80515408; // type:object size:0x4 scope:local align:4 data:4byte +CurrCommand = .sbss:0x8051540C; // type:object size:0x4 scope:local align:4 data:4byte +Canceling = .sbss:0x80515410; // type:object size:0x4 scope:local align:4 data:4byte +CancelCallback = .sbss:0x80515414; // type:object size:0x4 scope:local align:4 data:4byte +ResumeFromHere = .sbss:0x80515418; // type:object size:0x4 scope:local align:4 data:4byte +CancelLastError = .sbss:0x8051541C; // type:object size:0x4 scope:local align:4 data:4byte +LastError = .sbss:0x80515420; // type:object size:0x4 scope:local align:4 data:4byte +NumInternalRetry = .sbss:0x80515424; // type:object size:0x4 scope:local align:4 data:4byte +ResetRequired = .sbss:0x80515428; // type:object size:0x4 scope:local align:4 data:4byte +FirstTimeInBootrom = .sbss:0x8051542C; // type:object size:0x4 scope:local align:4 data:4byte +DVDInitialized = .sbss:0x80515430; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x80515434; // type:object size:0x4 scope:global align:4 data:4byte +FatalFunc = .sbss:0x80515438; // type:object size:0x4 scope:local align:4 data:4byte +status = .sbss:0x80515440; // type:object size:0x4 scope:local align:4 data:4byte +bb2 = .sbss:0x80515444; // type:object size:0x4 scope:local align:4 data:4byte +idTmp = .sbss:0x80515448; // type:object size:0x4 scope:local align:4 data:4byte +IDSerialPort1 = .sbss:0x80515450; // type:object size:0x4 scope:local align:4 data:4byte +Chan = .sbss:0x80515458; // type:object size:0x4 scope:local align:4 data:4byte +Dev = .sbss:0x8051545C; // type:object size:0x4 scope:local align:4 data:4byte +Enabled = .sbss:0x80515460; // type:object size:0x4 scope:local align:4 data:4byte +BarnacleEnabled = .sbss:0x80515464; // type:object size:0x4 scope:local align:4 data:4byte +__GDCurrentDL = .sbss:0x80515468; // type:object size:0x4 scope:global align:4 data:4byte +overflowcb = .sbss:0x8051546C; // type:object size:0x4 scope:local align:4 data:4byte +__piReg = .sbss:0x80515470; // type:object size:0x4 scope:global align:4 data:4byte +__cpReg = .sbss:0x80515474; // type:object size:0x4 scope:global align:4 data:4byte +__peReg = .sbss:0x80515478; // type:object size:0x4 scope:global align:4 data:4byte +__memReg = .sbss:0x8051547C; // type:object size:0x4 scope:global align:4 data:4byte +peCount$35 = .sbss:0x80515480; // type:object size:0x4 scope:local align:4 data:4byte +time$36 = .sbss:0x80515488; // type:object size:0x8 scope:local align:8 data:4byte +calledOnce$37 = .sbss:0x80515490; // type:object size:0x4 scope:local align:4 data:4byte +resetFuncRegistered$70 = .sbss:0x80515494; // type:object size:0x4 scope:local align:4 data:4byte +CPUFifo = .sbss:0x80515498; // type:object size:0x4 scope:local align:4 data:4byte +GPFifo = .sbss:0x8051549C; // type:object size:0x4 scope:local align:4 data:4byte +__GXCurrentThread = .sbss:0x805154A0; // type:object size:0x4 scope:local align:4 data:4byte +CPGPLinked = .sbss:0x805154A4; // type:object size:0x1 scope:local align:1 data:byte +GXOverflowSuspendInProgress = .sbss:0x805154A8; // type:object size:0x4 scope:local align:4 data:4byte +BreakPointCB = .sbss:0x805154AC; // type:object size:0x4 scope:local align:4 data:4byte +__GXOverflowCount = .sbss:0x805154B0; // type:object size:0x4 scope:local align:4 data:4byte +TokenCB = .sbss:0x805154B8; // type:object size:0x4 scope:local align:4 data:4byte +DrawDoneCB = .sbss:0x805154BC; // type:object size:0x4 scope:local align:4 data:4byte +DrawDone = .sbss:0x805154C0; // type:object size:0x1 scope:local align:1 data:byte +FinishQueue = .sbss:0x805154C4; // type:object size:0x8 scope:local align:4 +BootInfo = .sbss:0x805154D0; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlag = .sbss:0x805154D4; // type:object size:0x4 scope:local align:4 data:4byte +BI2DebugFlagHolder = .sbss:0x805154D8; // type:object size:0x4 scope:local align:4 data:4byte +__OSIsGcam = .sbss:0x805154DC; // type:object size:0x4 scope:weak align:4 data:4byte +ZeroF = .sbss:0x805154E0; // type:object size:0x8 scope:local align:8 data:double +ZeroPS = .sbss:0x805154E8; // type:object size:0x8 scope:local align:4 +AreWeInitialized = .sbss:0x805154F0; // type:object size:0x4 scope:local align:4 data:4byte +OSExceptionTable = .sbss:0x805154F4; // type:object size:0x4 scope:local align:4 data:4byte +__OSSavedRegionEnd = .sbss:0x805154F8; // type:object size:0x4 scope:global align:4 data:4byte +__OSSavedRegionStart = .sbss:0x805154FC; // type:object size:0x4 scope:global align:4 data:4byte +__OSInIPL = .sbss:0x80515500; // type:object size:0x4 scope:global align:4 data:4byte +__OSStartTime = .sbss:0x80515508; // type:object size:0x8 scope:global align:8 data:4byte +AlarmQueue = .sbss:0x80515510; // type:object size:0x8 scope:local align:4 data:4byte +HeapArray = .sbss:0x80515518; // type:object size:0x4 scope:local align:4 data:4byte +NumHeaps = .sbss:0x8051551C; // type:object size:0x4 scope:local align:4 data:4byte +ArenaStart = .sbss:0x80515520; // type:object size:0x4 scope:local align:4 data:4byte +ArenaEnd = .sbss:0x80515524; // type:object size:0x4 scope:local align:4 data:4byte +__OSArenaHi = .sbss:0x80515528; // type:object size:0x4 scope:local align:4 data:4byte +FontData = .sbss:0x80515530; // type:object size:0x4 scope:local align:4 data:4byte +SheetImage = .sbss:0x80515534; // type:object size:0x4 scope:local align:4 data:4byte +WidthTable = .sbss:0x80515538; // type:object size:0x4 scope:local align:4 data:4byte +CharsInSheet = .sbss:0x8051553C; // type:object size:0x4 scope:local align:4 data:4byte +InterruptHandlerTable = .sbss:0x80515540; // type:object size:0x4 scope:local align:4 data:4byte +__OSLastInterruptSrr0 = .sbss:0x80515544; // type:object size:0x4 scope:global align:4 data:4byte +__OSLastInterrupt = .sbss:0x80515548; // type:object size:0x2 scope:global align:2 data:2byte +__OSLastInterruptTime = .sbss:0x80515550; // type:object size:0x8 scope:global align:8 data:4byte +SaveStart = .sbss:0x80515558; // type:object size:0x4 scope:local align:4 data:4byte +SaveEnd = .sbss:0x8051555C; // type:object size:0x4 scope:local align:4 data:4byte +Prepared = .sbss:0x80515560; // type:object size:0x4 scope:local align:4 data:4byte +ResetFunctionQueue = .sbss:0x80515568; // type:object size:0x8 scope:local align:4 data:4byte +bootThisDol = .sbss:0x80515570; // type:object size:0x4 scope:local align:4 data:4byte +ResetCallback = .sbss:0x80515578; // type:object size:0x4 scope:local align:4 data:4byte +Down = .sbss:0x8051557C; // type:object size:0x4 scope:local align:4 data:4byte +LastState = .sbss:0x80515580; // type:object size:0x4 scope:local align:4 data:4byte +HoldUp = .sbss:0x80515588; // type:object size:0x8 scope:local align:8 data:4byte +HoldDown = .sbss:0x80515590; // type:object size:0x8 scope:local align:8 data:4byte +RunQueueBits = .sbss:0x80515598; // type:object size:0x4 scope:local align:4 data:4byte +RunQueueHint = .sbss:0x8051559C; // type:object size:0x4 scope:local align:4 data:4byte +Reschedule = .sbss:0x805155A0; // type:object size:0x4 scope:local align:4 data:4byte +Debug_BBA = .sbss:0x805155A8; // type:object size:0x1 scope:local align:1 data:byte +Initialized = .sbss:0x805155B0; // type:object size:0x4 scope:local align:4 data:4byte +EnabledBits = .sbss:0x805155B4; // type:object size:0x4 scope:local align:4 data:4byte +ResettingBits = .sbss:0x805155B8; // type:object size:0x4 scope:local align:4 data:4byte +RecalibrateBits = .sbss:0x805155BC; // type:object size:0x4 scope:local align:4 data:4byte +WaitingBits = .sbss:0x805155C0; // type:object size:0x4 scope:local align:4 data:4byte +CheckingBits = .sbss:0x805155C4; // type:object size:0x4 scope:local align:4 data:4byte +PendingBits = .sbss:0x805155C8; // type:object size:0x4 scope:local align:4 data:4byte +BarrelBits = .sbss:0x805155CC; // type:object size:0x4 scope:local align:4 data:4byte +SamplingCallback = .sbss:0x805155D0; // type:object size:0x4 scope:local align:4 data:4byte +recalibrated$388 = .sbss:0x805155D4; // type:object size:0x4 scope:local align:4 data:4byte +__PADSpec = .sbss:0x805155D8; // type:object size:0x4 scope:global align:4 data:4byte +cmdTypeAndStatus$78 = .sbss:0x805155E0; // type:object size:0x4 scope:local align:4 +cmdTypeAndStatus$372 = .sbss:0x805155E4; // type:object size:0x4 scope:local align:4 +__PADFixBits = .sbss:0x805155E8; // type:object size:0x4 scope:global align:4 data:4byte +SamplingRate = .sbss:0x805155F0; // type:object size:0x4 scope:local align:4 data:4byte +__AIS_Callback = .sbss:0x805155F8; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Callback = .sbss:0x805155FC; // type:object size:0x4 scope:local align:4 data:4byte +__CallbackStack = .sbss:0x80515600; // type:object size:0x4 scope:local align:4 data:4byte +__OldStack = .sbss:0x80515604; // type:object size:0x4 scope:local align:4 data:4byte +__AI_init_flag = .sbss:0x80515608; // type:object size:0x4 scope:local align:4 data:4byte +__AID_Active = .sbss:0x8051560C; // type:object size:0x4 scope:local align:4 data:4byte +bound_32KHz = .sbss:0x80515610; // type:object size:0x8 scope:local align:8 data:4byte +bound_48KHz = .sbss:0x80515618; // type:object size:0x8 scope:local align:8 data:4byte +min_wait = .sbss:0x80515620; // type:object size:0x8 scope:local align:8 data:4byte +max_wait = .sbss:0x80515628; // type:object size:0x8 scope:local align:8 data:4byte +buffer = .sbss:0x80515630; // type:object size:0x8 scope:local align:8 data:4byte +Ydchuff = .sbss:0x80515640; // type:object size:0x4 scope:local align:32 data:4byte +Udchuff = .sbss:0x80515660; // type:object size:0x4 scope:local align:32 data:4byte +Vdchuff = .sbss:0x80515680; // type:object size:0x4 scope:local align:32 data:4byte +Yachuff = .sbss:0x805156A0; // type:object size:0x4 scope:local align:32 data:4byte +Uachuff = .sbss:0x805156C0; // type:object size:0x4 scope:local align:32 data:4byte +Vachuff = .sbss:0x805156E0; // type:object size:0x4 scope:local align:32 data:4byte +__THPHuffmanBits = .sbss:0x805156E4; // type:object size:0x4 scope:local align:4 data:4byte +__THPHuffmanSizeTab = .sbss:0x805156E8; // type:object size:0x4 scope:local align:4 data:4byte +__THPHuffmanCodeTab = .sbss:0x805156EC; // type:object size:0x4 scope:local align:4 data:4byte +Gbase = .sbss:0x80515700; // type:object size:0x4 scope:local align:32 data:4byte +Gwid = .sbss:0x80515720; // type:object size:0x4 scope:local align:32 data:4byte +Gq = .sbss:0x80515740; // type:object size:0x4 scope:local align:32 data:4byte +__THPOldGQR5 = .sbss:0x80515744; // type:object size:0x4 scope:local align:4 data:4byte +__THPOldGQR6 = .sbss:0x80515748; // type:object size:0x4 scope:local align:4 data:4byte +__THPWorkArea = .sbss:0x8051574C; // type:object size:0x4 scope:local align:4 data:4byte +__THPInfo = .sbss:0x80515750; // type:object size:0x4 scope:local align:4 data:4byte +__THPInitFlag = .sbss:0x80515754; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x80515758; // type:object size:0x4 scope:local align:4 data:4byte +__GBAReset = .sbss:0x8051575C; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515760; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515764; // type:object size:0x4 scope:local align:4 data:float +gParmArc__4Game = .sbss:0x80515768; // type:object size:0x4 scope:global align:4 data:4byte +sInstance__Q28PSSystem24ArcMgr = .sbss:0x8051576C; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem39SingletonBase = .sbss:0x80515770; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem34SingletonBase = .sbss:0x80515774; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem34SingletonBase = .sbss:0x80515778; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem28SingletonBase = .sbss:0x8051577C; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem38SingletonBase = .sbss:0x80515780; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem49SingletonBase = .sbss:0x80515784; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem30SingletonBase = .sbss:0x80515788; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem39SingletonBase = .sbss:0x8051578C; // type:object size:0x4 scope:weak align:4 data:4byte +sInstance__Q28PSSystem42SingletonBase = .sbss:0x80515790; // type:object size:0x4 scope:weak align:4 data:4byte +farmMgr__Q24Game4Farm = .sbss:0x80515798; // type:object size:0x4 scope:global align:4 data:4byte +sCurrentObj__Q34Game8Pelplant3Obj = .sbss:0x8051579C; // type:object size:0x4 scope:global align:4 data:4byte +generalEnemyMgr__4Game = .sbss:0x805157A0; // type:object size:0x4 scope:global align:4 data:4byte +mCullCount__Q24Game15GeneralEnemyMgr = .sbss:0x805157A4; // type:object size:0x4 scope:global align:4 data:4byte +mTotalCount__Q24Game15GeneralEnemyMgr = .sbss:0x805157A8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805157B0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805157B4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805157B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805157BC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805157C0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805157C4; // type:object size:0x4 scope:local align:4 data:float +lifeGaugeMgr = .sbss:0x805157C8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805157D0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805157D4; // type:object size:0x4 scope:local align:4 data:float +carryInfoMgr = .sbss:0x805157D8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805157E0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805157E4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805157E8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805157EC; // type:object size:0x4 scope:local align:4 data:float +sOwnerEnemy__Q34Game10EnemyStone8DrawInfo = .sbss:0x805157F0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805157F8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805157FC; // type:object size:0x4 scope:local align:4 data:float +sBlendLinearFun__Q24Game22EnemyBlendAnimatorBase = .sbss:0x80515800; // type:object size:0x4 scope:global align:4 data:4byte +sBlendQuadraticFun__Q24Game22EnemyBlendAnimatorBase = .sbss:0x80515804; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515808; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051580C; // type:object size:0x4 scope:local align:4 data:float +sZukanState__Q34Game15IllustratedBook5Parms = .sbss:0x80515810; // type:object size:0x4 scope:global align:4 data:4byte +sCamera__Q34Game15IllustratedBook5Parms = .sbss:0x80515814; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515818; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051581C; // type:object size:0x4 scope:local align:4 data:float +mDebug__8CollTree = .sbss:0x80515820; // type:object size:0x1 scope:global align:1 data:byte +mInstance__13DynamicsParms = .sbss:0x80515828; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515830; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515834; // type:object size:0x4 scope:local align:4 data:float +currOp__Q24Game8Creature = .sbss:0x80515838; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515840; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515844; // type:object size:0x4 scope:local align:4 data:float +sCurrNeckTheta__Q24Game8FakePiki = .sbss:0x80515848; // type:object size:0x4 scope:global align:4 data:float +sCurrNeckPhi__Q24Game8FakePiki = .sbss:0x8051584C; // type:object size:0x4 scope:global align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515850; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515854; // type:object size:0x4 scope:local align:4 data:float +numSearch = .sbss:0x80515858; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515860; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515864; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515868; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051586C; // type:object size:0x4 scope:local align:4 data:float +cameraMgrCallback = .sbss:0x80515870; // type:object size:0x4 scope:global align:4 data:4byte +theExpHeap = .sbss:0x80515874; // type:object size:0x4 scope:local align:4 data:4byte +col$4567 = .sbss:0x80515878; // type:object size:0x4 scope:local align:4 data:4byte +init$4568 = .sbss:0x8051587C; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515880; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515884; // type:object size:0x4 scope:local align:4 data:float +cellMgr__4Game = .sbss:0x80515888; // type:object size:0x4 scope:global align:4 data:4byte +platCellMgr__4Game = .sbss:0x8051588C; // type:object size:0x4 scope:global align:4 data:4byte +mapRoomCellMgr__4Game = .sbss:0x80515890; // type:object size:0x4 scope:global align:4 data:4byte +disableAICulling__Q24Game11CellPyramid = .sbss:0x80515894; // type:object size:0x1 scope:global align:1 data:byte +sSpeedUpResolveColl__Q24Game11CellPyramid = .sbss:0x80515895; // type:object size:0x1 scope:global align:1 data:byte +sCurrCellMgr__Q24Game4Cell = .sbss:0x80515898; // type:object size:0x4 scope:global align:4 data:4byte +sCellBugID__Q24Game11CellPyramid = .sbss:0x8051589C; // type:object size:0x4 scope:global align:4 data:4byte +naviMgr__4Game = .sbss:0x805158A0; // type:object size:0x4 scope:global align:4 data:4byte +animMgr__Q24Game7NaviMgr = .sbss:0x805158A4; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158A8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158AC; // type:object size:0x4 scope:local align:4 data:float +throwPikiDebug__Q24Game7PikiMgr = .sbss:0x805158B0; // type:object size:0x1 scope:global align:1 data:byte +pikiMgr__4Game = .sbss:0x805158B4; // type:object size:0x4 scope:global align:4 data:4byte +mBirthMode__Q24Game7PikiMgr = .sbss:0x805158B8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158C0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158C4; // type:object size:0x4 scope:local align:4 data:float +mapMgr__4Game = .sbss:0x805158C8; // type:object size:0x4 scope:global align:4 data:4byte +traceMoveDebug__Q24Game6MapMgr = .sbss:0x805158CC; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158D0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158D4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805158D8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158DC; // type:object size:0x4 scope:local align:4 data:float +pelletMgr__4Game = .sbss:0x805158E0; // type:object size:0x4 scope:global align:4 data:4byte +mDebug__Q24Game9PelletMgr = .sbss:0x805158E4; // type:object size:0x1 scope:global align:1 data:byte +disableDynamics__Q24Game9PelletMgr = .sbss:0x805158E5; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158E8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158EC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game9ItemOnyon = .sbss:0x805158F0; // type:object size:0x4 scope:global align:4 data:4byte +sVolveFlag = .sbss:0x805158F4; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805158F8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805158FC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515900; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515904; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515908; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051590C; // type:object size:0x4 scope:local align:4 data:float +collisionUpdateMgr__4Game = .sbss:0x80515910; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515918; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051591C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515920; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515924; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515928; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051592C; // type:object size:0x4 scope:local align:4 data:float +numBuffer__Q24Game8Stickers = .sbss:0x80515930; // type:object size:0x4 scope:global align:4 data:4byte +mutex__Q24Game8Stickers = .sbss:0x80515934; // type:object size:0x1 scope:global align:1 data:byte +buffer__Q24Game8Stickers = .sbss:0x80515938; // type:object size:0x4 scope:global align:4 data:4byte +testPathfinder__4Game = .sbss:0x80515940; // type:object size:0x4 scope:global align:4 data:4byte +routeMgr__Q24Game15PathfindContext = .sbss:0x80515944; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515948; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051594C; // type:object size:0x4 scope:local align:4 data:float +dynParticleMgr__4Game = .sbss:0x80515950; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515958; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051595C; // type:object size:0x4 scope:local align:4 data:float +factory__Q24Game16GenObjectFactory = .sbss:0x80515960; // type:object size:0x4 scope:global align:4 data:4byte +ramMode__Q24Game9Generator = .sbss:0x80515964; // type:object size:0x1 scope:global align:1 data:byte +generatorMgr__4Game = .sbss:0x80515968; // type:object size:0x4 scope:global align:4 data:4byte +onceGeneratorMgr__4Game = .sbss:0x8051596C; // type:object size:0x4 scope:global align:4 data:4byte +limitGeneratorMgr__4Game = .sbss:0x80515970; // type:object size:0x4 scope:global align:4 data:4byte +plantsGeneratorMgr__4Game = .sbss:0x80515974; // type:object size:0x4 scope:global align:4 data:4byte +dayGeneratorMgr__4Game = .sbss:0x80515978; // type:object size:0x4 scope:global align:4 data:4byte +cursorCallback__Q24Game12GeneratorMgr = .sbss:0x8051597C; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515980; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515984; // type:object size:0x4 scope:local align:4 data:float +stageList__4Game = .sbss:0x80515988; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515990; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515994; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515998; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051599C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805159A0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159A4; // type:object size:0x4 scope:local align:4 data:float +gameSystem__4Game = .sbss:0x805159A8; // type:object size:0x4 scope:global align:4 data:4byte +mInstance__Q24Game18OptimiseController = .sbss:0x805159AC; // type:object size:0x4 scope:global align:4 data:4byte +_aiConstants__4Game = .sbss:0x805159B0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805159B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159BC; // type:object size:0x4 scope:local align:4 data:float +numRoomCulled__Q24Game10RoomMapMgr = .sbss:0x805159C0; // type:object size:0x4 scope:global align:4 data:4byte +mUseCylinderViewCulling__Q24Game10RoomMapMgr = .sbss:0x805159C4; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805159C8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159CC; // type:object size:0x4 scope:local align:4 data:float +mRedWinCount__Q24Game13VsGameSection = .sbss:0x805159D0; // type:object size:0x4 scope:global align:4 data:4byte +mBlueWinCount__Q24Game13VsGameSection = .sbss:0x805159D4; // type:object size:0x4 scope:global align:4 data:4byte +mDrawCount__Q24Game13VsGameSection = .sbss:0x805159D8; // type:object size:0x4 scope:global align:4 data:4byte +platMgr__4Game = .sbss:0x805159E0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805159E8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805159EC; // type:object size:0x4 scope:local align:4 data:float +itemGateMgr__4Game = .sbss:0x805159F0; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game15ItemDengekiGate = .sbss:0x805159F4; // type:object size:0x4 scope:global align:4 data:4byte +itemMgr__4Game = .sbss:0x805159F8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A00; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A04; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game8ItemHole = .sbss:0x80515A08; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game9ItemHoney = .sbss:0x80515A10; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A18; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A1C; // type:object size:0x4 scope:local align:4 data:float +drawInfo__Q24Game5AILOD = .sbss:0x80515A20; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A28; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A2C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game12ItemPikihead = .sbss:0x80515A30; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game9ItemPlant = .sbss:0x80515A38; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game8ItemRock = .sbss:0x80515A40; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A4C; // type:object size:0x4 scope:local align:4 data:float +playData__4Game = .sbss:0x80515A50; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A5C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game8ItemCave = .sbss:0x80515A60; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A68; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A6C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game15ItemBigFountain = .sbss:0x80515A70; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game10ItemBridge = .sbss:0x80515A78; // type:object size:0x4 scope:global align:4 data:4byte +generatorCache__4Game = .sbss:0x80515A80; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A8C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game12ItemTreasure = .sbss:0x80515A90; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515A98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515A9C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game13ItemDownFloor = .sbss:0x80515AA0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515AAC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game10ItemBarrel = .sbss:0x80515AB0; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game12PelletNumber = .sbss:0x80515AB8; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game13PelletCarcass = .sbss:0x80515AC0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AC8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515ACC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game11PelletFruit = .sbss:0x80515AD0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AD8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515ADC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game13PelletOtakara = .sbss:0x80515AE0; // type:object size:0x4 scope:global align:4 data:4byte +mgr__Q24Game10PelletItem = .sbss:0x80515AE8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515AF0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515AF4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515AF8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515AFC; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game12ItemUjamushi = .sbss:0x80515B00; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B08; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B0C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515B10; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B14; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515B18; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B1C; // type:object size:0x4 scope:local align:4 data:float +mgr__Q24Game8ItemWeed = .sbss:0x80515B20; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B28; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B2C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515B30; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B34; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515B38; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B3C; // type:object size:0x4 scope:local align:4 data:float +theTekiHeap = .sbss:0x80515B40; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B4C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515B50; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B54; // type:object size:0x4 scope:local align:4 data:float +sParentHeapFreeSize = .sbss:0x80515B58; // type:object size:0x4 scope:local align:4 data:4byte +sParentHeapFreeSize_Last = .sbss:0x80515B5C; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B60; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B64; // type:object size:0x4 scope:local align:4 data:float +sCurrPlayDataSize__Q24Game8PlayData = .sbss:0x80515B68; // type:object size:0x4 scope:global align:4 data:4byte +sMaxPlayDataSize__Q24Game8PlayData = .sbss:0x80515B6C; // type:object size:0x4 scope:global align:4 data:4byte +mgr__5Radar = .sbss:0x80515B70; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515B78; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B7C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515B80; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B84; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515B88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515B8C; // type:object size:0x4 scope:local align:4 data:float +sParentHeapFreeSize = .sbss:0x80515B90; // type:object size:0x4 scope:local align:4 data:4byte +mInstance__Q34Game10PelletList3Mgr = .sbss:0x80515B98; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515BA0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BA4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BAC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BB4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BB8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BBC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BC0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BC4; // type:object size:0x4 scope:local align:4 data:float +mInstance__12CellMgrParms = .sbss:0x80515BC8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515BD0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BD4; // type:object size:0x4 scope:local align:4 data:float +mSoundDeathCount__Q24Game8DeathMgr = .sbss:0x80515BD8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515BE0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BE4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BE8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BEC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BF0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BF4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515BF8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515BFC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C00; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C04; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C08; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C0C; // type:object size:0x4 scope:local align:4 data:float +sInstance__Q29TexCaster3Mgr = .sbss:0x80515C10; // type:object size:0x4 scope:global align:4 data:4byte +sNum__Q24Game17PelletBirthBuffer = .sbss:0x80515C18; // type:object size:0x4 scope:global align:4 data:4byte +mGpStatus__6VSFifo = .sbss:0x80515C20; // type:object size:0x5 scope:global align:4 +gu32NAN___Q24Game5P2JST = .sbss:0x80515C28; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C2C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C30; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C34; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C38; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C3C; // type:object size:0x4 scope:local align:4 data:float +shadowMgr__4Game = .sbss:0x80515C40; // type:object size:0x4 scope:global align:4 data:4byte +randMapMgr__Q24Game4Cave = .sbss:0x80515C48; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515C50; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C54; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C5C; // type:object size:0x4 scope:local align:4 data:float +cameraMgr__4Game = .sbss:0x80515C60; // type:object size:0x4 scope:global align:4 data:4byte +rumbleMgr__4Game = .sbss:0x80515C68; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515C70; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C74; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C78; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C7C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C80; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C84; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C8C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C90; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C94; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515C98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515C9C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CA0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CA4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CAC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CB4; // type:object size:0x4 scope:local align:4 data:float +gIKSystemMgr__4Game = .sbss:0x80515CB8; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515CC0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CC4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CC8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CCC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CD0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CD4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CD8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CDC; // type:object size:0x4 scope:local align:4 data:float +sHoudaiShotGunMgr__Q24Game6Houdai = .sbss:0x80515CE0; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515CE8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CEC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CF0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CF4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515CF8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515CFC; // type:object size:0x4 scope:local align:4 data:float +sSnakeJointMgr__4Game = .sbss:0x80515D00; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D08; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D0C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D10; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D14; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D18; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D1C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D20; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D24; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D28; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D2C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D30; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D34; // type:object size:0x4 scope:local align:4 data:float +sMiniHoudaiShotGunMgr__Q24Game10MiniHoudai = .sbss:0x80515D38; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D40; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D44; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515D48; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D4C; // type:object size:0x4 scope:local align:4 data:float +wkPtr$3542 = .sbss:0x80515D50; // type:object size:0x4 scope:local align:4 data:4byte +init$3543 = .sbss:0x80515D54; // type:object size:0x1 scope:local align:1 data:byte +Max$3545 = .sbss:0x80515D58; // type:object size:0x4 scope:local align:4 data:4byte +init$3546 = .sbss:0x80515D5C; // type:object size:0x1 scope:local align:1 data:byte +wkMax$3548 = .sbss:0x80515D60; // type:object size:0x4 scope:local align:4 data:4byte +init$3549 = .sbss:0x80515D64; // type:object size:0x1 scope:local align:1 data:byte +ogSound__2og = .sbss:0x80515D68; // type:object size:0x4 scope:global align:4 data:4byte +sGameFlag_MainBgm_Evening__Q22og9newScreen = .sbss:0x80515D70; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D78; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D7C; // type:object size:0x4 scope:local align:4 data:float +gLib2D__2og = .sbss:0x80515D80; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D8C; // type:object size:0x4 scope:local align:4 data:float +nv_frame$4824 = .sbss:0x80515D90; // type:object size:0x4 scope:local align:4 data:float +init$4825 = .sbss:0x80515D94; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515D98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515D9C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DA0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DA4; // type:object size:0x4 scope:local align:4 data:float +angle$3853 = .sbss:0x80515DA8; // type:object size:0x4 scope:local align:4 data:float +init$3854 = .sbss:0x80515DAC; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515DB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DB4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DB8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DBC; // type:object size:0x4 scope:local align:4 data:float +angle$4147 = .sbss:0x80515DC0; // type:object size:0x4 scope:local align:4 data:float +init$4148 = .sbss:0x80515DC4; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515DC8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DCC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DD0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DD4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DD8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DDC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DE0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DE4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DE8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DEC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515DF0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515DF4; // type:object size:0x4 scope:local align:4 data:float +sFrame$4053 = .sbss:0x80515DF8; // type:object size:0x4 scope:local align:4 data:float +init$4054 = .sbss:0x80515DFC; // type:object size:0x1 scope:local align:1 data:byte +msVal__Q32og9newScreen12ObjSMenuCont = .sbss:0x80515E00; // type:object size:0x8 scope:global align:4 data:float +oldID$2940 = .sbss:0x80515E08; // type:object size:0x4 scope:local align:4 data:4byte +init$2941 = .sbss:0x80515E0C; // type:object size:0x1 scope:local align:1 data:byte +sToolMode__Q26PSGame13ConductorList = .sbss:0x80515E10; // type:object size:0x1 scope:global align:1 data:byte +sInstance__Q28PSSystem39SingletonBase = .sbss:0x80515E14; // type:object size:0x4 scope:weak align:4 data:4byte +spSysIF__8PSSystem = .sbss:0x80515E18; // type:object size:0x4 scope:global align:4 data:4byte +oRandom__8PSSystem = .sbss:0x80515E1C; // type:object size:0x4 scope:global align:4 data:4byte +sMakeJAISeCallback__Q28PSSystem5SysIF = .sbss:0x80515E20; // type:object size:0x4 scope:global align:4 data:4byte +sHeap__Q29PSAutoBgm12ConductorMgr = .sbss:0x80515E28; // type:object size:0x4 scope:global align:4 data:4byte +sInstance__Q29PSAutoBgm15ConductorArcMgr = .sbss:0x80515E2C; // type:object size:0x4 scope:global align:4 data:4byte +sBankMgr__Q28PSSystem7BankMgr = .sbss:0x80515E30; // type:object size:0x4 scope:global align:4 data:4byte +sInstance__Q28PSSystem11BankRandPrm = .sbss:0x80515E38; // type:object size:0x4 scope:global align:4 data:4byte +spSceneMgr__8PSSystem = .sbss:0x80515E40; // type:object size:0x4 scope:global align:4 data:4byte +sToolMode__Q28PSSystem12DirectorBase = .sbss:0x80515E48; // type:object size:0x1 scope:global align:1 data:byte +mColorTest__Q28Morimura12TDayEndCount = .sbss:0x80515E50; // type:object size:0x1 scope:global align:1 data:byte +mTestChangeColor__Q28Morimura12TDayEndCount = .sbss:0x80515E51; // type:object size:0x1 scope:global align:1 data:byte +mCountDownType__Q28Morimura12TDayEndCount = .sbss:0x80515E52; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E58; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E5C; // type:object size:0x4 scope:local align:4 data:float +mIsSection__Q28Morimura9TTestBase = .sbss:0x80515E60; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E68; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E6C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E70; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E74; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E78; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E7C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E80; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E84; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515E88; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E8C; // type:object size:0x4 scope:local align:4 data:float +curK__Q24Game10KingChappy = .sbss:0x80515E90; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515E98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515E9C; // type:object size:0x4 scope:local align:4 data:float +curJ__Q24Game6Jigumo = .sbss:0x80515EA0; // type:object size:0x4 scope:global align:4 data:4byte +mMatColor__Q24Game4Nest = .sbss:0x80515EA8; // type:object size:0x8 scope:local align:4 data:2byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515EB0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515EB4; // type:object size:0x4 scope:local align:4 data:float +mShowAllObjects__Q28Morimura10TZukanBase = .sbss:0x80515EB8; // type:object size:0x1 scope:global align:1 data:byte +mAllNewSupply__Q28Morimura10TZukanBase = .sbss:0x80515EB9; // type:object size:0x1 scope:global align:1 data:byte +mZukanShortenTest__Q28Morimura10TZukanBase = .sbss:0x80515EBA; // type:object size:0x1 scope:global align:1 data:byte +mZukanCategoryTest__Q28Morimura10TZukanBase = .sbss:0x80515EBB; // type:object size:0x1 scope:global align:1 data:byte +mRandShowRate__Q28Morimura10TZukanBase = .sbss:0x80515EBC; // type:object size:0x4 scope:global align:4 data:float +mNewOffset__Q28Morimura10TZukanBase = .sbss:0x80515EC0; // type:object size:0x8 scope:global align:4 data:float +mLargeNewOffset__Q28Morimura10TZukanBase = .sbss:0x80515EC8; // type:object size:0x8 scope:global align:4 data:float +mNewColor0__Q28Morimura10TZukanBase = .sbss:0x80515ED0; // type:object size:0x4 scope:global align:4 data:byte +mNewColor1__Q28Morimura10TZukanBase = .sbss:0x80515ED4; // type:object size:0x4 scope:global align:4 data:byte +mCategoryScale__Q28Morimura10TZukanBase = .sbss:0x80515ED8; // type:object size:0x8 scope:global align:4 data:float +mCategoryColor0w__Q28Morimura10TZukanBase = .sbss:0x80515EE0; // type:object size:0x4 scope:global align:4 data:byte +mCategoryColor0b__Q28Morimura10TZukanBase = .sbss:0x80515EE4; // type:object size:0x4 scope:global align:4 data:byte +mCategoryColor1w__Q28Morimura10TZukanBase = .sbss:0x80515EE8; // type:object size:0x4 scope:global align:4 data:byte +mCategoryColor1b__Q28Morimura10TZukanBase = .sbss:0x80515EEC; // type:object size:0x4 scope:global align:4 data:byte +mDebugHeapParent__Q28Morimura10TZukanBase = .sbss:0x80515EF0; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura10TZukanBase = .sbss:0x80515EF4; // type:object size:0x4 scope:global align:4 data:4byte +mForceClear__Q28Morimura8THiScore = .sbss:0x80515EF8; // type:object size:0x1 scope:global align:1 data:byte +mForceClear2__Q28Morimura8THiScore = .sbss:0x80515EF9; // type:object size:0x1 scope:global align:1 data:byte +mLoopDrum__Q28Morimura8THiScore = .sbss:0x80515EFA; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515F00; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F04; // type:object size:0x4 scope:local align:4 data:float +curU__Q24Game8UmiMushi = .sbss:0x80515F08; // type:object size:0x4 scope:global align:4 data:4byte +mMatColorY0__Q24Game11ShijimiChou = .sbss:0x80515F10; // type:object size:0x8 scope:local align:4 data:2byte +mMatColorR0__Q24Game11ShijimiChou = .sbss:0x80515F18; // type:object size:0x8 scope:local align:4 data:2byte +mMatColorB0__Q24Game11ShijimiChou = .sbss:0x80515F20; // type:object size:0x8 scope:local align:4 data:2byte +mMatKColorY__Q24Game11ShijimiChou = .sbss:0x80515F28; // type:object size:0x4 scope:local align:4 data:byte +mMatKColorR__Q24Game11ShijimiChou = .sbss:0x80515F2C; // type:object size:0x4 scope:local align:4 data:byte +mMatKColorB__Q24Game11ShijimiChou = .sbss:0x80515F30; // type:object size:0x4 scope:local align:4 data:byte +mRightOffset__Q28Morimura16TChallengeSelect = .sbss:0x80515F38; // type:object size:0x4 scope:global align:4 data:4byte +mDownOffset__Q28Morimura16TChallengeSelect = .sbss:0x80515F3C; // type:object size:0x4 scope:global align:4 data:4byte +mFrameAnimAlpha__Q28Morimura16TChallengeSelect = .sbss:0x80515F40; // type:object size:0x1 scope:global align:1 data:byte +mAllCourseOpen__Q28Morimura16TChallengeSelect = .sbss:0x80515F41; // type:object size:0x1 scope:global align:1 data:byte +mForceDemoStart__Q28Morimura16TChallengeSelect = .sbss:0x80515F42; // type:object size:0x1 scope:global align:1 data:byte +mDivePikiNum__Q28Morimura16TChallengeSelect = .sbss:0x80515F44; // type:object size:0x4 scope:global align:4 data:4byte +mMetOffset__Q28Morimura16TChallengeSelect = .sbss:0x80515F48; // type:object size:0x8 scope:global align:4 data:float +mDebugHeapParent__Q28Morimura16TChallengeSelect = .sbss:0x80515F50; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura16TChallengeSelect = .sbss:0x80515F54; // type:object size:0x4 scope:global align:4 data:4byte +mForceDemoStart__Q28Morimura16TChallengeResult = .sbss:0x80515F58; // type:object size:0x1 scope:global align:1 data:byte +mTestStageId__Q28Morimura16TChallengeResult = .sbss:0x80515F59; // type:object size:0x1 scope:global align:1 data:byte +mDebugHeapParent__Q28Morimura16TChallengeResult = .sbss:0x80515F5C; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura16TChallengeResult = .sbss:0x80515F60; // type:object size:0x4 scope:global align:4 data:4byte +mLeafTexture__Q28Morimura16TChallengeResult = .sbss:0x80515F64; // type:object size:0x4 scope:global align:4 data:4byte +mFlowerTexture__Q28Morimura16TChallengeResult = .sbss:0x80515F68; // type:object size:0x4 scope:global align:4 data:4byte +mRedFlowerTexture__Q28Morimura16TChallengeResult = .sbss:0x80515F6C; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeapParent__Q28Morimura9TVsSelect = .sbss:0x80515F70; // type:object size:0x4 scope:global align:4 data:4byte +mDebugHeap__Q28Morimura9TVsSelect = .sbss:0x80515F74; // type:object size:0x4 scope:global align:4 data:4byte +mPikiOffset__Q28Morimura7TVsPiki = .sbss:0x80515F78; // type:object size:0x8 scope:global align:4 data:float +mForceDemoStart__Q28Morimura9TVsSelect = .sbss:0x80515F80; // type:object size:0x1 scope:global align:1 data:byte +mLoopDrum__Q28Morimura9TVsSelect = .sbss:0x80515F81; // type:object size:0x1 scope:global align:1 data:byte +mCanCancel__Q28Morimura9TVsSelect = .sbss:0x80515F82; // type:object size:0x1 scope:global align:1 data:byte +mRightOffset__Q28Morimura11TScrollList = .sbss:0x80515F88; // type:object size:0x4 scope:global align:4 data:4byte +mForceResetParm__Q28Morimura11TScrollList = .sbss:0x80515F8C; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515F90; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F94; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80515F98; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515F9C; // type:object size:0x4 scope:local align:4 data:float +curB__Q24Game8BlackMan = .sbss:0x80515FA0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515FA8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515FAC; // type:object size:0x4 scope:local align:4 data:float +curT__Q24Game4Tyre = .sbss:0x80515FB0; // type:object size:0x4 scope:global align:4 data:4byte +mCallBack_StaticClipping__Q23efx5TBase = .sbss:0x80515FB8; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515FC0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515FC4; // type:object size:0x4 scope:local align:4 data:float +particle2dMgr = .sbss:0x80515FC8; // type:object size:0x4 scope:global align:4 data:4byte +_instance__14TParticle2dMgr = .sbss:0x80515FCC; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515FD0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515FD4; // type:object size:0x4 scope:local align:4 data:float +particleMgr = .sbss:0x80515FD8; // type:object size:0x4 scope:global align:4 data:4byte +disableCulling__11ParticleMgr = .sbss:0x80515FDC; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515FE0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515FE4; // type:object size:0x4 scope:local align:4 data:float +titleMgr__Q23ebi5title = .sbss:0x80515FE8; // type:object size:0x4 scope:global align:4 data:4byte +_instance__Q33ebi5title9TTitleMgr = .sbss:0x80515FEC; // type:object size:0x4 scope:global align:4 data:4byte +boidCalcTimer$5256 = .sbss:0x80515FF0; // type:object size:0x4 scope:local align:4 data:4byte +init$5257 = .sbss:0x80515FF4; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80515FF8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80515FFC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516000; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516004; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516008; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051600C; // type:object size:0x4 scope:local align:4 data:float +pkEffectMgr = .sbss:0x80516010; // type:object size:0x4 scope:global align:4 data:4byte +_instance__Q23efx12TPkEffectMgr = .sbss:0x80516014; // type:object size:0x4 scope:global align:4 data:4byte +msInstance__Q33ebi4Save4TMgr = .sbss:0x80516018; // type:object size:0x4 scope:global align:4 data:4byte +msInstance__Q33ebi10FileSelect4TMgr = .sbss:0x80516020; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516028; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051602C; // type:object size:0x4 scope:local align:4 data:float +boidCalcTimer$4026 = .sbss:0x80516030; // type:object size:0x4 scope:local align:4 data:4byte +init$4027 = .sbss:0x80516034; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516038; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051603C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516040; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516044; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516048; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051604C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516050; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516054; // type:object size:0x4 scope:local align:4 data:float +gCardEMgr__3ebi = .sbss:0x80516058; // type:object size:0x4 scope:global align:4 data:4byte +gGame2DMgr__6Screen = .sbss:0x80516060; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516068; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051606C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516070; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516074; // type:object size:0x4 scope:local align:4 data:float +msVal__Q32kh6Screen19ObjDayEndResultTitl = .sbss:0x80516078; // type:object size:0x8 scope:global align:4 data:4byte +msVal__Q32kh6Screen10ObjPayDept = .sbss:0x80516080; // type:object size:0x4 scope:global align:4 data:float +__init__zero__10Vector3 = .sbss:0x80516088; // type:object size:0x1 scope:weak align:1 data:byte +debug__Q23Sys8Triangle = .sbss:0x80516090; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516098; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051609C; // type:object size:0x4 scope:local align:4 data:float +debugTraceMove__Q23Sys7OBBTree = .sbss:0x805160A0; // type:object size:0x1 scope:global align:1 data:byte +mRenderMode__6System = .sbss:0x805160A8; // type:object size:0x4 scope:global align:4 data:4byte +sys = .sbss:0x805160AC; // type:object size:0x4 scope:global align:4 data:4byte +sVerifyArg__6System = .sbss:0x805160B0; // type:object size:0x8 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160BC; // type:object size:0x4 scope:local align:4 data:float +sPlayTime = .sbss:0x805160C0; // type:object size:0x8 scope:local align:8 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160C8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160CC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805160D0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160D4; // type:object size:0x4 scope:local align:4 data:float +gScissorOffset = .sbss:0x805160D8; // type:object size:0x4 scope:global align:4 data:4byte +lastTokenName__8Graphics = .sbss:0x805160DC; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160E0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160E4; // type:object size:0x4 scope:local align:4 data:float +verbose__Q28SysShape8Animator = .sbss:0x805160E8; // type:object size:0x1 scope:global align:1 data:byte +drawFlag__9SysTimers = .sbss:0x805160F0; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805160F8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805160FC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516100; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516104; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516108; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051610C; // type:object size:0x4 scope:local align:4 data:float +mArchive__Q24Game11MoviePlayer = .sbss:0x80516110; // type:object size:0x4 scope:global align:4 data:4byte +moviePlayer__4Game = .sbss:0x80516114; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516118; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051611C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516120; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516124; // type:object size:0x4 scope:local align:4 data:float +sFovBackup__Q24Game5P2JST = .sbss:0x80516128; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516130; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516134; // type:object size:0x4 scope:local align:4 data:float +@1028 = .sbss:0x80516138; // type:object size:0x1 scope:local align:4 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x8051613C; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516140; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516148; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051614C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516150; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516154; // type:object size:0x4 scope:local align:4 data:float +movieList__4Game = .sbss:0x80516158; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516160; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516164; // type:object size:0x4 scope:local align:4 data:float +gAramMgr = .sbss:0x80516168; // type:object size:0x4 scope:global align:4 data:4byte +gResMgr2D = .sbss:0x80516170; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516178; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051617C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516180; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516184; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516188; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051618C; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516190; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516194; // type:object size:0x4 scope:local align:4 data:float +gP2JMEMgr = .sbss:0x80516198; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161A0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161A4; // type:object size:0x4 scope:local align:4 data:float +frm$674 = .sbss:0x805161A8; // type:object size:0x1 scope:local align:1 data:byte +init$675 = .sbss:0x805161A9; // type:object size:0x1 scope:local align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161B0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161B4; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805161B8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161BC; // type:object size:0x4 scope:local align:4 data:float +cullCount__Q28SysShape5Model = .sbss:0x805161C0; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161C8; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161CC; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x805161D0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161D4; // type:object size:0x4 scope:local align:4 data:float +sBootSection = .sbss:0x805161D8; // type:object size:0x4 scope:global align:4 data:4byte +sTinyPikminMgr = .sbss:0x805161DC; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x805161E0; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x805161E4; // type:object size:0x4 scope:local align:4 data:float +gLoadResourceMgr = .sbss:0x805161E8; // type:object size:0x4 scope:global align:4 data:4byte +AudioDecodeThreadCreated = .sbss:0x805161F0; // type:object size:0x4 scope:local align:4 data:4byte +Initialized = .sbss:0x805161F8; // type:object size:0x4 scope:local align:4 data:4byte +PrepareReadyMessage = .sbss:0x805161FC; // type:object size:0x4 scope:local align:4 +OldVIPostCallback = .sbss:0x80516200; // type:object size:0x4 scope:local align:4 data:4byte +SoundBufferIndex = .sbss:0x80516204; // type:object size:0x4 scope:local align:4 data:4byte +LastAudioBuffer = .sbss:0x80516208; // type:object size:0x4 scope:local align:4 data:4byte +CurAudioBuffer = .sbss:0x8051620C; // type:object size:0x4 scope:local align:4 data:4byte +gTHPReaderDvdAccess = .sbss:0x80516210; // type:object size:0x1 scope:global align:1 data:byte +ReadThreadCreated = .sbss:0x80516214; // type:object size:0x4 scope:local align:4 data:4byte +VideoDecodeThreadCreated = .sbss:0x80516218; // type:object size:0x4 scope:local align:4 data:4byte +First = .sbss:0x8051621C; // type:object size:0x4 scope:local align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516220; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516224; // type:object size:0x4 scope:local align:4 data:float +sScreenMgr__Q26Screen3Mgr = .sbss:0x80516228; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516230; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516234; // type:object size:0x4 scope:local align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516238; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051623C; // type:object size:0x4 scope:local align:4 data:float +gPikmin2AramMgr = .sbss:0x80516240; // type:object size:0x4 scope:global align:4 data:4byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516248; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051624C; // type:object size:0x4 scope:local align:4 data:float +sBigBoss__Q23PSM12EnemyBigBoss = .sbss:0x80516250; // type:object size:0x4 scope:global align:4 data:4byte +sDopedPikminNum__Q23PSM4Piki = .sbss:0x80516254; // type:object size:0x1 scope:global align:1 data:byte +gu32NAN___Q24Game5P2JST = .sbss:0x80516258; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x8051625C; // type:object size:0x4 scope:local align:4 data:float +tmpVol$3526 = .sbss:0x80516260; // type:object size:0x4 scope:local align:4 data:float +init$3527 = .sbss:0x80516264; // type:object size:0x1 scope:local align:1 data:byte +sLaderNoiseTimer = .sbss:0x80516266; // type:object size:0x2 scope:local align:2 data:2byte +sLaderNoiseWait = .sbss:0x80516268; // type:object size:0x2 scope:local align:2 data:2byte +sLaderNoiseFuefukiSensMin = .sbss:0x8051626C; // type:object size:0x4 scope:global align:4 data:float +gu32NAN___Q24Game5P2JST = .sbss:0x80516270; // type:object size:0x4 scope:local align:4 data:4byte +gfNAN___Q24Game5P2JST = .sbss:0x80516274; // type:object size:0x4 scope:local align:4 data:float +panRatio$3853 = .sbss:0x80516278; // type:object size:0x4 scope:local align:4 data:float +init$3854 = .sbss:0x8051627C; // type:object size:0x1 scope:local align:1 data:byte +sTHPDinamicsProc__3PSM = .sbss:0x80516280; // type:object size:0x4 scope:global align:4 data:4byte +@1328 = .sdata2:0x805162A0; // type:object size:0x4 scope:local align:4 data:float +@1329 = .sdata2:0x805162A4; // type:object size:0x4 scope:local align:4 data:float +@1330 = .sdata2:0x805162A8; // type:object size:0x4 scope:local align:4 data:float +@1560 = .sdata2:0x805162B0; // type:object size:0x8 scope:local align:8 data:double +@1561 = .sdata2:0x805162B8; // type:object size:0x8 scope:local align:8 data:double +@1562 = .sdata2:0x805162C0; // type:object size:0x8 scope:local align:8 data:double +@1563 = .sdata2:0x805162C8; // type:object size:0x8 scope:local align:8 data:double +@1565 = .sdata2:0x805162D0; // type:object size:0x8 scope:local align:8 data:double +ga4cSignature__Q28JMessage4data = .sdata2:0x805162D8; // type:object size:0x4 scope:global align:4 data:string +ga4cSignature_color__Q28JMessage4data = .sdata2:0x805162DC; // type:object size:0x4 scope:global align:4 data:string +@675 = .sdata2:0x805162E0; // type:object size:0x8 scope:local align:8 data:double +@901 = .sdata2:0x805162E8; // type:object size:0x8 scope:local align:8 data:double +@902 = .sdata2:0x805162F0; // type:object size:0x8 scope:local align:8 data:double +@903 = .sdata2:0x805162F8; // type:object size:0x8 scope:local align:8 data:double +@908 = .sdata2:0x80516300; // type:object size:0x8 scope:local align:8 data:double +@909 = .sdata2:0x80516308; // type:object size:0x8 scope:local align:8 data:double +@910 = .sdata2:0x80516310; // type:object size:0x8 scope:local align:8 data:double +@951 = .sdata2:0x80516318; // type:object size:0x8 scope:local align:8 data:double +@976 = .sdata2:0x80516320; // type:object size:0x8 scope:local align:8 data:double +@1864 = .sdata2:0x80516328; // type:object size:0x8 scope:local align:8 data:double +ga4cSignature__Q37JStudio3fvb4data = .sdata2:0x80516330; // type:object size:0x4 scope:global align:4 data:string +@743 = .sdata2:0x80516338; // type:object size:0x4 scope:local align:4 data:float +@758 = .sdata2:0x8051633C; // type:object size:0x4 scope:local align:4 data:float +ga8cSignature__Q27JStudio4data = .sdata2:0x80516340; // type:object size:0x8 scope:global align:4 data:string +@784 = .sdata2:0x80516348; // type:object size:0x8 scope:local align:8 data:double +@1063 = .sdata2:0x80516350; // type:object size:0x4 scope:local align:4 data:float +@1064 = .sdata2:0x80516354; // type:object size:0x4 scope:local align:4 data:float +sauVariableValue_2_DISTANCE_NEAR_FAR__Q27JStudio15TAdaptor_camera = .sdata2:0x80516358; // type:object size:0x8 scope:global align:4 data:4byte +sauVariableValue_2_RANGE_BEGIN_END__Q27JStudio12TAdaptor_fog = .sdata2:0x80516360; // type:object size:0x8 scope:global align:4 data:4byte +sauVariableValue_2_DIRECTION_THETA_PHI__Q27JStudio14TAdaptor_light = .sdata2:0x80516368; // type:object size:0x8 scope:global align:4 data:4byte +@2380 = .sdata2:0x80516370; // type:object size:0x4 scope:local align:4 data:float +gu32Mask_TSequence_value_signExpansion__Q37JStudio3stb4data = .sdata2:0x80516378; // type:object size:0x4 scope:local align:4 data:4byte +ga4cSignature__Q37JStudio3stb4data = .sdata2:0x80516380; // type:object size:0x4 scope:global align:4 data:string +@475 = .sdata2:0x80516388; // type:object size:0x4 scope:local align:4 data:float +@476 = .sdata2:0x8051638C; // type:object size:0x4 scope:local align:4 data:float +@647 = .sdata2:0x80516390; // type:object size:0x8 scope:local align:8 data:double +@648 = .sdata2:0x80516398; // type:object size:0x8 scope:local align:8 data:double +@649 = .sdata2:0x805163A0; // type:object size:0x4 scope:local align:4 data:float +@650 = .sdata2:0x805163A8; // type:object size:0x8 scope:local align:8 data:double +@651 = .sdata2:0x805163B0; // type:object size:0x8 scope:local align:8 data:double +@652 = .sdata2:0x805163B8; // type:object size:0x8 scope:local align:8 data:double +@834 = .sdata2:0x805163C0; // type:object size:0x4 scope:local align:4 data:float +@835 = .sdata2:0x805163C8; // type:object size:0x8 scope:local align:8 data:double +@836 = .sdata2:0x805163D0; // type:object size:0x8 scope:local align:8 data:double +@837 = .sdata2:0x805163D8; // type:object size:0x8 scope:local align:8 data:double +@838 = .sdata2:0x805163E0; // type:object size:0x4 scope:local align:4 data:float +@885 = .sdata2:0x805163E4; // type:object size:0x4 scope:local align:4 data:float +@1050 = .sdata2:0x805163E8; // type:object size:0x4 scope:local align:4 data:float +@1297 = .sdata2:0x805163F0; // type:object size:0x4 scope:local align:4 data:float +@1797 = .sdata2:0x805163F8; // type:object size:0x4 scope:local align:4 data:float +@1798 = .sdata2:0x805163FC; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x80516400; // type:object size:0x4 scope:local align:4 data:float +@2043 = .sdata2:0x80516408; // type:object size:0x8 scope:local align:8 data:double +@561 = .sdata2:0x80516410; // type:object size:0x3 scope:local align:4 data:string +@352 = .sdata2:0x80516418; // type:object size:0x7 scope:local align:4 data:string +@574 = .sdata2:0x80516420; // type:object size:0x3 scope:local align:4 data:string +@2777 = .sdata2:0x80516428; // type:object size:0x3 scope:local align:4 data:string +@1144 = .sdata2:0x80516430; // type:object size:0x7 scope:local align:4 data:string +@1147 = .sdata2:0x80516438; // type:object size:0x6 scope:local align:4 data:string +@1148 = .sdata2:0x80516440; // type:object size:0x6 scope:local align:4 data:string +@1150 = .sdata2:0x80516448; // type:object size:0x6 scope:local align:4 data:string +@1152 = .sdata2:0x80516450; // type:object size:0x4 scope:local align:4 data:float +@1154 = .sdata2:0x80516458; // type:object size:0x8 scope:local align:8 data:double +@715 = .sdata2:0x80516460; // type:object size:0x2 scope:local align:4 data:string +@716 = .sdata2:0x80516464; // type:object size:0x4 scope:local align:4 data:string +@2767 = .sdata2:0x80516468; // type:object size:0x2 scope:local align:4 data:string +@913 = .sdata2:0x80516470; // type:object size:0x7 scope:local align:4 data:string +@698 = .sdata2:0x80516478; // type:object size:0x4 scope:local align:4 data:float +@700 = .sdata2:0x80516480; // type:object size:0x8 scope:local align:8 data:double +@702 = .sdata2:0x80516488; // type:object size:0x8 scope:local align:8 data:double +@689 = .sdata2:0x80516490; // type:object size:0x4 scope:local align:4 data:float +@690 = .sdata2:0x80516494; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x80516498; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata2:0x805164A0; // type:object size:0x8 scope:local align:8 data:double +@2692 = .sdata2:0x805164A8; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x805164AC; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x805164B0; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x805164B4; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x805164B8; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x805164BC; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x805164C0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x805164C8; // type:object size:0x8 scope:local align:8 data:double +@2703 = .sdata2:0x805164D0; // type:object size:0x8 scope:local align:8 data:double +@3440 = .sdata2:0x805164D8; // type:object size:0x3 scope:local align:4 data:string +@838 = .sdata2:0x805164E0; // type:object size:0x4 scope:local align:4 data:float +@839 = .sdata2:0x805164E4; // type:object size:0x4 scope:local align:4 data:float +@841 = .sdata2:0x805164E8; // type:object size:0x8 scope:local align:8 data:double +@546 = .sdata2:0x805164F0; // type:object size:0x3 scope:local align:4 data:string +@612 = .sdata2:0x805164F8; // type:object size:0x8 scope:local align:8 data:double +@613 = .sdata2:0x80516500; // type:object size:0x8 scope:local align:8 data:double +@614 = .sdata2:0x80516508; // type:object size:0x8 scope:local align:8 data:double +@615 = .sdata2:0x80516510; // type:object size:0x8 scope:local align:8 data:double +@616 = .sdata2:0x80516518; // type:object size:0x8 scope:local align:8 data:double +@617 = .sdata2:0x80516520; // type:object size:0x8 scope:local align:8 data:double +@618 = .sdata2:0x80516528; // type:object size:0x8 scope:local align:8 data:double +@619 = .sdata2:0x80516530; // type:object size:0x8 scope:local align:8 data:double +@620 = .sdata2:0x80516538; // type:object size:0x8 scope:local align:8 data:double +@621 = .sdata2:0x80516540; // type:object size:0x8 scope:local align:8 data:double +@623 = .sdata2:0x80516548; // type:object size:0x8 scope:local align:8 data:double +@2415 = .sdata2:0x80516550; // type:object size:0x4 scope:local align:4 data:string +@2416 = .sdata2:0x80516554; // type:object size:0x4 scope:local align:4 data:string +@2419 = .sdata2:0x80516558; // type:object size:0x8 scope:local align:4 data:string +@2423 = .sdata2:0x80516560; // type:object size:0x6 scope:local align:4 data:string +@2561 = .sdata2:0x80516568; // type:object size:0x4 scope:local align:4 data:float +@2718 = .sdata2:0x8051656C; // type:object size:0x2 scope:local align:4 data:string +@2719 = .sdata2:0x80516570; // type:object size:0x2 scope:local align:4 data:string +@2839 = .sdata2:0x80516574; // type:object size:0x7 scope:local align:4 data:string +@2842 = .sdata2:0x8051657C; // type:object size:0x8 scope:local align:4 data:string +@2933 = .sdata2:0x80516584; // type:object size:0x1 scope:local align:4 +@3577 = .sdata2:0x80516588; // type:object size:0x5 scope:local align:4 data:string +@3710 = .sdata2:0x80516590; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata2:0x80516594; // type:object size:0x4 scope:local align:4 data:float +@2426 = .sdata2:0x80516598; // type:object size:0x8 scope:local align:8 data:double +@1045 = .sdata2:0x805165A0; // type:object size:0x4 scope:local align:4 data:float +@1048 = .sdata2:0x805165A8; // type:object size:0x8 scope:local align:8 data:double +@1054 = .sdata2:0x805165B0; // type:object size:0x4 scope:local align:4 data:float +@1115 = .sdata2:0x805165B8; // type:object size:0x8 scope:local align:8 data:double +@1116 = .sdata2:0x805165C0; // type:object size:0x8 scope:local align:8 data:double +@1117 = .sdata2:0x805165C8; // type:object size:0x8 scope:local align:8 data:double +@1118 = .sdata2:0x805165D0; // type:object size:0x4 scope:local align:4 data:float +@1119 = .sdata2:0x805165D4; // type:object size:0x4 scope:local align:4 data:float +@2523 = .sdata2:0x805165D8; // type:object size:0x4 scope:local align:4 data:float +@2524 = .sdata2:0x805165DC; // type:object size:0x4 scope:local align:4 data:float +@2544 = .sdata2:0x805165E0; // type:object size:0x4 scope:local align:4 data:float +@2546 = .sdata2:0x805165E8; // type:object size:0x8 scope:local align:8 data:double +@2573 = .sdata2:0x805165F0; // type:object size:0x4 scope:local align:4 data:float +@2574 = .sdata2:0x805165F4; // type:object size:0x4 scope:local align:4 data:float +@2575 = .sdata2:0x805165F8; // type:object size:0x4 scope:local align:4 data:float +@2576 = .sdata2:0x805165FC; // type:object size:0x4 scope:local align:4 data:float +@2577 = .sdata2:0x80516600; // type:object size:0x4 scope:local align:4 data:float +@2578 = .sdata2:0x80516604; // type:object size:0x4 scope:local align:4 data:float +@2580 = .sdata2:0x80516608; // type:object size:0x8 scope:local align:8 data:double +@2946 = .sdata2:0x80516610; // type:object size:0x4 scope:local align:4 data:float +@2947 = .sdata2:0x80516614; // type:object size:0x4 scope:local align:4 data:float +@2948 = .sdata2:0x80516618; // type:object size:0x4 scope:local align:4 data:float +@649 = .sdata2:0x80516620; // type:object size:0x4 scope:local align:4 data:float +@651 = .sdata2:0x80516628; // type:object size:0x8 scope:local align:8 data:double +@653 = .sdata2:0x80516630; // type:object size:0x8 scope:local align:8 data:double +@690 = .sdata2:0x80516638; // type:object size:0x4 scope:local align:4 data:float +@691 = .sdata2:0x8051663C; // type:object size:0x4 scope:local align:4 data:float +@693 = .sdata2:0x80516640; // type:object size:0x8 scope:local align:8 data:double +@448 = .sdata2:0x80516648; // type:object size:0x4 scope:local align:4 data:float +@449 = .sdata2:0x8051664C; // type:object size:0x4 scope:local align:4 data:float +@451 = .sdata2:0x80516650; // type:object size:0x8 scope:local align:8 data:double +@454 = .sdata2:0x80516658; // type:object size:0x8 scope:local align:8 data:double +@709 = .sdata2:0x80516660; // type:object size:0x3 scope:local align:4 data:string +@743 = .sdata2:0x80516664; // type:object size:0x4 scope:local align:4 data:float +@374 = .sdata2:0x80516668; // type:object size:0x8 scope:local align:8 data:double +@414 = .sdata2:0x80516670; // type:object size:0x4 scope:local align:4 data:float +@325 = .sdata2:0x80516678; // type:object size:0x4 scope:local align:4 data:float +@327 = .sdata2:0x8051667C; // type:object size:0x4 scope:local align:4 data:float +@329 = .sdata2:0x80516680; // type:object size:0x4 scope:local align:4 data:float +@330 = .sdata2:0x80516684; // type:object size:0x4 scope:local align:4 data:float +@332 = .sdata2:0x80516688; // type:object size:0x4 scope:local align:4 data:float +@398 = .sdata2:0x8051668C; // type:object size:0x4 scope:local align:4 data:float +@399 = .sdata2:0x80516690; // type:object size:0x4 scope:local align:4 data:float +@437 = .sdata2:0x80516698; // type:object size:0x8 scope:local align:8 data:double +@438 = .sdata2:0x805166A0; // type:object size:0x8 scope:local align:8 data:double +@439 = .sdata2:0x805166A8; // type:object size:0x8 scope:local align:8 data:double +@440 = .sdata2:0x805166B0; // type:object size:0x4 scope:local align:4 data:float +@442 = .sdata2:0x805166B8; // type:object size:0x8 scope:local align:8 data:double +@477 = .sdata2:0x805166C0; // type:object size:0x4 scope:local align:4 data:float +@472 = .sdata2:0x805166C8; // type:object size:0x4 scope:local align:4 data:float +@499 = .sdata2:0x805166CC; // type:object size:0x4 scope:local align:4 data:float +@500 = .sdata2:0x805166D0; // type:object size:0x4 scope:local align:4 data:float +@521 = .sdata2:0x805166D4; // type:object size:0x4 scope:local align:4 data:float +@522 = .sdata2:0x805166D8; // type:object size:0x4 scope:local align:4 data:float +@523 = .sdata2:0x805166DC; // type:object size:0x4 scope:local align:4 data:float +@532 = .sdata2:0x805166E0; // type:object size:0x4 scope:local align:4 data:float +@580 = .sdata2:0x805166E8; // type:object size:0x4 scope:local align:4 data:float +@581 = .sdata2:0x805166EC; // type:object size:0x4 scope:local align:4 data:float +@682 = .sdata2:0x805166F0; // type:object size:0x4 scope:local align:4 data:float +@684 = .sdata2:0x805166F8; // type:object size:0x8 scope:local align:8 data:double +@1655 = .sdata2:0x80516700; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x80516704; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x80516708; // type:object size:0x8 scope:local align:8 data:double +@1841 = .sdata2:0x80516710; // type:object size:0x8 scope:local align:8 data:double +@1911 = .sdata2:0x80516718; // type:object size:0x4 scope:local align:4 data:float +@2840 = .sdata2:0x8051671C; // type:object size:0x4 scope:local align:4 data:float +@2921 = .sdata2:0x80516720; // type:object size:0x4 scope:local align:4 data:float +@3266 = .sdata2:0x80516724; // type:object size:0x4 scope:local align:4 data:float +@3267 = .sdata2:0x80516728; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x80516730; // type:object size:0x4 scope:local align:4 data:float +@1933 = .sdata2:0x80516738; // type:object size:0x8 scope:local align:8 data:double +@2254 = .sdata2:0x80516740; // type:object size:0x4 scope:local align:4 data:float +@2258 = .sdata2:0x80516748; // type:object size:0x8 scope:local align:8 data:double +@3076 = .sdata2:0x80516750; // type:object size:0x4 scope:local align:4 data:float +@3254 = .sdata2:0x80516754; // type:object size:0x4 scope:local align:4 data:float +@377 = .sdata2:0x80516758; // type:object size:0x4 scope:local align:4 data:float +@602 = .sdata2:0x8051675C; // type:object size:0x4 scope:local align:4 data:float +@608 = .sdata2:0x80516760; // type:object size:0x8 scope:local align:8 data:double +@784 = .sdata2:0x80516768; // type:object size:0x4 scope:local align:4 data:float +@789 = .sdata2:0x80516770; // type:object size:0x8 scope:local align:8 data:double +@911 = .sdata2:0x80516778; // type:object size:0x4 scope:local align:4 data:float +@935 = .sdata2:0x8051677C; // type:object size:0x4 scope:local align:4 data:float +@1747 = .sdata2:0x80516780; // type:object size:0x4 scope:local align:4 data:float +@1748 = .sdata2:0x80516784; // type:object size:0x4 scope:local align:4 data:float +@1749 = .sdata2:0x80516788; // type:object size:0x4 scope:local align:4 data:float +@1896 = .sdata2:0x80516790; // type:object size:0x8 scope:local align:8 data:double +@2056 = .sdata2:0x80516798; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x8051679C; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x805167A0; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x805167A8; // type:object size:0x8 scope:local align:8 data:double +@1851 = .sdata2:0x805167B0; // type:object size:0x8 scope:local align:8 data:double +@2091 = .sdata2:0x805167B8; // type:object size:0x3 scope:local align:4 data:string +@2234 = .sdata2:0x805167BC; // type:object size:0x4 scope:local align:4 data:float +@2177 = .sdata2:0x805167C0; // type:object size:0x8 scope:local align:8 data:double +@2180 = .sdata2:0x805167C8; // type:object size:0x8 scope:local align:8 data:double +@2366 = .sdata2:0x805167D0; // type:object size:0x4 scope:local align:4 data:float +@3232 = .sdata2:0x805167D4; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x805167D8; // type:object size:0x4 scope:local align:4 data:float +@1743 = .sdata2:0x805167E0; // type:object size:0x8 scope:local align:8 data:double +@1746 = .sdata2:0x805167E8; // type:object size:0x8 scope:local align:8 data:double +@2027 = .sdata2:0x805167F0; // type:object size:0x4 scope:local align:4 data:float +@2457 = .sdata2:0x805167F4; // type:object size:0x4 scope:local align:4 data:float +@2458 = .sdata2:0x805167F8; // type:object size:0x4 scope:local align:4 data:float +@1846 = .sdata2:0x80516800; // type:object size:0x4 scope:local align:4 data:float +@2395 = .sdata2:0x80516808; // type:object size:0x4 scope:local align:4 data:float +@2396 = .sdata2:0x8051680C; // type:object size:0x4 scope:local align:4 data:float +@2398 = .sdata2:0x80516810; // type:object size:0x8 scope:local align:8 data:double +@2088 = .sdata2:0x80516818; // type:object size:0x4 scope:local align:4 data:4byte +@2241 = .sdata2:0x8051681C; // type:object size:0x4 scope:local align:4 data:4byte +@1703 = .sdata2:0x80516820; // type:object size:0x4 scope:local align:4 data:float +@2035 = .sdata2:0x80516824; // type:object size:0x4 scope:local align:4 data:float +@2382 = .sdata2:0x80516828; // type:object size:0x8 scope:local align:8 data:double +@3013 = .sdata2:0x80516830; // type:object size:0x4 scope:local align:4 data:float +@1674 = .sdata2:0x80516838; // type:object size:0x4 scope:local align:4 data:float +@1675 = .sdata2:0x8051683C; // type:object size:0x4 scope:local align:4 data:float +@1676 = .sdata2:0x80516840; // type:object size:0x4 scope:local align:4 data:float +@1677 = .sdata2:0x80516844; // type:object size:0x4 scope:local align:4 data:float +@1693 = .sdata2:0x80516848; // type:object size:0x4 scope:local align:4 data:float +j2dDefaultColInfo = .sdata2:0x8051684C; // type:object size:0x4 scope:global align:4 data:4byte +j2dDefaultTevOrderInfoNull = .sdata2:0x80516850; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultIndTexOrderNull = .sdata2:0x80516854; // type:object size:0x2 scope:global align:4 data:byte +j2dDefaultTevColor = .sdata2:0x80516858; // type:object size:0x8 scope:global align:4 data:2byte +j2dDefaultIndTexCoordScaleInfo = .sdata2:0x80516860; // type:object size:0x2 scope:global align:4 data:byte +j2dDefaultTevKColor = .sdata2:0x80516864; // type:object size:0x4 scope:global align:4 data:4byte +j2dDefaultTevSwapMode = .sdata2:0x80516868; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultTevSwapModeTable = .sdata2:0x8051686C; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultBlendInfo = .sdata2:0x80516870; // type:object size:0x4 scope:global align:4 data:byte +j2dDefaultDither = .sdata2:0x80516874; // type:object size:0x1 scope:global align:1 data:byte +j2dDefaultColorChanInfo = .sdata2:0x80516878; // type:object size:0x4 scope:global align:4 +j2dDefaultTevSwapTable = .sdata2:0x8051687C; // type:object size:0x1 scope:global align:1 data:byte +j2dDefaultAlphaCmp = .sdata2:0x8051687E; // type:object size:0x2 scope:global align:2 data:2byte +@1720 = .sdata2:0x80516880; // type:object size:0x4 scope:local align:4 data:float +@1722 = .sdata2:0x80516888; // type:object size:0x8 scope:local align:8 data:double +@1725 = .sdata2:0x80516890; // type:object size:0x8 scope:local align:8 data:double +@1918 = .sdata2:0x80516898; // type:object size:0x4 scope:local align:4 data:float +@1990 = .sdata2:0x8051689C; // type:object size:0x3 scope:local align:4 data:string +@1802 = .sdata2:0x805168A0; // type:object size:0x4 scope:local align:4 data:float +@1805 = .sdata2:0x805168A8; // type:object size:0x8 scope:local align:8 data:double +@1848 = .sdata2:0x805168B0; // type:object size:0x4 scope:local align:4 data:float +@1977 = .sdata2:0x805168B4; // type:object size:0x4 scope:local align:4 data:float +@2360 = .sdata2:0x805168B8; // type:object size:0x4 scope:local align:4 data:float +@2361 = .sdata2:0x805168BC; // type:object size:0x4 scope:local align:4 data:float +@2628 = .sdata2:0x805168C0; // type:object size:0x8 scope:local align:8 data:double +@1589 = .sdata2:0x805168C8; // type:object size:0x4 scope:local align:4 data:float +@1590 = .sdata2:0x805168CC; // type:object size:0x4 scope:local align:4 data:float +@1591 = .sdata2:0x805168D0; // type:object size:0x4 scope:local align:4 data:float +@1403 = .sdata2:0x805168D8; // type:object size:0x4 scope:local align:4 data:float +@1494 = .sdata2:0x805168DC; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x805168E0; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x805168E8; // type:object size:0x4 scope:local align:4 data:float +@1848 = .sdata2:0x805168F0; // type:object size:0x4 scope:local align:4 data:float +@1849 = .sdata2:0x805168F4; // type:object size:0x4 scope:local align:4 data:float +@1852 = .sdata2:0x805168F8; // type:object size:0x8 scope:local align:8 data:double +j3dDefaultColInfo = .sdata2:0x80516900; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultAmbInfo = .sdata2:0x80516904; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultColorChanNum = .sdata2:0x80516908; // type:object size:0x1 scope:global align:1 data:byte +j3dDefaultTevOrderInfoNull = .sdata2:0x8051690C; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultIndTexOrderNull = .sdata2:0x80516910; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevColor = .sdata2:0x80516914; // type:object size:0x8 scope:global align:4 data:2byte +j3dDefaultIndTexCoordScaleInfo = .sdata2:0x8051691C; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevKColor = .sdata2:0x80516920; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevSwapMode = .sdata2:0x80516924; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultTevSwapModeTable = .sdata2:0x80516928; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultBlendInfo = .sdata2:0x8051692C; // type:object size:0x4 scope:global align:4 data:byte +j3dDefaultColorChanInfo = .sdata2:0x80516930; // type:object size:0x8 scope:global align:4 data:byte +j3dDefaultTevSwapTableID = .sdata2:0x80516938; // type:object size:0x1 scope:global align:1 data:byte +j3dDefaultAlphaCmpID = .sdata2:0x8051693A; // type:object size:0x2 scope:global align:2 data:2byte +j3dDefaultZModeID = .sdata2:0x8051693C; // type:object size:0x2 scope:global align:2 data:2byte +@1337 = .sdata2:0x80516940; // type:object size:0x4 scope:local align:4 data:float +@1338 = .sdata2:0x80516944; // type:object size:0x4 scope:local align:4 data:float +@1340 = .sdata2:0x80516948; // type:object size:0x8 scope:local align:8 data:double +@1474 = .sdata2:0x80516950; // type:object size:0x4 scope:local align:4 data:float +@1474 = .sdata2:0x80516958; // type:object size:0x4 scope:local align:4 data:float +@1475 = .sdata2:0x8051695C; // type:object size:0x4 scope:local align:4 data:float +@1595 = .sdata2:0x80516960; // type:object size:0x4 scope:local align:4 data:float +@1597 = .sdata2:0x80516968; // type:object size:0x8 scope:local align:8 data:double +@1701 = .sdata2:0x80516970; // type:object size:0x4 scope:local align:4 data:float +@1931 = .sdata2:0x80516974; // type:object size:0x4 scope:local align:4 data:float +@2074 = .sdata2:0x80516978; // type:object size:0x8 scope:local align:8 data:double +@2236 = .sdata2:0x80516980; // type:object size:0x4 scope:local align:4 data:float +@2237 = .sdata2:0x80516984; // type:object size:0x4 scope:local align:4 data:float +@1619 = .sdata2:0x80516988; // type:object size:0x4 scope:local align:4 data:float +@1628 = .sdata2:0x8051698C; // type:object size:0x8 scope:local align:4 data:4byte +@1676 = .sdata2:0x80516994; // type:object size:0x4 scope:local align:4 data:float +@1830 = .sdata2:0x80516998; // type:object size:0x4 scope:local align:4 data:float +@1831 = .sdata2:0x8051699C; // type:object size:0x4 scope:local align:4 data:float +@1832 = .sdata2:0x805169A0; // type:object size:0x4 scope:local align:4 data:float +@1833 = .sdata2:0x805169A4; // type:object size:0x4 scope:local align:4 data:float +@1834 = .sdata2:0x805169A8; // type:object size:0x4 scope:local align:4 data:float +@1835 = .sdata2:0x805169AC; // type:object size:0x4 scope:local align:4 data:float +@1837 = .sdata2:0x805169B0; // type:object size:0x8 scope:local align:8 data:double +@1514 = .sdata2:0x805169B8; // type:object size:0x4 scope:local align:4 data:float +@1801 = .sdata2:0x805169BC; // type:object size:0x4 scope:local align:4 data:float +@2417 = .sdata2:0x805169C0; // type:object size:0x4 scope:local align:4 data:4byte +@2524 = .sdata2:0x805169C4; // type:object size:0x4 scope:local align:4 data:4byte +@2662 = .sdata2:0x805169C8; // type:object size:0x4 scope:local align:4 data:4byte +@1672 = .sdata2:0x805169D0; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x805169D8; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x805169DC; // type:object size:0x4 scope:local align:4 data:float +@1229 = .sdata2:0x805169E0; // type:object size:0x4 scope:local align:4 data:float +@1456 = .sdata2:0x805169E4; // type:object size:0x4 scope:local align:4 data:float +@1457 = .sdata2:0x805169E8; // type:object size:0x4 scope:local align:4 data:float +@1458 = .sdata2:0x805169F0; // type:object size:0x8 scope:local align:8 data:double +@1459 = .sdata2:0x805169F8; // type:object size:0x4 scope:local align:4 data:float +@1460 = .sdata2:0x80516A00; // type:object size:0x8 scope:local align:8 data:double +@1461 = .sdata2:0x80516A08; // type:object size:0x4 scope:local align:4 data:float +@1464 = .sdata2:0x80516A10; // type:object size:0x8 scope:local align:8 data:double +@872 = .sdata2:0x80516A18; // type:object size:0x4 scope:local align:4 data:4byte +@5842 = .sdata2:0x80516A1C; // type:object size:0x4 scope:local align:4 data:float +@1822 = .sdata2:0x80516A20; // type:object size:0x4 scope:local align:4 data:4byte +@2027 = .sdata2:0x80516A24; // type:object size:0x4 scope:local align:4 data:4byte +@1657 = .sdata2:0x80516A28; // type:object size:0x4 scope:local align:4 data:float +@2057 = .sdata2:0x80516A2C; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x80516A30; // type:object size:0x4 scope:local align:4 data:float +@1916 = .sdata2:0x80516A38; // type:object size:0x4 scope:local align:4 data:float +@1917 = .sdata2:0x80516A3C; // type:object size:0x4 scope:local align:4 data:float +@2473 = .sdata2:0x80516A40; // type:object size:0x4 scope:local align:4 data:float +@2474 = .sdata2:0x80516A44; // type:object size:0x4 scope:local align:4 data:float +@2476 = .sdata2:0x80516A48; // type:object size:0x8 scope:local align:8 data:double +@2428 = .sdata2:0x80516A50; // type:object size:0x4 scope:local align:4 data:float +@2984 = .sdata2:0x80516A54; // type:object size:0x4 scope:local align:4 data:float +@2985 = .sdata2:0x80516A58; // type:object size:0x4 scope:local align:4 data:float +@2987 = .sdata2:0x80516A60; // type:object size:0x8 scope:local align:8 data:double +@3870 = .sdata2:0x80516A68; // type:object size:0x8 scope:local align:8 data:double +@3902 = .sdata2:0x80516A70; // type:object size:0x8 scope:local align:8 data:double +@2492 = .sdata2:0x80516A78; // type:object size:0x4 scope:local align:4 data:float +@2853 = .sdata2:0x80516A80; // type:object size:0x8 scope:local align:8 data:double +@2970 = .sdata2:0x80516A88; // type:object size:0x4 scope:local align:4 data:float +@2971 = .sdata2:0x80516A8C; // type:object size:0x4 scope:local align:4 data:float +@2972 = .sdata2:0x80516A90; // type:object size:0x4 scope:local align:4 data:float +@2974 = .sdata2:0x80516A98; // type:object size:0x8 scope:local align:8 data:double +@3363 = .sdata2:0x80516AA0; // type:object size:0x4 scope:local align:4 data:float +@3364 = .sdata2:0x80516AA4; // type:object size:0x4 scope:local align:4 data:float +@3477 = .sdata2:0x80516AA8; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x80516AAC; // type:object size:0x4 scope:local align:4 data:float +@2548 = .sdata2:0x80516AB0; // type:object size:0x4 scope:local align:4 data:float +@2549 = .sdata2:0x80516AB4; // type:object size:0x4 scope:local align:4 data:float +@2517 = .sdata2:0x80516AB8; // type:object size:0x4 scope:local align:4 data:float +@2518 = .sdata2:0x80516ABC; // type:object size:0x4 scope:local align:4 data:float +@2519 = .sdata2:0x80516AC0; // type:object size:0x4 scope:local align:4 data:float +@2551 = .sdata2:0x80516AC8; // type:object size:0x8 scope:local align:8 data:double +@2707 = .sdata2:0x80516AD0; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x80516AD8; // type:object size:0x8 scope:local align:8 data:double +@2659 = .sdata2:0x80516AE0; // type:object size:0x4 scope:local align:4 data:float +@2660 = .sdata2:0x80516AE4; // type:object size:0x4 scope:local align:4 data:float +@2661 = .sdata2:0x80516AE8; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata2:0x80516AEC; // type:object size:0x4 scope:local align:4 data:float +@2663 = .sdata2:0x80516AF0; // type:object size:0x4 scope:local align:4 data:float +@2884 = .sdata2:0x80516AF8; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata2:0x80516AFC; // type:object size:0x4 scope:local align:4 data:float +@2886 = .sdata2:0x80516B00; // type:object size:0x4 scope:local align:4 data:float +@2887 = .sdata2:0x80516B04; // type:object size:0x4 scope:local align:4 data:float +@2888 = .sdata2:0x80516B08; // type:object size:0x4 scope:local align:4 data:float +@2500 = .sdata2:0x80516B10; // type:object size:0x4 scope:local align:4 data:float +@2542 = .sdata2:0x80516B18; // type:object size:0x8 scope:local align:8 data:double +@2569 = .sdata2:0x80516B20; // type:object size:0x4 scope:local align:4 data:float +@2620 = .sdata2:0x80516B24; // type:object size:0x4 scope:local align:4 data:float +@2661 = .sdata2:0x80516B28; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata2:0x80516B2C; // type:object size:0x4 scope:local align:4 data:float +@2730 = .sdata2:0x80516B30; // type:object size:0x4 scope:local align:4 data:float +@2538 = .sdata2:0x80516B38; // type:object size:0x4 scope:local align:4 data:float +@2539 = .sdata2:0x80516B3C; // type:object size:0x4 scope:local align:4 data:float +@2641 = .sdata2:0x80516B40; // type:object size:0x4 scope:local align:4 data:float +@2642 = .sdata2:0x80516B44; // type:object size:0x4 scope:local align:4 data:float +@2643 = .sdata2:0x80516B48; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata2:0x80516B4C; // type:object size:0x4 scope:local align:4 data:float +@2445 = .sdata2:0x80516B50; // type:object size:0x8 scope:local align:8 data:double +@2423 = .sdata2:0x80516B58; // type:object size:0x4 scope:local align:4 data:float +@2466 = .sdata2:0x80516B5C; // type:object size:0x4 scope:local align:4 data:float +@2467 = .sdata2:0x80516B60; // type:object size:0x4 scope:local align:4 data:float +@2468 = .sdata2:0x80516B64; // type:object size:0x4 scope:local align:4 data:float +@2469 = .sdata2:0x80516B68; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata2:0x80516B70; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata2:0x80516B74; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x80516B78; // type:object size:0x4 scope:local align:4 data:float +@2775 = .sdata2:0x80516B7C; // type:object size:0x4 scope:local align:4 data:float +@2776 = .sdata2:0x80516B80; // type:object size:0x4 scope:local align:4 data:float +@2777 = .sdata2:0x80516B84; // type:object size:0x4 scope:local align:4 data:float +@2779 = .sdata2:0x80516B88; // type:object size:0x8 scope:local align:8 data:double +@2781 = .sdata2:0x80516B90; // type:object size:0x8 scope:local align:8 data:double +@3423 = .sdata2:0x80516B98; // type:object size:0x4 scope:local align:4 data:float +@3424 = .sdata2:0x80516B9C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x80516BA0; // type:object size:0x4 scope:local align:4 data:float +@3426 = .sdata2:0x80516BA4; // type:object size:0x4 scope:local align:4 data:float +@3428 = .sdata2:0x80516BA8; // type:object size:0x8 scope:local align:8 data:double +@318 = .sdata2:0x80516BB0; // type:object size:0x4 scope:local align:4 data:float +@337 = .sdata2:0x80516BB8; // type:object size:0x4 scope:local align:4 data:float +@342 = .sdata2:0x80516BC0; // type:object size:0x4 scope:local align:4 data:float +@817 = .sdata2:0x80516BC8; // type:object size:0x4 scope:local align:4 data:float +@818 = .sdata2:0x80516BCC; // type:object size:0x4 scope:local align:4 data:float +@819 = .sdata2:0x80516BD0; // type:object size:0x4 scope:local align:4 data:float +@820 = .sdata2:0x80516BD4; // type:object size:0x4 scope:local align:4 data:float +@822 = .sdata2:0x80516BD8; // type:object size:0x8 scope:local align:8 data:double +@859 = .sdata2:0x80516BE0; // type:object size:0x4 scope:local align:4 data:float +@639 = .sdata2:0x80516BE8; // type:object size:0x4 scope:local align:4 data:float +@703 = .sdata2:0x80516BF0; // type:object size:0x8 scope:local align:8 data:double +@890 = .sdata2:0x80516BF8; // type:object size:0x4 scope:local align:4 data:float +@891 = .sdata2:0x80516BFC; // type:object size:0x4 scope:local align:4 data:float +@892 = .sdata2:0x80516C00; // type:object size:0x4 scope:local align:4 data:float +@894 = .sdata2:0x80516C08; // type:object size:0x8 scope:local align:8 data:double +@945 = .sdata2:0x80516C10; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x80516C18; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata2:0x80516C1C; // type:object size:0x4 scope:local align:4 data:float +@670 = .sdata2:0x80516C20; // type:object size:0x8 scope:local align:8 data:double +@685 = .sdata2:0x80516C28; // type:object size:0x4 scope:local align:4 data:float +@657 = .sdata2:0x80516C30; // type:object size:0x4 scope:local align:4 data:float +@658 = .sdata2:0x80516C34; // type:object size:0x4 scope:local align:4 data:float +@630 = .sdata2:0x80516C38; // type:object size:0x4 scope:local align:4 data:float +@631 = .sdata2:0x80516C3C; // type:object size:0x4 scope:local align:4 data:float +@634 = .sdata2:0x80516C40; // type:object size:0x8 scope:local align:8 data:double +@636 = .sdata2:0x80516C48; // type:object size:0x8 scope:local align:8 data:double +@650 = .sdata2:0x80516C50; // type:object size:0x4 scope:local align:4 data:float +@653 = .sdata2:0x80516C58; // type:object size:0x4 scope:local align:4 data:float +@654 = .sdata2:0x80516C5C; // type:object size:0x4 scope:local align:4 data:float +@655 = .sdata2:0x80516C60; // type:object size:0x4 scope:local align:4 data:float +@656 = .sdata2:0x80516C64; // type:object size:0x4 scope:local align:4 data:float +@659 = .sdata2:0x80516C68; // type:object size:0x8 scope:local align:8 data:double +@986 = .sdata2:0x80516C70; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x80516C78; // type:object size:0x8 scope:local align:8 data:double +@1014 = .sdata2:0x80516C80; // type:object size:0x7 scope:local align:4 data:4byte +@1015 = .sdata2:0x80516C88; // type:object size:0x7 scope:local align:4 data:4byte +@1043 = .sdata2:0x80516C90; // type:object size:0x4 scope:local align:4 data:float +@1045 = .sdata2:0x80516C98; // type:object size:0x8 scope:local align:8 data:double +@1058 = .sdata2:0x80516CA0; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x80516CA4; // type:object size:0x4 scope:local align:4 data:float +@1079 = .sdata2:0x80516CA8; // type:object size:0x4 scope:local align:4 data:float +@1080 = .sdata2:0x80516CAC; // type:object size:0x4 scope:local align:4 data:float +@1104 = .sdata2:0x80516CB0; // type:object size:0x4 scope:local align:4 data:float +@713 = .sdata2:0x80516CB8; // type:object size:0x4 scope:local align:4 data:float +@854 = .sdata2:0x80516CBC; // type:object size:0x4 scope:local align:4 data:float +@924 = .sdata2:0x80516CC0; // type:object size:0x8 scope:local align:8 data:double +@1026 = .sdata2:0x80516CC8; // type:object size:0x4 scope:local align:4 data:float +@1276 = .sdata2:0x80516CCC; // type:object size:0x4 scope:local align:4 data:float +@1277 = .sdata2:0x80516CD0; // type:object size:0x4 scope:local align:4 data:float +@1488 = .sdata2:0x80516CD4; // type:object size:0x4 scope:local align:4 data:float +@1565 = .sdata2:0x80516CD8; // type:object size:0x4 scope:local align:4 data:float +@1566 = .sdata2:0x80516CDC; // type:object size:0x4 scope:local align:4 data:float +@1567 = .sdata2:0x80516CE0; // type:object size:0x4 scope:local align:4 data:float +@1569 = .sdata2:0x80516CE8; // type:object size:0x8 scope:local align:8 data:double +@2515 = .sdata2:0x80516CF0; // type:object size:0x4 scope:local align:4 data:float +@2522 = .sdata2:0x80516CF8; // type:object size:0x8 scope:local align:8 data:double +@2523 = .sdata2:0x80516D00; // type:object size:0x4 scope:local align:4 data:float +@2540 = .sdata2:0x80516D04; // type:object size:0x4 scope:local align:4 data:float +@2541 = .sdata2:0x80516D08; // type:object size:0x4 scope:local align:4 data:float +@2542 = .sdata2:0x80516D0C; // type:object size:0x4 scope:local align:4 data:float +@2543 = .sdata2:0x80516D10; // type:object size:0x4 scope:local align:4 data:float +@387 = .sdata2:0x80516D18; // type:object size:0x4 scope:local align:4 data:float +@417 = .sdata2:0x80516D1C; // type:object size:0x4 scope:local align:4 data:float +@452 = .sdata2:0x80516D20; // type:object size:0x4 scope:local align:4 data:float +@453 = .sdata2:0x80516D24; // type:object size:0x4 scope:local align:4 data:float +@455 = .sdata2:0x80516D28; // type:object size:0x8 scope:local align:8 data:double +@570 = .sdata2:0x80516D30; // type:object size:0x4 scope:local align:4 data:float +@571 = .sdata2:0x80516D38; // type:object size:0x8 scope:local align:8 data:double +@572 = .sdata2:0x80516D40; // type:object size:0x4 scope:local align:4 data:float +@576 = .sdata2:0x80516D48; // type:object size:0x8 scope:local align:8 data:double +@457 = .sdata2:0x80516D50; // type:object size:0x4 scope:local align:4 data:float +@458 = .sdata2:0x80516D54; // type:object size:0x4 scope:local align:4 data:float +@459 = .sdata2:0x80516D58; // type:object size:0x4 scope:local align:4 data:float +@572 = .sdata2:0x80516D60; // type:object size:0x8 scope:local align:8 data:double +@761 = .sdata2:0x80516D68; // type:object size:0x4 scope:local align:4 data:float +@867 = .sdata2:0x80516D6C; // type:object size:0x4 scope:local align:4 data:float +@869 = .sdata2:0x80516D70; // type:object size:0x8 scope:local align:8 data:double +@980 = .sdata2:0x80516D78; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x80516D7C; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x80516D80; // type:object size:0x4 scope:local align:4 data:float +@983 = .sdata2:0x80516D84; // type:object size:0x4 scope:local align:4 data:float +@984 = .sdata2:0x80516D88; // type:object size:0x4 scope:local align:4 data:float +@345 = .sdata2:0x80516D90; // type:object size:0x4 scope:local align:4 data:float +@386 = .sdata2:0x80516D98; // type:object size:0x8 scope:local align:8 data:double +@485 = .sdata2:0x80516DA0; // type:object size:0x8 scope:local align:4 data:string +@667 = .sdata2:0x80516DA8; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x80516DAC; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata2:0x80516DB0; // type:object size:0x4 scope:local align:4 data:float +@671 = .sdata2:0x80516DB8; // type:object size:0x8 scope:local align:8 data:double +@457 = .sdata2:0x80516DC0; // type:object size:0x4 scope:local align:4 data:float +@460 = .sdata2:0x80516DC8; // type:object size:0x8 scope:local align:8 data:double +@602 = .sdata2:0x80516DD0; // type:object size:0x7 scope:local align:4 data:string +@603 = .sdata2:0x80516DD8; // type:object size:0x7 scope:local align:4 data:string +@368 = .sdata2:0x80516DE0; // type:object size:0x4 scope:local align:4 data:float +@369 = .sdata2:0x80516DE4; // type:object size:0x4 scope:local align:4 data:float +@370 = .sdata2:0x80516DE8; // type:object size:0x4 scope:local align:4 data:float +@452 = .sdata2:0x80516DF0; // type:object size:0x4 scope:local align:4 data:float +@453 = .sdata2:0x80516DF4; // type:object size:0x4 scope:local align:4 data:float +@454 = .sdata2:0x80516DF8; // type:object size:0x4 scope:local align:4 data:float +@603 = .sdata2:0x80516DFC; // type:object size:0x4 scope:local align:4 data:float +@605 = .sdata2:0x80516E00; // type:object size:0x8 scope:local align:8 data:double +one$870 = .sdata2:0x80516E08; // type:object size:0x4 scope:local align:4 +@333 = .sdata2:0x80516E10; // type:object size:0x4 scope:local align:4 data:float +@944 = .sdata2:0x80516E18; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x80516E1C; // type:object size:0x4 scope:local align:4 data:float +@1300 = .sdata2:0x80516E20; // type:object size:0x4 scope:local align:4 data:float +@1301 = .sdata2:0x80516E24; // type:object size:0x4 scope:local align:4 data:float +@1302 = .sdata2:0x80516E28; // type:object size:0x4 scope:local align:4 data:float +@1304 = .sdata2:0x80516E30; // type:object size:0x8 scope:local align:8 data:double +@1306 = .sdata2:0x80516E38; // type:object size:0x8 scope:local align:8 data:double +@1335 = .sdata2:0x80516E40; // type:object size:0x4 scope:local align:4 data:float +@937 = .sdata2:0x80516E48; // type:object size:0x7 scope:local align:4 data:string +@986 = .sdata2:0x80516E50; // type:object size:0x4 scope:local align:4 data:float +@987 = .sdata2:0x80516E54; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x80516E58; // type:object size:0x4 scope:local align:4 data:float +@1573 = .sdata2:0x80516E5C; // type:object size:0x4 scope:local align:4 data:float +@1575 = .sdata2:0x80516E60; // type:object size:0x8 scope:local align:8 data:double +@1342 = .sdata2:0x80516E68; // type:object size:0x7 scope:local align:4 data:string +@1343 = .sdata2:0x80516E70; // type:object size:0x6 scope:local align:4 data:string +@1344 = .sdata2:0x80516E78; // type:object size:0x8 scope:local align:4 data:string +@869 = .sdata2:0x80516E80; // type:object size:0x7 scope:local align:4 data:string +@1076 = .sdata2:0x80516E88; // type:object size:0x4 scope:local align:4 data:float +@1077 = .sdata2:0x80516E8C; // type:object size:0x4 scope:local align:4 data:float +@1078 = .sdata2:0x80516E90; // type:object size:0x4 scope:local align:4 data:float +@1524 = .sdata2:0x80516E94; // type:object size:0x4 scope:local align:4 data:float +@1525 = .sdata2:0x80516E98; // type:object size:0x4 scope:local align:4 data:float +@1526 = .sdata2:0x80516EA0; // type:object size:0x8 scope:local align:8 data:double +@1527 = .sdata2:0x80516EA8; // type:object size:0x8 scope:local align:8 data:double +@1528 = .sdata2:0x80516EB0; // type:object size:0x8 scope:local align:8 data:double +@1529 = .sdata2:0x80516EB8; // type:object size:0x4 scope:local align:4 data:float +@1530 = .sdata2:0x80516EBC; // type:object size:0x4 scope:local align:4 data:float +@1532 = .sdata2:0x80516EC0; // type:object size:0x8 scope:local align:8 data:double +@1716 = .sdata2:0x80516EC8; // type:object size:0x4 scope:local align:4 data:float +@1737 = .sdata2:0x80516ECC; // type:object size:0x4 scope:local align:4 data:float +@1739 = .sdata2:0x80516ED0; // type:object size:0x8 scope:local align:8 data:double +@1853 = .sdata2:0x80516ED8; // type:object size:0x4 scope:local align:4 data:float +@1068 = .sdata2:0x80516EE0; // type:object size:0x4 scope:local align:4 data:float +@1069 = .sdata2:0x80516EE4; // type:object size:0x4 scope:local align:4 data:float +@1070 = .sdata2:0x80516EE8; // type:object size:0x4 scope:local align:4 data:float +@1071 = .sdata2:0x80516EEC; // type:object size:0x4 scope:local align:4 data:float +@1596 = .sdata2:0x80516EF0; // type:object size:0x4 scope:local align:4 data:float +@2190 = .sdata2:0x80516EF8; // type:object size:0x8 scope:local align:8 data:double +@2191 = .sdata2:0x80516F00; // type:object size:0x8 scope:local align:8 data:double +@2192 = .sdata2:0x80516F08; // type:object size:0x8 scope:local align:8 data:double +@2193 = .sdata2:0x80516F10; // type:object size:0x4 scope:local align:4 data:float +@2196 = .sdata2:0x80516F18; // type:object size:0x8 scope:local align:8 data:double +@915 = .sdata2:0x80516F20; // type:object size:0x4 scope:local align:4 data:float +@941 = .sdata2:0x80516F24; // type:object size:0x4 scope:local align:4 data:float +@945 = .sdata2:0x80516F28; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x80516F30; // type:object size:0x8 scope:local align:8 data:double +@1183 = .sdata2:0x80516F38; // type:object size:0x8 scope:local align:8 data:double +@1184 = .sdata2:0x80516F40; // type:object size:0x8 scope:local align:8 data:double +@1185 = .sdata2:0x80516F48; // type:object size:0x8 scope:local align:8 data:double +@1186 = .sdata2:0x80516F50; // type:object size:0x4 scope:local align:4 data:float +@1187 = .sdata2:0x80516F54; // type:object size:0x4 scope:local align:4 data:float +@1189 = .sdata2:0x80516F58; // type:object size:0x8 scope:local align:8 data:double +@1208 = .sdata2:0x80516F60; // type:object size:0x4 scope:local align:4 data:float +@1588 = .sdata2:0x80516F64; // type:object size:0x4 scope:local align:4 data:float +@1589 = .sdata2:0x80516F68; // type:object size:0x4 scope:local align:4 data:float +@1650 = .sdata2:0x80516F6C; // type:object size:0x4 scope:local align:4 data:float +@1856 = .sdata2:0x80516F70; // type:object size:0x4 scope:local align:4 data:float +@2185 = .sdata2:0x80516F74; // type:object size:0x4 scope:local align:4 data:float +@2414 = .sdata2:0x80516F78; // type:object size:0x4 scope:local align:4 data:float +@981 = .sdata2:0x80516F80; // type:object size:0x4 scope:local align:4 data:float +@982 = .sdata2:0x80516F84; // type:object size:0x4 scope:local align:4 data:float +@988 = .sdata2:0x80516F88; // type:object size:0x4 scope:local align:4 data:float +@1087 = .sdata2:0x80516F90; // type:object size:0x4 scope:local align:4 data:float +@1046 = .sdata2:0x80516F98; // type:object size:0x4 scope:local align:4 data:float +@1047 = .sdata2:0x80516F9C; // type:object size:0x4 scope:local align:4 data:float +@1206 = .sdata2:0x80516FA0; // type:object size:0x8 scope:local align:8 data:double +@1207 = .sdata2:0x80516FA8; // type:object size:0x8 scope:local align:8 data:double +@1208 = .sdata2:0x80516FB0; // type:object size:0x8 scope:local align:8 data:double +cEqualCSlope__7JALCalc = .sdata2:0x80516FB8; // type:object size:0x4 scope:global align:4 data:float +cEqualPSlope__7JALCalc = .sdata2:0x80516FBC; // type:object size:0x4 scope:global align:4 data:float +@462 = .sdata2:0x80516FC0; // type:object size:0x4 scope:local align:4 data:float +@463 = .sdata2:0x80516FC4; // type:object size:0x4 scope:local align:4 data:float +@478 = .sdata2:0x80516FC8; // type:object size:0x4 scope:local align:4 data:float +@479 = .sdata2:0x80516FCC; // type:object size:0x4 scope:local align:4 data:float +@2688 = .sdata2:0x80516FD0; // type:object size:0x2 scope:local align:4 +@824 = .sdata2:0x80516FD8; // type:object size:0x8 scope:local align:8 data:double +@825 = .sdata2:0x80516FE0; // type:object size:0x8 scope:local align:8 data:double +@826 = .sdata2:0x80516FE8; // type:object size:0x8 scope:local align:8 data:double +@827 = .sdata2:0x80516FF0; // type:object size:0x8 scope:local align:8 data:double +@830 = .sdata2:0x80516FF8; // type:object size:0x8 scope:local align:8 data:double +@831 = .sdata2:0x80517000; // type:object size:0x8 scope:local align:8 data:double +@74 = .sdata2:0x80517008; // type:object size:0x4 scope:local align:4 data:4byte +@1089 = .sdata2:0x80517010; // type:object size:0x8 scope:local align:8 data:double +@76 = .sdata2:0x80517018; // type:object size:0x5 scope:local align:4 data:string +@301 = .sdata2:0x80517020; // type:object size:0x8 scope:local align:8 data:double +@618 = .sdata2:0x80517028; // type:object size:0x8 scope:local align:8 data:double +@94 = .sdata2:0x80517030; // type:object size:0x8 scope:local align:8 data:double +@95 = .sdata2:0x80517038; // type:object size:0x8 scope:local align:8 data:double +@96 = .sdata2:0x80517040; // type:object size:0x8 scope:local align:8 data:double +@97 = .sdata2:0x80517048; // type:object size:0x8 scope:local align:8 data:double +@98 = .sdata2:0x80517050; // type:object size:0x8 scope:local align:8 data:double +@99 = .sdata2:0x80517058; // type:object size:0x8 scope:local align:8 data:double +@100 = .sdata2:0x80517060; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x80517068; // type:object size:0x8 scope:local align:8 data:double +@102 = .sdata2:0x80517070; // type:object size:0x8 scope:local align:8 data:double +@103 = .sdata2:0x80517078; // type:object size:0x8 scope:local align:8 data:double +@104 = .sdata2:0x80517080; // type:object size:0x8 scope:local align:8 data:double +@105 = .sdata2:0x80517088; // type:object size:0x8 scope:local align:8 data:double +@106 = .sdata2:0x80517090; // type:object size:0x8 scope:local align:8 data:double +@107 = .sdata2:0x80517098; // type:object size:0x8 scope:local align:8 data:double +@108 = .sdata2:0x805170A0; // type:object size:0x8 scope:local align:8 data:double +@109 = .sdata2:0x805170A8; // type:object size:0x8 scope:local align:8 data:double +@110 = .sdata2:0x805170B0; // type:object size:0x8 scope:local align:8 data:double +@145 = .sdata2:0x805170B8; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x805170C0; // type:object size:0x8 scope:local align:8 data:double +@147 = .sdata2:0x805170C8; // type:object size:0x8 scope:local align:8 data:double +@148 = .sdata2:0x805170D0; // type:object size:0x8 scope:local align:8 data:double +@149 = .sdata2:0x805170D8; // type:object size:0x8 scope:local align:8 data:double +@150 = .sdata2:0x805170E0; // type:object size:0x8 scope:local align:8 data:double +@151 = .sdata2:0x805170E8; // type:object size:0x8 scope:local align:8 data:double +@152 = .sdata2:0x805170F0; // type:object size:0x8 scope:local align:8 data:double +@153 = .sdata2:0x805170F8; // type:object size:0x8 scope:local align:8 data:double +@154 = .sdata2:0x80517100; // type:object size:0x8 scope:local align:8 data:double +@155 = .sdata2:0x80517108; // type:object size:0x8 scope:local align:8 data:double +@115 = .sdata2:0x80517110; // type:object size:0x8 scope:local align:8 data:double +@116 = .sdata2:0x80517118; // type:object size:0x8 scope:local align:8 data:double +@117 = .sdata2:0x80517120; // type:object size:0x8 scope:local align:8 data:double +@118 = .sdata2:0x80517128; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x80517130; // type:object size:0x8 scope:local align:8 data:double +@120 = .sdata2:0x80517138; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x80517140; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x80517148; // type:object size:0x8 scope:local align:8 data:double +@123 = .sdata2:0x80517150; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x80517158; // type:object size:0x8 scope:local align:8 data:double +@125 = .sdata2:0x80517160; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x80517168; // type:object size:0x8 scope:local align:8 data:double +@127 = .sdata2:0x80517170; // type:object size:0x8 scope:local align:8 data:double +@128 = .sdata2:0x80517178; // type:object size:0x8 scope:local align:8 data:double +@131 = .sdata2:0x80517180; // type:object size:0x8 scope:local align:8 data:double +@110 = .sdata2:0x80517188; // type:object size:0x8 scope:local align:8 data:double +@111 = .sdata2:0x80517190; // type:object size:0x8 scope:local align:8 data:double +@112 = .sdata2:0x80517198; // type:object size:0x8 scope:local align:8 data:double +@113 = .sdata2:0x805171A0; // type:object size:0x8 scope:local align:8 data:double +@114 = .sdata2:0x805171A8; // type:object size:0x8 scope:local align:8 data:double +@115 = .sdata2:0x805171B0; // type:object size:0x8 scope:local align:8 data:double +@116 = .sdata2:0x805171B8; // type:object size:0x8 scope:local align:8 data:double +@117 = .sdata2:0x805171C0; // type:object size:0x8 scope:local align:8 data:double +@118 = .sdata2:0x805171C8; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x805171D0; // type:object size:0x8 scope:local align:8 data:double +@120 = .sdata2:0x805171D8; // type:object size:0x8 scope:local align:8 data:double +@121 = .sdata2:0x805171E0; // type:object size:0x8 scope:local align:8 data:double +@122 = .sdata2:0x805171E8; // type:object size:0x8 scope:local align:8 data:double +@123 = .sdata2:0x805171F0; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x805171F8; // type:object size:0x8 scope:local align:8 data:double +@126 = .sdata2:0x80517200; // type:object size:0x8 scope:local align:8 data:double +@63 = .sdata2:0x80517208; // type:object size:0x8 scope:local align:8 data:double +@64 = .sdata2:0x80517210; // type:object size:0x8 scope:local align:8 data:double +@65 = .sdata2:0x80517218; // type:object size:0x8 scope:local align:8 data:double +@66 = .sdata2:0x80517220; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x80517228; // type:object size:0x8 scope:local align:8 data:double +@69 = .sdata2:0x80517230; // type:object size:0x8 scope:local align:8 data:double +@336 = .sdata2:0x80517238; // type:object size:0x8 scope:local align:8 data:double +@337 = .sdata2:0x80517240; // type:object size:0x8 scope:local align:8 data:double +@338 = .sdata2:0x80517248; // type:object size:0x8 scope:local align:8 data:double +@339 = .sdata2:0x80517250; // type:object size:0x8 scope:local align:8 data:double +@340 = .sdata2:0x80517258; // type:object size:0x8 scope:local align:8 data:double +@341 = .sdata2:0x80517260; // type:object size:0x8 scope:local align:8 data:double +@342 = .sdata2:0x80517268; // type:object size:0x8 scope:local align:8 data:double +@343 = .sdata2:0x80517270; // type:object size:0x8 scope:local align:8 data:double +@344 = .sdata2:0x80517278; // type:object size:0x8 scope:local align:8 data:double +@345 = .sdata2:0x80517280; // type:object size:0x8 scope:local align:8 data:double +@346 = .sdata2:0x80517288; // type:object size:0x8 scope:local align:8 data:double +@347 = .sdata2:0x80517290; // type:object size:0x8 scope:local align:8 data:double +@348 = .sdata2:0x80517298; // type:object size:0x8 scope:local align:8 data:double +@349 = .sdata2:0x805172A0; // type:object size:0x8 scope:local align:8 data:double +@350 = .sdata2:0x805172A8; // type:object size:0x8 scope:local align:8 data:double +@351 = .sdata2:0x805172B0; // type:object size:0x8 scope:local align:8 data:double +@352 = .sdata2:0x805172B8; // type:object size:0x8 scope:local align:8 data:double +@353 = .sdata2:0x805172C0; // type:object size:0x8 scope:local align:8 data:double +@354 = .sdata2:0x805172C8; // type:object size:0x8 scope:local align:8 data:double +@355 = .sdata2:0x805172D0; // type:object size:0x8 scope:local align:8 data:double +@356 = .sdata2:0x805172D8; // type:object size:0x8 scope:local align:8 data:double +@357 = .sdata2:0x805172E0; // type:object size:0x8 scope:local align:8 data:double +@358 = .sdata2:0x805172E8; // type:object size:0x8 scope:local align:8 data:double +@359 = .sdata2:0x805172F0; // type:object size:0x8 scope:local align:8 data:double +@360 = .sdata2:0x805172F8; // type:object size:0x8 scope:local align:8 data:double +@361 = .sdata2:0x80517300; // type:object size:0x8 scope:local align:8 data:double +@362 = .sdata2:0x80517308; // type:object size:0x8 scope:local align:8 data:double +@363 = .sdata2:0x80517310; // type:object size:0x8 scope:local align:8 data:double +@364 = .sdata2:0x80517318; // type:object size:0x8 scope:local align:8 data:double +@365 = .sdata2:0x80517320; // type:object size:0x8 scope:local align:8 data:double +@366 = .sdata2:0x80517328; // type:object size:0x8 scope:local align:8 data:double +@367 = .sdata2:0x80517330; // type:object size:0x8 scope:local align:8 data:double +@368 = .sdata2:0x80517338; // type:object size:0x8 scope:local align:8 data:double +@370 = .sdata2:0x80517340; // type:object size:0x8 scope:local align:8 data:double +@145 = .sdata2:0x80517348; // type:object size:0x8 scope:local align:8 data:double +@146 = .sdata2:0x80517350; // type:object size:0x8 scope:local align:8 data:double +@147 = .sdata2:0x80517358; // type:object size:0x8 scope:local align:8 data:double +@148 = .sdata2:0x80517360; // type:object size:0x8 scope:local align:8 data:double +@149 = .sdata2:0x80517368; // type:object size:0x8 scope:local align:8 data:double +@150 = .sdata2:0x80517370; // type:object size:0x8 scope:local align:8 data:double +@151 = .sdata2:0x80517378; // type:object size:0x8 scope:local align:8 data:double +@152 = .sdata2:0x80517380; // type:object size:0x8 scope:local align:8 data:double +@153 = .sdata2:0x80517388; // type:object size:0x8 scope:local align:8 data:double +@154 = .sdata2:0x80517390; // type:object size:0x8 scope:local align:8 data:double +@157 = .sdata2:0x80517398; // type:object size:0x8 scope:local align:8 data:double +@65 = .sdata2:0x805173A0; // type:object size:0x8 scope:local align:8 data:double +@66 = .sdata2:0x805173A8; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x805173B0; // type:object size:0x8 scope:local align:8 data:double +@68 = .sdata2:0x805173B8; // type:object size:0x8 scope:local align:8 data:double +@69 = .sdata2:0x805173C0; // type:object size:0x8 scope:local align:8 data:double +@70 = .sdata2:0x805173C8; // type:object size:0x8 scope:local align:8 data:double +@71 = .sdata2:0x805173D0; // type:object size:0x8 scope:local align:8 data:double +@72 = .sdata2:0x805173D8; // type:object size:0x8 scope:local align:8 data:double +@73 = .sdata2:0x805173E0; // type:object size:0x8 scope:local align:8 data:double +@436 = .sdata2:0x805173E8; // type:object size:0x8 scope:local align:8 data:double +@437 = .sdata2:0x805173F0; // type:object size:0x8 scope:local align:8 data:double +@438 = .sdata2:0x805173F8; // type:object size:0x8 scope:local align:8 data:double +@439 = .sdata2:0x80517400; // type:object size:0x8 scope:local align:8 data:double +@440 = .sdata2:0x80517408; // type:object size:0x8 scope:local align:8 data:double +@441 = .sdata2:0x80517410; // type:object size:0x8 scope:local align:8 data:double +@442 = .sdata2:0x80517418; // type:object size:0x8 scope:local align:8 data:double +@445 = .sdata2:0x80517420; // type:object size:0x8 scope:local align:8 data:double +@60 = .sdata2:0x80517428; // type:object size:0x8 scope:local align:8 data:double +@61 = .sdata2:0x80517430; // type:object size:0x8 scope:local align:8 data:double +@62 = .sdata2:0x80517438; // type:object size:0x8 scope:local align:8 data:double +@63 = .sdata2:0x80517440; // type:object size:0x8 scope:local align:8 data:double +@64 = .sdata2:0x80517448; // type:object size:0x8 scope:local align:8 data:double +@65 = .sdata2:0x80517450; // type:object size:0x8 scope:local align:8 data:double +@66 = .sdata2:0x80517458; // type:object size:0x8 scope:local align:8 data:double +@94 = .sdata2:0x80517460; // type:object size:0x8 scope:local align:8 data:double +@95 = .sdata2:0x80517468; // type:object size:0x8 scope:local align:8 data:double +@96 = .sdata2:0x80517470; // type:object size:0x8 scope:local align:8 data:double +@97 = .sdata2:0x80517478; // type:object size:0x8 scope:local align:8 data:double +@98 = .sdata2:0x80517480; // type:object size:0x8 scope:local align:8 data:double +@99 = .sdata2:0x80517488; // type:object size:0x8 scope:local align:8 data:double +@101 = .sdata2:0x80517490; // type:object size:0x8 scope:local align:8 data:double +@115 = .sdata2:0x80517498; // type:object size:0x8 scope:local align:8 data:double +@116 = .sdata2:0x805174A0; // type:object size:0x8 scope:local align:8 data:double +@117 = .sdata2:0x805174A8; // type:object size:0x8 scope:local align:8 data:double +@118 = .sdata2:0x805174B0; // type:object size:0x8 scope:local align:8 data:double +@119 = .sdata2:0x805174B8; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x805174C0; // type:object size:0x8 scope:local align:8 data:double +@125 = .sdata2:0x805174C8; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x805174D0; // type:object size:0x8 scope:local align:8 data:double +@124 = .sdata2:0x805174D8; // type:object size:0x8 scope:local align:8 data:double +@125 = .sdata2:0x805174E0; // type:object size:0x8 scope:local align:8 data:double +@57 = .sdata2:0x805174E8; // type:object size:0x8 scope:local align:8 data:double +@91 = .sdata2:0x805174F0; // type:object size:0x8 scope:local align:8 data:double +@92 = .sdata2:0x805174F8; // type:object size:0x8 scope:local align:8 data:double +@93 = .sdata2:0x80517500; // type:object size:0x8 scope:local align:8 data:double +@94 = .sdata2:0x80517508; // type:object size:0x8 scope:local align:8 data:double +@95 = .sdata2:0x80517510; // type:object size:0x8 scope:local align:8 data:double +@67 = .sdata2:0x80517518; // type:object size:0x8 scope:local align:8 data:double +@58 = .sdata2:0x80517520; // type:object size:0x8 scope:local align:8 data:double +@164 = .sdata2:0x80517528; // type:object size:0x8 scope:local align:8 data:double +__GXData = .sdata2:0x80517530; // type:object size:0x4 scope:global align:4 data:4byte +@289 = .sdata2:0x80517534; // type:object size:0x4 scope:local align:4 data:float +@290 = .sdata2:0x80517538; // type:object size:0x4 scope:local align:4 data:float +@291 = .sdata2:0x8051753C; // type:object size:0x4 scope:local align:4 data:4byte +@292 = .sdata2:0x80517540; // type:object size:0x4 scope:local align:4 data:4byte +@293 = .sdata2:0x80517544; // type:object size:0x4 scope:local align:4 data:4byte +@353 = .sdata2:0x80517548; // type:object size:0x4 scope:local align:4 data:float +@354 = .sdata2:0x8051754C; // type:object size:0x4 scope:local align:4 data:float +@356 = .sdata2:0x80517550; // type:object size:0x8 scope:local align:8 data:double +@179 = .sdata2:0x80517558; // type:object size:0x4 scope:local align:4 data:float +@234 = .sdata2:0x80517560; // type:object size:0x8 scope:local align:8 data:double +@134 = .sdata2:0x80517568; // type:object size:0x4 scope:local align:4 data:float +@135 = .sdata2:0x8051756C; // type:object size:0x4 scope:local align:4 data:float +@136 = .sdata2:0x80517570; // type:object size:0x4 scope:local align:4 data:float +@137 = .sdata2:0x80517574; // type:object size:0x4 scope:local align:4 data:float +@138 = .sdata2:0x80517578; // type:object size:0x4 scope:local align:4 data:float +@139 = .sdata2:0x8051757C; // type:object size:0x4 scope:local align:4 data:float +@140 = .sdata2:0x80517580; // type:object size:0x4 scope:local align:4 data:float +@141 = .sdata2:0x80517584; // type:object size:0x4 scope:local align:4 data:float +@142 = .sdata2:0x80517588; // type:object size:0x4 scope:local align:4 data:float +@143 = .sdata2:0x8051758C; // type:object size:0x4 scope:local align:4 data:float +@144 = .sdata2:0x80517590; // type:object size:0x4 scope:local align:4 data:float +@160 = .sdata2:0x80517594; // type:object size:0x4 scope:local align:4 data:float +@177 = .sdata2:0x80517598; // type:object size:0x8 scope:local align:8 data:double +@178 = .sdata2:0x805175A0; // type:object size:0x8 scope:local align:8 data:double +@179 = .sdata2:0x805175A8; // type:object size:0x4 scope:local align:4 data:float +@220 = .sdata2:0x805175B0; // type:object size:0x4 scope:local align:4 data:float +@222 = .sdata2:0x805175B8; // type:object size:0x8 scope:local align:8 data:double +@288 = .sdata2:0x805175C0; // type:object size:0x4 scope:local align:4 data:float +@289 = .sdata2:0x805175C4; // type:object size:0x4 scope:local align:4 data:float +@290 = .sdata2:0x805175C8; // type:object size:0x4 scope:local align:4 data:float +@291 = .sdata2:0x805175CC; // type:object size:0x4 scope:local align:4 data:float +@292 = .sdata2:0x805175D0; // type:object size:0x4 scope:local align:4 data:float +@293 = .sdata2:0x805175D4; // type:object size:0x4 scope:local align:4 data:float +@149 = .sdata2:0x805175D8; // type:object size:0x4 scope:local align:4 data:float +@221 = .sdata2:0x805175E0; // type:object size:0x4 scope:local align:4 data:float +@222 = .sdata2:0x805175E4; // type:object size:0x4 scope:local align:4 data:float +@223 = .sdata2:0x805175E8; // type:object size:0x4 scope:local align:4 data:float +@224 = .sdata2:0x805175F0; // type:object size:0x8 scope:local align:8 data:double +@225 = .sdata2:0x805175F8; // type:object size:0x4 scope:local align:4 data:float +@226 = .sdata2:0x80517600; // type:object size:0x8 scope:local align:8 data:double +@227 = .sdata2:0x80517608; // type:object size:0x4 scope:local align:4 data:float +@229 = .sdata2:0x80517610; // type:object size:0x8 scope:local align:8 data:double +@252 = .sdata2:0x80517618; // type:object size:0x8 scope:local align:8 data:double +@253 = .sdata2:0x80517620; // type:object size:0x4 scope:local align:4 data:float +@254 = .sdata2:0x80517628; // type:object size:0x8 scope:local align:8 data:double +@255 = .sdata2:0x80517630; // type:object size:0x4 scope:local align:4 data:float +@257 = .sdata2:0x80517638; // type:object size:0x8 scope:local align:8 data:double +@26 = .sdata2:0x80517640; // type:object size:0x4 scope:local align:4 data:float +@28 = .sdata2:0x80517644; // type:object size:0x4 scope:local align:4 data:float +@201 = .sdata2:0x80517648; // type:object size:0x4 scope:local align:4 data:float +@96 = .sdata2:0x80517650; // type:object size:0x4 scope:local align:4 data:float +@97 = .sdata2:0x80517654; // type:object size:0x4 scope:local align:4 data:float +@190 = .sdata2:0x80517658; // type:object size:0x4 scope:local align:4 data:float +@191 = .sdata2:0x8051765C; // type:object size:0x4 scope:local align:4 data:float +@206 = .sdata2:0x80517660; // type:object size:0x4 scope:local align:4 data:float +@227 = .sdata2:0x80517664; // type:object size:0x4 scope:local align:4 data:float +@230 = .sdata2:0x80517668; // type:object size:0x4 scope:local align:4 data:float +@99 = .sdata2:0x80517670; // type:object size:0x4 scope:local align:4 data:float +@100 = .sdata2:0x80517674; // type:object size:0x4 scope:local align:4 data:float +@101 = .sdata2:0x80517678; // type:object size:0x4 scope:local align:4 data:float +@102 = .sdata2:0x8051767C; // type:object size:0x4 scope:local align:4 data:float +@105 = .sdata2:0x80517680; // type:object size:0x4 scope:local align:4 data:float +@106 = .sdata2:0x80517684; // type:object size:0x4 scope:local align:4 data:float +@118 = .sdata2:0x80517688; // type:object size:0x4 scope:local align:4 data:float +@119 = .sdata2:0x8051768C; // type:object size:0x4 scope:local align:4 data:float +@153 = .sdata2:0x80517690; // type:object size:0x8 scope:local align:4 data:4byte +@160 = .sdata2:0x80517698; // type:object size:0x4 scope:local align:4 data:float +@161 = .sdata2:0x805176A0; // type:object size:0x8 scope:local align:8 data:double +@162 = .sdata2:0x805176A8; // type:object size:0x8 scope:local align:8 data:double +@164 = .sdata2:0x805176B0; // type:object size:0x8 scope:local align:8 data:double +@244 = .sdata2:0x805176B8; // type:object size:0x8 scope:local align:8 data:double +@666 = .sdata2:0x805176C0; // type:object size:0x4 scope:local align:4 data:float +@667 = .sdata2:0x805176C4; // type:object size:0x4 scope:local align:4 data:float +@668 = .sdata2:0x805176C8; // type:object size:0x4 scope:local align:4 data:float +@669 = .sdata2:0x805176CC; // type:object size:0x4 scope:local align:4 data:float +@670 = .sdata2:0x805176D0; // type:object size:0x4 scope:local align:4 data:float +@4123 = .sdata2:0x805176D8; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x805176DC; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x805176E0; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x805176E4; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x805176E8; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x805176EC; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x805176F0; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x805176F8; // type:object size:0x8 scope:local align:8 data:double +@4288 = .sdata2:0x80517700; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x80517704; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x80517708; // type:object size:0x4 scope:local align:4 data:float +@4463 = .sdata2:0x8051770C; // type:object size:0x4 scope:local align:4 data:float +@4464 = .sdata2:0x80517710; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x80517714; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x80517718; // type:object size:0x4 scope:local align:4 data:float +@4614 = .sdata2:0x80517720; // type:object size:0x8 scope:local align:8 data:double +@4787 = .sdata2:0x80517728; // type:object size:0x7 scope:local align:4 data:string +@4788 = .sdata2:0x80517730; // type:object size:0x7 scope:local align:4 data:string +@4789 = .sdata2:0x80517738; // type:object size:0x6 scope:local align:4 data:string +@4791 = .sdata2:0x80517740; // type:object size:0x4 scope:local align:4 data:string +@5283 = .sdata2:0x80517744; // type:object size:0x4 scope:local align:4 data:float +@5521 = .sdata2:0x80517748; // type:object size:0x4 scope:local align:4 data:float +@5522 = .sdata2:0x8051774C; // type:object size:0x4 scope:local align:4 data:float +@5523 = .sdata2:0x80517750; // type:object size:0x4 scope:local align:4 data:float +@5524 = .sdata2:0x80517754; // type:object size:0x4 scope:local align:4 data:float +@5525 = .sdata2:0x80517758; // type:object size:0x4 scope:local align:4 data:float +@5526 = .sdata2:0x8051775C; // type:object size:0x4 scope:local align:4 data:float +@5809 = .sdata2:0x80517760; // type:object size:0x7 scope:local align:4 data:string +@6030 = .sdata2:0x80517768; // type:object size:0x4 scope:local align:4 data:float +@6577 = .sdata2:0x8051776C; // type:object size:0x4 scope:local align:4 data:float +@6977 = .sdata2:0x80517770; // type:object size:0x4 scope:local align:4 data:float +@6978 = .sdata2:0x80517774; // type:object size:0x4 scope:local align:4 data:float +@7044 = .sdata2:0x80517778; // type:object size:0x4 scope:local align:4 data:float +@7134 = .sdata2:0x8051777C; // type:object size:0x4 scope:local align:4 data:float +@7135 = .sdata2:0x80517780; // type:object size:0x4 scope:local align:4 data:float +@7919 = .sdata2:0x80517784; // type:object size:0x4 scope:local align:4 data:float +@8057 = .sdata2:0x80517788; // type:object size:0x4 scope:local align:4 data:float +@8178 = .sdata2:0x8051778C; // type:object size:0x4 scope:local align:4 data:string +@3550 = .sdata2:0x80517790; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x80517794; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x80517798; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051779C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x805177A0; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x805177A4; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x805177A8; // type:object size:0x4 scope:local align:4 data:float +@3647 = .sdata2:0x805177AC; // type:object size:0x8 scope:local align:4 data:string +@3779 = .sdata2:0x805177B4; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x805177B8; // type:object size:0x3 scope:local align:4 data:string +@3782 = .sdata2:0x805177BC; // type:object size:0x4 scope:local align:4 data:string +@3783 = .sdata2:0x805177C0; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x805177C4; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x805177C8; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x805177CC; // type:object size:0x4 scope:local align:4 data:float +@3852 = .sdata2:0x805177D0; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x805177D4; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x805177D8; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x805177DC; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x805177E0; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x805177E4; // type:object size:0x5 scope:local align:4 data:string +@3909 = .sdata2:0x805177EC; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x805177F0; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x805177F4; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x805177F8; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x805177FC; // type:object size:0x4 scope:local align:4 data:float +@4205 = .sdata2:0x80517800; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata2:0x80517804; // type:object size:0x4 scope:local align:4 data:float +@4244 = .sdata2:0x80517808; // type:object size:0x6 scope:local align:4 data:string +@4245 = .sdata2:0x80517810; // type:object size:0x4 scope:local align:4 data:float +@4246 = .sdata2:0x80517814; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata2:0x80517818; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x8051781C; // type:object size:0x7 scope:local align:4 +@4299 = .sdata2:0x80517824; // type:object size:0x4 scope:local align:4 data:float +@4301 = .sdata2:0x80517828; // type:object size:0x4 scope:local align:4 data:float +@4304 = .sdata2:0x8051782C; // type:object size:0x4 scope:local align:4 data:float +@4306 = .sdata2:0x80517830; // type:object size:0x4 scope:local align:4 data:float +@4308 = .sdata2:0x80517834; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x80517838; // type:object size:0x8 scope:local align:4 +@4312 = .sdata2:0x80517840; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x80517844; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x80517848; // type:object size:0x5 scope:local align:4 +@4317 = .sdata2:0x80517850; // type:object size:0x5 scope:local align:4 +@4318 = .sdata2:0x80517858; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x8051785C; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x80517860; // type:object size:0x4 scope:local align:4 data:float +@4324 = .sdata2:0x80517864; // type:object size:0x4 scope:local align:4 data:float +@4326 = .sdata2:0x80517868; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051786C; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x80517870; // type:object size:0x7 scope:local align:4 +@4332 = .sdata2:0x80517878; // type:object size:0x4 scope:local align:4 data:float +@4333 = .sdata2:0x8051787C; // type:object size:0x4 scope:local align:4 data:float +@4335 = .sdata2:0x80517880; // type:object size:0x7 scope:local align:4 +@4345 = .sdata2:0x80517888; // type:object size:0x7 scope:local align:4 +@4347 = .sdata2:0x80517890; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x80517894; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x80517898; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x805178A0; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x805178A4; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x805178A8; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x805178AC; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x805178B0; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x805178B4; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x805178B8; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata2:0x805178C0; // type:object size:0x8 scope:local align:8 data:double +@4032 = .sdata2:0x805178C8; // type:object size:0x5 scope:local align:4 data:string +@4107 = .sdata2:0x805178D0; // type:object size:0x7 scope:local align:4 data:string +@4155 = .sdata2:0x805178D8; // type:object size:0x5 scope:local align:4 data:string +@5206 = .sdata2:0x805178E0; // type:object size:0x8 scope:local align:4 data:string +@6161 = .sdata2:0x805178E8; // type:object size:0x4 scope:local align:4 data:float +@6162 = .sdata2:0x805178EC; // type:object size:0x4 scope:local align:4 data:float +@6163 = .sdata2:0x805178F0; // type:object size:0x4 scope:local align:4 data:float +@6164 = .sdata2:0x805178F4; // type:object size:0x4 scope:local align:4 data:float +@6165 = .sdata2:0x805178F8; // type:object size:0x4 scope:local align:4 data:float +@6166 = .sdata2:0x805178FC; // type:object size:0x4 scope:local align:4 data:float +@6167 = .sdata2:0x80517900; // type:object size:0x4 scope:local align:4 data:float +@6168 = .sdata2:0x80517904; // type:object size:0x4 scope:local align:4 data:float +@6170 = .sdata2:0x80517908; // type:object size:0x8 scope:local align:8 data:double +@3644 = .sdata2:0x80517910; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x80517918; // type:object size:0x6 scope:local align:4 data:string +@3754 = .sdata2:0x80517920; // type:object size:0x4 scope:local align:4 data:float +@3774 = .sdata2:0x80517924; // type:object size:0x5 scope:local align:4 data:string +@3787 = .sdata2:0x8051792C; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x80517930; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x80517938; // type:object size:0x8 scope:local align:8 data:double +@3887 = .sdata2:0x80517940; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x80517944; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x80517948; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x8051794C; // type:object size:0x5 scope:local align:4 data:string +@3930 = .sdata2:0x80517954; // type:object size:0x5 scope:local align:4 data:string +@4146 = .sdata2:0x8051795C; // type:object size:0x4 scope:local align:4 data:float +@4158 = .sdata2:0x80517960; // type:object size:0x5 scope:local align:4 data:string +@4166 = .sdata2:0x80517968; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x8051796C; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x80517970; // type:object size:0x7 scope:local align:4 data:string +@4544 = .sdata2:0x80517978; // type:object size:0x6 scope:local align:4 data:string +@4610 = .sdata2:0x80517980; // type:object size:0x4 scope:local align:4 data:float +@4813 = .sdata2:0x80517984; // type:object size:0x7 scope:local align:4 data:string +@4962 = .sdata2:0x8051798C; // type:object size:0x5 scope:local align:4 data:string +@4976 = .sdata2:0x80517994; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x80517998; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051799C; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x805179A0; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x805179A4; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x805179A8; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x805179AC; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x805179B0; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x805179B8; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x805179BC; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x805179C0; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x805179C4; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata2:0x805179C8; // type:object size:0x8 scope:local align:8 data:double +@4403 = .sdata2:0x805179D0; // type:object size:0x4 scope:local align:4 data:float +@4654 = .sdata2:0x805179D4; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x805179D8; // type:object size:0x4 scope:local align:4 data:float +@3637 = .sdata2:0x805179E0; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x805179E4; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x805179E8; // type:object size:0x6 scope:local align:4 data:string +@3662 = .sdata2:0x805179F0; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x805179F4; // type:object size:0x4 scope:local align:4 data:float +@3725 = .sdata2:0x805179F8; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x805179FC; // type:object size:0x5 scope:local align:4 data:string +@3825 = .sdata2:0x80517A04; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x80517A08; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x80517A0C; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x80517A10; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x80517A14; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x80517A18; // type:object size:0x8 scope:local align:8 data:double +@3843 = .sdata2:0x80517A20; // type:object size:0x5 scope:local align:4 data:string +@3848 = .sdata2:0x80517A28; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x80517A2C; // type:object size:0x5 scope:local align:4 data:string +@4403 = .sdata2:0x80517A34; // type:object size:0x7 scope:local align:4 data:string +@4598 = .sdata2:0x80517A3C; // type:object size:0x6 scope:local align:4 data:string +@4986 = .sdata2:0x80517A44; // type:object size:0x7 scope:local align:4 data:string +@3591 = .sdata2:0x80517A50; // type:object size:0x4 scope:local align:4 data:float +@3592 = .sdata2:0x80517A54; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x80517A58; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x80517A5C; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x80517A60; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x80517A64; // type:object size:0x4 scope:local align:4 data:float +@3440 = .sdata2:0x80517A68; // type:object size:0x4 scope:local align:4 data:float +@3483 = .sdata2:0x80517A6C; // type:object size:0x4 scope:local align:4 data:float +@3484 = .sdata2:0x80517A70; // type:object size:0x4 scope:local align:4 data:float +@3485 = .sdata2:0x80517A74; // type:object size:0x4 scope:local align:4 data:float +@3486 = .sdata2:0x80517A78; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x80517A7C; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x80517A80; // type:object size:0x8 scope:local align:8 data:double +@3491 = .sdata2:0x80517A88; // type:object size:0x8 scope:local align:8 data:double +@3523 = .sdata2:0x80517A90; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata2:0x80517A94; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x80517A98; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata2:0x80517AA0; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata2:0x80517AA4; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata2:0x80517AA8; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x80517AAC; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x80517AB0; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata2:0x80517AB4; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata2:0x80517AB8; // type:object size:0x4 scope:local align:4 data:float +@3272 = .sdata2:0x80517ABC; // type:object size:0x4 scope:local align:4 data:float +@3273 = .sdata2:0x80517AC0; // type:object size:0x4 scope:local align:4 data:float +@3274 = .sdata2:0x80517AC4; // type:object size:0x4 scope:local align:4 data:float +@3275 = .sdata2:0x80517AC8; // type:object size:0x4 scope:local align:4 data:float +@3276 = .sdata2:0x80517ACC; // type:object size:0x4 scope:local align:4 data:float +@3277 = .sdata2:0x80517AD0; // type:object size:0x4 scope:local align:4 data:float +@3278 = .sdata2:0x80517AD4; // type:object size:0x4 scope:local align:4 data:float +@3279 = .sdata2:0x80517AD8; // type:object size:0x4 scope:local align:4 data:float +@3280 = .sdata2:0x80517ADC; // type:object size:0x4 scope:local align:4 data:float +@3281 = .sdata2:0x80517AE0; // type:object size:0x4 scope:local align:4 data:float +@3282 = .sdata2:0x80517AE4; // type:object size:0x4 scope:local align:4 data:float +@3283 = .sdata2:0x80517AE8; // type:object size:0x4 scope:local align:4 data:float +@3284 = .sdata2:0x80517AEC; // type:object size:0x4 scope:local align:4 data:float +@3285 = .sdata2:0x80517AF0; // type:object size:0x4 scope:local align:4 data:float +@3289 = .sdata2:0x80517AF8; // type:object size:0x8 scope:local align:8 data:double +@3293 = .sdata2:0x80517B00; // type:object size:0x8 scope:local align:8 data:double +@3320 = .sdata2:0x80517B08; // type:object size:0x4 scope:local align:4 data:float +@3321 = .sdata2:0x80517B0C; // type:object size:0x4 scope:local align:4 data:float +@3322 = .sdata2:0x80517B10; // type:object size:0x4 scope:local align:4 data:float +@3323 = .sdata2:0x80517B14; // type:object size:0x4 scope:local align:4 data:float +@3357 = .sdata2:0x80517B18; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x80517B1C; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x80517B20; // type:object size:0x4 scope:local align:4 data:float +@3450 = .sdata2:0x80517B24; // type:object size:0x1 scope:local align:4 +@3813 = .sdata2:0x80517B28; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x80517B30; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata2:0x80517B34; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata2:0x80517B38; // type:object size:0x8 scope:local align:8 data:double +@3630 = .sdata2:0x80517B40; // type:object size:0x3 scope:local align:4 +@3631 = .sdata2:0x80517B44; // type:object size:0x3 scope:local align:4 +@3632 = .sdata2:0x80517B48; // type:object size:0x3 scope:local align:4 +@3633 = .sdata2:0x80517B4C; // type:object size:0x3 scope:local align:4 +@3634 = .sdata2:0x80517B50; // type:object size:0x7 scope:local align:4 +@3737 = .sdata2:0x80517B58; // type:object size:0x1 scope:local align:4 +@3739 = .sdata2:0x80517B5C; // type:object size:0x3 scope:local align:4 +@3740 = .sdata2:0x80517B60; // type:object size:0x3 scope:local align:4 +@3741 = .sdata2:0x80517B64; // type:object size:0x3 scope:local align:4 +@3760 = .sdata2:0x80517B68; // type:object size:0x8 scope:local align:4 +@3761 = .sdata2:0x80517B70; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x80517B74; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x80517B78; // type:object size:0x8 scope:local align:4 +@3804 = .sdata2:0x80517B80; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x80517B84; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80517B88; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80517B8C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x80517B90; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x80517B94; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x80517B98; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x80517B9C; // type:object size:0x5 scope:local align:4 +@4092 = .sdata2:0x80517BA4; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x80517BA8; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x80517BAC; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x80517BB0; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x80517BB4; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata2:0x80517BB8; // type:object size:0x4 scope:local align:4 data:float +@4232 = .sdata2:0x80517BBC; // type:object size:0x4 scope:local align:4 data:float +@4233 = .sdata2:0x80517BC0; // type:object size:0x4 scope:local align:4 data:float +@4333 = .sdata2:0x80517BC4; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x80517BC8; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x80517BCC; // type:object size:0x8 scope:local align:4 data:string +@4519 = .sdata2:0x80517BD4; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x80517BD8; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x80517BDC; // type:object size:0x4 scope:local align:4 data:float +@4522 = .sdata2:0x80517BE0; // type:object size:0x4 scope:local align:4 data:float +@5489 = .sdata2:0x80517BE4; // type:object size:0x4 scope:local align:4 data:float +@5490 = .sdata2:0x80517BE8; // type:object size:0x4 scope:local align:4 data:float +@5491 = .sdata2:0x80517BEC; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x80517BF0; // type:object size:0x4 scope:local align:4 data:float +@5987 = .sdata2:0x80517BF4; // type:object size:0x4 scope:local align:4 data:float +@5988 = .sdata2:0x80517BF8; // type:object size:0x4 scope:local align:4 data:float +@5989 = .sdata2:0x80517BFC; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x80517C00; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x80517C04; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x80517C08; // type:object size:0x4 scope:local align:4 data:float +@2725 = .sdata2:0x80517C0C; // type:object size:0x4 scope:local align:4 data:float +@2838 = .sdata2:0x80517C10; // type:object size:0x4 scope:local align:4 data:float +@2839 = .sdata2:0x80517C14; // type:object size:0x4 scope:local align:4 data:float +@3047 = .sdata2:0x80517C18; // type:object size:0x8 scope:local align:8 data:double +@3049 = .sdata2:0x80517C20; // type:object size:0x8 scope:local align:8 data:double +@2431 = .sdata2:0x80517C28; // type:object size:0x1 scope:local align:4 +@2435 = .sdata2:0x80517C2C; // type:object size:0x7 scope:local align:4 data:string +@2438 = .sdata2:0x80517C34; // type:object size:0x4 scope:local align:4 data:string +@2439 = .sdata2:0x80517C38; // type:object size:0x8 scope:local align:4 data:string +@2440 = .sdata2:0x80517C40; // type:object size:0x7 scope:local align:4 data:string +@2444 = .sdata2:0x80517C48; // type:object size:0x8 scope:local align:4 data:string +@2445 = .sdata2:0x80517C50; // type:object size:0x7 scope:local align:4 data:string +@2446 = .sdata2:0x80517C58; // type:object size:0x8 scope:local align:4 data:string +@2447 = .sdata2:0x80517C60; // type:object size:0x5 scope:local align:4 data:string +@2448 = .sdata2:0x80517C68; // type:object size:0x5 scope:local align:4 data:string +@2450 = .sdata2:0x80517C70; // type:object size:0x5 scope:local align:4 data:string +@2451 = .sdata2:0x80517C78; // type:object size:0x5 scope:local align:4 data:string +@2452 = .sdata2:0x80517C80; // type:object size:0x6 scope:local align:4 data:string +@2453 = .sdata2:0x80517C88; // type:object size:0x5 scope:local align:4 data:string +@2455 = .sdata2:0x80517C90; // type:object size:0x8 scope:local align:4 data:string +@2456 = .sdata2:0x80517C98; // type:object size:0x5 scope:local align:4 data:string +@2457 = .sdata2:0x80517CA0; // type:object size:0x6 scope:local align:4 data:string +@2458 = .sdata2:0x80517CA8; // type:object size:0x7 scope:local align:4 data:string +@2459 = .sdata2:0x80517CB0; // type:object size:0x8 scope:local align:4 data:string +@2460 = .sdata2:0x80517CB8; // type:object size:0x8 scope:local align:4 data:string +@2461 = .sdata2:0x80517CC0; // type:object size:0x5 scope:local align:4 data:string +@2462 = .sdata2:0x80517CC8; // type:object size:0x8 scope:local align:4 data:string +@2464 = .sdata2:0x80517CD0; // type:object size:0x6 scope:local align:4 data:string +@2465 = .sdata2:0x80517CD8; // type:object size:0x6 scope:local align:4 data:string +@2467 = .sdata2:0x80517CE0; // type:object size:0x5 scope:local align:4 data:string +@2468 = .sdata2:0x80517CE8; // type:object size:0x6 scope:local align:4 data:string +@2469 = .sdata2:0x80517CF0; // type:object size:0x8 scope:local align:4 data:string +@2470 = .sdata2:0x80517CF8; // type:object size:0x8 scope:local align:4 data:string +@2471 = .sdata2:0x80517D00; // type:object size:0x8 scope:local align:4 data:string +@2472 = .sdata2:0x80517D08; // type:object size:0x4 scope:local align:4 data:string +@2474 = .sdata2:0x80517D0C; // type:object size:0x7 scope:local align:4 data:string +@2476 = .sdata2:0x80517D14; // type:object size:0x6 scope:local align:4 data:string +@2477 = .sdata2:0x80517D1C; // type:object size:0x5 scope:local align:4 data:string +@2479 = .sdata2:0x80517D24; // type:object size:0x5 scope:local align:4 data:string +@2484 = .sdata2:0x80517D2C; // type:object size:0x5 scope:local align:4 data:string +@2485 = .sdata2:0x80517D34; // type:object size:0x4 scope:local align:4 data:string +@2489 = .sdata2:0x80517D38; // type:object size:0x8 scope:local align:4 data:string +@2490 = .sdata2:0x80517D40; // type:object size:0x8 scope:local align:4 data:string +@2491 = .sdata2:0x80517D48; // type:object size:0x7 scope:local align:4 data:string +@2492 = .sdata2:0x80517D50; // type:object size:0x7 scope:local align:4 data:string +@2494 = .sdata2:0x80517D58; // type:object size:0x8 scope:local align:4 data:string +@2496 = .sdata2:0x80517D60; // type:object size:0x8 scope:local align:4 data:string +@2500 = .sdata2:0x80517D68; // type:object size:0x8 scope:local align:4 data:string +@2503 = .sdata2:0x80517D70; // type:object size:0x8 scope:local align:4 data:string +@2506 = .sdata2:0x80517D78; // type:object size:0x7 scope:local align:4 data:string +@2508 = .sdata2:0x80517D80; // type:object size:0x7 scope:local align:4 data:string +@2510 = .sdata2:0x80517D88; // type:object size:0x8 scope:local align:4 data:string +@2511 = .sdata2:0x80517D90; // type:object size:0x7 scope:local align:4 data:string +@2513 = .sdata2:0x80517D98; // type:object size:0x8 scope:local align:4 data:string +@2517 = .sdata2:0x80517DA0; // type:object size:0x7 scope:local align:4 data:string +@2526 = .sdata2:0x80517DA8; // type:object size:0x8 scope:local align:4 data:string +@2529 = .sdata2:0x80517DB0; // type:object size:0x5 scope:local align:4 data:string +@3254 = .sdata2:0x80517DB8; // type:object size:0x1 scope:local align:4 +@3332 = .sdata2:0x80517DBC; // type:object size:0x5 scope:local align:4 +@3388 = .sdata2:0x80517DC4; // type:object size:0x8 scope:local align:4 data:string +@3389 = .sdata2:0x80517DCC; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata2:0x80517DD0; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x80517DD8; // type:object size:0x8 scope:local align:8 data:double +@3626 = .sdata2:0x80517DE0; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x80517DE8; // type:object size:0x4 scope:local align:4 data:float +@3584 = .sdata2:0x80517DEC; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80517DF0; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80517DF4; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x80517DF8; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x80517DFC; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x80517E00; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80517E08; // type:object size:0x8 scope:local align:8 data:double +@3828 = .sdata2:0x80517E10; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x80517E14; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x80517E18; // type:object size:0x5 scope:local align:4 data:string +@4386 = .sdata2:0x80517E20; // type:object size:0x7 scope:local align:4 +@4395 = .sdata2:0x80517E28; // type:object size:0x5 scope:local align:4 +@4400 = .sdata2:0x80517E30; // type:object size:0x7 scope:local align:4 +@4401 = .sdata2:0x80517E38; // type:object size:0x7 scope:local align:4 +@4417 = .sdata2:0x80517E40; // type:object size:0x7 scope:local align:4 +@4426 = .sdata2:0x80517E48; // type:object size:0x7 scope:local align:4 +@4431 = .sdata2:0x80517E50; // type:object size:0x7 scope:local align:4 +@4444 = .sdata2:0x80517E58; // type:object size:0x7 scope:local align:4 +@4465 = .sdata2:0x80517E60; // type:object size:0x7 scope:local align:4 +@4468 = .sdata2:0x80517E68; // type:object size:0x7 scope:local align:4 +@4560 = .sdata2:0x80517E70; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x80517E74; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x80517E78; // type:object size:0x4 scope:local align:4 data:float +@4563 = .sdata2:0x80517E7C; // type:object size:0x4 scope:local align:4 data:float +@4564 = .sdata2:0x80517E80; // type:object size:0x8 scope:local align:4 data:string +@4573 = .sdata2:0x80517E88; // type:object size:0x7 scope:local align:4 data:string +@2675 = .sdata2:0x80517E90; // type:object size:0x4 scope:local align:4 data:float +@2695 = .sdata2:0x80517E94; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x80517E98; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x80517E9C; // type:object size:0x4 scope:local align:4 data:float +@2699 = .sdata2:0x80517EA0; // type:object size:0x4 scope:local align:4 data:float +@2701 = .sdata2:0x80517EA4; // type:object size:0x4 scope:local align:4 data:float +@2702 = .sdata2:0x80517EA8; // type:object size:0x4 scope:local align:4 data:float +@2704 = .sdata2:0x80517EAC; // type:object size:0x4 scope:local align:4 data:float +@2707 = .sdata2:0x80517EB0; // type:object size:0x4 scope:local align:4 data:float +@2709 = .sdata2:0x80517EB4; // type:object size:0x4 scope:local align:4 data:float +@2711 = .sdata2:0x80517EB8; // type:object size:0x4 scope:local align:4 data:float +@2713 = .sdata2:0x80517EBC; // type:object size:0x4 scope:local align:4 data:float +@2716 = .sdata2:0x80517EC0; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x80517EC4; // type:object size:0x4 scope:local align:4 data:float +@3378 = .sdata2:0x80517EC8; // type:object size:0x5 scope:local align:4 data:string +@3308 = .sdata2:0x80517ED0; // type:object size:0x8 scope:local align:8 data:double +defaultAnimSpeed__Q24Game17EnemyAnimatorBase = .sdata2:0x80517ED8; // type:object size:0x4 scope:global align:4 data:float +@3201 = .sdata2:0x80517EDC; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata2:0x80517EE0; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata2:0x80517EE4; // type:object size:0x4 scope:local align:4 data:float +@3223 = .sdata2:0x80517EE8; // type:object size:0x4 scope:local align:4 data:float +@3224 = .sdata2:0x80517EEC; // type:object size:0x4 scope:local align:4 data:float +@3225 = .sdata2:0x80517EF0; // type:object size:0x4 scope:local align:4 data:float +@2612 = .sdata2:0x80517EF8; // type:object size:0x4 scope:local align:4 data:float +@2613 = .sdata2:0x80517EFC; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x80517F00; // type:object size:0x4 scope:local align:4 data:float +@3590 = .sdata2:0x80517F04; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x80517F08; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x80517F0C; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x80517F10; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x80517F14; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x80517F18; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x80517F1C; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x80517F20; // type:object size:0x4 scope:local align:4 data:float +@3728 = .sdata2:0x80517F24; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80517F28; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x80517F2C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x80517F30; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80517F34; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x80517F38; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x80517F3C; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x80517F40; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x80517F44; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x80517F48; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x80517F4C; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x80517F50; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x80517F54; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x80517F58; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x80517F5C; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x80517F60; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x80517F64; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x80517F68; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x80517F6C; // type:object size:0x1 scope:local align:4 +@4122 = .sdata2:0x80517F70; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x80517F78; // type:object size:0x4 scope:local align:4 data:float +@3685 = .sdata2:0x80517F7C; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x80517F80; // type:object size:0x8 scope:local align:8 data:double +@3594 = .sdata2:0x80517F88; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x80517F90; // type:object size:0x8 scope:local align:4 data:string +@3926 = .sdata2:0x80517F98; // type:object size:0x4 scope:local align:4 data:string +@3927 = .sdata2:0x80517F9C; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x80517FA0; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x80517FA4; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x80517FA8; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x80517FAC; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x80517FB0; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x80517FB4; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x80517FB8; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x80517FBC; // type:object size:0x4 scope:local align:4 data:float +@4063 = .sdata2:0x80517FC0; // type:object size:0x6 scope:local align:4 data:string +@4064 = .sdata2:0x80517FC8; // type:object size:0x6 scope:local align:4 data:string +@4065 = .sdata2:0x80517FD0; // type:object size:0x6 scope:local align:4 data:string +@4066 = .sdata2:0x80517FD8; // type:object size:0x6 scope:local align:4 data:string +@4067 = .sdata2:0x80517FE0; // type:object size:0x6 scope:local align:4 data:string +@4068 = .sdata2:0x80517FE8; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x80517FEC; // type:object size:0x5 scope:local align:4 data:string +@4074 = .sdata2:0x80517FF4; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x80517FF8; // type:object size:0x5 scope:local align:4 data:string +@4194 = .sdata2:0x80518000; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x80518004; // type:object size:0x5 scope:local align:4 data:string +@3884 = .sdata2:0x80518010; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x80518014; // type:object size:0x5 scope:local align:4 data:string +@3618 = .sdata2:0x80518020; // type:object size:0x4 scope:local align:4 data:string +@3619 = .sdata2:0x80518024; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x80518028; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051802C; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x80518030; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x80518034; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x80518038; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x80518040; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x80518044; // type:object size:0x5 scope:local align:4 data:string +@3745 = .sdata2:0x8051804C; // type:object size:0x5 scope:local align:4 data:string +@3746 = .sdata2:0x80518054; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata2:0x80518058; // type:object size:0x4 scope:local align:4 data:float +@2419 = .sdata2:0x80518060; // type:object size:0x4 scope:local align:4 data:float +@3494 = .sdata2:0x80518068; // type:object size:0x5 scope:local align:4 +@3336 = .sdata2:0x80518070; // type:object size:0x4 scope:local align:4 data:float +@3407 = .sdata2:0x80518074; // type:object size:0x6 scope:local align:4 data:string +@3408 = .sdata2:0x8051807C; // type:object size:0x6 scope:local align:4 data:string +@3831 = .sdata2:0x80518084; // type:object size:0x1 scope:local align:4 +@3376 = .sdata2:0x80518088; // type:object size:0x8 scope:local align:4 data:string +@3583 = .sdata2:0x80518090; // type:object size:0x7 scope:local align:4 +@3672 = .sdata2:0x80518098; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x8051809C; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x805180A0; // type:object size:0x8 scope:local align:8 data:double +@3744 = .sdata2:0x805180A8; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x805180AC; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata2:0x805180B0; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x805180B4; // type:object size:0x1 scope:local align:4 +@3805 = .sdata2:0x805180B8; // type:object size:0x7 scope:local align:4 +@3806 = .sdata2:0x805180C0; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x805180C4; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x805180C8; // type:object size:0x7 scope:local align:4 +@3827 = .sdata2:0x805180D0; // type:object size:0x5 scope:local align:4 +@3828 = .sdata2:0x805180D8; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x805180DC; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x805180E0; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x805180E4; // type:object size:0x4 scope:local align:4 data:float +@3836 = .sdata2:0x805180E8; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x805180EC; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x805180F0; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x805180F4; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x805180F8; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x805180FC; // type:object size:0x7 scope:local align:4 +@3905 = .sdata2:0x80518104; // type:object size:0x5 scope:local align:4 +@3041 = .sdata2:0x80518110; // type:object size:0x4 scope:local align:4 data:float +@3042 = .sdata2:0x80518114; // type:object size:0x4 scope:local align:4 data:float +@3044 = .sdata2:0x80518118; // type:object size:0x4 scope:local align:4 data:float +@3045 = .sdata2:0x8051811C; // type:object size:0x4 scope:local align:4 data:float +@3047 = .sdata2:0x80518120; // type:object size:0x4 scope:local align:4 data:float +@3099 = .sdata2:0x80518124; // type:object size:0x4 scope:local align:4 data:float +@3100 = .sdata2:0x80518128; // type:object size:0x4 scope:local align:4 data:float +@3101 = .sdata2:0x8051812C; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x80518130; // type:object size:0x4 scope:local align:4 data:float +@3103 = .sdata2:0x80518134; // type:object size:0x4 scope:local align:4 data:float +@3048 = .sdata2:0x80518138; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata2:0x8051813C; // type:object size:0x4 scope:local align:4 data:float +@3221 = .sdata2:0x80518140; // type:object size:0x4 scope:local align:4 data:float +@3409 = .sdata2:0x80518148; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8051814C; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x80518150; // type:object size:0x4 scope:local align:4 data:float +@4766 = .sdata2:0x80518154; // type:object size:0x4 scope:local align:4 data:float +@4782 = .sdata2:0x80518158; // type:object size:0x8 scope:local align:8 data:double +@5157 = .sdata2:0x80518160; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata2:0x80518164; // type:object size:0x4 scope:local align:4 data:float +@6042 = .sdata2:0x80518168; // type:object size:0x4 scope:local align:4 data:float +@6043 = .sdata2:0x8051816C; // type:object size:0x4 scope:local align:4 data:float +@6188 = .sdata2:0x80518170; // type:object size:0x3 scope:local align:4 data:string +@2687 = .sdata2:0x80518178; // type:object size:0x4 scope:local align:4 data:float +@2688 = .sdata2:0x8051817C; // type:object size:0x4 scope:local align:4 data:float +@2689 = .sdata2:0x80518180; // type:object size:0x4 scope:local align:4 data:float +@2690 = .sdata2:0x80518184; // type:object size:0x7 scope:local align:4 data:string +@2691 = .sdata2:0x8051818C; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x80518190; // type:object size:0x4 scope:local align:4 data:float +@2696 = .sdata2:0x80518194; // type:object size:0x4 scope:local align:4 data:float +@2697 = .sdata2:0x80518198; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x8051819C; // type:object size:0x5 scope:local align:4 +@2702 = .sdata2:0x805181A4; // type:object size:0x4 scope:local align:4 data:float +@2703 = .sdata2:0x805181A8; // type:object size:0x4 scope:local align:4 data:float +@2706 = .sdata2:0x805181AC; // type:object size:0x4 scope:local align:4 data:float +@3364 = .sdata2:0x805181B0; // type:object size:0x4 scope:local align:4 data:float +@3365 = .sdata2:0x805181B4; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x805181B8; // type:object size:0x4 scope:local align:4 data:float +@3511 = .sdata2:0x805181C0; // type:object size:0x4 scope:local align:4 data:float +@3512 = .sdata2:0x805181C4; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x805181C8; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x805181CC; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x805181D0; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x805181D4; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x805181D8; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x805181DC; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata2:0x805181E0; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata2:0x805181E4; // type:object size:0x4 scope:local align:4 data:float +@4400 = .sdata2:0x805181E8; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x805181F0; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x805181F4; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x805181F8; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x805181FC; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x80518200; // type:object size:0x4 scope:local align:4 data:float +@4299 = .sdata2:0x80518204; // type:object size:0x4 scope:local align:4 data:float +@4343 = .sdata2:0x80518208; // type:object size:0x4 scope:local align:4 data:float +@4344 = .sdata2:0x8051820C; // type:object size:0x4 scope:local align:4 data:float +@4551 = .sdata2:0x80518210; // type:object size:0x4 scope:local align:4 data:float +@4552 = .sdata2:0x80518214; // type:object size:0x4 scope:local align:4 data:float +@4553 = .sdata2:0x80518218; // type:object size:0x4 scope:local align:4 data:float +@4554 = .sdata2:0x8051821C; // type:object size:0x4 scope:local align:4 data:float +@4555 = .sdata2:0x80518220; // type:object size:0x4 scope:local align:4 data:float +@4556 = .sdata2:0x80518224; // type:object size:0x4 scope:local align:4 data:float +@4557 = .sdata2:0x80518228; // type:object size:0x4 scope:local align:4 data:float +@4558 = .sdata2:0x8051822C; // type:object size:0x4 scope:local align:4 data:float +@4559 = .sdata2:0x80518230; // type:object size:0x4 scope:local align:4 data:float +@4560 = .sdata2:0x80518234; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x80518238; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x8051823C; // type:object size:0x4 scope:local align:4 data:float +@4563 = .sdata2:0x80518240; // type:object size:0x4 scope:local align:4 data:float +@4933 = .sdata2:0x80518244; // type:object size:0x4 scope:local align:4 data:float +@4934 = .sdata2:0x80518248; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata2:0x8051824C; // type:object size:0x4 scope:local align:4 data:float +@4953 = .sdata2:0x80518250; // type:object size:0x4 scope:local align:4 data:float +@5233 = .sdata2:0x80518254; // type:object size:0x4 scope:local align:4 data:float +@5234 = .sdata2:0x80518258; // type:object size:0x4 scope:local align:4 data:float +@5235 = .sdata2:0x8051825C; // type:object size:0x4 scope:local align:4 data:float +@5236 = .sdata2:0x80518260; // type:object size:0x4 scope:local align:4 data:float +@5237 = .sdata2:0x80518264; // type:object size:0x4 scope:local align:4 data:float +@5239 = .sdata2:0x80518268; // type:object size:0x8 scope:local align:8 data:double +@5412 = .sdata2:0x80518270; // type:object size:0x5 scope:local align:4 data:string +@5413 = .sdata2:0x80518278; // type:object size:0x4 scope:local align:4 data:float +@5414 = .sdata2:0x8051827C; // type:object size:0x4 scope:local align:4 data:float +@5608 = .sdata2:0x80518280; // type:object size:0x4 scope:local align:4 data:float +@5747 = .sdata2:0x80518284; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x80518288; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051828C; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x80518290; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x80518294; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x80518298; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051829C; // type:object size:0x4 scope:local align:4 data:float +@4415 = .sdata2:0x805182A0; // type:object size:0x8 scope:local align:4 data:string +@4416 = .sdata2:0x805182A8; // type:object size:0x4 scope:local align:4 data:float +@4417 = .sdata2:0x805182AC; // type:object size:0x4 scope:local align:4 data:float +@4765 = .sdata2:0x805182B0; // type:object size:0x4 scope:local align:4 data:float +@4801 = .sdata2:0x805182B4; // type:object size:0x4 scope:local align:4 data:float +@4802 = .sdata2:0x805182B8; // type:object size:0x4 scope:local align:4 data:float +@4930 = .sdata2:0x805182BC; // type:object size:0x4 scope:local align:4 data:float +@5027 = .sdata2:0x805182C0; // type:object size:0x4 scope:local align:4 data:float +@5171 = .sdata2:0x805182C4; // type:object size:0x4 scope:local align:4 data:float +@5172 = .sdata2:0x805182C8; // type:object size:0x4 scope:local align:4 data:float +@5173 = .sdata2:0x805182CC; // type:object size:0x4 scope:local align:4 data:float +@5386 = .sdata2:0x805182D0; // type:object size:0x4 scope:local align:4 data:float +@5387 = .sdata2:0x805182D4; // type:object size:0x4 scope:local align:4 data:float +@5388 = .sdata2:0x805182D8; // type:object size:0x4 scope:local align:4 data:float +@5389 = .sdata2:0x805182DC; // type:object size:0x4 scope:local align:4 data:float +@5955 = .sdata2:0x805182E0; // type:object size:0x4 scope:local align:4 data:float +@6086 = .sdata2:0x805182E4; // type:object size:0x4 scope:local align:4 data:float +@6087 = .sdata2:0x805182E8; // type:object size:0x4 scope:local align:4 data:float +@6088 = .sdata2:0x805182EC; // type:object size:0x4 scope:local align:4 data:float +@6192 = .sdata2:0x805182F0; // type:object size:0x4 scope:local align:4 data:float +@6262 = .sdata2:0x805182F4; // type:object size:0x4 scope:local align:4 data:float +@6478 = .sdata2:0x805182F8; // type:object size:0x4 scope:local align:4 data:float +@6751 = .sdata2:0x805182FC; // type:object size:0x4 scope:local align:4 data:float +@6795 = .sdata2:0x80518300; // type:object size:0x4 scope:local align:4 data:float +@6796 = .sdata2:0x80518304; // type:object size:0x4 scope:local align:4 data:float +@6797 = .sdata2:0x80518308; // type:object size:0x4 scope:local align:4 data:float +@6800 = .sdata2:0x80518310; // type:object size:0x8 scope:local align:8 data:double +@7217 = .sdata2:0x80518318; // type:object size:0x4 scope:local align:4 data:float +@7871 = .sdata2:0x8051831C; // type:object size:0x4 scope:local align:4 data:float +@8157 = .sdata2:0x80518320; // type:object size:0x4 scope:local align:4 data:float +@8158 = .sdata2:0x80518324; // type:object size:0x4 scope:local align:4 data:float +@8159 = .sdata2:0x80518328; // type:object size:0x4 scope:local align:4 data:float +@8160 = .sdata2:0x8051832C; // type:object size:0x4 scope:local align:4 data:float +@8161 = .sdata2:0x80518330; // type:object size:0x4 scope:local align:4 data:float +@8162 = .sdata2:0x80518334; // type:object size:0x4 scope:local align:4 data:float +@8163 = .sdata2:0x80518338; // type:object size:0x4 scope:local align:4 data:float +@8164 = .sdata2:0x8051833C; // type:object size:0x4 scope:local align:4 data:float +@8372 = .sdata2:0x80518340; // type:object size:0x4 scope:local align:4 data:float +@8373 = .sdata2:0x80518344; // type:object size:0x4 scope:local align:4 data:float +@8464 = .sdata2:0x80518348; // type:object size:0x6 scope:local align:4 data:string +@3998 = .sdata2:0x80518350; // type:object size:0x4 scope:local align:4 data:float +@4000 = .sdata2:0x80518354; // type:object size:0x7 scope:local align:4 data:string +@4212 = .sdata2:0x8051835C; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x80518360; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x80518364; // type:object size:0x4 scope:local align:4 data:float +@4482 = .sdata2:0x80518368; // type:object size:0x5 scope:local align:4 data:string +@4483 = .sdata2:0x80518370; // type:object size:0x5 scope:local align:4 data:string +@4484 = .sdata2:0x80518378; // type:object size:0x4 scope:local align:4 data:float +@4714 = .sdata2:0x8051837C; // type:object size:0x4 scope:local align:4 data:float +@4806 = .sdata2:0x80518380; // type:object size:0x4 scope:local align:4 data:float +@5420 = .sdata2:0x80518384; // type:object size:0x4 scope:local align:4 data:float +@5421 = .sdata2:0x80518388; // type:object size:0x4 scope:local align:4 data:float +@5758 = .sdata2:0x8051838C; // type:object size:0x4 scope:local align:4 data:float +@5759 = .sdata2:0x80518390; // type:object size:0x4 scope:local align:4 data:float +@5760 = .sdata2:0x80518394; // type:object size:0x4 scope:local align:4 data:float +@5816 = .sdata2:0x80518398; // type:object size:0x4 scope:local align:4 data:float +@5881 = .sdata2:0x8051839C; // type:object size:0x4 scope:local align:4 data:float +@5882 = .sdata2:0x805183A0; // type:object size:0x4 scope:local align:4 data:float +@5884 = .sdata2:0x805183A8; // type:object size:0x8 scope:local align:8 data:double +@5929 = .sdata2:0x805183B0; // type:object size:0x4 scope:local align:4 data:float +@5930 = .sdata2:0x805183B4; // type:object size:0x4 scope:local align:4 data:float +@5977 = .sdata2:0x805183B8; // type:object size:0x4 scope:local align:4 data:float +@5978 = .sdata2:0x805183BC; // type:object size:0x8 scope:local align:4 data:string +@6121 = .sdata2:0x805183C4; // type:object size:0x4 scope:local align:4 data:float +@6122 = .sdata2:0x805183C8; // type:object size:0x4 scope:local align:4 data:float +@6144 = .sdata2:0x805183CC; // type:object size:0x7 scope:local align:4 data:string +@4585 = .sdata2:0x805183D8; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x805183DC; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x805183E0; // type:object size:0x4 scope:local align:4 data:float +@4588 = .sdata2:0x805183E4; // type:object size:0x4 scope:local align:4 data:float +@4795 = .sdata2:0x805183E8; // type:object size:0x7 scope:local align:4 data:string +@4796 = .sdata2:0x805183F0; // type:object size:0x4 scope:local align:4 data:string +@4797 = .sdata2:0x805183F4; // type:object size:0x6 scope:local align:4 data:string +@4798 = .sdata2:0x805183FC; // type:object size:0x6 scope:local align:4 data:string +@4799 = .sdata2:0x80518404; // type:object size:0x6 scope:local align:4 data:string +@4800 = .sdata2:0x8051840C; // type:object size:0x5 scope:local align:4 data:string +@4833 = .sdata2:0x80518414; // type:object size:0x3 scope:local align:4 data:string +@4952 = .sdata2:0x80518418; // type:object size:0x4 scope:local align:4 data:string +@4953 = .sdata2:0x8051841C; // type:object size:0x7 scope:local align:4 data:string +@4954 = .sdata2:0x80518424; // type:object size:0x7 scope:local align:4 data:string +@4956 = .sdata2:0x8051842C; // type:object size:0x4 scope:local align:4 data:string +@4957 = .sdata2:0x80518430; // type:object size:0x5 scope:local align:4 data:string +@4958 = .sdata2:0x80518438; // type:object size:0x5 scope:local align:4 data:string +@4959 = .sdata2:0x80518440; // type:object size:0x6 scope:local align:4 data:string +@4962 = .sdata2:0x80518448; // type:object size:0x5 scope:local align:4 data:string +@4963 = .sdata2:0x80518450; // type:object size:0x4 scope:local align:4 data:string +@4964 = .sdata2:0x80518454; // type:object size:0x6 scope:local align:4 data:string +@5024 = .sdata2:0x8051845C; // type:object size:0x4 scope:local align:4 data:float +@5026 = .sdata2:0x80518460; // type:object size:0x8 scope:local align:8 data:double +@5546 = .sdata2:0x80518468; // type:object size:0x4 scope:local align:4 data:float +@5547 = .sdata2:0x8051846C; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata2:0x80518470; // type:object size:0x4 scope:local align:4 data:float +@5549 = .sdata2:0x80518474; // type:object size:0x4 scope:local align:4 data:float +@5550 = .sdata2:0x80518478; // type:object size:0x4 scope:local align:4 data:float +@5551 = .sdata2:0x8051847C; // type:object size:0x4 scope:local align:4 data:float +@5552 = .sdata2:0x80518480; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata2:0x80518484; // type:object size:0x4 scope:local align:4 data:float +@5554 = .sdata2:0x80518488; // type:object size:0x4 scope:local align:4 data:float +@5719 = .sdata2:0x8051848C; // type:object size:0x4 scope:local align:4 data:float +@5893 = .sdata2:0x80518490; // type:object size:0x4 scope:local align:4 data:float +@5894 = .sdata2:0x80518494; // type:object size:0x4 scope:local align:4 data:float +@6105 = .sdata2:0x80518498; // type:object size:0x4 scope:local align:4 data:float +@6106 = .sdata2:0x8051849C; // type:object size:0x4 scope:local align:4 data:float +@6107 = .sdata2:0x805184A0; // type:object size:0x4 scope:local align:4 data:float +@6108 = .sdata2:0x805184A4; // type:object size:0x4 scope:local align:4 data:float +@6110 = .sdata2:0x805184A8; // type:object size:0x8 scope:local align:8 data:double +@6385 = .sdata2:0x805184B0; // type:object size:0x7 scope:local align:4 data:string +@6624 = .sdata2:0x805184B8; // type:object size:0x4 scope:local align:4 data:float +@6809 = .sdata2:0x805184BC; // type:object size:0x4 scope:local align:4 data:float +@7282 = .sdata2:0x805184C0; // type:object size:0x8 scope:local align:4 data:string +@7285 = .sdata2:0x805184C8; // type:object size:0x7 scope:local align:4 data:string +@7287 = .sdata2:0x805184D0; // type:object size:0x7 scope:local align:4 data:string +@7288 = .sdata2:0x805184D8; // type:object size:0x8 scope:local align:4 data:string +@7289 = .sdata2:0x805184E0; // type:object size:0x4 scope:local align:4 data:float +@7290 = .sdata2:0x805184E4; // type:object size:0x4 scope:local align:4 data:float +@7292 = .sdata2:0x805184E8; // type:object size:0x4 scope:local align:4 data:float +@7294 = .sdata2:0x805184EC; // type:object size:0x4 scope:local align:4 data:float +@7295 = .sdata2:0x805184F0; // type:object size:0x4 scope:local align:4 data:float +@7296 = .sdata2:0x805184F4; // type:object size:0x4 scope:local align:4 data:float +@7297 = .sdata2:0x805184F8; // type:object size:0x4 scope:local align:4 data:float +@7540 = .sdata2:0x805184FC; // type:object size:0x3 scope:local align:4 data:string +@4648 = .sdata2:0x80518500; // type:object size:0x4 scope:local align:4 data:string +@4687 = .sdata2:0x80518504; // type:object size:0x4 scope:local align:4 data:float +@4699 = .sdata2:0x80518508; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata2:0x8051850C; // type:object size:0x8 scope:local align:4 data:string +@5605 = .sdata2:0x80518514; // type:object size:0x8 scope:local align:4 data:string +@5608 = .sdata2:0x8051851C; // type:object size:0x8 scope:local align:4 data:string +@5752 = .sdata2:0x80518524; // type:object size:0x4 scope:local align:4 data:float +@5753 = .sdata2:0x80518528; // type:object size:0x4 scope:local align:4 data:float +@5754 = .sdata2:0x8051852C; // type:object size:0x4 scope:local align:4 data:float +@5755 = .sdata2:0x80518530; // type:object size:0x4 scope:local align:4 data:float +@5756 = .sdata2:0x80518534; // type:object size:0x4 scope:local align:4 data:float +@5757 = .sdata2:0x80518538; // type:object size:0x4 scope:local align:4 data:float +@5758 = .sdata2:0x8051853C; // type:object size:0x4 scope:local align:4 data:float +@5759 = .sdata2:0x80518540; // type:object size:0x4 scope:local align:4 data:float +@5760 = .sdata2:0x80518544; // type:object size:0x4 scope:local align:4 data:float +@5761 = .sdata2:0x80518548; // type:object size:0x4 scope:local align:4 data:float +@5762 = .sdata2:0x8051854C; // type:object size:0x4 scope:local align:4 data:float +@5764 = .sdata2:0x80518550; // type:object size:0x8 scope:local align:8 data:double +@6002 = .sdata2:0x80518558; // type:object size:0x4 scope:local align:4 data:float +@6003 = .sdata2:0x8051855C; // type:object size:0x4 scope:local align:4 data:float +@6157 = .sdata2:0x80518560; // type:object size:0x4 scope:local align:4 data:float +@6158 = .sdata2:0x80518564; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x80518568; // type:object size:0x4 scope:local align:4 data:float +@3792 = .sdata2:0x8051856C; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x80518570; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x80518578; // type:object size:0x8 scope:local align:8 data:double +@4545 = .sdata2:0x80518580; // type:object size:0x5 scope:local align:4 data:string +@4595 = .sdata2:0x80518588; // type:object size:0x4 scope:local align:4 data:float +@4596 = .sdata2:0x80518590; // type:object size:0x8 scope:local align:8 data:double +@4597 = .sdata2:0x80518598; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x8051859C; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x805185A0; // type:object size:0x8 scope:local align:8 data:double +@3449 = .sdata2:0x805185A8; // type:object size:0x8 scope:local align:4 data:string +@3482 = .sdata2:0x805185B0; // type:object size:0x4 scope:local align:4 data:float +@3483 = .sdata2:0x805185B4; // type:object size:0x4 scope:local align:4 data:float +@3484 = .sdata2:0x805185B8; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x805185BC; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x805185C0; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x805185C4; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x805185C8; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x805185CC; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x805185D0; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x805185D4; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x805185D8; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x805185DC; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x805185E0; // type:object size:0x4 scope:local align:4 data:float +@3573 = .sdata2:0x805185E4; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x805185E8; // type:object size:0x4 scope:local align:4 data:float +@3575 = .sdata2:0x805185EC; // type:object size:0x8 scope:local align:4 data:string +@3576 = .sdata2:0x805185F4; // type:object size:0x4 scope:local align:4 data:float +@3578 = .sdata2:0x805185F8; // type:object size:0x8 scope:local align:4 data:string +@3579 = .sdata2:0x80518600; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x80518604; // type:object size:0x8 scope:local align:4 data:string +@3582 = .sdata2:0x8051860C; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x80518610; // type:object size:0x4 scope:local align:4 data:float +@3585 = .sdata2:0x80518614; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x80518618; // type:object size:0x4 scope:local align:4 data:float +@3590 = .sdata2:0x8051861C; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x80518620; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x80518624; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x80518628; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x8051862C; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x80518630; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x80518634; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x80518638; // type:object size:0x4 scope:local align:4 data:float +@3610 = .sdata2:0x8051863C; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata2:0x80518640; // type:object size:0x4 scope:local align:4 data:float +@3614 = .sdata2:0x80518644; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x80518648; // type:object size:0x4 scope:local align:4 data:float +@3622 = .sdata2:0x8051864C; // type:object size:0x4 scope:local align:4 data:float +@3623 = .sdata2:0x80518650; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x80518654; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x80518658; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051865C; // type:object size:0x7 scope:local align:4 +@3634 = .sdata2:0x80518664; // type:object size:0x7 scope:local align:4 +@3646 = .sdata2:0x8051866C; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x80518670; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x80518674; // type:object size:0x6 scope:local align:4 data:string +@3668 = .sdata2:0x8051867C; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x80518680; // type:object size:0x4 scope:local align:4 data:float +@3690 = .sdata2:0x80518684; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x80518688; // type:object size:0x7 scope:local align:4 data:string +@4229 = .sdata2:0x80518690; // type:object size:0x8 scope:local align:4 data:string +@3830 = .sdata2:0x80518698; // type:object size:0x8 scope:local align:4 data:string +@3902 = .sdata2:0x805186A0; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x805186A4; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x805186A8; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x805186AC; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x805186B0; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x805186B4; // type:object size:0x4 scope:local align:4 data:float +@4015 = .sdata2:0x805186B8; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x805186BC; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x805186C0; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x805186C4; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x805186C8; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x805186CC; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x805186D0; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x805186D4; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x805186D8; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x805186DC; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x805186E0; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x805186E4; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x805186E8; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x805186EC; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x805186F0; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x805186F4; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x805186F8; // type:object size:0x7 scope:local align:4 +@4051 = .sdata2:0x80518700; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x80518704; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x80518708; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x8051870C; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x80518710; // type:object size:0x4 scope:local align:4 data:float +@4062 = .sdata2:0x80518714; // type:object size:0x4 scope:local align:4 data:float +@4068 = .sdata2:0x80518718; // type:object size:0x4 scope:local align:4 data:float +@4071 = .sdata2:0x8051871C; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x80518720; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x80518724; // type:object size:0x4 scope:local align:4 data:float +@4076 = .sdata2:0x80518728; // type:object size:0x4 scope:local align:4 data:float +@4081 = .sdata2:0x8051872C; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x80518730; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x80518734; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x80518738; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051873C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x80518740; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x80518744; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x80518748; // type:object size:0x4 scope:local align:4 data:float +@4120 = .sdata2:0x8051874C; // type:object size:0x4 scope:local align:4 data:float +@4122 = .sdata2:0x80518750; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x80518754; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x80518758; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051875C; // type:object size:0x4 scope:local align:4 data:float +@4145 = .sdata2:0x80518760; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x80518764; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x80518768; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051876C; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x80518770; // type:object size:0x4 scope:local align:4 data:float +@4652 = .sdata2:0x80518774; // type:object size:0x8 scope:local align:4 data:string +@4896 = .sdata2:0x8051877C; // type:object size:0x4 scope:local align:4 data:float +@4897 = .sdata2:0x80518780; // type:object size:0x4 scope:local align:4 data:float +@4899 = .sdata2:0x80518788; // type:object size:0x8 scope:local align:8 data:double +@5153 = .sdata2:0x80518790; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x80518794; // type:object size:0x4 scope:local align:4 data:float +@5466 = .sdata2:0x80518798; // type:object size:0x8 scope:local align:4 data:string +@3560 = .sdata2:0x805187A0; // type:object size:0x7 scope:local align:4 data:string +@3728 = .sdata2:0x805187A8; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x805187AC; // type:object size:0x4 scope:local align:4 data:float +@3737 = .sdata2:0x805187B0; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x805187B4; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x805187B8; // type:object size:0x4 scope:local align:4 data:float +@3898 = .sdata2:0x805187BC; // type:object size:0x4 scope:local align:4 data:float +@3899 = .sdata2:0x805187C0; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x805187C4; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x805187C8; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x805187CC; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x805187D0; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x805187D8; // type:object size:0x8 scope:local align:8 data:double +@4047 = .sdata2:0x805187E0; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x805187E4; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x805187E8; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x805187EC; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata2:0x805187F0; // type:object size:0x8 scope:local align:4 data:string +@4423 = .sdata2:0x805187F8; // type:object size:0x4 scope:local align:4 data:float +@4471 = .sdata2:0x805187FC; // type:object size:0x8 scope:local align:4 data:string +@4582 = .sdata2:0x80518804; // type:object size:0x4 scope:local align:4 data:float +@4583 = .sdata2:0x80518808; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x8051880C; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x80518810; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x80518818; // type:object size:0x7 scope:local align:4 data:string +@3470 = .sdata2:0x80518820; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x80518824; // type:object size:0x4 scope:local align:4 data:float +@3472 = .sdata2:0x80518828; // type:object size:0x4 scope:local align:4 data:float +@3473 = .sdata2:0x8051882C; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x80518830; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x80518834; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x80518838; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051883C; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x80518840; // type:object size:0x4 scope:local align:4 data:float +@3663 = .sdata2:0x80518844; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x80518848; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051884C; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x80518850; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x80518854; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x80518858; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051885C; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x80518860; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x80518864; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x80518868; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x80518870; // type:object size:0x8 scope:local align:8 data:double +@4336 = .sdata2:0x80518878; // type:object size:0x4 scope:local align:4 data:float +@4337 = .sdata2:0x8051887C; // type:object size:0x4 scope:local align:4 data:float +@4620 = .sdata2:0x80518880; // type:object size:0x4 scope:local align:4 data:float +@4621 = .sdata2:0x80518884; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x80518888; // type:object size:0x8 scope:local align:4 data:string +@4637 = .sdata2:0x80518890; // type:object size:0x8 scope:local align:4 data:string +@4735 = .sdata2:0x80518898; // type:object size:0x4 scope:local align:4 data:float +@4938 = .sdata2:0x8051889C; // type:object size:0x4 scope:local align:4 data:float +@4939 = .sdata2:0x805188A0; // type:object size:0x6 scope:local align:4 data:string +@4940 = .sdata2:0x805188A8; // type:object size:0x6 scope:local align:4 data:string +@4941 = .sdata2:0x805188B0; // type:object size:0x4 scope:local align:4 data:float +@4942 = .sdata2:0x805188B4; // type:object size:0x6 scope:local align:4 data:string +@4943 = .sdata2:0x805188BC; // type:object size:0x4 scope:local align:4 data:string +@5114 = .sdata2:0x805188C0; // type:object size:0x7 scope:local align:4 data:string +@5115 = .sdata2:0x805188C8; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x805188CC; // type:object size:0x4 scope:local align:4 data:float +@5117 = .sdata2:0x805188D0; // type:object size:0x4 scope:local align:4 data:float +@5255 = .sdata2:0x805188D4; // type:object size:0x4 scope:local align:4 data:float +@5447 = .sdata2:0x805188D8; // type:object size:0x4 scope:local align:4 data:float +@5448 = .sdata2:0x805188DC; // type:object size:0x4 scope:local align:4 data:float +@5607 = .sdata2:0x805188E0; // type:object size:0x4 scope:local align:4 data:float +@5608 = .sdata2:0x805188E4; // type:object size:0x4 scope:local align:4 data:float +@5609 = .sdata2:0x805188E8; // type:object size:0x4 scope:local align:4 data:float +@5610 = .sdata2:0x805188EC; // type:object size:0x4 scope:local align:4 data:float +@6416 = .sdata2:0x805188F0; // type:object size:0x4 scope:local align:4 data:float +@6417 = .sdata2:0x805188F4; // type:object size:0x4 scope:local align:4 data:float +@6771 = .sdata2:0x805188F8; // type:object size:0x8 scope:local align:4 data:string +@6927 = .sdata2:0x80518900; // type:object size:0x4 scope:local align:4 data:float +@7257 = .sdata2:0x80518904; // type:object size:0x4 scope:local align:4 data:float +@7765 = .sdata2:0x80518908; // type:object size:0x4 scope:local align:4 data:string +@7766 = .sdata2:0x8051890C; // type:object size:0x3 scope:local align:4 data:string +@7767 = .sdata2:0x80518910; // type:object size:0x4 scope:local align:4 data:string +@7769 = .sdata2:0x80518914; // type:object size:0x5 scope:local align:4 data:string +@7770 = .sdata2:0x8051891C; // type:object size:0x5 scope:local align:4 data:string +@7771 = .sdata2:0x80518924; // type:object size:0x3 scope:local align:4 data:string +@7883 = .sdata2:0x80518928; // type:object size:0x6 scope:local align:4 data:string +@8061 = .sdata2:0x80518930; // type:object size:0x8 scope:local align:4 data:string +@8492 = .sdata2:0x80518938; // type:object size:0x4 scope:local align:4 data:string +@9414 = .sdata2:0x8051893C; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x80518940; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x80518944; // type:object size:0x3 scope:local align:4 data:string +@3539 = .sdata2:0x80518948; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x8051894C; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x80518950; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x80518954; // type:object size:0x4 scope:local align:4 data:float +@3704 = .sdata2:0x80518958; // type:object size:0x4 scope:local align:4 data:float +@3794 = .sdata2:0x8051895C; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x80518960; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x80518964; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x80518968; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x8051896C; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x80518970; // type:object size:0x4 scope:local align:4 data:float +@4851 = .sdata2:0x80518974; // type:object size:0x7 scope:local align:4 data:string +@4853 = .sdata2:0x8051897C; // type:object size:0x4 scope:local align:4 data:string +@4855 = .sdata2:0x80518980; // type:object size:0x4 scope:local align:4 data:string +@4856 = .sdata2:0x80518984; // type:object size:0x8 scope:local align:4 data:string +@4955 = .sdata2:0x8051898C; // type:object size:0x4 scope:local align:4 data:float +@4956 = .sdata2:0x80518990; // type:object size:0x4 scope:local align:4 data:float +@4957 = .sdata2:0x80518994; // type:object size:0x4 scope:local align:4 data:float +@4958 = .sdata2:0x80518998; // type:object size:0x4 scope:local align:4 data:float +@5421 = .sdata2:0x8051899C; // type:object size:0x4 scope:local align:4 data:float +@5422 = .sdata2:0x805189A0; // type:object size:0x4 scope:local align:4 data:float +@5423 = .sdata2:0x805189A4; // type:object size:0x4 scope:local align:4 data:float +@5424 = .sdata2:0x805189A8; // type:object size:0x4 scope:local align:4 data:float +@5425 = .sdata2:0x805189AC; // type:object size:0x7 scope:local align:4 data:string +@5426 = .sdata2:0x805189B4; // type:object size:0x4 scope:local align:4 data:string +@5427 = .sdata2:0x805189B8; // type:object size:0x4 scope:local align:4 data:float +@5428 = .sdata2:0x805189BC; // type:object size:0x4 scope:local align:4 data:float +@5429 = .sdata2:0x805189C0; // type:object size:0x4 scope:local align:4 data:float +@5430 = .sdata2:0x805189C4; // type:object size:0x4 scope:local align:4 data:string +@5455 = .sdata2:0x805189C8; // type:object size:0x4 scope:local align:4 data:float +@5506 = .sdata2:0x805189CC; // type:object size:0x4 scope:local align:4 data:float +@5507 = .sdata2:0x805189D0; // type:object size:0x4 scope:local align:4 data:float +@5577 = .sdata2:0x805189D4; // type:object size:0x4 scope:local align:4 data:float +@5641 = .sdata2:0x805189D8; // type:object size:0x4 scope:local align:4 data:float +@5670 = .sdata2:0x805189DC; // type:object size:0x5 scope:local align:4 data:string +@5671 = .sdata2:0x805189E4; // type:object size:0x4 scope:local align:4 data:float +@5696 = .sdata2:0x805189E8; // type:object size:0x4 scope:local align:4 data:float +@5778 = .sdata2:0x805189EC; // type:object size:0x4 scope:local align:4 data:float +@5779 = .sdata2:0x805189F0; // type:object size:0x4 scope:local align:4 data:float +@5780 = .sdata2:0x805189F4; // type:object size:0x4 scope:local align:4 data:float +@5922 = .sdata2:0x805189F8; // type:object size:0x4 scope:local align:4 data:float +@5923 = .sdata2:0x805189FC; // type:object size:0x4 scope:local align:4 data:float +@5924 = .sdata2:0x80518A00; // type:object size:0x4 scope:local align:4 data:float +@5925 = .sdata2:0x80518A04; // type:object size:0x4 scope:local align:4 data:float +@5926 = .sdata2:0x80518A08; // type:object size:0x4 scope:local align:4 data:float +@5927 = .sdata2:0x80518A0C; // type:object size:0x4 scope:local align:4 data:float +@5931 = .sdata2:0x80518A10; // type:object size:0x4 scope:local align:4 data:float +@5932 = .sdata2:0x80518A14; // type:object size:0x4 scope:local align:4 data:float +@5933 = .sdata2:0x80518A18; // type:object size:0x4 scope:local align:4 data:float +@5935 = .sdata2:0x80518A20; // type:object size:0x8 scope:local align:8 data:double +@6303 = .sdata2:0x80518A28; // type:object size:0x4 scope:local align:4 data:float +@6305 = .sdata2:0x80518A2C; // type:object size:0x4 scope:local align:4 data:float +@6306 = .sdata2:0x80518A30; // type:object size:0x4 scope:local align:4 data:float +@6307 = .sdata2:0x80518A34; // type:object size:0x4 scope:local align:4 data:float +@6308 = .sdata2:0x80518A38; // type:object size:0x4 scope:local align:4 data:float +@6309 = .sdata2:0x80518A3C; // type:object size:0x4 scope:local align:4 data:float +@6310 = .sdata2:0x80518A40; // type:object size:0x4 scope:local align:4 data:float +@6312 = .sdata2:0x80518A48; // type:object size:0x8 scope:local align:8 data:double +@6362 = .sdata2:0x80518A50; // type:object size:0x4 scope:local align:4 data:float +@6363 = .sdata2:0x80518A54; // type:object size:0x4 scope:local align:4 data:float +@6529 = .sdata2:0x80518A58; // type:object size:0x4 scope:local align:4 data:float +@6562 = .sdata2:0x80518A5C; // type:object size:0x5 scope:local align:4 data:string +@6771 = .sdata2:0x80518A64; // type:object size:0x4 scope:local align:4 data:float +@6848 = .sdata2:0x80518A68; // type:object size:0x4 scope:local align:4 data:float +@6940 = .sdata2:0x80518A6C; // type:object size:0x4 scope:local align:4 data:float +@7234 = .sdata2:0x80518A70; // type:object size:0x6 scope:local align:4 data:string +@7790 = .sdata2:0x80518A78; // type:object size:0x8 scope:local align:4 data:string +@7805 = .sdata2:0x80518A80; // type:object size:0x8 scope:local align:4 data:string +@7807 = .sdata2:0x80518A88; // type:object size:0x8 scope:local align:4 data:string +@7865 = .sdata2:0x80518A90; // type:object size:0x8 scope:local align:4 data:string +@7882 = .sdata2:0x80518A98; // type:object size:0x4 scope:local align:4 data:float +@2627 = .sdata2:0x80518AA0; // type:object size:0x5 scope:local align:4 data:string +@2628 = .sdata2:0x80518AA8; // type:object size:0x5 scope:local align:4 data:string +@2629 = .sdata2:0x80518AB0; // type:object size:0x5 scope:local align:4 data:string +@2630 = .sdata2:0x80518AB8; // type:object size:0x7 scope:local align:4 data:string +@2631 = .sdata2:0x80518AC0; // type:object size:0x6 scope:local align:4 data:string +@2632 = .sdata2:0x80518AC8; // type:object size:0x4 scope:local align:4 data:string +@2633 = .sdata2:0x80518ACC; // type:object size:0x5 scope:local align:4 data:string +@2634 = .sdata2:0x80518AD4; // type:object size:0x5 scope:local align:4 data:string +@2635 = .sdata2:0x80518ADC; // type:object size:0x6 scope:local align:4 data:string +@2637 = .sdata2:0x80518AE4; // type:object size:0x6 scope:local align:4 data:string +@2638 = .sdata2:0x80518AEC; // type:object size:0x5 scope:local align:4 data:string +@2639 = .sdata2:0x80518AF4; // type:object size:0x5 scope:local align:4 data:string +@2642 = .sdata2:0x80518AFC; // type:object size:0x7 scope:local align:4 data:string +@2646 = .sdata2:0x80518B04; // type:object size:0x5 scope:local align:4 data:string +@2647 = .sdata2:0x80518B0C; // type:object size:0x5 scope:local align:4 data:string +@2648 = .sdata2:0x80518B14; // type:object size:0x6 scope:local align:4 data:string +@2649 = .sdata2:0x80518B1C; // type:object size:0x4 scope:local align:4 data:string +@4879 = .sdata2:0x80518B20; // type:object size:0x4 scope:local align:4 data:float +@4880 = .sdata2:0x80518B24; // type:object size:0x4 scope:local align:4 data:float +@4881 = .sdata2:0x80518B28; // type:object size:0x4 scope:local align:4 data:float +@4882 = .sdata2:0x80518B2C; // type:object size:0x4 scope:local align:4 data:float +@4883 = .sdata2:0x80518B30; // type:object size:0x4 scope:local align:4 data:float +@4974 = .sdata2:0x80518B34; // type:object size:0x4 scope:local align:4 data:float +@4975 = .sdata2:0x80518B38; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x80518B3C; // type:object size:0x4 scope:local align:4 data:float +@5149 = .sdata2:0x80518B40; // type:object size:0x4 scope:local align:4 data:float +@5150 = .sdata2:0x80518B44; // type:object size:0x4 scope:local align:4 data:float +@5151 = .sdata2:0x80518B48; // type:object size:0x4 scope:local align:4 data:float +@5152 = .sdata2:0x80518B4C; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata2:0x80518B50; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x80518B54; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata2:0x80518B58; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata2:0x80518B5C; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata2:0x80518B60; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata2:0x80518B64; // type:object size:0x4 scope:local align:4 data:float +@5159 = .sdata2:0x80518B68; // type:object size:0x4 scope:local align:4 data:float +@5161 = .sdata2:0x80518B70; // type:object size:0x8 scope:local align:8 data:double +@5178 = .sdata2:0x80518B78; // type:object size:0x4 scope:local align:4 data:float +@5397 = .sdata2:0x80518B7C; // type:object size:0x4 scope:local align:4 data:float +@5398 = .sdata2:0x80518B80; // type:object size:0x4 scope:local align:4 data:float +@5596 = .sdata2:0x80518B84; // type:object size:0x4 scope:local align:4 data:float +@5597 = .sdata2:0x80518B88; // type:object size:0x4 scope:local align:4 data:float +@5726 = .sdata2:0x80518B8C; // type:object size:0x4 scope:local align:4 data:float +@5819 = .sdata2:0x80518B90; // type:object size:0x4 scope:local align:4 data:float +@5820 = .sdata2:0x80518B94; // type:object size:0x4 scope:local align:4 data:float +@6248 = .sdata2:0x80518B98; // type:object size:0x4 scope:local align:4 data:float +@6249 = .sdata2:0x80518B9C; // type:object size:0x4 scope:local align:4 data:float +@6250 = .sdata2:0x80518BA0; // type:object size:0x4 scope:local align:4 data:float +@6251 = .sdata2:0x80518BA4; // type:object size:0x4 scope:local align:4 data:float +@6252 = .sdata2:0x80518BA8; // type:object size:0x4 scope:local align:4 data:float +@6253 = .sdata2:0x80518BAC; // type:object size:0x4 scope:local align:4 data:float +@6412 = .sdata2:0x80518BB0; // type:object size:0x4 scope:local align:4 data:float +@6413 = .sdata2:0x80518BB4; // type:object size:0x4 scope:local align:4 data:float +@6510 = .sdata2:0x80518BB8; // type:object size:0x4 scope:local align:4 data:float +@6755 = .sdata2:0x80518BBC; // type:object size:0x4 scope:local align:4 data:float +@6915 = .sdata2:0x80518BC0; // type:object size:0x4 scope:local align:4 data:float +@7320 = .sdata2:0x80518BC4; // type:object size:0x4 scope:local align:4 data:float +@7321 = .sdata2:0x80518BC8; // type:object size:0x4 scope:local align:4 data:float +@7322 = .sdata2:0x80518BCC; // type:object size:0x4 scope:local align:4 data:float +@7323 = .sdata2:0x80518BD0; // type:object size:0x4 scope:local align:4 data:float +@7533 = .sdata2:0x80518BD4; // type:object size:0x4 scope:local align:4 data:float +@7730 = .sdata2:0x80518BD8; // type:object size:0x4 scope:local align:4 data:float +@7750 = .sdata2:0x80518BDC; // type:object size:0x4 scope:local align:4 data:float +@7751 = .sdata2:0x80518BE0; // type:object size:0x4 scope:local align:4 data:float +@7844 = .sdata2:0x80518BE4; // type:object size:0x4 scope:local align:4 data:float +@7862 = .sdata2:0x80518BE8; // type:object size:0x4 scope:local align:4 data:float +@8046 = .sdata2:0x80518BEC; // type:object size:0x4 scope:local align:4 data:float +@8048 = .sdata2:0x80518BF0; // type:object size:0x8 scope:local align:8 data:double +@8833 = .sdata2:0x80518BF8; // type:object size:0x4 scope:local align:4 data:float +@8834 = .sdata2:0x80518BFC; // type:object size:0x4 scope:local align:4 data:float +@9150 = .sdata2:0x80518C00; // type:object size:0x4 scope:local align:4 data:float +@9237 = .sdata2:0x80518C04; // type:object size:0x4 scope:local align:4 data:float +@9376 = .sdata2:0x80518C08; // type:object size:0x6 scope:local align:4 data:string +@9377 = .sdata2:0x80518C10; // type:object size:0x4 scope:local align:4 data:float +@9378 = .sdata2:0x80518C14; // type:object size:0x4 scope:local align:4 data:float +@9612 = .sdata2:0x80518C18; // type:object size:0x4 scope:local align:4 data:float +@9718 = .sdata2:0x80518C1C; // type:object size:0x4 scope:local align:4 data:float +@9719 = .sdata2:0x80518C20; // type:object size:0x4 scope:local align:4 data:float +@9888 = .sdata2:0x80518C24; // type:object size:0x4 scope:local align:4 data:float +@9991 = .sdata2:0x80518C28; // type:object size:0x4 scope:local align:4 data:float +@10051 = .sdata2:0x80518C2C; // type:object size:0x4 scope:local align:4 data:float +@10080 = .sdata2:0x80518C30; // type:object size:0x4 scope:local align:4 data:float +@10081 = .sdata2:0x80518C34; // type:object size:0x4 scope:local align:4 data:float +@10125 = .sdata2:0x80518C38; // type:object size:0x4 scope:local align:4 data:float +@10126 = .sdata2:0x80518C3C; // type:object size:0x4 scope:local align:4 data:float +@4123 = .sdata2:0x80518C40; // type:object size:0x3 scope:local align:4 data:string +@4490 = .sdata2:0x80518C44; // type:object size:0x5 scope:local align:4 data:string +@4492 = .sdata2:0x80518C4C; // type:object size:0x7 scope:local align:4 data:string +@4493 = .sdata2:0x80518C54; // type:object size:0x7 scope:local align:4 data:string +@4494 = .sdata2:0x80518C5C; // type:object size:0x7 scope:local align:4 data:string +@4496 = .sdata2:0x80518C64; // type:object size:0x7 scope:local align:4 data:string +@4498 = .sdata2:0x80518C6C; // type:object size:0x5 scope:local align:4 data:string +@4499 = .sdata2:0x80518C74; // type:object size:0x6 scope:local align:4 data:string +@4500 = .sdata2:0x80518C7C; // type:object size:0x6 scope:local align:4 data:string +@4502 = .sdata2:0x80518C84; // type:object size:0x7 scope:local align:4 data:string +@4503 = .sdata2:0x80518C8C; // type:object size:0x7 scope:local align:4 data:string +@4504 = .sdata2:0x80518C94; // type:object size:0x7 scope:local align:4 data:string +@4505 = .sdata2:0x80518C9C; // type:object size:0x5 scope:local align:4 data:string +@4506 = .sdata2:0x80518CA4; // type:object size:0x5 scope:local align:4 data:string +@4508 = .sdata2:0x80518CAC; // type:object size:0x8 scope:local align:4 data:string +@4509 = .sdata2:0x80518CB4; // type:object size:0x8 scope:local align:4 data:string +@4510 = .sdata2:0x80518CBC; // type:object size:0x8 scope:local align:4 data:string +@4511 = .sdata2:0x80518CC4; // type:object size:0x6 scope:local align:4 data:string +@4514 = .sdata2:0x80518CCC; // type:object size:0x6 scope:local align:4 data:string +@4515 = .sdata2:0x80518CD4; // type:object size:0x5 scope:local align:4 data:string +@4516 = .sdata2:0x80518CDC; // type:object size:0x8 scope:local align:4 data:string +@4517 = .sdata2:0x80518CE4; // type:object size:0x7 scope:local align:4 data:string +@4519 = .sdata2:0x80518CEC; // type:object size:0x5 scope:local align:4 data:string +@4520 = .sdata2:0x80518CF4; // type:object size:0x7 scope:local align:4 data:string +@4521 = .sdata2:0x80518CFC; // type:object size:0x7 scope:local align:4 data:string +@4591 = .sdata2:0x80518D04; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x80518D08; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x80518D0C; // type:object size:0x4 scope:local align:4 data:float +@4594 = .sdata2:0x80518D10; // type:object size:0x4 scope:local align:4 data:float +@4596 = .sdata2:0x80518D18; // type:object size:0x8 scope:local align:8 data:double +@4717 = .sdata2:0x80518D20; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x80518D24; // type:object size:0x4 scope:local align:4 data:float +@4719 = .sdata2:0x80518D28; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x80518D2C; // type:object size:0x4 scope:local align:4 data:float +@4751 = .sdata2:0x80518D30; // type:object size:0x4 scope:local align:4 data:float +@4858 = .sdata2:0x80518D34; // type:object size:0x4 scope:local align:4 data:float +@4924 = .sdata2:0x80518D38; // type:object size:0x4 scope:local align:4 data:float +@4925 = .sdata2:0x80518D3C; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata2:0x80518D40; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata2:0x80518D44; // type:object size:0x4 scope:local align:4 data:float +@4928 = .sdata2:0x80518D48; // type:object size:0x4 scope:local align:4 data:float +@4929 = .sdata2:0x80518D4C; // type:object size:0x4 scope:local align:4 data:float +@5016 = .sdata2:0x80518D50; // type:object size:0x4 scope:local align:4 data:float +@5017 = .sdata2:0x80518D54; // type:object size:0x4 scope:local align:4 data:float +@5090 = .sdata2:0x80518D58; // type:object size:0x4 scope:local align:4 data:float +@5091 = .sdata2:0x80518D5C; // type:object size:0x4 scope:local align:4 data:float +@5092 = .sdata2:0x80518D60; // type:object size:0x4 scope:local align:4 data:float +@5103 = .sdata2:0x80518D64; // type:object size:0x4 scope:local align:4 data:float +@5225 = .sdata2:0x80518D68; // type:object size:0x4 scope:local align:4 data:float +@5381 = .sdata2:0x80518D6C; // type:object size:0x4 scope:local align:4 data:float +@5382 = .sdata2:0x80518D70; // type:object size:0x4 scope:local align:4 data:float +@5542 = .sdata2:0x80518D74; // type:object size:0x4 scope:local align:4 data:float +@5543 = .sdata2:0x80518D78; // type:object size:0x4 scope:local align:4 data:float +@5544 = .sdata2:0x80518D7C; // type:object size:0x4 scope:local align:4 data:float +@5545 = .sdata2:0x80518D80; // type:object size:0x4 scope:local align:4 data:float +@5546 = .sdata2:0x80518D84; // type:object size:0x4 scope:local align:4 data:float +@5547 = .sdata2:0x80518D88; // type:object size:0x4 scope:local align:4 data:float +@5548 = .sdata2:0x80518D8C; // type:object size:0x4 scope:local align:4 data:float +@5600 = .sdata2:0x80518D90; // type:object size:0x4 scope:local align:4 data:float +@5601 = .sdata2:0x80518D94; // type:object size:0x4 scope:local align:4 data:float +@5602 = .sdata2:0x80518D98; // type:object size:0x4 scope:local align:4 data:float +@5783 = .sdata2:0x80518D9C; // type:object size:0x4 scope:local align:4 data:float +@5784 = .sdata2:0x80518DA0; // type:object size:0x4 scope:local align:4 data:float +@6310 = .sdata2:0x80518DA4; // type:object size:0x4 scope:local align:4 data:float +@6677 = .sdata2:0x80518DA8; // type:object size:0x4 scope:local align:4 data:float +@6711 = .sdata2:0x80518DAC; // type:object size:0x4 scope:local align:4 data:float +@6763 = .sdata2:0x80518DB0; // type:object size:0x4 scope:local align:4 data:float +@6992 = .sdata2:0x80518DB4; // type:object size:0x4 scope:local align:4 data:float +@6993 = .sdata2:0x80518DB8; // type:object size:0x4 scope:local align:4 data:float +@6994 = .sdata2:0x80518DBC; // type:object size:0x4 scope:local align:4 data:float +@6995 = .sdata2:0x80518DC0; // type:object size:0x4 scope:local align:4 data:float +@7063 = .sdata2:0x80518DC4; // type:object size:0x4 scope:local align:4 data:float +@7312 = .sdata2:0x80518DC8; // type:object size:0x4 scope:local align:4 data:float +@7345 = .sdata2:0x80518DCC; // type:object size:0x4 scope:local align:4 data:float +@7781 = .sdata2:0x80518DD0; // type:object size:0x4 scope:local align:4 data:float +@7782 = .sdata2:0x80518DD4; // type:object size:0x4 scope:local align:4 data:float +@7783 = .sdata2:0x80518DD8; // type:object size:0x4 scope:local align:4 data:float +@7784 = .sdata2:0x80518DDC; // type:object size:0x4 scope:local align:4 data:float +@7785 = .sdata2:0x80518DE0; // type:object size:0x4 scope:local align:4 data:float +@7786 = .sdata2:0x80518DE4; // type:object size:0x4 scope:local align:4 data:float +@8110 = .sdata2:0x80518DE8; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata2:0x80518DF0; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x80518DF4; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x80518DF8; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x80518DFC; // type:object size:0x4 scope:local align:4 data:float +@4632 = .sdata2:0x80518E00; // type:object size:0x4 scope:local align:4 data:float +@4633 = .sdata2:0x80518E04; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata2:0x80518E08; // type:object size:0x4 scope:local align:4 data:float +@4847 = .sdata2:0x80518E0C; // type:object size:0x4 scope:local align:4 data:float +@4848 = .sdata2:0x80518E10; // type:object size:0x4 scope:local align:4 data:float +@4849 = .sdata2:0x80518E14; // type:object size:0x4 scope:local align:4 data:float +@4850 = .sdata2:0x80518E18; // type:object size:0x4 scope:local align:4 data:float +@4851 = .sdata2:0x80518E1C; // type:object size:0x4 scope:local align:4 data:float +@4852 = .sdata2:0x80518E20; // type:object size:0x4 scope:local align:4 data:float +@4857 = .sdata2:0x80518E28; // type:object size:0x8 scope:local align:8 data:double +@3389 = .sdata2:0x80518E30; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata2:0x80518E34; // type:object size:0x4 scope:local align:4 data:float +@3391 = .sdata2:0x80518E38; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x80518E3C; // type:object size:0x4 scope:local align:4 data:float +@3394 = .sdata2:0x80518E40; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata2:0x80518E44; // type:object size:0x4 scope:local align:4 data:float +@3397 = .sdata2:0x80518E48; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x80518E4C; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x80518E50; // type:object size:0x4 scope:local align:4 data:float +@3495 = .sdata2:0x80518E54; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x80518E58; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata2:0x80518E5C; // type:object size:0x4 scope:local align:4 data:float +@3918 = .sdata2:0x80518E60; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x80518E64; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x80518E68; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x80518E6C; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x80518E70; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x80518E78; // type:object size:0x8 scope:local align:8 data:double +@4022 = .sdata2:0x80518E80; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x80518E84; // type:object size:0x4 scope:local align:4 data:float +@3422 = .sdata2:0x80518E88; // type:object size:0x7 scope:local align:4 data:string +@3428 = .sdata2:0x80518E90; // type:object size:0x3 scope:local align:4 data:string +@3711 = .sdata2:0x80518E94; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata2:0x80518E98; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x80518EA0; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x80518EA4; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x80518EA8; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x80518EAC; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x80518EB0; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x80518EB4; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x80518EB8; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x80518EBC; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x80518EC0; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x80518EC4; // type:object size:0x4 scope:local align:4 data:float +@4157 = .sdata2:0x80518EC8; // type:object size:0x4 scope:local align:4 data:float +@4579 = .sdata2:0x80518ECC; // type:object size:0x4 scope:local align:4 data:float +@4580 = .sdata2:0x80518ED0; // type:object size:0x4 scope:local align:4 data:float +@4581 = .sdata2:0x80518ED4; // type:object size:0x4 scope:local align:4 data:float +@4582 = .sdata2:0x80518ED8; // type:object size:0x4 scope:local align:4 data:float +@4583 = .sdata2:0x80518EDC; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x80518EE0; // type:object size:0x4 scope:local align:4 data:float +@4637 = .sdata2:0x80518EE8; // type:object size:0x8 scope:local align:8 data:double +@4830 = .sdata2:0x80518EF0; // type:object size:0x4 scope:local align:4 data:string +@5448 = .sdata2:0x80518EF4; // type:object size:0x4 scope:local align:4 data:float +@5449 = .sdata2:0x80518EF8; // type:object size:0x4 scope:local align:4 data:float +@5450 = .sdata2:0x80518EFC; // type:object size:0x4 scope:local align:4 data:float +@5451 = .sdata2:0x80518F00; // type:object size:0x4 scope:local align:4 data:float +@5672 = .sdata2:0x80518F04; // type:object size:0x4 scope:local align:4 data:float +@5737 = .sdata2:0x80518F08; // type:object size:0x4 scope:local align:4 data:float +@6540 = .sdata2:0x80518F0C; // type:object size:0x4 scope:local align:4 data:float +@6541 = .sdata2:0x80518F10; // type:object size:0x4 scope:local align:4 data:float +@6542 = .sdata2:0x80518F14; // type:object size:0x4 scope:local align:4 data:float +@6794 = .sdata2:0x80518F18; // type:object size:0x4 scope:local align:4 data:float +@6885 = .sdata2:0x80518F1C; // type:object size:0x4 scope:local align:4 data:float +@6886 = .sdata2:0x80518F20; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x80518F28; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x80518F2C; // type:object size:0x4 scope:local align:4 data:float +@5099 = .sdata2:0x80518F30; // type:object size:0x4 scope:local align:4 data:float +@5101 = .sdata2:0x80518F34; // type:object size:0x4 scope:local align:4 data:float +@5102 = .sdata2:0x80518F38; // type:object size:0x4 scope:local align:4 data:float +@5103 = .sdata2:0x80518F3C; // type:object size:0x4 scope:local align:4 data:float +@5104 = .sdata2:0x80518F40; // type:object size:0x4 scope:local align:4 data:float +@5105 = .sdata2:0x80518F44; // type:object size:0x4 scope:local align:4 data:float +@5106 = .sdata2:0x80518F48; // type:object size:0x4 scope:local align:4 data:float +@5107 = .sdata2:0x80518F4C; // type:object size:0x4 scope:local align:4 data:float +@5108 = .sdata2:0x80518F50; // type:object size:0x4 scope:local align:4 data:float +@5109 = .sdata2:0x80518F54; // type:object size:0x4 scope:local align:4 data:float +@5110 = .sdata2:0x80518F58; // type:object size:0x4 scope:local align:4 data:float +@5111 = .sdata2:0x80518F5C; // type:object size:0x4 scope:local align:4 data:float +@5112 = .sdata2:0x80518F60; // type:object size:0x4 scope:local align:4 data:float +@5113 = .sdata2:0x80518F64; // type:object size:0x4 scope:local align:4 data:float +@5114 = .sdata2:0x80518F68; // type:object size:0x4 scope:local align:4 data:float +@5115 = .sdata2:0x80518F6C; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x80518F70; // type:object size:0x4 scope:local align:4 data:float +@5118 = .sdata2:0x80518F78; // type:object size:0x8 scope:local align:8 data:double +@3496 = .sdata2:0x80518F80; // type:object size:0x4 scope:local align:4 data:float +@3497 = .sdata2:0x80518F84; // type:object size:0x4 scope:local align:4 data:float +@3498 = .sdata2:0x80518F88; // type:object size:0x4 scope:local align:4 data:float +@3499 = .sdata2:0x80518F8C; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata2:0x80518F90; // type:object size:0x4 scope:local align:4 data:float +@3426 = .sdata2:0x80518F98; // type:object size:0x5 scope:local align:4 data:string +@3452 = .sdata2:0x80518FA0; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x80518FA4; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x80518FA8; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x80518FAC; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x80518FB0; // type:object size:0x8 scope:local align:8 data:double +@3492 = .sdata2:0x80518FB8; // type:object size:0x3 scope:local align:4 data:string +@3493 = .sdata2:0x80518FBC; // type:object size:0x3 scope:local align:4 data:string +@3494 = .sdata2:0x80518FC0; // type:object size:0x3 scope:local align:4 data:string +@3495 = .sdata2:0x80518FC4; // type:object size:0x3 scope:local align:4 data:string +@3496 = .sdata2:0x80518FC8; // type:object size:0x3 scope:local align:4 data:string +@3523 = .sdata2:0x80518FCC; // type:object size:0x7 scope:local align:4 data:string +@3544 = .sdata2:0x80518FD4; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x80518FD8; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x80518FE0; // type:object size:0x8 scope:local align:8 data:double +@3567 = .sdata2:0x80518FE8; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x80518FEC; // type:object size:0x4 scope:local align:4 data:float +@3578 = .sdata2:0x80518FF0; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x80518FF4; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x80518FF8; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x80518FFC; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x80519000; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x80519004; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x80519008; // type:object size:0x4 scope:local align:4 data:float +@3449 = .sdata2:0x80519010; // type:object size:0x5 scope:local align:4 data:string +@3450 = .sdata2:0x80519018; // type:object size:0x5 scope:local align:4 data:string +@3451 = .sdata2:0x80519020; // type:object size:0x5 scope:local align:4 data:string +@3472 = .sdata2:0x80519028; // type:object size:0x6 scope:local align:4 data:string +@3491 = .sdata2:0x80519030; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x80519034; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x80519038; // type:object size:0x4 scope:local align:4 data:float +@3670 = .sdata2:0x8051903C; // type:object size:0x4 scope:local align:4 data:float +@3672 = .sdata2:0x80519040; // type:object size:0x8 scope:local align:8 data:double +@3792 = .sdata2:0x80519048; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x80519050; // type:object size:0x6 scope:local align:4 data:string +@3499 = .sdata2:0x80519058; // type:object size:0x4 scope:local align:4 data:float +@3500 = .sdata2:0x8051905C; // type:object size:0x4 scope:local align:4 data:float +@3501 = .sdata2:0x80519060; // type:object size:0x4 scope:local align:4 data:float +@3502 = .sdata2:0x80519064; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata2:0x80519068; // type:object size:0x4 scope:local align:4 data:float +@3504 = .sdata2:0x8051906C; // type:object size:0x4 scope:local align:4 data:float +@3505 = .sdata2:0x80519070; // type:object size:0x4 scope:local align:4 data:float +@3506 = .sdata2:0x80519074; // type:object size:0x4 scope:local align:4 data:float +@3507 = .sdata2:0x80519078; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata2:0x80519080; // type:object size:0x8 scope:local align:8 data:double +@3565 = .sdata2:0x80519088; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051908C; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x80519090; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x80519094; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x80519098; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051909C; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata2:0x805190A0; // type:object size:0x5 scope:local align:4 data:string +@3790 = .sdata2:0x805190A8; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x805190AC; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x805190B0; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata2:0x805190B8; // type:object size:0x5 scope:local align:4 data:string +@3058 = .sdata2:0x805190C0; // type:object size:0x4 scope:local align:4 data:float +@3264 = .sdata2:0x805190C4; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata2:0x805190C8; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x805190CC; // type:object size:0x4 scope:local align:4 data:float +@4481 = .sdata2:0x805190D0; // type:object size:0x4 scope:local align:4 data:float +@4988 = .sdata2:0x805190D4; // type:object size:0x4 scope:local align:4 data:string +@4989 = .sdata2:0x805190D8; // type:object size:0x6 scope:local align:4 data:string +@4991 = .sdata2:0x805190E0; // type:object size:0x4 scope:local align:4 data:float +@5420 = .sdata2:0x805190E4; // type:object size:0x4 scope:local align:4 data:float +@5421 = .sdata2:0x805190E8; // type:object size:0x4 scope:local align:4 data:float +@5422 = .sdata2:0x805190EC; // type:object size:0x4 scope:local align:4 data:float +@5423 = .sdata2:0x805190F0; // type:object size:0x4 scope:local align:4 data:float +@5424 = .sdata2:0x805190F4; // type:object size:0x4 scope:local align:4 data:float +@5425 = .sdata2:0x805190F8; // type:object size:0x4 scope:local align:4 data:float +@5426 = .sdata2:0x805190FC; // type:object size:0x4 scope:local align:4 data:float +@5427 = .sdata2:0x80519100; // type:object size:0x4 scope:local align:4 data:float +@5432 = .sdata2:0x80519104; // type:object size:0x6 scope:local align:4 data:string +@5433 = .sdata2:0x8051910C; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x80519110; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x80519114; // type:object size:0x4 scope:local align:4 data:float +@5459 = .sdata2:0x80519118; // type:object size:0x4 scope:local align:4 data:float +@5460 = .sdata2:0x8051911C; // type:object size:0x4 scope:local align:4 data:float +@5461 = .sdata2:0x80519120; // type:object size:0x4 scope:local align:4 data:float +@5462 = .sdata2:0x80519124; // type:object size:0x4 scope:local align:4 data:float +@5463 = .sdata2:0x80519128; // type:object size:0x4 scope:local align:4 data:float +@5464 = .sdata2:0x8051912C; // type:object size:0x4 scope:local align:4 data:float +@5466 = .sdata2:0x80519130; // type:object size:0x8 scope:local align:8 data:double +@5519 = .sdata2:0x80519138; // type:object size:0x4 scope:local align:4 data:float +@5537 = .sdata2:0x8051913C; // type:object size:0x4 scope:local align:4 data:float +@5538 = .sdata2:0x80519140; // type:object size:0x4 scope:local align:4 data:float +@5539 = .sdata2:0x80519144; // type:object size:0x4 scope:local align:4 data:float +@5540 = .sdata2:0x80519148; // type:object size:0x4 scope:local align:4 data:float +@5618 = .sdata2:0x8051914C; // type:object size:0x4 scope:local align:4 data:float +@5779 = .sdata2:0x80519150; // type:object size:0x4 scope:local align:4 data:float +@5780 = .sdata2:0x80519154; // type:object size:0x4 scope:local align:4 data:float +@5879 = .sdata2:0x80519158; // type:object size:0x4 scope:local align:4 data:float +@6113 = .sdata2:0x8051915C; // type:object size:0x4 scope:local align:4 data:float +@6114 = .sdata2:0x80519160; // type:object size:0x4 scope:local align:4 data:float +@6115 = .sdata2:0x80519164; // type:object size:0x4 scope:local align:4 data:float +@6116 = .sdata2:0x80519168; // type:object size:0x4 scope:local align:4 data:float +@6117 = .sdata2:0x8051916C; // type:object size:0x4 scope:local align:4 data:float +@6118 = .sdata2:0x80519170; // type:object size:0x4 scope:local align:4 data:float +@6119 = .sdata2:0x80519174; // type:object size:0x4 scope:local align:4 data:float +@3303 = .sdata2:0x80519178; // type:object size:0x4 scope:local align:4 data:float +@3845 = .sdata2:0x8051917C; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x80519180; // type:object size:0x8 scope:local align:8 data:double +@3874 = .sdata2:0x80519188; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051918C; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x80519190; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x80519194; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x80519198; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051919C; // type:object size:0x6 scope:local align:4 data:string +@3766 = .sdata2:0x805191A8; // type:object size:0x8 scope:local align:8 data:double +@3857 = .sdata2:0x805191B0; // type:object size:0x7 scope:local align:4 data:string +@3318 = .sdata2:0x805191B8; // type:object size:0x3 scope:local align:4 +@3319 = .sdata2:0x805191BC; // type:object size:0x3 scope:local align:4 +@3420 = .sdata2:0x805191C0; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x805191C4; // type:object size:0x4 scope:local align:4 data:float +@3422 = .sdata2:0x805191C8; // type:object size:0x4 scope:local align:4 data:float +@3423 = .sdata2:0x805191CC; // type:object size:0x4 scope:local align:4 data:float +@3424 = .sdata2:0x805191D0; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x805191D4; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x805191D8; // type:object size:0x8 scope:local align:8 data:double +@3656 = .sdata2:0x805191E0; // type:object size:0x6 scope:local align:4 data:string +@3426 = .sdata2:0x805191E8; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x805191EC; // type:object size:0x4 scope:local align:4 data:float +@3607 = .sdata2:0x805191F0; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x805191F4; // type:object size:0x4 scope:local align:4 data:float +@3380 = .sdata2:0x805191F8; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x805191FC; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata2:0x80519200; // type:object size:0x4 scope:local align:4 data:float +@2961 = .sdata2:0x80519208; // type:object size:0x7 scope:local align:4 data:string +@2962 = .sdata2:0x80519210; // type:object size:0x4 scope:local align:4 data:float +@3090 = .sdata2:0x80519214; // type:object size:0x5 scope:local align:4 data:string +@3091 = .sdata2:0x8051921C; // type:object size:0x7 scope:local align:4 data:string +@3093 = .sdata2:0x80519224; // type:object size:0x6 scope:local align:4 data:string +@3096 = .sdata2:0x8051922C; // type:object size:0x8 scope:local align:4 data:string +@3097 = .sdata2:0x80519234; // type:object size:0x5 scope:local align:4 data:string +@3098 = .sdata2:0x8051923C; // type:object size:0x6 scope:local align:4 data:string +@3099 = .sdata2:0x80519244; // type:object size:0x6 scope:local align:4 data:string +@3101 = .sdata2:0x8051924C; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x80519250; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x80519254; // type:object size:0x6 scope:local align:4 data:string +@3462 = .sdata2:0x80519260; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x80519264; // type:object size:0x4 scope:local align:4 data:float +@3464 = .sdata2:0x80519268; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x8051926C; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x80519270; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x80519274; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x80519278; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051927C; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x80519280; // type:object size:0x4 scope:local align:4 data:float +@4067 = .sdata2:0x80519284; // type:object size:0x4 scope:local align:4 data:float +@4185 = .sdata2:0x80519288; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051928C; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x80519290; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x80519294; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x80519298; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata2:0x8051929C; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata2:0x805192A0; // type:object size:0x4 scope:local align:4 data:float +@5121 = .sdata2:0x805192A4; // type:object size:0x4 scope:local align:4 data:float +@5403 = .sdata2:0x805192A8; // type:object size:0x4 scope:local align:4 data:float +@3283 = .sdata2:0x805192B0; // type:object size:0x3 scope:local align:4 data:string +@3284 = .sdata2:0x805192B4; // type:object size:0x4 scope:local align:4 data:float +@3285 = .sdata2:0x805192B8; // type:object size:0x4 scope:local align:4 data:float +@3286 = .sdata2:0x805192BC; // type:object size:0x4 scope:local align:4 data:float +@3287 = .sdata2:0x805192C0; // type:object size:0x4 scope:local align:4 data:float +@3288 = .sdata2:0x805192C4; // type:object size:0x4 scope:local align:4 data:float +@3352 = .sdata2:0x805192C8; // type:object size:0x5 scope:local align:4 data:string +@3353 = .sdata2:0x805192D0; // type:object size:0x8 scope:local align:4 data:string +@3355 = .sdata2:0x805192D8; // type:object size:0x4 scope:local align:4 data:string +@3356 = .sdata2:0x805192DC; // type:object size:0x8 scope:local align:4 data:string +@3358 = .sdata2:0x805192E4; // type:object size:0x7 scope:local align:4 data:string +@3360 = .sdata2:0x805192EC; // type:object size:0x7 scope:local align:4 data:string +@3366 = .sdata2:0x805192F4; // type:object size:0x4 scope:local align:4 data:string +@3367 = .sdata2:0x805192F8; // type:object size:0x4 scope:local align:4 data:string +@3371 = .sdata2:0x805192FC; // type:object size:0x6 scope:local align:4 data:string +@3372 = .sdata2:0x80519304; // type:object size:0x7 scope:local align:4 data:string +@3375 = .sdata2:0x8051930C; // type:object size:0x6 scope:local align:4 data:string +@3377 = .sdata2:0x80519314; // type:object size:0x8 scope:local align:4 data:string +@3378 = .sdata2:0x8051931C; // type:object size:0x8 scope:local align:4 data:string +@3379 = .sdata2:0x80519324; // type:object size:0x8 scope:local align:4 data:string +@3380 = .sdata2:0x8051932C; // type:object size:0x8 scope:local align:4 data:string +@3381 = .sdata2:0x80519334; // type:object size:0x7 scope:local align:4 data:string +@3382 = .sdata2:0x8051933C; // type:object size:0x8 scope:local align:4 data:string +@3383 = .sdata2:0x80519344; // type:object size:0x5 scope:local align:4 data:string +@3484 = .sdata2:0x8051934C; // type:object size:0x4 scope:local align:4 data:string +@3485 = .sdata2:0x80519350; // type:object size:0x4 scope:local align:4 data:string +@2660 = .sdata2:0x80519358; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata2:0x8051935C; // type:object size:0x4 scope:local align:4 data:float +@2844 = .sdata2:0x80519360; // type:object size:0x4 scope:local align:4 data:float +@2671 = .sdata2:0x80519368; // type:object size:0x8 scope:local align:4 data:string +@2673 = .sdata2:0x80519370; // type:object size:0x5 scope:local align:4 data:string +@2675 = .sdata2:0x80519378; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x80519380; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x80519384; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x80519388; // type:object size:0x4 scope:local align:4 data:float +@4182 = .sdata2:0x8051938C; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x80519390; // type:object size:0x4 scope:local align:4 data:float +@4815 = .sdata2:0x80519394; // type:object size:0x4 scope:local align:4 data:float +@4816 = .sdata2:0x80519398; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x8051939C; // type:object size:0x4 scope:local align:4 data:float +@4987 = .sdata2:0x805193A0; // type:object size:0x4 scope:local align:4 data:float +@5476 = .sdata2:0x805193A4; // type:object size:0x4 scope:local align:4 data:float +@5734 = .sdata2:0x805193A8; // type:object size:0x4 scope:local align:4 data:float +@5736 = .sdata2:0x805193B0; // type:object size:0x8 scope:local align:8 data:double +@6339 = .sdata2:0x805193B8; // type:object size:0x4 scope:local align:4 data:float +@6340 = .sdata2:0x805193BC; // type:object size:0x4 scope:local align:4 data:float +@7362 = .sdata2:0x805193C0; // type:object size:0x4 scope:local align:4 data:float +@7578 = .sdata2:0x805193C4; // type:object size:0x4 scope:local align:4 data:float +@7933 = .sdata2:0x805193C8; // type:object size:0x4 scope:local align:4 data:float +@8585 = .sdata2:0x805193CC; // type:object size:0x4 scope:local align:4 data:float +@8586 = .sdata2:0x805193D0; // type:object size:0x4 scope:local align:4 data:float +@8588 = .sdata2:0x805193D4; // type:object size:0x4 scope:local align:4 data:float +@8670 = .sdata2:0x805193D8; // type:object size:0x8 scope:local align:4 data:string +@8823 = .sdata2:0x805193E0; // type:object size:0x5 scope:local align:4 data:string +@4573 = .sdata2:0x805193E8; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x805193EC; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata2:0x805193F0; // type:object size:0x7 scope:local align:4 data:string +@4618 = .sdata2:0x805193F8; // type:object size:0x4 scope:local align:4 data:float +@4619 = .sdata2:0x80519400; // type:object size:0x8 scope:local align:8 data:double +@4621 = .sdata2:0x80519408; // type:object size:0x8 scope:local align:8 data:double +@4906 = .sdata2:0x80519410; // type:object size:0x6 scope:local align:4 data:string +@4992 = .sdata2:0x80519418; // type:object size:0x8 scope:local align:4 data:string +@4994 = .sdata2:0x80519420; // type:object size:0x7 scope:local align:4 data:string +@4996 = .sdata2:0x80519428; // type:object size:0x6 scope:local align:4 data:string +@5136 = .sdata2:0x80519430; // type:object size:0x4 scope:local align:4 data:float +@5137 = .sdata2:0x80519434; // type:object size:0x4 scope:local align:4 data:float +@5138 = .sdata2:0x80519438; // type:object size:0x4 scope:local align:4 data:float +@5139 = .sdata2:0x8051943C; // type:object size:0x4 scope:local align:4 data:float +@5140 = .sdata2:0x80519440; // type:object size:0x4 scope:local align:4 data:float +@5141 = .sdata2:0x80519444; // type:object size:0x4 scope:local align:4 data:float +@5142 = .sdata2:0x80519448; // type:object size:0x4 scope:local align:4 data:float +@5143 = .sdata2:0x8051944C; // type:object size:0x4 scope:local align:4 data:float +@5144 = .sdata2:0x80519450; // type:object size:0x4 scope:local align:4 data:float +@5145 = .sdata2:0x80519454; // type:object size:0x4 scope:local align:4 data:float +@5146 = .sdata2:0x80519458; // type:object size:0x4 scope:local align:4 data:float +@5275 = .sdata2:0x8051945C; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x80519460; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x80519464; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x80519468; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x8051946C; // type:object size:0x4 scope:local align:4 data:float +@5459 = .sdata2:0x80519470; // type:object size:0x4 scope:local align:4 data:float +@5460 = .sdata2:0x80519474; // type:object size:0x4 scope:local align:4 data:float +@5461 = .sdata2:0x80519478; // type:object size:0x4 scope:local align:4 data:float +@5462 = .sdata2:0x8051947C; // type:object size:0x4 scope:local align:4 data:float +@5463 = .sdata2:0x80519480; // type:object size:0x4 scope:local align:4 data:float +@5558 = .sdata2:0x80519484; // type:object size:0x4 scope:local align:4 data:float +@5645 = .sdata2:0x80519488; // type:object size:0x4 scope:local align:4 data:float +@5646 = .sdata2:0x8051948C; // type:object size:0x4 scope:local align:4 data:float +@5647 = .sdata2:0x80519490; // type:object size:0x4 scope:local align:4 data:float +@5648 = .sdata2:0x80519494; // type:object size:0x4 scope:local align:4 data:float +@5649 = .sdata2:0x80519498; // type:object size:0x4 scope:local align:4 data:float +@5650 = .sdata2:0x8051949C; // type:object size:0x4 scope:local align:4 data:float +@5651 = .sdata2:0x805194A0; // type:object size:0x4 scope:local align:4 data:float +@5653 = .sdata2:0x805194A8; // type:object size:0x8 scope:local align:8 data:double +@5731 = .sdata2:0x805194B0; // type:object size:0x4 scope:local align:4 data:float +@6051 = .sdata2:0x805194B4; // type:object size:0x4 scope:local align:4 data:float +@6052 = .sdata2:0x805194B8; // type:object size:0x4 scope:local align:4 data:float +@6053 = .sdata2:0x805194BC; // type:object size:0x4 scope:local align:4 data:float +@6054 = .sdata2:0x805194C0; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x805194C8; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x805194CC; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x805194D0; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x805194D4; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x805194D8; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x805194DC; // type:object size:0x4 scope:local align:4 data:float +@4084 = .sdata2:0x805194E0; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x805194E8; // type:object size:0x8 scope:local align:8 data:double +@4150 = .sdata2:0x805194F0; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x805194F4; // type:object size:0x5 scope:local align:4 data:string +@4255 = .sdata2:0x805194FC; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x80519500; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x80519504; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x80519508; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x8051950C; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x80519510; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x80519514; // type:object size:0x4 scope:local align:4 data:float +@4628 = .sdata2:0x80519518; // type:object size:0x5 scope:local align:4 data:string +@4630 = .sdata2:0x80519520; // type:object size:0x8 scope:local align:8 data:double +@4639 = .sdata2:0x80519528; // type:object size:0x4 scope:local align:4 data:float +@4674 = .sdata2:0x8051952C; // type:object size:0x5 scope:local align:4 data:string +@4729 = .sdata2:0x80519534; // type:object size:0x4 scope:local align:4 data:string +@5108 = .sdata2:0x80519538; // type:object size:0x5 scope:local align:4 data:string +@5147 = .sdata2:0x80519540; // type:object size:0x7 scope:local align:4 data:string +@5217 = .sdata2:0x80519548; // type:object size:0x8 scope:local align:4 data:string +@5347 = .sdata2:0x80519550; // type:object size:0x5 scope:local align:4 data:string +@3495 = .sdata2:0x80519558; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x8051955C; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x80519560; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x80519564; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x80519568; // type:object size:0x6 scope:local align:4 data:string +@3702 = .sdata2:0x80519570; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x80519578; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051957C; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x80519580; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x80519584; // type:object size:0x4 scope:local align:4 data:float +@3994 = .sdata2:0x80519588; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051958C; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x80519590; // type:object size:0x5 scope:local align:4 data:string +@4082 = .sdata2:0x80519598; // type:object size:0x4 scope:local align:4 data:float +@4083 = .sdata2:0x8051959C; // type:object size:0x4 scope:local align:4 data:float +@4204 = .sdata2:0x805195A0; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata2:0x805195A4; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata2:0x805195A8; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x805195AC; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x805195B0; // type:object size:0x5 scope:local align:4 data:string +@4352 = .sdata2:0x805195B8; // type:object size:0x8 scope:local align:4 data:string +@3803 = .sdata2:0x805195C0; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x805195C4; // type:object size:0x4 scope:local align:4 data:float +@3954 = .sdata2:0x805195C8; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x805195CC; // type:object size:0x4 scope:local align:4 data:float +@3996 = .sdata2:0x805195D0; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x805195D4; // type:object size:0x4 scope:local align:4 data:float +@3999 = .sdata2:0x805195D8; // type:object size:0x8 scope:local align:8 data:double +@4016 = .sdata2:0x805195E0; // type:object size:0x4 scope:local align:4 data:float +@4064 = .sdata2:0x805195E4; // type:object size:0x6 scope:local align:4 data:string +@4188 = .sdata2:0x805195EC; // type:object size:0x6 scope:local align:4 data:string +@4230 = .sdata2:0x805195F4; // type:object size:0x8 scope:local align:4 data:string +@3472 = .sdata2:0x80519600; // type:object size:0x8 scope:local align:4 data:string +@3473 = .sdata2:0x80519608; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x8051960C; // type:object size:0x3 scope:local align:4 +@3653 = .sdata2:0x80519610; // type:object size:0x7 scope:local align:4 +@3655 = .sdata2:0x80519618; // type:object size:0x7 scope:local align:4 +@3656 = .sdata2:0x80519620; // type:object size:0x5 scope:local align:4 +@3657 = .sdata2:0x80519628; // type:object size:0x5 scope:local align:4 +@3659 = .sdata2:0x80519630; // type:object size:0x5 scope:local align:4 +@3660 = .sdata2:0x80519638; // type:object size:0x5 scope:local align:4 +@3690 = .sdata2:0x80519640; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata2:0x80519644; // type:object size:0x5 scope:local align:4 data:string +@3697 = .sdata2:0x8051964C; // type:object size:0x6 scope:local align:4 data:string +@3699 = .sdata2:0x80519654; // type:object size:0x7 scope:local align:4 +@3700 = .sdata2:0x8051965C; // type:object size:0x7 scope:local align:4 +@3701 = .sdata2:0x80519664; // type:object size:0x7 scope:local align:4 +@3702 = .sdata2:0x8051966C; // type:object size:0x8 scope:local align:4 data:string +@3704 = .sdata2:0x80519674; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x80519678; // type:object size:0x7 scope:local align:4 +@3936 = .sdata2:0x80519680; // type:object size:0x5 scope:local align:4 +@4003 = .sdata2:0x80519688; // type:object size:0x3 scope:local align:4 data:string +@3350 = .sdata2:0x80519690; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x80519694; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x80519698; // type:object size:0x5 scope:local align:4 data:string +@3491 = .sdata2:0x805196A0; // type:object size:0x4 scope:local align:4 data:string +@3492 = .sdata2:0x805196A4; // type:object size:0x4 scope:local align:4 data:string +@3542 = .sdata2:0x805196A8; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x805196AC; // type:object size:0x2 scope:local align:4 data:string +@3544 = .sdata2:0x805196B0; // type:object size:0x2 scope:local align:4 data:string +@3545 = .sdata2:0x805196B4; // type:object size:0x2 scope:local align:4 data:string +@3546 = .sdata2:0x805196B8; // type:object size:0x2 scope:local align:4 data:string +@3548 = .sdata2:0x805196BC; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x805196C0; // type:object size:0x5 scope:local align:4 data:string +@3596 = .sdata2:0x805196C8; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x805196CC; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x805196D0; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x805196D4; // type:object size:0x4 scope:local align:4 data:float +@3600 = .sdata2:0x805196D8; // type:object size:0x4 scope:local align:4 data:float +@3601 = .sdata2:0x805196DC; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x805196E0; // type:object size:0x4 scope:local align:4 data:float +@3603 = .sdata2:0x805196E4; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x805196E8; // type:object size:0x8 scope:local align:8 data:double +@4102 = .sdata2:0x805196F0; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x805196F4; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x805196F8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x805196FC; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x80519700; // type:object size:0x8 scope:local align:8 data:double +@4211 = .sdata2:0x80519708; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051970C; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x80519710; // type:object size:0x4 scope:local align:4 data:float +@4235 = .sdata2:0x80519714; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata2:0x80519718; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x8051971C; // type:object size:0x4 scope:local align:4 data:float +@4566 = .sdata2:0x80519720; // type:object size:0x4 scope:local align:4 data:float +@4785 = .sdata2:0x80519724; // type:object size:0x4 scope:local align:4 data:float +@4892 = .sdata2:0x80519728; // type:object size:0x4 scope:local align:4 data:float +@4898 = .sdata2:0x8051972C; // type:object size:0x4 scope:local align:4 data:float +@5015 = .sdata2:0x80519730; // type:object size:0x8 scope:local align:4 data:string +@5178 = .sdata2:0x80519738; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x80519740; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x80519744; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x80519748; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051974C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x80519750; // type:object size:0x3 scope:local align:4 data:string +@4385 = .sdata2:0x80519754; // type:object size:0x4 scope:local align:4 data:float +@4386 = .sdata2:0x80519758; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata2:0x8051975C; // type:object size:0x4 scope:local align:4 data:float +@4388 = .sdata2:0x80519760; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x80519764; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x80519768; // type:object size:0x4 scope:local align:4 data:float +@4726 = .sdata2:0x8051976C; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x80519770; // type:object size:0x4 scope:local align:4 data:float +@4728 = .sdata2:0x80519774; // type:object size:0x4 scope:local align:4 data:float +@4729 = .sdata2:0x80519778; // type:object size:0x4 scope:local align:4 data:float +@4730 = .sdata2:0x8051977C; // type:object size:0x4 scope:local align:4 data:float +@4731 = .sdata2:0x80519780; // type:object size:0x4 scope:local align:4 data:float +@4749 = .sdata2:0x80519784; // type:object size:0x4 scope:local align:4 data:float +@4786 = .sdata2:0x80519788; // type:object size:0x4 scope:local align:4 data:float +@4812 = .sdata2:0x8051978C; // type:object size:0x4 scope:local align:4 data:float +@4814 = .sdata2:0x80519790; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x80519798; // type:object size:0x8 scope:local align:8 data:double +@5033 = .sdata2:0x805197A0; // type:object size:0x4 scope:local align:4 data:float +@5035 = .sdata2:0x805197A4; // type:object size:0x4 scope:local align:4 data:float +@5039 = .sdata2:0x805197A8; // type:object size:0x4 scope:local align:4 data:float +@5040 = .sdata2:0x805197AC; // type:object size:0x4 scope:local align:4 data:float +@5041 = .sdata2:0x805197B0; // type:object size:0x4 scope:local align:4 data:float +@5042 = .sdata2:0x805197B4; // type:object size:0x4 scope:local align:4 data:float +@5226 = .sdata2:0x805197B8; // type:object size:0x4 scope:local align:4 data:float +@5323 = .sdata2:0x805197BC; // type:object size:0x6 scope:local align:4 data:string +@5352 = .sdata2:0x805197C4; // type:object size:0x4 scope:local align:4 data:float +@5353 = .sdata2:0x805197C8; // type:object size:0x6 scope:local align:4 data:string +@5354 = .sdata2:0x805197D0; // type:object size:0x4 scope:local align:4 data:float +@5355 = .sdata2:0x805197D4; // type:object size:0x4 scope:local align:4 data:float +@5357 = .sdata2:0x805197D8; // type:object size:0x4 scope:local align:4 data:float +@5360 = .sdata2:0x805197DC; // type:object size:0x4 scope:local align:4 data:float +@5363 = .sdata2:0x805197E0; // type:object size:0x4 scope:local align:4 data:float +@5364 = .sdata2:0x805197E4; // type:object size:0x4 scope:local align:4 data:float +@5368 = .sdata2:0x805197E8; // type:object size:0x4 scope:local align:4 data:float +@5369 = .sdata2:0x805197EC; // type:object size:0x4 scope:local align:4 data:float +@5423 = .sdata2:0x805197F0; // type:object size:0x8 scope:local align:4 data:string +@5577 = .sdata2:0x805197F8; // type:object size:0x6 scope:local align:4 data:string +@5578 = .sdata2:0x80519800; // type:object size:0x4 scope:local align:4 data:float +@5658 = .sdata2:0x80519804; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x80519808; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051980C; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x80519810; // type:object size:0x8 scope:local align:8 data:double +@3882 = .sdata2:0x80519818; // type:object size:0x4 scope:local align:4 data:float +@4009 = .sdata2:0x8051981C; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x80519820; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x80519824; // type:object size:0x4 scope:local align:4 data:float +@4177 = .sdata2:0x80519828; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata2:0x8051982C; // type:object size:0x4 scope:local align:4 data:float +@4259 = .sdata2:0x80519830; // type:object size:0x4 scope:local align:4 data:float +@4397 = .sdata2:0x80519834; // type:object size:0x4 scope:local align:4 data:float +@4487 = .sdata2:0x80519838; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x8051983C; // type:object size:0x4 scope:local align:4 data:float +@4491 = .sdata2:0x80519840; // type:object size:0x6 scope:local align:4 data:string +@4492 = .sdata2:0x80519848; // type:object size:0x4 scope:local align:4 data:float +@4493 = .sdata2:0x8051984C; // type:object size:0x4 scope:local align:4 data:float +@4494 = .sdata2:0x80519850; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata2:0x80519854; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x80519858; // type:object size:0x4 scope:local align:4 data:float +@4515 = .sdata2:0x8051985C; // type:object size:0x4 scope:local align:4 data:float +@4517 = .sdata2:0x80519860; // type:object size:0x4 scope:local align:4 data:float +@4519 = .sdata2:0x80519864; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x80519868; // type:object size:0x4 scope:local align:4 data:float +@4523 = .sdata2:0x8051986C; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x80519870; // type:object size:0x4 scope:local align:4 data:float +@4529 = .sdata2:0x80519874; // type:object size:0x4 scope:local align:4 data:float +@4582 = .sdata2:0x80519878; // type:object size:0x8 scope:local align:4 data:string +@3444 = .sdata2:0x80519880; // type:object size:0x5 scope:local align:4 data:string +@3502 = .sdata2:0x80519888; // type:object size:0x4 scope:local align:4 data:float +@3503 = .sdata2:0x8051988C; // type:object size:0x4 scope:local align:4 data:float +@3605 = .sdata2:0x80519890; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x80519894; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x80519898; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051989C; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x805198A0; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x805198A8; // type:object size:0x8 scope:local align:8 data:double +@3865 = .sdata2:0x805198B0; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x805198B4; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x805198B8; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x805198BC; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x805198C0; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x805198C4; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x805198C8; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x805198D0; // type:object size:0x7 scope:local align:4 data:string +@3640 = .sdata2:0x805198D8; // type:object size:0x8 scope:local align:4 data:string +@3641 = .sdata2:0x805198E0; // type:object size:0x7 scope:local align:4 data:string +@3642 = .sdata2:0x805198E8; // type:object size:0x8 scope:local align:4 data:string +@3643 = .sdata2:0x805198F0; // type:object size:0x8 scope:local align:4 data:string +@3644 = .sdata2:0x805198F8; // type:object size:0x7 scope:local align:4 data:string +@3645 = .sdata2:0x80519900; // type:object size:0x7 scope:local align:4 data:string +@3648 = .sdata2:0x80519908; // type:object size:0x7 scope:local align:4 data:string +@4364 = .sdata2:0x80519910; // type:object size:0x4 scope:local align:4 data:float +@5175 = .sdata2:0x80519914; // type:object size:0x4 scope:local align:4 data:float +@5177 = .sdata2:0x80519918; // type:object size:0x8 scope:local align:8 data:double +@3981 = .sdata2:0x80519920; // type:object size:0x8 scope:local align:4 data:string +@3982 = .sdata2:0x80519928; // type:object size:0x7 scope:local align:4 data:string +@3983 = .sdata2:0x80519930; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x80519934; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x80519938; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051993C; // type:object size:0x5 scope:local align:4 data:string +@3987 = .sdata2:0x80519944; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x80519948; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051994C; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x80519950; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x80519954; // type:object size:0x8 scope:local align:4 data:string +@3993 = .sdata2:0x8051995C; // type:object size:0x4 scope:local align:4 data:string +@3994 = .sdata2:0x80519960; // type:object size:0x6 scope:local align:4 data:string +@3995 = .sdata2:0x80519968; // type:object size:0x5 scope:local align:4 data:string +@3997 = .sdata2:0x80519970; // type:object size:0x4 scope:local align:4 data:float +@3999 = .sdata2:0x80519974; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x80519978; // type:object size:0x4 scope:local align:4 data:float +@4076 = .sdata2:0x8051997C; // type:object size:0x4 scope:local align:4 data:float +@4077 = .sdata2:0x80519980; // type:object size:0x4 scope:local align:4 data:float +@4078 = .sdata2:0x80519984; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x80519988; // type:object size:0x4 scope:local align:4 data:float +@4220 = .sdata2:0x8051998C; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x80519990; // type:object size:0x5 scope:local align:4 data:string +@4318 = .sdata2:0x80519998; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x8051999C; // type:object size:0x4 scope:local align:4 data:float +@4320 = .sdata2:0x805199A0; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x805199A4; // type:object size:0x4 scope:local align:4 data:float +@4323 = .sdata2:0x805199A8; // type:object size:0x8 scope:local align:8 data:double +@4340 = .sdata2:0x805199B0; // type:object size:0x4 scope:local align:4 data:float +@4341 = .sdata2:0x805199B4; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x805199B8; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x805199BC; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x805199C0; // type:object size:0x5 scope:local align:4 data:string +@4599 = .sdata2:0x805199C8; // type:object size:0x8 scope:local align:4 data:string +@4644 = .sdata2:0x805199D0; // type:object size:0x3 scope:local align:4 data:string +@3923 = .sdata2:0x805199D8; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x805199DC; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x805199E0; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x805199E4; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x805199E8; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x805199EC; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x805199F0; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata2:0x805199F4; // type:object size:0x4 scope:local align:4 data:float +@4355 = .sdata2:0x805199F8; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x805199FC; // type:object size:0x4 scope:local align:4 data:string +@4357 = .sdata2:0x80519A00; // type:object size:0x4 scope:local align:4 data:string +@4358 = .sdata2:0x80519A04; // type:object size:0x6 scope:local align:4 data:string +@4359 = .sdata2:0x80519A0C; // type:object size:0x4 scope:local align:4 data:string +@4360 = .sdata2:0x80519A10; // type:object size:0x2 scope:local align:4 data:string +@4437 = .sdata2:0x80519A14; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x80519A18; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x80519A1C; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x80519A20; // type:object size:0x6 scope:local align:4 data:string +@4538 = .sdata2:0x80519A28; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x80519A2C; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x80519A30; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x80519A34; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x80519A38; // type:object size:0x7 scope:local align:4 +@4545 = .sdata2:0x80519A40; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x80519A44; // type:object size:0x4 scope:local align:4 data:float +@4568 = .sdata2:0x80519A48; // type:object size:0x8 scope:local align:4 data:string +@3826 = .sdata2:0x80519A50; // type:object size:0x4 scope:local align:4 data:float +@3960 = .sdata2:0x80519A54; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x80519A58; // type:object size:0x4 scope:local align:4 data:float +@3962 = .sdata2:0x80519A5C; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x80519A60; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata2:0x80519A64; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x80519A68; // type:object size:0x4 scope:local align:4 data:float +@3966 = .sdata2:0x80519A6C; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x80519A70; // type:object size:0x4 scope:local align:4 data:float +@4156 = .sdata2:0x80519A74; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x80519A78; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata2:0x80519A80; // type:object size:0x8 scope:local align:8 data:double +@4286 = .sdata2:0x80519A88; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x80519A8C; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata2:0x80519A90; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x80519A94; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x80519A98; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x80519A9C; // type:object size:0x4 scope:local align:4 data:float +@4515 = .sdata2:0x80519AA0; // type:object size:0x4 scope:local align:4 data:float +@4516 = .sdata2:0x80519AA4; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x80519AA8; // type:object size:0x4 scope:local align:4 data:float +@4719 = .sdata2:0x80519AAC; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x80519AB0; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x80519AB4; // type:object size:0x4 scope:local align:4 data:float +@4773 = .sdata2:0x80519AB8; // type:object size:0x4 scope:local align:4 data:float +@4993 = .sdata2:0x80519ABC; // type:object size:0x7 scope:local align:4 data:string +@5016 = .sdata2:0x80519AC4; // type:object size:0x4 scope:local align:4 data:float +@5019 = .sdata2:0x80519AC8; // type:object size:0x4 scope:local align:4 data:float +@5020 = .sdata2:0x80519ACC; // type:object size:0x6 scope:local align:4 data:string +@5021 = .sdata2:0x80519AD4; // type:object size:0x4 scope:local align:4 data:float +@5022 = .sdata2:0x80519AD8; // type:object size:0x4 scope:local align:4 data:float +@5023 = .sdata2:0x80519ADC; // type:object size:0x4 scope:local align:4 data:float +@5025 = .sdata2:0x80519AE0; // type:object size:0x4 scope:local align:4 data:float +@5027 = .sdata2:0x80519AE4; // type:object size:0x7 scope:local align:4 +@5028 = .sdata2:0x80519AEC; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x80519AF0; // type:object size:0x8 scope:local align:4 data:string +@5188 = .sdata2:0x80519AF8; // type:object size:0x6 scope:local align:4 data:string +@3610 = .sdata2:0x80519B00; // type:object size:0x5 scope:local align:4 data:string +@3637 = .sdata2:0x80519B08; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x80519B0C; // type:object size:0x3 scope:local align:4 data:string +@3904 = .sdata2:0x80519B10; // type:object size:0x4 scope:local align:4 data:float +@4067 = .sdata2:0x80519B14; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x80519B18; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata2:0x80519B1C; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x80519B20; // type:object size:0x4 scope:local align:4 data:float +@4111 = .sdata2:0x80519B24; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x80519B28; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x80519B30; // type:object size:0x8 scope:local align:8 data:double +@4264 = .sdata2:0x80519B38; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x80519B3C; // type:object size:0x4 scope:local align:4 data:float +@4339 = .sdata2:0x80519B40; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x80519B44; // type:object size:0x4 scope:local align:4 data:float +@4481 = .sdata2:0x80519B48; // type:object size:0x6 scope:local align:4 data:string +@4482 = .sdata2:0x80519B50; // type:object size:0x4 scope:local align:4 data:float +@4483 = .sdata2:0x80519B54; // type:object size:0x4 scope:local align:4 data:float +@4484 = .sdata2:0x80519B58; // type:object size:0x4 scope:local align:4 data:float +@4486 = .sdata2:0x80519B5C; // type:object size:0x4 scope:local align:4 data:float +@4489 = .sdata2:0x80519B60; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x80519B64; // type:object size:0x4 scope:local align:4 data:float +@4492 = .sdata2:0x80519B68; // type:object size:0x4 scope:local align:4 data:float +@4494 = .sdata2:0x80519B6C; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata2:0x80519B70; // type:object size:0x4 scope:local align:4 data:float +@4016 = .sdata2:0x80519B78; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x80519B7C; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x80519B80; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x80519B88; // type:object size:0x8 scope:local align:8 data:double +@4174 = .sdata2:0x80519B90; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x80519B94; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x80519B98; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x80519B9C; // type:object size:0x4 scope:local align:4 data:float +@4476 = .sdata2:0x80519BA0; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x80519BA4; // type:object size:0x8 scope:local align:4 data:string +@4573 = .sdata2:0x80519BAC; // type:object size:0x5 scope:local align:4 data:string +@4827 = .sdata2:0x80519BB4; // type:object size:0x8 scope:local align:4 data:string +@2660 = .sdata2:0x80519BC0; // type:object size:0x4 scope:local align:4 data:float +@2661 = .sdata2:0x80519BC4; // type:object size:0x4 scope:local align:4 data:float +@2663 = .sdata2:0x80519BC8; // type:object size:0x8 scope:local align:8 data:double +@3893 = .sdata2:0x80519BD0; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x80519BD4; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x80519BD8; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x80519BDC; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x80519BE0; // type:object size:0x7 scope:local align:4 data:string +@4283 = .sdata2:0x80519BE8; // type:object size:0x4 scope:local align:4 data:float +@4286 = .sdata2:0x80519BEC; // type:object size:0x4 scope:local align:4 data:float +@4287 = .sdata2:0x80519BF0; // type:object size:0x6 scope:local align:4 data:string +@4288 = .sdata2:0x80519BF8; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x80519BFC; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x80519C00; // type:object size:0x4 scope:local align:4 data:float +@4292 = .sdata2:0x80519C04; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x80519C08; // type:object size:0x7 scope:local align:4 +@4295 = .sdata2:0x80519C10; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x80519C14; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x80519C18; // type:object size:0x8 scope:local align:4 data:string +@3641 = .sdata2:0x80519C20; // type:object size:0x6 scope:local align:4 data:string +@3767 = .sdata2:0x80519C28; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x80519C2C; // type:object size:0x7 scope:local align:4 data:string +@3350 = .sdata2:0x80519C38; // type:object size:0x8 scope:local align:4 data:string +@3383 = .sdata2:0x80519C40; // type:object size:0x8 scope:local align:4 data:string +@3819 = .sdata2:0x80519C48; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x80519C4C; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x80519C50; // type:object size:0x6 scope:local align:4 data:string +@3792 = .sdata2:0x80519C58; // type:object size:0x6 scope:local align:4 data:string +@3876 = .sdata2:0x80519C60; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x80519C64; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x80519C68; // type:object size:0x8 scope:local align:4 data:string +@3998 = .sdata2:0x80519C70; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x80519C74; // type:object size:0x8 scope:local align:4 data:string +@3287 = .sdata2:0x80519C80; // type:object size:0x4 scope:local align:4 data:float +@3329 = .sdata2:0x80519C84; // type:object size:0x4 scope:local align:4 data:float +@3330 = .sdata2:0x80519C88; // type:object size:0x4 scope:local align:4 data:float +@3373 = .sdata2:0x80519C90; // type:object size:0x4 scope:local align:4 data:string +@3528 = .sdata2:0x80519C94; // type:object size:0x4 scope:local align:4 data:float +@3573 = .sdata2:0x80519C98; // type:object size:0x5 scope:local align:4 data:string +@3596 = .sdata2:0x80519CA0; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x80519CA4; // type:object size:0x4 scope:local align:4 data:float +@3797 = .sdata2:0x80519CA8; // type:object size:0x4 scope:local align:4 data:float +@3213 = .sdata2:0x80519CB0; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata2:0x80519CB4; // type:object size:0x4 scope:local align:4 data:float +@3232 = .sdata2:0x80519CB8; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x80519CBC; // type:object size:0x4 scope:local align:4 data:float +@3234 = .sdata2:0x80519CC0; // type:object size:0x4 scope:local align:4 data:float +@3235 = .sdata2:0x80519CC4; // type:object size:0x4 scope:local align:4 data:float +@3242 = .sdata2:0x80519CC8; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x80519CD0; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x80519CD4; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x80519CD8; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x80519CDC; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x80519CE0; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x80519CE4; // type:object size:0x7 scope:local align:4 data:string +@3880 = .sdata2:0x80519CEC; // type:object size:0x7 scope:local align:4 data:string +@3881 = .sdata2:0x80519CF4; // type:object size:0x7 scope:local align:4 data:string +@3882 = .sdata2:0x80519CFC; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x80519D00; // type:object size:0x7 scope:local align:4 data:string +@3884 = .sdata2:0x80519D08; // type:object size:0x5 scope:local align:4 data:string +@3885 = .sdata2:0x80519D10; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x80519D14; // type:object size:0x5 scope:local align:4 data:string +@3887 = .sdata2:0x80519D1C; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x80519D20; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x80519D24; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x80519D28; // type:object size:0x4 scope:local align:4 data:string +@3893 = .sdata2:0x80519D2C; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x80519D30; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x80519D34; // type:object size:0x4 scope:local align:4 data:float +@3898 = .sdata2:0x80519D38; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x80519D3C; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x80519D40; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x80519D44; // type:object size:0x7 scope:local align:4 +@4022 = .sdata2:0x80519D4C; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x80519D50; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x80519D54; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x80519D58; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x80519D5C; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x80519D60; // type:object size:0x8 scope:local align:8 data:double +@4087 = .sdata2:0x80519D68; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x80519D6C; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata2:0x80519D70; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x80519D74; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata2:0x80519D78; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x80519D7C; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x80519D80; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x80519D84; // type:object size:0x4 scope:local align:4 data:float +@5147 = .sdata2:0x80519D88; // type:object size:0x4 scope:local align:4 data:float +@5148 = .sdata2:0x80519D8C; // type:object size:0x4 scope:local align:4 data:float +@5149 = .sdata2:0x80519D90; // type:object size:0x8 scope:local align:4 data:string +@5150 = .sdata2:0x80519D98; // type:object size:0x4 scope:local align:4 data:float +@5151 = .sdata2:0x80519D9C; // type:object size:0x7 scope:local align:4 data:string +@5152 = .sdata2:0x80519DA4; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata2:0x80519DA8; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x80519DAC; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata2:0x80519DB0; // type:object size:0x4 scope:local align:4 data:float +@5156 = .sdata2:0x80519DB4; // type:object size:0x4 scope:local align:4 data:float +@5157 = .sdata2:0x80519DB8; // type:object size:0x4 scope:local align:4 data:float +@5158 = .sdata2:0x80519DBC; // type:object size:0x4 scope:local align:4 data:float +@5159 = .sdata2:0x80519DC0; // type:object size:0x4 scope:local align:4 data:float +@5160 = .sdata2:0x80519DC4; // type:object size:0x4 scope:local align:4 data:float +@5161 = .sdata2:0x80519DC8; // type:object size:0x4 scope:local align:4 data:float +@5432 = .sdata2:0x80519DCC; // type:object size:0x4 scope:local align:4 data:float +@5514 = .sdata2:0x80519DD0; // type:object size:0x6 scope:local align:4 data:string +@5604 = .sdata2:0x80519DD8; // type:object size:0x4 scope:local align:4 data:float +@5676 = .sdata2:0x80519DDC; // type:object size:0x4 scope:local align:4 data:float +@5811 = .sdata2:0x80519DE0; // type:object size:0x4 scope:local align:4 data:float +@5812 = .sdata2:0x80519DE4; // type:object size:0x4 scope:local align:4 data:float +@5928 = .sdata2:0x80519DE8; // type:object size:0x8 scope:local align:4 data:string +@5931 = .sdata2:0x80519DF0; // type:object size:0x4 scope:local align:4 data:float +@3792 = .sdata2:0x80519DF8; // type:object size:0x3 scope:local align:4 data:string +@3793 = .sdata2:0x80519DFC; // type:object size:0x3 scope:local align:4 data:string +@3794 = .sdata2:0x80519E00; // type:object size:0x8 scope:local align:4 data:4byte +@3796 = .sdata2:0x80519E08; // type:object size:0x8 scope:local align:4 data:string +@3811 = .sdata2:0x80519E10; // type:object size:0x5 scope:local align:4 data:string +@3893 = .sdata2:0x80519E18; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x80519E1C; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x80519E20; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x80519E24; // type:object size:0x4 scope:local align:4 data:float +@3184 = .sdata2:0x80519E28; // type:object size:0x4 scope:local align:4 data:float +@3185 = .sdata2:0x80519E2C; // type:object size:0x4 scope:local align:4 data:float +@3357 = .sdata2:0x80519E30; // type:object size:0x4 scope:local align:4 data:float +@3358 = .sdata2:0x80519E34; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80519E38; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80519E3C; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x80519E40; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x80519E44; // type:object size:0x4 scope:local align:4 data:float +@3836 = .sdata2:0x80519E48; // type:object size:0x8 scope:local align:8 data:double +@3898 = .sdata2:0x80519E50; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x80519E54; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x80519E58; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x80519E5C; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x80519E60; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x80519E64; // type:object size:0x4 scope:local align:4 data:float +@4190 = .sdata2:0x80519E68; // type:object size:0x4 scope:local align:4 data:float +@4191 = .sdata2:0x80519E6C; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata2:0x80519E70; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata2:0x80519E74; // type:object size:0x4 scope:local align:4 data:float +@4194 = .sdata2:0x80519E78; // type:object size:0x4 scope:local align:4 data:float +@4247 = .sdata2:0x80519E7C; // type:object size:0x8 scope:local align:4 data:string +@4373 = .sdata2:0x80519E84; // type:object size:0x5 scope:local align:4 data:string +@4583 = .sdata2:0x80519E8C; // type:object size:0x5 scope:local align:4 data:string +@3464 = .sdata2:0x80519E98; // type:object size:0x7 scope:local align:4 data:string +@3527 = .sdata2:0x80519EA0; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata2:0x80519EA8; // type:object size:0x5 scope:local align:4 data:string +@3525 = .sdata2:0x80519EB0; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x80519EB4; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x80519EB8; // type:object size:0x4 scope:local align:4 data:float +@3753 = .sdata2:0x80519EBC; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x80519EC0; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x80519EC4; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x80519EC8; // type:object size:0x8 scope:local align:8 data:double +@3906 = .sdata2:0x80519ED0; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x80519ED4; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x80519ED8; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x80519EDC; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x80519EE0; // type:object size:0x4 scope:local align:4 data:float +@4745 = .sdata2:0x80519EE8; // type:object size:0x4 scope:local align:4 data:float +@4750 = .sdata2:0x80519EEC; // type:object size:0x4 scope:local align:4 data:float +@4751 = .sdata2:0x80519EF0; // type:object size:0x4 scope:local align:4 data:float +@5509 = .sdata2:0x80519EF4; // type:object size:0x4 scope:local align:4 data:float +@5511 = .sdata2:0x80519EF8; // type:object size:0x8 scope:local align:4 data:string +@5512 = .sdata2:0x80519F00; // type:object size:0x8 scope:local align:4 data:string +@5513 = .sdata2:0x80519F08; // type:object size:0x8 scope:local align:4 data:string +@5515 = .sdata2:0x80519F10; // type:object size:0x8 scope:local align:4 data:string +@6427 = .sdata2:0x80519F18; // type:object size:0x4 scope:local align:4 data:float +@6428 = .sdata2:0x80519F1C; // type:object size:0x4 scope:local align:4 data:float +@6429 = .sdata2:0x80519F20; // type:object size:0x4 scope:local align:4 data:float +@6430 = .sdata2:0x80519F24; // type:object size:0x4 scope:local align:4 data:float +@6431 = .sdata2:0x80519F28; // type:object size:0x4 scope:local align:4 data:float +@6432 = .sdata2:0x80519F2C; // type:object size:0x4 scope:local align:4 data:float +@6433 = .sdata2:0x80519F30; // type:object size:0x4 scope:local align:4 data:float +@6434 = .sdata2:0x80519F34; // type:object size:0x4 scope:local align:4 data:float +@6435 = .sdata2:0x80519F38; // type:object size:0x4 scope:local align:4 data:float +@6479 = .sdata2:0x80519F3C; // type:object size:0x4 scope:local align:4 data:float +@4525 = .sdata2:0x80519F40; // type:object size:0x4 scope:local align:4 data:float +@4526 = .sdata2:0x80519F44; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x80519F48; // type:object size:0x4 scope:local align:4 data:float +@4529 = .sdata2:0x80519F4C; // type:object size:0x4 scope:local align:4 data:float +@4853 = .sdata2:0x80519F50; // type:object size:0x8 scope:local align:4 data:string +@4858 = .sdata2:0x80519F58; // type:object size:0x8 scope:local align:4 data:string +@5119 = .sdata2:0x80519F60; // type:object size:0x4 scope:local align:4 data:float +@5121 = .sdata2:0x80519F68; // type:object size:0x8 scope:local align:8 data:double +@5706 = .sdata2:0x80519F70; // type:object size:0x4 scope:local align:4 data:float +@4483 = .sdata2:0x80519F78; // type:object size:0x4 scope:local align:4 data:float +@4484 = .sdata2:0x80519F7C; // type:object size:0x8 scope:local align:4 data:string +@4405 = .sdata2:0x80519F88; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x80519F8C; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x80519F90; // type:object size:0x4 scope:local align:4 data:float +@4452 = .sdata2:0x80519F94; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata2:0x80519F98; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata2:0x80519F9C; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata2:0x80519FA0; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata2:0x80519FA4; // type:object size:0x4 scope:local align:4 data:float +@4524 = .sdata2:0x80519FA8; // type:object size:0x7 scope:local align:4 data:string +@4400 = .sdata2:0x80519FB0; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x80519FB4; // type:object size:0x4 scope:local align:4 data:float +@3612 = .sdata2:0x80519FB8; // type:object size:0x3 scope:local align:4 data:string +@3631 = .sdata2:0x80519FBC; // type:object size:0x8 scope:local align:4 data:string +@3810 = .sdata2:0x80519FC4; // type:object size:0x6 scope:local align:4 data:string +@3462 = .sdata2:0x80519FD0; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x80519FD4; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x80519FD8; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x80519FDC; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x80519FE0; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x80519FE4; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x80519FE8; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x80519FEC; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x80519FF0; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata2:0x80519FF4; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x80519FF8; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x80519FFC; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x8051A000; // type:object size:0x1 scope:local align:4 +@4198 = .sdata2:0x8051A004; // type:object size:0x8 scope:local align:4 data:string +@4336 = .sdata2:0x8051A00C; // type:object size:0x4 scope:local align:4 data:float +@4395 = .sdata2:0x8051A010; // type:object size:0x4 scope:local align:4 data:float +@4752 = .sdata2:0x8051A018; // type:object size:0x4 scope:local align:4 data:float +@4755 = .sdata2:0x8051A01C; // type:object size:0x4 scope:local align:4 data:float +@4757 = .sdata2:0x8051A020; // type:object size:0x4 scope:local align:4 data:float +@4759 = .sdata2:0x8051A024; // type:object size:0x4 scope:local align:4 data:float +@4761 = .sdata2:0x8051A028; // type:object size:0x4 scope:local align:4 data:float +@4763 = .sdata2:0x8051A02C; // type:object size:0x4 scope:local align:4 data:float +@4766 = .sdata2:0x8051A030; // type:object size:0x4 scope:local align:4 data:float +@4768 = .sdata2:0x8051A034; // type:object size:0x4 scope:local align:4 data:float +@4789 = .sdata2:0x8051A038; // type:object size:0x4 scope:local align:4 data:float +@4424 = .sdata2:0x8051A040; // type:object size:0x7 scope:local align:4 data:string +@4426 = .sdata2:0x8051A048; // type:object size:0x5 scope:local align:4 data:string +@4463 = .sdata2:0x8051A050; // type:object size:0x4 scope:local align:4 data:float +@4464 = .sdata2:0x8051A054; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x8051A058; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x8051A05C; // type:object size:0x4 scope:local align:4 data:float +@4467 = .sdata2:0x8051A060; // type:object size:0x4 scope:local align:4 data:float +@4468 = .sdata2:0x8051A064; // type:object size:0x4 scope:local align:4 data:float +@4524 = .sdata2:0x8051A068; // type:object size:0x4 scope:local align:4 data:float +@4525 = .sdata2:0x8051A06C; // type:object size:0x4 scope:local align:4 data:float +@4526 = .sdata2:0x8051A070; // type:object size:0x4 scope:local align:4 data:float +@4527 = .sdata2:0x8051A074; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x8051A078; // type:object size:0x4 scope:local align:4 data:float +@4529 = .sdata2:0x8051A07C; // type:object size:0x4 scope:local align:4 data:float +@4530 = .sdata2:0x8051A080; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x8051A084; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x8051A088; // type:object size:0x4 scope:local align:4 data:float +@4534 = .sdata2:0x8051A08C; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x8051A090; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x8051A094; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x8051A098; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051A09C; // type:object size:0x4 scope:local align:4 data:float +@4539 = .sdata2:0x8051A0A0; // type:object size:0x4 scope:local align:4 data:float +@4540 = .sdata2:0x8051A0A4; // type:object size:0x4 scope:local align:4 data:float +@4541 = .sdata2:0x8051A0A8; // type:object size:0x4 scope:local align:4 data:float +@4542 = .sdata2:0x8051A0AC; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x8051A0B0; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x8051A0B4; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x8051A0B8; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x8051A0BC; // type:object size:0x4 scope:local align:4 data:float +@4605 = .sdata2:0x8051A0C0; // type:object size:0x4 scope:local align:4 data:float +@4607 = .sdata2:0x8051A0C8; // type:object size:0x8 scope:local align:8 data:double +@4626 = .sdata2:0x8051A0D0; // type:object size:0x4 scope:local align:4 data:float +@4737 = .sdata2:0x8051A0D4; // type:object size:0x4 scope:local align:4 data:float +@4738 = .sdata2:0x8051A0D8; // type:object size:0x4 scope:local align:4 data:float +@5078 = .sdata2:0x8051A0DC; // type:object size:0x4 scope:local align:4 data:float +@5079 = .sdata2:0x8051A0E0; // type:object size:0x4 scope:local align:4 data:float +@5080 = .sdata2:0x8051A0E4; // type:object size:0x4 scope:local align:4 data:float +@5081 = .sdata2:0x8051A0E8; // type:object size:0x4 scope:local align:4 data:float +@5153 = .sdata2:0x8051A0EC; // type:object size:0x4 scope:local align:4 data:float +@5154 = .sdata2:0x8051A0F0; // type:object size:0x4 scope:local align:4 data:float +@5155 = .sdata2:0x8051A0F4; // type:object size:0x4 scope:local align:4 data:float +@5166 = .sdata2:0x8051A0F8; // type:object size:0x4 scope:local align:4 data:float +@5309 = .sdata2:0x8051A0FC; // type:object size:0x6 scope:local align:4 data:string +@5349 = .sdata2:0x8051A104; // type:object size:0x5 scope:local align:4 data:string +@5352 = .sdata2:0x8051A10C; // type:object size:0x7 scope:local align:4 data:string +@5354 = .sdata2:0x8051A114; // type:object size:0x5 scope:local align:4 data:string +@5614 = .sdata2:0x8051A11C; // type:object size:0x4 scope:local align:4 data:float +@5615 = .sdata2:0x8051A120; // type:object size:0x4 scope:local align:4 data:float +@6171 = .sdata2:0x8051A128; // type:object size:0x8 scope:local align:8 data:double +@6531 = .sdata2:0x8051A130; // type:object size:0x4 scope:local align:4 data:float +@6532 = .sdata2:0x8051A134; // type:object size:0x4 scope:local align:4 data:float +@6881 = .sdata2:0x8051A138; // type:object size:0x3 scope:local align:4 data:string +@6884 = .sdata2:0x8051A13C; // type:object size:0x4 scope:local align:4 data:float +@6885 = .sdata2:0x8051A140; // type:object size:0x4 scope:local align:4 data:float +@6887 = .sdata2:0x8051A144; // type:object size:0x4 scope:local align:4 data:float +@6888 = .sdata2:0x8051A148; // type:object size:0x4 scope:local align:4 data:float +@6889 = .sdata2:0x8051A14C; // type:object size:0x4 scope:local align:4 data:float +@6957 = .sdata2:0x8051A150; // type:object size:0x2 scope:local align:4 data:string +@7482 = .sdata2:0x8051A154; // type:object size:0x4 scope:local align:4 data:float +@7484 = .sdata2:0x8051A158; // type:object size:0x4 scope:local align:4 data:float +@7485 = .sdata2:0x8051A15C; // type:object size:0x4 scope:local align:4 data:float +@7486 = .sdata2:0x8051A160; // type:object size:0x4 scope:local align:4 data:float +@7909 = .sdata2:0x8051A164; // type:object size:0x7 scope:local align:4 data:string +@3635 = .sdata2:0x8051A170; // type:object size:0x4 scope:local align:4 data:string +@3636 = .sdata2:0x8051A174; // type:object size:0x3 scope:local align:4 data:string +@3637 = .sdata2:0x8051A178; // type:object size:0x4 scope:local align:4 data:string +@3734 = .sdata2:0x8051A17C; // type:object size:0x6 scope:local align:4 data:string +@3365 = .sdata2:0x8051A188; // type:object size:0x4 scope:local align:4 data:string +@3366 = .sdata2:0x8051A18C; // type:object size:0x3 scope:local align:4 data:string +@4045 = .sdata2:0x8051A190; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051A194; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051A198; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051A19C; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051A1A0; // type:object size:0x4 scope:local align:4 data:float +@4389 = .sdata2:0x8051A1A8; // type:object size:0x4 scope:local align:4 data:float +@4390 = .sdata2:0x8051A1AC; // type:object size:0x4 scope:local align:4 data:float +@4391 = .sdata2:0x8051A1B0; // type:object size:0x4 scope:local align:4 data:float +@4392 = .sdata2:0x8051A1B4; // type:object size:0x4 scope:local align:4 data:float +@4935 = .sdata2:0x8051A1B8; // type:object size:0x4 scope:local align:4 data:float +@4936 = .sdata2:0x8051A1BC; // type:object size:0x7 scope:local align:4 data:string +@5075 = .sdata2:0x8051A1C4; // type:object size:0x4 scope:local align:4 data:float +@5177 = .sdata2:0x8051A1C8; // type:object size:0x8 scope:local align:4 data:string +@5179 = .sdata2:0x8051A1D0; // type:object size:0x6 scope:local align:4 +@5180 = .sdata2:0x8051A1D8; // type:object size:0x8 scope:local align:4 data:string +@5183 = .sdata2:0x8051A1E0; // type:object size:0x8 scope:local align:4 data:string +@5827 = .sdata2:0x8051A1E8; // type:object size:0x8 scope:local align:4 data:string +@5934 = .sdata2:0x8051A1F0; // type:object size:0x4 scope:local align:4 data:float +@5935 = .sdata2:0x8051A1F4; // type:object size:0x4 scope:local align:4 data:float +@5936 = .sdata2:0x8051A1F8; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051A200; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x8051A208; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051A20C; // type:object size:0x7 scope:local align:4 data:string +@4087 = .sdata2:0x8051A214; // type:object size:0x7 scope:local align:4 data:string +@4088 = .sdata2:0x8051A21C; // type:object size:0x4 scope:local align:4 data:float +@3325 = .sdata2:0x8051A220; // type:object size:0x4 scope:local align:4 data:float +@3360 = .sdata2:0x8051A224; // type:object size:0x4 scope:local align:4 data:float +@3460 = .sdata2:0x8051A228; // type:object size:0x7 scope:local align:4 data:string +@2665 = .sdata2:0x8051A230; // type:object size:0x8 scope:local align:4 data:string +@2668 = .sdata2:0x8051A238; // type:object size:0x7 scope:local align:4 data:string +@3227 = .sdata2:0x8051A240; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x8051A244; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051A248; // type:object size:0x8 scope:local align:4 data:string +@3402 = .sdata2:0x8051A250; // type:object size:0x8 scope:local align:4 data:string +@3405 = .sdata2:0x8051A258; // type:object size:0x8 scope:local align:8 data:double +@3866 = .sdata2:0x8051A260; // type:object size:0x7 scope:local align:4 data:string +@3909 = .sdata2:0x8051A268; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051A26C; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051A270; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051A274; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051A278; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051A27C; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051A280; // type:object size:0x8 scope:local align:8 data:double +@4038 = .sdata2:0x8051A288; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051A28C; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051A290; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x8051A294; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x8051A298; // type:object size:0x4 scope:local align:4 data:float +@4208 = .sdata2:0x8051A29C; // type:object size:0x4 scope:local align:4 data:float +@4230 = .sdata2:0x8051A2A0; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x8051A2A8; // type:object size:0x3 scope:local align:4 data:string +@3397 = .sdata2:0x8051A2B0; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x8051A2B4; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x8051A2B8; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051A2C0; // type:object size:0x8 scope:local align:8 data:double +@3423 = .sdata2:0x8051A2C8; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata2:0x8051A2CC; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x8051A2D0; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051A2D4; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051A2D8; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051A2DC; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x8051A2E0; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata2:0x8051A2E8; // type:object size:0x4 scope:local align:4 data:float +@2658 = .sdata2:0x8051A2F0; // type:object size:0x4 scope:local align:4 data:float +@2672 = .sdata2:0x8051A2F4; // type:object size:0x4 scope:local align:4 data:float +@2722 = .sdata2:0x8051A2F8; // type:object size:0x8 scope:local align:4 data:string +@3380 = .sdata2:0x8051A300; // type:object size:0x4 scope:local align:4 data:float +@3381 = .sdata2:0x8051A304; // type:object size:0x4 scope:local align:4 data:float +@3382 = .sdata2:0x8051A308; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x8051A310; // type:object size:0x8 scope:local align:8 data:double +@3940 = .sdata2:0x8051A318; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051A31C; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051A320; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x8051A324; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x8051A328; // type:object size:0x8 scope:local align:8 data:double +@3994 = .sdata2:0x8051A330; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051A334; // type:object size:0x5 scope:local align:4 data:string +@3996 = .sdata2:0x8051A33C; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x8051A340; // type:object size:0x4 scope:local align:4 data:float +@3998 = .sdata2:0x8051A344; // type:object size:0x4 scope:local align:4 data:float +@3999 = .sdata2:0x8051A348; // type:object size:0x4 scope:local align:4 data:float +@4000 = .sdata2:0x8051A34C; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051A350; // type:object size:0x7 scope:local align:4 data:string +@4117 = .sdata2:0x8051A358; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x8051A35C; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051A360; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051A364; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051A368; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051A36C; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051A370; // type:object size:0x4 scope:local align:4 data:float +@4694 = .sdata2:0x8051A374; // type:object size:0x4 scope:local align:4 data:float +@4695 = .sdata2:0x8051A378; // type:object size:0x4 scope:local align:4 data:float +@4696 = .sdata2:0x8051A37C; // type:object size:0x4 scope:local align:4 data:float +@4697 = .sdata2:0x8051A380; // type:object size:0x4 scope:local align:4 data:float +@4698 = .sdata2:0x8051A384; // type:object size:0x4 scope:local align:4 data:float +@4699 = .sdata2:0x8051A388; // type:object size:0x4 scope:local align:4 data:float +@4700 = .sdata2:0x8051A38C; // type:object size:0x4 scope:local align:4 data:float +@4701 = .sdata2:0x8051A390; // type:object size:0x4 scope:local align:4 data:float +@4702 = .sdata2:0x8051A394; // type:object size:0x4 scope:local align:4 data:float +@4703 = .sdata2:0x8051A398; // type:object size:0x4 scope:local align:4 data:float +@4704 = .sdata2:0x8051A39C; // type:object size:0x4 scope:local align:4 data:float +@4808 = .sdata2:0x8051A3A0; // type:object size:0x4 scope:local align:4 data:float +@4946 = .sdata2:0x8051A3A4; // type:object size:0x4 scope:local align:4 data:float +@4947 = .sdata2:0x8051A3A8; // type:object size:0x4 scope:local align:4 data:float +@4948 = .sdata2:0x8051A3AC; // type:object size:0x4 scope:local align:4 data:float +@4949 = .sdata2:0x8051A3B0; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata2:0x8051A3B4; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051A3B8; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata2:0x8051A3BC; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata2:0x8051A3C0; // type:object size:0x4 scope:local align:4 data:float +@5210 = .sdata2:0x8051A3C4; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata2:0x8051A3C8; // type:object size:0x4 scope:local align:4 data:float +@5212 = .sdata2:0x8051A3CC; // type:object size:0x4 scope:local align:4 data:float +@5213 = .sdata2:0x8051A3D0; // type:object size:0x4 scope:local align:4 data:float +@5214 = .sdata2:0x8051A3D4; // type:object size:0x4 scope:local align:4 data:float +@5215 = .sdata2:0x8051A3D8; // type:object size:0x4 scope:local align:4 data:float +@5244 = .sdata2:0x8051A3DC; // type:object size:0x4 scope:local align:4 data:float +@5316 = .sdata2:0x8051A3E0; // type:object size:0x4 scope:local align:4 data:float +@5317 = .sdata2:0x8051A3E4; // type:object size:0x4 scope:local align:4 data:float +@5340 = .sdata2:0x8051A3E8; // type:object size:0x4 scope:local align:4 data:4byte +@5342 = .sdata2:0x8051A3EC; // type:object size:0x4 scope:local align:4 data:4byte +@5364 = .sdata2:0x8051A3F0; // type:object size:0x4 scope:local align:4 data:4byte +@5376 = .sdata2:0x8051A3F4; // type:object size:0x4 scope:local align:4 data:4byte +@5785 = .sdata2:0x8051A3F8; // type:object size:0x4 scope:local align:4 data:float +@5786 = .sdata2:0x8051A3FC; // type:object size:0x3 scope:local align:4 data:string +@5787 = .sdata2:0x8051A400; // type:object size:0x8 scope:local align:8 data:double +@5788 = .sdata2:0x8051A408; // type:object size:0x4 scope:local align:4 data:float +@5789 = .sdata2:0x8051A40C; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata2:0x8051A410; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x8051A414; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata2:0x8051A418; // type:object size:0x4 scope:local align:4 data:float +@5838 = .sdata2:0x8051A41C; // type:object size:0x4 scope:local align:4 data:float +@5839 = .sdata2:0x8051A420; // type:object size:0x4 scope:local align:4 data:float +@5840 = .sdata2:0x8051A424; // type:object size:0x4 scope:local align:4 data:float +@5866 = .sdata2:0x8051A428; // type:object size:0x4 scope:local align:4 data:float +@5874 = .sdata2:0x8051A42C; // type:object size:0x4 scope:local align:4 data:string +@3546 = .sdata2:0x8051A430; // type:object size:0x7 scope:local align:4 data:string +@3610 = .sdata2:0x8051A438; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051A43C; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051A440; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x8051A444; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x8051A448; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051A44C; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051A450; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051A454; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051A458; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051A45C; // type:object size:0x4 scope:local align:4 data:float +@3588 = .sdata2:0x8051A460; // type:object size:0x6 scope:local align:4 data:string +@3589 = .sdata2:0x8051A468; // type:object size:0x7 scope:local align:4 data:string +@3630 = .sdata2:0x8051A470; // type:object size:0x8 scope:local align:4 data:string +@4410 = .sdata2:0x8051A478; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051A47C; // type:object size:0x7 scope:local align:4 data:string +@4412 = .sdata2:0x8051A484; // type:object size:0x4 scope:local align:4 data:float +@4716 = .sdata2:0x8051A488; // type:object size:0x4 scope:local align:4 data:float +@4717 = .sdata2:0x8051A48C; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x8051A490; // type:object size:0x4 scope:local align:4 data:float +@4874 = .sdata2:0x8051A494; // type:object size:0x4 scope:local align:4 data:float +@4875 = .sdata2:0x8051A498; // type:object size:0x4 scope:local align:4 data:float +@4876 = .sdata2:0x8051A49C; // type:object size:0x4 scope:local align:4 data:float +@4877 = .sdata2:0x8051A4A0; // type:object size:0x4 scope:local align:4 data:float +@4878 = .sdata2:0x8051A4A4; // type:object size:0x4 scope:local align:4 data:float +@4879 = .sdata2:0x8051A4A8; // type:object size:0x4 scope:local align:4 data:float +@4881 = .sdata2:0x8051A4B0; // type:object size:0x8 scope:local align:8 data:double +@4041 = .sdata2:0x8051A4B8; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x8051A4BC; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x8051A4C0; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051A4C4; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051A4C8; // type:object size:0x8 scope:local align:8 data:double +@4169 = .sdata2:0x8051A4D0; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051A4D4; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051A4D8; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051A4DC; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051A4E0; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051A4E4; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata2:0x8051A4E8; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x8051A4EC; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051A4F0; // type:object size:0x4 scope:local align:4 data:float +@4313 = .sdata2:0x8051A4F4; // type:object size:0x4 scope:local align:4 data:float +@4314 = .sdata2:0x8051A4F8; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051A4FC; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051A500; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata2:0x8051A504; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x8051A508; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata2:0x8051A50C; // type:object size:0x4 scope:local align:4 data:float +@2752 = .sdata2:0x8051A510; // type:object size:0x4 scope:local align:4 data:float +@2774 = .sdata2:0x8051A518; // type:object size:0x4 scope:local align:4 data:float +@2785 = .sdata2:0x8051A51C; // type:object size:0x4 scope:local align:4 data:float +@2878 = .sdata2:0x8051A520; // type:object size:0x4 scope:local align:4 data:float +@2948 = .sdata2:0x8051A524; // type:object size:0x8 scope:local align:4 data:string +@3196 = .sdata2:0x8051A52C; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata2:0x8051A530; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x8051A534; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x8051A538; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata2:0x8051A53C; // type:object size:0x4 scope:local align:4 data:float +@2662 = .sdata2:0x8051A540; // type:object size:0x4 scope:local align:4 data:float +@2663 = .sdata2:0x8051A544; // type:object size:0x4 scope:local align:4 data:float +@2664 = .sdata2:0x8051A548; // type:object size:0x4 scope:local align:4 data:float +@2764 = .sdata2:0x8051A54C; // type:object size:0x4 scope:local align:4 data:float +@2765 = .sdata2:0x8051A550; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata2:0x8051A558; // type:object size:0x4 scope:local align:4 data:float +@3419 = .sdata2:0x8051A55C; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x8051A560; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x8051A564; // type:object size:0x4 scope:local align:4 data:float +@3422 = .sdata2:0x8051A568; // type:object size:0x4 scope:local align:4 data:float +@3423 = .sdata2:0x8051A56C; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x8051A570; // type:object size:0x8 scope:local align:8 data:double +@3426 = .sdata2:0x8051A578; // type:object size:0x8 scope:local align:8 data:double +@3544 = .sdata2:0x8051A580; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051A584; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051A588; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051A58C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051A590; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051A594; // type:object size:0x4 scope:local align:4 data:4byte +@3918 = .sdata2:0x8051A598; // type:object size:0x4 scope:local align:4 data:4byte +@3573 = .sdata2:0x8051A5A0; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x8051A5A4; // type:object size:0x4 scope:local align:4 data:float +@3575 = .sdata2:0x8051A5A8; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x8051A5AC; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051A5B0; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x8051A5B4; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051A5B8; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051A5BC; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x8051A5C0; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x8051A5C4; // type:object size:0x4 scope:local align:4 data:float +@3849 = .sdata2:0x8051A5C8; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051A5CC; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051A5D0; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051A5D4; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata2:0x8051A5D8; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x8051A5DC; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x8051A5E0; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x8051A5E4; // type:object size:0x4 scope:local align:4 data:float +@4713 = .sdata2:0x8051A5E8; // type:object size:0x4 scope:local align:4 data:float +@4714 = .sdata2:0x8051A5EC; // type:object size:0x4 scope:local align:4 data:float +@4715 = .sdata2:0x8051A5F0; // type:object size:0x4 scope:local align:4 data:float +@4722 = .sdata2:0x8051A5F8; // type:object size:0x8 scope:local align:8 data:double +@3474 = .sdata2:0x8051A600; // type:object size:0x4 scope:local align:4 data:float +@3475 = .sdata2:0x8051A604; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x8051A608; // type:object size:0x4 scope:local align:4 data:float +@3478 = .sdata2:0x8051A60C; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051A610; // type:object size:0x7 scope:local align:4 data:string +@3605 = .sdata2:0x8051A618; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051A620; // type:object size:0x8 scope:local align:8 data:double +@3664 = .sdata2:0x8051A628; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051A62C; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051A630; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051A634; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051A638; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051A63C; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051A640; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x8051A648; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x8051A64C; // type:object size:0x4 scope:local align:4 data:float +@3426 = .sdata2:0x8051A650; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x8051A654; // type:object size:0x4 scope:local align:4 data:float +@3428 = .sdata2:0x8051A658; // type:object size:0x4 scope:local align:4 data:float +@3430 = .sdata2:0x8051A660; // type:object size:0x8 scope:local align:8 data:double +@3522 = .sdata2:0x8051A668; // type:object size:0x4 scope:local align:4 data:float +@3528 = .sdata2:0x8051A66C; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051A670; // type:object size:0x8 scope:local align:8 data:double +@3559 = .sdata2:0x8051A678; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051A67C; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051A680; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051A684; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x8051A688; // type:object size:0x4 scope:local align:4 data:float +@3286 = .sdata2:0x8051A690; // type:object size:0x4 scope:local align:4 data:float +@3288 = .sdata2:0x8051A698; // type:object size:0x8 scope:local align:8 data:double +@3351 = .sdata2:0x8051A6A0; // type:object size:0x4 scope:local align:4 data:float +@3470 = .sdata2:0x8051A6A4; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x8051A6A8; // type:object size:0x4 scope:local align:4 data:float +@3473 = .sdata2:0x8051A6B0; // type:object size:0x8 scope:local align:8 data:double +@3594 = .sdata2:0x8051A6B8; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x8051A6BC; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x8051A6C0; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x8051A6C8; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x8051A6D0; // type:object size:0x8 scope:local align:8 data:double +@3700 = .sdata2:0x8051A6D8; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051A6DC; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051A6E0; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051A6E4; // type:object size:0x8 scope:local align:4 data:4byte +@4406 = .sdata2:0x8051A6EC; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051A6F0; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x8051A6F4; // type:object size:0x8 scope:local align:4 data:4byte +@4607 = .sdata2:0x8051A6FC; // type:object size:0x4 scope:local align:4 data:float +@4825 = .sdata2:0x8051A700; // type:object size:0x4 scope:local align:4 data:float +@4826 = .sdata2:0x8051A704; // type:object size:0x4 scope:local align:4 data:float +@4827 = .sdata2:0x8051A708; // type:object size:0x4 scope:local align:4 data:float +@4828 = .sdata2:0x8051A70C; // type:object size:0x4 scope:local align:4 data:float +@4829 = .sdata2:0x8051A710; // type:object size:0x4 scope:local align:4 data:float +@4830 = .sdata2:0x8051A714; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x8051A718; // type:object size:0x4 scope:local align:4 data:float +@3619 = .sdata2:0x8051A71C; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata2:0x8051A720; // type:object size:0x8 scope:local align:8 data:double +@3682 = .sdata2:0x8051A728; // type:object size:0x4 scope:local align:4 data:float +@3294 = .sdata2:0x8051A730; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x8051A738; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051A740; // type:object size:0x8 scope:local align:8 data:double +@3720 = .sdata2:0x8051A748; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051A74C; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051A750; // type:object size:0x8 scope:local align:4 data:4byte +@3856 = .sdata2:0x8051A758; // type:object size:0x2 scope:local align:4 data:2byte +@3952 = .sdata2:0x8051A75C; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051A760; // type:object size:0x5 scope:local align:4 data:string +@3963 = .sdata2:0x8051A768; // type:object size:0x8 scope:local align:4 data:4byte +@3964 = .sdata2:0x8051A770; // type:object size:0x2 scope:local align:4 data:2byte +@4109 = .sdata2:0x8051A774; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata2:0x8051A778; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051A780; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051A788; // type:object size:0x8 scope:local align:8 data:double +@3657 = .sdata2:0x8051A790; // type:object size:0x5 scope:local align:4 data:string +@3658 = .sdata2:0x8051A798; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051A79C; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051A7A0; // type:object size:0x4 scope:local align:4 data:float +@4076 = .sdata2:0x8051A7A4; // type:object size:0x4 scope:local align:4 data:float +@3384 = .sdata2:0x8051A7A8; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x8051A7AC; // type:object size:0x4 scope:local align:4 data:float +@3395 = .sdata2:0x8051A7B0; // type:object size:0x8 scope:local align:8 data:double +@3441 = .sdata2:0x8051A7B8; // type:object size:0x4 scope:local align:4 data:float +@3443 = .sdata2:0x8051A7C0; // type:object size:0x8 scope:local align:8 data:double +@3462 = .sdata2:0x8051A7C8; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x8051A7CC; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x8051A7D0; // type:object size:0x5 scope:local align:4 data:string +@3616 = .sdata2:0x8051A7D8; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata2:0x8051A7DC; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x8051A7E0; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051A7E4; // type:object size:0x4 scope:local align:4 data:float +@3622 = .sdata2:0x8051A7E8; // type:object size:0x4 scope:local align:4 data:float +@3624 = .sdata2:0x8051A7EC; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051A7F0; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051A7F4; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051A7F8; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x8051A7FC; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051A800; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051A804; // type:object size:0x4 scope:local align:4 data:float +@3637 = .sdata2:0x8051A808; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051A80C; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051A810; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051A814; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051A818; // type:object size:0x4 scope:local align:4 data:float +@3651 = .sdata2:0x8051A81C; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x8051A820; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051A824; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051A828; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051A82C; // type:object size:0x4 scope:local align:4 data:float +@3725 = .sdata2:0x8051A830; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x8051A834; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051A838; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x8051A83C; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051A840; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051A844; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051A848; // type:object size:0x4 scope:local align:4 data:float +@3743 = .sdata2:0x8051A84C; // type:object size:0x4 scope:local align:4 data:float +@3747 = .sdata2:0x8051A850; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x8051A854; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051A858; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051A85C; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051A860; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051A864; // type:object size:0x4 scope:local align:4 data:float +@3772 = .sdata2:0x8051A868; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x8051A86C; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051A870; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051A874; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051A878; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051A87C; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x8051A880; // type:object size:0x4 scope:local align:4 data:float +@3793 = .sdata2:0x8051A884; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051A888; // type:object size:0x4 scope:local align:4 data:float +@3798 = .sdata2:0x8051A88C; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051A890; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051A894; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051A898; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051A89C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051A8A0; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051A8A4; // type:object size:0x4 scope:local align:4 data:float +@2666 = .sdata2:0x8051A8A8; // type:object size:0x4 scope:local align:4 data:float +@2694 = .sdata2:0x8051A8AC; // type:object size:0x4 scope:local align:4 data:float +@2825 = .sdata2:0x8051A8B0; // type:object size:0x4 scope:local align:4 data:float +@2850 = .sdata2:0x8051A8B4; // type:object size:0x4 scope:local align:4 data:float +@3467 = .sdata2:0x8051A8B8; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x8051A8BC; // type:object size:0x4 scope:local align:4 data:float +@3469 = .sdata2:0x8051A8C0; // type:object size:0x4 scope:local align:4 data:float +@3649 = .sdata2:0x8051A8C4; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x8051A8C8; // type:object size:0x4 scope:local align:4 data:float +@3789 = .sdata2:0x8051A8D0; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x8051A8D4; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x8051A8D8; // type:object size:0x4 scope:local align:4 data:float +@3793 = .sdata2:0x8051A8DC; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051A8E0; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051A8E4; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051A8E8; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051A8EC; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051A8F0; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051A8F4; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051A8F8; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051A8FC; // type:object size:0x4 scope:local align:4 data:float +@4291 = .sdata2:0x8051A900; // type:object size:0x4 scope:local align:4 data:float +@4292 = .sdata2:0x8051A904; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x8051A908; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x8051A90C; // type:object size:0x4 scope:local align:4 data:float +@4295 = .sdata2:0x8051A910; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x8051A914; // type:object size:0x4 scope:local align:4 data:float +@4298 = .sdata2:0x8051A918; // type:object size:0x8 scope:local align:8 data:double +@4375 = .sdata2:0x8051A920; // type:object size:0x4 scope:local align:4 data:float +@4376 = .sdata2:0x8051A924; // type:object size:0x4 scope:local align:4 data:float +@4390 = .sdata2:0x8051A928; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata2:0x8051A92C; // type:object size:0x4 scope:local align:4 data:float +@3600 = .sdata2:0x8051A930; // type:object size:0x5 scope:local align:4 data:string +@3601 = .sdata2:0x8051A938; // type:object size:0x5 scope:local align:4 data:string +@3602 = .sdata2:0x8051A940; // type:object size:0x5 scope:local align:4 data:string +@3603 = .sdata2:0x8051A948; // type:object size:0x6 scope:local align:4 data:string +@3604 = .sdata2:0x8051A950; // type:object size:0x5 scope:local align:4 data:string +@3605 = .sdata2:0x8051A958; // type:object size:0x6 scope:local align:4 data:string +@3628 = .sdata2:0x8051A960; // type:object size:0x4 scope:local align:4 data:float +@3647 = .sdata2:0x8051A968; // type:object size:0x5 scope:local align:4 data:string +@3648 = .sdata2:0x8051A970; // type:object size:0x5 scope:local align:4 data:string +@3649 = .sdata2:0x8051A978; // type:object size:0x5 scope:local align:4 data:string +@3650 = .sdata2:0x8051A980; // type:object size:0x5 scope:local align:4 data:string +@3652 = .sdata2:0x8051A988; // type:object size:0x5 scope:local align:4 data:string +@3653 = .sdata2:0x8051A990; // type:object size:0x7 scope:local align:4 data:string +@3654 = .sdata2:0x8051A998; // type:object size:0x5 scope:local align:4 data:string +@3656 = .sdata2:0x8051A9A0; // type:object size:0x7 scope:local align:4 data:string +@3669 = .sdata2:0x8051A9A8; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x8051A9AC; // type:object size:0x4 scope:local align:4 data:float +@3704 = .sdata2:0x8051A9B0; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051A9B4; // type:object size:0x4 scope:local align:4 data:float +@3706 = .sdata2:0x8051A9B8; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata2:0x8051A9C0; // type:object size:0x8 scope:local align:8 data:double +@3810 = .sdata2:0x8051A9C8; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051A9CC; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051A9D0; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051A9D4; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x8051A9D8; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051A9DC; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051A9E0; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051A9E4; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051A9E8; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051A9EC; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051A9F0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051A9F4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051A9F8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051A9FC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051AA00; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x8051AA08; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x8051AA0C; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051AA10; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051AA14; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051AA18; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051AA1C; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051AA20; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051AA24; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051AA28; // type:object size:0x4 scope:local align:4 data:float +@4145 = .sdata2:0x8051AA2C; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051AA30; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051AA34; // type:object size:0x4 scope:local align:4 data:float +@4217 = .sdata2:0x8051AA38; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051AA3C; // type:object size:0x4 scope:local align:4 data:float +@4276 = .sdata2:0x8051AA40; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x8051AA44; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051AA48; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x8051AA4C; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051AA50; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051AA58; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051AA5C; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051AA60; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051AA64; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051AA68; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051AA70; // type:object size:0x8 scope:local align:4 data:string +@3930 = .sdata2:0x8051AA78; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051AA7C; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051AA80; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051AA84; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051AA88; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051AA8C; // type:object size:0x4 scope:local align:4 data:float +@3964 = .sdata2:0x8051AA90; // type:object size:0x8 scope:local align:4 data:string +@3980 = .sdata2:0x8051AA98; // type:object size:0x4 scope:local align:4 data:float +@3992 = .sdata2:0x8051AA9C; // type:object size:0x4 scope:local align:4 data:float +@3993 = .sdata2:0x8051AAA0; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051AAA8; // type:object size:0x8 scope:local align:8 data:double +@4116 = .sdata2:0x8051AAB0; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051AAB4; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x8051AAB8; // type:object size:0x4 scope:local align:4 data:float +@4326 = .sdata2:0x8051AABC; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x8051AAC0; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051AAC4; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x8051AAC8; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x8051AACC; // type:object size:0x4 scope:local align:4 data:float +@4452 = .sdata2:0x8051AAD0; // type:object size:0x4 scope:local align:4 data:float +@4704 = .sdata2:0x8051AAD4; // type:object size:0x4 scope:local align:4 data:float +@3683 = .sdata2:0x8051AAD8; // type:object size:0x5 scope:local align:4 data:string +@3684 = .sdata2:0x8051AAE0; // type:object size:0x6 scope:local align:4 data:string +@3685 = .sdata2:0x8051AAE8; // type:object size:0x5 scope:local align:4 data:string +@3686 = .sdata2:0x8051AAF0; // type:object size:0x7 scope:local align:4 data:string +@3687 = .sdata2:0x8051AAF8; // type:object size:0x5 scope:local align:4 data:string +@3688 = .sdata2:0x8051AB00; // type:object size:0x5 scope:local align:4 data:string +@3691 = .sdata2:0x8051AB08; // type:object size:0x8 scope:local align:4 data:string +@3692 = .sdata2:0x8051AB10; // type:object size:0x7 scope:local align:4 data:string +@3693 = .sdata2:0x8051AB18; // type:object size:0x8 scope:local align:4 data:string +@3694 = .sdata2:0x8051AB20; // type:object size:0x8 scope:local align:4 data:string +@3695 = .sdata2:0x8051AB28; // type:object size:0x4 scope:local align:4 data:string +@3705 = .sdata2:0x8051AB2C; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x8051AB30; // type:object size:0x4 scope:local align:4 data:float +@4074 = .sdata2:0x8051AB34; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051AB38; // type:object size:0x7 scope:local align:4 data:string +@3855 = .sdata2:0x8051AB40; // type:object size:0x5 scope:local align:4 data:string +@3856 = .sdata2:0x8051AB48; // type:object size:0x5 scope:local align:4 data:string +@3857 = .sdata2:0x8051AB50; // type:object size:0x6 scope:local align:4 data:string +@3873 = .sdata2:0x8051AB58; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051AB5C; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051AB60; // type:object size:0x7 scope:local align:4 data:string +@3663 = .sdata2:0x8051AB68; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x8051AB6C; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051AB70; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051AB74; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x8051AB78; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051AB7C; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051AB80; // type:object size:0x5 scope:local align:4 data:string +@3838 = .sdata2:0x8051AB88; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051AB8C; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051AB90; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051AB94; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051AB98; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051AB9C; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051ABA0; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051ABA4; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051ABA8; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x8051ABB0; // type:object size:0x8 scope:local align:8 data:double +@3964 = .sdata2:0x8051ABB8; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x8051ABBC; // type:object size:0x4 scope:local align:4 data:float +@4017 = .sdata2:0x8051ABC0; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051ABC4; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x8051ABC8; // type:object size:0x5 scope:local align:4 data:string +@3600 = .sdata2:0x8051ABD0; // type:object size:0x7 scope:local align:4 data:string +@3602 = .sdata2:0x8051ABD8; // type:object size:0x5 scope:local align:4 data:string +@3603 = .sdata2:0x8051ABE0; // type:object size:0x5 scope:local align:4 data:string +@3604 = .sdata2:0x8051ABE8; // type:object size:0x5 scope:local align:4 data:string +@3626 = .sdata2:0x8051ABF0; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051ABF4; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata2:0x8051ABF8; // type:object size:0x4 scope:local align:4 data:float +@3709 = .sdata2:0x8051ABFC; // type:object size:0x4 scope:local align:4 data:float +@3524 = .sdata2:0x8051AC00; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata2:0x8051AC04; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x8051AC08; // type:object size:0x4 scope:local align:4 data:float +@3588 = .sdata2:0x8051AC0C; // type:object size:0x4 scope:local align:4 data:float +@3589 = .sdata2:0x8051AC10; // type:object size:0x4 scope:local align:4 data:float +@3591 = .sdata2:0x8051AC14; // type:object size:0x4 scope:local align:4 data:float +@3592 = .sdata2:0x8051AC18; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051AC1C; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x8051AC20; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x8051AC24; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x8051AC28; // type:object size:0x4 scope:local align:4 data:float +@3600 = .sdata2:0x8051AC2C; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051AC30; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051AC34; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051AC38; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051AC3C; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051AC40; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051AC44; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051AC48; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051AC4C; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051AC50; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x8051AC54; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8051AC58; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x8051AC5C; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x8051AC60; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x8051AC68; // type:object size:0x8 scope:local align:8 data:double +@4149 = .sdata2:0x8051AC70; // type:object size:0x6 scope:local align:4 data:string +@4163 = .sdata2:0x8051AC78; // type:object size:0x8 scope:local align:8 data:double +@3923 = .sdata2:0x8051AC80; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051AC84; // type:object size:0x4 scope:local align:4 data:float +@3995 = .sdata2:0x8051AC88; // type:object size:0x5 scope:local align:4 data:string +@3996 = .sdata2:0x8051AC90; // type:object size:0x7 scope:local align:4 data:string +@3998 = .sdata2:0x8051AC98; // type:object size:0x5 scope:local align:4 data:string +@3999 = .sdata2:0x8051ACA0; // type:object size:0x5 scope:local align:4 data:string +@4000 = .sdata2:0x8051ACA8; // type:object size:0x5 scope:local align:4 data:string +@4016 = .sdata2:0x8051ACB0; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x8051ACB4; // type:object size:0x4 scope:local align:4 data:float +@4165 = .sdata2:0x8051ACB8; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x8051ACC0; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata2:0x8051ACC4; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051ACC8; // type:object size:0x4 scope:local align:4 data:float +@3592 = .sdata2:0x8051ACCC; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x8051ACD0; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051ACD4; // type:object size:0x4 scope:local align:4 data:float +@3770 = .sdata2:0x8051ACD8; // type:object size:0x8 scope:local align:4 data:4byte +@3858 = .sdata2:0x8051ACE0; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051ACE4; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051ACE8; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051ACEC; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051ACF0; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051ACF4; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051ACF8; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051AD00; // type:object size:0x8 scope:local align:8 data:double +@3970 = .sdata2:0x8051AD08; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051AD0C; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051AD10; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051AD14; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051AD18; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051AD1C; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051AD20; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051AD24; // type:object size:0x4 scope:local align:4 data:float +@4308 = .sdata2:0x8051AD28; // type:object size:0x4 scope:local align:4 data:float +@4309 = .sdata2:0x8051AD2C; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x8051AD30; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x8051AD34; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051AD38; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x8051AD3C; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata2:0x8051AD40; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051AD48; // type:object size:0x5 scope:local align:4 data:string +@3660 = .sdata2:0x8051AD50; // type:object size:0x6 scope:local align:4 data:string +@3661 = .sdata2:0x8051AD58; // type:object size:0x5 scope:local align:4 data:string +@3662 = .sdata2:0x8051AD60; // type:object size:0x7 scope:local align:4 data:string +@3663 = .sdata2:0x8051AD68; // type:object size:0x5 scope:local align:4 data:string +@3664 = .sdata2:0x8051AD70; // type:object size:0x5 scope:local align:4 data:string +@3667 = .sdata2:0x8051AD78; // type:object size:0x8 scope:local align:4 data:string +@3668 = .sdata2:0x8051AD80; // type:object size:0x7 scope:local align:4 data:string +@3669 = .sdata2:0x8051AD88; // type:object size:0x8 scope:local align:4 data:string +@3679 = .sdata2:0x8051AD90; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051AD94; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051AD98; // type:object size:0x4 scope:local align:4 data:float +@3540 = .sdata2:0x8051ADA0; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051ADA4; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051ADA8; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051ADB0; // type:object size:0x8 scope:local align:4 data:string +@3930 = .sdata2:0x8051ADB8; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051ADBC; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051ADC0; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051ADC4; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051ADC8; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051ADCC; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051ADD0; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051ADD4; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x8051ADD8; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051ADE0; // type:object size:0x8 scope:local align:8 data:double +@4105 = .sdata2:0x8051ADE8; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051ADEC; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051ADF0; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051ADF4; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051ADF8; // type:object size:0x4 scope:local align:4 data:float +@4317 = .sdata2:0x8051ADFC; // type:object size:0x4 scope:local align:4 data:float +@4318 = .sdata2:0x8051AE00; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x8051AE04; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata2:0x8051AE08; // type:object size:0x4 scope:local align:4 data:float +@4634 = .sdata2:0x8051AE0C; // type:object size:0x8 scope:local align:4 data:string +@4668 = .sdata2:0x8051AE14; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051AE18; // type:object size:0x5 scope:local align:4 data:string +@3962 = .sdata2:0x8051AE20; // type:object size:0x6 scope:local align:4 data:string +@3963 = .sdata2:0x8051AE28; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051AE30; // type:object size:0x7 scope:local align:4 data:string +@3965 = .sdata2:0x8051AE38; // type:object size:0x5 scope:local align:4 data:string +@3966 = .sdata2:0x8051AE40; // type:object size:0x5 scope:local align:4 data:string +@3969 = .sdata2:0x8051AE48; // type:object size:0x8 scope:local align:4 data:string +@3970 = .sdata2:0x8051AE50; // type:object size:0x7 scope:local align:4 data:string +@3971 = .sdata2:0x8051AE58; // type:object size:0x4 scope:local align:4 data:string +@3972 = .sdata2:0x8051AE5C; // type:object size:0x8 scope:local align:4 data:string +@3973 = .sdata2:0x8051AE64; // type:object size:0x8 scope:local align:4 data:string +@3974 = .sdata2:0x8051AE6C; // type:object size:0x4 scope:local align:4 data:string +@3988 = .sdata2:0x8051AE70; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x8051AE74; // type:object size:0x4 scope:local align:4 data:float +@4365 = .sdata2:0x8051AE78; // type:object size:0x4 scope:local align:4 data:float +@4660 = .sdata2:0x8051AE7C; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051AE80; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051AE84; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051AE88; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051AE8C; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051AE90; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051AE94; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051AE98; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051AE9C; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051AEA0; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051AEA8; // type:object size:0x8 scope:local align:4 data:string +@3937 = .sdata2:0x8051AEB0; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051AEB4; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051AEB8; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051AEBC; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051AEC0; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051AEC4; // type:object size:0x4 scope:local align:4 data:float +@4009 = .sdata2:0x8051AEC8; // type:object size:0x8 scope:local align:4 data:string +@4010 = .sdata2:0x8051AED0; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051AED4; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051AED8; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051AEDC; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051AEE0; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051AEE4; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051AEE8; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051AEEC; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051AEF0; // type:object size:0x8 scope:local align:8 data:double +@4301 = .sdata2:0x8051AEF8; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051AEFC; // type:object size:0x4 scope:local align:4 data:float +@4510 = .sdata2:0x8051AF00; // type:object size:0x4 scope:local align:4 data:float +@4511 = .sdata2:0x8051AF04; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x8051AF08; // type:object size:0x4 scope:local align:4 data:float +@4513 = .sdata2:0x8051AF0C; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x8051AF10; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x8051AF14; // type:object size:0x4 scope:local align:4 data:float +@4888 = .sdata2:0x8051AF18; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051AF20; // type:object size:0x5 scope:local align:4 data:string +@3830 = .sdata2:0x8051AF28; // type:object size:0x5 scope:local align:4 data:string +@3831 = .sdata2:0x8051AF30; // type:object size:0x7 scope:local align:4 data:string +@3861 = .sdata2:0x8051AF38; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051AF40; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051AF44; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051AF48; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051AF4C; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051AF50; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051AF54; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051AF58; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051AF60; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051AF64; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051AF68; // type:object size:0x8 scope:local align:8 data:double +@3906 = .sdata2:0x8051AF70; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051AF78; // type:object size:0x5 scope:local align:4 data:string +@3830 = .sdata2:0x8051AF80; // type:object size:0x5 scope:local align:4 data:string +@3831 = .sdata2:0x8051AF88; // type:object size:0x7 scope:local align:4 data:string +@3861 = .sdata2:0x8051AF90; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051AF98; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051AF9C; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051AFA0; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x8051AFA4; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051AFA8; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051AFAC; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051AFB0; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x8051AFB8; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051AFBC; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051AFC0; // type:object size:0x8 scope:local align:8 data:double +@3927 = .sdata2:0x8051AFC8; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x8051AFCC; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051AFD0; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x8051AFD8; // type:object size:0x5 scope:local align:4 data:string +@3848 = .sdata2:0x8051AFE0; // type:object size:0x5 scope:local align:4 data:string +@3849 = .sdata2:0x8051AFE8; // type:object size:0x5 scope:local align:4 data:string +@3850 = .sdata2:0x8051AFF0; // type:object size:0x7 scope:local align:4 data:string +@3907 = .sdata2:0x8051AFF8; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x8051B000; // type:object size:0x4 scope:local align:4 data:float +@3601 = .sdata2:0x8051B004; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x8051B008; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x8051B00C; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x8051B010; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x8051B014; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051B018; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051B01C; // type:object size:0x4 scope:local align:4 data:float +@3918 = .sdata2:0x8051B020; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051B024; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051B028; // type:object size:0x4 scope:local align:4 data:float +@3966 = .sdata2:0x8051B02C; // type:object size:0x4 scope:local align:4 data:float +@3968 = .sdata2:0x8051B030; // type:object size:0x8 scope:local align:8 data:double +@4038 = .sdata2:0x8051B038; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051B03C; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051B040; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051B044; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051B048; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051B050; // type:object size:0x5 scope:local align:4 data:string +@3928 = .sdata2:0x8051B058; // type:object size:0x5 scope:local align:4 data:string +@3929 = .sdata2:0x8051B060; // type:object size:0x7 scope:local align:4 data:string +@3930 = .sdata2:0x8051B068; // type:object size:0x8 scope:local align:4 data:string +@3931 = .sdata2:0x8051B070; // type:object size:0x6 scope:local align:4 data:string +@3932 = .sdata2:0x8051B078; // type:object size:0x5 scope:local align:4 data:string +@3933 = .sdata2:0x8051B080; // type:object size:0x5 scope:local align:4 data:string +@3934 = .sdata2:0x8051B088; // type:object size:0x7 scope:local align:4 data:string +@3935 = .sdata2:0x8051B090; // type:object size:0x5 scope:local align:4 data:string +@3950 = .sdata2:0x8051B098; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051B09C; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x8051B0A0; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata2:0x8051B0A4; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051B0A8; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051B0AC; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051B0B0; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051B0B4; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051B0B8; // type:object size:0x8 scope:local align:8 data:double +@4213 = .sdata2:0x8051B0C0; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051B0C4; // type:object size:0x4 scope:local align:4 data:float +@4599 = .sdata2:0x8051B0C8; // type:object size:0x4 scope:local align:4 data:float +@4600 = .sdata2:0x8051B0CC; // type:object size:0x4 scope:local align:4 data:float +@4601 = .sdata2:0x8051B0D0; // type:object size:0x4 scope:local align:4 data:float +@4602 = .sdata2:0x8051B0D4; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x8051B0D8; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x8051B0DC; // type:object size:0x4 scope:local align:4 data:float +@4605 = .sdata2:0x8051B0E0; // type:object size:0x4 scope:local align:4 data:float +@4606 = .sdata2:0x8051B0E4; // type:object size:0x4 scope:local align:4 data:float +@4607 = .sdata2:0x8051B0E8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051B0F0; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051B0F4; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051B0F8; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051B0FC; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051B100; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x8051B104; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051B108; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051B10C; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051B110; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051B114; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x8051B118; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051B11C; // type:object size:0x4 scope:local align:4 data:float +@3574 = .sdata2:0x8051B120; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051B124; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x8051B128; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051B12C; // type:object size:0x4 scope:local align:4 data:float +@3582 = .sdata2:0x8051B130; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051B138; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051B13C; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x8051B140; // type:object size:0x8 scope:local align:4 data:string +@3921 = .sdata2:0x8051B148; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x8051B14C; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x8051B150; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051B154; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051B158; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051B15C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051B160; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051B164; // type:object size:0x4 scope:local align:4 data:float +@3956 = .sdata2:0x8051B168; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051B170; // type:object size:0x8 scope:local align:8 data:double +@4052 = .sdata2:0x8051B178; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x8051B17C; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x8051B180; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051B184; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x8051B188; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051B18C; // type:object size:0x4 scope:local align:4 data:float +@4184 = .sdata2:0x8051B190; // type:object size:0x4 scope:local align:4 data:float +@4206 = .sdata2:0x8051B194; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x8051B198; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051B19C; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata2:0x8051B1A0; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051B1A8; // type:object size:0x5 scope:local align:4 data:string +@3612 = .sdata2:0x8051B1B0; // type:object size:0x5 scope:local align:4 data:string +@3613 = .sdata2:0x8051B1B8; // type:object size:0x5 scope:local align:4 data:string +@3616 = .sdata2:0x8051B1C0; // type:object size:0x7 scope:local align:4 data:string +@3617 = .sdata2:0x8051B1C8; // type:object size:0x6 scope:local align:4 data:string +@3627 = .sdata2:0x8051B1D0; // type:object size:0x4 scope:local align:4 data:float +@3691 = .sdata2:0x8051B1D4; // type:object size:0x4 scope:local align:4 data:float +@3692 = .sdata2:0x8051B1D8; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051B1DC; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x8051B1E0; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata2:0x8051B1E8; // type:object size:0x8 scope:local align:8 data:double +@3701 = .sdata2:0x8051B1F0; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051B1F4; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051B1F8; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051B1FC; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051B200; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051B204; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051B208; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051B20C; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x8051B210; // type:object size:0x4 scope:local align:4 data:float +@4366 = .sdata2:0x8051B214; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051B218; // type:object size:0x8 scope:local align:4 data:4byte +@3550 = .sdata2:0x8051B220; // type:object size:0x8 scope:local align:4 data:4byte +@3868 = .sdata2:0x8051B228; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051B22C; // type:object size:0x6 scope:local align:4 data:string +@3870 = .sdata2:0x8051B234; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051B238; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051B23C; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051B240; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051B244; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051B248; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051B24C; // type:object size:0x7 scope:local align:4 data:string +@3976 = .sdata2:0x8051B254; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051B258; // type:object size:0x7 scope:local align:4 data:string +@3978 = .sdata2:0x8051B260; // type:object size:0x7 scope:local align:4 data:string +@3979 = .sdata2:0x8051B268; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051B26C; // type:object size:0x7 scope:local align:4 data:string +@4141 = .sdata2:0x8051B274; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051B278; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051B27C; // type:object size:0x4 scope:local align:4 data:float +@4221 = .sdata2:0x8051B280; // type:object size:0x4 scope:local align:4 data:float +@4222 = .sdata2:0x8051B284; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata2:0x8051B288; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata2:0x8051B28C; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051B290; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x8051B294; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051B298; // type:object size:0x5 scope:local align:4 data:string +@3550 = .sdata2:0x8051B2A0; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051B2A4; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051B2A8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051B2AC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051B2B0; // type:object size:0x4 scope:local align:4 data:float +@3573 = .sdata2:0x8051B2B4; // type:object size:0x6 scope:local align:4 data:string +@3574 = .sdata2:0x8051B2BC; // type:object size:0x6 scope:local align:4 data:string +@3575 = .sdata2:0x8051B2C4; // type:object size:0x4 scope:local align:4 data:float +@3589 = .sdata2:0x8051B2C8; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x8051B2D0; // type:object size:0x5 scope:local align:4 data:string +@3600 = .sdata2:0x8051B2D8; // type:object size:0x5 scope:local align:4 data:string +@3601 = .sdata2:0x8051B2E0; // type:object size:0x5 scope:local align:4 data:string +@3602 = .sdata2:0x8051B2E8; // type:object size:0x6 scope:local align:4 data:string +@3603 = .sdata2:0x8051B2F0; // type:object size:0x7 scope:local align:4 data:string +@3604 = .sdata2:0x8051B2F8; // type:object size:0x5 scope:local align:4 data:string +@3614 = .sdata2:0x8051B300; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051B304; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051B308; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051B30C; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051B310; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051B314; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051B318; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051B320; // type:object size:0x8 scope:local align:8 data:double +@4130 = .sdata2:0x8051B328; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051B32C; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051B330; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051B334; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051B338; // type:object size:0x4 scope:local align:4 data:float +@3540 = .sdata2:0x8051B340; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051B344; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B348; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051B350; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051B354; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051B358; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051B35C; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051B360; // type:object size:0x4 scope:local align:4 data:float +@3967 = .sdata2:0x8051B364; // type:object size:0x4 scope:local align:4 data:float +@3968 = .sdata2:0x8051B368; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051B36C; // type:object size:0x4 scope:local align:4 data:float +@3970 = .sdata2:0x8051B370; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051B374; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051B378; // type:object size:0x8 scope:local align:8 data:double +@4110 = .sdata2:0x8051B380; // type:object size:0x4 scope:local align:4 data:float +@4111 = .sdata2:0x8051B384; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051B388; // type:object size:0x4 scope:local align:4 data:float +@3654 = .sdata2:0x8051B390; // type:object size:0x5 scope:local align:4 data:string +@3655 = .sdata2:0x8051B398; // type:object size:0x5 scope:local align:4 data:string +@3656 = .sdata2:0x8051B3A0; // type:object size:0x5 scope:local align:4 data:string +@3657 = .sdata2:0x8051B3A8; // type:object size:0x5 scope:local align:4 data:string +@3658 = .sdata2:0x8051B3B0; // type:object size:0x7 scope:local align:4 data:string +@3662 = .sdata2:0x8051B3B8; // type:object size:0x8 scope:local align:4 data:string +@3663 = .sdata2:0x8051B3C0; // type:object size:0x7 scope:local align:4 data:string +@3673 = .sdata2:0x8051B3C8; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051B3CC; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051B3D0; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata2:0x8051B3D4; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051B3D8; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051B3DC; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051B3E0; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051B3E4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051B3E8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051B3EC; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051B3F0; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051B3F8; // type:object size:0x8 scope:local align:8 data:double +@4129 = .sdata2:0x8051B400; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x8051B404; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B408; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051B40C; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051B410; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B414; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051B418; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051B420; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051B424; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051B428; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051B430; // type:object size:0x8 scope:local align:8 data:double +@3963 = .sdata2:0x8051B438; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051B440; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x8051B444; // type:object size:0x4 scope:local align:4 data:float +@3966 = .sdata2:0x8051B448; // type:object size:0x4 scope:local align:4 data:float +@4184 = .sdata2:0x8051B44C; // type:object size:0x4 scope:local align:4 data:float +@4185 = .sdata2:0x8051B450; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051B454; // type:object size:0x4 scope:local align:4 data:float +@4654 = .sdata2:0x8051B458; // type:object size:0x4 scope:local align:4 data:float +@4676 = .sdata2:0x8051B45C; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051B460; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B468; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051B46C; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051B470; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B474; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051B478; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051B480; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051B484; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051B488; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051B48C; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051B490; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051B494; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x8051B498; // type:object size:0x8 scope:local align:4 data:string +@4333 = .sdata2:0x8051B4A0; // type:object size:0x4 scope:local align:4 data:float +@4334 = .sdata2:0x8051B4A4; // type:object size:0x4 scope:local align:4 data:float +@4336 = .sdata2:0x8051B4A8; // type:object size:0x8 scope:local align:8 data:double +@4405 = .sdata2:0x8051B4B0; // type:object size:0x4 scope:local align:4 data:float +@4544 = .sdata2:0x8051B4B4; // type:object size:0x4 scope:local align:4 data:float +@4545 = .sdata2:0x8051B4B8; // type:object size:0x4 scope:local align:4 data:float +@4546 = .sdata2:0x8051B4BC; // type:object size:0x4 scope:local align:4 data:float +@4547 = .sdata2:0x8051B4C0; // type:object size:0x4 scope:local align:4 data:float +@4548 = .sdata2:0x8051B4C4; // type:object size:0x4 scope:local align:4 data:float +@4670 = .sdata2:0x8051B4C8; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x8051B4CC; // type:object size:0x4 scope:local align:4 data:float +@4818 = .sdata2:0x8051B4D0; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x8051B4D4; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051B4D8; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051B4DC; // type:object size:0x6 scope:local align:4 data:string +@3919 = .sdata2:0x8051B4E4; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x8051B4E8; // type:object size:0x5 scope:local align:4 data:string +@3959 = .sdata2:0x8051B4F0; // type:object size:0x4 scope:local align:4 data:float +@3960 = .sdata2:0x8051B4F4; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051B4F8; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x8051B4FC; // type:object size:0x4 scope:local align:4 data:float +@4015 = .sdata2:0x8051B500; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x8051B504; // type:object size:0x5 scope:local align:4 data:string +@4065 = .sdata2:0x8051B50C; // type:object size:0x4 scope:local align:4 data:float +@4066 = .sdata2:0x8051B510; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051B514; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051B518; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051B51C; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x8051B520; // type:object size:0x8 scope:local align:8 data:double +@4145 = .sdata2:0x8051B528; // type:object size:0x4 scope:local align:4 data:float +@4162 = .sdata2:0x8051B52C; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051B530; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata2:0x8051B534; // type:object size:0x4 scope:local align:4 data:float +@4360 = .sdata2:0x8051B538; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x8051B53C; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x8051B540; // type:object size:0x4 scope:local align:4 data:float +@4599 = .sdata2:0x8051B544; // type:object size:0x4 scope:local align:4 data:float +@4670 = .sdata2:0x8051B548; // type:object size:0x4 scope:local align:4 data:float +@5029 = .sdata2:0x8051B54C; // type:object size:0x4 scope:local align:4 data:float +@5030 = .sdata2:0x8051B550; // type:object size:0x4 scope:local align:4 data:float +@5141 = .sdata2:0x8051B554; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051B558; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051B55C; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051B560; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051B564; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051B568; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051B56C; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051B570; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051B574; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051B578; // type:object size:0x5 scope:local align:4 data:string +@3937 = .sdata2:0x8051B580; // type:object size:0x5 scope:local align:4 data:string +@3938 = .sdata2:0x8051B588; // type:object size:0x5 scope:local align:4 data:string +@3939 = .sdata2:0x8051B590; // type:object size:0x5 scope:local align:4 data:string +@3940 = .sdata2:0x8051B598; // type:object size:0x6 scope:local align:4 data:string +@3942 = .sdata2:0x8051B5A0; // type:object size:0x7 scope:local align:4 data:string +@3943 = .sdata2:0x8051B5A8; // type:object size:0x5 scope:local align:4 data:string +@3944 = .sdata2:0x8051B5B0; // type:object size:0x5 scope:local align:4 data:string +@3945 = .sdata2:0x8051B5B8; // type:object size:0x7 scope:local align:4 data:string +@3946 = .sdata2:0x8051B5C0; // type:object size:0x8 scope:local align:4 data:string +@3967 = .sdata2:0x8051B5C8; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051B5CC; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051B5D0; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051B5D4; // type:object size:0x4 scope:local align:4 data:float +@4351 = .sdata2:0x8051B5D8; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x8051B5DC; // type:object size:0x4 scope:local align:4 data:float +@4353 = .sdata2:0x8051B5E0; // type:object size:0x4 scope:local align:4 data:float +@4354 = .sdata2:0x8051B5E4; // type:object size:0x4 scope:local align:4 data:float +@4355 = .sdata2:0x8051B5E8; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x8051B5EC; // type:object size:0x4 scope:local align:4 data:float +@4656 = .sdata2:0x8051B5F0; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata2:0x8051B5F4; // type:object size:0x4 scope:local align:4 data:float +@4815 = .sdata2:0x8051B5F8; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051B600; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051B604; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051B608; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051B60C; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051B610; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x8051B614; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051B618; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x8051B61C; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051B620; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x8051B624; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x8051B628; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051B630; // type:object size:0x7 scope:local align:4 data:string +@3944 = .sdata2:0x8051B638; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051B63C; // type:object size:0x5 scope:local align:4 data:string +@3916 = .sdata2:0x8051B648; // type:object size:0x7 scope:local align:4 data:string +@3991 = .sdata2:0x8051B650; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051B654; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x8051B658; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051B65C; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051B660; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x8051B668; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051B670; // type:object size:0x5 scope:local align:4 data:string +@3965 = .sdata2:0x8051B678; // type:object size:0x7 scope:local align:4 data:string +@3966 = .sdata2:0x8051B680; // type:object size:0x5 scope:local align:4 data:string +@3967 = .sdata2:0x8051B688; // type:object size:0x5 scope:local align:4 data:string +@3970 = .sdata2:0x8051B690; // type:object size:0x8 scope:local align:4 data:string +@3971 = .sdata2:0x8051B698; // type:object size:0x7 scope:local align:4 data:string +@3972 = .sdata2:0x8051B6A0; // type:object size:0x8 scope:local align:4 data:string +@3973 = .sdata2:0x8051B6A8; // type:object size:0x8 scope:local align:4 data:string +@3974 = .sdata2:0x8051B6B0; // type:object size:0x4 scope:local align:4 data:string +@3975 = .sdata2:0x8051B6B4; // type:object size:0x6 scope:local align:4 data:string +@3976 = .sdata2:0x8051B6BC; // type:object size:0x5 scope:local align:4 data:string +@3986 = .sdata2:0x8051B6C4; // type:object size:0x4 scope:local align:4 data:float +@4320 = .sdata2:0x8051B6C8; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x8051B6CC; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata2:0x8051B6D0; // type:object size:0x4 scope:local align:4 data:float +@4658 = .sdata2:0x8051B6D4; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051B6D8; // type:object size:0x5 scope:local align:4 data:string +@3741 = .sdata2:0x8051B6E0; // type:object size:0x6 scope:local align:4 data:string +@3742 = .sdata2:0x8051B6E8; // type:object size:0x5 scope:local align:4 data:string +@3743 = .sdata2:0x8051B6F0; // type:object size:0x7 scope:local align:4 data:string +@3744 = .sdata2:0x8051B6F8; // type:object size:0x6 scope:local align:4 data:string +@3745 = .sdata2:0x8051B700; // type:object size:0x8 scope:local align:4 data:string +@3746 = .sdata2:0x8051B708; // type:object size:0x5 scope:local align:4 data:string +@3753 = .sdata2:0x8051B710; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051B714; // type:object size:0x4 scope:local align:4 data:float +@3954 = .sdata2:0x8051B718; // type:object size:0x5 scope:local align:4 data:string +@4221 = .sdata2:0x8051B720; // type:object size:0x4 scope:local align:4 data:float +@4222 = .sdata2:0x8051B724; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata2:0x8051B728; // type:object size:0x4 scope:local align:4 data:float +@4224 = .sdata2:0x8051B72C; // type:object size:0x4 scope:local align:4 data:float +@4225 = .sdata2:0x8051B730; // type:object size:0x4 scope:local align:4 data:float +@4226 = .sdata2:0x8051B734; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051B738; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x8051B73C; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051B740; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B744; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051B748; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051B74C; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051B750; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051B758; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051B75C; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051B760; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051B764; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051B768; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051B76C; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051B770; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051B774; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051B778; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051B77C; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051B780; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051B784; // type:object size:0x4 scope:local align:4 data:float +@4291 = .sdata2:0x8051B788; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051B78C; // type:object size:0x4 scope:local align:4 data:float +@4455 = .sdata2:0x8051B790; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051B794; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051B798; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051B7A0; // type:object size:0x8 scope:local align:8 data:double +@4533 = .sdata2:0x8051B7A8; // type:object size:0x4 scope:local align:4 data:float +@4534 = .sdata2:0x8051B7AC; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x8051B7B0; // type:object size:0x4 scope:local align:4 data:float +@5144 = .sdata2:0x8051B7B4; // type:object size:0x6 scope:local align:4 data:string +@5145 = .sdata2:0x8051B7BC; // type:object size:0x5 scope:local align:4 data:string +@5309 = .sdata2:0x8051B7C4; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051B7C8; // type:object size:0x5 scope:local align:4 data:string +@3854 = .sdata2:0x8051B7D0; // type:object size:0x6 scope:local align:4 data:string +@3855 = .sdata2:0x8051B7D8; // type:object size:0x5 scope:local align:4 data:string +@3856 = .sdata2:0x8051B7E0; // type:object size:0x5 scope:local align:4 data:string +@3857 = .sdata2:0x8051B7E8; // type:object size:0x7 scope:local align:4 data:string +@3864 = .sdata2:0x8051B7F0; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051B7F4; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051B7F8; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051B7FC; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051B800; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051B808; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051B80C; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051B810; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051B814; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B818; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051B820; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051B824; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051B828; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051B82C; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051B830; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x8051B834; // type:object size:0x5 scope:local align:4 data:string +@3964 = .sdata2:0x8051B83C; // type:object size:0x4 scope:local align:4 data:float +@3988 = .sdata2:0x8051B840; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051B848; // type:object size:0x8 scope:local align:8 data:double +@4045 = .sdata2:0x8051B850; // type:object size:0x4 scope:local align:4 data:float +@4046 = .sdata2:0x8051B854; // type:object size:0x4 scope:local align:4 data:float +@4047 = .sdata2:0x8051B858; // type:object size:0x4 scope:local align:4 data:float +@4048 = .sdata2:0x8051B85C; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x8051B860; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x8051B864; // type:object size:0x4 scope:local align:4 data:float +@4072 = .sdata2:0x8051B868; // type:object size:0x4 scope:local align:4 data:float +@3707 = .sdata2:0x8051B870; // type:object size:0x4 scope:local align:4 data:float +@3708 = .sdata2:0x8051B874; // type:object size:0x4 scope:local align:4 data:float +@3709 = .sdata2:0x8051B878; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051B87C; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051B880; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata2:0x8051B888; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051B88C; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x8051B890; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051B894; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051B898; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051B89C; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051B8A0; // type:object size:0x6 scope:local align:4 data:string +@4137 = .sdata2:0x8051B8A8; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051B8AC; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051B8B0; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051B8B4; // type:object size:0x6 scope:local align:4 data:string +@4141 = .sdata2:0x8051B8BC; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051B8C0; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051B8C4; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051B8C8; // type:object size:0x6 scope:local align:4 data:string +@4145 = .sdata2:0x8051B8D0; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051B8D4; // type:object size:0x5 scope:local align:4 data:string +@4147 = .sdata2:0x8051B8DC; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x8051B8E0; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051B8E4; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051B8E8; // type:object size:0x6 scope:local align:4 data:string +@4151 = .sdata2:0x8051B8F0; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051B8F4; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051B8F8; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051B8FC; // type:object size:0x6 scope:local align:4 data:string +@3863 = .sdata2:0x8051B908; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051B90C; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051B910; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051B914; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051B918; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051B91C; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051B920; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051B924; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051B928; // type:object size:0x5 scope:local align:4 data:string +@4141 = .sdata2:0x8051B930; // type:object size:0x5 scope:local align:4 data:string +@4031 = .sdata2:0x8051B938; // type:object size:0x5 scope:local align:4 data:string +@4032 = .sdata2:0x8051B940; // type:object size:0x5 scope:local align:4 data:string +@4033 = .sdata2:0x8051B948; // type:object size:0x8 scope:local align:4 data:string +@4034 = .sdata2:0x8051B950; // type:object size:0x8 scope:local align:4 data:string +@4036 = .sdata2:0x8051B958; // type:object size:0x5 scope:local align:4 data:string +@4037 = .sdata2:0x8051B960; // type:object size:0x7 scope:local align:4 data:string +@4038 = .sdata2:0x8051B968; // type:object size:0x4 scope:local align:4 data:string +@4051 = .sdata2:0x8051B96C; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata2:0x8051B970; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051B974; // type:object size:0x4 scope:local align:4 data:float +@4385 = .sdata2:0x8051B978; // type:object size:0x4 scope:local align:4 data:float +@4386 = .sdata2:0x8051B97C; // type:object size:0x4 scope:local align:4 data:float +@4387 = .sdata2:0x8051B980; // type:object size:0x4 scope:local align:4 data:float +@4389 = .sdata2:0x8051B988; // type:object size:0x8 scope:local align:8 data:double +@4619 = .sdata2:0x8051B990; // type:object size:0x4 scope:local align:4 data:float +@4631 = .sdata2:0x8051B994; // type:object size:0x4 scope:local align:4 data:float +@4884 = .sdata2:0x8051B998; // type:object size:0x4 scope:local align:4 data:float +@4885 = .sdata2:0x8051B99C; // type:object size:0x4 scope:local align:4 data:float +@4886 = .sdata2:0x8051B9A0; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x8051B9A4; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051B9A8; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051B9AC; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051B9B0; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051B9B4; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051B9B8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051B9BC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051B9C0; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051B9C4; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051B9C8; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051B9D0; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051B9D4; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051B9D8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051B9DC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051B9E0; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051B9E4; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051B9E8; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x8051B9EC; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051B9F0; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x8051B9F4; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051B9F8; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051B9FC; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051BA00; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x8051BA04; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x8051BA08; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata2:0x8051BA0C; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x8051BA10; // type:object size:0x8 scope:local align:8 data:double +@5243 = .sdata2:0x8051BA18; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051BA20; // type:object size:0x5 scope:local align:4 data:string +@3636 = .sdata2:0x8051BA28; // type:object size:0x8 scope:local align:4 data:string +@3637 = .sdata2:0x8051BA30; // type:object size:0x5 scope:local align:4 data:string +@3638 = .sdata2:0x8051BA38; // type:object size:0x7 scope:local align:4 data:string +@3639 = .sdata2:0x8051BA40; // type:object size:0x6 scope:local align:4 data:string +@3640 = .sdata2:0x8051BA48; // type:object size:0x5 scope:local align:4 data:string +@3642 = .sdata2:0x8051BA50; // type:object size:0x5 scope:local align:4 data:string +@3650 = .sdata2:0x8051BA58; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051BA5C; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051BA60; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051BA64; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051BA68; // type:object size:0x4 scope:local align:4 data:float +@4195 = .sdata2:0x8051BA6C; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x8051BA70; // type:object size:0x4 scope:local align:4 data:float +@4209 = .sdata2:0x8051BA74; // type:object size:0x4 scope:local align:4 data:float +@4992 = .sdata2:0x8051BA78; // type:object size:0x4 scope:local align:4 data:float +@4993 = .sdata2:0x8051BA7C; // type:object size:0x4 scope:local align:4 data:float +@5196 = .sdata2:0x8051BA80; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051BA88; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051BA8C; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x8051BA90; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051BA94; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051BA98; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051BA9C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BAA0; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x8051BAA8; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051BAAC; // type:object size:0x4 scope:local align:4 data:string +@3685 = .sdata2:0x8051BAB0; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051BAB4; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051BAB8; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x8051BABC; // type:object size:0x4 scope:local align:4 data:float +@3689 = .sdata2:0x8051BAC0; // type:object size:0x4 scope:local align:4 data:float +@3690 = .sdata2:0x8051BAC4; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata2:0x8051BAC8; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051BACC; // type:object size:0x6 scope:local align:4 data:string +@3741 = .sdata2:0x8051BAD4; // type:object size:0x6 scope:local align:4 data:string +@3742 = .sdata2:0x8051BADC; // type:object size:0x6 scope:local align:4 data:string +@3743 = .sdata2:0x8051BAE4; // type:object size:0x6 scope:local align:4 data:string +@3744 = .sdata2:0x8051BAEC; // type:object size:0x6 scope:local align:4 data:string +@3745 = .sdata2:0x8051BAF4; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x8051BAF8; // type:object size:0x5 scope:local align:4 data:string +@3751 = .sdata2:0x8051BB00; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051BB04; // type:object size:0x5 scope:local align:4 data:string +@3840 = .sdata2:0x8051BB0C; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051BB10; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051BB14; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x8051BB18; // type:object size:0x8 scope:local align:8 data:double +@4039 = .sdata2:0x8051BB20; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051BB24; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051BB28; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051BB30; // type:object size:0x5 scope:local align:4 data:string +@3902 = .sdata2:0x8051BB38; // type:object size:0x5 scope:local align:4 data:string +@3903 = .sdata2:0x8051BB40; // type:object size:0x5 scope:local align:4 data:string +@3904 = .sdata2:0x8051BB48; // type:object size:0x5 scope:local align:4 data:string +@3905 = .sdata2:0x8051BB50; // type:object size:0x5 scope:local align:4 data:string +@3906 = .sdata2:0x8051BB58; // type:object size:0x5 scope:local align:4 data:string +@3907 = .sdata2:0x8051BB60; // type:object size:0x5 scope:local align:4 data:string +@3908 = .sdata2:0x8051BB68; // type:object size:0x7 scope:local align:4 data:string +@3919 = .sdata2:0x8051BB70; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051BB74; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x8051BB78; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051BB7C; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051BB80; // type:object size:0x8 scope:local align:8 data:double +@4069 = .sdata2:0x8051BB88; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x8051BB8C; // type:object size:0x4 scope:local align:4 data:float +@4239 = .sdata2:0x8051BB90; // type:object size:0x4 scope:local align:4 data:float +@4240 = .sdata2:0x8051BB94; // type:object size:0x4 scope:local align:4 data:float +@4397 = .sdata2:0x8051BB98; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata2:0x8051BB9C; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata2:0x8051BBA0; // type:object size:0x4 scope:local align:4 data:float +@4477 = .sdata2:0x8051BBA4; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x8051BBA8; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051BBB0; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BBB4; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051BBB8; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051BBBC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BBC0; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051BBC4; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051BBC8; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051BBCC; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051BBD0; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051BBD8; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051BBDC; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x8051BBE0; // type:object size:0x4 scope:local align:4 data:float +@4067 = .sdata2:0x8051BBE4; // type:object size:0x4 scope:local align:4 data:float +@4068 = .sdata2:0x8051BBE8; // type:object size:0x4 scope:local align:4 data:float +@4069 = .sdata2:0x8051BBEC; // type:object size:0x4 scope:local align:4 data:float +@4165 = .sdata2:0x8051BBF0; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x8051BBF8; // type:object size:0x8 scope:local align:8 data:double +@4412 = .sdata2:0x8051BC00; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x8051BC04; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x8051BC08; // type:object size:0x4 scope:local align:4 data:float +@4415 = .sdata2:0x8051BC0C; // type:object size:0x4 scope:local align:4 data:float +@4416 = .sdata2:0x8051BC10; // type:object size:0x4 scope:local align:4 data:float +@4417 = .sdata2:0x8051BC14; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata2:0x8051BC18; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x8051BC1C; // type:object size:0x4 scope:local align:4 data:float +@3643 = .sdata2:0x8051BC20; // type:object size:0x7 scope:local align:4 data:string +@3671 = .sdata2:0x8051BC28; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051BC30; // type:object size:0x4 scope:local align:4 data:float +@3451 = .sdata2:0x8051BC38; // type:object size:0x4 scope:local align:4 data:float +@3453 = .sdata2:0x8051BC40; // type:object size:0x8 scope:local align:8 data:double +@3949 = .sdata2:0x8051BC48; // type:object size:0x5 scope:local align:4 data:string +@3950 = .sdata2:0x8051BC50; // type:object size:0x5 scope:local align:4 data:string +@3951 = .sdata2:0x8051BC58; // type:object size:0x5 scope:local align:4 data:string +@3952 = .sdata2:0x8051BC60; // type:object size:0x6 scope:local align:4 data:string +@3954 = .sdata2:0x8051BC68; // type:object size:0x7 scope:local align:4 data:string +@3955 = .sdata2:0x8051BC70; // type:object size:0x5 scope:local align:4 data:string +@3956 = .sdata2:0x8051BC78; // type:object size:0x5 scope:local align:4 data:string +@3957 = .sdata2:0x8051BC80; // type:object size:0x7 scope:local align:4 data:string +@3958 = .sdata2:0x8051BC88; // type:object size:0x8 scope:local align:4 data:string +@3961 = .sdata2:0x8051BC90; // type:object size:0x6 scope:local align:4 data:string +@3980 = .sdata2:0x8051BC98; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x8051BC9C; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051BCA0; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x8051BCA4; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051BCA8; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051BCAC; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051BCB0; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051BCB4; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051BCB8; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051BCBC; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051BCC0; // type:object size:0x4 scope:local align:4 data:float +@4683 = .sdata2:0x8051BCC4; // type:object size:0x4 scope:local align:4 data:float +@4684 = .sdata2:0x8051BCC8; // type:object size:0x4 scope:local align:4 data:float +@4842 = .sdata2:0x8051BCCC; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BCD0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051BCD4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051BCD8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051BCDC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BCE0; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051BCE4; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051BCE8; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051BCEC; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051BCF0; // type:object size:0x5 scope:local align:4 data:string +@3881 = .sdata2:0x8051BCF8; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051BCFC; // type:object size:0x6 scope:local align:4 data:string +@3920 = .sdata2:0x8051BD04; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051BD08; // type:object size:0x5 scope:local align:4 data:string +@3981 = .sdata2:0x8051BD10; // type:object size:0x5 scope:local align:4 data:string +@3982 = .sdata2:0x8051BD18; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051BD1C; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051BD20; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051BD24; // type:object size:0x4 scope:local align:4 data:float +@4028 = .sdata2:0x8051BD28; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051BD2C; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051BD30; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051BD34; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051BD38; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051BD3C; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051BD40; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051BD48; // type:object size:0x8 scope:local align:8 data:double +@4165 = .sdata2:0x8051BD50; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051BD54; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x8051BD58; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata2:0x8051BD5C; // type:object size:0x4 scope:local align:4 data:float +@4391 = .sdata2:0x8051BD60; // type:object size:0x4 scope:local align:4 data:float +@4470 = .sdata2:0x8051BD64; // type:object size:0x4 scope:local align:4 data:float +@4471 = .sdata2:0x8051BD68; // type:object size:0x4 scope:local align:4 data:float +@4626 = .sdata2:0x8051BD6C; // type:object size:0x4 scope:local align:4 data:float +@4694 = .sdata2:0x8051BD70; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata2:0x8051BD74; // type:object size:0x4 scope:local align:4 data:float +@5055 = .sdata2:0x8051BD78; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x8051BD7C; // type:object size:0x4 scope:local align:4 data:float +@5167 = .sdata2:0x8051BD80; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051BD88; // type:object size:0x5 scope:local align:4 data:string +@3732 = .sdata2:0x8051BD90; // type:object size:0x5 scope:local align:4 data:string +@3733 = .sdata2:0x8051BD98; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x8051BDA0; // type:object size:0x5 scope:local align:4 data:string +@3735 = .sdata2:0x8051BDA8; // type:object size:0x6 scope:local align:4 data:string +@3736 = .sdata2:0x8051BDB0; // type:object size:0x5 scope:local align:4 data:string +@3748 = .sdata2:0x8051BDB8; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051BDBC; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x8051BDC0; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051BDC4; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051BDC8; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051BDD0; // type:object size:0x8 scope:local align:8 data:double +@3987 = .sdata2:0x8051BDD8; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x8051BDDC; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BDE0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051BDE4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051BDE8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051BDEC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BDF0; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051BDF4; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051BDF8; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051BDFC; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051BE00; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051BE04; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051BE08; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051BE10; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051BE14; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051BE18; // type:object size:0x4 scope:local align:4 data:float +@4198 = .sdata2:0x8051BE1C; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051BE20; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051BE24; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x8051BE28; // type:object size:0x5 scope:local align:4 data:string +@4239 = .sdata2:0x8051BE30; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x8051BE34; // type:object size:0x4 scope:local align:4 data:float +@4328 = .sdata2:0x8051BE38; // type:object size:0x4 scope:local align:4 data:float +@4329 = .sdata2:0x8051BE3C; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x8051BE40; // type:object size:0x4 scope:local align:4 data:float +@4331 = .sdata2:0x8051BE44; // type:object size:0x4 scope:local align:4 data:float +@4332 = .sdata2:0x8051BE48; // type:object size:0x4 scope:local align:4 data:float +@4334 = .sdata2:0x8051BE50; // type:object size:0x8 scope:local align:8 data:double +@4363 = .sdata2:0x8051BE58; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x8051BE5C; // type:object size:0x4 scope:local align:4 data:float +@4365 = .sdata2:0x8051BE60; // type:object size:0x4 scope:local align:4 data:float +@4366 = .sdata2:0x8051BE64; // type:object size:0x4 scope:local align:4 data:float +@4367 = .sdata2:0x8051BE68; // type:object size:0x4 scope:local align:4 data:float +@4368 = .sdata2:0x8051BE6C; // type:object size:0x4 scope:local align:4 data:float +@4369 = .sdata2:0x8051BE70; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051BE74; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051BE78; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051BE7C; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x8051BE80; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x8051BE84; // type:object size:0x4 scope:local align:4 data:float +@5035 = .sdata2:0x8051BE88; // type:object size:0x6 scope:local align:4 data:string +@5036 = .sdata2:0x8051BE90; // type:object size:0x6 scope:local align:4 data:string +@5082 = .sdata2:0x8051BE98; // type:object size:0x4 scope:local align:4 data:float +@5083 = .sdata2:0x8051BE9C; // type:object size:0x4 scope:local align:4 data:float +@5127 = .sdata2:0x8051BEA0; // type:object size:0x4 scope:local align:4 data:float +@5128 = .sdata2:0x8051BEA4; // type:object size:0x4 scope:local align:4 data:float +@5452 = .sdata2:0x8051BEA8; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051BEB0; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051BEB4; // type:object size:0x4 scope:local align:4 data:float +@3791 = .sdata2:0x8051BEB8; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051BEBC; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x8051BEC0; // type:object size:0x4 scope:local align:4 data:float +@4061 = .sdata2:0x8051BEC4; // type:object size:0x4 scope:local align:4 data:float +@4062 = .sdata2:0x8051BEC8; // type:object size:0x4 scope:local align:4 data:float +@4063 = .sdata2:0x8051BECC; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051BED0; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051BED4; // type:object size:0x4 scope:local align:4 data:float +@4178 = .sdata2:0x8051BED8; // type:object size:0x4 scope:local align:4 data:float +@2787 = .sdata2:0x8051BEE0; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata2:0x8051BEE4; // type:object size:0x4 scope:local align:4 data:float +@2886 = .sdata2:0x8051BEE8; // type:object size:0x4 scope:local align:4 data:float +@3108 = .sdata2:0x8051BEEC; // type:object size:0x4 scope:local align:4 data:float +@3109 = .sdata2:0x8051BEF0; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata2:0x8051BEF4; // type:object size:0x4 scope:local align:4 data:float +@3111 = .sdata2:0x8051BEF8; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata2:0x8051BF00; // type:object size:0x8 scope:local align:8 data:double +@3138 = .sdata2:0x8051BF08; // type:object size:0x4 scope:local align:4 data:float +@3139 = .sdata2:0x8051BF0C; // type:object size:0x4 scope:local align:4 data:float +@3181 = .sdata2:0x8051BF10; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051BF14; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051BF18; // type:object size:0x5 scope:local align:4 data:string +@3753 = .sdata2:0x8051BF20; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051BF24; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051BF28; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051BF2C; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051BF30; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051BF34; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051BF38; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x8051BF3C; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051BF40; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x8051BF44; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8051BF48; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x8051BF4C; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051BF50; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x8051BF54; // type:object size:0x4 scope:local align:4 data:float +@3767 = .sdata2:0x8051BF58; // type:object size:0x4 scope:local align:4 data:float +@3768 = .sdata2:0x8051BF5C; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x8051BF60; // type:object size:0x5 scope:local align:4 data:string +@4055 = .sdata2:0x8051BF68; // type:object size:0x5 scope:local align:4 data:string +@4056 = .sdata2:0x8051BF70; // type:object size:0x5 scope:local align:4 data:string +@4057 = .sdata2:0x8051BF78; // type:object size:0x6 scope:local align:4 data:string +@4058 = .sdata2:0x8051BF80; // type:object size:0x7 scope:local align:4 data:string +@4059 = .sdata2:0x8051BF88; // type:object size:0x5 scope:local align:4 data:string +@4060 = .sdata2:0x8051BF90; // type:object size:0x5 scope:local align:4 data:string +@4061 = .sdata2:0x8051BF98; // type:object size:0x7 scope:local align:4 data:string +@4062 = .sdata2:0x8051BFA0; // type:object size:0x8 scope:local align:4 data:string +@4084 = .sdata2:0x8051BFA8; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051BFAC; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051BFB0; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051BFB4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051BFB8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051BFBC; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051BFC0; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x8051BFC4; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051BFC8; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051BFCC; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata2:0x8051BFD0; // type:object size:0x4 scope:local align:4 data:float +@4259 = .sdata2:0x8051BFD4; // type:object size:0x4 scope:local align:4 data:float +@4390 = .sdata2:0x8051BFD8; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x8051BFDC; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051BFE0; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051BFE4; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051BFE8; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051BFEC; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051BFF0; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051BFF4; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051BFF8; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051BFFC; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051C000; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x8051C004; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051C008; // type:object size:0x7 scope:local align:4 data:string +@3982 = .sdata2:0x8051C010; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051C014; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051C018; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051C01C; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051C020; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051C024; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051C028; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051C02C; // type:object size:0x4 scope:local align:4 data:float +@4092 = .sdata2:0x8051C030; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x8051C034; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8051C038; // type:object size:0x8 scope:local align:8 data:double +@4117 = .sdata2:0x8051C040; // type:object size:0x4 scope:local align:4 data:float +@4196 = .sdata2:0x8051C044; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051C048; // type:object size:0x4 scope:local align:4 data:float +@4796 = .sdata2:0x8051C04C; // type:object size:0x7 scope:local align:4 data:string +@4797 = .sdata2:0x8051C054; // type:object size:0x7 scope:local align:4 data:string +@4798 = .sdata2:0x8051C05C; // type:object size:0x6 scope:local align:4 data:string +@4799 = .sdata2:0x8051C064; // type:object size:0x7 scope:local align:4 data:string +@4860 = .sdata2:0x8051C06C; // type:object size:0x4 scope:local align:4 data:float +@4078 = .sdata2:0x8051C070; // type:object size:0x5 scope:local align:4 data:string +@4079 = .sdata2:0x8051C078; // type:object size:0x7 scope:local align:4 data:string +@4080 = .sdata2:0x8051C080; // type:object size:0x5 scope:local align:4 data:string +@4082 = .sdata2:0x8051C088; // type:object size:0x5 scope:local align:4 data:string +@4084 = .sdata2:0x8051C090; // type:object size:0x7 scope:local align:4 data:string +@4085 = .sdata2:0x8051C098; // type:object size:0x8 scope:local align:4 data:string +@4086 = .sdata2:0x8051C0A0; // type:object size:0x5 scope:local align:4 data:string +@4089 = .sdata2:0x8051C0A8; // type:object size:0x6 scope:local align:4 data:string +@4103 = .sdata2:0x8051C0B0; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051C0B4; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051C0B8; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x8051C0BC; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata2:0x8051C0C0; // type:object size:0x4 scope:local align:4 data:float +@4275 = .sdata2:0x8051C0C4; // type:object size:0x4 scope:local align:4 data:float +@4449 = .sdata2:0x8051C0C8; // type:object size:0x4 scope:local align:4 data:float +@4450 = .sdata2:0x8051C0CC; // type:object size:0x4 scope:local align:4 data:float +@4451 = .sdata2:0x8051C0D0; // type:object size:0x4 scope:local align:4 data:float +@4543 = .sdata2:0x8051C0D4; // type:object size:0x4 scope:local align:4 data:float +@4822 = .sdata2:0x8051C0D8; // type:object size:0x4 scope:local align:4 data:float +@4823 = .sdata2:0x8051C0DC; // type:object size:0x4 scope:local align:4 data:float +@4824 = .sdata2:0x8051C0E0; // type:object size:0x4 scope:local align:4 data:float +@4825 = .sdata2:0x8051C0E4; // type:object size:0x4 scope:local align:4 data:float +@4925 = .sdata2:0x8051C0E8; // type:object size:0x4 scope:local align:4 data:float +@4926 = .sdata2:0x8051C0EC; // type:object size:0x4 scope:local align:4 data:float +@4927 = .sdata2:0x8051C0F0; // type:object size:0x4 scope:local align:4 data:float +@4972 = .sdata2:0x8051C0F4; // type:object size:0x4 scope:local align:4 data:float +@5011 = .sdata2:0x8051C0F8; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata2:0x8051C0FC; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C100; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051C104; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051C108; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C10C; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051C110; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051C114; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051C118; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C11C; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051C120; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C124; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C128; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051C12C; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C130; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051C134; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x8051C138; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata2:0x8051C13C; // type:object size:0x4 scope:local align:4 data:float +@4088 = .sdata2:0x8051C140; // type:object size:0x4 scope:local align:4 data:float +@4089 = .sdata2:0x8051C144; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051C148; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051C14C; // type:object size:0x4 scope:local align:4 data:float +@4108 = .sdata2:0x8051C150; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051C154; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051C158; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051C15C; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051C160; // type:object size:0x8 scope:local align:8 data:double +@4226 = .sdata2:0x8051C168; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051C16C; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x8051C170; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata2:0x8051C174; // type:object size:0x4 scope:local align:4 data:float +@4339 = .sdata2:0x8051C178; // type:object size:0x4 scope:local align:4 data:float +@4340 = .sdata2:0x8051C17C; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x8051C180; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata2:0x8051C188; // type:object size:0x5 scope:local align:4 data:string +@3699 = .sdata2:0x8051C190; // type:object size:0x6 scope:local align:4 data:string +@3700 = .sdata2:0x8051C198; // type:object size:0x5 scope:local align:4 data:string +@3701 = .sdata2:0x8051C1A0; // type:object size:0x5 scope:local align:4 data:string +@3702 = .sdata2:0x8051C1A8; // type:object size:0x5 scope:local align:4 data:string +@3703 = .sdata2:0x8051C1B0; // type:object size:0x5 scope:local align:4 data:string +@3721 = .sdata2:0x8051C1B8; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051C1BC; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051C1C0; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x8051C1C4; // type:object size:0x4 scope:local align:4 data:float +@4111 = .sdata2:0x8051C1C8; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051C1D0; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051C1D4; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051C1D8; // type:object size:0x4 scope:local align:4 data:float +@4038 = .sdata2:0x8051C1DC; // type:object size:0x8 scope:local align:4 data:string +@4039 = .sdata2:0x8051C1E4; // type:object size:0x4 scope:local align:4 data:float +@4040 = .sdata2:0x8051C1E8; // type:object size:0x4 scope:local align:4 data:float +@4041 = .sdata2:0x8051C1EC; // type:object size:0x4 scope:local align:4 data:float +@4042 = .sdata2:0x8051C1F0; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x8051C1F4; // type:object size:0x4 scope:local align:4 data:float +@4348 = .sdata2:0x8051C1F8; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x8051C1FC; // type:object size:0x4 scope:local align:4 data:float +@4350 = .sdata2:0x8051C200; // type:object size:0x4 scope:local align:4 data:float +@4367 = .sdata2:0x8051C204; // type:object size:0x4 scope:local align:4 data:float +@4471 = .sdata2:0x8051C208; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata2:0x8051C20C; // type:object size:0x7 scope:local align:4 data:string +@4576 = .sdata2:0x8051C214; // type:object size:0x4 scope:local align:4 data:float +@4590 = .sdata2:0x8051C218; // type:object size:0x4 scope:local align:4 data:float +@4608 = .sdata2:0x8051C21C; // type:object size:0x4 scope:local align:4 data:float +@4644 = .sdata2:0x8051C220; // type:object size:0x4 scope:local align:4 data:float +@4673 = .sdata2:0x8051C224; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051C228; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051C22C; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C230; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C234; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051C238; // type:object size:0x4 scope:local align:4 data:float +@3566 = .sdata2:0x8051C23C; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051C240; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051C248; // type:object size:0x7 scope:local align:4 data:string +@3890 = .sdata2:0x8051C250; // type:object size:0x7 scope:local align:4 data:string +@3890 = .sdata2:0x8051C258; // type:object size:0x7 scope:local align:4 data:string +@3907 = .sdata2:0x8051C260; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051C264; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051C268; // type:object size:0x7 scope:local align:4 data:string +@3974 = .sdata2:0x8051C270; // type:object size:0x5 scope:local align:4 data:string +@3977 = .sdata2:0x8051C278; // type:object size:0x5 scope:local align:4 data:string +@3978 = .sdata2:0x8051C280; // type:object size:0x7 scope:local align:4 data:string +@3979 = .sdata2:0x8051C288; // type:object size:0x5 scope:local align:4 data:string +@3980 = .sdata2:0x8051C290; // type:object size:0x5 scope:local align:4 data:string +@3981 = .sdata2:0x8051C298; // type:object size:0x7 scope:local align:4 data:string +@3982 = .sdata2:0x8051C2A0; // type:object size:0x6 scope:local align:4 data:string +@3983 = .sdata2:0x8051C2A8; // type:object size:0x7 scope:local align:4 data:string +@3984 = .sdata2:0x8051C2B0; // type:object size:0x5 scope:local align:4 data:string +@3994 = .sdata2:0x8051C2B8; // type:object size:0x4 scope:local align:4 data:float +@4045 = .sdata2:0x8051C2BC; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051C2C0; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x8051C2C4; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata2:0x8051C2C8; // type:object size:0x4 scope:local align:4 data:float +@4442 = .sdata2:0x8051C2CC; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x8051C2D0; // type:object size:0x4 scope:local align:4 data:float +@4491 = .sdata2:0x8051C2D4; // type:object size:0x4 scope:local align:4 data:float +@4606 = .sdata2:0x8051C2D8; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051C2E0; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051C2E4; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051C2E8; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C2EC; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051C2F0; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C2F4; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051C2F8; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051C2FC; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x8051C300; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051C304; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051C308; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051C30C; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051C310; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051C314; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051C318; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x8051C31C; // type:object size:0x4 scope:local align:4 data:float +@4294 = .sdata2:0x8051C320; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x8051C328; // type:object size:0x8 scope:local align:8 data:double +@4583 = .sdata2:0x8051C330; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x8051C334; // type:object size:0x4 scope:local align:4 data:float +@4585 = .sdata2:0x8051C338; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x8051C33C; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x8051C340; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051C344; // type:object size:0x4 scope:local align:4 data:float +@4685 = .sdata2:0x8051C348; // type:object size:0x8 scope:local align:4 data:string +@4767 = .sdata2:0x8051C350; // type:object size:0x4 scope:local align:4 data:float +@3743 = .sdata2:0x8051C358; // type:object size:0x5 scope:local align:4 data:string +@3744 = .sdata2:0x8051C360; // type:object size:0x5 scope:local align:4 data:string +@3745 = .sdata2:0x8051C368; // type:object size:0x5 scope:local align:4 data:string +@3746 = .sdata2:0x8051C370; // type:object size:0x5 scope:local align:4 data:string +@3747 = .sdata2:0x8051C378; // type:object size:0x6 scope:local align:4 data:string +@3748 = .sdata2:0x8051C380; // type:object size:0x5 scope:local align:4 data:string +@3749 = .sdata2:0x8051C388; // type:object size:0x5 scope:local align:4 data:string +@3758 = .sdata2:0x8051C390; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051C394; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051C398; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051C39C; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051C3A0; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051C3A4; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051C3A8; // type:object size:0x8 scope:local align:8 data:double +@4009 = .sdata2:0x8051C3B0; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x8051C3B4; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051C3B8; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051C3BC; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051C3C0; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C3C4; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051C3C8; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C3CC; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C3D0; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051C3D4; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C3D8; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051C3DC; // type:object size:0x4 scope:local align:4 data:float +@3570 = .sdata2:0x8051C3E0; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051C3E4; // type:object size:0x4 scope:local align:4 data:float +@3576 = .sdata2:0x8051C3E8; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051C3EC; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x8051C3F0; // type:object size:0x5 scope:local align:4 data:string +@3775 = .sdata2:0x8051C3F8; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x8051C3FC; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051C400; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x8051C404; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051C408; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051C40C; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x8051C410; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051C414; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051C418; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051C41C; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051C420; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata2:0x8051C424; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051C428; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x8051C42C; // type:object size:0x4 scope:local align:4 data:float +@3789 = .sdata2:0x8051C430; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x8051C434; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051C438; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051C43C; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051C440; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x8051C444; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051C448; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051C44C; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x8051C450; // type:object size:0x5 scope:local align:4 data:string +@4226 = .sdata2:0x8051C458; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051C45C; // type:object size:0x4 scope:local align:4 data:float +@4229 = .sdata2:0x8051C460; // type:object size:0x8 scope:local align:8 data:double +@4313 = .sdata2:0x8051C468; // type:object size:0x4 scope:local align:4 data:float +@4314 = .sdata2:0x8051C46C; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051C470; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051C474; // type:object size:0x4 scope:local align:4 data:float +@4317 = .sdata2:0x8051C478; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051C47C; // type:object size:0x4 scope:local align:4 data:float +@4372 = .sdata2:0x8051C480; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051C484; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051C488; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051C48C; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051C490; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051C494; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051C498; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051C49C; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051C4A0; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051C4A4; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051C4A8; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x8051C4AC; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051C4B0; // type:object size:0x4 scope:local align:4 data:float +@5266 = .sdata2:0x8051C4B4; // type:object size:0x4 scope:local align:4 data:float +@5267 = .sdata2:0x8051C4B8; // type:object size:0x4 scope:local align:4 data:float +@5268 = .sdata2:0x8051C4BC; // type:object size:0x4 scope:local align:4 data:float +@5291 = .sdata2:0x8051C4C0; // type:object size:0x4 scope:local align:4 data:float +@5292 = .sdata2:0x8051C4C4; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051C4C8; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051C4CC; // type:object size:0x4 scope:local align:4 data:float +@4351 = .sdata2:0x8051C4D0; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x8051C4D4; // type:object size:0x4 scope:local align:4 data:float +@4353 = .sdata2:0x8051C4D8; // type:object size:0x4 scope:local align:4 data:float +@4354 = .sdata2:0x8051C4DC; // type:object size:0x4 scope:local align:4 data:float +@4355 = .sdata2:0x8051C4E0; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x8051C4E4; // type:object size:0x4 scope:local align:4 data:float +@4357 = .sdata2:0x8051C4E8; // type:object size:0x4 scope:local align:4 data:float +@4358 = .sdata2:0x8051C4EC; // type:object size:0x4 scope:local align:4 data:float +@4499 = .sdata2:0x8051C4F0; // type:object size:0x8 scope:local align:4 data:string +@4500 = .sdata2:0x8051C4F8; // type:object size:0x4 scope:local align:4 data:string +@4670 = .sdata2:0x8051C4FC; // type:object size:0x4 scope:local align:4 data:float +@4671 = .sdata2:0x8051C500; // type:object size:0x4 scope:local align:4 data:float +@4672 = .sdata2:0x8051C504; // type:object size:0x4 scope:local align:4 data:float +@4673 = .sdata2:0x8051C508; // type:object size:0x4 scope:local align:4 data:float +@4675 = .sdata2:0x8051C510; // type:object size:0x8 scope:local align:8 data:double +@4815 = .sdata2:0x8051C518; // type:object size:0x4 scope:local align:4 data:float +@4816 = .sdata2:0x8051C51C; // type:object size:0x4 scope:local align:4 data:float +@4817 = .sdata2:0x8051C520; // type:object size:0x4 scope:local align:4 data:float +@4890 = .sdata2:0x8051C524; // type:object size:0x4 scope:local align:4 data:float +@4891 = .sdata2:0x8051C528; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata2:0x8051C52C; // type:object size:0x4 scope:local align:4 data:float +@5253 = .sdata2:0x8051C530; // type:object size:0x7 scope:local align:4 data:string +@3566 = .sdata2:0x8051C538; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C53C; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051C540; // type:object size:0x8 scope:local align:8 data:double +@3600 = .sdata2:0x8051C548; // type:object size:0x4 scope:local align:4 data:string +@3601 = .sdata2:0x8051C54C; // type:object size:0x4 scope:local align:4 data:float +@3602 = .sdata2:0x8051C550; // type:object size:0x4 scope:local align:4 data:float +@3603 = .sdata2:0x8051C554; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051C558; // type:object size:0x4 scope:local align:4 data:float +@3605 = .sdata2:0x8051C55C; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x8051C560; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata2:0x8051C564; // type:object size:0x6 scope:local align:4 data:string +@3618 = .sdata2:0x8051C56C; // type:object size:0x6 scope:local align:4 data:string +@3619 = .sdata2:0x8051C574; // type:object size:0x6 scope:local align:4 data:string +@3624 = .sdata2:0x8051C57C; // type:object size:0x5 scope:local align:4 data:string +@3625 = .sdata2:0x8051C584; // type:object size:0x5 scope:local align:4 data:string +@3685 = .sdata2:0x8051C58C; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051C590; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051C594; // type:object size:0x4 scope:local align:4 data:float +@3688 = .sdata2:0x8051C598; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051C59C; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051C5A0; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051C5A8; // type:object size:0x5 scope:local align:4 data:string +@3732 = .sdata2:0x8051C5B0; // type:object size:0x5 scope:local align:4 data:string +@3733 = .sdata2:0x8051C5B8; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x8051C5C0; // type:object size:0x5 scope:local align:4 data:string +@3735 = .sdata2:0x8051C5C8; // type:object size:0x6 scope:local align:4 data:string +@3736 = .sdata2:0x8051C5D0; // type:object size:0x5 scope:local align:4 data:string +@3748 = .sdata2:0x8051C5D8; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051C5DC; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051C5E0; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051C5E4; // type:object size:0x4 scope:local align:4 data:float +@3960 = .sdata2:0x8051C5E8; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051C5F0; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C5F4; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051C5F8; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051C5FC; // type:object size:0x4 scope:local align:4 data:float +@3562 = .sdata2:0x8051C600; // type:object size:0x4 scope:local align:4 data:float +@3563 = .sdata2:0x8051C604; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051C608; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051C60C; // type:object size:0x4 scope:local align:4 data:float +@3568 = .sdata2:0x8051C610; // type:object size:0x4 scope:local align:4 data:float +@3571 = .sdata2:0x8051C614; // type:object size:0x4 scope:local align:4 data:float +@3572 = .sdata2:0x8051C618; // type:object size:0x4 scope:local align:4 data:float +@3577 = .sdata2:0x8051C61C; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051C620; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x8051C624; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051C628; // type:object size:0x5 scope:local align:4 data:string +@3753 = .sdata2:0x8051C630; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051C634; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051C638; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051C63C; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051C640; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051C644; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051C648; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x8051C64C; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051C650; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x8051C654; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8051C658; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x8051C65C; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051C660; // type:object size:0x4 scope:local align:4 data:float +@4091 = .sdata2:0x8051C668; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051C66C; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051C670; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x8051C674; // type:object size:0x4 scope:local align:4 data:float +@4202 = .sdata2:0x8051C678; // type:object size:0x4 scope:local align:4 data:float +@4203 = .sdata2:0x8051C67C; // type:object size:0x4 scope:local align:4 data:float +@4229 = .sdata2:0x8051C680; // type:object size:0x5 scope:local align:4 data:string +@4230 = .sdata2:0x8051C688; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata2:0x8051C68C; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata2:0x8051C690; // type:object size:0x4 scope:local align:4 data:float +@4251 = .sdata2:0x8051C698; // type:object size:0x8 scope:local align:8 data:double +@4364 = .sdata2:0x8051C6A0; // type:object size:0x4 scope:local align:4 data:float +@4365 = .sdata2:0x8051C6A4; // type:object size:0x4 scope:local align:4 data:float +@4366 = .sdata2:0x8051C6A8; // type:object size:0x4 scope:local align:4 data:float +@4367 = .sdata2:0x8051C6AC; // type:object size:0x4 scope:local align:4 data:float +@4368 = .sdata2:0x8051C6B0; // type:object size:0x4 scope:local align:4 data:float +@4369 = .sdata2:0x8051C6B4; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051C6B8; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x8051C6BC; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051C6C0; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051C6C4; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051C6C8; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051C6CC; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051C6D0; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051C6D4; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051C6D8; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051C6DC; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051C6E0; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x8051C6E4; // type:object size:0x4 scope:local align:4 data:float +@4637 = .sdata2:0x8051C6E8; // type:object size:0x4 scope:local align:4 data:float +@5217 = .sdata2:0x8051C6EC; // type:object size:0x6 scope:local align:4 data:string +@5218 = .sdata2:0x8051C6F4; // type:object size:0x6 scope:local align:4 data:string +@5250 = .sdata2:0x8051C6FC; // type:object size:0x4 scope:local align:4 data:float +@5270 = .sdata2:0x8051C700; // type:object size:0x4 scope:local align:4 data:float +@5271 = .sdata2:0x8051C704; // type:object size:0x4 scope:local align:4 data:float +@5315 = .sdata2:0x8051C708; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata2:0x8051C70C; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051C710; // type:object size:0x5 scope:local align:4 data:string +@4056 = .sdata2:0x8051C718; // type:object size:0x5 scope:local align:4 data:string +@4057 = .sdata2:0x8051C720; // type:object size:0x8 scope:local align:4 data:string +@4058 = .sdata2:0x8051C728; // type:object size:0x8 scope:local align:4 data:string +@4060 = .sdata2:0x8051C730; // type:object size:0x5 scope:local align:4 data:string +@4061 = .sdata2:0x8051C738; // type:object size:0x5 scope:local align:4 data:string +@4062 = .sdata2:0x8051C740; // type:object size:0x5 scope:local align:4 data:string +@4063 = .sdata2:0x8051C748; // type:object size:0x7 scope:local align:4 data:string +@4064 = .sdata2:0x8051C750; // type:object size:0x4 scope:local align:4 data:string +@4077 = .sdata2:0x8051C754; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051C758; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051C75C; // type:object size:0x4 scope:local align:4 data:float +@4413 = .sdata2:0x8051C760; // type:object size:0x4 scope:local align:4 data:float +@4414 = .sdata2:0x8051C764; // type:object size:0x4 scope:local align:4 data:float +@4415 = .sdata2:0x8051C768; // type:object size:0x4 scope:local align:4 data:float +@4417 = .sdata2:0x8051C770; // type:object size:0x8 scope:local align:8 data:double +@4705 = .sdata2:0x8051C778; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x8051C77C; // type:object size:0x4 scope:local align:4 data:float +@5119 = .sdata2:0x8051C780; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x8051C788; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x8051C78C; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051C790; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C794; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051C798; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C79C; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051C7A0; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x8051C7A8; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051C7AC; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051C7B0; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051C7B4; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051C7B8; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051C7BC; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051C7C0; // type:object size:0x4 scope:local align:4 data:float +@3947 = .sdata2:0x8051C7C4; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051C7C8; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051C7CC; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051C7D0; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051C7D4; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x8051C7D8; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x8051C7DC; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051C7E0; // type:object size:0x8 scope:local align:8 data:double +@4147 = .sdata2:0x8051C7E8; // type:object size:0x4 scope:local align:4 data:float +@4164 = .sdata2:0x8051C7EC; // type:object size:0x4 scope:local align:4 data:float +@4287 = .sdata2:0x8051C7F0; // type:object size:0x4 scope:local align:4 data:float +@4288 = .sdata2:0x8051C7F4; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051C7F8; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051C7FC; // type:object size:0x4 scope:local align:4 data:float +@4291 = .sdata2:0x8051C800; // type:object size:0x4 scope:local align:4 data:float +@4292 = .sdata2:0x8051C804; // type:object size:0x4 scope:local align:4 data:float +@4293 = .sdata2:0x8051C808; // type:object size:0x4 scope:local align:4 data:float +@4753 = .sdata2:0x8051C80C; // type:object size:0x4 scope:local align:4 data:float +@5199 = .sdata2:0x8051C810; // type:object size:0x4 scope:local align:4 data:float +@5203 = .sdata2:0x8051C814; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051C818; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051C81C; // type:object size:0x4 scope:local align:4 data:float +@3603 = .sdata2:0x8051C820; // type:object size:0x4 scope:local align:4 data:float +@4066 = .sdata2:0x8051C828; // type:object size:0x5 scope:local align:4 data:string +@4067 = .sdata2:0x8051C830; // type:object size:0x5 scope:local align:4 data:string +@4068 = .sdata2:0x8051C838; // type:object size:0x5 scope:local align:4 data:string +@4069 = .sdata2:0x8051C840; // type:object size:0x6 scope:local align:4 data:string +@4070 = .sdata2:0x8051C848; // type:object size:0x7 scope:local align:4 data:string +@4071 = .sdata2:0x8051C850; // type:object size:0x5 scope:local align:4 data:string +@4072 = .sdata2:0x8051C858; // type:object size:0x5 scope:local align:4 data:string +@4073 = .sdata2:0x8051C860; // type:object size:0x5 scope:local align:4 data:string +@4074 = .sdata2:0x8051C868; // type:object size:0x7 scope:local align:4 data:string +@4075 = .sdata2:0x8051C870; // type:object size:0x8 scope:local align:4 data:string +@4097 = .sdata2:0x8051C878; // type:object size:0x4 scope:local align:4 data:float +@4127 = .sdata2:0x8051C87C; // type:object size:0x4 scope:local align:4 data:float +@4128 = .sdata2:0x8051C880; // type:object size:0x4 scope:local align:4 data:float +@4129 = .sdata2:0x8051C884; // type:object size:0x4 scope:local align:4 data:float +@4130 = .sdata2:0x8051C888; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051C88C; // type:object size:0x4 scope:local align:4 data:float +@4132 = .sdata2:0x8051C890; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8051C894; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051C898; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051C89C; // type:object size:0x4 scope:local align:4 data:float +@4273 = .sdata2:0x8051C8A0; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata2:0x8051C8A4; // type:object size:0x4 scope:local align:4 data:float +@4528 = .sdata2:0x8051C8A8; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051C8B0; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051C8B4; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051C8B8; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051C8BC; // type:object size:0x4 scope:local align:4 data:float +@3552 = .sdata2:0x8051C8C0; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051C8C4; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051C8C8; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051C8CC; // type:object size:0x4 scope:local align:4 data:float +cDefaultKamuJointOffset__Q34Game9OniKurage23@unnamed@OniKurage_cpp@ = .sdata2:0x8051C8D0; // type:object size:0x8 scope:local align:4 data:float +cFlickKamuJointOffset__Q34Game9OniKurage23@unnamed@OniKurage_cpp@ = .sdata2:0x8051C8D8; // type:object size:0x8 scope:local align:4 data:float +@4051 = .sdata2:0x8051C8E0; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x8051C8E4; // type:object size:0x4 scope:local align:4 data:float +@4112 = .sdata2:0x8051C8E8; // type:object size:0x7 scope:local align:4 data:string +@4113 = .sdata2:0x8051C8F0; // type:object size:0x4 scope:local align:4 data:float +@4114 = .sdata2:0x8051C8F4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x8051C8F8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x8051C8FC; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x8051C900; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051C904; // type:object size:0x6 scope:local align:4 data:string +@4237 = .sdata2:0x8051C90C; // type:object size:0x4 scope:local align:4 data:float +@4238 = .sdata2:0x8051C910; // type:object size:0x4 scope:local align:4 data:float +@4239 = .sdata2:0x8051C914; // type:object size:0x4 scope:local align:4 data:float +@4240 = .sdata2:0x8051C918; // type:object size:0x4 scope:local align:4 data:float +@4241 = .sdata2:0x8051C91C; // type:object size:0x4 scope:local align:4 data:float +@4243 = .sdata2:0x8051C920; // type:object size:0x8 scope:local align:8 data:double +@4265 = .sdata2:0x8051C928; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051C92C; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata2:0x8051C930; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051C934; // type:object size:0x4 scope:local align:4 data:float +@5115 = .sdata2:0x8051C938; // type:object size:0x4 scope:local align:4 data:float +@5116 = .sdata2:0x8051C93C; // type:object size:0x4 scope:local align:4 data:float +@5117 = .sdata2:0x8051C940; // type:object size:0x4 scope:local align:4 data:float +@5118 = .sdata2:0x8051C944; // type:object size:0x4 scope:local align:4 data:float +@5280 = .sdata2:0x8051C948; // type:object size:0x4 scope:local align:4 data:float +@5281 = .sdata2:0x8051C94C; // type:object size:0x4 scope:local align:4 data:float +@5282 = .sdata2:0x8051C950; // type:object size:0x4 scope:local align:4 data:float +@5283 = .sdata2:0x8051C954; // type:object size:0x4 scope:local align:4 data:float +@5515 = .sdata2:0x8051C958; // type:object size:0x7 scope:local align:4 data:string +@5516 = .sdata2:0x8051C960; // type:object size:0x7 scope:local align:4 data:string +@5517 = .sdata2:0x8051C968; // type:object size:0x6 scope:local align:4 data:string +@5518 = .sdata2:0x8051C970; // type:object size:0x7 scope:local align:4 data:string +@5583 = .sdata2:0x8051C978; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051C980; // type:object size:0x5 scope:local align:4 data:string +@3807 = .sdata2:0x8051C988; // type:object size:0x5 scope:local align:4 data:string +@3808 = .sdata2:0x8051C990; // type:object size:0x5 scope:local align:4 data:string +@3809 = .sdata2:0x8051C998; // type:object size:0x5 scope:local align:4 data:string +@3811 = .sdata2:0x8051C9A0; // type:object size:0x6 scope:local align:4 data:string +@3813 = .sdata2:0x8051C9A8; // type:object size:0x7 scope:local align:4 data:string +@3814 = .sdata2:0x8051C9B0; // type:object size:0x8 scope:local align:4 data:string +@3816 = .sdata2:0x8051C9B8; // type:object size:0x5 scope:local align:4 data:string +@3824 = .sdata2:0x8051C9C0; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051C9C4; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051C9C8; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051C9CC; // type:object size:0x4 scope:local align:4 data:float +@3963 = .sdata2:0x8051C9D0; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x8051C9D4; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051C9D8; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051C9E0; // type:object size:0x8 scope:local align:8 data:double +@4443 = .sdata2:0x8051C9E8; // type:object size:0x4 scope:local align:4 data:float +@3521 = .sdata2:0x8051C9F0; // type:object size:0x5 scope:local align:4 data:string +@3522 = .sdata2:0x8051C9F8; // type:object size:0x5 scope:local align:4 data:string +@3523 = .sdata2:0x8051CA00; // type:object size:0x4 scope:local align:4 data:string +@3524 = .sdata2:0x8051CA04; // type:object size:0x6 scope:local align:4 data:string +@3525 = .sdata2:0x8051CA0C; // type:object size:0x6 scope:local align:4 data:string +@3640 = .sdata2:0x8051CA14; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051CA18; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051CA1C; // type:object size:0x4 scope:local align:4 data:float +@3644 = .sdata2:0x8051CA20; // type:object size:0x4 scope:local align:4 data:float +@3645 = .sdata2:0x8051CA24; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051CA28; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051CA2C; // type:object size:0x4 scope:local align:4 data:float +@3650 = .sdata2:0x8051CA30; // type:object size:0x4 scope:local align:4 data:float +@3651 = .sdata2:0x8051CA34; // type:object size:0x4 scope:local align:4 data:float +@3654 = .sdata2:0x8051CA38; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata2:0x8051CA3C; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051CA40; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051CA44; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x8051CA48; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x8051CA4C; // type:object size:0x4 scope:local align:4 data:float +@3671 = .sdata2:0x8051CA50; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x8051CA54; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata2:0x8051CA58; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x8051CA5C; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051CA60; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051CA64; // type:object size:0x4 scope:local align:4 data:float +@3683 = .sdata2:0x8051CA68; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051CA6C; // type:object size:0x4 scope:local align:4 data:float +@3689 = .sdata2:0x8051CA70; // type:object size:0x4 scope:local align:4 data:float +@3691 = .sdata2:0x8051CA74; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051CA78; // type:object size:0x4 scope:local align:4 data:float +@3696 = .sdata2:0x8051CA7C; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051CA80; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051CA84; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051CA88; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051CA8C; // type:object size:0x4 scope:local align:4 data:float +@3713 = .sdata2:0x8051CA90; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x8051CA94; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x8051CA98; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051CA9C; // type:object size:0x4 scope:local align:4 data:float +@3724 = .sdata2:0x8051CAA0; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x8051CAA4; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051CAA8; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x8051CAAC; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x8051CAB0; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051CAB4; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051CAB8; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051CABC; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x8051CAC0; // type:object size:0x4 scope:local align:4 data:float +@3747 = .sdata2:0x8051CAC4; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051CAC8; // type:object size:0x5 scope:local align:4 data:string +@3734 = .sdata2:0x8051CAD0; // type:object size:0x6 scope:local align:4 data:string +@3735 = .sdata2:0x8051CAD8; // type:object size:0x6 scope:local align:4 data:string +@3736 = .sdata2:0x8051CAE0; // type:object size:0x6 scope:local align:4 data:string +@3737 = .sdata2:0x8051CAE8; // type:object size:0x6 scope:local align:4 data:string +@3738 = .sdata2:0x8051CAF0; // type:object size:0x6 scope:local align:4 data:string +@3739 = .sdata2:0x8051CAF8; // type:object size:0x6 scope:local align:4 data:string +@3882 = .sdata2:0x8051CB00; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051CB04; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051CB08; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x8051CB0C; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051CB10; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051CB14; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051CB18; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051CB1C; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051CB20; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051CB24; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051CB28; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051CB2C; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051CB30; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051CB34; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x8051CB38; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x8051CB3C; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051CB40; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051CB44; // type:object size:0x4 scope:local align:4 data:float +@4069 = .sdata2:0x8051CB48; // type:object size:0x4 scope:local align:4 data:float +@4070 = .sdata2:0x8051CB4C; // type:object size:0x4 scope:local align:4 data:float +@4071 = .sdata2:0x8051CB50; // type:object size:0x4 scope:local align:4 data:float +@4072 = .sdata2:0x8051CB54; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x8051CB58; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051CB5C; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051CB60; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051CB64; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x8051CB68; // type:object size:0x4 scope:local align:4 data:float +@4109 = .sdata2:0x8051CB70; // type:object size:0x4 scope:local align:4 data:float +@4110 = .sdata2:0x8051CB74; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051CB78; // type:object size:0x4 scope:local align:4 data:float +@4236 = .sdata2:0x8051CB7C; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051CB80; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x8051CB84; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x8051CB88; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051CB8C; // type:object size:0x5 scope:local align:4 data:string +@4308 = .sdata2:0x8051CB94; // type:object size:0x4 scope:local align:4 data:float +@4309 = .sdata2:0x8051CB98; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x8051CBA0; // type:object size:0x8 scope:local align:8 data:double +@4368 = .sdata2:0x8051CBA8; // type:object size:0x4 scope:local align:4 data:float +@4369 = .sdata2:0x8051CBAC; // type:object size:0x4 scope:local align:4 data:float +@4370 = .sdata2:0x8051CBB0; // type:object size:0x4 scope:local align:4 data:float +@4371 = .sdata2:0x8051CBB4; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051CBB8; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051CBBC; // type:object size:0x4 scope:local align:4 data:float +@4458 = .sdata2:0x8051CBC0; // type:object size:0x4 scope:local align:4 data:float +@4459 = .sdata2:0x8051CBC4; // type:object size:0x4 scope:local align:4 data:float +@4460 = .sdata2:0x8051CBC8; // type:object size:0x4 scope:local align:4 data:float +@4490 = .sdata2:0x8051CBCC; // type:object size:0x4 scope:local align:4 data:float +@4491 = .sdata2:0x8051CBD0; // type:object size:0x4 scope:local align:4 data:float +@4492 = .sdata2:0x8051CBD4; // type:object size:0x4 scope:local align:4 data:float +@4493 = .sdata2:0x8051CBD8; // type:object size:0x4 scope:local align:4 data:float +@4494 = .sdata2:0x8051CBDC; // type:object size:0x4 scope:local align:4 data:float +@4495 = .sdata2:0x8051CBE0; // type:object size:0x4 scope:local align:4 data:float +@4496 = .sdata2:0x8051CBE4; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata2:0x8051CBE8; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata2:0x8051CBEC; // type:object size:0x4 scope:local align:4 data:float +@4705 = .sdata2:0x8051CBF0; // type:object size:0x5 scope:local align:4 data:string +@4706 = .sdata2:0x8051CBF8; // type:object size:0x5 scope:local align:4 data:string +@4707 = .sdata2:0x8051CC00; // type:object size:0x4 scope:local align:4 data:string +@4708 = .sdata2:0x8051CC04; // type:object size:0x6 scope:local align:4 data:string +@4765 = .sdata2:0x8051CC0C; // type:object size:0x4 scope:local align:4 data:float +@4766 = .sdata2:0x8051CC10; // type:object size:0x6 scope:local align:4 data:string +@4797 = .sdata2:0x8051CC18; // type:object size:0x4 scope:local align:4 data:float +@4798 = .sdata2:0x8051CC1C; // type:object size:0x4 scope:local align:4 data:float +@4799 = .sdata2:0x8051CC20; // type:object size:0x4 scope:local align:4 data:float +@4800 = .sdata2:0x8051CC24; // type:object size:0x4 scope:local align:4 data:float +@4841 = .sdata2:0x8051CC28; // type:object size:0x4 scope:local align:4 data:float +@4887 = .sdata2:0x8051CC2C; // type:object size:0x4 scope:local align:4 data:float +@4968 = .sdata2:0x8051CC30; // type:object size:0x4 scope:local align:4 data:float +@5024 = .sdata2:0x8051CC34; // type:object size:0x4 scope:local align:4 data:float +@5130 = .sdata2:0x8051CC38; // type:object size:0x4 scope:local align:4 data:float +@5131 = .sdata2:0x8051CC3C; // type:object size:0x4 scope:local align:4 data:float +@5132 = .sdata2:0x8051CC40; // type:object size:0x4 scope:local align:4 data:float +@5133 = .sdata2:0x8051CC44; // type:object size:0x4 scope:local align:4 data:float +@5134 = .sdata2:0x8051CC48; // type:object size:0x4 scope:local align:4 data:float +@5135 = .sdata2:0x8051CC4C; // type:object size:0x4 scope:local align:4 data:float +@5171 = .sdata2:0x8051CC50; // type:object size:0x4 scope:local align:4 data:float +@5232 = .sdata2:0x8051CC54; // type:object size:0x4 scope:local align:4 data:float +@5233 = .sdata2:0x8051CC58; // type:object size:0x4 scope:local align:4 data:float +@5234 = .sdata2:0x8051CC5C; // type:object size:0x4 scope:local align:4 data:float +@5235 = .sdata2:0x8051CC60; // type:object size:0x4 scope:local align:4 data:float +@5374 = .sdata2:0x8051CC64; // type:object size:0x4 scope:local align:4 data:float +@5375 = .sdata2:0x8051CC68; // type:object size:0x4 scope:local align:4 data:float +@5376 = .sdata2:0x8051CC6C; // type:object size:0x4 scope:local align:4 data:float +@5377 = .sdata2:0x8051CC70; // type:object size:0x4 scope:local align:4 data:float +@5378 = .sdata2:0x8051CC74; // type:object size:0x4 scope:local align:4 data:float +@5379 = .sdata2:0x8051CC78; // type:object size:0x4 scope:local align:4 data:float +@5380 = .sdata2:0x8051CC7C; // type:object size:0x4 scope:local align:4 data:float +@5381 = .sdata2:0x8051CC80; // type:object size:0x4 scope:local align:4 data:float +@5382 = .sdata2:0x8051CC84; // type:object size:0x4 scope:local align:4 data:float +@5631 = .sdata2:0x8051CC88; // type:object size:0x4 scope:local align:4 data:float +@6294 = .sdata2:0x8051CC8C; // type:object size:0x4 scope:local align:4 data:float +@6666 = .sdata2:0x8051CC90; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051CC98; // type:object size:0x5 scope:local align:4 data:string +@3950 = .sdata2:0x8051CCA0; // type:object size:0x5 scope:local align:4 data:string +@3951 = .sdata2:0x8051CCA8; // type:object size:0x5 scope:local align:4 data:string +@3952 = .sdata2:0x8051CCB0; // type:object size:0x5 scope:local align:4 data:string +@3953 = .sdata2:0x8051CCB8; // type:object size:0x6 scope:local align:4 data:string +@3954 = .sdata2:0x8051CCC0; // type:object size:0x7 scope:local align:4 data:string +@3955 = .sdata2:0x8051CCC8; // type:object size:0x8 scope:local align:4 data:string +@3957 = .sdata2:0x8051CCD0; // type:object size:0x8 scope:local align:4 data:string +@3958 = .sdata2:0x8051CCD8; // type:object size:0x8 scope:local align:4 data:string +@3959 = .sdata2:0x8051CCE0; // type:object size:0x8 scope:local align:4 data:string +@3974 = .sdata2:0x8051CCE8; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x8051CCEC; // type:object size:0x4 scope:local align:4 data:float +@4185 = .sdata2:0x8051CCF0; // type:object size:0x4 scope:local align:4 data:float +@4186 = .sdata2:0x8051CCF4; // type:object size:0x4 scope:local align:4 data:float +@4187 = .sdata2:0x8051CCF8; // type:object size:0x4 scope:local align:4 data:float +@4352 = .sdata2:0x8051CCFC; // type:object size:0x4 scope:local align:4 data:float +@4353 = .sdata2:0x8051CD00; // type:object size:0x4 scope:local align:4 data:float +@4425 = .sdata2:0x8051CD04; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051CD08; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051CD0C; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051CD10; // type:object size:0x7 scope:local align:4 data:string +@3936 = .sdata2:0x8051CD18; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051CD1C; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051CD20; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051CD24; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051CD28; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051CD2C; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051CD30; // type:object size:0x7 scope:local align:4 data:string +@3979 = .sdata2:0x8051CD38; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051CD3C; // type:object size:0x5 scope:local align:4 data:string +@3981 = .sdata2:0x8051CD44; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x8051CD48; // type:object size:0x7 scope:local align:4 data:string +@3983 = .sdata2:0x8051CD50; // type:object size:0x5 scope:local align:4 data:string +@4029 = .sdata2:0x8051CD58; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051CD5C; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x8051CD60; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x8051CD64; // type:object size:0x4 scope:local align:4 data:float +@4033 = .sdata2:0x8051CD68; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x8051CD70; // type:object size:0x8 scope:local align:8 data:double +@4171 = .sdata2:0x8051CD78; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051CD7C; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051CD80; // type:object size:0x4 scope:local align:4 data:float +@4209 = .sdata2:0x8051CD84; // type:object size:0x6 scope:local align:4 data:string +@4242 = .sdata2:0x8051CD8C; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x8051CD90; // type:object size:0x5 scope:local align:4 data:string +@4278 = .sdata2:0x8051CD98; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051CDA0; // type:object size:0x5 scope:local align:4 data:string +@3612 = .sdata2:0x8051CDA8; // type:object size:0x6 scope:local align:4 data:string +@3613 = .sdata2:0x8051CDB0; // type:object size:0x5 scope:local align:4 data:string +@3614 = .sdata2:0x8051CDB8; // type:object size:0x7 scope:local align:4 data:string +@3615 = .sdata2:0x8051CDC0; // type:object size:0x6 scope:local align:4 data:string +@3616 = .sdata2:0x8051CDC8; // type:object size:0x5 scope:local align:4 data:string +@3624 = .sdata2:0x8051CDD0; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051CDD4; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051CDD8; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051CDDC; // type:object size:0x4 scope:local align:4 data:float +@3790 = .sdata2:0x8051CDE0; // type:object size:0x4 scope:local align:4 data:float +@4296 = .sdata2:0x8051CDE4; // type:object size:0x4 scope:local align:4 data:float +@4306 = .sdata2:0x8051CDE8; // type:object size:0x4 scope:local align:4 data:float +@3361 = .sdata2:0x8051CDF0; // type:object size:0x4 scope:local align:4 data:float +@3362 = .sdata2:0x8051CDF4; // type:object size:0x4 scope:local align:4 data:float +@3363 = .sdata2:0x8051CDF8; // type:object size:0x4 scope:local align:4 data:float +@3653 = .sdata2:0x8051CE00; // type:object size:0x4 scope:local align:4 data:string +@3654 = .sdata2:0x8051CE04; // type:object size:0x4 scope:local align:4 data:float +@3655 = .sdata2:0x8051CE08; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x8051CE0C; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051CE10; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x8051CE14; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051CE18; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051CE1C; // type:object size:0x5 scope:local align:4 data:string +@3688 = .sdata2:0x8051CE24; // type:object size:0x4 scope:local align:4 data:float +@3693 = .sdata2:0x8051CE28; // type:object size:0x5 scope:local align:4 data:string +@3694 = .sdata2:0x8051CE30; // type:object size:0x4 scope:local align:4 data:float +@3695 = .sdata2:0x8051CE34; // type:object size:0x5 scope:local align:4 data:string +@3710 = .sdata2:0x8051CE3C; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata2:0x8051CE40; // type:object size:0x8 scope:local align:8 data:double +@3974 = .sdata2:0x8051CE48; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x8051CE50; // type:object size:0x5 scope:local align:4 data:string +@3789 = .sdata2:0x8051CE58; // type:object size:0x8 scope:local align:4 data:string +@3790 = .sdata2:0x8051CE60; // type:object size:0x5 scope:local align:4 data:string +@3791 = .sdata2:0x8051CE68; // type:object size:0x7 scope:local align:4 data:string +@3792 = .sdata2:0x8051CE70; // type:object size:0x6 scope:local align:4 data:string +@3793 = .sdata2:0x8051CE78; // type:object size:0x5 scope:local align:4 data:string +@3796 = .sdata2:0x8051CE80; // type:object size:0x5 scope:local align:4 data:string +@3805 = .sdata2:0x8051CE88; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051CE8C; // type:object size:0x4 scope:local align:4 data:float +@3830 = .sdata2:0x8051CE90; // type:object size:0x4 scope:local align:4 data:float +@4009 = .sdata2:0x8051CE94; // type:object size:0x4 scope:local align:4 data:float +@4010 = .sdata2:0x8051CE98; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051CE9C; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051CEA0; // type:object size:0x4 scope:local align:4 data:float +@4453 = .sdata2:0x8051CEA4; // type:object size:0x4 scope:local align:4 data:float +@4665 = .sdata2:0x8051CEA8; // type:object size:0x4 scope:local align:4 data:float +@5557 = .sdata2:0x8051CEAC; // type:object size:0x4 scope:local align:4 data:float +@5987 = .sdata2:0x8051CEB0; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051CEB8; // type:object size:0x8 scope:local align:4 data:4byte +@3563 = .sdata2:0x8051CEC0; // type:object size:0x8 scope:local align:4 data:4byte +@3911 = .sdata2:0x8051CEC8; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051CECC; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051CED0; // type:object size:0x5 scope:local align:4 data:string +@3970 = .sdata2:0x8051CED8; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051CEDC; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051CEE0; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051CEE4; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051CEE8; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051CEEC; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051CEF0; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051CEF4; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051CEF8; // type:object size:0x6 scope:local align:4 data:string +@4026 = .sdata2:0x8051CF00; // type:object size:0x6 scope:local align:4 data:string +@4114 = .sdata2:0x8051CF08; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051CF0C; // type:object size:0x4 scope:local align:4 data:float +@4232 = .sdata2:0x8051CF10; // type:object size:0x4 scope:local align:4 data:float +@4234 = .sdata2:0x8051CF18; // type:object size:0x8 scope:local align:8 data:double +@4329 = .sdata2:0x8051CF20; // type:object size:0x4 scope:local align:4 data:float +@4330 = .sdata2:0x8051CF24; // type:object size:0x4 scope:local align:4 data:float +@4458 = .sdata2:0x8051CF28; // type:object size:0x4 scope:local align:4 data:float +@4459 = .sdata2:0x8051CF2C; // type:object size:0x4 scope:local align:4 data:float +@4460 = .sdata2:0x8051CF30; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051CF34; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051CF38; // type:object size:0x5 scope:local align:4 data:string +@4610 = .sdata2:0x8051CF40; // type:object size:0x5 scope:local align:4 data:string +@4624 = .sdata2:0x8051CF48; // type:object size:0x8 scope:local align:4 data:string +@4625 = .sdata2:0x8051CF50; // type:object size:0x8 scope:local align:4 data:string +@4725 = .sdata2:0x8051CF58; // type:object size:0x4 scope:local align:4 data:float +@4064 = .sdata2:0x8051CF60; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051CF64; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x8051CF68; // type:object size:0x4 scope:local align:4 data:float +@4566 = .sdata2:0x8051CF6C; // type:object size:0x4 scope:local align:4 data:float +@4567 = .sdata2:0x8051CF70; // type:object size:0x4 scope:local align:4 data:float +@4568 = .sdata2:0x8051CF74; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051CF78; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata2:0x8051CF7C; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata2:0x8051CF80; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata2:0x8051CF84; // type:object size:0x4 scope:local align:4 data:float +@4573 = .sdata2:0x8051CF88; // type:object size:0x4 scope:local align:4 data:float +@4574 = .sdata2:0x8051CF8C; // type:object size:0x4 scope:local align:4 data:float +@4680 = .sdata2:0x8051CF90; // type:object size:0x5 scope:local align:4 data:string +@4899 = .sdata2:0x8051CF98; // type:object size:0x4 scope:local align:4 data:float +@4900 = .sdata2:0x8051CF9C; // type:object size:0x4 scope:local align:4 data:float +@4901 = .sdata2:0x8051CFA0; // type:object size:0x4 scope:local align:4 data:float +@4903 = .sdata2:0x8051CFA8; // type:object size:0x8 scope:local align:8 data:double +@5050 = .sdata2:0x8051CFB0; // type:object size:0x4 scope:local align:4 data:float +@5051 = .sdata2:0x8051CFB4; // type:object size:0x4 scope:local align:4 data:float +@5052 = .sdata2:0x8051CFB8; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata2:0x8051CFBC; // type:object size:0x4 scope:local align:4 data:float +@5054 = .sdata2:0x8051CFC0; // type:object size:0x4 scope:local align:4 data:float +@5055 = .sdata2:0x8051CFC4; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x8051CFC8; // type:object size:0x4 scope:local align:4 data:float +@5096 = .sdata2:0x8051CFCC; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051CFD0; // type:object size:0x5 scope:local align:4 data:string +@3636 = .sdata2:0x8051CFD8; // type:object size:0x6 scope:local align:4 data:string +@3637 = .sdata2:0x8051CFE0; // type:object size:0x5 scope:local align:4 data:string +@3638 = .sdata2:0x8051CFE8; // type:object size:0x7 scope:local align:4 data:string +@3640 = .sdata2:0x8051CFF0; // type:object size:0x5 scope:local align:4 data:string +@3643 = .sdata2:0x8051CFF8; // type:object size:0x6 scope:local align:4 data:string +@3653 = .sdata2:0x8051D000; // type:object size:0x4 scope:local align:4 data:float +@3671 = .sdata2:0x8051D004; // type:object size:0x4 scope:local align:4 data:float +@3672 = .sdata2:0x8051D008; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051D00C; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051D010; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051D014; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051D018; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051D01C; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051D020; // type:object size:0x8 scope:local align:8 data:double +@4104 = .sdata2:0x8051D028; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051D02C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051D030; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051D034; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051D038; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051D03C; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051D040; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051D044; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051D048; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051D04C; // type:object size:0x4 scope:local align:4 data:float +@3564 = .sdata2:0x8051D050; // type:object size:0x4 scope:local align:4 data:float +@3565 = .sdata2:0x8051D054; // type:object size:0x4 scope:local align:4 data:float +@3567 = .sdata2:0x8051D058; // type:object size:0x4 scope:local align:4 data:float +@3569 = .sdata2:0x8051D05C; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x8051D060; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051D064; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051D068; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051D06C; // type:object size:0x4 scope:local align:4 data:float +@3911 = .sdata2:0x8051D070; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051D074; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051D078; // type:object size:0x4 scope:local align:4 data:float +@3965 = .sdata2:0x8051D07C; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051D080; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x8051D084; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051D088; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051D08C; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051D090; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051D094; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051D098; // type:object size:0x8 scope:local align:8 data:double +@4229 = .sdata2:0x8051D0A0; // type:object size:0x4 scope:local align:4 data:float +@4230 = .sdata2:0x8051D0A4; // type:object size:0x4 scope:local align:4 data:float +@4279 = .sdata2:0x8051D0A8; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x8051D0AC; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x8051D0B0; // type:object size:0x4 scope:local align:4 data:float +@3475 = .sdata2:0x8051D0B4; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x8051D0B8; // type:object size:0x4 scope:local align:4 data:float +@3477 = .sdata2:0x8051D0BC; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051D0C0; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051D0C4; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051D0C8; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051D0CC; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051D0D0; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051D0D4; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051D0D8; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051D0DC; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051D0E0; // type:object size:0x5 scope:local align:4 data:string +@4020 = .sdata2:0x8051D0E8; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051D0EC; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x8051D0F0; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051D0F4; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x8051D0F8; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051D0FC; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x8051D100; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x8051D104; // type:object size:0x6 scope:local align:4 data:string +@4038 = .sdata2:0x8051D10C; // type:object size:0x6 scope:local align:4 data:string +@4039 = .sdata2:0x8051D114; // type:object size:0x6 scope:local align:4 data:string +@4040 = .sdata2:0x8051D11C; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051D120; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x8051D124; // type:object size:0x6 scope:local align:4 data:string +@4212 = .sdata2:0x8051D12C; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051D130; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051D134; // type:object size:0x4 scope:local align:4 data:float +@4235 = .sdata2:0x8051D138; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051D140; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051D144; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051D148; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051D14C; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051D150; // type:object size:0x4 scope:local align:4 data:float +@4024 = .sdata2:0x8051D154; // type:object size:0x4 scope:local align:4 data:float +@4025 = .sdata2:0x8051D158; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x8051D15C; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051D160; // type:object size:0x4 scope:local align:4 data:float +@4028 = .sdata2:0x8051D164; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x8051D168; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051D16C; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x8051D170; // type:object size:0x8 scope:local align:8 data:double +@4072 = .sdata2:0x8051D178; // type:object size:0x4 scope:local align:4 data:float +@4073 = .sdata2:0x8051D17C; // type:object size:0x4 scope:local align:4 data:float +@4074 = .sdata2:0x8051D180; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051D184; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051D188; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051D18C; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051D190; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051D194; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051D198; // type:object size:0x4 scope:local align:4 data:float +@4290 = .sdata2:0x8051D19C; // type:object size:0x4 scope:local align:4 data:float +@4350 = .sdata2:0x8051D1A0; // type:object size:0x4 scope:local align:4 data:float +@4703 = .sdata2:0x8051D1A4; // type:object size:0x4 scope:local align:4 data:float +@4705 = .sdata2:0x8051D1A8; // type:object size:0x4 scope:local align:4 data:float +@4999 = .sdata2:0x8051D1AC; // type:object size:0x4 scope:local align:4 data:float +@5000 = .sdata2:0x8051D1B0; // type:object size:0x4 scope:local align:4 data:float +@5001 = .sdata2:0x8051D1B4; // type:object size:0x4 scope:local align:4 data:float +@5002 = .sdata2:0x8051D1B8; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x8051D1BC; // type:object size:0x4 scope:local align:4 data:float +@5004 = .sdata2:0x8051D1C0; // type:object size:0x4 scope:local align:4 data:float +@5005 = .sdata2:0x8051D1C4; // type:object size:0x4 scope:local align:4 data:float +@5006 = .sdata2:0x8051D1C8; // type:object size:0x4 scope:local align:4 data:float +@5007 = .sdata2:0x8051D1CC; // type:object size:0x4 scope:local align:4 data:float +@5008 = .sdata2:0x8051D1D0; // type:object size:0x4 scope:local align:4 data:float +@5207 = .sdata2:0x8051D1D4; // type:object size:0x4 scope:local align:4 data:float +@5329 = .sdata2:0x8051D1D8; // type:object size:0x4 scope:local align:4 data:float +@5366 = .sdata2:0x8051D1DC; // type:object size:0x4 scope:local align:4 data:4byte +@5643 = .sdata2:0x8051D1E0; // type:object size:0x4 scope:local align:4 data:float +@5644 = .sdata2:0x8051D1E4; // type:object size:0x4 scope:local align:4 data:float +@5645 = .sdata2:0x8051D1E8; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata2:0x8051D1EC; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x8051D1F0; // type:object size:0x4 scope:local align:4 data:float +@6033 = .sdata2:0x8051D1F4; // type:object size:0x4 scope:local align:4 data:float +@6220 = .sdata2:0x8051D1F8; // type:object size:0x4 scope:local align:4 data:float +@6235 = .sdata2:0x8051D1FC; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051D200; // type:object size:0x4 scope:local align:4 data:float +@3626 = .sdata2:0x8051D204; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051D208; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x8051D20C; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051D210; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051D214; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051D218; // type:object size:0x4 scope:local align:4 data:float +@3626 = .sdata2:0x8051D21C; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051D220; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x8051D224; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051D228; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051D22C; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051D230; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051D234; // type:object size:0x4 scope:local align:4 data:float +@3770 = .sdata2:0x8051D238; // type:object size:0x5 scope:local align:4 data:string +@3771 = .sdata2:0x8051D240; // type:object size:0x5 scope:local align:4 data:string +@3772 = .sdata2:0x8051D248; // type:object size:0x7 scope:local align:4 data:string +@3773 = .sdata2:0x8051D250; // type:object size:0x5 scope:local align:4 data:string +@3774 = .sdata2:0x8051D258; // type:object size:0x5 scope:local align:4 data:string +@3775 = .sdata2:0x8051D260; // type:object size:0x7 scope:local align:4 data:string +@3776 = .sdata2:0x8051D268; // type:object size:0x5 scope:local align:4 data:string +@3777 = .sdata2:0x8051D270; // type:object size:0x8 scope:local align:4 data:string +@3778 = .sdata2:0x8051D278; // type:object size:0x6 scope:local align:4 data:string +@3789 = .sdata2:0x8051D280; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051D284; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x8051D288; // type:object size:0x4 scope:local align:4 data:float +@4006 = .sdata2:0x8051D28C; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051D290; // type:object size:0x6 scope:local align:4 data:string +@4120 = .sdata2:0x8051D298; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051D29C; // type:object size:0x4 scope:local align:4 data:float +@4423 = .sdata2:0x8051D2A0; // type:object size:0x4 scope:local align:4 data:float +@4505 = .sdata2:0x8051D2A4; // type:object size:0x4 scope:local align:4 data:float +@4608 = .sdata2:0x8051D2A8; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051D2AC; // type:object size:0x4 scope:local align:4 data:float +@4696 = .sdata2:0x8051D2B0; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8051D2B8; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x8051D2BC; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x8051D2C0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051D2C4; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051D2C8; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051D2CC; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051D2D0; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051D2D4; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051D2D8; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051D2DC; // type:object size:0x5 scope:local align:4 data:string +@3948 = .sdata2:0x8051D2E8; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051D2EC; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x8051D2F0; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051D2F4; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x8051D2F8; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051D2FC; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x8051D300; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata2:0x8051D304; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051D308; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051D30C; // type:object size:0x4 scope:local align:4 data:float +@4188 = .sdata2:0x8051D310; // type:object size:0x7 scope:local align:4 data:string +@4189 = .sdata2:0x8051D318; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051D31C; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata2:0x8051D320; // type:object size:0x4 scope:local align:4 data:float +@4253 = .sdata2:0x8051D324; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata2:0x8051D328; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata2:0x8051D32C; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x8051D330; // type:object size:0x4 scope:local align:4 data:float +@4258 = .sdata2:0x8051D338; // type:object size:0x8 scope:local align:8 data:double +@4279 = .sdata2:0x8051D340; // type:object size:0x4 scope:local align:4 data:float +@4421 = .sdata2:0x8051D344; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051D348; // type:object size:0x4 scope:local align:4 data:float +@4423 = .sdata2:0x8051D34C; // type:object size:0x4 scope:local align:4 data:float +@4424 = .sdata2:0x8051D350; // type:object size:0x4 scope:local align:4 data:float +@4429 = .sdata2:0x8051D354; // type:object size:0x8 scope:local align:4 data:4byte +@4430 = .sdata2:0x8051D35C; // type:object size:0x8 scope:local align:4 data:4byte +@4511 = .sdata2:0x8051D364; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x8051D368; // type:object size:0x4 scope:local align:4 data:float +@4513 = .sdata2:0x8051D36C; // type:object size:0x4 scope:local align:4 data:float +@4514 = .sdata2:0x8051D370; // type:object size:0x4 scope:local align:4 data:float +@4515 = .sdata2:0x8051D374; // type:object size:0x4 scope:local align:4 data:float +@4516 = .sdata2:0x8051D378; // type:object size:0x4 scope:local align:4 data:float +@4517 = .sdata2:0x8051D37C; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x8051D380; // type:object size:0x4 scope:local align:4 data:float +@4519 = .sdata2:0x8051D384; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x8051D388; // type:object size:0x4 scope:local align:4 data:float +@4521 = .sdata2:0x8051D38C; // type:object size:0x4 scope:local align:4 data:float +@4522 = .sdata2:0x8051D390; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x8051D394; // type:object size:0x4 scope:local align:4 data:float +@4575 = .sdata2:0x8051D398; // type:object size:0x8 scope:local align:4 data:4byte +@4717 = .sdata2:0x8051D3A0; // type:object size:0x4 scope:local align:4 data:float +@4813 = .sdata2:0x8051D3A4; // type:object size:0x4 scope:local align:4 data:float +@4834 = .sdata2:0x8051D3A8; // type:object size:0x4 scope:local align:4 data:float +@4884 = .sdata2:0x8051D3AC; // type:object size:0x4 scope:local align:4 data:float +@4890 = .sdata2:0x8051D3B0; // type:object size:0x8 scope:local align:4 data:4byte +@4891 = .sdata2:0x8051D3B8; // type:object size:0x8 scope:local align:4 data:4byte +@4892 = .sdata2:0x8051D3C0; // type:object size:0x8 scope:local align:4 data:4byte +@5064 = .sdata2:0x8051D3C8; // type:object size:0x7 scope:local align:4 data:string +@5065 = .sdata2:0x8051D3D0; // type:object size:0x4 scope:local align:4 data:float +@5066 = .sdata2:0x8051D3D4; // type:object size:0x4 scope:local align:4 data:float +@5300 = .sdata2:0x8051D3D8; // type:object size:0x8 scope:local align:4 data:string +@5310 = .sdata2:0x8051D3E0; // type:object size:0x8 scope:local align:4 data:string +@5384 = .sdata2:0x8051D3E8; // type:object size:0x4 scope:local align:4 data:float +@5482 = .sdata2:0x8051D3EC; // type:object size:0x4 scope:local align:4 data:float +@5483 = .sdata2:0x8051D3F0; // type:object size:0x4 scope:local align:4 data:float +@5484 = .sdata2:0x8051D3F4; // type:object size:0x4 scope:local align:4 data:float +@5485 = .sdata2:0x8051D3F8; // type:object size:0x4 scope:local align:4 data:float +@5565 = .sdata2:0x8051D3FC; // type:object size:0x4 scope:local align:4 data:float +@3430 = .sdata2:0x8051D400; // type:object size:0x5 scope:local align:4 data:string +@3465 = .sdata2:0x8051D408; // type:object size:0x4 scope:local align:4 data:float +@3467 = .sdata2:0x8051D410; // type:object size:0x8 scope:local align:8 data:double +@3549 = .sdata2:0x8051D418; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051D41C; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051D420; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051D424; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051D428; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051D42C; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051D430; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051D434; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051D438; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051D43C; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051D440; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051D448; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x8051D44C; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata2:0x8051D450; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051D454; // type:object size:0x4 scope:local align:4 data:float +@3534 = .sdata2:0x8051D458; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051D45C; // type:object size:0x4 scope:local align:4 data:float +@3536 = .sdata2:0x8051D460; // type:object size:0x4 scope:local align:4 data:float +@3669 = .sdata2:0x8051D468; // type:object size:0x8 scope:local align:8 data:double +@3874 = .sdata2:0x8051D470; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051D478; // type:object size:0x8 scope:local align:8 data:double +@3876 = .sdata2:0x8051D480; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051D484; // type:object size:0x4 scope:local align:4 data:float +@4082 = .sdata2:0x8051D488; // type:object size:0x8 scope:local align:8 data:double +@4084 = .sdata2:0x8051D490; // type:object size:0x8 scope:local align:8 data:double +@4258 = .sdata2:0x8051D498; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051D4A0; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051D4A4; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x8051D4A8; // type:object size:0x4 scope:local align:4 data:float +@3794 = .sdata2:0x8051D4AC; // type:object size:0x4 scope:local align:4 data:float +@3825 = .sdata2:0x8051D4B0; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8051D4B4; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x8051D4B8; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata2:0x8051D4C0; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata2:0x8051D4C4; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x8051D4C8; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x8051D4CC; // type:object size:0x4 scope:local align:4 data:float +@3582 = .sdata2:0x8051D4D0; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x8051D4D4; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata2:0x8051D4D8; // type:object size:0x4 scope:local align:4 data:float +@3509 = .sdata2:0x8051D4DC; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata2:0x8051D4E0; // type:object size:0x4 scope:local align:4 data:float +@3534 = .sdata2:0x8051D4E8; // type:object size:0x8 scope:local align:8 data:double +@3631 = .sdata2:0x8051D4F0; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051D4F4; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051D4F8; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051D4FC; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051D500; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051D504; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051D508; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051D50C; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051D510; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata2:0x8051D514; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051D518; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051D51C; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051D520; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051D524; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051D528; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051D530; // type:object size:0x4 scope:local align:4 data:float +@3670 = .sdata2:0x8051D534; // type:object size:0x4 scope:local align:4 data:float +@3671 = .sdata2:0x8051D538; // type:object size:0x4 scope:local align:4 data:float +@3672 = .sdata2:0x8051D53C; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x8051D540; // type:object size:0x4 scope:local align:4 data:float +@3674 = .sdata2:0x8051D544; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x8051D548; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x8051D54C; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051D550; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051D554; // type:object size:0x4 scope:local align:4 data:float +@3679 = .sdata2:0x8051D558; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051D55C; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051D560; // type:object size:0x4 scope:local align:4 data:float +@3692 = .sdata2:0x8051D564; // type:object size:0x4 scope:local align:4 data:float +@3533 = .sdata2:0x8051D568; // type:object size:0x4 scope:local align:4 data:float +@3534 = .sdata2:0x8051D56C; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051D570; // type:object size:0x4 scope:local align:4 data:float +@3536 = .sdata2:0x8051D574; // type:object size:0x4 scope:local align:4 data:float +@3537 = .sdata2:0x8051D578; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata2:0x8051D580; // type:object size:0x1 scope:local align:4 +@3637 = .sdata2:0x8051D584; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051D588; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051D58C; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051D590; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051D594; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051D598; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051D59C; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x8051D5A0; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051D5A4; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051D5A8; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051D5AC; // type:object size:0x4 scope:local align:4 data:float +@3494 = .sdata2:0x8051D5B0; // type:object size:0x4 scope:local align:4 data:float +@3495 = .sdata2:0x8051D5B4; // type:object size:0x4 scope:local align:4 data:float +@3538 = .sdata2:0x8051D5B8; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051D5BC; // type:object size:0x1 scope:local align:4 +@3642 = .sdata2:0x8051D5C0; // type:object size:0x4 scope:local align:4 data:float +@3643 = .sdata2:0x8051D5C4; // type:object size:0x4 scope:local align:4 data:float +@3820 = .sdata2:0x8051D5C8; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051D5CC; // type:object size:0x4 scope:local align:4 data:float +@3822 = .sdata2:0x8051D5D0; // type:object size:0x4 scope:local align:4 data:float +@3492 = .sdata2:0x8051D5D8; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x8051D5DC; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051D5E0; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata2:0x8051D5E4; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051D5E8; // type:object size:0x8 scope:local align:8 data:double +@3867 = .sdata2:0x8051D5F0; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051D5F8; // type:object size:0x8 scope:local align:8 data:double +@3918 = .sdata2:0x8051D600; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051D604; // type:object size:0x4 scope:local align:4 data:float +@4034 = .sdata2:0x8051D608; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051D60C; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051D610; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x8051D618; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x8051D61C; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051D620; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051D628; // type:object size:0x8 scope:local align:8 data:double +@3666 = .sdata2:0x8051D630; // type:object size:0x4 scope:local align:4 data:float +@3747 = .sdata2:0x8051D634; // type:object size:0x4 scope:local align:4 data:float +@3748 = .sdata2:0x8051D638; // type:object size:0x4 scope:local align:4 data:float +@3749 = .sdata2:0x8051D63C; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x8051D640; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8051D644; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x8051D648; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x8051D64C; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051D650; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051D658; // type:object size:0x8 scope:local align:8 data:double +@3927 = .sdata2:0x8051D660; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051D664; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051D668; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051D66C; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051D670; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051D674; // type:object size:0x4 scope:local align:4 data:float +@3585 = .sdata2:0x8051D678; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051D67C; // type:object size:0x4 scope:local align:4 data:float +@3916 = .sdata2:0x8051D680; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051D684; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051D688; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051D68C; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051D690; // type:object size:0x4 scope:local align:4 data:float +@3954 = .sdata2:0x8051D694; // type:object size:0x4 scope:local align:4 data:float +@3955 = .sdata2:0x8051D698; // type:object size:0x4 scope:local align:4 data:float +@3956 = .sdata2:0x8051D69C; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051D6A0; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x8051D6A4; // type:object size:0x4 scope:local align:4 data:float +@3959 = .sdata2:0x8051D6A8; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x8051D6B0; // type:object size:0x8 scope:local align:8 data:double +@4380 = .sdata2:0x8051D6B8; // type:object size:0x4 scope:local align:4 data:float +@4381 = .sdata2:0x8051D6BC; // type:object size:0x4 scope:local align:4 data:float +@4382 = .sdata2:0x8051D6C0; // type:object size:0x4 scope:local align:4 data:float +@4383 = .sdata2:0x8051D6C4; // type:object size:0x1 scope:local align:4 +@4384 = .sdata2:0x8051D6C8; // type:object size:0x4 scope:local align:4 data:float +@4500 = .sdata2:0x8051D6CC; // type:object size:0x4 scope:local align:4 data:float +@4501 = .sdata2:0x8051D6D0; // type:object size:0x4 scope:local align:4 data:float +@4502 = .sdata2:0x8051D6D4; // type:object size:0x4 scope:local align:4 data:float +@4503 = .sdata2:0x8051D6D8; // type:object size:0x4 scope:local align:4 data:float +@4504 = .sdata2:0x8051D6DC; // type:object size:0x4 scope:local align:4 data:float +@4505 = .sdata2:0x8051D6E0; // type:object size:0x4 scope:local align:4 data:float +@4506 = .sdata2:0x8051D6E4; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x8051D6E8; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x8051D6EC; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051D6F0; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051D6F8; // type:object size:0x8 scope:local align:8 data:double +@4570 = .sdata2:0x8051D700; // type:object size:0x8 scope:local align:8 data:double +@4786 = .sdata2:0x8051D708; // type:object size:0x4 scope:local align:4 data:float +@4787 = .sdata2:0x8051D70C; // type:object size:0x4 scope:local align:4 data:float +@4788 = .sdata2:0x8051D710; // type:object size:0x4 scope:local align:4 data:float +@4900 = .sdata2:0x8051D714; // type:object size:0x4 scope:local align:4 data:float +@4901 = .sdata2:0x8051D718; // type:object size:0x4 scope:local align:4 data:float +@4902 = .sdata2:0x8051D71C; // type:object size:0x4 scope:local align:4 data:float +@4903 = .sdata2:0x8051D720; // type:object size:0x4 scope:local align:4 data:float +@5066 = .sdata2:0x8051D724; // type:object size:0x4 scope:local align:4 data:float +@5067 = .sdata2:0x8051D728; // type:object size:0x4 scope:local align:4 data:float +@5068 = .sdata2:0x8051D72C; // type:object size:0x4 scope:local align:4 data:float +@5069 = .sdata2:0x8051D730; // type:object size:0x4 scope:local align:4 data:float +@5191 = .sdata2:0x8051D738; // type:object size:0x8 scope:local align:8 data:double +@5214 = .sdata2:0x8051D740; // type:object size:0x4 scope:local align:4 data:float +@5300 = .sdata2:0x8051D744; // type:object size:0x4 scope:local align:4 data:float +@5301 = .sdata2:0x8051D748; // type:object size:0x4 scope:local align:4 data:float +@5302 = .sdata2:0x8051D74C; // type:object size:0x4 scope:local align:4 data:float +@5303 = .sdata2:0x8051D750; // type:object size:0x4 scope:local align:4 data:float +@5304 = .sdata2:0x8051D754; // type:object size:0x4 scope:local align:4 data:float +@5305 = .sdata2:0x8051D758; // type:object size:0x4 scope:local align:4 data:float +@5306 = .sdata2:0x8051D75C; // type:object size:0x4 scope:local align:4 data:float +@5307 = .sdata2:0x8051D760; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051D768; // type:object size:0x3 scope:local align:4 data:string +@3774 = .sdata2:0x8051D770; // type:object size:0x4 scope:local align:4 data:float +@3775 = .sdata2:0x8051D774; // type:object size:0x4 scope:local align:4 data:float +@3776 = .sdata2:0x8051D778; // type:object size:0x4 scope:local align:4 data:float +@3777 = .sdata2:0x8051D77C; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051D780; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051D784; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051D788; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051D78C; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051D790; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051D798; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051D79C; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x8051D7A0; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051D7A4; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x8051D7A8; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051D7AC; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051D7B0; // type:object size:0x4 scope:local align:4 data:float +@4357 = .sdata2:0x8051D7B4; // type:object size:0x4 scope:local align:4 data:float +@4455 = .sdata2:0x8051D7B8; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051D7C0; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051D7C4; // type:object size:0x4 scope:local align:4 data:float +@3643 = .sdata2:0x8051D7C8; // type:object size:0x4 scope:local align:4 data:float +@3644 = .sdata2:0x8051D7CC; // type:object size:0x4 scope:local align:4 data:float +@3645 = .sdata2:0x8051D7D0; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051D7D4; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x8051D7D8; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051D7DC; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x8051D7E0; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051D7E4; // type:object size:0x4 scope:local align:4 data:float +@3922 = .sdata2:0x8051D7E8; // type:object size:0x4 scope:local align:4 data:float +@3923 = .sdata2:0x8051D7EC; // type:object size:0x4 scope:local align:4 data:float +@3924 = .sdata2:0x8051D7F0; // type:object size:0x4 scope:local align:4 data:float +@3925 = .sdata2:0x8051D7F4; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051D7F8; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051D800; // type:object size:0x8 scope:local align:8 data:double +@4067 = .sdata2:0x8051D808; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051D810; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051D814; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051D818; // type:object size:0x4 scope:local align:4 data:float +@3789 = .sdata2:0x8051D820; // type:object size:0x8 scope:local align:8 data:double +@3913 = .sdata2:0x8051D828; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051D82C; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051D830; // type:object size:0x4 scope:local align:4 data:float +@3102 = .sdata2:0x8051D838; // type:object size:0x5 scope:local align:4 data:string +@3103 = .sdata2:0x8051D840; // type:object size:0x5 scope:local align:4 data:string +@3104 = .sdata2:0x8051D848; // type:object size:0x5 scope:local align:4 data:string +@3105 = .sdata2:0x8051D850; // type:object size:0x5 scope:local align:4 data:string +@3106 = .sdata2:0x8051D858; // type:object size:0x5 scope:local align:4 data:string +@3107 = .sdata2:0x8051D860; // type:object size:0x5 scope:local align:4 data:string +@3108 = .sdata2:0x8051D868; // type:object size:0x1 scope:local align:4 +@3109 = .sdata2:0x8051D86C; // type:object size:0x3 scope:local align:4 data:string +@2745 = .sdata2:0x8051D870; // type:object size:0x1 scope:local align:4 +@3667 = .sdata2:0x8051D878; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x8051D87C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051D880; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051D884; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051D888; // type:object size:0x4 scope:local align:4 data:float +@4049 = .sdata2:0x8051D88C; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051D890; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051D894; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051D898; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051D89C; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051D8A0; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051D8A4; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051D8A8; // type:object size:0x4 scope:local align:4 data:float +@4215 = .sdata2:0x8051D8AC; // type:object size:0x4 scope:local align:4 data:float +@4216 = .sdata2:0x8051D8B0; // type:object size:0x4 scope:local align:4 data:float +@4217 = .sdata2:0x8051D8B4; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051D8B8; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x8051D8BC; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051D8C0; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x8051D8C4; // type:object size:0x4 scope:local align:4 data:float +@3785 = .sdata2:0x8051D8C8; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051D8CC; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051D8D0; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x8051D8D8; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051D8DC; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x8051D8E0; // type:object size:0x1 scope:local align:4 +@3808 = .sdata2:0x8051D8E4; // type:object size:0x8 scope:local align:4 data:string +@3809 = .sdata2:0x8051D8EC; // type:object size:0x8 scope:local align:4 data:string +@3810 = .sdata2:0x8051D8F4; // type:object size:0x8 scope:local align:4 data:string +@3811 = .sdata2:0x8051D8FC; // type:object size:0x8 scope:local align:4 data:string +@3812 = .sdata2:0x8051D904; // type:object size:0x8 scope:local align:4 data:string +@3813 = .sdata2:0x8051D90C; // type:object size:0x8 scope:local align:4 data:string +@3814 = .sdata2:0x8051D914; // type:object size:0x8 scope:local align:4 data:string +@3815 = .sdata2:0x8051D91C; // type:object size:0x8 scope:local align:4 data:string +@3816 = .sdata2:0x8051D924; // type:object size:0x8 scope:local align:4 data:string +@3817 = .sdata2:0x8051D92C; // type:object size:0x8 scope:local align:4 data:string +@3818 = .sdata2:0x8051D934; // type:object size:0x8 scope:local align:4 data:string +@3819 = .sdata2:0x8051D93C; // type:object size:0x8 scope:local align:4 data:string +@3820 = .sdata2:0x8051D944; // type:object size:0x8 scope:local align:4 data:string +@3821 = .sdata2:0x8051D94C; // type:object size:0x8 scope:local align:4 data:string +@3822 = .sdata2:0x8051D954; // type:object size:0x8 scope:local align:4 data:string +@3823 = .sdata2:0x8051D95C; // type:object size:0x8 scope:local align:4 data:string +@3824 = .sdata2:0x8051D964; // type:object size:0x8 scope:local align:4 data:string +@3825 = .sdata2:0x8051D96C; // type:object size:0x8 scope:local align:4 data:string +@3826 = .sdata2:0x8051D974; // type:object size:0x8 scope:local align:4 data:string +@3827 = .sdata2:0x8051D97C; // type:object size:0x8 scope:local align:4 data:string +@3828 = .sdata2:0x8051D984; // type:object size:0x8 scope:local align:4 data:string +@3829 = .sdata2:0x8051D98C; // type:object size:0x8 scope:local align:4 data:string +@3830 = .sdata2:0x8051D994; // type:object size:0x8 scope:local align:4 data:string +@3831 = .sdata2:0x8051D99C; // type:object size:0x8 scope:local align:4 data:string +@3832 = .sdata2:0x8051D9A4; // type:object size:0x8 scope:local align:4 data:string +@3833 = .sdata2:0x8051D9AC; // type:object size:0x8 scope:local align:4 data:string +@3834 = .sdata2:0x8051D9B4; // type:object size:0x8 scope:local align:4 data:string +@3835 = .sdata2:0x8051D9BC; // type:object size:0x8 scope:local align:4 data:string +@3836 = .sdata2:0x8051D9C4; // type:object size:0x8 scope:local align:4 data:string +@3837 = .sdata2:0x8051D9CC; // type:object size:0x8 scope:local align:4 data:string +@3838 = .sdata2:0x8051D9D4; // type:object size:0x8 scope:local align:4 data:string +@3839 = .sdata2:0x8051D9DC; // type:object size:0x8 scope:local align:4 data:string +@3840 = .sdata2:0x8051D9E4; // type:object size:0x8 scope:local align:4 data:string +@3841 = .sdata2:0x8051D9EC; // type:object size:0x8 scope:local align:4 data:string +@3842 = .sdata2:0x8051D9F4; // type:object size:0x8 scope:local align:4 data:string +@3843 = .sdata2:0x8051D9FC; // type:object size:0x8 scope:local align:4 data:string +@3844 = .sdata2:0x8051DA04; // type:object size:0x8 scope:local align:4 data:string +@3845 = .sdata2:0x8051DA0C; // type:object size:0x8 scope:local align:4 data:string +@3846 = .sdata2:0x8051DA14; // type:object size:0x8 scope:local align:4 data:string +@3847 = .sdata2:0x8051DA1C; // type:object size:0x8 scope:local align:4 data:string +@3848 = .sdata2:0x8051DA24; // type:object size:0x8 scope:local align:4 data:string +@3849 = .sdata2:0x8051DA2C; // type:object size:0x8 scope:local align:4 data:string +@3850 = .sdata2:0x8051DA34; // type:object size:0x8 scope:local align:4 data:string +@3851 = .sdata2:0x8051DA3C; // type:object size:0x8 scope:local align:4 data:string +@3852 = .sdata2:0x8051DA44; // type:object size:0x8 scope:local align:4 data:string +@3853 = .sdata2:0x8051DA4C; // type:object size:0x8 scope:local align:4 data:string +@3854 = .sdata2:0x8051DA54; // type:object size:0x8 scope:local align:4 data:string +@3855 = .sdata2:0x8051DA5C; // type:object size:0x8 scope:local align:4 data:string +@3856 = .sdata2:0x8051DA64; // type:object size:0x8 scope:local align:4 data:string +@3857 = .sdata2:0x8051DA6C; // type:object size:0x8 scope:local align:4 data:string +@3858 = .sdata2:0x8051DA74; // type:object size:0x8 scope:local align:4 data:string +@3859 = .sdata2:0x8051DA7C; // type:object size:0x8 scope:local align:4 data:string +@3860 = .sdata2:0x8051DA84; // type:object size:0x8 scope:local align:4 data:string +@3861 = .sdata2:0x8051DA8C; // type:object size:0x8 scope:local align:4 data:string +@3862 = .sdata2:0x8051DA94; // type:object size:0x8 scope:local align:4 data:string +@3863 = .sdata2:0x8051DA9C; // type:object size:0x3 scope:local align:4 data:string +@4064 = .sdata2:0x8051DAA0; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051DAA4; // type:object size:0x4 scope:local align:4 data:float +@4068 = .sdata2:0x8051DAA8; // type:object size:0x8 scope:local align:4 data:string +@4070 = .sdata2:0x8051DAB0; // type:object size:0x8 scope:local align:8 data:double +@4249 = .sdata2:0x8051DAB8; // type:object size:0x4 scope:local align:4 data:float +@4250 = .sdata2:0x8051DABC; // type:object size:0x4 scope:local align:4 data:float +@4373 = .sdata2:0x8051DAC0; // type:object size:0x8 scope:local align:8 data:double +@4401 = .sdata2:0x8051DAC8; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051DACC; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051DAD0; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051DAD4; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051DAD8; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051DADC; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051DAE0; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051DAE4; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051DAE8; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051DAEC; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051DAF0; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x8051DAF4; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x8051DAF8; // type:object size:0x1 scope:local align:4 +@3659 = .sdata2:0x8051DB00; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051DB04; // type:object size:0x4 scope:local align:4 data:float +@3755 = .sdata2:0x8051DB08; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x8051DB0C; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051DB10; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051DB14; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051DB18; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051DB1C; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051DB20; // type:object size:0x8 scope:local align:8 data:double +@3974 = .sdata2:0x8051DB28; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051DB2C; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051DB30; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051DB34; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051DB38; // type:object size:0x4 scope:local align:4 data:float +@3979 = .sdata2:0x8051DB3C; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051DB40; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051DB44; // type:object size:0x4 scope:local align:4 data:float +@3982 = .sdata2:0x8051DB48; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051DB4C; // type:object size:0x4 scope:local align:4 data:float +@3867 = .sdata2:0x8051DB50; // type:object size:0x4 scope:local align:4 data:float +@4134 = .sdata2:0x8051DB54; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051DB58; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051DB5C; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051DB60; // type:object size:0x4 scope:local align:4 data:float +@4300 = .sdata2:0x8051DB64; // type:object size:0x4 scope:local align:4 data:float +@4301 = .sdata2:0x8051DB68; // type:object size:0x4 scope:local align:4 data:float +@4302 = .sdata2:0x8051DB6C; // type:object size:0x4 scope:local align:4 data:float +@4305 = .sdata2:0x8051DB70; // type:object size:0x8 scope:local align:8 data:double +@4337 = .sdata2:0x8051DB78; // type:object size:0x4 scope:local align:4 data:float +@4411 = .sdata2:0x8051DB7C; // type:object size:0x4 scope:local align:4 data:float +@4412 = .sdata2:0x8051DB80; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051DB88; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051DB8C; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x8051DB90; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051DB94; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051DB98; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051DB9C; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051DBA0; // type:object size:0x4 scope:local align:4 data:float +@3952 = .sdata2:0x8051DBA4; // type:object size:0x4 scope:local align:4 data:float +@3953 = .sdata2:0x8051DBA8; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x8051DBB0; // type:object size:0x8 scope:local align:8 data:double +@4000 = .sdata2:0x8051DBB8; // type:object size:0x8 scope:local align:8 data:double +@4077 = .sdata2:0x8051DBC0; // type:object size:0x4 scope:local align:4 data:float +@4078 = .sdata2:0x8051DBC4; // type:object size:0x4 scope:local align:4 data:float +@3645 = .sdata2:0x8051DBC8; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051DBCC; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x8051DBD0; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051DBD4; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051DBD8; // type:object size:0x4 scope:local align:4 data:float +@4000 = .sdata2:0x8051DBDC; // type:object size:0x4 scope:local align:4 data:float +@4001 = .sdata2:0x8051DBE0; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051DBE4; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x8051DBE8; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x8051DBEC; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x8051DBF0; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051DBF4; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051DBF8; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051DBFC; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x8051DC00; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x8051DC04; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata2:0x8051DC08; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x8051DC0C; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x8051DC10; // type:object size:0x4 scope:local align:4 data:float +@4368 = .sdata2:0x8051DC14; // type:object size:0x4 scope:local align:4 data:float +@4394 = .sdata2:0x8051DC18; // type:object size:0x4 scope:local align:4 data:float +@4395 = .sdata2:0x8051DC1C; // type:object size:0x4 scope:local align:4 data:float +@4396 = .sdata2:0x8051DC20; // type:object size:0x4 scope:local align:4 data:float +@4397 = .sdata2:0x8051DC24; // type:object size:0x4 scope:local align:4 data:float +@4398 = .sdata2:0x8051DC28; // type:object size:0x4 scope:local align:4 data:float +@4399 = .sdata2:0x8051DC2C; // type:object size:0x4 scope:local align:4 data:float +@4400 = .sdata2:0x8051DC30; // type:object size:0x4 scope:local align:4 data:float +@4401 = .sdata2:0x8051DC34; // type:object size:0x4 scope:local align:4 data:float +@4402 = .sdata2:0x8051DC38; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x8051DC3C; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051DC40; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051DC44; // type:object size:0x4 scope:local align:4 data:float +@3649 = .sdata2:0x8051DC48; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x8051DC4C; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051DC50; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x8051DC54; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051DC58; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051DC5C; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051DC60; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051DC64; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051DC68; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051DC6C; // type:object size:0x4 scope:local align:4 data:float +@3706 = .sdata2:0x8051DC70; // type:object size:0x8 scope:local align:4 data:string +@3708 = .sdata2:0x8051DC78; // type:object size:0x8 scope:local align:4 data:string +@3709 = .sdata2:0x8051DC80; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051DC84; // type:object size:0x8 scope:local align:4 data:string +@3859 = .sdata2:0x8051DC8C; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051DC90; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051DC94; // type:object size:0x4 scope:local align:4 data:float +@3947 = .sdata2:0x8051DC98; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x8051DC9C; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x8051DCA0; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051DCA4; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051DCA8; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051DCAC; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051DCB0; // type:object size:0x1 scope:local align:4 +@3639 = .sdata2:0x8051DCB8; // type:object size:0x4 scope:local align:4 data:float +@3697 = .sdata2:0x8051DCBC; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8051DCC0; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051DCC4; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051DCC8; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051DCCC; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x8051DCD0; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051DCD8; // type:object size:0x4 scope:local align:4 data:float +@3679 = .sdata2:0x8051DCDC; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051DCE0; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x8051DCE4; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x8051DCE8; // type:object size:0x4 scope:local align:4 data:float +@3830 = .sdata2:0x8051DCEC; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051DCF0; // type:object size:0x8 scope:local align:8 data:double +@3901 = .sdata2:0x8051DCF8; // type:object size:0x4 scope:local align:4 data:float +@4530 = .sdata2:0x8051DCFC; // type:object size:0x4 scope:local align:4 data:float +@4531 = .sdata2:0x8051DD00; // type:object size:0x4 scope:local align:4 data:float +@4532 = .sdata2:0x8051DD04; // type:object size:0x4 scope:local align:4 data:float +@4533 = .sdata2:0x8051DD08; // type:object size:0x4 scope:local align:4 data:float +@4534 = .sdata2:0x8051DD0C; // type:object size:0x4 scope:local align:4 data:float +@4535 = .sdata2:0x8051DD10; // type:object size:0x4 scope:local align:4 data:float +@4536 = .sdata2:0x8051DD14; // type:object size:0x4 scope:local align:4 data:float +@4537 = .sdata2:0x8051DD18; // type:object size:0x4 scope:local align:4 data:float +@4615 = .sdata2:0x8051DD1C; // type:object size:0x4 scope:local align:4 data:float +@4616 = .sdata2:0x8051DD20; // type:object size:0x4 scope:local align:4 data:float +@4617 = .sdata2:0x8051DD24; // type:object size:0x4 scope:local align:4 data:float +@4648 = .sdata2:0x8051DD28; // type:object size:0x4 scope:local align:4 data:float +@4650 = .sdata2:0x8051DD30; // type:object size:0x8 scope:local align:8 data:double +@4720 = .sdata2:0x8051DD38; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x8051DD3C; // type:object size:0x4 scope:local align:4 data:float +@4722 = .sdata2:0x8051DD40; // type:object size:0x4 scope:local align:4 data:float +@4723 = .sdata2:0x8051DD44; // type:object size:0x4 scope:local align:4 data:float +@4724 = .sdata2:0x8051DD48; // type:object size:0x4 scope:local align:4 data:float +@4725 = .sdata2:0x8051DD4C; // type:object size:0x4 scope:local align:4 data:float +@4726 = .sdata2:0x8051DD50; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x8051DD54; // type:object size:0x4 scope:local align:4 data:float +@4728 = .sdata2:0x8051DD58; // type:object size:0x4 scope:local align:4 data:float +@4729 = .sdata2:0x8051DD5C; // type:object size:0x4 scope:local align:4 data:float +@4730 = .sdata2:0x8051DD60; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051DD68; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051DD6C; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051DD70; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8051DD74; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051DD78; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051DD7C; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x8051DD80; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051DD84; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051DD88; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051DD8C; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x8051DD90; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051DD94; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x8051DD98; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051DDA0; // type:object size:0x8 scope:local align:8 data:double +@2632 = .sdata2:0x8051DDA8; // type:object size:0x4 scope:local align:4 data:float +@2637 = .sdata2:0x8051DDAC; // type:object size:0x4 scope:local align:4 data:float +@2638 = .sdata2:0x8051DDB0; // type:object size:0x4 scope:local align:4 data:float +@2639 = .sdata2:0x8051DDB4; // type:object size:0x4 scope:local align:4 data:float +@2640 = .sdata2:0x8051DDB8; // type:object size:0x4 scope:local align:4 data:float +@2645 = .sdata2:0x8051DDBC; // type:object size:0x4 scope:local align:4 data:float +@2646 = .sdata2:0x8051DDC0; // type:object size:0x4 scope:local align:4 data:float +@2659 = .sdata2:0x8051DDC4; // type:object size:0x4 scope:local align:4 data:float +@2728 = .sdata2:0x8051DDC8; // type:object size:0x4 scope:local align:4 data:float +@2729 = .sdata2:0x8051DDCC; // type:object size:0x4 scope:local align:4 data:float +@3641 = .sdata2:0x8051DDD0; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051DDD4; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051DDD8; // type:object size:0x4 scope:local align:4 data:float +@3798 = .sdata2:0x8051DDDC; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051DDE0; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x8051DDE8; // type:object size:0x4 scope:local align:4 data:float +@3494 = .sdata2:0x8051DDEC; // type:object size:0x4 scope:local align:4 data:float +@3495 = .sdata2:0x8051DDF0; // type:object size:0x4 scope:local align:4 data:float +@3496 = .sdata2:0x8051DDF4; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051DDF8; // type:object size:0x4 scope:local align:4 data:float +@3556 = .sdata2:0x8051DDFC; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051DE00; // type:object size:0x4 scope:local align:4 data:float +@3582 = .sdata2:0x8051DE04; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata2:0x8051DE08; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x8051DE0C; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051DE10; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051DE14; // type:object size:0x4 scope:local align:4 data:float +@3634 = .sdata2:0x8051DE18; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051DE20; // type:object size:0x8 scope:local align:8 data:double +@3876 = .sdata2:0x8051DE28; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051DE2C; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051DE30; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051DE34; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051DE38; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051DE40; // type:object size:0x8 scope:local align:8 data:double +@3693 = .sdata2:0x8051DE48; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x8051DE4C; // type:object size:0x4 scope:local align:4 data:float +@3710 = .sdata2:0x8051DE50; // type:object size:0x4 scope:local align:4 data:float +@3711 = .sdata2:0x8051DE54; // type:object size:0x4 scope:local align:4 data:float +@3679 = .sdata2:0x8051DE58; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x8051DE5C; // type:object size:0x4 scope:local align:4 data:float +@3681 = .sdata2:0x8051DE60; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x8051DE68; // type:object size:0x4 scope:local align:4 data:float +@3653 = .sdata2:0x8051DE6C; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051DE70; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x8051DE74; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x8051DE78; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051DE7C; // type:object size:0x4 scope:local align:4 data:float +@3786 = .sdata2:0x8051DE80; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051DE84; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051DE88; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051DE90; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051DE98; // type:object size:0x8 scope:local align:8 data:double +@3570 = .sdata2:0x8051DEA0; // type:object size:0x4 scope:local align:4 data:float +@3617 = .sdata2:0x8051DEA4; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x8051DEA8; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x8051DEAC; // type:object size:0x4 scope:local align:4 data:float +@3722 = .sdata2:0x8051DEB0; // type:object size:0x4 scope:local align:4 data:float +@3660 = .sdata2:0x8051DEB8; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051DEBC; // type:object size:0x4 scope:local align:4 data:float +@3662 = .sdata2:0x8051DEC0; // type:object size:0x4 scope:local align:4 data:float +@3663 = .sdata2:0x8051DEC4; // type:object size:0x4 scope:local align:4 data:float +@3664 = .sdata2:0x8051DEC8; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051DECC; // type:object size:0x4 scope:local align:4 data:float +@3666 = .sdata2:0x8051DED0; // type:object size:0x4 scope:local align:4 data:float +@3698 = .sdata2:0x8051DED4; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata2:0x8051DED8; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051DEDC; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x8051DEE0; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051DEE4; // type:object size:0x4 scope:local align:4 data:float +@3703 = .sdata2:0x8051DEE8; // type:object size:0x4 scope:local align:4 data:float +@3705 = .sdata2:0x8051DEF0; // type:object size:0x8 scope:local align:8 data:double +@3719 = .sdata2:0x8051DEF8; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051DEFC; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051DF00; // type:object size:0x4 scope:local align:4 data:float +@3756 = .sdata2:0x8051DF04; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051DF08; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051DF0C; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051DF10; // type:object size:0x4 scope:local align:4 data:float +@3939 = .sdata2:0x8051DF14; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x8051DF18; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051DF1C; // type:object size:0x4 scope:local align:4 data:float +@3987 = .sdata2:0x8051DF20; // type:object size:0x4 scope:local align:4 data:float +@3988 = .sdata2:0x8051DF24; // type:object size:0x4 scope:local align:4 data:float +@4053 = .sdata2:0x8051DF28; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x8051DF2C; // type:object size:0x4 scope:local align:4 data:float +@4055 = .sdata2:0x8051DF30; // type:object size:0x4 scope:local align:4 data:float +@4056 = .sdata2:0x8051DF34; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051DF38; // type:object size:0x4 scope:local align:4 data:float +@4058 = .sdata2:0x8051DF3C; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051DF40; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051DF44; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051DF48; // type:object size:0x4 scope:local align:4 data:float +@3781 = .sdata2:0x8051DF4C; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051DF50; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051DF54; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051DF58; // type:object size:0x4 scope:local align:4 data:float +@3899 = .sdata2:0x8051DF5C; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051DF60; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051DF64; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051DF68; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051DF70; // type:object size:0x8 scope:local align:8 data:double +@3933 = .sdata2:0x8051DF78; // type:object size:0x8 scope:local align:8 data:double +@3979 = .sdata2:0x8051DF80; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x8051DF84; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051DF88; // type:object size:0x4 scope:local align:4 data:float +@4031 = .sdata2:0x8051DF8C; // type:object size:0x4 scope:local align:4 data:float +@4032 = .sdata2:0x8051DF90; // type:object size:0x4 scope:local align:4 data:float +@4097 = .sdata2:0x8051DF94; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051DF98; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051DF9C; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051DFA0; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x8051DFA4; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051DFA8; // type:object size:0x4 scope:local align:4 data:float +@4189 = .sdata2:0x8051DFAC; // type:object size:0x4 scope:local align:4 data:float +@2632 = .sdata2:0x8051DFB0; // type:object size:0x4 scope:local align:4 data:float +@2633 = .sdata2:0x8051DFB4; // type:object size:0x4 scope:local align:4 data:float +@2634 = .sdata2:0x8051DFB8; // type:object size:0x4 scope:local align:4 data:float +@2655 = .sdata2:0x8051DFBC; // type:object size:0x4 scope:local align:4 data:float +@2656 = .sdata2:0x8051DFC0; // type:object size:0x4 scope:local align:4 data:float +@2657 = .sdata2:0x8051DFC4; // type:object size:0x4 scope:local align:4 data:float +@2737 = .sdata2:0x8051DFC8; // type:object size:0x4 scope:local align:4 data:float +@2738 = .sdata2:0x8051DFCC; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051DFD0; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051DFD4; // type:object size:0x4 scope:local align:4 data:float +@3782 = .sdata2:0x8051DFD8; // type:object size:0x4 scope:local align:4 data:float +@3174 = .sdata2:0x8051DFE0; // type:object size:0x4 scope:local align:4 data:float +@3175 = .sdata2:0x8051DFE4; // type:object size:0x4 scope:local align:4 data:float +@3176 = .sdata2:0x8051DFE8; // type:object size:0x4 scope:local align:4 data:float +@3178 = .sdata2:0x8051DFF0; // type:object size:0x8 scope:local align:8 data:double +@3265 = .sdata2:0x8051DFF8; // type:object size:0x4 scope:local align:4 data:float +@3397 = .sdata2:0x8051DFFC; // type:object size:0x4 scope:local align:4 data:float +@3132 = .sdata2:0x8051E000; // type:object size:0x3 scope:local align:4 data:string +@3133 = .sdata2:0x8051E004; // type:object size:0x3 scope:local align:4 data:string +@3140 = .sdata2:0x8051E008; // type:object size:0x4 scope:local align:4 data:string +@3141 = .sdata2:0x8051E00C; // type:object size:0x6 scope:local align:4 +@3177 = .sdata2:0x8051E014; // type:object size:0x4 scope:local align:4 data:float +@3178 = .sdata2:0x8051E018; // type:object size:0x4 scope:local align:4 data:float +@3196 = .sdata2:0x8051E01C; // type:object size:0x4 scope:local align:4 data:float +@3197 = .sdata2:0x8051E020; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x8051E024; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x8051E028; // type:object size:0x4 scope:local align:4 data:float +@3200 = .sdata2:0x8051E02C; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata2:0x8051E030; // type:object size:0x4 scope:local align:4 data:float +@3202 = .sdata2:0x8051E034; // type:object size:0x4 scope:local align:4 data:float +@3232 = .sdata2:0x8051E038; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x8051E03C; // type:object size:0x4 scope:local align:4 data:float +@3234 = .sdata2:0x8051E040; // type:object size:0x4 scope:local align:4 data:float +sDefaultVol__Q26PSGame9CameraMgr = .sdata2:0x8051E044; // type:object size:0x4 scope:global align:4 data:float +@3239 = .sdata2:0x8051E048; // type:object size:0x4 scope:local align:4 data:float +@3240 = .sdata2:0x8051E04C; // type:object size:0x4 scope:local align:4 data:float +@3241 = .sdata2:0x8051E050; // type:object size:0x4 scope:local align:4 data:float +@3242 = .sdata2:0x8051E054; // type:object size:0x4 scope:local align:4 data:float +@3243 = .sdata2:0x8051E058; // type:object size:0x4 scope:local align:4 data:float +@3244 = .sdata2:0x8051E05C; // type:object size:0x4 scope:local align:4 data:float +@3245 = .sdata2:0x8051E060; // type:object size:0x4 scope:local align:4 data:float +@3246 = .sdata2:0x8051E064; // type:object size:0x4 scope:local align:4 data:float +@3406 = .sdata2:0x8051E068; // type:object size:0x8 scope:local align:4 data:string +@3441 = .sdata2:0x8051E070; // type:object size:0x4 scope:local align:4 data:float +@3618 = .sdata2:0x8051E074; // type:object size:0x7 scope:local align:4 data:string +@3802 = .sdata2:0x8051E07C; // type:object size:0x8 scope:local align:4 data:string +@4492 = .sdata2:0x8051E084; // type:object size:0x7 scope:local align:4 data:string +@2931 = .sdata2:0x8051E090; // type:object size:0x4 scope:local align:4 data:float +@3014 = .sdata2:0x8051E094; // type:object size:0x4 scope:local align:4 data:float +@3015 = .sdata2:0x8051E098; // type:object size:0x4 scope:local align:4 data:float +@3292 = .sdata2:0x8051E0A0; // type:object size:0x2 scope:local align:4 +@3657 = .sdata2:0x8051E0A4; // type:object size:0x4 scope:local align:4 data:float +@3658 = .sdata2:0x8051E0A8; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051E0AC; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051E0B0; // type:object size:0x8 scope:local align:8 data:double +@2795 = .sdata2:0x8051E0B8; // type:object size:0x8 scope:local align:8 data:double +@2845 = .sdata2:0x8051E0C0; // type:object size:0x4 scope:local align:4 data:float +@2861 = .sdata2:0x8051E0C4; // type:object size:0x4 scope:local align:4 data:float +@2903 = .sdata2:0x8051E0C8; // type:object size:0x7 scope:local align:4 +@2929 = .sdata2:0x8051E0D0; // type:object size:0x4 scope:local align:4 data:float +@2930 = .sdata2:0x8051E0D4; // type:object size:0x4 scope:local align:4 data:float +@2931 = .sdata2:0x8051E0D8; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x8051E0DC; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x8051E0E0; // type:object size:0x4 scope:local align:4 data:float +@3061 = .sdata2:0x8051E0E8; // type:object size:0x8 scope:local align:8 data:double +@3094 = .sdata2:0x8051E0F0; // type:object size:0x8 scope:local align:8 data:double +@3254 = .sdata2:0x8051E0F8; // type:object size:0x4 scope:local align:4 data:float +@3432 = .sdata2:0x8051E0FC; // type:object size:0x4 scope:local align:4 data:float +@2812 = .sdata2:0x8051E100; // type:object size:0x4 scope:local align:4 data:float +@2813 = .sdata2:0x8051E104; // type:object size:0x4 scope:local align:4 data:float +@2879 = .sdata2:0x8051E108; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata2:0x8051E10C; // type:object size:0x4 scope:local align:4 data:float +@3168 = .sdata2:0x8051E110; // type:object size:0x8 scope:local align:8 data:double +@2963 = .sdata2:0x8051E118; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x8051E11C; // type:object size:0x4 scope:local align:4 data:float +@3198 = .sdata2:0x8051E120; // type:object size:0x4 scope:local align:4 data:float +@3199 = .sdata2:0x8051E124; // type:object size:0x4 scope:local align:4 data:float +@3201 = .sdata2:0x8051E128; // type:object size:0x8 scope:local align:8 data:double +@3226 = .sdata2:0x8051E130; // type:object size:0x8 scope:local align:4 data:string +@3529 = .sdata2:0x8051E138; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x8051E13C; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata2:0x8051E140; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051E144; // type:object size:0x4 scope:local align:4 data:float +@3896 = .sdata2:0x8051E148; // type:object size:0x4 scope:local align:4 data:float +@3897 = .sdata2:0x8051E14C; // type:object size:0x4 scope:local align:4 data:float +@3898 = .sdata2:0x8051E150; // type:object size:0x4 scope:local align:4 data:float +@3899 = .sdata2:0x8051E154; // type:object size:0x4 scope:local align:4 data:float +@3900 = .sdata2:0x8051E158; // type:object size:0x4 scope:local align:4 data:float +@3901 = .sdata2:0x8051E15C; // type:object size:0x4 scope:local align:4 data:float +@3902 = .sdata2:0x8051E160; // type:object size:0x4 scope:local align:4 data:float +@3903 = .sdata2:0x8051E164; // type:object size:0x4 scope:local align:4 data:float +@3904 = .sdata2:0x8051E168; // type:object size:0x4 scope:local align:4 data:float +@3905 = .sdata2:0x8051E16C; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051E170; // type:object size:0x4 scope:local align:4 data:float +@3907 = .sdata2:0x8051E174; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051E178; // type:object size:0x8 scope:local align:8 data:double +@3910 = .sdata2:0x8051E180; // type:object size:0x8 scope:local align:8 data:double +@4018 = .sdata2:0x8051E188; // type:object size:0x4 scope:local align:4 data:float +@4019 = .sdata2:0x8051E18C; // type:object size:0x4 scope:local align:4 data:float +@4020 = .sdata2:0x8051E190; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051E194; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051E198; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051E19C; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051E1A0; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051E1A8; // type:object size:0x8 scope:local align:8 data:double +@3895 = .sdata2:0x8051E1B0; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051E1B4; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051E1B8; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051E1BC; // type:object size:0x4 scope:local align:4 data:float +@4015 = .sdata2:0x8051E1C0; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051E1C4; // type:object size:0x4 scope:local align:4 data:4byte +@4134 = .sdata2:0x8051E1C8; // type:object size:0x4 scope:local align:4 data:float +@4135 = .sdata2:0x8051E1CC; // type:object size:0x4 scope:local align:4 data:float +@4136 = .sdata2:0x8051E1D0; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051E1D4; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051E1D8; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051E1DC; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051E1E0; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051E1E8; // type:object size:0x8 scope:local align:8 data:double +@4162 = .sdata2:0x8051E1F0; // type:object size:0x4 scope:local align:4 data:float +@4163 = .sdata2:0x8051E1F4; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x8051E1F8; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051E1FC; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051E200; // type:object size:0x4 scope:local align:4 data:float +@4334 = .sdata2:0x8051E204; // type:object size:0x4 scope:local align:4 data:float +@4374 = .sdata2:0x8051E208; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x8051E210; // type:object size:0x4 scope:local align:4 data:float +@3740 = .sdata2:0x8051E214; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata2:0x8051E218; // type:object size:0x8 scope:local align:8 data:double +@3913 = .sdata2:0x8051E220; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051E224; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051E228; // type:object size:0x6 scope:local align:4 data:string +@3515 = .sdata2:0x8051E230; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata2:0x8051E234; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051E238; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051E23C; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051E240; // type:object size:0x5 scope:local align:4 data:string +@3978 = .sdata2:0x8051E248; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051E24C; // type:object size:0x5 scope:local align:4 data:string +@4156 = .sdata2:0x8051E254; // type:object size:0x4 scope:local align:4 data:float +@4157 = .sdata2:0x8051E258; // type:object size:0x4 scope:local align:4 data:float +@4158 = .sdata2:0x8051E25C; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051E260; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051E264; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051E268; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051E26C; // type:object size:0x4 scope:local align:4 data:float +@3830 = .sdata2:0x8051E270; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051E274; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051E278; // type:object size:0x6 scope:local align:4 data:string +@4000 = .sdata2:0x8051E280; // type:object size:0x4 scope:local align:4 data:float +@4086 = .sdata2:0x8051E284; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051E288; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051E28C; // type:object size:0x4 scope:local align:4 data:float +@4157 = .sdata2:0x8051E290; // type:object size:0x4 scope:local align:4 data:float +@4158 = .sdata2:0x8051E294; // type:object size:0x4 scope:local align:4 data:float +@4159 = .sdata2:0x8051E298; // type:object size:0x4 scope:local align:4 data:float +@4160 = .sdata2:0x8051E29C; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x8051E2A0; // type:object size:0x8 scope:local align:8 data:double +@4287 = .sdata2:0x8051E2A8; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x8051E2AC; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051E2B0; // type:object size:0x5 scope:local align:4 data:string +@3838 = .sdata2:0x8051E2B8; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051E2BC; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x8051E2C0; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051E2C4; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051E2C8; // type:object size:0x4 scope:local align:4 data:float +@3961 = .sdata2:0x8051E2CC; // type:object size:0x4 scope:local align:4 data:float +@4092 = .sdata2:0x8051E2D0; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x8051E2D4; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x8051E2D8; // type:object size:0x4 scope:local align:4 data:float +@4315 = .sdata2:0x8051E2DC; // type:object size:0x4 scope:local align:4 data:float +@4316 = .sdata2:0x8051E2E0; // type:object size:0x4 scope:local align:4 data:float +@4317 = .sdata2:0x8051E2E4; // type:object size:0x4 scope:local align:4 data:float +@4318 = .sdata2:0x8051E2E8; // type:object size:0x4 scope:local align:4 data:float +@4319 = .sdata2:0x8051E2EC; // type:object size:0x4 scope:local align:4 data:float +@4320 = .sdata2:0x8051E2F0; // type:object size:0x4 scope:local align:4 data:float +@4321 = .sdata2:0x8051E2F4; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x8051E2F8; // type:object size:0x4 scope:local align:4 data:float +@4323 = .sdata2:0x8051E2FC; // type:object size:0x4 scope:local align:4 data:float +@4325 = .sdata2:0x8051E300; // type:object size:0x8 scope:local align:8 data:double +@4352 = .sdata2:0x8051E308; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051E310; // type:object size:0x5 scope:local align:4 data:string +@3881 = .sdata2:0x8051E318; // type:object size:0x4 scope:local align:4 data:float +@3906 = .sdata2:0x8051E31C; // type:object size:0x5 scope:local align:4 data:string +@3953 = .sdata2:0x8051E324; // type:object size:0x5 scope:local align:4 data:string +@4137 = .sdata2:0x8051E32C; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051E330; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051E334; // type:object size:0x7 scope:local align:4 data:string +@4279 = .sdata2:0x8051E33C; // type:object size:0x7 scope:local align:4 data:string +@4304 = .sdata2:0x8051E344; // type:object size:0x5 scope:local align:4 data:string +@4347 = .sdata2:0x8051E350; // type:object size:0x8 scope:local align:8 data:double +@4356 = .sdata2:0x8051E358; // type:object size:0x7 scope:local align:4 data:string +@4399 = .sdata2:0x8051E360; // type:object size:0x5 scope:local align:4 data:string +@4438 = .sdata2:0x8051E368; // type:object size:0x6 scope:local align:4 data:string +@4568 = .sdata2:0x8051E370; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051E374; // type:object size:0x4 scope:local align:4 data:float +@4570 = .sdata2:0x8051E378; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata2:0x8051E37C; // type:object size:0x4 scope:local align:4 data:float +@4572 = .sdata2:0x8051E380; // type:object size:0x4 scope:local align:4 data:float +@4581 = .sdata2:0x8051E384; // type:object size:0x7 scope:local align:4 data:string +@4726 = .sdata2:0x8051E38C; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x8051E390; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x8051E398; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051E39C; // type:object size:0x4 scope:local align:4 data:float +@3852 = .sdata2:0x8051E3A0; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051E3A4; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051E3A8; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051E3AC; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051E3B0; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051E3B4; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata2:0x8051E3B8; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051E3BC; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051E3C0; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x8051E3C4; // type:object size:0x4 scope:local align:4 data:float +@4160 = .sdata2:0x8051E3C8; // type:object size:0x4 scope:local align:4 data:float +@4080 = .sdata2:0x8051E3D0; // type:object size:0x4 scope:local align:4 data:float +@4081 = .sdata2:0x8051E3D4; // type:object size:0x5 scope:local align:4 data:string +@4082 = .sdata2:0x8051E3DC; // type:object size:0x5 scope:local align:4 data:string +@4196 = .sdata2:0x8051E3E4; // type:object size:0x4 scope:local align:4 data:float +@4197 = .sdata2:0x8051E3E8; // type:object size:0x4 scope:local align:4 data:float +@4198 = .sdata2:0x8051E3EC; // type:object size:0x4 scope:local align:4 data:float +@4199 = .sdata2:0x8051E3F0; // type:object size:0x4 scope:local align:4 data:float +@4200 = .sdata2:0x8051E3F4; // type:object size:0x4 scope:local align:4 data:float +@4240 = .sdata2:0x8051E3F8; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051E3FC; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051E400; // type:object size:0x4 scope:local align:4 data:float +@4458 = .sdata2:0x8051E404; // type:object size:0x4 scope:local align:4 data:float +@4609 = .sdata2:0x8051E408; // type:object size:0x4 scope:local align:4 data:float +@4610 = .sdata2:0x8051E40C; // type:object size:0x4 scope:local align:4 data:float +@4611 = .sdata2:0x8051E410; // type:object size:0x4 scope:local align:4 data:float +@4632 = .sdata2:0x8051E414; // type:object size:0x4 scope:local align:4 data:float +@4633 = .sdata2:0x8051E418; // type:object size:0x4 scope:local align:4 data:float +@4661 = .sdata2:0x8051E41C; // type:object size:0x4 scope:local align:4 data:float +@4702 = .sdata2:0x8051E420; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata2:0x8051E424; // type:object size:0x5 scope:local align:4 data:string +@4708 = .sdata2:0x8051E42C; // type:object size:0x5 scope:local align:4 data:string +@4856 = .sdata2:0x8051E434; // type:object size:0x4 scope:local align:4 data:float +@4857 = .sdata2:0x8051E438; // type:object size:0x4 scope:local align:4 data:float +@4861 = .sdata2:0x8051E440; // type:object size:0x8 scope:local align:8 data:double +@4945 = .sdata2:0x8051E448; // type:object size:0x4 scope:local align:4 data:float +@4946 = .sdata2:0x8051E44C; // type:object size:0x4 scope:local align:4 data:float +@4947 = .sdata2:0x8051E450; // type:object size:0x4 scope:local align:4 data:float +@5029 = .sdata2:0x8051E454; // type:object size:0x4 scope:local align:4 data:float +@5030 = .sdata2:0x8051E458; // type:object size:0x4 scope:local align:4 data:float +@5031 = .sdata2:0x8051E45C; // type:object size:0x4 scope:local align:4 data:float +@5032 = .sdata2:0x8051E460; // type:object size:0x4 scope:local align:4 data:float +@5211 = .sdata2:0x8051E464; // type:object size:0x4 scope:local align:4 data:float +@5212 = .sdata2:0x8051E468; // type:object size:0x6 scope:local align:4 data:string +@5338 = .sdata2:0x8051E470; // type:object size:0x4 scope:local align:4 data:float +@5538 = .sdata2:0x8051E474; // type:object size:0x4 scope:local align:4 data:float +@5539 = .sdata2:0x8051E478; // type:object size:0x4 scope:local align:4 data:float +@5540 = .sdata2:0x8051E47C; // type:object size:0x4 scope:local align:4 data:float +@6106 = .sdata2:0x8051E480; // type:object size:0x4 scope:local align:4 data:float +@6107 = .sdata2:0x8051E484; // type:object size:0x4 scope:local align:4 data:float +@6108 = .sdata2:0x8051E488; // type:object size:0x4 scope:local align:4 data:float +@4324 = .sdata2:0x8051E490; // type:object size:0x4 scope:local align:4 data:float +@4325 = .sdata2:0x8051E494; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata2:0x8051E498; // type:object size:0x4 scope:local align:4 data:float +@4673 = .sdata2:0x8051E49C; // type:object size:0x4 scope:local align:4 data:float +@4674 = .sdata2:0x8051E4A0; // type:object size:0x4 scope:local align:4 data:float +@4675 = .sdata2:0x8051E4A4; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051E4A8; // type:object size:0x5 scope:local align:4 data:string +@4050 = .sdata2:0x8051E4B0; // type:object size:0x4 scope:local align:4 data:float +@4051 = .sdata2:0x8051E4B4; // type:object size:0x4 scope:local align:4 data:float +@4052 = .sdata2:0x8051E4B8; // type:object size:0x4 scope:local align:4 data:float +@4064 = .sdata2:0x8051E4BC; // type:object size:0x7 scope:local align:4 data:string +@4303 = .sdata2:0x8051E4C4; // type:object size:0x4 scope:local align:4 data:float +@4304 = .sdata2:0x8051E4C8; // type:object size:0x4 scope:local align:4 data:float +@4322 = .sdata2:0x8051E4CC; // type:object size:0x5 scope:local align:4 data:string +@4366 = .sdata2:0x8051E4D4; // type:object size:0x6 scope:local align:4 data:string +@4651 = .sdata2:0x8051E4DC; // type:object size:0x4 scope:local align:4 data:float +@4652 = .sdata2:0x8051E4E0; // type:object size:0x4 scope:local align:4 data:float +@4653 = .sdata2:0x8051E4E4; // type:object size:0x4 scope:local align:4 data:float +@4674 = .sdata2:0x8051E4E8; // type:object size:0x7 scope:local align:4 data:string +@4851 = .sdata2:0x8051E4F0; // type:object size:0x4 scope:local align:4 data:float +@4852 = .sdata2:0x8051E4F4; // type:object size:0x4 scope:local align:4 data:float +@4853 = .sdata2:0x8051E4F8; // type:object size:0x4 scope:local align:4 data:float +@4865 = .sdata2:0x8051E4FC; // type:object size:0x7 scope:local align:4 data:string +@4904 = .sdata2:0x8051E508; // type:object size:0x8 scope:local align:8 data:double +@4916 = .sdata2:0x8051E510; // type:object size:0x5 scope:local align:4 data:string +@4951 = .sdata2:0x8051E518; // type:object size:0x4 scope:local align:4 data:float +@4959 = .sdata2:0x8051E51C; // type:object size:0x4 scope:local align:4 data:string +@4991 = .sdata2:0x8051E520; // type:object size:0x5 scope:local align:4 data:string +@5109 = .sdata2:0x8051E528; // type:object size:0x7 scope:local align:4 data:string +@5196 = .sdata2:0x8051E530; // type:object size:0x8 scope:local align:4 data:string +@5225 = .sdata2:0x8051E538; // type:object size:0x8 scope:local align:4 data:string +@5247 = .sdata2:0x8051E540; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051E548; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051E54C; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051E550; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051E554; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051E558; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051E55C; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051E560; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x8051E564; // type:object size:0x4 scope:local align:4 data:float +@3850 = .sdata2:0x8051E568; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051E56C; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051E570; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051E574; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051E578; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051E57C; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051E580; // type:object size:0x4 scope:local align:4 data:float +@3866 = .sdata2:0x8051E584; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x8051E588; // type:object size:0x4 scope:local align:4 data:float +@3870 = .sdata2:0x8051E58C; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x8051E590; // type:object size:0x8 scope:local align:4 +@3872 = .sdata2:0x8051E598; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x8051E59C; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051E5A0; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051E5A4; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051E5A8; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8051E5AC; // type:object size:0x5 scope:local align:4 data:string +@4098 = .sdata2:0x8051E5B4; // type:object size:0x8 scope:local align:4 data:string +@4099 = .sdata2:0x8051E5BC; // type:object size:0x6 scope:local align:4 data:string +@4100 = .sdata2:0x8051E5C4; // type:object size:0x6 scope:local align:4 data:string +@4101 = .sdata2:0x8051E5CC; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051E5D0; // type:object size:0x5 scope:local align:4 data:string +@4103 = .sdata2:0x8051E5D8; // type:object size:0x5 scope:local align:4 data:string +@4104 = .sdata2:0x8051E5E0; // type:object size:0x5 scope:local align:4 data:string +@4636 = .sdata2:0x8051E5E8; // type:object size:0x4 scope:local align:4 data:float +@4637 = .sdata2:0x8051E5EC; // type:object size:0x4 scope:local align:4 data:float +@4638 = .sdata2:0x8051E5F0; // type:object size:0x4 scope:local align:4 data:float +@4639 = .sdata2:0x8051E5F4; // type:object size:0x4 scope:local align:4 data:float +@4886 = .sdata2:0x8051E5F8; // type:object size:0x4 scope:local align:4 data:float +@4912 = .sdata2:0x8051E5FC; // type:object size:0x4 scope:local align:4 data:float +@4913 = .sdata2:0x8051E600; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata2:0x8051E604; // type:object size:0x4 scope:local align:4 data:float +@4949 = .sdata2:0x8051E608; // type:object size:0x4 scope:local align:4 data:float +@4950 = .sdata2:0x8051E60C; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051E610; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata2:0x8051E614; // type:object size:0x4 scope:local align:4 data:float +@4968 = .sdata2:0x8051E618; // type:object size:0x4 scope:local align:4 data:float +@4983 = .sdata2:0x8051E61C; // type:object size:0x4 scope:local align:4 data:float +@5007 = .sdata2:0x8051E620; // type:object size:0x4 scope:local align:4 data:float +@5053 = .sdata2:0x8051E624; // type:object size:0x6 scope:local align:4 data:string +@5054 = .sdata2:0x8051E62C; // type:object size:0x6 scope:local align:4 data:string +@5055 = .sdata2:0x8051E634; // type:object size:0x6 scope:local align:4 data:string +@5056 = .sdata2:0x8051E63C; // type:object size:0x6 scope:local align:4 data:string +@5057 = .sdata2:0x8051E644; // type:object size:0x6 scope:local align:4 data:string +@5058 = .sdata2:0x8051E64C; // type:object size:0x6 scope:local align:4 data:string +@5059 = .sdata2:0x8051E654; // type:object size:0x6 scope:local align:4 data:string +@5060 = .sdata2:0x8051E65C; // type:object size:0x6 scope:local align:4 data:string +@5061 = .sdata2:0x8051E664; // type:object size:0x6 scope:local align:4 data:string +@5073 = .sdata2:0x8051E66C; // type:object size:0x4 scope:local align:4 data:float +@5327 = .sdata2:0x8051E670; // type:object size:0x4 scope:local align:4 data:float +@5328 = .sdata2:0x8051E674; // type:object size:0x4 scope:local align:4 data:float +@5329 = .sdata2:0x8051E678; // type:object size:0x4 scope:local align:4 data:float +@5331 = .sdata2:0x8051E680; // type:object size:0x8 scope:local align:8 data:double +@5505 = .sdata2:0x8051E688; // type:object size:0x4 scope:local align:4 data:float +@5506 = .sdata2:0x8051E68C; // type:object size:0x4 scope:local align:4 data:float +@5507 = .sdata2:0x8051E690; // type:object size:0x4 scope:local align:4 data:float +@5508 = .sdata2:0x8051E694; // type:object size:0x4 scope:local align:4 data:float +@5594 = .sdata2:0x8051E698; // type:object size:0x4 scope:local align:4 data:float +@6061 = .sdata2:0x8051E69C; // type:object size:0x4 scope:local align:4 data:float +@6170 = .sdata2:0x8051E6A0; // type:object size:0x4 scope:local align:4 data:float +@6237 = .sdata2:0x8051E6A4; // type:object size:0x4 scope:local align:4 data:float +@6381 = .sdata2:0x8051E6A8; // type:object size:0x6 scope:local align:4 data:string +@6382 = .sdata2:0x8051E6B0; // type:object size:0x6 scope:local align:4 data:string +@6417 = .sdata2:0x8051E6B8; // type:object size:0x4 scope:local align:4 data:float +@6616 = .sdata2:0x8051E6BC; // type:object size:0x4 scope:local align:4 data:float +@3557 = .sdata2:0x8051E6C0; // type:object size:0x5 scope:local align:4 data:string +@3570 = .sdata2:0x8051E6C8; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x8051E6CC; // type:object size:0x5 scope:local align:4 data:string +@3637 = .sdata2:0x8051E6D4; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051E6D8; // type:object size:0x4 scope:local align:4 data:float +@3639 = .sdata2:0x8051E6DC; // type:object size:0x4 scope:local align:4 data:float +@3778 = .sdata2:0x8051E6E0; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051E6E4; // type:object size:0x4 scope:local align:4 data:float +@3780 = .sdata2:0x8051E6E8; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051E6EC; // type:object size:0x4 scope:local align:4 data:float +@4099 = .sdata2:0x8051E6F0; // type:object size:0x4 scope:local align:4 data:float +@4100 = .sdata2:0x8051E6F4; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x8051E6F8; // type:object size:0x4 scope:local align:4 data:float +@4102 = .sdata2:0x8051E6FC; // type:object size:0x4 scope:local align:4 data:float +@4103 = .sdata2:0x8051E700; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051E704; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051E708; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051E70C; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x8051E710; // type:object size:0x4 scope:local align:4 data:float +@4161 = .sdata2:0x8051E714; // type:object size:0x5 scope:local align:4 data:string +@4180 = .sdata2:0x8051E71C; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051E720; // type:object size:0x6 scope:local align:4 data:string +@4276 = .sdata2:0x8051E728; // type:object size:0x5 scope:local align:4 data:string +@3549 = .sdata2:0x8051E730; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x8051E734; // type:object size:0x4 scope:local align:4 data:float +@3551 = .sdata2:0x8051E738; // type:object size:0x4 scope:local align:4 data:float +@3553 = .sdata2:0x8051E73C; // type:object size:0x4 scope:local align:4 data:float +@3554 = .sdata2:0x8051E740; // type:object size:0x4 scope:local align:4 data:float +@3558 = .sdata2:0x8051E744; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051E748; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051E74C; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051E750; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051E754; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051E758; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051E75C; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051E760; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051E764; // type:object size:0x4 scope:local align:4 data:float +@3956 = .sdata2:0x8051E768; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051E76C; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051E770; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051E774; // type:object size:0x4 scope:local align:4 data:float +@4336 = .sdata2:0x8051E778; // type:object size:0x4 scope:local align:4 data:float +@4356 = .sdata2:0x8051E77C; // type:object size:0x4 scope:local align:4 data:float +@4450 = .sdata2:0x8051E780; // type:object size:0x4 scope:local align:4 data:float +@4556 = .sdata2:0x8051E784; // type:object size:0x4 scope:local align:4 data:float +@4557 = .sdata2:0x8051E788; // type:object size:0x4 scope:local align:4 data:float +@4558 = .sdata2:0x8051E78C; // type:object size:0x4 scope:local align:4 data:float +@4559 = .sdata2:0x8051E790; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x8051E798; // type:object size:0x8 scope:local align:8 data:double +@4653 = .sdata2:0x8051E7A0; // type:object size:0x4 scope:local align:4 data:float +@4687 = .sdata2:0x8051E7A4; // type:object size:0x4 scope:local align:4 data:float +@4707 = .sdata2:0x8051E7A8; // type:object size:0x4 scope:local align:4 data:float +@4745 = .sdata2:0x8051E7AC; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051E7B0; // type:object size:0x5 scope:local align:4 data:string +@4037 = .sdata2:0x8051E7B8; // type:object size:0x7 scope:local align:4 data:string +@4059 = .sdata2:0x8051E7C0; // type:object size:0x4 scope:local align:4 data:float +@4060 = .sdata2:0x8051E7C4; // type:object size:0x4 scope:local align:4 data:float +@4061 = .sdata2:0x8051E7C8; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051E7CC; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051E7D0; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051E7D4; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051E7D8; // type:object size:0x5 scope:local align:4 data:string +@4216 = .sdata2:0x8051E7E0; // type:object size:0x4 scope:local align:4 data:float +@4248 = .sdata2:0x8051E7E4; // type:object size:0x4 scope:local align:4 data:float +@4249 = .sdata2:0x8051E7E8; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051E7EC; // type:object size:0x5 scope:local align:4 data:string +@4300 = .sdata2:0x8051E7F4; // type:object size:0x7 scope:local align:4 data:string +@4460 = .sdata2:0x8051E7FC; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051E800; // type:object size:0x4 scope:local align:4 data:float +@4462 = .sdata2:0x8051E804; // type:object size:0x4 scope:local align:4 data:float +@4463 = .sdata2:0x8051E808; // type:object size:0x4 scope:local align:4 data:float +@4478 = .sdata2:0x8051E80C; // type:object size:0x5 scope:local align:4 data:string +@4563 = .sdata2:0x8051E814; // type:object size:0x7 scope:local align:4 data:string +@4600 = .sdata2:0x8051E81C; // type:object size:0x4 scope:local align:4 data:float +@4613 = .sdata2:0x8051E820; // type:object size:0x6 scope:local align:4 data:string +@4644 = .sdata2:0x8051E828; // type:object size:0x4 scope:local align:4 data:float +@4657 = .sdata2:0x8051E82C; // type:object size:0x6 scope:local align:4 data:string +@4714 = .sdata2:0x8051E834; // type:object size:0x4 scope:local align:4 data:string +@4748 = .sdata2:0x8051E838; // type:object size:0x4 scope:local align:4 data:float +@4749 = .sdata2:0x8051E83C; // type:object size:0x4 scope:local align:4 data:float +@4757 = .sdata2:0x8051E840; // type:object size:0x7 scope:local align:4 data:string +@5001 = .sdata2:0x8051E848; // type:object size:0x4 scope:local align:4 data:float +@5010 = .sdata2:0x8051E84C; // type:object size:0x8 scope:local align:4 data:string +@5061 = .sdata2:0x8051E854; // type:object size:0x4 scope:local align:4 data:float +@5073 = .sdata2:0x8051E858; // type:object size:0x6 scope:local align:4 data:string +@3826 = .sdata2:0x8051E860; // type:object size:0x4 scope:local align:4 data:float +@3827 = .sdata2:0x8051E864; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x8051E868; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051E86C; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051E870; // type:object size:0x4 scope:local align:4 data:float +@3834 = .sdata2:0x8051E874; // type:object size:0x4 scope:local align:4 data:float +@3836 = .sdata2:0x8051E878; // type:object size:0x4 scope:local align:4 data:float +@3838 = .sdata2:0x8051E87C; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051E880; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051E884; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051E888; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x8051E88C; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051E890; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051E894; // type:object size:0x4 scope:local align:4 data:float +@3845 = .sdata2:0x8051E898; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051E89C; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051E8A0; // type:object size:0x4 scope:local align:4 data:float +@3854 = .sdata2:0x8051E8A4; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051E8A8; // type:object size:0x4 scope:local align:4 data:float +@3857 = .sdata2:0x8051E8B0; // type:object size:0x8 scope:local align:8 data:double +@3920 = .sdata2:0x8051E8B8; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051E8BC; // type:object size:0x4 scope:local align:4 data:float +@4195 = .sdata2:0x8051E8C0; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x8051E8C4; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x8051E8C8; // type:object size:0x4 scope:local align:4 data:float +@4364 = .sdata2:0x8051E8CC; // type:object size:0x4 scope:local align:4 data:float +@4456 = .sdata2:0x8051E8D0; // type:object size:0x4 scope:local align:4 data:float +@4457 = .sdata2:0x8051E8D4; // type:object size:0x4 scope:local align:4 data:float +@4498 = .sdata2:0x8051E8D8; // type:object size:0x4 scope:local align:4 data:float +@4838 = .sdata2:0x8051E8DC; // type:object size:0x4 scope:local align:4 data:float +@4839 = .sdata2:0x8051E8E0; // type:object size:0x4 scope:local align:4 data:float +@4840 = .sdata2:0x8051E8E4; // type:object size:0x4 scope:local align:4 data:float +@4841 = .sdata2:0x8051E8E8; // type:object size:0x4 scope:local align:4 data:float +@4842 = .sdata2:0x8051E8EC; // type:object size:0x4 scope:local align:4 data:float +@4843 = .sdata2:0x8051E8F0; // type:object size:0x4 scope:local align:4 data:float +@4844 = .sdata2:0x8051E8F4; // type:object size:0x4 scope:local align:4 data:float +@4845 = .sdata2:0x8051E8F8; // type:object size:0x4 scope:local align:4 data:float +@4846 = .sdata2:0x8051E8FC; // type:object size:0x4 scope:local align:4 data:float +@4847 = .sdata2:0x8051E900; // type:object size:0x4 scope:local align:4 data:float +@4848 = .sdata2:0x8051E904; // type:object size:0x4 scope:local align:4 data:float +@4898 = .sdata2:0x8051E908; // type:object size:0x4 scope:local align:4 data:float +@5189 = .sdata2:0x8051E90C; // type:object size:0x4 scope:local align:4 data:float +@5190 = .sdata2:0x8051E910; // type:object size:0x4 scope:local align:4 data:float +@5191 = .sdata2:0x8051E914; // type:object size:0x4 scope:local align:4 data:float +@5192 = .sdata2:0x8051E918; // type:object size:0x4 scope:local align:4 data:float +@5304 = .sdata2:0x8051E91C; // type:object size:0x4 scope:local align:4 data:float +@5334 = .sdata2:0x8051E920; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x8051E924; // type:object size:0x4 scope:local align:4 data:float +@5493 = .sdata2:0x8051E928; // type:object size:0x4 scope:local align:4 data:float +@3369 = .sdata2:0x8051E930; // type:object size:0x4 scope:local align:4 data:float +@3387 = .sdata2:0x8051E934; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x8051E938; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051E940; // type:object size:0x5 scope:local align:4 data:string +@3835 = .sdata2:0x8051E948; // type:object size:0x4 scope:local align:4 data:float +@3837 = .sdata2:0x8051E950; // type:object size:0x8 scope:local align:8 data:double +@3875 = .sdata2:0x8051E958; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051E95C; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051E960; // type:object size:0x5 scope:local align:4 data:string +@3914 = .sdata2:0x8051E968; // type:object size:0x7 scope:local align:4 data:string +@3933 = .sdata2:0x8051E970; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051E974; // type:object size:0x5 scope:local align:4 data:string +@4008 = .sdata2:0x8051E97C; // type:object size:0x5 scope:local align:4 data:string +@4028 = .sdata2:0x8051E984; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051E988; // type:object size:0x5 scope:local align:4 data:string +@3877 = .sdata2:0x8051E990; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051E994; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051E998; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051E99C; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051E9A0; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051E9A4; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051E9A8; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8051E9AC; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051E9B0; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x8051E9B4; // type:object size:0x4 scope:local align:4 data:float +@3893 = .sdata2:0x8051E9B8; // type:object size:0x4 scope:local align:4 data:float +@3894 = .sdata2:0x8051E9BC; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051E9C0; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051E9C4; // type:object size:0x4 scope:local align:4 data:float +@4200 = .sdata2:0x8051E9C8; // type:object size:0x4 scope:local align:4 data:float +@4201 = .sdata2:0x8051E9CC; // type:object size:0x4 scope:local align:4 data:float +@4204 = .sdata2:0x8051E9D0; // type:object size:0x4 scope:local align:4 data:float +@4205 = .sdata2:0x8051E9D4; // type:object size:0x4 scope:local align:4 data:float +@4206 = .sdata2:0x8051E9D8; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x8051E9DC; // type:object size:0x4 scope:local align:4 data:float +@4208 = .sdata2:0x8051E9E0; // type:object size:0x4 scope:local align:4 data:float +@4209 = .sdata2:0x8051E9E4; // type:object size:0x4 scope:local align:4 data:float +@4211 = .sdata2:0x8051E9E8; // type:object size:0x8 scope:local align:8 data:double +@3876 = .sdata2:0x8051E9F0; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051E9F4; // type:object size:0x4 scope:local align:4 data:float +@3878 = .sdata2:0x8051E9F8; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051E9FC; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051EA00; // type:object size:0x4 scope:local align:4 data:float +@3881 = .sdata2:0x8051EA04; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051EA08; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8051EA0C; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051EA10; // type:object size:0x8 scope:local align:8 data:double +@4115 = .sdata2:0x8051EA18; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051EA1C; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051EA20; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051EA24; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051EA28; // type:object size:0x4 scope:local align:4 data:float +@4198 = .sdata2:0x8051EA2C; // type:object size:0x4 scope:local align:4 data:float +@4199 = .sdata2:0x8051EA30; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata2:0x8051EA34; // type:object size:0x4 scope:local align:4 data:float +@4281 = .sdata2:0x8051EA38; // type:object size:0x4 scope:local align:4 data:float +@4282 = .sdata2:0x8051EA3C; // type:object size:0x4 scope:local align:4 data:float +@4283 = .sdata2:0x8051EA40; // type:object size:0x4 scope:local align:4 data:float +@4284 = .sdata2:0x8051EA44; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x8051EA48; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x8051EA4C; // type:object size:0x4 scope:local align:4 data:float +@4599 = .sdata2:0x8051EA50; // type:object size:0x4 scope:local align:4 data:float +@4630 = .sdata2:0x8051EA54; // type:object size:0x4 scope:local align:4 data:float +@4703 = .sdata2:0x8051EA58; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x8051EA60; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051EA64; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x8051EA68; // type:object size:0x4 scope:local align:4 data:float +@3944 = .sdata2:0x8051EA6C; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x8051EA70; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051EA74; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051EA78; // type:object size:0x4 scope:local align:4 data:float +@4177 = .sdata2:0x8051EA7C; // type:object size:0x4 scope:local align:4 data:float +@4178 = .sdata2:0x8051EA80; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x8051EA84; // type:object size:0x4 scope:local align:4 data:float +@4180 = .sdata2:0x8051EA88; // type:object size:0x4 scope:local align:4 data:float +@4557 = .sdata2:0x8051EA8C; // type:object size:0x4 scope:local align:4 data:float +@4558 = .sdata2:0x8051EA90; // type:object size:0x4 scope:local align:4 data:float +@4559 = .sdata2:0x8051EA94; // type:object size:0x4 scope:local align:4 data:float +@4560 = .sdata2:0x8051EA98; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x8051EA9C; // type:object size:0x4 scope:local align:4 data:float +@4562 = .sdata2:0x8051EAA0; // type:object size:0x4 scope:local align:4 data:float +@4563 = .sdata2:0x8051EAA4; // type:object size:0x4 scope:local align:4 data:float +@4564 = .sdata2:0x8051EAA8; // type:object size:0x4 scope:local align:4 data:float +@4565 = .sdata2:0x8051EAAC; // type:object size:0x4 scope:local align:4 data:float +@4566 = .sdata2:0x8051EAB0; // type:object size:0x4 scope:local align:4 data:float +@4568 = .sdata2:0x8051EAB4; // type:object size:0x4 scope:local align:4 data:float +@4569 = .sdata2:0x8051EAB8; // type:object size:0x4 scope:local align:4 data:float +@4571 = .sdata2:0x8051EAC0; // type:object size:0x8 scope:local align:8 data:double +@4623 = .sdata2:0x8051EAC8; // type:object size:0x4 scope:local align:4 data:float +@4625 = .sdata2:0x8051EAD0; // type:object size:0x8 scope:local align:8 data:double +@5011 = .sdata2:0x8051EAD8; // type:object size:0x4 scope:local align:4 data:float +@5012 = .sdata2:0x8051EADC; // type:object size:0x4 scope:local align:4 data:float +@5384 = .sdata2:0x8051EAE0; // type:object size:0x4 scope:local align:4 data:float +@5385 = .sdata2:0x8051EAE4; // type:object size:0x4 scope:local align:4 data:float +@5386 = .sdata2:0x8051EAE8; // type:object size:0x4 scope:local align:4 data:float +@5387 = .sdata2:0x8051EAEC; // type:object size:0x4 scope:local align:4 data:float +@5388 = .sdata2:0x8051EAF0; // type:object size:0x4 scope:local align:4 data:float +@5614 = .sdata2:0x8051EAF4; // type:object size:0x4 scope:local align:4 data:float +@6169 = .sdata2:0x8051EAF8; // type:object size:0x4 scope:local align:4 data:float +@6170 = .sdata2:0x8051EAFC; // type:object size:0x4 scope:local align:4 data:float +@6171 = .sdata2:0x8051EB00; // type:object size:0x4 scope:local align:4 data:float +@6173 = .sdata2:0x8051EB04; // type:object size:0x4 scope:local align:4 data:float +@6801 = .sdata2:0x8051EB08; // type:object size:0x4 scope:local align:4 data:float +@6827 = .sdata2:0x8051EB0C; // type:object size:0x4 scope:local align:4 data:float +@7067 = .sdata2:0x8051EB10; // type:object size:0x4 scope:local align:4 data:float +@7823 = .sdata2:0x8051EB14; // type:object size:0x4 scope:local align:4 data:float +@7824 = .sdata2:0x8051EB18; // type:object size:0x4 scope:local align:4 data:float +@8005 = .sdata2:0x8051EB1C; // type:object size:0x4 scope:local align:4 data:float +@8218 = .sdata2:0x8051EB20; // type:object size:0x4 scope:local align:4 data:float +@8219 = .sdata2:0x8051EB24; // type:object size:0x4 scope:local align:4 data:float +@8425 = .sdata2:0x8051EB28; // type:object size:0x4 scope:local align:4 data:float +@8426 = .sdata2:0x8051EB2C; // type:object size:0x4 scope:local align:4 data:float +@8560 = .sdata2:0x8051EB30; // type:object size:0x4 scope:local align:4 data:float +@8561 = .sdata2:0x8051EB34; // type:object size:0x4 scope:local align:4 data:float +@8562 = .sdata2:0x8051EB38; // type:object size:0x4 scope:local align:4 data:float +@8563 = .sdata2:0x8051EB3C; // type:object size:0x4 scope:local align:4 data:float +@8690 = .sdata2:0x8051EB40; // type:object size:0x4 scope:local align:4 data:float +@8791 = .sdata2:0x8051EB44; // type:object size:0x4 scope:local align:4 data:float +@8792 = .sdata2:0x8051EB48; // type:object size:0x4 scope:local align:4 data:float +@8793 = .sdata2:0x8051EB4C; // type:object size:0x4 scope:local align:4 data:float +@8794 = .sdata2:0x8051EB50; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051EB58; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x8051EB60; // type:object size:0x8 scope:local align:8 data:double +@3809 = .sdata2:0x8051EB68; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051EB6C; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051EB70; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051EB74; // type:object size:0x4 scope:local align:4 data:float +@3929 = .sdata2:0x8051EB78; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051EB7C; // type:object size:0x8 scope:local align:4 data:string +@3970 = .sdata2:0x8051EB84; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x8051EB88; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x8051EB8C; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x8051EB90; // type:object size:0x4 scope:local align:4 data:float +@3974 = .sdata2:0x8051EB94; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x8051EB98; // type:object size:0x4 scope:local align:4 data:float +@3976 = .sdata2:0x8051EB9C; // type:object size:0x4 scope:local align:4 data:float +@3977 = .sdata2:0x8051EBA0; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051EBA4; // type:object size:0x4 scope:local align:4 data:float +@4717 = .sdata2:0x8051EBA8; // type:object size:0x4 scope:local align:4 data:float +@4718 = .sdata2:0x8051EBAC; // type:object size:0x4 scope:local align:4 data:float +@4719 = .sdata2:0x8051EBB0; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x8051EBB4; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x8051EBB8; // type:object size:0x4 scope:local align:4 data:float +@4722 = .sdata2:0x8051EBBC; // type:object size:0x4 scope:local align:4 data:float +@4723 = .sdata2:0x8051EBC0; // type:object size:0x4 scope:local align:4 data:float +@4724 = .sdata2:0x8051EBC4; // type:object size:0x4 scope:local align:4 data:float +@4725 = .sdata2:0x8051EBC8; // type:object size:0x4 scope:local align:4 data:float +@4726 = .sdata2:0x8051EBCC; // type:object size:0x4 scope:local align:4 data:float +@4727 = .sdata2:0x8051EBD0; // type:object size:0x4 scope:local align:4 data:float +@4728 = .sdata2:0x8051EBD4; // type:object size:0x4 scope:local align:4 data:float +@4774 = .sdata2:0x8051EBD8; // type:object size:0x8 scope:local align:8 data:double +@4844 = .sdata2:0x8051EBE0; // type:object size:0x4 scope:local align:4 data:float +@5119 = .sdata2:0x8051EBE4; // type:object size:0x4 scope:local align:4 data:float +@5120 = .sdata2:0x8051EBE8; // type:object size:0x4 scope:local align:4 data:float +@5121 = .sdata2:0x8051EBEC; // type:object size:0x4 scope:local align:4 data:float +@5122 = .sdata2:0x8051EBF0; // type:object size:0x4 scope:local align:4 data:float +@5123 = .sdata2:0x8051EBF4; // type:object size:0x4 scope:local align:4 data:float +@5124 = .sdata2:0x8051EBF8; // type:object size:0x4 scope:local align:4 data:float +@5528 = .sdata2:0x8051EBFC; // type:object size:0x4 scope:local align:4 data:float +@5529 = .sdata2:0x8051EC00; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051EC08; // type:object size:0x5 scope:local align:4 data:string +@4036 = .sdata2:0x8051EC10; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x8051EC14; // type:object size:0x5 scope:local align:4 data:string +@4122 = .sdata2:0x8051EC1C; // type:object size:0x4 scope:local align:4 data:float +@4123 = .sdata2:0x8051EC20; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x8051EC28; // type:object size:0x8 scope:local align:8 data:double +@4133 = .sdata2:0x8051EC30; // type:object size:0x5 scope:local align:4 data:string +@4173 = .sdata2:0x8051EC38; // type:object size:0x7 scope:local align:4 data:string +@4266 = .sdata2:0x8051EC40; // type:object size:0x5 scope:local align:4 data:string +@4335 = .sdata2:0x8051EC48; // type:object size:0x4 scope:local align:4 data:float +@4336 = .sdata2:0x8051EC4C; // type:object size:0x4 scope:local align:4 data:float +@4345 = .sdata2:0x8051EC50; // type:object size:0x6 scope:local align:4 data:string +@4410 = .sdata2:0x8051EC58; // type:object size:0x4 scope:local align:4 data:float +@4418 = .sdata2:0x8051EC5C; // type:object size:0x7 scope:local align:4 data:string +@4628 = .sdata2:0x8051EC64; // type:object size:0x4 scope:local align:4 data:string +@4648 = .sdata2:0x8051EC68; // type:object size:0x4 scope:local align:4 data:float +@4656 = .sdata2:0x8051EC6C; // type:object size:0x5 scope:local align:4 data:string +@4689 = .sdata2:0x8051EC74; // type:object size:0x5 scope:local align:4 data:string +@3805 = .sdata2:0x8051EC80; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x8051EC84; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x8051EC88; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051EC8C; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x8051EC90; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051EC94; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051EC98; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051EC9C; // type:object size:0x4 scope:local align:4 data:float +@3835 = .sdata2:0x8051ECA0; // type:object size:0x4 scope:local align:4 data:float +@3837 = .sdata2:0x8051ECA4; // type:object size:0x4 scope:local align:4 data:float +@3839 = .sdata2:0x8051ECA8; // type:object size:0x4 scope:local align:4 data:float +@3840 = .sdata2:0x8051ECAC; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051ECB0; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051ECB4; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051ECB8; // type:object size:0x4 scope:local align:4 data:float +@3847 = .sdata2:0x8051ECBC; // type:object size:0x4 scope:local align:4 data:float +@3849 = .sdata2:0x8051ECC0; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051ECC4; // type:object size:0x8 scope:local align:4 data:4byte +@3821 = .sdata2:0x8051ECD0; // type:object size:0x4 scope:local align:4 data:float +@3822 = .sdata2:0x8051ECD4; // type:object size:0x4 scope:local align:4 data:float +@3823 = .sdata2:0x8051ECD8; // type:object size:0x4 scope:local align:4 data:float +@3832 = .sdata2:0x8051ECDC; // type:object size:0x4 scope:local align:4 data:float +@3833 = .sdata2:0x8051ECE0; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x8051ECE4; // type:object size:0x4 scope:local align:4 data:float +@4350 = .sdata2:0x8051ECE8; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051ECEC; // type:object size:0x4 scope:local align:4 data:float +@4408 = .sdata2:0x8051ECF0; // type:object size:0x4 scope:local align:4 data:float +@4409 = .sdata2:0x8051ECF4; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8051ECF8; // type:object size:0x4 scope:local align:4 data:float +@4518 = .sdata2:0x8051ECFC; // type:object size:0x4 scope:local align:4 data:float +@4538 = .sdata2:0x8051ED00; // type:object size:0x4 scope:local align:4 data:float +@4549 = .sdata2:0x8051ED04; // type:object size:0x4 scope:local align:4 data:float +@4681 = .sdata2:0x8051ED08; // type:object size:0x4 scope:local align:4 data:float +@4682 = .sdata2:0x8051ED0C; // type:object size:0x4 scope:local align:4 data:float +@4683 = .sdata2:0x8051ED10; // type:object size:0x4 scope:local align:4 data:float +@4684 = .sdata2:0x8051ED14; // type:object size:0x4 scope:local align:4 data:float +@4685 = .sdata2:0x8051ED18; // type:object size:0x4 scope:local align:4 data:float +@4686 = .sdata2:0x8051ED1C; // type:object size:0x4 scope:local align:4 data:float +@4720 = .sdata2:0x8051ED20; // type:object size:0x4 scope:local align:4 data:float +@4721 = .sdata2:0x8051ED24; // type:object size:0x4 scope:local align:4 data:float +@4723 = .sdata2:0x8051ED28; // type:object size:0x8 scope:local align:8 data:double +@4789 = .sdata2:0x8051ED30; // type:object size:0x4 scope:local align:4 data:float +@4790 = .sdata2:0x8051ED34; // type:object size:0x4 scope:local align:4 data:float +@4791 = .sdata2:0x8051ED38; // type:object size:0x4 scope:local align:4 data:float +@4792 = .sdata2:0x8051ED3C; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051ED40; // type:object size:0x4 scope:local align:4 data:float +@5497 = .sdata2:0x8051ED44; // type:object size:0x4 scope:local align:4 data:float +@5576 = .sdata2:0x8051ED48; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8051ED50; // type:object size:0x5 scope:local align:4 data:string +@3840 = .sdata2:0x8051ED58; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051ED5C; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x8051ED60; // type:object size:0x8 scope:local align:8 data:double +@3879 = .sdata2:0x8051ED68; // type:object size:0x4 scope:local align:4 data:float +@3880 = .sdata2:0x8051ED6C; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x8051ED70; // type:object size:0x4 scope:local align:4 data:string +@3919 = .sdata2:0x8051ED74; // type:object size:0x4 scope:local align:4 data:float +@3928 = .sdata2:0x8051ED78; // type:object size:0x5 scope:local align:4 data:string +@3961 = .sdata2:0x8051ED80; // type:object size:0x4 scope:local align:4 data:float +@3981 = .sdata2:0x8051ED84; // type:object size:0x5 scope:local align:4 data:string +@4022 = .sdata2:0x8051ED8C; // type:object size:0x4 scope:local align:4 data:float +@4030 = .sdata2:0x8051ED90; // type:object size:0x6 scope:local align:4 data:string +@4049 = .sdata2:0x8051ED98; // type:object size:0x5 scope:local align:4 data:string +@4064 = .sdata2:0x8051EDA0; // type:object size:0x4 scope:local align:4 data:float +@4065 = .sdata2:0x8051EDA4; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051EDA8; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051EDAC; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051EDB0; // type:object size:0x4 scope:local align:4 data:float +@3853 = .sdata2:0x8051EDB8; // type:object size:0x4 scope:local align:4 data:float +@3854 = .sdata2:0x8051EDBC; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x8051EDC0; // type:object size:0x4 scope:local align:4 data:float +@3856 = .sdata2:0x8051EDC4; // type:object size:0x4 scope:local align:4 data:float +@3857 = .sdata2:0x8051EDC8; // type:object size:0x4 scope:local align:4 data:float +@3858 = .sdata2:0x8051EDCC; // type:object size:0x4 scope:local align:4 data:float +@3859 = .sdata2:0x8051EDD0; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051EDD4; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051EDD8; // type:object size:0x4 scope:local align:4 data:float +@3876 = .sdata2:0x8051EDDC; // type:object size:0x4 scope:local align:4 data:float +@3877 = .sdata2:0x8051EDE0; // type:object size:0x4 scope:local align:4 data:float +@3879 = .sdata2:0x8051EDE4; // type:object size:0x4 scope:local align:4 data:float +@3882 = .sdata2:0x8051EDE8; // type:object size:0x4 scope:local align:4 data:float +@3884 = .sdata2:0x8051EDEC; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051EDF0; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051EDF4; // type:object size:0x7 scope:local align:4 +@3888 = .sdata2:0x8051EDFC; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051EE00; // type:object size:0x7 scope:local align:4 +@3925 = .sdata2:0x8051EE08; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051EE0C; // type:object size:0x4 scope:local align:4 data:float +@4018 = .sdata2:0x8051EE10; // type:object size:0x4 scope:local align:4 data:float +@4252 = .sdata2:0x8051EE14; // type:object size:0x4 scope:local align:4 data:float +@4253 = .sdata2:0x8051EE18; // type:object size:0x4 scope:local align:4 data:float +@4254 = .sdata2:0x8051EE1C; // type:object size:0x4 scope:local align:4 data:float +@4255 = .sdata2:0x8051EE20; // type:object size:0x4 scope:local align:4 data:float +@4256 = .sdata2:0x8051EE24; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x8051EE28; // type:object size:0x8 scope:local align:8 data:double +@4310 = .sdata2:0x8051EE30; // type:object size:0x4 scope:local align:4 data:float +@3849 = .sdata2:0x8051EE38; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051EE40; // type:object size:0x8 scope:local align:8 data:double +@3894 = .sdata2:0x8051EE48; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x8051EE4C; // type:object size:0x4 scope:local align:4 data:float +@4012 = .sdata2:0x8051EE50; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051EE54; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x8051EE58; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051EE5C; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051EE60; // type:object size:0x4 scope:local align:4 data:float +@4375 = .sdata2:0x8051EE64; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051EE68; // type:object size:0x4 scope:local align:4 data:float +@4406 = .sdata2:0x8051EE6C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051EE70; // type:object size:0x4 scope:local align:4 data:float +@4460 = .sdata2:0x8051EE74; // type:object size:0x4 scope:local align:4 data:float +@4461 = .sdata2:0x8051EE78; // type:object size:0x4 scope:local align:4 data:float +@4632 = .sdata2:0x8051EE7C; // type:object size:0x4 scope:local align:4 data:float +@4633 = .sdata2:0x8051EE80; // type:object size:0x4 scope:local align:4 data:float +@4634 = .sdata2:0x8051EE84; // type:object size:0x4 scope:local align:4 data:float +@4635 = .sdata2:0x8051EE88; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x8051EE8C; // type:object size:0x4 scope:local align:4 data:float +@4678 = .sdata2:0x8051EE90; // type:object size:0x4 scope:local align:4 data:float +@4679 = .sdata2:0x8051EE94; // type:object size:0x4 scope:local align:4 data:float +@4825 = .sdata2:0x8051EE98; // type:object size:0x4 scope:local align:4 data:float +@4826 = .sdata2:0x8051EE9C; // type:object size:0x4 scope:local align:4 data:float +@5003 = .sdata2:0x8051EEA0; // type:object size:0x4 scope:local align:4 data:float +@5004 = .sdata2:0x8051EEA4; // type:object size:0x4 scope:local align:4 data:float +@5040 = .sdata2:0x8051EEA8; // type:object size:0x4 scope:local align:4 data:float +@5041 = .sdata2:0x8051EEAC; // type:object size:0x4 scope:local align:4 data:float +@5086 = .sdata2:0x8051EEB0; // type:object size:0x4 scope:local align:4 data:float +@5110 = .sdata2:0x8051EEB4; // type:object size:0x4 scope:local align:4 data:float +@5123 = .sdata2:0x8051EEB8; // type:object size:0x4 scope:local align:4 data:float +@5229 = .sdata2:0x8051EEBC; // type:object size:0x8 scope:local align:4 data:string +@3587 = .sdata2:0x8051EEC8; // type:object size:0x4 scope:local align:4 data:float +@3628 = .sdata2:0x8051EECC; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051EED0; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata2:0x8051EED4; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x8051EED8; // type:object size:0x4 scope:local align:4 data:float +@3632 = .sdata2:0x8051EEDC; // type:object size:0x4 scope:local align:4 data:float +@3633 = .sdata2:0x8051EEE0; // type:object size:0x4 scope:local align:4 data:float +@3634 = .sdata2:0x8051EEE4; // type:object size:0x4 scope:local align:4 data:float +@3635 = .sdata2:0x8051EEE8; // type:object size:0x4 scope:local align:4 data:float +@3637 = .sdata2:0x8051EEF0; // type:object size:0x8 scope:local align:8 data:double +@3791 = .sdata2:0x8051EEF8; // type:object size:0x4 scope:local align:4 data:float +@3792 = .sdata2:0x8051EEFC; // type:object size:0x4 scope:local align:4 data:float +@3793 = .sdata2:0x8051EF00; // type:object size:0x4 scope:local align:4 data:float +@3794 = .sdata2:0x8051EF04; // type:object size:0x4 scope:local align:4 data:float +@3795 = .sdata2:0x8051EF08; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x8051EF0C; // type:object size:0x4 scope:local align:4 data:float +@3797 = .sdata2:0x8051EF10; // type:object size:0x4 scope:local align:4 data:float +@3798 = .sdata2:0x8051EF14; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051EF18; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x8051EF1C; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x8051EF20; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051EF24; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x8051EF28; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8051EF2C; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x8051EF30; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051EF34; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051EF38; // type:object size:0x4 scope:local align:4 data:float +@4008 = .sdata2:0x8051EF40; // type:object size:0x8 scope:local align:8 data:double +@4123 = .sdata2:0x8051EF48; // type:object size:0x4 scope:local align:4 data:float +@4124 = .sdata2:0x8051EF4C; // type:object size:0x4 scope:local align:4 data:float +@4131 = .sdata2:0x8051EF50; // type:object size:0x4 scope:local align:4 data:float +@4227 = .sdata2:0x8051EF54; // type:object size:0x4 scope:local align:4 data:float +@4228 = .sdata2:0x8051EF58; // type:object size:0x4 scope:local align:4 data:float +@4229 = .sdata2:0x8051EF5C; // type:object size:0x4 scope:local align:4 data:float +@4230 = .sdata2:0x8051EF60; // type:object size:0x4 scope:local align:4 data:float +@4231 = .sdata2:0x8051EF64; // type:object size:0x4 scope:local align:4 data:float +@4314 = .sdata2:0x8051EF68; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x8051EF6C; // type:object size:0x4 scope:local align:4 data:float +@4643 = .sdata2:0x8051EF70; // type:object size:0x4 scope:local align:4 data:float +@4644 = .sdata2:0x8051EF74; // type:object size:0x4 scope:local align:4 data:float +@4645 = .sdata2:0x8051EF78; // type:object size:0x4 scope:local align:4 data:float +@4646 = .sdata2:0x8051EF7C; // type:object size:0x4 scope:local align:4 data:float +@4838 = .sdata2:0x8051EF80; // type:object size:0x4 scope:local align:4 data:float +@4870 = .sdata2:0x8051EF84; // type:object size:0x4 scope:local align:4 data:float +@4871 = .sdata2:0x8051EF88; // type:object size:0x4 scope:local align:4 data:float +@4872 = .sdata2:0x8051EF8C; // type:object size:0x4 scope:local align:4 data:float +@4873 = .sdata2:0x8051EF90; // type:object size:0x4 scope:local align:4 data:float +@5371 = .sdata2:0x8051EF94; // type:object size:0x4 scope:local align:4 data:float +@5926 = .sdata2:0x8051EF98; // type:object size:0x4 scope:local align:4 data:float +@5927 = .sdata2:0x8051EF9C; // type:object size:0x4 scope:local align:4 data:float +@5928 = .sdata2:0x8051EFA0; // type:object size:0x4 scope:local align:4 data:float +@5929 = .sdata2:0x8051EFA4; // type:object size:0x4 scope:local align:4 data:float +@5930 = .sdata2:0x8051EFA8; // type:object size:0x4 scope:local align:4 data:float +@5931 = .sdata2:0x8051EFAC; // type:object size:0x4 scope:local align:4 data:float +@5932 = .sdata2:0x8051EFB0; // type:object size:0x4 scope:local align:4 data:float +@6399 = .sdata2:0x8051EFB4; // type:object size:0x4 scope:local align:4 data:float +@6577 = .sdata2:0x8051EFB8; // type:object size:0x4 scope:local align:4 data:float +@3787 = .sdata2:0x8051EFC0; // type:object size:0x4 scope:local align:4 data:float +@3788 = .sdata2:0x8051EFC4; // type:object size:0x4 scope:local align:4 data:float +@3835 = .sdata2:0x8051EFC8; // type:object size:0x4 scope:local align:4 data:float +@3926 = .sdata2:0x8051EFCC; // type:object size:0x4 scope:local align:4 data:float +@3927 = .sdata2:0x8051EFD0; // type:object size:0x4 scope:local align:4 data:float +@3996 = .sdata2:0x8051EFD4; // type:object size:0x4 scope:local align:4 data:float +@3997 = .sdata2:0x8051EFD8; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051EFDC; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051EFE0; // type:object size:0x4 scope:local align:4 data:float +@4026 = .sdata2:0x8051EFE4; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x8051EFE8; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051EFEC; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051EFF0; // type:object size:0x4 scope:local align:4 data:float +@4113 = .sdata2:0x8051EFF4; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata2:0x8051EFF8; // type:object size:0x4 scope:local align:4 data:float +@4245 = .sdata2:0x8051EFFC; // type:object size:0x4 scope:local align:4 data:float +@4301 = .sdata2:0x8051F000; // type:object size:0x4 scope:local align:4 data:float +@4302 = .sdata2:0x8051F004; // type:object size:0x4 scope:local align:4 data:float +@4303 = .sdata2:0x8051F008; // type:object size:0x4 scope:local align:4 data:float +@4305 = .sdata2:0x8051F010; // type:object size:0x8 scope:local align:8 data:double +@4390 = .sdata2:0x8051F018; // type:object size:0x8 scope:local align:8 data:double +@4437 = .sdata2:0x8051F020; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x8051F024; // type:object size:0x4 scope:local align:4 data:float +@4444 = .sdata2:0x8051F028; // type:object size:0x8 scope:local align:8 data:double +@4583 = .sdata2:0x8051F030; // type:object size:0x4 scope:local align:4 data:float +@4584 = .sdata2:0x8051F034; // type:object size:0x4 scope:local align:4 data:float +@4585 = .sdata2:0x8051F038; // type:object size:0x4 scope:local align:4 data:float +@4586 = .sdata2:0x8051F03C; // type:object size:0x4 scope:local align:4 data:float +@4587 = .sdata2:0x8051F040; // type:object size:0x4 scope:local align:4 data:float +@4588 = .sdata2:0x8051F044; // type:object size:0x4 scope:local align:4 data:float +@4589 = .sdata2:0x8051F048; // type:object size:0x4 scope:local align:4 data:float +@4590 = .sdata2:0x8051F04C; // type:object size:0x4 scope:local align:4 data:float +@4591 = .sdata2:0x8051F050; // type:object size:0x4 scope:local align:4 data:float +@4592 = .sdata2:0x8051F054; // type:object size:0x4 scope:local align:4 data:float +@4593 = .sdata2:0x8051F058; // type:object size:0x4 scope:local align:4 data:float +@4594 = .sdata2:0x8051F05C; // type:object size:0x4 scope:local align:4 data:float +@4595 = .sdata2:0x8051F060; // type:object size:0x4 scope:local align:4 data:float +@5040 = .sdata2:0x8051F064; // type:object size:0x4 scope:local align:4 data:float +@5041 = .sdata2:0x8051F068; // type:object size:0x4 scope:local align:4 data:float +@5285 = .sdata2:0x8051F06C; // type:object size:0x4 scope:local align:4 data:float +@5286 = .sdata2:0x8051F070; // type:object size:0x4 scope:local align:4 data:float +@5790 = .sdata2:0x8051F074; // type:object size:0x4 scope:local align:4 data:float +@5791 = .sdata2:0x8051F078; // type:object size:0x4 scope:local align:4 data:float +@5792 = .sdata2:0x8051F07C; // type:object size:0x4 scope:local align:4 data:float +@5793 = .sdata2:0x8051F080; // type:object size:0x4 scope:local align:4 data:float +@5794 = .sdata2:0x8051F084; // type:object size:0x4 scope:local align:4 data:float +@5795 = .sdata2:0x8051F088; // type:object size:0x4 scope:local align:4 data:float +@5796 = .sdata2:0x8051F08C; // type:object size:0x4 scope:local align:4 data:float +@5797 = .sdata2:0x8051F090; // type:object size:0x4 scope:local align:4 data:float +@6479 = .sdata2:0x8051F094; // type:object size:0x4 scope:local align:4 data:float +@6480 = .sdata2:0x8051F098; // type:object size:0x4 scope:local align:4 data:float +@6481 = .sdata2:0x8051F09C; // type:object size:0x4 scope:local align:4 data:float +@6646 = .sdata2:0x8051F0A0; // type:object size:0x4 scope:local align:4 data:float +@6708 = .sdata2:0x8051F0A4; // type:object size:0x4 scope:local align:4 data:float +@6783 = .sdata2:0x8051F0A8; // type:object size:0x1 scope:local align:4 +@3586 = .sdata2:0x8051F0B0; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x8051F0B4; // type:object size:0x4 scope:local align:4 data:float +@3588 = .sdata2:0x8051F0B8; // type:object size:0x4 scope:local align:4 data:float +@3589 = .sdata2:0x8051F0BC; // type:object size:0x4 scope:local align:4 data:float +@3590 = .sdata2:0x8051F0C0; // type:object size:0x4 scope:local align:4 data:float +@3593 = .sdata2:0x8051F0C4; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051F0C8; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051F0CC; // type:object size:0x4 scope:local align:4 data:float +@3640 = .sdata2:0x8051F0D0; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051F0D8; // type:object size:0x8 scope:local align:8 data:double +@3725 = .sdata2:0x8051F0E0; // type:object size:0x4 scope:local align:4 data:float +@3726 = .sdata2:0x8051F0E4; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x8051F0E8; // type:object size:0x4 scope:local align:4 data:float +@3728 = .sdata2:0x8051F0EC; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x8051F0F0; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051F0F4; // type:object size:0x4 scope:local align:4 data:float +@3783 = .sdata2:0x8051F0F8; // type:object size:0x4 scope:local align:4 data:float +@3784 = .sdata2:0x8051F0FC; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051F100; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051F104; // type:object size:0x4 scope:local align:4 data:float +@3930 = .sdata2:0x8051F108; // type:object size:0x4 scope:local align:4 data:float +@3931 = .sdata2:0x8051F10C; // type:object size:0x4 scope:local align:4 data:float +@3932 = .sdata2:0x8051F110; // type:object size:0x4 scope:local align:4 data:float +@3933 = .sdata2:0x8051F114; // type:object size:0x4 scope:local align:4 data:float +@3934 = .sdata2:0x8051F118; // type:object size:0x4 scope:local align:4 data:float +@3935 = .sdata2:0x8051F11C; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051F120; // type:object size:0x4 scope:local align:4 data:float +@3937 = .sdata2:0x8051F124; // type:object size:0x4 scope:local align:4 data:float +@3986 = .sdata2:0x8051F128; // type:object size:0x4 scope:local align:4 data:float +@3987 = .sdata2:0x8051F12C; // type:object size:0x4 scope:local align:4 data:float +@3988 = .sdata2:0x8051F130; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x8051F134; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x8051F138; // type:object size:0x4 scope:local align:4 data:float +@4212 = .sdata2:0x8051F13C; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051F140; // type:object size:0x4 scope:local align:4 data:float +@4214 = .sdata2:0x8051F144; // type:object size:0x4 scope:local align:4 data:float +@4215 = .sdata2:0x8051F148; // type:object size:0x4 scope:local align:4 data:float +@4216 = .sdata2:0x8051F14C; // type:object size:0x4 scope:local align:4 data:float +@4217 = .sdata2:0x8051F150; // type:object size:0x4 scope:local align:4 data:float +@4218 = .sdata2:0x8051F154; // type:object size:0x4 scope:local align:4 data:float +@4219 = .sdata2:0x8051F158; // type:object size:0x4 scope:local align:4 data:float +@4220 = .sdata2:0x8051F15C; // type:object size:0x4 scope:local align:4 data:float +@4221 = .sdata2:0x8051F160; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata2:0x8051F168; // type:object size:0x8 scope:local align:8 data:double +@4935 = .sdata2:0x8051F170; // type:object size:0x4 scope:local align:4 data:float +@4948 = .sdata2:0x8051F174; // type:object size:0x4 scope:local align:4 data:float +@4949 = .sdata2:0x8051F178; // type:object size:0x4 scope:local align:4 data:float +@4951 = .sdata2:0x8051F17C; // type:object size:0x4 scope:local align:4 data:float +@4952 = .sdata2:0x8051F180; // type:object size:0x4 scope:local align:4 data:float +@5528 = .sdata2:0x8051F184; // type:object size:0x4 scope:local align:4 data:float +@5529 = .sdata2:0x8051F188; // type:object size:0x4 scope:local align:4 data:float +@5530 = .sdata2:0x8051F18C; // type:object size:0x4 scope:local align:4 data:float +@5531 = .sdata2:0x8051F190; // type:object size:0x4 scope:local align:4 data:float +@5532 = .sdata2:0x8051F194; // type:object size:0x4 scope:local align:4 data:float +@5533 = .sdata2:0x8051F198; // type:object size:0x4 scope:local align:4 data:float +@5534 = .sdata2:0x8051F19C; // type:object size:0x4 scope:local align:4 data:float +@5535 = .sdata2:0x8051F1A0; // type:object size:0x4 scope:local align:4 data:float +@5536 = .sdata2:0x8051F1A4; // type:object size:0x4 scope:local align:4 data:float +@5537 = .sdata2:0x8051F1A8; // type:object size:0x4 scope:local align:4 data:float +@5538 = .sdata2:0x8051F1AC; // type:object size:0x4 scope:local align:4 data:float +@5539 = .sdata2:0x8051F1B0; // type:object size:0x4 scope:local align:4 data:float +@5540 = .sdata2:0x8051F1B4; // type:object size:0x4 scope:local align:4 data:float +@5541 = .sdata2:0x8051F1B8; // type:object size:0x4 scope:local align:4 data:float +@5838 = .sdata2:0x8051F1BC; // type:object size:0x4 scope:local align:4 data:float +@5839 = .sdata2:0x8051F1C0; // type:object size:0x4 scope:local align:4 data:float +@5841 = .sdata2:0x8051F1C4; // type:object size:0x4 scope:local align:4 data:float +@5843 = .sdata2:0x8051F1C8; // type:object size:0x8 scope:local align:8 data:double +@5960 = .sdata2:0x8051F1D0; // type:object size:0x4 scope:local align:4 data:float +@6117 = .sdata2:0x8051F1D4; // type:object size:0x4 scope:local align:4 data:float +@6118 = .sdata2:0x8051F1D8; // type:object size:0x4 scope:local align:4 data:float +@6119 = .sdata2:0x8051F1DC; // type:object size:0x4 scope:local align:4 data:float +@6120 = .sdata2:0x8051F1E0; // type:object size:0x4 scope:local align:4 data:float +@6192 = .sdata2:0x8051F1E4; // type:object size:0x4 scope:local align:4 data:float +@6271 = .sdata2:0x8051F1E8; // type:object size:0x4 scope:local align:4 data:float +@6390 = .sdata2:0x8051F1EC; // type:object size:0x4 scope:local align:4 data:float +@6601 = .sdata2:0x8051F1F0; // type:object size:0x4 scope:local align:4 data:float +@6602 = .sdata2:0x8051F1F4; // type:object size:0x4 scope:local align:4 data:float +@6603 = .sdata2:0x8051F1F8; // type:object size:0x4 scope:local align:4 data:float +@3587 = .sdata2:0x8051F200; // type:object size:0x8 scope:local align:8 data:double +@3589 = .sdata2:0x8051F208; // type:object size:0x8 scope:local align:8 data:double +@3617 = .sdata2:0x8051F210; // type:object size:0x4 scope:local align:4 data:float +@3665 = .sdata2:0x8051F214; // type:object size:0x8 scope:local align:4 data:string +@3666 = .sdata2:0x8051F21C; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x8051F220; // type:object size:0x4 scope:local align:4 data:float +@3728 = .sdata2:0x8051F224; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x8051F228; // type:object size:0x4 scope:local align:4 data:float +@3730 = .sdata2:0x8051F22C; // type:object size:0x4 scope:local align:4 data:float +@3731 = .sdata2:0x8051F230; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x8051F234; // type:object size:0x4 scope:local align:4 data:float +@3606 = .sdata2:0x8051F238; // type:object size:0x4 scope:local align:4 data:float +@3607 = .sdata2:0x8051F23C; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x8051F240; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x8051F244; // type:object size:0x4 scope:local align:4 data:float +@3610 = .sdata2:0x8051F248; // type:object size:0x4 scope:local align:4 data:float +@3611 = .sdata2:0x8051F24C; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051F250; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x8051F254; // type:object size:0x4 scope:local align:4 data:float +@3647 = .sdata2:0x8051F258; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051F25C; // type:object size:0x4 scope:local align:4 data:float +@3737 = .sdata2:0x8051F260; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x8051F264; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x8051F268; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051F26C; // type:object size:0x4 scope:local align:4 data:float +@3863 = .sdata2:0x8051F270; // type:object size:0x4 scope:local align:4 data:float +@3864 = .sdata2:0x8051F274; // type:object size:0x4 scope:local align:4 data:float +@3865 = .sdata2:0x8051F278; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x8051F27C; // type:object size:0x4 scope:local align:4 data:float +@3920 = .sdata2:0x8051F280; // type:object size:0x4 scope:local align:4 data:float +@3921 = .sdata2:0x8051F284; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051F288; // type:object size:0x8 scope:local align:8 data:double +@4275 = .sdata2:0x8051F290; // type:object size:0x4 scope:local align:4 data:float +@4276 = .sdata2:0x8051F294; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051F298; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051F29C; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x8051F2A0; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051F2A4; // type:object size:0x4 scope:local align:4 data:float +@3615 = .sdata2:0x8051F2A8; // type:object size:0x4 scope:local align:4 data:float +@3620 = .sdata2:0x8051F2AC; // type:object size:0x4 scope:local align:4 data:float +@3969 = .sdata2:0x8051F2B0; // type:object size:0x5 scope:local align:4 data:string +@4014 = .sdata2:0x8051F2B8; // type:object size:0x4 scope:local align:4 data:float +@4029 = .sdata2:0x8051F2BC; // type:object size:0x5 scope:local align:4 data:string +@4063 = .sdata2:0x8051F2C4; // type:object size:0x7 scope:local align:4 data:string +@4076 = .sdata2:0x8051F2CC; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051F2D0; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051F2D4; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051F2D8; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051F2DC; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051F2E0; // type:object size:0x4 scope:local align:4 data:float +@4163 = .sdata2:0x8051F2E4; // type:object size:0x5 scope:local align:4 data:string +@4172 = .sdata2:0x8051F2EC; // type:object size:0x4 scope:local align:4 data:float +@4223 = .sdata2:0x8051F2F0; // type:object size:0x7 scope:local align:4 data:string +@4281 = .sdata2:0x8051F2F8; // type:object size:0x4 scope:local align:4 data:float +@4282 = .sdata2:0x8051F2FC; // type:object size:0x4 scope:local align:4 data:float +@4283 = .sdata2:0x8051F300; // type:object size:0x4 scope:local align:4 data:float +@4297 = .sdata2:0x8051F304; // type:object size:0x5 scope:local align:4 data:string +@4334 = .sdata2:0x8051F30C; // type:object size:0x4 scope:local align:4 data:float +@4342 = .sdata2:0x8051F310; // type:object size:0x8 scope:local align:4 data:string +@4395 = .sdata2:0x8051F318; // type:object size:0x6 scope:local align:4 data:string +@4457 = .sdata2:0x8051F320; // type:object size:0x6 scope:local align:4 data:string +@3809 = .sdata2:0x8051F328; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051F32C; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051F330; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051F334; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x8051F338; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051F33C; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051F340; // type:object size:0x4 scope:local align:4 data:float +@3816 = .sdata2:0x8051F344; // type:object size:0x4 scope:local align:4 data:float +@3817 = .sdata2:0x8051F348; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8051F34C; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x8051F350; // type:object size:0x4 scope:local align:4 data:float +@3820 = .sdata2:0x8051F354; // type:object size:0x4 scope:local align:4 data:float +@3821 = .sdata2:0x8051F358; // type:object size:0x4 scope:local align:4 data:float +@3841 = .sdata2:0x8051F35C; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x8051F360; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x8051F364; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051F368; // type:object size:0x4 scope:local align:4 data:float +@3848 = .sdata2:0x8051F36C; // type:object size:0x4 scope:local align:4 data:float +@3850 = .sdata2:0x8051F370; // type:object size:0x4 scope:local align:4 data:float +@3851 = .sdata2:0x8051F374; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x8051F378; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8051F37C; // type:object size:0x6 scope:local align:4 data:string +@4268 = .sdata2:0x8051F384; // type:object size:0x6 scope:local align:4 data:string +@4269 = .sdata2:0x8051F38C; // type:object size:0x6 scope:local align:4 data:string +@4270 = .sdata2:0x8051F394; // type:object size:0x7 scope:local align:4 data:string +@4271 = .sdata2:0x8051F39C; // type:object size:0x7 scope:local align:4 data:string +@4272 = .sdata2:0x8051F3A4; // type:object size:0x7 scope:local align:4 data:string +@4273 = .sdata2:0x8051F3AC; // type:object size:0x7 scope:local align:4 data:string +@4274 = .sdata2:0x8051F3B4; // type:object size:0x6 scope:local align:4 data:string +@4275 = .sdata2:0x8051F3BC; // type:object size:0x4 scope:local align:4 data:float +@4520 = .sdata2:0x8051F3C0; // type:object size:0x4 scope:local align:4 data:float +@4688 = .sdata2:0x8051F3C4; // type:object size:0x4 scope:local align:4 data:float +@4689 = .sdata2:0x8051F3C8; // type:object size:0x4 scope:local align:4 data:float +@4693 = .sdata2:0x8051F3CC; // type:object size:0x4 scope:local align:4 data:float +@4695 = .sdata2:0x8051F3D0; // type:object size:0x8 scope:local align:8 data:double +@4753 = .sdata2:0x8051F3D8; // type:object size:0x4 scope:local align:4 data:float +@4943 = .sdata2:0x8051F3DC; // type:object size:0x4 scope:local align:4 data:float +@4986 = .sdata2:0x8051F3E0; // type:object size:0x4 scope:local align:4 data:float +@5082 = .sdata2:0x8051F3E4; // type:object size:0x4 scope:local align:4 data:float +@5091 = .sdata2:0x8051F3E8; // type:object size:0x4 scope:local align:4 data:float +@5092 = .sdata2:0x8051F3EC; // type:object size:0x4 scope:local align:4 data:float +@5524 = .sdata2:0x8051F3F0; // type:object size:0x4 scope:local align:4 data:float +@5525 = .sdata2:0x8051F3F4; // type:object size:0x4 scope:local align:4 data:float +@5526 = .sdata2:0x8051F3F8; // type:object size:0x4 scope:local align:4 data:float +@5527 = .sdata2:0x8051F3FC; // type:object size:0x4 scope:local align:4 data:float +@5528 = .sdata2:0x8051F400; // type:object size:0x4 scope:local align:4 data:float +@5529 = .sdata2:0x8051F404; // type:object size:0x4 scope:local align:4 data:float +@5530 = .sdata2:0x8051F408; // type:object size:0x4 scope:local align:4 data:float +@5531 = .sdata2:0x8051F410; // type:object size:0x8 scope:local align:8 data:double +@5532 = .sdata2:0x8051F418; // type:object size:0x4 scope:local align:4 data:float +@5533 = .sdata2:0x8051F41C; // type:object size:0x4 scope:local align:4 data:float +@5534 = .sdata2:0x8051F420; // type:object size:0x4 scope:local align:4 data:float +@5536 = .sdata2:0x8051F428; // type:object size:0x8 scope:local align:8 data:double +@6205 = .sdata2:0x8051F430; // type:object size:0x4 scope:local align:4 data:float +@6206 = .sdata2:0x8051F434; // type:object size:0x4 scope:local align:4 data:float +@6207 = .sdata2:0x8051F438; // type:object size:0x4 scope:local align:4 data:float +@6208 = .sdata2:0x8051F43C; // type:object size:0x4 scope:local align:4 data:float +@6382 = .sdata2:0x8051F440; // type:object size:0x6 scope:local align:4 data:string +@6383 = .sdata2:0x8051F448; // type:object size:0x6 scope:local align:4 data:string +@6384 = .sdata2:0x8051F450; // type:object size:0x6 scope:local align:4 data:string +@6385 = .sdata2:0x8051F458; // type:object size:0x6 scope:local align:4 data:string +@6387 = .sdata2:0x8051F460; // type:object size:0x6 scope:local align:4 data:string +@6388 = .sdata2:0x8051F468; // type:object size:0x6 scope:local align:4 data:string +@6389 = .sdata2:0x8051F470; // type:object size:0x6 scope:local align:4 data:string +@6390 = .sdata2:0x8051F478; // type:object size:0x6 scope:local align:4 data:string +@6394 = .sdata2:0x8051F480; // type:object size:0x8 scope:local align:4 data:string +@6395 = .sdata2:0x8051F488; // type:object size:0x8 scope:local align:4 data:string +@6540 = .sdata2:0x8051F490; // type:object size:0x4 scope:local align:4 data:float +@6550 = .sdata2:0x8051F494; // type:object size:0x8 scope:local align:4 data:4byte +@6825 = .sdata2:0x8051F49C; // type:object size:0x4 scope:local align:4 data:float +@6902 = .sdata2:0x8051F4A0; // type:object size:0x5 scope:local align:4 data:string +@3828 = .sdata2:0x8051F4A8; // type:object size:0x5 scope:local align:4 data:string +@3859 = .sdata2:0x8051F4B0; // type:object size:0x4 scope:local align:4 data:float +@3860 = .sdata2:0x8051F4B4; // type:object size:0x4 scope:local align:4 data:float +@3861 = .sdata2:0x8051F4B8; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x8051F4BC; // type:object size:0x5 scope:local align:4 data:string +@3897 = .sdata2:0x8051F4C4; // type:object size:0x7 scope:local align:4 data:string +@3937 = .sdata2:0x8051F4CC; // type:object size:0x5 scope:local align:4 data:string +@3807 = .sdata2:0x8051F4D8; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051F4DC; // type:object size:0x4 scope:local align:4 data:float +@3809 = .sdata2:0x8051F4E0; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051F4E4; // type:object size:0x4 scope:local align:4 data:float +@3811 = .sdata2:0x8051F4E8; // type:object size:0x4 scope:local align:4 data:float +@3812 = .sdata2:0x8051F4EC; // type:object size:0x4 scope:local align:4 data:float +@3813 = .sdata2:0x8051F4F0; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x8051F4F8; // type:object size:0x4 scope:local align:4 data:float +@4178 = .sdata2:0x8051F4FC; // type:object size:0x4 scope:local align:4 data:float +@4257 = .sdata2:0x8051F500; // type:object size:0x4 scope:local align:4 data:float +@4280 = .sdata2:0x8051F504; // type:object size:0x4 scope:local align:4 data:float +@4281 = .sdata2:0x8051F508; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata2:0x8051F50C; // type:object size:0x4 scope:local align:4 data:float +@4420 = .sdata2:0x8051F510; // type:object size:0x4 scope:local align:4 data:float +@4422 = .sdata2:0x8051F518; // type:object size:0x8 scope:local align:8 data:double +@4464 = .sdata2:0x8051F520; // type:object size:0x4 scope:local align:4 data:float +@4465 = .sdata2:0x8051F524; // type:object size:0x4 scope:local align:4 data:float +@4466 = .sdata2:0x8051F528; // type:object size:0x4 scope:local align:4 data:float +@4555 = .sdata2:0x8051F52C; // type:object size:0x7 scope:local align:4 data:string +@4556 = .sdata2:0x8051F534; // type:object size:0x7 scope:local align:4 data:string +@4645 = .sdata2:0x8051F53C; // type:object size:0x4 scope:local align:4 data:float +@4646 = .sdata2:0x8051F540; // type:object size:0x4 scope:local align:4 data:float +@4647 = .sdata2:0x8051F544; // type:object size:0x4 scope:local align:4 data:float +@4648 = .sdata2:0x8051F548; // type:object size:0x4 scope:local align:4 data:float +@4959 = .sdata2:0x8051F54C; // type:object size:0x4 scope:local align:4 data:float +@3559 = .sdata2:0x8051F550; // type:object size:0x4 scope:local align:4 data:float +@3560 = .sdata2:0x8051F554; // type:object size:0x4 scope:local align:4 data:float +@3561 = .sdata2:0x8051F558; // type:object size:0x4 scope:local align:4 data:float +@3093 = .sdata2:0x8051F560; // type:object size:0x8 scope:local align:4 data:string +@3409 = .sdata2:0x8051F568; // type:object size:0x4 scope:local align:4 data:float +@3862 = .sdata2:0x8051F56C; // type:object size:0x8 scope:local align:4 data:string +@3863 = .sdata2:0x8051F574; // type:object size:0x4 scope:local align:4 data:float +@3989 = .sdata2:0x8051F578; // type:object size:0x4 scope:local align:4 data:float +@3990 = .sdata2:0x8051F57C; // type:object size:0x4 scope:local align:4 data:float +@3991 = .sdata2:0x8051F580; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051F584; // type:object size:0x4 scope:local align:4 data:float +@4090 = .sdata2:0x8051F588; // type:object size:0x4 scope:local align:4 data:float +@4179 = .sdata2:0x8051F58C; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata2:0x8051F590; // type:object size:0x4 scope:local align:4 data:float +@3110 = .sdata2:0x8051F594; // type:object size:0x8 scope:local align:4 data:string +@3335 = .sdata2:0x8051F59C; // type:object size:0x4 scope:local align:4 data:float +@3336 = .sdata2:0x8051F5A0; // type:object size:0x4 scope:local align:4 data:float +@3337 = .sdata2:0x8051F5A4; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata2:0x8051F5A8; // type:object size:0x8 scope:local align:4 data:string +@3097 = .sdata2:0x8051F5B0; // type:object size:0x4 scope:local align:4 data:float +@3121 = .sdata2:0x8051F5B4; // type:object size:0x8 scope:local align:4 data:string +@3178 = .sdata2:0x8051F5BC; // type:object size:0x4 scope:local align:4 data:float +@3263 = .sdata2:0x8051F5C0; // type:object size:0x4 scope:local align:4 data:float +@3285 = .sdata2:0x8051F5C4; // type:object size:0x4 scope:local align:4 data:float +@3286 = .sdata2:0x8051F5C8; // type:object size:0x4 scope:local align:4 data:float +@3287 = .sdata2:0x8051F5CC; // type:object size:0x4 scope:local align:4 data:float +@3288 = .sdata2:0x8051F5D0; // type:object size:0x4 scope:local align:4 data:float +@3290 = .sdata2:0x8051F5D8; // type:object size:0x8 scope:local align:8 data:double +@3358 = .sdata2:0x8051F5E0; // type:object size:0x4 scope:local align:4 data:float +@3359 = .sdata2:0x8051F5E4; // type:object size:0x4 scope:local align:4 data:float +@3360 = .sdata2:0x8051F5E8; // type:object size:0x4 scope:local align:4 data:float +@3448 = .sdata2:0x8051F5EC; // type:object size:0x4 scope:local align:4 data:float +@3555 = .sdata2:0x8051F5F0; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x8051F5F4; // type:object size:0x4 scope:local align:4 data:float +@3825 = .sdata2:0x8051F5F8; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x8051F600; // type:object size:0x4 scope:local align:4 data:float +@3765 = .sdata2:0x8051F604; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x8051F608; // type:object size:0x4 scope:local align:4 data:float +@3768 = .sdata2:0x8051F610; // type:object size:0x8 scope:local align:8 data:double +@2847 = .sdata2:0x8051F618; // type:object size:0x4 scope:local align:4 data:float +@2794 = .sdata2:0x8051F620; // type:object size:0x4 scope:local align:4 data:float +@3117 = .sdata2:0x8051F624; // type:object size:0x4 scope:local align:4 data:float +@3118 = .sdata2:0x8051F628; // type:object size:0x4 scope:local align:4 data:float +@3119 = .sdata2:0x8051F62C; // type:object size:0x4 scope:local align:4 data:float +@3667 = .sdata2:0x8051F630; // type:object size:0x4 scope:local align:4 data:float +@3668 = .sdata2:0x8051F634; // type:object size:0x4 scope:local align:4 data:float +@3461 = .sdata2:0x8051F638; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x8051F63C; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x8051F640; // type:object size:0x4 scope:local align:4 data:float +@3466 = .sdata2:0x8051F644; // type:object size:0x4 scope:local align:4 data:float +@3467 = .sdata2:0x8051F648; // type:object size:0x4 scope:local align:4 data:float +@3468 = .sdata2:0x8051F64C; // type:object size:0x4 scope:local align:4 data:float +@3469 = .sdata2:0x8051F650; // type:object size:0x5 scope:local align:4 data:string +@3470 = .sdata2:0x8051F658; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x8051F65C; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x8051F660; // type:object size:0x8 scope:local align:4 data:string +@3475 = .sdata2:0x8051F668; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x8051F66C; // type:object size:0x4 scope:local align:4 data:float +@3477 = .sdata2:0x8051F670; // type:object size:0x6 scope:local align:4 data:string +@3478 = .sdata2:0x8051F678; // type:object size:0x4 scope:local align:4 data:float +@3479 = .sdata2:0x8051F67C; // type:object size:0x4 scope:local align:4 data:float +@3480 = .sdata2:0x8051F680; // type:object size:0x6 scope:local align:4 +@3481 = .sdata2:0x8051F688; // type:object size:0x6 scope:local align:4 +@3482 = .sdata2:0x8051F690; // type:object size:0x6 scope:local align:4 +@3483 = .sdata2:0x8051F698; // type:object size:0x6 scope:local align:4 +@3507 = .sdata2:0x8051F6A0; // type:object size:0x4 scope:local align:4 data:float +@3508 = .sdata2:0x8051F6A4; // type:object size:0x4 scope:local align:4 data:float +@3510 = .sdata2:0x8051F6A8; // type:object size:0x4 scope:local align:4 data:float +@3512 = .sdata2:0x8051F6AC; // type:object size:0x4 scope:local align:4 data:float +@3514 = .sdata2:0x8051F6B0; // type:object size:0x4 scope:local align:4 data:float +@3516 = .sdata2:0x8051F6B4; // type:object size:0x4 scope:local align:4 data:float +@3517 = .sdata2:0x8051F6B8; // type:object size:0x4 scope:local align:4 data:float +@3519 = .sdata2:0x8051F6BC; // type:object size:0x4 scope:local align:4 data:float +@3520 = .sdata2:0x8051F6C0; // type:object size:0x4 scope:local align:4 data:float +@3522 = .sdata2:0x8051F6C4; // type:object size:0x4 scope:local align:4 data:float +@3523 = .sdata2:0x8051F6C8; // type:object size:0x4 scope:local align:4 data:float +@3525 = .sdata2:0x8051F6CC; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x8051F6D0; // type:object size:0x4 scope:local align:4 data:float +@3529 = .sdata2:0x8051F6D4; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x8051F6D8; // type:object size:0x4 scope:local align:4 data:float +@3532 = .sdata2:0x8051F6DC; // type:object size:0x4 scope:local align:4 data:float +@3535 = .sdata2:0x8051F6E0; // type:object size:0x4 scope:local align:4 data:float +@3539 = .sdata2:0x8051F6E4; // type:object size:0x4 scope:local align:4 data:float +@3541 = .sdata2:0x8051F6E8; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x8051F6EC; // type:object size:0x6 scope:local align:4 +@3600 = .sdata2:0x8051F6F4; // type:object size:0x6 scope:local align:4 +@3601 = .sdata2:0x8051F6FC; // type:object size:0x6 scope:local align:4 +@3602 = .sdata2:0x8051F704; // type:object size:0x5 scope:local align:4 +@3603 = .sdata2:0x8051F70C; // type:object size:0x4 scope:local align:4 data:float +@3604 = .sdata2:0x8051F710; // type:object size:0x4 scope:local align:4 data:float +@3623 = .sdata2:0x8051F714; // type:object size:0x6 scope:local align:4 +@3624 = .sdata2:0x8051F71C; // type:object size:0x4 scope:local align:4 data:float +@3625 = .sdata2:0x8051F720; // type:object size:0x6 scope:local align:4 +@3626 = .sdata2:0x8051F728; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x8051F72C; // type:object size:0x6 scope:local align:4 +@3631 = .sdata2:0x8051F734; // type:object size:0x4 scope:local align:4 data:float +@3846 = .sdata2:0x8051F738; // type:object size:0x8 scope:local align:8 data:double +@3911 = .sdata2:0x8051F740; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x8051F744; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x8051F748; // type:object size:0x4 scope:local align:4 data:float +@3914 = .sdata2:0x8051F74C; // type:object size:0x4 scope:local align:4 data:float +@3915 = .sdata2:0x8051F750; // type:object size:0x4 scope:local align:4 data:float +@3917 = .sdata2:0x8051F758; // type:object size:0x8 scope:local align:8 data:double +@4033 = .sdata2:0x8051F760; // type:object size:0x1 scope:local align:4 +@4434 = .sdata2:0x8051F764; // type:object size:0x4 scope:local align:4 data:float +@4892 = .sdata2:0x8051F768; // type:object size:0x4 scope:local align:4 data:float +@4893 = .sdata2:0x8051F76C; // type:object size:0x4 scope:local align:4 data:float +@4894 = .sdata2:0x8051F770; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata2:0x8051F778; // type:object size:0x4 scope:local align:4 data:float +@3367 = .sdata2:0x8051F77C; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x8051F780; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x8051F784; // type:object size:0x4 scope:local align:4 data:float +@3594 = .sdata2:0x8051F788; // type:object size:0x4 scope:local align:4 data:float +@3595 = .sdata2:0x8051F78C; // type:object size:0x4 scope:local align:4 data:float +@3596 = .sdata2:0x8051F790; // type:object size:0x4 scope:local align:4 data:float +@3598 = .sdata2:0x8051F798; // type:object size:0x8 scope:local align:8 data:double +@3756 = .sdata2:0x8051F7A0; // type:object size:0x8 scope:local align:4 data:string +@3757 = .sdata2:0x8051F7A8; // type:object size:0x8 scope:local align:4 data:string +@3758 = .sdata2:0x8051F7B0; // type:object size:0x8 scope:local align:4 data:string +@3868 = .sdata2:0x8051F7B8; // type:object size:0x8 scope:local align:8 data:double +@2810 = .sdata2:0x8051F7C0; // type:object size:0x4 scope:local align:4 data:float +@2811 = .sdata2:0x8051F7C4; // type:object size:0x4 scope:local align:4 data:float +@2817 = .sdata2:0x8051F7C8; // type:object size:0x8 scope:local align:8 data:double +@3086 = .sdata2:0x8051F7D0; // type:object size:0x4 scope:local align:4 data:float +@3087 = .sdata2:0x8051F7D4; // type:object size:0x4 scope:local align:4 data:float +@3088 = .sdata2:0x8051F7D8; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x8051F7E0; // type:object size:0x4 scope:local align:4 data:float +@3488 = .sdata2:0x8051F7E4; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x8051F7E8; // type:object size:0x4 scope:local align:4 data:float +@4362 = .sdata2:0x8051F7EC; // type:object size:0x4 scope:local align:4 data:float +@4363 = .sdata2:0x8051F7F0; // type:object size:0x4 scope:local align:4 data:float +@4580 = .sdata2:0x8051F7F4; // type:object size:0x4 scope:local align:4 data:float +@4864 = .sdata2:0x8051F7F8; // type:object size:0x4 scope:local align:4 data:float +@4865 = .sdata2:0x8051F7FC; // type:object size:0x4 scope:local align:4 data:float +@4866 = .sdata2:0x8051F800; // type:object size:0x4 scope:local align:4 data:float +@4867 = .sdata2:0x8051F804; // type:object size:0x4 scope:local align:4 data:float +@4869 = .sdata2:0x8051F808; // type:object size:0x8 scope:local align:8 data:double +@2994 = .sdata2:0x8051F810; // type:object size:0x4 scope:local align:4 data:float +@2995 = .sdata2:0x8051F814; // type:object size:0x4 scope:local align:4 data:float +@2996 = .sdata2:0x8051F818; // type:object size:0x4 scope:local align:4 data:float +@2997 = .sdata2:0x8051F81C; // type:object size:0x4 scope:local align:4 data:float +@2998 = .sdata2:0x8051F820; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x8051F824; // type:object size:0x4 scope:local align:4 data:float +@3000 = .sdata2:0x8051F828; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x8051F82C; // type:object size:0x4 scope:local align:4 data:float +@3002 = .sdata2:0x8051F830; // type:object size:0x4 scope:local align:4 data:float +@3003 = .sdata2:0x8051F834; // type:object size:0x4 scope:local align:4 data:float +@3004 = .sdata2:0x8051F838; // type:object size:0x4 scope:local align:4 data:float +@3005 = .sdata2:0x8051F83C; // type:object size:0x4 scope:local align:4 data:float +@3006 = .sdata2:0x8051F840; // type:object size:0x4 scope:local align:4 data:float +@3007 = .sdata2:0x8051F844; // type:object size:0x4 scope:local align:4 data:float +@3008 = .sdata2:0x8051F848; // type:object size:0x4 scope:local align:4 data:float +@3009 = .sdata2:0x8051F84C; // type:object size:0x4 scope:local align:4 data:float +@3010 = .sdata2:0x8051F850; // type:object size:0x4 scope:local align:4 data:float +@3011 = .sdata2:0x8051F854; // type:object size:0x4 scope:local align:4 data:float +@3012 = .sdata2:0x8051F858; // type:object size:0x4 scope:local align:4 data:float +@3013 = .sdata2:0x8051F85C; // type:object size:0x4 scope:local align:4 data:float +@3014 = .sdata2:0x8051F860; // type:object size:0x4 scope:local align:4 data:float +@3015 = .sdata2:0x8051F864; // type:object size:0x4 scope:local align:4 data:float +@3016 = .sdata2:0x8051F868; // type:object size:0x4 scope:local align:4 data:float +@3017 = .sdata2:0x8051F86C; // type:object size:0x4 scope:local align:4 data:float +@3018 = .sdata2:0x8051F870; // type:object size:0x4 scope:local align:4 data:float +@3019 = .sdata2:0x8051F874; // type:object size:0x4 scope:local align:4 data:float +@3020 = .sdata2:0x8051F878; // type:object size:0x4 scope:local align:4 data:float +@3021 = .sdata2:0x8051F87C; // type:object size:0x4 scope:local align:4 data:float +@3347 = .sdata2:0x8051F880; // type:object size:0x4 scope:local align:4 data:float +@3348 = .sdata2:0x8051F884; // type:object size:0x4 scope:local align:4 data:float +@3349 = .sdata2:0x8051F888; // type:object size:0x4 scope:local align:4 data:float +@3350 = .sdata2:0x8051F88C; // type:object size:0x4 scope:local align:4 data:float +@3351 = .sdata2:0x8051F890; // type:object size:0x4 scope:local align:4 data:float +@3352 = .sdata2:0x8051F894; // type:object size:0x4 scope:local align:4 data:float +@3353 = .sdata2:0x8051F898; // type:object size:0x4 scope:local align:4 data:float +@3354 = .sdata2:0x8051F89C; // type:object size:0x4 scope:local align:4 data:float +@3355 = .sdata2:0x8051F8A0; // type:object size:0x4 scope:local align:4 data:float +@3356 = .sdata2:0x8051F8A4; // type:object size:0x4 scope:local align:4 data:float +@3357 = .sdata2:0x8051F8A8; // type:object size:0x4 scope:local align:4 data:float +@3683 = .sdata2:0x8051F8AC; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051F8B0; // type:object size:0x4 scope:local align:4 data:float +@3685 = .sdata2:0x8051F8B4; // type:object size:0x4 scope:local align:4 data:float +@3686 = .sdata2:0x8051F8B8; // type:object size:0x4 scope:local align:4 data:float +@3687 = .sdata2:0x8051F8BC; // type:object size:0x4 scope:local align:4 data:float +@4021 = .sdata2:0x8051F8C0; // type:object size:0x4 scope:local align:4 data:float +@4022 = .sdata2:0x8051F8C4; // type:object size:0x4 scope:local align:4 data:float +@4023 = .sdata2:0x8051F8C8; // type:object size:0x8 scope:local align:8 data:double +@4136 = .sdata2:0x8051F8D0; // type:object size:0x4 scope:local align:4 data:float +@4137 = .sdata2:0x8051F8D4; // type:object size:0x4 scope:local align:4 data:float +@4138 = .sdata2:0x8051F8D8; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x8051F8DC; // type:object size:0x4 scope:local align:4 data:float +@4140 = .sdata2:0x8051F8E0; // type:object size:0x4 scope:local align:4 data:float +@4141 = .sdata2:0x8051F8E4; // type:object size:0x4 scope:local align:4 data:float +@4142 = .sdata2:0x8051F8E8; // type:object size:0x4 scope:local align:4 data:float +@4143 = .sdata2:0x8051F8EC; // type:object size:0x4 scope:local align:4 data:float +@4144 = .sdata2:0x8051F8F0; // type:object size:0x4 scope:local align:4 data:float +@4145 = .sdata2:0x8051F8F4; // type:object size:0x4 scope:local align:4 data:float +@4146 = .sdata2:0x8051F8F8; // type:object size:0x4 scope:local align:4 data:float +@4147 = .sdata2:0x8051F8FC; // type:object size:0x4 scope:local align:4 data:float +@4148 = .sdata2:0x8051F900; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051F904; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x8051F908; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051F90C; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051F910; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051F914; // type:object size:0x4 scope:local align:4 data:float +@2676 = .sdata2:0x8051F918; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x8051F91C; // type:object size:0x4 scope:local align:4 data:float +@2678 = .sdata2:0x8051F920; // type:object size:0x4 scope:local align:4 data:float +@2679 = .sdata2:0x8051F924; // type:object size:0x4 scope:local align:4 data:float +@2681 = .sdata2:0x8051F928; // type:object size:0x8 scope:local align:8 data:double +@2769 = .sdata2:0x8051F930; // type:object size:0x4 scope:local align:4 data:float +@2837 = .sdata2:0x8051F934; // type:object size:0x4 scope:local align:4 data:float +kFadeTime__Q23ebi8E2DFader = .sdata2:0x8051F938; // type:object size:0x4 scope:global align:4 data:float +@3562 = .sdata2:0x8051F93C; // type:object size:0x4 scope:local align:4 data:float +@3699 = .sdata2:0x8051F940; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051F944; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051F948; // type:object size:0x8 scope:local align:8 data:double +@3722 = .sdata2:0x8051F950; // type:object size:0x8 scope:local align:8 data:double +@3823 = .sdata2:0x8051F958; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x8051F95C; // type:object size:0x4 scope:local align:4 data:float +@3909 = .sdata2:0x8051F960; // type:object size:0x4 scope:local align:4 data:float +@3910 = .sdata2:0x8051F964; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x8051F968; // type:object size:0x4 scope:local align:4 data:float +@4170 = .sdata2:0x8051F96C; // type:object size:0x4 scope:local align:4 data:float +@4171 = .sdata2:0x8051F970; // type:object size:0x4 scope:local align:4 data:float +@4172 = .sdata2:0x8051F974; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x8051F978; // type:object size:0x4 scope:local align:4 data:float +@4174 = .sdata2:0x8051F97C; // type:object size:0x4 scope:local align:4 data:float +@4175 = .sdata2:0x8051F980; // type:object size:0x4 scope:local align:4 data:float +@4274 = .sdata2:0x8051F984; // type:object size:0x4 scope:local align:4 data:float +@4275 = .sdata2:0x8051F988; // type:object size:0x4 scope:local align:4 data:float +@4744 = .sdata2:0x8051F98C; // type:object size:0x8 scope:local align:4 data:string +@3813 = .sdata2:0x8051F998; // type:object size:0x4 scope:local align:4 data:float +@3814 = .sdata2:0x8051F99C; // type:object size:0x4 scope:local align:4 data:float +@3815 = .sdata2:0x8051F9A0; // type:object size:0x4 scope:local align:4 data:float +@4035 = .sdata2:0x8051F9A4; // type:object size:0x4 scope:local align:4 data:float +@4036 = .sdata2:0x8051F9A8; // type:object size:0x4 scope:local align:4 data:float +@4037 = .sdata2:0x8051F9AC; // type:object size:0x4 scope:local align:4 data:float +@4039 = .sdata2:0x8051F9B0; // type:object size:0x8 scope:local align:8 data:double +@3907 = .sdata2:0x8051F9B8; // type:object size:0x8 scope:local align:4 data:string +@3912 = .sdata2:0x8051F9C0; // type:object size:0x8 scope:local align:4 data:string +@3998 = .sdata2:0x8051F9C8; // type:object size:0x4 scope:local align:4 data:float +@4288 = .sdata2:0x8051F9CC; // type:object size:0x4 scope:local align:4 data:float +@4289 = .sdata2:0x8051F9D0; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x8051F9D8; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x8051F9DC; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x8051F9E0; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051F9E8; // type:object size:0x8 scope:local align:8 data:double +@3763 = .sdata2:0x8051F9F0; // type:object size:0x8 scope:local align:8 data:double +@3877 = .sdata2:0x8051F9F8; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x8051F9FC; // type:object size:0x4 scope:local align:4 data:float +@4057 = .sdata2:0x8051FA00; // type:object size:0x8 scope:local align:4 data:string +@4105 = .sdata2:0x8051FA08; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x8051FA0C; // type:object size:0x4 scope:local align:4 data:float +@4576 = .sdata2:0x8051FA10; // type:object size:0x4 scope:local align:4 data:float +@4577 = .sdata2:0x8051FA14; // type:object size:0x4 scope:local align:4 data:float +@4578 = .sdata2:0x8051FA18; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051FA20; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x8051FA24; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051FA28; // type:object size:0x4 scope:local align:4 data:float +@3754 = .sdata2:0x8051FA30; // type:object size:0x8 scope:local align:8 data:double +@3798 = .sdata2:0x8051FA38; // type:object size:0x4 scope:local align:4 data:float +@3799 = .sdata2:0x8051FA3C; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x8051FA40; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x8051FA44; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x8051FA48; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x8051FA50; // type:object size:0x8 scope:local align:8 data:double +@3809 = .sdata2:0x8051FA58; // type:object size:0x4 scope:local align:4 data:float +@3810 = .sdata2:0x8051FA5C; // type:object size:0x4 scope:local align:4 data:float +@4233 = .sdata2:0x8051FA60; // type:object size:0x4 scope:local align:4 data:float +@4234 = .sdata2:0x8051FA64; // type:object size:0x4 scope:local align:4 data:float +@4235 = .sdata2:0x8051FA68; // type:object size:0x4 scope:local align:4 data:float +@4603 = .sdata2:0x8051FA6C; // type:object size:0x4 scope:local align:4 data:float +@4604 = .sdata2:0x8051FA70; // type:object size:0x4 scope:local align:4 data:float +@4605 = .sdata2:0x8051FA74; // type:object size:0x4 scope:local align:4 data:float +@4606 = .sdata2:0x8051FA78; // type:object size:0x4 scope:local align:4 data:float +@4749 = .sdata2:0x8051FA7C; // type:object size:0x4 scope:local align:4 data:float +@4750 = .sdata2:0x8051FA80; // type:object size:0x4 scope:local align:4 data:float +@4752 = .sdata2:0x8051FA88; // type:object size:0x8 scope:local align:8 data:double +@5299 = .sdata2:0x8051FA90; // type:object size:0x4 scope:local align:4 data:float +@5358 = .sdata2:0x8051FA94; // type:object size:0x4 scope:local align:4 data:float +@5359 = .sdata2:0x8051FA98; // type:object size:0x4 scope:local align:4 data:float +@5360 = .sdata2:0x8051FA9C; // type:object size:0x4 scope:local align:4 data:float +@5646 = .sdata2:0x8051FAA0; // type:object size:0x4 scope:local align:4 data:float +@5695 = .sdata2:0x8051FAA4; // type:object size:0x4 scope:local align:4 data:float +@3757 = .sdata2:0x8051FAA8; // type:object size:0x4 scope:local align:4 data:float +@3758 = .sdata2:0x8051FAAC; // type:object size:0x4 scope:local align:4 data:float +@3759 = .sdata2:0x8051FAB0; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x8051FAB4; // type:object size:0x4 scope:local align:4 data:float +@3828 = .sdata2:0x8051FAB8; // type:object size:0x4 scope:local align:4 data:float +@3829 = .sdata2:0x8051FABC; // type:object size:0x4 scope:local align:4 data:float +@3936 = .sdata2:0x8051FAC0; // type:object size:0x4 scope:local align:4 data:float +@3938 = .sdata2:0x8051FAC8; // type:object size:0x8 scope:local align:8 data:double +@3954 = .sdata2:0x8051FAD0; // type:object size:0x4 scope:local align:4 data:float +@3955 = .sdata2:0x8051FAD4; // type:object size:0x4 scope:local align:4 data:float +@3957 = .sdata2:0x8051FAD8; // type:object size:0x8 scope:local align:8 data:double +@3817 = .sdata2:0x8051FAE0; // type:object size:0x8 scope:local align:4 data:string +@3823 = .sdata2:0x8051FAE8; // type:object size:0x8 scope:local align:4 data:string +@4056 = .sdata2:0x8051FAF0; // type:object size:0x4 scope:local align:4 data:float +@4181 = .sdata2:0x8051FAF4; // type:object size:0x4 scope:local align:4 data:float +@4183 = .sdata2:0x8051FAF8; // type:object size:0x8 scope:local align:8 data:double +@4496 = .sdata2:0x8051FB00; // type:object size:0x4 scope:local align:4 data:float +@4497 = .sdata2:0x8051FB04; // type:object size:0x4 scope:local align:4 data:float +@3709 = .sdata2:0x8051FB08; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x8051FB0C; // type:object size:0x4 scope:local align:4 data:float +@3752 = .sdata2:0x8051FB10; // type:object size:0x4 scope:local align:4 data:float +@3753 = .sdata2:0x8051FB14; // type:object size:0x4 scope:local align:4 data:float +@3831 = .sdata2:0x8051FB18; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x8051FB20; // type:object size:0x8 scope:local align:8 data:double +@4004 = .sdata2:0x8051FB28; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x8051FB2C; // type:object size:0x4 scope:local align:4 data:float +@4007 = .sdata2:0x8051FB30; // type:object size:0x4 scope:local align:4 data:float +@4098 = .sdata2:0x8051FB34; // type:object size:0x4 scope:local align:4 data:float +@3908 = .sdata2:0x8051FB38; // type:object size:0x8 scope:local align:4 data:string +@3921 = .sdata2:0x8051FB40; // type:object size:0x8 scope:local align:4 data:string +@4013 = .sdata2:0x8051FB48; // type:object size:0x4 scope:local align:4 data:float +@4014 = .sdata2:0x8051FB4C; // type:object size:0x4 scope:local align:4 data:float +@4050 = .sdata2:0x8051FB50; // type:object size:0x4 scope:local align:4 data:float +@4765 = .sdata2:0x8051FB54; // type:object size:0x4 scope:local align:4 data:float +@3779 = .sdata2:0x8051FB58; // type:object size:0x8 scope:local align:4 data:string +@2683 = .sdata2:0x8051FB60; // type:object size:0x8 scope:local align:4 data:string +@2684 = .sdata2:0x8051FB68; // type:object size:0x4 scope:local align:4 data:float +@2685 = .sdata2:0x8051FB6C; // type:object size:0x4 scope:local align:4 data:float +@2686 = .sdata2:0x8051FB70; // type:object size:0x4 scope:local align:4 data:float +@2687 = .sdata2:0x8051FB74; // type:object size:0x8 scope:local align:4 data:string +@2688 = .sdata2:0x8051FB7C; // type:object size:0x4 scope:local align:4 data:float +@2689 = .sdata2:0x8051FB80; // type:object size:0x6 scope:local align:4 +@2690 = .sdata2:0x8051FB88; // type:object size:0x4 scope:local align:4 data:float +@2691 = .sdata2:0x8051FB8C; // type:object size:0x4 scope:local align:4 data:float +@2692 = .sdata2:0x8051FB90; // type:object size:0x4 scope:local align:4 data:float +@2693 = .sdata2:0x8051FB94; // type:object size:0x6 scope:local align:4 +@3349 = .sdata2:0x8051FBA0; // type:object size:0x4 scope:local align:4 data:float +@3364 = .sdata2:0x8051FBA4; // type:object size:0x4 scope:local align:4 data:float +@3365 = .sdata2:0x8051FBA8; // type:object size:0x4 scope:local align:4 data:float +@3367 = .sdata2:0x8051FBAC; // type:object size:0x4 scope:local align:4 data:float +@3369 = .sdata2:0x8051FBB0; // type:object size:0x4 scope:local align:4 data:float +@3371 = .sdata2:0x8051FBB4; // type:object size:0x4 scope:local align:4 data:float +@3372 = .sdata2:0x8051FBB8; // type:object size:0x4 scope:local align:4 data:float +@3374 = .sdata2:0x8051FBBC; // type:object size:0x4 scope:local align:4 data:float +@3375 = .sdata2:0x8051FBC0; // type:object size:0x4 scope:local align:4 data:float +@3377 = .sdata2:0x8051FBC4; // type:object size:0x4 scope:local align:4 data:float +@3379 = .sdata2:0x8051FBC8; // type:object size:0x4 scope:local align:4 data:float +@3380 = .sdata2:0x8051FBCC; // type:object size:0x4 scope:local align:4 data:float +@3382 = .sdata2:0x8051FBD0; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x8051FBD8; // type:object size:0x8 scope:local align:8 data:double +@3611 = .sdata2:0x8051FBE0; // type:object size:0x4 scope:local align:4 data:float +@3638 = .sdata2:0x8051FBE4; // type:object size:0x6 scope:local align:4 data:string +@3640 = .sdata2:0x8051FBEC; // type:object size:0x4 scope:local align:4 data:float +@3642 = .sdata2:0x8051FBF0; // type:object size:0x4 scope:local align:4 data:float +@3644 = .sdata2:0x8051FBF4; // type:object size:0x4 scope:local align:4 data:float +@3646 = .sdata2:0x8051FBF8; // type:object size:0x4 scope:local align:4 data:float +@3648 = .sdata2:0x8051FBFC; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x8051FC00; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x8051FC04; // type:object size:0x4 scope:local align:4 data:float +@3659 = .sdata2:0x8051FC08; // type:object size:0x4 scope:local align:4 data:float +@3661 = .sdata2:0x8051FC0C; // type:object size:0x4 scope:local align:4 data:float +@3663 = .sdata2:0x8051FC10; // type:object size:0x4 scope:local align:4 data:float +@4285 = .sdata2:0x8051FC18; // type:object size:0x8 scope:local align:8 data:double +@4418 = .sdata2:0x8051FC20; // type:object size:0x4 scope:local align:4 data:float +@4419 = .sdata2:0x8051FC24; // type:object size:0x4 scope:local align:4 data:float +@4420 = .sdata2:0x8051FC28; // type:object size:0x4 scope:local align:4 data:float +@4561 = .sdata2:0x8051FC2C; // type:object size:0x4 scope:local align:4 data:float +@5335 = .sdata2:0x8051FC30; // type:object size:0x4 scope:local align:4 data:float +@5336 = .sdata2:0x8051FC34; // type:object size:0x4 scope:local align:4 data:float +@5337 = .sdata2:0x8051FC38; // type:object size:0x8 scope:local align:4 data:string +@3375 = .sdata2:0x8051FC40; // type:object size:0x4 scope:local align:4 data:float +@3376 = .sdata2:0x8051FC44; // type:object size:0x4 scope:local align:4 data:float +@3377 = .sdata2:0x8051FC48; // type:object size:0x4 scope:local align:4 data:float +@3396 = .sdata2:0x8051FC4C; // type:object size:0x6 scope:local align:4 data:string +@3398 = .sdata2:0x8051FC54; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x8051FC58; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051FC5C; // type:object size:0x4 scope:local align:4 data:float +@3402 = .sdata2:0x8051FC60; // type:object size:0x4 scope:local align:4 data:float +@3405 = .sdata2:0x8051FC64; // type:object size:0x4 scope:local align:4 data:float +@3407 = .sdata2:0x8051FC68; // type:object size:0x4 scope:local align:4 data:float +@3408 = .sdata2:0x8051FC6C; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8051FC70; // type:object size:0x4 scope:local align:4 data:float +@3412 = .sdata2:0x8051FC74; // type:object size:0x4 scope:local align:4 data:float +@3415 = .sdata2:0x8051FC78; // type:object size:0x4 scope:local align:4 data:float +@3417 = .sdata2:0x8051FC7C; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x8051FC80; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x8051FC84; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x8051FC88; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x8051FC8C; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x8051FC90; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051FC94; // type:object size:0x4 scope:local align:4 data:float +@3723 = .sdata2:0x8051FC98; // type:object size:0x8 scope:local align:8 data:double +@4058 = .sdata2:0x8051FCA0; // type:object size:0x4 scope:local align:4 data:float +@4059 = .sdata2:0x8051FCA4; // type:object size:0x4 scope:local align:4 data:float +@3375 = .sdata2:0x8051FCA8; // type:object size:0x4 scope:local align:4 data:float +@3376 = .sdata2:0x8051FCAC; // type:object size:0x4 scope:local align:4 data:float +@3377 = .sdata2:0x8051FCB0; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x8051FCB4; // type:object size:0x6 scope:local align:4 data:string +@3400 = .sdata2:0x8051FCBC; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x8051FCC0; // type:object size:0x4 scope:local align:4 data:float +@3403 = .sdata2:0x8051FCC4; // type:object size:0x4 scope:local align:4 data:float +@3404 = .sdata2:0x8051FCC8; // type:object size:0x4 scope:local align:4 data:float +@3406 = .sdata2:0x8051FCCC; // type:object size:0x4 scope:local align:4 data:float +@3408 = .sdata2:0x8051FCD0; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8051FCD4; // type:object size:0x4 scope:local align:4 data:float +@3413 = .sdata2:0x8051FCD8; // type:object size:0x4 scope:local align:4 data:float +@3414 = .sdata2:0x8051FCDC; // type:object size:0x4 scope:local align:4 data:float +@3416 = .sdata2:0x8051FCE0; // type:object size:0x4 scope:local align:4 data:float +@3418 = .sdata2:0x8051FCE4; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x8051FCE8; // type:object size:0x4 scope:local align:4 data:float +@3423 = .sdata2:0x8051FCEC; // type:object size:0x4 scope:local align:4 data:float +@3425 = .sdata2:0x8051FCF0; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x8051FCF4; // type:object size:0x4 scope:local align:4 data:float +@3428 = .sdata2:0x8051FCF8; // type:object size:0x4 scope:local align:4 data:float +@3445 = .sdata2:0x8051FCFC; // type:object size:0x4 scope:local align:4 data:float +@3447 = .sdata2:0x8051FD00; // type:object size:0x4 scope:local align:4 data:float +@3742 = .sdata2:0x8051FD04; // type:object size:0x4 scope:local align:4 data:float +@3743 = .sdata2:0x8051FD08; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x8051FD0C; // type:object size:0x4 scope:local align:4 data:float +@3745 = .sdata2:0x8051FD10; // type:object size:0x4 scope:local align:4 data:float +@3746 = .sdata2:0x8051FD14; // type:object size:0x4 scope:local align:4 data:float +@3749 = .sdata2:0x8051FD18; // type:object size:0x8 scope:local align:8 data:double +@3766 = .sdata2:0x8051FD20; // type:object size:0x4 scope:local align:4 data:float +@4151 = .sdata2:0x8051FD24; // type:object size:0x4 scope:local align:4 data:float +@4152 = .sdata2:0x8051FD28; // type:object size:0x4 scope:local align:4 data:float +@4153 = .sdata2:0x8051FD2C; // type:object size:0x4 scope:local align:4 data:float +@4154 = .sdata2:0x8051FD30; // type:object size:0x4 scope:local align:4 data:float +@3684 = .sdata2:0x8051FD38; // type:object size:0x4 scope:local align:4 data:float +@3700 = .sdata2:0x8051FD3C; // type:object size:0x4 scope:local align:4 data:float +@3701 = .sdata2:0x8051FD40; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8051FD44; // type:object size:0x4 scope:local align:4 data:float +@3704 = .sdata2:0x8051FD48; // type:object size:0x8 scope:local align:8 data:double +kFadeOutTime__Q23ebi13TMainTitleMgr = .sdata2:0x8051FD50; // type:object size:0x4 scope:global align:4 data:float +@4043 = .sdata2:0x8051FD54; // type:object size:0x4 scope:local align:4 data:float +@4075 = .sdata2:0x8051FD58; // type:object size:0x4 scope:local align:4 data:float +@4210 = .sdata2:0x8051FD5C; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata2:0x8051FD60; // type:object size:0x8 scope:local align:8 data:double +@4273 = .sdata2:0x8051FD68; // type:object size:0x8 scope:local align:4 data:string +@3054 = .sdata2:0x8051FD70; // type:object size:0x4 scope:local align:4 data:float +@3027 = .sdata2:0x8051FD78; // type:object size:0x7 scope:local align:4 data:string +@3029 = .sdata2:0x8051FD80; // type:object size:0x4 scope:local align:4 data:float +@3030 = .sdata2:0x8051FD84; // type:object size:0x4 scope:local align:4 data:float +@3057 = .sdata2:0x8051FD88; // type:object size:0x8 scope:local align:4 data:string +@3207 = .sdata2:0x8051FD90; // type:object size:0x4 scope:local align:4 data:float +@2791 = .sdata2:0x8051FD98; // type:object size:0x1 scope:local align:4 +@3747 = .sdata2:0x8051FDA0; // type:object size:0x4 scope:local align:4 data:float +@3766 = .sdata2:0x8051FDA4; // type:object size:0x4 scope:local align:4 data:float +@3767 = .sdata2:0x8051FDA8; // type:object size:0x4 scope:local align:4 data:float +@4176 = .sdata2:0x8051FDAC; // type:object size:0x4 scope:local align:4 data:float +@4177 = .sdata2:0x8051FDB0; // type:object size:0x4 scope:local align:4 data:float +@4213 = .sdata2:0x8051FDB4; // type:object size:0x4 scope:local align:4 data:float +@4347 = .sdata2:0x8051FDB8; // type:object size:0x4 scope:local align:4 data:float +@4348 = .sdata2:0x8051FDBC; // type:object size:0x4 scope:local align:4 data:float +@4349 = .sdata2:0x8051FDC0; // type:object size:0x4 scope:local align:4 data:float +@4426 = .sdata2:0x8051FDC8; // type:object size:0x8 scope:local align:8 data:double +@4434 = .sdata2:0x8051FDD0; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x8051FDD4; // type:object size:0x4 scope:local align:4 data:float +@4512 = .sdata2:0x8051FDD8; // type:object size:0x7 scope:local align:4 data:string +@3852 = .sdata2:0x8051FDE0; // type:object size:0x8 scope:local align:4 data:string +@4026 = .sdata2:0x8051FDE8; // type:object size:0x4 scope:local align:4 data:float +@4027 = .sdata2:0x8051FDEC; // type:object size:0x4 scope:local align:4 data:float +@3873 = .sdata2:0x8051FDF0; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x8051FDF4; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x8051FDF8; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8051FDFC; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x8051FE00; // type:object size:0x4 scope:local align:4 data:float +@3985 = .sdata2:0x8051FE04; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8051FE08; // type:object size:0x4 scope:local align:4 data:float +@3751 = .sdata2:0x8051FE0C; // type:object size:0x4 scope:local align:4 data:float +@3978 = .sdata2:0x8051FE10; // type:object size:0x4 scope:local align:4 data:float +@3979 = .sdata2:0x8051FE14; // type:object size:0x4 scope:local align:4 data:float +@3980 = .sdata2:0x8051FE18; // type:object size:0x4 scope:local align:4 data:float +@4079 = .sdata2:0x8051FE1C; // type:object size:0x4 scope:local align:4 data:float +@4080 = .sdata2:0x8051FE20; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x8051FE24; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x8051FE28; // type:object size:0x4 scope:local align:4 data:float +@3895 = .sdata2:0x8051FE30; // type:object size:0x4 scope:local align:4 data:float +@4004 = .sdata2:0x8051FE34; // type:object size:0x4 scope:local align:4 data:float +@4005 = .sdata2:0x8051FE38; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x8051FE3C; // type:object size:0x7 scope:local align:4 data:string +@4441 = .sdata2:0x8051FE44; // type:object size:0x4 scope:local align:4 data:float +@4442 = .sdata2:0x8051FE48; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x8051FE4C; // type:object size:0x4 scope:local align:4 data:float +@4445 = .sdata2:0x8051FE50; // type:object size:0x4 scope:local align:4 data:float +@5179 = .sdata2:0x8051FE54; // type:object size:0x4 scope:local align:4 data:float +@5180 = .sdata2:0x8051FE58; // type:object size:0x4 scope:local align:4 data:float +@5181 = .sdata2:0x8051FE5C; // type:object size:0x4 scope:local align:4 data:float +@5182 = .sdata2:0x8051FE60; // type:object size:0x4 scope:local align:4 data:float +@5183 = .sdata2:0x8051FE64; // type:object size:0x4 scope:local align:4 data:float +@5184 = .sdata2:0x8051FE68; // type:object size:0x4 scope:local align:4 data:float +@5185 = .sdata2:0x8051FE6C; // type:object size:0x4 scope:local align:4 data:float +@5186 = .sdata2:0x8051FE70; // type:object size:0x4 scope:local align:4 data:float +@5187 = .sdata2:0x8051FE74; // type:object size:0x4 scope:local align:4 data:float +@5188 = .sdata2:0x8051FE78; // type:object size:0x4 scope:local align:4 data:float +@5189 = .sdata2:0x8051FE7C; // type:object size:0x4 scope:local align:4 data:float +@5191 = .sdata2:0x8051FE80; // type:object size:0x8 scope:local align:8 data:double +@5280 = .sdata2:0x8051FE88; // type:object size:0x8 scope:local align:8 data:double +@5384 = .sdata2:0x8051FE90; // type:object size:0x4 scope:local align:4 data:float +@5385 = .sdata2:0x8051FE94; // type:object size:0x4 scope:local align:4 data:float +@5386 = .sdata2:0x8051FE98; // type:object size:0x4 scope:local align:4 data:float +@5501 = .sdata2:0x8051FE9C; // type:object size:0x4 scope:local align:4 data:float +@5502 = .sdata2:0x8051FEA0; // type:object size:0x4 scope:local align:4 data:float +@5571 = .sdata2:0x8051FEA4; // type:object size:0x4 scope:local align:4 data:float +@5880 = .sdata2:0x8051FEA8; // type:object size:0x4 scope:local align:4 data:float +@5881 = .sdata2:0x8051FEAC; // type:object size:0x4 scope:local align:4 data:float +@5987 = .sdata2:0x8051FEB0; // type:object size:0x4 scope:local align:4 data:float +@6147 = .sdata2:0x8051FEB4; // type:object size:0x4 scope:local align:4 data:float +@6187 = .sdata2:0x8051FEB8; // type:object size:0x4 scope:local align:4 data:float +@6289 = .sdata2:0x8051FEBC; // type:object size:0x4 scope:local align:4 data:float +@6290 = .sdata2:0x8051FEC0; // type:object size:0x4 scope:local align:4 data:float +@6291 = .sdata2:0x8051FEC4; // type:object size:0x4 scope:local align:4 data:float +@6292 = .sdata2:0x8051FEC8; // type:object size:0x4 scope:local align:4 data:float +@6293 = .sdata2:0x8051FECC; // type:object size:0x4 scope:local align:4 data:float +@6294 = .sdata2:0x8051FED0; // type:object size:0x4 scope:local align:4 data:float +@6295 = .sdata2:0x8051FED4; // type:object size:0x4 scope:local align:4 data:float +@6296 = .sdata2:0x8051FED8; // type:object size:0x4 scope:local align:4 data:float +@6297 = .sdata2:0x8051FEDC; // type:object size:0x4 scope:local align:4 data:float +@6298 = .sdata2:0x8051FEE0; // type:object size:0x4 scope:local align:4 data:float +@6299 = .sdata2:0x8051FEE4; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051FEE8; // type:object size:0x4 scope:local align:4 data:float +@4079 = .sdata2:0x8051FEF0; // type:object size:0x8 scope:local align:8 data:double +@4147 = .sdata2:0x8051FEF8; // type:object size:0x4 scope:local align:4 data:float +@4337 = .sdata2:0x8051FEFC; // type:object size:0x4 scope:local align:4 data:float +@4339 = .sdata2:0x8051FF00; // type:object size:0x8 scope:local align:8 data:double +@4353 = .sdata2:0x8051FF08; // type:object size:0x4 scope:local align:4 data:float +@4354 = .sdata2:0x8051FF0C; // type:object size:0x4 scope:local align:4 data:float +@4688 = .sdata2:0x8051FF10; // type:object size:0x4 scope:local align:4 data:float +@4689 = .sdata2:0x8051FF14; // type:object size:0x4 scope:local align:4 data:float +@4748 = .sdata2:0x8051FF18; // type:object size:0x4 scope:local align:4 data:float +@4831 = .sdata2:0x8051FF1C; // type:object size:0x4 scope:local align:4 data:float +@4832 = .sdata2:0x8051FF20; // type:object size:0x4 scope:local align:4 data:float +@4833 = .sdata2:0x8051FF24; // type:object size:0x4 scope:local align:4 data:float +@4834 = .sdata2:0x8051FF28; // type:object size:0x4 scope:local align:4 data:float +@4835 = .sdata2:0x8051FF2C; // type:object size:0x4 scope:local align:4 data:float +@4836 = .sdata2:0x8051FF30; // type:object size:0x4 scope:local align:4 data:float +@4837 = .sdata2:0x8051FF34; // type:object size:0x4 scope:local align:4 data:float +@4838 = .sdata2:0x8051FF38; // type:object size:0x4 scope:local align:4 data:float +@4839 = .sdata2:0x8051FF3C; // type:object size:0x4 scope:local align:4 data:float +@4840 = .sdata2:0x8051FF40; // type:object size:0x4 scope:local align:4 data:float +@4891 = .sdata2:0x8051FF44; // type:object size:0x4 scope:local align:4 data:float +@4892 = .sdata2:0x8051FF48; // type:object size:0x4 scope:local align:4 data:float +@4908 = .sdata2:0x8051FF4C; // type:object size:0x7 scope:local align:4 data:string +@4910 = .sdata2:0x8051FF54; // type:object size:0x1 scope:local align:4 +@4975 = .sdata2:0x8051FF58; // type:object size:0x4 scope:local align:4 data:float +@4976 = .sdata2:0x8051FF5C; // type:object size:0x4 scope:local align:4 data:float +@4977 = .sdata2:0x8051FF60; // type:object size:0x4 scope:local align:4 data:float +@4978 = .sdata2:0x8051FF64; // type:object size:0x4 scope:local align:4 data:float +@4979 = .sdata2:0x8051FF68; // type:object size:0x4 scope:local align:4 data:float +@4980 = .sdata2:0x8051FF6C; // type:object size:0x4 scope:local align:4 data:float +@4981 = .sdata2:0x8051FF70; // type:object size:0x4 scope:local align:4 data:float +@4982 = .sdata2:0x8051FF74; // type:object size:0x4 scope:local align:4 data:float +@4101 = .sdata2:0x8051FF78; // type:object size:0x4 scope:local align:4 data:float +@4775 = .sdata2:0x8051FF7C; // type:object size:0x4 scope:local align:4 data:float +@5239 = .sdata2:0x8051FF80; // type:object size:0x4 scope:local align:4 data:float +@4404 = .sdata2:0x8051FF88; // type:object size:0x4 scope:local align:4 data:float +@4405 = .sdata2:0x8051FF8C; // type:object size:0x4 scope:local align:4 data:float +@4407 = .sdata2:0x8051FF90; // type:object size:0x8 scope:local align:8 data:double +@3477 = .sdata2:0x8051FF98; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x8051FF9C; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x8051FFA0; // type:object size:0x4 scope:local align:4 data:float +@3678 = .sdata2:0x8051FFA8; // type:object size:0x8 scope:local align:8 data:double +@3760 = .sdata2:0x8051FFB0; // type:object size:0x4 scope:local align:4 data:float +@3761 = .sdata2:0x8051FFB4; // type:object size:0x4 scope:local align:4 data:float +@3762 = .sdata2:0x8051FFB8; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x8051FFBC; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x8051FFC0; // type:object size:0x4 scope:local align:4 data:float +@3875 = .sdata2:0x8051FFC8; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051FFCC; // type:object size:0x4 scope:local align:4 data:float +@4074 = .sdata2:0x8051FFD0; // type:object size:0x8 scope:local align:8 data:double +@4191 = .sdata2:0x8051FFD8; // type:object size:0x4 scope:local align:4 data:float +@4192 = .sdata2:0x8051FFDC; // type:object size:0x4 scope:local align:4 data:float +@4193 = .sdata2:0x8051FFE0; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x8051FFE8; // type:object size:0x4 scope:local align:4 data:float +@3996 = .sdata2:0x8051FFEC; // type:object size:0x4 scope:local align:4 data:float +@4013 = .sdata2:0x8051FFF0; // type:object size:0x4 scope:local align:4 data:float +@4085 = .sdata2:0x8051FFF8; // type:object size:0x8 scope:local align:8 data:double +@4437 = .sdata2:0x80520000; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x80520008; // type:object size:0x8 scope:local align:8 data:double +@4612 = .sdata2:0x80520010; // type:object size:0x4 scope:local align:4 data:float +@4635 = .sdata2:0x80520014; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x80520018; // type:object size:0x4 scope:local align:4 data:float +@4887 = .sdata2:0x8052001C; // type:object size:0x4 scope:local align:4 data:float +@4888 = .sdata2:0x80520020; // type:object size:0x4 scope:local align:4 data:float +@4889 = .sdata2:0x80520024; // type:object size:0x4 scope:local align:4 data:float +@4890 = .sdata2:0x80520028; // type:object size:0x4 scope:local align:4 data:float +@5085 = .sdata2:0x8052002C; // type:object size:0x4 scope:local align:4 data:float +@5563 = .sdata2:0x80520030; // type:object size:0x4 scope:local align:4 data:float +@5578 = .sdata2:0x80520034; // type:object size:0x4 scope:local align:4 data:float +@5643 = .sdata2:0x80520038; // type:object size:0x4 scope:local align:4 data:float +@5644 = .sdata2:0x8052003C; // type:object size:0x4 scope:local align:4 data:float +@5960 = .sdata2:0x80520040; // type:object size:0x1 scope:local align:4 +@6311 = .sdata2:0x80520044; // type:object size:0x7 scope:local align:4 data:string +@6312 = .sdata2:0x8052004C; // type:object size:0x6 scope:local align:4 data:string +@6313 = .sdata2:0x80520054; // type:object size:0x4 scope:local align:4 data:float +@6369 = .sdata2:0x80520058; // type:object size:0x4 scope:local align:4 data:float +@6371 = .sdata2:0x8052005C; // type:object size:0x4 scope:local align:4 data:float +@6373 = .sdata2:0x80520060; // type:object size:0x4 scope:local align:4 data:float +@6375 = .sdata2:0x80520064; // type:object size:0x4 scope:local align:4 data:float +@6377 = .sdata2:0x80520068; // type:object size:0x4 scope:local align:4 data:float +@6379 = .sdata2:0x8052006C; // type:object size:0x4 scope:local align:4 data:float +@6381 = .sdata2:0x80520070; // type:object size:0x4 scope:local align:4 data:float +@6385 = .sdata2:0x80520074; // type:object size:0x4 scope:local align:4 data:float +@6403 = .sdata2:0x80520078; // type:object size:0x4 scope:local align:4 data:float +@6405 = .sdata2:0x8052007C; // type:object size:0x4 scope:local align:4 data:float +@6407 = .sdata2:0x80520080; // type:object size:0x4 scope:local align:4 data:float +@6410 = .sdata2:0x80520084; // type:object size:0x4 scope:local align:4 data:float +@6433 = .sdata2:0x80520088; // type:object size:0x4 scope:local align:4 data:float +@6438 = .sdata2:0x8052008C; // type:object size:0x4 scope:local align:4 data:float +@6443 = .sdata2:0x80520090; // type:object size:0x4 scope:local align:4 data:float +@6460 = .sdata2:0x80520094; // type:object size:0x4 scope:local align:4 data:float +@6461 = .sdata2:0x80520098; // type:object size:0x4 scope:local align:4 data:float +@6462 = .sdata2:0x8052009C; // type:object size:0x4 scope:local align:4 data:float +@6463 = .sdata2:0x805200A0; // type:object size:0x4 scope:local align:4 data:float +@6464 = .sdata2:0x805200A4; // type:object size:0x4 scope:local align:4 data:float +@6465 = .sdata2:0x805200A8; // type:object size:0x4 scope:local align:4 data:float +@6466 = .sdata2:0x805200AC; // type:object size:0x4 scope:local align:4 data:float +@6467 = .sdata2:0x805200B0; // type:object size:0x4 scope:local align:4 data:float +@6468 = .sdata2:0x805200B4; // type:object size:0x4 scope:local align:4 data:float +@6469 = .sdata2:0x805200B8; // type:object size:0x4 scope:local align:4 data:float +@2996 = .sdata2:0x805200C0; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata2:0x805200C4; // type:object size:0x4 scope:local align:4 data:float +@3222 = .sdata2:0x805200C8; // type:object size:0x8 scope:local align:8 data:double +@3227 = .sdata2:0x805200D0; // type:object size:0x8 scope:local align:8 data:double +@3975 = .sdata2:0x805200D8; // type:object size:0x7 scope:local align:4 data:string +@4055 = .sdata2:0x805200E0; // type:object size:0x4 scope:local align:4 data:float +@4204 = .sdata2:0x805200E4; // type:object size:0x4 scope:local align:4 data:float +@4327 = .sdata2:0x805200E8; // type:object size:0x8 scope:local align:8 data:double +@4433 = .sdata2:0x805200F0; // type:object size:0x4 scope:local align:4 data:float +@4434 = .sdata2:0x805200F4; // type:object size:0x4 scope:local align:4 data:float +@4435 = .sdata2:0x805200F8; // type:object size:0x4 scope:local align:4 data:float +@4436 = .sdata2:0x805200FC; // type:object size:0x4 scope:local align:4 data:float +@4437 = .sdata2:0x80520100; // type:object size:0x4 scope:local align:4 data:float +@4438 = .sdata2:0x80520104; // type:object size:0x4 scope:local align:4 data:float +@4439 = .sdata2:0x80520108; // type:object size:0x4 scope:local align:4 data:float +@4440 = .sdata2:0x8052010C; // type:object size:0x4 scope:local align:4 data:float +@4441 = .sdata2:0x80520110; // type:object size:0x4 scope:local align:4 data:float +@4443 = .sdata2:0x80520118; // type:object size:0x8 scope:local align:8 data:double +@4794 = .sdata2:0x80520120; // type:object size:0x1 scope:local align:4 +@4872 = .sdata2:0x80520124; // type:object size:0x4 scope:local align:4 data:float +@3216 = .sdata2:0x80520128; // type:object size:0x4 scope:local align:4 data:float +@3322 = .sdata2:0x80520130; // type:object size:0x8 scope:local align:8 data:double +@3499 = .sdata2:0x80520138; // type:object size:0x7 scope:local align:4 data:string +@3501 = .sdata2:0x80520140; // type:object size:0x1 scope:local align:4 +@3549 = .sdata2:0x80520144; // type:object size:0x4 scope:local align:4 data:float +@3744 = .sdata2:0x80520148; // type:object size:0x4 scope:local align:4 data:float +@3753 = .sdata2:0x8052014C; // type:object size:0x8 scope:local align:4 data:string +@3754 = .sdata2:0x80520154; // type:object size:0x8 scope:local align:4 data:string +@3755 = .sdata2:0x8052015C; // type:object size:0x8 scope:local align:4 data:string +@3910 = .sdata2:0x80520164; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x80520168; // type:object size:0x8 scope:local align:8 data:double +@3943 = .sdata2:0x80520170; // type:object size:0x4 scope:local align:4 data:float +@3944 = .sdata2:0x80520174; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x80520178; // type:object size:0x4 scope:local align:4 data:float +@3808 = .sdata2:0x80520180; // type:object size:0x4 scope:local align:4 data:float +@4093 = .sdata2:0x80520184; // type:object size:0x4 scope:local align:4 data:float +@4094 = .sdata2:0x80520188; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x8052018C; // type:object size:0x4 scope:local align:4 data:float +@2494 = .sdata2:0x80520190; // type:object size:0x5 scope:local align:4 data:string +@2495 = .sdata2:0x80520198; // type:object size:0x6 scope:local align:4 data:string +@2562 = .sdata2:0x805201A0; // type:object size:0x6 scope:local align:4 data:string +@2816 = .sdata2:0x805201A8; // type:object size:0x4 scope:local align:4 data:float +@2817 = .sdata2:0x805201AC; // type:object size:0x4 scope:local align:4 data:float +@2818 = .sdata2:0x805201B0; // type:object size:0x4 scope:local align:4 data:float +@2851 = .sdata2:0x805201B4; // type:object size:0x4 scope:local align:4 data:float +@2852 = .sdata2:0x805201B8; // type:object size:0x4 scope:local align:4 data:float +@2855 = .sdata2:0x805201BC; // type:object size:0x4 scope:local align:4 data:float +@2856 = .sdata2:0x805201C0; // type:object size:0x4 scope:local align:4 data:float +@2857 = .sdata2:0x805201C4; // type:object size:0x4 scope:local align:4 data:float +@2998 = .sdata2:0x805201C8; // type:object size:0x4 scope:local align:4 data:float +@2999 = .sdata2:0x805201CC; // type:object size:0x4 scope:local align:4 data:float +@3001 = .sdata2:0x805201D0; // type:object size:0x4 scope:local align:4 data:float +@3002 = .sdata2:0x805201D4; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x805201D8; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata2:0x805201DC; // type:object size:0x4 scope:local align:4 data:float +@3083 = .sdata2:0x805201E0; // type:object size:0x4 scope:local align:4 data:float +@3084 = .sdata2:0x805201E4; // type:object size:0x4 scope:local align:4 data:float +@3161 = .sdata2:0x805201E8; // type:object size:0x4 scope:local align:4 data:float +@3581 = .sdata2:0x805201EC; // type:object size:0x4 scope:local align:4 data:float +@4318 = .sdata2:0x805201F0; // type:object size:0x8 scope:local align:8 data:double +@4319 = .sdata2:0x805201F8; // type:object size:0x4 scope:local align:4 data:float +@4420 = .sdata2:0x805201FC; // type:object size:0x4 scope:local align:4 data:float +@4618 = .sdata2:0x80520200; // type:object size:0x4 scope:local align:4 data:float +@4619 = .sdata2:0x80520204; // type:object size:0x4 scope:local align:4 data:float +@2735 = .sdata2:0x80520208; // type:object size:0x6 scope:local align:4 data:string +@2669 = .sdata2:0x80520210; // type:object size:0x8 scope:local align:4 data:string +@2670 = .sdata2:0x80520218; // type:object size:0x3 scope:local align:4 data:string +@2845 = .sdata2:0x80520220; // type:object size:0x7 scope:local align:4 data:string +@2846 = .sdata2:0x80520228; // type:object size:0x4 scope:local align:4 data:string +@2854 = .sdata2:0x8052022C; // type:object size:0x4 scope:local align:4 data:string +@3026 = .sdata2:0x80520230; // type:object size:0x3 scope:local align:4 data:string +@3269 = .sdata2:0x80520234; // type:object size:0x3 scope:local align:4 data:string +@3566 = .sdata2:0x80520238; // type:object size:0x2 scope:local align:4 data:string +@3586 = .sdata2:0x8052023C; // type:object size:0x4 scope:local align:4 data:string +@3630 = .sdata2:0x80520240; // type:object size:0x4 scope:local align:4 data:string +@2876 = .sdata2:0x80520248; // type:object size:0x4 scope:local align:4 data:float +@2877 = .sdata2:0x8052024C; // type:object size:0x4 scope:local align:4 data:float +@3031 = .sdata2:0x80520250; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x80520254; // type:object size:0x4 scope:local align:4 data:float +@4043 = .sdata2:0x80520258; // type:object size:0x4 scope:local align:4 data:float +@4044 = .sdata2:0x8052025C; // type:object size:0x4 scope:local align:4 data:float +@4139 = .sdata2:0x80520260; // type:object size:0x4 scope:local align:4 data:float +@4973 = .sdata2:0x80520264; // type:object size:0x4 scope:local align:4 data:float +@5259 = .sdata2:0x80520268; // type:object size:0x4 scope:local align:4 data:float +@5333 = .sdata2:0x8052026C; // type:object size:0x4 scope:local align:4 data:float +@5618 = .sdata2:0x80520270; // type:object size:0x8 scope:local align:8 data:double +@5688 = .sdata2:0x80520278; // type:object size:0x3 scope:local align:4 data:string +@5792 = .sdata2:0x8052027C; // type:object size:0x4 scope:local align:4 data:float +@5793 = .sdata2:0x80520280; // type:object size:0x4 scope:local align:4 data:float +@5914 = .sdata2:0x80520284; // type:object size:0x4 scope:local align:4 data:float +@5915 = .sdata2:0x80520288; // type:object size:0x4 scope:local align:4 data:float +@6112 = .sdata2:0x8052028C; // type:object size:0x4 scope:local align:4 data:float +@2789 = .sdata2:0x80520290; // type:object size:0x4 scope:local align:4 data:float +@2790 = .sdata2:0x80520294; // type:object size:0x4 scope:local align:4 data:float +@3140 = .sdata2:0x80520298; // type:object size:0x4 scope:local align:4 data:float +@3141 = .sdata2:0x8052029C; // type:object size:0x4 scope:local align:4 data:float +@3231 = .sdata2:0x805202A0; // type:object size:0x4 scope:local align:4 data:float +@3233 = .sdata2:0x805202A8; // type:object size:0x8 scope:local align:8 data:double +@3400 = .sdata2:0x805202B0; // type:object size:0x4 scope:local align:4 data:float +@3401 = .sdata2:0x805202B4; // type:object size:0x4 scope:local align:4 data:float +@3427 = .sdata2:0x805202B8; // type:object size:0x4 scope:local align:4 data:float +@3694 = .sdata2:0x805202BC; // type:object size:0x4 scope:local align:4 data:float +@3733 = .sdata2:0x805202C0; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x805202C4; // type:object size:0x4 scope:local align:4 data:float +@3735 = .sdata2:0x805202C8; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x805202CC; // type:object size:0x4 scope:local align:4 data:float +@3737 = .sdata2:0x805202D0; // type:object size:0x4 scope:local align:4 data:float +@3738 = .sdata2:0x805202D4; // type:object size:0x4 scope:local align:4 data:float +@3739 = .sdata2:0x805202D8; // type:object size:0x4 scope:local align:4 data:float +@3958 = .sdata2:0x805202DC; // type:object size:0x4 scope:local align:4 data:float +@2800 = .sdata2:0x805202E0; // type:object size:0x4 scope:local align:4 data:string +@2843 = .sdata2:0x805202E8; // type:object size:0x3 scope:local align:4 data:string +@2963 = .sdata2:0x805202F0; // type:object size:0x4 scope:local align:4 data:float +@2964 = .sdata2:0x805202F4; // type:object size:0x4 scope:local align:4 data:float +@2822 = .sdata2:0x805202F8; // type:object size:0x4 scope:local align:4 data:float +@2823 = .sdata2:0x805202FC; // type:object size:0x4 scope:local align:4 data:float +@2880 = .sdata2:0x80520300; // type:object size:0x4 scope:local align:4 data:float +@2881 = .sdata2:0x80520304; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata2:0x80520308; // type:object size:0x4 scope:local align:4 data:string +@3557 = .sdata2:0x8052030C; // type:object size:0x4 scope:local align:4 data:float +@4106 = .sdata2:0x80520310; // type:object size:0x4 scope:local align:4 data:float +@4107 = .sdata2:0x80520314; // type:object size:0x4 scope:local align:4 data:float +@5061 = .sdata2:0x80520318; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x80520320; // type:object size:0x4 scope:local align:4 data:float +@2808 = .sdata2:0x80520328; // type:object size:0x4 scope:local align:4 data:float +@2809 = .sdata2:0x8052032C; // type:object size:0x4 scope:local align:4 data:float +@2810 = .sdata2:0x80520330; // type:object size:0x4 scope:local align:4 data:float +@2798 = .sdata2:0x80520338; // type:object size:0x4 scope:local align:4 data:float +@2799 = .sdata2:0x8052033C; // type:object size:0x4 scope:local align:4 data:float +@3366 = .sdata2:0x80520340; // type:object size:0x7 scope:local align:4 data:string +@3600 = .sdata2:0x80520348; // type:object size:0x4 scope:local align:4 data:float +@3601 = .sdata2:0x8052034C; // type:object size:0x4 scope:local align:4 data:float +@3652 = .sdata2:0x80520350; // type:object size:0x4 scope:local align:4 data:float +@3653 = .sdata2:0x80520354; // type:object size:0x8 scope:local align:4 data:string +@3858 = .sdata2:0x80520360; // type:object size:0x8 scope:local align:8 data:double +@3977 = .sdata2:0x80520368; // type:object size:0x6 scope:local align:4 data:string +@4123 = .sdata2:0x80520370; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x80520378; // type:object size:0x8 scope:local align:8 data:double +@3579 = .sdata2:0x80520380; // type:object size:0x4 scope:local align:4 data:float +@3580 = .sdata2:0x80520384; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x80520388; // type:object size:0x4 scope:local align:4 data:float +@3702 = .sdata2:0x8052038C; // type:object size:0x5 scope:local align:4 data:string +@3703 = .sdata2:0x80520394; // type:object size:0x7 scope:local align:4 data:string +@3704 = .sdata2:0x8052039C; // type:object size:0x4 scope:local align:4 data:float +@4730 = .sdata2:0x805203A0; // type:object size:0x6 scope:local align:4 data:string +@4732 = .sdata2:0x805203A8; // type:object size:0x7 scope:local align:4 data:string +@4738 = .sdata2:0x805203B0; // type:object size:0x7 scope:local align:4 data:string +@4739 = .sdata2:0x805203B8; // type:object size:0x8 scope:local align:4 data:string +@4745 = .sdata2:0x805203C0; // type:object size:0x5 scope:local align:4 data:string +@4747 = .sdata2:0x805203C8; // type:object size:0x5 scope:local align:4 data:string +@4751 = .sdata2:0x805203D0; // type:object size:0x8 scope:local align:4 data:string +@4754 = .sdata2:0x805203D8; // type:object size:0x6 scope:local align:4 data:string +@4755 = .sdata2:0x805203E0; // type:object size:0x6 scope:local align:4 data:string +@2692 = .sdata2:0x805203E8; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata2:0x805203F0; // type:object size:0x4 scope:local align:4 data:string +@3166 = .sdata2:0x805203F8; // type:object size:0x4 scope:local align:4 data:float +@3167 = .sdata2:0x805203FC; // type:object size:0x4 scope:local align:4 data:float +@3169 = .sdata2:0x80520400; // type:object size:0x8 scope:local align:8 data:double +@3176 = .sdata2:0x80520408; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x8052040C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x80520410; // type:object size:0x8 scope:local align:8 data:double +@5772 = .sdata2:0x80520418; // type:object size:0x4 scope:local align:4 data:float +@5773 = .sdata2:0x8052041C; // type:object size:0x4 scope:local align:4 data:float +@5774 = .sdata2:0x80520420; // type:object size:0x4 scope:local align:4 data:float +@6160 = .sdata2:0x80520424; // type:object size:0x4 scope:local align:4 data:float +@6992 = .sdata2:0x80520428; // type:object size:0x4 scope:local align:4 data:float +@7634 = .sdata2:0x8052042C; // type:object size:0x4 scope:local align:4 data:float +@7635 = .sdata2:0x80520430; // type:object size:0x4 scope:local align:4 data:float +@7636 = .sdata2:0x80520434; // type:object size:0x4 scope:local align:4 data:float +@7694 = .sdata2:0x80520438; // type:object size:0x4 scope:local align:4 data:float +@7695 = .sdata2:0x8052043C; // type:object size:0x4 scope:local align:4 data:float +@7723 = .sdata2:0x80520440; // type:object size:0x4 scope:local align:4 data:float +@7724 = .sdata2:0x80520444; // type:object size:0x4 scope:local align:4 data:float +@7725 = .sdata2:0x80520448; // type:object size:0x4 scope:local align:4 data:float +@2833 = .sdata2:0x80520450; // type:object size:0x4 scope:local align:4 data:float +@2834 = .sdata2:0x80520454; // type:object size:0x4 scope:local align:4 data:float +@3048 = .sdata2:0x80520458; // type:object size:0x4 scope:local align:4 data:float +@3049 = .sdata2:0x8052045C; // type:object size:0x4 scope:local align:4 data:float +@3050 = .sdata2:0x80520460; // type:object size:0x4 scope:local align:4 data:float +@3261 = .sdata2:0x80520464; // type:object size:0x4 scope:local align:4 data:float +@3385 = .sdata2:0x80520468; // type:object size:0x4 scope:local align:4 data:float +@3410 = .sdata2:0x8052046C; // type:object size:0x6 scope:local align:4 data:string +@3485 = .sdata2:0x80520474; // type:object size:0x4 scope:local align:4 data:float +@3487 = .sdata2:0x80520478; // type:object size:0x8 scope:local align:8 data:double +@3996 = .sdata2:0x80520480; // type:object size:0x4 scope:local align:4 data:float +@3065 = .sdata2:0x80520488; // type:object size:0x4 scope:local align:4 data:float +@3067 = .sdata2:0x80520490; // type:object size:0x8 scope:local align:8 data:double +@3159 = .sdata2:0x80520498; // type:object size:0x4 scope:local align:4 data:float +@3208 = .sdata2:0x8052049C; // type:object size:0x4 scope:local align:4 data:float +@3209 = .sdata2:0x805204A0; // type:object size:0x4 scope:local align:4 data:float +@3210 = .sdata2:0x805204A4; // type:object size:0x4 scope:local align:4 data:float +@3211 = .sdata2:0x805204A8; // type:object size:0x4 scope:local align:4 data:float +@3868 = .sdata2:0x805204B0; // type:object size:0x4 scope:local align:4 data:float +@3871 = .sdata2:0x805204B4; // type:object size:0x4 scope:local align:4 data:float +@3872 = .sdata2:0x805204B8; // type:object size:0x4 scope:local align:4 data:float +@3874 = .sdata2:0x805204C0; // type:object size:0x8 scope:local align:8 data:double +@2669 = .sdata2:0x805204C8; // type:object size:0x7 scope:local align:4 data:string +@2670 = .sdata2:0x805204D0; // type:object size:0x4 scope:local align:4 data:float +@2667 = .sdata2:0x805204D8; // type:object size:0x5 scope:local align:4 data:string +@2767 = .sdata2:0x805204E0; // type:object size:0x6 scope:local align:4 data:string +@3033 = .sdata2:0x805204E8; // type:object size:0x4 scope:local align:4 data:float +@3034 = .sdata2:0x805204EC; // type:object size:0x4 scope:local align:4 data:float +@3035 = .sdata2:0x805204F0; // type:object size:0x4 scope:local align:4 data:float +@3036 = .sdata2:0x805204F4; // type:object size:0x4 scope:local align:4 data:float +@3037 = .sdata2:0x805204F8; // type:object size:0x4 scope:local align:4 data:float +@3038 = .sdata2:0x805204FC; // type:object size:0x4 scope:local align:4 data:float +@3039 = .sdata2:0x80520500; // type:object size:0x4 scope:local align:4 data:float +@3113 = .sdata2:0x80520504; // type:object size:0x4 scope:local align:4 data:float +@3114 = .sdata2:0x80520508; // type:object size:0x4 scope:local align:4 data:float +@3116 = .sdata2:0x80520510; // type:object size:0x8 scope:local align:8 data:double +@3200 = .sdata2:0x80520518; // type:object size:0x4 scope:local align:4 data:float +@3220 = .sdata2:0x8052051C; // type:object size:0x7 scope:local align:4 +@3301 = .sdata2:0x80520528; // type:object size:0x4 scope:local align:4 data:float +@3302 = .sdata2:0x8052052C; // type:object size:0x4 scope:local align:4 data:float +@3332 = .sdata2:0x80520530; // type:object size:0x4 scope:local align:4 data:float +@3388 = .sdata2:0x80520534; // type:object size:0x4 scope:local align:4 data:float +@3389 = .sdata2:0x80520538; // type:object size:0x4 scope:local align:4 data:float +@3390 = .sdata2:0x8052053C; // type:object size:0x4 scope:local align:4 data:float +@3393 = .sdata2:0x80520540; // type:object size:0x8 scope:local align:8 data:double +@3454 = .sdata2:0x80520548; // type:object size:0x4 scope:local align:4 data:float +@3463 = .sdata2:0x8052054C; // type:object size:0x4 scope:local align:4 data:float +@4011 = .sdata2:0x80520550; // type:object size:0x4 scope:local align:4 data:float +@4165 = .sdata2:0x80520554; // type:object size:0x4 scope:local align:4 data:float +@4167 = .sdata2:0x80520558; // type:object size:0x4 scope:local align:4 data:float +@4168 = .sdata2:0x8052055C; // type:object size:0x4 scope:local align:4 data:float +@4169 = .sdata2:0x80520560; // type:object size:0x4 scope:local align:4 data:float +@4388 = .sdata2:0x80520568; // type:object size:0x8 scope:local align:8 data:double +@4390 = .sdata2:0x80520570; // type:object size:0x4 scope:local align:4 data:string +@4391 = .sdata2:0x80520574; // type:object size:0x8 scope:local align:4 data:string +@4392 = .sdata2:0x8052057C; // type:object size:0x8 scope:local align:4 data:string +@4393 = .sdata2:0x80520584; // type:object size:0x4 scope:local align:4 data:string +@4632 = .sdata2:0x80520588; // type:object size:0x4 scope:local align:4 data:float +@4634 = .sdata2:0x8052058C; // type:object size:0x4 scope:local align:4 data:float +@4635 = .sdata2:0x80520590; // type:object size:0x4 scope:local align:4 data:float +@4636 = .sdata2:0x80520594; // type:object size:0x4 scope:local align:4 data:float +@4769 = .sdata2:0x80520598; // type:object size:0x7 scope:local align:4 data:string +@4770 = .sdata2:0x805205A0; // type:object size:0x8 scope:local align:4 data:string +@4851 = .sdata2:0x805205A8; // type:object size:0x4 scope:local align:4 data:float +@4852 = .sdata2:0x805205AC; // type:object size:0x4 scope:local align:4 data:float +@4914 = .sdata2:0x805205B0; // type:object size:0x8 scope:local align:8 data:double +@3481 = .sdata2:0x805205B8; // type:object size:0x4 scope:local align:4 data:float +@3482 = .sdata2:0x805205BC; // type:object size:0x4 scope:local align:4 data:float +@3629 = .sdata2:0x805205C0; // type:object size:0x4 scope:local align:4 data:float +@3630 = .sdata2:0x805205C4; // type:object size:0x4 scope:local align:4 data:float +@3631 = .sdata2:0x805205C8; // type:object size:0x4 scope:local align:4 data:float +@3680 = .sdata2:0x805205CC; // type:object size:0x3 scope:local align:4 data:string +@3718 = .sdata2:0x805205D0; // type:object size:0x8 scope:local align:8 data:double +@3048 = .sdata2:0x805205D8; // type:object size:0x4 scope:local align:4 data:float +@3050 = .sdata2:0x805205E0; // type:object size:0x8 scope:local align:8 data:double +@3080 = .sdata2:0x805205E8; // type:object size:0x4 scope:local align:4 data:float +@3081 = .sdata2:0x805205EC; // type:object size:0x4 scope:local align:4 data:float +@3082 = .sdata2:0x805205F0; // type:object size:0x4 scope:local align:4 data:float +@3204 = .sdata2:0x805205F4; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x805205F8; // type:object size:0x4 scope:local align:4 data:float +@3760 = .sdata2:0x805205FC; // type:object size:0x4 scope:local align:4 data:float +@3763 = .sdata2:0x80520600; // type:object size:0x4 scope:local align:4 data:float +@3764 = .sdata2:0x80520604; // type:object size:0x4 scope:local align:4 data:float +@3844 = .sdata2:0x80520608; // type:object size:0x6 scope:local align:4 data:string +@3845 = .sdata2:0x80520610; // type:object size:0x7 scope:local align:4 data:string +@3846 = .sdata2:0x80520618; // type:object size:0x7 scope:local align:4 data:string +@3847 = .sdata2:0x80520620; // type:object size:0x4 scope:local align:4 data:string +@3848 = .sdata2:0x80520624; // type:object size:0x4 scope:local align:4 data:string +@3849 = .sdata2:0x80520628; // type:object size:0x6 scope:local align:4 data:string +@3850 = .sdata2:0x80520630; // type:object size:0x7 scope:local align:4 data:string +@3720 = .sdata2:0x80520638; // type:object size:0x7 scope:local align:4 data:string +@3721 = .sdata2:0x80520640; // type:object size:0x4 scope:local align:4 data:float +@3722 = .sdata2:0x80520644; // type:object size:0x6 scope:local align:4 data:string +@2651 = .sdata2:0x80520650; // type:object size:0x1 scope:local align:4 +@2740 = .sdata2:0x80520654; // type:object size:0x6 scope:local align:4 data:string +@2759 = .sdata2:0x8052065C; // type:object size:0x3 scope:local align:4 data:string +@2760 = .sdata2:0x80520660; // type:object size:0x7 scope:local align:4 data:string +@2761 = .sdata2:0x80520668; // type:object size:0x7 scope:local align:4 data:string +@2763 = .sdata2:0x80520670; // type:object size:0x7 scope:local align:4 data:string +@2764 = .sdata2:0x80520678; // type:object size:0x4 scope:local align:4 data:string +@2776 = .sdata2:0x8052067C; // type:object size:0x7 scope:local align:4 data:string +@2825 = .sdata2:0x80520684; // type:object size:0x4 scope:local align:4 data:string +@2826 = .sdata2:0x80520688; // type:object size:0x4 scope:local align:4 data:string +@2827 = .sdata2:0x8052068C; // type:object size:0x4 scope:local align:4 data:string +@2828 = .sdata2:0x80520690; // type:object size:0x4 scope:local align:4 data:string +@2829 = .sdata2:0x80520694; // type:object size:0x4 scope:local align:4 data:string +@2830 = .sdata2:0x80520698; // type:object size:0x4 scope:local align:4 data:string +@2831 = .sdata2:0x8052069C; // type:object size:0x4 scope:local align:4 data:string +@2995 = .sdata2:0x805206A0; // type:object size:0x4 scope:local align:4 data:float +@2996 = .sdata2:0x805206A4; // type:object size:0x4 scope:local align:4 data:float +@3004 = .sdata2:0x805206A8; // type:object size:0x4 scope:local align:4 data:float +@2656 = .sdata2:0x805206B0; // type:object size:0x1 scope:local align:4 +@2769 = .sdata2:0x805206B4; // type:object size:0x5 scope:local align:4 data:string +@3207 = .sdata2:0x805206C0; // type:object size:0x8 scope:local align:8 data:double +@3273 = .sdata2:0x805206C8; // type:object size:0x4 scope:local align:4 data:float +@2687 = .sdata2:0x805206D0; // type:object size:0x4 scope:local align:4 data:float +mstTuningScaleX__Q29P2DScreen10Mgr_tuning = .sdata2:0x805206D4; // type:object size:0x4 scope:global align:4 data:float +mstTuningScaleY__Q29P2DScreen10Mgr_tuning = .sdata2:0x805206D8; // type:object size:0x4 scope:global align:4 data:float +mstTuningTransX__Q29P2DScreen10Mgr_tuning = .sdata2:0x805206DC; // type:object size:0x4 scope:global align:4 data:float +mstTuningTransY__Q29P2DScreen10Mgr_tuning = .sdata2:0x805206E0; // type:object size:0x4 scope:global align:4 data:float +@2697 = .sdata2:0x805206E4; // type:object size:0x4 scope:local align:4 data:float +@2698 = .sdata2:0x805206E8; // type:object size:0x4 scope:local align:4 data:float +@2723 = .sdata2:0x805206EC; // type:object size:0x4 scope:local align:4 data:float +@2725 = .sdata2:0x805206F0; // type:object size:0x8 scope:local align:8 data:double +@3558 = .sdata2:0x805206F8; // type:object size:0x4 scope:local align:4 data:float +@3621 = .sdata2:0x805206FC; // type:object size:0x4 scope:local align:4 data:float +@3622 = .sdata2:0x80520700; // type:object size:0x4 scope:local align:4 data:float +@3623 = .sdata2:0x80520704; // type:object size:0x4 scope:local align:4 data:float +@3624 = .sdata2:0x80520708; // type:object size:0x4 scope:local align:4 data:float +@3712 = .sdata2:0x8052070C; // type:object size:0x4 scope:local align:4 data:float +@3713 = .sdata2:0x80520710; // type:object size:0x4 scope:local align:4 data:float +@3714 = .sdata2:0x80520714; // type:object size:0x4 scope:local align:4 data:float +@3715 = .sdata2:0x80520718; // type:object size:0x4 scope:local align:4 data:float +@3716 = .sdata2:0x8052071C; // type:object size:0x4 scope:local align:4 data:float +@3717 = .sdata2:0x80520720; // type:object size:0x4 scope:local align:4 data:float +@3718 = .sdata2:0x80520724; // type:object size:0x4 scope:local align:4 data:float +@3719 = .sdata2:0x80520728; // type:object size:0x4 scope:local align:4 data:float +@3720 = .sdata2:0x8052072C; // type:object size:0x4 scope:local align:4 data:float +@3748 = .sdata2:0x80520730; // type:object size:0x4 scope:local align:4 data:float +@3750 = .sdata2:0x80520738; // type:object size:0x8 scope:local align:8 data:double +@3799 = .sdata2:0x80520740; // type:object size:0x4 scope:local align:4 data:float +@3800 = .sdata2:0x80520744; // type:object size:0x4 scope:local align:4 data:float +@3801 = .sdata2:0x80520748; // type:object size:0x4 scope:local align:4 data:float +@3818 = .sdata2:0x8052074C; // type:object size:0x4 scope:local align:4 data:float +@3819 = .sdata2:0x80520750; // type:object size:0x4 scope:local align:4 data:float +@3842 = .sdata2:0x80520754; // type:object size:0x4 scope:local align:4 data:float +@3843 = .sdata2:0x80520758; // type:object size:0x4 scope:local align:4 data:float +@3883 = .sdata2:0x8052075C; // type:object size:0x4 scope:local align:4 data:float +@3885 = .sdata2:0x80520760; // type:object size:0x8 scope:local align:8 data:double +@3982 = .sdata2:0x80520768; // type:object size:0x4 scope:local align:4 data:float +@3983 = .sdata2:0x8052076C; // type:object size:0x4 scope:local align:4 data:float +@3984 = .sdata2:0x80520770; // type:object size:0x4 scope:local align:4 data:float +@4006 = .sdata2:0x80520774; // type:object size:0x8 scope:local align:4 data:string +@4161 = .sdata2:0x8052077C; // type:object size:0x4 scope:local align:4 data:float +@4162 = .sdata2:0x80520780; // type:object size:0x4 scope:local align:4 data:float +@4163 = .sdata2:0x80520784; // type:object size:0x4 scope:local align:4 data:float +@4215 = .sdata2:0x80520788; // type:object size:0x4 scope:local align:4 data:float +@4410 = .sdata2:0x8052078C; // type:object size:0x8 scope:local align:4 data:string +@4614 = .sdata2:0x80520794; // type:object size:0x8 scope:local align:4 data:string +@3440 = .sdata2:0x805207A0; // type:object size:0x4 scope:local align:4 data:float +@3513 = .sdata2:0x805207A4; // type:object size:0x4 scope:local align:4 data:float +@3281 = .sdata2:0x805207A8; // type:object size:0x4 scope:local align:4 data:float +@3282 = .sdata2:0x805207AC; // type:object size:0x4 scope:local align:4 data:float +@3397 = .sdata2:0x805207B0; // type:object size:0x4 scope:local align:4 data:float +@3398 = .sdata2:0x805207B4; // type:object size:0x4 scope:local align:4 data:float +@3399 = .sdata2:0x805207B8; // type:object size:0x4 scope:local align:4 data:float +@3471 = .sdata2:0x805207BC; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x805207C0; // type:object size:0x8 scope:local align:8 data:double +@3483 = .sdata2:0x805207C8; // type:object size:0x4 scope:local align:4 data:float +@4054 = .sdata2:0x805207D0; // type:object size:0x8 scope:local align:4 data:string +@4172 = .sdata2:0x805207D8; // type:object size:0x8 scope:local align:4 data:string +@4233 = .sdata2:0x805207E0; // type:object size:0x4 scope:local align:4 data:string +@2775 = .sdata2:0x805207E8; // type:object size:0x4 scope:local align:4 data:float +@2912 = .sdata2:0x805207F0; // type:object size:0x8 scope:local align:8 data:double +cPageInfoBufferNum__Q25P2JME19TRenderingProcessor = .sdata2:0x805207F8; // type:object size:0x4 scope:global align:4 data:4byte +@2840 = .sdata2:0x805207FC; // type:object size:0x4 scope:local align:4 data:float +@2841 = .sdata2:0x80520800; // type:object size:0x4 scope:local align:4 data:float +@2842 = .sdata2:0x80520804; // type:object size:0x4 scope:local align:4 data:float +@2843 = .sdata2:0x80520808; // type:object size:0x4 scope:local align:4 data:float +@2844 = .sdata2:0x8052080C; // type:object size:0x4 scope:local align:4 data:float +@2900 = .sdata2:0x80520810; // type:object size:0x8 scope:local align:8 data:double +@2902 = .sdata2:0x80520818; // type:object size:0x8 scope:local align:8 data:double +@3488 = .sdata2:0x80520820; // type:object size:0x4 scope:local align:4 data:float +@3527 = .sdata2:0x80520824; // type:object size:0x4 scope:local align:4 data:float +@681 = .sdata2:0x80520828; // type:object size:0x7 scope:local align:4 +@682 = .sdata2:0x80520830; // type:object size:0x3 scope:local align:4 data:string +@3366 = .sdata2:0x80520838; // type:object size:0x6 scope:local align:4 data:string +@3367 = .sdata2:0x80520840; // type:object size:0x3 scope:local align:4 data:string +@3348 = .sdata2:0x80520848; // type:object size:0x7 scope:local align:4 data:string +@3515 = .sdata2:0x80520850; // type:object size:0x4 scope:local align:4 data:float +@3616 = .sdata2:0x80520854; // type:object size:0x4 scope:local align:4 data:float +@3825 = .sdata2:0x80520858; // type:object size:0x4 scope:local align:4 data:float +@3826 = .sdata2:0x8052085C; // type:object size:0x4 scope:local align:4 data:float +@3460 = .sdata2:0x80520860; // type:object size:0x1 scope:local align:4 +@3461 = .sdata2:0x80520864; // type:object size:0x4 scope:local align:4 data:float +@3462 = .sdata2:0x80520868; // type:object size:0x4 scope:local align:4 data:float +@3636 = .sdata2:0x8052086C; // type:object size:0x4 scope:local align:4 data:float +@3802 = .sdata2:0x80520870; // type:object size:0x4 scope:local align:4 data:float +@3803 = .sdata2:0x80520874; // type:object size:0x4 scope:local align:4 data:float +@3804 = .sdata2:0x80520878; // type:object size:0x4 scope:local align:4 data:float +@3805 = .sdata2:0x8052087C; // type:object size:0x4 scope:local align:4 data:float +@3807 = .sdata2:0x80520880; // type:object size:0x8 scope:local align:8 data:double +@3885 = .sdata2:0x80520888; // type:object size:0x4 scope:local align:4 data:float +@3886 = .sdata2:0x8052088C; // type:object size:0x4 scope:local align:4 data:float +@3887 = .sdata2:0x80520890; // type:object size:0x4 scope:local align:4 data:float +@3888 = .sdata2:0x80520894; // type:object size:0x4 scope:local align:4 data:float +@3889 = .sdata2:0x80520898; // type:object size:0x4 scope:local align:4 data:float +@3890 = .sdata2:0x8052089C; // type:object size:0x4 scope:local align:4 data:float +@3891 = .sdata2:0x805208A0; // type:object size:0x4 scope:local align:4 data:float +@3892 = .sdata2:0x805208A4; // type:object size:0x4 scope:local align:4 data:float +@4087 = .sdata2:0x805208A8; // type:object size:0x4 scope:local align:4 data:float +@4104 = .sdata2:0x805208AC; // type:object size:0x4 scope:local align:4 data:float +@4105 = .sdata2:0x805208B0; // type:object size:0x4 scope:local align:4 data:float +@3605 = .sdata2:0x805208B8; // type:object size:0x8 scope:local align:4 data:string +@3170 = .sdata2:0x805208C0; // type:object size:0x4 scope:local align:4 data:float +@3172 = .sdata2:0x805208C8; // type:object size:0x8 scope:local align:8 data:double +@3227 = .sdata2:0x805208D0; // type:object size:0x4 scope:local align:4 data:float +@3228 = .sdata2:0x805208D4; // type:object size:0x4 scope:local align:4 data:float +@3230 = .sdata2:0x805208D8; // type:object size:0x4 scope:local align:4 data:float +@4095 = .sdata2:0x805208E0; // type:object size:0x4 scope:local align:4 data:float +@4096 = .sdata2:0x805208E4; // type:object size:0x4 scope:local align:4 data:float +@4115 = .sdata2:0x805208E8; // type:object size:0x4 scope:local align:4 data:float +@4116 = .sdata2:0x805208EC; // type:object size:0x4 scope:local align:4 data:float +@4117 = .sdata2:0x805208F0; // type:object size:0x4 scope:local align:4 data:float +@4118 = .sdata2:0x805208F4; // type:object size:0x4 scope:local align:4 data:float +@4119 = .sdata2:0x805208F8; // type:object size:0x4 scope:local align:4 data:float +@4121 = .sdata2:0x80520900; // type:object size:0x8 scope:local align:8 data:double +@4132 = .sdata2:0x80520908; // type:object size:0x4 scope:local align:4 data:float +@4133 = .sdata2:0x8052090C; // type:object size:0x4 scope:local align:4 data:float +@4149 = .sdata2:0x80520910; // type:object size:0x4 scope:local align:4 data:float +@4150 = .sdata2:0x80520914; // type:object size:0x4 scope:local align:4 data:float +@4260 = .sdata2:0x80520918; // type:object size:0x4 scope:local align:4 data:float +@4261 = .sdata2:0x8052091C; // type:object size:0x4 scope:local align:4 data:float +@4262 = .sdata2:0x80520920; // type:object size:0x4 scope:local align:4 data:float +@4263 = .sdata2:0x80520924; // type:object size:0x4 scope:local align:4 data:float +@4264 = .sdata2:0x80520928; // type:object size:0x4 scope:local align:4 data:float +@4265 = .sdata2:0x8052092C; // type:object size:0x4 scope:local align:4 data:float +@4266 = .sdata2:0x80520930; // type:object size:0x4 scope:local align:4 data:float +@4267 = .sdata2:0x80520934; // type:object size:0x4 scope:local align:4 data:float +@4268 = .sdata2:0x80520938; // type:object size:0x4 scope:local align:4 data:float +@4269 = .sdata2:0x8052093C; // type:object size:0x4 scope:local align:4 data:float +@4270 = .sdata2:0x80520940; // type:object size:0x4 scope:local align:4 data:float +@4271 = .sdata2:0x80520944; // type:object size:0x4 scope:local align:4 data:float +@4272 = .sdata2:0x80520948; // type:object size:0x4 scope:local align:4 data:float +@4307 = .sdata2:0x8052094C; // type:object size:0x4 scope:local align:4 data:float +@4308 = .sdata2:0x80520950; // type:object size:0x4 scope:local align:4 data:float +@4309 = .sdata2:0x80520954; // type:object size:0x4 scope:local align:4 data:float +@4310 = .sdata2:0x80520958; // type:object size:0x4 scope:local align:4 data:float +@4311 = .sdata2:0x8052095C; // type:object size:0x4 scope:local align:4 data:float +@4312 = .sdata2:0x80520960; // type:object size:0x4 scope:local align:4 data:float +@4313 = .sdata2:0x80520964; // type:object size:0x4 scope:local align:4 data:float +@4403 = .sdata2:0x80520968; // type:object size:0x8 scope:local align:4 data:string +@4478 = .sdata2:0x80520970; // type:object size:0x4 scope:local align:4 data:float +@4479 = .sdata2:0x80520974; // type:object size:0x4 scope:local align:4 data:float +@4480 = .sdata2:0x80520978; // type:object size:0x4 scope:local align:4 data:float +@4482 = .sdata2:0x80520980; // type:object size:0x8 scope:local align:8 data:double +@4832 = .sdata2:0x80520988; // type:object size:0x4 scope:local align:4 data:float +@5035 = .sdata2:0x8052098C; // type:object size:0x4 scope:local align:4 data:float +@5036 = .sdata2:0x80520990; // type:object size:0x4 scope:local align:4 data:float +@5037 = .sdata2:0x80520994; // type:object size:0x4 scope:local align:4 data:float +@5038 = .sdata2:0x80520998; // type:object size:0x4 scope:local align:4 data:float +@5039 = .sdata2:0x8052099C; // type:object size:0x4 scope:local align:4 data:float +@5056 = .sdata2:0x805209A0; // type:object size:0x4 scope:local align:4 data:float +@5057 = .sdata2:0x805209A4; // type:object size:0x4 scope:local align:4 data:float +@5058 = .sdata2:0x805209A8; // type:object size:0x4 scope:local align:4 data:float +@5059 = .sdata2:0x805209AC; // type:object size:0x4 scope:local align:4 data:float +@4231 = .sdata2:0x805209B0; // type:object size:0x4 scope:local align:4 data:float +@4729 = .sdata2:0x805209B4; // type:object size:0x8 scope:local align:4 data:string +@4842 = .sdata2:0x805209C0; // type:object size:0x8 scope:local align:8 data:double +@5101 = .sdata2:0x805209C8; // type:object size:0x4 scope:local align:4 data:float +@5102 = .sdata2:0x805209CC; // type:object size:0x4 scope:local align:4 data:float +@5742 = .sdata2:0x805209D0; // type:object size:0x4 scope:local align:4 data:float +@5743 = .sdata2:0x805209D4; // type:object size:0x4 scope:local align:4 data:float +@2506 = .sdata2:0x805209D8; // type:object size:0x8 scope:local align:4 data:string +@3101 = .sdata2:0x805209E0; // type:object size:0x4 scope:local align:4 data:float +@3154 = .sdata2:0x805209E4; // type:object size:0x4 scope:local align:4 data:float +@3155 = .sdata2:0x805209E8; // type:object size:0x4 scope:local align:4 data:float +@3156 = .sdata2:0x805209EC; // type:object size:0x4 scope:local align:4 data:float +@3158 = .sdata2:0x805209F0; // type:object size:0x8 scope:local align:8 data:double +@3170 = .sdata2:0x805209F8; // type:object size:0x8 scope:local align:8 data:double +@2484 = .sdata2:0x80520A00; // type:object size:0x8 scope:local align:4 data:4byte +@2487 = .sdata2:0x80520A08; // type:object size:0x4 scope:local align:4 data:4byte +@2490 = .sdata2:0x80520A0C; // type:object size:0x4 scope:local align:4 data:4byte +@2493 = .sdata2:0x80520A10; // type:object size:0x4 scope:local align:4 data:4byte +@2514 = .sdata2:0x80520A14; // type:object size:0x4 scope:local align:4 data:float +@2515 = .sdata2:0x80520A18; // type:object size:0x4 scope:local align:4 data:float +@2516 = .sdata2:0x80520A1C; // type:object size:0x4 scope:local align:4 data:float +@2518 = .sdata2:0x80520A20; // type:object size:0x8 scope:local align:8 data:double +@3226 = .sdata2:0x80520A28; // type:object size:0x4 scope:local align:4 data:string +@3227 = .sdata2:0x80520A2C; // type:object size:0x4 scope:local align:4 data:float +@3597 = .sdata2:0x80520A30; // type:object size:0x4 scope:local align:4 data:float +@3729 = .sdata2:0x80520A34; // type:object size:0x4 scope:local align:4 data:float +@3732 = .sdata2:0x80520A38; // type:object size:0x8 scope:local align:8 data:double +@3196 = .sdata2:0x80520A40; // type:object size:0x1 scope:local align:4 +@3359 = .sdata2:0x80520A44; // type:object size:0x4 scope:local align:4 data:float +@3406 = .sdata2:0x80520A48; // type:object size:0x8 scope:local align:8 data:double +@2746 = .sdata2:0x80520A50; // type:object size:0x1 scope:local align:4 +@2747 = .sdata2:0x80520A54; // type:object size:0x8 scope:local align:4 data:string +@2749 = .sdata2:0x80520A60; // type:object size:0x4 scope:local align:4 data:float +@2763 = .sdata2:0x80520A64; // type:object size:0x4 scope:local align:4 data:float +@2837 = .sdata2:0x80520A68; // type:object size:0x4 scope:local align:4 data:float +@2838 = .sdata2:0x80520A6C; // type:object size:0x4 scope:local align:4 data:float +@2839 = .sdata2:0x80520A70; // type:object size:0x4 scope:local align:4 data:float +@2840 = .sdata2:0x80520A74; // type:object size:0x4 scope:local align:4 data:float +@2841 = .sdata2:0x80520A78; // type:object size:0x4 scope:local align:4 data:float +@2882 = .sdata2:0x80520A7C; // type:object size:0x4 scope:local align:4 data:float +@2883 = .sdata2:0x80520A80; // type:object size:0x4 scope:local align:4 data:float +@2885 = .sdata2:0x80520A88; // type:object size:0x8 scope:local align:8 data:double +@2913 = .sdata2:0x80520A90; // type:object size:0x8 scope:local align:8 data:double +@2930 = .sdata2:0x80520A98; // type:object size:0x4 scope:local align:4 data:float +@2677 = .sdata2:0x80520AA0; // type:object size:0x8 scope:local align:4 data:string +@2679 = .sdata2:0x80520AA8; // type:object size:0x4 scope:local align:4 data:string +@2702 = .sdata2:0x80520AAC; // type:object size:0x1 scope:local align:4 +@3140 = .sdata2:0x80520AB0; // type:object size:0x1 scope:local align:4 +@2641 = .sdata2:0x80520AB8; // type:object size:0x8 scope:local align:4 data:string +@2733 = .sdata2:0x80520AC0; // type:object size:0x4 scope:local align:4 data:float +@2734 = .sdata2:0x80520AC4; // type:object size:0x4 scope:local align:4 data:float +@3654 = .sdata2:0x80520AC8; // type:object size:0x7 scope:local align:4 data:string +@3656 = .sdata2:0x80520AD0; // type:object size:0x5 scope:local align:4 data:string +@3663 = .sdata2:0x80520AD8; // type:object size:0x4 scope:local align:4 data:float +@3806 = .sdata2:0x80520ADC; // type:object size:0x5 scope:local align:4 data:string +@3807 = .sdata2:0x80520AE4; // type:object size:0x8 scope:local align:4 data:string +@2765 = .sdata2:0x80520AF0; // type:object size:0x4 scope:local align:4 data:float +@2766 = .sdata2:0x80520AF4; // type:object size:0x4 scope:local align:4 data:float +@2772 = .sdata2:0x80520AF8; // type:object size:0x4 scope:local align:4 data:float +@2773 = .sdata2:0x80520AFC; // type:object size:0x4 scope:local align:4 data:float +@2824 = .sdata2:0x80520B00; // type:object size:0x4 scope:local align:4 data:float +@2827 = .sdata2:0x80520B08; // type:object size:0x8 scope:local align:8 data:double +@2790 = .sdata2:0x80520B10; // type:object size:0x4 scope:local align:4 data:string +@3097 = .sdata2:0x80520B18; // type:object size:0x5 scope:local align:4 data:string +@3098 = .sdata2:0x80520B20; // type:object size:0x4 scope:local align:4 data:float +@3143 = .sdata2:0x80520B24; // type:object size:0x4 scope:local align:4 data:float +@3420 = .sdata2:0x80520B28; // type:object size:0x4 scope:local align:4 data:float +@3421 = .sdata2:0x80520B2C; // type:object size:0x4 scope:local align:4 data:float +@3530 = .sdata2:0x80520B30; // type:object size:0x4 scope:local align:4 data:float +@3531 = .sdata2:0x80520B34; // type:object size:0x4 scope:local align:4 data:float +@3583 = .sdata2:0x80520B38; // type:object size:0x4 scope:local align:4 data:float +@3599 = .sdata2:0x80520B3C; // type:object size:0x4 scope:local align:4 data:float +@3796 = .sdata2:0x80520B40; // type:object size:0x4 scope:local align:4 data:float +@3824 = .sdata2:0x80520B44; // type:object size:0x4 scope:local align:4 data:float +@4173 = .sdata2:0x80520B48; // type:object size:0x4 scope:local align:4 data:float +@3721 = .sdata2:0x80520B50; // type:object size:0x4 scope:local align:4 data:float +@3726 = .sdata2:0x80520B54; // type:object size:0x4 scope:local align:4 data:float +@3855 = .sdata2:0x80520B58; // type:object size:0x4 scope:local align:4 data:float +@5453 = .sdata2:0x80520B5C; // type:object size:0x4 scope:local align:4 data:float +@5454 = .sdata2:0x80520B60; // type:object size:0x4 scope:local align:4 data:float +@5455 = .sdata2:0x80520B64; // type:object size:0x4 scope:local align:4 data:float +@5456 = .sdata2:0x80520B68; // type:object size:0x4 scope:local align:4 data:float +@5457 = .sdata2:0x80520B6C; // type:object size:0x4 scope:local align:4 data:float +@5458 = .sdata2:0x80520B70; // type:object size:0x4 scope:local align:4 data:float +@5553 = .sdata2:0x80520B74; // type:object size:0x4 scope:local align:4 data:float +@5822 = .sdata2:0x80520B78; // type:object size:0x4 scope:local align:4 data:float +@3579 = .sdata2:0x80520B80; // type:object size:0x4 scope:local align:4 data:float +@3586 = .sdata2:0x80520B84; // type:object size:0x4 scope:local align:4 data:float +@3971 = .sdata2:0x80520B88; // type:object size:0x4 scope:local align:4 data:float +@3972 = .sdata2:0x80520B8C; // type:object size:0x4 scope:local align:4 data:float +@3973 = .sdata2:0x80520B90; // type:object size:0x4 scope:local align:4 data:float +@3975 = .sdata2:0x80520B98; // type:object size:0x8 scope:local align:8 data:double +@3977 = .sdata2:0x80520BA0; // type:object size:0x8 scope:local align:8 data:double +@4565 = .sdata2:0x80520BA8; // type:object size:0x4 scope:local align:4 data:float +@4942 = .sdata2:0x80520BAC; // type:object size:0x4 scope:local align:4 data:float +@5230 = .sdata2:0x80520BB0; // type:object size:0x4 scope:local align:4 data:float +@5231 = .sdata2:0x80520BB4; // type:object size:0x4 scope:local align:4 data:float +@6212 = .sdata2:0x80520BB8; // type:object size:0x4 scope:local align:4 data:float +@4077 = .sdata2:0x80520BC0; // type:object size:0x2 scope:local align:4 +@4086 = .sdata2:0x80520BC4; // type:object size:0x4 scope:local align:4 data:string +@3661 = .sdata2:0x80520BC8; // type:object size:0x4 scope:local align:4 data:float +@3727 = .sdata2:0x80520BCC; // type:object size:0x4 scope:local align:4 data:float +@4433 = .sdata2:0x80520BD0; // type:object size:0x4 scope:local align:4 data:float +@4767 = .sdata2:0x80520BD4; // type:object size:0x4 scope:local align:4 data:float +cEvenning_fadeOuTime__Q23PSM12Scene_Ground = .sdata2:0x80520BD8; // type:object size:0x4 scope:global align:4 data:4byte +cEvenning_fadeInTime__Q23PSM12Scene_Ground = .sdata2:0x80520BDC; // type:object size:0x4 scope:global align:4 data:4byte +@5825 = .sdata2:0x80520BE0; // type:object size:0x4 scope:local align:4 data:float +@3455 = .sdata2:0x80520BE8; // type:object size:0x4 scope:local align:4 data:float +@3456 = .sdata2:0x80520BEC; // type:object size:0x4 scope:local align:4 data:float +@3457 = .sdata2:0x80520BF0; // type:object size:0x4 scope:local align:4 data:float +@3608 = .sdata2:0x80520BF4; // type:object size:0x4 scope:local align:4 data:float +@3609 = .sdata2:0x80520BF8; // type:object size:0x4 scope:local align:4 data:float +@3627 = .sdata2:0x80520BFC; // type:object size:0x4 scope:local align:4 data:float +@3675 = .sdata2:0x80520C00; // type:object size:0x4 scope:local align:4 data:float +@3676 = .sdata2:0x80520C04; // type:object size:0x4 scope:local align:4 data:float +@3677 = .sdata2:0x80520C08; // type:object size:0x4 scope:local align:4 data:float +@3489 = .sdata2:0x80520C10; // type:object size:0x4 scope:local align:4 data:float +@3490 = .sdata2:0x80520C14; // type:object size:0x4 scope:local align:4 data:float +@3491 = .sdata2:0x80520C18; // type:object size:0x4 scope:local align:4 data:float +@3492 = .sdata2:0x80520C1C; // type:object size:0x4 scope:local align:4 data:float +@3493 = .sdata2:0x80520C20; // type:object size:0x4 scope:local align:4 data:float +@3542 = .sdata2:0x80520C24; // type:object size:0x4 scope:local align:4 data:float +@3543 = .sdata2:0x80520C28; // type:object size:0x4 scope:local align:4 data:float +@3544 = .sdata2:0x80520C2C; // type:object size:0x4 scope:local align:4 data:float +@3545 = .sdata2:0x80520C30; // type:object size:0x4 scope:local align:4 data:float +@3546 = .sdata2:0x80520C34; // type:object size:0x4 scope:local align:4 data:float +@3547 = .sdata2:0x80520C38; // type:object size:0x4 scope:local align:4 data:float +@3548 = .sdata2:0x80520C3C; // type:object size:0x4 scope:local align:4 data:float +@3549 = .sdata2:0x80520C40; // type:object size:0x4 scope:local align:4 data:float +@3550 = .sdata2:0x80520C44; // type:object size:0x4 scope:local align:4 data:float +@3940 = .sdata2:0x80520C48; // type:object size:0x4 scope:local align:4 data:float +@3941 = .sdata2:0x80520C4C; // type:object size:0x4 scope:local align:4 data:float +@3942 = .sdata2:0x80520C50; // type:object size:0x4 scope:local align:4 data:float +@3943 = .sdata2:0x80520C54; // type:object size:0x4 scope:local align:4 data:float +@3944 = .sdata2:0x80520C58; // type:object size:0x4 scope:local align:4 data:float +@3945 = .sdata2:0x80520C5C; // type:object size:0x4 scope:local align:4 data:float +@3946 = .sdata2:0x80520C60; // type:object size:0x4 scope:local align:4 data:float +@3947 = .sdata2:0x80520C64; // type:object size:0x4 scope:local align:4 data:float +@3948 = .sdata2:0x80520C68; // type:object size:0x4 scope:local align:4 data:float +@3949 = .sdata2:0x80520C6C; // type:object size:0x4 scope:local align:4 data:float +@3950 = .sdata2:0x80520C70; // type:object size:0x4 scope:local align:4 data:float +@3951 = .sdata2:0x80520C74; // type:object size:0x4 scope:local align:4 data:float +@4002 = .sdata2:0x80520C78; // type:object size:0x4 scope:local align:4 data:float +@4003 = .sdata2:0x80520C7C; // type:object size:0x4 scope:local align:4 data:float +@4125 = .sdata2:0x80520C80; // type:object size:0x4 scope:local align:4 data:float +@4126 = .sdata2:0x80520C84; // type:object size:0x4 scope:local align:4 data:float +@4207 = .sdata2:0x80520C88; // type:object size:0x8 scope:local align:8 data:double +@3615 = .sdata2:0x80520C90; // type:object size:0x1 scope:local align:4 +@3687 = .sdata2:0x80520C94; // type:object size:0x5 scope:local align:4 data:string +@3910 = .sdata2:0x80520C9C; // type:object size:0x7 scope:local align:4 data:string +@3911 = .sdata2:0x80520CA4; // type:object size:0x4 scope:local align:4 data:float +@3912 = .sdata2:0x80520CA8; // type:object size:0x4 scope:local align:4 data:float +@3913 = .sdata2:0x80520CAC; // type:object size:0x8 scope:local align:4 data:string +@3918 = .sdata2:0x80520CB4; // type:object size:0x4 scope:local align:4 data:float +@3919 = .sdata2:0x80520CB8; // type:object size:0x4 scope:local align:4 data:float +@3656 = .sdata2:0x80520CC0; // type:object size:0x4 scope:local align:4 data:float +@3657 = .sdata2:0x80520CC4; // type:object size:0x4 scope:local align:4 data:float +@3673 = .sdata2:0x80520CC8; // type:object size:0x4 scope:local align:4 data:float +@3734 = .sdata2:0x80520CCC; // type:object size:0x4 scope:local align:4 data:float +@3736 = .sdata2:0x80520CD0; // type:object size:0x8 scope:local align:8 data:double +@3849 = .sdata2:0x80520CD8; // type:object size:0x4 scope:local align:4 data:float +@3869 = .sdata2:0x80520CDC; // type:object size:0x4 scope:local align:4 data:float +@2908 = .sdata2:0x80520CE0; // type:object size:0x1 scope:local align:4 +@3361 = .sdata2:0x80520CE8; // type:object size:0x8 scope:local align:4 data:string +@3362 = .sdata2:0x80520CF0; // type:object size:0x8 scope:local align:4 data:string +@3364 = .sdata2:0x80520CF8; // type:object size:0x6 scope:local align:4 data:string +@3365 = .sdata2:0x80520D00; // type:object size:0x6 scope:local align:4 data:string +@3366 = .sdata2:0x80520D08; // type:object size:0x6 scope:local align:4 data:string +@3367 = .sdata2:0x80520D10; // type:object size:0x6 scope:local align:4 data:string +@3368 = .sdata2:0x80520D18; // type:object size:0x6 scope:local align:4 data:string +@3369 = .sdata2:0x80520D20; // type:object size:0x6 scope:local align:4 data:string +@3370 = .sdata2:0x80520D28; // type:object size:0x6 scope:local align:4 data:string +@3401 = .sdata2:0x80520D30; // type:object size:0x4 scope:local align:4 data:float +@3402 = .sdata2:0x80520D34; // type:object size:0x4 scope:local align:4 data:float +@3436 = .sdata2:0x80520D38; // type:object size:0x4 scope:local align:4 data:float +@3474 = .sdata2:0x80520D3C; // type:object size:0x4 scope:local align:4 data:float +@3475 = .sdata2:0x80520D40; // type:object size:0x4 scope:local align:4 data:float +@3476 = .sdata2:0x80520D44; // type:object size:0x4 scope:local align:4 data:float +cNoukouDistance__Q23PSM11CreaturePrm = .sdata2:0x80520D48; // type:object size:0x4 scope:global align:4 data:float +cSeFxMix__Q23PSM11CreaturePrm = .sdata2:0x80520D4C; // type:object size:0x4 scope:global align:4 data:float +cSeFxMix_cave__Q23PSM11CreaturePrm = .sdata2:0x80520D50; // type:object size:0x4 scope:global align:4 data:float +@3420 = .sdata2:0x80520D58; // type:object size:0x8 scope:local align:4 data:4byte +@2220 = .sbss2:0x80520D60; // type:object size:0x8 scope:local align:4 data:4byte +@2641 = .sbss2:0x80520D68; // type:object size:0x8 scope:local align:4 data:4byte +@2006 = .sbss2:0x80520D70; // type:object size:0x8 scope:local align:4 data:4byte +@6583 = .sbss2:0x80520D78; // type:object size:0x8 scope:local align:4 data:4byte +@5020 = .sbss2:0x80520D80; // type:object size:0x8 scope:local align:4 data:4byte +@5181 = .sbss2:0x80520D88; // type:object size:0x8 scope:local align:4 data:4byte +@5777 = .sbss2:0x80520D90; // type:object size:0x8 scope:local align:4 data:4byte +@5854 = .sbss2:0x80520D98; // type:object size:0x8 scope:local align:4 data:4byte +@5876 = .sbss2:0x80520DA0; // type:object size:0x4 scope:local align:4 data:4byte +@3884 = .sbss2:0x80520DA8; // type:object size:0x4 scope:local align:4 data:4byte +@4295 = .sbss2:0x80520DB0; // type:object size:0x8 scope:local align:4 data:4byte +@4296 = .sbss2:0x80520DB8; // type:object size:0x8 scope:local align:4 data:4byte +@4299 = .sbss2:0x80520DC0; // type:object size:0x8 scope:local align:4 data:4byte +@3657 = .sbss2:0x80520DC8; // type:object size:0x8 scope:local align:4 data:4byte +@3658 = .sbss2:0x80520DD0; // type:object size:0x8 scope:local align:4 data:4byte +@3672 = .sbss2:0x80520DD8; // type:object size:0x3 scope:local align:4 data:2byte +@4153 = .sbss2:0x80520DE0; // type:object size:0x8 scope:local align:4 data:4byte +@4305 = .sbss2:0x80520DE8; // type:object size:0x8 scope:local align:4 data:4byte +@3776 = .sbss2:0x80520DF0; // type:object size:0x8 scope:local align:4 data:4byte diff --git a/configure.py b/configure.py index 70bd02c92..bae0c4cdf 100755 --- a/configure.py +++ b/configure.py @@ -1,588 +1,2029 @@ -def main(): - import os - import io - import sys - import argparse - import json +#!/usr/bin/env python3 - from pathlib import Path - from shutil import which - from tools import ninja_syntax +### +# 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. +### - if sys.version_info < (3, 8): - sys.exit("Python 3.8 or later required.") +import argparse +import sys +from pathlib import Path - parser = argparse.ArgumentParser() - parser.add_argument( - "--version", - "-v", - dest="version", - default="usa", - help="version to build (usa, usa.demo)", - ) - parser.add_argument( - "--map", - "-m", - dest="map", - action="store_true", - help="generate map file", - ) - parser.add_argument( - "--no-check", - dest="check", - action="store_false", - help="don't check hash of resulting dol", - ) - parser.add_argument( - "--no-static-libs", - dest="static_libs", - action="store_false", - help="don't build and use static libs", - ) - parser.add_argument( - "--powerpc", - dest="powerpc", - type=Path, - default=Path("tools/powerpc"), - help="path to powerpc-eabi tools", - ) - if os.name != "nt" and not "_NT-" in os.uname().sysname: - parser.add_argument( - "--wine", - dest="wine", - type=Path, - help="path to wine (or wibo)", - ) - parser.add_argument( - "--build-dtk", - dest="build_dtk", - type=Path, - help="path to decomp-toolkit source", - ) - parser.add_argument( - "--debug", - "-d", - dest="debug", - action="store_true", - help="build with debug info (non-matching)", - ) - parser.add_argument( - "--compilers", - dest="compilers", - type=Path, - default=Path("tools/mwcc_compiler"), - help="path to compilers", - ) - parser.add_argument( - "--build-dir", - dest="build_dir", - type=Path, - default=Path("build"), - help="base build directory", - ) - parser.add_argument( - "--context", - "-c", - dest="context", - action="store_true", - help="generate context files for decomp.me", - ) - args = parser.parse_args() - - with open(Path("libs.json"), "r") as f: - LIBS = json.load(f) - - # On Windows, we need this to use && in commands - chain = "cmd /c " if os.name == "nt" else "" - - out = io.StringIO() - n = ninja_syntax.Writer(out) - - n.variable("ninja_required_version", "1.3") - n.newline() - - n.comment("The arguments passed to configure.py, for rerunning it.") - configure_args = sys.argv[1:] - n.variable("configure_args", configure_args) - n.variable("python", f'"{sys.executable}"') - n.newline() - - ### - # Variables - ### - n.comment("Variables") - version = args.version.lower() - if args.version.lower() == "usa": - version_num = "2" - elif args.version.lower() == "usa.demo": - version_num = "1" - else: - sys.exit(f'Invalid version "{args.version}"') - build_path = args.build_dir / f"pikmin2.{version}" +from tools.project import ( + Object, + ProjectConfig, + calculate_progress, + generate_build, + is_windows, +) - cflags_base = f"-proc gekko -nodefaults -Cpp_exceptions off -RTTI off -fp hard -fp_contract on -O4,p -maxerrors 1 -enum int -inline auto -str reuse,readonly -nosyspath -use_lmw_stmw on -sdata 8 -sdata2 8 -DVERNUM={version_num} -i include -i include/stl" - if args.debug: - cflags_base += " -sym on -D_DEBUG" - else: - cflags_base += " -DNDEBUG -w off" - n.variable("cflags_base", cflags_base) - n.variable("cflags_pikmin", "$cflags_base -common on") +# Game versions +DEFAULT_VERSION = 4 +VERSIONS = [ + "GPVE01_D17", # 0 + "GPVE01_D18", # 1 + "GPVJ01", # 2 + "GPVP01", # 3 + "GPVE01", # 4 +] - asflags = f"-mgekko -I include --defsym version={version_num} -W --strip-local-absolute -gdwarf-2" - n.variable("asflags", asflags) - - ldflags = "-fp fmadd -nodefaults -lcf ldscript.lcf" - if args.map: - map_path = build_path / "pikmin2UP.MAP" - ldflags += f" -map {map_path} -mapunused" - if args.debug: - ldflags += " -g" - else: - ldflags += " -w off" - n.variable("ldflags", ldflags) - - mw_link_version = "2.6" - n.variable("mw_version", mw_link_version) - if os.name == "nt": - exe = ".exe" - wine = "" - else: - if "_NT-" in os.uname().sysname: - # MSYS2 - wine = "" - elif args.wine: - wine = f"{args.wine} " - elif which("wibo") is not None: - wine = "wibo " - else: - wine = "wine " - exe = "" - n.newline() - - ### - # Tooling - ### - tools_path = Path("tools") - - def path(input): - if input is None: - return None - elif isinstance(input, list): - return list(map(str, input)) - else: - return [str(input)] - - n.comment("decomp-toolkit") - if args.build_dtk: - dtk = tools_path / "release" / f"dtk{exe}" - n.rule( - name="cargo", - command="cargo build --release --manifest-path $in --bin $bin --target-dir $target", - description="CARGO $bin", - depfile=path(Path("$target") / "release" / "$bin.d"), - deps="gcc", - ) - n.build( - outputs=path(dtk), - rule="cargo", - inputs=path(args.build_dtk / "Cargo.toml"), - variables={ - "bin": "dtk", - "target": tools_path, - }, - ) - else: - dtk = tools_path / f"dtk{exe}" - download_dtk = tools_path / "download_dtk.py" - n.rule( - name="download_dtk", - command=f"$python {download_dtk} $in $out", - description="DOWNLOAD $out", - ) - n.build( - outputs=path(dtk), - rule="download_dtk", - inputs=path([tools_path / "dtk_version"]), - implicit=path([download_dtk]), - ) - n.newline() - - # FIXME: Manual downloads because ninja doesn't play nice with directories, - # replace with automated system like dtk uses if workaround is found - if args.powerpc == Path("tools/powerpc") and not Path("tools/powerpc").exists(): - import tools.download_ppc - - tools.download_ppc.main() - - if args.compilers == Path("tools/mwcc_compiler") and not Path("tools/mwcc_compiler").exists(): - import tools.download_mwcc - - tools.download_mwcc.main() - - ### - # Rules - ### - compiler_path = args.compilers / "$mw_version" - mwcc = compiler_path / "mwcceppc.exe" - mwld = compiler_path / "mwldeppc.exe" - gnu_as = args.powerpc / f"powerpc-eabi-as{exe}" - - mwcc_cmd = f"{chain}{wine}{mwcc} $cflags -MMD -c $in -o $basedir" - if args.context: - mwcc_cmd += " && $python tools/decompctx.py $cfile -r -q" - mwld_cmd = f"{wine}{mwld} $ldflags -o $out @$out.rsp" - as_cmd = ( - f"{chain}{gnu_as} $asflags -o $out $in -MD $out.d" - + f" && {dtk} elf fixup $out $out" - ) - ar_cmd = f"{dtk} ar create $out @$out.rsp" - - if os.name != "nt": - transform_dep = tools_path / "transform-dep.py" - transform_dep_cmd = f" && $python {transform_dep} $basefile.d $basefile.d" - mwcc_cmd += transform_dep_cmd - - 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("MWCC build") - n.rule( - name="mwcc", - command=mwcc_cmd, - description="MWCC $out", - depfile="$basefile.d", - deps="gcc", - ) - n.newline() - - n.comment("Assemble asm") - n.rule( - name="as", - command=as_cmd, - description="AS $out", - depfile="$out.d", - deps="gcc", - ) - n.newline() - - n.comment("Create static library") - n.rule( - name="ar", - command=ar_cmd, - description="AR $out", - rspfile="$out.rsp", - rspfile_content="$in_newline", - ) - n.newline() - - 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", +parser = argparse.ArgumentParser() +parser.add_argument( + "mode", + choices=["configure", "progress"], + default="configure", + help="script mode (default: configure)", + nargs="?", +) +parser.add_argument( + "-v", + "--version", + choices=VERSIONS, + type=str.upper, + default=VERSIONS[DEFAULT_VERSION], + help="version to build", +) +parser.add_argument( + "--build-dir", + metavar="DIR", + type=Path, + default=Path("build"), + help="base build directory (default: build)", +) +parser.add_argument( + "--binutils", + metavar="BINARY", + type=Path, + help="path to binutils (optional)", +) +parser.add_argument( + "--compilers", + metavar="DIR", + type=Path, + help="path to compilers (optional)", +) +parser.add_argument( + "--map", + action="store_true", + help="generate map file(s)", +) +parser.add_argument( + "--debug", + action="store_true", + help="build with debug info (non-matching)", +) +if not is_windows(): + parser.add_argument( + "--wrapper", + metavar="BINARY", + type=Path, + help="path to wibo or wine (optional)", ) - n.newline() +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", +) +args = parser.parse_args() - ### - # Rules for source files - ### - n.comment("Source files") - src_path = Path("src") - asm_path = Path("asm") - build_src_path = build_path / "src" - build_host_path = build_path / "host" - build_asm_path = build_path / "asm" - build_lib_path = build_path / "lib" +config = ProjectConfig() +config.version = str(args.version) +version_num = VERSIONS.index(config.version) - objdiff_config = { - "min_version": "0.4.3", - "custom_make": "ninja", - "build_target": True, - "watch_patterns": [ - "*.c", - "*.cp", - "*.cpp", - "*.h", - "*.hpp", - "*.py", - ], - "units": [], - } +# 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.debug = args.debug +config.generate_map = args.map +config.non_matching = args.non_matching +config.sjiswrap_path = args.sjiswrap +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 - source_inputs = [] - host_source_inputs = [] - link_inputs = [] - used_compiler_versions = set() - for lib in LIBS: - inputs = [] - if "lib" in lib: - lib_name = lib["lib"] - n.comment(f"{lib_name}.a") - else: - n.comment("Loose files") +# Tool versions +config.binutils_tag = "2.42-1" +config.compilers_tag = "20240706" +config.dtk_tag = "v0.9.4" +config.objdiff_tag = "v2.0.0-beta.3" +config.sjiswrap_tag = "v1.1.1" +config.wibo_tag = "0.6.11" - for object in lib["objects"]: - completed = False - options = { - "add_to_all": True, - "mw_version": None, - "cflags": None, - } - if type(object) is list: - if len(object) > 1: - completed = object[1] - if len(object) > 2: - options.update(object[2]) - object = object[0] +# 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"--defsym version={version_num}", + "--no-warn", +] +config.ldflags = [ + "-fp hardware", + "-nodefaults", + "-warn off", +] +# Use for any additional files that should cause a re-configure when modified +config.reconfig_deps = [] - cflags = options["cflags"] or lib["cflags"] - mw_version = options["mw_version"] or lib["mw_version"] - used_compiler_versions.add(mw_version) +# Progress configuration +config.progress_all = False +config.progress_use_fancy = True +config.progress_code_fancy_frac = 10_000 +config.progress_code_fancy_item = "Pokos" +config.progress_data_fancy_frac = 201 +config.progress_data_fancy_item = "treasures" - # objdiff config - unit_config = { - "name": object, - "complete": completed, - } +# Base flags, common to most GC/Wii games. +# Generally leave untouched, with overrides added below. +cflags_base = [ + "-nodefaults", + "-proc gekko", + "-align powerpc", + "-enum int", + "-fp hardware", + "-Cpp_exceptions off", + # "-W all", + "-O4,p", + "-inline auto", + '-pragma "cats off"', + '-pragma "warn_notinlined off"', + "-maxerrors 1", + "-nosyspath", + "-RTTI off", + "-fp_contract on", + "-str reuse", + "-multibyte", + "-i include", + "-i include/stl", + f"-i build/{config.version}/include", + f"-DVERNUM={version_num}", +] - c_file = None - if os.path.exists(src_path / f"{object}.cpp"): - c_file = src_path / f"{object}.cpp" - elif os.path.exists(src_path / f"{object}.cp"): - c_file = src_path / f"{object}.cp" - elif os.path.exists(src_path / f"{object}.c"): - c_file = src_path / f"{object}.c" - elif os.path.exists(src_path / f"{object}.C"): - c_file = src_path / f"{object}.C" - elif os.path.exists(src_path / f"{object}.s"): # specifically for __exception.s - n.build( - outputs=path(build_src_path / f"{object}.o"), - rule="as", - inputs=path(src_path / f"{object}.s"), - implicit=path(dtk), - ) - if c_file is not None: - n.build( - outputs=path(build_src_path / f"{object}.o"), - rule="mwcc", - inputs=path(c_file), - variables={ - "mw_version": mw_version, - "cflags": options["cflags"] or lib["cflags"], - "basedir": os.path.dirname(build_src_path / f"{object}"), - "basefile": path(build_src_path / f"{object}"), - "cfile": path(c_file), - }, - implicit_outputs = None if not args.context else (str(c_file) + ".ctx") - ) - if lib["host"]: - n.build( - outputs=path(build_host_path / f"{object}.o"), - rule="host_cc" if c_file.suffix == ".c" else "host_cpp", - inputs=path(c_file), - variables={ - "basedir": os.path.dirname(build_host_path / object), - "basefile": path(build_host_path / object), - }, - ) - if options["add_to_all"]: - host_source_inputs.append(build_host_path / f"{object}.o") - if options["add_to_all"]: - source_inputs.append(build_src_path / f"{object}.o") - unit_config["base_path"] = str(build_src_path / f"{object}.o") - if os.path.exists(asm_path / f"{object}.s"): - n.build( - outputs=path(build_asm_path / f"{object}.o"), - rule="as", - inputs=path(asm_path / f"{object}.s"), - implicit=path(dtk), - ) - unit_config["target_path"] = str(build_asm_path / f"{object}.o") - objdiff_config["units"].append(unit_config) - if completed: - inputs.append(build_src_path / f"{object}.o") - else: - inputs.append(build_asm_path / f"{object}.o") - if args.static_libs and "lib" in lib: - lib_name = lib["lib"] - n.build( - outputs=path(build_lib_path / f"{lib_name}.a"), - rule="ar", - inputs=path(inputs), - implicit=path(dtk), - ) - link_inputs.append(build_lib_path / f"{lib_name}.a") - else: - link_inputs.extend(inputs) - n.newline() +# Debug flags +if config.debug: + cflags_base.extend(["-sym on", "-D_DEBUG=1"]) +else: + cflags_base.extend(["-DNDEBUG=1", "-w off"]) - # Check if all compiler versions exist - for mw_version in used_compiler_versions: - mw_path = args.compilers / mw_version / "mwcceppc.exe" - if not os.path.exists(mw_path): - print(f"Compiler {mw_path} does not exist") - exit(1) +# Metrowerks library flags +cflags_runtime = [ + *cflags_base, + "-use_lmw_stmw on", + "-str reuse,readonly", + "-common off", + "-inline auto", +] - # Check if linker exists - mw_path = args.compilers / mw_link_version / "mwldeppc.exe" - if not os.path.exists(mw_path): - print(f"Linker {mw_path} does not exist") - exit(1) +# Game code flags +cflags_pikmin = [ + *cflags_base, + "-use_lmw_stmw on", + "-str reuse,readonly", + "-common on", +] - ### - # Link - ### - n.comment("Link") - if args.map: - n.build( - outputs=path(build_path / "main.elf"), - rule="link", - inputs=path(link_inputs), - implicit_outputs=path(map_path), - ) - else: - n.build( - outputs=path(build_path / "main.elf"), - rule="link", - inputs=path(link_inputs), - ) - n.newline() +config.linker_version = "GC/2.6" - ### - # Helper rule for building all source files - ### - n.comment("Build all source files") - n.build( - outputs="all_source", - rule="phony", - inputs=path(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=path(host_source_inputs), - ) - n.newline() - - ### - # Generate DOL - ### - n.comment("Generate DOL") - n.rule( - name="elf2dol", - command=f"{dtk} elf2dol $in $out", - description="DOL $out", - ) - n.build( - outputs=path(build_path / "main.dol"), - rule="elf2dol", - inputs=path(build_path / "main.elf"), - implicit=path(dtk), - ) - n.newline() - - ### - # Check DOL hash - ### - if args.check: - n.comment("Check DOL hash") - n.rule( - name="check", - command=f"{dtk} shasum -c $in -o $out", - description="CHECK $in", - ) - n.build( - outputs=path(build_path / "main.dol.ok"), - rule="check", - inputs=f"sha1/pikmin2.{version}.sha1", - implicit=path([build_path / "main.dol", dtk]), - ) - n.newline() - - ### - # Progress script - ### - if args.map: - n.comment("Check progress") - calc_progress = tools_path / "calcprogress.py" - n.rule( - name="progress", - command=f"$python {calc_progress} $in -o $out", - description="PROGRESS $in", - ) - n.build( - outputs=path(build_path / "main.dol.progress"), - rule="progress", - inputs=path([build_path / "main.dol", map_path]), - implicit=path([calc_progress, build_path / "main.dol.ok"]), - ) - n.newline() - - ### - # Regenerate on change - ### - n.comment("Reconfigure on change") - n.rule( - name="configure", - command="$python configure.py $configure_args", - generator=True, - ) - n.build( - outputs="build.ninja", - rule="configure", - implicit=path(["configure.py", tools_path / "ninja_syntax.py"]), - ) - n.newline() - - ### - # Default rule - ### - n.comment("Default rule") - if args.check: - dol_out = build_path / "main.dol.ok" - else: - dol_out = build_path / "main.dol" - if args.map: - n.default(path([dol_out, build_path / "main.dol.progress"])) - else: - n.default(path([dol_out])) - - ### - # Write build.ninja - ### - with open("build.ninja", "w") as f: - f.write(out.getvalue()) - n.close() - - ### - # Write objdiff config - ### - with open("objdiff.json", "w") as w: - json.dump(objdiff_config, w, indent=4) +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 +config.warn_missing_config = True +config.warn_missing_source = False +config.libs = [ + { + "lib": "JStudio_JParticle", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "JSystem/JStudio_JParticle/object-particle.cpp"), + Object(Matching, "JSystem/JStudio_JParticle/control.cpp"), + ], + }, + { + "lib": "JMessage", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "JSystem/JMessage/resource.cpp"), + Object(Matching, "JSystem/JMessage/data.cpp"), + Object(NonMatching, "JSystem/JMessage/processor.cpp"), + Object(Matching, "JSystem/JMessage/control.cpp"), + ], + }, + { + "lib": "JStudio", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JStudio/stb-data-parse.cpp"), + Object(NonMatching, "JSystem/JStudio/functionvalue.cpp"), + Object(NonMatching, "JSystem/JStudio/fvb.cpp"), + Object(Matching, "JSystem/JStudio/fvb-data.cpp"), + Object(Matching, "JSystem/JStudio/fvb-data-parse.cpp"), + Object(Matching, "JSystem/JStudio/jstudio-control.cpp"), + Object(Matching, "JSystem/JStudio/jstudio-data.cpp"), + Object(NonMatching, "JSystem/JStudio/jstudio-object.cpp"), + Object(Matching, "JSystem/JStudio/object-id.cpp"), + Object(Matching, "JSystem/JStudio/stb.cpp"), + Object(Matching, "JSystem/JStudio/stb-data.cpp"), + Object(Matching, "JSystem/JStudio/jstudio-math.cpp"), + ], + }, + { + "lib": "JStudio_JStage", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "JSystem/JStudio_JStage/object-light.cpp"), + Object(Matching, "JSystem/JStudio_JStage/object.cpp"), + Object(Matching, "JSystem/JStudio_JStage/object-actor.cpp"), + Object(Matching, "JSystem/JStudio_JStage/object-ambientlight.cpp"), + Object(Matching, "JSystem/JStudio_JStage/object-camera.cpp"), + Object(Matching, "JSystem/JStudio_JStage/object-fog.cpp"), + Object(Matching, "JSystem/JStudio_JStage/control.cpp"), + ], + }, + { + "lib": "JStudio_JMessage", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JStudio_JMessage/object-message.cpp"), + Object(Matching, "JSystem/JStudio_JMessage/control.cpp"), + ], + }, + { + "lib": "JStudio_JAudio", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JStudio_JAudio/object-sound.cpp"), + Object(Matching, "JSystem/JStudio_JAudio/control.cpp"), + ], + }, + { + "lib": "J3DU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/J3DU/J3DUDL.cpp"), + Object(Matching, "JSystem/J3DU/J3DUMotion.cpp"), + Object(Matching, "JSystem/J3DU/J3DUShadow.cpp"), + Object(Matching, "JSystem/J3DU/J3DUMtxCache.cpp"), + ], + }, + { + "lib": "JKernel", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + 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(Matching, "JSystem/JKernel/JKRArchivePri.cpp"), + Object(Matching, "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/JKRDvdFile.cpp"), + Object(Matching, "JSystem/JKernel/JKRDvdAramRipper.cpp"), + Object(Matching, "JSystem/JKernel/JKRDvdArchive.cpp"), + Object(Matching, "JSystem/JKernel/JKRDvdRipper.cpp"), + Object(Matching, "JSystem/JKernel/JKRExpHeap.cpp"), + Object(Matching, "JSystem/JKernel/JKRFileCache.cpp"), + Object(Matching, "JSystem/JKernel/JKRFileFinder.cpp"), + Object(Matching, "JSystem/JKernel/JKRFile.cpp"), + Object(Matching, "JSystem/JKernel/JKRFileLoader.cpp"), + Object(Matching, "JSystem/JKernel/JKRHeap.cpp"), + Object(Matching, "JSystem/JKernel/JKRMemArchive.cpp"), + Object(Matching, "JSystem/JKernel/JKRSolidHeap.cpp"), + Object(Matching, "JSystem/JKernel/JKRThread.cpp"), + ], + }, + { + "lib": "JSupport", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JSupport/JSUOutputStream.cpp"), + Object(Matching, "JSystem/JSupport/JSUInputStream.cpp"), + Object(Matching, "JSystem/JSupport/JSUList.cpp"), + Object(Matching, "JSystem/JSupport/JSUMemoryStream.cpp"), + Object(Matching, "JSystem/JSupport/JSUFileStream.cpp"), + ], + }, + { + "lib": "JGadget", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JGadget/binary.cpp"), + Object(Matching, "JSystem/JGadget/linklist.cpp"), + Object(Matching, "JSystem/JGadget/std-list.cpp"), + Object(Matching, "JSystem/JGadget/std-vector.cpp"), + ], + }, + { + "lib": "JUtility", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JUtility/JUTAssert.cpp"), + Object(Matching, "JSystem/JUtility/JUTConsole.cpp"), + Object(Matching, "JSystem/JUtility/JUTDbPrint.cpp"), + Object(Matching, "JSystem/JUtility/JUTDirectFile.cpp"), + Object(Matching, "JSystem/JUtility/JUTDirectPrint.cpp"), + Object(Matching, "JSystem/JUtility/JUTException.cpp"), + Object(Matching, "JSystem/JUtility/JUTFader.cpp"), + Object(Matching, "JSystem/JUtility/JUTFont.cpp"), + Object(Matching, "JSystem/JUtility/JUTGamePad.cpp"), + Object(Matching, "JSystem/JUtility/JUTGraphFifo.cpp"), + Object(Matching, "JSystem/JUtility/JUTNameTab.cpp"), + Object(Matching, "JSystem/JUtility/JUTPalette.cpp"), + Object(Matching, "JSystem/JUtility/JUTProcBar.cpp"), + Object(Matching, "JSystem/JUtility/JUTResFont.cpp"), + Object(Matching, "JSystem/JUtility/JUTResource.cpp"), + Object(Matching, "JSystem/JUtility/JUTRomFont.cpp"), + Object(Matching, "JSystem/JUtility/JUTFontData_Ascfont_fix12.cpp"), + Object(Matching, "JSystem/JUtility/JUTTexture.cpp"), + Object(Matching, "JSystem/JUtility/JUTVideo.cpp"), + Object(Matching, "JSystem/JUtility/JUTXfb.cpp"), + Object(Matching, "JSystem/JUtility/JUTCacheFont.cpp"), + ], + }, + { + "lib": "JMath", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JMath/JMath.cpp"), + Object(Matching, "JSystem/JMath/random.cpp"), + Object(Matching, "JSystem/JMath/JMATrigonometric.cpp"), + ], + }, + { + "lib": "J2D", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/J2D/J2DOrthoGraph.cpp"), + Object(Matching, "JSystem/J2D/J2DPerspGraph.cpp"), + Object(Matching, "JSystem/J2D/J2DGrafContext.cpp"), + Object(Matching, "JSystem/J2D/J2DPane.cpp"), + Object(NonMatching, "JSystem/J2D/J2DPicture.cpp"), + Object(Matching, "JSystem/J2D/J2DPrint.cpp"), + Object(NonMatching, "JSystem/J2D/J2DScreen.cpp"), + Object(Matching, "JSystem/J2D/J2DTextBox.cpp"), + Object(NonMatching, "JSystem/J2D/J2DWindow.cpp"), + Object(NonMatching, "JSystem/J2D/J2DWindowEx.cpp"), + Object(Matching, "JSystem/J2D/J2DAnmLoader.cpp"), + Object(NonMatching, "JSystem/J2D/J2DBloSaver.cpp"), + Object(Matching, "JSystem/J2D/J2DManage.cpp"), + Object(NonMatching, "JSystem/J2D/J2DMatBlock.cpp"), + Object(NonMatching, "JSystem/J2D/J2DMaterial.cpp"), + Object(NonMatching, "JSystem/J2D/J2DMaterialFactory.cpp"), + Object(NonMatching, "JSystem/J2D/J2DPictureEx.cpp"), + Object(Matching, "JSystem/J2D/J2DTevs.cpp"), + Object(NonMatching, "JSystem/J2D/J2DTextBoxEx.cpp"), + Object(Matching, "JSystem/J2D/J2DAnimation.cpp"), + ], + }, + { + "lib": "J3D", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/J3D/J3DSys.cpp"), + Object(Matching, "JSystem/J3D/J3DVertex.cpp"), + Object(Matching, "JSystem/J3D/J3DTransform.cpp"), + Object(Matching, "JSystem/J3D/J3DPacket.cpp"), + Object(NonMatching, "JSystem/J3D/J3DShape.cpp"), + Object(NonMatching, "JSystem/J3D/J3DMaterial.cpp"), + Object(NonMatching, "JSystem/J3D/J3DTevs.cpp"), + Object(Matching, "JSystem/J3D/J3DDrawBuffer.cpp"), + Object(NonMatching, "JSystem/J3D/J3DModel.cpp"), + Object(Matching, "JSystem/J3D/J3DAnimation.cpp"), + Object(Matching, "JSystem/J3D/J3DMaterialAnm.cpp"), + Object(NonMatching, "JSystem/J3D/J3DCluster.cpp"), + Object(NonMatching, "JSystem/J3D/J3DJoint.cpp"), + Object(NonMatching, "JSystem/J3D/J3DMaterialFactory.cpp"), + Object(Matching, "JSystem/J3D/J3DBinaryFormat.cpp"), + Object(Matching, "JSystem/J3D/J3DModelLoader.cpp"), + Object(Matching, "JSystem/J3D/J3DJointFactory.cpp"), + Object(Matching, "JSystem/J3D/J3DShapeFactory.cpp"), + Object(Matching, "JSystem/J3D/J3DAnmLoader.cpp"), + Object(Matching, "JSystem/J3D/J3DModelSaver.cpp"), + Object(NonMatching, "JSystem/J3D/J3DGD.cpp"), + Object(NonMatching, "JSystem/J3D/J3DMatBlock.cpp"), + Object(Matching, "JSystem/J3D/J3DModelData.cpp"), + Object(NonMatching, "JSystem/J3D/J3DMaterialAttach.cpp"), + Object(NonMatching, "JSystem/J3D/J3DMaterialFactory_v21.cpp"), + Object(Matching, "JSystem/J3D/J3DShapeMtx.cpp"), + Object(NonMatching, "JSystem/J3D/J3DModelLoaderCalcSize.cpp"), + Object(Matching, "JSystem/J3D/J3DJointTree.cpp"), + Object(Matching, "JSystem/J3D/J3DSkinDeform.cpp"), + Object(Matching, "JSystem/J3D/J3DShapeDraw.cpp"), + Object(NonMatching, "JSystem/J3D/J3DMtxBuffer.cpp"), + Object(Matching, "JSystem/J3D/J3DShapeTable.cpp"), + ], + }, + { + "lib": "JFramework", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JFramework/JFWSystem.cpp"), + Object(Matching, "JSystem/JFramework/JFWDisplay.cpp"), + ], + }, + { + "lib": "JParticle", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "JSystem/JParticle/JPABaseShape.cpp"), + Object(Matching, "JSystem/JParticle/JPAChildShape.cpp"), + Object(NonMatching, "JSystem/JParticle/JPADynamicsBlock.cpp"), + Object(Matching, "JSystem/JParticle/JPAEmitter.cpp"), + Object(Matching, "JSystem/JParticle/JPAEmitterManager.cpp"), + Object(Matching, "JSystem/JParticle/JPAExTexShape.cpp"), + Object(Matching, "JSystem/JParticle/JPAExtraShape.cpp"), + Object(Matching, "JSystem/JParticle/JPAFieldBlock.cpp"), + Object(Matching, "JSystem/JParticle/JPAKeyBlock.cpp"), + Object(NonMatching, "JSystem/JParticle/JPAMath.cpp"), + Object(Matching, "JSystem/JParticle/JPAParticle.cpp"), + Object(NonMatching, "JSystem/JParticle/JPAResource.cpp"), + Object(NonMatching, "JSystem/JParticle/JPAResourceLoader.cpp"), + Object(Matching, "JSystem/JParticle/JPAResourceManager.cpp"), + Object(Matching, "JSystem/JParticle/JPATexture.cpp"), + ], + }, + { + "lib": "JStage", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JStage/JSGSystem.cpp"), + Object(Matching, "JSystem/JStage/JSGCamera.cpp"), + Object(Matching, "JSystem/JStage/JSGObject.cpp"), + Object(Matching, "JSystem/JStage/JSGActor.cpp"), + ], + }, + { + "lib": "JAudio_JAS", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "JSystem/JAudio/JAS/JASWSParser.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASBankMgr.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASBasicBank.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASBasicInst.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASBasicWaveBank.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASBNKParser.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASDrumSet.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASInstEffect.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASInstRand.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASInstSense.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASSimpleWaveBank.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASWaveArcLoader.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASWaveBank.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASWaveBankMgr.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASBank.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASTrackPort.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASOuterParam.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASPlayer_impl.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASRegisterParam.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASSeqCtrl.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASSeqParser.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASTrack.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASTrackInterrupt.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASOscillator.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASChannel.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASDriverIF.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASDSPChannel.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASDSPInterface.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASAudioThread.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASCalc.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASCallback.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASCmdStack.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASDvdThread.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASHeapCtrl.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASProbe.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASResArcLoader.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASReport.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASAiCtrl.cpp"), + Object(Matching, "JSystem/JAudio/JAS/JASChannelUpdater.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASTaskThread.cpp"), + Object(NonMatching, "JSystem/JAudio/JAS/JASAramStream.cpp"), + ], + }, + { + "lib": "JAudio_DSP", + "cflags": [ + *cflags_pikmin, + "-lang=c++", + "-func_align 32", + "-inline noauto", + "-common off", + "-use_lmw_stmw off", + "-O4,s", + ], + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JAudio/dsp/dspproc.c"), + Object(Matching, "JSystem/JAudio/dsp/dsptask.c"), + Object(Matching, "JSystem/JAudio/dsp/osdsp.c"), + Object(Matching, "JSystem/JAudio/dsp/osdsp_task.c"), + ], + }, + { + "lib": "JAudio_JAI", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "JSystem/JAudio/JAI/JAIAnimation.cpp"), + Object(Matching, "JSystem/JAudio/JAI/JAIBankWave.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAIBasic.cpp"), + Object(Matching, "JSystem/JAudio/JAI/JAIConst.cpp"), + Object(Matching, "JSystem/JAudio/JAI/JAIDummyObject.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAIFx.cpp"), + Object(Matching, "JSystem/JAudio/JAI/JAIGlobalParameter.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAIInitData.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAISeMgr.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAISequenceHeap.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAISequenceMgr.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAISound.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAISoundTable.cpp"), + Object(NonMatching, "JSystem/JAudio/JAI/JAIStreamMgr.cpp"), + Object(Matching, "JSystem/JAudio/JAI/JAISystemInterface.cpp"), + Object(Matching, "JSystem/JAudio/JAI/JAIObject.cpp"), + ], + }, + { + "lib": "JAudio_JAD", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [Object(Matching, "JSystem/JAudio/JAD/JADHioNode.cpp")], + }, + { + "lib": "JAudio_JAL", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [Object(Matching, "JSystem/JAudio/JAL/JALCalc.cpp")], + }, + { + "lib": "JAudio_JAU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "JSystem/JAudio/JAU/JAUData.cpp"), + Object(Matching, "JSystem/JAudio/JAU/JAUDataMgr.cpp"), + ], + }, + { + "lib": "TRK_MINNOW_DOLPHIN", + "cflags": [*cflags_runtime, "-inline deferred", "-sdata 0", "-sdata2 0"], + "mw_version": "GC/2.6", + "host": False, + "objects": [ + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/mainloop.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/nubevent.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/nubinit.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/msg.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/msgbuf.c"), + Object( + Matching, + "Dolphin/TRK_MINNOW_DOLPHIN/serpoll.c", + extra_cflags=["-sdata 8"], + ), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/usr_put.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/dispatch.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/msghndlr.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/support.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/mutex_TRK.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/notify.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/flush_cache.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/mem_TRK.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/targimpl.c"), + Object( + Matching, + "Dolphin/TRK_MINNOW_DOLPHIN/targsupp.c", + extra_cflags=["-func_align 32"], + ), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/__exception.s"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/main_TRK.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/targcont.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/target_options.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/mslsupp.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/UDP_Stubs.c"), + Object( + Matching, + "Dolphin/TRK_MINNOW_DOLPHIN/ddh/main.c", + extra_cflags=["-sdata 8"], + ), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/CircleBuffer.c"), + Object( + Matching, + "Dolphin/TRK_MINNOW_DOLPHIN/gdev/main.c", + extra_cflags=["-sdata 8"], + ), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/MWTrace.c"), + Object(Matching, "Dolphin/TRK_MINNOW_DOLPHIN/MWCriticalSection_gc.cpp"), + ], + }, + { + "lib": "Runtime", + "cflags": [*cflags_runtime, "-inline deferred"], + "mw_version": "GC/2.6", + "host": False, + "objects": [ + Object(Matching, "Dolphin/Runtime/__va_arg.c"), + Object(Matching, "Dolphin/Runtime/global_destructor_chain.c"), + Object(Matching, "Dolphin/Runtime/CPlusLibPPC.cp"), + Object( + Matching, + "Dolphin/Runtime/NMWException.cp", + extra_cflags=["-Cpp_exceptions on"], + ), + Object(Matching, "Dolphin/Runtime/ptmf.c"), + Object(Matching, "Dolphin/Runtime/runtime.c"), + Object(Matching, "Dolphin/Runtime/__init_cpp_exceptions.cpp"), + Object( + Matching, + "Dolphin/Runtime/Gecko_ExceptionPPC.cp", + extra_cflags=["-Cpp_exceptions on"], + ), + Object(Matching, "Dolphin/Runtime/GCN_mem_alloc.c"), + Object(Matching, "Dolphin/Runtime/__mem.c"), + ], + }, + { + "lib": "MSL_C", + "cflags": [*cflags_runtime, "-inline deferred"], + "mw_version": "GC/2.6", + "host": False, + "objects": [ + Object(Matching, "Dolphin/MSL_C/PPC_EABI/abort_exit.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/alloc.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/ansi_files.c"), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/ansi_fp.c", + extra_cflags=["-str pool"], + ), + Object(Matching, "Dolphin/MSL_C/MSL_Common/arith.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/buffer_io.c"), + Object(Matching, "Dolphin/MSL_C/PPC_EABI/critical_regions.gamecube.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/ctype.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/direct_io.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/errno.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/file_io.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/FILE_POS.C"), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common/locale.c", + extra_cflags=["-str pool"], + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common/mbstring.c", + extra_cflags=["-inline noauto,deferred"], + ), + Object(Matching, "Dolphin/MSL_C/MSL_Common/mem.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/mem_funcs.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/misc_io.c"), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common/printf.c", + extra_cflags=["-str pool"], + ), + Object(Matching, "Dolphin/MSL_C/MSL_Common/rand.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/float.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/scanf.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/string.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/strtold.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/strtoul.c"), + Object(Matching, "Dolphin/MSL_C/MSL_Common/wchar_io.c"), + Object(Matching, "Dolphin/MSL_C/PPC_EABI/uart_console_io_gcn.c"), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_asin.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_atan2.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_exp.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_fmod.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log10.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_pow.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_rem_pio2.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_cos.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_rem_pio2.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_sin.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_tan.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_atan.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ceil.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_copysign.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_cos.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_floor.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_frexp.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ldexp.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_modf.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_sin.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_tan.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_asin.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_atan2.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_exp.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_fmod.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_log10.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_pow.c", + ), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_sqrt.c", + ), + Object(Matching, "Dolphin/MSL_C/PPC_EABI/math_ppc.c"), + Object( + Matching, + "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_sqrt.c", + ), + Object(Matching, "Dolphin/MSL_C/MSL_Common/extras.c"), + ], + }, + { + "lib": "OdemuExi2", + "cflags": [*cflags_runtime, "-inline deferred"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [Object(Matching, "Dolphin/OdemuExi2/DebuggerDriver.c")], + }, + { + "lib": "vi", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [Object(Matching, "Dolphin/vi/vi.c")], + }, + { + "lib": "amcstubs", + "cflags": cflags_runtime, + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [Object(Matching, "Dolphin/amcstubs/AmcExi2Stubs.c")], + }, + { + "lib": "ar", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/ar/ar.c"), + Object(Matching, "Dolphin/ar/arq.c"), + ], + }, + { + "lib": "base", + "cflags": cflags_runtime, + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [Object(Matching, "Dolphin/base/PPCArch.c")], + }, + { + "lib": "card", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/card/CARDBios.c"), + Object(Matching, "Dolphin/card/CARDUnlock.c"), + Object(Matching, "Dolphin/card/CARDRdwr.c"), + Object(Matching, "Dolphin/card/CARDBlock.c"), + Object(Matching, "Dolphin/card/CARDDir.c"), + Object(Matching, "Dolphin/card/CARDCheck.c"), + Object(Matching, "Dolphin/card/CARDMount.c"), + Object(Matching, "Dolphin/card/CARDFormat.c"), + Object(Matching, "Dolphin/card/CARDOpen.c"), + Object(Matching, "Dolphin/card/CARDCreate.c"), + Object(Matching, "Dolphin/card/CARDRead.c"), + Object(Matching, "Dolphin/card/CARDWrite.c"), + Object(Matching, "Dolphin/card/CARDStat.c"), + Object(Matching, "Dolphin/card/CARDNet.c"), + ], + }, + { + "lib": "db", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [Object(Matching, "Dolphin/db/db.c")], + }, + { + "lib": "dsp", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/dsp/dsp.c"), + Object(Matching, "Dolphin/dsp/dsp_debug.c"), + Object(Matching, "Dolphin/dsp/dsp_task.c"), + ], + }, + { + "lib": "dvd", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/dvd/dvdlow.c"), + Object(Matching, "Dolphin/dvd/dvdfs.c"), + Object(Matching, "Dolphin/dvd/dvd.c"), + Object(Matching, "Dolphin/dvd/dvdqueue.c"), + Object(Matching, "Dolphin/dvd/dvderror.c"), + Object(Matching, "Dolphin/dvd/dvdidutils.c"), + Object(Matching, "Dolphin/dvd/dvdFatal.c"), + Object(Matching, "Dolphin/dvd/fstload.c"), + ], + }, + { + "lib": "exi", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/exi/EXIBios.c"), + Object(Matching, "Dolphin/exi/EXIUart.c"), + ], + }, + { + "lib": "gd", + "cflags": cflags_runtime, + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/gd/GDBase.c"), + Object(Matching, "Dolphin/gd/GDGeometry.c"), + ], + }, + { + "lib": "gx", + "cflags": [*cflags_runtime, "-str noreadonly", "-fp_contract off"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/gx/GXInit.c"), + Object(Matching, "Dolphin/gx/GXFifo.c"), + Object(Matching, "Dolphin/gx/GXAttr.c"), + Object(Matching, "Dolphin/gx/GXMisc.c"), + Object(Matching, "Dolphin/gx/GXGeometry.c"), + Object(Matching, "Dolphin/gx/GXFrameBuf.c"), + Object(Matching, "Dolphin/gx/GXLight.c"), + Object(Matching, "Dolphin/gx/GXTexture.c"), + Object(Matching, "Dolphin/gx/GXBump.c"), + Object(Matching, "Dolphin/gx/GXTev.c"), + Object(Matching, "Dolphin/gx/GXPixel.c"), + Object(Matching, "Dolphin/gx/GXDisplayList.c"), + Object(Matching, "Dolphin/gx/GXTransform.c"), + Object(Matching, "Dolphin/gx/GXPerf.c"), + ], + }, + { + "lib": "mtx", + "cflags": cflags_runtime, + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/mtx/mtx.c"), + Object(Matching, "Dolphin/mtx/mtxvec.c"), + Object(Matching, "Dolphin/mtx/mtx44.c"), + Object(Matching, "Dolphin/mtx/vec.c"), + ], + }, + { + "lib": "odenotstub", + "cflags": cflags_runtime, + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [Object(Matching, "Dolphin/odenotstub/odenotstub.c")], + }, + { + "lib": "os", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/os/OS.c"), + Object(Matching, "Dolphin/os/OSAlarm.c"), + Object(Matching, "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(Matching, "Dolphin/os/OSFont.c"), + Object(Matching, "Dolphin/os/OSInterrupt.c"), + Object(Matching, "Dolphin/os/OSLink.c"), + Object(Matching, "Dolphin/os/OSMessage.c"), + Object(Matching, "Dolphin/os/OSMemory.c"), + Object(Matching, "Dolphin/os/OSMutex.c"), + Object(Matching, "Dolphin/os/OSReboot.c"), + Object(Matching, "Dolphin/os/OSReset.c"), + Object(Matching, "Dolphin/os/OSResetSW.c"), + Object(Matching, "Dolphin/os/OSRtc.c"), + Object(Matching, "Dolphin/os/OSSync.c"), + Object(Matching, "Dolphin/os/OSThread.c"), + Object(Matching, "Dolphin/os/OSTime.c"), + Object(Matching, "Dolphin/os/__start.c"), + Object(Matching, "Dolphin/os/__ppc_eabi_init.cpp"), + ], + }, + { + "lib": "pad", + "cflags": [*cflags_runtime, "-fp_contract off", "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/pad/Padclamp.c"), + Object(Matching, "Dolphin/pad/Pad.c"), + ], + }, + { + "lib": "si", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/si/SIBios.c"), + Object(Matching, "Dolphin/si/SISamplingRate.c"), + ], + }, + { + "lib": "ai", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [Object(Matching, "Dolphin/ai/ai.c")], + }, + { + "lib": "thp", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/thp/THPDec.c"), + Object(Matching, "Dolphin/thp/THPAudio.c"), + ], + }, + { + "lib": "gba", + "cflags": [*cflags_runtime, "-str noreadonly"], + "mw_version": "GC/1.2.5n", + "host": False, + "objects": [ + Object(Matching, "Dolphin/gba/GBA.c"), + Object(Matching, "Dolphin/gba/GBARead.c"), + Object(Matching, "Dolphin/gba/GBAWrite.c"), + Object(Matching, "Dolphin/gba/GBAXfer.c"), + ], + }, + { + "lib": "plugProjectYamashitaU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "plugProjectYamashitaU/enemyBase.cpp"), + Object(Matching, "plugProjectYamashitaU/pelplant.cpp"), + Object(Matching, "plugProjectYamashitaU/pelplantState.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyInteractBattle.cpp"), + Object(Matching, "plugProjectYamashitaU/generalEnemyMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/kochappyAnimator.cpp"), + Object(Matching, "plugProjectYamashitaU/kochappy.cpp"), + Object(NonMatching, "plugProjectYamashitaU/kochappyState.cpp"), + Object(Matching, "plugProjectYamashitaU/kochappyMgr.cpp"), + Object(NonMatching, "plugProjectYamashitaU/enemyAction.cpp"), + Object(Matching, "plugProjectYamashitaU/chappy.cpp"), + Object(NonMatching, "plugProjectYamashitaU/chappyState.cpp"), + Object(Matching, "plugProjectYamashitaU/chappyAnimator.cpp"), + Object(Matching, "plugProjectYamashitaU/chappyMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/lifeGaugeMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/carryInfoMgr.cpp"), + Object(NonMatching, "plugProjectYamashitaU/gameLightMgr.cpp"), + Object(NonMatching, "plugProjectYamashitaU/vtxAnm.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyInfo.cpp"), + Object(Matching, "plugProjectYamashitaU/farm.cpp"), + Object(Matching, "plugProjectYamashitaU/farmMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/genEnemy.cpp"), + Object(Matching, "plugProjectYamashitaU/timeMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/pelplantGenerator.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyInteractActions.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyAnimatorBase.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyStoneMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyStoenInfo.cpp"), + Object(NonMatching, "plugProjectYamashitaU/enemyStoneDrawInfo.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyStoneObj.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyParmsBase.cpp"), + Object(Matching, "plugProjectYamashitaU/walkSmokeEffect.cpp"), + Object(Matching, "plugProjectYamashitaU/ChappyBaseMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/ChappyBase.cpp"), + Object(Matching, "plugProjectYamashitaU/BlueChappyMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/BlueChappy.cpp"), + Object(Matching, "plugProjectYamashitaU/YellowChappyMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/YellowChappy.cpp"), + Object(Matching, "plugProjectYamashitaU/BlueKochappyMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/BlueKochappy.cpp"), + Object(Matching, "plugProjectYamashitaU/YellowKochappy.cpp"), + Object(Matching, "plugProjectYamashitaU/YellowKochappyMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/KochappyBaseMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/KochappyBase.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyBlendAnimatorBase.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyPelletInfo.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyEffectNode.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyMgrBase.cpp"), + Object(Matching, "plugProjectYamashitaU/enemyFSM.cpp"), + Object(NonMatching, "plugProjectYamashitaU/singleGS_ZukanParms.cpp"), + Object(Matching, "plugProjectYamashitaU/treasureLightMgr.cpp"), + Object(Matching, "plugProjectYamashitaU/effectAnimator.cpp"), + ], + }, + { + "lib": "plugProjectKandoU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "plugProjectKandoU/pikiAnimator.cpp"), + Object(NonMatching, "plugProjectKandoU/collinfo.cpp"), + Object(NonMatching, "plugProjectKandoU/gameDynamics.cpp"), + Object(Matching, "plugProjectKandoU/creature.cpp"), + Object(NonMatching, "plugProjectKandoU/fakePiki.cpp"), + Object(NonMatching, "plugProjectKandoU/navi.cpp"), + Object(NonMatching, "plugProjectKandoU/piki.cpp"), + Object(NonMatching, "plugProjectKandoU/baseGameSection.cpp"), + Object(Matching, "plugProjectKandoU/singleGameSection.cpp"), + Object(NonMatching, "plugProjectKandoU/cellPyramid.cpp"), + Object(Matching, "plugProjectKandoU/naviMgr.cpp"), + Object(Matching, "plugProjectKandoU/pikiMgr.cpp"), + Object(Matching, "plugProjectKandoU/mapMgr.cpp"), + Object(Matching, "plugProjectKandoU/baseHIOSection.cpp"), + Object(NonMatching, "plugProjectKandoU/naviWhistle.cpp"), + Object(NonMatching, "plugProjectKandoU/pelletMgr.cpp"), + Object(NonMatching, "plugProjectKandoU/routeMgr.cpp"), + Object(Matching, "plugProjectKandoU/onyonMgr.cpp"), + Object(Matching, "plugProjectKandoU/objectTypes.cpp"), + Object(NonMatching, "plugProjectKandoU/naviState.cpp"), + Object(NonMatching, "plugProjectKandoU/pikiState.cpp"), + Object(Matching, "plugProjectKandoU/interactPiki.cpp"), + Object(NonMatching, "plugProjectKandoU/gameCPlate.cpp"), + Object(Matching, "plugProjectKandoU/updateMgr.cpp"), + Object(Matching, "plugProjectKandoU/aiAction.cpp"), + Object(NonMatching, "plugProjectKandoU/aiPrimitives.cpp"), + Object(NonMatching, "plugProjectKandoU/aiFormation.cpp"), + Object(Matching, "plugProjectKandoU/creatureStick.cpp"), + Object(Matching, "plugProjectKandoU/interactBattle.cpp"), + Object(Matching, "plugProjectKandoU/aiFree.cpp"), + Object(Matching, "plugProjectKandoU/aiAttack.cpp"), + Object(Matching, "plugProjectKandoU/aiTransport.cpp"), + Object(NonMatching, "plugProjectKandoU/aiEnter.cpp"), + Object(NonMatching, "plugProjectKandoU/pathfinder.cpp"), + Object(NonMatching, "plugProjectKandoU/pelletState.cpp"), + Object(NonMatching, "plugProjectKandoU/dynCreature.cpp"), + Object(Matching, "plugProjectKandoU/gameGenerator.cpp"), + Object(Matching, "plugProjectKandoU/genPiki.cpp"), + Object(Matching, "plugProjectKandoU/genNavi.cpp"), + Object(Matching, "plugProjectKandoU/genItem.cpp"), + Object(Matching, "plugProjectKandoU/gameStages.cpp"), + Object(Matching, "plugProjectKandoU/gameSeaMgr.cpp"), + Object(Matching, "plugProjectKandoU/pikiAI.cpp"), + Object(Matching, "plugProjectKandoU/pelletConfig.cpp"), + Object(Matching, "plugProjectKandoU/gameFootmark.cpp"), + Object(Matching, "plugProjectKandoU/gameSystem.cpp"), + Object(Matching, "plugProjectKandoU/aiConstants.cpp"), + Object(NonMatching, "plugProjectKandoU/gameMapParts.cpp"), + Object(Matching, "plugProjectKandoU/vsGameSection.cpp"), + Object(Matching, "plugProjectKandoU/gamePlatMgr.cpp"), + Object(NonMatching, "plugProjectKandoU/itemGate.cpp"), + Object(Matching, "plugProjectKandoU/itemMgr.cpp"), + Object(NonMatching, "plugProjectKandoU/aiBreakGate.cpp"), + Object(Matching, "plugProjectKandoU/gameStat.cpp"), + Object(Matching, "plugProjectKandoU/itemHole.cpp"), + Object(NonMatching, "plugProjectKandoU/itemHoney.cpp"), + Object(NonMatching, "plugProjectKandoU/gameCaveInfo.cpp"), + Object(NonMatching, "plugProjectKandoU/creatureLOD.cpp"), + Object(Matching, "plugProjectKandoU/interactNavi.cpp"), + Object(NonMatching, "plugProjectKandoU/itemPikihead.cpp"), + Object(NonMatching, "plugProjectKandoU/itemPlant.cpp"), + Object(Matching, "plugProjectKandoU/itemRock.cpp"), + Object(Matching, "plugProjectKandoU/aiBreakRock.cpp"), + Object(Matching, "plugProjectKandoU/aiCrop.cpp"), + Object(Matching, "plugProjectKandoU/registItem.cpp"), + Object(NonMatching, "plugProjectKandoU/gamePlayData.cpp"), + Object(NonMatching, "plugProjectKandoU/itemCave.cpp"), + Object(Matching, "plugProjectKandoU/itemBigFountain.cpp"), + Object(NonMatching, "plugProjectKandoU/itemBridge.cpp"), + Object(Matching, "plugProjectKandoU/pikiContainer.cpp"), + Object(Matching, "plugProjectKandoU/gameGeneratorCache.cpp"), + Object(Matching, "plugProjectKandoU/itemTreasure.cpp"), + Object(Matching, "plugProjectKandoU/itemDownFloor.cpp"), + Object(Matching, "plugProjectKandoU/kandoLib.cpp"), + Object(Matching, "plugProjectKandoU/itemBarrel.cpp"), + Object(Matching, "plugProjectKandoU/pelletNumber.cpp"), + Object(Matching, "plugProjectKandoU/pelletCarcass.cpp"), + Object(Matching, "plugProjectKandoU/pelletFruit.cpp"), + Object(Matching, "plugProjectKandoU/pelletOtakara.cpp"), + Object(Matching, "plugProjectKandoU/genPellet.cpp"), + Object(Matching, "plugProjectKandoU/pelletItem.cpp"), + Object(Matching, "plugProjectKandoU/mapMgrTraceMove.cpp"), + Object(Matching, "plugProjectKandoU/efxModelObjects.cpp"), + Object(NonMatching, "plugProjectKandoU/itemUjamushi.cpp"), + Object(Matching, "plugProjectKandoU/aiWeed.cpp"), + Object(NonMatching, "plugProjectKandoU/flockMgr.cpp"), + Object(NonMatching, "plugProjectKandoU/itemWeed.cpp"), + Object(Matching, "plugProjectKandoU/aiBridge.cpp"), + Object(Matching, "plugProjectKandoU/aiTeki.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_MainGame.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_CaveGame.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_MainResult.cpp"), + Object(NonMatching, "plugProjectKandoU/singleGS_CaveResult.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_WorldMap.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_FileSelect.cpp"), + Object(NonMatching, "plugProjectKandoU/gamePlayDataMemCard.cpp"), + Object(Matching, "plugProjectKandoU/baseHIOparms.cpp"), + Object(Matching, "plugProjectKandoU/radarInfo.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_Movie.cpp"), + Object(Matching, "plugProjectKandoU/navi_demoCheck.cpp"), + Object(NonMatching, "plugProjectKandoU/singleGS_Zukan.cpp"), + Object(Matching, "plugProjectKandoU/gameResultTexMgr.cpp"), + Object(Matching, "plugProjectKandoU/gamePelletList.cpp"), + Object(Matching, "plugProjectKandoU/vsGS_Title.cpp"), + Object(Matching, "plugProjectKandoU/vsGS_Game.cpp"), + Object(Matching, "plugProjectKandoU/vsGS_Result.cpp"), + Object(Matching, "plugProjectKandoU/vsGS_Load.cpp"), + Object(Matching, "plugProjectKandoU/vsStageData.cpp"), + Object(Matching, "plugProjectKandoU/cellMgrParms.cpp"), + Object(NonMatching, "plugProjectKandoU/cellIterator.cpp"), + Object(Matching, "plugProjectKandoU/vsGS_VSGame.cpp"), + Object(Matching, "plugProjectKandoU/gameSoundEvent.cpp"), + Object(Matching, "plugProjectKandoU/aiBattle.cpp"), + Object(Matching, "plugProjectKandoU/gameDeathCount.cpp"), + Object(Matching, "plugProjectKandoU/aiBore.cpp"), + Object(Matching, "plugProjectKandoU/mapPartsView.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_Ending.cpp"), + Object(Matching, "plugProjectKandoU/gameIconTexture.cpp"), + Object(Matching, "plugProjectKandoU/gameTekiStat.cpp"), + Object(Matching, "plugProjectKandoU/gameHighscore.cpp"), + Object(Matching, "plugProjectKandoU/gamePlayCommonData.cpp"), + Object(Matching, "plugProjectKandoU/pelletCarry.cpp"), + Object(Matching, "plugProjectKandoU/gameChallenge2D.cpp"), + Object(Matching, "plugProjectKandoU/vsTekiMgr.cpp"), + Object(NonMatching, "plugProjectKandoU/vsCardMgr.cpp"), + Object(Matching, "plugProjectKandoU/aiRescue.cpp"), + Object(Matching, "plugProjectKandoU/baseGameSectionDraw.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_Load.cpp"), + Object(Matching, "plugProjectKandoU/singleGS_DayEnd.cpp"), + Object(Matching, "plugProjectKandoU/baseGameSectionKantei.cpp"), + Object(Matching, "plugProjectKandoU/sweepPrune.cpp"), + Object(NonMatching, "plugProjectKandoU/texCaster.cpp"), + Object(Matching, "plugProjectKandoU/vsCoinOtakaraName.cpp"), + Object(Matching, "plugProjectKandoU/pelletBirthBuffer.cpp"), + Object(Matching, "plugProjectKandoU/vsFifo.cpp"), + ], + }, + { + "lib": "plugProjectNishimuraU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "plugProjectNishimuraU/nslibmath.cpp"), + Object(Matching, "plugProjectNishimuraU/ShadowCylinder.cpp"), + Object(NonMatching, "plugProjectNishimuraU/playCamera.cpp"), + Object(Matching, "plugProjectNishimuraU/shadowMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/MapUnit.cpp"), + Object(Matching, "plugProjectNishimuraU/MapNode.cpp"), + Object(Matching, "plugProjectNishimuraU/EnemyUnit.cpp"), + Object(NonMatching, "plugProjectNishimuraU/RandMapMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/RandMapDraw.cpp"), + Object(Matching, "plugProjectNishimuraU/RandMapChecker.cpp"), + Object(NonMatching, "plugProjectNishimuraU/RandMapUnit.cpp"), + Object(NonMatching, "plugProjectNishimuraU/RandEnemyUnit.cpp"), + Object(Matching, "plugProjectNishimuraU/DoorNode.cpp"), + Object(Matching, "plugProjectNishimuraU/MapUnitGenerator.cpp"), + Object(Matching, "plugProjectNishimuraU/MapCreator.cpp"), + Object(NonMatching, "plugProjectNishimuraU/RandMapScore.cpp"), + Object(Matching, "plugProjectNishimuraU/ItemUnit.cpp"), + Object(Matching, "plugProjectNishimuraU/RandItemUnit.cpp"), + Object(Matching, "plugProjectNishimuraU/GateUnit.cpp"), + Object(Matching, "plugProjectNishimuraU/RandGateUnit.cpp"), + Object(Matching, "plugProjectNishimuraU/ObjectLayout.cpp"), + Object(Matching, "plugProjectNishimuraU/CameraMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/ContRumble.cpp"), + Object(Matching, "plugProjectNishimuraU/RumbleMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/PomAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/PomMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Pom.cpp"), + Object(Matching, "plugProjectNishimuraU/PomState.cpp"), + Object(NonMatching, "plugProjectNishimuraU/FrogState.cpp"), + Object(Matching, "plugProjectNishimuraU/FrogAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/FrogMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Frog.cpp"), + Object(Matching, "plugProjectNishimuraU/UjibMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Ujib.cpp"), + Object(NonMatching, "plugProjectNishimuraU/UjibState.cpp"), + Object(Matching, "plugProjectNishimuraU/UjibAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/KoganeState.cpp"), + Object(Matching, "plugProjectNishimuraU/KoganeMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Kogane.cpp"), + Object(Matching, "plugProjectNishimuraU/KoganeAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/QurioneState.cpp"), + Object(Matching, "plugProjectNishimuraU/QurioneMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Qurione.cpp"), + Object(Matching, "plugProjectNishimuraU/QurioneAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/RumbleData.cpp"), + Object(Matching, "plugProjectNishimuraU/MaroFrogMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/MaroFrog.cpp"), + Object(Matching, "plugProjectNishimuraU/RockState.cpp"), + Object(Matching, "plugProjectNishimuraU/RockAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/RockMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Rock.cpp"), + Object(NonMatching, "plugProjectNishimuraU/UjiaState.cpp"), + Object(Matching, "plugProjectNishimuraU/UjiaAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/UjiaMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Ujia.cpp"), + Object(NonMatching, "plugProjectNishimuraU/TobiState.cpp"), + Object(Matching, "plugProjectNishimuraU/TobiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/TobiMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Tobi.cpp"), + Object(Matching, "plugProjectNishimuraU/HibaState.cpp"), + Object(Matching, "plugProjectNishimuraU/HibaAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/HibaMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Hiba.cpp"), + Object(Matching, "plugProjectNishimuraU/GasHibaState.cpp"), + Object(Matching, "plugProjectNishimuraU/GasHibaAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/GasHibaMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/GasHiba.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecHibaState.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecHibaAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecHibaMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/ElecHiba.cpp"), + Object(NonMatching, "plugProjectNishimuraU/SaraiState.cpp"), + Object(Matching, "plugProjectNishimuraU/SaraiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/SaraiMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Sarai.cpp"), + Object(NonMatching, "plugProjectNishimuraU/TankState.cpp"), + Object(Matching, "plugProjectNishimuraU/TankAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/TankMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Tank.cpp"), + Object(Matching, "plugProjectNishimuraU/CatfishMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Catfish.cpp"), + Object(Matching, "plugProjectNishimuraU/TadpoleState.cpp"), + Object(Matching, "plugProjectNishimuraU/TadpoleAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/TadpoleMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Tadpole.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecBugState.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecBugAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecBugMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/ElecBug.cpp"), + Object(Matching, "plugProjectNishimuraU/WtankMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Wtank.cpp"), + Object(Matching, "plugProjectNishimuraU/ArmorMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Armor.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Mar.cpp"), + Object(Matching, "plugProjectNishimuraU/MarAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/MarMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/MarState.cpp"), + Object(Matching, "plugProjectNishimuraU/WealthyMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Wealthy.cpp"), + Object(Matching, "plugProjectNishimuraU/FartMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Fart.cpp"), + Object(NonMatching, "plugProjectNishimuraU/ArmorState.cpp"), + Object(Matching, "plugProjectNishimuraU/ArmorAnimator.cpp"), + Object(NonMatching, "plugProjectNishimuraU/QueenState.cpp"), + Object(Matching, "plugProjectNishimuraU/QueenAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/QueenMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Queen.cpp"), + Object(NonMatching, "plugProjectNishimuraU/BabyState.cpp"), + Object(Matching, "plugProjectNishimuraU/BabyAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/BabyMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Baby.cpp"), + Object(Matching, "plugProjectNishimuraU/DemonMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Demon.cpp"), + Object(Matching, "plugProjectNishimuraU/QueenShadow.cpp"), + Object(Matching, "plugProjectNishimuraU/FireChappyMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/FireChappy.cpp"), + Object(NonMatching, "plugProjectNishimuraU/SnakeCrowState.cpp"), + Object(Matching, "plugProjectNishimuraU/SnakeCrowAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/SnakeCrowMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/SnakeCrow.cpp"), + Object(NonMatching, "plugProjectNishimuraU/KumaChappyState.cpp"), + Object(Matching, "plugProjectNishimuraU/KumaChappyAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/KumaChappyMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/KumaChappy.cpp"), + Object(Matching, "plugProjectNishimuraU/FuefukiState.cpp"), + Object(Matching, "plugProjectNishimuraU/FuefukiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/FuefukiMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Fuefuki.cpp"), + Object(Matching, "plugProjectNishimuraU/KoganemushiMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Koganemushi.cpp"), + Object(Matching, "plugProjectNishimuraU/FtankMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Ftank.cpp"), + Object(Matching, "plugProjectNishimuraU/RandPlantUnit.cpp"), + Object(NonMatching, "plugProjectNishimuraU/HanachirashiState.cpp"), + Object(Matching, "plugProjectNishimuraU/HanachirashiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/HanachirashiMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Hanachirashi.cpp"), + Object(Matching, "plugProjectNishimuraU/DamagumoState.cpp"), + Object(Matching, "plugProjectNishimuraU/DamagumoAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/DamagumoMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Damagumo.cpp"), + Object(Matching, "plugProjectNishimuraU/IKSystemMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/IKSystemBase.cpp"), + Object(Matching, "plugProjectNishimuraU/DamagumoShadow.cpp"), + Object(Matching, "plugProjectNishimuraU/KurageState.cpp"), + Object(Matching, "plugProjectNishimuraU/KurageAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/KurageMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Kurage.cpp"), + Object(NonMatching, "plugProjectNishimuraU/BombSaraiState.cpp"), + Object(Matching, "plugProjectNishimuraU/BombSaraiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/BombSaraiMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/BombSarai.cpp"), + Object(Matching, "plugProjectNishimuraU/OtakaraBaseState.cpp"), + Object(Matching, "plugProjectNishimuraU/OtakaraBaseAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/OtakaraBaseMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/OtakaraBase.cpp"), + Object(Matching, "plugProjectNishimuraU/FireOtakaraMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/FireOtakara.cpp"), + Object(Matching, "plugProjectNishimuraU/WaterOtakaraMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/WaterOtakara.cpp"), + Object(Matching, "plugProjectNishimuraU/GasOtakaraMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/GasOtakara.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecOtakaraMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/ElecOtakara.cpp"), + Object(NonMatching, "plugProjectNishimuraU/ImomushiState.cpp"), + Object(Matching, "plugProjectNishimuraU/ImomushiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/ImomushiMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Imomushi.cpp"), + Object(Matching, "plugProjectNishimuraU/HoudaiState.cpp"), + Object(Matching, "plugProjectNishimuraU/HoudaiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/HoudaiMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/HoudaiShadow.cpp"), + Object(Matching, "plugProjectNishimuraU/Houdai.cpp"), + Object(NonMatching, "plugProjectNishimuraU/HoudaiShotGun.cpp"), + Object(Matching, "plugProjectNishimuraU/LeafChappyMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/LeafChappy.cpp"), + Object(Matching, "plugProjectNishimuraU/BigFootState.cpp"), + Object(Matching, "plugProjectNishimuraU/BigFootAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/BigFootMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/BigFootShadow.cpp"), + Object(Matching, "plugProjectNishimuraU/BigFoot.cpp"), + Object(Matching, "plugProjectNishimuraU/SnakeWholeState.cpp"), + Object(Matching, "plugProjectNishimuraU/SnakeWholeAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/SnakeWholeMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/SnakeWhole.cpp"), + Object(NonMatching, "plugProjectNishimuraU/SnakeJointMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/OniKurageState.cpp"), + Object(Matching, "plugProjectNishimuraU/OniKurageAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/OniKurageMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/OniKurage.cpp"), + Object(Matching, "plugProjectNishimuraU/BigTreasureState.cpp"), + Object(Matching, "plugProjectNishimuraU/BigTreasureMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/BigTreasureShadow.cpp"), + Object(Matching, "plugProjectNishimuraU/BigTreasure.cpp"), + Object(NonMatching, "plugProjectNishimuraU/KabutoState.cpp"), + Object(Matching, "plugProjectNishimuraU/KabutoAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/KabutoMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/Kabuto.cpp"), + Object(NonMatching, "plugProjectNishimuraU/KumaKochappyState.cpp"), + Object(Matching, "plugProjectNishimuraU/KumaKochappyAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/KumaKochappyMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/KumaKochappy.cpp"), + Object(NonMatching, "plugProjectNishimuraU/MiniHoudaiState.cpp"), + Object(Matching, "plugProjectNishimuraU/MiniHoudaiAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/MiniHoudaiMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/MiniHoudai.cpp"), + Object(NonMatching, "plugProjectNishimuraU/MiniHoudaiShotGun.cpp"), + Object(Matching, "plugProjectNishimuraU/SokkuriState.cpp"), + Object(Matching, "plugProjectNishimuraU/SokkuriAnimator.cpp"), + Object(Matching, "plugProjectNishimuraU/SokkuriMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Sokkuri.cpp"), + Object(NonMatching, "plugProjectNishimuraU/JointShadowBase.cpp"), + Object(NonMatching, "plugProjectNishimuraU/UmimushiShadow.cpp"), + Object(Matching, "plugProjectNishimuraU/HanaMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/Hana.cpp"), + Object(NonMatching, "plugProjectNishimuraU/BigTreasureAttack.cpp"), + Object(NonMatching, "plugProjectNishimuraU/SnakeCrowShadow.cpp"), + Object(NonMatching, "plugProjectNishimuraU/SnakeWholeShadow.cpp"), + Object(Matching, "plugProjectNishimuraU/BombOtakaraMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/BombOtakara.cpp"), + Object(NonMatching, "plugProjectNishimuraU/DangoMushiState.cpp"), + Object(Matching, "plugProjectNishimuraU/DangoMushiMgr.cpp"), + Object(NonMatching, "plugProjectNishimuraU/DangoMushi.cpp"), + Object(Matching, "plugProjectNishimuraU/GreenKabutoMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/GreenKabuto.cpp"), + Object(Matching, "plugProjectNishimuraU/RedKabutoMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/RedKabuto.cpp"), + Object(Matching, "plugProjectNishimuraU/FixKabutoMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/FixKabuto.cpp"), + Object(Matching, "plugProjectNishimuraU/RandCapEnemyUnit.cpp"), + Object(Matching, "plugProjectNishimuraU/NormMiniHoudaiMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/NormMiniHoudai.cpp"), + Object(Matching, "plugProjectNishimuraU/FixMiniHoudaiMgr.cpp"), + Object(Matching, "plugProjectNishimuraU/FixMiniHoudai.cpp"), + Object(NonMatching, "plugProjectNishimuraU/TyreShadow.cpp"), + ], + }, + { + "lib": "plugProjectOgawaU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "plugProjectOgawaU/ogScreen.cpp"), + Object(Matching, "plugProjectOgawaU/ogDopingScreen.cpp"), + Object(Matching, "plugProjectOgawaU/ogPikminCounter.cpp"), + Object(Matching, "plugProjectOgawaU/ogAnime.cpp"), + Object(Matching, "plugProjectOgawaU/ogCounter.cpp"), + Object(Matching, "plugProjectOgawaU/ogLifeGauge.cpp"), + Object(Matching, "plugProjectOgawaU/ogSunMeter.cpp"), + Object(Matching, "plugProjectOgawaU/ogCatchPiki.cpp"), + Object(Matching, "plugProjectOgawaU/ogContenaCounter.cpp"), + Object(Matching, "plugProjectOgawaU/ogMapCounter.cpp"), + Object(Matching, "plugProjectOgawaU/ogAnimTextScreen.cpp"), + Object(Matching, "plugProjectOgawaU/ogCallBackMessage.cpp"), + Object(NonMatching, "plugProjectOgawaU/ogMenuMgr.cpp"), + Object(Matching, "plugProjectOgawaU/ogCallBackScreen.cpp"), + Object(Matching, "plugProjectOgawaU/ogCounterRV.cpp"), + Object(Matching, "plugProjectOgawaU/ogSE.cpp"), + Object(Matching, "plugProjectOgawaU/ogCounterDay.cpp"), + Object(Matching, "plugProjectOgawaU/testScene.cpp"), + Object(Matching, "plugProjectOgawaU/testObj.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneGround.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjGround.cpp"), + Object(NonMatching, "plugProjectOgawaU/ogCopyPane.cpp"), + Object(Matching, "plugProjectOgawaU/ogBloGroup.cpp"), + Object(Matching, "plugProjectOgawaU/DispMemberBase.cpp"), + Object(Matching, "plugProjectOgawaU/ogLib2D.cpp"), + Object(NonMatching, "plugProjectOgawaU/ogObjSMenuMap.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSMenuMap.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSMenuItem.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSMenuItem.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSMenuPause.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSMenuPause.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSMenuBase.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjCourseName.cpp"), + Object(Matching, "plugProjectOgawaU/ogUtil.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneCourseName.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjKantei.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneKantei.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSpecialItem.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSpecialItem.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjFloor.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneFloor.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjCave.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneCave.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjAnaDemo.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneAnaDemo.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjChallenge2P.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneChallenge2P.cpp"), + Object(NonMatching, "plugProjectOgawaU/ogObjContena.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneContena.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSMenuPauseDoukutu.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSMenuPauseDoukutu.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjUfo.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneUfo.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSave.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSave.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjFinalMsg.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneFinalMsg.cpp"), + Object(NonMatching, "plugProjectOgawaU/ogObjVs.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneVs.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjChallenge1P.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneChallenge1P.cpp"), + Object(Matching, "plugProjectOgawaU/ogScaleMgr.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSMenuPauseVs.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSMenuPauseVs.cpp"), + Object(Matching, "plugProjectOgawaU/ogFuriko.cpp"), + Object(NonMatching, "plugProjectOgawaU/ogCounterSlot.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjWorldMapInfoWindow0.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneWorldMapInfoWindow0.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjWorldMapInfoWindow1.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneWorldMapInfoWindow1.cpp"), + Object(Matching, "plugProjectOgawaU/ogTotalPokoScreen.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjChallengeBase.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneChallengeBase.cpp"), + Object(Matching, "plugProjectOgawaU/ogCallBackPicture.cpp"), + Object(Matching, "plugProjectOgawaU/ogDrawAfter.cpp"), + Object(Matching, "plugProjectOgawaU/ogOtakaraSensor.cpp"), + Object(Matching, "plugProjectOgawaU/ogTitleMsg.cpp"), + Object(Matching, "plugProjectOgawaU/ogAngleMgr.cpp"), + Object(Matching, "plugProjectOgawaU/ogSceneSMenuCont.cpp"), + Object(Matching, "plugProjectOgawaU/ogObjSMenuCont.cpp"), + ], + }, + { + "lib": "plugProjectHikinoU", + "cflags": [*cflags_pikmin, "-sym on"], + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "plugProjectHikinoU/PSSeq.cpp"), + Object(NonMatching, "plugProjectHikinoU/PSGame.cpp"), + Object(Matching, "plugProjectHikinoU/PSSystemIF.cpp"), + Object(NonMatching, "plugProjectHikinoU/PSAutoBgm.cpp"), + Object(NonMatching, "plugProjectHikinoU/PSBnkMgr.cpp"), + Object(Matching, "plugProjectHikinoU/PSTaskBase.cpp"), + Object(Matching, "plugProjectHikinoU/PSBgmTask.cpp"), + Object(Matching, "plugProjectHikinoU/PSCreatureMgr.cpp"), + Object(Matching, "plugProjectHikinoU/PSAutoBgm_MeloArranger.cpp"), + Object(NonMatching, "plugProjectHikinoU/PSSe.cpp"), + Object(Matching, "plugProjectHikinoU/PSSeBase.cpp"), + Object(Matching, "plugProjectHikinoU/PSScene.cpp"), + Object(Matching, "plugProjectHikinoU/PSBgmTrack.cpp"), + Object(Matching, "plugProjectHikinoU/PSDirector.cpp"), + ], + }, + { + "lib": "plugProjectMorimuraU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "plugProjectMorimuraU/dayEndCount.cpp"), + Object(NonMatching, "plugProjectMorimuraU/hurryUp2D.cpp"), + Object(Matching, "plugProjectMorimuraU/gameOver2D.cpp"), + Object(Matching, "plugProjectMorimuraU/testBase.cpp"), + Object(Matching, "plugProjectMorimuraU/bombState.cpp"), + Object(Matching, "plugProjectMorimuraU/bombAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/bombMgr.cpp"), + Object(Matching, "plugProjectMorimuraU/bomb.cpp"), + Object(Matching, "plugProjectMorimuraU/eggState.cpp"), + Object(Matching, "plugProjectMorimuraU/eggAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/eggMgr.cpp"), + Object(Matching, "plugProjectMorimuraU/egg.cpp"), + Object(Matching, "plugProjectMorimuraU/panModokiState.cpp"), + Object(Matching, "plugProjectMorimuraU/panModokiAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/panModokiMgr.cpp"), + Object(NonMatching, "plugProjectMorimuraU/panModoki.cpp"), + Object(Matching, "plugProjectMorimuraU/plantsMgr.cpp"), + Object(Matching, "plugProjectMorimuraU/plantsAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/plants.cpp"), + Object(NonMatching, "plugProjectMorimuraU/kingChappyState.cpp"), + Object(Matching, "plugProjectMorimuraU/kingChappyMgr.cpp"), + Object(NonMatching, "plugProjectMorimuraU/kingChappy.cpp"), + Object(Matching, "plugProjectMorimuraU/miulinState.cpp"), + Object(Matching, "plugProjectMorimuraU/miulinAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/miulinMgr.cpp"), + Object(NonMatching, "plugProjectMorimuraU/miulin.cpp"), + Object(Matching, "plugProjectMorimuraU/jigumoState.cpp"), + Object(Matching, "plugProjectMorimuraU/jigumoAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/jigumoMgr.cpp"), + Object(NonMatching, "plugProjectMorimuraU/jigumo.cpp"), + Object(Matching, "plugProjectMorimuraU/enemyNestMgr.cpp"), + Object(Matching, "plugProjectMorimuraU/enemyNest.cpp"), + Object(Matching, "plugProjectMorimuraU/tamagoMushiState.cpp"), + Object(Matching, "plugProjectMorimuraU/tamagoMushiAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/tamagoMushiMgr.cpp"), + Object(Matching, "plugProjectMorimuraU/tamagoMushi.cpp"), + Object(NonMatching, "plugProjectMorimuraU/zukan2D.cpp"), + Object(NonMatching, "plugProjectMorimuraU/hiScore2D.cpp"), + Object(Matching, "plugProjectMorimuraU/umiMushiState.cpp"), + Object(Matching, "plugProjectMorimuraU/umiMushiAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/umiMushiMgr.cpp"), + Object(NonMatching, "plugProjectMorimuraU/umiMushi.cpp"), + Object(Matching, "plugProjectMorimuraU/shijimiChouState.cpp"), + Object(Matching, "plugProjectMorimuraU/shijimiChouAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/shijimiChouMgr.cpp"), + Object(NonMatching, "plugProjectMorimuraU/shijimiChou.cpp"), + Object(NonMatching, "plugProjectMorimuraU/challengeSelect2D.cpp"), + Object(NonMatching, "plugProjectMorimuraU/challengeResult2D.cpp"), + Object(NonMatching, "plugProjectMorimuraU/vsSelect2D.cpp"), + Object(Matching, "plugProjectMorimuraU/mrUtil.cpp"), + Object(NonMatching, "plugProjectMorimuraU/scrollList.cpp"), + Object(Matching, "plugProjectMorimuraU/mrWindow.cpp"), + Object(Matching, "plugProjectMorimuraU/blackManState.cpp"), + Object(Matching, "plugProjectMorimuraU/blackManAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/blackManMgr.cpp"), + Object(NonMatching, "plugProjectMorimuraU/blackMan.cpp"), + Object(Matching, "plugProjectMorimuraU/tyreState.cpp"), + Object(Matching, "plugProjectMorimuraU/tyreAnimator.cpp"), + Object(Matching, "plugProjectMorimuraU/tyreMgr.cpp"), + Object(Matching, "plugProjectMorimuraU/tyre.cpp"), + ], + }, + { + "lib": "plugProjectEbisawaU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "plugProjectEbisawaU/efxBase.cpp"), + Object(NonMatching, "plugProjectEbisawaU/efxEnemy.cpp"), + Object(Matching, "plugProjectEbisawaU/efxObject.cpp"), + Object(NonMatching, "plugProjectEbisawaU/efxPikmin.cpp"), + Object(Matching, "plugProjectEbisawaU/particle2dMgr.cpp"), + Object(Matching, "plugProjectEbisawaU/efx2dBase.cpp"), + Object(Matching, "plugProjectEbisawaU/efx2dEffect.cpp"), + Object(NonMatching, "plugProjectEbisawaU/particleMgr.cpp"), + Object(NonMatching, "plugProjectEbisawaU/ebiP2Title.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiP2TitleUnit.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiUtility.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiP2TitleCamera.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiP2TitleLight.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiScreenMemoryCard.cpp"), + Object(Matching, "plugProjectEbisawaU/efxTPkEffectMgr.cpp"), + Object(Matching, "plugProjectEbisawaU/efxEnemyGeneral.cpp"), + Object(Matching, "plugProjectEbisawaU/ebi3DGraph.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiGeometry.cpp"), + Object(Matching, "plugProjectEbisawaU/ebi2DGraph.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiScreenOption.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiScreenProgre.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiOptionMgr.cpp"), + Object(NonMatching, "plugProjectEbisawaU/ebi2DCallBack.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiCardMgr.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiScreenFramework.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiScreenPushStart.cpp"), + Object( + NonMatching, + "plugProjectEbisawaU/ebiScreenFileSelect.cpp", + extra_cflags=["-sym on"], + ), + Object(Matching, "plugProjectEbisawaU/ebiScreenTitleMenu.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiSaveMgr.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiScreenSaveMenu.cpp"), + Object( + Matching, + "plugProjectEbisawaU/ebiScreenFileSelect_Mgr.cpp", + extra_cflags=["-sym on"], + ), + Object(Matching, "plugProjectEbisawaU/ebiFileSelectMgr.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiCardMgr_Load.cpp"), + Object(Matching, "plugProjectEbisawaU/ebiP2TitleCoordMgr.cpp"), + Object( + NonMatching, + "plugProjectEbisawaU/ebiP2TitlePikmin.cpp", + extra_cflags=["-sym on"], + ), + Object( + Matching, + "plugProjectEbisawaU/ebiP2TitleKogane.cpp", + extra_cflags=["-sym on"], + ), + Object( + Matching, + "plugProjectEbisawaU/ebiP2TitleChappy.cpp", + extra_cflags=["-sym on"], + ), + Object( + Matching, + "plugProjectEbisawaU/ebiScreenTMBack.cpp", + extra_cflags=["-sym on"], + ), + Object( + NonMatching, + "plugProjectEbisawaU/ebiMainTitleMgr.cpp", + extra_cflags=["-sym on"], + ), + Object(Matching, "plugProjectEbisawaU/ebiP2TitleFog.cpp"), + Object( + NonMatching, + "plugProjectEbisawaU/efxEnemyBoss.cpp", + extra_cflags=["-sym on"], + ), + Object(Matching, "plugProjectEbisawaU/ebiCardEReader.cpp"), + Object( + NonMatching, + "plugProjectEbisawaU/ebiScreenOmake.cpp", + extra_cflags=["-sym on"], + ), + Object( + NonMatching, + "plugProjectEbisawaU/ebiOmakeMgr.cpp", + extra_cflags=["-sym on"], + ), + Object( + Matching, + "plugProjectEbisawaU/ebiScreenOmakeCardE.cpp", + extra_cflags=["-sym on"], + ), + Object( + Matching, + "plugProjectEbisawaU/ebiScreenOmakeGame.cpp", + extra_cflags=["-sym on"], + ), + Object( + Matching, + "plugProjectEbisawaU/ebiScreenInfoWindow.cpp", + extra_cflags=["-sym on"], + ), + ], + }, + { + "lib": "plugProjectKonoU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "plugProjectKonoU/khWorldMap.cpp"), + Object(Matching, "plugProjectKonoU/khCaveResult.cpp"), + Object(Matching, "plugProjectKonoU/khSceneLoader.cpp"), + Object(Matching, "plugProjectKonoU/newGame2DMgr.cpp"), + Object(Matching, "plugProjectKonoU/newScreenMgr.cpp"), + Object(Matching, "plugProjectKonoU/khReadyGo.cpp"), + Object(Matching, "plugProjectKonoU/khFinalFloor.cpp"), + Object(NonMatching, "plugProjectKonoU/khDayEndResult.cpp"), + Object(Matching, "plugProjectKonoU/khUtil.cpp"), + Object(NonMatching, "plugProjectKonoU/khFinalResult.cpp"), + Object(Matching, "plugProjectKonoU/khPayDept.cpp"), + Object(Matching, "plugProjectKonoU/khWinLose.cpp"), + Object(Matching, "plugProjectKonoU/khWinLoseReason.cpp"), + Object(Matching, "plugProjectKonoU/khMailSaveData.cpp"), + ], + }, + { + "lib": "sysBootupU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [Object(Matching, "sysBootupU/sysBootup.cpp")], + }, + { + "lib": "sysCommonU", + "cflags": cflags_pikmin, + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "sysCommonU/node.cpp"), + Object(NonMatching, "sysCommonU/sysMath.cpp"), + Object(Matching, "sysCommonU/id32.cpp"), + Object(Matching, "sysCommonU/parameters.cpp"), + Object(Matching, "sysCommonU/stream.cpp"), + Object(NonMatching, "sysCommonU/geometry.cpp"), + Object(Matching, "sysCommonU/mapCollision.cpp"), + Object(NonMatching, "sysCommonU/camera.cpp"), + Object(Matching, "sysCommonU/tagparams.cpp"), + Object(Matching, "sysCommonU/sysTemplates.cpp"), + Object(Matching, "sysCommonU/mapCode.cpp"), + Object(NonMatching, "sysCommonU/geomIntersection.cpp"), + Object(NonMatching, "sysCommonU/geomOBBTree.cpp"), + Object(NonMatching, "sysCommonU/geomTraceMove.cpp"), + Object(Matching, "sysCommonU/geomCylinder.cpp"), + Object(Matching, "sysCommonU/geomClone.cpp"), + ], + }, + { + "lib": "sysGCU", + "cflags": [*cflags_pikmin, "-lang=c++"], + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(NonMatching, "sysGCU/system.cpp"), + Object(NonMatching, "sysGCU/section.cpp"), + Object(Matching, "sysGCU/gameflow.cpp"), + Object(Matching, "sysGCU/menuSection.cpp"), + Object(Matching, "sysGCU/dvdThread.cpp"), + Object(Matching, "sysGCU/appThread.cpp"), + Object(Matching, "sysGCU/controller.cpp"), + Object(NonMatching, "sysGCU/graphics.cpp"), + Object(NonMatching, "sysGCU/matMath.cpp"), + Object(Matching, "sysGCU/sysShape.cpp"), + Object(Matching, "sysGCU/reset.cpp"), + Object(Matching, "sysGCU/dvdStatus.cpp"), + Object(Matching, "sysGCU/sysTimers.cpp"), + Object(Matching, "sysGCU/modelMgr.cpp"), + Object(Matching, "sysGCU/heapStatus.cpp"), + Object(Matching, "sysGCU/light.cpp"), + Object(Matching, "sysGCU/wipe.cpp"), + Object(NonMatching, "sysGCU/moviePlayer.cpp"), + Object(NonMatching, "sysGCU/JSTObjectActor.cpp"), + Object(NonMatching, "sysGCU/JSTObjectCamera.cpp"), + Object(NonMatching, "sysGCU/JSTObjectGameActor.cpp"), + Object(NonMatching, "sysGCU/JSTObjectSystem.cpp"), + Object(Matching, "sysGCU/JSTFindCreature.cpp"), + Object(Matching, "sysGCU/movieConfig.cpp"), + Object(Matching, "sysGCU/gameConfig.cpp"), + Object(Matching, "sysGCU/fogMgr.cpp"), + Object(NonMatching, "sysGCU/aramMgr.cpp"), + Object(Matching, "sysGCU/resourceMgr.cpp"), + Object(Matching, "sysGCU/resourceMgr2D.cpp"), + Object(Matching, "sysGCU/sysMaterialAnim.cpp"), + Object(Matching, "sysGCU/P2DScreen.cpp"), + Object(NonMatching, "sysGCU/movieMessage.cpp"), + Object(Matching, "sysGCU/moviePlayerPauseAndDraw.cpp"), + Object(Matching, "sysGCU/JSTObjectSpecialActor.cpp"), + Object(Matching, "sysGCU/messageSequence.cpp"), + Object(Matching, "sysGCU/messageMgr.cpp"), + Object(Matching, "sysGCU/messageObj.cpp"), + Object(NonMatching, "sysGCU/messageRendering.cpp"), + Object(Matching, "sysGCU/message.cpp"), + Object(Matching, "sysGCU/modelEffect.cpp"), + Object(Matching, "sysGCU/messageReference.cpp"), + Object(Matching, "sysGCU/simpleMessage.cpp"), + Object(Matching, "sysGCU/sysShapeAnimation.cpp"), + Object(NonMatching, "sysGCU/sysShapeModel.cpp"), + Object(NonMatching, "sysGCU/windowMessage.cpp"), + Object(NonMatching, "sysGCU/memoryCard.cpp"), + Object(NonMatching, "sysGCU/pikmin2MemoryCardMgr.cpp"), + Object(Matching, "sysGCU/commonSaveData.cpp"), + Object(NonMatching, "sysGCU/bootSection.cpp"), + Object(NonMatching, "sysGCU/titleSection.cpp"), + Object(Matching, "sysGCU/loadResource.cpp"), + Object(Matching, "sysGCU/rootMenuSection.cpp"), + Object(Matching, "sysGCU/demoSection.cpp"), + Object(Matching, "sysGCU/THPAudioDecode.c"), + Object(Matching, "sysGCU/THPDraw.c"), + Object(Matching, "sysGCU/THPPlayer.c"), + Object(Matching, "sysGCU/THPRead.c"), + Object(Matching, "sysGCU/THPVideoDecode.c"), + Object(Matching, "sysGCU/pikmin2THPPlayer.cpp"), + Object(Matching, "sysGCU/captionMgr.cpp"), + Object(Matching, "sysGCU/captionMessage.cpp"), + Object(Matching, "sysGCU/screenScene.cpp"), + Object(Matching, "sysGCU/screenMgr.cpp"), + Object(Matching, "sysGCU/screenObj.cpp"), + Object(Matching, "sysGCU/JSTObjectParticleActor.cpp"), + Object(Matching, "sysGCU/moviePlayerAudio.cpp"), + Object(Matching, "sysGCU/illustratedBookMessage.cpp"), + Object(Matching, "sysGCU/sysDrawBuffer.cpp"), + Object(Matching, "sysGCU/dvdErrorMessage.cpp"), + Object(Matching, "sysGCU/pikmin2AramMgr.cpp"), + Object(Matching, "sysGCU/messageAnalyzer.cpp"), + ], + }, + { + "lib": "utilityU", + "cflags": [*cflags_pikmin, "-sym on"], + "mw_version": "GC/2.6", + "host": True, + "objects": [ + Object(Matching, "utilityU/menu.cpp"), + Object(NonMatching, "utilityU/PSMainSide_Director.cpp"), + Object(NonMatching, "utilityU/PSMainSide_Factory.cpp"), + Object(NonMatching, "utilityU/PSMainSide_ObjSound.cpp"), + Object(Matching, "utilityU/PSMainSide_Demo.cpp"), + Object(NonMatching, "utilityU/PSMainSide_Scene.cpp"), + Object(Matching, "utilityU/PSMainSide_BossMgr.cpp"), + Object(NonMatching, "utilityU/PSMainSide_Se.cpp"), + Object(Matching, "utilityU/PSMainSide_DirectorMgr.cpp"), + Object(NonMatching, "utilityU/PSMainSide_Sound.cpp"), + Object(Matching, "utilityU/PSMainSide_TrackMap.cpp"), + Object(NonMatching, "utilityU/PSMainSide_CreaturePrm.cpp"), + Object(NonMatching, "utilityU/PSMainSide_ObjCalc.cpp"), + ], + }, +] -if __name__ == "__main__": - main() +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/include/BuildSettings.h b/include/BuildSettings.h index 8656faaec..ff77c3687 100644 --- a/include/BuildSettings.h +++ b/include/BuildSettings.h @@ -8,8 +8,8 @@ #define BUGFIX false #define FOR_MODDING false -#define USADEMO1 1 -#define USAFINAL 2 +#define USADEMO1 0 +#define USAFINAL 4 #if VERNUM == USAFINAL #define BUILDTARGET USAFINAL diff --git a/include/CellMgrParms.h b/include/CellMgrParms.h index d7af6dc77..55b81c592 100644 --- a/include/CellMgrParms.h +++ b/include/CellMgrParms.h @@ -7,8 +7,8 @@ struct _CellParms { inline _CellParms(Parameters* parameters) - : mUseBuffer(parameters, 'p000', "ƒoƒbƒtƒ@‚ðŽg‚¤", false, false, true) // 'use a buffer' - , mMagicNumber(parameters, 'p001', "ƒ}ƒWƒbƒNƒiƒ“ƒo[", true, false, true) // 'magic number' + : mUseBuffer(parameters, 'p000', "ãƒãƒƒãƒ•ã‚¡ã‚’使ã†", false, false, true) // 'use a buffer' + , mMagicNumber(parameters, 'p001', "マジックナンãƒãƒ¼", true, false, true) // 'magic number' , mHalfG(parameters, 'p002', "G-Half", false, false, true) , mUpdateMgr(parameters, 'p003', "UpdateMgr", false, false, true) { diff --git a/include/Demo.h b/include/Demo.h index b245a1e25..57ad68132 100644 --- a/include/Demo.h +++ b/include/Demo.h @@ -16,7 +16,7 @@ struct HIORootNode : public Game::HIORootNode { HIORootNode(Section* section) : Game::HIORootNode(section) { - mName = "THPƒZƒNƒVƒ‡ƒ“"; + mName = "THPセクション"; } virtual ~HIORootNode() { } // _08 (weak) diff --git a/include/Game/CPlate.h b/include/Game/CPlate.h index 616d7768d..65e3c8062 100644 --- a/include/Game/CPlate.h +++ b/include/Game/CPlate.h @@ -33,9 +33,9 @@ struct CPlate : public Container { struct Parms : public Parameters { inline Parms() : Parameters(nullptr, "Navi::Parms") - , mStartingOffset(this, 'p000', "擪ƒIƒtƒZƒbƒg", 17.5f, 0.0f, 100.0f) // 'starting offset' - , mLengthLimit(this, 'p001', "’·‚³ƒŠƒ~ƒbƒg", 130.0f, 10.0f, 1000.0f) // 'length limit' - , mMaxPositionSize(this, 'p002', "ƒ|ƒWƒVƒ‡ƒ“‚Ì‘å‚«‚³(Å‘å)", 6.0f, 1.0f, 50.0f) // 'position size (max)' + , mStartingOffset(this, 'p000', "先頭オフセット", 17.5f, 0.0f, 100.0f) // 'starting offset' + , mLengthLimit(this, 'p001', "é•·ã•ãƒªãƒŸãƒƒãƒˆ", 130.0f, 10.0f, 1000.0f) // 'length limit' + , mMaxPositionSize(this, 'p002', "ãƒã‚¸ã‚·ãƒ§ãƒ³ã®å¤§ãã•(最大)", 6.0f, 1.0f, 50.0f) // 'position size (max)' { } Parm mStartingOffset; // _0C diff --git a/include/Game/CameraMgr.h b/include/Game/CameraMgr.h index abf540909..8e9a24034 100644 --- a/include/Game/CameraMgr.h +++ b/include/Game/CameraMgr.h @@ -131,67 +131,67 @@ struct CameraData { struct CameraParms : public Parameters { CameraParms() : Parameters(nullptr, "CameraParms") - , mNearLowDist(this, 'cnld', "Near(Low)‹——£", 600.0f, 10.0f, 5000.0f) // 'near(low) distance' - , mNearLowAngle(this, 'cnla', "Near(Low)ƒAƒ“ƒOƒ‹", 20.0f, 0.0f, 90.0f) // 'near(low) angle' - , mNearLowFOV(this, 'cnlf', "Near(Low)‚e‚n‚u", 10.0f, 1.0f, 60.0f) // 'near(low) fov' - , mNearLowOffset(this, 'cnlo', "Near(Low)ƒIƒtƒZƒbƒg", 25.0f, 10.0f, 500.0f) // 'near(low) offset' - , mNearLowWeight(this, 'cnlw', "Near(Low)ƒEƒFƒCƒg", 1000.0f, 10.0f, 5000.0f) // 'near(low) weight' + , mNearLowDist(this, 'cnld', "Near(Low)è·é›¢", 600.0f, 10.0f, 5000.0f) // 'near(low) distance' + , mNearLowAngle(this, 'cnla', "Near(Low)アングル", 20.0f, 0.0f, 90.0f) // 'near(low) angle' + , mNearLowFOV(this, 'cnlf', "Near(Low)FOV", 10.0f, 1.0f, 60.0f) // 'near(low) fov' + , mNearLowOffset(this, 'cnlo', "Near(Low)オフセット", 25.0f, 10.0f, 500.0f) // 'near(low) offset' + , mNearLowWeight(this, 'cnlw', "Near(Low)ウェイト", 1000.0f, 10.0f, 5000.0f) // 'near(low) weight' , mNearLowDetached(this, 'nldt', "Near(Low)Detached", 17.5f, 0.0f, 1000.0f) // 'near(low) detached' , mNearLowNear(this, 'nlnc', "Near(Low)Near", 1.0f, 1.0f, 12800.0f) // 'near(low) near' , mNearLowFar(this, 'nlfc', "Near(Low)Far", 12800.0f, 1.0f, 12800.0f) // 'near(low) far' - , mMidLowDist(this, 'cmld', "Mid(Low)‹——£", 600.0f, 10.0f, 5000.0f) // 'mid(low) distance' - , mMidLowAngle(this, 'cmla', "Mid(Low)ƒAƒ“ƒOƒ‹", 21.0f, 0.0f, 90.0f) // 'mid(low) angle' - , mMidLowFOV(this, 'cmlf', "Mid(Low)‚e‚n‚u", 23.0f, 1.0f, 60.0f) // 'mid(low) fov' - , mMidLowOffset(this, 'cmlo', "Mid(Low)ƒIƒtƒZƒbƒg", 38.0f, 10.0f, 500.0f) // 'mid(low) offset' - , mMidLowWeight(this, 'cmlw', "Mid(Low)ƒEƒFƒCƒg", 500.0f, 10.0f, 5000.0f) // 'mid(low) weight' + , mMidLowDist(this, 'cmld', "Mid(Low)è·é›¢", 600.0f, 10.0f, 5000.0f) // 'mid(low) distance' + , mMidLowAngle(this, 'cmla', "Mid(Low)アングル", 21.0f, 0.0f, 90.0f) // 'mid(low) angle' + , mMidLowFOV(this, 'cmlf', "Mid(Low)FOV", 23.0f, 1.0f, 60.0f) // 'mid(low) fov' + , mMidLowOffset(this, 'cmlo', "Mid(Low)オフセット", 38.0f, 10.0f, 500.0f) // 'mid(low) offset' + , mMidLowWeight(this, 'cmlw', "Mid(Low)ウェイト", 500.0f, 10.0f, 5000.0f) // 'mid(low) weight' , mMidLowDetached(this, 'mldt', "Mid(Low)Detached", 55.0f, 0.0f, 1000.0f) // 'mid(low) detached' , mMidLowNear(this, 'mlnc', "Mid(Low)Near", 1.0f, 1.0f, 12800.0f) // 'mid(low) near' , mMidLowFar(this, 'mlfc', "Mid(Low)Far", 12800.0f, 1.0f, 12800.0f) // 'mid(low) far' - , mFarLowDist(this, 'cfld', "Far(Low)‹——£", 900.0f, 10.0f, 5000.0f) // 'far(low) distance' - , mFarLowAngle(this, 'cfla', "Far(Low)ƒAƒ“ƒOƒ‹", 25.0f, 0.0f, 90.0f) // 'far(low) angle' - , mFarLowFOV(this, 'cflf', "Far(Low)‚e‚n‚u", 26.0f, 1.0f, 60.0f) // 'far(low) fov' - , mFarLowOffset(this, 'cflo', "Far(Low)ƒIƒtƒZƒbƒg", 33.0f, 10.0f, 500.0f) // 'far(low) offset' - , mFarLowWeight(this, 'cflw', "Far(Low)ƒEƒFƒCƒg", 400.0f, 10.0f, 5000.0f) // 'far(low) weight' + , mFarLowDist(this, 'cfld', "Far(Low)è·é›¢", 900.0f, 10.0f, 5000.0f) // 'far(low) distance' + , mFarLowAngle(this, 'cfla', "Far(Low)アングル", 25.0f, 0.0f, 90.0f) // 'far(low) angle' + , mFarLowFOV(this, 'cflf', "Far(Low)FOV", 26.0f, 1.0f, 60.0f) // 'far(low) fov' + , mFarLowOffset(this, 'cflo', "Far(Low)オフセット", 33.0f, 10.0f, 500.0f) // 'far(low) offset' + , mFarLowWeight(this, 'cflw', "Far(Low)ウェイト", 400.0f, 10.0f, 5000.0f) // 'far(low) weight' , mFarLowDetached(this, 'fldt', "Far(Low)Detached", 130.0f, 0.0f, 1000.0f) // 'far(low) detached' , mFarLowNear(this, 'flnc', "Far(Low)Near", 1.0f, 1.0f, 12800.0f) // 'far(low) near' , mFarLowFar(this, 'flfc', "Far(Low)Far", 12800.0f, 1.0f, 12800.0f) // 'far(low) far' - , mNearHighDist(this, 'cnhd', "Near(High)‹——£", 900.0f, 10.0f, 5000.0f) // 'near(high) distance' - , mNearHighAngle(this, 'cnha', "Near(High)ƒAƒ“ƒOƒ‹", 60.0f, 0.0f, 90.0f) // 'near(high) angle' - , mNearHighFOV(this, 'cnhf', "Near(High)‚e‚n‚u", 10.0f, 1.0f, 60.0f) // 'near(high) fov' - , mNearHighOffset(this, 'cnho', "Near(High)ƒIƒtƒZƒbƒg", 40.0f, 10.0f, 500.0f) // 'near(high) offset' - , mNearHighWeight(this, 'cnhw', "Near(High)ƒEƒFƒCƒg", 1000.0f, 10.0f, 5000.0f) // 'near(high) weight' + , mNearHighDist(this, 'cnhd', "Near(High)è·é›¢", 900.0f, 10.0f, 5000.0f) // 'near(high) distance' + , mNearHighAngle(this, 'cnha', "Near(High)アングル", 60.0f, 0.0f, 90.0f) // 'near(high) angle' + , mNearHighFOV(this, 'cnhf', "Near(High)FOV", 10.0f, 1.0f, 60.0f) // 'near(high) fov' + , mNearHighOffset(this, 'cnho', "Near(High)オフセット", 40.0f, 10.0f, 500.0f) // 'near(high) offset' + , mNearHighWeight(this, 'cnhw', "Near(High)ウェイト", 1000.0f, 10.0f, 5000.0f) // 'near(high) weight' , mNearHighDetached(this, 'nhdt', "Near(High)Detached", 27.5f, 0.0f, 1000.0f) // 'near(high) detached' , mNearHighNear(this, 'nhnc', "Near(High)Near", 1.0f, 1.0f, 12800.0f) // 'near(high) near' , mNearHighFar(this, 'nhfc', "Near(High)Far", 12800.0f, 1.0f, 12800.0f) // 'near(high) far' - , mMidHighDist(this, 'cmhd', "Mid(High)‹——£", 900.0f, 10.0f, 5000.0f) // 'mid(high) distance' - , mMidHighAngle(this, 'cmha', "Mid(High)ƒAƒ“ƒOƒ‹", 60.0f, 0.0f, 90.0f) // 'mid(high) angle' - , mMidHighFOV(this, 'cmhf', "Mid(High)‚e‚n‚u", 20.0f, 1.0f, 60.0f) // 'mid(high) fov' - , mMidHighOffset(this, 'cmho', "Mid(High)ƒIƒtƒZƒbƒg", 70.0f, 10.0f, 500.0f) // 'mid(high) offset' - , mMidHighWeight(this, 'cmhw', "Mid(High)ƒEƒFƒCƒg", 500.0f, 10.0f, 5000.0f) // 'mid(high) weight' + , mMidHighDist(this, 'cmhd', "Mid(High)è·é›¢", 900.0f, 10.0f, 5000.0f) // 'mid(high) distance' + , mMidHighAngle(this, 'cmha', "Mid(High)アングル", 60.0f, 0.0f, 90.0f) // 'mid(high) angle' + , mMidHighFOV(this, 'cmhf', "Mid(High)FOV", 20.0f, 1.0f, 60.0f) // 'mid(high) fov' + , mMidHighOffset(this, 'cmho', "Mid(High)オフセット", 70.0f, 10.0f, 500.0f) // 'mid(high) offset' + , mMidHighWeight(this, 'cmhw', "Mid(High)ウェイト", 500.0f, 10.0f, 5000.0f) // 'mid(high) weight' , mMidHighDetached(this, 'mhdt', "Mid(High)Detached", 75.0f, 0.0f, 1000.0f) // 'mid(high) detached' , mMidHighNear(this, 'mhnc', "Mid(High)Near", 1.0f, 1.0f, 12800.0f) // 'mid(high) near' , mMidHighFar(this, 'mhfc', "Mid(High)Far", 12800.0f, 1.0f, 12800.0f) // 'mid(high) far' - , mFarHighDist(this, 'cfhd', "Far(High)‹——£", 1200.0f, 10.0f, 5000.0f) // 'far(high) distance' - , mFarHighAngle(this, 'cfha', "Far(High)ƒAƒ“ƒOƒ‹", 60.0f, 0.0f, 90.0f) // 'far(high) angle' - , mFarHighFOV(this, 'cfhf', "Far(High)‚e‚n‚u", 30.0f, 1.0f, 60.0f) // 'far(high) fov' - , mFarHighOffset(this, 'cfho', "Far(High)ƒIƒtƒZƒbƒg", 100.0f, 10.0f, 500.0f) // 'far(high) offset' - , mFarHighWeight(this, 'cfhw', "Far(High)ƒEƒFƒCƒg", 200.0f, 10.0f, 5000.0f) // 'far(high) weight' + , mFarHighDist(this, 'cfhd', "Far(High)è·é›¢", 1200.0f, 10.0f, 5000.0f) // 'far(high) distance' + , mFarHighAngle(this, 'cfha', "Far(High)アングル", 60.0f, 0.0f, 90.0f) // 'far(high) angle' + , mFarHighFOV(this, 'cfhf', "Far(High)FOV", 30.0f, 1.0f, 60.0f) // 'far(high) fov' + , mFarHighOffset(this, 'cfho', "Far(High)オフセット", 100.0f, 10.0f, 500.0f) // 'far(high) offset' + , mFarHighWeight(this, 'cfhw', "Far(High)ウェイト", 200.0f, 10.0f, 5000.0f) // 'far(high) weight' , mFarHighDetached(this, 'fhdt', "Far(High)Detached", 165.0f, 0.0f, 1000.0f) // 'far(high) detached' , mFarHighNear(this, 'fhnc', "Far(High)Near", 1.0f, 1.0f, 12800.0f) // 'far(high) near' , mFarHighFar(this, 'fhfc', "Far(High)Far", 12800.0f, 1.0f, 12800.0f) // 'far(high) far' - , mZoomDist(this, 'zmdt', "ZOOM ‹——£", 250.0f, 10.0f, 5000.0f) // 'ZOOM distance' - , mZoomAngle(this, 'zman', "ZOOM ƒAƒ“ƒOƒ‹", 12.0f, 0.0f, 90.0f) // 'ZOOM angle' - , mZoomFOV(this, 'zmfv', "ZOOM ‚e‚n‚u", 35.0f, 1.0f, 60.0f) // 'ZOOM fov' - , mCollRadius(this, 'clcr', "ƒRƒŠƒWƒ‡ƒ“”¼Œa", 300.0f, 0.0f, 500.0f) // 'collision radius' - , mCollInterpSpeed(this, 'clms', "ƒRƒŠƒWƒ‡ƒ“•âŠÔ‘¬“x", 0.005f, 0.001f, 1.0f) // 'collision interpolation speed' - , mCollCorrHeight(this, 'clmh', "ƒRƒŠƒWƒ‡ƒ“•â³‚", 5.0f, 0.0f, 100.0f) // 'collision correction height' - , mNoCollHeight(this, 'clnh', "ƒRƒŠƒWƒ‡ƒ“–³‚µ‚", 25.0f, 0.0f, 500.0f) // 'no collision height' - , mSettingChangeSpeed(this, 'cpmd', "Ý’è•ÏX‘¬“x", 0.1f, 0.0f, 1.0f) // 'setting change speed' - , mRotSpeed(this, 'cmmt', "‰ñ“]‘¬“x", 0.2f, 0.0f, 1.0f) // 'rotation speed' - , mRotFollowTime(this, 'cmft', "‰ñ“]’Ç]ŽžŠÔ", 0.6f, 0.0f, 3.0f) // 'rotation follow time' - , mRotAccel(this, 'cmta', "‰ñ“]‰Á‘¬“x", 0.005f, 0.0f, 1.0f) // 'rotation acceleration' - , mMaxRotSpeed(this, 'cmtm', "‰ñ“]Å‚‘¬“x", 0.9f, 0.0f, 5.0f) // 'max rotation speed' - , mRotDampRate(this, 'cmtb', "‰ñ“]Œ¸Š—¦", 0.85f, 0.0f, 1.0f) // 'rotation damping rate' + , mZoomDist(this, 'zmdt', "ZOOM è·é›¢", 250.0f, 10.0f, 5000.0f) // 'ZOOM distance' + , mZoomAngle(this, 'zman', "ZOOM アングル", 12.0f, 0.0f, 90.0f) // 'ZOOM angle' + , mZoomFOV(this, 'zmfv', "ZOOM FOV", 35.0f, 1.0f, 60.0f) // 'ZOOM fov' + , mCollRadius(this, 'clcr', "コリジョンåŠå¾„", 300.0f, 0.0f, 500.0f) // 'collision radius' + , mCollInterpSpeed(this, 'clms', "コリジョン補間速度", 0.005f, 0.001f, 1.0f) // 'collision interpolation speed' + , mCollCorrHeight(this, 'clmh', "コリジョン補正高", 5.0f, 0.0f, 100.0f) // 'collision correction height' + , mNoCollHeight(this, 'clnh', "コリジョン無ã—高", 25.0f, 0.0f, 500.0f) // 'no collision height' + , mSettingChangeSpeed(this, 'cpmd', "設定変更速度", 0.1f, 0.0f, 1.0f) // 'setting change speed' + , mRotSpeed(this, 'cmmt', "回転速度", 0.2f, 0.0f, 1.0f) // 'rotation speed' + , mRotFollowTime(this, 'cmft', "回転追従時間", 0.6f, 0.0f, 3.0f) // 'rotation follow time' + , mRotAccel(this, 'cmta', "回転加速度", 0.005f, 0.0f, 1.0f) // 'rotation acceleration' + , mMaxRotSpeed(this, 'cmtm', "回転最高速度", 0.9f, 0.0f, 5.0f) // 'max rotation speed' + , mRotDampRate(this, 'cmtb', "回転減衰率", 0.85f, 0.0f, 1.0f) // 'rotation damping rate' { } diff --git a/include/Game/Cave/Info.h b/include/Game/Cave/Info.h index 923a99192..e06527089 100644 --- a/include/Game/Cave/Info.h +++ b/include/Game/Cave/Info.h @@ -223,7 +223,7 @@ struct CaveInfo : public CNode { struct Parms : Parameters { inline Parms() : Parameters(nullptr, "CaveInfo") - , mFloorMax(this, 'c000', "ŠK‘w", 1, 1, 128) // 'floor' + , mFloorMax(this, 'c000', "階層", 1, 1, 128) // 'floor' { } diff --git a/include/Game/EnemyEffectNode.h b/include/Game/EnemyEffectNode.h index 0fcf59328..09f85451d 100644 --- a/include/Game/EnemyEffectNode.h +++ b/include/Game/EnemyEffectNode.h @@ -10,7 +10,7 @@ struct EnemyBase; struct EnemyEffectNodeBase : public CNode { inline EnemyEffectNodeBase() - : CNode("”g–ä") // ripple + : CNode("波紋") // ripple { } diff --git a/include/Game/EnemyParmsBase.h b/include/Game/EnemyParmsBase.h index 6657a4941..c218326d4 100644 --- a/include/Game/EnemyParmsBase.h +++ b/include/Game/EnemyParmsBase.h @@ -52,53 +52,53 @@ struct EnemyParmsBase : public CreatureParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "EnemyParmsBase") - , mHealth(this, 'fp00', "ƒ‰ƒCƒt", 100.0f, 0.0f, 99999.0f) // life - , mLifeMeterHeight(this, 'fp27', "ƒ‰ƒCƒt‚Ì‚‚³", 50.0f, 0.0f, 1000.0f) // height of life - , mRegenerationRate(this, 'fp31', "ƒ‰ƒCƒt‰ñ•œ—¦", 0.01f, 0.0f, 1.0f) // life recovery rate - , mLifeBeforeAlert(this, 'fp30', "Œx‰úƒ‰ƒCƒt", 30.0f, 0.0f, 99999.0f) // 'vigilant life' - , mHeightOffsetFromFloor(this, 'fp01', "ƒ}ƒbƒv‚Æ‚Ì“–‚è", 40.0f, 0.0f, 100.0f) // 'match with the map' - , mCellRadius(this, 'fp33', "ƒ}ƒbƒv‚Æ‚Ì‚ ‚½‚èƒ|ƒŠƒSƒ“‚Ì‘I’è", 40.0f, 0.0f, + , mHealth(this, 'fp00', "ライフ", 100.0f, 0.0f, 99999.0f) // life + , mLifeMeterHeight(this, 'fp27', "ライフã®é«˜ã•", 50.0f, 0.0f, 1000.0f) // height of life + , mRegenerationRate(this, 'fp31', "ライフ回復率", 0.01f, 0.0f, 1.0f) // life recovery rate + , mLifeBeforeAlert(this, 'fp30', "警戒ライフ", 30.0f, 0.0f, 99999.0f) // 'vigilant life' + , mHeightOffsetFromFloor(this, 'fp01', "マップã¨ã®å½“ã‚Š", 40.0f, 0.0f, 100.0f) // 'match with the map' + , mCellRadius(this, 'fp33', "マップã¨ã®ã‚ãŸã‚Šãƒãƒªã‚´ãƒ³ã®é¸å®š", 40.0f, 0.0f, 500.0f) // 'selection of map-related polygons' - , mPikminDamageRadius(this, 'fp34', "ƒsƒNƒ~ƒ“‚Æ‚Ì‚ ‚½‚è", 40.0f, 0.0f, 500.0f) // 'about pikmin' - , mOffCameraRadius(this, 'fp32', "LOD”¼Œa", 40.0f, 0.0f, 500.0f) // LOD radius - , mHorizontalDamageScale(this, 'fp02', "ƒ_ƒ[ƒWƒXƒP[ƒ‹XZ", 0.2f, 0.0f, 1.0f) // damage scale XZ - , mVerticalDamageScale(this, 'fp03', "ƒ_ƒ[ƒWƒXƒP[ƒ‹Y", 0.25f, 0.0f, 1.0f) // damage scale Y - , mDamageScaleDuration(this, 'fp04', "ƒ_ƒ[ƒWƒtƒŒ[ƒ€", 0.35f, 0.0f, 1.0f) // 'damage frame' - , mMass(this, 'fp05', "Ž¿—Ê", 1.0f, 0.0f, 100.0f) // mass - , mMoveSpeed(this, 'fp06', "‘¬“x", 80.0f, 0.0f, 1000.0f) // speed - , mTurnSpeed(this, 'fp08', "‰ñ“]‘¬“x—¦", 0.1f, 0.0f, 1.0f) // rotation speed rate - , mMaxTurnAngle(this, 'fp28', "‰ñ“]ő呬“x", 10.0f, 0.0f, 360.0f) // maximum rotation speed - , mTerritoryRadius(this, 'fp09', "ƒeƒŠƒgƒŠ[", 200.0f, 1.0f, 1000.0f) // territory - , mHomeRadius(this, 'fp10', "ƒz[ƒ€”͈Í", 15.0f, 1.0f, 1000.0f) // home range - , mPrivateRadius(this, 'fp11', "ƒvƒ‰ƒCƒx[ƒg‹——£", 70.0f, 0.0f, 1000.0f) // private distance - , mSightRadius(this, 'fp12', "Ž‹ŠE‹——£", 200.0f, 0.0f, 1000.0f) // sight distance - , mFov(this, 'fp25', "Ž‹ŠE‚", 50.0f, 0.0f, 1000.0f) // visibility height - , mViewAngle(this, 'fp13', "Ž‹ŠEŠp“x", 90.0f, 0.0f, 180.0f) // view angle - , mSearchDistance(this, 'fp14', "’Tõ‹——£", 200.0f, 0.0f, 1000.0f) // search distance - , mSearchHeight(this, 'fp26', "’Tõ‚", 50.0f, 0.0f, 1000.0f) // search height - , mSearchAngle(this, 'fp15', "’TõŠp“x", 120.0f, 0.0f, 180.0f) // search angle - , mShakeKnockback(this, 'fp17', "U‚è•¥‚¢—Í", 300.0f, 0.0f, 1000.0f) // shake off power - , mShakeDamage(this, 'fp18', "U‚è•¥‚¢ƒ_ƒ[ƒW", 0.0f, 0.0f, 1000.0f) // shake off damage - , mShakeRange(this, 'fp19', "U‚è•¥‚¢”͈Í", 120.0f, 0.0f, 1000.0f) // shake off range - , mShakeChance(this, 'fp16', "U‚è•¥‚¢—¦", 1.0f, 0.0f, 1.0f) // shake off rate - , mMaxAttackRange(this, 'fp20', "UŒ‚‰Â”\\”͈Í", 70.0f, 0.0f, 1000.0f) // attack range - SHIFT-JIS IS WRONG - , mMaxAttackAngle(this, 'fp21', "UŒ‚‰Â”\\Šp“x", 15.0f, 0.0f, + , mPikminDamageRadius(this, 'fp34', "ピクミンã¨ã®ã‚ãŸã‚Š", 40.0f, 0.0f, 500.0f) // 'about pikmin' + , mOffCameraRadius(this, 'fp32', "LODåŠå¾„", 40.0f, 0.0f, 500.0f) // LOD radius + , mHorizontalDamageScale(this, 'fp02', "ダメージスケールXZ", 0.2f, 0.0f, 1.0f) // damage scale XZ + , mVerticalDamageScale(this, 'fp03', "ダメージスケールY", 0.25f, 0.0f, 1.0f) // damage scale Y + , mDamageScaleDuration(this, 'fp04', "ダメージフレーム", 0.35f, 0.0f, 1.0f) // 'damage frame' + , mMass(this, 'fp05', "質é‡", 1.0f, 0.0f, 100.0f) // mass + , mMoveSpeed(this, 'fp06', "速度", 80.0f, 0.0f, 1000.0f) // speed + , mTurnSpeed(this, 'fp08', "回転速度率", 0.1f, 0.0f, 1.0f) // rotation speed rate + , mMaxTurnAngle(this, 'fp28', "回転最大速度", 10.0f, 0.0f, 360.0f) // maximum rotation speed + , mTerritoryRadius(this, 'fp09', "テリトリー", 200.0f, 1.0f, 1000.0f) // territory + , mHomeRadius(this, 'fp10', "ホーム範囲", 15.0f, 1.0f, 1000.0f) // home range + , mPrivateRadius(this, 'fp11', "プライベートè·é›¢", 70.0f, 0.0f, 1000.0f) // private distance + , mSightRadius(this, 'fp12', "視界è·é›¢", 200.0f, 0.0f, 1000.0f) // sight distance + , mFov(this, 'fp25', "視界高", 50.0f, 0.0f, 1000.0f) // visibility height + , mViewAngle(this, 'fp13', "視界角度", 90.0f, 0.0f, 180.0f) // view angle + , mSearchDistance(this, 'fp14', "探索è·é›¢", 200.0f, 0.0f, 1000.0f) // search distance + , mSearchHeight(this, 'fp26', "探索高", 50.0f, 0.0f, 1000.0f) // search height + , mSearchAngle(this, 'fp15', "探索角度", 120.0f, 0.0f, 180.0f) // search angle + , mShakeKnockback(this, 'fp17', "振り払ã„力", 300.0f, 0.0f, 1000.0f) // shake off power + , mShakeDamage(this, 'fp18', "振り払ã„ダメージ", 0.0f, 0.0f, 1000.0f) // shake off damage + , mShakeRange(this, 'fp19', "振り払ã„範囲", 120.0f, 0.0f, 1000.0f) // shake off range + , mShakeChance(this, 'fp16', "振り払ã„率", 1.0f, 0.0f, 1.0f) // shake off rate + , mMaxAttackRange(this, 'fp20', "攻撃å¯èƒ½\範囲", 70.0f, 0.0f, 1000.0f) // attack range - SHIFT-JIS IS WRONG + , mMaxAttackAngle(this, 'fp21', "攻撃å¯èƒ½\角度", 15.0f, 0.0f, 180.0f) // 'possible attack angle' - SHIFT-JIS IS WRONG - , mAttackRadius(this, 'fp22', "UŒ‚ƒqƒbƒg”͈Í", 70.0f, 0.0f, 1000.0f) // attack hit range - , mAttackHitAngle(this, 'fp23', "UŒ‚ƒqƒbƒgŠp“x", 15.0f, 0.0f, 180.0f) // attack hit angle - , mAttackDamage(this, 'fp24', "UŒ‚—Í", 10.0f, 0.0f, 1000.0f) // attack power - , mAlertDuration(this, 'fp29', "Œx‰úŽžŠÔ", 15.0f, 0.0f, 99.0f) // alert time - , mBitterDuration(this, 'fp35', "Ή»ŽžŠÔ", 1.0f, 0.0f, 60.0f) // stone time - , mPurplePikiStunDamage(this, 'fp36', "ƒqƒbƒvƒhƒƒbƒvƒ_ƒ[ƒW", 10.0f, 0.0f, 1000.0f) // hip drop damage - , mPurplePikiStunChance(this, 'fp37', "’nk‹CâŠm—§", 0.05f, 0.0f, 1.0f) // earthquake faint probability - , mPurplePikiStunDuration(this, 'fp38', "’nk‹C⎞ŠÔ", 10.0f, 0.0f, 60.0f) // earthquake faint time - , mShakeOffBlowA(this, 'ip01', "U‚è•¥‚¢‘ÅŒ‚‚`", 3, 0, 200) // shake off blow A - , mShakeOffSticking1(this, 'ip02', "U‚è•¥‚¢’£•t‚P", 3, 0, 100) // shake off sticking 1 - , mShakeOffBlowB(this, 'ip03', "U‚è•¥‚¢‘ÅŒ‚‚a", 8, 0, 200) // shake off blow B - , mShakeOffSticking2(this, 'ip04', "U‚è•¥‚¢’£•t‚Q", 5, 0, 100) // shake off sticking 2 - , mShakeOffBlowC(this, 'ip05', "U‚è•¥‚¢‘ÅŒ‚‚b", 15, 0, 200) // shake off blow C - , mShakeOffSticking3(this, 'ip06', "U‚è•¥‚¢’£•t‚R", 10, 0, 100) // shake off sticking 3 - , mShakeOffBlowD(this, 'ip07', "U‚è•¥‚¢‘ÅŒ‚‚c", 30, 0, 200) // shake off blow D + , mAttackRadius(this, 'fp22', "攻撃ヒット範囲", 70.0f, 0.0f, 1000.0f) // attack hit range + , mAttackHitAngle(this, 'fp23', "攻撃ヒット角度", 15.0f, 0.0f, 180.0f) // attack hit angle + , mAttackDamage(this, 'fp24', "攻撃力", 10.0f, 0.0f, 1000.0f) // attack power + , mAlertDuration(this, 'fp29', "警戒時間", 15.0f, 0.0f, 99.0f) // alert time + , mBitterDuration(this, 'fp35', "石化時間", 1.0f, 0.0f, 60.0f) // stone time + , mPurplePikiStunDamage(this, 'fp36', "ヒップドロップダメージ", 10.0f, 0.0f, 1000.0f) // hip drop damage + , mPurplePikiStunChance(this, 'fp37', "地震気絶確立", 0.05f, 0.0f, 1.0f) // earthquake faint probability + , mPurplePikiStunDuration(this, 'fp38', "地震気絶時間", 10.0f, 0.0f, 60.0f) // earthquake faint time + , mShakeOffBlowA(this, 'ip01', "振り払ã„打撃A", 3, 0, 200) // shake off blow A + , mShakeOffSticking1(this, 'ip02', "振り払ã„張付1", 3, 0, 100) // shake off sticking 1 + , mShakeOffBlowB(this, 'ip03', "振り払ã„打撃B", 8, 0, 200) // shake off blow B + , mShakeOffSticking2(this, 'ip04', "振り払ã„張付2", 5, 0, 100) // shake off sticking 2 + , mShakeOffBlowC(this, 'ip05', "振り払ã„打撃C", 15, 0, 200) // shake off blow C + , mShakeOffSticking3(this, 'ip06', "振り払ã„張付3", 10, 0, 100) // shake off sticking 3 + , mShakeOffBlowD(this, 'ip07', "振り払ã„打撃D", 30, 0, 200) // shake off blow D { } diff --git a/include/Game/Entities/Armor.h b/include/Game/Entities/Armor.h index 5142931da..8db761eec 100644 --- a/include/Game/Entities/Armor.h +++ b/include/Game/Entities/Armor.h @@ -110,9 +110,9 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mPoisonDamage(this, 'fp01', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // 'white pikmin' - , mAttackLoopTimer(this, 'fp11', "UŒ‚ƒ‹[ƒvŽžŠÔ", 0.0f, 0.0f, 10.0f) // 'attack loop time' - , mBridgeDamage(this, 'fp12', "‹´H‚¢ƒpƒ[", 100.0f, 0.0f, 100.0f) // 'bridge eating power' + , mPoisonDamage(this, 'fp01', "白ピクミン", 300.0f, 0.0f, 10000.0f) // 'white pikmin' + , mAttackLoopTimer(this, 'fp11', "攻撃ループ時間", 0.0f, 0.0f, 10.0f) // 'attack loop time' + , mBridgeDamage(this, 'fp12', "橋食ã„パワー", 100.0f, 0.0f, 100.0f) // 'bridge eating power' { } diff --git a/include/Game/Entities/Baby.h b/include/Game/Entities/Baby.h index 193ad0435..774f958f5 100644 --- a/include/Game/Entities/Baby.h +++ b/include/Game/Entities/Baby.h @@ -91,8 +91,8 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mPoisonDamage(this, 'fp01', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // 'white pikmin' - , mNectarChance(this, 'fp11', "–¨o‚µŠm—¦", 0.2f, 0.0f, 1.0f) // 'probability of getting out honey' + , mPoisonDamage(this, 'fp01', "白ピクミン", 300.0f, 0.0f, 10000.0f) // 'white pikmin' + , mNectarChance(this, 'fp11', "蜜出ã—確率", 0.2f, 0.0f, 1.0f) // 'probability of getting out honey' { } diff --git a/include/Game/Entities/BigFoot.h b/include/Game/Entities/BigFoot.h index 853963eda..68880ad30 100644 --- a/include/Game/Entities/BigFoot.h +++ b/include/Game/Entities/BigFoot.h @@ -184,25 +184,25 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mBaseCoefficient(this, 'fp01', "ƒx[ƒXŒW”", 3.0f, 0.0f, 10.0f) // 'base factor' - , mRaiseSlowdownFactor(this, 'fp02', "ã‚°Œ¸‘¬ŒW”", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor' - , mDownwardAccelFactor(this, 'fp03', "‰º‚°‰Á‘¬ŒW”", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' - , mMinDecelFactor(this, 'fp04', "Œጸ‰Á‘¬ŒW”", -2.5f, -10.0f, + , mBaseCoefficient(this, 'fp01', "ベース係数", 3.0f, 0.0f, 10.0f) // 'base factor' + , mRaiseSlowdownFactor(this, 'fp02', "上ã’減速係数", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor' + , mDownwardAccelFactor(this, 'fp03', "下ã’加速係数", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' + , mMinDecelFactor(this, 'fp04', "最低減加速係数", -2.5f, -10.0f, 10.0f) // 'minimum deceleration acceleration factor' - , mMaxDecelFactor(this, 'fp05', "Å‚Œ¸‰Á‘¬ŒW”", 10.0f, -10.0f, + , mMaxDecelFactor(this, 'fp05', "最高減加速係数", 10.0f, -10.0f, 10.0f) // 'maximum deceleration acceleration factor' - , mLegSwing(this, 'fp06', "‘«‚ÌU‚èã‚°", 120.0f, 0.0f, 200.0f) // 'leg swing' - , mEnragedBaseCoefficient(this, 'fp11', "ƒx[ƒXŒW”(s)", 3.0f, 0.0f, 10.0f) // 'base factor(s)' - , mEnragedRaiseSlowdownFactor(this, 'fp12', "ã‚°Œ¸‘¬ŒW”(s)", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor(s)' - , mEnragedDownwardAccelFactor(this, 'fp13', "‰º‚°‰Á‘¬ŒW”(s)", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor(s)' - , mEnragedMinDecelFactor(this, 'fp14', "Œጸ‰Á‘¬ŒW”(s)", -2.0f, -10.0f, + , mLegSwing(this, 'fp06', "足ã®æŒ¯ã‚Šä¸Šã’", 120.0f, 0.0f, 200.0f) // 'leg swing' + , mEnragedBaseCoefficient(this, 'fp11', "ベース係数(s)", 3.0f, 0.0f, 10.0f) // 'base factor(s)' + , mEnragedRaiseSlowdownFactor(this, 'fp12', "上ã’減速係数(s)", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor(s)' + , mEnragedDownwardAccelFactor(this, 'fp13', "下ã’加速係数(s)", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor(s)' + , mEnragedMinDecelFactor(this, 'fp14', "最低減加速係数(s)", -2.0f, -10.0f, 10.0f) // 'minimum deceleration acceleration factor(s)' - , mEnragedMaxDecelFactor(this, 'fp15', "Å‚Œ¸‰Á‘¬ŒW”(s)", 10.0f, -10.0f, + , mEnragedMaxDecelFactor(this, 'fp15', "最高減加速係数(s)", 10.0f, -10.0f, 10.0f) // 'maximum deceleration acceleration factor(s)' - , mEnragedLegSwing(this, 'fp16', "‘«‚ÌU‚èã‚°(s)", 120.0f, 0.0f, 200.0f) // 'leg swing(s)' - , mMovementOffset(this, 'fp17', "ˆÚ“®ƒIƒtƒZƒbƒg(s)", 50.0f, 0.0f, 200.0f) // 'movement offset(s)' - , mNormalTravelTime(this, 'fp20', "’ÊíˆÚ“®ŽžŠÔ", 10.0f, 0.0f, 100.0f) // 'normal travel time' - , mPostShakeTravelTime(this, 'fp21', "U•¥ŒãˆÚ“®ŽžŠÔ", 3.0f, 0.0f, 100.0f) // 'post-shakeoff travel time' + , mEnragedLegSwing(this, 'fp16', "足ã®æŒ¯ã‚Šä¸Šã’(s)", 120.0f, 0.0f, 200.0f) // 'leg swing(s)' + , mMovementOffset(this, 'fp17', "移動オフセット(s)", 50.0f, 0.0f, 200.0f) // 'movement offset(s)' + , mNormalTravelTime(this, 'fp20', "通常移動時間", 10.0f, 0.0f, 100.0f) // 'normal travel time' + , mPostShakeTravelTime(this, 'fp21', "振払後移動時間", 3.0f, 0.0f, 100.0f) // 'post-shakeoff travel time' { } diff --git a/include/Game/Entities/BigTreasure.h b/include/Game/Entities/BigTreasure.h index 86f097b65..73242fa1d 100644 --- a/include/Game/Entities/BigTreasure.h +++ b/include/Game/Entities/BigTreasure.h @@ -306,80 +306,80 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mBaseFactor(this, 'fp01', "ƒx[ƒXŒW”", 3.0f, 0.0f, 10.0f) // 'base factor' - , mRaiseDecelFactor(this, 'fp02', "ã‚°Œ¸‘¬ŒW”", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor' - , mDownwardDecelFactor(this, 'fp03', "‰º‚°‰Á‘¬ŒW”", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' - , mMinReducedAccelFactor(this, 'fp04', "Œጸ‰Á‘¬ŒW”", -2.0f, -10.0f, 10.0f) // 'min reduced acceleration factor' - , mMaxDecelAccelFactor(this, 'fp05', "Å‚Œ¸‰Á‘¬ŒW”", 10.0f, -10.0f, 10.0f) // 'max deceleration acceleration factor' - , mLegSwing(this, 'fp06', "‘«‚ÌU‚èã‚°", 120.0f, 0.0f, 200.0f) // 'leg swing' - , mElectricityWaitTime(this, 'fp10', "—\\”õŽžŠÔ(“d‹C)", 2.5f, 0.0f, 10.0f) // 'wait time (electricity)' - , mFireWaitTime1(this, 'fp11', "—\\”õŽžŠÔ(‰Î:1)", 2.8f, 0.0f, 10.0f) // 'wait time (fire:1)' - , mFireWaitTime2(this, 'fp31', "—\\”õŽžŠÔ(‰Î:2)", 2.5f, 0.0f, 10.0f) // 'wait time (fire:2)' - , mGasWaitTime(this, 'fp12', "—\\”õŽžŠÔ(ƒKƒX)", 2.5f, 0.0f, 10.0f) // 'wait time (gas)' - , mWaterWaitTime(this, 'fp13', "—\\”õŽžŠÔ(…)", 2.5f, 0.0f, 10.0f) // 'wait time (water)' - , mElecAttackTimeMax(this, 'fp20', "UŒ‚ŽžŠÔ(“d‹C)", 5.0f, 0.0f, 10.0f) // 'attack time (electricity)' - , mFireAttackTimeMax(this, 'fp21', "UŒ‚ŽžŠÔ(‰Î)", 5.0f, 0.0f, 10.0f) // 'attack time (fire)' - , mGasAttackTimeMax(this, 'fp22', "UŒ‚ŽžŠÔ(ƒKƒX)", 5.0f, 0.0f, 10.0f) // 'attack time (gas)' - , mWaterAttackTimeMax(this, 'fp23', "UŒ‚ŽžŠÔ(…)", 5.0f, 0.0f, 10.0f) // 'attack time (water)' - - , mBounceCoefficient1_1(this, 'fe00', "’µ•ÔŒW”(1-1)", 0.75f, 0.0f, 1.0f) // 'bounce coefficient (1-1)' - , mFrictionCoefficient1_1(this, 'fe01', "–€ŽCŒW”(1-1)", 0.65f, 0.0f, 1.0f) // 'friction coefficient (1-1)' - , mBaseMuzzleVelocityXZ1_1(this, 'fe02', "XZ‰‘¬Base(1-1)", 100.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (1-1)' - , mRandMuzzleVelocityXZ1_1(this, 'fe03', "XZ‰‘¬Rand(1-1)", 220.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (1-1)' - , mBaseMuzzleVelocityY1_1(this, 'fe04', "Y‰‘¬Base(1-1)", 170.0f, 0.0f, 500.0f) // 'Y initial velocity Base (1-1)' - , mRandMuzzleVelocityY1_1(this, 'fe05', "Y‰‘¬Rand(1-1)", 200.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (1-1)' - , mDischargeStart1_1(this, 'fe06', "•ú“dŠJŽn(1-1)", 2.7f, 0.0f, 5.0f) // 'discharge start (1-1)' - , mChainInterval1_1(this, 'fe08', "˜A½ŠÔŠu(1-1)", 0.02f, 0.0f, 1.0f) // 'chain interval (1-1)' - , mDischargeCount1_1(this, 'fe07', "•ú“d”(1-1)", 10, 0, 16) // 'number of discharges (1-1)' - - , mBounceCoefficient1_2(this, 'fe10', "’µ•ÔŒW”(1-2)", 0.7f, 0.0f, 1.0f) // 'bounce coefficient (1-2)' - , mFrictionCoefficient1_2(this, 'fe11', "–€ŽCŒW”(1-2)", 0.65f, 0.0f, 1.0f) // 'friction coefficient (1-2)' - , mBaseMuzzleVelocityXZ1_2(this, 'fe12', "XZ‰‘¬Base(1-2)", 80.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (1-2)' - , mRandMuzzleVelocityXZ1_2(this, 'fe13', "XZ‰‘¬Rand(1-2)", 250.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (1-2)' - , mBaseMuzzleVelocityY1_2(this, 'fe14', "Y‰‘¬Base(1-2)", 350.0f, 0.0f, 500.0f) // 'Y initial velocity Base (1-2)' - , mRandMuzzleVelocityY1_2(this, 'fe15', "Y‰‘¬Rand(1-2)", 100.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (1-2)' - , mDischargeStart1_2(this, 'fe16', "•ú“dŠJŽn(1-2)", 4.5f, 0.0f, 5.0f) // 'discharge start (1-2)' - , mChainInterval1_2(this, 'fe18', "˜A½ŠÔŠu(1-2)", 0.02f, 0.0f, 1.0f) // 'chain interval (1-2)' - , mDischargeCount1_2(this, 'fe17', "•ú“d”(1-2)", 12, 0, 16) // 'number of discharges (1-2)' - - , mBounceCoefficient2_1(this, 'fe20', "’µ•ÔŒW”(2-1)", 0.97f, 0.0f, 1.0f) // 'bounce coefficient (2-1)' - , mFrictionCoefficient2_1(this, 'fe21', "–€ŽCŒW”(2-1)", 0.75f, 0.0f, 1.0f) // 'friction coefficient (2-1)' - , mBaseMuzzleVelocityXZ2_1(this, 'fe22', "XZ‰‘¬Base(2-1)", 60.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (2-1)' - , mRandMuzzleVelocityXZ2_1(this, 'fe23', "XZ‰‘¬Rand(2-1)", 70.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (2-1)' - , mBaseMuzzleVelocityY2_1(this, 'fe24', "Y‰‘¬Base(2-1)", 350.0f, 0.0f, 500.0f) // 'Y initial velocity Base (2-1)' - , mRandMuzzleVelocityY2_1(this, 'fe25', "Y‰‘¬Rand(2-1)", 100.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (2-1)' - , mDischargeStart2_1(this, 'fe26', "•ú“dŠJŽn(2-1)", 0.5f, 0.0f, 5.0f) // 'discharge start (2-1)' - , mChainInterval2_1(this, 'fe28', "˜A½ŠÔŠu(2-1)", 0.25f, 0.0f, 1.0f) // 'chain interval (2-1)' - , mDischargeCount2_1(this, 'fe27', "•ú“d”(2-1)", 8, 0, 16) // 'number of discharges (2-1)' - - , mBounceCoefficient2_2(this, 'fe30', "’µ•ÔŒW”(2-2)", 0.2f, 0.0f, 1.0f) // 'bounce coefficient (2-2)' - , mFrictionCoefficient2_2(this, 'fe31', "–€ŽCŒW”(2-2)", 0.985f, 0.0f, 1.0f) // 'friction coefficient (2-2)' - , mBaseMuzzleVelocityXZ2_2(this, 'fe32', "XZ‰‘¬Base(2-2)", 100.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (2-2)' - , mRandMuzzleVelocityXZ2_2(this, 'fe33', "XZ‰‘¬Rand(2-2)", 90.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (2-2)' - , mBaseMuzzleVelocityY2_2(this, 'fe34', "Y‰‘¬Base(2-2)", 70.0f, 0.0f, 500.0f) // 'Y initial velocity Base (2-2)' - , mRandMuzzleVelocityY2_2(this, 'fe35', "Y‰‘¬Rand(2-2)", 20.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (2-2)' - , mDischargeStart2_2(this, 'fe36', "•ú“dŠJŽn(2-2)", 0.2f, 0.0f, 5.0f) // 'discharge start (2-2)' - , mChainInterval2_2(this, 'fe38', "˜A½ŠÔŠu(2-2)", 0.15f, 0.0f, 1.0f) // 'chain interval (2-2)' - , mDischargeCount2_2(this, 'fe37', "•ú“d”(2-2)", 14, 0, 16) // 'number of discharges (2-2)' - - , mPatternCheckFlame(this, 'fe99', "ƒpƒ^[ƒ“ƒ`ƒFƒbƒN", 0, 0, 4) // 'pattern check' - , mFlameScale1(this, 'ff00', "‰Î‰ŠƒXƒP[ƒ‹(1)", 1.0f, 0.5f, 5.0f) // 'flame scale (1)' - , mFlameScale2(this, 'ff10', "‰Î‰ŠƒXƒP[ƒ‹(2)", 1.25f, 0.5f, 5.0f) // 'flame scale (2)' - - , mPatternCheckRotation(this, 'fg99', "ƒpƒ^[ƒ“ƒ`ƒFƒbƒN", 0, 0, 2) // 'pattern check' - , mRotationSpeed1(this, 'fg00', "‰ñ“]ƒXƒs[ƒh(1)", 0.015f, 0.01f, 0.03f) // 'rotation speed (1)' - , mRotationSpeed2(this, 'fg10', "‰ñ“]ƒXƒs[ƒh(2)", 0.02f, 0.01f, 0.03f) // 'rotation speed (2)' - , mReversalTime2_1(this, 'fg30', "”½“]ŽžŠÔ(2-1)", 30.0f, 0.0f, 30.0f) // 'reversal time (2-1)' - , mReversalTime2_2(this, 'fg40', "”½“]ŽžŠÔ(2-2)", 2.0f, 0.0f, 30.0f) // 'reversal time (2-2)' - - , mPatternCheckWater(this, 'fg99', "ƒpƒ^[ƒ“ƒ`ƒFƒbƒN", 0, 0, 3) // 'pattern check' - , mWaterDischargeInterval1(this, 'fw00', "•ú…ŠÔŠu(1)", 0.5f, 0.1f, 1.0f) // 'water discharge interval (1)' - , mRandomAngle1(this, 'fw01', "ƒ‰ƒ“ƒ_ƒ€Šp“x(1)", 0.5f, 0.0f, 1.0f) // 'random angle (1)' - , mRandomDistance1(this, 'fw02', "ƒ‰ƒ“ƒ_ƒ€‹——£(1)", 100.0f, 0.0f, 500.0f) // 'random distance (1)' - , mWaterDischargeInterval2(this, 'fw10', "•ú…ŠÔŠu(2)", 0.25f, 0.1f, 1.0f) // 'water discharge interval (2) - , mRandomAngle2(this, 'fw11', "ƒ‰ƒ“ƒ_ƒ€Šp“x(2)", 0.4f, 0.0f, 1.0f) // 'random angle (2)' - , mRandomDistance2(this, 'fw12', "ƒ‰ƒ“ƒ_ƒ€‹——£(2)", 50.0f, 0.0f, 500.0f) // 'random distance (2)' - , mPatternCheck4(this, 'fw99', "ƒpƒ^[ƒ“ƒ`ƒFƒbƒN", 0, 0, 2) // 'pattern check' + , mBaseFactor(this, 'fp01', "ベース係数", 3.0f, 0.0f, 10.0f) // 'base factor' + , mRaiseDecelFactor(this, 'fp02', "上ã’減速係数", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor' + , mDownwardDecelFactor(this, 'fp03', "下ã’加速係数", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' + , mMinReducedAccelFactor(this, 'fp04', "最低減加速係数", -2.0f, -10.0f, 10.0f) // 'min reduced acceleration factor' + , mMaxDecelAccelFactor(this, 'fp05', "最高減加速係数", 10.0f, -10.0f, 10.0f) // 'max deceleration acceleration factor' + , mLegSwing(this, 'fp06', "足ã®æŒ¯ã‚Šä¸Šã’", 120.0f, 0.0f, 200.0f) // 'leg swing' + , mElectricityWaitTime(this, 'fp10', "予\備時間(電気)", 2.5f, 0.0f, 10.0f) // 'wait time (electricity)' + , mFireWaitTime1(this, 'fp11', "予\備時間(ç«:1)", 2.8f, 0.0f, 10.0f) // 'wait time (fire:1)' + , mFireWaitTime2(this, 'fp31', "予\備時間(ç«:2)", 2.5f, 0.0f, 10.0f) // 'wait time (fire:2)' + , mGasWaitTime(this, 'fp12', "予\備時間(ガス)", 2.5f, 0.0f, 10.0f) // 'wait time (gas)' + , mWaterWaitTime(this, 'fp13', "予\備時間(æ°´)", 2.5f, 0.0f, 10.0f) // 'wait time (water)' + , mElecAttackTimeMax(this, 'fp20', "攻撃時間(電気)", 5.0f, 0.0f, 10.0f) // 'attack time (electricity)' + , mFireAttackTimeMax(this, 'fp21', "攻撃時間(ç«)", 5.0f, 0.0f, 10.0f) // 'attack time (fire)' + , mGasAttackTimeMax(this, 'fp22', "攻撃時間(ガス)", 5.0f, 0.0f, 10.0f) // 'attack time (gas)' + , mWaterAttackTimeMax(this, 'fp23', "攻撃時間(æ°´)", 5.0f, 0.0f, 10.0f) // 'attack time (water)' + + , mBounceCoefficient1_1(this, 'fe00', "跳返係数(1-1)", 0.75f, 0.0f, 1.0f) // 'bounce coefficient (1-1)' + , mFrictionCoefficient1_1(this, 'fe01', "摩擦係数(1-1)", 0.65f, 0.0f, 1.0f) // 'friction coefficient (1-1)' + , mBaseMuzzleVelocityXZ1_1(this, 'fe02', "XZåˆé€ŸBase(1-1)", 100.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (1-1)' + , mRandMuzzleVelocityXZ1_1(this, 'fe03', "XZåˆé€ŸRand(1-1)", 220.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (1-1)' + , mBaseMuzzleVelocityY1_1(this, 'fe04', "Yåˆé€ŸBase(1-1)", 170.0f, 0.0f, 500.0f) // 'Y initial velocity Base (1-1)' + , mRandMuzzleVelocityY1_1(this, 'fe05', "Yåˆé€ŸRand(1-1)", 200.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (1-1)' + , mDischargeStart1_1(this, 'fe06', "放電開始(1-1)", 2.7f, 0.0f, 5.0f) // 'discharge start (1-1)' + , mChainInterval1_1(this, 'fe08', "連鎖間隔(1-1)", 0.02f, 0.0f, 1.0f) // 'chain interval (1-1)' + , mDischargeCount1_1(this, 'fe07', "放電数(1-1)", 10, 0, 16) // 'number of discharges (1-1)' + + , mBounceCoefficient1_2(this, 'fe10', "跳返係数(1-2)", 0.7f, 0.0f, 1.0f) // 'bounce coefficient (1-2)' + , mFrictionCoefficient1_2(this, 'fe11', "摩擦係数(1-2)", 0.65f, 0.0f, 1.0f) // 'friction coefficient (1-2)' + , mBaseMuzzleVelocityXZ1_2(this, 'fe12', "XZåˆé€ŸBase(1-2)", 80.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (1-2)' + , mRandMuzzleVelocityXZ1_2(this, 'fe13', "XZåˆé€ŸRand(1-2)", 250.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (1-2)' + , mBaseMuzzleVelocityY1_2(this, 'fe14', "Yåˆé€ŸBase(1-2)", 350.0f, 0.0f, 500.0f) // 'Y initial velocity Base (1-2)' + , mRandMuzzleVelocityY1_2(this, 'fe15', "Yåˆé€ŸRand(1-2)", 100.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (1-2)' + , mDischargeStart1_2(this, 'fe16', "放電開始(1-2)", 4.5f, 0.0f, 5.0f) // 'discharge start (1-2)' + , mChainInterval1_2(this, 'fe18', "連鎖間隔(1-2)", 0.02f, 0.0f, 1.0f) // 'chain interval (1-2)' + , mDischargeCount1_2(this, 'fe17', "放電数(1-2)", 12, 0, 16) // 'number of discharges (1-2)' + + , mBounceCoefficient2_1(this, 'fe20', "跳返係数(2-1)", 0.97f, 0.0f, 1.0f) // 'bounce coefficient (2-1)' + , mFrictionCoefficient2_1(this, 'fe21', "摩擦係数(2-1)", 0.75f, 0.0f, 1.0f) // 'friction coefficient (2-1)' + , mBaseMuzzleVelocityXZ2_1(this, 'fe22', "XZåˆé€ŸBase(2-1)", 60.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (2-1)' + , mRandMuzzleVelocityXZ2_1(this, 'fe23', "XZåˆé€ŸRand(2-1)", 70.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (2-1)' + , mBaseMuzzleVelocityY2_1(this, 'fe24', "Yåˆé€ŸBase(2-1)", 350.0f, 0.0f, 500.0f) // 'Y initial velocity Base (2-1)' + , mRandMuzzleVelocityY2_1(this, 'fe25', "Yåˆé€ŸRand(2-1)", 100.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (2-1)' + , mDischargeStart2_1(this, 'fe26', "放電開始(2-1)", 0.5f, 0.0f, 5.0f) // 'discharge start (2-1)' + , mChainInterval2_1(this, 'fe28', "連鎖間隔(2-1)", 0.25f, 0.0f, 1.0f) // 'chain interval (2-1)' + , mDischargeCount2_1(this, 'fe27', "放電数(2-1)", 8, 0, 16) // 'number of discharges (2-1)' + + , mBounceCoefficient2_2(this, 'fe30', "跳返係数(2-2)", 0.2f, 0.0f, 1.0f) // 'bounce coefficient (2-2)' + , mFrictionCoefficient2_2(this, 'fe31', "摩擦係数(2-2)", 0.985f, 0.0f, 1.0f) // 'friction coefficient (2-2)' + , mBaseMuzzleVelocityXZ2_2(this, 'fe32', "XZåˆé€ŸBase(2-2)", 100.0f, 0.0f, 500.0f) // 'XZ initial velocity Base (2-2)' + , mRandMuzzleVelocityXZ2_2(this, 'fe33', "XZåˆé€ŸRand(2-2)", 90.0f, 0.0f, 500.0f) // 'XZ initial velocity Rand (2-2)' + , mBaseMuzzleVelocityY2_2(this, 'fe34', "Yåˆé€ŸBase(2-2)", 70.0f, 0.0f, 500.0f) // 'Y initial velocity Base (2-2)' + , mRandMuzzleVelocityY2_2(this, 'fe35', "Yåˆé€ŸRand(2-2)", 20.0f, 0.0f, 500.0f) // 'Y initial velocity Rand (2-2)' + , mDischargeStart2_2(this, 'fe36', "放電開始(2-2)", 0.2f, 0.0f, 5.0f) // 'discharge start (2-2)' + , mChainInterval2_2(this, 'fe38', "連鎖間隔(2-2)", 0.15f, 0.0f, 1.0f) // 'chain interval (2-2)' + , mDischargeCount2_2(this, 'fe37', "放電数(2-2)", 14, 0, 16) // 'number of discharges (2-2)' + + , mPatternCheckFlame(this, 'fe99', "パターンãƒã‚§ãƒƒã‚¯", 0, 0, 4) // 'pattern check' + , mFlameScale1(this, 'ff00', "ç«ç‚Žã‚¹ã‚±ãƒ¼ãƒ«(1)", 1.0f, 0.5f, 5.0f) // 'flame scale (1)' + , mFlameScale2(this, 'ff10', "ç«ç‚Žã‚¹ã‚±ãƒ¼ãƒ«(2)", 1.25f, 0.5f, 5.0f) // 'flame scale (2)' + + , mPatternCheckRotation(this, 'fg99', "パターンãƒã‚§ãƒƒã‚¯", 0, 0, 2) // 'pattern check' + , mRotationSpeed1(this, 'fg00', "回転スピード(1)", 0.015f, 0.01f, 0.03f) // 'rotation speed (1)' + , mRotationSpeed2(this, 'fg10', "回転スピード(2)", 0.02f, 0.01f, 0.03f) // 'rotation speed (2)' + , mReversalTime2_1(this, 'fg30', "å転時間(2-1)", 30.0f, 0.0f, 30.0f) // 'reversal time (2-1)' + , mReversalTime2_2(this, 'fg40', "å転時間(2-2)", 2.0f, 0.0f, 30.0f) // 'reversal time (2-2)' + + , mPatternCheckWater(this, 'fg99', "パターンãƒã‚§ãƒƒã‚¯", 0, 0, 3) // 'pattern check' + , mWaterDischargeInterval1(this, 'fw00', "放水間隔(1)", 0.5f, 0.1f, 1.0f) // 'water discharge interval (1)' + , mRandomAngle1(this, 'fw01', "ランダム角度(1)", 0.5f, 0.0f, 1.0f) // 'random angle (1)' + , mRandomDistance1(this, 'fw02', "ランダムè·é›¢(1)", 100.0f, 0.0f, 500.0f) // 'random distance (1)' + , mWaterDischargeInterval2(this, 'fw10', "放水間隔(2)", 0.25f, 0.1f, 1.0f) // 'water discharge interval (2) + , mRandomAngle2(this, 'fw11', "ランダム角度(2)", 0.4f, 0.0f, 1.0f) // 'random angle (2)' + , mRandomDistance2(this, 'fw12', "ランダムè·é›¢(2)", 50.0f, 0.0f, 500.0f) // 'random distance (2)' + , mPatternCheck4(this, 'fw99', "パターンãƒã‚§ãƒƒã‚¯", 0, 0, 2) // 'pattern check' { } diff --git a/include/Game/Entities/BlackMan.h b/include/Game/Entities/BlackMan.h index bd58d00d4..45e6cc7a4 100644 --- a/include/Game/Entities/BlackMan.h +++ b/include/Game/Entities/BlackMan.h @@ -245,22 +245,22 @@ struct Parms : public EnemyParmsBase { ProperParms() : Parameters(nullptr, "EnemyParmsBase") // Pod? - , mPodMoveSpeed(this, 'fp01', "ƒ|ƒbƒhˆÚ“®‘¬“x", 10.0f, 0.0f, 100.0f) + , mPodMoveSpeed(this, 'fp01', "ãƒãƒƒãƒ‰ç§»å‹•é€Ÿåº¦", 10.0f, 0.0f, 100.0f) // Running away (escape) - , mEscapeSpeed(this, 'fp02', "“¦‚°‘¬“x", 10.0f, 0.0f, 1000.0f) - , mEscapeRotationSpeed(this, 'fp03', "“¦‚°‰ñ“]‘¬“x—¦", 0.1f, 0.0f, 1.0f) - , mMaxEscapeRotationStep(this, 'fp04', "“¦‚°‰ñ“]ő呬“x", 10.0f, 0.0f, 360.0f) + , mEscapeSpeed(this, 'fp02', "逃ã’速度", 10.0f, 0.0f, 1000.0f) + , mEscapeRotationSpeed(this, 'fp03', "逃ã’回転速度率", 0.1f, 0.0f, 1.0f) + , mMaxEscapeRotationStep(this, 'fp04', "逃ã’回転最大速度", 10.0f, 0.0f, 360.0f) // Normal movement - , mTravelSpeed(this, 'fp05', "2’iŠK‘¬“x", 200.0f, 10.0f, 500.0f) - , mRotationSpeed(this, 'fp06', "2’iŠK‰ñ“]‘¬“x—¦", 0.1f, 0.0f, 1.0f) - , mMaxRotationStep(this, 'fp07', "2’iŠK‰ñ“]ő呬“x", 10.0f, 0.0f, 360.0f) + , mTravelSpeed(this, 'fp05', "2段階速度", 200.0f, 10.0f, 500.0f) + , mRotationSpeed(this, 'fp06', "2段階回転速度率", 0.1f, 0.0f, 1.0f) + , mMaxRotationStep(this, 'fp07', "2段階回転最大速度", 10.0f, 0.0f, 360.0f) // Walking speed - , mWalkingSpeed(this, 'fp11', "•à‚«‘¬“x", 10.0f, 0.0f, 100.0f) - , mTimerToTwoStep(this, 'ip01', "2’iŠK‚ւ̃^ƒCƒ}[", 300, 0, 3000) - , mDosinStopTimerLength(this, 'ip03', "ƒhƒVƒ“’âŽ~ƒ^ƒCƒ}[", 200, 0, 600) - , mFreezeTimerLength(this, 'ip04', "“¦‚°’âŽ~ƒ^ƒCƒ}[", 200, 0, 600) - , mContinuousEscapeTimerLength(this, 'ip05', "˜A‘±“¦‚°ƒ^ƒCƒ}[", 200, 0, 600) - , mStandStillTimerLength(this, 'ip06', "‚‚©‚ê’âŽ~ƒ^ƒCƒ}[", 200, 0, 600) + , mWalkingSpeed(this, 'fp11', "æ­©ã速度", 10.0f, 0.0f, 100.0f) + , mTimerToTwoStep(this, 'ip01', "2段階ã¸ã®ã‚¿ã‚¤ãƒžãƒ¼", 300, 0, 3000) + , mDosinStopTimerLength(this, 'ip03', "ドシンåœæ­¢ã‚¿ã‚¤ãƒžãƒ¼", 200, 0, 600) + , mFreezeTimerLength(this, 'ip04', "逃ã’åœæ­¢ã‚¿ã‚¤ãƒžãƒ¼", 200, 0, 600) + , mContinuousEscapeTimerLength(this, 'ip05', "連続逃ã’タイマー", 200, 0, 600) + , mStandStillTimerLength(this, 'ip06', "ã¤ã‹ã‚Œåœæ­¢ã‚¿ã‚¤ãƒžãƒ¼", 200, 0, 600) { } diff --git a/include/Game/Entities/Bomb.h b/include/Game/Entities/Bomb.h index d29b1f3f7..7c1604480 100644 --- a/include/Game/Entities/Bomb.h +++ b/include/Game/Entities/Bomb.h @@ -135,10 +135,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mDamageToEnemies(this, 'fp01', "“G‚ւ̃_ƒ[ƒW", 250.0f, 0.0f, 2000.0f) // 'damage to enemies' - , mBlastRangeHeight(this, 'fp02', "”š•—”͈͂‚³+-", 50.0f, 0.0f, 50.0f) // 'blast range height +-' - , mDamageLimit(this, 'ip01', "ƒ_ƒ[ƒWƒŠƒ~ƒbƒg", 2, 1, 10) // 'damage limit' - , mTriggerLimit(this, 'ip02', "—U”šƒŠƒ~ƒbƒg", 50, 0, 100) // 'induction limit' + , mDamageToEnemies(this, 'fp01', "敵ã¸ã®ãƒ€ãƒ¡ãƒ¼ã‚¸", 250.0f, 0.0f, 2000.0f) // 'damage to enemies' + , mBlastRangeHeight(this, 'fp02', "爆風範囲高ã•+-", 50.0f, 0.0f, 50.0f) // 'blast range height +-' + , mDamageLimit(this, 'ip01', "ダメージリミット", 2, 1, 10) // 'damage limit' + , mTriggerLimit(this, 'ip02', "誘爆リミット", 50, 0, 100) // 'induction limit' { } diff --git a/include/Game/Entities/BombSarai.h b/include/Game/Entities/BombSarai.h index 2f798416d..800a8263d 100644 --- a/include/Game/Entities/BombSarai.h +++ b/include/Game/Entities/BombSarai.h @@ -122,15 +122,15 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mFlightHeight(this, 'fp01', "”òs‚‚³", 90.0f, 0.0f, 150.0f) // 'flight height' - , mTransitHeight(this, 'fp03', "ó‘Ô‘JˆÚ‚‚³", 50.0f, 0.0f, 300.0f) // 'state transition height' - , mPitchRate(this, 'fp10', "㉺‚Ì—h‚ꑬ“x", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' - , mPitchAmp(this, 'fp11', "㉺‚Ì—h‚ê•", 20.0f, 0.0f, 50.0f) // 'width of vertical swing' - , mFreeRiseFactor(this, 'fp21', "㸌W”(0)", 1.5f, 0.0f, 5.0f) // 'climbing factor (0)' - , mLadenRiseFactor(this, 'fp22', "㸌W”(5)", 1.0f, 0.0f, 5.0f) // 'climbing factor (5)' - , mFreeFlickChance(this, 'fp31', "U•¥Šm—¦(1)", 0.1f, 0.0f, 1.0f) // 'payoff probability (1)' - , mLadenFlickChance(this, 'fp32', "U•¥Šm—¦(5)", 0.7f, 0.0f, 1.0f) // 'payoff probability (5)' - , mStruggleTime(this, 'fp40', "‚à‚ª‚«ŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'struggling time' + , mFlightHeight(this, 'fp01', "飛行高ã•", 90.0f, 0.0f, 150.0f) // 'flight height' + , mTransitHeight(this, 'fp03', "状態é·ç§»é«˜ã•", 50.0f, 0.0f, 300.0f) // 'state transition height' + , mPitchRate(this, 'fp10', "上下ã®æºã‚Œé€Ÿåº¦", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' + , mPitchAmp(this, 'fp11', "上下ã®æºã‚Œå¹…", 20.0f, 0.0f, 50.0f) // 'width of vertical swing' + , mFreeRiseFactor(this, 'fp21', "上昇係数(0)", 1.5f, 0.0f, 5.0f) // 'climbing factor (0)' + , mLadenRiseFactor(this, 'fp22', "上昇係数(5)", 1.0f, 0.0f, 5.0f) // 'climbing factor (5)' + , mFreeFlickChance(this, 'fp31', "振払確率(1)", 0.1f, 0.0f, 1.0f) // 'payoff probability (1)' + , mLadenFlickChance(this, 'fp32', "振払確率(5)", 0.7f, 0.0f, 1.0f) // 'payoff probability (5)' + , mStruggleTime(this, 'fp40', "ã‚‚ãŒã時間", 3.0f, 0.0f, 10.0f) // 'struggling time' { } diff --git a/include/Game/Entities/ChappyBase.h b/include/Game/Entities/ChappyBase.h index d947229ae..44cbd97fc 100644 --- a/include/Game/Entities/ChappyBase.h +++ b/include/Game/Entities/ChappyBase.h @@ -122,9 +122,9 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "ChappyParms") - , mFootRange(this, 'fp01', "‘«Œ³”͈Í", 50.0f, 0.0f, 100.0f) // 'foot range' - , mPoisonDamage(this, 'fp02', "”’ƒsƒNƒ~ƒ““Å", 300.0f, 0.0f, 1000.0f) // 'white pikmin poison' - , mBulborbWakeRadius(this, 'fp03', "–ÚŠo‚ß‹——£", 400.0f, 0.0f, 1000.0f) // 'awake distance' + , mFootRange(this, 'fp01', "足元範囲", 50.0f, 0.0f, 100.0f) // 'foot range' + , mPoisonDamage(this, 'fp02', "白ピクミン毒", 300.0f, 0.0f, 1000.0f) // 'white pikmin poison' + , mBulborbWakeRadius(this, 'fp03', "目覚ã‚è·é›¢", 400.0f, 0.0f, 1000.0f) // 'awake distance' { } diff --git a/include/Game/Entities/Damagumo.h b/include/Game/Entities/Damagumo.h index 9525bf93a..d2ec0be59 100644 --- a/include/Game/Entities/Damagumo.h +++ b/include/Game/Entities/Damagumo.h @@ -176,12 +176,12 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mBaseFactor(this, 'fp01', "ƒx[ƒXŒW”", 3.0f, 0.0f, 10.0f) // 'base factor' - , mRaiseDecelFactor(this, 'fp02', "ã‚°Œ¸‘¬ŒW”", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor' - , mDownwardAccelFactor(this, 'fp03', "‰º‚°‰Á‘¬ŒW”", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' - , mMinDecelAccelFactor(this, 'fp04', "Œጸ‰Á‘¬ŒW”", -2.0f, -10.0f, 10.0f) // 'minimum deceleration acceleration factor' - , mMaxDecelAccelFactor(this, 'fp05', "Å‚Œ¸‰Á‘¬ŒW”", 10.0f, -10.0f, 10.0f) // 'maximum deceleration acceleration factor' - , mLegSwing(this, 'fp06', "‘«‚ÌU‚èã‚°", 120.0f, 0.0f, 200.0f) // 'leg swing' + , mBaseFactor(this, 'fp01', "ベース係数", 3.0f, 0.0f, 10.0f) // 'base factor' + , mRaiseDecelFactor(this, 'fp02', "上ã’減速係数", -0.2f, -5.0f, 5.0f) // 'raising deceleration factor' + , mDownwardAccelFactor(this, 'fp03', "下ã’加速係数", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' + , mMinDecelAccelFactor(this, 'fp04', "最低減加速係数", -2.0f, -10.0f, 10.0f) // 'minimum deceleration acceleration factor' + , mMaxDecelAccelFactor(this, 'fp05', "最高減加速係数", 10.0f, -10.0f, 10.0f) // 'maximum deceleration acceleration factor' + , mLegSwing(this, 'fp06', "足ã®æŒ¯ã‚Šä¸Šã’", 120.0f, 0.0f, 200.0f) // 'leg swing' { } diff --git a/include/Game/Entities/DangoMushi.h b/include/Game/Entities/DangoMushi.h index 0f475013f..395cbfc84 100644 --- a/include/Game/Entities/DangoMushi.h +++ b/include/Game/Entities/DangoMushi.h @@ -43,10 +43,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mRollingMoveSpeed(this, 'fp01', "ƒ[ƒŠƒ“ƒOˆÚ“®‘¬“x", 200.0f, 0.0f, 500.0f) // 'rolling movement speed' - , mRollingTurnAccel(this, 'fp02', "ƒ[ƒŠƒ“ƒO‰ñ“]‘¬“x—¦", 0.1f, 0.0f, 1.0f) // 'rolling rotation speed rate' - , mRollingTurnSpeed(this, 'fp03', "ƒ[ƒŠƒ“ƒO‰ñ“]ő呬“x", 10.0f, 0.0f, 360.0f) // 'rolling rotation maximum speed' - , mFlipTime(this, 'fp10', "‚ЂÁ‚­‚è•Ô‚莞ŠÔ", 7.5f, 0.0f, 30.0f) // 'flip time' + , mRollingMoveSpeed(this, 'fp01', "ローリング移動速度", 200.0f, 0.0f, 500.0f) // 'rolling movement speed' + , mRollingTurnAccel(this, 'fp02', "ローリング回転速度率", 0.1f, 0.0f, 1.0f) // 'rolling rotation speed rate' + , mRollingTurnSpeed(this, 'fp03', "ローリング回転最大速度", 10.0f, 0.0f, 360.0f) // 'rolling rotation maximum speed' + , mFlipTime(this, 'fp10', "ã²ã£ãり返り時間", 7.5f, 0.0f, 30.0f) // 'flip time' { } diff --git a/include/Game/Entities/Egg.h b/include/Game/Entities/Egg.h index 91c676134..a0455a8ad 100644 --- a/include/Game/Entities/Egg.h +++ b/include/Game/Entities/Egg.h @@ -104,11 +104,11 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mSingleNectarChance(this, 'fp01', "–¨ƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'nectar rate' - , mDoubleNectarChance(this, 'fp02', "–¨x2ƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'nectar x2 rate' - , mMititesChance(this, 'fp03', "ƒ^ƒ}ƒSƒ€ƒVx10ƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'mitite x10 rate' - , mSpicyChance(this, 'fp04', "Ôƒh[ƒsƒ“ƒOƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'red doping rate' - , mBitterChance(this, 'fp05', "•ƒh[ƒsƒ“ƒOƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'black doping rate' + , mSingleNectarChance(this, 'fp01', "蜜レート", 1.0f, 0.0f, 1.0f) // 'nectar rate' + , mDoubleNectarChance(this, 'fp02', "蜜x2レート", 1.0f, 0.0f, 1.0f) // 'nectar x2 rate' + , mMititesChance(this, 'fp03', "タマゴムシx10レート", 1.0f, 0.0f, 1.0f) // 'mitite x10 rate' + , mSpicyChance(this, 'fp04', "赤ドーピングレート", 1.0f, 0.0f, 1.0f) // 'red doping rate' + , mBitterChance(this, 'fp05', "黒ドーピングレート", 1.0f, 0.0f, 1.0f) // 'black doping rate' { } diff --git a/include/Game/Entities/ElecBug.h b/include/Game/Entities/ElecBug.h index 377b91a84..8365e36b0 100644 --- a/include/Game/Entities/ElecBug.h +++ b/include/Game/Entities/ElecBug.h @@ -93,9 +93,9 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mFlipTime(this, 'fp01', "‚ЂÁ‚­‚è•Ô‚莞ŠÔ", 5.0f, 0.0f, 10.0f) // 'flip time' - , mWaitTime(this, 'fp02', "ƒEƒFƒCƒgŽžŠÔ", 1.5f, 0.0f, 10.0f) // 'wait time' - , mDischargeTime(this, 'fp11', "•ú“dŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'discharge time' + , mFlipTime(this, 'fp01', "ã²ã£ãり返り時間", 5.0f, 0.0f, 10.0f) // 'flip time' + , mWaitTime(this, 'fp02', "ウェイト時間", 1.5f, 0.0f, 10.0f) // 'wait time' + , mDischargeTime(this, 'fp11', "放電時間", 3.0f, 0.0f, 10.0f) // 'discharge time' { } diff --git a/include/Game/Entities/ElecHiba.h b/include/Game/Entities/ElecHiba.h index 90db9bebb..167b79cf8 100644 --- a/include/Game/Entities/ElecHiba.h +++ b/include/Game/Entities/ElecHiba.h @@ -126,10 +126,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mWaitTime(this, 'fp02', "ƒEƒFƒCƒgŽžŠÔ", 2.5f, 0.0f, 100.0f) // 'wait time' - , mWarningTime(this, 'fp03', "—\\’›ŽžŠÔ", 2.5f, 0.0f, 100.0f) // 'warning time' - , mActiveTime(this, 'fp01', "•ú“dŽžŠÔ", 2.5f, 0.0f, 100.0f) // 'discharge time' - , mStopTime(this, 'fp04', "’âŽ~ŽžŠÔ", 10.0f, 0.0f, 100.0f) // 'stop time' + , mWaitTime(this, 'fp02', "ウェイト時間", 2.5f, 0.0f, 100.0f) // 'wait time' + , mWarningTime(this, 'fp03', "予\兆時間", 2.5f, 0.0f, 100.0f) // 'warning time' + , mActiveTime(this, 'fp01', "放電時間", 2.5f, 0.0f, 100.0f) // 'discharge time' + , mStopTime(this, 'fp04', "åœæ­¢æ™‚é–“", 10.0f, 0.0f, 100.0f) // 'stop time' , mLodNear(this, 'fp90', "LOD NEAR", 0.085f, 0.0f, 1.0f) , mLodMiddle(this, 'fp91', "LOD MIDDLE", 0.05f, 0.0f, 1.0f) { diff --git a/include/Game/Entities/Frog.h b/include/Game/Entities/Frog.h index 8c985872b..43b8427c2 100644 --- a/include/Game/Entities/Frog.h +++ b/include/Game/Entities/Frog.h @@ -117,10 +117,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "FrogParms") - , mAirTime(this, 'fp01', "‹ó’†ŽžŠÔ", 1.5f, 0.0f, 5.0f) // 'air time' - , mJumpSpeed(this, 'fp02', "ƒWƒƒƒ“ƒv‘¬“x", 400.0f, 0.0f, 1000.0f) // 'jump speed' - , mJumpFailChance(this, 'fp03', "Ž¸”sŠm—¦", 0.2f, 0.0f, 1.0f) // 'probability of failure' - , mFallSpeed(this, 'fp04', "—Ž‰º‰‘¬“x", 300.0f, 0.0f, 500.0f) // 'initial fall velocity' + , mAirTime(this, 'fp01', "空中時間", 1.5f, 0.0f, 5.0f) // 'air time' + , mJumpSpeed(this, 'fp02', "ジャンプ速度", 400.0f, 0.0f, 1000.0f) // 'jump speed' + , mJumpFailChance(this, 'fp03', "失敗確率", 0.2f, 0.0f, 1.0f) // 'probability of failure' + , mFallSpeed(this, 'fp04', "è½ä¸‹åˆé€Ÿåº¦", 300.0f, 0.0f, 500.0f) // 'initial fall velocity' { } diff --git a/include/Game/Entities/Fuefuki.h b/include/Game/Entities/Fuefuki.h index 56db4b3c1..4412240a6 100644 --- a/include/Game/Entities/Fuefuki.h +++ b/include/Game/Entities/Fuefuki.h @@ -121,15 +121,15 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mMaxGroundTime(this, 'fp01', "oŒ»ŽžŠÔ(Max)", 30.0f, 0.0f, 100.0f) // 'appearance time (max)' - , mMinGroundTime(this, 'fp02', "oŒ»ŽžŠÔ(Min)", 20.0f, 0.0f, 100.0f) // 'appearance time (min)' - , mAirborneTime(this, 'fp03', "oŒ»ŠÔŠu", 3.0f, 0.0f, 100.0f) // 'appearance interval' - , mMinWhistleTime(this, 'fp11', "ƒtƒGŠÔŠu(1)", 0.0f, 0.0f, 5.0f) // 'hue interval (1) - , mMaxWhistleTimeNoSquad(this, 'fp12', "ƒtƒGŠÔŠu(2`:‘à—ñƒiƒV)", 5.0f, 0.0f, 10.0f) // 'hue interval (2 ~: no formation)' - , mMaxWhistleTimeWithSquad(this, 'fp13', "ƒtƒGŠÔŠu(2`:‘à—ñƒAƒŠ)", 10.0f, 0.0f, 20.0f) // 'hue interval (2 ~: platoon ants)' - , mStruggleTime(this, 'fp21', "‚à‚ª‚«ŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'struggling time' - , mJumpTime(this, 'fp22', "“¦‚°ƒWƒƒƒ“ƒvŽžŠÔ", 0.0f, 0.0f, 5.0f) // 'escape jump time' - , mNormalLandingChance(this, 'fp31', "’ÊíoŒ»—¦", 0.5f, 0.0f, 1.0f) // 'normal appearance rate' + , mMaxGroundTime(this, 'fp01', "出ç¾æ™‚é–“(Max)", 30.0f, 0.0f, 100.0f) // 'appearance time (max)' + , mMinGroundTime(this, 'fp02', "出ç¾æ™‚é–“(Min)", 20.0f, 0.0f, 100.0f) // 'appearance time (min)' + , mAirborneTime(this, 'fp03', "出ç¾é–“éš”", 3.0f, 0.0f, 100.0f) // 'appearance interval' + , mMinWhistleTime(this, 'fp11', "フエ間隔(1)", 0.0f, 0.0f, 5.0f) // 'hue interval (1) + , mMaxWhistleTimeNoSquad(this, 'fp12', "フエ間隔(2~:隊列ナシ)", 5.0f, 0.0f, 10.0f) // 'hue interval (2 ~: no formation)' + , mMaxWhistleTimeWithSquad(this, 'fp13', "フエ間隔(2~:隊列アリ)", 10.0f, 0.0f, 20.0f) // 'hue interval (2 ~: platoon ants)' + , mStruggleTime(this, 'fp21', "ã‚‚ãŒã時間", 3.0f, 0.0f, 10.0f) // 'struggling time' + , mJumpTime(this, 'fp22', "逃ã’ジャンプ時間", 0.0f, 0.0f, 5.0f) // 'escape jump time' + , mNormalLandingChance(this, 'fp31', "通常出ç¾çŽ‡", 0.5f, 0.0f, 1.0f) // 'normal appearance rate' { } diff --git a/include/Game/Entities/GasHiba.h b/include/Game/Entities/GasHiba.h index a1f9e2976..a8cb45c3c 100644 --- a/include/Game/Entities/GasHiba.h +++ b/include/Game/Entities/GasHiba.h @@ -99,10 +99,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mWaitTime(this, 'fp02', "ƒEƒFƒCƒgŽžŠÔ", 2.5f, 0.0f, 100.0f) // 'wait time' - , mActiveTime(this, 'fp01', "ƒKƒX“f‚«ŽžŠÔ", 2.5f, 0.0f, 100.0f) // 'gas discharge time' - , mAttackStartTime(this, 'fp03', "UŒ‚ŠJŽnŽžŠÔ", 1.0f, 0.0f, 100.0f) // 'attack start time' - , mStopTime(this, 'fp04', "’âŽ~ŽžŠÔ", 10.0f, 0.0f, 100.0f) // 'stop time' + , mWaitTime(this, 'fp02', "ウェイト時間", 2.5f, 0.0f, 100.0f) // 'wait time' + , mActiveTime(this, 'fp01', "ガスåã時間", 2.5f, 0.0f, 100.0f) // 'gas discharge time' + , mAttackStartTime(this, 'fp03', "攻撃開始時間", 1.0f, 0.0f, 100.0f) // 'attack start time' + , mStopTime(this, 'fp04', "åœæ­¢æ™‚é–“", 10.0f, 0.0f, 100.0f) // 'stop time' , mLodNear(this, 'fp90', "LOD NEAR", 0.085f, 0.0f, 1.0f) , mLodMiddle(this, 'fp91', "LOD MIDDLE", 0.05f, 0.0f, 1.0f) { diff --git a/include/Game/Entities/Hanachirashi.h b/include/Game/Entities/Hanachirashi.h index c66a36482..7969dd4d2 100644 --- a/include/Game/Entities/Hanachirashi.h +++ b/include/Game/Entities/Hanachirashi.h @@ -153,14 +153,14 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mStandardFlightHeight(this, 'fp01', "Šî€”òs‚‚³", 90.0f, 0.0f, 150.0f) // 'standard flight height' - , mRiseFactor(this, 'fp02', "㸌W”", 1.0f, 0.0f, 10.0f) // 'rise factor' - , mAirWaitTime(this, 'fp03', "‹ó’†ƒEƒFƒCƒgŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'air wait time' - , mGroundWaitTime(this, 'fp10', "’nãƒEƒFƒCƒgŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'ground wait time' - , mShakeOffTime(this, 'fp04', "U•¥—Ž‰ºŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'shake off time' - , mFallingMinimumPikiNum(this, 'ip01', "—Ž‰ºÅ’áƒsƒL”", 10, 1, 50) // 'falling minimum number piki' - , mVerticalSwingSpeed(this, 'fp05', "㉺‚Ì—h‚ꑬ“x", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' - , mVerticalSwingWidth(this, 'fp06', "㉺‚Ì—h‚ê•", 5.0f, 0.0f, 10.0f) // 'vertical swing width' + , mStandardFlightHeight(this, 'fp01', "基準飛行高ã•", 90.0f, 0.0f, 150.0f) // 'standard flight height' + , mRiseFactor(this, 'fp02', "上昇係数", 1.0f, 0.0f, 10.0f) // 'rise factor' + , mAirWaitTime(this, 'fp03', "空中ウェイト時間", 3.0f, 0.0f, 10.0f) // 'air wait time' + , mGroundWaitTime(this, 'fp10', "地上ウェイト時間", 3.0f, 0.0f, 10.0f) // 'ground wait time' + , mShakeOffTime(this, 'fp04', "振払è½ä¸‹æ™‚é–“", 3.0f, 0.0f, 10.0f) // 'shake off time' + , mFallingMinimumPikiNum(this, 'ip01', "è½ä¸‹æœ€ä½Žãƒ”ã‚­æ•°", 10, 1, 50) // 'falling minimum number piki' + , mVerticalSwingSpeed(this, 'fp05', "上下ã®æºã‚Œé€Ÿåº¦", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' + , mVerticalSwingWidth(this, 'fp06', "上下ã®æºã‚Œå¹…", 5.0f, 0.0f, 10.0f) // 'vertical swing width' { } diff --git a/include/Game/Entities/Hiba.h b/include/Game/Entities/Hiba.h index ee34a2e26..298086217 100644 --- a/include/Game/Entities/Hiba.h +++ b/include/Game/Entities/Hiba.h @@ -86,9 +86,9 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mWaitTime(this, 'fp02', "ƒEƒFƒCƒgŽžŠÔ", 2.5f, 0.0f, 100.0f) // 'wait time' - , mActiveTime(this, 'fp01', "‰Î“f‚«ŽžŠÔ", 2.5f, 0.0f, 100.0f) // 'fire spitting time' - , mStopTime(this, 'fp03', "’âŽ~ŽžŠÔ", 10.0f, 0.0f, 100.0f) // 'stop time' + , mWaitTime(this, 'fp02', "ウェイト時間", 2.5f, 0.0f, 100.0f) // 'wait time' + , mActiveTime(this, 'fp01', "ç«åã時間", 2.5f, 0.0f, 100.0f) // 'fire spitting time' + , mStopTime(this, 'fp03', "åœæ­¢æ™‚é–“", 10.0f, 0.0f, 100.0f) // 'stop time' , mLodNear(this, 'fp90', "LOD NEAR", 0.085f, 0.0f, 1.0f) , mLodMiddle(this, 'fp91', "LOD MIDDLE", 0.05f, 0.0f, 1.0f) { diff --git a/include/Game/Entities/Houdai.h b/include/Game/Entities/Houdai.h index e81c7b1c4..8347cf048 100644 --- a/include/Game/Entities/Houdai.h +++ b/include/Game/Entities/Houdai.h @@ -201,16 +201,16 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mBaseFactor(this, 'fp01', "ƒx[ƒXŒW”", 5.0f, 0.0f, 10.0f) // 'base factor' - , mRaiseDecelFactor(this, 'fp02', "ã‚°Œ¸‘¬ŒW”", -0.4f, -5.0f, 5.0f) // 'raising deceleration factor' - , mDownwardAccelFactor(this, 'fp03', "‰º‚°‰Á‘¬ŒW”", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' - , mMinDecelAccelFactor(this, 'fp04', "Œጸ‰Á‘¬ŒW”", -3.0f, -10.0f, 10.0f) // 'minimum deceleration acceleration factor' - , mMaxDecelAccelFactor(this, 'fp05', "Å‚Œ¸‰Á‘¬ŒW”", 10.0f, -10.0f, 10.0f) // 'maximum deceleration acceleration factor' - , mLegSwing(this, 'fp06', "‘«‚ÌU‚èã‚°", 90.0f, 0.0f, 200.0f) // 'leg swing' - , mMaxShootingOn(this, 'fp10', "ŽËŒ‚On:Max", 2.0f, 0.0f, 10.0f) // 'shooting on:max' - , mMinShootingOn(this, 'fp11', "ŽËŒ‚On:Min", 1.0f, 0.0f, 10.0f) // 'shooting on:min' - , mMaxShootingOff(this, 'fp12', "ŽËŒ‚Off:Max", 1.0f, 0.0f, 10.0f) // 'shooting off:max' - , mMinShootingOff(this, 'fp13', "ŽËŒ‚Off:Min", 0.5f, 0.0f, 10.0f) // 'shooting off:min' + , mBaseFactor(this, 'fp01', "ベース係数", 5.0f, 0.0f, 10.0f) // 'base factor' + , mRaiseDecelFactor(this, 'fp02', "上ã’減速係数", -0.4f, -5.0f, 5.0f) // 'raising deceleration factor' + , mDownwardAccelFactor(this, 'fp03', "下ã’加速係数", 0.5f, -5.0f, 5.0f) // 'downward acceleration factor' + , mMinDecelAccelFactor(this, 'fp04', "最低減加速係数", -3.0f, -10.0f, 10.0f) // 'minimum deceleration acceleration factor' + , mMaxDecelAccelFactor(this, 'fp05', "最高減加速係数", 10.0f, -10.0f, 10.0f) // 'maximum deceleration acceleration factor' + , mLegSwing(this, 'fp06', "足ã®æŒ¯ã‚Šä¸Šã’", 90.0f, 0.0f, 200.0f) // 'leg swing' + , mMaxShootingOn(this, 'fp10', "å°„æ’ƒOn:Max", 2.0f, 0.0f, 10.0f) // 'shooting on:max' + , mMinShootingOn(this, 'fp11', "å°„æ’ƒOn:Min", 1.0f, 0.0f, 10.0f) // 'shooting on:min' + , mMaxShootingOff(this, 'fp12', "å°„æ’ƒOff:Max", 1.0f, 0.0f, 10.0f) // 'shooting off:max' + , mMinShootingOff(this, 'fp13', "å°„æ’ƒOff:Min", 0.5f, 0.0f, 10.0f) // 'shooting off:min' , mLastToTerritory(this, 'fp20', "Last 2 Territory", 380.0f, 0.0f, 500.0f) // 'Last 2 Territory' { } diff --git a/include/Game/Entities/Imomushi.h b/include/Game/Entities/Imomushi.h index 17f4e84f1..5408de7b2 100644 --- a/include/Game/Entities/Imomushi.h +++ b/include/Game/Entities/Imomushi.h @@ -132,11 +132,11 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mPlantClimbingSpeed(this, 'fp01', "‘“o‚葬“x", 2.0f, 0.0f, 10.0f) // 'plant climbing speed' - , mSeedCirculationSpeed(this, 'fp02', "ŽíŽü‰ñ‘¬“x", 0.3f, 0.0f, 10.0f) // 'seed circulation speed' - , mEatingTime(this, 'fp11', "ŽÀH‚¢ŽžŠÔ", 10.0f, 0.0f, 100.0f) // 'eating time' - , mTranslationCorrection(this, 'fp90', "Translate•â³", 0.75f, 0.0f, 10.0f) // 'translation correction' - , mRotationCorrection(this, 'fp91', "Rotate•â³", 0.05f, 0.0f, 1.0f) // 'rotation correction' + , mPlantClimbingSpeed(this, 'fp01', "è‰ç™»ã‚Šé€Ÿåº¦", 2.0f, 0.0f, 10.0f) // 'plant climbing speed' + , mSeedCirculationSpeed(this, 'fp02', "種周回速度", 0.3f, 0.0f, 10.0f) // 'seed circulation speed' + , mEatingTime(this, 'fp11', "実食ã„時間", 10.0f, 0.0f, 100.0f) // 'eating time' + , mTranslationCorrection(this, 'fp90', "Translate補正", 0.75f, 0.0f, 10.0f) // 'translation correction' + , mRotationCorrection(this, 'fp91', "Rotate補正", 0.05f, 0.0f, 1.0f) // 'rotation correction' { } diff --git a/include/Game/Entities/ItemBarrel.h b/include/Game/Entities/ItemBarrel.h index 962b6336d..dbbc1467d 100644 --- a/include/Game/Entities/ItemBarrel.h +++ b/include/Game/Entities/ItemBarrel.h @@ -109,7 +109,7 @@ struct BarrelParms : public CreatureParms { struct Parms : public Parameters { inline Parms() : Parameters(nullptr, "Barrel::Parms") - , mHealth(this, 'p000', "ƒ‰ƒCƒt", 100.0f, 1.0f, 60000.0f) // 'life' + , mHealth(this, 'p000', "ライフ", 100.0f, 1.0f, 60000.0f) // 'life' { } diff --git a/include/Game/Entities/ItemBigFountain.h b/include/Game/Entities/ItemBigFountain.h index 343a74f2f..724f09462 100644 --- a/include/Game/Entities/ItemBigFountain.h +++ b/include/Game/Entities/ItemBigFountain.h @@ -121,7 +121,7 @@ struct FountainParms : public CreatureParms { struct Parms : public Parameters { inline Parms() // probably : Parameters(nullptr, "Fountain::Parms") - , mHealth(this, 'p000', "ƒ‰ƒCƒt", 1000.0f, 1.0f, 60000.0f) // 'life' + , mHealth(this, 'p000', "ライフ", 1000.0f, 1.0f, 60000.0f) // 'life' { } diff --git a/include/Game/Entities/ItemBridge.h b/include/Game/Entities/ItemBridge.h index 65bcba445..9efa8623d 100644 --- a/include/Game/Entities/ItemBridge.h +++ b/include/Game/Entities/ItemBridge.h @@ -80,7 +80,7 @@ struct BridgeParms : public CreatureParms { struct Parms : public Parameters { inline Parms() : Parameters(nullptr, "Bridge::Parms") - , mHealth(this, 'p000', "ƒ‰ƒCƒt", 100.0f, 0.0f, 40000.0f) // 'life' + , mHealth(this, 'p000', "ライフ", 100.0f, 0.0f, 40000.0f) // 'life' { } diff --git a/include/Game/Entities/ItemPlant.h b/include/Game/Entities/ItemPlant.h index 16705d1db..292763f8a 100644 --- a/include/Game/Entities/ItemPlant.h +++ b/include/Game/Entities/ItemPlant.h @@ -161,12 +161,12 @@ struct PlantParms : public CreatureParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "Plant::Parms") - , mGrowTimeToMedium(this, 'p000', "¬’·ŽžŠÔ(¬¨’†)", 10.0f, 0.0f, 2000.0f) // 'growth time (small -> medium)' - , mGrowTimeToLarge(this, 'p001', "¬’·ŽžŠÔ(’†¨‘å)", 10.0f, 0.0f, 2000.0f) // 'growth time (medium -> large)' - , mDamageToDrop(this, 'p002', "ƒhƒƒbƒv‚·‚éƒ_ƒ[ƒW", 300.0f, 0.0f, 2500.0f) // 'damage to drop' - , mBearFruitTime(this, 'p003', "ŽÀ‚ð‚‚¯‚é‚Ü‚Å‚ÌŽžŠÔ", 10.0f, 0.0f, 2000.0f) // 'time to bear fruit' - , mActualPlayTime(this, 'p004', "ŽÀĶŽžŠÔ", 20.0f, 0.0f, 2000.0f) // 'actual play time' - , mBurstTime(this, 'p005', "•…‚é‚Ü‚Å‚ÌŽžŠÔ", 40.0f, 0.0f, 10000.0f) // 'time to rot/spoil' + , mGrowTimeToMedium(this, 'p000', "æˆé•·æ™‚é–“(å°â†’中)", 10.0f, 0.0f, 2000.0f) // 'growth time (small -> medium)' + , mGrowTimeToLarge(this, 'p001', "æˆé•·æ™‚é–“(中→大)", 10.0f, 0.0f, 2000.0f) // 'growth time (medium -> large)' + , mDamageToDrop(this, 'p002', "ドロップã™ã‚‹ãƒ€ãƒ¡ãƒ¼ã‚¸", 300.0f, 0.0f, 2500.0f) // 'damage to drop' + , mBearFruitTime(this, 'p003', "実をã¤ã‘ã‚‹ã¾ã§ã®æ™‚é–“", 10.0f, 0.0f, 2000.0f) // 'time to bear fruit' + , mActualPlayTime(this, 'p004', "実å†ç”Ÿæ™‚é–“", 20.0f, 0.0f, 2000.0f) // 'actual play time' + , mBurstTime(this, 'p005', "è…ã‚‹ã¾ã§ã®æ™‚é–“", 40.0f, 0.0f, 10000.0f) // 'time to rot/spoil' { } diff --git a/include/Game/Entities/ItemRock.h b/include/Game/Entities/ItemRock.h index 5e5ba5b82..3be47bb92 100644 --- a/include/Game/Entities/ItemRock.h +++ b/include/Game/Entities/ItemRock.h @@ -93,17 +93,17 @@ struct RockParms : public CreatureParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "Plant::Parms") - , mHealthMax(this, 'p000', "ƒ‰ƒCƒt(0)", 1500.0f, 1.0f, 60000.0f) // 'life (0)' - , mHealthMedium(this, 'p001', "ƒ‰ƒCƒt(1)", 1200.0f, 1.0f, 60000.0f) // 'life (1)' - , mHealthSmall(this, 'p002', "ƒ‰ƒCƒt(2)", 750.0f, 1.0f, 60000.0f) // 'life (2)' - , mHealthHidden(this, 'p003', "ƒ‰ƒCƒt(3)", 250.0f, 1.0f, 60000.0f) // 'life (3)' - , mGrowTimeMax(this, 'p004', "ĶŽžŠÔ(0) [•ª]", 1.0f, 0.0f, 150.0f) // 'play time (0) [minutes]' - , mGrowTimeMedium(this, 'p005', "ĶŽžŠÔ(1) [•ª]", 1.0f, 0.0f, 150.0f) // 'play time (1) [minutes]' - , mGrowTimeSmall(this, 'p006', "ĶŽžŠÔ(2) [•ª]", 1.0f, 0.0f, 150.0f) // 'play time (2) [minutes]' - , mGrowTimeHidden(this, 'p007', "ĶŽžŠÔ(3) [•ª]", 1.0f, 0.0f, 150.0f) // 'play time (3) [minutes]' - , mWorkRadiusMax(this, 'p008', "ŽdŽ–”¼Œa(0)", 35.0f, 0.0f, 150.0f) // 'work radius (0)' - , mWorkRadiusMedium(this, 'p009', "ŽdŽ–”¼Œa(0)", 20.0f, 0.0f, 150.0f) // 'work radius (0)' (should be (1)) - , mWorkRadiusSmall(this, 'p010', "ŽdŽ–”¼Œa(0)", 10.0f, 0.0f, 150.0f) // 'work radius (0)' (should be (2)) + , mHealthMax(this, 'p000', "ライフ(0)", 1500.0f, 1.0f, 60000.0f) // 'life (0)' + , mHealthMedium(this, 'p001', "ライフ(1)", 1200.0f, 1.0f, 60000.0f) // 'life (1)' + , mHealthSmall(this, 'p002', "ライフ(2)", 750.0f, 1.0f, 60000.0f) // 'life (2)' + , mHealthHidden(this, 'p003', "ライフ(3)", 250.0f, 1.0f, 60000.0f) // 'life (3)' + , mGrowTimeMax(this, 'p004', "å†ç”Ÿæ™‚é–“(0) [分]", 1.0f, 0.0f, 150.0f) // 'play time (0) [minutes]' + , mGrowTimeMedium(this, 'p005', "å†ç”Ÿæ™‚é–“(1) [分]", 1.0f, 0.0f, 150.0f) // 'play time (1) [minutes]' + , mGrowTimeSmall(this, 'p006', "å†ç”Ÿæ™‚é–“(2) [分]", 1.0f, 0.0f, 150.0f) // 'play time (2) [minutes]' + , mGrowTimeHidden(this, 'p007', "å†ç”Ÿæ™‚é–“(3) [分]", 1.0f, 0.0f, 150.0f) // 'play time (3) [minutes]' + , mWorkRadiusMax(this, 'p008', "仕事åŠå¾„(0)", 35.0f, 0.0f, 150.0f) // 'work radius (0)' + , mWorkRadiusMedium(this, 'p009', "仕事åŠå¾„(0)", 20.0f, 0.0f, 150.0f) // 'work radius (0)' (should be (1)) + , mWorkRadiusSmall(this, 'p010', "仕事åŠå¾„(0)", 10.0f, 0.0f, 150.0f) // 'work radius (0)' (should be (2)) { } diff --git a/include/Game/Entities/ItemTreasure.h b/include/Game/Entities/ItemTreasure.h index 8803b56e0..ed0dcaa08 100644 --- a/include/Game/Entities/ItemTreasure.h +++ b/include/Game/Entities/ItemTreasure.h @@ -103,10 +103,10 @@ struct TreasureParms : public CreatureParms { struct Parms : public Parameters { inline Parms() : Parameters(nullptr, "Plant::Parms") - , mLife0(this, 'p000', "ƒ‰ƒCƒt(0)", 250.0f, 1.0f, 60000.0f) // 'life (0)' - , mLife1(this, 'p001', "ƒ‰ƒCƒt(1)", 750.0f, 1.0f, 60000.0f) // 'life (1)' - , mLife2(this, 'p002', "ƒ‰ƒCƒt(2)", 1200.0f, 1.0f, 60000.0f) // 'life (2)' - , mLife3(this, 'p003', "ƒ‰ƒCƒt(3)", 1500.0f, 1.0f, 60000.0f) // 'life (3)' + , mLife0(this, 'p000', "ライフ(0)", 250.0f, 1.0f, 60000.0f) // 'life (0)' + , mLife1(this, 'p001', "ライフ(1)", 750.0f, 1.0f, 60000.0f) // 'life (1)' + , mLife2(this, 'p002', "ライフ(2)", 1200.0f, 1.0f, 60000.0f) // 'life (2)' + , mLife3(this, 'p003', "ライフ(3)", 1500.0f, 1.0f, 60000.0f) // 'life (3)' { } diff --git a/include/Game/Entities/Jigumo.h b/include/Game/Entities/Jigumo.h index 193c67bc3..353c58831 100644 --- a/include/Game/Entities/Jigumo.h +++ b/include/Game/Entities/Jigumo.h @@ -95,12 +95,12 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mCarrySpeed(this, 'fp01', "‰^”À‘¬“x", 100.0f, 0.0f, 300.0f) // 'transport speed' - , mReturnSpeed(this, 'fp02', "–߂葬“x", 100.0f, 0.0f, 300.0f) // 'return speed' - , mMinScale(this, 'fp03', "ƒXƒP[ƒ‹Å¬", 1.0f, 0.0f, 3.0f) // 'scale minimum' - , mMaxScale(this, 'fp04', "ƒXƒP[ƒ‹Å‘å", 1.2f, 0.0f, 3.0f) // 'scale maximum' - , mPoisonDamage(this, 'fp05', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 1000.0f) // 'white pikmin' - , mHidingTime(this, 'ip01', "‰B‚ê‚Ä‚¢‚鎞ŠÔ", 30, 0, 120) // 'hiding time' + , mCarrySpeed(this, 'fp01', "é‹æ¬é€Ÿåº¦", 100.0f, 0.0f, 300.0f) // 'transport speed' + , mReturnSpeed(this, 'fp02', "戻り速度", 100.0f, 0.0f, 300.0f) // 'return speed' + , mMinScale(this, 'fp03', "スケール最å°", 1.0f, 0.0f, 3.0f) // 'scale minimum' + , mMaxScale(this, 'fp04', "スケール最大", 1.2f, 0.0f, 3.0f) // 'scale maximum' + , mPoisonDamage(this, 'fp05', "白ピクミン", 300.0f, 0.0f, 1000.0f) // 'white pikmin' + , mHidingTime(this, 'ip01', "éš ã‚Œã¦ã„る時間", 30, 0, 120) // 'hiding time' { } diff --git a/include/Game/Entities/KingChappy.h b/include/Game/Entities/KingChappy.h index 4891c5a8e..7768b162b 100644 --- a/include/Game/Entities/KingChappy.h +++ b/include/Game/Entities/KingChappy.h @@ -48,30 +48,30 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mRequiredTurningAngleDeg(this, 'fp01', "—vù‰ñŠp“x(deg)", 20.0f, 0.0f, 180.0f) // 'required turning angle (deg)' - , mDistanceToSpawn(this, 'fp02', "oŒ»‚Ü‚Å‚Ì‹——£", 150.0f, 0.0f, 300.0f) // 'distance to spawn' - , mRoarEffectiveAngleDeg(this, 'fp03', "—Y‚½‚¯‚Ñ—LŒøŠp“x(deg)", 45.0f, 0.0f, 180.0f) // 'roar effective angle (deg)' - , mRoarEffectiveRange(this, 'fp04', "—Y‚½‚¯‚Ñ—LŒø”͈Í", 100.0f, 0.0f, 300.0f) // 'roar effective range' - , mBombDamage(this, 'fp05', "”š’eƒ_ƒ[ƒW", 200.0f, 0.0f, 600.0f) // 'bomb damage' - , mInvisibleRange(this, 'fp06', "Œ©‚¦‚È‚¢”͈Í", 70.0f, 0.0f, 200.0f) // 'invisible range' - , mTurningEndAngle(this, 'fp07', "ù‰ñI—¹Šp“x", 10.0f, 0.0f, 180.0f) // 'turning end angle' - , mTramplingRange(this, 'fp08', "“¥‚ݒׂµ”͈Í", 45.0f, 0.0f, 200.0f) // 'trampling range' - , mAppearanceShakeOffRange(this, 'fp09', "oŒ»U‚è•¥‚¢”͈Í", 100.0f, 0.0f, 200.0f) // 'appearance shake-off range' - , mAppearanceShakeOffPower(this, 'fp10', "oŒ»U‚è•¥‚¢—Í", 200.0f, 0.0f, 400.0f) // 'appearance shake-off power' - , mWalkingAnimeSpeed(this, 'fp11', "•à‚«ƒAƒjƒƒXƒs[ƒh", 1.0f, 0.0f, 3.0f) // 'walking anime speed' - , mDeathRate(this, 'fp12', "Ž€—Y‚½‚¯‚Ñ—¦", 0.0f, 0.0f, 1.0f) // 'death rate' - , mFlickShoutRate(this, 'fp13', "ƒtƒŠƒbƒN—Y‚½‚¯‚Ñ—¦", 0.5f, 0.0f, 1.0f) // 'flick shout rate' - , mWhitePikmin(this, 'fp14', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 1000.0f) // 'white pikmin' - , mBigScale(this, 'fp15', "bigƒXƒP[ƒ‹", 1.0f, 1.0f, 2.0f) // 'big scale' - , mBigLife(this, 'fp16', "bigƒ‰ƒCƒt", 100.0f, 0.0f, 9999.0f) // 'big life' - , mBigSpeed(this, 'fp17', "big‘¬“x", 80.0f, 0.0f, 1000.0f) // 'big speed' - , mBigRotationSpeedRate(this, 'fp18', "big‰ñ“]‘¬“x—¦", 0.1f, 0.0f, 1.0f) // 'big rotation speed rate' - , mBigRotationMaxSpeed(this, 'fp19', "big‰ñ“]ő呬“x", 10.0f, 0.0f, 360.0f) // 'big rotation maximum speed' - , mBigAttackAngle(this, 'fp20', "bigUŒ‚‰Â”\\Šp“x", 15.0f, 0.0f, 180.0f) // 'big attack angle' - , mBigAttackHitRange(this, 'fp21', "bigUŒ‚ƒqƒbƒg”͈Í", 70.0f, 0.0f, 1000.0f) // 'big attack hit range' - , mPeriodOfIncubation(this, 'ip01', "ö•š‚Ü‚Å‚ÌŠúŠÔ", 500, 0, 2000) // 'period of incubation' - , mTimeToAppearance(this, 'ip02', "oŒ»‚Ü‚Å‚ÌŠúŠÔ", 200, 0, 1000) // 'time to appearance' - , mBombDamageTime(this, 'ip03', "”š’eƒ_ƒ[ƒWŽžŠÔ", 10, 0, 200) // 'bomb damage time' + , mRequiredTurningAngleDeg(this, 'fp01', "è¦æ—‹å›žè§’度(deg)", 20.0f, 0.0f, 180.0f) // 'required turning angle (deg)' + , mDistanceToSpawn(this, 'fp02', "出ç¾ã¾ã§ã®è·é›¢", 150.0f, 0.0f, 300.0f) // 'distance to spawn' + , mRoarEffectiveAngleDeg(this, 'fp03', "雄ãŸã‘ã³æœ‰åŠ¹è§’度(deg)", 45.0f, 0.0f, 180.0f) // 'roar effective angle (deg)' + , mRoarEffectiveRange(this, 'fp04', "雄ãŸã‘ã³æœ‰åŠ¹ç¯„囲", 100.0f, 0.0f, 300.0f) // 'roar effective range' + , mBombDamage(this, 'fp05', "爆弾ダメージ", 200.0f, 0.0f, 600.0f) // 'bomb damage' + , mInvisibleRange(this, 'fp06', "見ãˆãªã„範囲", 70.0f, 0.0f, 200.0f) // 'invisible range' + , mTurningEndAngle(this, 'fp07', "旋回終了角度", 10.0f, 0.0f, 180.0f) // 'turning end angle' + , mTramplingRange(this, 'fp08', "è¸ã¿æ½°ã—範囲", 45.0f, 0.0f, 200.0f) // 'trampling range' + , mAppearanceShakeOffRange(this, 'fp09', "出ç¾æŒ¯ã‚Šæ‰•ã„範囲", 100.0f, 0.0f, 200.0f) // 'appearance shake-off range' + , mAppearanceShakeOffPower(this, 'fp10', "出ç¾æŒ¯ã‚Šæ‰•ã„力", 200.0f, 0.0f, 400.0f) // 'appearance shake-off power' + , mWalkingAnimeSpeed(this, 'fp11', "æ­©ãアニメスピード", 1.0f, 0.0f, 3.0f) // 'walking anime speed' + , mDeathRate(this, 'fp12', "死雄ãŸã‘ã³çŽ‡", 0.0f, 0.0f, 1.0f) // 'death rate' + , mFlickShoutRate(this, 'fp13', "フリック雄ãŸã‘ã³çŽ‡", 0.5f, 0.0f, 1.0f) // 'flick shout rate' + , mWhitePikmin(this, 'fp14', "白ピクミン", 300.0f, 0.0f, 1000.0f) // 'white pikmin' + , mBigScale(this, 'fp15', "bigスケール", 1.0f, 1.0f, 2.0f) // 'big scale' + , mBigLife(this, 'fp16', "bigライフ", 100.0f, 0.0f, 9999.0f) // 'big life' + , mBigSpeed(this, 'fp17', "big速度", 80.0f, 0.0f, 1000.0f) // 'big speed' + , mBigRotationSpeedRate(this, 'fp18', "big回転速度率", 0.1f, 0.0f, 1.0f) // 'big rotation speed rate' + , mBigRotationMaxSpeed(this, 'fp19', "big回転最大速度", 10.0f, 0.0f, 360.0f) // 'big rotation maximum speed' + , mBigAttackAngle(this, 'fp20', "big攻撃å¯èƒ½\角度", 15.0f, 0.0f, 180.0f) // 'big attack angle' + , mBigAttackHitRange(this, 'fp21', "big攻撃ヒット範囲", 70.0f, 0.0f, 1000.0f) // 'big attack hit range' + , mPeriodOfIncubation(this, 'ip01', "潜ä¼ã¾ã§ã®æœŸé–“", 500, 0, 2000) // 'period of incubation' + , mTimeToAppearance(this, 'ip02', "出ç¾ã¾ã§ã®æœŸé–“", 200, 0, 1000) // 'time to appearance' + , mBombDamageTime(this, 'ip03', "爆弾ダメージ時間", 10, 0, 200) // 'bomb damage time' { } diff --git a/include/Game/Entities/KochappyBase.h b/include/Game/Entities/KochappyBase.h index d609a41ba..80529e289 100644 --- a/include/Game/Entities/KochappyBase.h +++ b/include/Game/Entities/KochappyBase.h @@ -102,9 +102,9 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mAbsentMindedTime(this, 'fp01', "‚Ú‚ñ‚â‚莞ŠÔ", 2.0f, 0.0f, 100.0f) // 'absentminded time' - , mPoisonDamage(this, 'fp02', "”’ƒsƒNƒ~ƒ““Å", 300.0f, 0.0f, 1000.0f) // 'white pikmin poison' - , mRotationEndAngle(this, 'fp03', "‰ñ“]I—¹Šp“x", 90.0f, 0.0f, 180.0f) // 'rotation end angle' + , mAbsentMindedTime(this, 'fp01', "ã¼ã‚“やり時間", 2.0f, 0.0f, 100.0f) // 'absentminded time' + , mPoisonDamage(this, 'fp02', "白ピクミン毒", 300.0f, 0.0f, 1000.0f) // 'white pikmin poison' + , mRotationEndAngle(this, 'fp03', "回転終了角度", 90.0f, 0.0f, 180.0f) // 'rotation end angle' { } diff --git a/include/Game/Entities/Kogane.h b/include/Game/Entities/Kogane.h index abded243c..373cdc7d3 100644 --- a/include/Game/Entities/Kogane.h +++ b/include/Game/Entities/Kogane.h @@ -109,14 +109,14 @@ struct Parms : public EnemyParmsBase { struct ProperParms : Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mMinAppearTime(this, 'fp01', "oŒ»ŽžŠÔ(Min)", 15.0f, 0.0f, 100.0f) // 'appearance time (Min)' - , mMaxAppearTime(this, 'fp02', "oŒ»ŽžŠÔ(Max)", 30.0f, 0.0f, 100.0f) // 'appearance time (Max)' - , mMinTravelTime(this, 'fp10', "ˆÚ“®ŽžŠÔ(Min)", 0.5f, 0.0f, 10.0f) // 'travel time (Min)' - , mMaxTravelTime(this, 'fp11', "ˆÚ“®ŽžŠÔ(Max)", 2.0f, 0.0f, 10.0f) // 'travel time (Max)' - , mMinStopTime(this, 'fp20', "’âŽ~ŽžŠÔ(Min)", 0.5f, 0.0f, 10.0f) // 'stop time (Min)' - , mMaxStopTime(this, 'fp21', "’âŽ~ŽžŠÔ(Max)", 2.0f, 0.0f, 10.0f) // 'stop time (Max)' - , mTurnAngle(this, 'fp30', "Œü‚«•Ï‚¦Šp“x", 45.0f, 0.0f, 90.0f) // 'turning angle' - , mScale(this, 'fp40', "ƒXƒP[ƒ‹", 0.8f, 0.0f, 5.0f) // 'scale' + , mMinAppearTime(this, 'fp01', "出ç¾æ™‚é–“(Min)", 15.0f, 0.0f, 100.0f) // 'appearance time (Min)' + , mMaxAppearTime(this, 'fp02', "出ç¾æ™‚é–“(Max)", 30.0f, 0.0f, 100.0f) // 'appearance time (Max)' + , mMinTravelTime(this, 'fp10', "移動時間(Min)", 0.5f, 0.0f, 10.0f) // 'travel time (Min)' + , mMaxTravelTime(this, 'fp11', "移動時間(Max)", 2.0f, 0.0f, 10.0f) // 'travel time (Max)' + , mMinStopTime(this, 'fp20', "åœæ­¢æ™‚é–“(Min)", 0.5f, 0.0f, 10.0f) // 'stop time (Min)' + , mMaxStopTime(this, 'fp21', "åœæ­¢æ™‚é–“(Max)", 2.0f, 0.0f, 10.0f) // 'stop time (Max)' + , mTurnAngle(this, 'fp30', "å‘ã変ãˆè§’度", 45.0f, 0.0f, 90.0f) // 'turning angle' + , mScale(this, 'fp40', "スケール", 0.8f, 0.0f, 5.0f) // 'scale' { } diff --git a/include/Game/Entities/KumaChappy.h b/include/Game/Entities/KumaChappy.h index 64a728821..22eb5dff9 100644 --- a/include/Game/Entities/KumaChappy.h +++ b/include/Game/Entities/KumaChappy.h @@ -115,9 +115,9 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mPoisonDamage(this, 'fp01', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // eat white pikmin damage - , mHealthGaugeTimer(this, 'fp11', "Ž€–S ` ƒQ[ƒWoŒ»", 30.0f, 1.0f, 500.0f) // 'death ~ gauge appears` - , mRespawnRate(this, 'fp12', "ƒQ[ƒWoŒ» ` •œŠˆ", 10.0f, 1.0f, 500.0f) // 'gauge appears ~ revival' + , mPoisonDamage(this, 'fp01', "白ピクミン", 300.0f, 0.0f, 10000.0f) // eat white pikmin damage + , mHealthGaugeTimer(this, 'fp11', "死亡 ~ ゲージ出ç¾", 30.0f, 1.0f, 500.0f) // 'death ~ gauge appears` + , mRespawnRate(this, 'fp12', "ã‚²ãƒ¼ã‚¸å‡ºç¾ ï½ž 復活", 10.0f, 1.0f, 500.0f) // 'gauge appears ~ revival' { } diff --git a/include/Game/Entities/KumaKochappy.h b/include/Game/Entities/KumaKochappy.h index fecb4bf4c..b3363a23b 100644 --- a/include/Game/Entities/KumaKochappy.h +++ b/include/Game/Entities/KumaKochappy.h @@ -107,7 +107,7 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mPoisonDamage(this, 'fp01', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // 'white pikmin' + , mPoisonDamage(this, 'fp01', "白ピクミン", 300.0f, 0.0f, 10000.0f) // 'white pikmin' { } diff --git a/include/Game/Entities/Kurage.h b/include/Game/Entities/Kurage.h index 1f15802d8..6e47f5cf1 100644 --- a/include/Game/Entities/Kurage.h +++ b/include/Game/Entities/Kurage.h @@ -132,14 +132,14 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mFlightHeight(this, 'fp01', "”òs‚‚³", 90.0f, 0.0f, 150.0f) // 'flight height' - , mRiseFactor(this, 'fp02', "㸌W”", 1.0f, 0.0f, 10.0f) // 'rise factor' - , mGroundTime(this, 'fp10', "’nãƒEƒFƒCƒgŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'ground wait time' - , mSuckTime(this, 'fp11', "‹z‚¢ž‚ÝŽžŠÔ", 5.0f, 0.0f, 10.0f) // 'suction time' - , mSuckChance(this, 'fp12', "‹z‚¢ž‚ÝŠm—¦", 0.025f, 0.0f, 1.0f) // 'suction probability' - , mShakeTime(this, 'fp04', "U•¥—Ž‰ºŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'shake off time' - , mMinFallPiki(this, 'ip01', "—Ž‰ºÅ’áƒsƒL”", 10, 1, 50) // 'falling minimum piki number' - , mMaxSuckPiki(this, 'ip11', "‹z‚¢ž‚݃sƒL”", 10, 1, 100) // 'sucking piki number' + , mFlightHeight(this, 'fp01', "飛行高ã•", 90.0f, 0.0f, 150.0f) // 'flight height' + , mRiseFactor(this, 'fp02', "上昇係数", 1.0f, 0.0f, 10.0f) // 'rise factor' + , mGroundTime(this, 'fp10', "地上ウェイト時間", 3.0f, 0.0f, 10.0f) // 'ground wait time' + , mSuckTime(this, 'fp11', "å¸ã„è¾¼ã¿æ™‚é–“", 5.0f, 0.0f, 10.0f) // 'suction time' + , mSuckChance(this, 'fp12', "å¸ã„è¾¼ã¿ç¢ºçŽ‡", 0.025f, 0.0f, 1.0f) // 'suction probability' + , mShakeTime(this, 'fp04', "振払è½ä¸‹æ™‚é–“", 3.0f, 0.0f, 10.0f) // 'shake off time' + , mMinFallPiki(this, 'ip01', "è½ä¸‹æœ€ä½Žãƒ”ã‚­æ•°", 10, 1, 50) // 'falling minimum piki number' + , mMaxSuckPiki(this, 'ip11', "å¸ã„è¾¼ã¿ãƒ”ã‚­æ•°", 10, 1, 100) // 'sucking piki number' { } diff --git a/include/Game/Entities/Mar.h b/include/Game/Entities/Mar.h index 78c68f605..719b4ec25 100644 --- a/include/Game/Entities/Mar.h +++ b/include/Game/Entities/Mar.h @@ -145,14 +145,14 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mStandardFlightHeight(this, 'fp01', "Šî€”òs‚‚³", 90.0f, 0.0f, 150.0f) // 'standard flight height' - , mRiseFactor(this, 'fp02', "㸌W”", 1.0f, 0.0f, 10.0f) // 'rise factor' - , mAirWaitTime(this, 'fp03', "‹ó’†ƒEƒFƒCƒgŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'air wait time' - , mGroundWaitTime(this, 'fp10', "’nãƒEƒFƒCƒgŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'ground wait time' - , mShakeOffTime(this, 'fp04', "U•¥—Ž‰ºŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'shake off time' - , mFallingMinPikiNumber(this, 'ip01', "—Ž‰ºÅ’áƒsƒL”", 10, 1, 50) // 'falling minimum piki number' - , mVerticalSwingSpeed(this, 'fp05', "㉺‚Ì—h‚ꑬ“x", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' - , mVerticalSwingWidth(this, 'fp06', "㉺‚Ì—h‚ê•", 5.0f, 0.0f, 10.0f) // 'vertical swing width' + , mStandardFlightHeight(this, 'fp01', "基準飛行高ã•", 90.0f, 0.0f, 150.0f) // 'standard flight height' + , mRiseFactor(this, 'fp02', "上昇係数", 1.0f, 0.0f, 10.0f) // 'rise factor' + , mAirWaitTime(this, 'fp03', "空中ウェイト時間", 3.0f, 0.0f, 10.0f) // 'air wait time' + , mGroundWaitTime(this, 'fp10', "地上ウェイト時間", 3.0f, 0.0f, 10.0f) // 'ground wait time' + , mShakeOffTime(this, 'fp04', "振払è½ä¸‹æ™‚é–“", 3.0f, 0.0f, 10.0f) // 'shake off time' + , mFallingMinPikiNumber(this, 'ip01', "è½ä¸‹æœ€ä½Žãƒ”ã‚­æ•°", 10, 1, 50) // 'falling minimum piki number' + , mVerticalSwingSpeed(this, 'fp05', "上下ã®æºã‚Œé€Ÿåº¦", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' + , mVerticalSwingWidth(this, 'fp06', "上下ã®æºã‚Œå¹…", 5.0f, 0.0f, 10.0f) // 'vertical swing width' { } diff --git a/include/Game/Entities/MiniHoudai.h b/include/Game/Entities/MiniHoudai.h index 12daeb284..a329bfb11 100644 --- a/include/Game/Entities/MiniHoudai.h +++ b/include/Game/Entities/MiniHoudai.h @@ -154,9 +154,9 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mHealthGaugeTimer(this, 'fp11', "Ž€–S ` ƒQ[ƒWoŒ»", 30.0f, 1.0f, + , mHealthGaugeTimer(this, 'fp11', "死亡 ~ ゲージ出ç¾", 30.0f, 1.0f, 500.0f) // 'death ~ appearance of gauge' (Time from death -> health gauge) - , mRespawnRate(this, 'fp12', "ƒQ[ƒWoŒ» ` •œŠˆ", 10.0f, 1.0f, + , mRespawnRate(this, 'fp12', "ã‚²ãƒ¼ã‚¸å‡ºç¾ ï½ž 復活", 10.0f, 1.0f, 500.0f) // 'appearance of gauge ~ resurrection' (Time from health gauge -> alive) { } diff --git a/include/Game/Entities/Miulin.h b/include/Game/Entities/Miulin.h index 8d091850d..59e1ddad7 100644 --- a/include/Game/Entities/Miulin.h +++ b/include/Game/Entities/Miulin.h @@ -219,13 +219,13 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mReturnTime(this, 'ip01', "ƒŠƒ^[ƒ“ƒJƒEƒ“ƒ^", 100, 0, 1000) // 'return counter' - , mContinuousPressAngle(this, 'fp03', "˜A‘±ƒvƒŒƒXŠp“x", 20.0f, 0.0f, 180.0f) // 'continuous press angle' - , mDashSpeedMultiplier(this, 'fp04', "ƒ_ƒbƒVƒ…‘¬“x”{—¦", 2.0f, 0.0f, 10.0f) // 'dash speed multiplier' - , mDashAnimationScale(this, 'fp05', "ƒ_ƒbƒVƒ…ƒAƒjƒ”{—¦", 2.0f, 0.0f, 10.0f) // 'dash animation scale' - , mMaxTurnAngle(this, 'fp06', "ù‰ñI—¹Šp“x", 10.0f, 0.0f, 180.0f) // 'turning end angle' - , mDashableAngle(this, 'fp07', "ƒ_ƒbƒVƒ…‰Â”\\Šp“x", 30.0f, 0.0f, 180.0f) // 'possible dash angle' - , mMinAttackRange(this, 'fp08', "UŒ‚”͈ÍŬ", 25.0f, 0.0f, 100.0f) // 'minimum attack range' + , mReturnTime(this, 'ip01', "リターンカウンタ", 100, 0, 1000) // 'return counter' + , mContinuousPressAngle(this, 'fp03', "連続プレス角度", 20.0f, 0.0f, 180.0f) // 'continuous press angle' + , mDashSpeedMultiplier(this, 'fp04', "ダッシュ速度å€çŽ‡", 2.0f, 0.0f, 10.0f) // 'dash speed multiplier' + , mDashAnimationScale(this, 'fp05', "ダッシュアニメå€çŽ‡", 2.0f, 0.0f, 10.0f) // 'dash animation scale' + , mMaxTurnAngle(this, 'fp06', "旋回終了角度", 10.0f, 0.0f, 180.0f) // 'turning end angle' + , mDashableAngle(this, 'fp07', "ダッシュå¯èƒ½\角度", 30.0f, 0.0f, 180.0f) // 'possible dash angle' + , mMinAttackRange(this, 'fp08', "攻撃範囲最å°", 25.0f, 0.0f, 100.0f) // 'minimum attack range' { } diff --git a/include/Game/Entities/OniKurage.h b/include/Game/Entities/OniKurage.h index 35a3058a1..cd466c7ac 100644 --- a/include/Game/Entities/OniKurage.h +++ b/include/Game/Entities/OniKurage.h @@ -147,14 +147,14 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mFlightHeight(this, 'fp01', "”òs‚‚³", 90.0f, 0.0f, 150.0f) // 'flight height' - , mRiseFactor(this, 'fp02', "㸌W”", 1.0f, 0.0f, 10.0f) // 'rise factor' - , mGroundTime(this, 'fp10', "’nãƒEƒFƒCƒgŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'ground wait time' - , mSuckTime(this, 'fp11', "‹z‚¢ž‚ÝŽžŠÔ", 5.0f, 0.0f, 10.0f) // 'suction time' - , mSuckChance(this, 'fp12', "‹z‚¢ž‚ÝŠm—¦", 0.025f, 0.0f, 1.0f) // 'suction probability' - , mShakeTime(this, 'fp04', "U•¥—Ž‰ºŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'shake off time' - , mMinFallPiki(this, 'ip01', "—Ž‰ºÅ’áƒsƒL”", 10, 1, 50) // 'falling minimum piki number' - , mMaxSuckPiki(this, 'ip11', "‹z‚¢ž‚݃sƒL”", 10, 1, 100) // 'sucking piki number' + , mFlightHeight(this, 'fp01', "飛行高ã•", 90.0f, 0.0f, 150.0f) // 'flight height' + , mRiseFactor(this, 'fp02', "上昇係数", 1.0f, 0.0f, 10.0f) // 'rise factor' + , mGroundTime(this, 'fp10', "地上ウェイト時間", 3.0f, 0.0f, 10.0f) // 'ground wait time' + , mSuckTime(this, 'fp11', "å¸ã„è¾¼ã¿æ™‚é–“", 5.0f, 0.0f, 10.0f) // 'suction time' + , mSuckChance(this, 'fp12', "å¸ã„è¾¼ã¿ç¢ºçŽ‡", 0.025f, 0.0f, 1.0f) // 'suction probability' + , mShakeTime(this, 'fp04', "振払è½ä¸‹æ™‚é–“", 3.0f, 0.0f, 10.0f) // 'shake off time' + , mMinFallPiki(this, 'ip01', "è½ä¸‹æœ€ä½Žãƒ”ã‚­æ•°", 10, 1, 50) // 'falling minimum piki number' + , mMaxSuckPiki(this, 'ip11', "å¸ã„è¾¼ã¿ãƒ”ã‚­æ•°", 10, 1, 100) // 'sucking piki number' { } diff --git a/include/Game/Entities/OtakaraBase.h b/include/Game/Entities/OtakaraBase.h index ce13cd3fa..3616a1d6e 100644 --- a/include/Game/Entities/OtakaraBase.h +++ b/include/Game/Entities/OtakaraBase.h @@ -150,10 +150,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : Parameters { inline ProperParms() : Parameters(nullptr, "OtakaraBaseParms") - , mOtakaraLife(this, 'fp01', "ƒIƒ^ƒJƒ‰ƒ‰ƒCƒt", 100.0f, 0.0f, 10000.0f) // 'otakara life' - , mNormalAttack(this, 'fp10', "ƒm[ƒ}ƒ‹ƒAƒ^ƒbƒN", 1.0f, 0.0f, 10.0f) // 'normal attack' - , mOtakaraAttack(this, 'fp11', "ƒIƒ^ƒJƒ‰ƒAƒ^ƒbƒN", 1.25f, 0.0f, 10.0f) // 'otakara attack' - , mTreasureCatch(this, 'fp21', "ƒIƒ^ƒJƒ‰ƒLƒƒƒbƒ`", 2.5f, 0.0f, 10.0f) // 'treasure catch' + , mOtakaraLife(this, 'fp01', "オタカラライフ", 100.0f, 0.0f, 10000.0f) // 'otakara life' + , mNormalAttack(this, 'fp10', "ノーマルアタック", 1.0f, 0.0f, 10.0f) // 'normal attack' + , mOtakaraAttack(this, 'fp11', "オタカラアタック", 1.25f, 0.0f, 10.0f) // 'otakara attack' + , mTreasureCatch(this, 'fp21', "オタカラキャッãƒ", 2.5f, 0.0f, 10.0f) // 'treasure catch' { } diff --git a/include/Game/Entities/PanModokiBase.h b/include/Game/Entities/PanModokiBase.h index d4b7c37d9..0b094fc27 100644 --- a/include/Game/Entities/PanModokiBase.h +++ b/include/Game/Entities/PanModokiBase.h @@ -191,16 +191,16 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mNestScale(this, 'fp00', "‘ƒƒXƒP[ƒ‹", 1.0f, 0.0f, 5.0f) // 'nest scale' - , mWalkAnimSpeed(this, 'fp16', "•à‚«ƒ‚[ƒVƒ‡ƒ“ƒXƒs[ƒh", 1.0f, 0.0f, 5.0f) // 'walking motion speed' - , mFastTurnSpeed(this, 'fp02', "‹}‰ñ“]‘¬“x—¦", 0.1f, 0.0f, 1.0f) // 'rapid rotation speed rate' - , mMaxFastTurnAngle(this, 'fp05', "‹}‰ñ“]‘¬“xÅ‘å", 1.0f, 0.0f, 180.0f) // 'rapid rotation speed max' - , mCarrySpeed(this, 'fp03', "–߂葬“x", 10.0f, 0.0f, 100.0f) // 'return speed' - , mSuckDamage(this, 'fp04', "ƒRƒ“ƒeƒiƒ_ƒ[ƒW", 10.0f, 0.0f, 1000.0f) // 'container [onyon/ship] damage' - , mPressDamage(this, 'fp06', "ƒvƒŒƒXƒ_ƒ[ƒW", 10.0f, 0.0f, 1000.0f) // 'press damage' - , mWaitTime(this, 'fp14', "‘Ò‹@ŽžŠÔ", 20.0f, 0.0f, 500.0f) // 'wait time' - , mHideTime(this, 'fp15', "ö•šŽžŠÔ", 50.0f, 0.0f, 300.0f) // 'incubation time' - , mMaxCarryWeight(this, 'ip01', "ƒ^[ƒQƒbƒgƒXƒƒbƒg”‹«ŠE", 5, 1, 20) // 'target slot limit' + , mNestScale(this, 'fp00', "巣スケール", 1.0f, 0.0f, 5.0f) // 'nest scale' + , mWalkAnimSpeed(this, 'fp16', "æ­©ãモーションスピード", 1.0f, 0.0f, 5.0f) // 'walking motion speed' + , mFastTurnSpeed(this, 'fp02', "急回転速度率", 0.1f, 0.0f, 1.0f) // 'rapid rotation speed rate' + , mMaxFastTurnAngle(this, 'fp05', "急回転速度最大", 1.0f, 0.0f, 180.0f) // 'rapid rotation speed max' + , mCarrySpeed(this, 'fp03', "戻り速度", 10.0f, 0.0f, 100.0f) // 'return speed' + , mSuckDamage(this, 'fp04', "コンテナダメージ", 10.0f, 0.0f, 1000.0f) // 'container [onyon/ship] damage' + , mPressDamage(this, 'fp06', "プレスダメージ", 10.0f, 0.0f, 1000.0f) // 'press damage' + , mWaitTime(this, 'fp14', "待機時間", 20.0f, 0.0f, 500.0f) // 'wait time' + , mHideTime(this, 'fp15', "潜ä¼æ™‚é–“", 50.0f, 0.0f, 300.0f) // 'incubation time' + , mMaxCarryWeight(this, 'ip01', "ターゲットスロット数境界", 5, 1, 20) // 'target slot limit' { } diff --git a/include/Game/Entities/Pelplant.h b/include/Game/Entities/Pelplant.h index 1b713731b..e6e77943e 100644 --- a/include/Game/Entities/Pelplant.h +++ b/include/Game/Entities/Pelplant.h @@ -281,9 +281,9 @@ struct Parms : EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mSmallToMedGrowth(this, 'fp01', "¬’·(¬¨’†j", 120.0f, 0.0f, 300.0f) // growth (small to medium) - , mMedToLargeGrowth(this, 'fp02', "¬’·(’†¨‘åj", 120.0f, 0.0f, 300.0f) // growth (medium to large) - , mColorChangeTime(this, 'fp03', "ƒJƒ‰[•ÏXŽžŠÔ", 1.5f, 0.0f, 5.0f) // color change time + , mSmallToMedGrowth(this, 'fp01', "æˆé•·(å°â†’中)", 120.0f, 0.0f, 300.0f) // growth (small to medium) + , mMedToLargeGrowth(this, 'fp02', "æˆé•·(中→大)", 120.0f, 0.0f, 300.0f) // growth (medium to large) + , mColorChangeTime(this, 'fp03', "カラー変更時間", 1.5f, 0.0f, 5.0f) // color change time { } Parm mSmallToMedGrowth; // _804, fp01 diff --git a/include/Game/Entities/Pom.h b/include/Game/Entities/Pom.h index 9c45865c0..d9bafe07e 100644 --- a/include/Game/Entities/Pom.h +++ b/include/Game/Entities/Pom.h @@ -97,12 +97,12 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mNormalMaxSlots(this, 'ip01', "‹z‚¢ž‚݃sƒL”(pom)", 5, 1, 50) // 'sucking piki number (pom)' - , mQueenMaxSlots(this, 'ip11', "‹z‚¢ž‚݃sƒL”(pop)", 1, 1, 50) // 'sucking piki number (pop)' - , mQueenShotMultiplier(this, 'ip13', "“f‚«o‚µ”{”(pop)", 5, 1, 50) // 'spitting multiple (pop)' - , mRemainOpenTime(this, 'fp01', "ŠJ‰ÔŽžŠÔ", 30.0f, 0.0f, 60.0f) // 'flowering time' - , mColorChangeTime(this, 'fp02', "FŠ·‚¦ŽžŠÔ", 1.25f, 0.0f, 60.0f) // 'color change time' - , mBlackWhiteAppearanceRate(this, 'fp03', "”’•oŒ»—¦", 0.15f, 0.0f, 1.0f) // 'black and white appearance rate' + , mNormalMaxSlots(this, 'ip01', "å¸ã„è¾¼ã¿ãƒ”ã‚­æ•°(pom)", 5, 1, 50) // 'sucking piki number (pom)' + , mQueenMaxSlots(this, 'ip11', "å¸ã„è¾¼ã¿ãƒ”ã‚­æ•°(pop)", 1, 1, 50) // 'sucking piki number (pop)' + , mQueenShotMultiplier(this, 'ip13', "åã出ã—å€æ•°(pop)", 5, 1, 50) // 'spitting multiple (pop)' + , mRemainOpenTime(this, 'fp01', "開花時間", 30.0f, 0.0f, 60.0f) // 'flowering time' + , mColorChangeTime(this, 'fp02', "色æ›ãˆæ™‚é–“", 1.25f, 0.0f, 60.0f) // 'color change time' + , mBlackWhiteAppearanceRate(this, 'fp03', "白黒出ç¾çŽ‡", 0.15f, 0.0f, 1.0f) // 'black and white appearance rate' { } diff --git a/include/Game/Entities/Queen.h b/include/Game/Entities/Queen.h index 9b2142962..e4169a915 100644 --- a/include/Game/Entities/Queen.h +++ b/include/Game/Entities/Queen.h @@ -164,11 +164,11 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "QueenParms") - , mRollingTime(this, 'fp01', "ƒ[ƒŠƒ“ƒOŽžŠÔ", 10.0f, 0.0f, 100.0f) // 'rolling time' - , mBirthInterval(this, 'fp02', "oŽYŠÔŠu ( sec )", 0.0f, 0.0f, 10.0f) // 'birth interval ( sec )' + , mRollingTime(this, 'fp01', "ローリング時間", 10.0f, 0.0f, 100.0f) // 'rolling time' + , mBirthInterval(this, 'fp02', "出産間隔 ( sec )", 0.0f, 0.0f, 10.0f) // 'birth interval ( sec )' , mHoBHealth(this, 'fp11', "Forest 1 Life", 2500.0f, 0.0f, 10000.0f) // (Hole of Beasts Life) - , mMaxBirths(this, 'ip01', "oŽY” ( Max )", 50, 0, 50) // 'number of births ( Max )' - , mMinBirths(this, 'ip02', "oŽY” ( Min )", 25, 0, 50) // 'number of births ( Min )' + , mMaxBirths(this, 'ip01', "出産数 ( Max )", 50, 0, 50) // 'number of births ( Max )' + , mMinBirths(this, 'ip02', "出産数 ( Min )", 25, 0, 50) // 'number of births ( Min )' { } diff --git a/include/Game/Entities/Qurione.h b/include/Game/Entities/Qurione.h index a46eafa9d..46a18ad5d 100644 --- a/include/Game/Entities/Qurione.h +++ b/include/Game/Entities/Qurione.h @@ -128,11 +128,11 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mFlightHeight(this, 'fp01', "”òs‚‚³", 60.0f, 0.0f, 150.0f) // 'flight height' - , mPitchRate(this, 'fp02', "㉺‚Ì—h‚ꑬ“x", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' - , mPitchAmp(this, 'fp03', "㉺‚Ì—h‚ê•", 20.0f, 0.0f, 50.0f) // 'vertical swing width' - , mDeathRate(this, 'fp04', "Ž€–S‘¬“x", 100.0f, 0.0f, 1000.0f) // 'death rate' - , mDeathTime(this, 'fp05', "Ž€–SŽžŠÔ", 1.0f, 0.0f, 10.0f) // 'death time' + , mFlightHeight(this, 'fp01', "飛行高ã•", 60.0f, 0.0f, 150.0f) // 'flight height' + , mPitchRate(this, 'fp02', "上下ã®æºã‚Œé€Ÿåº¦", 2.5f, 0.0f, 10.0f) // 'vertical swing speed' + , mPitchAmp(this, 'fp03', "上下ã®æºã‚Œå¹…", 20.0f, 0.0f, 50.0f) // 'vertical swing width' + , mDeathRate(this, 'fp04', "死亡速度", 100.0f, 0.0f, 1000.0f) // 'death rate' + , mDeathTime(this, 'fp05', "死亡時間", 1.0f, 0.0f, 10.0f) // 'death time' { } diff --git a/include/Game/Entities/Rock.h b/include/Game/Entities/Rock.h index 2ab92e4b5..10d96be23 100644 --- a/include/Game/Entities/Rock.h +++ b/include/Game/Entities/Rock.h @@ -35,9 +35,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mSearchRumbleSpeed(this, 'fp01', "ƒT[ƒ`ƒSƒƒSƒ‘¬“x", 150.0f, 0.0f, 1000.0f) // 'search rumble speed' - { - } + , mSearchRumbleSpeed(this, 'fp01', "サーãƒã‚´ãƒ­ã‚´ãƒ­é€Ÿåº¦", 150.0f, 0.0f, 1000.0f) // 'search rumble speed' + { + + } Parm mSearchRumbleSpeed; // _804 }; diff --git a/include/Game/Entities/Sarai.h b/include/Game/Entities/Sarai.h index 60bffadb0..f8ab5e367 100644 --- a/include/Game/Entities/Sarai.h +++ b/include/Game/Entities/Sarai.h @@ -86,20 +86,20 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mNormalFlightHeight(this, 'fp01', "’Êí”òs‚‚³", 100.0f, 0.0f, 300.0f) // 'normal flight height' - , mGrabFlightHeight(this, 'fp02', "’Í‚Ý”òs‚‚³", 80.0f, 0.0f, 300.0f) // 'grab flight height' - , mStateTransitionHeight(this, 'fp03', "ó‘Ô‘JˆÚ‚‚³", 50.0f, 0.0f, 300.0f) // 'state transition height' - , mNormalMovementSpeed(this, 'fp04', "’ÊíˆÚ“®‘¬“x", 100.0f, 0.0f, 300.0f) // 'normal movement speed' - , mGrabMovementSpeed(this, 'fp05', "’݈͂ړ®‘¬“x", 75.0f, 0.0f, 300.0f) // 'grab movement speed' - , mWaitTime(this, 'fp06', "ƒEƒFƒCƒgŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'wait time' - , mClimbingFactor0(this, 'fp11', "㸌W”(0)", 1.5f, 0.0f, 5.0f) // 'climbing factor (0)' - , mClimbingFactor5(this, 'fp12', "㸌W”(5)", 1.0f, 0.0f, 5.0f) // 'climbing factor (5)' - , mPayoffProbability1(this, 'fp21', "U•¥Šm—¦(1)", 0.1f, 0.0f, 1.0f) // 'payoff probability (1)' - , mPayoffProbability5(this, 'fp22', "U•¥Šm—¦(5)", 0.7f, 0.0f, 1.0f) // 'payoff probability (5)' - , mStrugglingTime(this, 'fp23', "‚à‚ª‚«ŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'struggling time' - , mHuntDescentFactor(this, 'fp31', "ƒnƒ“ƒg‰º~ŒW”", 0.3f, 0.0f, 1.0f) // 'hunt descent factor' - , mPostHuntDecayRate(this, 'fp32', "ƒnƒ“ƒgŒãŒ¸Š—¦", 0.95f, 0.0f, 1.0f) // 'post-hunt decay rate' - , mFallMeckSpeed(this, 'fp41', "Fall Meck ‘¬“x", 200.0f, 0.0f, 1000.0f) // 'Fall Meck speed' + , mNormalFlightHeight(this, 'fp01', "通常飛行高ã•", 100.0f, 0.0f, 300.0f) // 'normal flight height' + , mGrabFlightHeight(this, 'fp02', "掴ã¿é£›è¡Œé«˜ã•", 80.0f, 0.0f, 300.0f) // 'grab flight height' + , mStateTransitionHeight(this, 'fp03', "状態é·ç§»é«˜ã•", 50.0f, 0.0f, 300.0f) // 'state transition height' + , mNormalMovementSpeed(this, 'fp04', "通常移動速度", 100.0f, 0.0f, 300.0f) // 'normal movement speed' + , mGrabMovementSpeed(this, 'fp05', "掴ã¿ç§»å‹•é€Ÿåº¦", 75.0f, 0.0f, 300.0f) // 'grab movement speed' + , mWaitTime(this, 'fp06', "ウェイト時間", 3.0f, 0.0f, 10.0f) // 'wait time' + , mClimbingFactor0(this, 'fp11', "上昇係数(0)", 1.5f, 0.0f, 5.0f) // 'climbing factor (0)' + , mClimbingFactor5(this, 'fp12', "上昇係数(5)", 1.0f, 0.0f, 5.0f) // 'climbing factor (5)' + , mPayoffProbability1(this, 'fp21', "振払確率(1)", 0.1f, 0.0f, 1.0f) // 'payoff probability (1)' + , mPayoffProbability5(this, 'fp22', "振払確率(5)", 0.7f, 0.0f, 1.0f) // 'payoff probability (5)' + , mStrugglingTime(this, 'fp23', "ã‚‚ãŒã時間", 3.0f, 0.0f, 10.0f) // 'struggling time' + , mHuntDescentFactor(this, 'fp31', "ãƒãƒ³ãƒˆä¸‹é™ä¿‚æ•°", 0.3f, 0.0f, 1.0f) // 'hunt descent factor' + , mPostHuntDecayRate(this, 'fp32', "ãƒãƒ³ãƒˆå¾Œæ¸›è¡°çŽ‡", 0.95f, 0.0f, 1.0f) // 'post-hunt decay rate' + , mFallMeckSpeed(this, 'fp41', "Fall Meck 速度", 200.0f, 0.0f, 1000.0f) // 'Fall Meck speed' { } diff --git a/include/Game/Entities/ShijimiChou.h b/include/Game/Entities/ShijimiChou.h index cbe7e5749..90393b7b1 100644 --- a/include/Game/Entities/ShijimiChou.h +++ b/include/Game/Entities/ShijimiChou.h @@ -216,14 +216,14 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mMaxFlyTime(this, 'fp01', "”òsŠúŠÔ", 300.0f, 0.0f, 1000.0f) // 'flight duration' - , mMaxFlyTimePlant(this, 'fp08', "ƒvƒ‰ƒ“ƒc‚©‚ç‚Ì”òsŠúŠÔ", 100.0f, 0.0f, 1000.0f) // 'flight duration from plants' - , mNectarRate(this, 'fp02', "–¨ƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'honey rate' - , mFlightHeight(this, 'fp03', "”òs‚‚³", 100.0f, 0.0f, 200.0f) // 'flight height' - , mPitchRate(this, 'fp04', "”òsƒŒ[ƒg", 0.05f, 0.0f, 1.0f) // 'flight rate' - , mPitchAmpRate(this, 'fp05', "”òs‚’á", 1.0f, 0.0f, 10.0f) // 'flight altitude' - , mRedSpawnChance(this, 'fp06', "Ô’±—¦", 0.1f, 0.0f, 1.0f) // 'red butterfly rate - , mPurpleSpawnChance(this, 'fp07', "•’±—¦", 0.1f, 0.0f, 1.0f) // 'black butterfly rate' + , mMaxFlyTime(this, 'fp01', "飛行期間", 300.0f, 0.0f, 1000.0f) // 'flight duration' + , mMaxFlyTimePlant(this, 'fp08', "プランツã‹ã‚‰ã®é£›è¡ŒæœŸé–“", 100.0f, 0.0f, 1000.0f) // 'flight duration from plants' + , mNectarRate(this, 'fp02', "蜜レート", 1.0f, 0.0f, 1.0f) // 'honey rate' + , mFlightHeight(this, 'fp03', "飛行高ã•", 100.0f, 0.0f, 200.0f) // 'flight height' + , mPitchRate(this, 'fp04', "飛行レート", 0.05f, 0.0f, 1.0f) // 'flight rate' + , mPitchAmpRate(this, 'fp05', "飛行高低", 1.0f, 0.0f, 10.0f) // 'flight altitude' + , mRedSpawnChance(this, 'fp06', "赤è¶çŽ‡", 0.1f, 0.0f, 1.0f) // 'red butterfly rate + , mPurpleSpawnChance(this, 'fp07', "é»’è¶çŽ‡", 0.1f, 0.0f, 1.0f) // 'black butterfly rate' { } diff --git a/include/Game/Entities/SnakeCrow.h b/include/Game/Entities/SnakeCrow.h index 64fbc8f3f..aed0a0900 100644 --- a/include/Game/Entities/SnakeCrow.h +++ b/include/Game/Entities/SnakeCrow.h @@ -194,10 +194,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mFastAppearChance(this, 'fp01', "’ÊíoŒ»—¦", 0.8f, 0.0f, 1.0f) // 'normal appearance rate' - , mWaitTime(this, 'fp11', "ö‚é–˜‚ÌŽžŠÔ", 2.0f, 0.0f, 10.0f) // 'time to dive' - , mUndergroundTime(this, 'fp12', "’n’†‚Å‚ÌŽžŠÔ", 1.0f, 0.0f, 10.0f) // 'time in the ground' - , mPoisonDamage(this, 'fp21', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // 'white pikmin' + , mFastAppearChance(this, 'fp01', "通常出ç¾çŽ‡", 0.8f, 0.0f, 1.0f) // 'normal appearance rate' + , mWaitTime(this, 'fp11', "潜る迄ã®æ™‚é–“", 2.0f, 0.0f, 10.0f) // 'time to dive' + , mUndergroundTime(this, 'fp12', "地中ã§ã®æ™‚é–“", 1.0f, 0.0f, 10.0f) // 'time in the ground' + , mPoisonDamage(this, 'fp21', "白ピクミン", 300.0f, 0.0f, 10000.0f) // 'white pikmin' , mWFGHealth(this, 'fp31', "Forest 2 Life", 7500.0f, 0.0f, 99999.0f) // (White Flower Garden Life) { } diff --git a/include/Game/Entities/SnakeWhole.h b/include/Game/Entities/SnakeWhole.h index f044cfcb9..0eca50ec2 100644 --- a/include/Game/Entities/SnakeWhole.h +++ b/include/Game/Entities/SnakeWhole.h @@ -195,10 +195,10 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mFastAppearChance(this, 'fp01', "’ÊíoŒ»—¦", 0.8f, 0.0f, 1.0f) // 'normal appearance rate' - , mWaitTime(this, 'fp11', "ö‚é–˜‚ÌŽžŠÔ", 2.0f, 0.0f, 10.0f) // 'time to dive' - , mUndergroundTime(this, 'fp12', "’n’†‚Å‚ÌŽžŠÔ", 1.0f, 0.0f, 10.0f) // 'time in the ground' - , mPoisonDamage(this, 'fp21', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // 'white pikmin' + , mFastAppearChance(this, 'fp01', "通常出ç¾çŽ‡", 0.8f, 0.0f, 1.0f) // 'normal appearance rate' + , mWaitTime(this, 'fp11', "潜る迄ã®æ™‚é–“", 2.0f, 0.0f, 10.0f) // 'time to dive' + , mUndergroundTime(this, 'fp12', "地中ã§ã®æ™‚é–“", 1.0f, 0.0f, 10.0f) // 'time in the ground' + , mPoisonDamage(this, 'fp21', "白ピクミン", 300.0f, 0.0f, 10000.0f) // 'white pikmin' { } diff --git a/include/Game/Entities/Sokkuri.h b/include/Game/Entities/Sokkuri.h index 14f584149..1b25502fb 100644 --- a/include/Game/Entities/Sokkuri.h +++ b/include/Game/Entities/Sokkuri.h @@ -34,16 +34,16 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mMaxTravelTime(this, 'fp01', "ˆÚ“®ŽžŠÔÅ‘å", 1.0f, 0.0f, 10.0f) // 'maximum travel time' - , mMinTravelTime(this, 'fp02', "ˆÚ“®ŽžŠÔŬ", 0.0f, 0.0f, 10.0f) // 'minimum travel time' - , mMaxMoveAngle(this, 'fp03', "ˆÚ“®Šp“xÅ‘å", 90.0f, 0.0f, 180.0f) // 'maximum moving angle' - , mMinMoveAngle(this, 'fp04', "ˆÚ“®Šp“xŬ", 45.0f, 0.0f, 180.0f) // 'minimum moving angle' - , mWaitingProbability(this, 'fp11', "‘Ò‹@Šm—¦", 0.25f, 0.0f, 1.0f) // 'waiting probability' - , mMaxWaitingTime(this, 'fp12', "‘Ò‹@ŽžŠÔÅ‘å", 2.0f, 0.0f, 10.0f) // 'maximum waiting time' - , mMinWaitingTime(this, 'fp13', "‘Ò‹@ŽžŠÔŬ", 1.0f, 0.0f, 10.0f) // 'minimum waiting time' - , mUnderwaterMoveSpeed(this, 'fp21', "…’†ˆÚ“®‘¬“x", 25.0f, 0.0f, 1000.0f) // 'underwater movement speed' - , mUnderwaterRotationRate(this, 'fp22', "…’†‰ñ“]‘¬“x—¦", 0.05f, 0.0f, 1.0f) // 'underwater rotation rate' - , mUnderwaterRotationMaxSpeed(this, 'fp23', "…’†‰ñ“]ő呬“x", 1.0f, 0.0f, 360.0f) // 'underwater rotation maximum speed' + , mMaxTravelTime(this, 'fp01', "移動時間最大", 1.0f, 0.0f, 10.0f) // 'maximum travel time' + , mMinTravelTime(this, 'fp02', "移動時間最å°", 0.0f, 0.0f, 10.0f) // 'minimum travel time' + , mMaxMoveAngle(this, 'fp03', "移動角度最大", 90.0f, 0.0f, 180.0f) // 'maximum moving angle' + , mMinMoveAngle(this, 'fp04', "移動角度最å°", 45.0f, 0.0f, 180.0f) // 'minimum moving angle' + , mWaitingProbability(this, 'fp11', "待機確率", 0.25f, 0.0f, 1.0f) // 'waiting probability' + , mMaxWaitingTime(this, 'fp12', "待機時間最大", 2.0f, 0.0f, 10.0f) // 'maximum waiting time' + , mMinWaitingTime(this, 'fp13', "待機時間最å°", 1.0f, 0.0f, 10.0f) // 'minimum waiting time' + , mUnderwaterMoveSpeed(this, 'fp21', "水中移動速度", 25.0f, 0.0f, 1000.0f) // 'underwater movement speed' + , mUnderwaterRotationRate(this, 'fp22', "水中回転速度率", 0.05f, 0.0f, 1.0f) // 'underwater rotation rate' + , mUnderwaterRotationMaxSpeed(this, 'fp23', "水中回転最大速度", 1.0f, 0.0f, 360.0f) // 'underwater rotation maximum speed' { } diff --git a/include/Game/Entities/Tadpole.h b/include/Game/Entities/Tadpole.h index e8c5323a9..21a2fb10b 100644 --- a/include/Game/Entities/Tadpole.h +++ b/include/Game/Entities/Tadpole.h @@ -84,7 +84,7 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mPitterPatterMoveSpeed(this, 'fp01', "ƒsƒ`ƒsƒ`ˆÚ“®‘¬“x", 20.0f, 0.0f, + , mPitterPatterMoveSpeed(this, 'fp01', "ピãƒãƒ”ãƒç§»å‹•é€Ÿåº¦", 20.0f, 0.0f, 1000.0f) // 'pichipichi movement speed' { } diff --git a/include/Game/Entities/TamagoMushi.h b/include/Game/Entities/TamagoMushi.h index 4f4ac0e64..6fb09de97 100644 --- a/include/Game/Entities/TamagoMushi.h +++ b/include/Game/Entities/TamagoMushi.h @@ -26,13 +26,13 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mSurvivalTime(this, 'fp01', "¶‘¶ŽžŠÔ", 300.0f, 0.0, 2000.0f) // 'survival time' - , mAppearanceRange(this, 'fp02', "oŒ»”͈Í", 80.0f, 0.0f, 200.0f) // 'appearance range' - , mHoneyRate(this, 'fp03', "–¨ƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'honey rate' - , mMinimumWalkTime(this, 'ip01', "•à‚«ŽžŠÔŬ", 60, 0, 300) // 'minimum walking time' - , mMaximumWalkTime(this, 'ip02', "•à‚«ŽžŠÔÅ‘å", 100, 0, 600) // 'maximum walking time' - , mMinimumAppearanceTime(this, 'ip03', "oŒ»ŽžŠÔŬ", 10, 0, 100) // 'minimum appearance time' - , mMaximumAppearanceTime(this, 'ip04', "oŒ»ŽžŠÔÅ‘å", 50, 0, 200) // 'maximum appearance time' + , mSurvivalTime(this, 'fp01', "生存時間", 300.0f, 0.0, 2000.0f) // 'survival time' + , mAppearanceRange(this, 'fp02', "出ç¾ç¯„囲", 80.0f, 0.0f, 200.0f) // 'appearance range' + , mHoneyRate(this, 'fp03', "蜜レート", 1.0f, 0.0f, 1.0f) // 'honey rate' + , mMinimumWalkTime(this, 'ip01', "æ­©ã時間最å°", 60, 0, 300) // 'minimum walking time' + , mMaximumWalkTime(this, 'ip02', "æ­©ã時間最大", 100, 0, 600) // 'maximum walking time' + , mMinimumAppearanceTime(this, 'ip03', "出ç¾æ™‚間最å°", 10, 0, 100) // 'minimum appearance time' + , mMaximumAppearanceTime(this, 'ip04', "出ç¾æ™‚間最大", 50, 0, 200) // 'maximum appearance time' { } diff --git a/include/Game/Entities/Tobi.h b/include/Game/Entities/Tobi.h index 1d2e08ee7..3fb4c8466 100644 --- a/include/Game/Entities/Tobi.h +++ b/include/Game/Entities/Tobi.h @@ -128,11 +128,11 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mTakeOffHealthRatio(this, 'fp01', "—£—¤ƒ‰ƒCƒt", 0.5f, 0.0f, 1.0f) // 'takeoff life' - , mLandHealthRatio(this, 'fp02', "’…—¤ƒ‰ƒCƒt", 0.7f, 0.0f, 1.0f) // 'landing life' - , mFlightHeight(this, 'fp03', "”òsƒIƒtƒZƒbƒg", 60.0f, 0.0f, 300.0f) // 'flight offset' - , mPoisonDamage(this, 'fp11', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // 'white pikmin' - , mBridgeDamage(this, 'fp12', "‹´H‚¢ƒpƒ[", 75.0f, 0.0f, 100.0f) // 'bridge eating power' + , mTakeOffHealthRatio(this, 'fp01', "離陸ライフ", 0.5f, 0.0f, 1.0f) // 'takeoff life' + , mLandHealthRatio(this, 'fp02', "ç€é™¸ãƒ©ã‚¤ãƒ•", 0.7f, 0.0f, 1.0f) // 'landing life' + , mFlightHeight(this, 'fp03', "飛行オフセット", 60.0f, 0.0f, 300.0f) // 'flight offset' + , mPoisonDamage(this, 'fp11', "白ピクミン", 300.0f, 0.0f, 10000.0f) // 'white pikmin' + , mBridgeDamage(this, 'fp12', "橋食ã„パワー", 75.0f, 0.0f, 100.0f) // 'bridge eating power' { } diff --git a/include/Game/Entities/Tyre.h b/include/Game/Entities/Tyre.h index 921148693..e8f5caee2 100644 --- a/include/Game/Entities/Tyre.h +++ b/include/Game/Entities/Tyre.h @@ -156,7 +156,7 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mTyreRotationSpeed(this, 'fp01', "‰ñ“]ƒXƒs[ƒh", 0.5f, 0.0f, 100.0f) // rotation speed + , mTyreRotationSpeed(this, 'fp01', "回転スピード", 0.5f, 0.0f, 100.0f) // rotation speed { } diff --git a/include/Game/Entities/Ujia.h b/include/Game/Entities/Ujia.h index 640b83e5b..9f84050ef 100644 --- a/include/Game/Entities/Ujia.h +++ b/include/Game/Entities/Ujia.h @@ -112,7 +112,7 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mBridgeDamage(this, 'fp01', "‹´H‚¢ƒpƒ[", 25.0f, 0.0f, 100.0f) // 'bridge eating power' + , mBridgeDamage(this, 'fp01', "橋食ã„パワー", 25.0f, 0.0f, 100.0f) // 'bridge eating power' { } diff --git a/include/Game/Entities/Ujib.h b/include/Game/Entities/Ujib.h index 69f3a6cb6..a90729711 100644 --- a/include/Game/Entities/Ujib.h +++ b/include/Game/Entities/Ujib.h @@ -118,8 +118,8 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { inline ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mPoisonDamage(this, 'fp01', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 10000.0f) // 'white pikmin' - , mBridgeDamage(this, 'fp02', "‹´H‚¢ƒpƒ[", 50.0f, 0.0f, 100.0f) // 'bridge eating power' + , mPoisonDamage(this, 'fp01', "白ピクミン", 300.0f, 0.0f, 10000.0f) // 'white pikmin' + , mBridgeDamage(this, 'fp02', "橋食ã„パワー", 50.0f, 0.0f, 100.0f) // 'bridge eating power' { } diff --git a/include/Game/Entities/UmiMushi.h b/include/Game/Entities/UmiMushi.h index 05e961416..2f111a540 100644 --- a/include/Game/Entities/UmiMushi.h +++ b/include/Game/Entities/UmiMushi.h @@ -73,20 +73,20 @@ struct Parms : public EnemyParmsBase { struct ProperParms : public Parameters { ProperParms() : Parameters(nullptr, "EnemyParmsBase") - , mDamageRate(this, 'fp01', "ƒ_ƒ[ƒWƒŒ[ƒg", 1.0f, 0.0f, 1.0f) // 'damage rate' - , mTurnStartAngle(this, 'fp02', "ù‰ñŠJŽnŠp“x", 60.0f, 0.0f, 180.0f) // 'turn start angle' - , mTurnEndAngle(this, 'fp03', "ù‰ñI—¹Šp“x", 10.0f, 0.0f, 180.0f) // 'turn end angle' - , mMoveSpeed(this, 'fp04', "ƒT[ƒ`ˆÚ“®‘¬“x", 10.0f, 0.0f, 100.0f) // 'search movement speed' - , mRotateSpeed(this, 'fp06', "ƒT[ƒ`‰ñ“]‘¬“x—¦", 0.1f, 0.0f, 1.0f) // 'search rotation speed rate' - , mRotateSpeedMax(this, 'fp07', "ƒT[ƒ`‰ñ“]ő呬“x", 5.0f, 0.0f, 360.0f) // 'search rotation max speed' - , mPurpleDamageRate(this, 'fp09', "•ƒsƒNƒ~ƒ“ƒ_ƒ[ƒWƒŒ[ƒg", 0.0f, 0.0f, + , mDamageRate(this, 'fp01', "ダメージレート", 1.0f, 0.0f, 1.0f) // 'damage rate' + , mTurnStartAngle(this, 'fp02', "旋回開始角度", 60.0f, 0.0f, 180.0f) // 'turn start angle' + , mTurnEndAngle(this, 'fp03', "旋回終了角度", 10.0f, 0.0f, 180.0f) // 'turn end angle' + , mMoveSpeed(this, 'fp04', "サーãƒç§»å‹•é€Ÿåº¦", 10.0f, 0.0f, 100.0f) // 'search movement speed' + , mRotateSpeed(this, 'fp06', "サーãƒå›žè»¢é€Ÿåº¦çŽ‡", 0.1f, 0.0f, 1.0f) // 'search rotation speed rate' + , mRotateSpeedMax(this, 'fp07', "サーãƒå›žè»¢æœ€å¤§é€Ÿåº¦", 5.0f, 0.0f, 360.0f) // 'search rotation max speed' + , mPurpleDamageRate(this, 'fp09', "黒ピクミンダメージレート", 0.0f, 0.0f, 1.0f) // 'black pikmin damage rate' - , mCaveTerritory(this, 'fp10', "’n‰ºƒeƒŠƒgƒŠ[", 200.0f, 0.0f, 500.0f) // 'underground territory' - , mWhiteDamage(this, 'fp11', "”’ƒsƒNƒ~ƒ“", 300.0f, 0.0f, 1000.0f) // 'white pikmin' - , mBlindHealth(this, 'fp12', "‚ß‚­‚烉ƒCƒt", 1000.0f, 0.0f, 2000.0f) // 'blind life' - , mBlindWaitTime(this, 'fp13', "‚ß‚­‚ç‘Ò‹@ŠÔŠu", 200.0f, 0.0f, 500.0f) // 'blind wait interval' - , mBlindMoveTime(this, 'fp14', "‚ß‚­‚çˆÚ“®ŠÔŠu", 200.0f, 0.0f, 500.0f) // 'blind movement interval' - , mWaitTimeAfterAttack(this, 'ip01', "UŒ‚Œã‘Ò‹@ŠúŠÔ", 100, 0, 300) // 'waiting period after attack' + , mCaveTerritory(this, 'fp10', "地下テリトリー", 200.0f, 0.0f, 500.0f) // 'underground territory' + , mWhiteDamage(this, 'fp11', "白ピクミン", 300.0f, 0.0f, 1000.0f) // 'white pikmin' + , mBlindHealth(this, 'fp12', "ã‚ãらライフ", 1000.0f, 0.0f, 2000.0f) // 'blind life' + , mBlindWaitTime(this, 'fp13', "ã‚ãら待機間隔", 200.0f, 0.0f, 500.0f) // 'blind wait interval' + , mBlindMoveTime(this, 'fp14', "ã‚ãら移動間隔", 200.0f, 0.0f, 500.0f) // 'blind movement interval' + , mWaitTimeAfterAttack(this, 'ip01', "攻撃後待機期間", 100, 0, 300) // 'waiting period after attack' { } diff --git a/include/Game/FakePiki.h b/include/Game/FakePiki.h index ad7868292..529a3d99b 100644 --- a/include/Game/FakePiki.h +++ b/include/Game/FakePiki.h @@ -273,18 +273,18 @@ struct FakePikiParms : public CreatureParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "FakePiki::Parms") - , mStepStartSpeed(this, 'fp01', "ASIBUMI ŠJŽnƒXƒs[ƒh", 5.0f, 0.0f, 500.0f) // 'ASIBUMI start speed' (stepping?) - , mWalkStartSpeed(this, 'fp02', "WALK ŠJŽnƒXƒs[ƒh", 8.0f, 0.0f, 500.0f) // 'WALK start speed' - , mRunStartSpeed(this, 'fp03', "RUN ŠJŽnƒXƒs[ƒh", 20.0f, 0.0f, 500.0f) // 'RUN start speed' - , mEscapeStartSpeed(this, 'fp04', "ESCAPE ŠJŽnƒXƒs[ƒh", 95.0f, 0.0f, 500.0f) // 'ESCAPE start speed' - , mWalkPlaybackFrameCountMin(this, 'fp04', "WALK ĶƒtƒŒ[ƒ€”(min)", 60.0f, 0.0f, 300.0f) // 'WALK playback frame count (min)' - , mWalkPlaybackFrameCountMax(this, 'fp05', "WALK ĶƒtƒŒ[ƒ€”(max)", 90.0f, 0.0f, + , mStepStartSpeed(this, 'fp01', "ASIBUMI 開始スピード", 5.0f, 0.0f, 500.0f) // 'ASIBUMI start speed' (stepping?) + , mWalkStartSpeed(this, 'fp02', "WALK 開始スピード", 8.0f, 0.0f, 500.0f) // 'WALK start speed' + , mRunStartSpeed(this, 'fp03', "RUN 開始スピード", 20.0f, 0.0f, 500.0f) // 'RUN start speed' + , mEscapeStartSpeed(this, 'fp04', "ESCAPE 開始スピード", 95.0f, 0.0f, 500.0f) // 'ESCAPE start speed' + , mWalkPlaybackFrameCountMin(this, 'fp04', "WALK å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(min)", 60.0f, 0.0f, 300.0f) // 'WALK playback frame count (min)' + , mWalkPlaybackFrameCountMax(this, 'fp05', "WALK å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(max)", 90.0f, 0.0f, 300.0f) // 'WALK playback frame count (max)' - , mRunPlaybackFrameCountMin(this, 'fp06', "RUN ĶƒtƒŒ[ƒ€”(min)", 40.0f, 0.0f, 300.0f) // 'RUN playback frame count (min)' - , mRunPlaybackFrameCountMax(this, 'fp07', "RUN ĶƒtƒŒ[ƒ€”(max)", 60.0f, 0.0f, 300.0f) // 'RUN playback frame count (max)' - , mEscapePlaybackFrameCountMin(this, 'fp08', "ESCAPE ĶƒtƒŒ[ƒ€”(min)", 60.0f, 0.0f, + , mRunPlaybackFrameCountMin(this, 'fp06', "RUN å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(min)", 40.0f, 0.0f, 300.0f) // 'RUN playback frame count (min)' + , mRunPlaybackFrameCountMax(this, 'fp07', "RUN å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(max)", 60.0f, 0.0f, 300.0f) // 'RUN playback frame count (max)' + , mEscapePlaybackFrameCountMin(this, 'fp08', "ESCAPE å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(min)", 60.0f, 0.0f, 300.0f) // 'ESCAPE playback frame count (min)' - , mEscapePlaybackFrameCountMax(this, 'fp09', "ESCAPE ĶƒtƒŒ[ƒ€”(max)", 90.0f, 0.0f, + , mEscapePlaybackFrameCountMax(this, 'fp09', "ESCAPE å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(max)", 90.0f, 0.0f, 300.0f) // 'ESCAPE playback frame count (max)' { } diff --git a/include/Game/GameLight.h b/include/Game/GameLight.h index c86a03c76..d0450149a 100644 --- a/include/Game/GameLight.h +++ b/include/Game/GameLight.h @@ -158,7 +158,7 @@ struct GameLightSpotSetting : public CNode { struct MoveParms : public Parameters { inline MoveParms() : Parameters(nullptr, "MoveParms") - , mDistance(this, 'f000', "ŒõŒ¹‚Ü‚Å‚Ì‹——£", 1000.0f, 0.0f, 30000.0f) // 'distance to light source' + , mDistance(this, 'f000', "å…‰æºã¾ã§ã®è·é›¢", 1000.0f, 0.0f, 30000.0f) // 'distance to light source' { } @@ -202,9 +202,9 @@ struct GameLightSunSetting : public CNode { struct MoveParms : public Parameters { inline MoveParms() : Parameters(nullptr, "MoveParms") - , mDistance(this, 'f000', "ŒõŒ¹‚Ü‚Å‚Ì‹——£", 20000.0f, 0.0f, 30000.0f) // 'distance to light source' - , mSunriseAngle(this, 'f001', "“ú‚ÌoŠp“x", 20.0f, 0.0f, 360.0f) // 'sunrise angle' - , mSunsetAngle(this, 'f002', "“ú‚Ì“üŠp“x", 160.0f, 0.0f, 360.0f) // 'sunset angle' + , mDistance(this, 'f000', "å…‰æºã¾ã§ã®è·é›¢", 20000.0f, 0.0f, 30000.0f) // 'distance to light source' + , mSunriseAngle(this, 'f001', "æ—¥ã®å‡ºè§’度", 20.0f, 0.0f, 360.0f) // 'sunrise angle' + , mSunsetAngle(this, 'f002', "æ—¥ã®å…¥è§’度", 160.0f, 0.0f, 360.0f) // 'sunset angle' { } diff --git a/include/Game/GameLightSetting.h b/include/Game/GameLightSetting.h index dced88cf3..baf7bd502 100644 --- a/include/Game/GameLightSetting.h +++ b/include/Game/GameLightSetting.h @@ -11,10 +11,10 @@ struct GameLightSettingBase { struct Settings : public Parameters { inline Settings() : Parameters(nullptr, "ColorParms") - , mRed(this, 'u800', "Ô", 127, 0, 255) - , mGreen(this, 'u801', "—Î", 127, 0, 255) - , mBlue(this, 'u802', "Â", 127, 0, 255) - , mAlpha(this, 'u803', "ƒAƒ‹ƒtƒ@", 255, 0, 255) + , mRed(this, 'u800', "赤", 127, 0, 255) + , mGreen(this, 'u801', "ç·‘", 127, 0, 255) + , mBlue(this, 'u802', "é’", 127, 0, 255) + , mAlpha(this, 'u803', "アルファ", 255, 0, 255) { } @@ -58,10 +58,10 @@ struct GameFogSetting { struct Settings : public Parameters { inline Settings() : Parameters(nullptr, "ColorParms") - , mRed(this, 'u800', "Ô", 127, 0, 255) - , mGreen(this, 'u801', "—Î", 127, 0, 255) - , mBlue(this, 'u802', "Â", 127, 0, 255) - , mAlpha(this, 'u803', "ƒAƒ‹ƒtƒ@", 255, 0, 255) + , mRed(this, 'u800', "赤", 127, 0, 255) + , mGreen(this, 'u801', "ç·‘", 127, 0, 255) + , mBlue(this, 'u802', "é’", 127, 0, 255) + , mAlpha(this, 'u803', "アルファ", 255, 0, 255) { } @@ -74,8 +74,8 @@ struct GameFogSetting { struct GameFogParms : public Parameters { inline GameFogParms() : Parameters(nullptr, "GameFogParms") - , mStartZ(this, 'f000', "ŠJŽnz’l", 1000.0f, 0.0f, 15000.0f) - , mEndZ(this, 'f001', "I—¹z’l", 15000.0f, 0.0f, 15000.0f) + , mStartZ(this, 'f000', "開始z値", 1000.0f, 0.0f, 15000.0f) + , mEndZ(this, 'f001', "終了z値", 15000.0f, 0.0f, 15000.0f) { } @@ -124,10 +124,10 @@ struct GameShadowSetting { struct Settings : public Parameters { inline Settings() : Parameters(nullptr, "ColorParms") - , mRed(this, 'u800', "Ô", 127, 0, 255) - , mGreen(this, 'u801', "—Î", 127, 0, 255) - , mBlue(this, 'u802', "Â", 127, 0, 255) - , mAlpha(this, 'u803', "ƒAƒ‹ƒtƒ@", 255, 0, 255) + , mRed(this, 'u800', "赤", 127, 0, 255) + , mGreen(this, 'u801', "ç·‘", 127, 0, 255) + , mBlue(this, 'u802', "é’", 127, 0, 255) + , mAlpha(this, 'u803', "アルファ", 255, 0, 255) { } @@ -178,7 +178,7 @@ struct GameSpotLightSetting : public GameLightSettingBase { struct SpotParms : public Parameters { inline SpotParms() : Parameters(nullptr, "SpotParms") - , mCutOff(this, 'f000', "ƒJƒbƒgƒIƒt", 60.0f, 0.0f, 90.0f) + , mCutOff(this, 'f000', "カットオフ", 60.0f, 0.0f, 90.0f) { } diff --git a/include/Game/IllustratedBook.h b/include/Game/IllustratedBook.h index 76d7df001..864ef6bfc 100644 --- a/include/Game/IllustratedBook.h +++ b/include/Game/IllustratedBook.h @@ -119,17 +119,17 @@ struct CameraParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "cameraParms") - , mRadius(this, 'f000', "”¼Œa", 350.0f, 0.0f, 2000.0f) // 'radius' - , mInitialHeight(this, 'f001', "‚‚³@‰Šú’l", 500.0f, 0.0f, 1000.0f) // 'height initial value' - , mMinHeight(this, 'f002', "‚‚³@Ŭ’l", 0.0f, 0.0f, 1000.0f) // 'height min value' - , mMaxHeight(this, 'f003', "‚‚³@Å‘å’l", 700.0f, 0.0f, 1000.0f) // 'height max value' - , mOffsetX(this, 'f004', "ƒIƒtƒZƒbƒg@‚˜", 0.0f, -500.0f, 500.0f) // 'offset X' - , mOffsetY(this, 'f005', "ƒIƒtƒZƒbƒg@‚™", 0.0f, -500.0f, 500.0f) // 'offset Y' - , mOffsetZ(this, 'f006', "ƒIƒtƒZƒbƒg@‚š", 0.0f, -500.0f, 500.0f) // 'offset Z' - , mInitialViewAngle(this, 'f009', "‰æŠp@‰Šú’l", 30.0f, 0.0f, 90.0f) // 'view angle initial value' - , mMinViewAngle(this, 'f007', "‰æŠp@Ŭ’l", 0.1f, 0.0f, 90.0f) // 'view angle min value' - , mMaxViewAngle(this, 'f008', "‰æŠp@Å‘å’l", 90.0f, 0.0f, 90.0f) // 'view angle max value' - , mInitialRotation(this, 'f010', "‰ñ“]@‰Šú’l", 0.0f, 0.0f, 360.0f) // 'rotation initial value' + , mRadius(this, 'f000', "åŠå¾„", 350.0f, 0.0f, 2000.0f) // 'radius' + , mInitialHeight(this, 'f001', "高ã•ã€€åˆæœŸå€¤", 500.0f, 0.0f, 1000.0f) // 'height initial value' + , mMinHeight(this, 'f002', "高ã•ã€€æœ€å°å€¤", 0.0f, 0.0f, 1000.0f) // 'height min value' + , mMaxHeight(this, 'f003', "高ã•ã€€æœ€å¤§å€¤", 700.0f, 0.0f, 1000.0f) // 'height max value' + , mOffsetX(this, 'f004', "オフセット x", 0.0f, -500.0f, 500.0f) // 'offset X' + , mOffsetY(this, 'f005', "オフセット y", 0.0f, -500.0f, 500.0f) // 'offset Y' + , mOffsetZ(this, 'f006', "オフセット z", 0.0f, -500.0f, 500.0f) // 'offset Z' + , mInitialViewAngle(this, 'f009', "画角 åˆæœŸå€¤", 30.0f, 0.0f, 90.0f) // 'view angle initial value' + , mMinViewAngle(this, 'f007', "画角 最å°å€¤", 0.1f, 0.0f, 90.0f) // 'view angle min value' + , mMaxViewAngle(this, 'f008', "画角 最大値", 90.0f, 0.0f, 90.0f) // 'view angle max value' + , mInitialRotation(this, 'f010', "回転 åˆæœŸå€¤", 0.0f, 0.0f, 360.0f) // 'rotation initial value' { } @@ -205,9 +205,9 @@ struct PositionParms : public CNode { struct Parms : public Parameters { inline Parms() : Parameters(nullptr, "PositionParms") - , mAppearPosX(this, 'f000', "oŒ»ˆÊ’u@‚˜", 0.0f, -10000.0f, 10000.0f) // 'appearance position X' - , mAppearPosY(this, 'f001', "oŒ»ˆÊ’u@‚™", 0.0f, -10000.0f, 10000.0f) // 'appearance position Y' - , mAppearPosZ(this, 'f002', "oŒ»ˆÊ’u@‚š", 0.0f, -10000.0f, 10000.0f) // 'appearance position Z' + , mAppearPosX(this, 'f000', "出ç¾ä½ç½®ã€€ï½˜", 0.0f, -10000.0f, 10000.0f) // 'appearance position X' + , mAppearPosY(this, 'f001', "出ç¾ä½ç½®ã€€ï½™", 0.0f, -10000.0f, 10000.0f) // 'appearance position Y' + , mAppearPosZ(this, 'f002', "出ç¾ä½ç½®ã€€ï½š", 0.0f, -10000.0f, 10000.0f) // 'appearance position Z' { } @@ -242,9 +242,9 @@ struct EnemyParms : public CNode { struct Parms : public Parameters { inline Parms() : Parameters(nullptr, "enemyParms") - , mSize(this, 'f001', "‘å‚«‚³", 10.0f, 0.0f, 1000.0f) // 'size' - , mAppearRange(this, 'f000', "oŒ»”͈Í", 0.0f, 0.0f, 1000.0f) // 'occurence range' - , mAppearNum(this, 'i000', "oŒ»”", 1, 1, 99) + , mSize(this, 'f001', "大ãã•", 10.0f, 0.0f, 1000.0f) // 'size' + , mAppearRange(this, 'f000', "出ç¾ç¯„囲", 0.0f, 0.0f, 1000.0f) // 'occurence range' + , mAppearNum(this, 'i000', "出ç¾æ•°", 1, 1, 99) { } @@ -281,9 +281,9 @@ struct ItemParms : public CNode { struct Parms : public Parameters { inline Parms() : Parameters(nullptr, "enemyParms") - , mOffsetX(this, 'f000', "ƒIƒtƒZƒbƒg‚˜", 0.0f, -10000.0f, 10000.0f) - , mOffsetY(this, 'f001', "ƒIƒtƒZƒbƒg‚™", 0.0f, -10000.0f, 10000.0f) - , mOffsetZ(this, 'f002', "ƒIƒtƒZƒbƒg‚š", 0.0f, -10000.0f, 10000.0f) + , mOffsetX(this, 'f000', "オフセットx", 0.0f, -10000.0f, 10000.0f) + , mOffsetY(this, 'f001', "オフセットy", 0.0f, -10000.0f, 10000.0f) + , mOffsetZ(this, 'f002', "オフセットz", 0.0f, -10000.0f, 10000.0f) { } diff --git a/include/Game/NaviParms.h b/include/Game/NaviParms.h index 748edfb71..0b5af42fe 100644 --- a/include/Game/NaviParms.h +++ b/include/Game/NaviParms.h @@ -8,70 +8,70 @@ struct NaviParms : public FakePikiParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "Navi::Parms") - , mActionRadius(this, 'p000', "ƒAƒNƒVƒ‡ƒ“”¼Œa", 25.0f, 0.0f, 500.0f) // 'action radius' - , mAutopluckDistance(this, 'p060', "˜A‘±”²‚«‹——£", 200.0f, 0.0f, 1000.0f) // 'continuous pluck distance' - , mPluckDistanceOutsideOnyon(this, 'p062', "”²‚«‹——£(onyonŠO)", 15.0f, 0.0f, 500.0f) // 'pluck distance (outside onyon)' - , mPikiCallMaxRadius(this, 'p001', "ƒsƒLŒÄ‚Ñő唼Œa", 90.0f, 0.0f, 500.0f) // 'piki call max radius' - , mPikiCallMinRadius(this, 'p053', "ƒsƒLŒÄ‚ÑŬ”¼Œa", 5.0f, 0.0f, 500.0f) // 'piki call min radius' - , mMaxCallTime(this, 'p002', "ƒsƒLŒÄ‚Ñő厞ŠÔ", 0.45f, 0.0f, 500.0f) // 'max call time' - , mCircleDisappearTime(this, 'p003', "ƒT[ƒNƒ‹Á‚¦ŽžŠÔ", 1.0f, 0.0f, 500.0f) // 'circle disappearing time' - , mMoveSpeed(this, 'p004', "ˆÚ“®‘¬“x", 160.0f, 0.0f, 500.0f) // 'movement speed' - , mRunSpeed(this, 'p056', "‘–‚鑬‚³iD’²Žžj", 160.0f, 0.0f, 500.0f) // 'running speed (in good condition)' (lol) - , mDisplayScale(this, 'p038', "•\\Ž¦ƒXƒP[ƒ‹", 1.2f, 0.1f, 10.0f) // 'display scale' + , mActionRadius(this, 'p000', "アクションåŠå¾„", 25.0f, 0.0f, 500.0f) // 'action radius' + , mAutopluckDistance(this, 'p060', "連続抜ãè·é›¢", 200.0f, 0.0f, 1000.0f) // 'continuous pluck distance' + , mPluckDistanceOutsideOnyon(this, 'p062', "抜ãè·é›¢(onyon外)", 15.0f, 0.0f, 500.0f) // 'pluck distance (outside onyon)' + , mPikiCallMaxRadius(this, 'p001', "ピキ呼ã³æœ€å¤§åŠå¾„", 90.0f, 0.0f, 500.0f) // 'piki call max radius' + , mPikiCallMinRadius(this, 'p053', "ピキ呼ã³æœ€å°åŠå¾„", 5.0f, 0.0f, 500.0f) // 'piki call min radius' + , mMaxCallTime(this, 'p002', "ピキ呼ã³æœ€å¤§æ™‚é–“", 0.45f, 0.0f, 500.0f) // 'max call time' + , mCircleDisappearTime(this, 'p003', "サークル消ãˆæ™‚é–“", 1.0f, 0.0f, 500.0f) // 'circle disappearing time' + , mMoveSpeed(this, 'p004', "移動速度", 160.0f, 0.0f, 500.0f) // 'movement speed' + , mRunSpeed(this, 'p056', "走る速ã•ï¼ˆå¥½èª¿æ™‚)", 160.0f, 0.0f, 500.0f) // 'running speed (in good condition)' (lol) + , mDisplayScale(this, 'p038', "表\示スケール", 1.2f, 0.1f, 10.0f) // 'display scale' , mStick0(this, 'p005', "Stick 0", 0.001f, 0.0f, 1.0f) , mStick01(this, 'p020', "Stick 01", 0.1f, 0.0f, 1.0f) , mStick1(this, 'p006', "Stick 1", 0.8f, 0.0f, 1.0f) , mStick2(this, 'p007', "Stick 2", 1.0f, 0.0f, 1.0f) - , mSlidingAngle(this, 'p008', "‚·‚ׂèŠp“x", 120.0f, 90.0f, 180.0f) // 'sliding angle' - , mTimeLimitForThrowing(this, 'p009', "“Š‚°‚½‚ߌÀŠEŽžŠÔ", 2.5f, 0.0f, 10.0f) // 'time limit for throwing' - , mThrowDistanceMax(this, 'p010', "“Š‚°‹——£(Max)", 140.0f, 0.0f, 1000.0f) // 'throw distance (Max)' - , mThrowDistanceMin(this, 'p011', "“Š‚°‹——£(Min)", 140.0f, 0.0f, 500.0f) // 'throw distance (Min)' - , mThrowHeightMax(this, 'p024', "“Š‚°‚‚³(Max)", 75.0f, 0.0f, 1000.0f) // 'throw height (Max)' - , mThrowHeightMin(this, 'p025', "“Š‚°‚‚³(min)", 75.0f, 0.0f, 1000.0f) // 'throw height (min)' - , mThrowHeightYellow(this, 'p054', "“Š‚°‚‚³(‰©F)", 115.0f, 0.0f, 1000.0f) // 'throw height (yellow)' - , mThrowBlackHeight(this, 'q000', "•@“Š‚°‚‚³", 30.0f, 0.0f, 150.0f) // 'black throw height' - , mThrowWhiteHeight(this, 'q001', "”’@“Š‚°‚‚³", 75.0f, 0.0f, 150.0f) // 'white throw height' - , mLandingTime(this, 'p026', "’…’nŽžŠÔ", 1.0f, 0.0f, 100.0f) // 'landing time' - , mGrabPikiRange(this, 'p037', "ƒsƒL‚ð‚‚©‚Þ—LŒø”͈Í", 15.0f, 0.0f, 200.0f) // 'effective range to grab piki' - , mLoopCountToPluck(this, 'p042', "”²‚­ƒ‹[ƒv‰ñ”", 0, 0, 10) // 'number of loops to pluck' (?) - , mPikiWaitRange(this, 'p039', "ƒsƒL‚ª‘҂”͈Í", 15.0f, 0.0f, 200.0f) // 'piki wait range' - , mPikiChangeFormationRange(this, 'p040', "ƒsƒL‚ªƒtƒH[ƒ[ƒVƒ‡ƒ“‚ð•Ï‚¦‚é”͈Í", 40.0f, 0.0f, + , mSlidingAngle(this, 'p008', "ã™ã¹ã‚Šè§’度", 120.0f, 90.0f, 180.0f) // 'sliding angle' + , mTimeLimitForThrowing(this, 'p009', "投ã’ãŸã‚é™ç•Œæ™‚é–“", 2.5f, 0.0f, 10.0f) // 'time limit for throwing' + , mThrowDistanceMax(this, 'p010', "投ã’è·é›¢(Max)", 140.0f, 0.0f, 1000.0f) // 'throw distance (Max)' + , mThrowDistanceMin(this, 'p011', "投ã’è·é›¢(Min)", 140.0f, 0.0f, 500.0f) // 'throw distance (Min)' + , mThrowHeightMax(this, 'p024', "投ã’高ã•(Max)", 75.0f, 0.0f, 1000.0f) // 'throw height (Max)' + , mThrowHeightMin(this, 'p025', "投ã’高ã•(min)", 75.0f, 0.0f, 1000.0f) // 'throw height (min)' + , mThrowHeightYellow(this, 'p054', "投ã’高ã•(黄色)", 115.0f, 0.0f, 1000.0f) // 'throw height (yellow)' + , mThrowBlackHeight(this, 'q000', "黒 投ã’高ã•", 30.0f, 0.0f, 150.0f) // 'black throw height' + , mThrowWhiteHeight(this, 'q001', "白 投ã’高ã•", 75.0f, 0.0f, 150.0f) // 'white throw height' + , mLandingTime(this, 'p026', "ç€åœ°æ™‚é–“", 1.0f, 0.0f, 100.0f) // 'landing time' + , mGrabPikiRange(this, 'p037', "ピキをã¤ã‹ã‚€æœ‰åŠ¹ç¯„囲", 15.0f, 0.0f, 200.0f) // 'effective range to grab piki' + , mLoopCountToPluck(this, 'p042', "抜ãループ回数", 0, 0, 10) // 'number of loops to pluck' (?) + , mPikiWaitRange(this, 'p039', "ピキãŒå¾…ã¤ç¯„囲", 15.0f, 0.0f, 200.0f) // 'piki wait range' + , mPikiChangeFormationRange(this, 'p040', "ピキãŒãƒ•ã‚©ãƒ¼ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’変ãˆã‚‹ç¯„囲", 40.0f, 0.0f, 200.0f) // 'range where piki changes formation' - , mHitSize(this, 'p021', "“–‚½‚èƒTƒCƒY", 8.0f, 0.0f, 100.0f) // 'hit size' - , mGroundSize(this, 'p041', "’n–Ê“–‚½‚èƒTƒCƒY", 8.5f, 0.0f, 100.0f) // 'ground size' - , mInverseWeight(this, 'p022', "d‚³‚Ì‹t”", 1.0f, 0.0f, 2000.0f) // 'inverse weight' - , mAimRotationSpeed(this, 'p023', "ƒGƒCƒ~ƒ“ƒO‰ñ“]ƒXƒs[ƒh", 0.03f, 0.0f, 1.0f) // 'aiming rotation speed' - , mTotalCrushTime(this, 'p031', "‚‚ԂꑎžŠÔ", 2.0f, 0.0f, 10.0f) // 'total crush time' - , mFlatTime(this, 'p032', "‚Ø‚Á‚½‚ñ‚±ŽžŠÔ", 1.0f, 0.0f, 10.0f) // 'flat time' - , mPressStartTime(this, 'p033', "‰Ÿ‚µŠJŽnŽžŠÔ", 0.8f, 0.0f, 10.0f) // 'press start time' - , mPressStartStickAmount(this, 'p034', "‰Ÿ‚µŠJŽnƒXƒeƒBƒbƒN—Ê", 0.3f, 0.0f, 1.0f) // 'press start stick amount' - , mShakePreventionAngle(this, 'p035', "Žè‚Ô‚ê–hŽ~Šp“x", 10.0f, 0.0f, 180.0f) // 'shake prevention angle' - , mShakePreventionMagnitude(this, 'p036', "Žè‚Ô‚ê–hŽ~‘å‚«‚³", 0.1f, 0.0f, 1.0f) // 'shake prevention magnitude' - , mCursorLookTime(this, 'p048', "ƒJ[ƒ\\ƒ‹‚݂鎞ŠÔ", 0.85f, 0.0f, 60.0f) // 'cursor look time' - , mPikiLoseNumbnessTime(this, 'p049', "ƒsƒL‚ª‚µ‚Ñ‚ê‚ðØ‚ç‚·ŽžŠÔ", 5.0f, 0.0f, 60.0f) // 'time for piki to lose its numbness' (?) - , mNeutralStickThreshold(this, 'p043', "ƒjƒ…[ƒgƒ‰ƒ‹ƒXƒeƒBƒbƒN", 0.1f, 0.0f, 1.0f) // 'neutral stick' - , mCursorMovementStick(this, 'p044', "ƒJ[ƒ\\ƒ‹ˆÚ“®ƒXƒeƒBƒbƒN", 0.65f, 0.0f, 1.0f) // 'cursor movement stick' - , mClampStick(this, 'p048', "ƒNƒ‰ƒ“ƒvƒXƒeƒBƒbƒN", 0.85f, 0.0f, 1.0f) // 'clamp stick' - , mMinCursorMovementRadius(this, 'p045', "ƒJ[ƒ\\ƒ‹ˆÚ“®Å¬”¼Œa", 0.0f, 0.0f, 1000.0f) // 'min cursor movement radius' - , mMaxCursorMoveRadius(this, 'p046', "ƒJ[ƒ\\ƒ‹ˆÚ“®Å‘唼Œa", 100.0f, 0.0f, 2000.0f) // 'max cursor movement radius' - , mCursorMovementSpeed(this, 'p047', "ƒJ[ƒ\\ƒ‹ˆÚ“®ƒXƒs[ƒh", 300.0f, 0.0f, 1000.0f) // 'cursor movement speed' - , mMaxHealth(this, 'p050', "ƒ‰ƒCƒt", 100.0f, 0.0f, 1000.0f) // 'life' - , mAttackPower(this, 'p051', "UŒ‚—Í", 10.0f, 0.0f, 1000.0f) // 'attack power' - , mAttackRange(this, 'p052', "UŒ‚”͈Í", 10.0f, 0.0f, 100.0f) // 'attack range' - , mCursorCount(this, 'p055', "ƒJ[ƒ\\ƒ‹ƒJƒEƒ“ƒg", 1, 0, 10) // 'cursor count' + , mHitSize(this, 'p021', "当ãŸã‚Šã‚µã‚¤ã‚º", 8.0f, 0.0f, 100.0f) // 'hit size' + , mGroundSize(this, 'p041', "地é¢å½“ãŸã‚Šã‚µã‚¤ã‚º", 8.5f, 0.0f, 100.0f) // 'ground size' + , mInverseWeight(this, 'p022', "é‡ã•ã®é€†æ•°", 1.0f, 0.0f, 2000.0f) // 'inverse weight' + , mAimRotationSpeed(this, 'p023', "エイミング回転スピード", 0.03f, 0.0f, 1.0f) // 'aiming rotation speed' + , mTotalCrushTime(this, 'p031', "ã¤ã¶ã‚Œç·æ™‚é–“", 2.0f, 0.0f, 10.0f) // 'total crush time' + , mFlatTime(this, 'p032', "ãºã£ãŸã‚“ã“時間", 1.0f, 0.0f, 10.0f) // 'flat time' + , mPressStartTime(this, 'p033', "押ã—開始時間", 0.8f, 0.0f, 10.0f) // 'press start time' + , mPressStartStickAmount(this, 'p034', "押ã—開始スティックé‡", 0.3f, 0.0f, 1.0f) // 'press start stick amount' + , mShakePreventionAngle(this, 'p035', "手ã¶ã‚Œé˜²æ­¢è§’度", 10.0f, 0.0f, 180.0f) // 'shake prevention angle' + , mShakePreventionMagnitude(this, 'p036', "手ã¶ã‚Œé˜²æ­¢å¤§ãã•", 0.1f, 0.0f, 1.0f) // 'shake prevention magnitude' + , mCursorLookTime(this, 'p048', "カーソ\ルã¿ã‚‹æ™‚é–“", 0.85f, 0.0f, 60.0f) // 'cursor look time' + , mPikiLoseNumbnessTime(this, 'p049', "ピキãŒã—ã³ã‚Œã‚’切らã™æ™‚é–“", 5.0f, 0.0f, 60.0f) // 'time for piki to lose its numbness' (?) + , mNeutralStickThreshold(this, 'p043', "ニュートラルスティック", 0.1f, 0.0f, 1.0f) // 'neutral stick' + , mCursorMovementStick(this, 'p044', "カーソ\ル移動スティック", 0.65f, 0.0f, 1.0f) // 'cursor movement stick' + , mClampStick(this, 'p048', "クランプスティック", 0.85f, 0.0f, 1.0f) // 'clamp stick' + , mMinCursorMovementRadius(this, 'p045', "カーソ\ル移動最å°åŠå¾„", 0.0f, 0.0f, 1000.0f) // 'min cursor movement radius' + , mMaxCursorMoveRadius(this, 'p046', "カーソ\ル移動最大åŠå¾„", 100.0f, 0.0f, 2000.0f) // 'max cursor movement radius' + , mCursorMovementSpeed(this, 'p047', "カーソ\ル移動スピード", 300.0f, 0.0f, 1000.0f) // 'cursor movement speed' + , mMaxHealth(this, 'p050', "ライフ", 100.0f, 0.0f, 1000.0f) // 'life' + , mAttackPower(this, 'p051', "攻撃力", 10.0f, 0.0f, 1000.0f) // 'attack power' + , mAttackRange(this, 'p052', "攻撃範囲", 10.0f, 0.0f, 100.0f) // 'attack range' + , mCursorCount(this, 'p055', "カーソ\ルカウント", 1, 0, 10) // 'cursor count' , mMushroomFlickCount(this, 'p057', "kinoko Flick Count", 3, 0, 16) // 'mushroom flick count' (?) , mBuryKeyCount(this, 'p058', "bury Key Count", 2, 0, 16) , mBuryExitCount(this, 'p059', "bury Exit Count", 2, 0, 16) - , mCloseCameraZoomOut(this, 'p061', "Šñ‚èƒJƒƒ‰ƒY[ƒ€ƒAƒEƒg(frame)", 80, 0, 1000) // 'close camera zoom out (frame)' - , mFormationLvl0(this, 'q002', "‘à—ñ MAX Lv0", 10, 1, 100) // 'formation MAX Lv0' - , mFormationLvl1(this, 'q003', "‘à—ñ MAX Lv1", 25, 1, 100) // 'formation MAX Lv1' - , mFormationMaxLvl2(this, 'q004', "‘à—ñ MAX Lv2", 50, 1, 100) // 'formation MAX Lv2' - , mFormationMaxLvl3(this, 'q005', "‘à—ñ MAX Lv3", 100, 1, 100) // 'formation MAX Lv3' - , mRushBootSpeed(this, 'q006', "ƒ_ƒbƒVƒ…ƒu[ƒc‘¬“x", 240.0f, 0.0f, 500.0f) // 'rush boot speed' - , mWideWhistleRadius(this, 'q007', "L”͈͂̓J”¼Œa", 200.0f, 0.0f, 300.0f) // 'wide whistle radius' - , mShieldDamageReductionRate(this, 'q008', "ƒV[ƒ‹ƒhƒ_ƒ[ƒWŒyŒ¸—¦", 0.5f, 0.0f, 1.0f) // 'shield damage reduction rate' - , mSeesawWeight(this, 'q009', "ƒV[ƒ\\[‚ÅŽg‚¤d‚³", 2, 0, 10) // 'weight for seesaw' - , mElectricGateDamage(this, 'q010', "“d‹CƒQ[ƒgƒ_ƒ[ƒW", 10.0f, 0.0f, 200.0f) // 'electric gate damage' + , mCloseCameraZoomOut(this, 'p061', "寄りカメラズームアウト(frame)", 80, 0, 1000) // 'close camera zoom out (frame)' + , mFormationLvl0(this, 'q002', "隊列 MAX Lv0", 10, 1, 100) // 'formation MAX Lv0' + , mFormationLvl1(this, 'q003', "隊列 MAX Lv1", 25, 1, 100) // 'formation MAX Lv1' + , mFormationMaxLvl2(this, 'q004', "隊列 MAX Lv2", 50, 1, 100) // 'formation MAX Lv2' + , mFormationMaxLvl3(this, 'q005', "隊列 MAX Lv3", 100, 1, 100) // 'formation MAX Lv3' + , mRushBootSpeed(this, 'q006', "ダッシュブーツ速度", 240.0f, 0.0f, 500.0f) // 'rush boot speed' + , mWideWhistleRadius(this, 'q007', "広範囲ã®ç¬›åŠå¾„", 200.0f, 0.0f, 300.0f) // 'wide whistle radius' + , mShieldDamageReductionRate(this, 'q008', "シールドダメージ軽減率", 0.5f, 0.0f, 1.0f) // 'shield damage reduction rate' + , mSeesawWeight(this, 'q009', "シーソ\ーã§ä½¿ã†é‡ã•", 2, 0, 10) // 'weight for seesaw' + , mElectricGateDamage(this, 'q010', "電気ゲートダメージ", 10.0f, 0.0f, 200.0f) // 'electric gate damage' { } diff --git a/include/Game/PikiParms.h b/include/Game/PikiParms.h index aa23c0f89..9d9be5c5e 100644 --- a/include/Game/PikiParms.h +++ b/include/Game/PikiParms.h @@ -8,112 +8,112 @@ struct PikiParms : public FakePikiParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "Piki::Parms") - , mWalkSpeed(this, 'p000', "•à‚­‘¬“x", 84.0f, 0.0f, 500.0f) // 'walking speed' - , mRunSpeed(this, 'p001', "‘–‚鑬“x", 120.0f, 0.0f, 500.0f) // 'running speed' - , mFlowerRunSpeed(this, 'p054', "‰ÔƒsƒLƒXƒs[ƒh", 170.0f, 0.0f, 500.0f) // 'flower pikmin speed' - , mBudRunSpeed(this, 'p065', "‚‚ڂ݃Xƒs[ƒh", 140.0f, 0.0f, 500.0f) // 'bud speed' - , mPressedScale(this, 'p038', "ƒsƒL•\\Ž¦ƒXƒP[ƒ‹", 1.0f, 0.1f, 10.0f) // 'piki display scale' - , mHealth(this, 'p003', "•W€ƒ‰ƒCƒt", 100.0f, 0.0f, 1000.0f) // 'normal life' - , mWhiteHealth(this, 'p010', "‚Ì‚Á‚Ûƒ‰ƒCƒt", 150.0f, 0.0f, 1000.0f) // 'tall life' - , mPurpleHealth(this, 'p011', "‚Å‚Ôƒ‰ƒCƒt", 200.0f, 0.0f, 1000.0f) // 'fat life' - , mBlueAttackDamage(this, 'p004', " UŒ‚—Í", 10.f, 0.0f, 1000.0f) // 'blue attack power' - , mRedAttackDamage(this, 'p012', "Ô UŒ‚—Í", 15.0f, 0.0f, 1000.0f) // 'red attack power' - , mYellowAttackDamage(this, 'p013', "‰© UŒ‚—Í", 10.0f, 0.0f, 1000.0f) // 'yellow attack power' - , mPurpleAttackDamage(this, 'P003', "•@UŒ‚—Í", 10.0f, 1.0f, 30.0f) // 'black attack power' - , mWhiteAttackDamage(this, 'P004', "”’@UŒ‚—Í", 1.0f, 1.0f, 30.0f) // 'white attack power' - , mEnergyForBud(this, 'p005', "‚‚ڂ݂ɕK—v‚ȃGƒlƒ‹ƒM[”", 1, 1, 100) // 'number of energy required for bud' - , mEnergyForFlower(this, 'p006', "‰Ô‚É•K—v‚ȃGƒlƒ‹ƒM[”", 2, 1, 100) // 'number of energy required for flower' - , mScale(this, 'p007', "ƒm[ƒ}ƒ‹ƒsƒL‚̃XƒP[ƒ‹", 0.8f, 0.0f, 2.0f) // 'normal piki scale' - , mWhiteScale(this, 'p008', "‚Ì‚Á‚ÛƒsƒL‚̃XƒP[ƒ‹", 1.5f, 0.0f, 2.0f) // 'tall piki scale' - , mPurpleScale(this, 'p009', "‚Ó‚Æ‚Á‚¿‚åƒsƒL‚̃XƒP[ƒ‹", 1.2f, 0.0f, 2.0f) // 'fatty piki scale' - , mCrushTime(this, 'p014', "‚‚ԂꑎžŠÔ", 5.0f, 0.0f, 10.0f) // 'total crush time' - , mFlatTime(this, 'p015', "‚Ø‚Á‚½‚ñ‚±ŽžŠÔ", 3.0f, 0.0f, 10.0f) // 'flat time' - , mWaveTime(this, 'p016', "”gŽžŠÔ", 1.0f, 0.0f, 10.0f) // 'wave time' - , mWaveAttackRange(this, 'p037', "Wave Attac UŒ‚”͈Í", 40.0f, 0.0f, 200.0f) // 'wave attac range' - , mStepAnimSpeed(this, 'p017', "ASIBUMI ŠJŽnƒXƒs[ƒh", 5.0f, 0.0f, 500.0f) // 'ASIBUMI start speed' (stepping?) - , mWalkAnimSpeed(this, 'p018', "WALK ŠJŽnƒXƒs[ƒh", 35.0f, 0.0f, 500.0f) // 'WALK start speed' - , mRunAnimSpeed(this, 'p019', "RUN ŠJŽnƒXƒs[ƒh", 70.0f, 0.0f, 500.0f) // 'RUN start speed' - , mEscapeAnimSpeed(this, 'p020', "ESCAPE ŠJŽnƒXƒs[ƒh", 160.0f, 0.0f, 500.0f) // 'ESCAPE start speed' - , mWalkFrameMin(this, 'p021', "WALK ĶƒtƒŒ[ƒ€”(min)", 30.0f, 0.0f, 300.0f) // 'WALK playback frame count (min)' - , mWalkFrameMax(this, 'p022', "WALK ĶƒtƒŒ[ƒ€”(max)", 60.0f, 0.0f, 300.0f) // 'WALK playback frame count (max)' - , mRunFrameMin(this, 'p023', "RUN ĶƒtƒŒ[ƒ€”(min)", 30.0f, 0.0f, 300.0f) // 'RUN playback frame count (min)' - , mRunFrameMax(this, 'p024', "RUN ĶƒtƒŒ[ƒ€”(max)", 60.0f, 0.0f, 300.0f) // 'RUN playback frame count (max)' - , mEscapeFrameMin(this, 'p025', "ESCAPE ĶƒtƒŒ[ƒ€”(min)", 30.0f, 0.0f, 300.0f) // 'ESCAPE playback frame count (min)' - , mEscapeFrameMax(this, 'p026', "ESCAPE ĶƒtƒŒ[ƒ€”(max)", 60.0f, 0.0f, 300.0f) // 'ESCAPE playback frame count (max)' - , mHitSizeMin(this, 'p027', "“–‚½‚èƒTƒCƒY(min)", 6.0f, 0.0f, 100.0f) // 'hit size (min)' - , mHitSizeMax(this, 'p034', "“–‚½‚èƒTƒCƒY(max)", 10.0f, 0.0f, 100.0f) // 'hit size (max)' - , mInverseWeight(this, 'p028', "d‚³‚Ì‹t”", 100.0f, 0.0f, 2000.0f) // 'inverse of weight' - , mGroundSize(this, 'p039', "’n–Ê“–‚½‚èƒTƒCƒY", 8.0f, 0.0f, 100.0f) // 'ground size' - , mWhiteDistance(this, 'p029', "white ‹——£", 600.0f, 0.0f, 10000.0f) // 'white distance' - , mGrayDistance(this, 'p030', "gray ‹——£", 1000.0f, 0.0f, 10000.0f) // 'gray distance' - , mLostChildTime(this, 'p031', "–ÀŽqŽžŠÔ", 10.0f, 0.0f, 1000.0f) // 'lost child time' - , mWhiteDistanceFree(this, 'p032', "white ‹——£(Free)", 200.0f, 0.0f, 10000.0f) // 'white distance (Free)' - , mGrayDistanceFree(this, 'p033', "gray ‹——£(Free)", 800.0f, 0.0f, 10000.0f) // 'gray distance (Free)' - , mWallPushTimeDynamic(this, 'p035', "•Ç‚ð‰Ÿ‚µŽn‚߂鎞ŠÔ(Dynamic)", 0.6f, 0.0f, + , mWalkSpeed(this, 'p000', "æ­©ã速度", 84.0f, 0.0f, 500.0f) // 'walking speed' + , mRunSpeed(this, 'p001', "走る速度", 120.0f, 0.0f, 500.0f) // 'running speed' + , mFlowerRunSpeed(this, 'p054', "花ピキスピード", 170.0f, 0.0f, 500.0f) // 'flower pikmin speed' + , mBudRunSpeed(this, 'p065', "ã¤ã¼ã¿ã‚¹ãƒ”ード", 140.0f, 0.0f, 500.0f) // 'bud speed' + , mPressedScale(this, 'p038', "ピキ表\示スケール", 1.0f, 0.1f, 10.0f) // 'piki display scale' + , mHealth(this, 'p003', "標準ライフ", 100.0f, 0.0f, 1000.0f) // 'normal life' + , mWhiteHealth(this, 'p010', "ã®ã£ã½ãƒ©ã‚¤ãƒ•", 150.0f, 0.0f, 1000.0f) // 'tall life' + , mPurpleHealth(this, 'p011', "ã§ã¶ãƒ©ã‚¤ãƒ•", 200.0f, 0.0f, 1000.0f) // 'fat life' + , mBlueAttackDamage(this, 'p004', "é’ æ”»æ’ƒåŠ›", 10.f, 0.0f, 1000.0f) // 'blue attack power' + , mRedAttackDamage(this, 'p012', "赤 攻撃力", 15.0f, 0.0f, 1000.0f) // 'red attack power' + , mYellowAttackDamage(this, 'p013', "黄 攻撃力", 10.0f, 0.0f, 1000.0f) // 'yellow attack power' + , mPurpleAttackDamage(this, 'P003', "黒 攻撃力", 10.0f, 1.0f, 30.0f) // 'black attack power' + , mWhiteAttackDamage(this, 'P004', "白 攻撃力", 1.0f, 1.0f, 30.0f) // 'white attack power' + , mEnergyForBud(this, 'p005', "ã¤ã¼ã¿ã«å¿…è¦ãªã‚¨ãƒãƒ«ã‚®ãƒ¼æ•°", 1, 1, 100) // 'number of energy required for bud' + , mEnergyForFlower(this, 'p006', "花ã«å¿…è¦ãªã‚¨ãƒãƒ«ã‚®ãƒ¼æ•°", 2, 1, 100) // 'number of energy required for flower' + , mScale(this, 'p007', "ノーマルピキã®ã‚¹ã‚±ãƒ¼ãƒ«", 0.8f, 0.0f, 2.0f) // 'normal piki scale' + , mWhiteScale(this, 'p008', "ã®ã£ã½ãƒ”ã‚­ã®ã‚¹ã‚±ãƒ¼ãƒ«", 1.5f, 0.0f, 2.0f) // 'tall piki scale' + , mPurpleScale(this, 'p009', "ãµã¨ã£ã¡ã‚‡ãƒ”ã‚­ã®ã‚¹ã‚±ãƒ¼ãƒ«", 1.2f, 0.0f, 2.0f) // 'fatty piki scale' + , mCrushTime(this, 'p014', "ã¤ã¶ã‚Œç·æ™‚é–“", 5.0f, 0.0f, 10.0f) // 'total crush time' + , mFlatTime(this, 'p015', "ãºã£ãŸã‚“ã“時間", 3.0f, 0.0f, 10.0f) // 'flat time' + , mWaveTime(this, 'p016', "波時間", 1.0f, 0.0f, 10.0f) // 'wave time' + , mWaveAttackRange(this, 'p037', "Wave Attac 攻撃範囲", 40.0f, 0.0f, 200.0f) // 'wave attac range' + , mStepAnimSpeed(this, 'p017', "ASIBUMI 開始スピード", 5.0f, 0.0f, 500.0f) // 'ASIBUMI start speed' (stepping?) + , mWalkAnimSpeed(this, 'p018', "WALK 開始スピード", 35.0f, 0.0f, 500.0f) // 'WALK start speed' + , mRunAnimSpeed(this, 'p019', "RUN 開始スピード", 70.0f, 0.0f, 500.0f) // 'RUN start speed' + , mEscapeAnimSpeed(this, 'p020', "ESCAPE 開始スピード", 160.0f, 0.0f, 500.0f) // 'ESCAPE start speed' + , mWalkFrameMin(this, 'p021', "WALK å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(min)", 30.0f, 0.0f, 300.0f) // 'WALK playback frame count (min)' + , mWalkFrameMax(this, 'p022', "WALK å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(max)", 60.0f, 0.0f, 300.0f) // 'WALK playback frame count (max)' + , mRunFrameMin(this, 'p023', "RUN å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(min)", 30.0f, 0.0f, 300.0f) // 'RUN playback frame count (min)' + , mRunFrameMax(this, 'p024', "RUN å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(max)", 60.0f, 0.0f, 300.0f) // 'RUN playback frame count (max)' + , mEscapeFrameMin(this, 'p025', "ESCAPE å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(min)", 30.0f, 0.0f, 300.0f) // 'ESCAPE playback frame count (min)' + , mEscapeFrameMax(this, 'p026', "ESCAPE å†ç”Ÿãƒ•ãƒ¬ãƒ¼ãƒ æ•°(max)", 60.0f, 0.0f, 300.0f) // 'ESCAPE playback frame count (max)' + , mHitSizeMin(this, 'p027', "当ãŸã‚Šã‚µã‚¤ã‚º(min)", 6.0f, 0.0f, 100.0f) // 'hit size (min)' + , mHitSizeMax(this, 'p034', "当ãŸã‚Šã‚µã‚¤ã‚º(max)", 10.0f, 0.0f, 100.0f) // 'hit size (max)' + , mInverseWeight(this, 'p028', "é‡ã•ã®é€†æ•°", 100.0f, 0.0f, 2000.0f) // 'inverse of weight' + , mGroundSize(this, 'p039', "地é¢å½“ãŸã‚Šã‚µã‚¤ã‚º", 8.0f, 0.0f, 100.0f) // 'ground size' + , mWhiteDistance(this, 'p029', "white è·é›¢", 600.0f, 0.0f, 10000.0f) // 'white distance' + , mGrayDistance(this, 'p030', "gray è·é›¢", 1000.0f, 0.0f, 10000.0f) // 'gray distance' + , mLostChildTime(this, 'p031', "è¿·å­æ™‚é–“", 10.0f, 0.0f, 1000.0f) // 'lost child time' + , mWhiteDistanceFree(this, 'p032', "white è·é›¢(Free)", 200.0f, 0.0f, 10000.0f) // 'white distance (Free)' + , mGrayDistanceFree(this, 'p033', "gray è·é›¢(Free)", 800.0f, 0.0f, 10000.0f) // 'gray distance (Free)' + , mWallPushTimeDynamic(this, 'p035', "å£ã‚’押ã—始ã‚る時間(Dynamic)", 0.6f, 0.0f, 10.0f) // 'time to start pushing against the wall (Dynamic)' - , mWallPushTimeStatic(this, 'p036', "•Ç‚ð‰Ÿ‚µŽn‚߂鎞ŠÔ(Static)", 0.6f, 0.0f, + , mWallPushTimeStatic(this, 'p036', "å£ã‚’押ã—始ã‚る時間(Static)", 0.6f, 0.0f, 10.0f) // 'time to start pushing against the wall (Static)' - , mTimeToFree(this, 'p040', "ƒtƒŠ[‚É‚È‚é‚Ü‚Å‚ÌŽžŠÔ", 15.0f, 1.0f, 1080.0f) // 'time to free' - , mEnemySearchRange(this, 'p041', "“G‚̃T[ƒ`ƒGƒŠƒA", 60.0f, 1.0f, 1000.0f) // 'enemy search area' - , mPelletSearchRange(this, 'p042', "Pellet‚̃T[ƒ`ƒGƒŠƒA", 30.0f, 1.0f, 1000.0f) // 'pellet search area' - , mNectarRockSearchRange(this, 'P010', "”_kŠâ‚̃T[ƒ`ƒGƒŠƒA", 30.0f, 1.0f, 1000.0f) // 'agricultural rock search area' (lmao) - , mNectarRockRangeDuplicate(this, 'P011', "”_kŠâ‚̃T[ƒ`ƒGƒŠƒA", 40.0f, 1.0f, + , mTimeToFree(this, 'p040', "フリーã«ãªã‚‹ã¾ã§ã®æ™‚é–“", 15.0f, 1.0f, 1080.0f) // 'time to free' + , mEnemySearchRange(this, 'p041', "敵ã®ã‚µãƒ¼ãƒã‚¨ãƒªã‚¢", 60.0f, 1.0f, 1000.0f) // 'enemy search area' + , mPelletSearchRange(this, 'p042', "Pelletã®ã‚µãƒ¼ãƒã‚¨ãƒªã‚¢", 30.0f, 1.0f, 1000.0f) // 'pellet search area' + , mNectarRockSearchRange(this, 'P010', "農耕岩ã®ã‚µãƒ¼ãƒã‚¨ãƒªã‚¢", 30.0f, 1.0f, 1000.0f) // 'agricultural rock search area' (lmao) + , mNectarRockRangeDuplicate(this, 'P011', "農耕岩ã®ã‚µãƒ¼ãƒã‚¨ãƒªã‚¢", 40.0f, 1.0f, 1000.0f) // 'agricultural rock search area' (mistake?) - , mBridgeSearchRange(this, 'P012', "‹´‚̃T[ƒ`ƒGƒŠƒA", 100.0f, 1.0f, 1000.0f) // 'bridge search area' - , mClogSearchRange(this, 'P013', "‰ó‚·Šâ‚̃T[ƒ`ƒGƒŠƒA", 30.0f, 1.0f, 1000.0f) // 'breaking rock search area' - , mBuriedTreasureSearchRange(this, 'P014', "Œ@‚èo‚µ•¨ƒT[ƒ`ƒGƒŠƒA", 30.0f, 1.0f, 1000.0f) // 'bargain search area' (lmao??) - , mSpiderWortSearchRange(this, 'P015', "”_kA•¨‚̃T[ƒ`ƒGƒŠƒA", 30.0f, 1.0f, 1000.0f) // 'agricultural plant search area' - , mKnockdownRecoverTimeMax(this, 'p043', "‚Í‚¶‚©‚ê‚Ä‹N‚«‚é‚Ü‚Å‚ÌÅ’·ŽžŠÔ", 0.7f, 0.0f, + , mBridgeSearchRange(this, 'P012', "æ©‹ã®ã‚µãƒ¼ãƒã‚¨ãƒªã‚¢", 100.0f, 1.0f, 1000.0f) // 'bridge search area' + , mClogSearchRange(this, 'P013', "壊ã™å²©ã®ã‚µãƒ¼ãƒã‚¨ãƒªã‚¢", 30.0f, 1.0f, 1000.0f) // 'breaking rock search area' + , mBuriedTreasureSearchRange(this, 'P014', "掘り出ã—物サーãƒã‚¨ãƒªã‚¢", 30.0f, 1.0f, 1000.0f) // 'bargain search area' (lmao??) + , mSpiderWortSearchRange(this, 'P015', "農耕æ¤ç‰©ã®ã‚µãƒ¼ãƒã‚¨ãƒªã‚¢", 30.0f, 1.0f, 1000.0f) // 'agricultural plant search area' + , mKnockdownRecoverTimeMax(this, 'p043', "ã¯ã˜ã‹ã‚Œã¦èµ·ãã‚‹ã¾ã§ã®æœ€é•·æ™‚é–“", 0.7f, 0.0f, 10.0f) // 'max time to wake up after being repelled' - , mKnockdownRecoverTimeMin(this, 'p074', "‚Í‚¶‚©‚ê‚Ä‹N‚«‚é‚Ü‚Å‚ÌŬŽžŠÔ", 0.7f, 0.0f, + , mKnockdownRecoverTimeMin(this, 'p074', "ã¯ã˜ã‹ã‚Œã¦èµ·ãã‚‹ã¾ã§ã®æœ€å°æ™‚é–“", 0.7f, 0.0f, 10.0f) // 'min time to wake up after being repelled' - , mSeedLeaftoBudTime(this, 'p044', "leaf->bud ‚ÌŽžŠÔi•bj", 10.0f, 1.0f, 1000.0f) // 'leaf->bud time (seconds)' - , mSeedBudToFlowerTime(this, 'p045', "bud->flower ‚ÌŽžŠÔi•bj", 10.0f, 1.0f, 1000.0f) // 'bud->flower time (seconds)' - , mSeedFlowerToWitherTime(this, 'p046', "flower->seed ‚ÌŽžŠÔi•bj", 10.0f, 1.0f, 1000.0f) // 'flower->seed time (seconds)' - , mSeedWitherToLeaf(this, 'p047', "seed->leaf ‚ÌŽžŠÔi•bj", 10.0f, 1.0f, 1000.0f) // 'seed->leaf time (seconds)' - , mFlowerPikiGravity(this, 'p048', "‰ÔƒsƒLd—Í—¦", 0.01f, 0.0f, 1.0f) // 'flower piki gravity rate' - , mBuriedSeedWaitTime(this, 'p049', "taneupTimei•bj", 1.0f, 0.0f, 300.0f) // 'taneupTime (seconds)' (seed?) - , mUnpluckableTime(this, 'p050', "hatugaTimei•bj", 1.0f, 0.0f, 300.0f) // 'hatugaTime (seconds)' (bud?) - , mGrowUpToFlowerTime(this, 'p051', "growupTimei•bj", 4.0f, 0.0f, 300.0f) // 'growupTime (seconds)' - , mWitherFromFlowerTime(this, 'p052', "kareTimei•bj", 4.0f, 0.0f, 300.0f) // 'kareTime (seconds)' (he? boyfriend?) - , mWitheredHideTime(this, 'p053', "rebirthTimei•bj", 1.0f, 0.0f, 300.0f) // 'rebirthTime (seconds)' - , mPanicMaxTime(this, 'p055', "‰Î‚É•ï‚Ü‚ê‚ÄŽ€‚Ê‚Ü‚Å‚ÌŽžŠÔ", 3.0f, 0.0f, 30.0f) // 'time until death in fire' - , mFlowerPikiRefundChance(this, 'p056', "‰ÔƒsƒL‚ªŽí‚Æ‚µ‚ÄĶ‚·‚éŠm—¦", 0.8f, 0.0f, + , mSeedLeaftoBudTime(this, 'p044', "leaf->bud ã®æ™‚間(秒)", 10.0f, 1.0f, 1000.0f) // 'leaf->bud time (seconds)' + , mSeedBudToFlowerTime(this, 'p045', "bud->flower ã®æ™‚間(秒)", 10.0f, 1.0f, 1000.0f) // 'bud->flower time (seconds)' + , mSeedFlowerToWitherTime(this, 'p046', "flower->seed ã®æ™‚間(秒)", 10.0f, 1.0f, 1000.0f) // 'flower->seed time (seconds)' + , mSeedWitherToLeaf(this, 'p047', "seed->leaf ã®æ™‚間(秒)", 10.0f, 1.0f, 1000.0f) // 'seed->leaf time (seconds)' + , mFlowerPikiGravity(this, 'p048', "花ピキé‡åŠ›çŽ‡", 0.01f, 0.0f, 1.0f) // 'flower piki gravity rate' + , mBuriedSeedWaitTime(this, 'p049', "taneupTime(秒)", 1.0f, 0.0f, 300.0f) // 'taneupTime (seconds)' (seed?) + , mUnpluckableTime(this, 'p050', "hatugaTime(秒)", 1.0f, 0.0f, 300.0f) // 'hatugaTime (seconds)' (bud?) + , mGrowUpToFlowerTime(this, 'p051', "growupTime(秒)", 4.0f, 0.0f, 300.0f) // 'growupTime (seconds)' + , mWitherFromFlowerTime(this, 'p052', "kareTime(秒)", 4.0f, 0.0f, 300.0f) // 'kareTime (seconds)' (he? boyfriend?) + , mWitheredHideTime(this, 'p053', "rebirthTime(秒)", 1.0f, 0.0f, 300.0f) // 'rebirthTime (seconds)' + , mPanicMaxTime(this, 'p055', "ç«ã«åŒ…ã¾ã‚Œã¦æ­»ã¬ã¾ã§ã®æ™‚é–“", 3.0f, 0.0f, 30.0f) // 'time until death in fire' + , mFlowerPikiRefundChance(this, 'p056', "花ピキãŒç¨®ã¨ã—ã¦å†ç”Ÿã™ã‚‹ç¢ºçŽ‡", 0.8f, 0.0f, 1.0f) // 'probability of flower piki regenerating as seeds' - , mPikiBombFuseTime(this, 'p057', "”š”­‚Ü‚Å‚ÌŽžŠÔ", 2.0f, 0.0f, 60.0f) // 'time to detonation/explosion' - , mPikiBombAOERange(this, 'p058', "”š’eŒø‰Ê”͈Í", 50.0f, 0.0f, 1000.0f) // 'bomb area of effect' - , mPikiBombGateDamage(this, 'p059', "”š’eƒ_ƒ[ƒW—Ê …–å", 200.0f, 0.0f, 1000.0f) // 'bomb damage floodgate' - , mPikiBombNaviDamage(this, 'p075', "”š’eƒ_ƒ[ƒW Orima", 10.0f, 0.0f, 1000.0f) // 'bomb damage olimar' - , mPikiBombTekiDamage(this, 'p076', "”š’eƒ_ƒ[ƒW Teki", 120.0f, 0.0f, 1000.0f) // 'bomb damage teki/enemy' - , mPikiBombPikiDamage(this, 'p077', "”š’eƒ_ƒ[ƒW Piki", 765.0f, 0.0f, 1000.0f) // 'bomb damage piki' - , mSunsetAutoReturnRange(this, 'p060', "“ú–v¶‚«Žc‚è”͈Í", 200.0f, 0.0f, 5000.0f) // 'sunset survival range' - , mPlatformLaunchDistance(this, 'p061', "‘à—ñ‹N“®‹——£", 250.0f, 0.0f, 5000.0f) // 'platform launch distance' - , mMaxDrowningFrames(this, 'p062', "‚¨‚Ú‚êƒtƒŒ[ƒ€”", 30, 0, 300) // 'number of drowning frames' - , mDrowningFramesRange(this, 'p063', "‚¨‚Ú‚êƒtƒŒ[ƒ€”i‚΂ç‚‚«j", 10, 0, 300) // 'number of drowning frames (variation)' - , mWallPushAbandonTime(this, 'p064', "•Ç‰Ÿ‚µ‚ ‚«‚ç‚ߎžŠÔ", 5.0f, 1.0f, 120.0f) // 'time to give up pushing against the wall' - , mBombSearchRange(this, 'p066', "BOMB ƒT[ƒ`‹——£", 300.0f, 0.0f, 1000.0f) // 'BOMB search distance' + , mPikiBombFuseTime(this, 'p057', "爆発ã¾ã§ã®æ™‚é–“", 2.0f, 0.0f, 60.0f) // 'time to detonation/explosion' + , mPikiBombAOERange(this, 'p058', "爆弾効果範囲", 50.0f, 0.0f, 1000.0f) // 'bomb area of effect' + , mPikiBombGateDamage(this, 'p059', "çˆ†å¼¾ãƒ€ãƒ¡ãƒ¼ã‚¸é‡ æ°´é–€", 200.0f, 0.0f, 1000.0f) // 'bomb damage floodgate' + , mPikiBombNaviDamage(this, 'p075', "爆弾ダメージ Orima", 10.0f, 0.0f, 1000.0f) // 'bomb damage olimar' + , mPikiBombTekiDamage(this, 'p076', "爆弾ダメージ Teki", 120.0f, 0.0f, 1000.0f) // 'bomb damage teki/enemy' + , mPikiBombPikiDamage(this, 'p077', "爆弾ダメージ Piki", 765.0f, 0.0f, 1000.0f) // 'bomb damage piki' + , mSunsetAutoReturnRange(this, 'p060', "日没生ã残り範囲", 200.0f, 0.0f, 5000.0f) // 'sunset survival range' + , mPlatformLaunchDistance(this, 'p061', "隊列起動è·é›¢", 250.0f, 0.0f, 5000.0f) // 'platform launch distance' + , mMaxDrowningFrames(this, 'p062', "ãŠã¼ã‚Œãƒ•ãƒ¬ãƒ¼ãƒ æ•°", 30, 0, 300) // 'number of drowning frames' + , mDrowningFramesRange(this, 'p063', "ãŠã¼ã‚Œãƒ•ãƒ¬ãƒ¼ãƒ æ•°ï¼ˆã°ã‚‰ã¤ã)", 10, 0, 300) // 'number of drowning frames (variation)' + , mWallPushAbandonTime(this, 'p064', "å£æŠ¼ã—ã‚ãらã‚時間", 5.0f, 1.0f, 120.0f) // 'time to give up pushing against the wall' + , mBombSearchRange(this, 'p066', "BOMB サーãƒè·é›¢", 300.0f, 0.0f, 1000.0f) // 'BOMB search distance' , mMinBombThrowDistance(this, 'p067', "BOMB throw Min", 110.0f, 0.0f, 1000.0f) , mMaxBombThrowDistance(this, 'p068', "BOMB throw Max", 160.0f, 0.0f, 1000.0f) - , mBombDropTime(this, 'p069', "BOMB ’u‚«“¦‚°ŽžŠÔ", 1.5f, 0.0f, 60.0f) // 'BOMB leave time' - , mBombThrowSpeed(this, 'p070', "BOMB “Š‚°ƒXƒs[ƒh", 150.0f, 0.0f, 1000.0f) // 'BOMB throw speed' - , mBombAttackRange(this, 'p071', "BOMB Œx”͈Í", 300.0f, 0.0f, 1000.0f) // 'BOMB warning range' - , mBombTime(this, 'p072', "BOMB ŠÔAƒ^ƒCƒ€", 0.65f, 0.0f, 10.0f) // 'BOMB, between time' - , mBombDropDistance(this, 'p073', "BOMB ƒZƒbƒg‹——£", 50.0f, 0.0f, 1000.0f) // 'BOMB set distance' - , mNewColorScale(this, 'P000', "VF‚̃XƒP[ƒ‹", 1.2f, 0.5f, 2.0f) // 'new color scale' - , mWhiteRunSpeedMultiplier(this, 'P001', "”’ƒXƒs[ƒh”{—¦", 2.0f, 1.0f, 3.0f) // 'white speed multiplier' - , mPurpleRunSpeedMultiplier(this, 'P002', "•ƒXƒs[ƒh”{—¦", 0.6f, 0.1f, 3.0f) // 'black speed multiplier' - , mPurpleCarryPower(this, 'P005', "•@‰^”À”\\—Í", 0.5f, 0.0f, 5.0f) // 'black carrying capacity' - , mWhiteCarryPower(this, 'P006', "”’@‰^”À”\\—Í", 1.5f, 0.0f, 5.0f) // 'white carrying capacity' - , mBudCarrySpeedBonus(this, 'P020', "‚‚ڂÝ|‰^”Àƒ{[ƒiƒX", 0.5f, 0.0f, 2.0f) // 'bud | carrying bonus' - , mFlowerCarrySpeedBonus(this, 'P021', "‚Í‚È|‰^”Àƒ{[ƒiƒX", 1.0f, 0.0f, 2.0f) // 'flower | carrying bonus' - , mCarryMaxFactor(this, 'P018', "‰^”À MAX FACTOR", 0.7f, 0.0f, 2.0f) // 'carrying MAX FACTOR' - , mCarryMinFactor(this, 'P019', "‰^”À MAX FACTOR", 0.35f, 0.0f, 2.0f) // 'carrying MAX FACTOR' (mistake?) - , mDopeMaxDuration(this, 'P007', "ƒh[ƒsƒ“ƒOŽ‘±ŽžŠÔ", 30.0f, 0.0f, 200.0f) // 'doping duration' - , mDopeAttackDamage(this, 'P008', "ƒh[ƒsƒ“ƒOƒsƒL UŒ‚", 25.0f, 0.0f, 100.0f) // 'doping piki attack' - , mDopeRunSpeed(this, 'P009', "ƒh[ƒsƒ“ƒOƒsƒL ƒXƒs[ƒh", 190.0f, 0.0f, 220.0f) // 'doping piki speed' - , mKurageKillTime(this, 'P016', "ƒNƒ‰ƒQÁ‰»ŽžŠÔ", 16.0f, 0.0f, 120.0f) // 'jellyfish digestion time' - , mPoundAOERange(this, 'P017', "ƒhƒVƒ“”¼Œa", 60.0f, 0.0f, 1000.0f) // 'doshin radius' (pound radius?) - , mPoundDamage(this, 'P022', "•ƒqƒbƒvƒAƒ^ƒbƒNƒ_ƒ[ƒW", 100.0f, 0.0f, 1000.0f) // 'black hip attack damage' + , mBombDropTime(this, 'p069', "BOMB ç½®ã逃ã’時間", 1.5f, 0.0f, 60.0f) // 'BOMB leave time' + , mBombThrowSpeed(this, 'p070', "BOMB 投ã’スピード", 150.0f, 0.0f, 1000.0f) // 'BOMB throw speed' + , mBombAttackRange(this, 'p071', "BOMB 警告範囲", 300.0f, 0.0f, 1000.0f) // 'BOMB warning range' + , mBombTime(this, 'p072', "BOMB é–“ã€ã‚¿ã‚¤ãƒ ", 0.65f, 0.0f, 10.0f) // 'BOMB, between time' + , mBombDropDistance(this, 'p073', "BOMB セットè·é›¢", 50.0f, 0.0f, 1000.0f) // 'BOMB set distance' + , mNewColorScale(this, 'P000', "新色ã®ã‚¹ã‚±ãƒ¼ãƒ«", 1.2f, 0.5f, 2.0f) // 'new color scale' + , mWhiteRunSpeedMultiplier(this, 'P001', "白スピードå€çŽ‡", 2.0f, 1.0f, 3.0f) // 'white speed multiplier' + , mPurpleRunSpeedMultiplier(this, 'P002', "黒スピードå€çŽ‡", 0.6f, 0.1f, 3.0f) // 'black speed multiplier' + , mPurpleCarryPower(this, 'P005', "黒 é‹æ¬èƒ½\力", 0.5f, 0.0f, 5.0f) // 'black carrying capacity' + , mWhiteCarryPower(this, 'P006', "白 é‹æ¬èƒ½\力", 1.5f, 0.0f, 5.0f) // 'white carrying capacity' + , mBudCarrySpeedBonus(this, 'P020', "ã¤ã¼ã¿|é‹æ¬ãƒœãƒ¼ãƒŠã‚¹", 0.5f, 0.0f, 2.0f) // 'bud | carrying bonus' + , mFlowerCarrySpeedBonus(this, 'P021', "ã¯ãª|é‹æ¬ãƒœãƒ¼ãƒŠã‚¹", 1.0f, 0.0f, 2.0f) // 'flower | carrying bonus' + , mCarryMaxFactor(this, 'P018', "é‹æ¬ MAX FACTOR", 0.7f, 0.0f, 2.0f) // 'carrying MAX FACTOR' + , mCarryMinFactor(this, 'P019', "é‹æ¬ MAX FACTOR", 0.35f, 0.0f, 2.0f) // 'carrying MAX FACTOR' (mistake?) + , mDopeMaxDuration(this, 'P007', "ドーピングæŒç¶šæ™‚é–“", 30.0f, 0.0f, 200.0f) // 'doping duration' + , mDopeAttackDamage(this, 'P008', "ドーピングピキ 攻撃", 25.0f, 0.0f, 100.0f) // 'doping piki attack' + , mDopeRunSpeed(this, 'P009', "ドーピングピキ スピード", 190.0f, 0.0f, 220.0f) // 'doping piki speed' + , mKurageKillTime(this, 'P016', "クラゲ消化時間", 16.0f, 0.0f, 120.0f) // 'jellyfish digestion time' + , mPoundAOERange(this, 'P017', "ドシンåŠå¾„", 60.0f, 0.0f, 1000.0f) // 'doshin radius' (pound radius?) + , mPoundDamage(this, 'P022', "黒ヒップアタックダメージ", 100.0f, 0.0f, 1000.0f) // 'black hip attack damage' { } diff --git a/include/Game/TimeMgr.h b/include/Game/TimeMgr.h index cc2fa4a30..dc3322ca1 100644 --- a/include/Game/TimeMgr.h +++ b/include/Game/TimeMgr.h @@ -27,18 +27,18 @@ struct TimeMgrParms { struct Parms : public Parameters { Parms() : Parameters(nullptr, "TimeMgrParms") - , mDayStartTime(this, 'fp00', "ƒQ[ƒ€ŠJŽnŽž", 7.0f, 0.0f, 24.0f) // 'game start time' - , mDayEndTime(this, 'fp01', "ƒQ[ƒ€I—¹Žž", 19.0f, 0.0f, 24.0f) // 'game end time' - , mDayLengthSeconds(this, 'fp02', "1“ú‚ÌŽžŠÔ<•bj", 1560.f, 0.0f, 3600.0f) // '1 day { virtual void doDirectDraw(Graphics& gfx); // _78 (weak) virtual char* getMgrName() // _80 (weak) { - return "ƒyƒŒƒbƒgƒ}ƒl[ƒWƒƒ"; // pellet manager + return "ペレットマãƒãƒ¼ã‚¸ãƒ£"; // pellet manager } virtual char* getCaveName(int); // _84 virtual int getCaveID(char*); // _88 diff --git a/include/Game/shadowMgr.h b/include/Game/shadowMgr.h index c535b64c0..cc90b0993 100644 --- a/include/Game/shadowMgr.h +++ b/include/Game/shadowMgr.h @@ -34,8 +34,8 @@ struct ShadowParam { struct ShadowParms : public Parameters { ShadowParms() : Parameters(nullptr, "ShadowParms") - , mLodNear(this, 'lodn', "LOD NearF", 0.1f, 0.0f, 0.2f) - , mLodFar(this, 'lodf', "LOD FarF", 0.02f, 0.0f, 0.2f) + , mLodNear(this, 'lodn', "LOD Near:", 0.1f, 0.0f, 0.2f) + , mLodFar(this, 'lodf', "LOD Far:", 0.02f, 0.0f, 0.2f) { } diff --git a/include/JSystem/JAudio/JAI/JAInter/BankWave.h b/include/JSystem/JAudio/JAI/JAInter/BankWave.h index 32ecd3d2a..56976fdb3 100644 --- a/include/JSystem/JAudio/JAI/JAInter/BankWave.h +++ b/include/JSystem/JAudio/JAI/JAInter/BankWave.h @@ -64,6 +64,7 @@ void checkAllWaveLoadStatus(); extern union Flags { u8 asByte; + u16 asShort; struct { bool _7 : 1; bool _6 : 1; diff --git a/include/JSystem/JAudio/JAS/JASPlayer.h b/include/JSystem/JAudio/JAS/JASPlayer.h index dfa507065..c3c8eed9e 100644 --- a/include/JSystem/JAudio/JAS/JASPlayer.h +++ b/include/JSystem/JAudio/JAS/JASPlayer.h @@ -19,7 +19,7 @@ extern s16 CUTOFF_TO_IIR_TABLE[0x200]; extern s16 sAdsTable[12]; extern s16 sRelTable[6]; extern s16 sVibTable[18]; -extern s16 sTreTable[20]; +extern s16 sTreTable[18]; } // namespace JASPlayer #endif diff --git a/include/PSM/Scene.h b/include/PSM/Scene.h index cef507061..993cd4a8a 100644 --- a/include/PSM/Scene.h +++ b/include/PSM/Scene.h @@ -144,7 +144,7 @@ struct Scene_Game : public Scene_Objects { virtual void stopAllSound(u32); // _24 virtual PSSystem::EnvSeMgr* getEnvSe(); // _2C virtual bool isDemoScene() { return false; } // _34 (weak) - virtual bool isGameScene() { return true; } // _40 (weak) + virtual bool isGameScene();// { return true; } // _40 (weak) virtual void pauseOn_2D(u8, u8); // _44 virtual void pauseOff_2D(); // _48 virtual void pauseOn_Demo(); // _4C @@ -222,7 +222,7 @@ struct Scene_Cave : public Scene_Game { virtual void exec(); // _18 virtual void startMainSeq(); // _1C virtual f32 getSceneFx(); // _30 - virtual bool isCave() { return true; } // _58 (weak) + virtual bool isCave();// { return true; } // _58 (weak) virtual void bossAppear(EnemyBoss*, u16); // _5C virtual void bossKilled(EnemyBoss*); // _60 virtual bool isBossFloor(); // _64 diff --git a/include/ebi/title/Entities/TChappy.h b/include/ebi/title/Entities/TChappy.h index cdeb6f8bf..dd0ea7a9d 100644 --- a/include/ebi/title/Entities/TChappy.h +++ b/include/ebi/title/Entities/TChappy.h @@ -20,20 +20,20 @@ struct TUnit; struct TParam : public TParamBase { TParam() - : mScale(this, 'b000', "ƒXƒP[ƒ‹", 2.0f, 0.0f, 10.0f) - , mCullRadius(this, 'b001', "ƒJƒŠƒ“ƒO”¼Œa", 100.0f, 0.0f, 500.0f) - , mCollRadius(this, 'b002', "ƒRƒŠƒWƒ‡ƒ“”¼Œa", 150.0f, 0.0f, 500.0f) - , mPikiReactRadius(this, 'b003', "ƒsƒNƒ~ƒ“”½‰ž”¼Œa", 300.0f, 0.0f, 500.0f) - , mHitOffset(this, 'ch20', "“–‚½‚èOffset", 80.0f, 0.0f, 500.0f) - , mHitRadius(this, 'ch21', "“–‚½‚蔼Œa", 100.0f, 0.0f, 500.0f) - , mWalkAngleRand(this, 'ch00', "•àsƒ‰ƒ“ƒ_ƒ€Šp“x", 30.0f, 0.0f, 90.0f) - , mWalkSpeed(this, 'ch01', "•às‘¬“x", 8.0f, 0.0f, 100.0f) - , mTurnSpeed(this, 'ch23', "ù‰ñ«”\x5C", 0.05f, 0.0f, 1.0f) // x5C literal required for match - , mMinWaitTime(this, 'ch10', "‘Ò‚¿ŽžŠÔŬ(•b)", 0.3f, 0.0f, 10.0f) - , mMaxWaitTime(this, 'ch11', "‘Ò‚¿ŽžŠÔÅ‘å(•b)", 1.0f, 0.0f, 10.0f) - , mMinWalkTime(this, 'ch12', "ˆÚ“®ŽžŠÔŬ(•b)", 0.5f, 0.0f, 10.0f) - , mMaxWalkTime(this, 'ch13', "ˆÚ“®ŽžŠÔÅ‘å(•b)", 1.5f, 0.0f, 10.0f) - , mControlledTime(this, 'ch22', "ƒRƒ“ƒgƒ[ƒ‰ó‘ÔŽžŠÔ(•b)", 5.0f, 0.0f, 60.0f) + : mScale(this, 'b000', "スケール", 2.0f, 0.0f, 10.0f) + , mCullRadius(this, 'b001', "カリングåŠå¾„", 100.0f, 0.0f, 500.0f) + , mCollRadius(this, 'b002', "コリジョンåŠå¾„", 150.0f, 0.0f, 500.0f) + , mPikiReactRadius(this, 'b003', "ピクミンåå¿œåŠå¾„", 300.0f, 0.0f, 500.0f) + , mHitOffset(this, 'ch20', "当ãŸã‚ŠOffset", 80.0f, 0.0f, 500.0f) + , mHitRadius(this, 'ch21', "当ãŸã‚ŠåŠå¾„", 100.0f, 0.0f, 500.0f) + , mWalkAngleRand(this, 'ch00', "歩行ランダム角度", 30.0f, 0.0f, 90.0f) + , mWalkSpeed(this, 'ch01', "歩行速度", 8.0f, 0.0f, 100.0f) + , mTurnSpeed(this, 'ch23', "旋回性能", 0.05f, 0.0f, 1.0f) + , mMinWaitTime(this, 'ch10', "å¾…ã¡æ™‚間最å°(秒)", 0.3f, 0.0f, 10.0f) + , mMaxWaitTime(this, 'ch11', "å¾…ã¡æ™‚間最大(秒)", 1.0f, 0.0f, 10.0f) + , mMinWalkTime(this, 'ch12', "移動時間最å°(秒)", 0.5f, 0.0f, 10.0f) + , mMaxWalkTime(this, 'ch13', "移動時間最大(秒)", 1.5f, 0.0f, 10.0f) + , mControlledTime(this, 'ch22', "コントローラ状態時間(秒)", 5.0f, 0.0f, 60.0f) { } diff --git a/include/ebi/title/Entities/TKogane.h b/include/ebi/title/Entities/TKogane.h index a93e2ccaa..614907647 100644 --- a/include/ebi/title/Entities/TKogane.h +++ b/include/ebi/title/Entities/TKogane.h @@ -18,18 +18,18 @@ struct TUnit; struct TParam : public TParamBase { TParam() - : mScale(this, 'b000', "ƒXƒP[ƒ‹", 2.0f, 0.0f, 10.0f) - , mCullRadius(this, 'b001', "ƒJƒŠƒ“ƒO”¼Œa", 50.0f, 0.0f, 500.0f) - , mCollRadius(this, 'b002', "ƒRƒŠƒWƒ‡ƒ“”¼Œa", 50.0f, 0.0f, 500.0f) - , mPikiReactRadius(this, 'b003', "ƒsƒNƒ~ƒ“”½‰ž”¼Œa", 150.0f, 0.0f, 500.0f) - , mWalkRandomAngle(this, 'kg00', "•àsƒ‰ƒ“ƒ_ƒ€Šp“x", 60.0f, 0.0f, 90.0f) - , mWalkSpeed(this, 'kg01', "•às‘¬“x", 10.0f, 0.0f, 100.0f) - , mTurnRate(this, 'kg15', "ù‰ñ«”\x5C", 0.1f, 0.0f, 1.0f) // x5C literal required for match - , mMinWaitTime(this, 'kg10', "‘Ò‚¿ŽžŠÔŬ(•b)", 1.0f, 0.0f, 10.0f) - , mMaxWaitTime(this, 'kg11', "‘Ò‚¿ŽžŠÔÅ‘å(•b)", 1.5f, 0.0f, 10.0f) - , mMinMoveTime(this, 'kg12', "ˆÚ“®ŽžŠÔŬ(•b)", 0.3f, 0.0f, 10.0f) - , mMaxMoveTime(this, 'kg13', "ˆÚ“®ŽžŠÔÅ‘å(•b)", 1.0f, 0.0f, 10.0f) - , mControlStateTime(this, 'kg14', "ƒRƒ“ƒgƒ[ƒ‰ó‘ÔŽžŠÔ(•b)", 5.0f, 0.0f, 60.0f) + : mScale(this, 'b000', "スケール", 2.0f, 0.0f, 10.0f) + , mCullRadius(this, 'b001', "カリングåŠå¾„", 50.0f, 0.0f, 500.0f) + , mCollRadius(this, 'b002', "コリジョンåŠå¾„", 50.0f, 0.0f, 500.0f) + , mPikiReactRadius(this, 'b003', "ピクミンåå¿œåŠå¾„", 150.0f, 0.0f, 500.0f) + , mWalkRandomAngle(this, 'kg00', "歩行ランダム角度", 60.0f, 0.0f, 90.0f) + , mWalkSpeed(this, 'kg01', "歩行速度", 10.0f, 0.0f, 100.0f) + , mTurnRate(this, 'kg15', "旋回性能", 0.1f, 0.0f, 1.0f) + , mMinWaitTime(this, 'kg10', "å¾…ã¡æ™‚間最å°(秒)", 1.0f, 0.0f, 10.0f) + , mMaxWaitTime(this, 'kg11', "å¾…ã¡æ™‚間最大(秒)", 1.5f, 0.0f, 10.0f) + , mMinMoveTime(this, 'kg12', "移動時間最å°(秒)", 0.3f, 0.0f, 10.0f) + , mMaxMoveTime(this, 'kg13', "移動時間最大(秒)", 1.0f, 0.0f, 10.0f) + , mControlStateTime(this, 'kg14', "コントローラ状態時間(秒)", 5.0f, 0.0f, 60.0f) { } diff --git a/include/ebi/title/Entities/TPikmin.h b/include/ebi/title/Entities/TPikmin.h index 10050c119..841258ea8 100644 --- a/include/ebi/title/Entities/TPikmin.h +++ b/include/ebi/title/Entities/TPikmin.h @@ -28,22 +28,22 @@ struct TParam : public TParamBase { * @note Size: 0x418 */ TParam() - : mIntScale(this, 'pk00', "ŠCŠO”ŃXƒP[ƒ‹", 2.4f, 0.0f, 10.0f) // 'overseas version scale' - , mJpnScale(this, 'pk99', "“ú–{Œê”ŃXƒP[ƒ‹", 2.6f, 0.0f, 10.0f) // 'Japanese version scale' - , mCollRadius(this, 'pk01', "ƒRƒŠƒWƒ‡ƒ“”¼Œa", 5.0f, 0.0f, 100.0f) // 'collision radius' - , mStopDist(this, 'pk02', "’âŽ~‹——£", 20.0f, 0.0f, 100.0f) // 'stopping distance' - , mConvDist(this, 'pk03', "Žû‘©‹——£", 50.0f, 0.0f, 100.0f) // 'convergence distance' - , mShadowX(this, 'pk05', "‰e‚¸‚炵X", 5.0f, 0.0f, 100.0f) // 'shadow offset X' - , mShadowZ(this, 'pk06', "‰e‚¸‚炵Z", 5.0f, 0.0f, 100.0f) // 'shadow offset Z' - , mAnimSpeedWalk(this, 'pk07', "ƒAƒjƒƒXƒs[ƒh•à‚­i‘¬“x”ä—áj", 0.5f, 0.0f, 10.0f) // 'anime speed walking (speed proportional)' - , mAnimSpeedStyle(this, 'pk08', "ƒAƒjƒƒXƒs[ƒh•—", 0.5f, 0.0f, 10.0f) // 'anime speed wind' - , mAnimMaxWaitTime(this, 'pk10', "ƒAƒjƒƒXƒs[ƒhWAITÅ‘å", 0.5f, 0.0f, 10.0f) // 'anime speed WAIT max' - , mAnimMinWaitTime(this, 'pk09', "ƒAƒjƒƒXƒs[ƒhWAITŬ", 0.0f, 0.0f, 10.0f) // 'anime speed WAIT min' - , mKogane(this, 'pk12', "ƒRƒKƒlD‚«D‚«ŒW”", 5.0f, -10.0f, 10.0f) // 'kogane attraction factor' - , mChappyRun(this, 'pk13', "ƒ`ƒƒƒbƒs[‚©‚瓦‚°‚éŒW”", -5.0f, -10.0f, 10.0f) // 'chappy repulsion factor' - , mChaseGiveUp(this, 'pk14', "’Ç‚¢‚©‚¯‚ ‚«‚ç‚ß”¼Œa", 400.0f, 0.0f, 500.0f) // 'chasing radius' - , mWindTimer(this, 'pk11', "•—ƒ^ƒCƒ}[(•b)", 6.0f, 0.0f, 10.0f) // 'wind timer (sec)' - , mDistSpeedFactor(this, 'pk04', "‹——£”ä—ᑬ“xŒW”", 0.2f, 0.0f, 1.0f) // 'distance proportional speed factor' + : mIntScale(this, 'pk00', "海外版スケール", 2.4f, 0.0f, 10.0f) // 'overseas version scale' + , mJpnScale(this, 'pk99', "日本語版スケール", 2.6f, 0.0f, 10.0f) // 'Japanese version scale' + , mCollRadius(this, 'pk01', "コリジョンåŠå¾„", 5.0f, 0.0f, 100.0f) // 'collision radius' + , mStopDist(this, 'pk02', "åœæ­¢è·é›¢", 20.0f, 0.0f, 100.0f) // 'stopping distance' + , mConvDist(this, 'pk03', "åŽæŸè·é›¢", 50.0f, 0.0f, 100.0f) // 'convergence distance' + , mShadowX(this, 'pk05', "å½±ãšã‚‰ã—X", 5.0f, 0.0f, 100.0f) // 'shadow offset X' + , mShadowZ(this, 'pk06', "å½±ãšã‚‰ã—Z", 5.0f, 0.0f, 100.0f) // 'shadow offset Z' + , mAnimSpeedWalk(this, 'pk07', "アニメスピード歩ã(速度比例)", 0.5f, 0.0f, 10.0f) // 'anime speed walking (speed proportional)' + , mAnimSpeedStyle(this, 'pk08', "アニメスピード風", 0.5f, 0.0f, 10.0f) // 'anime speed wind' + , mAnimMaxWaitTime(this, 'pk10', "アニメスピードWAIT最大", 0.5f, 0.0f, 10.0f) // 'anime speed WAIT max' + , mAnimMinWaitTime(this, 'pk09', "アニメスピードWAIT最å°", 0.0f, 0.0f, 10.0f) // 'anime speed WAIT min' + , mKogane(this, 'pk12', "コガãƒå¥½ã好ãä¿‚æ•°", 5.0f, -10.0f, 10.0f) // 'kogane attraction factor' + , mChappyRun(this, 'pk13', "ãƒãƒ£ãƒƒãƒ”ーã‹ã‚‰é€ƒã’ã‚‹ä¿‚æ•°", -5.0f, -10.0f, 10.0f) // 'chappy repulsion factor' + , mChaseGiveUp(this, 'pk14', "追ã„ã‹ã‘ã‚ãらã‚åŠå¾„", 400.0f, 0.0f, 500.0f) // 'chasing radius' + , mWindTimer(this, 'pk11', "風タイマー(秒)", 6.0f, 0.0f, 10.0f) // 'wind timer (sec)' + , mDistSpeedFactor(this, 'pk04', "è·é›¢æ¯”例速度係数", 0.2f, 0.0f, 1.0f) // 'distance proportional speed factor' { } @@ -98,14 +98,14 @@ struct TAnimator { struct TBoidParam : public Parameters { TBoidParam() : Parameters(nullptr, "TTitleStateParameters") - , mTurnMag(this, 'tsp0', "Œü‚«•Ï‚¦ƒxƒNƒgƒ‹‚Ì‘å‚«‚³", 0.2f, 0.0f, 10.0f) // 'turn vector magnitude' - , mMaxTurnVec(this, 'tsp1', "Œü‚«•Ï‚¦ƒxƒNƒgƒ‹Å‘å", 0.4f, 0.0f, 10.0f) // 'turn vector maximum' - , mMaxWalkSpeed(this, 'tsp2', "Å‘å•à‚­‘¬“x", 2.0f, 0.0f, 10.0f) // 'max walking speed' - , mBoidColl(this, 'tsp5', "BOIDՓˉñ”ðŒW”", 800.0f, 0.0f, 10000.0f) // 'BOID collision avoidance factor' - , mBoidSpeedMatch(this, 'tsp6', "BOID‘¬“x‡‚킹ŒW”", 4.5f, 0.0f, 100.0f) // 'BOID speed adjust factor' - , mBoidCenter(this, 'tsp7', "BOID’†SW‡ŒW”", 0.005f, 0.0f, 10.0f) // 'BOID center set factor' - , mBoidNeighbor(this, 'tsp8', "BOIDŒÂ‘̂̋ߊƒT[ƒ`”¼Œa", 30.0f, 0.0f, 500.0f) // 'BOID neighbour search radius' - , mGroupCenter(this, 'tsp9', "ŒQ‚Ì’†S‚ƌ‘̖̂ړI’n‚ÌŠ„‡", 0.0f, 0.0f, 1.0f) // 'group center to individual dest ratio' + , mTurnMag(this, 'tsp0', "å‘ã変ãˆãƒ™ã‚¯ãƒˆãƒ«ã®å¤§ãã•", 0.2f, 0.0f, 10.0f) // 'turn vector magnitude' + , mMaxTurnVec(this, 'tsp1', "å‘ã変ãˆãƒ™ã‚¯ãƒˆãƒ«æœ€å¤§", 0.4f, 0.0f, 10.0f) // 'turn vector maximum' + , mMaxWalkSpeed(this, 'tsp2', "最大歩ã速度", 2.0f, 0.0f, 10.0f) // 'max walking speed' + , mBoidColl(this, 'tsp5', "BOIDè¡çªå›žé¿ä¿‚æ•°", 800.0f, 0.0f, 10000.0f) // 'BOID collision avoidance factor' + , mBoidSpeedMatch(this, 'tsp6', "BOID速度åˆã‚ã›ä¿‚æ•°", 4.5f, 0.0f, 100.0f) // 'BOID speed adjust factor' + , mBoidCenter(this, 'tsp7', "BOID中心集åˆä¿‚æ•°", 0.005f, 0.0f, 10.0f) // 'BOID center set factor' + , mBoidNeighbor(this, 'tsp8', "BOID個体ã®è¿‘所サーãƒåŠå¾„", 30.0f, 0.0f, 500.0f) // 'BOID neighbour search radius' + , mGroupCenter(this, 'tsp9', "群ã®ä¸­å¿ƒã¨å€‹ä½“ã®ç›®çš„地ã®å‰²åˆ", 0.0f, 0.0f, 1.0f) // 'group center to individual dest ratio' { } diff --git a/include/ebi/title/TCoordMgr.h b/include/ebi/title/TCoordMgr.h index cfb452ec7..2b83c6c3c 100644 --- a/include/ebi/title/TCoordMgr.h +++ b/include/ebi/title/TCoordMgr.h @@ -20,8 +20,8 @@ struct TCoordMgr : public CNode { : Parameters(nullptr, "TTgaLoadParameters") , mOffsX(this, 'tga0', "OffsetX", -320.0f, -500.0f, 500.0f) , mOffsY(this, 'tga1', "OffsetY", -240.0f, -500.0f, 500.0f) - , mIntervalX(this, 'tga2', "XŠÔŠu", 1.0f, 0.0f, 100.0f) - , mIntervalY(this, 'tga3', "YŠÔŠu\0\0", 1.0f, 0.0f, 100.0f) + , mIntervalX(this, 'tga2', "Xé–“éš”", 1.0f, 0.0f, 100.0f) + , mIntervalY(this, 'tga3', "Yé–“éš”", 1.0f, 0.0f, 100.0f) { } diff --git a/include/ebi/title/TTitle.h b/include/ebi/title/TTitle.h index 7b06a602e..b1bdaa84e 100644 --- a/include/ebi/title/TTitle.h +++ b/include/ebi/title/TTitle.h @@ -23,23 +23,23 @@ struct TTitleParameters : public Parameters { TTitleParameters() // shoutouts to Scruffys video: https://youtu.be/Z11RFTE_vow : Parameters(nullptr, "TTitleParameters") - , mBoundsMinX(this, 'tp04', "‰ÂŽ‹”͈ÍXŬ", -400.0f, -2000.0f, 2000.0f) - , mBoundsMaxX(this, 'tp05', "‰ÂŽ‹”͈ÍXÅ‘å", 400.0f, -2000.0f, 2000.0f) - , mBoundsMinY(this, 'tp06', "‰ÂŽ‹”͈ÍYŬ", -250.0f, -2000.0f, 2000.0f) - , mBoundsMaxY(this, 'tp07', "‰ÂŽ‹”͈ÍYÅ‘å", 340.0f, -2000.0f, 2000.0f) - , mPikiScatterOriginX(this, 'tp08', "ƒsƒNƒ~ƒ“‰ðŽU’†SÀ•WX", 0.0f, -640.0f, 640.0f) - , mPikiScatterOriginY(this, 'tp09', "ƒsƒNƒ~ƒ“‰ðŽU’†SÀ•WY", 0.0f, -480.0f, 480.0f) - , mMinPikminScatterRadius(this, 'tp10', "ƒsƒNƒ~ƒ“‰ðŽU”¼ŒaŬ", 500.0f, 0.0f, 1000.0f) - , mMaxPikminScatterRadius(this, 'tp11', "ƒsƒNƒ~ƒ“‰ðŽU”¼ŒaÅ‘å(ƒIƒuƒWƒFƒNƒg”z’uŒÀŠE”¼Œa)", 600.0f, 0.0f, 1000.0f) - , mWindProbability(this, 'tp13', "•—‚ ‚½‚è”͈̗͂”", 30.0f, 0.0f, 100.0f) - , mPlantMoveDuration(this, 'tp50', "BG•—ó‘ÔŽžŠÔ(•b)", 8.0f, 0.0f, 100.0f) - , mBoidDurationDisperse(this, 'tp15', "BOID1ó‘ÔŽžŠÔ(•b)", 3.0f, 0.0f, 60.0f) - , mBoidDurationRegroup(this, 'tp16', "BOID2ó‘ÔŽžŠÔ(•b)", 3.0f, 0.0f, 60.0f) - , mBoidDurationSwirl(this, 'tp17', "BOID3ó‘ÔŽžŠÔ(•b)", 10.0f, 0.0f, 60.0f) - , mWindMoveDuration(this, 'tp19', "•—ó‘ÔŽžŠÔ(•b)", 3.0f, 0.0f, 60.0f) - , mEnemyStayDuration(this, 'tp20', "“Gó‘ÔŽžŠÔ(•b)", 10.0f, 0.0f, 60.0f) - , mPressStartDelay(this, 'tp21', "PressStartŠJŽnŽžŠÔ(•b)", 2.0f, 0.0f, 60.0f) - , mCanOpenMenuDelay(this, 'tp22', "ƒL[Žó‚¯‚‚¯ŠJŽnŽžŠÔ(•b)", 3.5f, 0.0f, 60.0f) + , mBoundsMinX(this, 'tp04', "å¯è¦–範囲X最å°", -400.0f, -2000.0f, 2000.0f) + , mBoundsMaxX(this, 'tp05', "å¯è¦–範囲X最大", 400.0f, -2000.0f, 2000.0f) + , mBoundsMinY(this, 'tp06', "å¯è¦–範囲Y最å°", -250.0f, -2000.0f, 2000.0f) + , mBoundsMaxY(this, 'tp07', "å¯è¦–範囲Y最大", 340.0f, -2000.0f, 2000.0f) + , mPikiScatterOriginX(this, 'tp08', "ピクミン解散中心座標X", 0.0f, -640.0f, 640.0f) + , mPikiScatterOriginY(this, 'tp09', "ピクミン解散中心座標Y", 0.0f, -480.0f, 480.0f) + , mMinPikminScatterRadius(this, 'tp10', "ピクミン解散åŠå¾„最å°", 500.0f, 0.0f, 1000.0f) + , mMaxPikminScatterRadius(this, 'tp11', "ピクミン解散åŠå¾„最大(オブジェクトé…ç½®é™ç•ŒåŠå¾„)", 600.0f, 0.0f, 1000.0f) + , mWindProbability(this, 'tp13', "風ã‚ãŸã‚Šç¯„囲ã®ä¹±æ•°", 30.0f, 0.0f, 100.0f) + , mPlantMoveDuration(this, 'tp50', "BG風状態時間(秒)", 8.0f, 0.0f, 100.0f) + , mBoidDurationDisperse(this, 'tp15', "BOID1状態時間(秒)", 3.0f, 0.0f, 60.0f) + , mBoidDurationRegroup(this, 'tp16', "BOID2状態時間(秒)", 3.0f, 0.0f, 60.0f) + , mBoidDurationSwirl(this, 'tp17', "BOID3状態時間(秒)", 10.0f, 0.0f, 60.0f) + , mWindMoveDuration(this, 'tp19', "風状態時間(秒)", 3.0f, 0.0f, 60.0f) + , mEnemyStayDuration(this, 'tp20', "敵状態時間(秒)", 10.0f, 0.0f, 60.0f) + , mPressStartDelay(this, 'tp21', "PressStart開始時間(秒)", 2.0f, 0.0f, 60.0f) + , mCanOpenMenuDelay(this, 'tp22', "キーå—ã‘ã¤ã‘開始時間(秒)", 3.5f, 0.0f, 60.0f) { } @@ -67,7 +67,7 @@ struct TTitleCameraMgr : public LookAtCamera { struct Parms : public Parameters { Parms() : Parameters(nullptr, "TTitleCameraParameters") - , mYOffset(this, 'cam1', "ƒJƒƒ‰‹——£ƒƒS", 15.0f, -1000.0f, 10000.0f) // "camera distance logo" + , mYOffset(this, 'cam1', "カメラè·é›¢ãƒ­ã‚´", 15.0f, -1000.0f, 10000.0f) // "camera distance logo" , mFOVY(this, 'cam4', "Fovy", 35.0f, 1.0f, 180.0f) { } @@ -93,13 +93,13 @@ struct TTitleFogMgr : public FogMgr { struct Parms : public Parameters { Parms() : Parameters(nullptr, "TTitleFogParameters") - , mIsFogActive(this, 'fg10', "ƒtƒHƒO—LŒø–³Œø", true, false, true) + , mIsFogActive(this, 'fg10', "フォグ有効無効", true, false, true) , mStartDist(this, 'fg00', "start z", 100.0f, 0.0f, 1024.0f) , mEndDist(this, 'fg01', "end z", 2000.0f, 0.0f, 12800.0f) - , mColR(this, 'fg02', "F@R", 255, 0, 255) - , mColG(this, 'fg03', "F@G", 255, 0, 255) - , mColB(this, 'fg04', "F@B", 255, 0, 255) - , mColA(this, 'fg05', "F@A", 255, 0, 255) + , mColR(this, 'fg02', "色 R", 255, 0, 255) + , mColG(this, 'fg03', "色 G", 255, 0, 255) + , mColB(this, 'fg04', "色 B", 255, 0, 255) + , mColA(this, 'fg05', "色 A", 255, 0, 255) { } @@ -130,10 +130,10 @@ struct TTitleLightSetting { struct TAmbParms : public Parameters { inline TAmbParms() : Parameters(nullptr, "TAmbParms") - , mRed(this, 'tl00', "ƒAƒ“ƒrƒGƒ“ƒgFR", 0, 0, 255) - , mGreen(this, 'tl01', "ƒAƒ“ƒrƒGƒ“ƒgFG", 0, 0, 255) - , mBlue(this, 'tl02', "ƒAƒ“ƒrƒGƒ“ƒgFB", 0, 0, 255) - , mAlpha(this, 'tl03', "ƒAƒ“ƒrƒGƒ“ƒgFA", 0, 0, 255) + , mRed(this, 'tl00', "アンビエント色R", 0, 0, 255) + , mGreen(this, 'tl01', "アンビエント色G", 0, 0, 255) + , mBlue(this, 'tl02', "アンビエント色B", 0, 0, 255) + , mAlpha(this, 'tl03', "アンビエント色A", 0, 0, 255) { } @@ -146,19 +146,19 @@ struct TTitleLightSetting { struct TMainParms : public Parameters { TMainParms() : Parameters(nullptr, "TMainParms") - , mLightColR(this, 'tl04', "ƒ‰ƒCƒgFR", 255, 0, 255) - , mLightColG(this, 'tl05', "ƒ‰ƒCƒgFG", 255, 0, 255) - , mLightColB(this, 'tl06', "ƒ‰ƒCƒgFB", 255, 0, 255) - , mLightColA(this, 'tl07', "ƒ‰ƒCƒgFA", 255, 0, 255) - , mPosX(this, 'tl50', "ˆÊ’uX", 0.0f, -10000.0f, 10000.0f) - , mPosY(this, 'tl51', "ˆÊ’uY", 1000.0f, -10000.0f, 50000.0f) - , mPosZ(this, 'tl52', "ˆÊ’uZ", 0.0f, -10000.0f, 10000.0f) - , mRotX(this, 'tl53', "Œü‚«X", 0.0f, -1.0f, 1.0f) - , mRotY(this, 'tl54', "Œü‚«Y", -1.0f, -1.0f, 1.0f) - , mRotZ(this, 'tl55', "Œü‚«Z", 0.0f, -1.0f, 1.0f) - , mLightRange(this, 'tl56', "‹——£Œ¸Š-‹——£", 10000.0f, 1.0f, 50000.0f) - , mLightBrightness(this, 'tl57', "‹——£Œ¸Š-–¾‚邳", 1.0f, 0.0f, 1.0f) - , mCutoffAngle(this, 'tl58', "ƒJƒbƒgƒIƒtŠp“x", 25.0f, 1.0f, 180.0f) + , mLightColR(this, 'tl04', "ライト色R", 255, 0, 255) + , mLightColG(this, 'tl05', "ライト色G", 255, 0, 255) + , mLightColB(this, 'tl06', "ライト色B", 255, 0, 255) + , mLightColA(this, 'tl07', "ライト色A", 255, 0, 255) + , mPosX(this, 'tl50', "ä½ç½®X", 0.0f, -10000.0f, 10000.0f) + , mPosY(this, 'tl51', "ä½ç½®Y", 1000.0f, -10000.0f, 50000.0f) + , mPosZ(this, 'tl52', "ä½ç½®Z", 0.0f, -10000.0f, 10000.0f) + , mRotX(this, 'tl53', "å‘ãX", 0.0f, -1.0f, 1.0f) + , mRotY(this, 'tl54', "å‘ãY", -1.0f, -1.0f, 1.0f) + , mRotZ(this, 'tl55', "å‘ãZ", 0.0f, -1.0f, 1.0f) + , mLightRange(this, 'tl56', "è·é›¢æ¸›è¡°-è·é›¢", 10000.0f, 1.0f, 50000.0f) + , mLightBrightness(this, 'tl57', "è·é›¢æ¸›è¡°-明るã•", 1.0f, 0.0f, 1.0f) + , mCutoffAngle(this, 'tl58', "カットオフ角度", 25.0f, 1.0f, 180.0f) { } @@ -180,14 +180,14 @@ struct TTitleLightSetting { struct TSpecParms : public Parameters { TSpecParms() : Parameters(nullptr, "TSpecParms") - , mLightColR(this, 'sp04', "ƒ‰ƒCƒgFR", 255, 0, 255) - , mLightColG(this, 'sp05', "ƒ‰ƒCƒgFG", 255, 0, 255) - , mLightColB(this, 'sp06', "ƒ‰ƒCƒgFB", 255, 0, 255) - , mLightColA(this, 'sp07', "ƒ‰ƒCƒgFA", 255, 0, 255) - , mRotX(this, 'sp53', "Œü‚«X", 0.0f, -1.0f, 1.0f) - , mRotY(this, 'sp54', "Œü‚«Y", -1.0f, -1.0f, 1.0f) - , mRotZ(this, 'sp55', "Œü‚«Z", 0.0f, -1.0f, 1.0f) - , mGlossAmount(this, 'sp56', "Œõ‘ò", 64.0f, 0.0f, 512.0f) // Luster? + , mLightColR(this, 'sp04', "ライト色R", 255, 0, 255) + , mLightColG(this, 'sp05', "ライト色G", 255, 0, 255) + , mLightColB(this, 'sp06', "ライト色B", 255, 0, 255) + , mLightColA(this, 'sp07', "ライト色A", 255, 0, 255) + , mRotX(this, 'sp53', "å‘ãX", 0.0f, -1.0f, 1.0f) + , mRotY(this, 'sp54', "å‘ãY", -1.0f, -1.0f, 1.0f) + , mRotZ(this, 'sp55', "å‘ãZ", 0.0f, -1.0f, 1.0f) + , mGlossAmount(this, 'sp56', "光沢", 64.0f, 0.0f, 512.0f) // Luster? { } @@ -209,8 +209,8 @@ struct TTitleLightSetting { struct TTitleLightMgr : public LightMgr { TTitleLightMgr() : LightMgr("LightMgr") - , mLightObjMain("ƒƒCƒ“ƒ‰ƒCƒg", GX_LIGHT0, TYPE_Spot, JUtility::TColor(255, 255, 255, 255)) - , mLightObjSpec("ƒXƒyƒLƒ…ƒ‰ƒ‰ƒCƒg", GX_LIGHT7, TYPE_Spec, JUtility::TColor(255, 255, 255, 255)) + , mLightObjMain("メインライト", GX_LIGHT0, TYPE_Spot, JUtility::TColor(255, 255, 255, 255)) + , mLightObjSpec("スペキュラライト", GX_LIGHT7, TYPE_Spec, JUtility::TColor(255, 255, 255, 255)) , mSetting() { registLightObj(&mLightObjMain); diff --git a/libs.json b/libs.json deleted file mode 100644 index a3b49596b..000000000 --- a/libs.json +++ /dev/null @@ -1,1752 +0,0 @@ -[ - { - "lib": "JStudio_JParticle", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JStudio_JParticle/object-particle", false], - ["JSystem/JStudio_JParticle/control", true] - ] - }, - { - "lib": "JMessage", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JMessage/resource", false], - ["JSystem/JMessage/data", true], - ["JSystem/JMessage/processor", false], - ["JSystem/JMessage/control", true] - ] - }, - { - "lib": "JStudio", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JStudio/stb-data-parse", true], - ["JSystem/JStudio/functionvalue", false], - ["JSystem/JStudio/fvb", false], - ["JSystem/JStudio/fvb-data", true], - ["JSystem/JStudio/fvb-data-parse", true], - ["JSystem/JStudio/jstudio-control", true], - ["JSystem/JStudio/jstudio-data", true], - ["JSystem/JStudio/jstudio-object", false], - ["JSystem/JStudio/object-id", true], - ["JSystem/JStudio/stb", true], - ["JSystem/JStudio/stb-data", true], - ["JSystem/JStudio/jstudio-math", true] - ] - }, - { - "lib": "JStudio_JStage", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JStudio_JStage/object-light", false], - ["JSystem/JStudio_JStage/object", true], - ["JSystem/JStudio_JStage/object-actor", true], - ["JSystem/JStudio_JStage/object-ambientlight", true], - ["JSystem/JStudio_JStage/object-camera", true], - ["JSystem/JStudio_JStage/object-fog", true], - ["JSystem/JStudio_JStage/control", true] - ] - }, - { - "lib": "JStudio_JMessage", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JStudio_JMessage/object-message", true], - ["JSystem/JStudio_JMessage/control", true] - ] - }, - { - "lib": "JStudio_JAudio", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JStudio_JAudio/object-sound", true], - ["JSystem/JStudio_JAudio/control", true] - ] - }, - { - "lib": "J3DU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/J3DU/J3DUDL", true], - ["JSystem/J3DU/J3DUMotion", true], - ["JSystem/J3DU/J3DUShadow", true], - ["JSystem/J3DU/J3DUMtxCache", true] - ] - }, - { - "lib": "JKernel", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JKernel/JKRAram", true], - ["JSystem/JKernel/JKRAramArchive", true], - ["JSystem/JKernel/JKRAramBlock", true], - ["JSystem/JKernel/JKRAramHeap", true], - ["JSystem/JKernel/JKRAramPiece", true], - ["JSystem/JKernel/JKRAramStream", true], - ["JSystem/JKernel/JKRArchivePri", true], - ["JSystem/JKernel/JKRArchivePub", true], - ["JSystem/JKernel/JKRCompArchive", true], - ["JSystem/JKernel/JKRDecomp", true], - ["JSystem/JKernel/JKRDisposer", true], - ["JSystem/JKernel/JKRDvdFile", true], - ["JSystem/JKernel/JKRDvdAramRipper", true], - ["JSystem/JKernel/JKRDvdArchive", true], - ["JSystem/JKernel/JKRDvdRipper", true], - ["JSystem/JKernel/JKRExpHeap", true], - ["JSystem/JKernel/JKRFileCache", true], - ["JSystem/JKernel/JKRFileFinder", true], - ["JSystem/JKernel/JKRFile", true], - ["JSystem/JKernel/JKRFileLoader", true], - ["JSystem/JKernel/JKRHeap", true], - ["JSystem/JKernel/JKRMemArchive", true], - ["JSystem/JKernel/JKRSolidHeap", true], - ["JSystem/JKernel/JKRThread", true] - ] - }, - { - "lib": "JSupport", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JSupport/JSUOutputStream", true], - ["JSystem/JSupport/JSUInputStream", true], - ["JSystem/JSupport/JSUList", true], - ["JSystem/JSupport/JSUMemoryStream", true], - ["JSystem/JSupport/JSUFileStream", true] - ] - }, - { - "lib": "JGadget", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JGadget/binary", true], - ["JSystem/JGadget/linklist", true], - ["JSystem/JGadget/std-list", true], - ["JSystem/JGadget/std-vector", true] - ] - }, - { - "lib": "JUtility", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JUtility/JUTAssert", true], - ["JSystem/JUtility/JUTConsole", true], - ["JSystem/JUtility/JUTDbPrint", true], - ["JSystem/JUtility/JUTDirectFile", true], - ["JSystem/JUtility/JUTDirectPrint", true], - ["JSystem/JUtility/JUTException", true], - ["JSystem/JUtility/JUTFader", true], - ["JSystem/JUtility/JUTFont", true], - ["JSystem/JUtility/JUTGamePad", true], - ["JSystem/JUtility/JUTGraphFifo", true], - ["JSystem/JUtility/JUTNameTab", true], - ["JSystem/JUtility/JUTPalette", true], - ["JSystem/JUtility/JUTProcBar", true], - ["JSystem/JUtility/JUTResFont", true], - ["JSystem/JUtility/JUTResource", true], - ["JSystem/JUtility/JUTRomFont", true], - ["JSystem/JUtility/JUTFontData_Ascfont_fix12", true], - ["JSystem/JUtility/JUTTexture", true], - ["JSystem/JUtility/JUTVideo", true], - ["JSystem/JUtility/JUTXfb", true], - ["JSystem/JUtility/JUTCacheFont", true] - ] - }, - { - "lib": "JMath", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JMath/JMath", true], - ["JSystem/JMath/random", true], - ["JSystem/JMath/JMATrigonometric", true] - ] - }, - { - "lib": "J2D", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/J2D/J2DOrthoGraph", true], - ["JSystem/J2D/J2DPerspGraph", true], - ["JSystem/J2D/J2DGrafContext", true], - ["JSystem/J2D/J2DPane", true], - ["JSystem/J2D/J2DPicture", false], - ["JSystem/J2D/J2DPrint", true], - ["JSystem/J2D/J2DScreen", false], - ["JSystem/J2D/J2DTextBox", true], - ["JSystem/J2D/J2DWindow", false], - ["JSystem/J2D/J2DWindowEx", false], - ["JSystem/J2D/J2DAnmLoader", true], - ["JSystem/J2D/J2DBloSaver", false], - ["JSystem/J2D/J2DManage", true], - ["JSystem/J2D/J2DMatBlock", false], - ["JSystem/J2D/J2DMaterial", false], - ["JSystem/J2D/J2DMaterialFactory", false], - ["JSystem/J2D/J2DPictureEx", false], - ["JSystem/J2D/J2DTevs", true], - ["JSystem/J2D/J2DTextBoxEx", false], - ["JSystem/J2D/J2DAnimation", true] - ] - }, - { - "lib": "J3D", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/J3D/J3DSys", true], - ["JSystem/J3D/J3DVertex", true], - ["JSystem/J3D/J3DTransform", true], - ["JSystem/J3D/J3DPacket", true], - ["JSystem/J3D/J3DShape", false], - ["JSystem/J3D/J3DMaterial", false], - ["JSystem/J3D/J3DTevs", false], - ["JSystem/J3D/J3DDrawBuffer", true], - ["JSystem/J3D/J3DModel", false], - ["JSystem/J3D/J3DAnimation", true], - ["JSystem/J3D/J3DMaterialAnm", true], - ["JSystem/J3D/J3DCluster", false], - ["JSystem/J3D/J3DJoint", false], - ["JSystem/J3D/J3DMaterialFactory", false], - ["JSystem/J3D/J3DBinaryFormat", true], - ["JSystem/J3D/J3DModelLoader", true], - ["JSystem/J3D/J3DJointFactory", true], - ["JSystem/J3D/J3DShapeFactory", true], - ["JSystem/J3D/J3DAnmLoader", true], - ["JSystem/J3D/J3DModelSaver", true], - ["JSystem/J3D/J3DGD", false], - ["JSystem/J3D/J3DMatBlock", false], - ["JSystem/J3D/J3DModelData", true], - ["JSystem/J3D/J3DMaterialAttach", false], - ["JSystem/J3D/J3DMaterialFactory_v21", false], - ["JSystem/J3D/J3DShapeMtx", true], - ["JSystem/J3D/J3DModelLoaderCalcSize", false], - ["JSystem/J3D/J3DJointTree", true], - ["JSystem/J3D/J3DSkinDeform", true], - ["JSystem/J3D/J3DShapeDraw", true], - ["JSystem/J3D/J3DMtxBuffer", false], - ["JSystem/J3D/J3DShapeTable", true] - ] - }, - { - "lib": "JFramework", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JFramework/JFWSystem", true], - ["JSystem/JFramework/JFWDisplay", true] - ] - }, - { - "lib": "JParticle", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JParticle/JPABaseShape", false], - ["JSystem/JParticle/JPAChildShape", true], - ["JSystem/JParticle/JPADynamicsBlock", false], - ["JSystem/JParticle/JPAEmitter", true], - ["JSystem/JParticle/JPAEmitterManager", true], - ["JSystem/JParticle/JPAExTexShape", true], - ["JSystem/JParticle/JPAExtraShape", true], - ["JSystem/JParticle/JPAFieldBlock", true], - ["JSystem/JParticle/JPAKeyBlock", true], - ["JSystem/JParticle/JPAMath", false], - ["JSystem/JParticle/JPAParticle", true], - ["JSystem/JParticle/JPAResource", false], - ["JSystem/JParticle/JPAResourceLoader", false], - ["JSystem/JParticle/JPAResourceManager", true], - ["JSystem/JParticle/JPATexture", true] - ] - }, - { - "lib": "JStage", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JStage/JSGSystem", true], - ["JSystem/JStage/JSGCamera", true], - ["JSystem/JStage/JSGObject", true], - ["JSystem/JStage/JSGActor", true] - ] - }, - { - "lib": "JAudio_JAS", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JAudio/JAS/JASWSParser", false], - ["JSystem/JAudio/JAS/JASBankMgr", true], - ["JSystem/JAudio/JAS/JASBasicBank", true], - ["JSystem/JAudio/JAS/JASBasicInst", true], - ["JSystem/JAudio/JAS/JASBasicWaveBank", true], - ["JSystem/JAudio/JAS/JASBNKParser", false], - ["JSystem/JAudio/JAS/JASDrumSet", true], - ["JSystem/JAudio/JAS/JASInstEffect", true], - ["JSystem/JAudio/JAS/JASInstRand", true], - ["JSystem/JAudio/JAS/JASInstSense", true], - ["JSystem/JAudio/JAS/JASSimpleWaveBank", true], - ["JSystem/JAudio/JAS/JASWaveArcLoader", true], - ["JSystem/JAudio/JAS/JASWaveBank", true], - ["JSystem/JAudio/JAS/JASWaveBankMgr", true], - ["JSystem/JAudio/JAS/JASBank", true], - ["JSystem/JAudio/JAS/JASTrackPort", true], - ["JSystem/JAudio/JAS/JASOuterParam", true], - ["JSystem/JAudio/JAS/JASPlayer_impl", true], - ["JSystem/JAudio/JAS/JASRegisterParam", true], - ["JSystem/JAudio/JAS/JASSeqCtrl", true], - ["JSystem/JAudio/JAS/JASSeqParser", false], - ["JSystem/JAudio/JAS/JASTrack", false], - ["JSystem/JAudio/JAS/JASTrackInterrupt", true], - ["JSystem/JAudio/JAS/JASOscillator", true], - ["JSystem/JAudio/JAS/JASChannel", false], - ["JSystem/JAudio/JAS/JASDriverIF", true], - ["JSystem/JAudio/JAS/JASDSPChannel", false], - ["JSystem/JAudio/JAS/JASDSPInterface", true], - ["JSystem/JAudio/JAS/JASAudioThread", true], - ["JSystem/JAudio/JAS/JASCalc", true], - ["JSystem/JAudio/JAS/JASCallback", true], - ["JSystem/JAudio/JAS/JASCmdStack", true], - ["JSystem/JAudio/JAS/JASDvdThread", true], - ["JSystem/JAudio/JAS/JASHeapCtrl", true], - ["JSystem/JAudio/JAS/JASProbe", true], - ["JSystem/JAudio/JAS/JASResArcLoader", true], - ["JSystem/JAudio/JAS/JASReport", true], - ["JSystem/JAudio/JAS/JASAiCtrl", false], - ["JSystem/JAudio/JAS/JASChannelUpdater", true], - ["JSystem/JAudio/JAS/JASTaskThread", false], - ["JSystem/JAudio/JAS/JASAramStream", false] - ] - }, - { - "lib": "JAudio_DSP", - "cflags": "$cflags_pikmin -lang=c++ -func_align 32 -inline noauto -common off -use_lmw_stmw off -O4,s", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JAudio/dsp/dspproc", true], - ["JSystem/JAudio/dsp/dsptask", true], - ["JSystem/JAudio/dsp/osdsp", true], - ["JSystem/JAudio/dsp/osdsp_task", true] - ] - }, - { - "lib": "JAudio_JAI", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JAudio/JAI/JAIAnimation", false], - ["JSystem/JAudio/JAI/JAIBankWave", true], - ["JSystem/JAudio/JAI/JAIBasic", false], - ["JSystem/JAudio/JAI/JAIConst", true], - ["JSystem/JAudio/JAI/JAIDummyObject", true], - ["JSystem/JAudio/JAI/JAIFx", false], - ["JSystem/JAudio/JAI/JAIGlobalParameter", true], - ["JSystem/JAudio/JAI/JAIInitData", false], - ["JSystem/JAudio/JAI/JAISeMgr", false], - ["JSystem/JAudio/JAI/JAISequenceHeap", false], - ["JSystem/JAudio/JAI/JAISequenceMgr", false], - ["JSystem/JAudio/JAI/JAISound", false], - ["JSystem/JAudio/JAI/JAISoundTable", false], - ["JSystem/JAudio/JAI/JAIStreamMgr", false], - ["JSystem/JAudio/JAI/JAISystemInterface", true], - ["JSystem/JAudio/JAI/JAIObject", true] - ] - }, - { - "lib": "JAudio_JAD", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [["JSystem/JAudio/JAD/JADHioNode", true]] - }, - { - "lib": "JAudio_JAL", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [["JSystem/JAudio/JAL/JALCalc", true]] - }, - { - "lib": "JAudio_JAU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["JSystem/JAudio/JAU/JAUData", true], - ["JSystem/JAudio/JAU/JAUDataMgr", true] - ] - }, - { - "lib": "TRK_MINNOW_DOLPHIN", - "mw_version": "2.6", - "cflags": "$cflags_base -inline deferred -sdata 0 -sdata2 0", - "host": false, - "objects": [ - ["Dolphin/TRK_MINNOW_DOLPHIN/mainloop", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/nubevent", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/nubinit", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/msg", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/msgbuf", true], - [ - "Dolphin/TRK_MINNOW_DOLPHIN/serpoll", - true, - { - "cflags": "$cflags_base -inline deferred -sdata 8" - } - ], - ["Dolphin/TRK_MINNOW_DOLPHIN/usr_put", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/dispatch", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/msghndlr", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/support", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/mutex_TRK", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/notify", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/flush_cache", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/mem_TRK", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/targimpl", true], - [ - "Dolphin/TRK_MINNOW_DOLPHIN/targsupp", - true, - { - "cflags": "$cflags_base -inline deferred -func_align 32" - } - ], - ["Dolphin/TRK_MINNOW_DOLPHIN/mpc_7xx_603e", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/__exception", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/main_TRK", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/targcont", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/target_options", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/mslsupp", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/UDP_Stubs", true], - [ - "Dolphin/TRK_MINNOW_DOLPHIN/ddh/main", - true, - { - "cflags": "$cflags_base -inline deferred -sdata 8" - } - ], - ["Dolphin/TRK_MINNOW_DOLPHIN/CircleBuffer", true], - [ - "Dolphin/TRK_MINNOW_DOLPHIN/gdev/main", - true, - { - "cflags": "$cflags_base -inline deferred -sdata 8" - } - ], - ["Dolphin/TRK_MINNOW_DOLPHIN/MWTrace", true], - ["Dolphin/TRK_MINNOW_DOLPHIN/MWCriticalSection_gc", true] - ] - }, - { - "lib": "Runtime", - "mw_version": "2.6", - "cflags": "$cflags_base -inline deferred", - "host": false, - "objects": [ - ["Dolphin/Runtime/__va_arg", true], - ["Dolphin/Runtime/global_destructor_chain", true], - ["Dolphin/Runtime/CPlusLibPPC", true], - [ - "Dolphin/Runtime/NMWException", - true, - { - "cflags": "$cflags_base -inline deferred -Cpp_exceptions on" - } - ], - ["Dolphin/Runtime/ptmf", true], - ["Dolphin/Runtime/runtime", true], - ["Dolphin/Runtime/__init_cpp_exceptions", true], - [ - "Dolphin/Runtime/Gecko_ExceptionPPC", - true, - { - "cflags": "$cflags_base -inline deferred -Cpp_exceptions on" - } - ], - ["Dolphin/Runtime/GCN_mem_alloc", true], - ["Dolphin/Runtime/__mem", true] - ] - }, - { - "lib": "MSL_C", - "mw_version": "2.6", - "cflags": "$cflags_base -inline deferred", - "host": false, - "objects": [ - ["Dolphin/MSL_C/PPC_EABI/abort_exit", true], - ["Dolphin/MSL_C/MSL_Common/alloc", true], - ["Dolphin/MSL_C/MSL_Common/ansi_files", true], - [ - "Dolphin/MSL_C/MSL_Common_Embedded/ansi_fp", - true, - { - "cflags": "$cflags_base -inline deferred -str pool" - } - ], - ["Dolphin/MSL_C/MSL_Common/arith", true], - ["Dolphin/MSL_C/MSL_Common/buffer_io", true], - ["Dolphin/MSL_C/PPC_EABI/critical_regions.gamecube", true], - ["Dolphin/MSL_C/MSL_Common/ctype", true], - ["Dolphin/MSL_C/MSL_Common/direct_io", true], - ["Dolphin/MSL_C/MSL_Common/errno", true], - ["Dolphin/MSL_C/MSL_Common/file_io", true], - ["Dolphin/MSL_C/MSL_Common/FILE_POS", true], - [ - "Dolphin/MSL_C/MSL_Common/locale", - true, - { - "cflags": "$cflags_base -str pool" - } - ], - [ - "Dolphin/MSL_C/MSL_Common/mbstring", - true, - { - "cflags": "$cflags_base -inline noauto,deferred" - } - ], - ["Dolphin/MSL_C/MSL_Common/mem", true], - ["Dolphin/MSL_C/MSL_Common/mem_funcs", true], - ["Dolphin/MSL_C/MSL_Common/misc_io", true], - [ - "Dolphin/MSL_C/MSL_Common/printf", - true, - { - "cflags": "$cflags_base -inline deferred -str pool" - } - ], - ["Dolphin/MSL_C/MSL_Common/rand", true], - ["Dolphin/MSL_C/MSL_Common/float", true], - ["Dolphin/MSL_C/MSL_Common/scanf", true], - ["Dolphin/MSL_C/MSL_Common/string", true], - ["Dolphin/MSL_C/MSL_Common/strtold", true], - ["Dolphin/MSL_C/MSL_Common/strtoul", true], - ["Dolphin/MSL_C/MSL_Common/wchar_io", true], - ["Dolphin/MSL_C/PPC_EABI/uart_console_io_gcn", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_asin", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_atan2", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_exp", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_fmod", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_log10", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_pow", true], - [ - "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_rem_pio2", - true - ], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_cos", true], - [ - "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_rem_pio2", - true - ], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_sin", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/k_tan", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_atan", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ceil", true], - [ - "Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_copysign", - true - ], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_cos", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_floor", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_frexp", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_ldexp", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_modf", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_sin", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/s_tan", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_asin", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_atan2", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_exp", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_fmod", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_log10", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_pow", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/e_sqrt", true], - ["Dolphin/MSL_C/PPC_EABI/math_ppc", true], - ["Dolphin/MSL_C/MSL_Common_Embedded/Math/Double_precision/w_sqrt", true], - ["Dolphin/MSL_C/MSL_Common/extras", true] - ] - }, - { - "lib": "OdemuExi2", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -inline deferred", - "host": false, - "objects": [["Dolphin/OdemuExi2/DebuggerDriver", true]] - }, - { - "lib": "vi", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [["Dolphin/vi/vi", true]] - }, - { - "lib": "amcstubs", - "mw_version": "1.2.5n", - "cflags": "$cflags_base", - "host": false, - "objects": [["Dolphin/amcstubs/AmcExi2Stubs", true]] - }, - { - "lib": "ar", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/ar/ar", true], - ["Dolphin/ar/arq", true] - ] - }, - { - "lib": "base", - "mw_version": "1.2.5n", - "cflags": "$cflags_base", - "host": false, - "objects": [["Dolphin/base/PPCArch", true]] - }, - { - "lib": "card", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/card/CARDBios", true], - ["Dolphin/card/CARDUnlock", true], - ["Dolphin/card/CARDRdwr", true], - ["Dolphin/card/CARDBlock", true], - ["Dolphin/card/CARDDir", true], - ["Dolphin/card/CARDCheck", true], - ["Dolphin/card/CARDMount", true], - ["Dolphin/card/CARDFormat", true], - ["Dolphin/card/CARDOpen", true], - ["Dolphin/card/CARDCreate", true], - ["Dolphin/card/CARDRead", true], - ["Dolphin/card/CARDWrite", true], - ["Dolphin/card/CARDStat", true], - ["Dolphin/card/CARDNet", true] - ] - }, - { - "lib": "db", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [["Dolphin/db/db", true]] - }, - { - "lib": "dsp", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/dsp/dsp", true], - ["Dolphin/dsp/dsp_debug", true], - ["Dolphin/dsp/dsp_task", true] - ] - }, - { - "lib": "dvd", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/dvd/dvdlow", true], - ["Dolphin/dvd/dvdfs", true], - ["Dolphin/dvd/dvd", true], - ["Dolphin/dvd/dvdqueue", true], - ["Dolphin/dvd/dvderror", true], - ["Dolphin/dvd/dvdidutils", true], - ["Dolphin/dvd/dvdFatal", true], - ["Dolphin/dvd/fstload", true] - ] - }, - { - "lib": "exi", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/exi/EXIBios", true], - ["Dolphin/exi/EXIUart", true] - ] - }, - { - "lib": "gd", - "mw_version": "1.2.5n", - "cflags": "$cflags_base", - "host": false, - "objects": [ - ["Dolphin/gd/GDBase", true], - ["Dolphin/gd/GDGeometry", true] - ] - }, - { - "lib": "gx", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly -fp_contract off", - "host": false, - "objects": [ - ["Dolphin/gx/GXInit", true], - ["Dolphin/gx/GXFifo", true], - ["Dolphin/gx/GXAttr", true], - ["Dolphin/gx/GXMisc", true], - ["Dolphin/gx/GXGeometry", true], - ["Dolphin/gx/GXFrameBuf", true], - ["Dolphin/gx/GXLight", true], - ["Dolphin/gx/GXTexture", true], - ["Dolphin/gx/GXBump", true], - ["Dolphin/gx/GXTev", true], - ["Dolphin/gx/GXPixel", true], - ["Dolphin/gx/GXDisplayList", true], - ["Dolphin/gx/GXTransform", true], - ["Dolphin/gx/GXPerf", true] - ] - }, - { - "lib": "mtx", - "mw_version": "1.2.5n", - "cflags": "$cflags_base", - "host": false, - "objects": [ - ["Dolphin/mtx/mtx", true], - ["Dolphin/mtx/mtxvec", true], - ["Dolphin/mtx/mtx44", true], - ["Dolphin/mtx/vec", true] - ] - }, - { - "lib": "odenotstub", - "mw_version": "1.2.5n", - "cflags": "$cflags_base", - "host": false, - "objects": [["Dolphin/odenotstub/odenotstub", true]] - }, - { - "lib": "os", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/os/OS", true], - ["Dolphin/os/OSAlarm", true], - ["Dolphin/os/OSAlloc", true], - ["Dolphin/os/OSArena", true], - ["Dolphin/os/OSAudioSystem", true], - ["Dolphin/os/OSCache", true], - ["Dolphin/os/OSContext", true], - ["Dolphin/os/OSError", true], - ["Dolphin/os/OSFont", true], - ["Dolphin/os/OSInterrupt", true], - ["Dolphin/os/OSLink", true], - ["Dolphin/os/OSMessage", true], - ["Dolphin/os/OSMemory", true], - ["Dolphin/os/OSMutex", true], - ["Dolphin/os/OSReboot", true], - ["Dolphin/os/OSReset", true], - ["Dolphin/os/OSResetSW", true], - ["Dolphin/os/OSRtc", true], - ["Dolphin/os/OSSync", true], - ["Dolphin/os/OSThread", true], - ["Dolphin/os/OSTime", true], - ["Dolphin/os/__start", true], - ["Dolphin/os/__ppc_eabi_init", true] - ] - }, - { - "lib": "pad", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -fp_contract off -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/pad/Padclamp", true], - ["Dolphin/pad/Pad", true] - ] - }, - { - "lib": "si", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/si/SIBios", true], - ["Dolphin/si/SISamplingRate", true] - ] - }, - { - "lib": "ai", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [["Dolphin/ai/ai", true]] - }, - { - "lib": "thp", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/thp/THPDec", true], - ["Dolphin/thp/THPAudio", true] - ] - }, - { - "lib": "gba", - "mw_version": "1.2.5n", - "cflags": "$cflags_base -str noreadonly", - "host": false, - "objects": [ - ["Dolphin/gba/GBA", true], - ["Dolphin/gba/GBARead", true], - ["Dolphin/gba/GBAWrite", true], - ["Dolphin/gba/GBAXfer", true] - ] - }, - { - "lib": "plugProjectYamashitaU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectYamashitaU/enemyBase", true], - ["plugProjectYamashitaU/pelplant", true], - ["plugProjectYamashitaU/pelplantState", true], - ["plugProjectYamashitaU/enemyInteractBattle", true], - ["plugProjectYamashitaU/generalEnemyMgr", true], - ["plugProjectYamashitaU/kochappyAnimator", true], - ["plugProjectYamashitaU/kochappy", true], - ["plugProjectYamashitaU/kochappyState", false], - ["plugProjectYamashitaU/kochappyMgr", true], - ["plugProjectYamashitaU/enemyAction", false], - ["plugProjectYamashitaU/chappy", true], - ["plugProjectYamashitaU/chappyState", false], - ["plugProjectYamashitaU/chappyAnimator", true], - ["plugProjectYamashitaU/chappyMgr", true], - ["plugProjectYamashitaU/lifeGaugeMgr", true], - ["plugProjectYamashitaU/carryInfoMgr", true], - ["plugProjectYamashitaU/gameLightMgr", false], - ["plugProjectYamashitaU/vtxAnm", false], - ["plugProjectYamashitaU/enemyInfo", true], - ["plugProjectYamashitaU/farm", true], - ["plugProjectYamashitaU/farmMgr", true], - ["plugProjectYamashitaU/genEnemy", true], - ["plugProjectYamashitaU/timeMgr", true], - ["plugProjectYamashitaU/pelplantGenerator", true], - ["plugProjectYamashitaU/enemyInteractActions", true], - ["plugProjectYamashitaU/enemyAnimatorBase", true], - ["plugProjectYamashitaU/enemyStoneMgr", true], - ["plugProjectYamashitaU/enemyStoenInfo", true], - ["plugProjectYamashitaU/enemyStoneDrawInfo", false], - ["plugProjectYamashitaU/enemyStoneObj", true], - ["plugProjectYamashitaU/enemyParmsBase", true], - ["plugProjectYamashitaU/walkSmokeEffect", true], - ["plugProjectYamashitaU/ChappyBaseMgr", true], - ["plugProjectYamashitaU/ChappyBase", true], - ["plugProjectYamashitaU/BlueChappyMgr", true], - ["plugProjectYamashitaU/BlueChappy", true], - ["plugProjectYamashitaU/YellowChappyMgr", true], - ["plugProjectYamashitaU/YellowChappy", true], - ["plugProjectYamashitaU/BlueKochappyMgr", true], - ["plugProjectYamashitaU/BlueKochappy", true], - ["plugProjectYamashitaU/YellowKochappy", true], - ["plugProjectYamashitaU/YellowKochappyMgr", true], - ["plugProjectYamashitaU/KochappyBaseMgr", true], - ["plugProjectYamashitaU/KochappyBase", true], - ["plugProjectYamashitaU/enemyBlendAnimatorBase", true], - ["plugProjectYamashitaU/enemyPelletInfo", true], - ["plugProjectYamashitaU/enemyEffectNode", true], - ["plugProjectYamashitaU/enemyMgrBase", true], - ["plugProjectYamashitaU/enemyFSM", true], - ["plugProjectYamashitaU/singleGS_ZukanParms", false], - ["plugProjectYamashitaU/treasureLightMgr", true], - ["plugProjectYamashitaU/effectAnimator", true] - ] - }, - { - "lib": "plugProjectKandoU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectKandoU/pikiAnimator", true], - ["plugProjectKandoU/collinfo", false], - ["plugProjectKandoU/gameDynamics", false], - ["plugProjectKandoU/creature", true], - ["plugProjectKandoU/fakePiki", false], - ["plugProjectKandoU/navi", false], - ["plugProjectKandoU/piki", false], - ["plugProjectKandoU/baseGameSection", false], - ["plugProjectKandoU/singleGameSection", true], - ["plugProjectKandoU/cellPyramid", false], - ["plugProjectKandoU/naviMgr", true], - ["plugProjectKandoU/pikiMgr", true], - ["plugProjectKandoU/mapMgr", true], - ["plugProjectKandoU/baseHIOSection", true], - ["plugProjectKandoU/naviWhistle", false], - ["plugProjectKandoU/pelletMgr", false], - ["plugProjectKandoU/routeMgr", false], - ["plugProjectKandoU/onyonMgr", true], - ["plugProjectKandoU/objectTypes", true], - ["plugProjectKandoU/naviState", false], - ["plugProjectKandoU/pikiState", false], - ["plugProjectKandoU/interactPiki", true], - ["plugProjectKandoU/gameCPlate", false], - ["plugProjectKandoU/updateMgr", true], - ["plugProjectKandoU/aiAction", true], - ["plugProjectKandoU/aiPrimitives", false], - ["plugProjectKandoU/aiFormation", false], - ["plugProjectKandoU/creatureStick", true], - ["plugProjectKandoU/interactBattle", true], - ["plugProjectKandoU/aiFree", true], - ["plugProjectKandoU/aiAttack", true], - ["plugProjectKandoU/aiTransport", true], - ["plugProjectKandoU/aiEnter", false], - ["plugProjectKandoU/pathfinder", false], - ["plugProjectKandoU/pelletState", false], - ["plugProjectKandoU/dynCreature", false], - ["plugProjectKandoU/gameGenerator", true], - ["plugProjectKandoU/genPiki", true], - ["plugProjectKandoU/genNavi", true], - ["plugProjectKandoU/genItem", true], - ["plugProjectKandoU/gameStages", true], - ["plugProjectKandoU/gameSeaMgr", true], - ["plugProjectKandoU/pikiAI", true], - ["plugProjectKandoU/pelletConfig", true], - ["plugProjectKandoU/gameFootmark", true], - ["plugProjectKandoU/gameSystem", true], - ["plugProjectKandoU/aiConstants", true], - ["plugProjectKandoU/gameMapParts", false], - ["plugProjectKandoU/vsGameSection", true], - ["plugProjectKandoU/gamePlatMgr", true], - ["plugProjectKandoU/itemGate", false], - ["plugProjectKandoU/itemMgr", true], - ["plugProjectKandoU/aiBreakGate", false], - ["plugProjectKandoU/gameStat", true], - ["plugProjectKandoU/itemHole", true], - ["plugProjectKandoU/itemHoney", false], - ["plugProjectKandoU/gameCaveInfo", false], - ["plugProjectKandoU/creatureLOD", false], - ["plugProjectKandoU/interactNavi", true], - ["plugProjectKandoU/itemPikihead", false], - ["plugProjectKandoU/itemPlant", false], - ["plugProjectKandoU/itemRock", true], - ["plugProjectKandoU/aiBreakRock", true], - ["plugProjectKandoU/aiCrop", true], - ["plugProjectKandoU/registItem", true], - ["plugProjectKandoU/gamePlayData", false], - ["plugProjectKandoU/itemCave", false], - ["plugProjectKandoU/itemBigFountain", true], - ["plugProjectKandoU/itemBridge", false], - ["plugProjectKandoU/pikiContainer", true], - ["plugProjectKandoU/gameGeneratorCache", true], - ["plugProjectKandoU/itemTreasure", true], - ["plugProjectKandoU/itemDownFloor", true], - ["plugProjectKandoU/kandoLib", true], - ["plugProjectKandoU/itemBarrel", true], - ["plugProjectKandoU/pelletNumber", true], - ["plugProjectKandoU/pelletCarcass", true], - ["plugProjectKandoU/pelletFruit", true], - ["plugProjectKandoU/pelletOtakara", true], - ["plugProjectKandoU/genPellet", true], - ["plugProjectKandoU/pelletItem", true], - ["plugProjectKandoU/mapMgrTraceMove", true], - ["plugProjectKandoU/efxModelObjects", true], - ["plugProjectKandoU/itemUjamushi", false], - ["plugProjectKandoU/aiWeed", true], - ["plugProjectKandoU/flockMgr", false], - ["plugProjectKandoU/itemWeed", false], - ["plugProjectKandoU/aiBridge", true], - ["plugProjectKandoU/aiTeki", true], - ["plugProjectKandoU/singleGS_MainGame", true], - ["plugProjectKandoU/singleGS_CaveGame", true], - ["plugProjectKandoU/singleGS_MainResult", true], - ["plugProjectKandoU/singleGS_CaveResult", false], - ["plugProjectKandoU/singleGS_WorldMap", true], - ["plugProjectKandoU/singleGS_FileSelect", true], - ["plugProjectKandoU/gamePlayDataMemCard", false], - ["plugProjectKandoU/baseHIOparms", true], - ["plugProjectKandoU/radarInfo", true], - ["plugProjectKandoU/singleGS_Movie", true], - ["plugProjectKandoU/navi_demoCheck", true], - ["plugProjectKandoU/singleGS_Zukan", false], - ["plugProjectKandoU/gameResultTexMgr", true], - ["plugProjectKandoU/gamePelletList", true], - ["plugProjectKandoU/vsGS_Title", true], - ["plugProjectKandoU/vsGS_Game", true], - ["plugProjectKandoU/vsGS_Result", true], - ["plugProjectKandoU/vsGS_Load", true], - ["plugProjectKandoU/vsStageData", true], - ["plugProjectKandoU/cellMgrParms", true], - ["plugProjectKandoU/cellIterator", false], - ["plugProjectKandoU/vsGS_VSGame", true], - ["plugProjectKandoU/gameSoundEvent", true], - ["plugProjectKandoU/aiBattle", true], - ["plugProjectKandoU/gameDeathCount", true], - ["plugProjectKandoU/aiBore", true], - ["plugProjectKandoU/mapPartsView", true], - ["plugProjectKandoU/singleGS_Ending", true], - ["plugProjectKandoU/gameIconTexture", true], - ["plugProjectKandoU/gameTekiStat", true], - ["plugProjectKandoU/gameHighscore", true], - ["plugProjectKandoU/gamePlayCommonData", true], - ["plugProjectKandoU/pelletCarry", true], - ["plugProjectKandoU/gameChallenge2D", true], - ["plugProjectKandoU/vsTekiMgr", true], - ["plugProjectKandoU/vsCardMgr", false], - ["plugProjectKandoU/aiRescue", true], - ["plugProjectKandoU/baseGameSectionDraw", true], - ["plugProjectKandoU/singleGS_Load", true], - ["plugProjectKandoU/singleGS_DayEnd", true], - ["plugProjectKandoU/baseGameSectionKantei", true], - ["plugProjectKandoU/sweepPrune", true], - ["plugProjectKandoU/texCaster", false], - ["plugProjectKandoU/vsCoinOtakaraName", true], - ["plugProjectKandoU/pelletBirthBuffer", true], - ["plugProjectKandoU/vsFifo", true] - ] - }, - { - "lib": "plugProjectNishimuraU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectNishimuraU/nslibmath", false], - ["plugProjectNishimuraU/ShadowCylinder", true], - ["plugProjectNishimuraU/playCamera", false], - ["plugProjectNishimuraU/shadowMgr", true], - ["plugProjectNishimuraU/MapUnit", true], - ["plugProjectNishimuraU/MapNode", true], - ["plugProjectNishimuraU/EnemyUnit", true], - ["plugProjectNishimuraU/RandMapMgr", false], - ["plugProjectNishimuraU/RandMapDraw", true], - ["plugProjectNishimuraU/RandMapChecker", true], - ["plugProjectNishimuraU/RandMapUnit", false], - ["plugProjectNishimuraU/RandEnemyUnit", false], - ["plugProjectNishimuraU/DoorNode", true], - ["plugProjectNishimuraU/MapUnitGenerator", true], - ["plugProjectNishimuraU/MapCreator", true], - ["plugProjectNishimuraU/RandMapScore", false], - ["plugProjectNishimuraU/ItemUnit", true], - ["plugProjectNishimuraU/RandItemUnit", true], - ["plugProjectNishimuraU/GateUnit", true], - ["plugProjectNishimuraU/RandGateUnit", true], - ["plugProjectNishimuraU/ObjectLayout", true], - ["plugProjectNishimuraU/CameraMgr", true], - ["plugProjectNishimuraU/ContRumble", true], - ["plugProjectNishimuraU/RumbleMgr", true], - ["plugProjectNishimuraU/PomAnimator", true], - ["plugProjectNishimuraU/PomMgr", true], - ["plugProjectNishimuraU/Pom", true], - ["plugProjectNishimuraU/PomState", true], - ["plugProjectNishimuraU/FrogState", false], - ["plugProjectNishimuraU/FrogAnimator", true], - ["plugProjectNishimuraU/FrogMgr", true], - ["plugProjectNishimuraU/Frog", true], - ["plugProjectNishimuraU/UjibMgr", true], - ["plugProjectNishimuraU/Ujib", false], - ["plugProjectNishimuraU/UjibState", false], - ["plugProjectNishimuraU/UjibAnimator", true], - ["plugProjectNishimuraU/KoganeState", true], - ["plugProjectNishimuraU/KoganeMgr", true], - ["plugProjectNishimuraU/Kogane", false], - ["plugProjectNishimuraU/KoganeAnimator", true], - ["plugProjectNishimuraU/QurioneState", true], - ["plugProjectNishimuraU/QurioneMgr", true], - ["plugProjectNishimuraU/Qurione", true], - ["plugProjectNishimuraU/QurioneAnimator", true], - ["plugProjectNishimuraU/RumbleData", true], - ["plugProjectNishimuraU/MaroFrogMgr", true], - ["plugProjectNishimuraU/MaroFrog", true], - ["plugProjectNishimuraU/RockState", true], - ["plugProjectNishimuraU/RockAnimator", true], - ["plugProjectNishimuraU/RockMgr", true], - ["plugProjectNishimuraU/Rock", false], - ["plugProjectNishimuraU/UjiaState", false], - ["plugProjectNishimuraU/UjiaAnimator", true], - ["plugProjectNishimuraU/UjiaMgr", true], - ["plugProjectNishimuraU/Ujia", false], - ["plugProjectNishimuraU/TobiState", false], - ["plugProjectNishimuraU/TobiAnimator", true], - ["plugProjectNishimuraU/TobiMgr", true], - ["plugProjectNishimuraU/Tobi", false], - ["plugProjectNishimuraU/HibaState", true], - ["plugProjectNishimuraU/HibaAnimator", true], - ["plugProjectNishimuraU/HibaMgr", true], - ["plugProjectNishimuraU/Hiba", true], - ["plugProjectNishimuraU/GasHibaState", true], - ["plugProjectNishimuraU/GasHibaAnimator", true], - ["plugProjectNishimuraU/GasHibaMgr", true], - ["plugProjectNishimuraU/GasHiba", true], - ["plugProjectNishimuraU/ElecHibaState", true], - ["plugProjectNishimuraU/ElecHibaAnimator", true], - ["plugProjectNishimuraU/ElecHibaMgr", true], - ["plugProjectNishimuraU/ElecHiba", false], - ["plugProjectNishimuraU/SaraiState", false], - ["plugProjectNishimuraU/SaraiAnimator", true], - ["plugProjectNishimuraU/SaraiMgr", true], - ["plugProjectNishimuraU/Sarai", true], - ["plugProjectNishimuraU/TankState", false], - ["plugProjectNishimuraU/TankAnimator", true], - ["plugProjectNishimuraU/TankMgr", true], - ["plugProjectNishimuraU/Tank", true], - ["plugProjectNishimuraU/CatfishMgr", true], - ["plugProjectNishimuraU/Catfish", true], - ["plugProjectNishimuraU/TadpoleState", true], - ["plugProjectNishimuraU/TadpoleAnimator", true], - ["plugProjectNishimuraU/TadpoleMgr", true], - ["plugProjectNishimuraU/Tadpole", true], - ["plugProjectNishimuraU/ElecBugState", true], - ["plugProjectNishimuraU/ElecBugAnimator", true], - ["plugProjectNishimuraU/ElecBugMgr", true], - ["plugProjectNishimuraU/ElecBug", false], - ["plugProjectNishimuraU/WtankMgr", true], - ["plugProjectNishimuraU/Wtank", true], - ["plugProjectNishimuraU/ArmorMgr", true], - ["plugProjectNishimuraU/Armor", false], - ["plugProjectNishimuraU/Mar", false], - ["plugProjectNishimuraU/MarAnimator", true], - ["plugProjectNishimuraU/MarMgr", true], - ["plugProjectNishimuraU/MarState", false], - ["plugProjectNishimuraU/WealthyMgr", true], - ["plugProjectNishimuraU/Wealthy", true], - ["plugProjectNishimuraU/FartMgr", true], - ["plugProjectNishimuraU/Fart", true], - ["plugProjectNishimuraU/ArmorState", false], - ["plugProjectNishimuraU/ArmorAnimator", true], - ["plugProjectNishimuraU/QueenState", false], - ["plugProjectNishimuraU/QueenAnimator", true], - ["plugProjectNishimuraU/QueenMgr", true], - ["plugProjectNishimuraU/Queen", true], - ["plugProjectNishimuraU/BabyState", false], - ["plugProjectNishimuraU/BabyAnimator", true], - ["plugProjectNishimuraU/BabyMgr", true], - ["plugProjectNishimuraU/Baby", true], - ["plugProjectNishimuraU/DemonMgr", true], - ["plugProjectNishimuraU/Demon", true], - ["plugProjectNishimuraU/QueenShadow", true], - ["plugProjectNishimuraU/FireChappyMgr", true], - ["plugProjectNishimuraU/FireChappy", true], - ["plugProjectNishimuraU/SnakeCrowState", false], - ["plugProjectNishimuraU/SnakeCrowAnimator", true], - ["plugProjectNishimuraU/SnakeCrowMgr", true], - ["plugProjectNishimuraU/SnakeCrow", false], - ["plugProjectNishimuraU/KumaChappyState", false], - ["plugProjectNishimuraU/KumaChappyAnimator", true], - ["plugProjectNishimuraU/KumaChappyMgr", true], - ["plugProjectNishimuraU/KumaChappy", false], - ["plugProjectNishimuraU/FuefukiState", true], - ["plugProjectNishimuraU/FuefukiAnimator", true], - ["plugProjectNishimuraU/FuefukiMgr", true], - ["plugProjectNishimuraU/Fuefuki", true], - ["plugProjectNishimuraU/KoganemushiMgr", true], - ["plugProjectNishimuraU/Koganemushi", true], - ["plugProjectNishimuraU/FtankMgr", true], - ["plugProjectNishimuraU/Ftank", true], - ["plugProjectNishimuraU/RandPlantUnit", true], - ["plugProjectNishimuraU/HanachirashiState", false], - ["plugProjectNishimuraU/HanachirashiAnimator", true], - ["plugProjectNishimuraU/HanachirashiMgr", true], - ["plugProjectNishimuraU/Hanachirashi", false], - ["plugProjectNishimuraU/DamagumoState", true], - ["plugProjectNishimuraU/DamagumoAnimator", true], - ["plugProjectNishimuraU/DamagumoMgr", true], - ["plugProjectNishimuraU/Damagumo", true], - ["plugProjectNishimuraU/IKSystemMgr", true], - ["plugProjectNishimuraU/IKSystemBase", true], - ["plugProjectNishimuraU/DamagumoShadow", true], - ["plugProjectNishimuraU/KurageState", true], - ["plugProjectNishimuraU/KurageAnimator", true], - ["plugProjectNishimuraU/KurageMgr", true], - ["plugProjectNishimuraU/Kurage", true], - ["plugProjectNishimuraU/BombSaraiState", false], - ["plugProjectNishimuraU/BombSaraiAnimator", true], - ["plugProjectNishimuraU/BombSaraiMgr", true], - ["plugProjectNishimuraU/BombSarai", true], - ["plugProjectNishimuraU/OtakaraBaseState", true], - ["plugProjectNishimuraU/OtakaraBaseAnimator", true], - ["plugProjectNishimuraU/OtakaraBaseMgr", true], - ["plugProjectNishimuraU/OtakaraBase", true], - ["plugProjectNishimuraU/FireOtakaraMgr", true], - ["plugProjectNishimuraU/FireOtakara", true], - ["plugProjectNishimuraU/WaterOtakaraMgr", true], - ["plugProjectNishimuraU/WaterOtakara", true], - ["plugProjectNishimuraU/GasOtakaraMgr", true], - ["plugProjectNishimuraU/GasOtakara", true], - ["plugProjectNishimuraU/ElecOtakaraMgr", true], - ["plugProjectNishimuraU/ElecOtakara", true], - ["plugProjectNishimuraU/ImomushiState", false], - ["plugProjectNishimuraU/ImomushiAnimator", true], - ["plugProjectNishimuraU/ImomushiMgr", true], - ["plugProjectNishimuraU/Imomushi", false], - ["plugProjectNishimuraU/HoudaiState", true], - ["plugProjectNishimuraU/HoudaiAnimator", true], - ["plugProjectNishimuraU/HoudaiMgr", true], - ["plugProjectNishimuraU/HoudaiShadow", true], - ["plugProjectNishimuraU/Houdai", true], - ["plugProjectNishimuraU/HoudaiShotGun", false], - ["plugProjectNishimuraU/LeafChappyMgr", true], - ["plugProjectNishimuraU/LeafChappy", true], - ["plugProjectNishimuraU/BigFootState", true], - ["plugProjectNishimuraU/BigFootAnimator", true], - ["plugProjectNishimuraU/BigFootMgr", true], - ["plugProjectNishimuraU/BigFootShadow", true], - ["plugProjectNishimuraU/BigFoot", true], - ["plugProjectNishimuraU/SnakeWholeState", true], - ["plugProjectNishimuraU/SnakeWholeAnimator", true], - ["plugProjectNishimuraU/SnakeWholeMgr", true], - ["plugProjectNishimuraU/SnakeWhole", false], - ["plugProjectNishimuraU/SnakeJointMgr", false], - ["plugProjectNishimuraU/OniKurageState", true], - ["plugProjectNishimuraU/OniKurageAnimator", true], - ["plugProjectNishimuraU/OniKurageMgr", true], - ["plugProjectNishimuraU/OniKurage", false], - ["plugProjectNishimuraU/BigTreasureState", true], - ["plugProjectNishimuraU/BigTreasureMgr", true], - ["plugProjectNishimuraU/BigTreasureShadow", false], - ["plugProjectNishimuraU/BigTreasure", true], - ["plugProjectNishimuraU/KabutoState", false], - ["plugProjectNishimuraU/KabutoAnimator", true], - ["plugProjectNishimuraU/KabutoMgr", true], - ["plugProjectNishimuraU/Kabuto", false], - ["plugProjectNishimuraU/KumaKochappyState", false], - ["plugProjectNishimuraU/KumaKochappyAnimator", true], - ["plugProjectNishimuraU/KumaKochappyMgr", true], - ["plugProjectNishimuraU/KumaKochappy", true], - ["plugProjectNishimuraU/MiniHoudaiState", false], - ["plugProjectNishimuraU/MiniHoudaiAnimator", true], - ["plugProjectNishimuraU/MiniHoudaiMgr", true], - ["plugProjectNishimuraU/MiniHoudai", false], - ["plugProjectNishimuraU/MiniHoudaiShotGun", false], - ["plugProjectNishimuraU/SokkuriState", true], - ["plugProjectNishimuraU/SokkuriAnimator", true], - ["plugProjectNishimuraU/SokkuriMgr", true], - ["plugProjectNishimuraU/Sokkuri", true], - ["plugProjectNishimuraU/JointShadowBase", false], - ["plugProjectNishimuraU/UmimushiShadow", false], - ["plugProjectNishimuraU/HanaMgr", true], - ["plugProjectNishimuraU/Hana", true], - ["plugProjectNishimuraU/BigTreasureAttack", false], - ["plugProjectNishimuraU/SnakeCrowShadow", false], - ["plugProjectNishimuraU/SnakeWholeShadow", false], - ["plugProjectNishimuraU/BombOtakaraMgr", true], - ["plugProjectNishimuraU/BombOtakara", true], - ["plugProjectNishimuraU/DangoMushiState", false], - ["plugProjectNishimuraU/DangoMushiMgr", true], - ["plugProjectNishimuraU/DangoMushi", false], - ["plugProjectNishimuraU/GreenKabutoMgr", true], - ["plugProjectNishimuraU/GreenKabuto", true], - ["plugProjectNishimuraU/RedKabutoMgr", true], - ["plugProjectNishimuraU/RedKabuto", true], - ["plugProjectNishimuraU/FixKabutoMgr", true], - ["plugProjectNishimuraU/FixKabuto", true], - ["plugProjectNishimuraU/RandCapEnemyUnit", true], - ["plugProjectNishimuraU/NormMiniHoudaiMgr", true], - ["plugProjectNishimuraU/NormMiniHoudai", true], - ["plugProjectNishimuraU/FixMiniHoudaiMgr", true], - ["plugProjectNishimuraU/FixMiniHoudai", true], - ["plugProjectNishimuraU/TyreShadow", false] - ] - }, - { - "lib": "plugProjectOgawaU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectOgawaU/ogScreen", true], - ["plugProjectOgawaU/ogDopingScreen", true], - ["plugProjectOgawaU/ogPikminCounter", true], - ["plugProjectOgawaU/ogAnime", true], - ["plugProjectOgawaU/ogCounter", true], - ["plugProjectOgawaU/ogLifeGauge", true], - ["plugProjectOgawaU/ogSunMeter", true], - ["plugProjectOgawaU/ogCatchPiki", true], - ["plugProjectOgawaU/ogContenaCounter", true], - ["plugProjectOgawaU/ogMapCounter", true], - ["plugProjectOgawaU/ogAnimTextScreen", true], - ["plugProjectOgawaU/ogCallBackMessage", true], - ["plugProjectOgawaU/ogMenuMgr", false], - ["plugProjectOgawaU/ogCallBackScreen", true], - ["plugProjectOgawaU/ogCounterRV", true], - ["plugProjectOgawaU/ogSE", true], - ["plugProjectOgawaU/ogCounterDay", true], - ["plugProjectOgawaU/testScene", true], - ["plugProjectOgawaU/testObj", true], - ["plugProjectOgawaU/ogSceneGround", true], - ["plugProjectOgawaU/ogObjGround", true], - ["plugProjectOgawaU/ogCopyPane", false], - ["plugProjectOgawaU/ogBloGroup", true], - ["plugProjectOgawaU/DispMemberBase", true], - ["plugProjectOgawaU/ogLib2D", true], - ["plugProjectOgawaU/ogObjSMenuMap", false], - ["plugProjectOgawaU/ogSceneSMenuMap", true], - ["plugProjectOgawaU/ogObjSMenuItem", true], - ["plugProjectOgawaU/ogSceneSMenuItem", true], - ["plugProjectOgawaU/ogSceneSMenuPause", true], - ["plugProjectOgawaU/ogObjSMenuPause", true], - ["plugProjectOgawaU/ogObjSMenuBase", true], - ["plugProjectOgawaU/ogObjCourseName", true], - ["plugProjectOgawaU/ogUtil", true], - ["plugProjectOgawaU/ogSceneCourseName", true], - ["plugProjectOgawaU/ogObjKantei", true], - ["plugProjectOgawaU/ogSceneKantei", true], - ["plugProjectOgawaU/ogObjSpecialItem", true], - ["plugProjectOgawaU/ogSceneSpecialItem", true], - ["plugProjectOgawaU/ogObjFloor", true], - ["plugProjectOgawaU/ogSceneFloor", true], - ["plugProjectOgawaU/ogObjCave", true], - ["plugProjectOgawaU/ogSceneCave", true], - ["plugProjectOgawaU/ogObjAnaDemo", true], - ["plugProjectOgawaU/ogSceneAnaDemo", true], - ["plugProjectOgawaU/ogObjChallenge2P", true], - ["plugProjectOgawaU/ogSceneChallenge2P", true], - ["plugProjectOgawaU/ogObjContena", false], - ["plugProjectOgawaU/ogSceneContena", true], - ["plugProjectOgawaU/ogObjSMenuPauseDoukutu", true], - ["plugProjectOgawaU/ogSceneSMenuPauseDoukutu", true], - ["plugProjectOgawaU/ogObjUfo", true], - ["plugProjectOgawaU/ogSceneUfo", true], - ["plugProjectOgawaU/ogObjSave", true], - ["plugProjectOgawaU/ogSceneSave", true], - ["plugProjectOgawaU/ogObjFinalMsg", true], - ["plugProjectOgawaU/ogSceneFinalMsg", true], - ["plugProjectOgawaU/ogObjVs", false], - ["plugProjectOgawaU/ogSceneVs", true], - ["plugProjectOgawaU/ogObjChallenge1P", true], - ["plugProjectOgawaU/ogSceneChallenge1P", true], - ["plugProjectOgawaU/ogScaleMgr", true], - ["plugProjectOgawaU/ogObjSMenuPauseVs", true], - ["plugProjectOgawaU/ogSceneSMenuPauseVs", true], - ["plugProjectOgawaU/ogFuriko", true], - ["plugProjectOgawaU/ogCounterSlot", false], - ["plugProjectOgawaU/ogObjWorldMapInfoWindow0", true], - ["plugProjectOgawaU/ogSceneWorldMapInfoWindow0", true], - ["plugProjectOgawaU/ogObjWorldMapInfoWindow1", true], - ["plugProjectOgawaU/ogSceneWorldMapInfoWindow1", true], - ["plugProjectOgawaU/ogTotalPokoScreen", true], - ["plugProjectOgawaU/ogObjChallengeBase", true], - ["plugProjectOgawaU/ogSceneChallengeBase", true], - ["plugProjectOgawaU/ogCallBackPicture", true], - ["plugProjectOgawaU/ogDrawAfter", true], - ["plugProjectOgawaU/ogOtakaraSensor", true], - ["plugProjectOgawaU/ogTitleMsg", true], - ["plugProjectOgawaU/ogAngleMgr", true], - ["plugProjectOgawaU/ogSceneSMenuCont", true], - ["plugProjectOgawaU/ogObjSMenuCont", true] - ] - }, - { - "lib": "plugProjectHikinoU", - "cflags": "$cflags_pikmin -sym on", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectHikinoU/PSSeq", false], - ["plugProjectHikinoU/PSGame", false], - ["plugProjectHikinoU/PSSystemIF", true], - ["plugProjectHikinoU/PSAutoBgm", false], - ["plugProjectHikinoU/PSBnkMgr", false], - ["plugProjectHikinoU/PSTaskBase", true], - ["plugProjectHikinoU/PSBgmTask", true], - ["plugProjectHikinoU/PSCreatureMgr", true], - ["plugProjectHikinoU/PSAutoBgm_MeloArranger", true], - ["plugProjectHikinoU/PSSe", false], - ["plugProjectHikinoU/PSSeBase", true], - ["plugProjectHikinoU/PSScene", true], - ["plugProjectHikinoU/PSBgmTrack", true], - ["plugProjectHikinoU/PSDirector", true] - ] - }, - { - "lib": "plugProjectMorimuraU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectMorimuraU/dayEndCount", false], - ["plugProjectMorimuraU/hurryUp2D", false], - ["plugProjectMorimuraU/gameOver2D", true], - ["plugProjectMorimuraU/testBase", true], - ["plugProjectMorimuraU/bombState", true], - ["plugProjectMorimuraU/bombAnimator", true], - ["plugProjectMorimuraU/bombMgr", true], - ["plugProjectMorimuraU/bomb", true], - ["plugProjectMorimuraU/eggState", true], - ["plugProjectMorimuraU/eggAnimator", true], - ["plugProjectMorimuraU/eggMgr", true], - ["plugProjectMorimuraU/egg", true], - ["plugProjectMorimuraU/panModokiState", true], - ["plugProjectMorimuraU/panModokiAnimator", true], - ["plugProjectMorimuraU/panModokiMgr", true], - ["plugProjectMorimuraU/panModoki", false], - ["plugProjectMorimuraU/plantsMgr", true], - ["plugProjectMorimuraU/plantsAnimator", true], - ["plugProjectMorimuraU/plants", true], - ["plugProjectMorimuraU/kingChappyState", false], - ["plugProjectMorimuraU/kingChappyMgr", true], - ["plugProjectMorimuraU/kingChappy", false], - ["plugProjectMorimuraU/miulinState", true], - ["plugProjectMorimuraU/miulinAnimator", true], - ["plugProjectMorimuraU/miulinMgr", true], - ["plugProjectMorimuraU/miulin", false], - ["plugProjectMorimuraU/jigumoState", true], - ["plugProjectMorimuraU/jigumoAnimator", true], - ["plugProjectMorimuraU/jigumoMgr", true], - ["plugProjectMorimuraU/jigumo", false], - ["plugProjectMorimuraU/enemyNestMgr", true], - ["plugProjectMorimuraU/enemyNest", true], - ["plugProjectMorimuraU/tamagoMushiState", true], - ["plugProjectMorimuraU/tamagoMushiAnimator", true], - ["plugProjectMorimuraU/tamagoMushiMgr", true], - ["plugProjectMorimuraU/tamagoMushi", true], - ["plugProjectMorimuraU/zukan2D", false], - ["plugProjectMorimuraU/hiScore2D", false], - ["plugProjectMorimuraU/umiMushiState", true], - ["plugProjectMorimuraU/umiMushiAnimator", true], - ["plugProjectMorimuraU/umiMushiMgr", true], - ["plugProjectMorimuraU/umiMushi", false], - ["plugProjectMorimuraU/shijimiChouState", true], - ["plugProjectMorimuraU/shijimiChouAnimator", true], - ["plugProjectMorimuraU/shijimiChouMgr", true], - ["plugProjectMorimuraU/shijimiChou", false], - ["plugProjectMorimuraU/challengeSelect2D", false], - ["plugProjectMorimuraU/challengeResult2D", false], - ["plugProjectMorimuraU/vsSelect2D", false], - ["plugProjectMorimuraU/mrUtil", true], - ["plugProjectMorimuraU/scrollList", false], - ["plugProjectMorimuraU/mrWindow", true], - ["plugProjectMorimuraU/blackManState", true], - ["plugProjectMorimuraU/blackManAnimator", true], - ["plugProjectMorimuraU/blackManMgr", true], - ["plugProjectMorimuraU/blackMan", false], - ["plugProjectMorimuraU/tyreState", true], - ["plugProjectMorimuraU/tyreAnimator", true], - ["plugProjectMorimuraU/tyreMgr", true], - ["plugProjectMorimuraU/tyre", true] - ] - }, - { - "lib": "plugProjectEbisawaU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectEbisawaU/efxBase", false], - ["plugProjectEbisawaU/efxEnemy", false], - ["plugProjectEbisawaU/efxObject", true], - ["plugProjectEbisawaU/efxPikmin", false], - ["plugProjectEbisawaU/particle2dMgr", true], - ["plugProjectEbisawaU/efx2dBase", true], - ["plugProjectEbisawaU/efx2dEffect", true], - ["plugProjectEbisawaU/particleMgr", false], - ["plugProjectEbisawaU/ebiP2Title", false], - ["plugProjectEbisawaU/ebiP2TitleUnit", true], - ["plugProjectEbisawaU/ebiUtility", true], - ["plugProjectEbisawaU/ebiP2TitleCamera", true], - ["plugProjectEbisawaU/ebiP2TitleLight", true], - ["plugProjectEbisawaU/ebiScreenMemoryCard", true], - ["plugProjectEbisawaU/efxTPkEffectMgr", true], - ["plugProjectEbisawaU/efxEnemyGeneral", true], - ["plugProjectEbisawaU/ebi3DGraph", true], - ["plugProjectEbisawaU/ebiGeometry", true], - ["plugProjectEbisawaU/ebi2DGraph", true], - ["plugProjectEbisawaU/ebiScreenOption", true], - ["plugProjectEbisawaU/ebiScreenProgre", true], - ["plugProjectEbisawaU/ebiOptionMgr", true], - ["plugProjectEbisawaU/ebi2DCallBack", false], - ["plugProjectEbisawaU/ebiCardMgr", true], - ["plugProjectEbisawaU/ebiScreenFramework", true], - ["plugProjectEbisawaU/ebiScreenPushStart", true], - [ - "plugProjectEbisawaU/ebiScreenFileSelect", - false, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - ["plugProjectEbisawaU/ebiScreenTitleMenu", true], - ["plugProjectEbisawaU/ebiSaveMgr", true], - ["plugProjectEbisawaU/ebiScreenSaveMenu", true], - [ - "plugProjectEbisawaU/ebiScreenFileSelect_Mgr", - true, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiFileSelectMgr", - true, - { - "cflags": "$cflags_pikmin" - } - ], - ["plugProjectEbisawaU/ebiCardMgr_Load", true], - ["plugProjectEbisawaU/ebiP2TitleCoordMgr", true], - [ - "plugProjectEbisawaU/ebiP2TitlePikmin", - false, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiP2TitleKogane", - true, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiP2TitleChappy", - true, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiScreenTMBack", - true, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiMainTitleMgr", - false, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - ["plugProjectEbisawaU/ebiP2TitleFog", true], - [ - "plugProjectEbisawaU/efxEnemyBoss", - false, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - ["plugProjectEbisawaU/ebiCardEReader", true], - [ - "plugProjectEbisawaU/ebiScreenOmake", - false, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiOmakeMgr", - false, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiScreenOmakeCardE", - true, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiScreenOmakeGame", - true, - { - "cflags": "$cflags_pikmin -sym on" - } - ], - [ - "plugProjectEbisawaU/ebiScreenInfoWindow", - true, - { - "cflags": "$cflags_pikmin -sym on" - } - ] - ] - }, - { - "lib": "plugProjectKonoU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["plugProjectKonoU/khWorldMap", false], - ["plugProjectKonoU/khCaveResult", true], - ["plugProjectKonoU/khSceneLoader", true], - ["plugProjectKonoU/newGame2DMgr", true], - ["plugProjectKonoU/newScreenMgr", true], - ["plugProjectKonoU/khReadyGo", true], - ["plugProjectKonoU/khFinalFloor", true], - ["plugProjectKonoU/khDayEndResult", false], - ["plugProjectKonoU/khUtil", true], - ["plugProjectKonoU/khFinalResult", false], - ["plugProjectKonoU/khPayDept", true], - ["plugProjectKonoU/khWinLose", true], - ["plugProjectKonoU/khWinLoseReason", true], - ["plugProjectKonoU/khMailSaveData", true] - ] - }, - { - "lib": "sysBootupU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [["sysBootupU/sysBootup", true]] - }, - { - "lib": "sysCommonU", - "cflags": "$cflags_pikmin", - "mw_version": "2.6", - "host": true, - "objects": [ - ["sysCommonU/node", true], - ["sysCommonU/sysMath", false], - ["sysCommonU/id32", true], - ["sysCommonU/parameters", true], - ["sysCommonU/stream", true], - ["sysCommonU/geometry", false], - ["sysCommonU/mapCollision", true], - ["sysCommonU/camera", false], - ["sysCommonU/tagparams", true], - ["sysCommonU/sysTemplates", true], - ["sysCommonU/mapCode", true], - ["sysCommonU/geomIntersection", false], - ["sysCommonU/geomOBBTree", false], - ["sysCommonU/geomTraceMove", false], - ["sysCommonU/geomCylinder", true], - ["sysCommonU/geomClone", true] - ] - }, - { - "lib": "sysGCU", - "cflags": "$cflags_pikmin -lang=c++", - "mw_version": "2.6", - "host": true, - "objects": [ - ["sysGCU/system", false], - ["sysGCU/section", false], - ["sysGCU/gameflow", true], - ["sysGCU/menuSection", true], - ["sysGCU/dvdThread", true], - ["sysGCU/appThread", true], - ["sysGCU/controller", true], - ["sysGCU/graphics", false], - ["sysGCU/matMath", false], - ["sysGCU/sysShape", true], - ["sysGCU/reset", true], - ["sysGCU/dvdStatus", true], - ["sysGCU/sysTimers", true], - ["sysGCU/modelMgr", true], - ["sysGCU/heapStatus", true], - ["sysGCU/light", true], - ["sysGCU/wipe", true], - ["sysGCU/moviePlayer", false], - ["sysGCU/JSTObjectActor", false], - ["sysGCU/JSTObjectCamera", false], - ["sysGCU/JSTObjectGameActor", false], - ["sysGCU/JSTObjectSystem", false], - ["sysGCU/JSTFindCreature", true], - ["sysGCU/movieConfig", true], - ["sysGCU/gameConfig", true], - ["sysGCU/fogMgr", true], - ["sysGCU/aramMgr", false], - ["sysGCU/resourceMgr", true], - ["sysGCU/resourceMgr2D", true], - ["sysGCU/sysMaterialAnim", true], - ["sysGCU/P2DScreen", true], - ["sysGCU/movieMessage", false], - ["sysGCU/moviePlayerPauseAndDraw", true], - ["sysGCU/JSTObjectSpecialActor", true], - ["sysGCU/messageSequence", true], - ["sysGCU/messageMgr", true], - ["sysGCU/messageObj", true], - ["sysGCU/messageRendering", false], - ["sysGCU/message", true], - ["sysGCU/modelEffect", true], - ["sysGCU/messageReference", true], - ["sysGCU/simpleMessage", true], - ["sysGCU/sysShapeAnimation", true], - ["sysGCU/sysShapeModel", false], - ["sysGCU/windowMessage", false], - ["sysGCU/memoryCard", false], - ["sysGCU/pikmin2MemoryCardMgr", false], - ["sysGCU/commonSaveData", true], - ["sysGCU/bootSection", false], - ["sysGCU/titleSection", false], - ["sysGCU/loadResource", true], - ["sysGCU/rootMenuSection", true], - ["sysGCU/demoSection", true], - ["sysGCU/THPAudioDecode", true], - ["sysGCU/THPDraw", true], - ["sysGCU/THPPlayer", true], - ["sysGCU/THPRead", true], - ["sysGCU/THPVideoDecode", true], - ["sysGCU/pikmin2THPPlayer", true], - ["sysGCU/captionMgr", true], - ["sysGCU/captionMessage", true], - ["sysGCU/screenScene", true], - ["sysGCU/screenMgr", true], - ["sysGCU/screenObj", true], - ["sysGCU/JSTObjectParticleActor", true], - ["sysGCU/moviePlayerAudio", true], - ["sysGCU/illustratedBookMessage", true], - ["sysGCU/sysDrawBuffer", true], - ["sysGCU/dvdErrorMessage", true], - ["sysGCU/pikmin2AramMgr", true], - ["sysGCU/messageAnalyzer", true] - ] - }, - { - "lib": "utilityU", - "cflags": "$cflags_pikmin -sym on", - "mw_version": "2.6", - "host": true, - "objects": [ - ["utilityU/menu", true], - ["utilityU/PSMainSide_Director", false], - ["utilityU/PSMainSide_Factory", false], - ["utilityU/PSMainSide_ObjSound", false], - ["utilityU/PSMainSide_Demo", true], - ["utilityU/PSMainSide_Scene", false], - ["utilityU/PSMainSide_BossMgr", true], - ["utilityU/PSMainSide_Se", false], - ["utilityU/PSMainSide_DirectorMgr", true], - ["utilityU/PSMainSide_Sound", false], - ["utilityU/PSMainSide_TrackMap", true], - ["utilityU/PSMainSide_CreaturePrm", false], - ["utilityU/PSMainSide_ObjCalc", false] - ] - } -] diff --git a/linker-map.txt b/linker-map.txt deleted file mode 100644 index eff6306bf..000000000 --- a/linker-map.txt +++ /dev/null @@ -1,24938 +0,0 @@ -__ct__Q217JStudio_JParticle17TAdaptor_particleFP17JPAEmitterManagerPCQ26JStage7TSystem=0x800056C0 -__dt__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_Fv=0x800057A8 -__ct__Q27JStudio14TVariableValueFv=0x80005808 -__dt__Q217JStudio_JParticle17TAdaptor_particleFv=0x80005820 -adaptor_do_prepare__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObject=0x800058B8 -adaptor_do_end__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObject=0x800059FC -adaptor_do_update__Q217JStudio_JParticle17TAdaptor_particleFPCQ27JStudio7TObjectUl=0x80005A00 -adaptor_do_BEGIN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005AB0 -adaptor_do_BEGIN_FADE_IN__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005AE0 -adaptor_do_END__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005B28 -adaptor_do_END_FADE_OUT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005B54 -adaptor_do_PARTICLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005B9C -adaptor_do_PARENT__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005BB0 -adaptor_do_PARENT_NODE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005C18 -adaptor_do_PARENT_ENABLE__Q217JStudio_JParticle17TAdaptor_particleFQ37JStudio4data15TEOperationDataPCvUl=0x80005C98 -execute__Q317JStudio_JParticle17TAdaptor_particle13TJPACallback_FP14JPABaseEmitter=0x80005CB8 -beginParticle_fadeIn___Q217JStudio_JParticle17TAdaptor_particleFUl=0x80006014 -endParticle_fadeOut___Q217JStudio_JParticle17TAdaptor_particleFUl=0x800060F8 -executeAfter__18JPAEmitterCallBackFP14JPABaseEmitter=0x80006210 -draw__18JPAEmitterCallBackFP14JPABaseEmitter=0x80006214 -drawAfter__18JPAEmitterCallBackFP14JPABaseEmitter=0x80006218 -execute__18JPAEmitterCallBackFP14JPABaseEmitter=0x8000621C -createObject_PARTICLE_JPA___Q217JStudio_JParticle21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectP17JPAEmitterManagerPCQ26JStage7TSystem=0x80006220 -__dt__Q217JStudio_JParticle13TCreateObjectFv=0x800062EC -create__Q217JStudio_JParticle13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object=0x8000634C -toMessageIndex_messageID__Q28JMessage9TResourceCFUlUlPb=0x800063C4 -__dt__Q38JMessage18TResourceContainer10TCResourceFv=0x800065A8 -Get_groupID__Q38JMessage18TResourceContainer10TCResourceFUs=0x8000661C -Do_create__Q38JMessage18TResourceContainer10TCResourceFv=0x800066A0 -Do_destroy__Q38JMessage18TResourceContainer10TCResourceFPQ28JMessage9TResource=0x800066EC -__ct__Q28JMessage18TResourceContainerFv=0x80006710 -isLeadByte_1Byte__7JUTFontFi=0x80006758 -isLeadByte_2Byte__7JUTFontFi=0x80006760 -isLeadByte_ShiftJIS__7JUTFontFi=0x80006768 -__ct__Q28JMessage6TParseFPQ28JMessage18TResourceContainer=0x80006798 -__dt__Q28JMessage6TParseFv=0x800067C0 -parseHeader_next__Q28JMessage6TParseFPPCvPUlUl=0x80006820 -parseBlock_next__Q28JMessage6TParseFPPCvPUlUl=0x800069AC -__ct__Q28JMessage12TParse_colorFPQ28JMessage18TResourceContainer=0x80006B28 -__dt__Q28JMessage12TParse_colorFv=0x80006B48 -parseHeader_next__Q28JMessage12TParse_colorFPPCvPUlUl=0x80006BA8 -parseBlock_next__Q28JMessage12TParse_colorFPPCvPUlUl=0x80006C64 -lower_bound__3stdFPCUlPCUlRCUl=0x80006CB8 -__dt__Q28JMessage10TReferenceFv=0x80006D0C -do_word__Q28JMessage10TReferenceCFUl=0x80006D54 -__dt__Q28JMessage10TProcessorFv=0x80006D5C -setBegin_messageCode__Q28JMessage10TProcessorFUsUs=0x80006DA4 -setBegin_messageID__Q28JMessage10TProcessorFUlUlPb=0x80006E60 -setBegin_messageCode__Q28JMessage10TProcessorFUl=0x80006EA4 -getResource_groupID__Q28JMessage10TProcessorCFUs=0x80006F64 -toMessageCode_messageID__Q28JMessage10TProcessorCFUlUlPb=0x80006FE4 -do_reset__Q28JMessage10TProcessorFv=0x80007134 -do_character__Q28JMessage10TProcessorFi=0x80007138 -do_tag__Q28JMessage10TProcessorFUlPCvUl=0x8000713C -do_systemTagCode__Q28JMessage10TProcessorFUsPCvUl=0x80007144 -do_select_begin__Q28JMessage10TProcessorFUl=0x8000714C -do_select_end__Q28JMessage10TProcessorFv=0x80007150 -do_select_separate__Q28JMessage10TProcessorFv=0x80007154 -reset___Q28JMessage10TProcessorFPCc=0x80007158 -do_setBegin_isReady___Q28JMessage10TProcessorCFv=0x800071BC -do_tag___Q28JMessage10TProcessorFUlPCvUl=0x800071C4 -on_message_limited__Q28JMessage10TProcessorCFUs=0x80007424 -do_systemTagCode___Q28JMessage10TProcessorFUsPCvUl=0x80007474 -on_message__Q28JMessage10TProcessorCFUl=0x80007544 -getMessageText_messageCode__Q28JMessage10TProcessorCFUl=0x80007564 -process_onCharacterEnd_normal___Q28JMessage10TProcessorFPQ28JMessage10TProcessor=0x80007650 -process_onCharacterEnd_select___Q28JMessage10TProcessorFPQ28JMessage10TProcessor=0x800076B0 -process_onSelect_limited___Q28JMessage10TProcessorFPQ28JMessage10TProcessor=0x800077AC -process_onSelect___Q28JMessage10TProcessorFPQ28JMessage10TProcessor=0x800077C8 -__ct__Q28JMessage18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl=0x800077E4 -__dt__Q28JMessage18TSequenceProcessorFv=0x80007828 -process__Q28JMessage18TSequenceProcessorFPCc=0x80007884 -on_isReady__Q28JMessage18TSequenceProcessorFv=0x80007AFC -on_jump_isReady__Q28JMessage18TSequenceProcessorFv=0x80007B28 -on_jump__Q28JMessage18TSequenceProcessorFPCvPCc=0x80007B54 -on_branch_queryResult__Q28JMessage18TSequenceProcessorFv=0x80007BF0 -on_branch__Q28JMessage18TSequenceProcessorFPCvPCc=0x80007C1C -do_begin__Q28JMessage18TSequenceProcessorFPCvPCc=0x80007CB8 -do_end__Q28JMessage18TSequenceProcessorFv=0x80007CBC -do_isReady__Q28JMessage18TSequenceProcessorFv=0x80007CC0 -do_jump_isReady__Q28JMessage18TSequenceProcessorFv=0x80007CC8 -do_jump__Q28JMessage18TSequenceProcessorFPCvPCc=0x80007CD0 -do_branch_query__Q28JMessage18TSequenceProcessorFUs=0x80007CD4 -do_branch_queryResult__Q28JMessage18TSequenceProcessorFv=0x80007CD8 -do_branch__Q28JMessage18TSequenceProcessorFPCvPCc=0x80007CE0 -do_reset___Q28JMessage18TSequenceProcessorFPCc=0x80007CE4 -do_setBegin_isReady___Q28JMessage18TSequenceProcessorCFv=0x80007D00 -do_begin___Q28JMessage18TSequenceProcessorFPCvPCc=0x80007D10 -do_end___Q28JMessage18TSequenceProcessorFv=0x80007D3C -do_tag___Q28JMessage18TSequenceProcessorFUlPCvUl=0x80007D70 -do_systemTagCode___Q28JMessage18TSequenceProcessorFUsPCvUl=0x80007EB0 -process_onJump_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor=0x80007F14 -process_onJump___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessor=0x80007F80 -process_onBranch_limited___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl=0x80007FE4 -process_onBranch___Q28JMessage18TSequenceProcessorFPCQ28JMessage18TSequenceProcessorUl=0x80008054 -__ct__Q28JMessage19TRenderingProcessorFPCQ28JMessage10TReference=0x800080C0 -__dt__Q28JMessage19TRenderingProcessorFv=0x800080FC -process__Q28JMessage19TRenderingProcessorFPCc=0x80008158 -do_begin__Q28JMessage19TRenderingProcessorFPCvPCc=0x800082CC -do_end__Q28JMessage19TRenderingProcessorFv=0x800082D0 -do_reset___Q28JMessage19TRenderingProcessorFPCc=0x800082D4 -do_begin___Q28JMessage19TRenderingProcessorFPCvPCc=0x800082D8 -do_end___Q28JMessage19TRenderingProcessorFv=0x80008304 -do_tag___Q28JMessage19TRenderingProcessorFUlPCvUl=0x80008330 -do_systemTagCode___Q28JMessage19TRenderingProcessorFUsPCvUl=0x80008364 -__ct__Q28JMessage8TControlFv=0x800083A4 -__dt__Q28JMessage8TControlFv=0x800083E8 -reset__Q28JMessage8TControlFv=0x80008430 -update__Q28JMessage8TControlFv=0x80008498 -render__Q28JMessage8TControlFv=0x80008520 -setMessageCode__Q28JMessage8TControlFUsUs=0x8000867C -setMessageID__Q28JMessage8TControlFUlUlPb=0x80008758 -setMessageCode_inSequence___Q28JMessage8TControlFPCQ28JMessage10TProcessorUsUs=0x80008854 -getData__Q47JStudio3stb4data16TParse_TSequenceCFPQ57JStudio3stb4data16TParse_TSequence5TData=0x8000893C -getData__Q47JStudio3stb4data17TParse_TParagraphCFPQ57JStudio3stb4data17TParse_TParagraph5TData=0x80008988 -getData__Q47JStudio3stb4data22TParse_TParagraph_dataCFPQ57JStudio3stb4data22TParse_TParagraph_data5TData=0x80008A00 -extrapolateParameter_raw__Q27JStudio13functionvalueFdd=0x80008A80 -extrapolateParameter_repeat__Q27JStudio13functionvalueFdd=0x80008A84 -extrapolateParameter_clamp__Q27JStudio13functionvalueFdd=0x80008AC0 -toFunction_outside__Q27JStudio14TFunctionValueFi=0x80008AEC -__dt__Q27JStudio14TFunctionValueFv=0x80008B34 -extrapolateParameter_turn__Q27JStudio13functionvalueFdd=0x80008B7C -range_set__Q27JStudio29TFunctionValueAttribute_rangeFdd=0x80008BDC -__ct__Q27JStudio24TFunctionValue_compositeFv=0x80008BF0 -getType__Q27JStudio24TFunctionValue_compositeCFv=0x80008C54 -getAttributeSet__Q27JStudio24TFunctionValue_compositeFv=0x80008C5C -initialize__Q27JStudio24TFunctionValue_compositeFv=0x80008C7C -prepare__Q27JStudio24TFunctionValue_compositeFv=0x80008CC8 -getValue__Q27JStudio24TFunctionValue_compositeFd=0x80008CCC -composite_raw__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad=0x80008D00 -composite_index__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad=0x80008D6C -composite_parameter__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad=0x80008ED8 -composite_add__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad=0x80008F40 -composite_subtract__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad=0x80008FC4 -composite_multiply__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad=0x800090AC -composite_divide__Q27JStudio24TFunctionValue_compositeFRCQ27JGadget44TVector_pointerRCQ37JStudio24TFunctionValue_composite5TDatad=0x80009130 -__ct__Q27JStudio23TFunctionValue_constantFv=0x80009218 -getType__Q27JStudio23TFunctionValue_constantCFv=0x80009240 -getAttributeSet__Q27JStudio23TFunctionValue_constantFv=0x80009248 -initialize__Q27JStudio23TFunctionValue_constantFv=0x8000925C -prepare__Q27JStudio23TFunctionValue_constantFv=0x8000926C -getValue__Q27JStudio23TFunctionValue_constantFd=0x80009270 -__ct__Q27JStudio25TFunctionValue_transitionFv=0x80009278 -getType__Q27JStudio25TFunctionValue_transitionCFv=0x800092EC -getAttributeSet__Q27JStudio25TFunctionValue_transitionFv=0x800092F4 -initialize__Q27JStudio25TFunctionValue_transitionFv=0x80009324 -prepare__Q27JStudio25TFunctionValue_transitionFv=0x8000936C -getValue__Q27JStudio25TFunctionValue_transitionFd=0x80009414 -__ct__Q27JStudio19TFunctionValue_listFv=0x80009664 -getType__Q27JStudio19TFunctionValue_listCFv=0x800096DC -getAttributeSet__Q27JStudio19TFunctionValue_listFv=0x800096E4 -initialize__Q27JStudio19TFunctionValue_listFv=0x80009714 -prepare__Q27JStudio19TFunctionValue_listFv=0x80009760 -getValue__Q27JStudio19TFunctionValue_listFd=0x80009888 -update_INTERPOLATE_NONE___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_=0x80009DB8 -update_INTERPOLATE_LINEAR___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_=0x80009DCC -update_INTERPOLATE_PLATEAU___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_=0x80009DFC -update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio19TFunctionValue_listFRCQ27JStudio19TFunctionValue_listRCQ37JStudio19TFunctionValue_list11TIndexData_=0x80009E78 -__ct__Q27JStudio29TFunctionValue_list_parameterFv=0x80009F2C -getType__Q27JStudio29TFunctionValue_list_parameterCFv=0x80009FB0 -getAttributeSet__Q27JStudio29TFunctionValue_list_parameterFv=0x80009FB8 -data_set__Q27JStudio29TFunctionValue_list_parameterFPCfUl=0x80009FE8 -initialize__Q27JStudio29TFunctionValue_list_parameterFv=0x8000A018 -prepare__Q27JStudio29TFunctionValue_list_parameterFv=0x8000A070 -getValue__Q27JStudio29TFunctionValue_list_parameterFd=0x8000A198 -findUpperBound_binary_current__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCd=0x8000A6D0 -findUpperBound_binary_current>__7JGadgetFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less=0x8000A72C -update_INTERPOLATE_NONE___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd=0x8000A958 -update_INTERPOLATE_LINEAR___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd=0x8000A964 -update_INTERPOLATE_PLATEAU___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd=0x8000A994 -update_INTERPOLATE_BSPLINE_dataMore3___Q27JStudio29TFunctionValue_list_parameterFRCQ27JStudio29TFunctionValue_list_parameterd=0x8000AA00 -__ct__Q27JStudio22TFunctionValue_hermiteFv=0x8000AC60 -getType__Q27JStudio22TFunctionValue_hermiteCFv=0x8000ACF8 -getAttributeSet__Q27JStudio22TFunctionValue_hermiteFv=0x8000AD00 -data_set__Q27JStudio22TFunctionValue_hermiteFPCfUlUl=0x8000AD20 -initialize__Q27JStudio22TFunctionValue_hermiteFv=0x8000AD70 -prepare__Q27JStudio22TFunctionValue_hermiteFv=0x8000ADDC -getValue__Q27JStudio22TFunctionValue_hermiteFd=0x8000AE84 -findUpperBound_binary_current__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCd=0x8000B454 -findUpperBound_binary_current>__7JGadgetFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less=0x8000B4D8 -__dt__Q27JStudio22TFunctionValue_hermiteFv=0x8000B7BC -__dt__Q27JStudio29TFunctionValue_list_parameterFv=0x8000B818 -__dt__Q27JStudio19TFunctionValue_listFv=0x8000B874 -__dt__Q27JStudio25TFunctionValue_transitionFv=0x8000B8D0 -__dt__Q27JStudio23TFunctionValue_constantFv=0x8000B92C -__dt__Q27JStudio24TFunctionValue_compositeFv=0x8000B988 -upper_bound>__3stdFQ37JStudio29TFunctionValue_list_parameter15TIterator_data_Q37JStudio29TFunctionValue_list_parameter15TIterator_data_RCdQ23std7less=0x8000BA10 -upper_bound>__3stdFQ37JStudio22TFunctionValue_hermite15TIterator_data_Q37JStudio22TFunctionValue_hermite15TIterator_data_RCdQ23std7less=0x8000BA90 -prepare__Q37JStudio3fvb7TObjectFRCQ47JStudio3fvb4data13TParse_TBlockPQ37JStudio3fvb8TControl=0x8000BB48 -getCompositeData_raw___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv=0x8000BD64 -getCompositeData_index___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv=0x8000BD70 -getCompositeData_parameter___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv=0x8000BD7C -getCompositeData_add___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv=0x8000BD88 -getCompositeData_subtract___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv=0x8000BD94 -getCompositeData_multiply___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv=0x8000BDA0 -getCompositeData_divide___Q37JStudio3fvb17@unnamed@fvb_cpp@FPCv=0x8000BDAC -prepare_data___Q37JStudio3fvb17TObject_compositeFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl=0x8000BDB8 -prepare_data___Q37JStudio3fvb16TObject_constantFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl=0x8000BE24 -prepare_data___Q37JStudio3fvb18TObject_transitionFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl=0x8000BE34 -prepare_data___Q37JStudio3fvb12TObject_listFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl=0x8000BE4C -prepare_data___Q37JStudio3fvb22TObject_list_parameterFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl=0x8000BE6C -prepare_data___Q37JStudio3fvb15TObject_hermiteFRCQ57JStudio3fvb4data17TParse_TParagraph5TDataPQ37JStudio3fvb8TControl=0x8000BE9C -__ct__Q37JStudio3fvb8TControlFv=0x8000BED4 -__dt__Q37JStudio3fvb8TControlFv=0x8000BF04 -getObject__Q37JStudio3fvb8TControlFPCvUl=0x8000BF70 -find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal=0x8000C004 -getObject_index__Q37JStudio3fvb8TControlFUl=0x8000C0A0 -__dt__Q37JStudio3fvb8TFactoryFv=0x8000C11C -create__Q37JStudio3fvb8TFactoryFRCQ47JStudio3fvb4data13TParse_TBlock=0x8000C164 -destroy__Q37JStudio3fvb8TFactoryFPQ37JStudio3fvb7TObject=0x8000C46C -__ct__Q37JStudio3fvb6TParseFPQ37JStudio3fvb8TControl=0x8000C4A8 -__dt__Q37JStudio3fvb6TParseFv=0x8000C4C8 -parseHeader_next__Q37JStudio3fvb6TParseFPPCvPUlUl=0x8000C528 -parseBlock_next__Q37JStudio3fvb6TParseFPPCvPUlUl=0x8000C5C0 -__dt__Q37JStudio3fvb15TObject_hermiteFv=0x8000C6D8 -__dt__Q37JStudio3fvb22TObject_list_parameterFv=0x8000C764 -__dt__Q37JStudio3fvb12TObject_listFv=0x8000C7F0 -__dt__Q37JStudio3fvb18TObject_transitionFv=0x8000C87C -__dt__Q37JStudio3fvb16TObject_constantFv=0x8000C908 -__dt__Q37JStudio3fvb17TObject_compositeFv=0x8000C994 -getData__Q47JStudio3fvb4data17TParse_TParagraphCFPQ57JStudio3fvb4data17TParse_TParagraph5TData=0x8000CA3C -__ct__Q27JStudio8TControlFv=0x8000CAA4 -__dt__Q27JStudio8TControlFv=0x8000CB34 -transformOnSet_setOrigin__Q27JStudio8TControlFRC3Vecf=0x8000CBA4 -transformOnGet_setOrigin__Q27JStudio8TControlFRC3Vecf=0x8000CC24 -__dt__Q27JStudio13TCreateObjectFv=0x8000CCB8 -__dt__Q27JStudio8TFactoryFv=0x8000CD00 -appendCreateObject__Q27JStudio8TFactoryFPQ27JStudio13TCreateObject=0x8000CD84 -create__Q27JStudio8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object=0x8000CDD4 -__ct__Q27JStudio6TParseFPQ27JStudio8TControl=0x8000CE88 -__dt__Q27JStudio6TParseFv=0x8000CEDC -parseHeader__Q27JStudio6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl=0x8000CF4C -parseBlock_block__Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl=0x8000CFC4 -parseBlock_block_fvb___Q27JStudio6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl=0x8000D008 -__dt__Q37JStudio14TVariableValue7TOutputFv=0x8000D068 -update_immediate___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued=0x8000D0B0 -update_time___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued=0x8000D0C4 -update_functionValue___Q27JStudio14TVariableValueFPQ27JStudio14TVariableValued=0x8000D100 -__dt__Q37JStudio14TVariableValue13TOutput_none_Fv=0x8000D164 -__cl__Q37JStudio14TVariableValue13TOutput_none_CFfPQ27JStudio8TAdaptor=0x8000D1C0 -adaptor_do_prepare__Q27JStudio8TAdaptorFPCQ27JStudio7TObject=0x8000D1C4 -adaptor_do_begin__Q27JStudio8TAdaptorFPCQ27JStudio7TObject=0x8000D1C8 -adaptor_do_end__Q27JStudio8TAdaptorFPCQ27JStudio7TObject=0x8000D1CC -adaptor_do_update__Q27JStudio8TAdaptorFPCQ27JStudio7TObjectUl=0x8000D1D0 -adaptor_do_data__Q27JStudio8TAdaptorFPCQ27JStudio7TObjectPCvUlPCvUl=0x8000D1D4 -adaptor_setVariableValue__Q27JStudio8TAdaptorFPQ27JStudio7TObjectUlQ37JStudio4data15TEOperationDataPCvUl=0x8000D1D8 -adaptor_setVariableValue_immediate__Q27JStudio8TAdaptorFPCQ37JStudio8TAdaptor27TSetVariableValue_immediate=0x8000D278 -adaptor_setVariableValue_Vec__Q27JStudio8TAdaptorFPCUlRC3Vec=0x8000D2BC -adaptor_getVariableValue_Vec__Q27JStudio8TAdaptorCFP3VecPCUl=0x8000D32C -adaptor_setVariableValue_GXColor__Q27JStudio8TAdaptorFPCUlRC8_GXColor=0x8000D364 -adaptor_getVariableValue_GXColor__Q27JStudio8TAdaptorCFP8_GXColorPCUl=0x8000D444 -adaptor_setVariableValue_VOID___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl=0x8000D590 -adaptor_setVariableValue_IMMEDIATE___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl=0x8000D5A8 -adaptor_setVariableValue_TIME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl=0x8000D5D4 -adaptor_setVariableValue_FVR_NAME___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl=0x8000D600 -adaptor_setVariableValue_FVR_INDEX___Q27JStudio8TAdaptorFPQ27JStudio8TAdaptorPQ27JStudio7TObjectUlPCvUl=0x8000D670 -do_begin__Q27JStudio7TObjectFv=0x8000D6DC -do_end__Q27JStudio7TObjectFv=0x8000D718 -do_wait__Q27JStudio7TObjectFUl=0x8000D754 -do_data__Q27JStudio7TObjectFPCvUlPCvUl=0x8000D840 -__dt__Q27JStudio14TAdaptor_actorFv=0x8000D89C -__ct__Q27JStudio13TObject_actorFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_actor=0x8000D8F8 -do_paragraph__Q27JStudio13TObject_actorFUlPCvUl=0x8000D950 -__dt__Q27JStudio21TAdaptor_ambientLightFv=0x8000DDD4 -__ct__Q27JStudio20TObject_ambientLightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio21TAdaptor_ambientLight=0x8000DE30 -do_paragraph__Q27JStudio20TObject_ambientLightFUlPCvUl=0x8000DE88 -__dt__Q27JStudio15TAdaptor_cameraFv=0x8000E064 -__ct__Q27JStudio14TObject_cameraFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio15TAdaptor_camera=0x8000E0C0 -do_paragraph__Q27JStudio14TObject_cameraFUlPCvUl=0x8000E118 -__dt__Q27JStudio12TAdaptor_fogFv=0x8000E510 -__ct__Q27JStudio11TObject_fogFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio12TAdaptor_fog=0x8000E56C -do_paragraph__Q27JStudio11TObject_fogFUlPCvUl=0x8000E5C4 -__dt__Q27JStudio14TAdaptor_lightFv=0x8000E7AC -__ct__Q27JStudio13TObject_lightFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_light=0x8000E808 -do_paragraph__Q27JStudio13TObject_lightFUlPCvUl=0x8000E860 -__dt__Q27JStudio16TAdaptor_messageFv=0x8000EBD0 -__ct__Q27JStudio15TObject_messageFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio16TAdaptor_message=0x8000EC2C -do_paragraph__Q27JStudio15TObject_messageFUlPCvUl=0x8000EC84 -__dt__Q27JStudio17TAdaptor_particleFv=0x8000ED14 -__ct__Q27JStudio16TObject_particleFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio17TAdaptor_particle=0x8000ED70 -do_paragraph__Q27JStudio16TObject_particleFUlPCvUl=0x8000EDC8 -__dt__Q27JStudio14TAdaptor_soundFv=0x8000F220 -__ct__Q27JStudio13TObject_soundFRCQ47JStudio3stb4data20TParse_TBlock_objectPQ27JStudio14TAdaptor_sound=0x8000F27C -do_paragraph__Q27JStudio13TObject_soundFUlPCvUl=0x8000F2D4 -__dt__Q27JStudio13TObject_soundFv=0x8000F6CC -__dt__Q27JStudio16TObject_particleFv=0x8000F760 -__dt__Q27JStudio15TObject_messageFv=0x8000F7F4 -__dt__Q27JStudio13TObject_lightFv=0x8000F888 -__dt__Q27JStudio11TObject_fogFv=0x8000F91C -__dt__Q27JStudio14TObject_cameraFv=0x8000F9B0 -__dt__Q27JStudio20TObject_ambientLightFv=0x8000FA44 -__dt__Q27JStudio13TObject_actorFv=0x8000FAD8 -__sinit_jstudio-object_cpp=0x8000FB6C -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv=0x8000FDF0 -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_Fv=0x8000FE4C -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv=0x8000FEA8 -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_Fv=0x8000FF04 -__dt__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_Fv=0x8000FF60 -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor=0x8000FFBC -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@57TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor=0x80010018 -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor=0x80010074 -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@55TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor=0x800100D0 -__cl__Q37JStudio28@unnamed@jstudio_object_cpp@54TOutputVariableValue_BOOL_CFfPQ27JStudio8TAdaptor=0x8001012C -isEqual__Q37JStudio6object7TIDDataFRCQ37JStudio6object7TIDDataRCQ37JStudio6object7TIDData=0x80010188 -__ct__Q37JStudio3stb7TObjectFRCQ47JStudio3stb4data20TParse_TBlock_object=0x80010278 -__dt__Q37JStudio3stb7TObjectFv=0x800102E8 -forward__Q37JStudio3stb7TObjectFUl=0x80010330 -do_begin__Q37JStudio3stb7TObjectFv=0x80010568 -do_end__Q37JStudio3stb7TObjectFv=0x8001056C -do_paragraph__Q37JStudio3stb7TObjectFUlPCvUl=0x80010570 -do_wait__Q37JStudio3stb7TObjectFUl=0x80010574 -do_data__Q37JStudio3stb7TObjectFPCvUlPCvUl=0x80010578 -process_sequence___Q37JStudio3stb7TObjectFv=0x8001057C -process_paragraph_reserved___Q37JStudio3stb7TObjectFUlPCvUl=0x80010720 -__ct__Q37JStudio3stb8TControlFv=0x8001085C -__dt__Q37JStudio3stb15TObject_controlFv=0x800108F0 -__dt__Q37JStudio3stb8TControlFv=0x8001094C -getObject__Q37JStudio3stb8TControlFPCvUl=0x800109E8 -find_if8iterator,Q37JStudio6object18TPRObject_ID_equal>__3stdFQ37JGadget37TLinkList8iteratorQ37JGadget37TLinkList8iteratorQ37JStudio6object18TPRObject_ID_equal=0x80010A7C -forward__Q37JStudio3stb8TControlFUl=0x80010B18 -__dt__Q37JStudio3stb8TFactoryFv=0x80010C08 -create__Q37JStudio3stb8TFactoryFRCQ47JStudio3stb4data20TParse_TBlock_object=0x80010C50 -destroy__Q37JStudio3stb8TFactoryFPQ37JStudio3stb7TObject=0x80010C58 -__ct__Q37JStudio3stb6TParseFPQ37JStudio3stb8TControl=0x80010C94 -__dt__Q37JStudio3stb6TParseFv=0x80010CB4 -parseHeader_next__Q37JStudio3stb6TParseFPPCvPUlUl=0x80010D14 -parseBlock_next__Q37JStudio3stb6TParseFPPCvPUlUl=0x80010DDC -parseHeader__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data14TParse_THeaderUl=0x80010E30 -parseBlock_block__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data13TParse_TBlockUl=0x80010E38 -parseBlock_object__Q37JStudio3stb6TParseFRCQ47JStudio3stb4data20TParse_TBlock_objectUl=0x80010E70 -getTransformation_SRxyzT__Q27JStudio4mathFPA4_fRC3VecRC3VecRC3Vec=0x80010FC4 -getFromTransformation_SRxyzT__Q27JStudio4mathFP3VecP3VecP3VecPA4_Cf=0x80011174 -__ct__Q214JStudio_JStage14TAdaptor_lightFPCQ26JStage7TSystemPQ26JStage6TLight=0x800113C8 -__dt__Q214JStudio_JStage14TAdaptor_lightFv=0x80011470 -adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject=0x800114E8 -adaptor_do_begin__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject=0x80011530 -adaptor_do_end__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObject=0x800117DC -adaptor_do_update__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObjectUl=0x80011830 -adaptor_do_data__Q214JStudio_JStage14TAdaptor_lightFPCQ27JStudio7TObjectPCvUlPCvUl=0x800119F8 -adaptor_do_FACULTY__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl=0x80011A2C -adaptor_do_ENABLE__Q214JStudio_JStage14TAdaptor_lightFQ37JStudio4data15TEOperationDataPCvUl=0x80011AA4 -__cl__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_CFfPQ27JStudio8TAdaptor=0x80011AC8 -__dt__Q314JStudio_JStage14TAdaptor_light20TVVOutput_direction_Fv=0x80011AD4 -__sinit_object-light_cpp=0x80011B34 -transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl=0x80011DCC -transform_toGlobalFromLocal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl=0x80011E64 -transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl39TTransform_translation_rotation_scalingPCQ26JStage7TObjectUl=0x80011EFC -transform_toLocalFromGlobal__14JStudio_JStageFPA4_fRCQ37JStudio8TControl19TTransform_positionPCQ26JStage7TObjectUl=0x80011FA0 -adaptor_data___Q214JStudio_JStage16TAdaptor_object_FPQ26JStage7TObjectPCvUlPCvUl=0x80012044 -adaptor_findJSGObject___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TSystemPCc=0x8001208C -adaptor_findJSGObjectNode___Q214JStudio_JStage16TAdaptor_object_FPCQ26JStage7TObjectPCc=0x800120D8 -adaptor_ENABLE___Q214JStudio_JStage16TAdaptor_object_FPQ26JStage7TObjectQ37JStudio4data15TEOperationDataPCvUl=0x80012104 -__ct__Q214JStudio_JStage14TAdaptor_actorFPCQ26JStage7TSystemPQ26JStage6TActor=0x80012198 -__dt__Q214JStudio_JStage14TAdaptor_actorFv=0x80012260 -adaptor_do_prepare__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject=0x800122D8 -adaptor_do_begin__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject=0x80012364 -adaptor_do_end__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObject=0x80012494 -adaptor_do_update__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObjectUl=0x800124E8 -adaptor_do_data__Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio7TObjectPCvUlPCvUl=0x8001252C -adaptor_do_SHAPE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x80012560 -adaptor_do_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x800125B4 -adaptor_do_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x80012608 -adaptor_do_TEXTURE_ANIMATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x8001261C -adaptor_do_TEXTURE_ANIMATION_MODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x80012670 -adaptor_do_PARENT__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x80012684 -adaptor_do_PARENT_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x800126C8 -adaptor_do_PARENT_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x80012724 -adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x800127AC -adaptor_do_RELATION__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x800127C0 -adaptor_do_RELATION_NODE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x80012804 -adaptor_do_RELATION_ENABLE__Q214JStudio_JStage14TAdaptor_actorFQ37JStudio4data15TEOperationDataPCvUl=0x80012860 -setJSG_ID___Q214JStudio_JStage14TAdaptor_actorFMQ26JStage6TActorFPCvPvUl_vQ37JStudio4data15TEOperationDataPCvUl=0x800128B8 -setJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl=0x800128F4 -getJSG_SRT___Q214JStudio_JStage14TAdaptor_actorFPCQ27JStudio8TControl=0x80012A6C -__cl__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_CFfPQ27JStudio8TAdaptor=0x80012BE8 -__dt__Q314JStudio_JStage14TAdaptor_actor26TVVOutput_ANIMATION_FRAME_Fv=0x80012CCC -__sinit_object-actor_cpp=0x80012D2C -__dt__Q214JStudio_JStage81TVariableValueOutput_object_Fv=0x800130FC -__cl__Q214JStudio_JStage81TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor=0x8001315C -__ct__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ26JStage7TSystemPQ26JStage13TAmbientLight=0x8001318C -__dt__Q214JStudio_JStage21TAdaptor_ambientLightFv=0x8001322C -adaptor_do_prepare__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject=0x800132A4 -adaptor_do_begin__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject=0x800132A8 -adaptor_do_end__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObject=0x80013334 -adaptor_do_update__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObjectUl=0x80013388 -adaptor_do_data__Q214JStudio_JStage21TAdaptor_ambientLightFPCQ27JStudio7TObjectPCvUlPCvUl=0x800133F4 -__ct__Q214JStudio_JStage15TAdaptor_cameraFPCQ26JStage7TSystemPQ26JStage7TCamera=0x80013428 -__dt__Q214JStudio_JStage15TAdaptor_cameraFv=0x800134EC -adaptor_do_prepare__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject=0x80013564 -adaptor_do_begin__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject=0x800135AC -adaptor_do_end__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObject=0x80013694 -adaptor_do_update__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObjectUl=0x800136E8 -adaptor_do_data__Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio7TObjectPCvUlPCvUl=0x80013744 -adaptor_do_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl=0x80013778 -adaptor_do_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl=0x800137BC -adaptor_do_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl=0x80013818 -adaptor_do_PARENT_FUNCTION__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl=0x80013898 -adaptor_do_TARGET_PARENT__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl=0x800138AC -adaptor_do_TARGET_PARENT_NODE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl=0x800138F0 -adaptor_do_TARGET_PARENT_ENABLE__Q214JStudio_JStage15TAdaptor_cameraFQ37JStudio4data15TEOperationDataPCvUl=0x8001394C -setJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl=0x8001396C -getJSG_position___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl=0x80013A68 -setJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl=0x80013B70 -getJSG_targetPosition___Q214JStudio_JStage15TAdaptor_cameraFPCQ27JStudio8TControl=0x80013C50 -__sinit_object-camera_cpp=0x80013D34 -__dt__Q214JStudio_JStage83TVariableValueOutput_object_Fv=0x800140A4 -__cl__Q214JStudio_JStage83TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor=0x80014104 -__ct__Q214JStudio_JStage12TAdaptor_fogFPCQ26JStage7TSystemPQ26JStage4TFog=0x80014134 -__dt__Q214JStudio_JStage12TAdaptor_fogFv=0x800141D4 -adaptor_do_prepare__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject=0x8001424C -adaptor_do_begin__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject=0x80014294 -adaptor_do_end__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObject=0x80014388 -adaptor_do_update__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObjectUl=0x800143DC -adaptor_do_data__Q214JStudio_JStage12TAdaptor_fogFPCQ27JStudio7TObjectPCvUlPCvUl=0x80014448 -__sinit_object-fog_cpp=0x8001447C -__dt__Q214JStudio_JStage77TVariableValueOutput_object_Fv=0x800146A4 -__cl__Q214JStudio_JStage77TVariableValueOutput_object_CFfPQ27JStudio8TAdaptor=0x80014704 -__dt__Q214JStudio_JStage13TCreateObjectFv=0x80014734 -create__Q214JStudio_JStage13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object=0x80014794 -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem=0x80014928 -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem=0x800149F4 -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem=0x80014AC0 -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem=0x80014B8C -createObject_JSG___Q214JStudio_JStage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ26JStage7TObjectPCQ26JStage7TSystem=0x80014C58 -__ct__Q216JStudio_JMessage16TAdaptor_messageFPQ28JMessage8TControl=0x80014D24 -__dt__Q216JStudio_JMessage16TAdaptor_messageFv=0x80014D5C -adaptor_do_MESSAGE__Q216JStudio_JMessage16TAdaptor_messageFQ37JStudio4data15TEOperationDataPCvUl=0x80014DBC -createObject_MESSAGE_JMS___Q216JStudio_JMessage21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectPQ28JMessage8TControl=0x80014DF8 -create__Q216JStudio_JMessage18TCreateObject_baseFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object=0x80014EB4 -__dt__Q216JStudio_JMessage13TCreateObjectFv=0x80014F60 -find__Q216JStudio_JMessage13TCreateObjectFRCQ47JStudio3stb4data20TParse_TBlock_object=0x80014FD0 -__ct__Q214JStudio_JAudio14TAdaptor_soundFP8JAIBasicPCQ26JStage7TSystem=0x80014FD8 -__dt__Q214JStudio_JAudio14TAdaptor_soundFv=0x800150A0 -adaptor_do_prepare__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObject=0x80015124 -adaptor_do_end__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObject=0x800151F0 -adaptor_do_update__Q214JStudio_JAudio14TAdaptor_soundFPCQ27JStudio7TObjectUl=0x80015248 -adaptor_do_SOUND__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x80015394 -adaptor_do_BEGIN__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x80015438 -adaptor_do_BEGIN_FADE_IN__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x80015468 -adaptor_do_END__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x800154B0 -adaptor_do_END_FADE_OUT__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x800154E0 -adaptor_do_PARENT__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x80015528 -adaptor_do_PARENT_NODE__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x80015590 -adaptor_do_PARENT_ENABLE__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x80015610 -adaptor_do_LOCATED__Q214JStudio_JAudio14TAdaptor_soundFQ37JStudio4data15TEOperationDataPCvUl=0x80015630 -__cl__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_CFfPQ27JStudio8TAdaptor=0x80015658 -beginSound_fadeIn___Q214JStudio_JAudio14TAdaptor_soundFUl=0x80015698 -endSound_fadeOut___Q214JStudio_JAudio14TAdaptor_soundFUl=0x80015770 -__dt__Q314JStudio_JAudio14TAdaptor_sound13TVVOSetValue_Fv=0x800157C0 -prepareSoundVecT<8JAISound>__8JAIBasicFUlPP8JAISoundP3VecUlUlUc=0x80015820 -startSoundVecT<8JAISound>__8JAIBasicFUlPP8JAISoundP3VecUlUlUc=0x8001586C -startSoundActorT<8JAISound>__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUc=0x800158CC -__sinit_object-sound_cpp=0x80015934 -createObject_SOUND_JAI___Q214JStudio_JAudio21@unnamed@control_cpp@FRCQ47JStudio3stb4data20TParse_TBlock_objectP8JAIBasicPCQ26JStage7TSystem=0x80015C44 -__dt__Q214JStudio_JAudio13TCreateObjectFv=0x80015D10 -create__Q214JStudio_JAudio13TCreateObjectFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object=0x80015D70 -getUseMtxNum__11J3DShapeMtxCFv=0x80015DE8 -J3DUNewMtxCalcAnm__FUlP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransformP15J3DAnmTransform14J3DMtxCalcFlag=0x80015DF0 -setWeight__10J3DMtxCalcFUcf=0x80016380 -setAnmTransform__10J3DMtxCalcFUcP15J3DAnmTransform=0x80016384 -__dt__22J3DMtxCalcBlendAnmBaseFv=0x80016388 -__dt__10J3DMtxCalcFv=0x800163E4 -calcBlend__15J3DMtxCalcBlendFP3VecP3VecPP15J3DAnmTransformPf=0x8001642C -calcBlend__28J3DMtxCalcBlendSharedMotionTFP3VecP3VecPP15J3DAnmTransformPf=0x80016774 -calcScaleBlend__24J3DMtxCalcScaleBlendMayaFRC3VecRC3Vec=0x80016B04 -setAnmTransform__22J3DMtxCalcBlendAnmBaseFP15J3DAnmTransform=0x80016C9C -getAnmTransform__22J3DMtxCalcBlendAnmBaseFUc=0x80016CA4 -getAnmTransform__22J3DMtxCalcBlendAnmBaseFv=0x80016CB4 -getWeight__22J3DMtxCalcBlendAnmBaseCFUc=0x80016CBC -setAnmTransform__22J3DMtxCalcBlendAnmBaseFUcP15J3DAnmTransform=0x80016CCC -setWeight__22J3DMtxCalcBlendAnmBaseFUcf=0x80016CDC -setAnmTransform__10J3DMtxCalcFP15J3DAnmTransform=0x80016CEC -getAnmTransform__10J3DMtxCalcFUc=0x80016CF0 -getAnmTransform__10J3DMtxCalcFv=0x80016CF8 -getWeight__10J3DMtxCalcCFUc=0x80016D00 -__dt__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv=0x80016D08 -init__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf=0x80016D74 -setWeight__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcf=0x80016D9C -setAnmTransform__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcP15J3DAnmTransform=0x80016DAC -__dt__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv=0x80016DBC -init__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf=0x80016E28 -setWeight__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcf=0x80016E50 -setAnmTransform__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>FUcP15J3DAnmTransform=0x80016E60 -__dt__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x80016E70 -init__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf=0x80016EDC -setWeight__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcf=0x80016F28 -setAnmTransform__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcP15J3DAnmTransform=0x80016F38 -__dt__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x80016F48 -init__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf=0x80016FB4 -setWeight__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcf=0x80017000 -setAnmTransform__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FUcP15J3DAnmTransform=0x80017010 -__dt__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv=0x80017020 -init__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf=0x8001708C -setWeight__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcf=0x800170B4 -setAnmTransform__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcP15J3DAnmTransform=0x800170C4 -__dt__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv=0x800170D4 -init__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf=0x80017140 -setWeight__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcf=0x80017168 -setAnmTransform__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>FUcP15J3DAnmTransform=0x80017178 -calc__126J3DMtxCalcBlendAnm<76J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv=0x80017188 -calc__139J3DMtxCalcBlendAnm<89J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,25J3DMtxCalcScaleBlendBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv=0x800172BC -calc__134J3DMtxCalcBlendAnm<80J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x800173F0 -calc__147J3DMtxCalcBlendAnm<93J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,29J3DMtxCalcScaleBlendSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x80017594 -calc__124J3DMtxCalcBlendAnm<75J3DMtxCalcBlendAdaptorDefault<15J3DMtxCalcBlend,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv=0x80017738 -calc__137J3DMtxCalcBlendAnm<88J3DMtxCalcBlendAdaptorDefault<28J3DMtxCalcBlendSharedMotionT,24J3DMtxCalcScaleBlendMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv=0x80017784 -__ct__10JUTTextureFv=0x800177D0 -__dt__24J3DUMtxAnmCacheTableBaseFv=0x800177EC -__ct__20J3DUMtxAnmCacheTableFP8J3DModelP15J3DAnmTransform=0x80017848 -init<20J3DUMtxAnmCacheTable>__26@unnamed@J3DUMtxCache_cpp@FP8J3DModelP15J3DAnmTransformP20J3DUMtxAnmCacheTable=0x800178CC -create__7JKRAramFUlUllll=0x80017A10 -__ct__7JKRAramFUlUll=0x80017AA4 -__dt__7JKRAramFv=0x80017BC0 -run__7JKRAramFv=0x80017C50 -mainRamToAram__7JKRAramFPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl=0x80017CC0 -aramToMainRam__7JKRAramFUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl=0x80017F4C -aramToMainRam__7JKRAramFP12JKRAramBlockPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl=0x80018228 -JKRDecompressFromAramToMainRam__FUlPvUlUlUlPUl=0x80018334 -decompSZS_subroutine__FPUcPUc=0x8001849C -firstSrcData__Fv=0x80018744 -nextSrcData__FPUc=0x800187E8 -__sinit_JKRAram_cpp=0x800188C0 -__dt__23JSUList<12JKRAMCommand>Fv=0x80018904 -__ct__14JKRAramArchiveFlQ210JKRArchive15EMountDirection=0x80018958 -__dt__14JKRAramArchiveFv=0x80018A08 -__dt__7JKRFileFv=0x80018B58 -open__14JKRAramArchiveFl=0x80018BB8 -fetchResource__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntryPUl=0x80018EEC -fetchResource__14JKRAramArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl=0x80019010 -fetchResource_subroutine__14JKRAramArchiveFUlUlPUcUli=0x80019108 -fetchResource_subroutine__14JKRAramArchiveFUlUlP7JKRHeapiPPUc=0x800191C4 -getExpandedResSize__14JKRAramArchiveCFPCv=0x80019310 -__ct__12JKRAramBlockFUlUlUlUcb=0x80019444 -__dt__12JKRAramBlockFv=0x800194B0 -allocHead__12JKRAramBlockFUlUcP11JKRAramHeap=0x8001956C -allocTail__12JKRAramBlockFUlUcP11JKRAramHeap=0x80019614 -__ct__11JKRAramHeapFUlUl=0x800196C8 -__dt__11JKRAramHeapFv=0x800197A0 -alloc__11JKRAramHeapFUlQ211JKRAramHeap10EAllocMode=0x80019848 -allocFromHead__11JKRAramHeapFUl=0x800198C8 -allocFromTail__11JKRAramHeapFUl=0x80019950 -getFreeSize__11JKRAramHeapFv=0x800199C8 -__sinit_JKRAramHeap_cpp=0x80019A40 -__dt__23JSUList<12JKRAramBlock>Fv=0x80019A84 -sendCommand__12JKRAramPieceFP12JKRAMCommand=0x80019AD8 -orderSync__12JKRAramPieceFiUlUlUlP12JKRAramBlock=0x80019AF8 -startDMA__12JKRAramPieceFP12JKRAMCommand=0x80019CA4 -doneDMA__12JKRAramPieceFUl=0x80019D1C -__ct__12JKRAMCommandFv=0x80019DC4 -__dt__12JKRAMCommandFv=0x80019E34 -__sinit_JKRAramPiece_cpp=0x80019EDC -create__13JKRAramStreamFl=0x80019F20 -__ct__13JKRAramStreamFl=0x80019F90 -__dt__13JKRAramStreamFv=0x80019FE0 -run__13JKRAramStreamFv=0x8001A040 -readFromAram__13JKRAramStreamFv=0x8001A0B0 -writeToAram__13JKRAramStreamFP20JKRAramStreamCommand=0x8001A0B8 -getAvailable__20JSURandomInputStreamCFv=0x8001A2A4 -write_StreamToAram_Async__13JKRAramStreamFP18JSUFileInputStreamUlUlUlPUl=0x8001A300 -sync__13JKRAramStreamFP20JKRAramStreamCommandi=0x8001A3C8 -setTransBuffer__13JKRAramStreamFPUcUlP7JKRHeap=0x8001A45C -__ct__20JKRAramStreamCommandFv=0x8001A4B0 -__ct__10JKRArchiveFlQ210JKRArchive10EMountMode=0x8001A4BC -__dt__10JKRArchiveFv=0x8001A564 -isSameName__10JKRArchiveCFRQ210JKRArchive8CArcNameUlUs=0x8001A5C4 -findDirectory__10JKRArchiveCFPCcUl=0x8001A610 -__ct__Q210JKRArchive8CArcNameFPPCcc=0x8001A92C -getString__Q210JKRArchive8CArcNameCFv=0x8001A970 -getHash__Q210JKRArchive8CArcNameCFv=0x8001A978 -findTypeResource__10JKRArchiveCFUlPCc=0x8001A980 -findFsResource__10JKRArchiveCFPCcUl=0x8001AA74 -findIdxResource__10JKRArchiveCFUl=0x8001ADB4 -findNameResource__10JKRArchiveCFPCc=0x8001ADDC -findPtrResource__10JKRArchiveCFPCv=0x8001AE80 -findIdResource__10JKRArchiveCFUs=0x8001AEB4 -store__Q210JKRArchive8CArcNameFPCc=0x8001AF34 -store__Q210JKRArchive8CArcNameFPCcc=0x8001AFCC -setExpandSize__10JKRArchiveFPQ210JKRArchive12SDIFileEntryUl=0x8001B094 -getExpandSize__10JKRArchiveCFPQ210JKRArchive12SDIFileEntry=0x8001B0E0 -mount__10JKRArchiveFPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection=0x8001B130 -mount__10JKRArchiveFPvP7JKRHeapQ210JKRArchive15EMountDirection=0x8001B194 -mount__10JKRArchiveFlQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection=0x8001B26C -becomeCurrent__10JKRArchiveFPCc=0x8001B444 -getDirEntry__10JKRArchiveCFPQ210JKRArchive9SDirEntryUl=0x8001B4CC -getGlbResource__10JKRArchiveFUlPCcP10JKRArchive=0x8001B544 -getResource__10JKRArchiveFPCc=0x8001B5FC -getResource__10JKRArchiveFUlPCc=0x8001B678 -getIdxResource__10JKRArchiveFUl=0x8001B6F8 -readResource__10JKRArchiveFPvUlUlPCc=0x8001B74C -readResource__10JKRArchiveFPvUlPCc=0x8001B7F8 -readResource__10JKRArchiveFPvUlUs=0x8001B89C -removeResourceAll__10JKRArchiveFv=0x8001B918 -removeResource__10JKRArchiveFPv=0x8001B9B0 -detachResource__10JKRArchiveFPv=0x8001BA10 -getResSize__10JKRArchiveCFPCv=0x8001BA4C -countFile__10JKRArchiveCFPCc=0x8001BA80 -getFirstFile__10JKRArchiveCFPCc=0x8001BAE0 -getExpandedResSize__10JKRArchiveCFPCv=0x8001BB8C -__ct__14JKRCompArchiveFlQ210JKRArchive15EMountDirection=0x8001BBB8 -__dt__14JKRCompArchiveFv=0x8001BC68 -open__14JKRCompArchiveFl=0x8001BDB8 -fetchResource__14JKRCompArchiveFPQ210JKRArchive12SDIFileEntryPUl=0x8001C334 -fetchResource__14JKRCompArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl=0x8001C4C4 -removeResourceAll__14JKRCompArchiveFv=0x8001C658 -removeResource__14JKRCompArchiveFPv=0x8001C6FC -getExpandedResSize__14JKRCompArchiveCFPCv=0x8001C770 -create__9JKRDecompFl=0x8001C934 -__ct__9JKRDecompFl=0x8001C994 -__dt__9JKRDecompFv=0x8001C9E4 -run__9JKRDecompFv=0x8001CA44 -sendCommand__9JKRDecompFP16JKRDecompCommand=0x8001CB0C -orderSync__9JKRDecompFPUcPUcUlUl=0x8001CB3C -decode__9JKRDecompFPUcPUcUlUl=0x8001CBDC -decodeSZP__9JKRDecompFPUcPUcUlUl=0x8001CC68 -decodeSZS__9JKRDecompFPUcPUcUlUl=0x8001CE0C -checkCompressed__9JKRDecompFPUc=0x8001CEF0 -__ct__16JKRDecompCommandFv=0x8001CF40 -__dt__16JKRDecompCommandFv=0x8001CF90 -__ct__11JKRDisposerFv=0x8001CFCC -__dt__11JKRDisposerFv=0x8001D034 -__ct__10JKRDvdFileFv=0x8001D0B8 -__ct__10JKRDvdFileFPCc=0x8001D12C -__ct__10JKRDvdFileFl=0x8001D1DC -__dt__10JKRDvdFileFv=0x8001D28C -initiate__10JKRDvdFileFv=0x8001D328 -open__10JKRDvdFileFPCc=0x8001D394 -open__10JKRDvdFileFl=0x8001D40C -close__10JKRDvdFileFv=0x8001D484 -readData__10JKRDvdFileFPvll=0x8001D500 -writeData__10JKRDvdFileFPCvll=0x8001D5C4 -sync__10JKRDvdFileFv=0x8001D5CC -doneProcess__10JKRDvdFileFlP11DVDFileInfo=0x8001D620 -getFileSize__10JKRDvdFileCFv=0x8001D650 -__sinit_JKRDvdFile_cpp=0x8001D658 -__dt__21JSUList<10JKRDvdFile>Fv=0x8001D69C -loadToAram__16JKRDvdAramRipperFPCcUl15JKRExpandSwitchUlUlPUl=0x8001D6F0 -loadToAram__16JKRDvdAramRipperFlUl15JKRExpandSwitchUlUlPUl=0x8001D78C -loadToAram__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchUlUlPUl=0x8001D828 -loadToAram_Async__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchPFUl_vUlUlPUl=0x8001D8CC -callCommand_Async__16JKRDvdAramRipperFP12JKRADCommand=0x8001D978 -__dt__18JSUFileInputStreamFv=0x8001DCC8 -syncAram__16JKRDvdAramRipperFP12JKRADCommandi=0x8001DD38 -__ct__12JKRADCommandFv=0x8001DE18 -__dt__12JKRADCommandFv=0x8001DE58 -JKRDecompressFromDVDToAram__FP10JKRDvdFileUlUlUlUlUlPUl=0x8001DEE4 -decompSZS_subroutine__FPUcUl=0x8001E05C -firstSrcData__Fv=0x8001E2DC -nextSrcData__FPUc=0x8001E390 -dmaBufferFlush__FUl=0x8001E47C -__sinit_JKRDvdAramRipper_cpp=0x8001E4E4 -__dt__23JSUList<12JKRADCommand>Fv=0x8001E528 -__ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection=0x8001E57C -__dt__13JKRDvdArchiveFv=0x8001E62C -open__13JKRDvdArchiveFl=0x8001E758 -fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl=0x8001EA04 -fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl=0x8001EB2C -fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii=0x8001EC28 -fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc=0x8001EE28 -getExpandedResSize__13JKRDvdArchiveCFPCv=0x8001F044 -loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl=0x8001F188 -loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl=0x8001F23C -loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPiPUl=0x8001F2F0 -JKRDecompressFromDVD__FP10JKRDvdFilePvUlUlUlUlPUl=0x8001F79C -decompSZS_subroutine__FPUcPUc=0x8001F910 -firstSrcData__Fv=0x8001FBC8 -nextSrcData__FPUc=0x8001FC9C -isErrorRetry__12JKRDvdRipperFv=0x8001FDA8 -__sinit_JKRDvdRipper_cpp=0x8001FDB0 -__dt__23JSUList<12JKRDMCommand>Fv=0x8001FDF4 -createRoot__10JKRExpHeapFib=0x8001FE48 -create__10JKRExpHeapFUlP7JKRHeapb=0x8001FEC8 -do_destroy__10JKRExpHeapFv=0x8001FFAC -__ct__10JKRExpHeapFPvUlP7JKRHeapb=0x80020030 -__dt__10JKRExpHeapFv=0x800200C8 -do_alloc__10JKRExpHeapFUli=0x80020130 -allocFromHead__10JKRExpHeapFUli=0x8002024C -allocFromHead__10JKRExpHeapFUl=0x800204A0 -allocFromTail__10JKRExpHeapFUli=0x80020584 -allocFromTail__10JKRExpHeapFUl=0x800206DC -do_free__10JKRExpHeapFPv=0x800207BC -freeGroup__10JKRExpHeapFUc=0x80020830 -do_freeAll__10JKRExpHeapFv=0x800208C4 -do_freeTail__10JKRExpHeapFv=0x80020940 -do_fillFreeArea__10JKRExpHeapFv=0x800209D0 -do_changeGroupID__10JKRExpHeapFUc=0x800209D4 -do_resize__10JKRExpHeapFPvUl=0x80020A2C -do_getSize__10JKRExpHeapFPv=0x80020BE8 -do_getFreeSize__10JKRExpHeapFv=0x80020C70 -do_getMaxFreeBlock__10JKRExpHeapFv=0x80020CDC -do_getTotalFreeSize__10JKRExpHeapFv=0x80020D50 -appendUsedList__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock=0x80020DB4 -setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock=0x80020E4C -removeFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock=0x80020E98 -recycleFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock=0x80020ECC -joinTwoBlocks__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock=0x800210B0 -check__10JKRExpHeapFv=0x800211B4 -dump__10JKRExpHeapFv=0x80021394 -dump_sort__10JKRExpHeapFv=0x8002155C -initiate__Q210JKRExpHeap9CMemBlockFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockUlUcUc=0x80021754 -allocFore__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc=0x80021774 -allocBack__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc=0x800217B8 -free__Q210JKRExpHeap9CMemBlockFP10JKRExpHeap=0x80021810 -getHeapBlock__Q210JKRExpHeap9CMemBlockFPv=0x80021870 -state_register__10JKRExpHeapCFPQ27JKRHeap6TStateUl=0x8002188C -state_compare__10JKRExpHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState=0x80021980 -getHeapType__10JKRExpHeapFv=0x800219B0 -do_getCurrentGroupId__10JKRExpHeapFv=0x800219BC -mount__12JKRFileCacheFPCcP7JKRHeapPCc=0x800219C4 -__ct__12JKRFileCacheFPCcPCc=0x80021ABC -__dt__12JKRFileCacheFv=0x80021C7C -becomeCurrent__12JKRFileCacheFPCc=0x80021D50 -getResource__12JKRFileCacheFPCc=0x80021DE8 -getResource__12JKRFileCacheFUlPCc=0x80021F00 -readResource__12JKRFileCacheFPvUlPCc=0x80021F90 -readResource__12JKRFileCacheFPvUlUlPCc=0x80022064 -removeResourceAll__12JKRFileCacheFv=0x800220F4 -removeResource__12JKRFileCacheFPv=0x80022184 -detachResource__12JKRFileCacheFPv=0x80022220 -getResSize__12JKRFileCacheCFPCv=0x80022294 -countFile__12JKRFileCacheCFPCc=0x800222C8 -getFirstFile__12JKRFileCacheCFPCc=0x80022344 -__dt__13JKRFileFinderFv=0x800223E0 -findCacheBlock__12JKRFileCacheCFPCv=0x80022428 -findCacheBlock__12JKRFileCacheCFUl=0x80022454 -findFile__12JKRFileCacheCFPcPCc=0x80022480 -getDvdPathName__12JKRFileCacheCFPCc=0x80022868 -convStrLower__12JKRFileCacheCFPc=0x80022978 -__ct__Q212JKRFileCache11CCacheBlockFUlUlPCv=0x800229C0 -getFsResource__12JKRFileCacheFPCc=0x80022A2C -getNameResource__12JKRFileCacheFUlPCc=0x80022A58 -readFsResource__12JKRFileCacheFPvUlPCc=0x80022A84 -readNameResource__12JKRFileCacheFPvUlUlPCc=0x80022AB0 -__ct__12JKRArcFinderFP10JKRArchivell=0x80022ADC -findNextFile__12JKRArcFinderFv=0x80022B68 -__ct__12JKRDvdFinderFPCc=0x80022C14 -__dt__12JKRDvdFinderFv=0x80022C9C -findNextFile__12JKRDvdFinderFv=0x80022D1C -__dt__12JKRArcFinderFv=0x80022DC0 -read__7JKRFileFPvll=0x80022E1C -__ct__13JKRFileLoaderFv=0x80022E98 -__dt__13JKRFileLoaderFv=0x80022EF0 -unmount__13JKRFileLoaderFv=0x80022F7C -getGlbResource__13JKRFileLoaderFPCc=0x80022FCC -getGlbResource__13JKRFileLoaderFPCcP13JKRFileLoader=0x80023018 -findVolume__13JKRFileLoaderFPPCc=0x800230B0 -fetchVolumeName__13JKRFileLoaderFPclPCc=0x8002313C -__sinit_JKRFileLoader_cpp=0x8002321C -__dt__24JSUList<13JKRFileLoader>Fv=0x80023260 -__ct__7JKRHeapFPvUlP7JKRHeapb=0x800232B4 -__dt__7JKRHeapFv=0x800233D8 -initArena__7JKRHeapFPPcPUli=0x800234EC -becomeSystemHeap__7JKRHeapFv=0x80023594 -becomeCurrentHeap__7JKRHeapFv=0x800235A4 -destroy__7JKRHeapFv=0x800235B4 -alloc__7JKRHeapFUliP7JKRHeap=0x800235E0 -alloc__7JKRHeapFUli=0x80023640 -free__7JKRHeapFPvP7JKRHeap=0x8002366C -free__7JKRHeapFPv=0x800236B4 -callAllDisposer__7JKRHeapFv=0x800236E0 -freeAll__7JKRHeapFv=0x80023730 -freeTail__7JKRHeapFv=0x8002375C -resize__7JKRHeapFPvUl=0x80023788 -getFreeSize__7JKRHeapFv=0x800237B4 -getTotalFreeSize__7JKRHeapFv=0x800237E0 -changeGroupID__7JKRHeapFUc=0x8002380C -do_changeGroupID__7JKRHeapFUc=0x80023838 -getCurrentGroupId__7JKRHeapFv=0x80023840 -do_getCurrentGroupId__7JKRHeapFv=0x8002386C -getMaxAllocatableSize__7JKRHeapFi=0x80023874 -findFromRoot__7JKRHeapFPv=0x800238F4 -find__7JKRHeapCFPv=0x80023930 -getNextChild__17JSUTree<7JKRHeap>CFv=0x80023BA0 -__ne__25JSUTreeIterator<7JKRHeap>CFPC17JSUTree<7JKRHeap>=0x80023BB4 -getEndChild__17JSUTree<7JKRHeap>CFv=0x80023BCC -__pp__25JSUTreeIterator<7JKRHeap>Fv=0x80023BD4 -__rf__25JSUTreeIterator<7JKRHeap>CFv=0x80023BF0 -__ct__25JSUTreeIterator<7JKRHeap>FP17JSUTree<7JKRHeap>=0x80023BFC -getNumChildren__17JSUTree<7JKRHeap>CFv=0x80023C04 -getFirstChild__17JSUTree<7JKRHeap>CFv=0x80023C0C -getFirstLink__10JSUPtrListCFv=0x80023C20 -dispose__7JKRHeapFPvUl=0x80023C28 -dispose__7JKRHeapFPvPv=0x80023CD0 -dispose__7JKRHeapFv=0x80023D74 -copyMemory__7JKRHeapFPvPvUl=0x80023DC4 -JKRDefaultMemoryErrorRoutine__FPvUli=0x80023E50 -setErrorHandler__7JKRHeapFPFPvUli_v=0x80023E84 -__nw__FUl=0x80023EA4 -__nw__FUli=0x80023EF0 -__nw__FUlP7JKRHeapi=0x80023F40 -__nwa__FUl=0x80023FAC -__nwa__FUli=0x80023FF8 -__nwa__FUlP7JKRHeapi=0x80024048 -__dl__FPv=0x800240B4 -__dla__FPv=0x800240D8 -__dt__Q27JKRHeap6TStateFv=0x800240FC -dump__Q27JKRHeap6TStateCFv=0x80024510 -isVerbose__Q27JKRHeap6TStateFv=0x80024544 -__ct__Q27JKRHeap6TStateFPC7JKRHeapUlb=0x8002454C -isCompareOnDestructed__Q27JKRHeap6TStateCFv=0x800245CC -__ct__Q37JKRHeap6TState9TLocationFv=0x800245D4 -__ct__Q37JKRHeap6TState9TArgumentFPC7JKRHeapUlb=0x800245E8 -getHeap__Q27JKRHeap6TStateCFv=0x80024608 -getId__Q27JKRHeap6TStateCFv=0x80024610 -state_register__7JKRHeapCFPQ27JKRHeap6TStateUl=0x80024618 -state_compare__7JKRHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState=0x8002461C -state_dumpDifference__7JKRHeapFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState=0x80024634 -state_dump__7JKRHeapCFRCQ27JKRHeap6TState=0x80024638 -dump_sort__7JKRHeapFv=0x8002463C -__ct__13JKRMemArchiveFlQ210JKRArchive15EMountDirection=0x80024644 -__ct__13JKRMemArchiveFPvUl15JKRMemBreakFlag=0x80024700 -__dt__13JKRMemArchiveFv=0x800247C8 -open__13JKRMemArchiveFlQ210JKRArchive15EMountDirection=0x80024870 -open__13JKRMemArchiveFPvUl15JKRMemBreakFlag=0x800249D8 -fetchResource__13JKRMemArchiveFPQ210JKRArchive12SDIFileEntryPUl=0x80024A84 -fetchResource__13JKRMemArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl=0x80024AB8 -removeResourceAll__13JKRMemArchiveFv=0x80024B80 -removeResource__13JKRMemArchiveFPv=0x80024BD0 -fetchResource_subroutine__13JKRMemArchiveFPUcUlPUcUli=0x80024C0C -getExpandedResSize__13JKRMemArchiveCFPCv=0x80024CE0 -create__12JKRSolidHeapFUlP7JKRHeapb=0x80024D70 -do_destroy__12JKRSolidHeapFv=0x80024E24 -__ct__12JKRSolidHeapFPvUlP7JKRHeapb=0x80024E84 -__dt__12JKRSolidHeapFv=0x80024EE0 -adjustSize__12JKRSolidHeapFv=0x80024F48 -do_alloc__12JKRSolidHeapFUli=0x8002500C -allocFromHead__12JKRSolidHeapFUli=0x800250BC -allocFromTail__12JKRSolidHeapFUli=0x80025194 -do_free__12JKRSolidHeapFPv=0x80025264 -do_freeAll__12JKRSolidHeapFv=0x80025290 -do_freeTail__12JKRSolidHeapFv=0x800252F0 -do_fillFreeArea__12JKRSolidHeapFv=0x8002537C -do_resize__12JKRSolidHeapFPvUl=0x80025380 -do_getSize__12JKRSolidHeapFPv=0x800253B0 -check__12JKRSolidHeapFv=0x800253E0 -dump__12JKRSolidHeapFv=0x8002546C -state_register__12JKRSolidHeapCFPQ27JKRHeap6TStateUl=0x80025570 -state_compare__12JKRSolidHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState=0x800255CC -getHeapType__12JKRSolidHeapFv=0x800255FC -do_getFreeSize__12JKRSolidHeapFv=0x80025608 -do_getMaxFreeBlock__12JKRSolidHeapFv=0x80025610 -do_getTotalFreeSize__12JKRSolidHeapFv=0x80025618 -__ct__9JKRThreadFUlii=0x80025638 -__ct__9JKRThreadFP7JKRHeapUlii=0x800256F0 -__ct__9JKRThreadFP8OSThreadi=0x80025790 -__dt__9JKRThreadFv=0x80025838 -setCommon_mesgQueue__9JKRThreadFP7JKRHeapi=0x80025910 -setCommon_heapSpecified__9JKRThreadFP7JKRHeapUli=0x80025980 -start__9JKRThreadFPv=0x80025A10 -run__9JKRThreadFv=0x80025A3C -loopProc__15JKRThreadSwitchFv=0x80025A44 -__dt__7JKRTaskFv=0x80025BC8 -create__7JKRTaskFiiUlP7JKRHeap=0x80025CD8 -run__7JKRTaskFv=0x80025F7C -request__7JKRTaskFPFPv_vPvPv=0x80026018 -__sinit_JKRThread_cpp=0x800260C8 -__dt__17JSUList<7JKRTask>Fv=0x80026138 -__dt__19JSUList<9JKRThread>Fv=0x8002618C -write__15JSUOutputStreamFPCvl=0x800261E0 -write__15JSUOutputStreamFPCc=0x80026238 -__dt__10JSUIosBaseFv=0x80026330 -__dt__14JSUInputStreamFv=0x80026378 -read__14JSUInputStreamFPvl=0x800263D4 -read__14JSUInputStreamFPc=0x8002642C -skip__14JSUInputStreamFl=0x800264DC -align__20JSURandomInputStreamFl=0x80026564 -skip__20JSURandomInputStreamFl=0x800265F0 -peek__20JSURandomInputStreamFPvl=0x8002664C -seek__20JSURandomInputStreamFl17JSUStreamSeekFrom=0x80026708 -__dt__20JSURandomInputStreamFv=0x8002674C -__ct__10JSUPtrLinkFPv=0x800267B8 -__dt__10JSUPtrLinkFv=0x800267D0 -__ct__10JSUPtrListFb=0x80026830 -__dt__10JSUPtrListFv=0x80026868 -initiate__10JSUPtrListFv=0x800268D0 -append__10JSUPtrListFP10JSUPtrLink=0x800268E4 -prepend__10JSUPtrListFP10JSUPtrLink=0x8002699C -insert__10JSUPtrListFP10JSUPtrLinkP10JSUPtrLink=0x80026A54 -remove__10JSUPtrListFP10JSUPtrLink=0x80026C24 -getNthLink__10JSUPtrListCFUl=0x80026CD4 -setBuffer__20JSUMemoryInputStreamFPCvl=0x80026D5C -readData__20JSUMemoryInputStreamFPvl=0x80026D70 -seekPos__20JSUMemoryInputStreamFl17JSUStreamSeekFrom=0x80026DE8 -__dt__20JSUMemoryInputStreamFv=0x80026E64 -getLength__20JSUMemoryInputStreamCFv=0x80026ED4 -getPosition__20JSUMemoryInputStreamCFv=0x80026EDC -__ct__18JSUFileInputStreamFP7JKRFile=0x80026EE4 -readData__18JSUFileInputStreamFPvl=0x80026F28 -seekPos__18JSUFileInputStreamFl17JSUStreamSeekFrom=0x80027008 -getLength__18JSUFileInputStreamCFv=0x800270F0 -getPosition__18JSUFileInputStreamCFv=0x80027120 -parseVariableUInt_16_32_following__Q27JGadget6binaryFPCvPUlPUlPQ37JGadget6binary5TEBit=0x80027128 -__dt__Q37JGadget6binary19TParse_header_blockFv=0x80027190 -parse_next__Q37JGadget6binary19TParse_header_blockFPPCvUl=0x800271D8 -__dt__Q27JGadget13TNodeLinkListFv=0x800272E4 -Insert__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorPQ27JGadget13TLinkListNode=0x80027320 -Erase__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode=0x8002734C -Remove__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode=0x80027370 -remove_if>__Q27JGadget13TNodeLinkListFQ37JGadget22@unnamed@linklist_cpp@46TPRIsEqual_pointer_=0x8002739C -__ct__Q27JGadget18TList_pointer_voidFRCQ27JGadget14TAllocator=0x80027484 -__dt__Q27JGadget18TList_pointer_voidFv=0x800274A4 -insert__Q27JGadget18TList_pointer_voidFQ37JGadget36TList>8iteratorRCPv=0x80027564 -erase__Q27JGadget18TList_pointer_voidFQ37JGadget36TList>8iterator=0x800275FC -extend_default__Q27JGadget6vectorFUlUlUl=0x8002766C -__ct__Q27JGadget20TVector_pointer_voidFRCQ27JGadget14TAllocator=0x80027674 -insert__Q27JGadget38TVector>FPPvUlRCPv=0x800276A0 -Insert_raw__Q27JGadget38TVector>FPPvUl=0x80027718 -__dt__Q27JGadget20TVector_pointer_voidFv=0x80027B88 -insert__Q27JGadget20TVector_pointer_voidFPPvRCPv=0x80027C90 -insert__Q27JGadget38TVector>FPPvRCPv=0x80027CB0 -erase__Q27JGadget20TVector_pointer_voidFPPvPPv=0x80027D08 -create__12JUTAssertionFv=0x80027DC0 -flushMessage__12JUTAssertionFv=0x80027DC4 -flushMessage_dbPrint__12JUTAssertionFv=0x80027EB0 -setMessageCount__12JUTAssertionFi=0x800280C4 -create__10JUTConsoleFUiUiP7JKRHeap=0x800280DC -create__10JUTConsoleFUiPvUl=0x80028164 -__ct__10JUTConsoleFUiUib=0x800281FC -__dt__10JUTConsoleFv=0x800282FC -getObjectSizeFromBufferSize__10JUTConsoleFUiUi=0x8002836C -getLineFromObjectSize__10JUTConsoleFUlUi=0x8002837C -clear__10JUTConsoleFv=0x8002838C -doDraw__10JUTConsoleCFQ210JUTConsole12EConsoleType=0x800283E8 -__dt__13J2DOrthoGraphFv=0x80028944 -print_f__10JUTConsoleFPCce=0x800289A0 -print__10JUTConsoleFPCc=0x80028A2C -JUTConsole_print_f_va_=0x80028D2C -scroll__10JUTConsoleFi=0x80028D74 -getUsedLine__10JUTConsoleCFv=0x80028E50 -getLineOffset__10JUTConsoleCFv=0x80028E74 -createManager__17JUTConsoleManagerFP7JKRHeap=0x80028E98 -appendConsole__17JUTConsoleManagerFP10JUTConsole=0x80028F00 -removeConsole__17JUTConsoleManagerFP10JUTConsole=0x80028F70 -draw__17JUTConsoleManagerCFv=0x80029038 -drawDirect__17JUTConsoleManagerCFb=0x80029104 -setDirectConsole__17JUTConsoleManagerFP10JUTConsole=0x80029180 -JUTSetReportConsole=0x800292A4 -JUTGetReportConsole=0x800292AC -JUTSetWarningConsole=0x800292B4 -JUTGetWarningConsole=0x800292BC -JUTReportConsole_f=0x800292C4 -JUTReportConsole=0x800293A0 -JUTWarningConsole_f=0x800293CC -JUTWarningConsole=0x800294A8 -start__10JUTDbPrintFP7JUTFontP7JKRHeap=0x800294D4 -changeFont__10JUTDbPrintFP7JUTFont=0x80029580 -flush__10JUTDbPrintFv=0x80029598 -flush__10JUTDbPrintFiiii=0x800295D0 -drawString__10JUTDbPrintFiiiPCUc=0x80029744 -__ct__13JUTDirectFileFv=0x8002982C -__dt__13JUTDirectFileFv=0x80029850 -fopen__13JUTDirectFileFPCc=0x80029894 -fclose__13JUTDirectFileFv=0x8002993C -fgets__13JUTDirectFileFPvi=0x8002999C -start__14JUTDirectPrintFv=0x80029BCC -erase__14JUTDirectPrintFiiii=0x80029C40 -drawChar__14JUTDirectPrintFiii=0x80029D38 -changeFrameBuffer__14JUTDirectPrintFPvUsUs=0x80029F8C -drawString__14JUTDirectPrintFUsUsPc=0x80029FC0 -drawString_f__14JUTDirectPrintFUsUsPCce=0x80029FEC -setCharColor__14JUTDirectPrintFQ28JUtility6TColor=0x8002A160 -setCharColor__14JUTDirectPrintFUcUcUc=0x8002A190 -create__12JUTExceptionFP14JUTDirectPrint=0x8002A30C -run__12JUTExceptionFv=0x8002A41C -errorHandler__12JUTExceptionFUsP9OSContextUlUl=0x8002A53C -panic_f__12JUTExceptionFPCciPCce=0x8002A640 -setFPException__12JUTExceptionFUl=0x8002A7E0 -showFloat__12JUTExceptionFP9OSContext=0x8002A828 -showStack__12JUTExceptionFP9OSContext=0x8002AF98 -showMainInfo__12JUTExceptionFUsP9OSContextUlUl=0x8002B094 -showMapInfo_subroutine__12JUTExceptionFUlb=0x8002B2D8 -showGPRMap__12JUTExceptionFP9OSContext=0x8002B530 -printDebugInfo__12JUTExceptionFQ212JUTException9EInfoPageUsP9OSContextUlUl=0x8002B824 -readPad__12JUTExceptionFPUlPUl=0x8002BBD0 -printContext__12JUTExceptionFUsP9OSContextUlUl=0x8002C140 -waitTime__12JUTExceptionFl=0x8002C624 -createFB__12JUTExceptionFv=0x8002C6AC -setPreUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v=0x8002C7A0 -appendMapFile__12JUTExceptionFPCc=0x8002C7B0 -queryMapAddress__12JUTExceptionFPcUllPUlPUlPcUlbb=0x8002C844 -queryMapAddress_single__12JUTExceptionFPcUllPUlPUlPcUlbb=0x8002C924 -createConsole__12JUTExceptionFPvUl=0x8002CC60 -__ct__13JUTExternalFBFP16_GXRenderModeObj8_GXGammaPvUl=0x8002CD40 -__dt__12JUTExceptionFv=0x8002CD60 -__sinit_JUTException_cpp=0x8002CDC0 -__dt__39JSUListFv=0x8002CE08 -__ct__8JUTFaderFiiiiQ28JUtility6TColor=0x8002CE5C -control__8JUTFaderFv=0x8002CF08 -draw__8JUTFaderFv=0x8002D008 -startFadeIn__8JUTFaderFi=0x8002D098 -startFadeOut__8JUTFaderFi=0x8002D0C8 -__dt__8JUTFaderFv=0x8002D0FC -__ct__7JUTFontFv=0x8002D144 -initialize_state__7JUTFontFv=0x8002D170 -setCharColor__7JUTFontFQ28JUtility6TColor=0x8002D1BC -setGradColor__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor=0x8002D210 -drawString_size_scale__7JUTFontFffffPCcUlb=0x8002D274 -__dt__7JUTFontFv=0x8002D38C -setGX__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor=0x8002D3D4 -getCellWidth__7JUTFontCFv=0x8002D400 -getCellHeight__7JUTFontCFv=0x8002D42C -__ct__10JUTGamePadFQ210JUTGamePad8EPadPort=0x8002D458 -__dt__10JUTGamePadFv=0x8002D52C -initList__10JUTGamePadFv=0x8002D5D8 -init__10JUTGamePadFv=0x8002D614 -clear__10JUTGamePadFv=0x8002D64C -read__10JUTGamePadFv=0x8002D660 -assign__10JUTGamePadFv=0x8002D928 -checkResetCallback__10JUTGamePadFx=0x8002D9D0 -update__10JUTGamePadFv=0x8002DA3C -checkResetSwitch__10JUTGamePadFv=0x8002DD68 -clearForReset__10JUTGamePadFv=0x8002DDE8 -clear__Q210JUTGamePad7CButtonFv=0x8002DE14 -update__Q210JUTGamePad7CButtonFPC9PADStatusUl=0x8002DE50 -clear__Q210JUTGamePad6CStickFv=0x8002DFE0 -update__Q210JUTGamePad6CStickFScScQ210JUTGamePad10EStickModeQ210JUTGamePad11EWhichStickUl=0x8002DFFC -getButton__Q210JUTGamePad6CStickFUl=0x8002E2B4 -clear__Q210JUTGamePad7CRumbleFP10JUTGamePad=0x8002E368 -stopMotor__Q210JUTGamePad7CRumbleFib=0x8002E3DC -update__Q210JUTGamePad7CRumbleFs=0x8002E44C -setEnabled__Q210JUTGamePad7CRumbleFUl=0x8002E6A8 -setRepeat__Q210JUTGamePad7CButtonFUlUlUl=0x8002E7CC -setButtonRepeat__10JUTGamePadFUlUlUl=0x8002E7E8 -recalibrate__10JUTGamePadFUl=0x8002E834 -checkCallback__19JUTGamePadLongPressFiUl=0x8002E8C0 -__sinit_JUTGamePad_cpp=0x8002E924 -__dt__30JSUList<19JUTGamePadLongPress>Fv=0x8002EA34 -__ct__Q210JUTGamePad6CStickFv=0x8002EA88 -__ct__Q210JUTGamePad7CButtonFv=0x8002EAA4 -__dt__21JSUList<10JUTGamePad>Fv=0x8002EAE0 -__ct__12JUTGraphFifoFUl=0x8002EB34 -__dt__12JUTGraphFifoFv=0x8002EC10 -__ct__10JUTNameTabFv=0x8002ECCC -__ct__10JUTNameTabFPC7ResNTAB=0x8002ED0C -setResource__10JUTNameTabFPC7ResNTAB=0x8002ED48 -getIndex__10JUTNameTabCFPCc=0x8002ED84 -getName__10JUTNameTabCFUs=0x8002EE1C -calcKeyCode__10JUTNameTabCFPCc=0x8002EE4C -__dt__10JUTNameTabFv=0x8002EE7C -storeTLUT__10JUTPaletteF7_GXTlutP7ResTLUT=0x8002EEC4 -storeTLUT__10JUTPaletteF7_GXTlut10_GXTlutFmt15JUTTransparencyUsPv=0x8002EF5C -load__10JUTPaletteFv=0x8002EF9C -__ct__Q210JUTProcBar5CTimeFv=0x8002EFE0 -create__10JUTProcBarFv=0x8002EFF4 -destroy__10JUTProcBarFv=0x8002F124 -clear__10JUTProcBarFv=0x8002F164 -draw__10JUTProcBarFv=0x8002F234 -drawProcessBar__10JUTProcBarFv=0x8002F268 -drawHeapBar__10JUTProcBarFv=0x80030A7C -__ct__10JUTResFontFv=0x80031180 -__ct__10JUTResFontFPC7ResFONTP7JKRHeap=0x800311CC -__dt__10JUTResFontFv=0x80031240 -deleteMemBlocks_ResFont__10JUTResFontFv=0x800312CC -initialize_state__10JUTResFontFv=0x800312F0 -initiate__10JUTResFontFPC7ResFONTP7JKRHeap=0x8003131C -protected_initiate__10JUTResFontFPC7ResFONTP7JKRHeap=0x8003139C -countBlock__10JUTResFontFv=0x800314D4 -setBlock__10JUTResFontFv=0x800315E0 -setGX__10JUTResFontFv=0x8003171C -setGX__10JUTResFontFQ28JUtility6TColorQ28JUtility6TColor=0x80031814 -drawChar_scale__10JUTResFontFffffib=0x80031A54 -getDescent__10JUTResFontCFv=0x80031E58 -getHeight__10JUTResFontCFv=0x80031E64 -getAscent__10JUTResFontCFv=0x80031EC0 -loadFont__10JUTResFontFi11_GXTexMapIDPQ27JUTFont6TWidth=0x80031ECC -getWidthEntry__10JUTResFontCFiPQ27JUTFont6TWidth=0x80031F54 -getCellWidth__10JUTResFontCFv=0x80032014 -getWidth__10JUTResFontCFv=0x80032060 -getCellHeight__10JUTResFontCFv=0x8003206C -isLeadByte__10JUTResFontCFi=0x800320B8 -getFontCode__10JUTResFontCFi=0x800320E8 -getFontType__10JUTResFontCFv=0x80032294 -loadImage__10JUTResFontFi11_GXTexMapID=0x800322A0 -convertSjis__10JUTResFontCFiPUs=0x80032420 -getResFont__10JUTResFontCFv=0x80032464 -getLeading__10JUTResFontCFv=0x8003246C -getResource__15JUTResReferenceFP14JSUInputStreamUlP10JKRArchive=0x80032478 -getResource__15JUTResReferenceFPCvUlP10JKRArchive=0x80032530 -getResource__15JUTResReferenceFUlP10JKRArchive=0x800325D4 -__ct__10JUTRomFontFP7JKRHeap=0x8003264C -initiate__10JUTRomFontFP7JKRHeap=0x800326A0 -__dt__10JUTRomFontFv=0x800326F4 -loadImage__10JUTRomFontFP7JKRHeap=0x80032790 -setGX__10JUTRomFontFv=0x8003285C -drawChar_scale__10JUTRomFontFffffib=0x80032954 -getHeight__10JUTRomFontCFv=0x80032DD4 -getDescent__10JUTRomFontCFv=0x80032E30 -getAscent__10JUTRomFontCFv=0x80032E3C -getCellHeight__10JUTRomFontCFv=0x80032E48 -getCellWidth__10JUTRomFontCFv=0x80032E54 -getWidthEntry__10JUTRomFontCFiPQ27JUTFont6TWidth=0x80032E60 -isLeadByte__10JUTRomFontCFi=0x80032EC0 -getWidth__10JUTRomFontCFv=0x80032EF0 -getLeading__10JUTRomFontCFv=0x80032EFC -getResFont__10JUTRomFontCFv=0x80032F08 -getFontType__10JUTRomFontCFv=0x80032F10 -__ct__10JUTTextureFii9_GXTexFmt=0x80032F1C -__dt__10JUTTextureFv=0x80033010 -storeTIMG__10JUTTextureFPC7ResTIMGUc=0x80033084 -storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette=0x80033230 -storeTIMG__10JUTTextureFPC7ResTIMGP10JUTPalette7_GXTlut=0x80033264 -attachPalette__10JUTTextureFP10JUTPalette=0x8003339C -init__10JUTTextureFv=0x800333F4 -initTexObj__10JUTTextureFv=0x80033444 -initTexObj__10JUTTextureF7_GXTlut=0x80033534 -load__10JUTTextureF11_GXTexMapID=0x80033630 -capture__10JUTTextureFii9_GXTexFmtbUc=0x80033680 -createManager__8JUTVideoFPC16_GXRenderModeObj=0x80033744 -destroyManager__8JUTVideoFv=0x8003379C -__ct__8JUTVideoFPC16_GXRenderModeObj=0x800337E4 -__dt__8JUTVideoFv=0x800338D8 -preRetraceProc__8JUTVideoFUl=0x80033940 -drawDoneStart__8JUTVideoFv=0x80033B68 -dummyNoDrawWait__8JUTVideoFv=0x80033B90 -drawDoneCallback__8JUTVideoFv=0x80033B9C -postRetraceProc__8JUTVideoFUl=0x80033C24 -setRenderMode__8JUTVideoFPC16_GXRenderModeObj=0x80033C70 -waitRetraceIfNeed__8JUTVideoFv=0x80033CE8 -setPostRetraceCallback__8JUTVideoFPFUl_v=0x80033CEC -clearIndex__6JUTXfbFv=0x80033CFC -createManager__6JUTXfbFP7JKRHeapQ26JUTXfb10EXfbNumber=0x80033D10 -destroyManager__6JUTXfbFv=0x80033DB8 -initiate__6JUTXfbFUsUsP7JKRHeapQ26JUTXfb10EXfbNumber=0x80033E48 -accumeXfbSize__6JUTXfbFv=0x80033F30 -__ct__12JUTCacheFontFPC7ResFONTUlP7JKRHeap=0x80033F94 -__dt__12JUTCacheFontFv=0x80034024 -deleteMemBlocks_CacheFont__12JUTCacheFontFv=0x800340B8 -initialize_state__12JUTCacheFontFv=0x8003413C -getMemorySize__12JUTCacheFontFPC7ResFONTPUsPUlPUsPUlPUsPUlPUl=0x80034178 -initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap=0x80034300 -internal_initiate__12JUTCacheFontFPC7ResFONTPvUlP7JKRHeap=0x800343B4 -allocArea__12JUTCacheFontFPvUlP7JKRHeap=0x80034538 -allocArray__12JUTCacheFontFP7JKRHeap=0x800346FC -setBlock__12JUTCacheFontFv=0x800347E4 -loadImage__12JUTCacheFontFi11_GXTexMapID=0x800349F4 -loadCache_char_subroutine__12JUTCacheFontFPib=0x80034AB0 -loadCache_string__12JUTCacheFontFPCcb=0x80034D48 -invalidiateAllCache__12JUTCacheFontFv=0x80034E10 -unlink__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo=0x80034E98 -prepend__12JUTCacheFontFPQ212JUTCacheFont15TGlyphCacheInfo=0x80034EDC -JMAEulerToQuat__FsssP10Quaternion=0x80034F08 -JMAQuatLerp__FPC10QuaternionPC10QuaternionfP10Quaternion=0x80034FC4 -JMAMTXApplyScale__FPA4_CfPA4_ffff=0x8003509C -__ct__Q25JMath13TRandom_fast_FUl=0x80035100 -atan2___Q25JMath18TAtanTable<1024,f>CFff=0x80035108 -__sinit_JMATrigonometric_cpp=0x80035360 -__ct__Q23std9pairFv=0x80035520 -__ct__13J2DOrthoGraphFv=0x80035530 -__dt__14J2DGrafContextFv=0x80035590 -__ct__13J2DOrthoGraphFffffff=0x800355D8 -setPort__13J2DOrthoGraphFv=0x800356BC -setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2ff=0x80035714 -setLookat__13J2DOrthoGraphFv=0x80035748 -scissorBounds__13J2DOrthoGraphFPQ29JGeometry8TBox2PCQ29JGeometry8TBox2=0x80035784 -J2DDrawLine__FffffQ28JUtility6TColori=0x80035890 -J2DFillBox__FffffQ28JUtility6TColor=0x800359F8 -J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColor=0x80035A40 -J2DFillBox__FffffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor=0x80035B0C -J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor=0x80035B78 -J2DDrawFrame__FffffQ28JUtility6TColorUc=0x80035C48 -J2DDrawFrame__FRCQ29JGeometry8TBox2Q28JUtility6TColorUc=0x80035C94 -getGrafType__13J2DOrthoGraphCFv=0x80035D78 -place__14J2DGrafContextFffff=0x80035D80 -__ct__13J2DPerspGraphFv=0x80035DC8 -set__13J2DPerspGraphFfff=0x80035E14 -setFovy__13J2DPerspGraphFf=0x80035E74 -setPort__13J2DPerspGraphFv=0x80035EA0 -setLookat__13J2DPerspGraphFv=0x80035F08 -makeLookat__13J2DPerspGraphFv=0x80035F70 -__dt__13J2DPerspGraphFv=0x80036010 -getGrafType__13J2DPerspGraphCFv=0x8003606C -__ct__14J2DGrafContextFffff=0x80036074 -setPort__14J2DGrafContextFv=0x80036120 -setup2D__14J2DGrafContextFv=0x800361B0 -setScissor__14J2DGrafContextFv=0x8003638C -scissor__14J2DGrafContextFRCQ29JGeometry8TBox2=0x80036634 -place__14J2DGrafContextFRCQ29JGeometry8TBox2=0x80036658 -setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor=0x8003668C -setLineWidth__14J2DGrafContextFUc=0x800367A8 -fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2=0x800367D4 -drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2=0x800368D0 -lineTo__14J2DGrafContextFQ29JGeometry8TVec2=0x800369E0 -getGrafType__14J2DGrafContextCFv=0x80036AE4 -setLookat__14J2DGrafContextFv=0x80036AEC -__ct__7J2DPaneFv=0x80036AF0 -calcMtx__7J2DPaneFv=0x80036BB0 -makeMatrix__7J2DPaneFff=0x80036BF0 -initiate__7J2DPaneFv=0x80036C2C -__ct__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2=0x80036CB4 -initialize__7J2DPaneFP7J2DPanebUxRCQ29JGeometry8TBox2=0x80036D3C -__ct__7J2DPaneFUxRCQ29JGeometry8TBox2=0x80036E5C -initialize__7J2DPaneFUxRCQ29JGeometry8TBox2=0x80036ED4 -__ct__7J2DPaneFP7J2DPaneP20JSURandomInputStreamUc=0x80036FC8 -makePaneStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream=0x800370E8 -changeUseTrans__7J2DPaneFP7J2DPane=0x80037428 -__dt__7J2DPaneFv=0x800375E4 -appendChild__7J2DPaneFP7J2DPane=0x800376C4 -prependChild__7J2DPaneFP7J2DPane=0x8003777C -removeChild__7J2DPaneFP7J2DPane=0x80037834 -draw__7J2DPaneFffPC14J2DGrafContextbb=0x800378D8 -drawSelf__7J2DPaneFffPA3_A4_f=0x80037F30 -rewriteAlpha__7J2DPaneFv=0x80037F34 -place__7J2DPaneFRCQ29JGeometry8TBox2=0x80037F38 -move__7J2DPaneFff=0x80038180 -add__7J2DPaneFff=0x800381D4 -resize__7J2DPaneFff=0x80038218 -getBounds__7J2DPaneFv=0x80038320 -rotate__7J2DPaneFff13J2DRotateAxisf=0x80038400 -rotate__7J2DPaneFf=0x80038430 -clip__7J2DPaneFRCQ29JGeometry8TBox2=0x80038488 -search__7J2DPaneFUx=0x80038504 -gather__7J2DPaneFPP7J2DPaneUxUxiRi=0x800385B4 -getNextChild__17JSUTree<7J2DPane>CFv=0x800388C4 -__ne__25JSUTreeIterator<7J2DPane>CFPC17JSUTree<7J2DPane>=0x800388D8 -getEndChild__17JSUTree<7J2DPane>CFv=0x800388F0 -__pp__25JSUTreeIterator<7J2DPane>Fv=0x800388F8 -__ct__25JSUTreeIterator<7J2DPane>FP17JSUTree<7J2DPane>=0x80038914 -__rf__25JSUTreeIterator<7J2DPane>CFv=0x8003891C -getFirstChild__17JSUTree<7J2DPane>CFv=0x80038928 -getObject__17JSUTree<7J2DPane>CFv=0x8003893C -searchUserInfo__7J2DPaneFUx=0x80038944 -isUsed__7J2DPaneFPC7ResTIMG=0x800389F4 -isUsed__7J2DPaneFPC7ResFONT=0x80038A7C -makeMatrix__7J2DPaneFffff=0x80038B04 -setCullBack__7J2DPaneF11_GXCullMode=0x80038C44 -setBasePosition__7J2DPaneF15J2DBasePosition=0x80038CBC -setInfluencedAlpha__7J2DPaneFbb=0x80038DAC -setAlpha__7J2DPaneFUc=0x80038F90 -getGlbVtx__7J2DPaneCFUc=0x80038F98 -getFirstChildPane__7J2DPaneFv=0x80039070 -getNextChildPane__7J2DPaneFv=0x800390A8 -getParentPane__7J2DPaneFv=0x800390E0 -makePaneExStream__7J2DPaneFP7J2DPaneP20JSURandomInputStream=0x800390FC -J2DCast_F32_to_S16__7J2DPaneFfUc=0x80039308 -getPointer__7J2DPaneFP20JSURandomInputStreamUlP10JKRArchive=0x800393C0 -setAnimation__7J2DPaneFP10J2DAnmBase=0x8003950C -setAnimation__7J2DPaneFP15J2DAnmTevRegKey=0x800395DC -setAnimation__7J2DPaneFP20J2DAnmVisibilityFull=0x800395E0 -setAnimation__7J2DPaneFP16J2DAnmTexPattern=0x800395E4 -setAnimation__7J2DPaneFP19J2DAnmTextureSRTKey=0x800395E8 -setAnimation__7J2DPaneFP14J2DAnmVtxColor=0x800395EC -setAnimation__7J2DPaneFP11J2DAnmColor=0x800395F0 -setAnimation__7J2DPaneFP15J2DAnmTransform=0x800395F4 -animationTransform__7J2DPaneFv=0x800395FC -clearAnmTransform__7J2DPaneFv=0x80039634 -animationTransform__7J2DPaneFPC15J2DAnmTransform=0x800396B0 -setVisibileAnimation__7J2DPaneFP20J2DAnmVisibilityFull=0x80039750 -setAnimationVF__7J2DPaneFP20J2DAnmVisibilityFull=0x800397D8 -setVtxColorAnimation__7J2DPaneFP14J2DAnmVtxColor=0x80039804 -setAnimationVC__7J2DPaneFP14J2DAnmVtxColor=0x8003988C -animationPane__7J2DPaneFPC15J2DAnmTransform=0x800398B8 -updateTransform__7J2DPaneFPC15J2DAnmTransform=0x80039958 -getTransform__15J2DAnmTransformCFUsP16J3DTransformInfo=0x80039A60 -getTypeID__7J2DPaneCFv=0x80039A64 -setCullBack__7J2DPaneFb=0x80039A6C -setConnectParent__7J2DPaneFb=0x80039AA8 -update__7J2DPaneFv=0x80039AB8 -drawSelf__7J2DPaneFff=0x80039ABC -__sinit_J2DPane_cpp=0x80039AC0 -__ct__10J2DPictureFv=0x80039ADC -__ct__Q28JUtility6TColorFv=0x80039B94 -__ct__Q29JGeometry8TVec2Fv=0x80039BA0 -__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive=0x80039BA4 -__ct__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial=0x80039C70 -getTevKColor__11J2DTevBlockFUl=0x8003A25C -setUndeleteFlag__11J2DTevBlockFUc=0x8003A264 -getTevColor__11J2DTevBlockFUl=0x8003A268 -getTevStageNum__11J2DTevBlockCFv=0x8003A270 -__ct__10J2DPictureFPC7ResTIMG=0x8003A278 -append__10J2DPictureFPC7ResTIMGf=0x8003A360 -insert__10J2DPictureFPC7ResTIMGUcf=0x8003A390 -__ct__10J2DPictureFPCc=0x8003A3C4 -append__10J2DPictureFPCcf=0x8003A4AC -insert__10J2DPictureFPCcUcf=0x8003A4DC -__ct__10J2DPictureFP10JUTTexture=0x8003A510 -append__10J2DPictureFP10JUTTexturef=0x8003A5F8 -__ct__10J2DPictureFUxRCQ29JGeometry8TBox2=0x8003A628 -setBlendRatio__10J2DPictureFffffffff=0x8003A714 -private_readStream__10J2DPictureFP7J2DPaneP20JSURandomInputStreamP10JKRArchive=0x8003A7B0 -initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT=0x8003ABA4 -private_initiate__10J2DPictureFPC7ResTIMGPC7ResTLUT=0x8003AC38 -initinfo__10J2DPictureFv=0x8003AD74 -__dt__10J2DPictureFv=0x8003AEE0 -prepareTexture__10J2DPictureFUc=0x8003AF7C -insert__10J2DPictureFPC7ResTIMGP10JUTPaletteUcf=0x8003B05C -insert__10J2DPictureFPCcP10JUTPaletteUcf=0x8003B388 -insert__10J2DPictureFP10JUTTextureUcf=0x8003B400 -remove__10J2DPictureFUc=0x8003B5D8 -remove__10J2DPictureFP10JUTTexture=0x8003B708 -changeTexture__10J2DPictureFPC7ResTIMGUc=0x8003B768 -getTexture__10J2DPictureCFUc=0x8003B850 -changeTexture__10J2DPictureFPCcUc=0x8003B874 -changeTexture__10J2DPictureFPC7ResTIMGUcP10JUTPalette=0x8003B8CC -append__10J2DPictureFPC7ResTIMGP10JUTPalettef=0x8003B9D4 -changeTexture__10J2DPictureFPCcUcP10JUTPalette=0x8003BA04 -drawSelf__10J2DPictureFff=0x8003BA6C -drawSelf__10J2DPictureFffPA3_A4_f=0x8003BAD4 -drawFullSet__10J2DPictureFffffPA3_A4_f=0x8003BB40 -draw__10J2DPictureFffffbbb=0x8003BBB4 -load__10J2DPictureFUc=0x8003BEA8 -load__10J2DPictureF11_GXTexMapIDUc=0x8003BEDC -drawOut__10J2DPictureFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2=0x8003BF28 -drawTexCoord__10J2DPictureFffffssssssssPA3_A4_f=0x8003C324 -setTevMode__10J2DPictureFv=0x8003C560 -setBlendColorRatio__10J2DPictureFffffffff=0x8003CA00 -setBlendAlphaRatio__10J2DPictureFffffffff=0x8003CA30 -setBlendKonstColor__10J2DPictureFv=0x8003CA60 -setBlendKonstAlpha__10J2DPictureFv=0x8003CBB0 -getNewColor__10J2DPictureFPQ28JUtility6TColor=0x8003CD00 -setTexCoord__10J2DPictureFPCQ29JGeometry8TVec2=0x8003CE24 -setTexCoord__10J2DPictureFPC10JUTTexture10J2DBinding9J2DMirrorb=0x8003CE68 -setTexCoord__10J2DPictureFPQ29JGeometry8TVec2PC10JUTTexture10J2DBinding9J2DMirrorb=0x8003CEA4 -isUsed__10J2DPictureFPC7ResTIMG=0x8003D1BC -getUsableTlut__10J2DPictureFUc=0x8003D220 -getTlutID__10J2DPictureFPC7ResTIMGUc=0x8003D2F0 -getTypeID__10J2DPictureCFv=0x8003D324 -append__10J2DPictureFPCcP10JUTPalettef=0x8003D32C -prepend__10J2DPictureFP10JUTTexturef=0x8003D35C -prepend__10J2DPictureFPCcP10JUTPalettef=0x8003D38C -prepend__10J2DPictureFPCcf=0x8003D3BC -prepend__10J2DPictureFPC7ResTIMGP10JUTPalettef=0x8003D3EC -prepend__10J2DPictureFPC7ResTIMGf=0x8003D41C -remove__10J2DPictureFv=0x8003D44C -draw__10J2DPictureFffUcbbb=0x8003D484 -draw__10J2DPictureFffbbb=0x8003D51C -drawOut__10J2DPictureFffffffff=0x8003D55C -drawOut__10J2DPictureFffffff=0x8003D5C0 -getTextureCount__10J2DPictureCFv=0x8003D66C -setBlack__10J2DPictureFQ28JUtility6TColor=0x8003D674 -setWhite__10J2DPictureFQ28JUtility6TColor=0x8003D69C -setBlackWhite__10J2DPictureFQ28JUtility6TColorQ28JUtility6TColor=0x8003D6C4 -getBlack__10J2DPictureCFv=0x8003D70C -getWhite__10J2DPictureCFv=0x8003D718 -getMaterial__10J2DPictureCFv=0x8003D724 -isUsed__10J2DPictureFPC7ResFONT=0x8003D72C -rewriteAlpha__10J2DPictureFv=0x8003D74C -__ct__8J2DPrintFP7JUTFontf=0x8003D750 -__ct__8J2DPrintFP7JUTFontQ28JUtility6TColorQ28JUtility6TColor=0x8003D7E4 -__ct__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor=0x8003D87C -__dt__8J2DPrintFv=0x8003D910 -initiate__8J2DPrintFv=0x8003D958 -private_initiate__8J2DPrintFP7JUTFontffQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorb=0x8003D9AC -setFont__8J2DPrintFP7JUTFont=0x8003DB94 -setBuffer__8J2DPrintFUl=0x8003DBD8 -setFontSize__8J2DPrintFv=0x8003DC44 -locate__8J2DPrintFff=0x8003DCDC -print__8J2DPrintFffPCce=0x8003DCF8 -print__8J2DPrintFffUcPCce=0x8003DE0C -getWidth__8J2DPrintFPCce=0x8003DF2C -printReturn__8J2DPrintFPCcff18J2DTextBoxHBinding18J2DTextBoxVBindingffUc=0x8003E018 -parse__8J2DPrintFPCUciiPUsRQ28J2DPrint5TSizeUcb=0x8003E334 -doCtrlCode__8J2DPrintFi=0x8003EAF0 -doEscapeCode__8J2DPrintFPPCUcUc=0x8003EC18 -initchar__8J2DPrintFv=0x8003F1B8 -getNumberS32__8J2DPrintFPPCUclli=0x8003F22C -getNumberF32__8J2DPrintFPPCUcffi=0x8003F340 -__ct__9J2DScreenFv=0x8003F474 -__dt__9J2DScreenFv=0x8003F51C -clean__9J2DScreenFv=0x8003F584 -set__9J2DScreenFPCcUlP10JKRArchive=0x8003F624 -set__9J2DScreenFP20JSURandomInputStreamUl=0x8003F728 -private_set__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive=0x8003F74C -checkSignature__9J2DScreenFP20JSURandomInputStream=0x8003F88C -getScreenInformation__9J2DScreenFP20JSURandomInputStream=0x8003F8EC -makeHierarchyPanes__9J2DScreenFP7J2DPaneP20JSURandomInputStreamUlP10JKRArchive=0x8003F9E8 -createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUl=0x8003FF48 -createPane__9J2DScreenFRC18J2DScrnBlockHeaderP20JSURandomInputStreamP7J2DPaneUlP10JKRArchive=0x8003FF78 -draw__9J2DScreenFffPC14J2DGrafContext=0x800402AC -search__9J2DScreenFUx=0x80040478 -gather__9J2DScreenFPP7J2DPaneUxUxi=0x800404B8 -searchUserInfo__9J2DScreenFUx=0x800404E8 -drawSelf__9J2DScreenFffPA3_A4_f=0x80040528 -getResReference__9J2DScreenFP20JSURandomInputStreamUl=0x80040680 -createMaterial__9J2DScreenFP20JSURandomInputStreamUlP10JKRArchive=0x80040774 -getMaterial__9J2DScreenFUs=0x80040A64 -isUsed__9J2DScreenFPC7ResTIMG=0x80040A9C -isUsed__9J2DScreenFPC7ResFONT=0x80040ABC -getNameResource__9J2DScreenFPCc=0x80040ADC -animation__9J2DScreenFv=0x80040B2C -setAnimation__9J2DScreenFP11J2DAnmColor=0x80040BA0 -setAnimation__9J2DScreenFP19J2DAnmTextureSRTKey=0x80040C44 -setAnimation__9J2DScreenFP16J2DAnmTexPattern=0x80040D00 -setAnimation__9J2DScreenFP15J2DAnmTevRegKey=0x80040DA4 -setAnimation__9J2DScreenFP14J2DAnmVtxColor=0x80040E90 -setAnimation__9J2DScreenFP20J2DAnmVisibilityFull=0x80040EB0 -getTypeID__9J2DScreenCFv=0x80040ED0 -calcMtx__9J2DScreenFv=0x80040ED8 -setAnimation__9J2DScreenFP15J2DAnmTransform=0x80040F0C -setAnimation__9J2DScreenFP10J2DAnmBase=0x80040F2C -clearAnmTransform__9J2DScreenFv=0x80040F4C -setAnimationVF__9J2DScreenFP20J2DAnmVisibilityFull=0x80040F6C -setAnimationVC__9J2DScreenFP14J2DAnmVtxColor=0x80040F70 -__ct__10J2DTextBoxFv=0x80040F74 -__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive=0x80040FEC -__ct__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial=0x80041080 -setFontUndeleteFlag__11J2DTevBlockFv=0x800414E0 -getFont__11J2DTevBlockFv=0x800414E4 -__ct__10J2DTextBoxFUxRCQ29JGeometry8TBox2PC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding=0x800414EC -initiate__10J2DTextBoxFPC7ResFONTPCcs18J2DTextBoxHBinding18J2DTextBoxVBinding=0x80041578 -private_readStream__10J2DTextBoxFP7J2DPaneP20JSURandomInputStreamP10JKRArchive=0x800417A0 -__dt__10J2DTextBoxFv=0x80041AF0 -getFont__10J2DTextBoxCFv=0x80041B88 -setFont__10J2DTextBoxFP7JUTFont=0x80041B90 -draw__10J2DTextBoxFff=0x80041C00 -draw__10J2DTextBoxFfff18J2DTextBoxHBinding=0x80041DA4 -setString__10J2DTextBoxFPCce=0x80041F74 -setConnectParent__10J2DTextBoxFb=0x80042068 -drawSelf__10J2DTextBoxFff=0x800420E0 -drawSelf__10J2DTextBoxFffPA3_A4_f=0x80042148 -resize__10J2DTextBoxFff=0x800422F0 -isUsed__10J2DTextBoxFPC7ResFONT=0x800423F4 -getTypeID__10J2DTextBoxCFv=0x80042460 -setBlack__10J2DTextBoxFQ28JUtility6TColor=0x80042468 -setWhite__10J2DTextBoxFQ28JUtility6TColor=0x80042490 -setBlackWhite__10J2DTextBoxFQ28JUtility6TColorQ28JUtility6TColor=0x800424B8 -getBlack__10J2DTextBoxCFv=0x80042500 -getWhite__10J2DTextBoxCFv=0x8004250C -getMaterial__10J2DTextBoxCFv=0x80042518 -isUsed__10J2DTextBoxFPC7ResTIMG=0x80042520 -rewriteAlpha__10J2DTextBoxFv=0x80042540 -__ct__9J2DWindowFv=0x80042544 -__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive=0x8004263C -__ct__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP11J2DMaterial=0x800426E8 -private_readStream__9J2DWindowFP7J2DPaneP20JSURandomInputStreamP10JKRArchive=0x80042C48 -initinfo2__9J2DWindowFv=0x8004312C -__dt__9J2DWindowFv=0x800433A8 -draw__9J2DWindowFRCQ29JGeometry8TBox2=0x80043450 -draw_private__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2=0x80043584 -draw__9J2DWindowFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2=0x80043A08 -resize__9J2DWindowFff=0x80043B40 -setContentsColor__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor=0x80043C6C -drawSelf__9J2DWindowFff=0x80043D18 -drawSelf__9J2DWindowFffPA3_A4_f=0x80043D80 -drawContents__9J2DWindowFRCQ29JGeometry8TBox2=0x80043E78 -drawFrameTexture__9J2DWindowFP10JUTTextureffffUsUsUsUsb=0x800441B4 -drawFrameTexture__9J2DWindowFP10JUTTextureffbbb=0x80044334 -drawContentsTexture__9J2DWindowFffff=0x80044560 -setTevMode__9J2DWindowFP10JUTTextureQ28JUtility6TColorQ28JUtility6TColor=0x800448C0 -getFrameTexture__9J2DWindowCFUcUc=0x80044B98 -isUsed__9J2DWindowFPC7ResTIMG=0x80044C14 -getTypeID__9J2DWindowCFv=0x80044CCC -draw__9J2DWindowFffff=0x80044CD4 -setBlack__9J2DWindowFQ28JUtility6TColor=0x80044D1C -setWhite__9J2DWindowFQ28JUtility6TColor=0x80044D44 -setBlackWhite__9J2DWindowFQ28JUtility6TColorQ28JUtility6TColor=0x80044D6C -getBlack__9J2DWindowCFv=0x80044DB4 -getWhite__9J2DWindowCFv=0x80044DC0 -getContentsTexture__9J2DWindowCFUc=0x80044DCC -getMaterial__9J2DWindowCFRQ29J2DWindow9TMaterial=0x80044DE4 -getFrameMaterial__9J2DWindowCFUc=0x80044E00 -getContentsMaterial__9J2DWindowCFv=0x80044E08 -isUsed__9J2DWindowFPC7ResFONT=0x80044E10 -rewriteAlpha__9J2DWindowFv=0x80044E30 -__ct__11J2DWindowExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial=0x80044E34 -getTevStage__11J2DTevBlockFUl=0x8004511C -setTevOrder__11J2DTevBlockFUl11J2DTevOrder=0x80045124 -insertTexture__11J2DTevBlockFUlPC7ResTIMG=0x80045128 -setTevKAlphaSel__11J2DTevBlockFUlUc=0x80045130 -setTevKColorSel__11J2DTevBlockFUlUc=0x80045134 -setTevStageNum__11J2DTevBlockFUc=0x80045138 -setMinSize__11J2DWindowExFv=0x8004513C -__dt__11J2DWindowExFv=0x80045300 -drawSelf__11J2DWindowExFffPA3_A4_f=0x800453F8 -draw_private__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2=0x80045498 -drawContents__11J2DWindowExFRCQ29JGeometry8TBox2=0x80045B88 -drawFrameTexture__11J2DWindowExFffffUsUsUsUsP11J2DMaterialb=0x80045FB4 -draw__11J2DWindowExFRCQ29JGeometry8TBox2=0x80046218 -draw__11J2DWindowExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2=0x800463AC -setTevStage__11J2DWindowExFb=0x800464D4 -setStage__11J2DWindowExFP11J2DTevStageQ211J2DWindowEx10stage_enum=0x800465F8 -setBlack__11J2DWindowExFQ28JUtility6TColor=0x800468B4 -setWhite__11J2DWindowExFQ28JUtility6TColor=0x8004693C -setBlackWhite__11J2DWindowExFQ28JUtility6TColorQ28JUtility6TColor=0x800469C4 -setTevColor__11J2DTevBlockFUl13J2DGXColorS10=0x80046CB0 -getBlackWhite__11J2DWindowExCFPQ28JUtility6TColorPQ28JUtility6TColor=0x80046CB4 -isSetBlackWhite__11J2DWindowExCFQ28JUtility6TColorQ28JUtility6TColor=0x80046E48 -getBlack__11J2DWindowExCFv=0x80046EE0 -getWhite__11J2DWindowExCFv=0x80046F40 -setAlpha__11J2DWindowExFUc=0x80046FA0 -setCullBack__11J2DWindowExF11_GXCullMode=0x80047024 -rewriteAlpha__11J2DWindowExFv=0x8004709C -getFrameTexture__11J2DWindowExCFUcUc=0x800470B4 -getFrameMaterial__11J2DWindowExCFUc=0x8004711C -getContentsTexture__11J2DWindowExCFUc=0x80047140 -getContentsMaterial__11J2DWindowExCFv=0x800471A8 -isUsed__11J2DWindowExFPC7ResTIMG=0x800471B0 -setAnimation__11J2DWindowExFP11J2DAnmColor=0x800472C8 -setAnimation__11J2DWindowExFP19J2DAnmTextureSRTKey=0x80047358 -setAnimation__11J2DWindowExFP16J2DAnmTexPattern=0x800473E8 -setAnimation__11J2DWindowExFP15J2DAnmTevRegKey=0x80047478 -isNeedSetAnm__11J2DWindowExFUc=0x80047508 -setAnimation__11J2DWindowExFP20J2DAnmVisibilityFull=0x80047564 -setAnimation__11J2DWindowExFP14J2DAnmVtxColor=0x8004756C -animationPane__11J2DWindowExFPC15J2DAnmTransform=0x8004764C -getColor__14J2DAnmVtxColorCFUcUsP8_GXColor=0x800477F8 -getMaterial__11J2DWindowExCFRQ29J2DWindow9TMaterial=0x800477FC -draw__11J2DWindowExFffff=0x80047828 -setCullBack__11J2DWindowExFb=0x80047880 -isUsed__11J2DWindowExFPC7ResFONT=0x800478BC -setAnimation__11J2DWindowExFP15J2DAnmTransform=0x800478DC -setAnimation__11J2DWindowExFP10J2DAnmBase=0x800478FC -load__20J2DAnmLoaderDataBaseFPCv=0x8004791C -__dt__14J2DAnmVtxColorFv=0x800480B8 -__dt__11J2DAnmColorFv=0x80048114 -__dt__15J2DAnmTransformFv=0x80048188 -__dt__10J2DAnmBaseFv=0x800481E4 -__ct__19J2DAnmKeyLoader_v15Fv=0x8004822C -__dt__12J2DAnmLoaderFv=0x80048248 -__dt__19J2DAnmKeyLoader_v15Fv=0x80048290 -load__19J2DAnmKeyLoader_v15FPCv=0x800482EC -setResource__19J2DAnmKeyLoader_v15FP10J2DAnmBasePCv=0x800483F0 -readAnmTransform__19J2DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData=0x80048544 -setAnmTransform__19J2DAnmKeyLoader_v15FP18J2DAnmTransformKeyPC22J3DAnmTransformKeyData=0x8004856C -readAnmTextureSRT__19J2DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData=0x80048608 -setAnmTextureSRT__19J2DAnmKeyLoader_v15FP19J2DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData=0x80048630 -readAnmColor__19J2DAnmKeyLoader_v15FPC18J3DAnmColorKeyData=0x8004881C -setAnmColor__19J2DAnmKeyLoader_v15FP14J2DAnmColorKeyPC18J3DAnmColorKeyData=0x80048844 -readAnmVtxColor__19J2DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData=0x80048930 -setAnmVtxColor__19J2DAnmKeyLoader_v15FP17J2DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData=0x80048958 -load__20J2DAnmFullLoader_v15FPCv=0x80048A54 -setResource__20J2DAnmFullLoader_v15FP10J2DAnmBasePCv=0x80048B58 -__ct__20J2DAnmFullLoader_v15Fv=0x80048CAC -__dt__20J2DAnmFullLoader_v15Fv=0x80048CC8 -readAnmTransform__20J2DAnmFullLoader_v15FPC23J3DAnmTransformFullData=0x80048D24 -setAnmTransform__20J2DAnmFullLoader_v15FP19J2DAnmTransformFullPC23J3DAnmTransformFullData=0x80048D4C -readAnmColor__20J2DAnmFullLoader_v15FPC19J3DAnmColorFullData=0x80048DE0 -setAnmColor__20J2DAnmFullLoader_v15FP15J2DAnmColorFullPC19J3DAnmColorFullData=0x80048E08 -readAnmTexPattern__20J2DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData=0x80048ED4 -setAnmTexPattern__20J2DAnmFullLoader_v15FP16J2DAnmTexPatternPC24J3DAnmTexPatternFullData=0x80048EFC -readAnmTevReg__19J2DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData=0x80048FA0 -setAnmTevReg__19J2DAnmKeyLoader_v15FP15J2DAnmTevRegKeyPC19J3DAnmTevRegKeyData=0x80048FC8 -readAnmVisibility__20J2DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData=0x80049154 -setAnmVisibility__20J2DAnmFullLoader_v15FP20J2DAnmVisibilityFullPC24J3DAnmVisibilityFullData=0x8004917C -readAnmVtxColor__20J2DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData=0x800491F8 -setAnmVtxColor__20J2DAnmFullLoader_v15FP18J2DAnmVtxColorFullPC22J3DAnmVtxColorFullData=0x80049220 -__dt__20J2DAnmVisibilityFullFv=0x8004931C -searchUpdateMaterialID__10J2DAnmBaseFP9J2DScreen=0x80049378 -JSUConvertOffsetToPtr<25J3DAnmVisibilityFullTable>__FPCvPCv=0x8004937C -JSUConvertOffsetToPtr<18J3DAnmKRegKeyTable>__FPCvPCv=0x80049394 -JSUConvertOffsetToPtr<18J3DAnmCRegKeyTable>__FPCvPCv=0x800493AC -JSUConvertOffsetToPtr<25J3DAnmTexPatternFullTable>__FPCvPCv=0x800493C4 -JSUConvertOffsetToPtr<20J3DAnmColorFullTable>__FPCvPCv=0x800493DC -JSUConvertOffsetToPtr<24J3DAnmTransformFullTable>__FPCvPCv=0x800493F4 -JSUConvertOffsetToPtr<23J3DAnmVtxColorIndexData>__FPCvPCv=0x8004940C -JSUConvertOffsetToPtr<19J3DAnmColorKeyTable>__FPCvPCv=0x80049424 -JSUConvertOffsetToPtr<3Vec>__FPCvPCv=0x8004943C -JSUConvertOffsetToPtr__FPCvPCv=0x80049454 -JSUConvertOffsetToPtr<7ResNTAB>__FPCvPCv=0x8004946C -JSUConvertOffsetToPtr__FPCvPCv=0x80049484 -JSUConvertOffsetToPtr__FPCvPCv=0x8004949C -JSUConvertOffsetToPtr__FPCvPCv=0x800494B4 -JSUConvertOffsetToPtr<23J3DAnmTransformKeyTable>__FPCvPCv=0x800494CC -getTexNo__11J2DTevBlockCFUl=0x800494E4 -setTexNo__11J2DTevBlockFUlUs=0x800494F0 -getTevSwapModeTable__11J2DTevBlockFUl=0x800494F4 -getTevOrder__11J2DTevBlockFUl=0x800494FC -getFontNo__11J2DTevBlockCFv=0x80049504 -getIndTexStageNum__11J2DIndBlockCFv=0x80049510 -__dt__Q211J2DBloSaver19CTextureNameConnectFv=0x80049518 -clear__Q211J2DBloSaver19CTextureNameConnectFv=0x80049568 -__ct__11J2DTevStageFv=0x800495D8 -setTevStageInfo__11J2DTevStageFRC15J2DTevStageInfo=0x80049640 -__sinit_J2DBloSaver_cpp=0x80049820 -get__13J2DDataManageFPCc=0x8004985C -get__13J2DDataManageFP14JSUInputStream=0x800498C0 -getResReference__15J2DResReferenceCFUs=0x80049988 -getName__15J2DResReferenceCFUs=0x800499BC -initialize__13J2DColorBlockFv=0x80049B20 -setGX__13J2DColorBlockFv=0x80049BCC -initialize__14J2DTexGenBlockFv=0x80049CC0 -setGX__14J2DTexGenBlockFv=0x80049DB0 -__dt__14J2DTexGenBlockFv=0x80049E64 -setTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx=0x80049EF4 -getTexMtx__14J2DTexGenBlockFUlR9J2DTexMtx=0x8004A04C -getTexture__11J2DTevBlockFUl=0x8004A104 -getPalette__11J2DTevBlockFUl=0x8004A10C -__ct__12J2DTevBlock1Fv=0x8004A114 -__ct__14J2DIndTevStageFv=0x8004A220 -__ct__19J2DTevSwapModeTableFv=0x8004A2B4 -__ct__13J2DGXColorS10Fv=0x8004A2C0 -__ct__11J2DTevOrderFv=0x8004A2C4 -__dt__11J2DTevBlockFv=0x8004A2E4 -__dt__12J2DTevBlock1Fv=0x8004A32C -initialize__12J2DTevBlock1Fv=0x8004A3E4 -prepareTexture__12J2DTevBlock1FUc=0x8004A65C -insertTexture__12J2DTevBlock1FUlPC7ResTIMGP10JUTPalette=0x8004A718 -insertTexture__12J2DTevBlock1FUlP10JUTTexture=0x8004A84C -setTexture__12J2DTevBlock1FUlPC7ResTIMG=0x8004A8F4 -setTexture__12J2DTevBlock1FUlP10JUTTexture=0x8004AA8C -removeTexture__12J2DTevBlock1FUl=0x8004AB18 -setFont__12J2DTevBlock1FP7ResFONT=0x8004AB94 -setFont__12J2DTevBlock1FP7JUTFont=0x8004AC50 -setPalette__12J2DTevBlock1FUlPC7ResTLUT=0x8004ACD0 -shiftDeleteFlag__12J2DTevBlock1FUcb=0x8004AD98 -setGX__12J2DTevBlock1Fv=0x8004ADA8 -loadTexture__12J2DTevBlock1F11_GXTexMapIDUl=0x8004AFF4 -__ct__12J2DTevBlock2Fv=0x8004B03C -__dt__12J2DTevBlock2Fv=0x8004B14C -initialize__12J2DTevBlock2Fv=0x8004B224 -prepareTexture__12J2DTevBlock2FUc=0x8004B574 -insertTexture__12J2DTevBlock2FUlPC7ResTIMGP10JUTPalette=0x8004B654 -insertTexture__12J2DTevBlock2FUlP10JUTTexture=0x8004B920 -setTexture__12J2DTevBlock2FUlPC7ResTIMG=0x8004BA88 -setTexture__12J2DTevBlock2FUlP10JUTTexture=0x8004BCA4 -removeTexture__12J2DTevBlock2FUl=0x8004BD4C -setFont__12J2DTevBlock2FP7ResFONT=0x8004BE20 -setFont__12J2DTevBlock2FP7JUTFont=0x8004BEDC -setPalette__12J2DTevBlock2FUlPC7ResTLUT=0x8004BF5C -shiftDeleteFlag__12J2DTevBlock2FUcb=0x8004C02C -setGX__12J2DTevBlock2Fv=0x8004C0B4 -loadTexture__12J2DTevBlock2F11_GXTexMapIDUl=0x8004C39C -__ct__12J2DTevBlock4Fv=0x8004C3E4 -__dt__12J2DTevBlock4Fv=0x8004C4FC -initialize__12J2DTevBlock4Fv=0x8004C5CC -prepareTexture__12J2DTevBlock4FUc=0x8004C988 -insertTexture__12J2DTevBlock4FUlPC7ResTIMGP10JUTPalette=0x8004CA68 -insertTexture__12J2DTevBlock4FUlP10JUTTexture=0x8004CE14 -setTexture__12J2DTevBlock4FUlPC7ResTIMG=0x8004CFAC -setTexture__12J2DTevBlock4FUlP10JUTTexture=0x8004D290 -removeTexture__12J2DTevBlock4FUl=0x8004D338 -setFont__12J2DTevBlock4FP7ResFONT=0x8004D548 -setFont__12J2DTevBlock4FP7JUTFont=0x8004D604 -setPalette__12J2DTevBlock4FUlPC7ResTLUT=0x8004D684 -shiftDeleteFlag__12J2DTevBlock4FUcb=0x8004D754 -setGX__12J2DTevBlock4Fv=0x8004D7DC -loadTexture__12J2DTevBlock4F11_GXTexMapIDUl=0x8004DAC4 -__ct__12J2DTevBlock8Fv=0x8004DB0C -__dt__12J2DTevBlock8Fv=0x8004DC34 -initialize__12J2DTevBlock8Fv=0x8004DD04 -prepareTexture__12J2DTevBlock8FUc=0x8004E1A4 -insertTexture__12J2DTevBlock8FUlPC7ResTIMGP10JUTPalette=0x8004E284 -insertTexture__12J2DTevBlock8FUlP10JUTTexture=0x8004E64C -setTexture__12J2DTevBlock8FUlPC7ResTIMG=0x8004E7E4 -setTexture__12J2DTevBlock8FUlP10JUTTexture=0x8004EAC8 -removeTexture__12J2DTevBlock8FUl=0x8004EB70 -setFont__12J2DTevBlock8FP7ResFONT=0x8004ED80 -setFont__12J2DTevBlock8FP7JUTFont=0x8004EE34 -setPalette__12J2DTevBlock8FUlPC7ResTLUT=0x8004EEB0 -shiftDeleteFlag__12J2DTevBlock8FUcb=0x8004EF80 -setGX__12J2DTevBlock8Fv=0x8004EFEC -loadTexture__12J2DTevBlock8F11_GXTexMapIDUl=0x8004F2D4 -__ct__13J2DTevBlock16Fv=0x8004F31C -__dt__13J2DTevBlock16Fv=0x8004F444 -initialize__13J2DTevBlock16Fv=0x8004F514 -prepareTexture__13J2DTevBlock16FUc=0x8004FA64 -insertTexture__13J2DTevBlock16FUlPC7ResTIMGP10JUTPalette=0x8004FB44 -insertTexture__13J2DTevBlock16FUlP10JUTTexture=0x8004FF0C -setTexture__13J2DTevBlock16FUlPC7ResTIMG=0x800500A4 -setTexture__13J2DTevBlock16FUlP10JUTTexture=0x80050388 -removeTexture__13J2DTevBlock16FUl=0x80050430 -setFont__13J2DTevBlock16FP7ResFONT=0x80050640 -setFont__13J2DTevBlock16FP7JUTFont=0x800506F4 -setPalette__13J2DTevBlock16FUlPC7ResTLUT=0x80050770 -shiftDeleteFlag__13J2DTevBlock16FUcb=0x80050840 -setGX__13J2DTevBlock16Fv=0x800508AC -loadTexture__13J2DTevBlock16F11_GXTexMapIDUl=0x80050B94 -initialize__15J2DIndBlockFullFv=0x80050BDC -setGX__15J2DIndBlockFullFv=0x80050D24 -initialize__10J2DPEBlockFv=0x80050DF0 -setGX__10J2DPEBlockFv=0x80050E34 -getType__15J2DIndBlockFullFv=0x80050E94 -setIndTexStageNum__15J2DIndBlockFullFUc=0x80050EA0 -getIndTexStageNum__15J2DIndBlockFullCFv=0x80050EA8 -setIndTexOrder__15J2DIndBlockFullFUl14J2DIndTexOrder=0x80050EB0 -getIndTexOrder__15J2DIndBlockFullFUl=0x80050ECC -setIndTexMtx__15J2DIndBlockFullFUl12J2DIndTexMtx=0x80050EE0 -getIndTexMtx__15J2DIndBlockFullFUl=0x80050F24 -setIndTexCoordScale__15J2DIndBlockFullFUl19J2DIndTexCoordScale=0x80050F38 -getIndTexCoordScale__15J2DIndBlockFullFUl=0x80050F54 -__dt__15J2DIndBlockFullFv=0x80050F68 -__dt__12J2DIndTexMtxFv=0x80051004 -__dt__19J2DIndTexCoordScaleFv=0x80051040 -initialize__11J2DIndBlockFv=0x8005107C -setGX__11J2DIndBlockFv=0x80051080 -setIndTexStageNum__11J2DIndBlockFUc=0x80051084 -setIndTexOrder__11J2DIndBlockFUl14J2DIndTexOrder=0x80051088 -getIndTexOrder__11J2DIndBlockFUl=0x8005108C -setIndTexMtx__11J2DIndBlockFUl12J2DIndTexMtx=0x80051094 -getIndTexMtx__11J2DIndBlockFUl=0x80051098 -setIndTexCoordScale__11J2DIndBlockFUl19J2DIndTexCoordScale=0x800510A0 -getIndTexCoordScale__11J2DIndBlockFUl=0x800510A4 -__dt__11J2DIndBlockFv=0x800510AC -getType__13J2DTevBlock16Fv=0x800510F4 -getMaxStage__13J2DTevBlock16Fv=0x80051100 -setTexNo__13J2DTevBlock16FUlUs=0x80051108 -getTexNo__13J2DTevBlock16CFUl=0x80051118 -setFontNo__13J2DTevBlock16FUs=0x80051128 -getFontNo__13J2DTevBlock16CFv=0x80051130 -setTevOrder__13J2DTevBlock16FUl11J2DTevOrder=0x80051138 -getTevOrder__13J2DTevBlock16FUl=0x8005115C -setTevColor__13J2DTevBlock16FUl13J2DGXColorS10=0x80051170 -getTevColor__13J2DTevBlock16FUl=0x8005119C -setTevKColor__13J2DTevBlock16FUlQ28JUtility6TColor=0x800511B0 -getTevKColor__13J2DTevBlock16FUl=0x800511DC -setTevKColorSel__13J2DTevBlock16FUlUc=0x800511F0 -getTevKColorSel__13J2DTevBlock16FUl=0x800511FC -setTevKAlphaSel__13J2DTevBlock16FUlUc=0x80051208 -getTevKAlphaSel__13J2DTevBlock16FUl=0x80051214 -setTevStageNum__13J2DTevBlock16FUc=0x80051220 -getTevStageNum__13J2DTevBlock16CFv=0x80051228 -setTevStage__13J2DTevBlock16FUl11J2DTevStage=0x80051230 -getTevStage__13J2DTevBlock16FUl=0x8005126C -setTevSwapModeInfo__13J2DTevBlock16FUl18J2DTevSwapModeInfo=0x80051280 -setTevSwapModeTable__13J2DTevBlock16FUl19J2DTevSwapModeTable=0x800512B8 -getTevSwapModeTable__13J2DTevBlock16FUl=0x800512C8 -setIndTevStage__13J2DTevBlock16FUl14J2DIndTevStage=0x800512D8 -getIndTevStage__13J2DTevBlock16FUl=0x800512EC -insertTexture__13J2DTevBlock16FUlPC7ResTIMG=0x80051300 -getTexture__13J2DTevBlock16FUl=0x80051330 -getPalette__13J2DTevBlock16FUl=0x80051350 -getFont__13J2DTevBlock16Fv=0x80051370 -setUndeleteFlag__13J2DTevBlock16FUc=0x80051378 -setFontUndeleteFlag__13J2DTevBlock16Fv=0x80051388 -getType__12J2DTevBlock8Fv=0x80051394 -getMaxStage__12J2DTevBlock8Fv=0x800513A0 -setTexNo__12J2DTevBlock8FUlUs=0x800513A8 -getTexNo__12J2DTevBlock8CFUl=0x800513B8 -setFontNo__12J2DTevBlock8FUs=0x800513C8 -getFontNo__12J2DTevBlock8CFv=0x800513D0 -setTevOrder__12J2DTevBlock8FUl11J2DTevOrder=0x800513D8 -getTevOrder__12J2DTevBlock8FUl=0x800513FC -setTevColor__12J2DTevBlock8FUl13J2DGXColorS10=0x80051410 -getTevColor__12J2DTevBlock8FUl=0x8005143C -setTevKColor__12J2DTevBlock8FUlQ28JUtility6TColor=0x80051450 -getTevKColor__12J2DTevBlock8FUl=0x8005147C -setTevKColorSel__12J2DTevBlock8FUlUc=0x80051490 -getTevKColorSel__12J2DTevBlock8FUl=0x8005149C -setTevKAlphaSel__12J2DTevBlock8FUlUc=0x800514A8 -getTevKAlphaSel__12J2DTevBlock8FUl=0x800514B4 -setTevStageNum__12J2DTevBlock8FUc=0x800514C0 -getTevStageNum__12J2DTevBlock8CFv=0x800514C8 -setTevStage__12J2DTevBlock8FUl11J2DTevStage=0x800514D0 -getTevStage__12J2DTevBlock8FUl=0x8005150C -setTevSwapModeInfo__12J2DTevBlock8FUl18J2DTevSwapModeInfo=0x80051520 -setTevSwapModeTable__12J2DTevBlock8FUl19J2DTevSwapModeTable=0x80051558 -getTevSwapModeTable__12J2DTevBlock8FUl=0x80051568 -setIndTevStage__12J2DTevBlock8FUl14J2DIndTevStage=0x80051578 -getIndTevStage__12J2DTevBlock8FUl=0x8005158C -insertTexture__12J2DTevBlock8FUlPC7ResTIMG=0x800515A0 -getTexture__12J2DTevBlock8FUl=0x800515D0 -getPalette__12J2DTevBlock8FUl=0x800515F0 -getFont__12J2DTevBlock8Fv=0x80051610 -setUndeleteFlag__12J2DTevBlock8FUc=0x80051618 -setFontUndeleteFlag__12J2DTevBlock8Fv=0x80051628 -getType__12J2DTevBlock4Fv=0x80051634 -getMaxStage__12J2DTevBlock4Fv=0x80051640 -setTexNo__12J2DTevBlock4FUlUs=0x80051648 -getTexNo__12J2DTevBlock4CFUl=0x80051658 -setFontNo__12J2DTevBlock4FUs=0x80051668 -getFontNo__12J2DTevBlock4CFv=0x80051670 -setTevOrder__12J2DTevBlock4FUl11J2DTevOrder=0x80051678 -getTevOrder__12J2DTevBlock4FUl=0x8005169C -setTevColor__12J2DTevBlock4FUl13J2DGXColorS10=0x800516B0 -getTevColor__12J2DTevBlock4FUl=0x800516DC -setTevKColor__12J2DTevBlock4FUlQ28JUtility6TColor=0x800516F0 -getTevKColor__12J2DTevBlock4FUl=0x8005171C -setTevKColorSel__12J2DTevBlock4FUlUc=0x80051730 -getTevKColorSel__12J2DTevBlock4FUl=0x8005173C -setTevKAlphaSel__12J2DTevBlock4FUlUc=0x80051748 -getTevKAlphaSel__12J2DTevBlock4FUl=0x80051754 -setTevStageNum__12J2DTevBlock4FUc=0x80051760 -getTevStageNum__12J2DTevBlock4CFv=0x80051768 -setTevStage__12J2DTevBlock4FUl11J2DTevStage=0x80051770 -getTevStage__12J2DTevBlock4FUl=0x800517AC -setTevSwapModeInfo__12J2DTevBlock4FUl18J2DTevSwapModeInfo=0x800517C0 -setTevSwapModeTable__12J2DTevBlock4FUl19J2DTevSwapModeTable=0x800517F8 -getTevSwapModeTable__12J2DTevBlock4FUl=0x80051808 -setIndTevStage__12J2DTevBlock4FUl14J2DIndTevStage=0x80051818 -getIndTevStage__12J2DTevBlock4FUl=0x8005182C -insertTexture__12J2DTevBlock4FUlPC7ResTIMG=0x80051840 -getTexture__12J2DTevBlock4FUl=0x80051870 -getPalette__12J2DTevBlock4FUl=0x80051890 -getFont__12J2DTevBlock4Fv=0x800518B0 -setUndeleteFlag__12J2DTevBlock4FUc=0x800518B8 -setFontUndeleteFlag__12J2DTevBlock4Fv=0x800518C8 -getType__12J2DTevBlock2Fv=0x800518D8 -getMaxStage__12J2DTevBlock2Fv=0x800518E4 -setTexNo__12J2DTevBlock2FUlUs=0x800518EC -getTexNo__12J2DTevBlock2CFUl=0x800518FC -setFontNo__12J2DTevBlock2FUs=0x8005190C -getFontNo__12J2DTevBlock2CFv=0x80051914 -setTevOrder__12J2DTevBlock2FUl11J2DTevOrder=0x8005191C -getTevOrder__12J2DTevBlock2FUl=0x80051940 -setTevColor__12J2DTevBlock2FUl13J2DGXColorS10=0x80051954 -getTevColor__12J2DTevBlock2FUl=0x80051980 -setTevKColor__12J2DTevBlock2FUlQ28JUtility6TColor=0x80051994 -getTevKColor__12J2DTevBlock2FUl=0x800519C0 -setTevKColorSel__12J2DTevBlock2FUlUc=0x800519D4 -getTevKColorSel__12J2DTevBlock2FUl=0x800519E0 -setTevKAlphaSel__12J2DTevBlock2FUlUc=0x800519EC -getTevKAlphaSel__12J2DTevBlock2FUl=0x800519F8 -setTevStageNum__12J2DTevBlock2FUc=0x80051A04 -getTevStageNum__12J2DTevBlock2CFv=0x80051A0C -setTevStage__12J2DTevBlock2FUl11J2DTevStage=0x80051A14 -getTevStage__12J2DTevBlock2FUl=0x80051A50 -setTevSwapModeInfo__12J2DTevBlock2FUl18J2DTevSwapModeInfo=0x80051A64 -setTevSwapModeTable__12J2DTevBlock2FUl19J2DTevSwapModeTable=0x80051A9C -getTevSwapModeTable__12J2DTevBlock2FUl=0x80051AAC -setIndTevStage__12J2DTevBlock2FUl14J2DIndTevStage=0x80051ABC -getIndTevStage__12J2DTevBlock2FUl=0x80051AD0 -insertTexture__12J2DTevBlock2FUlPC7ResTIMG=0x80051AE4 -getTexture__12J2DTevBlock2FUl=0x80051B14 -getPalette__12J2DTevBlock2FUl=0x80051B34 -getFont__12J2DTevBlock2Fv=0x80051B54 -setUndeleteFlag__12J2DTevBlock2FUc=0x80051B5C -setFontUndeleteFlag__12J2DTevBlock2Fv=0x80051B6C -getType__12J2DTevBlock1Fv=0x80051B7C -getMaxStage__12J2DTevBlock1Fv=0x80051B88 -setTexNo__12J2DTevBlock1FUlUs=0x80051B90 -getTexNo__12J2DTevBlock1CFUl=0x80051BA0 -setFontNo__12J2DTevBlock1FUs=0x80051BB0 -getFontNo__12J2DTevBlock1CFv=0x80051BB8 -setTevOrder__12J2DTevBlock1FUl11J2DTevOrder=0x80051BC0 -getTevOrder__12J2DTevBlock1FUl=0x80051BE4 -setTevColor__12J2DTevBlock1FUl13J2DGXColorS10=0x80051BF8 -getTevColor__12J2DTevBlock1FUl=0x80051C24 -setTevKColor__12J2DTevBlock1FUlQ28JUtility6TColor=0x80051C38 -getTevKColor__12J2DTevBlock1FUl=0x80051C64 -setTevKColorSel__12J2DTevBlock1FUlUc=0x80051C78 -getTevKColorSel__12J2DTevBlock1FUl=0x80051C84 -setTevKAlphaSel__12J2DTevBlock1FUlUc=0x80051C90 -getTevKAlphaSel__12J2DTevBlock1FUl=0x80051C9C -setTevStageNum__12J2DTevBlock1FUc=0x80051CA8 -getTevStageNum__12J2DTevBlock1CFv=0x80051CAC -setTevStage__12J2DTevBlock1FUl11J2DTevStage=0x80051CB4 -getTevStage__12J2DTevBlock1FUl=0x80051CF0 -setTevSwapModeInfo__12J2DTevBlock1FUl18J2DTevSwapModeInfo=0x80051D04 -setTevSwapModeTable__12J2DTevBlock1FUl19J2DTevSwapModeTable=0x80051D3C -getTevSwapModeTable__12J2DTevBlock1FUl=0x80051D4C -setIndTevStage__12J2DTevBlock1FUl14J2DIndTevStage=0x80051D5C -getIndTevStage__12J2DTevBlock1FUl=0x80051D70 -insertTexture__12J2DTevBlock1FUlPC7ResTIMG=0x80051D84 -getTexture__12J2DTevBlock1FUl=0x80051DB4 -getPalette__12J2DTevBlock1FUl=0x80051DD4 -getFont__12J2DTevBlock1Fv=0x80051DF4 -setUndeleteFlag__12J2DTevBlock1FUc=0x80051DFC -setFontUndeleteFlag__12J2DTevBlock1Fv=0x80051E0C -initialize__11J2DTevBlockFv=0x80051E1C -setGX__11J2DTevBlockFv=0x80051E20 -loadTexture__11J2DTevBlockF11_GXTexMapIDUl=0x80051E24 -setFontNo__11J2DTevBlockFUs=0x80051E28 -setTevKColor__11J2DTevBlockFUlQ28JUtility6TColor=0x80051E2C -getTevKColorSel__11J2DTevBlockFUl=0x80051E30 -getTevKAlphaSel__11J2DTevBlockFUl=0x80051E38 -setTevStage__11J2DTevBlockFUl11J2DTevStage=0x80051E40 -setTevSwapModeInfo__11J2DTevBlockFUl18J2DTevSwapModeInfo=0x80051E44 -setTevSwapModeTable__11J2DTevBlockFUl19J2DTevSwapModeTable=0x80051E48 -setIndTevStage__11J2DTevBlockFUl14J2DIndTevStage=0x80051E4C -getIndTevStage__11J2DTevBlockFUl=0x80051E50 -insertTexture__11J2DTevBlockFUlP10JUTTexture=0x80051E58 -insertTexture__11J2DTevBlockFUlPC7ResTIMGP10JUTPalette=0x80051E60 -setTexture__11J2DTevBlockFUlP10JUTTexture=0x80051E68 -setTexture__11J2DTevBlockFUlPC7ResTIMG=0x80051E70 -removeTexture__11J2DTevBlockFUl=0x80051E78 -setFont__11J2DTevBlockFP7JUTFont=0x80051E80 -setFont__11J2DTevBlockFP7ResFONT=0x80051E88 -setPalette__11J2DTevBlockFUlPC7ResTLUT=0x80051E90 -prepareTexture__11J2DTevBlockFUc=0x80051E98 -shiftDeleteFlag__11J2DTevBlockFUcb=0x80051EA0 -__ct__11J2DMaterialFv=0x80051EA4 -__ct__11J2DTexCoordFv=0x80051FC4 -__dt__13J2DColorBlockFv=0x80051FE4 -__ct__12J2DColorChanFv=0x8005202C -__ct__11J2DMaterialFUl=0x8005203C -__dt__11J2DMaterialFv=0x80052188 -setGX__11J2DMaterialFv=0x80052248 -createTevBlock__11J2DMaterialFib=0x800522CC -createIndBlock__11J2DMaterialFib=0x80052480 -__ct__19J2DIndTexCoordScaleFv=0x80052658 -__ct__12J2DIndTexMtxFv=0x80052670 -__ct__14J2DIndTexOrderFv=0x800526B0 -makeAnmPointer__11J2DMaterialFv=0x800526C8 -setAnimation__11J2DMaterialFP11J2DAnmColor=0x80052790 -setAnimation__11J2DMaterialFP19J2DAnmTextureSRTKey=0x800528D4 -setAnimation__11J2DMaterialFP16J2DAnmTexPattern=0x80052A78 -setAnimation__11J2DMaterialFP15J2DAnmTevRegKey=0x80052C0C -animation__11J2DMaterialFv=0x80052E08 -getColor__11J2DAnmColorCFUsP8_GXColor=0x80053278 -setGX__15J2DIndBlockNullFv=0x8005327C -getType__15J2DIndBlockNullFv=0x80053280 -__dt__15J2DIndBlockNullFv=0x8005328C -__ct__18J2DMaterialFactoryFRC16J2DMaterialBlock=0x800532E8 -create__18J2DMaterialFactoryCFP11J2DMaterialiUlP15J2DResReferenceP15J2DResReferenceP10JKRArchive=0x800534AC -newMatColor__18J2DMaterialFactoryCFii=0x80053E74 -newColorChanNum__18J2DMaterialFactoryCFi=0x80053F10 -newColorChan__18J2DMaterialFactoryCFii=0x80053F48 -newTexGenNum__18J2DMaterialFactoryCFi=0x80053F9C -newTexCoord__18J2DMaterialFactoryCFii=0x80053FD4 -newTexMtx__18J2DMaterialFactoryCFii=0x80054048 -newCullMode__18J2DMaterialFactoryCFi=0x80054134 -newTexNo__18J2DMaterialFactoryCFii=0x80054174 -newFontNo__18J2DMaterialFactoryCFi=0x800541BC -newTevOrder__18J2DMaterialFactoryCFii=0x800541FC -newTevColor__18J2DMaterialFactoryCFii=0x80054270 -newTevKColor__18J2DMaterialFactoryCFii=0x80054308 -newTevStageNum__18J2DMaterialFactoryCFi=0x800543A4 -newTevStage__18J2DMaterialFactoryCFii=0x800543DC -__ct__11J2DTevStageFRC15J2DTevStageInfo=0x8005443C -newTevSwapModeTable__18J2DMaterialFactoryCFii=0x8005449C -newIndTexStageNum__18J2DMaterialFactoryCFi=0x80054538 -newIndTexOrder__18J2DMaterialFactoryCFii=0x80054568 -newIndTexMtx__18J2DMaterialFactoryCFii=0x800545D0 -newIndTevStage__18J2DMaterialFactoryCFii=0x800546BC -newIndTexCoordScale__18J2DMaterialFactoryCFii=0x80054808 -newAlphaComp__18J2DMaterialFactoryCFi=0x80054870 -newBlend__18J2DMaterialFactoryCFi=0x800548EC -newDither__18J2DMaterialFactoryCFi=0x80054968 -JSUConvertOffsetToPtr<12J2DBlendInfo>__FPCvPCv=0x800549A0 -JSUConvertOffsetToPtr<16J2DAlphaCompInfo>__FPCvPCv=0x800549B8 -JSUConvertOffsetToPtr<23J2DTevSwapModeTableInfo>__FPCvPCv=0x800549D0 -JSUConvertOffsetToPtr<18J2DTevSwapModeInfo>__FPCvPCv=0x800549E8 -JSUConvertOffsetToPtr<15J2DTevStageInfo>__FPCvPCv=0x80054A00 -JSUConvertOffsetToPtr<11_GXColorS10>__FPCvPCv=0x80054A18 -JSUConvertOffsetToPtr<15J2DTevOrderInfo>__FPCvPCv=0x80054A30 -JSUConvertOffsetToPtr<13J2DTexMtxInfo>__FPCvPCv=0x80054A48 -JSUConvertOffsetToPtr<15J2DTexCoordInfo>__FPCvPCv=0x80054A60 -JSUConvertOffsetToPtr<16J2DColorChanInfo>__FPCvPCv=0x80054A78 -JSUConvertOffsetToPtr<8_GXColor>__FPCvPCv=0x80054A90 -JSUConvertOffsetToPtr<11_GXCullMode>__FPCvPCv=0x80054AA8 -JSUConvertOffsetToPtr<14J2DIndInitData>__FPCvPCv=0x80054AC0 -JSUConvertOffsetToPtr<19J2DMaterialInitData>__FPCvPCv=0x80054AD8 -__ct__12J2DPictureExFv=0x80054AF0 -__ct__12J2DPictureExFPC7ResTIMGUl=0x80054B38 -append__12J2DPictureExFPC7ResTIMGf=0x80054BB4 -append__12J2DPictureExFPCcf=0x80054BE4 -initiate__12J2DPictureExFPC7ResTIMGPC7ResTLUT=0x80054C14 -initialize__12J2DPictureExFUl=0x80054CC0 -__ct__12J2DPictureExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial=0x80054D90 -__ct__12J2DPictureExFUxRCQ29JGeometry8TBox2PC7ResTIMGUl=0x8005502C -__ct__12J2DPictureExFUxRCQ29JGeometry8TBox2PCcUl=0x8005513C -__dt__12J2DPictureExFv=0x8005524C -prepareTexture__12J2DPictureExFUc=0x800552DC -drawSelf__12J2DPictureExFffPA3_A4_f=0x800553D4 -drawFullSet__12J2DPictureExFffffPA3_A4_f=0x800554A0 -drawTexCoord__12J2DPictureExFffffssssssssPA3_A4_f=0x800554FC -append__12J2DPictureExFPC7ResTIMGP10JUTPalettef=0x800557B0 -append__12J2DPictureExFPCcP10JUTPalettef=0x800557F8 -append__12J2DPictureExFP10JUTTexturef=0x80055840 -insert__12J2DPictureExFPC7ResTIMGP10JUTPaletteUcf=0x80055888 -insert__12J2DPictureExFPCcP10JUTPaletteUcf=0x8005593C -insert__12J2DPictureExFP10JUTTextureUcf=0x800559B4 -insertCommon__12J2DPictureExFUcf=0x80055A58 -isInsert__12J2DPictureExCFUc=0x80055D8C -remove__12J2DPictureExFUc=0x80055E84 -remove__12J2DPictureExFv=0x80056030 -remove__12J2DPictureExFP10JUTTexture=0x80056094 -isRemove__12J2DPictureExCFUc=0x8005615C -draw__12J2DPictureExFffUcbbb=0x800561B0 -draw__12J2DPictureExFffffbbb=0x800562D4 -drawOut__12J2DPictureExFffffff=0x8005687C -drawOut__12J2DPictureExFRCQ29JGeometry8TBox2RCQ29JGeometry8TBox2=0x800569E4 -load__12J2DPictureExF11_GXTexMapIDUc=0x80056DCC -setTevOrder__12J2DPictureExFUcUcb=0x80056E14 -setTevStage__12J2DPictureExFUcUcb=0x80057010 -setStage__12J2DPictureExFP11J2DTevStageQ212J2DPictureEx10stage_enum=0x800572CC -setTevKColor__12J2DPictureExFUc=0x800575CC -setTevKColorSel__12J2DPictureExFUc=0x80057A70 -setTevKAlphaSel__12J2DPictureExFUc=0x80057B20 -shiftSetBlendRatio__12J2DPictureExFUcfbb=0x80057BD0 -setBlendColorRatio__12J2DPictureExFffffffff=0x80057CE8 -setBlendAlphaRatio__12J2DPictureExFffffffff=0x80057D40 -changeTexture__12J2DPictureExFPC7ResTIMGUc=0x80057D98 -changeTexture__12J2DPictureExFPCcUc=0x80057ED8 -changeTexture__12J2DPictureExFPC7ResTIMGUcP10JUTPalette=0x80057F30 -changeTexture__12J2DPictureExFPCcUcP10JUTPalette=0x80058090 -getTexture__12J2DPictureExCFUc=0x800580F8 -getTextureCount__12J2DPictureExCFv=0x80058150 -setBlack__12J2DPictureExFQ28JUtility6TColor=0x80058170 -setWhite__12J2DPictureExFQ28JUtility6TColor=0x800581F8 -setBlackWhite__12J2DPictureExFQ28JUtility6TColorQ28JUtility6TColor=0x80058280 -getBlackWhite__12J2DPictureExCFPQ28JUtility6TColorPQ28JUtility6TColor=0x800586D4 -isSetBlackWhite__12J2DPictureExCFQ28JUtility6TColorQ28JUtility6TColor=0x80058898 -getBlack__12J2DPictureExCFv=0x80058974 -getWhite__12J2DPictureExCFv=0x800589D4 -setAlpha__12J2DPictureExFUc=0x80058A34 -setCullBack__12J2DPictureExF11_GXCullMode=0x80058A54 -rewriteAlpha__12J2DPictureExFv=0x80058A88 -isUsed__12J2DPictureExFPC7ResTIMG=0x80058AA0 -setAnimation__12J2DPictureExFP11J2DAnmColor=0x80058B48 -setAnimation__12J2DPictureExFP19J2DAnmTextureSRTKey=0x80058B74 -setAnimation__12J2DPictureExFP16J2DAnmTexPattern=0x80058BA0 -setAnimation__12J2DPictureExFP15J2DAnmTevRegKey=0x80058BCC -setAnimation__12J2DPictureExFP20J2DAnmVisibilityFull=0x80058BF8 -setAnimation__12J2DPictureExFP14J2DAnmVtxColor=0x80058C00 -animationPane__12J2DPictureExFPC15J2DAnmTransform=0x80058CE0 -getUsableTlut__12J2DPictureExFUc=0x80058E44 -getMaterial__12J2DPictureExCFv=0x80058F48 -prepend__12J2DPictureExFP10JUTTexturef=0x80058F50 -prepend__12J2DPictureExFPCcP10JUTPalettef=0x80058F80 -prepend__12J2DPictureExFPCcf=0x80058FB0 -prepend__12J2DPictureExFPC7ResTIMGP10JUTPalettef=0x80058FE0 -prepend__12J2DPictureExFPC7ResTIMGf=0x80059010 -insert__12J2DPictureExFPCcUcf=0x80059040 -insert__12J2DPictureExFPC7ResTIMGUcf=0x80059074 -draw__12J2DPictureExFffbbb=0x800590A8 -drawOut__12J2DPictureExFffffffff=0x800590E8 -load__12J2DPictureExFUc=0x8005914C -setCullBack__12J2DPictureExFb=0x80059180 -isUsed__12J2DPictureExFPC7ResFONT=0x800591BC -setAnimation__12J2DPictureExFP15J2DAnmTransform=0x800591DC -setAnimation__12J2DPictureExFP10J2DAnmBase=0x800591FC -load__9J2DTexMtxFUl=0x8005921C -calc__9J2DTexMtxFv=0x8005924C -getTextureMtx__9J2DTexMtxFRC17J2DTextureSRTInfo3VecPA4_f=0x800592B4 -getTextureMtxMaya__9J2DTexMtxFRC17J2DTextureSRTInfoPA4_f=0x80059444 -load__14J2DIndTevStageFUc=0x800595C4 -load__12J2DIndTexMtxFUc=0x80059618 -load__19J2DIndTexCoordScaleFUc=0x80059648 -load__14J2DIndTexOrderFUc=0x80059678 -__ct__12J2DTextBoxExFP7J2DPaneP20JSURandomInputStreamUlP11J2DMaterial=0x800596A8 -__dt__12J2DTextBoxExFv=0x800599D8 -drawSelf__12J2DTextBoxExFffPA3_A4_f=0x80059A68 -draw__12J2DTextBoxExFff=0x80059D68 -draw__12J2DTextBoxExFfff18J2DTextBoxHBinding=0x80059FA8 -setFont__12J2DTextBoxExFP7JUTFont=0x8005A214 -getFont__12J2DTextBoxExCFv=0x8005A278 -setTevStage__12J2DTextBoxExFb=0x8005A2C4 -setStage__12J2DTextBoxExFP11J2DTevStageQ212J2DTextBoxEx10stage_enum=0x8005A368 -setBlack__12J2DTextBoxExFQ28JUtility6TColor=0x8005A618 -setWhite__12J2DTextBoxExFQ28JUtility6TColor=0x8005A6A0 -setBlackWhite__12J2DTextBoxExFQ28JUtility6TColorQ28JUtility6TColor=0x8005A728 -getBlackWhite__12J2DTextBoxExCFPQ28JUtility6TColorPQ28JUtility6TColor=0x8005A94C -isSetBlackWhite__12J2DTextBoxExCFQ28JUtility6TColorQ28JUtility6TColor=0x8005AAE0 -getBlack__12J2DTextBoxExCFv=0x8005AB74 -getWhite__12J2DTextBoxExCFv=0x8005ABD4 -setAlpha__12J2DTextBoxExFUc=0x8005AC34 -setCullBack__12J2DTextBoxExF11_GXCullMode=0x8005AC54 -rewriteAlpha__12J2DTextBoxExFv=0x8005AC88 -isUsed__12J2DTextBoxExFPC7ResFONT=0x8005ACA0 -setAnimation__12J2DTextBoxExFP11J2DAnmColor=0x8005AD2C -setAnimation__12J2DTextBoxExFP19J2DAnmTextureSRTKey=0x8005AD58 -setAnimation__12J2DTextBoxExFP16J2DAnmTexPattern=0x8005AD84 -setAnimation__12J2DTextBoxExFP15J2DAnmTevRegKey=0x8005ADB0 -setAnimation__12J2DTextBoxExFP20J2DAnmVisibilityFull=0x8005ADDC -animationPane__12J2DTextBoxExFPC15J2DAnmTransform=0x8005ADE4 -getMaterial__12J2DTextBoxExCFv=0x8005AE64 -setCullBack__12J2DTextBoxExFb=0x8005AE6C -isUsed__12J2DTextBoxExFPC7ResTIMG=0x8005AEA8 -setAnimation__12J2DTextBoxExFP14J2DAnmVtxColor=0x8005AEC8 -setAnimation__12J2DTextBoxExFP15J2DAnmTransform=0x8005AECC -setAnimation__12J2DTextBoxExFP10J2DAnmBase=0x8005AEEC -getTransform__19J2DAnmTransformFullCFUsP16J3DTransformInfo=0x8005AF0C -calcTransform__18J2DAnmTransformKeyCFfUsP16J3DTransformInfo=0x8005B478 -searchUpdateMaterialID__11J2DAnmColorFP9J2DScreen=0x8005B898 -getColor__15J2DAnmColorFullCFUsP8_GXColor=0x8005B944 -getColor__14J2DAnmColorKeyCFUsP8_GXColor=0x8005BB7C -getColor__18J2DAnmVtxColorFullCFUcUsP8_GXColor=0x8005BE48 -getColor__17J2DAnmVtxColorKeyCFUcUsP8_GXColor=0x8005C088 -calcTransform__19J2DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo=0x8005C37C -searchUpdateMaterialID__19J2DAnmTextureSRTKeyFP9J2DScreen=0x8005C5E4 -searchUpdateMaterialID__16J2DAnmTexPatternFP9J2DScreen=0x8005C6B0 -__ct__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv=0x8005C884 -__dt__Q216J2DAnmTexPattern27J2DAnmTexPatternTIMGPointerFv=0x8005C894 -getTexNo__16J2DAnmTexPatternCFUsPUs=0x8005C8E8 -getResTIMG__16J2DAnmTexPatternCFUs=0x8005C99C -getPalette__16J2DAnmTexPatternCFUs=0x8005CA60 -getVisibility__20J2DAnmVisibilityFullCFUsPUc=0x8005CB28 -getTevColorReg__15J2DAnmTevRegKeyCFUsP11_GXColorS10=0x8005CBD0 -getTevKonstReg__15J2DAnmTevRegKeyCFUsP8_GXColor=0x8005CE9C -searchUpdateMaterialID__15J2DAnmTevRegKeyFP9J2DScreen=0x8005D168 -__dt__15J2DAnmTevRegKeyFv=0x8005D274 -__dt__16J2DAnmTexPatternFv=0x8005D2FC -__dt__19J2DAnmTextureSRTKeyFv=0x8005D38C -__dt__17J2DAnmVtxColorKeyFv=0x8005D414 -__dt__18J2DAnmVtxColorFullFv=0x8005D480 -__dt__14J2DAnmColorKeyFv=0x8005D4EC -__dt__15J2DAnmColorFullFv=0x8005D570 -__dt__18J2DAnmTransformKeyFv=0x8005D5F4 -getTransform__18J2DAnmTransformKeyCFUsP16J3DTransformInfo=0x8005D660 -__dt__19J2DAnmTransformFullFv=0x8005D690 -J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs=0x8005D6FC -J2DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf=0x8005D930 -__ct__6J3DSysFv=0x8005DAAC -loadPosMtxIndx__6J3DSysCFiUs=0x8005DBC0 -loadNrmMtxIndx__6J3DSysCFiUs=0x8005DBE4 -drawInit__6J3DSysFv=0x8005DC0C -reinitGX__6J3DSysFv=0x8005E3C4 -reinitGenMode__6J3DSysFv=0x8005E420 -reinitLighting__6J3DSysFv=0x8005E46C -reinitTransform__6J3DSysFv=0x8005E518 -reinitTexture__6J3DSysFv=0x8005E61C -reinitTevStages__6J3DSysFv=0x8005E6C0 -reinitIndStages__6J3DSysFv=0x8005E9C8 -reinitPixelProc__6J3DSysFv=0x8005EAC0 -ErrorReport__6J3DSysCF10J3DErrType=0x8005EB54 -__sinit_J3DSys_cpp=0x8005EB58 -__ct__13J3DVertexDataFv=0x8005EB80 -setVertexData__15J3DVertexBufferFP13J3DVertexData=0x8005EBE8 -init__15J3DVertexBufferFv=0x8005EC48 -__dt__15J3DVertexBufferFv=0x8005ECA0 -setArray__15J3DVertexBufferCFv=0x8005ECDC -copyVtxColorArray__15J3DVertexBufferF19J3DDeformAttachFlag=0x8005ED00 -__ct__14J3DDrawMtxDataFv=0x8005EE28 -__dt__14J3DDrawMtxDataFv=0x8005EE3C -J3DCalcBBoardMtx__FPA4_f=0x8005EE78 -J3DCalcYBBoardMtx__FPA4_f=0x8005EF68 -J3DPSCalcInverseTranspose__FPA4_fPA3_f=0x8005F0A4 -J3DGetTranslateRotateMtx__FRC16J3DTransformInfoPA4_f=0x8005F16C -J3DGetTranslateRotateMtx__FsssfffPA4_f=0x8005F21C -J3DGetTextureMtx__FRC17J3DTextureSRTInfoRC3VecPA4_f=0x8005F2CC -J3DGetTextureMtxOld__FRC17J3DTextureSRTInfoRC3VecPA4_f=0x8005F378 -J3DGetTextureMtxMaya__FRC17J3DTextureSRTInfoPA4_f=0x8005F424 -J3DGetTextureMtxMayaOld__FRC17J3DTextureSRTInfoPA4_f=0x8005F4CC -J3DScaleNrmMtx__FPA4_fRC3Vec=0x8005F574 -J3DScaleNrmMtx33__FPA3_fRC3Vec=0x8005F5D8 -J3DMtxProjConcat__FPA4_fPA4_fPA4_f=0x8005F62C -J3DPSMtxArrayConcat__FPA4_fPA4_fPA4_fUl=0x8005F750 -newDisplayList__17J3DDisplayListObjFUl=0x8005F82C -newSingleDisplayList__17J3DDisplayListObjFUl=0x8005F88C -single_To_Double__17J3DDisplayListObjFv=0x8005F8E4 -setSingleDisplayList__17J3DDisplayListObjFPvUl=0x8005F94C -callDL__17J3DDisplayListObjCFv=0x8005F96C -beginDL__17J3DDisplayListObjFv=0x8005F998 -endDL__17J3DDisplayListObjFv=0x8005F9F8 -beginPatch__17J3DDisplayListObjFv=0x8005FA54 -endPatch__17J3DDisplayListObjFv=0x8005FAB4 -entry__9J3DPacketFP13J3DDrawBuffer=0x8005FAF0 -addChildPacket__9J3DPacketFP9J3DPacket=0x8005FAF8 -draw__9J3DPacketFv=0x8005FB18 -__dt__9J3DPacketFv=0x8005FB1C -__dt__13J3DDrawPacketFv=0x8005FB64 -newDisplayList__13J3DDrawPacketFUl=0x8005FBC0 -newSingleDisplayList__13J3DDrawPacketFUl=0x8005FC64 -draw__13J3DDrawPacketFv=0x8005FD00 -__ct__12J3DMatPacketFv=0x8005FD2C -__dt__12J3DMatPacketFv=0x8005FD88 -addShapePacket__12J3DMatPacketFP14J3DShapePacket=0x8005FDF4 -beginDiff__12J3DMatPacketFv=0x8005FE14 -endDiff__12J3DMatPacketFv=0x8005FE78 -isSame__12J3DMatPacketCFP12J3DMatPacket=0x8005FED8 -draw__12J3DMatPacketFv=0x8005FEFC -__ct__14J3DShapePacketFv=0x8005FF90 -__dt__14J3DShapePacketFv=0x8005FFE8 -calcDifferedBufferSize__14J3DShapePacketFUl=0x80060054 -getTevStageNum__11J3DTevBlockCFv=0x800602C8 -getTexGenNum__14J3DTexGenBlockCFv=0x800602D0 -newDifferedDisplayList__14J3DShapePacketFUl=0x800602D8 -newDifferedTexMtx__14J3DShapePacketF14J3DTexDiffFlag=0x80060394 -draw__14J3DShapePacketFv=0x800604A8 -drawFast__14J3DShapePacketFv=0x80060658 -entry__12J3DMatPacketFP13J3DDrawBuffer=0x800607F0 -initialize__8J3DShapeFv=0x80060850 -calcNBTScale__8J3DShapeFRC3VecPA3_A3_fPA3_A3_f=0x800608C0 -countBumpMtxNum__8J3DShapeCFv=0x80060938 -isSameVcdVatCmd__8J3DShapeFP8J3DShape=0x800609B8 -makeVtxArrayCmd__8J3DShapeFv=0x80060AA4 -makeVcdVatCmd__8J3DShapeFv=0x80060DA0 -loadPreDrawSetting__8J3DShapeCFv=0x80060E40 -drawFast__8J3DShapeCFv=0x80060EE0 -draw__8J3DShapeCFv=0x80061158 -simpleDraw__8J3DShapeCFv=0x80061210 -simpleDrawCache__8J3DShapeCFv=0x80061370 -createColorBlock__11J3DMaterialFUl=0x800614E0 -__dt__21J3DColorBlockLightOffFv=0x800616E0 -__ct__12J3DColorChanFv=0x8006173C -__ct__10J3DGXColorFv=0x800617F0 -__dt__13J3DColorBlockFv=0x800617F4 -createTexGenBlock__11J3DMaterialFUl=0x8006183C -__dt__21J3DTexGenBlockPatchedFv=0x800619A0 -__ct__11J3DTexCoordFv=0x800619FC -__dt__14J3DTexGenBlockFv=0x80061A24 -createTevBlock__11J3DMaterialFi=0x80061A6C -__ct__19J3DTevSwapModeTableFv=0x80061DE0 -__ct__13J3DGXColorS10Fv=0x80061DEC -__ct__14J3DIndTevStageFv=0x80061DF0 -__ct__11J3DTevStageFv=0x80061ED4 -setTevStageInfo__11J3DTevStageFRC15J3DTevStageInfo=0x80061F3C -__ct__11J3DTevOrderFv=0x80062114 -__dt__11J3DTevBlockFv=0x80062134 -createIndBlock__11J3DMaterialFi=0x8006217C -__dt__19J3DIndTexCoordScaleFv=0x80062264 -__ct__19J3DIndTexCoordScaleFv=0x800622A0 -__dt__12J3DIndTexMtxFv=0x800622B8 -__ct__12J3DIndTexMtxFv=0x800622F4 -__ct__14J3DIndTexOrderFv=0x80062334 -__dt__11J3DIndBlockFv=0x8006234C -createPEBlock__11J3DMaterialFUlUl=0x80062394 -__dt__10J3DPEBlockFv=0x80062610 -calcSizeColorBlock__11J3DMaterialFUl=0x80062658 -calcSizeTexGenBlock__11J3DMaterialFUl=0x800626A8 -calcSizeTevBlock__11J3DMaterialFi=0x800626D4 -calcSizeIndBlock__11J3DMaterialFi=0x8006271C -calcSizePEBlock__11J3DMaterialFUlUl=0x80062730 -initialize__11J3DMaterialFv=0x80062798 -countDLSize__11J3DMaterialFv=0x800627E8 -countDLSize__14J3DTexGenBlockFv=0x800628A4 -countDLSize__13J3DColorBlockFv=0x800628AC -countDLSize__11J3DTevBlockFv=0x800628B4 -countDLSize__11J3DIndBlockFv=0x800628BC -countDLSize__10J3DPEBlockFv=0x800628C4 -load__13J3DColorBlockFv=0x800628CC -getCullMode__13J3DColorBlockCFv=0x800628D0 -getIndTexStageNum__11J3DIndBlockCFv=0x800628D8 -getColorChanNum__13J3DColorBlockCFv=0x800628E0 -load__11J3DTevBlockFv=0x800628E8 -makeDisplayList__11J3DMaterialFv=0x800628EC -makeSharedDisplayList__11J3DMaterialFv=0x80062BE4 -load__11J3DMaterialFv=0x80062EB8 -getNBTScale__14J3DTexGenBlockFv=0x80062F08 -loadSharedDL__11J3DMaterialFv=0x80062F10 -patch__11J3DMaterialFv=0x80062F74 -patch__13J3DColorBlockFv=0x8006300C -patch__11J3DTevBlockFv=0x80063010 -diff__11J3DMaterialFUl=0x80063014 -diff__13J3DColorBlockFUl=0x80063210 -diff__10J3DPEBlockFUl=0x80063214 -calc__11J3DMaterialFPA4_Cf=0x80063218 -calcDiffTexMtx__11J3DMaterialFPA4_Cf=0x80063290 -setCurrentMtx__11J3DMaterialFv=0x800632EC -calcCurrentMtx__11J3DMaterialFv=0x80063304 -getTexCoord__14J3DTexGenBlockFUl=0x80063598 -reset__10J3DPEBlockFP10J3DPEBlock=0x800635A0 -reset__11J3DIndBlockFP11J3DIndBlock=0x800635A4 -reset__11J3DTevBlockFP11J3DTevBlock=0x800635A8 -reset__14J3DTexGenBlockFP14J3DTexGenBlock=0x800635AC -reset__13J3DColorBlockFP13J3DColorBlock=0x800635B0 -reset__11J3DMaterialFv=0x800635B4 -change__11J3DMaterialFv=0x80063698 -newSharedDisplayList__11J3DMaterialFUl=0x800636B8 -newSingleSharedDisplayList__11J3DMaterialFUl=0x8006374C -initialize__18J3DPatchedMaterialFv=0x800637E0 -makeDisplayList__18J3DPatchedMaterialFv=0x80063830 -makeSharedDisplayList__18J3DPatchedMaterialFv=0x80063834 -load__18J3DPatchedMaterialFv=0x80063838 -loadSharedDL__18J3DPatchedMaterialFv=0x80063854 -reset__18J3DPatchedMaterialFv=0x80063894 -change__18J3DPatchedMaterialFv=0x80063898 -initialize__17J3DLockedMaterialFv=0x8006389C -makeDisplayList__17J3DLockedMaterialFv=0x800638EC -makeSharedDisplayList__17J3DLockedMaterialFv=0x800638F0 -load__17J3DLockedMaterialFv=0x800638F4 -loadSharedDL__17J3DLockedMaterialFv=0x80063910 -patch__17J3DLockedMaterialFv=0x80063950 -diff__17J3DLockedMaterialFUl=0x80063954 -calc__17J3DLockedMaterialFPA4_Cf=0x80063958 -reset__17J3DLockedMaterialFv=0x8006395C -change__17J3DLockedMaterialFv=0x80063960 -patch__10J3DPEBlockFv=0x80063964 -diffFog__10J3DPEBlockFv=0x80063968 -diffBlend__10J3DPEBlockFv=0x8006396C -setFog__10J3DPEBlockFP6J3DFog=0x80063970 -setFog__10J3DPEBlockF6J3DFog=0x80063974 -getFog__10J3DPEBlockFv=0x80063978 -setAlphaComp__10J3DPEBlockFRC12J3DAlphaComp=0x80063980 -setAlphaComp__10J3DPEBlockFPC12J3DAlphaComp=0x80063984 -getAlphaComp__10J3DPEBlockFv=0x80063988 -setBlend__10J3DPEBlockFRC8J3DBlend=0x80063990 -setBlend__10J3DPEBlockFPC8J3DBlend=0x80063994 -getBlend__10J3DPEBlockFv=0x80063998 -setZMode__10J3DPEBlockF8J3DZMode=0x800639A0 -setZMode__10J3DPEBlockFPC8J3DZMode=0x800639A4 -getZMode__10J3DPEBlockFv=0x800639A8 -setZCompLoc__10J3DPEBlockFUc=0x800639B0 -setZCompLoc__10J3DPEBlockFPCUc=0x800639B4 -getZCompLoc__10J3DPEBlockCFv=0x800639B8 -setDither__10J3DPEBlockFUc=0x800639C0 -setDither__10J3DPEBlockFPCUc=0x800639C4 -getDither__10J3DPEBlockCFv=0x800639C8 -getFogOffset__10J3DPEBlockCFv=0x800639D0 -setFogOffset__10J3DPEBlockFUl=0x800639D8 -diff__15J3DIndBlockNullFUl=0x800639DC -load__15J3DIndBlockNullFv=0x800639E0 -reset__15J3DIndBlockNullFP11J3DIndBlock=0x800639E4 -getType__15J3DIndBlockNullFv=0x800639E8 -__dt__15J3DIndBlockNullFv=0x800639F4 -setIndTexStageNum__11J3DIndBlockFUc=0x80063A50 -setIndTexOrder__11J3DIndBlockFUlPC14J3DIndTexOrder=0x80063A54 -setIndTexOrder__11J3DIndBlockFUl14J3DIndTexOrder=0x80063A58 -getIndTexOrder__11J3DIndBlockFUl=0x80063A5C -setIndTexMtx__11J3DIndBlockFUl12J3DIndTexMtx=0x80063A64 -setIndTexMtx__11J3DIndBlockFUlPC12J3DIndTexMtx=0x80063A68 -getIndTexMtx__11J3DIndBlockFUl=0x80063A6C -setIndTexCoordScale__11J3DIndBlockFUl19J3DIndTexCoordScale=0x80063A74 -setIndTexCoordScale__11J3DIndBlockFUlPC19J3DIndTexCoordScale=0x80063A78 -getIndTexCoordScale__11J3DIndBlockFUl=0x80063A7C -setTexGenNum__14J3DTexGenBlockFUl=0x80063A84 -setTexGenNum__14J3DTexGenBlockFPCUl=0x80063A88 -setTexCoord__14J3DTexGenBlockFUlPC11J3DTexCoord=0x80063A8C -setTexMtx__14J3DTexGenBlockFUlP9J3DTexMtx=0x80063A90 -getTexMtx__14J3DTexGenBlockFUl=0x80063A94 -setNBTScale__14J3DTexGenBlockF11J3DNBTScale=0x80063A9C -setNBTScale__14J3DTexGenBlockFPC11J3DNBTScale=0x80063AA0 -getTexMtxOffset__14J3DTexGenBlockCFv=0x80063AA4 -setTexMtxOffset__14J3DTexGenBlockFUl=0x80063AAC -patchMatColor__13J3DColorBlockFv=0x80063AB0 -patchLight__13J3DColorBlockFv=0x80063AB4 -diffMatColor__13J3DColorBlockFv=0x80063AB8 -diffLight__13J3DColorBlockFv=0x80063ABC -setMatColor__13J3DColorBlockFUl10J3DGXColor=0x80063AC0 -setMatColor__13J3DColorBlockFUlPC10J3DGXColor=0x80063AC4 -getMatColor__13J3DColorBlockFUl=0x80063AC8 -setAmbColor__13J3DColorBlockFUl10J3DGXColor=0x80063AD0 -setAmbColor__13J3DColorBlockFUlPC10J3DGXColor=0x80063AD4 -getAmbColor__13J3DColorBlockFUl=0x80063AD8 -setColorChanNum__13J3DColorBlockFPCUc=0x80063AE0 -setColorChanNum__13J3DColorBlockFUc=0x80063AE4 -setColorChan__13J3DColorBlockFUlPC12J3DColorChan=0x80063AE8 -setColorChan__13J3DColorBlockFUlRC12J3DColorChan=0x80063AEC -getColorChan__13J3DColorBlockFUl=0x80063AF0 -setLight__13J3DColorBlockFUlP11J3DLightObj=0x80063AF8 -getLight__13J3DColorBlockFUl=0x80063AFC -setCullMode__13J3DColorBlockFUc=0x80063B04 -setCullMode__13J3DColorBlockFPCUc=0x80063B08 -getMatColorOffset__13J3DColorBlockCFv=0x80063B0C -getColorChanOffset__13J3DColorBlockCFv=0x80063B14 -setMatColorOffset__13J3DColorBlockFUl=0x80063B1C -setColorChanOffset__13J3DColorBlockFUl=0x80063B20 -load__11J3DLightObjCFUl=0x80063B24 -loadTexCoordGens__FUlP11J3DTexCoord=0x80063BD8 -load__9J3DTexMtxCFUl=0x80064108 -loadTexMtx__9J3DTexMtxCFUl=0x80064144 -J3DGDLoadTexMtxImm__FPA4_fUl13_GXTexMtxType=0x800641A8 -loadPostTexMtx__9J3DTexMtxCFUl=0x80064728 -J3DGDLoadPostTexMtxImm__FPA4_fUl=0x80064788 -calc__9J3DTexMtxFPA4_Cf=0x80064CF4 -calcTexMtx__9J3DTexMtxFPA4_Cf=0x80064D14 -calcPostTexMtx__9J3DTexMtxFPA4_Cf=0x80065000 -isTexNoReg__FPv=0x80065358 -getTexNoReg__FPv=0x8006537C -loadTexNo__FUlRCUs=0x80065388 -patchTexNo_PtrToIdx__FUlRCUs=0x80065540 -loadNBTScale__FR11J3DNBTScale=0x80065564 -makeTexCoordTable__Fv=0x80065598 -makeAlphaCmpTable__Fv=0x800656F8 -makeZModeTable__Fv=0x80065828 -makeTevSwapTable__Fv=0x80065960 -initialize__13J3DDrawBufferFv=0x800659A4 -allocBuffer__13J3DDrawBufferFUl=0x80065A0C -frameInit__13J3DDrawBufferFv=0x80065A90 -entryMatSort__13J3DDrawBufferFP12J3DMatPacket=0x80065B7C -getTexNo__11J3DTevBlockCFUl=0x80065CD4 -entryMatAnmSort__13J3DDrawBufferFP12J3DMatPacket=0x80065CE0 -entryZSort__13J3DDrawBufferFP12J3DMatPacket=0x80065EC8 -entryModelSort__13J3DDrawBufferFP12J3DMatPacket=0x80065FE4 -entryInvalidSort__13J3DDrawBufferFP12J3DMatPacket=0x80066034 -entryNonSort__13J3DDrawBufferFP12J3DMatPacket=0x80066088 -draw__13J3DDrawBufferCFv=0x800660BC -drawHead__13J3DDrawBufferCFv=0x80066110 -drawTail__13J3DDrawBufferCFv=0x80066194 -__sinit_J3DDrawBuffer_cpp=0x80066218 -initialize__8J3DModelFv=0x800662FC -entryModelData__8J3DModelFP12J3DModelDataUlUl=0x80066380 -createShapePacket__8J3DModelFP12J3DModelData=0x80066444 -createMatPacket__8J3DModelFP12J3DModelDataUl=0x80066500 -newDifferedDisplayList__8J3DModelFUl=0x800666D8 -newDifferedTexMtx__8J3DModelF14J3DTexDiffFlag=0x80066768 -lock__8J3DModelFv=0x800667F4 -makeDL__8J3DModelFv=0x80066924 -calcMaterial__8J3DModelFv=0x800669C8 -calcDiffTexMtx__8J3DModelFv=0x80066B2C -diff__8J3DModelFv=0x80066C6C -setVtxColorCalc__8J3DModelFP15J3DVtxColorCalc19J3DDeformAttachFlag=0x80066D08 -calcWeightEnvelopeMtx__8J3DModelFv=0x80066D3C -update__8J3DModelFv=0x80066D88 -calc__8J3DModelFv=0x80066DD4 -entry__8J3DModelFv=0x80066FB4 -viewCalc__8J3DModelFv=0x800670A8 -calcNrmMtx__8J3DModelFv=0x80067410 -calcBumpMtx__8J3DModelFv=0x80067434 -calcBBoardMtx__8J3DModelFv=0x80067534 -prepareShapePackets__8J3DModelFv=0x80067568 -__dt__8J3DModelFv=0x800675CC -__dt__12J3DMtxBufferFv=0x80067630 -init__12J3DFrameCtrlFs=0x80067678 -update__12J3DFrameCtrlFv=0x800676A8 -getTransform__19J3DAnmTransformFullCFUsP16J3DTransformInfo=0x80067B1C -calcTransform__18J3DAnmTransformKeyCFfUsP16J3DTransformInfo=0x80067E7C -calcTransform__19J3DAnmTextureSRTKeyCFfUsP17J3DTextureSRTInfo=0x8006829C -getWeight__17J3DAnmClusterFullCFUs=0x80068504 -getWeight__16J3DAnmClusterKeyCFUs=0x80068598 -getColor__18J3DAnmVtxColorFullCFUcUsP8_GXColor=0x8006861C -getColor__17J3DAnmVtxColorKeyCFUcUsP8_GXColor=0x80068794 -searchUpdateMaterialID__11J3DAnmColorFP12J3DModelData=0x80068A88 -getColor__15J3DAnmColorFullCFUsP8_GXColor=0x80068B30 -getColor__14J3DAnmColorKeyCFUsP8_GXColor=0x80068CA0 -getTexNo__16J3DAnmTexPatternCFUsPUs=0x80068F6C -searchUpdateMaterialID__19J3DAnmTextureSRTKeyFP12J3DModelData=0x80069020 -getTevColorReg__15J3DAnmTevRegKeyCFUsP11_GXColorS10=0x80069144 -getTevKonstReg__15J3DAnmTevRegKeyCFUsP8_GXColor=0x80069410 -searchUpdateMaterialID__15J3DAnmTevRegKeyFP12J3DModelData=0x800696DC -__dt__14J3DAnmColorKeyFv=0x800697E8 -getKind__14J3DAnmColorKeyCFv=0x8006986C -__dt__10J3DAnmBaseFv=0x80069874 -__dt__11J3DAnmColorFv=0x800698BC -getKind__11J3DAnmColorCFv=0x80069930 -getColor__11J3DAnmColorCFUsP8_GXColor=0x80069938 -__dt__15J3DAnmColorFullFv=0x8006993C -getKind__15J3DAnmColorFullCFv=0x800699C0 -__dt__17J3DAnmVtxColorKeyFv=0x800699C8 -getKind__17J3DAnmVtxColorKeyCFv=0x80069A34 -__dt__14J3DAnmVtxColorFv=0x80069A3C -getKind__14J3DAnmVtxColorCFv=0x80069A98 -getColor__14J3DAnmVtxColorCFUcUsP8_GXColor=0x80069AA0 -__dt__18J3DAnmVtxColorFullFv=0x80069AA4 -getKind__18J3DAnmVtxColorFullCFv=0x80069B10 -__dt__16J3DAnmClusterKeyFv=0x80069B18 -getKind__16J3DAnmClusterKeyCFv=0x80069B84 -__dt__13J3DAnmClusterFv=0x80069B8C -getKind__13J3DAnmClusterCFv=0x80069BE8 -getWeight__13J3DAnmClusterCFUs=0x80069BF0 -__dt__17J3DAnmClusterFullFv=0x80069BF8 -getKind__17J3DAnmClusterFullCFv=0x80069C64 -__dt__19J3DAnmTransformFullFv=0x80069C6C -getKind__19J3DAnmTransformFullCFv=0x80069CD8 -__dt__15J3DAnmTransformFv=0x80069CE0 -getKind__15J3DAnmTransformCFv=0x80069D3C -J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePs=0x80069D44 -J3DGetKeyFrameInterpolation__FfP18J3DAnmKeyTableBasePf=0x80069F78 -initialize__14J3DMaterialAnmFv=0x8006A0F4 -calc__14J3DMaterialAnmCFP11J3DMaterial=0x8006A164 -getTevKColor__11J3DTevBlockFUl=0x8006A350 -getTevColor__11J3DTevBlockFUl=0x8006A358 -setTexNo__11J3DTevBlockFUlUs=0x8006A360 -calc__11J3DTexNoAnmCFPUs=0x8006A364 -__dt__14J3DMaterialAnmFv=0x8006A394 -__dt__14J3DMatColorAnmFv=0x8006A464 -__dt__12J3DTexMtxAnmFv=0x8006A4A0 -__dt__11J3DTexNoAnmFv=0x8006A4DC -__dt__14J3DTevColorAnmFv=0x8006A524 -__dt__15J3DTevKColorAnmFv=0x8006A560 -deform__13J3DDeformDataFP8J3DModel=0x8006A59C -deform__13J3DDeformDataFP15J3DVertexBuffer=0x8006A5C0 -deform__11J3DDeformerFP15J3DVertexBufferUs=0x8006A694 -deform_VtxPosF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf=0x8006A7FC -deform_VtxNrmF32__11J3DDeformerFP15J3DVertexBufferP10J3DClusterP13J3DClusterKeyPf=0x8006AA68 -deform__11J3DDeformerFP15J3DVertexBufferUsPf=0x8006AED8 -normalizeWeight__11J3DDeformerFiPf=0x8006B0A4 -init__25J3DMtxCalcJ3DSysInitBasicFRC3VecRA3_A4_Cf=0x8006B200 -init__24J3DMtxCalcJ3DSysInitMayaFRC3VecRA3_A4_Cf=0x8006B298 -calcTransform__28J3DMtxCalcCalcTransformBasicFRC16J3DTransformInfo=0x8006B330 -calcTransform__32J3DMtxCalcCalcTransformSoftimageFRC16J3DTransformInfo=0x8006B448 -calcTransform__27J3DMtxCalcCalcTransformMayaFRC16J3DTransformInfo=0x8006B5B0 -J3DNewMtxCalcAnm__FUlP15J3DAnmTransform=0x8006B728 -__dt__17J3DMtxCalcAnmBaseFv=0x8006B82C -appendChild__8J3DJointFP8J3DJoint=0x8006B888 -__ct__8J3DJointFv=0x8006B8BC -entryIn__8J3DJointFv=0x8006B9B8 -recursiveCalc__8J3DJointFv=0x8006BB54 -getAnmTransform__17J3DMtxCalcAnmBaseFv=0x8006BCFC -setAnmTransform__17J3DMtxCalcAnmBaseFP15J3DAnmTransform=0x8006BD04 -__dt__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv=0x8006BD0C -init__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf=0x8006BD78 -setAnmTransform__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>FP15J3DAnmTransform=0x8006BE0C -__dt__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x8006BE14 -init__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf=0x8006BE80 -setAnmTransform__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>FP15J3DAnmTransform=0x8006BECC -__dt__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv=0x8006BED4 -init__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf=0x8006BF40 -setAnmTransform__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>FP15J3DAnmTransform=0x8006BFD8 -calc__116J3DMtxCalcAnimation<65J3DMtxCalcAnimationAdaptorDefault<28J3DMtxCalcCalcTransformBasic>,25J3DMtxCalcJ3DSysInitBasic>Fv=0x8006BFE0 -calc__124J3DMtxCalcAnimation<69J3DMtxCalcAnimationAdaptorDefault<32J3DMtxCalcCalcTransformSoftimage>,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x8006C158 -calc__114J3DMtxCalcAnimation<64J3DMtxCalcAnimationAdaptorDefault<27J3DMtxCalcCalcTransformMaya>,24J3DMtxCalcJ3DSysInitMaya>Fv=0x8006C31C -__ct__18J3DMaterialFactoryFRC16J3DMaterialBlock=0x8006C3A4 -__ct__18J3DMaterialFactoryFRC18J3DMaterialDLBlock=0x8006C5EC -countUniqueMaterials__18J3DMaterialFactoryFv=0x8006C674 -create__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl=0x8006C6BC -createNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl=0x8006C738 -setIndTevStage__11J3DTevBlockFUl14J3DIndTevStage=0x8006D144 -setTevKAlphaSel__11J3DTevBlockFUlUc=0x8006D148 -setTevKColorSel__11J3DTevBlockFUlUc=0x8006D14C -setTevSwapModeTable__11J3DTevBlockFUl19J3DTevSwapModeTable=0x8006D150 -setTevColor__11J3DTevBlockFUl13J3DGXColorS10=0x8006D154 -setTevKColor__11J3DTevBlockFUl10J3DGXColor=0x8006D158 -getTevStage__11J3DTevBlockFUl=0x8006D15C -setTevStage__11J3DTevBlockFUl11J3DTevStage=0x8006D164 -setTevOrder__11J3DTevBlockFUl11J3DTevOrder=0x8006D168 -setTevStageNum__11J3DTevBlockFUc=0x8006D16C -createPatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl=0x8006D170 -__dt__11J3DMaterialFv=0x8006DA94 -modifyPatchedCurrentMtx__18J3DMaterialFactoryCFP11J3DMateriali=0x8006DADC -createLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl=0x8006DC80 -setTevRegOffset__11J3DTevBlockFUl=0x8006DF38 -setTexNoOffset__11J3DTevBlockFUl=0x8006DF3C -calcSize__18J3DMaterialFactoryCFP11J3DMaterialQ218J3DMaterialFactory12MaterialTypeiUl=0x8006DF44 -calcSizeNormalMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl=0x8006DFC4 -calcSizePatchedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl=0x8006E21C -calcSizeLockedMaterial__18J3DMaterialFactoryCFP11J3DMaterialiUl=0x8006E358 -newMatColor__18J3DMaterialFactoryCFii=0x8006E370 -newColorChanNum__18J3DMaterialFactoryCFi=0x8006E400 -newColorChan__18J3DMaterialFactoryCFii=0x8006E438 -newAmbColor__18J3DMaterialFactoryCFii=0x8006E5CC -newTexGenNum__18J3DMaterialFactoryCFi=0x8006E65C -newTexCoord__18J3DMaterialFactoryCFii=0x8006E694 -newTexMtx__18J3DMaterialFactoryCFii=0x8006E718 -newCullMode__18J3DMaterialFactoryCFi=0x8006E870 -newTexNo__18J3DMaterialFactoryCFii=0x8006E8B0 -newTevOrder__18J3DMaterialFactoryCFii=0x8006E8F8 -newTevColor__18J3DMaterialFactoryCFii=0x8006E96C -newTevKColor__18J3DMaterialFactoryCFii=0x8006EA04 -newTevStageNum__18J3DMaterialFactoryCFi=0x8006EA94 -newTevStage__18J3DMaterialFactoryCFii=0x8006EACC -__ct__11J3DTevStageFRC15J3DTevStageInfo=0x8006EB2C -newTevSwapModeTable__18J3DMaterialFactoryCFii=0x8006EB8C -newIndTexStageNum__18J3DMaterialFactoryCFi=0x8006EC28 -newIndTexOrder__18J3DMaterialFactoryCFii=0x8006EC50 -newIndTexMtx__18J3DMaterialFactoryCFii=0x8006ECB0 -newIndTevStage__18J3DMaterialFactoryCFii=0x8006ED90 -newIndTexCoordScale__18J3DMaterialFactoryCFii=0x8006EF24 -newFog__18J3DMaterialFactoryCFi=0x8006EF84 -newAlphaComp__18J3DMaterialFactoryCFi=0x8006F1D0 -newBlend__18J3DMaterialFactoryCFi=0x8006F250 -newZMode__18J3DMaterialFactoryCFi=0x8006F2CC -newZCompLoc__18J3DMaterialFactoryCFi=0x8006F32C -newDither__18J3DMaterialFactoryCFi=0x8006F364 -newNBTScale__18J3DMaterialFactoryCFi=0x8006F39C -load__14J3DPEBlockNullFv=0x8006F444 -getType__14J3DPEBlockNullFv=0x8006F448 -__dt__14J3DPEBlockNullFv=0x8006F454 -reset__15J3DTevBlockNullFP11J3DTevBlock=0x8006F4B0 -ptrToIndex__15J3DTevBlockNullFv=0x8006F4B4 -indexToPtr__15J3DTevBlockNullFv=0x8006F4B8 -getType__15J3DTevBlockNullFv=0x8006F4DC -__dt__15J3DTevBlockNullFv=0x8006F4E8 -diffTexNo__11J3DTevBlockFv=0x8006F544 -diffTevReg__11J3DTevBlockFv=0x8006F548 -diffTexCoordScale__11J3DTevBlockFv=0x8006F54C -diffTevStage__11J3DTevBlockFv=0x8006F550 -diffTevStageIndirect__11J3DTevBlockFv=0x8006F554 -patchTexNo__11J3DTevBlockFv=0x8006F558 -patchTevReg__11J3DTevBlockFv=0x8006F55C -patchTexNoAndTexCoordScale__11J3DTevBlockFv=0x8006F560 -setTexNo__11J3DTevBlockFUlPCUs=0x8006F564 -setTevOrder__11J3DTevBlockFUlPC11J3DTevOrder=0x8006F568 -getTevOrder__11J3DTevBlockFUl=0x8006F56C -setTevColor__11J3DTevBlockFUlPC13J3DGXColorS10=0x8006F574 -setTevKColor__11J3DTevBlockFUlPC10J3DGXColor=0x8006F578 -setTevKColorSel__11J3DTevBlockFUlPCUc=0x8006F57C -getTevKColorSel__11J3DTevBlockFUl=0x8006F580 -setTevKAlphaSel__11J3DTevBlockFUlPCUc=0x8006F588 -getTevKAlphaSel__11J3DTevBlockFUl=0x8006F58C -setTevStageNum__11J3DTevBlockFPCUc=0x8006F594 -setTevStage__11J3DTevBlockFUlPC11J3DTevStage=0x8006F598 -setTevSwapModeInfo__11J3DTevBlockFUl18J3DTevSwapModeInfo=0x8006F59C -setTevSwapModeInfo__11J3DTevBlockFUlPC18J3DTevSwapModeInfo=0x8006F5A0 -setTevSwapModeTable__11J3DTevBlockFUlPC19J3DTevSwapModeTable=0x8006F5A4 -getTevSwapModeTable__11J3DTevBlockFUl=0x8006F5A8 -setIndTevStage__11J3DTevBlockFUlPC14J3DIndTevStage=0x8006F5B0 -getIndTevStage__11J3DTevBlockFUl=0x8006F5B4 -getTexNoOffset__11J3DTevBlockCFv=0x8006F5BC -getTevRegOffset__11J3DTevBlockCFv=0x8006F5C4 -calc__18J3DTexGenBlockNullFPA4_Cf=0x8006F5CC -calcWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf=0x8006F5D0 -calcPostTexMtx__18J3DTexGenBlockNullFPA4_Cf=0x8006F5D4 -calcPostTexMtxWithoutViewMtx__18J3DTexGenBlockNullFPA4_Cf=0x8006F5D8 -load__18J3DTexGenBlockNullFv=0x8006F5DC -patch__18J3DTexGenBlockNullFv=0x8006F5E0 -diff__18J3DTexGenBlockNullFUl=0x8006F5E4 -diffTexMtx__18J3DTexGenBlockNullFv=0x8006F5E8 -diffTexGen__18J3DTexGenBlockNullFv=0x8006F5EC -getType__18J3DTexGenBlockNullFv=0x8006F5F0 -__dt__18J3DTexGenBlockNullFv=0x8006F5FC -getType__17J3DColorBlockNullFv=0x8006F658 -__dt__17J3DColorBlockNullFv=0x8006F664 -JSUConvertOffsetToPtr<17J3DCurrentMtxInfo>__FPCvPCv=0x8006F6C0 -JSUConvertOffsetToPtr<15J3DPatchingInfo>__FPCvPCv=0x8006F6D8 -JSUConvertOffsetToPtr<18J3DDisplayListInit>__FPCvPCv=0x8006F6F0 -JSUConvertOffsetToPtr<15J3DNBTScaleInfo>__FPCvPCv=0x8006F708 -JSUConvertOffsetToPtr<12J3DZModeInfo>__FPCvPCv=0x8006F720 -JSUConvertOffsetToPtr<12J3DBlendInfo>__FPCvPCv=0x8006F738 -JSUConvertOffsetToPtr<16J3DAlphaCompInfo>__FPCvPCv=0x8006F750 -JSUConvertOffsetToPtr<10J3DFogInfo>__FPCvPCv=0x8006F768 -JSUConvertOffsetToPtr<23J3DTevSwapModeTableInfo>__FPCvPCv=0x8006F780 -JSUConvertOffsetToPtr<18J3DTevSwapModeInfo>__FPCvPCv=0x8006F798 -JSUConvertOffsetToPtr<15J3DTevStageInfo>__FPCvPCv=0x8006F7B0 -JSUConvertOffsetToPtr<15J3DTevOrderInfo>__FPCvPCv=0x8006F7C8 -JSUConvertOffsetToPtr<13J3DTexMtxInfo>__FPCvPCv=0x8006F7E0 -JSUConvertOffsetToPtr<16J3DTexCoord2Info>__FPCvPCv=0x8006F7F8 -JSUConvertOffsetToPtr<15J3DTexCoordInfo>__FPCvPCv=0x8006F810 -JSUConvertOffsetToPtr<12J3DLightInfo>__FPCvPCv=0x8006F828 -JSUConvertOffsetToPtr<16J3DColorChanInfo>__FPCvPCv=0x8006F840 -JSUConvertOffsetToPtr<14J3DIndInitData>__FPCvPCv=0x8006F858 -JSUConvertOffsetToPtr<19J3DMaterialInitData>__FPCvPCv=0x8006F870 -getType__11J3DShapeMtxCFv=0x8006F888 -load__22J3DModelLoaderDataBaseFPCvUl=0x8006F894 -__dt__18J3DModelLoader_v26Fv=0x8006F9E8 -__dt__18J3DModelLoader_v21Fv=0x8006FA44 -__dt__14J3DModelLoaderFv=0x8006FAA0 -loadBinaryDisplayList__22J3DModelLoaderDataBaseFPCvUl=0x8006FAE8 -load__14J3DModelLoaderFPCvUl=0x8006FBA4 -readMaterial_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul=0x8006FE60 -readMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl=0x8006FE64 -loadMaterialTable__14J3DModelLoaderFPCv=0x8006FE68 -readMaterialTable_v21__14J3DModelLoaderFPC20J3DMaterialBlock_v21Ul=0x8006FFB0 -readMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl=0x8006FFB4 -loadBinaryDisplayList__14J3DModelLoaderFPCvUl=0x8006FFB8 -setupBBoardInfo__14J3DModelLoaderFv=0x8007025C -readInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl=0x800703A8 -__dt__19J3DMtxCalcNoAnmBaseFv=0x80070510 -readVertex__14J3DModelLoaderFPC14J3DVertexBlock=0x8007056C -readEnvelop__14J3DModelLoaderFPC16J3DEnvelopeBlock=0x800707A4 -readDraw__14J3DModelLoaderFPC12J3DDrawBlock=0x8007083C -readJoint__14J3DModelLoaderFPC13J3DJointBlock=0x800708F4 -readMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl=0x800709E0 -__ct__11J3DMaterialFv=0x80070C54 -readMaterial_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul=0x80070CA8 -readShape__14J3DModelLoaderFPC13J3DShapeBlockUl=0x80070F04 -readTexture__14J3DModelLoaderFPC15J3DTextureBlock=0x80071020 -readMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl=0x800710E4 -readMaterialTable_v21__18J3DModelLoader_v21FPC20J3DMaterialBlock_v21Ul=0x80071230 -readTextureTable__14J3DModelLoaderFPC15J3DTextureBlock=0x8007137C -readPatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl=0x80071440 -readMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl=0x80071590 -modifyMaterial__14J3DModelLoaderFUl=0x8007174C -calcSizeMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl=0x800717C8 -calcSizeMaterialTable__14J3DModelLoaderFPC16J3DMaterialBlockUl=0x800717D0 -__dt__10J3DTextureFv=0x800717D8 -__dt__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv=0x80071820 -init__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>FRC3VecRA3_A4_Cf=0x8007188C -calc__73J3DMtxCalcNoAnm<27J3DMtxCalcCalcTransformMaya,24J3DMtxCalcJ3DSysInitMaya>Fv=0x800718B4 -__dt__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x800718DC -init__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>FRC3VecRA3_A4_Cf=0x80071948 -calc__83J3DMtxCalcNoAnm<32J3DMtxCalcCalcTransformSoftimage,29J3DMtxCalcJ3DSysInitSoftimage>Fv=0x80071994 -__dt__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv=0x800719BC -init__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>FRC3VecRA3_A4_Cf=0x80071A28 -calc__75J3DMtxCalcNoAnm<28J3DMtxCalcCalcTransformBasic,25J3DMtxCalcJ3DSysInitBasic>Fv=0x80071A50 -JSUConvertOffsetToPtr<7ResTIMG>__FPCvPCv=0x80071A78 -JSUConvertOffsetToPtr__FPCvPCv=0x80071A90 -JSUConvertOffsetToPtr__FPCvPCv=0x80071AA8 -JSUConvertOffsetToPtr<17_GXVtxAttrFmtList>__FPCvPCv=0x80071AC0 -JSUConvertOffsetToPtr<17J3DModelHierarchy>__FPCvPCv=0x80071AD8 -JSUConvertOffsetToPtr<16J3DShapeInitData>__FPCvUl=0x80071AF0 -JSUConvertOffsetToPtr__FPCvUl=0x80071B08 -__ct__15J3DJointFactoryFRC13J3DJointBlock=0x80071B20 -create__15J3DJointFactoryFi=0x80071B78 -JSUConvertOffsetToPtr<16J3DJointInitData>__FPCvUl=0x80071CF8 -__ct__15J3DShapeFactoryFRC13J3DShapeBlock=0x80071D10 -create__15J3DShapeFactoryFiUlP14_GXVtxDescList=0x80071DC0 -newShapeMtx__15J3DShapeFactoryCFUlii=0x80071F74 -__dt__21J3DShapeMtxConcatViewFv=0x800721C0 -__dt__11J3DShapeMtxFv=0x8007221C -newShapeDraw__15J3DShapeFactoryCFii=0x80072264 -allocVcdVatCmdBuffer__15J3DShapeFactoryFUl=0x800722F0 -calcSize__15J3DShapeFactoryFiUl=0x800723FC -calcSizeVcdVatCmdBuffer__15J3DShapeFactoryFUl=0x80072488 -calcSizeShapeMtx__15J3DShapeFactoryCFUlii=0x80072498 -JSUConvertOffsetToPtr<20J3DShapeDrawInitData>__FPCvUl=0x80072540 -JSUConvertOffsetToPtr<19J3DShapeMtxInitData>__FPCvUl=0x80072558 -JSUConvertOffsetToPtr__FPCvUl=0x80072570 -JSUConvertOffsetToPtr<14_GXVtxDescList>__FPCvUl=0x80072588 -load__20J3DAnmLoaderDataBaseFPCv=0x800725A0 -__ct__20J3DAnmFullLoader_v15Fv=0x80072E64 -__dt__12J3DAnmLoaderFv=0x80072E80 -__dt__20J3DAnmFullLoader_v15Fv=0x80072EC8 -__ct__19J3DAnmKeyLoader_v15Fv=0x80072F24 -__dt__19J3DAnmKeyLoader_v15Fv=0x80072F40 -load__20J3DAnmFullLoader_v15FPCv=0x80072F9C -setResource__20J3DAnmFullLoader_v15FP10J3DAnmBasePCv=0x800730C4 -readAnmTransform__20J3DAnmFullLoader_v15FPC23J3DAnmTransformFullData=0x80073204 -setAnmTransform__20J3DAnmFullLoader_v15FP19J3DAnmTransformFullPC23J3DAnmTransformFullData=0x8007322C -readAnmColor__20J3DAnmFullLoader_v15FPC19J3DAnmColorFullData=0x800732C0 -setAnmColor__20J3DAnmFullLoader_v15FP15J3DAnmColorFullPC19J3DAnmColorFullData=0x800732E8 -readAnmTexPattern__20J3DAnmFullLoader_v15FPC24J3DAnmTexPatternFullData=0x800733B4 -setAnmTexPattern__20J3DAnmFullLoader_v15FP16J3DAnmTexPatternPC24J3DAnmTexPatternFullData=0x800733DC -readAnmVisibility__20J3DAnmFullLoader_v15FPC24J3DAnmVisibilityFullData=0x80073480 -setAnmVisibility__20J3DAnmFullLoader_v15FP20J3DAnmVisibilityFullPC24J3DAnmVisibilityFullData=0x800734A8 -readAnmCluster__20J3DAnmFullLoader_v15FPC21J3DAnmClusterFullData=0x80073524 -setAnmCluster__20J3DAnmFullLoader_v15FP17J3DAnmClusterFullPC21J3DAnmClusterFullData=0x8007354C -readAnmVtxColor__20J3DAnmFullLoader_v15FPC22J3DAnmVtxColorFullData=0x800735B8 -setAnmVtxColor__20J3DAnmFullLoader_v15FP18J3DAnmVtxColorFullPC22J3DAnmVtxColorFullData=0x800735E0 -load__19J3DAnmKeyLoader_v15FPCv=0x80073750 -setResource__19J3DAnmKeyLoader_v15FP10J3DAnmBasePCv=0x80073878 -readAnmTransform__19J3DAnmKeyLoader_v15FPC22J3DAnmTransformKeyData=0x800739B8 -setAnmTransform__19J3DAnmKeyLoader_v15FP18J3DAnmTransformKeyPC22J3DAnmTransformKeyData=0x800739E0 -readAnmTextureSRT__19J3DAnmKeyLoader_v15FPC23J3DAnmTextureSRTKeyData=0x80073A7C -setAnmTextureSRT__19J3DAnmKeyLoader_v15FP19J3DAnmTextureSRTKeyPC23J3DAnmTextureSRTKeyData=0x80073AA4 -readAnmColor__19J3DAnmKeyLoader_v15FPC18J3DAnmColorKeyData=0x80073C7C -setAnmColor__19J3DAnmKeyLoader_v15FP14J3DAnmColorKeyPC18J3DAnmColorKeyData=0x80073CA4 -readAnmCluster__19J3DAnmKeyLoader_v15FPC20J3DAnmClusterKeyData=0x80073D90 -setAnmCluster__19J3DAnmKeyLoader_v15FP16J3DAnmClusterKeyPC20J3DAnmClusterKeyData=0x80073DB8 -readAnmTevReg__19J3DAnmKeyLoader_v15FPC19J3DAnmTevRegKeyData=0x80073E24 -setAnmTevReg__19J3DAnmKeyLoader_v15FP15J3DAnmTevRegKeyPC19J3DAnmTevRegKeyData=0x80073E4C -readAnmVtxColor__19J3DAnmKeyLoader_v15FPC21J3DAnmVtxColorKeyData=0x80073FD8 -setAnmVtxColor__19J3DAnmKeyLoader_v15FP17J3DAnmVtxColorKeyPC21J3DAnmVtxColorKeyData=0x80074000 -__dt__20J3DAnmVisibilityFullFv=0x80074170 -getKind__20J3DAnmVisibilityFullCFv=0x800741CC -__dt__16J3DAnmTexPatternFv=0x800741D4 -getKind__16J3DAnmTexPatternCFv=0x80074248 -__dt__15J3DAnmTevRegKeyFv=0x80074250 -getKind__15J3DAnmTevRegKeyCFv=0x800742D8 -__dt__19J3DAnmTextureSRTKeyFv=0x800742E0 -getKind__19J3DAnmTextureSRTKeyCFv=0x80074368 -__dt__18J3DAnmTransformKeyFv=0x80074370 -getKind__18J3DAnmTransformKeyCFv=0x800743DC -getTransform__18J3DAnmTransformKeyCFUsP16J3DTransformInfo=0x800743E4 -JSUConvertOffsetToPtr<21J3DAnmClusterKeyTable>__FPCvPCv=0x80074408 -JSUConvertOffsetToPtr<22J3DAnmClusterFullTable>__FPCvPCv=0x80074420 -getUseMtxIndex__11J3DShapeMtxCFUs=0x80074438 -J3DGDSetGenMode__FUcUcUcUc11_GXCullMode=0x80074440 -J3DGDSetGenMode_3Param__FUcUcUc=0x800745B0 -J3DGDSetLightAttn__F10_GXLightIDffffff=0x8007470C -J3DGDSetLightColor__F10_GXLightID8_GXColor=0x80074A24 -J3DGDSetLightPos__F10_GXLightIDfff=0x80074B34 -J3DGDSetLightDir__F10_GXLightIDfff=0x80074D20 -J3DGDSetVtxAttrFmtv__F9_GXVtxFmtPC17_GXVtxAttrFmtListb=0x80074F0C -J3DGDSetTexCoordGen__F13_GXTexGenType12_GXTexGenSrc=0x80075454 -J3DGDSetTexCoordScale2__F13_GXTexCoordIDUsUcUcUsUcUc=0x80075624 -J3DGDSetTexLookupMode__F11_GXTexMapID14_GXTexWrapMode14_GXTexWrapMode12_GXTexFilter12_GXTexFilterfffUcUc13_GXAnisotropy=0x80075820 -J3DGDSetTexImgAttr__F11_GXTexMapIDUsUs9_GXTexFmt=0x800759CC -J3DGDSetTexImgPtr__F11_GXTexMapIDPv=0x80075A74 -J3DGDSetTexImgPtrRaw__F11_GXTexMapIDUl=0x80075B04 -J3DGDSetTexTlut__F11_GXTexMapIDUl10_GXTlutFmt=0x80075BD8 -J3DGDLoadTlut__FPvUl11_GXTlutSize=0x80075C70 -J3DGDSetIndTexMtx__F14_GXIndTexMtxIDPA3_fSc=0x80075F38 -J3DGDSetIndTexCoordScale__F16_GXIndTexStageID14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale14_GXIndTexScale=0x80076210 -J3DGDSetIndTexOrder__FUl13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID13_GXTexCoordID11_GXTexMapID=0x80076300 -J3DGDSetTevOrder__F13_GXTevStageID13_GXTexCoordID11_GXTexMapID12_GXChannelID13_GXTexCoordID11_GXTexMapID12_GXChannelID=0x800764F8 -J3DGDSetTevKColor__F14_GXTevKColorID8_GXColor=0x80076680 -J3DGDSetTevColorS10__F11_GXTevRegID11_GXColorS10=0x800767E8 -J3DGDSetFog__F10_GXFogTypeffff8_GXColor=0x80076A1C -J3DGDSetFogRangeAdj__FUcUsP14_GXFogAdjTable=0x80076D7C -J3DFifoLoadPosMtxImm__FPA4_fUl=0x80076EB8 -J3DFifoLoadNrmMtxImm__FPA4_fUl=0x80076F38 -J3DFifoLoadNrmMtxImm3x3__FPA3_fUl=0x80076FA4 -J3DFifoLoadNrmMtxToTexMtx__FPA4_fUl=0x80077010 -J3DFifoLoadNrmMtxToTexMtx3x3__FPA3_fUl=0x800770A8 -J3DFifoLoadTexCached__F11_GXTexMapIDUl15_GXTexCacheSizeUl15_GXTexCacheSize=0x80077140 -initialize__21J3DColorBlockLightOffFv=0x800771C0 -initialize__22J3DColorBlockAmbientOnFv=0x80077208 -initialize__20J3DColorBlockLightOnFv=0x80077284 -initialize__21J3DTexGenBlockPatchedFv=0x80077320 -initialize__15J3DTexGenBlock4Fv=0x80077350 -initialize__19J3DTexGenBlockBasicFv=0x80077370 -initialize__15J3DTevBlockNullFv=0x800773A0 -initialize__18J3DTevBlockPatchedFv=0x800773AC -initialize__12J3DTevBlock1Fv=0x80077538 -initialize__12J3DTevBlock2Fv=0x80077560 -initialize__12J3DTevBlock4Fv=0x80077670 -initialize__13J3DTevBlock16Fv=0x800777B0 -initialize__15J3DIndBlockFullFv=0x800779FC -initialize__16J3DPEBlockFogOffFv=0x80077A08 -initialize__14J3DPEBlockFullFv=0x80077A2C -countDLSize__21J3DColorBlockLightOffFv=0x80077A58 -countDLSize__22J3DColorBlockAmbientOnFv=0x80077A60 -countDLSize__20J3DColorBlockLightOnFv=0x80077A68 -countDLSize__21J3DTexGenBlockPatchedFv=0x80077A70 -countDLSize__15J3DTexGenBlock4Fv=0x80077A78 -countDLSize__19J3DTexGenBlockBasicFv=0x80077A80 -countDLSize__18J3DTevBlockPatchedFv=0x80077A88 -countDLSize__12J3DTevBlock1Fv=0x80077A90 -countDLSize__12J3DTevBlock2Fv=0x80077A98 -countDLSize__12J3DTevBlock4Fv=0x80077AA0 -countDLSize__13J3DTevBlock16Fv=0x80077AA8 -countDLSize__15J3DIndBlockFullFv=0x80077AB0 -countDLSize__13J3DPEBlockOpaFv=0x80077AB8 -countDLSize__17J3DPEBlockTexEdgeFv=0x80077AC0 -countDLSize__13J3DPEBlockXluFv=0x80077AC8 -countDLSize__16J3DPEBlockFogOffFv=0x80077AD0 -countDLSize__14J3DPEBlockFullFv=0x80077AD8 -load__21J3DColorBlockLightOffFv=0x80077AE0 -load__22J3DColorBlockAmbientOnFv=0x80078038 -load__20J3DColorBlockLightOnFv=0x800786B8 -patch__21J3DColorBlockLightOffFv=0x80078D68 -patchMatColor__21J3DColorBlockLightOffFv=0x80078DB4 -patchLight__21J3DColorBlockLightOffFv=0x80078F60 -patch__20J3DColorBlockLightOnFv=0x80079398 -patchMatColor__20J3DColorBlockLightOnFv=0x800793E4 -patchLight__20J3DColorBlockLightOnFv=0x80079590 -diff__21J3DColorBlockLightOffFUl=0x800799F4 -diffMatColor__21J3DColorBlockLightOffFv=0x80079A5C -diffLight__21J3DColorBlockLightOffFv=0x80079BD8 -diff__20J3DColorBlockLightOnFUl=0x80079FDC -diffMatColor__20J3DColorBlockLightOnFv=0x8007A04C -diffLight__20J3DColorBlockLightOnFv=0x8007A1C8 -load__15J3DTexGenBlock4Fv=0x8007A5FC -load__19J3DTexGenBlockBasicFv=0x8007A6A4 -patch__21J3DTexGenBlockPatchedFv=0x8007A74C -patch__15J3DTexGenBlock4Fv=0x8007A7DC -patch__19J3DTexGenBlockBasicFv=0x8007A888 -diff__21J3DTexGenBlockPatchedFUl=0x8007A934 -diffTexMtx__21J3DTexGenBlockPatchedFv=0x8007A99C -diffTexGen__21J3DTexGenBlockPatchedFv=0x8007A9F4 -load__12J3DTevBlock1Fv=0x8007AA28 -load__12J3DTevBlock2Fv=0x8007AC68 -load__12J3DTevBlock4Fv=0x8007B16C -load__13J3DTevBlock16Fv=0x8007B694 -patchTexNo__18J3DTevBlockPatchedFv=0x8007BBC0 -patchTevReg__18J3DTevBlockPatchedFv=0x8007BC54 -patchTexNoAndTexCoordScale__18J3DTevBlockPatchedFv=0x8007BD24 -patch__18J3DTevBlockPatchedFv=0x8007BE90 -patchTexNo__12J3DTevBlock1Fv=0x8007BEDC -patchTevReg__12J3DTevBlock1Fv=0x8007BF48 -patchTexNoAndTexCoordScale__12J3DTevBlock1Fv=0x8007BF4C -patch__12J3DTevBlock1Fv=0x8007C030 -patchTexNo__12J3DTevBlock2Fv=0x8007C05C -patchTevReg__12J3DTevBlock2Fv=0x8007C0F0 -patchTexNoAndTexCoordScale__12J3DTevBlock2Fv=0x8007C1C0 -patch__12J3DTevBlock2Fv=0x8007C31C -patchTexNo__12J3DTevBlock4Fv=0x8007C368 -patchTevReg__12J3DTevBlock4Fv=0x8007C3FC -patchTexNoAndTexCoordScale__12J3DTevBlock4Fv=0x8007C4CC -patch__12J3DTevBlock4Fv=0x8007C638 -patchTexNo__13J3DTevBlock16Fv=0x8007C684 -patchTevReg__13J3DTevBlock16Fv=0x8007C718 -patchTexNoAndTexCoordScale__13J3DTevBlock16Fv=0x8007C7E8 -patch__13J3DTevBlock16Fv=0x8007C954 -diff__11J3DTevBlockFUl=0x8007C9A0 -diffTexNo__18J3DTevBlockPatchedFv=0x8007CA5C -diffTevStage__18J3DTevBlockPatchedFv=0x8007CAB8 -diffTevStageIndirect__18J3DTevBlockPatchedFv=0x8007CBC0 -diffTevReg__18J3DTevBlockPatchedFv=0x8007CC68 -diffTexCoordScale__18J3DTevBlockPatchedFv=0x8007CD00 -diffTexNo__12J3DTevBlock1Fv=0x8007CDEC -diffTevReg__12J3DTevBlock1Fv=0x8007CE20 -diffTevStage__12J3DTevBlock1Fv=0x8007CE24 -diffTevStageIndirect__12J3DTevBlock1Fv=0x8007CF14 -diffTexCoordScale__12J3DTevBlock1Fv=0x8007CF94 -diffTexNo__12J3DTevBlock2Fv=0x8007CFFC -diffTevReg__12J3DTevBlock2Fv=0x8007D058 -diffTevStage__12J3DTevBlock2Fv=0x8007D0F0 -diffTevStageIndirect__12J3DTevBlock2Fv=0x8007D1F8 -diffTexCoordScale__12J3DTevBlock2Fv=0x8007D2A0 -diffTexNo__12J3DTevBlock4Fv=0x8007D364 -diffTevReg__12J3DTevBlock4Fv=0x8007D3C0 -diffTevStage__12J3DTevBlock4Fv=0x8007D458 -diffTevStageIndirect__12J3DTevBlock4Fv=0x8007D560 -diffTexCoordScale__12J3DTevBlock4Fv=0x8007D608 -diffTexNo__13J3DTevBlock16Fv=0x8007D6F4 -diffTevReg__13J3DTevBlock16Fv=0x8007D750 -diffTevStage__13J3DTevBlock16Fv=0x8007D7E8 -diffTevStageIndirect__13J3DTevBlock16Fv=0x8007D8F0 -diffTexCoordScale__13J3DTevBlock16Fv=0x8007D998 -ptrToIndex__13J3DTevBlock16Fv=0x8007DA84 -ptrToIndex__18J3DTevBlockPatchedFv=0x8007DB58 -indexToPtr_private__11J3DTevBlockFUl=0x8007DC2C -load__15J3DIndBlockFullFv=0x8007DCC8 -diff__15J3DIndBlockFullFUl=0x8007DEC8 -load__13J3DPEBlockOpaFv=0x8007DFA4 -load__17J3DPEBlockTexEdgeFv=0x8007E26C -load__13J3DPEBlockXluFv=0x8007E54C -load__16J3DPEBlockFogOffFv=0x8007E820 -diffBlend__16J3DPEBlockFogOffFv=0x8007ECBC -load__14J3DPEBlockFullFv=0x8007EFB4 -patch__14J3DPEBlockFullFv=0x8007F498 -diffFog__14J3DPEBlockFullFv=0x8007F548 -diffBlend__14J3DPEBlockFullFv=0x8007F5C0 -diff__14J3DPEBlockFullFUl=0x8007F8B8 -reset__21J3DColorBlockLightOffFP13J3DColorBlock=0x8007F920 -reset__22J3DColorBlockAmbientOnFP13J3DColorBlock=0x8007FA04 -reset__20J3DColorBlockLightOnFP13J3DColorBlock=0x8007FB58 -reset__21J3DTexGenBlockPatchedFP14J3DTexGenBlock=0x8007FCAC -reset__15J3DTexGenBlock4FP14J3DTexGenBlock=0x8007FDC8 -reset__19J3DTexGenBlockBasicFP14J3DTexGenBlock=0x8007FF18 -reset__18J3DTevBlockPatchedFP11J3DTevBlock=0x80080068 -reset__12J3DTevBlock1FP11J3DTevBlock=0x80080220 -reset__12J3DTevBlock2FP11J3DTevBlock=0x80080308 -reset__12J3DTevBlock4FP11J3DTevBlock=0x80080610 -reset__13J3DTevBlock16FP11J3DTevBlock=0x80080AF0 -reset__15J3DIndBlockFullFP11J3DIndBlock=0x80080D6C -reset__16J3DPEBlockFogOffFP10J3DPEBlock=0x80080EB0 -reset__14J3DPEBlockFullFP10J3DPEBlock=0x80080FB0 -calc__21J3DTexGenBlockPatchedFPA4_Cf=0x80081188 -calcWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf=0x80081338 -calcPostTexMtx__21J3DTexGenBlockPatchedFPA4_Cf=0x80081478 -calcPostTexMtxWithoutViewMtx__21J3DTexGenBlockPatchedFPA4_Cf=0x800815B8 -getType__14J3DPEBlockFullFv=0x800816D0 -setFog__14J3DPEBlockFullFP6J3DFog=0x800816DC -setFog__14J3DPEBlockFullF6J3DFog=0x80081788 -getFog__14J3DPEBlockFullFv=0x80081834 -setAlphaComp__14J3DPEBlockFullFRC12J3DAlphaComp=0x8008183C -setAlphaComp__14J3DPEBlockFullFPC12J3DAlphaComp=0x80081858 -getAlphaComp__14J3DPEBlockFullFv=0x80081874 -setBlend__14J3DPEBlockFullFRC8J3DBlend=0x8008187C -setBlend__14J3DPEBlockFullFPC8J3DBlend=0x800818A0 -getBlend__14J3DPEBlockFullFv=0x800818C4 -setZMode__14J3DPEBlockFullF8J3DZMode=0x800818CC -setZMode__14J3DPEBlockFullFPC8J3DZMode=0x800818D8 -getZMode__14J3DPEBlockFullFv=0x800818E4 -setZCompLoc__14J3DPEBlockFullFUc=0x800818EC -setZCompLoc__14J3DPEBlockFullFPCUc=0x800818F4 -getZCompLoc__14J3DPEBlockFullCFv=0x80081900 -setDither__14J3DPEBlockFullFUc=0x80081908 -setDither__14J3DPEBlockFullFPCUc=0x80081910 -getDither__14J3DPEBlockFullCFv=0x8008191C -getFogOffset__14J3DPEBlockFullCFv=0x80081924 -setFogOffset__14J3DPEBlockFullFUl=0x8008192C -__dt__14J3DPEBlockFullFv=0x80081934 -diff__16J3DPEBlockFogOffFUl=0x80081990 -getType__16J3DPEBlockFogOffFv=0x800819C4 -setAlphaComp__16J3DPEBlockFogOffFRC12J3DAlphaComp=0x800819D0 -setAlphaComp__16J3DPEBlockFogOffFPC12J3DAlphaComp=0x800819EC -getAlphaComp__16J3DPEBlockFogOffFv=0x80081A08 -setBlend__16J3DPEBlockFogOffFRC8J3DBlend=0x80081A10 -setBlend__16J3DPEBlockFogOffFPC8J3DBlend=0x80081A34 -getBlend__16J3DPEBlockFogOffFv=0x80081A58 -setZMode__16J3DPEBlockFogOffF8J3DZMode=0x80081A60 -setZMode__16J3DPEBlockFogOffFPC8J3DZMode=0x80081A6C -getZMode__16J3DPEBlockFogOffFv=0x80081A78 -setZCompLoc__16J3DPEBlockFogOffFUc=0x80081A80 -setZCompLoc__16J3DPEBlockFogOffFPCUc=0x80081A88 -getZCompLoc__16J3DPEBlockFogOffCFv=0x80081A94 -setDither__16J3DPEBlockFogOffFUc=0x80081A9C -setDither__16J3DPEBlockFogOffFPCUc=0x80081AA4 -getDither__16J3DPEBlockFogOffCFv=0x80081AB0 -__dt__16J3DPEBlockFogOffFv=0x80081AB8 -indexToPtr__13J3DTevBlock16Fv=0x80081B14 -getType__13J3DTevBlock16Fv=0x80081BB4 -setTexNo__13J3DTevBlock16FUlUs=0x80081BC0 -setTexNo__13J3DTevBlock16FUlPCUs=0x80081BD0 -getTexNo__13J3DTevBlock16CFUl=0x80081BE4 -setTevOrder__13J3DTevBlock16FUl11J3DTevOrder=0x80081BF4 -setTevOrder__13J3DTevBlock16FUlPC11J3DTevOrder=0x80081C18 -getTevOrder__13J3DTevBlock16FUl=0x80081C3C -setTevColor__13J3DTevBlock16FUl13J3DGXColorS10=0x80081C50 -setTevColor__13J3DTevBlock16FUlPC13J3DGXColorS10=0x80081C7C -getTevColor__13J3DTevBlock16FUl=0x80081CA8 -setTevKColor__13J3DTevBlock16FUl10J3DGXColor=0x80081CBC -setTevKColor__13J3DTevBlock16FUlPC10J3DGXColor=0x80081CE8 -getTevKColor__13J3DTevBlock16FUl=0x80081D14 -setTevKColorSel__13J3DTevBlock16FUlUc=0x80081D28 -setTevKColorSel__13J3DTevBlock16FUlPCUc=0x80081D34 -getTevKColorSel__13J3DTevBlock16FUl=0x80081D44 -setTevKAlphaSel__13J3DTevBlock16FUlUc=0x80081D50 -setTevKAlphaSel__13J3DTevBlock16FUlPCUc=0x80081D5C -getTevKAlphaSel__13J3DTevBlock16FUl=0x80081D6C -setTevStageNum__13J3DTevBlock16FUc=0x80081D78 -setTevStageNum__13J3DTevBlock16FPCUc=0x80081D80 -getTevStageNum__13J3DTevBlock16CFv=0x80081D8C -setTevStage__13J3DTevBlock16FUl11J3DTevStage=0x80081D94 -setTevStage__13J3DTevBlock16FUlPC11J3DTevStage=0x80081DD0 -getTevStage__13J3DTevBlock16FUl=0x80081E0C -setTevSwapModeInfo__13J3DTevBlock16FUl18J3DTevSwapModeInfo=0x80081E20 -setTevSwapModeInfo__13J3DTevBlock16FUlPC18J3DTevSwapModeInfo=0x80081E58 -setTevSwapModeTable__13J3DTevBlock16FUl19J3DTevSwapModeTable=0x80081E90 -setTevSwapModeTable__13J3DTevBlock16FUlPC19J3DTevSwapModeTable=0x80081EA0 -getTevSwapModeTable__13J3DTevBlock16FUl=0x80081EB0 -setIndTevStage__13J3DTevBlock16FUl14J3DIndTevStage=0x80081EC0 -setIndTevStage__13J3DTevBlock16FUlPC14J3DIndTevStage=0x80081ED4 -getIndTevStage__13J3DTevBlock16FUl=0x80081EE8 -getTexNoOffset__13J3DTevBlock16CFv=0x80081EFC -getTevRegOffset__13J3DTevBlock16CFv=0x80081F04 -setTevRegOffset__13J3DTevBlock16FUl=0x80081F0C -__dt__13J3DTevBlock16Fv=0x80081F14 -ptrToIndex__12J3DTevBlock4Fv=0x80081F70 -indexToPtr__12J3DTevBlock4Fv=0x80081F74 -getType__12J3DTevBlock4Fv=0x80082014 -setTexNo__12J3DTevBlock4FUlUs=0x80082020 -setTexNo__12J3DTevBlock4FUlPCUs=0x80082030 -getTexNo__12J3DTevBlock4CFUl=0x80082044 -setTevOrder__12J3DTevBlock4FUl11J3DTevOrder=0x80082054 -setTevOrder__12J3DTevBlock4FUlPC11J3DTevOrder=0x80082078 -getTevOrder__12J3DTevBlock4FUl=0x8008209C -setTevColor__12J3DTevBlock4FUl13J3DGXColorS10=0x800820B0 -setTevColor__12J3DTevBlock4FUlPC13J3DGXColorS10=0x800820DC -getTevColor__12J3DTevBlock4FUl=0x80082108 -setTevKColor__12J3DTevBlock4FUl10J3DGXColor=0x8008211C -setTevKColor__12J3DTevBlock4FUlPC10J3DGXColor=0x80082148 -getTevKColor__12J3DTevBlock4FUl=0x80082174 -setTevKColorSel__12J3DTevBlock4FUlUc=0x80082188 -setTevKColorSel__12J3DTevBlock4FUlPCUc=0x80082194 -getTevKColorSel__12J3DTevBlock4FUl=0x800821A4 -setTevKAlphaSel__12J3DTevBlock4FUlUc=0x800821B0 -setTevKAlphaSel__12J3DTevBlock4FUlPCUc=0x800821BC -getTevKAlphaSel__12J3DTevBlock4FUl=0x800821CC -setTevStageNum__12J3DTevBlock4FUc=0x800821D8 -setTevStageNum__12J3DTevBlock4FPCUc=0x800821E0 -getTevStageNum__12J3DTevBlock4CFv=0x800821EC -setTevStage__12J3DTevBlock4FUl11J3DTevStage=0x800821F4 -setTevStage__12J3DTevBlock4FUlPC11J3DTevStage=0x80082230 -getTevStage__12J3DTevBlock4FUl=0x8008226C -setTevSwapModeInfo__12J3DTevBlock4FUl18J3DTevSwapModeInfo=0x80082280 -setTevSwapModeInfo__12J3DTevBlock4FUlPC18J3DTevSwapModeInfo=0x800822B8 -setTevSwapModeTable__12J3DTevBlock4FUl19J3DTevSwapModeTable=0x800822F0 -setTevSwapModeTable__12J3DTevBlock4FUlPC19J3DTevSwapModeTable=0x80082300 -getTevSwapModeTable__12J3DTevBlock4FUl=0x80082310 -setIndTevStage__12J3DTevBlock4FUl14J3DIndTevStage=0x80082320 -setIndTevStage__12J3DTevBlock4FUlPC14J3DIndTevStage=0x80082334 -getIndTevStage__12J3DTevBlock4FUl=0x80082348 -getTexNoOffset__12J3DTevBlock4CFv=0x8008235C -getTevRegOffset__12J3DTevBlock4CFv=0x80082364 -setTevRegOffset__12J3DTevBlock4FUl=0x8008236C -__dt__12J3DTevBlock4Fv=0x80082374 -ptrToIndex__12J3DTevBlock2Fv=0x800823D0 -indexToPtr__12J3DTevBlock2Fv=0x800823D4 -getType__12J3DTevBlock2Fv=0x80082474 -setTexNo__12J3DTevBlock2FUlUs=0x80082480 -setTexNo__12J3DTevBlock2FUlPCUs=0x80082490 -getTexNo__12J3DTevBlock2CFUl=0x800824A4 -setTevOrder__12J3DTevBlock2FUl11J3DTevOrder=0x800824B4 -setTevOrder__12J3DTevBlock2FUlPC11J3DTevOrder=0x800824D8 -getTevOrder__12J3DTevBlock2FUl=0x800824FC -setTevColor__12J3DTevBlock2FUl13J3DGXColorS10=0x80082510 -setTevColor__12J3DTevBlock2FUlPC13J3DGXColorS10=0x8008253C -getTevColor__12J3DTevBlock2FUl=0x80082568 -setTevKColor__12J3DTevBlock2FUl10J3DGXColor=0x8008257C -setTevKColor__12J3DTevBlock2FUlPC10J3DGXColor=0x800825A8 -getTevKColor__12J3DTevBlock2FUl=0x800825D4 -setTevKColorSel__12J3DTevBlock2FUlUc=0x800825E8 -setTevKColorSel__12J3DTevBlock2FUlPCUc=0x800825F4 -getTevKColorSel__12J3DTevBlock2FUl=0x80082604 -setTevKAlphaSel__12J3DTevBlock2FUlUc=0x80082610 -setTevKAlphaSel__12J3DTevBlock2FUlPCUc=0x8008261C -getTevKAlphaSel__12J3DTevBlock2FUl=0x8008262C -setTevStageNum__12J3DTevBlock2FUc=0x80082638 -setTevStageNum__12J3DTevBlock2FPCUc=0x80082640 -getTevStageNum__12J3DTevBlock2CFv=0x8008264C -setTevStage__12J3DTevBlock2FUl11J3DTevStage=0x80082654 -setTevStage__12J3DTevBlock2FUlPC11J3DTevStage=0x80082690 -getTevStage__12J3DTevBlock2FUl=0x800826CC -setTevSwapModeInfo__12J3DTevBlock2FUl18J3DTevSwapModeInfo=0x800826E0 -setTevSwapModeInfo__12J3DTevBlock2FUlPC18J3DTevSwapModeInfo=0x80082718 -setTevSwapModeTable__12J3DTevBlock2FUl19J3DTevSwapModeTable=0x80082750 -setTevSwapModeTable__12J3DTevBlock2FUlPC19J3DTevSwapModeTable=0x80082760 -getTevSwapModeTable__12J3DTevBlock2FUl=0x80082770 -setIndTevStage__12J3DTevBlock2FUl14J3DIndTevStage=0x80082780 -setIndTevStage__12J3DTevBlock2FUlPC14J3DIndTevStage=0x80082794 -getIndTevStage__12J3DTevBlock2FUl=0x800827A8 -getTexNoOffset__12J3DTevBlock2CFv=0x800827BC -getTevRegOffset__12J3DTevBlock2CFv=0x800827C4 -setTevRegOffset__12J3DTevBlock2FUl=0x800827CC -__dt__12J3DTevBlock2Fv=0x800827D4 -ptrToIndex__12J3DTevBlock1Fv=0x80082830 -indexToPtr__12J3DTevBlock1Fv=0x80082834 -getType__12J3DTevBlock1Fv=0x800828D4 -setTexNo__12J3DTevBlock1FUlUs=0x800828E0 -setTexNo__12J3DTevBlock1FUlPCUs=0x800828F0 -getTexNo__12J3DTevBlock1CFUl=0x80082904 -setTevOrder__12J3DTevBlock1FUl11J3DTevOrder=0x80082914 -setTevOrder__12J3DTevBlock1FUlPC11J3DTevOrder=0x80082938 -getTevOrder__12J3DTevBlock1FUl=0x8008295C -setTevStageNum__12J3DTevBlock1FUc=0x80082970 -setTevStageNum__12J3DTevBlock1FPCUc=0x80082974 -getTevStageNum__12J3DTevBlock1CFv=0x80082978 -setTevStage__12J3DTevBlock1FUl11J3DTevStage=0x80082980 -setTevStage__12J3DTevBlock1FUlPC11J3DTevStage=0x800829BC -getTevStage__12J3DTevBlock1FUl=0x800829F8 -setIndTevStage__12J3DTevBlock1FUl14J3DIndTevStage=0x80082A0C -setIndTevStage__12J3DTevBlock1FUlPC14J3DIndTevStage=0x80082A20 -getIndTevStage__12J3DTevBlock1FUl=0x80082A34 -getTexNoOffset__12J3DTevBlock1CFv=0x80082A48 -__dt__12J3DTevBlock1Fv=0x80082A50 -load__18J3DTevBlockPatchedFv=0x80082AAC -indexToPtr__18J3DTevBlockPatchedFv=0x80082AB0 -getType__18J3DTevBlockPatchedFv=0x80082B50 -setTevStageNum__18J3DTevBlockPatchedFUc=0x80082B5C -setTevStageNum__18J3DTevBlockPatchedFPCUc=0x80082B64 -getTevStageNum__18J3DTevBlockPatchedCFv=0x80082B70 -setTexNo__18J3DTevBlockPatchedFUlUs=0x80082B78 -setTexNo__18J3DTevBlockPatchedFUlPCUs=0x80082B88 -getTexNo__18J3DTevBlockPatchedCFUl=0x80082B9C -setTevOrder__18J3DTevBlockPatchedFUl11J3DTevOrder=0x80082BAC -setTevOrder__18J3DTevBlockPatchedFUlPC11J3DTevOrder=0x80082BD0 -getTevOrder__18J3DTevBlockPatchedFUl=0x80082BF4 -setTevStage__18J3DTevBlockPatchedFUl11J3DTevStage=0x80082C08 -setTevStage__18J3DTevBlockPatchedFUlPC11J3DTevStage=0x80082C44 -getTevStage__18J3DTevBlockPatchedFUl=0x80082C80 -setIndTevStage__18J3DTevBlockPatchedFUl14J3DIndTevStage=0x80082C94 -setIndTevStage__18J3DTevBlockPatchedFUlPC14J3DIndTevStage=0x80082CA8 -getIndTevStage__18J3DTevBlockPatchedFUl=0x80082CBC -setTevColor__18J3DTevBlockPatchedFUl13J3DGXColorS10=0x80082CD0 -setTevColor__18J3DTevBlockPatchedFUlPC13J3DGXColorS10=0x80082CFC -getTevColor__18J3DTevBlockPatchedFUl=0x80082D28 -setTevKColor__18J3DTevBlockPatchedFUl10J3DGXColor=0x80082D3C -setTevKColor__18J3DTevBlockPatchedFUlPC10J3DGXColor=0x80082D68 -getTevKColor__18J3DTevBlockPatchedFUl=0x80082D94 -setTevKColorSel__18J3DTevBlockPatchedFUlUc=0x80082DA8 -setTevKColorSel__18J3DTevBlockPatchedFUlPCUc=0x80082DB4 -getTevKColorSel__18J3DTevBlockPatchedFUl=0x80082DC4 -getTexNoOffset__18J3DTevBlockPatchedCFv=0x80082DD0 -getTevRegOffset__18J3DTevBlockPatchedCFv=0x80082DD8 -setTevRegOffset__18J3DTevBlockPatchedFUl=0x80082DE0 -__dt__18J3DTevBlockPatchedFv=0x80082DE8 -getType__19J3DTexGenBlockBasicFv=0x80082E44 -setNBTScale__19J3DTexGenBlockBasicF11J3DNBTScale=0x80082E50 -setNBTScale__19J3DTexGenBlockBasicFPC11J3DNBTScale=0x80082E74 -getNBTScale__19J3DTexGenBlockBasicFv=0x80082E98 -__dt__19J3DTexGenBlockBasicFv=0x80082EA0 -setTexGenNum__21J3DTexGenBlockPatchedFUl=0x80082F0C -setTexGenNum__21J3DTexGenBlockPatchedFPCUl=0x80082F14 -getTexGenNum__21J3DTexGenBlockPatchedCFv=0x80082F20 -setTexCoord__21J3DTexGenBlockPatchedFUlPC11J3DTexCoord=0x80082F28 -getTexCoord__21J3DTexGenBlockPatchedFUl=0x80082F4C -setTexMtx__21J3DTexGenBlockPatchedFUlP9J3DTexMtx=0x80082F60 -getTexMtx__21J3DTexGenBlockPatchedFUl=0x80082F70 -getTexMtxOffset__21J3DTexGenBlockPatchedCFv=0x80082F80 -setTexMtxOffset__21J3DTexGenBlockPatchedFUl=0x80082F88 -getType__15J3DTexGenBlock4Fv=0x80082F90 -setNBTScale__15J3DTexGenBlock4F11J3DNBTScale=0x80082F9C -setNBTScale__15J3DTexGenBlock4FPC11J3DNBTScale=0x80082FC0 -getNBTScale__15J3DTexGenBlock4Fv=0x80082FE4 -__dt__15J3DTexGenBlock4Fv=0x80082FEC -load__21J3DTexGenBlockPatchedFv=0x80083058 -getType__21J3DTexGenBlockPatchedFv=0x8008305C -getType__20J3DColorBlockLightOnFv=0x80083068 -setMatColor__20J3DColorBlockLightOnFUl10J3DGXColor=0x80083074 -setMatColor__20J3DColorBlockLightOnFUlPC10J3DGXColor=0x800830A0 -getMatColor__20J3DColorBlockLightOnFUl=0x800830CC -setAmbColor__20J3DColorBlockLightOnFUl10J3DGXColor=0x800830E0 -setAmbColor__20J3DColorBlockLightOnFUlPC10J3DGXColor=0x8008310C -getAmbColor__20J3DColorBlockLightOnFUl=0x80083138 -setColorChanNum__20J3DColorBlockLightOnFPCUc=0x8008314C -setColorChanNum__20J3DColorBlockLightOnFUc=0x80083158 -getColorChanNum__20J3DColorBlockLightOnCFv=0x80083160 -setColorChan__20J3DColorBlockLightOnFUlPC12J3DColorChan=0x80083168 -setColorChan__20J3DColorBlockLightOnFUlRC12J3DColorChan=0x8008317C -getColorChan__20J3DColorBlockLightOnFUl=0x80083190 -setLight__20J3DColorBlockLightOnFUlP11J3DLightObj=0x800831A4 -getLight__20J3DColorBlockLightOnFUl=0x800831B4 -setCullMode__20J3DColorBlockLightOnFUc=0x800831C4 -setCullMode__20J3DColorBlockLightOnFPCUc=0x800831CC -getCullMode__20J3DColorBlockLightOnCFv=0x800831D8 -getMatColorOffset__20J3DColorBlockLightOnCFv=0x800831E0 -getColorChanOffset__20J3DColorBlockLightOnCFv=0x800831E8 -setMatColorOffset__20J3DColorBlockLightOnFUl=0x800831F0 -setColorChanOffset__20J3DColorBlockLightOnFUl=0x800831F8 -__dt__20J3DColorBlockLightOnFv=0x80083200 -getType__22J3DColorBlockAmbientOnFv=0x8008325C -setAmbColor__22J3DColorBlockAmbientOnFUl10J3DGXColor=0x80083268 -setAmbColor__22J3DColorBlockAmbientOnFUlPC10J3DGXColor=0x80083294 -getAmbColor__22J3DColorBlockAmbientOnFUl=0x800832C0 -__dt__22J3DColorBlockAmbientOnFv=0x800832D4 -setMatColor__21J3DColorBlockLightOffFUl10J3DGXColor=0x80083340 -setMatColor__21J3DColorBlockLightOffFUlPC10J3DGXColor=0x8008336C -getMatColor__21J3DColorBlockLightOffFUl=0x80083398 -setColorChanNum__21J3DColorBlockLightOffFPCUc=0x800833AC -setColorChanNum__21J3DColorBlockLightOffFUc=0x800833B8 -getColorChanNum__21J3DColorBlockLightOffCFv=0x800833C0 -setColorChan__21J3DColorBlockLightOffFUlPC12J3DColorChan=0x800833C8 -setColorChan__21J3DColorBlockLightOffFUlRC12J3DColorChan=0x800833DC -getColorChan__21J3DColorBlockLightOffFUl=0x800833F0 -setCullMode__21J3DColorBlockLightOffFUc=0x80083404 -setCullMode__21J3DColorBlockLightOffFPCUc=0x8008340C -getCullMode__21J3DColorBlockLightOffCFv=0x80083418 -getMatColorOffset__21J3DColorBlockLightOffCFv=0x80083420 -getColorChanOffset__21J3DColorBlockLightOffCFv=0x80083428 -setMatColorOffset__21J3DColorBlockLightOffFUl=0x80083430 -setColorChanOffset__21J3DColorBlockLightOffFUl=0x80083438 -getType__13J3DPEBlockXluFv=0x80083440 -__dt__13J3DPEBlockXluFv=0x8008344C -getType__17J3DPEBlockTexEdgeFv=0x800834A8 -__dt__17J3DPEBlockTexEdgeFv=0x800834B4 -getType__13J3DPEBlockOpaFv=0x80083510 -__dt__13J3DPEBlockOpaFv=0x8008351C -getType__15J3DIndBlockFullFv=0x80083578 -setIndTexStageNum__15J3DIndBlockFullFUc=0x80083584 -getIndTexStageNum__15J3DIndBlockFullCFv=0x8008358C -setIndTexOrder__15J3DIndBlockFullFUl14J3DIndTexOrder=0x80083594 -setIndTexOrder__15J3DIndBlockFullFUlPC14J3DIndTexOrder=0x800835B0 -getIndTexOrder__15J3DIndBlockFullFUl=0x800835CC -setIndTexMtx__15J3DIndBlockFullFUl12J3DIndTexMtx=0x800835E0 -setIndTexMtx__15J3DIndBlockFullFUlPC12J3DIndTexMtx=0x80083624 -getIndTexMtx__15J3DIndBlockFullFUl=0x80083668 -setIndTexCoordScale__15J3DIndBlockFullFUl19J3DIndTexCoordScale=0x8008367C -setIndTexCoordScale__15J3DIndBlockFullFUlPC19J3DIndTexCoordScale=0x80083698 -getIndTexCoordScale__15J3DIndBlockFullFUl=0x800836B4 -__dt__15J3DIndBlockFullFv=0x800836C8 -getType__21J3DColorBlockLightOffFv=0x80083764 -__sinit_J3DMatBlock_cpp=0x80083770 -clear__12J3DModelDataFv=0x80083794 -__ct__12J3DModelDataFv=0x800837AC -__dt__13J3DShapeTableFv=0x8008382C -__dt__12J3DJointTreeFv=0x80083874 -newSharedDisplayList__12J3DModelDataFUl=0x800838D8 -indexToPtr__12J3DModelDataFv=0x8008396C -makeSharedDL__12J3DModelDataFv=0x80083A30 -simpleCalcMaterial__12J3DModelDataFUsPA4_f=0x80083AB0 -syncJ3DSysFlags__12J3DModelDataCFv=0x80083B78 -__dt__12J3DModelDataFv=0x80083BB4 -clear__16J3DMaterialTableFv=0x80083C4C -__ct__16J3DMaterialTableFv=0x80083C74 -__dt__16J3DMaterialTableFv=0x80083CA8 -__ct__14J3DMatColorAnmFv=0x80083CF0 -__ct__11J3DTexNoAnmFv=0x80083D08 -allocTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKeyPP12J3DTexMtxAnm=0x80083D2C -__ct__12J3DTexMtxAnmFv=0x80083EF0 -allocTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKeyPP14J3DTevColorAnmPP15J3DTevKColorAnm=0x80083F08 -__ct__15J3DTevKColorAnmFv=0x80084234 -__ct__14J3DTevColorAnmFv=0x8008424C -removeTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey=0x80084264 -removeTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey=0x80084310 -entryMatColorAnimator__16J3DMaterialTableFP11J3DAnmColor=0x8008442C -entryTexMtxAnimator__16J3DMaterialTableFP19J3DAnmTextureSRTKey=0x800844E8 -entryTevRegAnimator__16J3DMaterialTableFP15J3DAnmTevRegKey=0x80084868 -__ct__22J3DMaterialFactory_v21FRC20J3DMaterialBlock_v21=0x80084A00 -countUniqueMaterials__22J3DMaterialFactory_v21Fv=0x80084BE0 -create__22J3DMaterialFactory_v21CFP11J3DMaterialiUl=0x80084C2C -newMatColor__22J3DMaterialFactory_v21CFii=0x80085464 -newColorChanNum__22J3DMaterialFactory_v21CFi=0x800854F4 -newColorChan__22J3DMaterialFactory_v21CFii=0x8008552C -newTexGenNum__22J3DMaterialFactory_v21CFi=0x800856C0 -newTexCoord__22J3DMaterialFactory_v21CFii=0x800856F8 -newTexMtx__22J3DMaterialFactory_v21CFii=0x8008577C -newCullMode__22J3DMaterialFactory_v21CFi=0x800858D4 -newTexNo__22J3DMaterialFactory_v21CFii=0x80085914 -newTevOrder__22J3DMaterialFactory_v21CFii=0x8008595C -newTevColor__22J3DMaterialFactory_v21CFii=0x800859D0 -newTevKColor__22J3DMaterialFactory_v21CFii=0x80085A68 -newTevStageNum__22J3DMaterialFactory_v21CFi=0x80085AF8 -newTevStage__22J3DMaterialFactory_v21CFii=0x80085B30 -newTevSwapModeTable__22J3DMaterialFactory_v21CFii=0x80085B90 -newFog__22J3DMaterialFactory_v21CFi=0x80085C2C -newAlphaComp__22J3DMaterialFactory_v21CFi=0x80085E78 -newBlend__22J3DMaterialFactory_v21CFi=0x80085EF8 -newZMode__22J3DMaterialFactory_v21CFi=0x80085F74 -newZCompLoc__22J3DMaterialFactory_v21CFi=0x80085FD4 -newDither__22J3DMaterialFactory_v21CFi=0x8008600C -newNBTScale__22J3DMaterialFactory_v21CFi=0x80086044 -JSUConvertOffsetToPtr<23J3DMaterialInitData_v21>__FPCvPCv=0x800860EC -resetMtxLoadCache__11J3DShapeMtxFv=0x80086104 -loadMtxIndx_PNGP__11J3DShapeMtxCFiUs=0x80086140 -loadMtxIndx_PCPU__11J3DShapeMtxCFiUs=0x80086184 -loadMtxIndx_NCPU__11J3DShapeMtxCFiUs=0x800861E4 -loadMtxIndx_PNCPU__11J3DShapeMtxCFiUs=0x80086230 -loadExecute__17J3DDifferedTexMtxFPA4_Cf=0x80086288 -loadMtxConcatView_PNGP__21J3DShapeMtxConcatViewCFiUs=0x80086810 -loadMtxConcatView_PCPU__21J3DShapeMtxConcatViewCFiUs=0x800868B8 -loadMtxConcatView_NCPU__21J3DShapeMtxConcatViewCFiUs=0x8008696C -loadMtxConcatView_PNCPU__21J3DShapeMtxConcatViewCFiUs=0x80086A14 -loadMtxConcatView_PNGP_LOD__21J3DShapeMtxConcatViewCFiUs=0x80086AC8 -load__11J3DShapeMtxCFv=0x80086B9C -calcNBTScale__11J3DShapeMtxFRC3VecPA3_A3_fPA3_A3_f=0x80086BF8 -load__21J3DShapeMtxConcatViewCFv=0x80086C5C -loadNrmMtx__21J3DShapeMtxConcatViewCFiUsPA4_f=0x80086D30 -load__16J3DShapeMtxMultiCFv=0x80086E54 -calcNBTScale__16J3DShapeMtxMultiFRC3VecPA3_A3_fPA3_A3_f=0x80086F00 -load__26J3DShapeMtxMultiConcatViewCFv=0x80086FB0 -loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUsPA4_f=0x8008719C -load__27J3DShapeMtxBBoardConcatViewCFv=0x800872D4 -load__28J3DShapeMtxYBBoardConcatViewCFv=0x80087408 -__dt__28J3DShapeMtxYBBoardConcatViewFv=0x80087544 -getType__28J3DShapeMtxYBBoardConcatViewCFv=0x800875B0 -loadNrmMtx__21J3DShapeMtxConcatViewCFiUs=0x800875BC -__dt__27J3DShapeMtxBBoardConcatViewFv=0x800875C0 -getType__27J3DShapeMtxBBoardConcatViewCFv=0x8008762C -__dt__26J3DShapeMtxMultiConcatViewFv=0x80087638 -getType__26J3DShapeMtxMultiConcatViewCFv=0x800876A4 -getUseMtxNum__26J3DShapeMtxMultiConcatViewCFv=0x800876B0 -getUseMtxIndex__26J3DShapeMtxMultiConcatViewCFUs=0x800876B8 -loadNrmMtx__26J3DShapeMtxMultiConcatViewCFiUs=0x800876C8 -__dt__16J3DShapeMtxMultiFv=0x800876CC -getType__16J3DShapeMtxMultiCFv=0x80087728 -getUseMtxNum__16J3DShapeMtxMultiCFv=0x80087734 -getUseMtxIndex__16J3DShapeMtxMultiCFUs=0x8008773C -getType__21J3DShapeMtxConcatViewCFv=0x8008774C -__sinit_J3DShapeMtx_cpp=0x80087758 -countMaterialNum__14J3DModelLoaderFPCv=0x80087900 -calcLoadSize__14J3DModelLoaderFPCvUl=0x80087940 -calcLoadMaterialTableSize__14J3DModelLoaderFPCv=0x80087AF0 -calcLoadBinaryDisplayListSize__14J3DModelLoaderFPCvUl=0x80087BBC -calcSizeInformation__14J3DModelLoaderFPC17J3DModelInfoBlockUl=0x80087DCC -calcSizeJoint__14J3DModelLoaderFPC13J3DJointBlock=0x80087E5C -calcSizeEnvelope__14J3DModelLoaderFPC16J3DEnvelopeBlock=0x80087E88 -calcSizeDraw__14J3DModelLoaderFPC12J3DDrawBlock=0x80087E98 -calcSizeMaterial__18J3DModelLoader_v26FPC16J3DMaterialBlockUl=0x80087EAC -calcSizeShape__14J3DModelLoaderFPC13J3DShapeBlockUl=0x80087F90 -calcSizeTexture__14J3DModelLoaderFPC15J3DTextureBlock=0x80088044 -calcSizeMaterialTable__18J3DModelLoader_v26FPC16J3DMaterialBlockUl=0x80088060 -calcSizeTextureTable__14J3DModelLoaderFPC15J3DTextureBlock=0x80088100 -calcSizePatchedMaterial__14J3DModelLoaderFPC16J3DMaterialBlockUl=0x8008811C -calcSizeMaterialDL__14J3DModelLoaderFPC18J3DMaterialDLBlockUl=0x800881BC -__ct__12J3DJointTreeFv=0x8008828C -makeHierarchy__12J3DJointTreeFP8J3DJointPPC17J3DModelHierarchyP16J3DMaterialTableP13J3DShapeTable=0x80088310 -findImportantMtxIndex__12J3DJointTreeFv=0x8008846C -calc__12J3DJointTreeFP12J3DMtxBufferRC3VecRA3_A4_Cf=0x800885E0 -setMtxBuffer__10J3DMtxCalcFP12J3DMtxBuffer=0x80088650 -deform__13J3DSkinDeformFP8J3DModel=0x80088658 -calc__15J3DVtxColorCalcFP8J3DModel=0x800886E0 -calc__15J3DVtxColorCalcFP15J3DVertexBuffer=0x80088710 -__dt__15J3DVtxColorCalcFv=0x80088804 -__ct__12J3DShapeDrawFPCUcUl=0x8008884C -draw__12J3DShapeDrawCFv=0x80088864 -__dt__12J3DShapeDrawFv=0x80088890 -initialize__12J3DMtxBufferFv=0x800888D8 -create__12J3DMtxBufferFP12J3DModelDataUl=0x80088918 -createAnmMtx__12J3DMtxBufferFP12J3DModelData=0x80088A34 -createWeightEnvelopeMtx__12J3DMtxBufferFP12J3DModelData=0x80088A90 -setNoUseDrawMtx__12J3DMtxBufferFv=0x80088AEC -createDoubleDrawMtx__12J3DMtxBufferFP12J3DModelDataUl=0x80088B18 -createBumpMtxArray__12J3DMtxBufferFP12J3DModelDataUl=0x80088BF8 -calcWeightEnvelopeMtx__12J3DMtxBufferFv=0x80088E0C -calcDrawMtx__12J3DMtxBufferFUlRC3VecRA3_A4_Cf=0x8008902C -calcNrmMtx__12J3DMtxBufferFv=0x80089330 -calcBBoardMtx__12J3DMtxBufferFv=0x800894EC -initShapeNodes__13J3DShapeTableFP14J3DDrawMtxDataP13J3DVertexData=0x80089664 -sortVcdVatCmd__13J3DShapeTableFv=0x800896C8 -init__9JFWSystemFv=0x8008975C -__dt__10JFWDisplayFv=0x80089AAC -createManager__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb=0x80089B28 -destroyManager__10JFWDisplayFv=0x80089C44 -beginRender__10JFWDisplayFv=0x80089C88 -endRender__10JFWDisplayFv=0x8008A100 -endFrame__10JFWDisplayFv=0x8008A440 -waitBlanking__10JFWDisplayFi=0x8008A5D8 -waitForTick__FUlUs=0x8008A628 -JFWThreadAlarmHandler__FP7OSAlarmP9OSContext=0x8008A748 -threadSleep__10JFWDisplayFx=0x8008A788 -clearEfb_init__10JFWDisplayFv=0x8008A844 -clearEfb__10JFWDisplayF8_GXColor=0x8008A8B8 -clearEfb__10JFWDisplayFiiii8_GXColor=0x8008A8FC -calcCombinationRatio__10JFWDisplayFv=0x8008AC6C -JFWDrawDoneAlarm__Fv=0x8008ACF8 -JFWGXAbortAlarmHandler__FP7OSAlarmP9OSContext=0x8008ADE8 -diagnoseGpHang__Fv=0x8008AE28 -setForOSResetSystem__10JFWDisplayFv=0x8008AFE4 -__sinit_JFWDisplay_cpp=0x8008B078 -__dt__18JSUList<8JFWAlarm>Fv=0x8008B0C0 -JPASetPointSize__FP18JPAEmitterWorkData=0x8008B114 -JPASetLineWidth__FP18JPAEmitterWorkData=0x8008B150 -JPASetPointSize__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B18C -JPASetLineWidth__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B1D0 -JPARegistPrm__FP18JPAEmitterWorkData=0x8008B214 -JPARegistEnv__FP18JPAEmitterWorkData=0x8008B2B0 -JPARegistPrmEnv__FP18JPAEmitterWorkData=0x8008B334 -JPARegistAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B44C -JPARegistPrmAlpha__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B4FC -JPARegistPrmAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B5AC -JPARegistAlphaEnv__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B6E0 -JPARegistEnv__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B804 -JPACalcClrIdxNormal__FP18JPAEmitterWorkData=0x8008B888 -JPACalcClrIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B8B4 -JPACalcClrIdxRepeat__FP18JPAEmitterWorkData=0x8008B8DC -JPACalcClrIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B90C -JPACalcClrIdxReverse__FP18JPAEmitterWorkData=0x8008B948 -JPACalcClrIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B988 -JPACalcClrIdxMerge__FP18JPAEmitterWorkData=0x8008B9D4 -JPACalcClrIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008B9E0 -JPACalcClrIdxRandom__FP18JPAEmitterWorkData=0x8008BA50 -JPACalcClrIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008BA5C -JPACalcPrm__FP18JPAEmitterWorkData=0x8008BA90 -JPACalcPrm__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008BAD0 -JPACalcEnv__FP18JPAEmitterWorkData=0x8008BB0C -JPACalcEnv__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008BB4C -JPACalcColorCopy__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008BB88 -JPAGenTexCrdMtxIdt__FP18JPAEmitterWorkData=0x8008BBD0 -JPAGenTexCrdMtxAnm__FP18JPAEmitterWorkData=0x8008BC08 -JPAGenTexCrdMtxPrj__FP18JPAEmitterWorkData=0x8008BC40 -JPAGenCalcTexCrdMtxAnm__FP18JPAEmitterWorkData=0x8008BC78 -JPALoadCalcTexCrdMtxAnm__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008BE10 -JPALoadTex__FP18JPAEmitterWorkData=0x8008BF80 -JPALoadTexAnm__FP18JPAEmitterWorkData=0x8008BFD4 -JPALoadTexAnm__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C024 -JPACalcTexIdxNormal__FP18JPAEmitterWorkData=0x8008C070 -JPACalcTexIdxNormal__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C0AC -JPACalcTexIdxRepeat__FP18JPAEmitterWorkData=0x8008C0E4 -JPACalcTexIdxRepeat__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C11C -JPACalcTexIdxReverse__FP18JPAEmitterWorkData=0x8008C160 -JPACalcTexIdxReverse__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C1B0 -JPACalcTexIdxMerge__FP18JPAEmitterWorkData=0x8008C20C -JPACalcTexIdxMerge__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C228 -JPACalcTexIdxRandom__FP18JPAEmitterWorkData=0x8008C2A0 -JPACalcTexIdxRandom__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C2BC -JPALoadPosMtxCam__FP18JPAEmitterWorkData=0x8008C2F8 -noLoadPrj__FPC18JPAEmitterWorkDataPA4_Cf=0x8008C320 -loadPrj__FPC18JPAEmitterWorkDataPA4_Cf=0x8008C324 -loadPrjAnm__FPC18JPAEmitterWorkDataPA4_Cf=0x8008C35C -JPADrawBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C508 -JPADrawRotBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C5F0 -JPADrawYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C708 -JPADrawRotYBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008C804 -dirTypeVel__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3=0x8008C934 -dirTypePos__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3=0x8008C950 -dirTypePosInv__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3=0x8008C96C -dirTypeEmtrDir__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3=0x8008C9AC -dirTypePrevPtcl__FPC18JPAEmitterWorkDataPC15JPABaseParticlePQ29JGeometry8TVec3=0x8008C9C8 -rotTypeY__FffRA3_A4_f=0x8008CA88 -rotTypeX__FffRA3_A4_f=0x8008CAC8 -rotTypeZ__FffRA3_A4_f=0x8008CB08 -rotTypeXYZ__FffRA3_A4_f=0x8008CB48 -basePlaneTypeXY__FPA4_fff=0x8008CBA4 -basePlaneTypeXZ__FPA4_fff=0x8008CBF0 -basePlaneTypeX__FPA4_fff=0x8008CC3C -JPADrawDirection__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008CCAC -JPADrawRotDirection__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008CFFC -JPADrawDBillboard__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008D3F8 -JPADrawRotation__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008D600 -JPADrawPoint__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008D750 -JPADrawLine__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008D7EC -getNext__FP26JPANode<15JPABaseParticle>=0x8008D9A4 -getPrev__FP26JPANode<15JPABaseParticle>=0x8008D9AC -JPADrawStripe__FP18JPAEmitterWorkData=0x8008D9B4 -JPADrawStripeX__FP18JPAEmitterWorkData=0x8008DF3C -JPADrawEmitterCallBackB__FP18JPAEmitterWorkData=0x8008E8E8 -JPADrawParticleCallBack__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008E924 -draw__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle=0x8008E968 -makeColorTable__FPP8_GXColorPC16JPAClrAnmKeyDataUcsP7JKRHeap=0x8008E96C -__ct__12JPABaseShapeFPCUcP7JKRHeap=0x8008EBF0 -setGX__12JPABaseShapeCFP18JPAEmitterWorkData=0x8008ED04 -JPARegistChildPrmEnv__FP18JPAEmitterWorkData=0x8008EE44 -JPACalcChildAlphaOut__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008EF6C -JPACalcChildScaleOut__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8008EF98 -__ct__13JPAChildShapeFPCUc=0x8008EFC8 -JPAVolumePoint__FP18JPAEmitterWorkData=0x8008EFD0 -JPAVolumeLine__FP18JPAEmitterWorkData=0x8008F0AC -JPAVolumeCircle__FP18JPAEmitterWorkData=0x8008F1C8 -JPAVolumeCube__FP18JPAEmitterWorkData=0x8008F37C -JPAVolumeSphere__FP18JPAEmitterWorkData=0x8008F494 -JPAVolumeCylinder__FP18JPAEmitterWorkData=0x8008F720 -JPAVolumeTorus__FP18JPAEmitterWorkData=0x8008F8A4 -__ct__16JPADynamicsBlockFPCUc=0x8008F9CC -init__16JPADynamicsBlockFv=0x8008FA00 -create__16JPADynamicsBlockFP18JPAEmitterWorkData=0x8008FA9C -__dt__18JPAEmitterCallBackFv=0x8008FC9C -init__14JPABaseEmitterFP17JPAEmitterManagerP11JPAResource=0x8008FCE4 -createParticle__14JPABaseEmitterFv=0x80090040 -createChild__14JPABaseEmitterFP15JPABaseParticle=0x8009015C -deleteAllParticle__14JPABaseEmitterFv=0x80090258 -processTillStartFrame__14JPABaseEmitterFv=0x800903CC -processTermination__14JPABaseEmitterFv=0x8009040C -calcEmitterGlobalPosition__14JPABaseEmitterCFPQ29JGeometry8TVec3=0x800904A8 -getCurrentCreateNumber__14JPABaseEmitterCFv=0x80090528 -__ct__17JPAEmitterManagerFUlUlP7JKRHeapUcUc=0x80090538 -__ct__25JSUList<14JPABaseEmitter>Fv=0x80090734 -__dt__26JPANode<15JPABaseParticle>Fv=0x80090764 -__ct__26JPANode<15JPABaseParticle>Fv=0x800907A0 -__dt__14JPABaseEmitterFv=0x800907B0 -__ct__14JPABaseEmitterFv=0x80090810 -__dt__25JSUList<14JPABaseEmitter>Fv=0x80090868 -createSimpleEmitterID__17JPAEmitterManagerFRCQ29JGeometry8TVec3UsUcUcP18JPAEmitterCallBackP19JPAParticleCallBack=0x800908BC -calc__17JPAEmitterManagerFv=0x80090998 -draw__17JPAEmitterManagerFPC11JPADrawInfoUc=0x80090A48 -forceDeleteAllEmitter__17JPAEmitterManagerFv=0x80090C48 -forceDeleteGroupEmitter__17JPAEmitterManagerFUc=0x80090CA0 -forceDeleteEmitter__17JPAEmitterManagerFP14JPABaseEmitter=0x80090D00 -entryResourceManager__17JPAEmitterManagerFP18JPAResourceManagerUc=0x80090D6C -clearResourceManager__17JPAEmitterManagerFUc=0x80090D7C -calcYBBCam__17JPAEmitterManagerFv=0x80090E44 -JPALoadExTex__FP18JPAEmitterWorkData=0x80090F2C -__ct__13JPAExTexShapeFPCUc=0x80091028 -JPACalcScaleX__FP18JPAEmitterWorkDataP15JPABaseParticle=0x80091030 -JPACalcScaleY__FP18JPAEmitterWorkDataP15JPABaseParticle=0x800910A0 -JPACalcScaleCopy__FP18JPAEmitterWorkDataP15JPABaseParticle=0x80091110 -JPACalcScaleAnmNormal__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8009111C -JPACalcScaleAnmRepeatX__FP18JPAEmitterWorkDataP15JPABaseParticle=0x80091128 -JPACalcScaleAnmRepeatY__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8009118C -JPACalcScaleAnmReverseX__FP18JPAEmitterWorkDataP15JPABaseParticle=0x800911F0 -JPACalcScaleAnmReverseY__FP18JPAEmitterWorkDataP15JPABaseParticle=0x8009127C -JPACalcAlphaAnm__FP18JPAEmitterWorkDataP15JPABaseParticle=0x80091308 -JPACalcAlphaFlickAnm__FP18JPAEmitterWorkDataP15JPABaseParticle=0x80091388 -__ct__13JPAExtraShapeFPCUc=0x8009146C -init__13JPAExtraShapeFv=0x800914A0 -prepare__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlock=0x800915A0 -calc__15JPAFieldGravityFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x80091648 -prepare__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlock=0x80091804 -calc__11JPAFieldAirFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x80091954 -prepare__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlock=0x80091BB0 -calc__14JPAFieldMagnetFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x80091C10 -prepare__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlock=0x80091E98 -calc__14JPAFieldNewtonFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x80091F1C -prepare__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlock=0x80092248 -calc__14JPAFieldVortexFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x8009233C -prepare__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlock=0x8009262C -calc__18JPAFieldConvectionFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x800928B8 -calc__14JPAFieldRandomFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x80092C54 -calc__12JPAFieldDragFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x80092F04 -prepare__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlock=0x80092FDC -calc__12JPAFieldSpinFP18JPAEmitterWorkDataP13JPAFieldBlockP15JPABaseParticle=0x8009310C -__ct__13JPAFieldBlockFPCUcP7JKRHeap=0x80093394 -init__13JPAFieldBlockFP7JKRHeap=0x800933CC -__dt__12JPAFieldBaseFv=0x800936B8 -prepare__12JPAFieldBaseFP18JPAEmitterWorkDataP13JPAFieldBlock=0x80093700 -__dt__12JPAFieldSpinFv=0x80093704 -__dt__12JPAFieldDragFv=0x80093760 -__dt__14JPAFieldRandomFv=0x800937BC -__dt__18JPAFieldConvectionFv=0x80093818 -__dt__14JPAFieldVortexFv=0x80093874 -__dt__14JPAFieldNewtonFv=0x800938D0 -__dt__14JPAFieldMagnetFv=0x8009392C -__dt__11JPAFieldAirFv=0x80093988 -__dt__15JPAFieldGravityFv=0x800939E4 -__ct__11JPAKeyBlockFPCUc=0x80093A40 -calc__11JPAKeyBlockFf=0x80093A50 -JPAGetDirMtx__FRCQ29JGeometry8TVec3PA4_f=0x80093AE4 -JPAGetYZRotateMtx__FssPA4_f=0x80093BE4 -JPAGetXYZRotateMtx__FsssPA4_f=0x80093C58 -JPASetRMtxfromMtx__FPA4_CfPA4_f=0x80093CF4 -JPASetRMtxTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3=0x80093D1C -JPASetRMtxSTVecfromMtx__FPA4_CfPA4_fPQ29JGeometry8TVec3PQ29JGeometry8TVec3=0x80093D44 -JPACalcKeyAnmValue__FfUsPCf=0x80093F60 -__dt__19JPAParticleCallBackFv=0x80094028 -init_p__15JPABaseParticleFP18JPAEmitterWorkData=0x80094070 -init_c__15JPABaseParticleFP18JPAEmitterWorkDataP15JPABaseParticle=0x80094934 -calc_p__15JPABaseParticleFP18JPAEmitterWorkData=0x80094FDC -execute__19JPAParticleCallBackFP14JPABaseEmitterP15JPABaseParticle=0x80095284 -calc_c__15JPABaseParticleFP18JPAEmitterWorkData=0x80095288 -canCreateChild__15JPABaseParticleFP18JPAEmitterWorkData=0x80095500 -getCalcCurrentPositionX__15JPABaseParticleCFPC14JPABaseEmitter=0x80095580 -getCalcCurrentPositionY__15JPABaseParticleCFPC14JPABaseEmitter=0x800955A4 -getCalcCurrentPositionZ__15JPABaseParticleCFPC14JPABaseEmitter=0x800955C8 -__ct__11JPAResourceFv=0x800955EC -init__11JPAResourceFP7JKRHeap=0x8009565C -calc__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter=0x80096B9C -draw__11JPAResourceFP18JPAEmitterWorkDataP14JPABaseEmitter=0x800970F8 -drawP__11JPAResourceFP18JPAEmitterWorkData=0x800971E8 -drawC__11JPAResourceFP18JPAEmitterWorkData=0x8009751C -setPTev__11JPAResourceFv=0x8009780C -setCTev__11JPAResourceFP18JPAEmitterWorkData=0x80097A84 -calc_p__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle=0x80097BE8 -calc_c__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle=0x80097C5C -calcField__11JPAResourceFP18JPAEmitterWorkDataP15JPABaseParticle=0x80097CD0 -calcKey__11JPAResourceFP18JPAEmitterWorkData=0x80097D44 -calcWorkData_c__11JPAResourceFP18JPAEmitterWorkData=0x80097E7C -calcWorkData_d__11JPAResourceFP18JPAEmitterWorkData=0x80098058 -__ct__17JPAResourceLoaderFPCUcP18JPAResourceManager=0x800980D8 -load_jpc__17JPAResourceLoaderFPCUcP18JPAResourceManager=0x80098118 -__ct__18JPAResourceManagerFPCvP7JKRHeap=0x800984D0 -getResource__18JPAResourceManagerCFUs=0x80098528 -swapTexture__18JPAResourceManagerFPC7ResTIMGPCc=0x80098568 -registRes__18JPAResourceManagerFP11JPAResource=0x80098604 -registTex__18JPAResourceManagerFP10JPATexture=0x80098624 -getResUserWork__18JPAResourceManagerCFUs=0x80098644 -__ct__10JPATextureFPCUc=0x800986A0 -__dt__10JPATextureFv=0x80098708 -__dt__Q26JStage7TSystemFv=0x8009876C -JSGFGetType__Q26JStage7TSystemCFv=0x800987CC -JSGFindObject__Q26JStage7TSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject=0x800987D4 -JSGCreateObject__Q26JStage7TSystemFPCcQ26JStage8TEObjectUl=0x800987DC -JSGDestroyObject__Q26JStage7TSystemFPQ26JStage7TObject=0x800987E4 -JSGGetSystemData__Q26JStage7TSystemFUl=0x800987E8 -JSGSetSystemData__Q26JStage7TSystemFUlUl=0x800987F0 -__dt__Q26JStage7TCameraFv=0x800987F4 -JSGFGetType__Q26JStage7TCameraCFv=0x80098854 -JSGGetProjectionType__Q26JStage7TCameraCFv=0x8009885C -JSGSetProjectionType__Q26JStage7TCameraFQ26JStage18TECameraProjection=0x80098864 -JSGGetProjectionNear__Q26JStage7TCameraCFv=0x80098868 -JSGSetProjectionNear__Q26JStage7TCameraFf=0x80098870 -JSGGetProjectionFar__Q26JStage7TCameraCFv=0x80098874 -JSGSetProjectionFar__Q26JStage7TCameraFf=0x80098880 -JSGGetProjectionFovy__Q26JStage7TCameraCFv=0x80098884 -JSGSetProjectionFovy__Q26JStage7TCameraFf=0x8009888C -JSGGetProjectionAspect__Q26JStage7TCameraCFv=0x80098890 -JSGSetProjectionAspect__Q26JStage7TCameraFf=0x80098898 -JSGGetProjectionField__Q26JStage7TCameraCFPf=0x8009889C -JSGSetProjectionField__Q26JStage7TCameraFPCf=0x800988A0 -JSGGetViewType__Q26JStage7TCameraCFv=0x800988A4 -JSGSetViewType__Q26JStage7TCameraFQ26JStage12TECameraView=0x800988AC -JSGGetViewPosition__Q26JStage7TCameraCFP3Vec=0x800988B0 -JSGSetViewPosition__Q26JStage7TCameraFRC3Vec=0x800988B4 -JSGGetViewUpVector__Q26JStage7TCameraCFP3Vec=0x800988B8 -JSGSetViewUpVector__Q26JStage7TCameraFRC3Vec=0x800988BC -JSGGetViewTargetPosition__Q26JStage7TCameraCFP3Vec=0x800988C0 -JSGSetViewTargetPosition__Q26JStage7TCameraFRC3Vec=0x800988C4 -JSGGetViewRoll__Q26JStage7TCameraCFv=0x800988C8 -JSGSetViewRoll__Q26JStage7TCameraFf=0x800988D0 -__dt__Q26JStage7TObjectFv=0x800988D4 -JSGGetName__Q26JStage7TObjectCFv=0x8009891C -JSGUpdate__Q26JStage7TObjectFv=0x80098924 -JSGGetFlag__Q26JStage7TObjectCFv=0x80098928 -JSGSetFlag__Q26JStage7TObjectFUl=0x80098930 -JSGGetData__Q26JStage7TObjectCFUlPvUl=0x80098934 -JSGSetData__Q26JStage7TObjectFUlPCvUl=0x8009893C -JSGGetParent__Q26JStage7TObjectCFPPQ26JStage7TObjectPUl=0x80098940 -JSGSetParent__Q26JStage7TObjectFPQ26JStage7TObjectUl=0x80098944 -JSGSetRelation__Q26JStage7TObjectFbPQ26JStage7TObjectUl=0x80098948 -JSGFindNodeID__Q26JStage7TObjectCFPCc=0x8009894C -JSGGetNodeTransformation__Q26JStage7TObjectCFUlPA4_f=0x80098954 -__dt__Q26JStage6TActorFv=0x80098990 -JSGFGetType__Q26JStage6TActorCFv=0x800989F0 -JSGGetTranslation__Q26JStage6TActorCFP3Vec=0x800989F8 -JSGSetTranslation__Q26JStage6TActorFRC3Vec=0x800989FC -JSGGetScaling__Q26JStage6TActorCFP3Vec=0x80098A00 -JSGSetScaling__Q26JStage6TActorFRC3Vec=0x80098A04 -JSGGetRotation__Q26JStage6TActorCFP3Vec=0x80098A08 -JSGSetRotation__Q26JStage6TActorFRC3Vec=0x80098A0C -JSGGetShape__Q26JStage6TActorCFv=0x80098A10 -JSGSetShape__Q26JStage6TActorFUl=0x80098A18 -JSGGetAnimation__Q26JStage6TActorCFv=0x80098A1C -JSGSetAnimation__Q26JStage6TActorFUl=0x80098A24 -JSGGetAnimationFrame__Q26JStage6TActorCFv=0x80098A28 -JSGSetAnimationFrame__Q26JStage6TActorFf=0x80098A30 -JSGGetAnimationFrameMax__Q26JStage6TActorCFv=0x80098A34 -JSGGetAnimationTransition__Q26JStage6TActorCFv=0x80098A3C -JSGSetAnimationTransition__Q26JStage6TActorFf=0x80098A44 -JSGGetTextureAnimation__Q26JStage6TActorCFv=0x80098A48 -JSGSetTextureAnimation__Q26JStage6TActorFUl=0x80098A50 -JSGGetTextureAnimationFrame__Q26JStage6TActorCFv=0x80098A54 -JSGSetTextureAnimationFrame__Q26JStage6TActorFf=0x80098A5C -JSGGetTextureAnimationFrameMax__Q26JStage6TActorCFv=0x80098A60 -getGroupCount__11JASWSParserFPv=0x80098A68 -createBasicWaveBank__11JASWSParserFPv=0x80098A90 -createSimpleWaveBank__11JASWSParserFPv=0x80098C94 -JSUConvertOffsetToPtr__FPCvUl=0x80098E8C -JSUConvertOffsetToPtr__FPCvUl=0x80098EA4 -JSUConvertOffsetToPtr__FPCvUl=0x80098EBC -JSUConvertOffsetToPtr__FPCvUl=0x80098ED4 -JSUConvertOffsetToPtr__FPCvUl=0x80098EEC -JSUConvertOffsetToPtr__FPCvUl=0x80098F04 -JSUConvertOffsetToPtr__FPCvUl=0x80098F1C -init__10JASBankMgrFi=0x80098F34 -registBankBNK__10JASBankMgrFiPv=0x8009906C -getPhysicalNumber__10JASBankMgrFUs=0x800990D4 -setVir2PhyTable__10JASBankMgrFUli=0x800990E4 -assignWaveBank__10JASBankMgrFii=0x800990FC -noteOn__10JASBankMgrFiiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv=0x80099180 -noteOnOsc__10JASBankMgrFiUcUcUsPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv=0x800994E0 -gateOn__10JASBankMgrFP10JASChannelUcUc=0x80099654 -__ct__12JASBasicBankFv=0x800996FC -__dt__7JASBankFv=0x80099728 -__dt__12JASBasicBankFv=0x80099770 -setInstCount__12JASBasicBankFUl=0x800997E4 -setInst__12JASBasicBankFiP7JASInst=0x80099848 -getInst__12JASBasicBankCFi=0x80099858 -getType__12JASBasicBankCFv=0x8009987C -__ct__12JASBasicInstFv=0x80099888 -__dt__7JASInstFv=0x800998CC -__dt__12JASBasicInstFv=0x80099914 -getParam__12JASBasicInstCFiiP12JASInstParam=0x800999A0 -getKeymapIndex__12JASBasicInstCFi=0x80099B88 -setKeyRegionCount__12JASBasicInstFUl=0x80099B90 -__ct__Q212JASBasicInst7TKeymapFv=0x80099C14 -setEffectCount__12JASBasicInstFUl=0x80099C2C -setEffect__12JASBasicInstFiP13JASInstEffect=0x80099CA4 -setOscCount__12JASBasicInstFUl=0x80099CB4 -setOsc__12JASBasicInstFiPQ213JASOscillator4Data=0x80099D2C -getKeyRegion__12JASBasicInstFi=0x80099D3C -__dt__Q212JASBasicInst7TKeymapFv=0x80099D60 -setVeloRegionCount__Q212JASBasicInst7TKeymapFUl=0x80099DB4 -getVeloRegion__Q212JASBasicInst7TKeymapFi=0x80099E0C -getVeloRegion__Q212JASBasicInst7TKeymapCFi=0x80099E30 -getType__12JASBasicInstCFv=0x80099E54 -__ct__16JASBasicWaveBankFv=0x80099E60 -__dt__11JASWaveBankFv=0x80099EC0 -__dt__16JASBasicWaveBankFv=0x80099F08 -getWaveGroup__16JASBasicWaveBankFi=0x80099FC4 -setGroupCount__16JASBasicWaveBankFUl=0x80099FE8 -setWaveTableSize__16JASBasicWaveBankFUl=0x8009A0D0 -getWaveHandle__16JASBasicWaveBankCFUl=0x8009A134 -__ct__Q216JASBasicWaveBank10TWaveGroupFP16JASBasicWaveBank=0x8009A164 -__dt__Q216JASBasicWaveBank10TWaveGroupFv=0x8009A1BC -__dt__Q216JASBasicWaveBank9TWaveInfoFv=0x8009A270 -setWaveCount__Q216JASBasicWaveBank10TWaveGroupFUl=0x8009A2D0 -__ct__Q216JASBasicWaveBank9TWaveInfoFv=0x8009A48C -__dt__Q216JASBasicWaveBank11TWaveHandleFv=0x8009A4BC -__dt__13JASWaveHandleFv=0x8009A518 -setWaveInfo__Q216JASBasicWaveBank10TWaveGroupFiUlRC11JASWaveInfo=0x8009A560 -onLoadDone__Q216JASBasicWaveBank10TWaveGroupFv=0x8009A5F0 -onEraseDone__Q216JASBasicWaveBank10TWaveGroupFv=0x8009A690 -getWaveID__Q216JASBasicWaveBank10TWaveGroupCFi=0x8009A778 -getWaveInfo__Q216JASBasicWaveBank11TWaveHandleCFv=0x8009A78C -getWavePtr__Q216JASBasicWaveBank11TWaveHandleCFv=0x8009A794 -getWaveArc__16JASBasicWaveBankFi=0x8009A7B8 -createBasicBank__12JASBNKParserFPv=0x8009A7DC -findOscPtr__12JASBNKParserFP12JASBasicBankPQ212JASBNKParser7THeaderPQ212JASBNKParser4TOsc=0x8009AEAC -getOscTableEndPtr__12JASBNKParserFPs=0x8009AFCC -JSUConvertOffsetToPtr__FPCvUl=0x8009AFE0 -JSUConvertOffsetToPtr__FPCvUl=0x8009AFF8 -JSUConvertOffsetToPtr__FPCvUl=0x8009B010 -JSUConvertOffsetToPtr__FPCvUl=0x8009B028 -JSUConvertOffsetToPtr__FPCvUl=0x8009B040 -JSUConvertOffsetToPtr__FPCvUl=0x8009B058 -JSUConvertOffsetToPtr__FPCvUl=0x8009B070 -JSUConvertOffsetToPtr__FPCvUl=0x8009B088 -JSUConvertOffsetToPtr__FPCvUl=0x8009B0A0 -getParam__10JASDrumSetCFiiP12JASInstParam=0x8009B0B8 -getPerc__10JASDrumSetFi=0x8009B2B4 -__ct__Q210JASDrumSet5TPercFv=0x8009B2C8 -__dt__Q210JASDrumSet5TPercFv=0x8009B2FC -setEffectCount__Q210JASDrumSet5TPercFUl=0x8009B358 -setVeloRegionCount__Q210JASDrumSet5TPercFUl=0x8009B3D0 -getVeloRegion__Q210JASDrumSet5TPercFi=0x8009B428 -setEffect__Q210JASDrumSet5TPercFiP13JASInstEffect=0x8009B438 -setRelease__Q210JASDrumSet5TPercFUl=0x8009B448 -__dt__10JASDrumSetFv=0x8009B450 -getType__10JASDrumSetCFv=0x8009B4D4 -setTarget__13JASInstEffectFi=0x8009B4E0 -getY__11JASInstRandCFii=0x8009B4E8 -getY__12JASInstSenseCFii=0x8009B58C -setParams__12JASInstSenseFiiff=0x8009B6B0 -__ct__17JASSimpleWaveBankFv=0x8009B6C4 -__dt__17JASSimpleWaveBankFv=0x8009B724 -__dt__Q217JASSimpleWaveBank11TWaveHandleFv=0x8009B7F8 -setWaveTableSize__17JASSimpleWaveBankFUl=0x8009B854 -__ct__Q217JASSimpleWaveBank11TWaveHandleFv=0x8009B8D8 -getWaveHandle__17JASSimpleWaveBankCFUl=0x8009B8FC -setWaveInfo__17JASSimpleWaveBankFUlRC11JASWaveInfo=0x8009B920 -getWaveArc__17JASSimpleWaveBankFi=0x8009B9B4 -getWaveInfo__Q217JASSimpleWaveBank11TWaveHandleCFv=0x8009B9D4 -getWavePtr__Q217JASSimpleWaveBank11TWaveHandleCFv=0x8009B9DC -onLoadDone__10JASWaveArcFv=0x8009BA00 -onEraseDone__10JASWaveArcFv=0x8009BA04 -init__16JASWaveArcLoaderFP7JASHeap=0x8009BA08 -setCurrentDir__16JASWaveArcLoaderFPCc=0x8009BA34 -__ct__10JASWaveArcFv=0x8009BA94 -__dt__7JASHeapFv=0x8009BB00 -loadToAramCallback__10JASWaveArcFPv=0x8009BB78 -load__10JASWaveArcFP7JASHeap=0x8009BC40 -loadTail__10JASWaveArcFP7JASHeap=0x8009BD68 -erase__10JASWaveArcFv=0x8009BE90 -onDispose__10JASWaveArcFv=0x8009BEB4 -setFileName__10JASWaveArcFPCc=0x8009BF48 -onDispose__11JASDisposerFv=0x8009C02C -getCurrentHeap__11JASWaveBankFv=0x8009C030 -init__14JASWaveBankMgrFi=0x8009C044 -getWaveBank__14JASWaveBankMgrFi=0x8009C098 -registWaveBankWS__14JASWaveBankMgrFiPv=0x8009C0CC -loadWave__14JASWaveBankMgrFiiP7JASHeap=0x8009C14C -loadWaveTail__14JASWaveBankMgrFiiP7JASHeap=0x8009C1DC -eraseWave__14JASWaveBankMgrFii=0x8009C26C -getCurrentHeap__7JASBankFv=0x8009C2FC -init__12JASTrackPortFv=0x8009C310 -readImport__12JASTrackPortFi=0x8009C398 -readExport__12JASTrackPortFi=0x8009C3B0 -writeImport__12JASTrackPortFiUs=0x8009C3CC -writeExport__12JASTrackPortFiUs=0x8009C3E4 -__ct__13JASOuterParamFv=0x8009C400 -initExtBuffer__13JASOuterParamFv=0x8009C44C -setOuterSwitch__13JASOuterParamFUs=0x8009C45C -checkOuterSwitch__13JASOuterParamFUs=0x8009C464 -setOuterUpdate__13JASOuterParamFUs=0x8009C480 -getOuterUpdate__13JASOuterParamFv=0x8009C488 -getIntFirFilter__13JASOuterParamFUc=0x8009C490 -setParam__13JASOuterParamFUcf=0x8009C4A0 -onSwitch__13JASOuterParamFUs=0x8009C53C -setFirFilter__13JASOuterParamFPs=0x8009C558 -extend8to16__9JASPlayerFUc=0x8009C5B4 -pitchToCent__9JASPlayerFff=0x8009C5D0 -getRandomS32__9JASPlayerFv=0x8009C6A4 -__ct__16JASRegisterParamFv=0x8009C714 -init__16JASRegisterParamFv=0x8009C764 -inherit__16JASRegisterParamFRC16JASRegisterParam=0x8009C7CC -getBankNumber__16JASRegisterParamCFv=0x8009C83C -getProgramNumber__16JASRegisterParamCFv=0x8009C84C -init__10JASSeqCtrlFv=0x8009C858 -start__10JASSeqCtrlFPvUl=0x8009C8B8 -loopEnd__10JASSeqCtrlFv=0x8009C8CC -waitCountDown__10JASSeqCtrlFv=0x8009C938 -callIntr__10JASSeqCtrlFPv=0x8009C968 -retIntr__10JASSeqCtrlFv=0x8009C9A0 -get16__10JASSeqCtrlCFUl=0x8009C9D4 -get24__10JASSeqCtrlCFUl=0x8009C9EC -get32__10JASSeqCtrlCFUl=0x8009CA14 -read16__10JASSeqCtrlFv=0x8009CA4C -read24__10JASSeqCtrlFv=0x8009CA74 -cmdOpenTrack__12JASSeqParserFP8JASTrackPUl=0x8009CAB8 -cmdOpenTrackBros__12JASSeqParserFP8JASTrackPUl=0x8009CB10 -cmdCall__12JASSeqParserFP8JASTrackPUl=0x8009CB78 -cmdRet__12JASSeqParserFP8JASTrackPUl=0x8009CC80 -cmdJmp__12JASSeqParserFP8JASTrackPUl=0x8009CD04 -cmdLoopS__12JASSeqParserFP8JASTrackPUl=0x8009CE48 -cmdLoopE__12JASSeqParserFP8JASTrackPUl=0x8009CE84 -cmdReadPort__12JASSeqParserFP8JASTrackPUl=0x8009CEAC -cmdWritePort__12JASSeqParserFP8JASTrackPUl=0x8009CF04 -cmdParentWritePort__12JASSeqParserFP8JASTrackPUl=0x8009CF38 -cmdChildWritePort__12JASSeqParserFP8JASTrackPUl=0x8009CF70 -cmdCheckPortImport__12JASSeqParserFP8JASTrackPUl=0x8009CFB4 -cmdCheckPortExport__12JASSeqParserFP8JASTrackPUl=0x8009CFCC -cmdWait__12JASSeqParserFP8JASTrackPUl=0x8009CFE4 -cmdSetLastNote__12JASSeqParserFP8JASTrackPUl=0x8009CFFC -cmdTimeRelate__12JASSeqParserFP8JASTrackPUl=0x8009D044 -cmdSimpleOsc__12JASSeqParserFP8JASTrackPUl=0x8009D060 -cmdSimpleEnv__12JASSeqParserFP8JASTrackPUl=0x8009D090 -cmdSimpleADSR__12JASSeqParserFP8JASTrackPUl=0x8009D0C4 -cmdTranspose__12JASSeqParserFP8JASTrackPUl=0x8009D134 -cmdCloseTrack__12JASSeqParserFP8JASTrackPUl=0x8009D144 -cmdOutSwitch__12JASSeqParserFP8JASTrackPUl=0x8009D198 -cmdUpdateSync__12JASSeqParserFP8JASTrackPUl=0x8009D1EC -cmdBusConnect__12JASSeqParserFP8JASTrackPUl=0x8009D218 -cmdPauseStatus__12JASSeqParserFP8JASTrackPUl=0x8009D248 -cmdVolumeMode__12JASSeqParserFP8JASTrackPUl=0x8009D258 -cmdSetInterrupt__12JASSeqParserFP8JASTrackPUl=0x8009D268 -cmdDisInterrupt__12JASSeqParserFP8JASTrackPUl=0x8009D2A0 -cmdClrI__12JASSeqParserFP8JASTrackPUl=0x8009D2CC -cmdSetI__12JASSeqParserFP8JASTrackPUl=0x8009D2E4 -cmdRetI__12JASSeqParserFP8JASTrackPUl=0x8009D2F4 -cmdIntTimer__12JASSeqParserFP8JASTrackPUl=0x8009D344 -cmdSyncCPU__12JASSeqParserFP8JASTrackPUl=0x8009D360 -cmdFlushAll__12JASSeqParserFP8JASTrackPUl=0x8009D3B8 -cmdFlushRelease__12JASSeqParserFP8JASTrackPUl=0x8009D3C0 -cmdTimeBase__12JASSeqParserFP8JASTrackPUl=0x8009D3C8 -cmdTempo__12JASSeqParserFP8JASTrackPUl=0x8009D3F8 -cmdFinish__12JASSeqParserFP8JASTrackPUl=0x8009D428 -cmdNop__12JASSeqParserFP8JASTrackPUl=0x8009D430 -cmdPanPowSet__12JASSeqParserFP8JASTrackPUl=0x8009D438 -cmdFIRSet__12JASSeqParserFP8JASTrackPUl=0x8009D4BC -cmdEXTSet__12JASSeqParserFP8JASTrackPUl=0x8009D4F0 -cmdPanSwSet__12JASSeqParserFP8JASTrackPUl=0x8009D544 -cmdOscRoute__12JASSeqParserFP8JASTrackPUl=0x8009D63C -cmdVibDepth__12JASSeqParserFP8JASTrackPUl=0x8009D658 -cmdVibDepthMidi__12JASSeqParserFP8JASTrackPUl=0x8009D6A0 -cmdVibPitch__12JASSeqParserFP8JASTrackPUl=0x8009D6D8 -cmdIIRSet__12JASSeqParserFP8JASTrackPUl=0x8009D720 -cmdIIRCutOff__12JASSeqParserFP8JASTrackPUl=0x8009D814 -cmdOscFull__12JASSeqParserFP8JASTrackPUl=0x8009D90C -cmdCheckWave__12JASSeqParserFP8JASTrackPUl=0x8009D948 -cmdPrintf__12JASSeqParserFP8JASTrackPUl=0x8009D958 -cmdSetParam__12JASSeqParserFP8JASTrackUc=0x8009DB6C -cmdNoteOn__12JASSeqParserFP8JASTrackUc=0x8009DCF8 -conditionCheck__12JASSeqParserFP8JASTrackUc=0x8009E0CC -parseSeq__12JASSeqParserFP8JASTrack=0x8009E180 -__sinit_JASSeqParser_cpp=0x8009E854 -__ct__8JASTrackFv=0x8009EF94 -__ct__Q28JASTrack11TimedParam_Fv=0x8009F0C0 -__ct__Q28JASTrack10MoveParam_Fv=0x8009F10C -__ct__Q28JASTrack12AInnerParam_Fv=0x8009F124 -init__8JASTrackFv=0x8009F254 -mainProc__8JASTrackFv=0x8009F43C -setInterrupt__8JASTrackFUs=0x8009F648 -tryInterrupt__8JASTrackFv=0x8009F670 -assignExtBuffer__8JASTrackFP13JASOuterParam=0x8009F6D0 -initTimed__8JASTrackFv=0x8009F6D8 -connectBus__8JASTrackFii=0x8009F7A4 -noteOn__8JASTrackFUclllUl=0x8009F7B4 -overwriteOsc__8JASTrackFP10JASChannel=0x8009F958 -noteOff__8JASTrackFUcUs=0x8009F9FC -gateOn__8JASTrackFUclll=0x8009FA64 -checkNoteStop__8JASTrackFl=0x8009FAC8 -oscSetupFull__8JASTrackFUcUlUl=0x8009FAF4 -oscSetupSimpleEnv__8JASTrackFUcUl=0x8009FBD4 -oscSetupSimple__8JASTrackFUc=0x8009FC44 -updateTimedParam__8JASTrackFv=0x8009FD20 -updateTrackAll__8JASTrackFv=0x8009FE08 -updateTrack__8JASTrackFUl=0x800A01F0 -updateTempo__8JASTrackFv=0x800A06D0 -getTempo__13JASOuterParamCFv=0x800A0A84 -updateSeq__8JASTrackFUlb=0x800A0A8C -seqTimeToDspTime__8JASTrackFlUc=0x800A0D20 -setParam__8JASTrackFifi=0x800A0DF8 -setSeqData__8JASTrackFPUcl=0x800A0E7C -startSeq__8JASTrackFv=0x800A0EE0 -stopSeq__8JASTrackFv=0x800A0F58 -stopSeqMain__8JASTrackFv=0x800A1054 -close__8JASTrackFv=0x800A1090 -setNoteMask__8JASTrackFUc=0x800A1264 -muteTrack__8JASTrackFb=0x800A12E4 -start__8JASTrackFPvUl=0x800A1518 -openChild__8JASTrackFUcUc=0x800A155C -exchangeRegisterValue__8JASTrackFUc=0x800A1738 -readReg32__8JASTrackFUc=0x800A1778 -readReg16__8JASTrackFUc=0x800A180C -writeRegDirect__8JASTrackFUcUs=0x800A1A24 -writeRegParam__8JASTrackFUc=0x800A1AF4 -readSelfPort__8JASTrackFi=0x800A20A4 -writeSelfPort__8JASTrackFiUs=0x800A20C8 -writePortAppDirect__8JASTrackFUlUs=0x800A20EC -readPortAppDirect__8JASTrackFUlPUs=0x800A2154 -writePortApp__8JASTrackFUlUs=0x800A218C -readPortApp__8JASTrackFUlPUs=0x800A2240 -pause__8JASTrackFbb=0x800A22C4 -getTranspose__8JASTrackCFv=0x800A242C -setTempo__8JASTrackFUs=0x800A259C -setTimebase__8JASTrackFUs=0x800A25D8 -panCalc__8JASTrackFfffUc=0x800A2608 -rootCallback__8JASTrackFPv=0x800A2658 -registerSeqCallback__8JASTrackFPFP8JASTrackUs_Us=0x800A274C -newMemPool__8JASTrackFi=0x800A2754 -__ct__10JASVibrateFv=0x800A2828 -init__10JASVibrateFv=0x800A2858 -incCounter__10JASVibrateFv=0x800A2870 -getValue__10JASVibrateCFv=0x800A28A4 -channelUpdateCallback__8JASTrackFUlP10JASChannelPQ26JASDsp8TChannelPv=0x800A2948 -init__10JASIntrMgrFv=0x800A29F8 -request__10JASIntrMgrFUl=0x800A2A3C -setIntr__10JASIntrMgrFUlPv=0x800A2A60 -resetInter__10JASIntrMgrFUl=0x800A2A84 -checkIntr__10JASIntrMgrFv=0x800A2A9C -timerProcess__10JASIntrMgrFv=0x800A2B08 -init__13JASOscillatorFv=0x800A2B78 -initStart__13JASOscillatorFPCQ213JASOscillator4Data=0x800A2BAC -incCounter__13JASOscillatorFv=0x800A2C34 -getValue__13JASOscillatorCFv=0x800A2CFC -release__13JASOscillatorFv=0x800A2D28 -calc__13JASOscillatorFPCs=0x800A2E90 -__ct__10JASChannelFPFUlP10JASChannelPQ26JASDsp8TChannelPv_vPv=0x800A3204 -__ct__13JASOscillatorFv=0x800A3364 -__dt__109JASPoolAllocObject<10JASChannel,Q217JASCreationPolicy15NewFromRootHeap,Q217JASThreadingModel14SingleThreaded>Fv=0x800A3394 -__dt__10JASChannelFv=0x800A3438 -setOscInit__10JASChannelFiPCQ213JASOscillator4Data=0x800A3544 -setMixConfig__10JASChannelFiUs=0x800A3578 -directReleaseOsc__10JASChannelFUs=0x800A3588 -copyOsc__10JASChannelFiPQ213JASOscillator4Data=0x800A3590 -overwriteOsc__10JASChannelFiPQ213JASOscillator4Data=0x800A35D8 -setKeySweepTarget__10JASChannelFUcUl=0x800A360C -setPauseFlag__10JASChannelFb=0x800A3694 -setPanPower__10JASChannelFfff=0x800A369C -play__10JASChannelFv=0x800A36C0 -playForce__10JASChannelFv=0x800A3744 -release__10JASChannelFUs=0x800A37C8 -updateEffectorParam__10JASChannelFPQ26JASDsp8TChannelPUsRCQ210JASChannel14EffectOscParam=0x800A3860 -dspUpdateCallback__10JASChannelFUlPQ26JASDsp8TChannelPv=0x800A3ABC -initialUpdateDSPChannel__10JASChannelFPQ26JASDsp8TChannel=0x800A3B5C -updateDSPChannel__10JASChannelFPQ26JASDsp8TChannel=0x800A3E00 -calcEffect__10JASChannelFPCQ210JASChannel9PanVectorPCQ210JASChannel9PanVectorUc=0x800A40BC -calcPan__10JASChannelFPCQ210JASChannel9PanVectorPCQ210JASChannel9PanVectorUc=0x800A417C -updateAutoMixer__10JASChannelFPQ26JASDsp8TChannelffff=0x800A4278 -updateMixer__10JASChannelFffffPUs=0x800A4398 -sweepProc__10JASChannelFv=0x800A476C -free__10JASChannelFv=0x800A47C0 -@16@__dt__10JASChannelFv=0x800A47D0 -key2pitch_c5__9JASDriverFi=0x800A47D8 -setLevel__9JASDriverFfff=0x800A4808 -setMixerLevel__9JASDriverFff=0x800A4858 -setAutoLevel__9JASDriverFf=0x800A4894 -setDSPLevel__9JASDriverFf=0x800A48B8 -getChannelLevel__9JASDriverFv=0x800A48D8 -getAutoLevel__9JASDriverFv=0x800A48E0 -getAutoLevel_f32__9JASDriverFv=0x800A48E8 -getDSPLevel_f32__9JASDriverFv=0x800A4918 -setOutputMode__9JASDriverFUl=0x800A4938 -getOutputMode__9JASDriverFv=0x800A4940 -rejectCallback__9JASDriverFPFPv_lPv=0x800A4948 -registerDspSyncCallback__9JASDriverFPFPv_lPv=0x800A49D8 -registerSubFrameCallback__9JASDriverFPFPv_lPv=0x800A4A0C -subframeCallback__9JASDriverFv=0x800A4A40 -DSPSyncCallback__9JASDriverFv=0x800A4A68 -updateDacCallback__9JASDriverFv=0x800A4A90 -__sinit_JASDriverIF_cpp=0x800A4AB8 -__ct__Q214JASCallbackMgr9TCallbackFv=0x800A4B38 -__ct__13JASDSPChannelFv=0x800A4B48 -free__13JASDSPChannelFv=0x800A4B74 -start__13JASDSPChannelFv=0x800A4B84 -drop__13JASDSPChannelFv=0x800A4B94 -initAll__13JASDSPChannelFv=0x800A4C1C -alloc__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv=0x800A4CA0 -allocForce__13JASDSPChannelFUcPFUlPQ26JASDsp8TChannelPv_lPv=0x800A4D7C -setPriority__13JASDSPChannelFUc=0x800A4E60 -getLowestChannel__13JASDSPChannelFi=0x800A4E6C -updateProc__13JASDSPChannelFv=0x800A4F48 -updateAll__13JASDSPChannelFv=0x800A512C -killActiveChannel__13JASDSPChannelFv=0x800A51A0 -getHandle__13JASDSPChannelFUl=0x800A5300 -boot__6JASDspFPFPv_v=0x800A5310 -releaseHalt__6JASDspFUl=0x800A535C -finishWork__6JASDspFUs=0x800A537C -syncFrame__6JASDspFUlUlUl=0x800A539C -setDSPMixerLevel__6JASDspFf=0x800A53BC -getDSPMixerLevel__6JASDspFv=0x800A53E0 -getDSPHandle__6JASDspFi=0x800A53E8 -invalChannelAll__6JASDspFv=0x800A53F8 -initBuffer__6JASDspFv=0x800A5420 -setFXLine__6JASDspFUcPsPQ26JASDsp13FxlineConfig_=0x800A54E4 -init__Q26JASDsp8TChannelFv=0x800A5638 -playStart__Q26JASDsp8TChannelFv=0x800A5674 -playStop__Q26JASDsp8TChannelFv=0x800A5714 -replyFinishRequest__Q26JASDsp8TChannelFv=0x800A5720 -forceStop__Q26JASDsp8TChannelFv=0x800A5730 -isFinish__Q26JASDsp8TChannelCFv=0x800A573C -setWaveInfo__Q26JASDsp8TChannelFRC11JASWaveInfoUlUl=0x800A5750 -setOscInfo__Q26JASDsp8TChannelFUl=0x800A58A0 -initAutoMixer__Q26JASDsp8TChannelFv=0x800A58B8 -setAutoMixer__Q26JASDsp8TChannelFUsUcUcUcUc=0x800A58E4 -setPitch__Q26JASDsp8TChannelFUs=0x800A5910 -setMixerInitDelayMax__Q26JASDsp8TChannelFUc=0x800A5928 -setMixerInitVolume__Q26JASDsp8TChannelFUcs=0x800A5934 -setMixerInitDelaySamples__Q26JASDsp8TChannelFUcUc=0x800A5954 -setMixerDelaySamples__Q26JASDsp8TChannelFUcUc=0x800A596C -setMixerVolume__Q26JASDsp8TChannelFUcs=0x800A598C -setPauseFlag__Q26JASDsp8TChannelFUc=0x800A59B8 -flush__Q26JASDsp8TChannelFv=0x800A59C4 -initFilter__Q26JASDsp8TChannelFv=0x800A59E8 -setFilterMode__Q26JASDsp8TChannelFUs=0x800A5A30 -setIIRFilterParam__Q26JASDsp8TChannelFPs=0x800A5A68 -setFIR8FilterParam__Q26JASDsp8TChannelFPs=0x800A5A8C -setDistFilter__Q26JASDsp8TChannelFs=0x800A5AD0 -setBusConnect__Q26JASDsp8TChannelFUcUc=0x800A5AD8 -DSP_CreateMap2__FUl=0x800A5AF8 -create__14JASAudioThreadFl=0x800A5B88 -stop__14JASAudioThreadFv=0x800A5BFC -run__14JASAudioThreadFv=0x800A5C34 -DMACallback__14JASAudioThreadFv=0x800A5DB0 -DSPCallback__14JASAudioThreadFPv=0x800A5DF8 -__dt__14JASAudioThreadFv=0x800A5E5C -imixcopy__7JASCalcFPCsPCsPsUl=0x800A5EBC -bcopy__7JASCalcFPCvPvUl=0x800A5F90 -bzero__7JASCalcFPvUl=0x800A6264 -clamp__7JASCalcFl=0x800A64D8 -regist__14JASCallbackMgrFPFPv_lPv=0x800A6500 -reject__14JASCallbackMgrFPFPv_lPv=0x800A659C -callback__14JASCallbackMgrFv=0x800A66AC -addPortCmdOnce__10JASPortCmdFv=0x800A6724 -setPortCmd__10JASPortCmdFPFP11JASPortArgs_vP11JASPortArgs=0x800A6780 -execAllCommand__10JASPortCmdFv=0x800A67A4 -execCommandOnce__Q210JASPortCmd9TPortHeadFv=0x800A67D8 -execCommandStay__Q210JASPortCmd9TPortHeadFv=0x800A6860 -__sinit_JASCmdStack_cpp=0x800A68C8 -__dt__Q210JASPortCmd9TPortHeadFv=0x800A6934 -getThreadPointer__6JASDvdFv=0x800A698C -createThread__6JASDvdFliUl=0x800A6994 -checkPassDvdT__6JASDvdFUlPUlPFUl_v=0x800A6A10 -dvdThreadCheckBack__6JASDvdFPv=0x800A6A54 -__ct__7JASHeapFP11JASDisposer=0x800A6A9C -alloc__7JASHeapFP7JASHeapUl=0x800A6B10 -allocTail__7JASHeapFP7JASHeapUl=0x800A6CE0 -free__7JASHeapFv=0x800A6DC8 -insertChild__7JASHeapFP7JASHeapP7JASHeapPvUlb=0x800A6EEC -getTailHeap__7JASHeapFv=0x800A6FCC -getTailOffset__7JASHeapFv=0x800A7058 -getCurOffset__7JASHeapFv=0x800A711C -__ct__17JASGenericMemPoolFv=0x800A7184 -newMemPool__17JASGenericMemPoolFUli=0x800A7198 -alloc__17JASGenericMemPoolFUl=0x800A722C -free__17JASGenericMemPoolFPvUl=0x800A7270 -setupRootHeap__9JASKernelFP12JKRSolidHeapUl=0x800A72A4 -getSystemHeap__9JASKernelFv=0x800A73BC -getCommandHeap__9JASKernelFv=0x800A73C4 -setupAramHeap__9JASKernelFUlUl=0x800A73CC -getAramHeap__9JASKernelFv=0x800A7448 -__sinit_JASHeapCtrl_cpp=0x800A7454 -probeStart__9JASKernelFlPc=0x800A74D4 -probeFinish__9JASKernelFl=0x800A7534 -getResSize__15JASResArcLoaderFP10JKRArchiveUs=0x800A7670 -loadResourceCallback__15JASResArcLoaderFPv=0x800A76A4 -loadResource__15JASResArcLoaderFP10JKRArchiveUsPUcUl=0x800A7740 -loadResourceAsync__15JASResArcLoaderFP10JKRArchiveUsPUcUlPFUlUl_vUl=0x800A7810 -JASReport__FPCce=0x800A786C -initAI__9JASDriverFPFv_v=0x800A7968 -startDMA__9JASDriverFv=0x800A7AA4 -stopDMA__9JASDriverFv=0x800A7AC4 -updateDac__9JASDriverFv=0x800A7AE4 -updateDSP__9JASDriverFv=0x800A7C40 -readDspBuffer__9JASDriverFPsUl=0x800A7D30 -finishDSPFrame__9JASDriverFv=0x800A8040 -registerMixCallback__9JASDriverFPFl_Ps10JASMixMode=0x800A81E4 -getDacRate__9JASDriverFv=0x800A81F0 -getSubFrames__9JASDriverFv=0x800A81F8 -getDacSize__9JASDriverFv=0x800A8200 -getFrameSamples__9JASDriverFv=0x800A820C -mixMonoTrack__9JASDriverFPsUlPFl_Ps=0x800A8218 -mixMonoTrackWide__9JASDriverFPsUlPFl_Ps=0x800A82D8 -mixExtraTrack__9JASDriverFPsUlPFl_Ps=0x800A8398 -mixInterleaveTrack__9JASDriverFPsUlPFl_Ps=0x800A8478 -__ct__17JASChannelUpdaterFv=0x800A8504 -init__17JASChannelUpdaterFv=0x800A8534 -initialUpdateChannel__17JASChannelUpdaterFP10JASChannelPQ26JASDsp8TChannel=0x800A85F4 -updateChannel__17JASChannelUpdaterFP10JASChannelPQ26JASDsp8TChannel=0x800A8758 -__ct__13JASTaskThreadFiiUl=0x800A8840 -__dt__13JASTaskThreadFv=0x800A88A0 -sendCmdMsg__13JASTaskThreadFPFPv_vPCvUl=0x800A89C8 -sendCmdMsg__13JASTaskThreadFPFPv_vPv=0x800A8C28 -run__13JASTaskThreadFv=0x800A8E5C -initSystem__13JASAramStreamFUlUl=0x800A8FA4 -__ct__13JASAramStreamFv=0x800A9034 -init__13JASAramStreamFUlUlPFUlP13JASAramStreamPv_vPv=0x800A918C -prepare__13JASAramStreamFli=0x800A9284 -start__13JASAramStreamFv=0x800A933C -stop__13JASAramStreamFUs=0x800A9370 -pause__13JASAramStreamFb=0x800A93A8 -cancel__13JASAramStreamFv=0x800A93F0 -headerLoadTask__13JASAramStreamFPv=0x800A9434 -firstLoadTask__13JASAramStreamFPv=0x800A9464 -loadToAramTask__13JASAramStreamFPv=0x800A9540 -finishTask__13JASAramStreamFPv=0x800A9560 -prepareFinishTask__13JASAramStreamFPv=0x800A95C0 -headerLoad__13JASAramStreamFUli=0x800A9618 -load__13JASAramStreamFv=0x800A97E4 -channelProcCallback__13JASAramStreamFPv=0x800A9A98 -dvdErrorCheck__13JASAramStreamFPv=0x800A9AB8 -channelCallback__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannelPv=0x800A9B14 -updateChannel__13JASAramStreamFUlP10JASChannelPQ26JASDsp8TChannel=0x800A9B50 -channelProc__13JASAramStreamFv=0x800AA2A8 -channelStart__13JASAramStreamFv=0x800AA48C -channelStop__13JASAramStreamFUs=0x800AA6CC -DSPReleaseHalt2__FUl=0x800AA760 -setup_callback__FUs=0x800AA7C0 -DsetupTable__FUlUlUlUlUl=0x800AA7E0 -DsetMixerLevel__Ff=0x800AA860 -DsyncFrame__FUlUlUl=0x800AA8A0 -DspHandShake__FPv=0x800AA900 -DspBoot__FPFPv_v=0x800AA940 -DSPSendCommands2__FPUlUlPFUs_v=0x800AAA00 -DspInitWork__Fv=0x800AAB00 -DspStartWork__FUlPFUs_v=0x800AAB40 -DspFinishWork__FUs=0x800AABA0 -DSPAddTask=0x800AAC20 -DSPAddPriorTask__FP15STRUCT_DSP_TASK=0x800AAC80 -__DSPHandler=0x800AAD00 -DsyncFrame2__FUlUlUl=0x800AB020 -Dsp_Update_Request__Fv=0x800AB080 -Dsp_Running_Check__Fv=0x800AB0C0 -Dsp_Running_Start__Fv=0x800AB0E0 -handleStop__13JAIAnimeSoundFUcUl=0x800AB0EC -__ct__13JAIAnimeSoundFP3VecP7JKRHeapUc=0x800AB128 -initActorAnimSound__13JAIAnimeSoundFP17JAIAnimeSoundDataUlff=0x800AB2B0 -checkLoopStartCount__13JAIAnimeSoundFf=0x800AB444 -checkLoopEndCount__13JAIAnimeSoundFf=0x800AB484 -setAnimSoundActor__13JAIAnimeSoundFPQ27JAInter5ActorffUc=0x800AB4CC -playActorAnimSound__13JAIAnimeSoundFPQ27JAInter5ActorfUc=0x800AB9D0 -startAnimSound__13JAIAnimeSoundFUlPP8JAISoundPQ27JAInter5ActorUc=0x800ABC50 -setSpeedModifySound__13JAIAnimeSoundFP8JAISoundP22JAIAnimeFrameSoundDataf=0x800ABC9C -__dt__13JAIAnimeSoundFv=0x800ABDD8 -enable__Q27JAInter10ObjectBaseFv=0x800ABE38 -setInitCallback__Q27JAInter8BankWaveFPFv_v=0x800ABE44 -setFirstLoadCallback__Q27JAInter8BankWaveFPFv_v=0x800ABE4C -setSecondLoadCallback__Q27JAInter8BankWaveFPFv_v=0x800ABE54 -init__Q27JAInter8BankWaveFv=0x800ABE5C -loadFirstStayWave__Q27JAInter8BankWaveFv=0x800ABFA4 -loadSecondStayWave__Q27JAInter8BankWaveFv=0x800AC038 -finishSceneSet__Q27JAInter8BankWaveFUl=0x800AC0CC -loadGroupWave__Q27JAInter8BankWaveFll=0x800AC0E4 -__ct__8JAIBasicFv=0x800AC158 -initDriver__8JAIBasicFP12JKRSolidHeapUlUc=0x800AC1D4 -initInterface__8JAIBasicFUc=0x800AC1F4 -initInterfaceMain__8JAIBasicFv=0x800AC214 -initHeap__8JAIBasicFv=0x800AC2D4 -initArchive__8JAIBasicFv=0x800AC330 -initResourcePath__8JAIBasicFv=0x800AC37C -setCameraInfo__8JAIBasicFP3VecP3VecPA4_fUl=0x800AC444 -setRegisterTrackCallback__8JAIBasicFv=0x800AC478 -initAudioThread__8JAIBasicFP12JKRSolidHeapUlUc=0x800AC4A0 -initCamera__8JAIBasicFv=0x800AC538 -__defctor__Q27JAInter6CameraFv=0x800AC690 -setInitFileLoadSwitch__8JAIBasicFUc=0x800AC6A4 -initReadFile__8JAIBasicFv=0x800AC6AC -processFrameWork__8JAIBasicFv=0x800AC718 -startSoundBasic__8JAIBasicFUlPP8JAISoundPQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo=0x800AC77C -startSoundBasic__8JAIBasicFUlPP11JAISequencePQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo=0x800AC7E0 -startSoundBasic__8JAIBasicFUlPP5JAISePQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo=0x800AC864 -startSoundBasic__8JAIBasicFUlPP9JAIStreamPQ27JAInter5ActorUlUcPQ27JAInter9SoundInfo=0x800AC8C8 -stopSoundHandle__8JAIBasicFP8JAISoundUl=0x800AC920 -stopAllSe__8JAIBasicFUc=0x800AC9A8 -stop__9JAIStreamFUl=0x800ACA54 -stop__11JAISequenceFUl=0x800ACA74 -getMapInfoFxline__8JAIBasicFUl=0x800ACA94 -getMapInfoGround__8JAIBasicFUl=0x800ACAA4 -getMapInfoFxParameter__8JAIBasicFUl=0x800ACAB4 -getSoundOffsetNumberFromID__8JAIBasicFUl=0x800ACACC -setParameterSeqSync__8JAIBasicFP8JASTrackUs=0x800ACB1C -setSeExtParameter__8JAIBasicFP8JAISound=0x800ACCF8 -makeSequence__8JAIBasicFv=0x800ACDFC -makeSe__8JAIBasicFv=0x800ACE6C -makeStream__8JAIBasicFv=0x800ACEDC -stopAudio__8JAIBasicFUlb=0x800ACF4C -checkAudioStopStatus__8JAIBasicFv=0x800AD028 -stopCallBack__8JAIBasicFPv=0x800AD05C -transInitDataFile__7JAInterFPUcUl=0x800AD1C4 -loadTmpDVDFile__7JAInterFPcPPUc=0x800AD2B8 -deleteTmpDVDFile__7JAInterFPPUc=0x800AD39C -routeToTrack__7JAInterFUl=0x800AD3CC -__sinit_JAIConst_cpp=0x800AD40C -init__Q27JAInter14DummyObjectMgrFv=0x800AD490 -getPointer__Q27JAInter14DummyObjectMgrFUl=0x800AD56C -check__Q27JAInter14DummyObjectMgrFv=0x800AD5D4 -init__Q27JAInter2FxFv=0x800AD6CC -setSceneMax__Q27JAInter2FxFUc=0x800AD82C -setBufferMax__Q27JAInter2FxFUlUlUlUl=0x800AD834 -setTablePointer__Q27JAInter2FxFPPv=0x800AD858 -setBufferPointer__Q27JAInter2FxFUcPs=0x800AD860 -setScenePointer__Q27JAInter2FxFUcPv=0x800AD870 -getSceneMax__Q27JAInter2FxFv=0x800AD880 -getBufferSizeMax__Q27JAInter2FxFUc=0x800AD888 -getBufferPointer__Q27JAInter2FxFUc=0x800AD898 -getFxconfigTable__Q27JAInter2FxFv=0x800AD8A8 -clearAllBuffer__Q27JAInter2FxFv=0x800AD8B0 -setParamInitDataPointer__18JAIGlobalParameterFPv=0x800AD950 -setParamSoundSceneMax__18JAIGlobalParameterFUl=0x800AD964 -setParamSeTrackMax__18JAIGlobalParameterFUl=0x800AD96C -setParamSeqPlayTrackMax__18JAIGlobalParameterFUl=0x800AD974 -setParamSeqControlBufferMax__18JAIGlobalParameterFUl=0x800AD984 -setParamAutoHeapMax__18JAIGlobalParameterFUl=0x800AD98C -setParamStayHeapMax__18JAIGlobalParameterFUl=0x800AD994 -setParamDistanceMax__18JAIGlobalParameterFf=0x800AD99C -setParamMaxVolumeDistance__18JAIGlobalParameterFf=0x800AD9A4 -setParamMinDistanceVolume__18JAIGlobalParameterFf=0x800AD9AC -setParamStreamInsideBufferCut__18JAIGlobalParameterFb=0x800AD9B4 -setParamAutoHeapRoomSize__18JAIGlobalParameterFUl=0x800AD9C8 -setParamStayHeapSize__18JAIGlobalParameterFUl=0x800AD9D0 -setParamInitDataFileName__18JAIGlobalParameterFPc=0x800AD9D8 -setParamSequenceArchivesFileName__18JAIGlobalParameterFPc=0x800AD9E0 -setParamDistanceParameterMoveTime__18JAIGlobalParameterFUc=0x800AD9E8 -setParamAudioCameraMax__18JAIGlobalParameterFUl=0x800AD9F0 -setParamSystemTrackMax__18JAIGlobalParameterFl=0x800AD9F8 -setParamSystemRootTrackMax__18JAIGlobalParameterFl=0x800ADA00 -setParamSoundOutputMode__18JAIGlobalParameterFUl=0x800ADA08 -getParamSeCategoryMax__18JAIGlobalParameterFv=0x800ADA70 -getParamSoundSceneMax__18JAIGlobalParameterFv=0x800ADA94 -getParamSeRegistMax__18JAIGlobalParameterFv=0x800ADA9C -getParamSeTrackMax__18JAIGlobalParameterFv=0x800ADAA4 -getParamSeqTrackMax__18JAIGlobalParameterFv=0x800ADAAC -getParamSeqControlBufferMax__18JAIGlobalParameterFv=0x800ADAB4 -getParamAutoHeapMax__18JAIGlobalParameterFv=0x800ADABC -getParamStayHeapMax__18JAIGlobalParameterFv=0x800ADAC4 -getParamSeqPlayTrackMax__18JAIGlobalParameterFv=0x800ADACC -getParamDistanceMax__18JAIGlobalParameterFv=0x800ADAD4 -getParamMaxVolumeDistance__18JAIGlobalParameterFv=0x800ADADC -getParamMinDistanceVolume__18JAIGlobalParameterFv=0x800ADAE4 -getParamStreamDecodedBufferBlocks__18JAIGlobalParameterFv=0x800ADAEC -getParamAutoHeapRoomSize__18JAIGlobalParameterFv=0x800ADB0C -getParamStayHeapSize__18JAIGlobalParameterFv=0x800ADB14 -getParamSeDolbyCenterValue__18JAIGlobalParameterFv=0x800ADB1C -getParamInitDataFileName__18JAIGlobalParameterFv=0x800ADB24 -getParamWavePath__18JAIGlobalParameterFv=0x800ADB2C -getParamSequenceArchivesPath__18JAIGlobalParameterFv=0x800ADB34 -getParamStreamPath__18JAIGlobalParameterFv=0x800ADB3C -getParamAudioResPath__18JAIGlobalParameterFv=0x800ADB44 -getParamSequenceArchivesFileName__18JAIGlobalParameterFv=0x800ADB4C -getParamDopplarMoveTime__18JAIGlobalParameterFv=0x800ADB54 -getParamDistanceParameterMoveTime__18JAIGlobalParameterFv=0x800ADB5C -getParamDummyObjectLifeTime__18JAIGlobalParameterFv=0x800ADB64 -getParamDummyObjectMax__18JAIGlobalParameterFv=0x800ADB6C -getParamSeqMuteVolumeSePlay__18JAIGlobalParameterFv=0x800ADB74 -getParamSeqMuteMoveSpeedSePlay__18JAIGlobalParameterFv=0x800ADB7C -getParamAudioCameraMax__18JAIGlobalParameterFv=0x800ADB84 -getParamSeqParameterLines__18JAIGlobalParameterFv=0x800ADB8C -getParamStreamParameterLines__18JAIGlobalParameterFv=0x800ADB94 -getParamSeDistanceWaitMax__18JAIGlobalParameterFv=0x800ADB9C -setWsInitCallback__Q27JAInter8InitDataFPFPUl_v=0x800ADBA4 -setBnkInitCallback__Q27JAInter8InitDataFPFPUl_v=0x800ADBAC -checkInitDataFile__Q27JAInter8InitDataFv=0x800ADBB4 -checkInitDataOnMemory__Q27JAInter8InitDataFv=0x800ADC98 -initBnkList__Q27JAInter8InitDataFPUl=0x800ADEFC -initWsList__Q27JAInter8InitDataFPUl=0x800ADFC8 -init__Q27JAInter5SeMgrFv=0x800AE0A0 -__ct__Q27JAInter11SeParameterFv=0x800AE444 -__ct__Q27JAInter19MoveParaSetInitZeroFv=0x800AE534 -__ct__Q27JAInter19MoveParaSetInitHalfFv=0x800AE54C -__defctor__Q27JAInter11MoveParaSetFv=0x800AE564 -startSeSequence__Q27JAInter5SeMgrFv=0x800AE57C -processGFrameSe__Q27JAInter5SeMgrFv=0x800AE5CC -checkNextFrameSe__Q27JAInter5SeMgrFv=0x800AE600 -checkPlayingSe__Q27JAInter5SeMgrFv=0x800AEDE4 -setVolume__5JAISeFfUlUc=0x800AF26C -setSeqMuteFromSeStart__Q27JAInter5SeMgrFP8JAISound=0x800AF29C -setVolume__11JAISequenceFfUlUc=0x800AF38C -checkSeMovePara__Q27JAInter5SeMgrFv=0x800AF3B8 -sendSeAllParameter__Q27JAInter5SeMgrFP5JAISe=0x800AF48C -checkPlayingSeUpdateMultiplication__Q27JAInter5SeMgrFP5JAISePQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetfUcPf=0x800AF5F4 -checkPlayingSeUpdateAddition__Q27JAInter5SeMgrFP5JAISePQ27JAInter13SeqUpdateDataPfPQ27JAInter11MoveParaSetUcPff=0x800AF700 -changeIDToCategory__Q27JAInter5SeMgrFUl=0x800AF84C -releaseSeRegist__Q27JAInter5SeMgrFP5JAISe=0x800AF854 -storeSeBuffer__Q27JAInter5SeMgrFPP5JAISePQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo=0x800AFA24 -stop__5JAISeFUl=0x800B0110 -releaseSeBuffer__Q27JAInter5SeMgrFP5JAISeUl=0x800B0130 -setSeSequenceStartCallback__Q27JAInter5SeMgrFPFv_v=0x800B0338 -init__Q27JAInter7HeapMgrFUcUlUcUl=0x800B0340 -getAutoHeapPointer__Q27JAInter7HeapMgrFv=0x800B0594 -checkOnMemory__Q27JAInter7HeapMgrFUlPUc=0x800B059C -releaseAutoHeapPointer__Q27JAInter7HeapMgrFUc=0x800B069C -checkUsefulAutoHeapPosition__Q27JAInter7HeapMgrFv=0x800B06C0 -getFreeAutoHeapPointer__Q27JAInter7HeapMgrFUcUl=0x800B07A8 -checkUsefulStayHeapPosition__Q27JAInter7HeapMgrFv=0x800B07F0 -getFreeStayHeapPointer__Q27JAInter7HeapMgrFUlUl=0x800B07FC -setAutoHeapLoadedFlag__Q27JAInter7HeapMgrFUcUc=0x800B0904 -setStayHeapLoadedFlag__Q27JAInter7HeapMgrFUcUc=0x800B0918 -__ct__Q27JAInter9HeapBlockFv=0x800B092C -init__Q27JAInter11SequenceMgrFv=0x800B0944 -__ct__Q27JAInter7MuteBitFv=0x800B0DCC -__ct__Q27JAInter13SeqUpdateDataFv=0x800B0DEC -__dt__Q27JAInter15PlayerParameterFv=0x800B0F18 -__ct__Q27JAInter15PlayerParameterFv=0x800B0F80 -__dt__10JASPortCmdFv=0x800B0FD0 -getArchiveName__Q27JAInter11SequenceMgrFPc=0x800B1028 -setArchivePointer__Q27JAInter11SequenceMgrFP10JKRArchive=0x800B1094 -getArchivePointer__Q27JAInter11SequenceMgrFv=0x800B109C -setCustomHeapCallback__Q27JAInter11SequenceMgrFPFUlUsP11JAISequence_Q37JAInter11SequenceMgr14CustomHeapInfo=0x800B10A4 -processGFrameSequence__Q27JAInter11SequenceMgrFv=0x800B10AC -checkEntriedSeq__Q27JAInter11SequenceMgrFv=0x800B10E4 -checkFadeoutSeq__Q27JAInter11SequenceMgrFv=0x800B1514 -getVolume__11JAISequenceFUc=0x800B15CC -checkStoppedSeq__Q27JAInter11SequenceMgrFv=0x800B15EC -checkPlayingSeq__Q27JAInter11SequenceMgrFv=0x800B1690 -checkStartedSeq__Q27JAInter11SequenceMgrFv=0x800B177C -checkReadSeq__Q27JAInter11SequenceMgrFv=0x800B181C -checkSeqWave__Q27JAInter11SequenceMgrFv=0x800B1A40 -checkPlayingSeqTrack__Q27JAInter11SequenceMgrFUl=0x800B1B18 -setPitch__11JAISequenceFfUlUc=0x800B2B90 -setPan__11JAISequenceFfUlUc=0x800B2BBC -stopSeq__Q27JAInter11SequenceMgrFP11JAISequence=0x800B2BE8 -checkDvdLoadArc__Q27JAInter11SequenceMgrFUlUl=0x800B2D18 -checkCustomDvdLoadArc__Q27JAInter11SequenceMgrFUlUl=0x800B2DFC -storeSeqBuffer__Q27JAInter11SequenceMgrFPP11JAISequencePQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo=0x800B2E98 -init__Q27JAInter12SeqParameterFv=0x800B32C8 -releaseSeqBuffer__Q27JAInter11SequenceMgrFP11JAISequenceUl=0x800B3650 -getPlayTrackInfo__Q27JAInter11SequenceMgrFUl=0x800B3828 -__ct__11JAISequenceFv=0x800B3838 -__ct__5JAISeFv=0x800B3924 -__ct__9JAIStreamFv=0x800B3A78 -getSeCategoryNumber__5JAISeFv=0x800B3B24 -getSwBit__8JAISoundFv=0x800B3B48 -checkSwBit__8JAISoundFUl=0x800B3B54 -getInfoPriority__8JAISoundFv=0x800B3B64 -clearMainSoundPPointer__8JAISoundFv=0x800B3B70 -release__8JAISoundFv=0x800B3B88 -start__8JAISoundFUl=0x800B3B9C -stop__8JAISoundFUl=0x800B3BE8 -setPrepareFlag__8JAISoundFUc=0x800B3C18 -setPrepareFlag__9JAIStreamFUc=0x800B3C90 -setPrepareFlag__11JAISequenceFUc=0x800B3CB0 -checkReady__8JAISoundFv=0x800B3CD0 -checkReady__9JAIStreamFv=0x800B3D48 -checkReady__11JAISequenceFv=0x800B3D68 -setDistanceVolumeCommon__8JAISoundFfUc=0x800B3D88 -setDistancePanCommon__8JAISoundFv=0x800B3EDC -setPositionDopplarCommon__8JAISoundFUl=0x800B4038 -setDistanceDolbyCommon__8JAISoundFv=0x800B42A8 -setSeqInterVolume__11JAISequenceFUcfUl=0x800B431C -setSeqInterPan__11JAISequenceFUcfUl=0x800B43A4 -setSeqInterPitch__11JAISequenceFUcfUl=0x800B442C -setTrackInterruptSwitch__11JAISequenceFUcUc=0x800B44B4 -setTrackFxmix__11JAISequenceFUcfUl=0x800B44DC -setTrackPortData__11JAISequenceFUcUcUs=0x800B458C -setSeInterVolume__5JAISeFUcfUlUc=0x800B465C -setSeInterPan__5JAISeFUcfUlUc=0x800B47B4 -setSeInterDolby__5JAISeFUcfUlUc=0x800B490C -setSeDistanceParameters__5JAISeFv=0x800B4A64 -setFxmix__5JAISeFfUlUc=0x800B4B90 -setSeDistanceVolume__5JAISeFUc=0x800B4BC0 -setSeDistancePan__5JAISeFUc=0x800B4C30 -setSeDistancePitch__5JAISeFUc=0x800B4CA4 -setSePositionDopplar__5JAISeFv=0x800B4DDC -setSeDistanceFxmix__5JAISeFUc=0x800B4E5C -setSeDistanceFir__5JAISeFUc=0x800B4F24 -setSeDistanceDolby__5JAISeFUc=0x800B4F28 -setStreamPrepareFlag__9JAIStreamFUc=0x800B4FCC -checkStreamReady__9JAIStreamFv=0x800B4FD8 -setChannelVolume__9JAIStreamFUcfUl=0x800B5018 -setChannelPan__9JAIStreamFUcfUl=0x800B50B8 -setPauseMode__8JAISoundFUcUc=0x800B5158 -setVolume__9JAIStreamFfUlUc=0x800B5340 -setVolumeU7__11JAISequenceFUcUlUc=0x800B53C4 -setSeqPrepareFlag__11JAISequenceFUc=0x800B5470 -checkSeqReady__11JAISequenceFv=0x800B547C -getSeqInterVolume__11JAISequenceFUc=0x800B54A8 -getTrackPortRoute__8JAISoundFUcUc=0x800B54D4 -checkSoundHandle__8JAISoundFUlPv=0x800B5510 -getFadeCounter__11JAISequenceFv=0x800B5598 -getFadeCounter__5JAISeFv=0x800B55E4 -getFadeCounter__9JAIStreamFv=0x800B55F0 -initParameter__8JAISoundFPvPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo=0x800B5614 -init__Q27JAInter9LinkSoundFv=0x800B56FC -getSound__Q27JAInter9LinkSoundFv=0x800B576C -onGet__8JAISoundFv=0x800B57E8 -releaseSound__Q27JAInter9LinkSoundFP8JAISound=0x800B57EC -onRelease__8JAISoundFv=0x800B5854 -set__Q27JAInter11MoveParaSetFfUl=0x800B5858 -move__Q27JAInter11MoveParaSetFv=0x800B58F0 -getVolume__9JAIStreamFUc=0x800B593C -setPan__9JAIStreamFfUlUc=0x800B5968 -getPan__9JAIStreamFUc=0x800B5A4C -setPitch__9JAIStreamFfUlUc=0x800B5A7C -getPitch__9JAIStreamFUc=0x800B5B60 -setFxmix__9JAIStreamFfUlUc=0x800B5B90 -getFxmix__9JAIStreamFUc=0x800B5C74 -setDolby__9JAIStreamFfUlUc=0x800B5CA4 -getDolby__9JAIStreamFUc=0x800B5D88 -setVolumeU7__9JAIStreamFUcUlUc=0x800B5DB8 -getVolumeU7__9JAIStreamFUc=0x800B5E10 -setPanU7__9JAIStreamFUcUlUc=0x800B5E50 -getPanU7__9JAIStreamFUc=0x800B5EA8 -setFxmixU7__9JAIStreamFUcUlUc=0x800B5EE8 -getFxmixU7__9JAIStreamFUc=0x800B5F40 -setDolbyU7__9JAIStreamFUcUlUc=0x800B5F80 -getDolbyU7__9JAIStreamFUc=0x800B5FD8 -setPortData__9JAIStreamFUcUs=0x800B6018 -getPortData__9JAIStreamFUc=0x800B601C -setTempoProportion__8JAISoundFfUl=0x800B6028 -getTempoProportion__8JAISoundFv=0x800B602C -setDirectVolume__8JAISoundFfUl=0x800B6034 -setDirectPan__8JAISoundFfUl=0x800B6064 -setDirectPitch__8JAISoundFfUl=0x800B6094 -setDirectFxmix__8JAISoundFfUl=0x800B60C4 -setDirectDolby__8JAISoundFfUl=0x800B60F4 -setDemoVolume__8JAISoundFfUl=0x800B6124 -setDemoPan__8JAISoundFfUl=0x800B6154 -setDemoPitch__8JAISoundFfUl=0x800B6184 -setDemoFxmix__8JAISoundFfUl=0x800B61B4 -setDemoDolby__8JAISoundFfUl=0x800B61E4 -setDemoVolumeU7__8JAISoundFUcUl=0x800B6214 -setDemoPanU7__8JAISoundFUcUl=0x800B6244 -setDemoFxmixU7__8JAISoundFUcUl=0x800B6274 -setDemoDolbyU7__8JAISoundFUcUl=0x800B62A4 -setDistanceParameterMoveTime__8JAISoundFUc=0x800B62D4 -setAdjustPriority__8JAISoundFs=0x800B62DC -getVolume__5JAISeFUc=0x800B62E4 -setPan__5JAISeFfUlUc=0x800B62F4 -getPan__5JAISeFUc=0x800B6384 -setPitch__5JAISeFfUlUc=0x800B6394 -getPitch__5JAISeFUc=0x800B6424 -getFxmix__5JAISeFUc=0x800B6434 -setDolby__5JAISeFfUlUc=0x800B6444 -getDolby__5JAISeFUc=0x800B64D4 -setVolumeU7__5JAISeFUcUlUc=0x800B64E4 -getVolumeU7__5JAISeFUc=0x800B6598 -setPanU7__5JAISeFUcUlUc=0x800B65C4 -getPanU7__5JAISeFUc=0x800B6678 -setFxmixU7__5JAISeFUcUlUc=0x800B66A4 -getFxmixU7__5JAISeFUc=0x800B6758 -setDolbyU7__5JAISeFUcUlUc=0x800B6784 -getDolbyU7__5JAISeFUc=0x800B6838 -setPortData__5JAISeFUcUs=0x800B6864 -getPortData__5JAISeFUc=0x800B6994 -getPan__11JAISequenceFUc=0x800B6A40 -getPitch__11JAISequenceFUc=0x800B6A70 -setFxmix__11JAISequenceFfUlUc=0x800B6AA0 -getFxmix__11JAISequenceFUc=0x800B6B84 -setDolby__11JAISequenceFfUlUc=0x800B6BB4 -getDolby__11JAISequenceFUc=0x800B6CC4 -setTempoProportion__11JAISequenceFfUl=0x800B6CF4 -getTempoProportion__11JAISequenceFv=0x800B6D8C -getVolumeU7__11JAISequenceFUc=0x800B6DB0 -setPanU7__11JAISequenceFUcUlUc=0x800B6DF8 -getPanU7__11JAISequenceFUc=0x800B6F40 -setFxmixU7__11JAISequenceFUcUlUc=0x800B6F8C -getFxmixU7__11JAISequenceFUc=0x800B70D4 -setDolbyU7__11JAISequenceFUcUlUc=0x800B7120 -getDolbyU7__11JAISequenceFUc=0x800B7254 -setPortData__11JAISequenceFUcUs=0x800B72A0 -getPortData__11JAISequenceFUc=0x800B741C -init__Q27JAInter10SoundTableFPUcUl=0x800B744C -getInfoPointer__Q27JAInter10SoundTableFUl=0x800B7518 -getInfoFormat__Q27JAInter10SoundTableFUl=0x800B75DC -getCategotyMax__Q27JAInter10SoundTableFv=0x800B7634 -getSoundMax__Q27JAInter10SoundTableFUc=0x800B763C -init__Q27JAInter9StreamMgrFv=0x800B764C -storeStreamBuffer__Q27JAInter9StreamMgrFPP9JAIStreamPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo=0x800B7968 -releaseStreamBuffer__Q27JAInter9StreamMgrFP9JAIStreamUl=0x800B7CC0 -checkSystem__Q27JAInter9StreamMgrFv=0x800B7D48 -PlayingStream__Q27JAInter9StreamMgrFv=0x800B7EF4 -changeCallback__Q27JAInter9StreamMgrFv=0x800B88F4 -processGFrameStream__Q27JAInter9StreamMgrFv=0x800B899C -checkEntriedStream__Q27JAInter9StreamMgrFv=0x800B89CC -systemCallBack__Q27JAInter9StreamMgrFUlP13JASAramStreamPv=0x800B8AB4 -prepareSystem__Q27JAInter9StreamMgrFl=0x800B8B24 -playDirect__Q27JAInter9StreamMgrFPc=0x800B8BEC -stopDirect__Q27JAInter9StreamMgrFv=0x800B8D84 -initChannel__Q27JAInter9StreamMgrFv=0x800B8DC0 -getStreamObjectPointer__Q27JAInter9StreamMgrFv=0x800B8EAC -getSystemStatus__Q27JAInter9StreamMgrFv=0x800B8EB4 -getDecodedBufferBlocks__Q27JAInter9StreamMgrFv=0x800B8EBC -getDecodedBufferSize__Q27JAInter9StreamMgrFUl=0x800B8EC4 -getChannelMax__Q27JAInter9StreamMgrFv=0x800B8EDC -checkFileExsistence__Q27JAInter15SystemInterfaceFPc=0x800B8EE4 -checkSeqActiveFlag__Q27JAInter15SystemInterfaceFP8JASTrack=0x800B8F14 -trackToSeqp__Q27JAInter15SystemInterfaceFP11JAISequenceUc=0x800B9000 -setSeqPortargsF32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcf=0x800B904C -setSeqPortargsU32__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataUlUcUl=0x800B9068 -rootInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData=0x800B9084 -trackInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateData=0x800B90DC -outerInit__Q27JAInter15SystemInterfaceFPQ27JAInter13SeqUpdateDataP8JASTrackUlUsUc=0x800B9164 -setSePortParameter__Q27JAInter15SystemInterfaceFP11JASPortArgs=0x800B93EC -__sinit_JAISystemInterface_cpp=0x800B95A8 -__dt__Q27JAInter10ObjectBaseFv=0x800B95FC -startSound__Q27JAInter10ObjectBaseFUlUl=0x800B9670 -handleStop__Q27JAInter10ObjectBaseFUcUl=0x800B97D4 -startSound__Q27JAInter10ObjectBaseFUcUlUl=0x800B9818 -startSound__Q27JAInter10ObjectBaseFPP8JAISoundUlUl=0x800B9860 -stopSound__Q27JAInter10ObjectBaseFUlUl=0x800B98A4 -stopAllSound__Q27JAInter10ObjectBaseFv=0x800B9904 -disable__Q27JAInter10ObjectBaseFv=0x800B996C -dispose__Q27JAInter10ObjectBaseFv=0x800B99B0 -getFreeSoundHandlePointer__Q27JAInter10ObjectBaseFv=0x800B99F0 -getUseSoundHandlePointer__Q27JAInter10ObjectBaseFUl=0x800B9A4C -getUseSoundHandleNo__Q27JAInter10ObjectBaseFUl=0x800B9AA0 -__ct__Q27JAInter6ObjectFP3VecP7JKRHeapUc=0x800B9AEC -__dt__Q27JAInter6ObjectFv=0x800B9BE0 -startSound__Q27JAInter6ObjectFUlUl=0x800B9C64 -disable__Q27JAInter6ObjectFv=0x800B9E80 -loop__Q27JAInter6ObjectFv=0x800B9FD8 -__ct__10JADHioNodeFPCc=0x800BA1EC -__dt__10JADHioNodeFv=0x800BA1FC -linearTransform__7JALCalcFfffffb=0x800BA244 -getParamByExp__7JALCalcFffffffQ27JALCalc9CurveSign=0x800BA2A8 -getRandom__7JALCalcFfff=0x800BA434 -getRandom_0_1__7JALCalcFv=0x800BA4F4 -__ct__Q210JADUtility10PrmSetBaseFb=0x800BA564 -load__Q210JADUtility10PrmSetBaseFR20JSUMemoryInputStream=0x800BA610 -load__Q210JADUtility7PrmBaseFR20JSUMemoryInputStream=0x800BA6A8 -__dt__Q210JADUtility10PrmSetBaseFv=0x800BA6E8 -appendAfter__Q210JADUtility10PrmSetBaseFv=0x800BA7D0 -afterRemovingChildButton__Q210JADUtility10PrmSetBaseFPQ210JADUtility10PrmSetBase=0x800BA7D4 -afterRemovingThisButton__Q210JADUtility10PrmSetBaseFPQ210JADUtility10PrmSetBase=0x800BA7D8 -getEraseLink__Q210JADUtility10PrmSetBaseFv=0x800BA7DC -afterGetFromFree__Q210JADUtility10PrmSetBaseFv=0x800BA7E4 -beforeRemovingChild__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase=0x800BA7E8 -beforeRemovingThis__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase=0x800BA7EC -afterRemovingChildButton__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBase=0x800BA7F0 -afterRemovingThisButton__Q210JADUtility36NodeTreeFPQ210JADUtility10PrmSetBasePQ210JADUtility10PrmSetBase=0x800BA7F4 -__ct__Q210JADUtility11DataMgrBaseFv=0x800BA7F8 -__dt__Q210JADUtility11DataMgrBaseFv=0x800BA83C -__dt__Q210JADUtility15DataLoadMgrNodeFv=0x800BA8B4 -isTempBuffaMode__Q210JADUtility15DataLoadMgrNodeFv=0x800BA97C -initInstanceExt__Q210JADUtility15DataLoadMgrNodeFPvl=0x800BA984 -setFlagsAsExternal__Q210JADUtility15DataLoadMgrNodeFPv=0x800BAA74 -__ct__Q210JADUtility11DataMgrNodeFv=0x800BAA88 -__dt__Q210JADUtility6StrPrmFv=0x800BABE4 -__dt__Q210JADUtility10PrmHioFv=0x800BAC8C -__dt__Q210JADUtility7PrmFv=0x800BAD24 -__dt__Q210JADUtility7PrmBaseFv=0x800BADAC -save__Q210JADUtility6StrPrmFR21JSUMemoryOutputStream=0x800BAE24 -load__Q210JADUtility6StrPrmFR20JSUMemoryInputStream=0x800BAEC4 -save__Q210JADUtility7PrmBaseFR21JSUMemoryOutputStream=0x800BAF64 -__dt__Q210JADUtility11DataMgrNodeFv=0x800BAFDC -getPath__Q210JADUtility11DataMgrNodeFv=0x800BB140 -setPath__Q210JADUtility11DataMgrNodeFPc=0x800BB148 -init__Q210JADUtility11DataMgrNodeFv=0x800BB198 -init__Q210JADUtility15DataLoadMgrNodeFv=0x800BB1DC -init__Q210JADUtility11DataMgrBaseFv=0x800BB220 -save__Q210JADUtility7PrmFR21JSUMemoryOutputStream=0x800BB25C -load__Q210JADUtility7PrmFR20JSUMemoryInputStream=0x800BB2E0 -@532@28@init__Q210JADUtility15DataLoadMgrNodeFv=0x800BB340 -@532@28@__dt__Q210JADUtility15DataLoadMgrNodeFv=0x800BB354 -@592@28@init__Q210JADUtility11DataMgrNodeFv=0x800BB368 -@592@28@__dt__Q210JADUtility11DataMgrNodeFv=0x800BB37C -TRKNubMainLoop=0x800BB390 -TRKDestructEvent=0x800BB488 -TRKConstructEvent=0x800BB4AC -TRKPostEvent=0x800BB4C4 -TRKGetNextEvent=0x800BB5A4 -TRKInitializeEventQueue=0x800BB658 -TRKNubWelcome=0x800BB6B0 -TRKTerminateNub=0x800BB6D8 -TRKInitializeNub=0x800BB6FC -TRKMessageSend=0x800BB848 -TRKReadBuffer_ui32=0x800BB88C -TRKReadBuffer_ui8=0x800BB97C -TRKReadBuffer1_ui64=0x800BBA14 -TRKAppendBuffer_ui32=0x800BBAFC -TRKAppendBuffer_ui8=0x800BBBF8 -TRKAppendBuffer1_ui64=0x800BBC60 -TRKReadBuffer=0x800BBD5C -TRKAppendBuffer=0x800BBDE8 -TRKSetBufferPosition=0x800BBE8C -TRKResetBuffer=0x800BBEBC -TRKReleaseBuffer=0x800BBEFC -TRKGetBuffer=0x800BBF60 -TRKGetFreeBuffer=0x800BBF8C -TRKInitializeMessageBuffers=0x800BC054 -TRKTerminateSerialHandler=0x800BC0C8 -TRKInitializeSerialHandler=0x800BC0D0 -TRKProcessInput=0x800BC194 -TRKGetInput=0x800BC1E4 -TRKTestForPacket=0x800BC244 -usr_put_initialize=0x800BC380 -usr_puts_serial=0x800BC384 -TRKDispatchMessage=0x800BC40C -TRKInitializeDispatcher=0x800BC57C -TRKDoSetOption=0x800BC584 -TRKDoStop=0x800BC62C -TRKDoStep=0x800BC6D4 -TRKDoContinue=0x800BC8F4 -TRKDoWriteRegisters=0x800BC9A4 -TRKDoReadRegisters=0x800BCC34 -TRKDoWriteMemory=0x800BCF14 -TRKDoReadMemory=0x800BD150 -TRKDoSupportMask=0x800BD394 -TRKDoVersions=0x800BD39C -TRKDoOverride=0x800BD3A4 -TRKDoReset=0x800BD3FC -TRKDoDisconnect=0x800BD454 -TRKDoConnect=0x800BD4CC -SetTRKConnected=0x800BD530 -GetTRKConnected=0x800BD53C -OutputData=0x800BD54C -HandlePositionFileSupportRequest=0x800BD5F4 -HandleCloseFileSupportRequest=0x800BD704 -HandleOpenFileSupportRequest=0x800BD7EC -TRKRequestSend=0x800BD908 -TRKSuppAccessFile=0x800BDAE8 -TRKReleaseMutex=0x800BDD08 -TRKAcquireMutex=0x800BDD10 -TRKInitializeMutex=0x800BDD18 -TRKDoNotifyStopped=0x800BDD20 -TRK_flush_cache=0x800BDDB8 -TRK_fill_mem=0x800BDDF0 -__TRK_get_MSR=0x800BDEA8 -__TRK_set_MSR=0x800BDEB0 -TRK_ppc_memcpy=0x800BDEB8 -TRKInterruptHandler=0x800BDEF4 -TRKExceptionHandler=0x800BE088 -TRKSwapAndGo=0x800BE124 -TRKInterruptHandlerEnableInterrupts=0x800BE1E8 -ReadFPSCR=0x800BE23C -WriteFPSCR=0x800BE260 -TRKTargetAccessARAM=0x800BE284 -TRKTargetSetInputPendingPtr=0x800BE348 -TRKTargetStop=0x800BE358 -TRKTargetSetStopped=0x800BE370 -TRKTargetStopped=0x800BE380 -TRKTargetSupportRequest=0x800BE390 -TRKTargetGetPC=0x800BE590 -TRKTargetStepOutOfRange=0x800BE5A0 -TRKTargetSingleStep=0x800BE658 -TRKTargetAddExceptionInfo=0x800BE704 -TRKTargetAddStopInfo=0x800BE788 -TRKTargetInterrupt=0x800BE814 -TRKPostInterruptEvent=0x800BE9A4 -TRKTargetAccessExtended2=0x800BEA50 -TRKTargetAccessExtended1=0x800BEE88 -TRKTargetAccessFP=0x800BEFF8 -TRKTargetAccessDefault=0x800BF504 -TRKTargetReadInstruction=0x800BF5F8 -TRKTargetAccessMemory=0x800BF644 -TRKValidMemory32=0x800BF790 -TRKSaveExtended1Block=0x800BFA60 -TRKRestoreExtended1Block=0x800BFC18 -InitMetroTRK=0x800BFDD0 -InitMetroTRK_BBA=0x800BFE68 -TRK__write_aram=0x800BFEFC -TRK__read_aram=0x800C00E8 -TRKInitializeTarget=0x800C021C -__TRK_copy_vectors=0x800C0268 -TRKTargetTranslate=0x800C0394 -EnableMetroTRKInterrupts=0x800C03EC -TRK_main=0x800C040C -TRKLoadContext=0x800C0464 -TRKUARTInterruptHandler=0x800C04EC -InitializeProgramEndTrap=0x800C04F0 -TRK_board_display=0x800C0548 -UnreserveEXI2Port=0x800C0578 -ReserveEXI2Port=0x800C05A8 -TRKWriteUARTN=0x800C05D8 -TRKReadUARTN=0x800C0614 -TRKPollUART=0x800C0650 -EnableEXI2Interrupts=0x800C0680 -TRKInitializeIntDrivenUART=0x800C06C8 -InitMetroTRKCommTable=0x800C0718 -TRKEXICallBack=0x800C0984 -TRKTargetContinue=0x800C09BC -GetUseSerialIO=0x800C09F0 -SetUseSerialIO=0x800C0A00 -__close_console=0x800C0A0C -__TRK_write_console=0x800C0A90 -__read_console=0x800C0B4C -udp_cc_post_stop=0x800C0C08 -udp_cc_pre_continue=0x800C0C10 -udp_cc_peek=0x800C0C18 -udp_cc_write=0x800C0C20 -udp_cc_read=0x800C0C28 -udp_cc_close=0x800C0C30 -udp_cc_open=0x800C0C38 -udp_cc_shutdown=0x800C0C40 -udp_cc_initialize=0x800C0C48 -ddh_cc_initinterrupts=0x800C0C50 -ddh_cc_peek=0x800C0C74 -ddh_cc_post_stop=0x800C0CE4 -ddh_cc_pre_continue=0x800C0D08 -ddh_cc_write=0x800C0D2C -ddh_cc_read=0x800C0DEC -ddh_cc_close=0x800C0ED8 -ddh_cc_open=0x800C0EE0 -ddh_cc_shutdown=0x800C0F04 -ddh_cc_initialize=0x800C0F0C -CircleBufferReadBytes=0x800C0F94 -CircleBufferWriteBytes=0x800C109C -CircleBufferInitialize=0x800C11A4 -CBGetBytesAvailableForRead=0x800C11F4 -gdev_cc_initinterrupts=0x800C11FC -gdev_cc_peek=0x800C1220 -gdev_cc_post_stop=0x800C1290 -gdev_cc_pre_continue=0x800C12B4 -gdev_cc_write=0x800C12D8 -gdev_cc_read=0x800C1398 -gdev_cc_close=0x800C148C -gdev_cc_open=0x800C1494 -gdev_cc_shutdown=0x800C14B8 -gdev_cc_initialize=0x800C14C0 -MWTRACE=0x800C1548 -MWExitCriticalSection=0x800C1598 -MWEnterCriticalSection=0x800C15BC -MWInitializeCriticalSection=0x800C15EC -__va_arg=0x800C15F0 -__destroy_global_chain=0x800C16B8 -__register_global_object=0x800C1700 -__copy=0x800C1718 -__destroy_new_array=0x800C1748 -__destroy_arr=0x800C17C4 -__construct_array=0x800C183C -__dt__26__partial_array_destructorFv=0x800C1938 -__construct_new_array=0x800C19F0 -__ptmf_test=0x800C1AF4 -__ptmf_scall=0x800C1B24 -__cvt_fp2unsigned=0x800C1B4C -__save_fpr=0x800C1BA8 -__restore_fpr=0x800C1BF4 -__save_gpr=0x800C1C40 -__restore_gpr=0x800C1C8C -__div2u=0x800C1CD8 -__div2i=0x800C1DC4 -__mod2u=0x800C1EFC -__mod2i=0x800C1FE0 -__shl2i=0x800C20EC -__shr2u=0x800C2110 -__shr2i=0x800C2134 -__cvt_ull_dbl=0x800C215C -__cvt_dbl_usll=0x800C21F8 -GetR2__Fv=0x800C22C4 -__fini_cpp_exceptions=0x800C22CC -__init_cpp_exceptions=0x800C2300 -__unregister_fragment=0x800C2340 -__register_fragment=0x800C2374 -__sys_free=0x800C23A8 -exit=0x800C2460 -free=0x800C2550 -__pool_free=0x800C25C0 -deallocate_from_fixed_pools=0x800C2618 -deallocate_from_var_pools=0x800C2770 -__flush_all=0x800C2A04 -__close_all=0x800C2A74 -__dec2num=0x800C2B1C -__num2dec=0x800C3B9C -__num2dec_internal=0x800C3D40 -__minus_dec=0x800C40F4 -__equals_dec=0x800C45F0 -__two_exp=0x800C46FC -__timesdec=0x800C5E80 -div=0x800C60F8 -abs=0x800C6150 -__flush_buffer=0x800C6160 -__prep_buffer=0x800C6224 -__end_critical_region=0x800C6258 -__begin_critical_region=0x800C625C -__kill_critical_regions=0x800C6260 -tolower=0x800C6264 -__fwrite=0x800C6288 -fwrite=0x800C6594 -fflush=0x800C6610 -fclose=0x800C6748 -fseek=0x800C6904 -_fseek=0x800C6970 -ftell=0x800C6BE0 -wcstombs=0x800C6CC4 -mbtowc=0x800C6DDC -is_utf8_complete=0x800C6EFC -memcmp=0x800C6FE8 -__memrchr=0x800C7034 -memchr=0x800C7060 -memmove=0x800C708C -__copy_longs_rev_unaligned=0x800C7158 -__copy_longs_unaligned=0x800C7204 -__copy_longs_rev_aligned=0x800C72C4 -__copy_longs_aligned=0x800C736C -__stdio_atexit=0x800C7428 -sprintf=0x800C7438 -snprintf=0x800C7518 -vsprintf=0x800C75EC -vsnprintf=0x800C7664 -vprintf=0x800C76D8 -__StringWrite=0x800C7770 -__FileWrite=0x800C77DC -__pformatter=0x800C7834 -float2str=0x800C7FA8 -round_decimal=0x800C86C4 -double2hex=0x800C87F0 -longlong2str=0x800C8B28 -long2str=0x800C8E3C -parse_format=0x800C9094 -srand=0x800C9598 -rand=0x800C95A0 -sscanf=0x800C95C0 -__StringRead=0x800C9684 -__sformatter=0x800C9714 -parse_format=0x800CA0C0 -strrchr=0x800CA608 -strchr=0x800CA650 -strncmp=0x800CA680 -strcmp=0x800CA6C0 -strcat=0x800CA7E8 -strncpy=0x800CA814 -strcpy=0x800CA858 -strlen=0x800CA910 -__strtold=0x800CA92C -strtol=0x800CB938 -strtoul=0x800CBA28 -__strtoull=0x800CBAD4 -__strtoul=0x800CBEE0 -fwide=0x800CC258 -__write_console=0x800CC2E0 -__ieee754_asin=0x800CC3B0 -__ieee754_atan2=0x800CC5E8 -__ieee754_exp=0x800CC878 -__ieee754_fmod=0x800CCA9C -__ieee754_log=0x800CCDD8 -__ieee754_log10=0x800CD054 -__ieee754_pow=0x800CD164 -__ieee754_rem_pio2=0x800CD994 -__kernel_cos=0x800CDD34 -__kernel_rem_pio2=0x800CDE28 -__kernel_sin=0x800CEC7C -__kernel_tan=0x800CED1C -atan=0x800CEF30 -ceil=0x800CF148 -copysign=0x800CF28C -cos=0x800CF2B4 -floor=0x800CF388 -frexp=0x800CF4D0 -ldexp=0x800CF55C -modf=0x800CF720 -sin=0x800CF81C -tan=0x800CF8F4 -asin=0x800CF96C -atan2=0x800CF98C -exp=0x800CF9AC -fmod=0x800CF9CC -log10=0x800CF9EC -pow=0x800CFA0C -__ieee754_sqrt=0x800CFA2C -tanf=0x800CFC50 -sinf=0x800CFC74 -cosf=0x800CFC98 -sqrt=0x800CFCBC -stricmp=0x800CFCDC -DBClose=0x800CFD68 -DBOpen=0x800CFD6C -DBWrite=0x800CFD70 -DBRead=0x800CFFD0 -DBQueryData=0x800D005C -DBInitInterrupts=0x800D00F8 -DBInitComm=0x800D014C -DBGHandler=0x800D01C4 -MWCallback=0x800D0204 -DBGReadStatus=0x800D0240 -DBGWrite=0x800D02EC -DBGRead=0x800D03C8 -DBGReadMailbox=0x800D04A4 -DBGEXIImm=0x800D0550 -__VIRetraceHandler=0x800D07E8 -VISetPreRetraceCallback=0x800D0A5C -VISetPostRetraceCallback=0x800D0AA0 -getTiming=0x800D0AE4 -__VIInit=0x800D0B84 -VIInit=0x800D0D84 -VIWaitForRetrace=0x800D1234 -setFbbRegs=0x800D1288 -setVerticalRegs=0x800D155C -VIConfigure=0x800D16FC -VIFlush=0x800D1F24 -VISetNextFrameBuffer=0x800D2054 -VIGetCurrentFrameBuffer=0x800D20C0 -VISetBlack=0x800D20C8 -VIGetRetraceCount=0x800D2144 -GetCurrentDisplayPosition=0x800D214C -getCurrentFieldEvenOdd=0x800D2188 -VIGetNextField=0x800D21F0 -VIGetCurrentLine=0x800D228C -VIGetTvFormat=0x800D2324 -VIGetDTVStatus=0x800D238C -__VIDisplayPositionToXY=0x800D23C8 -__VIGetCurrentPosition=0x800D25E4 -EXI2_Init=0x800D2644 -EXI2_EnableInterrupts=0x800D2648 -EXI2_Poll=0x800D264C -EXI2_ReadN=0x800D2654 -EXI2_WriteN=0x800D265C -EXI2_Reserve=0x800D2664 -EXI2_Unreserve=0x800D2668 -AMC_IsStub=0x800D266C -ARRegisterDMACallback=0x800D2674 -ARGetDMAStatus=0x800D26B8 -ARStartDMA=0x800D26F4 -ARAlloc=0x800D27E4 -ARInit=0x800D284C -ARGetBaseAddress=0x800D2910 -ARGetSize=0x800D2918 -__ARHandler=0x800D2920 -__ARClearInterrupt=0x800D2998 -__ARGetInterruptStatus=0x800D29B8 -__ARChecksize=0x800D29C8 -__ARQServiceQueueLo=0x800D41BC -__ARQCallbackHack=0x800D42BC -__ARQInterruptServiceRoutine=0x800D42C0 -ARQInit=0x800D438C -ARQPostRequest=0x800D43FC -PPCMfmsr=0x800D4558 -PPCMtmsr=0x800D4560 -PPCMfhid0=0x800D4568 -PPCMthid0=0x800D4570 -PPCMfl2cr=0x800D4578 -PPCMtl2cr=0x800D4580 -PPCMtdec=0x800D4588 -PPCSync=0x800D4590 -PPCHalt=0x800D4598 -PPCMtmmcr0=0x800D45AC -PPCMtmmcr1=0x800D45B4 -PPCMtpmc1=0x800D45BC -PPCMtpmc2=0x800D45C4 -PPCMtpmc3=0x800D45CC -PPCMtpmc4=0x800D45D4 -PPCMffpscr=0x800D45DC -PPCMtfpscr=0x800D45FC -PPCMfhid2=0x800D4624 -PPCMthid2=0x800D462C -PPCMtwpar=0x800D4634 -PPCDisableSpeculation=0x800D463C -PPCSetFpNonIEEEMode=0x800D4664 -__CARDDefaultApiCallback=0x800D466C -__CARDSyncCallback=0x800D4670 -__CARDExtHandler=0x800D46A4 -__CARDExiHandler=0x800D477C -__CARDTxHandler=0x800D4894 -__CARDUnlockedHandler=0x800D493C -__CARDEnableInterrupt=0x800D49C0 -__CARDReadStatus=0x800D4A80 -__CARDClearStatus=0x800D4B70 -TimeoutHandler=0x800D4C1C -Retry=0x800D4CC0 -UnlockedCallback=0x800D4EEC -__CARDStart=0x800D4FFC -__CARDReadSegment=0x800D51B0 -__CARDWritePage=0x800D52E4 -__CARDEraseSector=0x800D5400 -CARDInit=0x800D54E0 -__CARDGetFontEncode=0x800D558C -__CARDSetDiskID=0x800D5594 -__CARDGetControlBlock=0x800D55CC -__CARDPutControlBlock=0x800D5684 -CARDFreeBlocks=0x800D56E8 -__CARDSync=0x800D5838 -OnReset=0x800D58D0 -bitrev=0x800D5920 -ReadArrayUnlock=0x800D5A8C -DummyLen=0x800D5BD0 -__CARDUnlock=0x800D5C94 -InitCallback=0x800D67EC -DoneCallback=0x800D685C -BlockReadCallback=0x800D6B80 -__CARDRead=0x800D6C5C -BlockWriteCallback=0x800D6CC0 -__CARDWrite=0x800D6D9C -__CARDGetFatBlock=0x800D6E00 -WriteCallback=0x800D6E08 -EraseCallback=0x800D6EDC -__CARDAllocBlock=0x800D6FA4 -__CARDUpdateFatBlock=0x800D70BC -__CARDGetDirBlock=0x800D7168 -WriteCallback=0x800D7170 -EraseCallback=0x800D7240 -__CARDUpdateDir=0x800D7308 -__CARDCheckSum=0x800D73CC -VerifyID=0x800D757C -VerifyDir=0x800D7800 -VerifyFAT=0x800D7A40 -__CARDVerify=0x800D7CC4 -CARDCheckExAsync=0x800D7D50 -CARDCheck=0x800D82E0 -IsCard=0x800D8334 -CARDProbe=0x800D8400 -CARDProbeEx=0x800D8438 -DoMount=0x800D85B4 -__CARDMountCallback=0x800D89C4 -CARDMountAsync=0x800D8AFC -CARDMount=0x800D8C9C -DoUnmount=0x800D8CE4 -CARDUnmount=0x800D8D80 -FormatCallback=0x800D8E2C -__CARDFormatRegionAsync=0x800D8F70 -CARDFormat=0x800D95C8 -__CARDCompareFileName=0x800D961C -__CARDAccess=0x800D9684 -__CARDIsWritable=0x800D9718 -__CARDIsReadable=0x800D984C -CARDOpen=0x800D9940 -CARDClose=0x800D9A5C -CreateCallbackFat=0x800D9AB0 -CARDCreateAsync=0x800D9BE0 -CARDCreate=0x800D9E00 -__CARDSeek=0x800D9E48 -ReadCallback=0x800DA000 -CARDReadAsync=0x800DA130 -CARDRead=0x800DA274 -WriteCallback=0x800DA2BC -EraseCallback=0x800DA42C -CARDWriteAsync=0x800DA4DC -CARDWrite=0x800DA5F0 -UpdateIconOffsets=0x800DA638 -CARDGetStatus=0x800DA830 -CARDSetStatusAsync=0x800DA944 -CARDSetStatus=0x800DAAB8 -CARDGetSerialNo=0x800DAB00 -DBInit=0x800DABC4 -__DBExceptionDestinationAux=0x800DABEC -__DBExceptionDestination=0x800DAC34 -__DBIsExceptionMarked=0x800DAC44 -DBPrintf=0x800DAC60 -DSPCheckMailToDSP=0x800DACB0 -DSPCheckMailFromDSP=0x800DACC0 -DSPReadMailFromDSP=0x800DACD0 -DSPSendMailToDSP=0x800DACE8 -DSPAssertInt=0x800DACFC -DSPInit=0x800DAD3C -__DSP_debug_printf=0x800DAE00 -__DSP_exec_task=0x800DAE50 -__DSP_boot_task=0x800DAFF0 -__DSP_insert_task=0x800DB17C -__DSP_remove_task=0x800DB21C -__DVDInitWA=0x800DB2B0 -__DVDInterruptHandler=0x800DB2F0 -AlarmHandler=0x800DB5D0 -AlarmHandlerForTimeout=0x800DB654 -Read=0x800DB6C4 -SeekTwiceBeforeRead=0x800DB7D4 -DVDLowRead=0x800DB854 -DVDLowSeek=0x800DBAEC -DVDLowWaitCoverClose=0x800DBB80 -DVDLowReadDiskID=0x800DBBAC -DVDLowStopMotor=0x800DBC50 -DVDLowRequestError=0x800DBCDC -DVDLowInquiry=0x800DBD68 -DVDLowAudioStream=0x800DBE04 -DVDLowRequestAudioStatus=0x800DBE9C -DVDLowAudioBufferConfig=0x800DBF28 -DVDLowReset=0x800DBFC4 -DVDLowBreak=0x800DC080 -DVDLowClearCallback=0x800DC094 -__DVDLowSetWAType=0x800DC0B0 -__DVDLowTestAlarm=0x800DC0F4 -__DVDFSInit=0x800DC12C -DVDConvertPathToEntrynum=0x800DC164 -DVDFastOpen=0x800DC458 -DVDOpen=0x800DC4CC -DVDClose=0x800DC594 -entryToPath=0x800DC5B8 -DVDConvertEntrynumToPath=0x800DC718 -DVDGetCurrentDir=0x800DC86C -DVDChangeDir=0x800DC930 -DVDReadAsyncPrio=0x800DC990 -cbForReadAsync=0x800DCA50 -DVDReadPrio=0x800DCA80 -cbForReadSync=0x800DCB98 -DVDOpenDir=0x800DCBBC -DVDReadDir=0x800DCC7C -DVDCloseDir=0x800DCD20 -defaultOptionalCommandChecker=0x800DCD28 -DVDInit=0x800DCD2C -stateReadingFST=0x800DCDF8 -cbForStateReadingFST=0x800DCE8C -cbForStateError=0x800DCF18 -stateTimeout=0x800DCFC4 -stateGettingError=0x800DCFF8 -CategorizeError=0x800DD020 -cbForStateGettingError=0x800DD0D4 -cbForUnrecoveredError=0x800DD368 -cbForUnrecoveredErrorRetry=0x800DD3D0 -stateGoToRetry=0x800DD468 -cbForStateGoToRetry=0x800DD490 -stateCheckID=0x800DD5E8 -stateCheckID3=0x800DD6C8 -stateCheckID2a=0x800DD6FC -cbForStateCheckID2a=0x800DD730 -stateCheckID2=0x800DD7A4 -cbForStateCheckID1=0x800DD7DC -cbForStateCheckID2=0x800DD8F0 -cbForStateCheckID3=0x800DD9D4 -AlarmHandler=0x800DDAD0 -stateCoverClosed=0x800DDB14 -stateCoverClosed_CMD=0x800DDBE0 -cbForStateCoverClosed=0x800DDC10 -stateMotorStopped=0x800DDC80 -cbForStateMotorStopped=0x800DDCA8 -stateReady=0x800DDD8C -stateBusy=0x800DDFBC -cbForStateBusy=0x800DE2DC -DVDReadAbsAsyncPrio=0x800DE914 -DVDReadAbsAsyncForBS=0x800DE9F0 -DVDReadDiskID=0x800DEAC0 -DVDCancelStreamAsync=0x800DEB94 -DVDInquiryAsync=0x800DEC50 -DVDReset=0x800DED20 -DVDGetCommandBlockStatus=0x800DED64 -DVDGetDriveStatus=0x800DEDB0 -DVDSetAutoInvalidation=0x800DEE5C -DVDResume=0x800DEE6C -DVDCancelAsync=0x800DEEBC -DVDCancel=0x800DF138 -cbForCancelSync=0x800DF1E4 -DVDGetCurrentDiskID=0x800DF208 -DVDCheckDisk=0x800DF210 -__DVDPrepareResetAsync=0x800DF308 -__DVDTestAlarm=0x800DF424 -__DVDClearWaitingQueue=0x800DF45C -__DVDPushWaitingQueue=0x800DF494 -__DVDPopWaitingQueue=0x800DF4FC -__DVDCheckWaitingQueue=0x800DF59C -__DVDDequeueWaitingQueue=0x800DF5F4 -ErrorCode2Num=0x800DF654 -__DVDStoreErrorCode=0x800DF770 -DVDCompareDiskID=0x800DF7EC -__DVDPrintFatalMessage=0x800DF8E4 -cb=0x800DF914 -__fstLoad=0x800DF9EC -SetExiInterruptMask=0x800DFB54 -EXIImm=0x800DFC48 -EXIImmEx=0x800DFEA4 -EXIDma=0x800DFF44 -EXISync=0x800E0030 -EXIClearInterrupts=0x800E027C -EXISetExiCallback=0x800E02C4 -__EXIProbe=0x800E0340 -EXIProbe=0x800E04B4 -EXIProbeEx=0x800E0534 -EXIAttach=0x800E05E8 -EXIDetach=0x800E06F4 -EXISelect=0x800E07B0 -EXIDeselect=0x800E08DC -EXIIntrruptHandler=0x800E09EC -TCIntrruptHandler=0x800E0AB4 -EXTIntrruptHandler=0x800E0CCC -EXIInit=0x800E0D9C -EXILock=0x800E0F70 -EXIUnlock=0x800E1064 -EXIGetState=0x800E1140 -UnlockedHandler=0x800E1158 -EXIGetID=0x800E1180 -ProbeBarnacle=0x800E1530 -__OSEnableBarnacle=0x800E16BC -InitializeUART=0x800E1878 -WriteUARTN=0x800E18E8 -GDInitGDLObj=0x800E1B04 -GDFlushCurrToMem=0x800E1B1C -GDPadCurr32=0x800E1B48 -GDOverflowed=0x800E1C40 -GDSetVtxDescv=0x800E1C70 -GDSetArray=0x800E226C -GDSetArrayRaw=0x800E2478 -__GXDefaultTexRegionCallback=0x800E2680 -__GXDefaultTlutRegionCallback=0x800E277C -__GXShutdown=0x800E27A0 -GXInit=0x800E2930 -__GXInitGX=0x800E30C8 -GXCPInterruptHandler=0x800E3A00 -GXInitFifoBase=0x800E3B34 -GXInitFifoPtrs=0x800E3BA0 -GXInitFifoLimits=0x800E3C10 -GXSetCPUFifo=0x800E3C1C -GXSetGPFifo=0x800E3D44 -GXSaveCPUFifo=0x800E3EBC -__GXSaveCPUFifoAux=0x800E3EF0 -GXGetGPStatus=0x800E3FB8 -GXSetBreakPtCallback=0x800E4008 -__GXFifoInit=0x800E404C -__GXFifoReadEnable=0x800E4098 -__GXFifoReadDisable=0x800E40BC -__GXFifoLink=0x800E40E0 -__GXWriteFifoIntEnable=0x800E4114 -__GXWriteFifoIntReset=0x800E4144 -__GXCleanGPFifo=0x800E4174 -GXGetCPUFifo=0x800E4274 -GXGetGPFifo=0x800E427C -GXSetVtxDesc=0x800E4284 -__GXSetVCD=0x800E44F0 -__GXCalculateVLim=0x800E45AC -GXClearVtxDesc=0x800E46D0 -GXSetVtxAttrFmt=0x800E4708 -GXSetVtxAttrFmtv=0x800E4964 -__GXSetVAT=0x800E4BE4 -GXSetArray=0x800E4C80 -GXInvalidateVtxCache=0x800E4D0C -GXSetTexCoordGen2=0x800E4D1C -GXSetNumTexGens=0x800E4F9C -GXSetMisc=0x800E4FD8 -GXFlush=0x800E506C -__GXAbort=0x800E50C8 -GXAbortFrame=0x800E5234 -GXSetDrawSync=0x800E53A4 -GXSetDrawDone=0x800E5458 -GXWaitDrawDone=0x800E54F0 -GXDrawDone=0x800E553C -GXPixModeSync=0x800E55BC -GXPokeAlphaMode=0x800E55E0 -GXPokeAlphaRead=0x800E55F4 -GXPokeAlphaUpdate=0x800E5614 -GXPokeBlendMode=0x800E562C -GXPokeColorUpdate=0x800E5690 -GXPokeDstAlpha=0x800E56A8 -GXPokeDither=0x800E56CC -GXPokeZMode=0x800E56E4 -GXSetDrawSyncCallback=0x800E5704 -GXTokenInterruptHandler=0x800E5748 -GXSetDrawDoneCallback=0x800E57D0 -GXFinishInterruptHandler=0x800E5814 -__GXPEInit=0x800E5894 -__GXSetDirtyState=0x800E5908 -GXBegin=0x800E5988 -__GXSendFlushPrim=0x800E5A58 -GXSetLineWidth=0x800E5AE0 -GXSetPointSize=0x800E5B20 -GXEnableTexOffsets=0x800E5B60 -GXSetCullMode=0x800E5BA8 -GXSetCoPlanar=0x800E5BEC -__GXSetGenMode=0x800E5C20 -GXSetDispCopySrc=0x800E5C44 -GXSetTexCopySrc=0x800E5CC0 -GXSetDispCopyDst=0x800E5D3C -GXSetTexCopyDst=0x800E5D70 -GXSetDispCopyFrame2Field=0x800E5EA0 -GXSetCopyClamp=0x800E5EC4 -GXGetNumXfbLines=0x800E5F1C -GXGetYScaleFactor=0x800E5FAC -GXSetDispCopyYScale=0x800E61E4 -GXSetCopyClear=0x800E62B0 -GXSetCopyFilter=0x800E6328 -GXSetDispCopyGamma=0x800E6530 -GXCopyDisp=0x800E6544 -GXCopyTex=0x800E66AC -GXClearBoundingBox=0x800E6838 -GXInitLightAttn=0x800E6870 -GXInitLightSpot=0x800E688C -GXInitLightDistAttn=0x800E6A1C -GXInitLightPos=0x800E6AEC -GXInitLightDir=0x800E6AFC -GXInitSpecularDir=0x800E6B18 -GXInitLightColor=0x800E6BFC -GXLoadLightObjImm=0x800E6C08 -GXSetChanAmbColor=0x800E6C84 -GXSetChanMatColor=0x800E6D74 -GXSetNumChans=0x800E6E64 -GXSetChanCtrl=0x800E6EA0 -GXGetTexBufferSize=0x800E6F58 -__GetImageTileCount=0x800E70B4 -GXInitTexObj=0x800E717C -GXInitTexObjCI=0x800E73C8 -GXInitTexObjLOD=0x800E7410 -GXGetTexObjFmt=0x800E7574 -GXGetTexObjMipMap=0x800E757C -GXLoadTexObjPreLoaded=0x800E7594 -GXLoadTexObj=0x800E7710 -GXInitTlutObj=0x800E7764 -GXLoadTlut=0x800E779C -GXInitTexCacheRegion=0x800E7834 -GXInitTlutRegion=0x800E7928 -GXInvalidateTexAll=0x800E7960 -GXSetTexRegionCallback=0x800E79A8 -GXSetTlutRegionCallback=0x800E79BC -__SetSURegs=0x800E79D0 -__GXSetSUTexRegs=0x800E7A70 -__GXSetTmemConfig=0x800E7BEC -GXSetTevIndirect=0x800E7F40 -GXSetIndTexMtx=0x800E7FAC -GXSetIndTexCoordScale=0x800E8124 -GXSetIndTexOrder=0x800E8268 -GXSetNumIndStages=0x800E8354 -GXSetTevDirect=0x800E8378 -GXSetTevIndWarp=0x800E83C0 -__GXUpdateBPMask=0x800E8424 -__GXSetIndirectMask=0x800E8428 -__GXFlushTextureState=0x800E8458 -GXSetTevOp=0x800E847C -GXSetTevColorIn=0x800E8508 -GXSetTevAlphaIn=0x800E854C -GXSetTevColorOp=0x800E8590 -GXSetTevAlphaOp=0x800E85F8 -GXSetTevColor=0x800E8660 -GXSetTevColorS10=0x800E86DC -GXSetTevKColor=0x800E8758 -GXSetTevKColorSel=0x800E87CC -GXSetTevKAlphaSel=0x800E8828 -GXSetTevSwapMode=0x800E8884 -GXSetTevSwapModeTable=0x800E88CC -GXSetAlphaCompare=0x800E894C -GXSetZTexture=0x800E8990 -GXSetTevOrder=0x800E8A1C -GXSetNumTevStages=0x800E8BB8 -GXSetFog=0x800E8BE0 -GXInitFogAdjTable=0x800E8E04 -GXSetFogRangeAdj=0x800E8FB4 -GXSetBlendMode=0x800E90D8 -GXSetColorUpdate=0x800E912C -GXSetAlphaUpdate=0x800E9158 -GXSetZMode=0x800E9184 -GXSetZCompLoc=0x800E91B8 -GXSetPixelFmt=0x800E91EC -GXSetDither=0x800E92C0 -GXSetDstAlpha=0x800E92EC -GXSetFieldMask=0x800E9328 -GXSetFieldMode=0x800E9360 -GXCallDisplayList=0x800E93D8 -GXSetProjection=0x800E9448 -GXSetProjectionv=0x800E94EC -GXLoadPosMtxImm=0x800E9578 -GXLoadNrmMtxImm=0x800E95C8 -GXSetCurrentMtx=0x800E9618 -GXLoadTexMtxImm=0x800E964C -__GXSetViewport=0x800E9700 -GXSetViewport=0x800E9790 -GXSetScissor=0x800E97D8 -GXGetScissor=0x800E9850 -GXSetScissorBoxOffset=0x800E9898 -GXSetClipMode=0x800E98D8 -__GXSetMatrixIndex=0x800E9900 -GXSetGPMetric=0x800E9984 -GXClearGPMetric=0x800EA1CC -GXReadXfRasMetric=0x800EA1DC -PSMTXIdentity=0x800EA2A0 -PSMTXCopy=0x800EA2CC -PSMTXConcat=0x800EA300 -PSMTXTranspose=0x800EA3CC -PSMTXInverse=0x800EA41C -PSMTXRotRad=0x800EA514 -PSMTXRotTrig=0x800EA584 -__PSMTXRotAxisRadInternal=0x800EA634 -PSMTXRotAxisRad=0x800EA6E4 -PSMTXTrans=0x800EA754 -PSMTXTransApply=0x800EA788 -PSMTXScale=0x800EA7D4 -PSMTXScaleApply=0x800EA7FC -PSMTXQuat=0x800EA854 -C_MTXLookAt=0x800EA8F8 -C_MTXLightPerspective=0x800EAA84 -C_MTXLightOrtho=0x800EAB50 -PSMTXMultVec=0x800EABD8 -PSMTXMultVecSR=0x800EAC2C -PSMTXMultVecArraySR=0x800EAC80 -C_MTXPerspective=0x800EAD08 -C_MTXOrtho=0x800EADD8 -PSMTX44Copy=0x800EAE70 -PSVECAdd=0x800EAEB4 -PSVECSubtract=0x800EAED8 -PSVECNormalize=0x800EAEFC -PSVECMag=0x800EAF40 -PSVECCrossProduct=0x800EAF84 -Hu_IsStub=0x800EAFC0 -__OSFPRInit=0x800EAFC8 -OSGetConsoleType=0x800EB0F0 -ClearArena=0x800EB118 -InquiryCallback=0x800EB240 -OSInit=0x800EB27C -OSExceptionInit=0x800EB654 -__OSDBIntegrator=0x800EB8D4 -__OSDBJump=0x800EB8F8 -__OSSetExceptionHandler=0x800EB8FC -__OSGetExceptionHandler=0x800EB918 -OSExceptionVector=0x800EB92C -OSDefaultExceptionHandler=0x800EB9C8 -__OSPSInit=0x800EBA20 -__OSGetDIConfig=0x800EBA74 -OSRegisterVersion=0x800EBA88 -OSInitAlarm=0x800EBAB4 -OSCreateAlarm=0x800EBB0C -InsertAlarm=0x800EBB1C -OSSetAlarm=0x800EBD6C -OSCancelAlarm=0x800EBDD4 -DecrementerExceptionCallback=0x800EBEF0 -DecrementerExceptionHandler=0x800EC120 -OnReset=0x800EC170 -DLInsert=0x800EC210 -OSFreeToHeap=0x800EC2BC -OSSetCurrentHeap=0x800EC338 -OSInitAlloc=0x800EC348 -OSCreateHeap=0x800EC3B8 -OSGetArenaHi=0x800EC424 -OSGetArenaLo=0x800EC42C -OSSetArenaHi=0x800EC434 -OSSetArenaLo=0x800EC43C -__OSInitAudioSystem=0x800EC444 -__OSStopAudioSystem=0x800EC600 -DCEnable=0x800EC6D8 -DCInvalidateRange=0x800EC6EC -DCFlushRange=0x800EC718 -DCStoreRange=0x800EC748 -DCFlushRangeNoSync=0x800EC778 -DCStoreRangeNoSync=0x800EC7A4 -DCZeroRange=0x800EC7D0 -ICInvalidateRange=0x800EC7FC -ICFlashInvalidate=0x800EC830 -ICEnable=0x800EC840 -__LCEnable=0x800EC854 -LCEnable=0x800EC920 -LCDisable=0x800EC958 -LCStoreBlocks=0x800EC980 -LCStoreData=0x800EC9A4 -LCQueueWait=0x800ECA50 -L2GlobalInvalidate=0x800ECA64 -DMAErrorHandler=0x800ECAFC -__OSCacheInit=0x800ECC5C -__OSLoadFPUContext=0x800ECD50 -__OSSaveFPUContext=0x800ECE74 -OSSaveFPUContext=0x800ECF9C -OSSetCurrentContext=0x800ECFA4 -OSGetCurrentContext=0x800ED000 -OSSaveContext=0x800ED00C -OSLoadContext=0x800ED08C -OSGetStackPointer=0x800ED164 -OSClearContext=0x800ED16C -OSInitContext=0x800ED190 -OSDumpContext=0x800ED24C -OSSwitchFPUContext=0x800ED4F4 -__OSContextInit=0x800ED578 -OSFillFPUContext=0x800ED5C0 -OSReport=0x800ED6EC -OSPanic=0x800ED76C -OSSetErrorHandler=0x800ED898 -__OSUnhandledException=0x800EDAB0 -GetFontCode=0x800EDD98 -Decode=0x800EDF34 -OSGetFontEncode=0x800EE0A8 -ReadROM=0x800EE100 -OSLoadFont=0x800EE18C -ExpandFontSheet=0x800EE4C0 -OSInitFont=0x800EE870 -OSGetFontTexture=0x800EE950 -OSGetFontWidth=0x800EEAF8 -OSDisableInterrupts=0x800EEC38 -OSEnableInterrupts=0x800EEC4C -OSRestoreInterrupts=0x800EEC60 -__OSSetInterruptHandler=0x800EEC84 -__OSGetInterruptHandler=0x800EECA0 -__OSInterruptInit=0x800EECB4 -SetInterruptMask=0x800EED28 -__OSMaskInterrupts=0x800EF000 -__OSUnmaskInterrupts=0x800EF088 -__OSDispatchInterrupt=0x800EF110 -ExternalInterruptHandler=0x800EF454 -__OSModuleInit=0x800EF4A4 -OSInitMessageQueue=0x800EF4BC -OSSendMessage=0x800EF51C -OSReceiveMessage=0x800EF5E4 -OSJamMessage=0x800EF6C0 -OnReset=0x800EF794 -MEMIntrruptHandler=0x800EF7D0 -OSProtectRange=0x800EF83C -Config24MB=0x800EF900 -Config48MB=0x800EF980 -RealMode=0x800EFA00 -__OSInitMemoryProtection=0x800EFA18 -OSInitMutex=0x800EFB30 -OSLockMutex=0x800EFB68 -OSUnlockMutex=0x800EFC44 -__OSUnlockAllMutex=0x800EFD0C -OSTryLockMutex=0x800EFD7C -OSInitCond=0x800EFE38 -OSWaitCond=0x800EFE58 -OSSignalCond=0x800EFF2C -Run=0x800EFF4C -Callback=0x800EFF5C -__OSReboot=0x800EFF68 -OSSetSaveRegion=0x800F0298 -OSRegisterResetFunction=0x800F02A4 -Reset=0x800F0328 -__OSDoHotReset=0x800F0398 -OSResetSystem=0x800F03E0 -OSGetResetCode=0x800F069C -__OSResetSWInterruptHandler=0x800F06D0 -OSGetResetButtonState=0x800F07C4 -OSGetResetSwitchState=0x800F0A5C -WriteSramCallback=0x800F0A7C -WriteSram=0x800F0ADC -__OSInitSram=0x800F0BF4 -__OSLockSram=0x800F0D30 -__OSLockSramEx=0x800F0D8C -UnlockSram=0x800F0DE8 -__OSUnlockSram=0x800F1124 -__OSUnlockSramEx=0x800F1148 -__OSSyncSram=0x800F116C -__OSReadROM=0x800F117C -OSGetSoundMode=0x800F12A0 -OSSetSoundMode=0x800F1320 -OSGetProgressiveMode=0x800F13C4 -OSSetProgressiveMode=0x800F1434 -OSSetEuRgb60Mode=0x800F14D8 -OSGetWirelessID=0x800F157C -OSSetWirelessID=0x800F1600 -OSGetGbsMode=0x800F16AC -OSSetGbsMode=0x800F171C -SystemCallVector=0x800F17D4 -__OSInitSystemCall=0x800F17F4 -DefaultSwitchThreadCallback=0x800F1858 -__OSThreadInit=0x800F185C -OSInitThreadQueue=0x800F19B4 -OSGetCurrentThread=0x800F19C4 -OSIsThreadTerminated=0x800F19D0 -OSDisableScheduler=0x800F1A04 -OSEnableScheduler=0x800F1A44 -UnsetRun=0x800F1A84 -__OSGetEffectivePriority=0x800F1AEC -SetEffectivePriority=0x800F1B28 -__OSPromoteThread=0x800F1CE8 -SelectThread=0x800F1D38 -__OSReschedule=0x800F1F60 -OSYieldThread=0x800F1F90 -OSCreateThread=0x800F1FCC -OSExitThread=0x800F21B4 -OSCancelThread=0x800F2298 -OSDetachThread=0x800F2454 -OSResumeThread=0x800F24F4 -OSSuspendThread=0x800F277C -OSSleepThread=0x800F28EC -OSWakeupThread=0x800F29D8 -OSGetThreadPriority=0x800F2ADC -OSClearStack=0x800F2AE4 -OSGetTime=0x800F2B90 -OSGetTick=0x800F2BA8 -__OSGetSystemTime=0x800F2BB0 -GetDates=0x800F2C14 -OSTicksToCalendarTime=0x800F2DB0 -__init_user=0x800F2FB4 -__init_cpp=0x800F2FD4 -_ExitProcess=0x800F3028 -ClampStick=0x800F3048 -ClampCircle=0x800F3178 -PADClamp=0x800F3320 -PADClampCircle=0x800F3434 -UpdateOrigin=0x800F3540 -PADOriginCallback=0x800F36E4 -PADOriginUpdateCallback=0x800F37A8 -PADProbeCallback=0x800F3874 -PADTypeAndStatusCallback=0x800F394C -PADReceiveCheckCallback=0x800F3C78 -PADReset=0x800F3DB8 -PADRecalibrate=0x800F3EC8 -PADInit=0x800F3FDC -PADRead=0x800F412C -PADControlMotor=0x800F442C -PADSetSpec=0x800F44E4 -SPEC0_MakeStatus=0x800F4544 -SPEC1_MakeStatus=0x800F46B8 -SPEC2_MakeStatus=0x800F482C -PADSetAnalogMode=0x800F4C9C -OnReset=0x800F4D10 -SamplingHandler=0x800F4DCC -PADSetSamplingCallback=0x800F4E2C -__PADDisableRecalibration=0x800F4E80 -SIBusy=0x800F4EFC -SIIsChanBusy=0x800F4F1C -CompleteTransfer=0x800F4F58 -SIInterruptHandler=0x800F5254 -SIEnablePollingInterrupt=0x800F5598 -SIRegisterPollingHandler=0x800F5630 -SIUnregisterPollingHandler=0x800F56FC -SIInit=0x800F57F0 -__SITransfer=0x800F58A4 -SIGetStatus=0x800F5AB0 -SISetCommand=0x800F5B2C -SITransferCommands=0x800F5B40 -SISetXY=0x800F5B50 -SIEnablePolling=0x800F5BBC -SIDisablePolling=0x800F5C58 -SIGetResponseRaw=0x800F5CC4 -SIGetResponse=0x800F5D98 -AlarmHandler=0x800F5E5C -SITransfer=0x800F5EE8 -GetTypeCallback=0x800F6054 -SIGetType=0x800F62EC -SIGetTypeAsync=0x800F64B0 -SIDecodeType=0x800F65EC -SIProbe=0x800F6738 -SISetSamplingRate=0x800F675C -SIRefreshSamplingRate=0x800F6840 -AIRegisterDMACallback=0x800F6864 -AIInitDMA=0x800F68A8 -AIStartDMA=0x800F6930 -AIStopDMA=0x800F6948 -AISetStreamPlayState=0x800F6960 -AIGetStreamPlayState=0x800F6A38 -AISetDSPSampleRate=0x800F6A48 -AIGetDSPSampleRate=0x800F6B28 -__AI_set_stream_sample_rate=0x800F6B3C -AIGetStreamSampleRate=0x800F6C10 -AISetStreamVolLeft=0x800F6C20 -AIGetStreamVolLeft=0x800F6C3C -AISetStreamVolRight=0x800F6C4C -AIGetStreamVolRight=0x800F6C68 -AIInit=0x800F6C78 -__AISHandler=0x800F6DE4 -__AIDHandler=0x800F6E60 -__AICallbackStackSwitch=0x800F6F0C -__AI_SRC_INIT=0x800F6F64 -THPVideoDecode=0x800F7148 -__THPSetupBuffers=0x800F738C -__THPReadFrameHeader=0x800F73D0 -__THPReadScaneHeader=0x800F750C -__THPReadQuantizationTable=0x800F7628 -__THPReadHuffmanTableSpecification=0x800F79E4 -__THPHuffGenerateSizeTable=0x800F7BC4 -__THPHuffGenerateCodeTable=0x800F7CB4 -__THPHuffGenerateDecoderTables=0x800F7D1C -__THPRestartDefinition=0x800F7ED8 -__THPPrepBitStream=0x800F7F2C -__THPDecompressYUV=0x800F8178 -__THPDecompressiMCURow512x448=0x800F8284 -__THPDecompressiMCURow640x480=0x800F9D0C -__THPDecompressiMCURowNxN=0x800FB798 -__THPHuffDecodeDCTCompY=0x800FD244 -__THPHuffDecodeDCTCompU=0x800FD8C0 -__THPHuffDecodeDCTCompV=0x800FDF68 -THPInit=0x800FE610 -THPAudioDecode=0x800FE6B0 -__THPAudioGetNewSample=0x800FEA60 -__THPAudioInitialize=0x800FEAF0 -ShortCommandProc=0x800FEB2C -GBAInit=0x800FEB80 -GBAGetStatus=0x800FEC40 -GBAReset=0x800FECD0 -OnReset=0x800FED60 -ReadProc=0x800FED70 -GBARead=0x800FEDD0 -WriteProc=0x800FEE64 -GBAWrite=0x800FEE94 -__GBAHandler=0x800FEF58 -__GBASyncCallback=0x800FF034 -__GBASync=0x800FF068 -TypeAndStatusCallback=0x800FF0D4 -__GBATransfer=0x800FF1F8 -animation__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase=0x800FF26C -isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase=0x800FF364 -isAlive__Q24Game8CreatureFv=0x800FF544 -init__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBasePQ24Game8StateArg=0x800FF550 -update__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase=0x800FF6F8 -cleanup__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase=0x800FF764 -isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM24BirthTypeDropPikminStateFPQ24Game9EnemyBase=0x800FF794 -isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM24BirthTypeDropOlimarStateFPQ24Game9EnemyBase=0x800FF958 -isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM26BirthTypeDropTreasureStateFPQ24Game9EnemyBase=0x800FFB00 -getPosition__Q24Game6PelletFv=0x800FFC8C -isFinishableWaitingBirthTypeDrop__Q34Game12EnemyBaseFSM28BirthTypeDropEarthquakeStateFPQ24Game9EnemyBase=0x800FFCA8 -entry__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase=0x800FFCB0 -init__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBasePQ24Game8StateArg=0x800FFCD4 -getPosition__Q24Game9EnemyBaseFv=0x800FFDD0 -update__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase=0x800FFDEC -cleanup__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBase=0x800FFF1C -simulation__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBasef=0x800FFF38 -getCreatureID__Q24Game9EnemyBaseFv=0x80100044 -getCreatureName__Q24Game9EnemyBaseFv=0x8010004C -entry__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase=0x80100084 -updateCullingOff__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase=0x801000C4 -updateAlways__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase=0x801000F4 -update__Q34Game12EnemyBaseFSM11LivingStateFPQ24Game9EnemyBase=0x80100124 -updateCullingOff__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase=0x801002E0 -init__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBasePQ24Game8StateArg=0x80100328 -cleanup__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase=0x80100478 -updateAlways__Q34Game12EnemyBaseFSM8FitStateFPQ24Game9EnemyBase=0x801004F8 -init__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBasePQ24Game8StateArg=0x801006FC -cleanup__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBase=0x80100784 -updateCullingOff__Q34Game12EnemyBaseFSM15EarthquakeStateFPQ24Game9EnemyBase=0x801007D4 -isFlying__Q24Game9EnemyBaseFv=0x8010092C -bounceProcedure__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBasePQ23Sys8Triangle=0x80100938 -init__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010099C -cleanup__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase=0x80100A9C -updateAlways__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase=0x80100B68 -updateCullingOff__Q34Game12EnemyBaseFSM10StoneStateFPQ24Game9EnemyBase=0x80100C80 -init__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase=0x80100CF4 -__dt__Q23efx10TEnemyPiyoFv=0x80101178 -__dt__Q23efx9TChasePosFv=0x80101214 -__dt__Q23efx5TSyncFv=0x80101298 -update__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase=0x80101304 -update__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase=0x80101334 -entry__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase=0x80101338 -entry__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBase=0x80101368 -simulation__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasef=0x8010136C -simulation__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBasef=0x8010139C -__ct__Q24Game9EnemyBaseFv=0x801013A0 -__dt__Q28SysShape8KeyEventFv=0x80101710 -__ct__11BitFlag
        Fv=0x80101770 -constructor__Q24Game9EnemyBaseFv=0x80101788 -createEffects__Q24Game9EnemyBaseFv=0x801017CC -fadeEffects__Q24Game9EnemyBaseFv=0x80101828 -createInstanceEfxHamon__Q24Game9EnemyBaseFv=0x80101884 -updateEfxHamon__Q24Game9EnemyBaseFv=0x801018D4 -createEfxHamon__Q24Game9EnemyBaseFv=0x80101904 -fadeEfxHamon__Q24Game9EnemyBaseFv=0x80101940 -setEmotionCaution__Q24Game9EnemyBaseFv=0x8010197C -setEmotionExcitement__Q24Game9EnemyBaseFv=0x801019CC -setEmotionNone__Q24Game9EnemyBaseFv=0x80101A08 -onInit__Q24Game9EnemyBaseFPQ24Game15CreatureInitArg=0x80101A58 -onInitPost__Q24Game9EnemyBaseFPQ24Game15CreatureInitArg=0x80101B5C -setOtakaraCode__Q24Game9EnemyBaseFRQ34Game9PelletMgr15OtakaraItemCode=0x80101D74 -setKilled__Q23PSM9EnemyBaseFv=0x80101E14 -setCarcassArg__Q24Game9EnemyBaseFRQ24Game13PelletViewArg=0x80101E18 -doBecomeCarcass__Q24Game9EnemyBaseFv=0x80101EDC -doUpdateCarcass__Q24Game9EnemyBaseFv=0x80101EE4 -onKill__Q24Game9EnemyBaseFPQ24Game15CreatureKillArg=0x80101EE8 -setVelocity__Q24Game8BaseItemFR10Vector3=0x801028D4 -getBoundingSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere=0x801028F0 -getName__Q24Game15CreatureKillArgFv=0x80102914 -setZukanVisible__Q24Game9EnemyBaseFb=0x80102920 -birth__Q24Game9EnemyBaseFR10Vector3f=0x80102A00 -updateTrMatrix__Q24Game9EnemyBaseFv=0x80102B60 -setParameters__Q24Game9EnemyBaseFv=0x80102BD8 -update__Q24Game9EnemyBaseFv=0x80102C50 -isFinishableWaitingBirthTypeDrop__Q24Game9EnemyBaseFv=0x80102C84 -startStoneState__Q24Game9EnemyBaseFv=0x80102E64 -doStartStoneState__Q24Game9EnemyBaseFv=0x80102EF4 -doFinishStoneState__Q24Game9EnemyBaseFv=0x80102F08 -getWalkSmokeEffectMgr__Q24Game9EnemyBaseFv=0x80102F0C -doUpdateCommon__Q24Game9EnemyBaseFv=0x80102F14 -doAnimation__Q24Game9EnemyBaseFv=0x80102F94 -animation__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase=0x80102FC8 -doAnimationUpdateAnimator__Q24Game9EnemyBaseFv=0x80102FF8 -doAnimationCullingOff__Q24Game9EnemyBaseFv=0x80103080 -onSetPositionPost__Q24Game9EnemyBaseFR10Vector3=0x80103260 -onSetPosition__Q24Game9EnemyBaseFR10Vector3=0x80103280 -doAnimationStick__Q24Game9EnemyBaseFv=0x8010329C -doAnimationCullingOn__Q24Game9EnemyBaseFv=0x80103318 -show__Q24Game9EnemyBaseFv=0x80103338 -hide__Q24Game9EnemyBaseFv=0x801033B4 -doEntryCarcass__Q24Game9EnemyBaseFv=0x80103408 -doEntryLiving__Q24Game9EnemyBaseFv=0x80103510 -doEntry__Q24Game9EnemyBaseFv=0x8010364C -doSetView__Q24Game9EnemyBaseFi=0x80103680 -isCullingOff__Q24Game9EnemyBaseFv=0x801036A8 -doViewCalc__Q24Game9EnemyBaseFv=0x801036FC -doSimulationGround__Q24Game9EnemyBaseFf=0x80103774 -doSimulationFlying__Q24Game9EnemyBaseFf=0x80103820 -doSimulationStick__Q24Game9EnemyBaseFf=0x80103878 -updateSpheres__Q24Game9EnemyBaseFv=0x801038D0 -createDropEffect__Q24Game9EnemyBaseFRC10Vector3f=0x80103940 -createSplashDownEffect__Q24Game9EnemyBaseFRC10Vector3f=0x801039F8 -createBounceEffect__Q24Game9EnemyBaseFRC10Vector3f=0x80103B50 -outWaterCallback__Q24Game9EnemyBaseFv=0x80103D2C -inWaterCallback__Q24Game9EnemyBaseFPQ24Game8WaterBox=0x80103E94 -finishDropping__Q24Game9EnemyBaseFb=0x80103FFC -bounceProcedure__Q24Game9EnemyBaseFPQ23Sys8Triangle=0x80104288 -bounceProcedure__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasePQ23Sys8Triangle=0x80104308 -bounceProcedure__Q34Game12EnemyBaseFSM5StateFPQ24Game9EnemyBasePQ23Sys8Triangle=0x80104338 -bounceCallback__Q24Game8CreatureFPQ23Sys8Triangle=0x8010433C -collisionMapAndPlat__Q24Game9EnemyBaseFf=0x80104340 -constraintBoundBox__Q24Game6MapMgrFRQ23Sys6Sphere=0x80104A14 -hasHiddenCollision__Q24Game6MapMgrFv=0x80104A18 -wallCallback__Q24Game9EnemyBaseFRCQ24Game8MoveInfo=0x80104A20 -getOffsetForMapCollision__Q24Game9EnemyBaseFv=0x80104A24 -doSimulationCarcass__Q24Game9EnemyBaseFf=0x80104A38 -doSimulation__Q24Game9EnemyBaseFf=0x80104A58 -doSimulationConstraint__Q24Game9EnemyBaseFf=0x80104A8C -gotoHell__Q24Game9EnemyBaseFv=0x80104B64 -setAnimMgr__Q24Game9EnemyBaseFPQ28SysShape7AnimMgr=0x80104BD4 -setPSEnemyBaseAnime__Q24Game9EnemyBaseFv=0x80104C04 -startBlend__Q24Game9EnemyBaseFiiPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener=0x80104DB8 -endBlend__Q24Game9EnemyBaseFv=0x80104FA8 -getTypeID__Q24Game17EnemyAnimatorBaseFv=0x80104FF8 -startMotion__Q24Game9EnemyBaseFiPQ28SysShape14MotionListener=0x80105004 -setMotionFrame__Q24Game9EnemyBaseFf=0x80105228 -getMotionFrame__Q24Game9EnemyBaseFv=0x8010526C -finishMotion__Q24Game9EnemyBaseFv=0x801052A0 -onKeyEvent__Q24Game9EnemyBaseFRCQ28SysShape8KeyEvent=0x801052E0 -stimulate__Q24Game9EnemyBaseFRQ24Game11Interaction=0x80105300 -actEnemy__Q24Game11InteractionFPQ24Game9EnemyBase=0x80105380 -actCommon__Q24Game11InteractionFPQ24Game8Creature=0x80105388 -lifeRecover__Q24Game9EnemyBaseFv=0x80105390 -scaleDamageAnim__Q24Game9EnemyBaseFv=0x801053C0 -finishScaleDamageAnim__Q24Game9EnemyBaseFv=0x801056FC -deathProcedure__Q24Game9EnemyBaseFv=0x80105720 -getCastType__Q23PSM9EnemyBaseFv=0x80105818 -throwupItemInDeathProcedure__Q24Game9EnemyBaseFv=0x80105820 -setAlive__Q24Game8CreatureFb=0x8010584C -createDeadBombEffect__Q24Game9EnemyBaseFv=0x80105874 -getThrowupItemPosition__Q24Game9EnemyBaseFP10Vector3=0x8010594C -getThrowupItemVelocity__Q24Game9EnemyBaseFP10Vector3=0x801059A0 -throwupItem__Q24Game9EnemyBaseFv=0x801059B8 -createKiraEffect__Q24Game6PelletFR10Vector3=0x80105E68 -doDebugDraw__Q24Game9EnemyBaseFR8Graphics=0x80105E6C -getLifeGaugeParam__Q24Game9EnemyBaseFRQ24Game14LifeGaugeParam=0x80105E70 -doGetLifeGaugeParam__Q24Game9EnemyBaseFRQ24Game14LifeGaugeParam=0x80105EF0 -onStickStart__Q24Game9EnemyBaseFPQ24Game8Creature=0x80105F30 -onStickEnd__Q24Game9EnemyBaseFPQ24Game8Creature=0x80105F80 -injure__Q24Game9EnemyBaseFv=0x80105FD0 -addDamage__Q24Game9EnemyBaseFff=0x8010602C -damageCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart=0x8010606C -pressCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart=0x801060B4 -flyCollisionCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart=0x801060BC -hipdropCallBack__Q24Game9EnemyBaseFPQ24Game8CreaturefP8CollPart=0x801060C4 -dropCallBack__Q24Game9EnemyBaseFPQ24Game8Creature=0x8010630C -isBeforeAppearState__Q24Game9EnemyBaseFv=0x80106314 -checkBirthTypeDropEarthquake__Q24Game9EnemyBaseFv=0x80106354 -earthquakeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef=0x801063C4 -dopeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturei=0x801064B0 -doDopeCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturei=0x801065B8 -farmCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef=0x801065C0 -bombCallBack__Q24Game9EnemyBaseFPQ24Game8CreatureR10Vector3f=0x801065C8 -collisionCallback__Q24Game9EnemyBaseFRQ24Game9CollEvent=0x80106610 -setCollEvent__Q24Game9EnemyBaseFRQ24Game9CollEvent=0x80106664 -resetCollEvent__Q24Game9EnemyBaseFv=0x8010668C -changeMaterial__Q24Game9EnemyBaseFv=0x8010669C -viewGetShape__Q24Game9EnemyBaseFv=0x801066A0 -viewStartCarryMotion__Q24Game9EnemyBaseFv=0x801066A8 -viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x801066C8 -startCarcassMotion__Q24Game9EnemyBaseFv=0x80106708 -viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8010691C -view_start_carrymotion__Q24Game9EnemyBaseFv=0x80106A4C -view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80106A78 -getCommonEffectPos__Q24Game9EnemyBaseFR10Vector3=0x80106AB8 -getWaterSphere__Q24Game9EnemyBaseFPQ23Sys6Sphere=0x80106B60 -updateWaterBox__Q24Game9EnemyBaseFv=0x80106BA0 -inWater__Q24Game8WaterBoxFRQ23Sys6Sphere=0x80106CE8 -createPSEnemyBase__Q24Game9EnemyBaseFv=0x80106CF0 -__dt__Q23PSM8EnemyBigFv=0x80106F6C -__dt__Q23PSM9EnemyBaseFv=0x801070D0 -startMotion__Q24Game9EnemyBaseFv=0x80107204 -getMotionFrameMax__Q24Game9EnemyBaseFv=0x80107220 -getFirstKeyFrame__Q24Game9EnemyBaseFv=0x80107278 -stopMotion__Q24Game9EnemyBaseFv=0x801072E0 -isFinishMotion__Q24Game9EnemyBaseFv=0x80107300 -isStopMotion__Q24Game9EnemyBaseFv=0x80107338 -getCurrAnimIndex__Q24Game9EnemyBaseFv=0x80107348 -setAnimSpeed__Q24Game9EnemyBaseFf=0x80107390 -resetAnimSpeed__Q24Game9EnemyBaseFv=0x8010739C -resetAnimSpeed__Q24Game17EnemyAnimatorBaseFv=0x801073CC -getJAIObject__Q24Game9EnemyBaseFv=0x801073D8 -getPSCreature__Q24Game9EnemyBaseFv=0x801073EC -getStateID__Q24Game9EnemyBaseFv=0x801073F4 -needShadow__Q24Game9EnemyBaseFv=0x80107410 -isAlwaysMovieActor__Q24Game12EnemyMgrBaseFv=0x801074BC -isMovieActor__Q24Game8CreatureFv=0x801074C4 -eatWhitePikminCallBack__Q24Game9EnemyBaseFPQ24Game8Creaturef=0x801074D0 -__dt__Q34Game10EnemyStone8DrawInfoFv=0x80107704 -getDownSmokeScale__Q24Game9EnemyBaseFv=0x80107764 -constraintOff__Q24Game9EnemyBaseFv=0x8010776C -hardConstraintOn__Q24Game9EnemyBaseFv=0x8010777C -hardConstraintOff__Q24Game9EnemyBaseFv=0x80107794 -startMovie__Q24Game9EnemyBaseFv=0x801077BC -doStartMovie__Q24Game9EnemyBaseFv=0x80107840 -endMovie__Q24Game9EnemyBaseFv=0x80107844 -doEndMovie__Q24Game9EnemyBaseFv=0x801078C8 -doStartEarthquakeState__Q24Game9EnemyBaseFf=0x801078CC -doFinishEarthquakeState__Q24Game9EnemyBaseFv=0x80107960 -doStartEarthquakeFitState__Q24Game9EnemyBaseFv=0x80107964 -doFinishEarthquakeFitState__Q24Game9EnemyBaseFv=0x80107968 -startWaitingBirthTypeDrop__Q24Game9EnemyBaseFv=0x8010796C -doStartWaitingBirthTypeDrop__Q24Game9EnemyBaseFv=0x80107998 -finishWaitingBirthTypeDrop__Q24Game9EnemyBaseFv=0x8010799C -doFinishWaitingBirthTypeDrop__Q24Game9EnemyBaseFv=0x801079C8 -isBirthTypeDropGroup__Q24Game9EnemyBaseFv=0x80107A2C -getFitEffectPos__Q24Game9EnemyBaseFv=0x80107A68 -setDroppingMassZero__Q24Game9EnemyBaseFv=0x80107A70 -resetDroppingMassZero__Q24Game9EnemyBaseFv=0x80107A88 -__dt__Q23PSM10EnemyHekoiFv=0x80107AA0 -getCastType__Q23PSM10EnemyHekoiFv=0x80107C04 -getJAIObject__Q23PSM13CreatureAnimeFv=0x80107C0C -getHandleArea__Q23PSM13CreatureAnimeFUc=0x80107C1C -getName__Q24Game13PelletInitArgFv=0x80107C2C -getName__Q24Game12EnemyKillArgFv=0x80107C38 -getName__Q23efx8ArgScaleFv=0x80107C44 -getName__Q34Game9ItemHoney7InitArgFv=0x80107C50 -actPiki__Q24Game11InteractionFPQ24Game4Piki=0x80107C5C -actNavi__Q24Game11InteractionFPQ24Game4Navi=0x80107C64 -actPellet__Q24Game11InteractionFPQ24Game6Pellet=0x80107C6C -actOnyon__Q24Game11InteractionFPQ24Game5Onyon=0x80107C74 -actItem__Q24Game11InteractionFPQ24Game8BaseItem=0x80107C7C -__dt__Q24Game9EnemyBaseFv=0x80107C84 -doSimpleDraw__Q24Game9EnemyBaseFP8Viewport=0x80107D0C -getCellRadius__Q24Game9EnemyBaseFv=0x80107D10 -getBodyRadius__Q24Game9EnemyBaseFv=0x80107D1C -getFaceDir__Q24Game9EnemyBaseFv=0x80107D28 -setVelocity__Q24Game9EnemyBaseFR10Vector3=0x80107D30 -getVelocity__Q24Game9EnemyBaseFv=0x80107D4C -getVelocityAt__Q24Game9EnemyBaseFR10Vector3R10Vector3=0x80107D68 -isTeki__Q24Game9EnemyBaseFv=0x80107D9C -getSound_PosPtr__Q24Game9EnemyBaseFv=0x80107DA4 -initMouthSlots__Q24Game9EnemyBaseFv=0x80107DAC -initWalkSmokeEffect__Q24Game9EnemyBaseFv=0x80107DB0 -inWater__Q24Game9EnemyBaseFv=0x80107DB4 -getEfxHamonPos__Q24Game9EnemyBaseFP10Vector3=0x80107DC8 -getMouthSlots__Q24Game9EnemyBaseFv=0x80107DE4 -setLODSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere=0x80107DEC -getLODSphere__Q24Game9EnemyBaseFRQ23Sys6Sphere=0x80107E10 -getDamageCoeStoneState__Q24Game9EnemyBaseFv=0x80107E34 -getSound_CurrAnimFrame__Q24Game9EnemyBaseFv=0x80107E3C -getSound_CurrAnimSpeed__Q24Game9EnemyBaseFv=0x80107E70 -sound_culling__Q24Game9EnemyBaseFv=0x80107E7C -getCarcassArgHeight__Q24Game9EnemyBaseFv=0x80107EAC -viewGetBaseScale__Q24Game10PelletViewFv=0x80107EB4 -viewGetCollTreeJointIndex__Q24Game10PelletViewFv=0x80107EBC -viewGetCollTreeOffset__Q24Game10PelletViewFv=0x80107EC4 -viewEntryShape__Q24Game10PelletViewFR7MatrixfR10Vector3=0x80107EE4 -doDirectDraw__Q24Game8CreatureFR8Graphics=0x80107EE8 -onInitPosition__Q24Game8CreatureFR10Vector3=0x80107EEC -getFlockMgr__Q24Game8CreatureFv=0x80107EF0 -onStartCapture__Q24Game8CreatureFv=0x80107EF8 -onUpdateCapture__Q24Game8CreatureFR7Matrixf=0x80107EFC -onEndCapture__Q24Game8CreatureFv=0x80107F00 -isAtari__Q24Game8CreatureFv=0x80107F04 -setAtari__Q24Game8CreatureFb=0x80107F10 -isCollisionFlick__Q24Game8CreatureFv=0x80107F38 -setCollisionFlick__Q24Game8CreatureFb=0x80107F44 -isMovieExtra__Q24Game8CreatureFv=0x80107F6C -isMovieMotion__Q24Game8CreatureFv=0x80107F78 -setMovieMotion__Q24Game8CreatureFb=0x80107F84 -isBuried__Q24Game8CreatureFv=0x80107FAC -isUnderground__Q24Game8CreatureFv=0x80107FB4 -isLivingThing__Q24Game8CreatureFv=0x80107FBC -isDebugCollision__Q24Game8CreatureFv=0x80107FC4 -setDebugCollision__Q24Game8CreatureFb=0x80107FD0 -doSave__Q24Game8CreatureFR6Stream=0x80107FF8 -doLoad__Q24Game8CreatureFR6Stream=0x80107FFC -platCallback__Q24Game8CreatureFRQ24Game9PlatEvent=0x80108000 -getSound_AILOD__Q24Game8CreatureFv=0x80108004 -on_movie_begin__Q24Game8CreatureFb=0x8010800C -on_movie_end__Q24Game8CreatureFb=0x80108010 -movieStartAnimation__Q24Game8CreatureFUl=0x80108014 -movieStartDemoAnimation__Q24Game8CreatureFPQ28SysShape8AnimInfo=0x80108018 -movieSetAnimationLastFrame__Q24Game8CreatureFv=0x8010801C -movieSetTranslation__Q24Game8CreatureFR10Vector3f=0x80108020 -movieSetFaceDir__Q24Game8CreatureFf=0x80108024 -movieGotoPosition__Q24Game8CreatureFR10Vector3=0x80108028 -movieUserCommand__Q24Game8CreatureFUlPQ24Game11MoviePlayer=0x80108030 -getLODCylinder__Q24Game8CreatureFRQ23Sys8Cylinder=0x80108034 -startPick__Q24Game8CreatureFv=0x80108038 -endPick__Q24Game8CreatureFb=0x8010803C -getMabiki__Q24Game8CreatureFv=0x80108040 -getFootmarks__Q24Game8CreatureFv=0x80108048 -onStickStartSelf__Q24Game8CreatureFPQ24Game8Creature=0x80108050 -onStickEndSelf__Q24Game8CreatureFPQ24Game8Creature=0x80108054 -isSlotFree__Q24Game8CreatureFs=0x80108058 -getFreeStickSlot__Q24Game8CreatureFv=0x80108060 -getNearFreeStickSlot__Q24Game8CreatureFR10Vector3=0x80108068 -getRandomFreeStickSlot__Q24Game8CreatureFv=0x80108070 -onSlotStickStart__Q24Game8CreatureFPQ24Game8Creatures=0x80108078 -onSlotStickEnd__Q24Game8CreatureFPQ24Game8Creatures=0x8010807C -calcStickSlotGlobal__Q24Game8CreatureFsR10Vector3=0x80108080 -getAngularEffect__Q24Game8CreatureFR10Vector3R10Vector3=0x80108084 -ignoreAtari__Q24Game8CreatureFPQ24Game8Creature=0x8010808C -getSuckPos__Q24Game8CreatureFv=0x80108094 -getGoalPos__Q24Game8CreatureFv=0x801080CC -isSuckReady__Q24Game8CreatureFv=0x80108104 -isSuckArriveWait__Q24Game8CreatureFv=0x8010810C -getObjType__Q24Game8CreatureFv=0x80108114 -collisionUpdatable__Q24Game8CreatureFv=0x8010811C -deferPikiCollision__Q24Game10CellObjectFv=0x80108140 -__dt__Q24Game17EnemyAnimKeyEventFv=0x80108148 -view_start_carrymotion__Q24Game10PelletViewFv=0x801081B8 -view_finish_carrymotion__Q24Game10PelletViewFv=0x801081BC -viewStartPreCarryMotion__Q24Game10PelletViewFv=0x801081C0 -viewStartCarryMotion__Q24Game10PelletViewFv=0x801081C4 -viewOnPelletKilled__Q24Game10PelletViewFv=0x801081C8 -getCurrState__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBase=0x801081CC -setCurrState__Q34Game12EnemyBaseFSM12StateMachineFPQ24Game9EnemyBasePQ24Game13EnemyFSMState=0x801081D4 -exec__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase=0x801081DC -resume__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase=0x801081E0 -restart__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase=0x801081E4 -doDirectDraw__Q24Game13EnemyFSMStateFPQ24Game9EnemyBaseR8Graphics=0x801081E8 -init__Q24Game13EnemyFSMStateFPQ24Game9EnemyBasePQ24Game8StateArg=0x801081EC -cleanup__Q24Game13EnemyFSMStateFPQ24Game9EnemyBase=0x801081F0 -getName__Q23efx12ArgEnemyTypeFv=0x801081F4 -getName__Q23efx3ArgFv=0x80108200 -simulation__Q34Game12EnemyBaseFSM11AppearStateFPQ24Game9EnemyBasef=0x80108208 -entry__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase=0x8010820C -simulation__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBasef=0x80108210 -animation__Q34Game12EnemyBaseFSM18BirthTypeDropStateFPQ24Game9EnemyBase=0x80108214 -__sinit_enemyBase_cpp=0x80108218 -@376@onKeyEvent__Q24Game9EnemyBaseFRCQ28SysShape8KeyEvent=0x80108240 -@700@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80108248 -@700@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8010825C -@700@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80108270 -@700@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80108284 -@700@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80108298 -@700@12@viewGetShape__Q24Game9EnemyBaseFv=0x801082AC -@16@__dt__Q23PSM10EnemyHekoiFv=0x801082C0 -@48@startSound__Q23PSM13CreatureAnimeFUcUlUl=0x801082C8 -@48@startSound__Q23PSM13CreatureAnimeFPP8JAISoundUlUl=0x801082D0 -@48@startSound__Q23PSM13CreatureAnimeFUlUl=0x801082D8 -@48@__dt__Q23PSM10EnemyHekoiFv=0x801082E0 -@48@startAnimSound__Q23PSM9EnemyBaseFUlPP8JAISoundPQ27JAInter5ActorUc=0x801082E8 -@48@playActorAnimSound__Q23PSM13CreatureAnimeFPQ27JAInter5ActorfUc=0x801082F0 -@184@battleOff__Q23PSM9EnemyBaseFv=0x801082F8 -getValue__Q34Game8Pelplant21BlendAccelerationFuncFf=0x80108300 -birth__Q34Game8Pelplant3ObjFR10Vector3f=0x801083B0 -setInitialSetting__Q34Game8Pelplant3ObjFPQ24Game21EnemyInitialParamBase=0x80108464 -__ct__Q34Game8Pelplant3ObjFv=0x801086E4 -setFSM__Q34Game8Pelplant3ObjFPQ34Game8Pelplant3FSM=0x8010881C -__dt__Q24Game22EnemyBlendAnimatorBaseFv=0x80108868 -doUpdate__Q34Game8Pelplant3ObjFv=0x801088C4 -updateLODSphereRadius__Q34Game8Pelplant3ObjFi=0x801088F8 -doDirectDraw__Q34Game8Pelplant3ObjFR8Graphics=0x80108980 -doDebugDraw__Q34Game8Pelplant3ObjFR8Graphics=0x80108984 -getShadowParam__Q34Game8Pelplant3ObjFRQ24Game11ShadowParam=0x80108B10 -doAnimationUpdateAnimator__Q34Game8Pelplant3ObjFv=0x80108BD0 -getHeadScale__Q34Game8Pelplant3ObjFv=0x80108C60 -doAnimation__Q34Game8Pelplant3ObjFv=0x80108CB8 -doSimulation__Q34Game8Pelplant3ObjFf=0x80108E50 -setPelletColor__Q34Game8Pelplant3ObjFUsb=0x80108E54 -changePelletColor__Q34Game8Pelplant3ObjFv=0x80108F44 -attachPellet__Q34Game8Pelplant3ObjFv=0x801090D4 -damageCallBack__Q34Game8Pelplant3ObjFPQ24Game8CreaturefP8CollPart=0x801091E4 -isLivingThing__Q34Game8Pelplant3ObjFv=0x8010927C -farmCallBack__Q34Game8Pelplant3ObjFPQ24Game8Creaturef=0x80109288 -onStickStart__Q34Game8Pelplant3ObjFPQ24Game8Creature=0x80109300 -headJointCallBack__Q34Game8Pelplant3ObjFP8J3DJointi=0x80109360 -neckJointCallBack__Q34Game8Pelplant3ObjFP8J3DJointi=0x80109450 -__ct__Q34Game8Pelplant3MgrFiUc=0x80109554 -__dt__Q24Game12EnemyMgrBaseFv=0x801095A4 -doAlloc__Q34Game8Pelplant3MgrFv=0x8010963C -__ct__Q34Game8Pelplant5ParmsFv=0x80109684 -__ct__Q24Game14EnemyParmsBaseFv=0x8010979C -__ct__Q34Game14EnemyParmsBase5ParmsFv=0x80109970 -__ct__11BitFlagFv=0x8010A450 -birth__Q34Game8Pelplant3MgrFRQ24Game13EnemyBirthArg=0x8010A460 -onInit__Q34Game8Pelplant3ObjFPQ24Game15CreatureInitArg=0x8010A480 -doGetLifeGaugeParam__Q34Game8Pelplant3ObjFRQ24Game14LifeGaugeParam=0x8010A550 -__dt__Q34Game8Pelplant3MgrFv=0x8010A598 -getEnemyTypeID__Q34Game8Pelplant3MgrFv=0x8010A648 -createObj__Q34Game8Pelplant3MgrFi=0x8010A650 -__dt__Q34Game8Pelplant3ObjFv=0x8010A6B0 -getEnemy__Q34Game8Pelplant3MgrFi=0x8010A76C -initStoneSetting__Q34Game8Pelplant3MgrFv=0x8010A77C -get__Q24Game12EnemyMgrBaseFPv=0x8010A780 -getJ3DModelData__Q24Game12EnemyMgrBaseCFv=0x8010A7AC -getGenerator__Q24Game12EnemyMgrBaseCFv=0x8010A7B4 -getMaxObjects__Q24Game12EnemyMgrBaseCFv=0x8010A7BC -doSimpleDraw__16GenericObjectMgrFP8Viewport=0x8010A7C4 -loadResources__16GenericObjectMgrFv=0x8010A7C8 -resetMgr__16GenericObjectMgrFv=0x8010A7CC -pausable__16GenericObjectMgrFv=0x8010A7D0 -frozenable__16GenericObjectMgrFv=0x8010A7D8 -getMatrixLoadType__16GenericObjectMgrFv=0x8010A7E0 -getEnd__Q24Game12EnemyMgrBaseFv=0x8010A7E8 -getStart__Q24Game12EnemyMgrBaseFv=0x8010A7F0 -getObject__Q24Game12EnemyMgrBaseFPv=0x8010A820 -read__Q24Game14EnemyParmsBaseFR6Stream=0x8010A84C -read__Q24Game13CreatureParmsFR6Stream=0x8010A890 -read__Q34Game8Pelplant5ParmsFR6Stream=0x8010A8B0 -__dt__16GenericContainerFv=0x8010A900 -__dt__Q24Game13IEnemyMgrBaseFv=0x8010A960 -__dt__Q34Game8Pelplant14ProperAnimatorFv=0x8010A9E0 -animate__Q24Game22EnemyBlendAnimatorBaseFif=0x8010AA4C -getTypeID__Q24Game22EnemyBlendAnimatorBaseFv=0x8010AA6C -getEnemyTypeID__Q34Game8Pelplant3ObjFv=0x8010AA78 -size__7ParmFv=0x8010AA80 -size__7ParmFv=0x8010AA88 -@728@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8010AA90 -@728@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8010AAA4 -@728@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8010AAB8 -@728@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8010AACC -@728@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8010AAE0 -@728@12@viewGetShape__Q24Game9EnemyBaseFv=0x8010AAF4 -@4@__dt__Q24Game13IEnemyMgrBaseFv=0x8010AB08 -@4@__dt__Q34Game8Pelplant3MgrFv=0x8010AB10 -@4@getEnd__Q24Game12EnemyMgrBaseFv=0x8010AB18 -@4@getStart__Q24Game12EnemyMgrBaseFv=0x8010AB20 -@4@getNext__Q24Game12EnemyMgrBaseFPv=0x8010AB28 -@4@getObject__Q24Game12EnemyMgrBaseFPv=0x8010AB30 -init__Q34Game8Pelplant3FSMFPQ24Game9EnemyBase=0x8010AB38 -init__Q34Game8Pelplant14StateBlendAnimFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010AD18 -exec__Q34Game8Pelplant14StateBlendAnimFPQ24Game9EnemyBase=0x8010AD54 -__ct__Q34Game8Pelplant11StateWitherFiiii=0x8010ADD0 -init__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010AE68 -exec__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBase=0x8010AED8 -cleanup__Q34Game8Pelplant11StateWitherFPQ24Game9EnemyBase=0x8010AF54 -__ct__Q34Game8Pelplant9StateWaitFii=0x8010AF7C -init__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010B004 -exec__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBase=0x8010B148 -cleanup__Q34Game8Pelplant9StateWaitFPQ24Game9EnemyBase=0x8010B3C0 -__ct__Q34Game8Pelplant9StateGrowFiii=0x8010B3C4 -init__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010B408 -exec__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBase=0x8010B6E8 -cleanup__Q34Game8Pelplant9StateGrowFPQ24Game9EnemyBase=0x8010B748 -__ct__Q34Game8Pelplant11StateDamageFii=0x8010B74C -init__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010B78C -exec__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBase=0x8010B818 -cleanup__Q34Game8Pelplant11StateDamageFPQ24Game9EnemyBase=0x8010B880 -__ct__Q34Game8Pelplant9StateDeadFii=0x8010B890 -init__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010B8D0 -exec__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBase=0x8010B984 -cleanup__Q34Game8Pelplant9StateDeadFPQ24Game9EnemyBase=0x8010B9EC -forceKill__Q23efx8TSimple3Fv=0x8010B9F0 -fade__Q23efx8TSimple3Fv=0x8010B9F4 -forceKill__Q23efx8TSimple2Fv=0x8010B9F8 -fade__Q23efx8TSimple2Fv=0x8010B9FC -actEnemy__Q24Game15InteractHipdropFPQ24Game9EnemyBase=0x8010BA00 -actEnemy__Q24Game18InteractEarthquakeFPQ24Game9EnemyBase=0x8010BA7C -actEnemy__Q24Game13InteractPressFPQ24Game9EnemyBase=0x8010BAF0 -actEnemy__Q24Game20InteractFlyCollisionFPQ24Game9EnemyBase=0x8010BB30 -actEnemy__Q24Game14InteractAttackFPQ24Game9EnemyBase=0x8010BB70 -actEnemy__Q24Game12InteractDropFPQ24Game9EnemyBase=0x8010BC8C -actEnemy__Q24Game12InteractBombFPQ24Game9EnemyBase=0x8010BCC4 -createEnemyMgr__Q24Game15GeneralEnemyMgrFUcii=0x8010BD3C -__ct__Q24Game15GeneralEnemyMgrFv=0x8010CCE8 -__dt__Q24Game12EnemyMgrNodeFv=0x8010CEA4 -killAll__Q24Game15GeneralEnemyMgrFv=0x8010CF0C -killAll__Q24Game12EnemyMgrNodeFPQ24Game15CreatureKillArg=0x8010CF84 -setupSoundViewerAndBas__Q24Game15GeneralEnemyMgrFv=0x8010CFB4 -setupSoundViewerAndBas__Q24Game12EnemyMgrNodeFv=0x8010D000 -doAnimation__Q24Game15GeneralEnemyMgrFv=0x8010D030 -doAnimation__Q24Game12EnemyMgrNodeFv=0x8010D0BC -doEntry__Q24Game15GeneralEnemyMgrFv=0x8010D0EC -doEntry__Q24Game12EnemyMgrNodeFv=0x8010D144 -doSetView__Q24Game15GeneralEnemyMgrFi=0x8010D174 -doSetView__Q24Game12EnemyMgrNodeFi=0x8010D1DC -doViewCalc__Q24Game15GeneralEnemyMgrFv=0x8010D20C -doViewCalc__Q24Game12EnemyMgrNodeFv=0x8010D264 -doSimulation__Q24Game15GeneralEnemyMgrFf=0x8010D294 -doSimulation__Q24Game12EnemyMgrNodeFf=0x8010D2FC -doDirectDraw__Q24Game15GeneralEnemyMgrFR8Graphics=0x8010D32C -doDirectDraw__Q24Game12EnemyMgrNodeFR8Graphics=0x8010D394 -doSimpleDraw__Q24Game15GeneralEnemyMgrFP8Viewport=0x8010D3C4 -doSimpleDraw__Q24Game12EnemyMgrNodeFP8Viewport=0x8010D444 -getJ3DModelData__Q24Game15GeneralEnemyMgrFi=0x8010D474 -birth__Q24Game15GeneralEnemyMgrFiRQ24Game13EnemyBirthArg=0x8010D4C0 -getEnemyName__Q24Game15GeneralEnemyMgrFii=0x8010D57C -getEnemyID__Q24Game15GeneralEnemyMgrFPci=0x8010D5A4 -getIEnemyMgrBase__Q24Game15GeneralEnemyMgrFi=0x8010D5CC -allocateEnemys__Q24Game15GeneralEnemyMgrFUci=0x8010D5F8 -resetEnemyNum__Q24Game15GeneralEnemyMgrFv=0x8010D814 -addEnemyNum__Q24Game15GeneralEnemyMgrFiUcPQ24Game14GenObjectEnemy=0x8010D854 -getEnemyNum__Q24Game15GeneralEnemyMgrFib=0x8010DA80 -useHeap__Q24Game15GeneralEnemyMgrFv=0x8010DBF0 -getEnemyMgr__Q24Game15GeneralEnemyMgrFi=0x8010DCA4 -setMovieDraw__Q24Game15GeneralEnemyMgrFb=0x8010DCDC -endMovie__Q24Game12EnemyMgrNodeFv=0x8010DD74 -startMovie__Q24Game12EnemyMgrNodeFv=0x8010DDA4 -prepareDayendEnemies__Q24Game15GeneralEnemyMgrFv=0x8010DDD4 -next__37GeneralMgrIteratorFv=0x8010DEF0 -setFirst__37GeneralMgrIteratorFv=0x8010E000 -first__37GeneralMgrIteratorFv=0x8010E490 -createDayendEnemies__Q24Game15GeneralEnemyMgrFRQ23Sys6Sphere=0x8010E4BC -setDebugParm__Q24Game12EnemyMgrNodeFUl=0x8010F140 -resetDebugParm__Q24Game12EnemyMgrNodeFUl=0x8010F170 -__dt__Q24Game15GeneralEnemyMgrFv=0x8010F1A0 -getMatrixLoadType__Q24Game12EnemyMgrNodeFv=0x8010F254 -doEntry__16GenericObjectMgrFv=0x8010F25C -@24@getMatrixLoadType__Q24Game12EnemyMgrNodeFv=0x8010F260 -@24@doSimpleDraw__Q24Game12EnemyMgrNodeFP8Viewport=0x8010F268 -@24@doDirectDraw__Q24Game12EnemyMgrNodeFR8Graphics=0x8010F270 -@24@doSimulation__Q24Game12EnemyMgrNodeFf=0x8010F278 -@24@doViewCalc__Q24Game12EnemyMgrNodeFv=0x8010F280 -@24@doSetView__Q24Game12EnemyMgrNodeFi=0x8010F288 -@24@doEntry__Q24Game12EnemyMgrNodeFv=0x8010F290 -@24@doAnimation__Q24Game12EnemyMgrNodeFv=0x8010F298 -@4@__dt__Q24Game15GeneralEnemyMgrFv=0x8010F2A0 -setAnimMgr__Q34Game12KochappyBase14ProperAnimatorFPQ28SysShape7AnimMgr=0x8010F2A8 -getAnimator__Q34Game12KochappyBase14ProperAnimatorFi=0x8010F2B0 -__dt__Q34Game12KochappyBase14ProperAnimatorFv=0x8010F2B8 -getAnimator__Q34Game12KochappyBase14ProperAnimatorFv=0x8010F314 -__ct__Q34Game8Kochappy3ObjFv=0x8010F31C -setFSM__Q34Game12KochappyBase3ObjFPQ34Game12KochappyBase3FSM=0x8010F44C -__dt__Q24Game17EnemyAnimatorBaseFv=0x8010F498 -__dt__Q34Game12KochappyBase3ObjFv=0x8010F4E0 -changeMaterial__Q34Game8Kochappy3ObjFv=0x8010F59C -getChangeTexture__Q34Game8Kochappy3MgrFv=0x8010F740 -__dt__Q34Game8Kochappy3ObjFv=0x8010F748 -getEnemyTypeID__Q34Game8Kochappy3ObjFv=0x8010F834 -setAnimationSpeed__Q34Game12KochappyBase3ObjFf=0x8010F83C -getMouthSlots__Q34Game12KochappyBase3ObjFv=0x8010F85C -resetEnemyNonStone__Q34Game12KochappyBase3ObjFv=0x8010F864 -setEnemyNonStone__Q34Game12KochappyBase3ObjFv=0x8010F868 -getDownSmokeScale__Q34Game12KochappyBase3ObjFv=0x8010F86C -init__Q34Game12KochappyBase3FSMFPQ24Game9EnemyBase=0x8010F874 -__ct__Q34Game12KochappyBase10StatePressFi=0x8010FA0C -init__Q34Game12KochappyBase10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010FA48 -exec__Q34Game12KochappyBase10StatePressFPQ24Game9EnemyBase=0x8010FA9C -__ct__Q34Game12KochappyBase9StateWaitFi=0x8010FAEC -init__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010FB28 -exec__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBase=0x8010FBF0 -cleanup__Q34Game12KochappyBase9StateWaitFPQ24Game9EnemyBase=0x8010FEF8 -__ct__Q34Game12KochappyBase9StateDeadFi=0x8010FF1C -init__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8010FF58 -exec__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBase=0x8010FF98 -cleanup__Q34Game12KochappyBase9StateDeadFPQ24Game9EnemyBase=0x8010FFE8 -__ct__Q34Game12KochappyBase9StateTurnFi=0x8010FFEC -init__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x80110028 -exec__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBase=0x8011007C -cleanup__Q34Game12KochappyBase9StateTurnFPQ24Game9EnemyBase=0x8011078C -__ct__Q34Game12KochappyBase9StateWalkFi=0x801107B0 -init__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x801107F4 -exec__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBase=0x80110874 -cleanup__Q34Game12KochappyBase9StateWalkFPQ24Game9EnemyBase=0x80110F58 -__ct__Q34Game12KochappyBase11StateAttackFi=0x80110FA0 -init__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80110FDC -exec__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBase=0x80111024 -cleanup__Q34Game12KochappyBase11StateAttackFPQ24Game9EnemyBase=0x80111414 -__ct__Q34Game12KochappyBase10StateFlickFi=0x80111438 -init__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x8011147C -exec__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBase=0x80111510 -cleanup__Q34Game12KochappyBase10StateFlickFPQ24Game9EnemyBase=0x80111688 -__ct__Q34Game12KochappyBase15StateTurnToHomeFi=0x801116D8 -init__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80111718 -exec__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBase=0x80111838 -cleanup__Q34Game12KochappyBase15StateTurnToHomeFPQ24Game9EnemyBase=0x80111CA4 -__ct__Q34Game12KochappyBase11StateGoHomeFi=0x80111CA8 -init__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80111CE4 -exec__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBase=0x80111D48 -cleanup__Q34Game12KochappyBase11StateGoHomeFPQ24Game9EnemyBase=0x80112188 -__ct__Q34Game12KochappyBase9StateDemoFi=0x801121C8 -init__Q34Game12KochappyBase9StateDemoFPQ24Game9EnemyBasePQ24Game8StateArg=0x80112204 -enableTimer__Q24Game15BaseGameSectionFfUl=0x80112280 -getTimerType__Q24Game15BaseGameSectionFv=0x80112284 -__sinit_kochappyState_cpp=0x8011228C -__ct__Q34Game8Kochappy3MgrFiUc=0x801122B4 -__dt__Q34Game12KochappyBase3MgrFv=0x80112304 -doAlloc__Q34Game8Kochappy3MgrFv=0x801123B4 -__ct__Q34Game12KochappyBase5ParmsFv=0x801123FC -loadTexData__Q34Game8Kochappy3MgrFv=0x80112514 -__dt__Q34Game8Kochappy3MgrFv=0x8011255C -getEnemyTypeID__Q34Game8Kochappy3MgrFv=0x80112624 -createObj__Q34Game8Kochappy3MgrFi=0x8011262C -getEnemy__Q34Game8Kochappy3MgrFi=0x8011268C -read__Q34Game12KochappyBase5ParmsFR6Stream=0x8011269C -@4@__dt__Q34Game8Kochappy3MgrFv=0x801126EC -getNearestNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23Condition=0x801126F4 -isDone__22IteratorFv=0x80112B18 -getNearestPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23Condition=0x80112B64 -getPosition__Q24Game8FakePikiFv=0x80112FE8 -isDone__22IteratorFv=0x80113004 -getNearestPikminOrNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffPfP23ConditionP23Condition=0x80113050 -stimulate__Q24Game8CreatureFRQ24Game11Interaction=0x80113114 -flickStickPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition=0x8011311C -isDone__26IteratorFv=0x80113488 -flickNearbyPikmin__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition=0x801134D4 -flickNearbyNavi__Q24Game9EnemyFuncFPQ24Game8CreatureffffP23Condition=0x80113790 -eatPikmin__Q24Game9EnemyFuncFPQ24Game9EnemyBaseP23Condition=0x80113B34 -swallowPikmin__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition=0x80113E84 -attackNavi__Q24Game9EnemyFuncFPQ24Game8CreaturefffP8CollPartP23Condition=0x80114260 -isStartFlick__Q24Game9EnemyFuncFPQ24Game9EnemyBaseb=0x80114658 -isTherePikmin__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition=0x80114734 -isThereOlimar__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition=0x80114AC0 -getSurroundPikminNum__Q24Game9EnemyFuncFPQ24Game8CreaturefP23Condition=0x80114DF0 -getStickPikminColorNum__Q24Game9EnemyFuncFPQ24Game8Creaturei=0x801151B4 -walkToTarget__Q24Game9EnemyFuncFPQ24Game9EnemyBasePQ24Game8Creaturefff=0x80115400 -walkToTarget__Q24Game9EnemyFuncFPQ24Game9EnemyBaseR10Vector3fff=0x801155DC -satisfy__Q34Game9EnemyFunc25EatPikminDefaultConditionFPQ24Game4Piki=0x80115798 -satisfy__Q34Game9EnemyFunc21ConditionPikminNearbyFPQ24Game8Creature=0x80115818 -__ml__26IteratorFv=0x80115980 -next__26IteratorFv=0x801159B8 -first__26IteratorFv=0x80115A9C -__ml__22IteratorFv=0x80115B78 -next__22IteratorFv=0x80115BB0 -first__22IteratorFv=0x80115C94 -__ml__22IteratorFv=0x80115D70 -next__22IteratorFv=0x80115DA8 -first__22IteratorFv=0x80115E8C -__sinit_enemyAction_cpp=0x80115F68 -__ct__Q34Game6Chappy3ObjFv=0x80115F90 -setFSM__Q34Game10ChappyBase3ObjFPQ34Game10ChappyBase3FSM=0x801160D4 -__dt__Q34Game10ChappyBase3ObjFv=0x80116120 -changeMaterial__Q34Game6Chappy3ObjFv=0x801161DC -getChangeTexture1__Q34Game6Chappy3MgrFv=0x8011648C -getChangeTexture0__Q34Game6Chappy3MgrFv=0x80116494 -__dt__Q34Game6Chappy3ObjFv=0x8011649C -getEnemyTypeID__Q34Game6Chappy3ObjFv=0x80116588 -getMouthSlots__Q34Game10ChappyBase3ObjFv=0x80116590 -setAnimationSpeed__Q34Game10ChappyBase3ObjFf=0x80116598 -resetUnderGround__Q34Game10ChappyBase3ObjFv=0x801165B8 -setUnderGround__Q34Game10ChappyBase3ObjFv=0x801165BC -createFlickEffect__Q34Game10ChappyBase3ObjFv=0x801165C0 -createSmokeEffect__Q34Game10ChappyBase3ObjFv=0x801165C4 -getDownSmokeScale__Q34Game10ChappyBase3ObjFv=0x801165C8 -@740@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x801165D0 -@740@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x801165E4 -@740@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x801165F8 -@740@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8011660C -@740@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80116620 -@740@12@viewGetShape__Q24Game9EnemyBaseFv=0x80116634 -init__Q34Game10ChappyBase3FSMFPQ24Game9EnemyBase=0x80116648 -__ct__Q34Game10ChappyBase10StateSleepFi=0x80116798 -init__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBasePQ24Game8StateArg=0x801167D4 -exec__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBase=0x80116890 -cleanup__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBase=0x80116A40 -setNextState__Q34Game10ChappyBase10StateSleepFPQ24Game9EnemyBasei=0x80116AD8 -__ct__Q34Game10ChappyBase9StateDeadFi=0x80116B3C -init__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80116B90 -exec__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBase=0x80116BD0 -cleanup__Q34Game10ChappyBase9StateDeadFPQ24Game9EnemyBase=0x80116C34 -__ct__Q34Game10ChappyBase9StateTurnFi=0x80116C38 -init__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x80116C98 -exec__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBase=0x80116CF0 -cleanup__Q34Game10ChappyBase9StateTurnFPQ24Game9EnemyBase=0x801174E0 -__ct__Q34Game10ChappyBase9StateWalkFi=0x80117518 -init__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x8011756C -exec__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBase=0x801175C4 -cleanup__Q34Game10ChappyBase9StateWalkFPQ24Game9EnemyBase=0x80117DC0 -__ct__Q34Game10ChappyBase11StateAttackFi=0x80117E08 -init__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80117E5C -exec__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase=0x80117EA4 -transitState__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase=0x801181E0 -cleanup__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBase=0x801184D0 -doDirectDraw__Q34Game10ChappyBase11StateAttackFPQ24Game9EnemyBaseR8Graphics=0x801184F4 -__ct__Q34Game10ChappyBase10StateFlickFi=0x801184F8 -init__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x8011854C -exec__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBase=0x801185C4 -cleanup__Q34Game10ChappyBase10StateFlickFPQ24Game9EnemyBase=0x80118800 -__ct__Q34Game10ChappyBase15StateTurnToHomeFi=0x80118854 -init__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x801188B8 -exec__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBase=0x80118A08 -cleanup__Q34Game10ChappyBase15StateTurnToHomeFPQ24Game9EnemyBase=0x801190B4 -__ct__Q34Game10ChappyBase11StateGoHomeFi=0x801190B8 -init__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x8011910C -exec__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBase=0x80119138 -cleanup__Q34Game10ChappyBase11StateGoHomeFPQ24Game9EnemyBase=0x801196FC -setAnimMgr__Q34Game10ChappyBase14ProperAnimatorFPQ28SysShape7AnimMgr=0x80119710 -getAnimator__Q34Game10ChappyBase14ProperAnimatorFi=0x80119718 -__dt__Q34Game10ChappyBase14ProperAnimatorFv=0x80119720 -getAnimator__Q34Game10ChappyBase14ProperAnimatorFv=0x8011977C -__ct__Q34Game6Chappy3MgrFiUc=0x80119784 -__dt__Q34Game10ChappyBase3MgrFv=0x801197D4 -loadTexData__Q34Game6Chappy3MgrFv=0x80119884 -doAlloc__Q34Game6Chappy3MgrFv=0x801198F0 -__ct__Q34Game10ChappyBase5ParmsFv=0x80119938 -read__Q34Game10ChappyBase5ParmsFR6Stream=0x80119A64 -__dt__Q34Game6Chappy3MgrFv=0x80119AB4 -getEnemyTypeID__Q34Game6Chappy3MgrFv=0x80119B7C -createObj__Q34Game6Chappy3MgrFi=0x80119B84 -getEnemy__Q34Game6Chappy3MgrFi=0x80119BE4 -@4@__dt__Q34Game6Chappy3MgrFv=0x80119BF4 -__ct__9LifeGaugeFv=0x80119BFC -init__9LifeGaugeFUc=0x80119C30 -update__9LifeGaugeFf=0x80119C44 -draw__9LifeGaugeFfff=0x80119E10 -initLifeGaugeDraw__9LifeGaugeFv=0x80119FCC -drawOneTri__9LifeGaugeFP10Vector3R6Color4=0x8011A0DC -draw__13LifeGaugeListFR8Graphics=0x8011A1CC -__ct__12LifeGaugeMgrFv=0x8011A7D0 -__dt__13LifeGaugeListFv=0x8011A8AC -createLifeGauge__12LifeGaugeMgrFPQ24Game8Creature=0x8011A944 -activeLifeGauge__12LifeGaugeMgrFPQ24Game8Creaturef=0x8011AA94 -inactiveLifeGauge__12LifeGaugeMgrFPQ24Game8Creature=0x8011AB78 -update__12LifeGaugeMgrFv=0x8011AC20 -draw__12LifeGaugeMgrFR8Graphics=0x8011AE90 -loadResource__12LifeGaugeMgrFv=0x8011AF10 -__sinit_lifeGaugeMgr_cpp=0x8011AFA8 -disappear__9CarryInfoFv=0x8011AFD0 -update__9CarryInfoFRC14CarryInfoParam=0x8011AFDC -draw__9CarryInfoFR8GraphicsR14CarryInfoParam=0x8011B240 -drawNumber__9CarryInfoFR8GraphicsffiR6Color4f=0x8011B6EC -drawNumberPrim__9CarryInfoFR8GraphicsffiR6Color4f=0x8011BA14 -init__13CarryInfoListFv=0x8011BBC8 -update__13CarryInfoListFv=0x8011BBCC -draw__13CarryInfoListFR8Graphics=0x8011BC18 -getCarryInfoParam__13PokoInfoOwnerFR14CarryInfoParam=0x8011BC44 -isFinish__13CarryInfoListFv=0x8011BC80 -__ct__12CarryInfoMgrFi=0x8011BC94 -__dt__13PokoInfoOwnerFv=0x8011BD68 -__ct__13PokoInfoOwnerFv=0x8011BDD4 -__dt__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fv=0x8011BE4C -__dt__12CarryInfoMgrFv=0x8011BF88 -appearPoko__12CarryInfoMgrFRC10Vector3i=0x8011C0F8 -regist__12CarryInfoMgrFP14CarryInfoOwner=0x8011C1B8 -appear__12CarryInfoMgrFP14CarryInfoOwner=0x8011C1D8 -loadResource__12CarryInfoMgrFv=0x8011C218 -draw__12CarryInfoMgrFR8Graphics=0x8011C2B0 -update__12CarryInfoMgrFv=0x8011C448 -updatePokoInfoOwners__12CarryInfoMgrFv=0x8011C47C -scratch__12CarryInfoMgrFP14CarryInfoOwner=0x8011C584 -__dt__11InfoMgrBaseFv=0x8011C5A4 -init__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv=0x8011C5EC -__dt__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv=0x8011C5F0 -__dt__13CarryInfoListFv=0x8011C688 -scratch__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP14CarryInfoOwner=0x8011C730 -update__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fv=0x8011C774 -draw__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FR8Graphics=0x8011C800 -search__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoListP14CarryInfoOwner=0x8011C868 -update__46InfoListBase<14CarryInfoOwner,13CarryInfoList>Fv=0x8011C894 -draw__46InfoListBase<14CarryInfoOwner,13CarryInfoList>FR8Graphics=0x8011C898 -addInactiveList__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoList=0x8011C89C -regist__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP14CarryInfoOwner=0x8011C900 -__ct__41InfoMgr<14CarryInfoOwner,13CarryInfoList>Fi=0x8011C974 -addActiveList__41InfoMgr<14CarryInfoOwner,13CarryInfoList>FP13CarryInfoList=0x8011CC54 -__sinit_carryInfoMgr_cpp=0x8011CCB0 -@4@__dt__13PokoInfoOwnerFv=0x8011CCD8 -__ct__Q24Game20GameLightTimeSettingFv=0x8011CCE0 -__ct__Q24Game14GameFogSettingFv=0x8011D334 -read__Q24Game17GameShadowSettingFR6Stream=0x8011D508 -read__Q24Game14GameFogSettingFR6Stream=0x8011D528 -read__Q24Game20GameLightSettingBaseFR6Stream=0x8011D56C -__dt__Q24Game20GameLightTimeSettingFv=0x8011D58C -__ct__Q24Game20GameLightSpotSettingFPc=0x8011D5EC -read__Q24Game20GameSpotLightSettingFR6Stream=0x8011DD24 -__ct__Q24Game19GameLightMgrSettingFv=0x8011DD68 -__dt__Q24Game20GameLightSpotSettingFv=0x8011DF48 -__dt__Q24Game19GameLightSunSettingFv=0x8011DFA8 -updateNode__Q24Game19GameLightMgrSettingFv=0x8011E024 -read__Q24Game19GameLightMgrSettingFR6Stream=0x8011E098 -readOldVersion__Q24Game19GameLightMgrSettingF4ID32R6Stream=0x8011E388 -update__Q24Game18GameLightEventNodeFPQ24Game12GameLightMgr=0x8011E568 -updateCommon__Q24Game18GameLightEventNodeFPQ24Game12GameLightMgrb=0x8011E75C -calcColor__Q24Game18GameLightEventNodeFP6Color4=0x8011EAD8 -__ct__Q24Game12GameLightMgrFPc=0x8011EF3C -__dt__Q24Game18GameLightEventNodeFv=0x8011F24C -__ct__Q24Game18GameLightEventNodeFv=0x8011F2AC -__ct__10Vector3Fv=0x8011F348 -__dt__Q24Game19GameLightMgrSettingFv=0x8011F34C -__dt__8LightMgrFv=0x8011F428 -start__Q24Game12GameLightMgrFv=0x8011F4B8 -createEventLight__Q24Game12GameLightMgrFRQ24Game17GameLightEventArg=0x8011F4E4 -loadParm__Q24Game12GameLightMgrFR6Stream=0x8011F5A0 -calcSetting__Q24Game12GameLightMgrFPQ24Game20GameLightTimeSettingPQ24Game20GameLightTimeSettingPQ24Game20GameLightTimeSetting=0x8011F5E8 -updateSunType__Q24Game12GameLightMgrFv=0x801210D0 -updateSpotType__Q24Game12GameLightMgrFv=0x801212C0 -update__Q24Game12GameLightMgrFv=0x80121EC0 -set__Q24Game12GameLightMgrFR8Graphics=0x80121F54 -updatePosition__Q24Game12GameLightMgrFP8Viewport=0x80121FA8 -__dt__Q24Game12GameLightMgrFv=0x80122268 -__dt__15AmbientLightObjFv=0x801223BC -complement__4GameFfff=0x8012241C -__sinit_gameLightMgr_cpp=0x80122428 -__ct__Q24Game16FieldVtxColorMgrFP12J3DModelData=0x80122450 -createFieldVtxColorInfo__Q24Game16FieldVtxColorMgrFv=0x80122500 -__ct__Q24Game17FieldVtxColorInfoFv=0x801226F8 -initVtxColor__Q24Game16FieldVtxColorMgrFv=0x80122714 -calc__Q24Game16FieldVtxColorMgrFP15J3DVertexBuffer=0x801228DC -setupFieldVtxColorInfoFromStrip__Q24Game16FieldVtxColorMgrFPviiii=0x80122B5C -setupFieldVtxColorInfo__Q24Game16FieldVtxColorMgrFP8J3DShape=0x80122CB4 -createNewControl__Q24Game16FieldVtxColorMgrFR10Vector3ff=0x80122EC4 -setupFieldVtxColorControl__Q24Game16FieldVtxColorMgrFPQ24Game20FieldVtxColorControlR10Vector3ff=0x80122FEC -__dt__Q24Game16FieldVtxColorMgrFv=0x801231F0 -@12@__dt__Q24Game16FieldVtxColorMgrFv=0x80123270 -getEnemyInfo__Q24Game13EnemyInfoFuncFii=0x80123278 -getEnemyName__Q24Game13EnemyInfoFuncFii=0x801232DC -getEnemyResName__Q24Game13EnemyInfoFuncFii=0x80123350 -getEnemyMember__Q24Game13EnemyInfoFuncFii=0x801233F4 -getEnemyID__Q24Game13EnemyInfoFuncFPci=0x80123468 -setPower__Q34Game4Farm8ObstacleFf=0x801234F8 -__ct__Q34Game4Farm4FarmFv=0x80123528 -loadResource__Q34Game4Farm4FarmFUlPv=0x801235E4 -update__Q34Game4Farm4FarmFv=0x801237E4 -doAnimation__Q34Game4Farm4FarmFv=0x801237E8 -doEntry__Q34Game4Farm4FarmFv=0x8012381C -doSetView__Q34Game4Farm4FarmFUl=0x80123850 -doViewCalc__Q34Game4Farm4FarmFv=0x80123874 -addObstacle__Q34Game4Farm4FarmFPQ24Game8Creatureff=0x80123898 -getCreatureName__Q24Game8CreatureFv=0x80123908 -createNewObstacle__Q34Game4Farm4FarmFPQ24Game8Creatureff=0x80123914 -addPlant__Q34Game4Farm4FarmFPQ24Game8Creature=0x80123A28 -createNewPlant__Q34Game4Farm4FarmFPQ24Game8Creature=0x80123A6C -updateObjectRelation__Q34Game4Farm4FarmFb=0x80123B1C -doDebugDraw__Q34Game4Farm4FarmFR8Graphics=0x80123CF8 -initAllObjectNodes__Q34Game4Farm4FarmFv=0x80123E00 -__dt__Q34Game4Farm5PlantFv=0x80123EDC -__dt__Q34Game4Farm8ObstacleFv=0x80123F3C -__dt__Q34Game4Farm4FarmFv=0x80123F9C -__ct__Q34Game4Farm7FarmMgrFUl=0x80124018 -setupSound__Q34Game4Farm7FarmMgrFv=0x801240D8 -doAnimation__Q34Game4Farm7FarmMgrFv=0x80124104 -getJAIObject__Q24Game8CreatureFv=0x80124228 -doEntry__Q34Game4Farm7FarmMgrFv=0x80124230 -doSetView__Q34Game4Farm7FarmMgrFi=0x80124298 -doViewCalc__Q34Game4Farm7FarmMgrFv=0x801242F4 -doSimulation__Q34Game4Farm7FarmMgrFf=0x80124340 -doDirectDraw__Q34Game4Farm7FarmMgrFR8Graphics=0x80124344 -doDebugDraw__Q34Game4Farm7FarmMgrFR8Graphics=0x80124348 -addFarmBmd__Q34Game4Farm7FarmMgrFPv=0x80124398 -createNewFarm__Q34Game4Farm7FarmMgrFPv=0x80124400 -addObstacle__Q34Game4Farm7FarmMgrFPQ24Game8Creatureff=0x80124474 -addPlant__Q34Game4Farm7FarmMgrFPQ24Game8Creature=0x80124594 -initAllFarmObjectNodes__Q34Game4Farm7FarmMgrFv=0x80124684 -__dt__Q34Game4Farm7FarmMgrFv=0x801246D0 -__sinit_farmMgr_cpp=0x80124748 -@4@__dt__Q34Game4Farm7FarmMgrFv=0x80124770 -makeObjectEnemy__4GameFv=0x80124778 -__ct__Q24Game14GenObjectEnemyFv=0x801247B4 -initialise__Q24Game14GenObjectEnemyFv=0x80124884 -ramSaveParameters__Q24Game14GenObjectEnemyFR6Stream=0x80124910 -ramLoadParameters__Q24Game14GenObjectEnemyFR6Stream=0x80124914 -generate__Q24Game14GenObjectEnemyFPQ24Game9Generator=0x80124918 -birth__Q24Game14GenObjectEnemyFPQ24Game6GenArg=0x80124FCC -doWrite__Q24Game14GenObjectEnemyFR6Stream=0x801250AC -doWrite__Q24Game18EnemyGeneratorBaseFR6Stream=0x801252C4 -getLatestVersion__Q24Game18EnemyGeneratorBaseFv=0x801252C8 -doRead__Q24Game14GenObjectEnemyFR6Stream=0x801252D4 -doRead__Q24Game18EnemyGeneratorBaseFR6Stream=0x801254B8 -doReadOldVersion__Q24Game14GenObjectEnemyFR6Stream=0x801254BC -createEnemyGenerator__Q24Game14GenObjectEnemyFv=0x8012592C -__ct__Q24Game18EnemyGeneratorBaseFPc=0x80126764 -getShape__Q24Game14GenObjectEnemyFv=0x801267D0 -updateUseList__Q24Game14GenObjectEnemyFPQ24Game9Generatori=0x801267FC -render__Q24Game14GenObjectEnemyFR8GraphicsPQ24Game9Generator=0x8012683C -draw__Q24Game18EnemyGeneratorBaseFR8GraphicsPQ24Game9Generator=0x80126B58 -__dt__Q24Game18EnemyGeneratorBaseFv=0x80126B5C -getInitialParam__Q24Game18EnemyGeneratorBaseFv=0x80126BBC -getName__Q24Game6GenArgFv=0x80126BC4 -update__Q24Game9GenObjectFPQ24Game9Generator=0x80126BCC -generatorMakeMatrix__Q24Game9GenObjectFR7MatrixfR10Vector3=0x80126BD0 -getDebugInfo__Q24Game9GenObjectFPc=0x80126BF8 -doEvent__Q24Game7GenBaseFUl=0x80126BFC -__ct__Q24Game7TimeMgrFv=0x80126C00 -__ct__Q24Game12TimeMgrParmsFv=0x80126C90 -__ct__Q34Game12TimeMgrParms5ParmsFv=0x80126CC4 -init__Q24Game7TimeMgrFv=0x80126FF0 -setTime__Q24Game7TimeMgrFf=0x801270A0 -setStartTime__Q24Game7TimeMgrFv=0x801270DC -setEndTime__Q24Game7TimeMgrFv=0x8012711C -updateSlot__Q24Game7TimeMgrFv=0x8012715C -getSunGaugeRatio__Q24Game7TimeMgrFv=0x801272C4 -update__Q24Game7TimeMgrFv=0x80127324 -isDayOver__Q24Game7TimeMgrFv=0x80127398 -isDayTime__Q24Game7TimeMgrFv=0x801273B0 -getRealDayTime__Q24Game7TimeMgrFv=0x801273E0 -loadSettingFile__Q24Game7TimeMgrFPc=0x80127400 -__dt__Q24Game7TimeMgrFv=0x80127550 -__ct__Q34Game8Pelplant9GeneratorFv=0x801275B0 -doRead__Q34Game8Pelplant9GeneratorFR6Stream=0x80127648 -getLatestVersion__Q34Game8Pelplant9GeneratorFv=0x801276D4 -doReadOldVersion__Q34Game8Pelplant9GeneratorFR6Stream=0x801276E0 -doWrite__Q34Game8Pelplant9GeneratorFR6Stream=0x80127744 -__dt__Q34Game8Pelplant9GeneratorFv=0x8012780C -getInitialParam__Q34Game8Pelplant9GeneratorFv=0x8012787C -actEnemy__Q24Game18InteractFarmKareroFPQ24Game9EnemyBase=0x80127884 -actEnemy__Q24Game17InteractFarmHaeroFPQ24Game9EnemyBase=0x801278E0 -actEnemy__Q24Game12InteractDopeFPQ24Game9EnemyBase=0x80127938 -__ct__Q24Game17EnemyAnimatorBaseFv=0x80127974 -animate__Q24Game17EnemyAnimatorBaseFf=0x801279B8 -animate__Q24Game17EnemyAnimatorBaseFif=0x80127ADC -__ct__Q34Game10EnemyStone3MgrFv=0x80127C00 -loadResource__Q34Game10EnemyStone3MgrFv=0x80127C88 -__defctor__Q34Game10EnemyStone8DrawInfoFv=0x80127DFC -regist__Q34Game10EnemyStone3MgrFPQ34Game10EnemyStone3Obj=0x80127E20 -release__Q34Game10EnemyStone3MgrFPQ34Game10EnemyStone3Obj=0x80127F18 -draw__Q34Game10EnemyStone3MgrFP8Viewport=0x80127FA4 -setup__Q34Game10EnemyStone4InfoFR6Stream=0x80128108 -__ct__Q34Game10EnemyStone7ObjInfoFv=0x8012826C -init__Q34Game10EnemyStone12StateMachineFPQ34Game10EnemyStone8DrawInfo=0x80128280 -makeMatrix__Q34Game10EnemyStone12StateMachineFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x80128554 -makeMatrix__Q34Game10EnemyStone8FSMStateFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x8012858C -init__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg=0x801285B0 -exec__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfo=0x801285C4 -transit__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg=0x80128780 -cleanup__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfo=0x801287B0 -makeMatrix__Q34Game10EnemyStone17FSMStateExpansionFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x801287B4 -makeMatrix__Q34Game10EnemyStone21FSMStateExpansionFullFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x801288F4 -init__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg=0x80128994 -exec__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfo=0x801289A8 -cleanup__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfo=0x80128A04 -makeMatrix__Q34Game10EnemyStone11FSMStateFitFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x80128A08 -init__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg=0x80128AE4 -exec__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfo=0x80128B08 -cleanup__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfo=0x80128D80 -makeMatrix__Q34Game10EnemyStone13FSMStateShakeFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x80128D84 -makeMatrix__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x80129068 -init__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg=0x80129184 -exec__Q34Game10EnemyStone17FSMStateBreakableFPQ34Game10EnemyStone8DrawInfo=0x80129190 -init__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg=0x801291A8 -cleanup__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfo=0x801292EC -exec__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfo=0x801292F0 -makeMatrix__Q34Game10EnemyStone17FSMStateDisappearFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x801292F4 -init__Q34Game10EnemyStone12FSMStateDeadFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg=0x80129318 -makeMatrix__Q34Game10EnemyStone12FSMStateDeadFPQ34Game10EnemyStone8DrawInfoP7Matrixf=0x8012945C -__ct__Q34Game10EnemyStone8DrawInfoFb=0x80129480 -reset__Q34Game10EnemyStone8DrawInfoFv=0x8012953C -start__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg=0x801295A0 -update__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase=0x801295D4 -makeMatrix__Q34Game10EnemyStone8DrawInfoFP7Matrixfb=0x80129618 -getStateID__Q34Game10EnemyStone8DrawInfoFv=0x801296C0 -getPosAndScale__Q34Game10EnemyStone8DrawInfoFP10Vector3Pf=0x801296CC -appear__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBasef=0x801297E0 -fit__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase=0x8012982C -shake__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBasef=0x80129878 -disappear__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase=0x801298C4 -dead__Q34Game10EnemyStone8DrawInfoFPQ24Game9EnemyBase=0x80129910 -init__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfoPQ24Game8StateArg=0x8012995C -exec__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo=0x80129960 -cleanup__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo=0x80129964 -resume__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo=0x80129968 -restart__Q24Game38FSMStateFPQ34Game10EnemyStone8DrawInfo=0x8012996C -init__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfo=0x80129970 -exec__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfo=0x80129974 -create__Q24Game42StateMachineFi=0x801299AC -transit__Q24Game42StateMachineFPQ34Game10EnemyStone8DrawInfoiPQ24Game8StateArg=0x80129A10 -registerState__Q24Game42StateMachineFPQ24Game38FSMState=0x80129AAC -__ct__Q34Game10EnemyStone3ObjFPQ24Game9EnemyBasePQ34Game10EnemyStone4Info=0x80129B30 -start__Q34Game10EnemyStone3ObjFv=0x80129BD8 -shake__Q34Game10EnemyStone3ObjFv=0x80129CDC -update__Q34Game10EnemyStone3ObjFv=0x80129DBC -checkDrawInfoState__Q34Game10EnemyStone3ObjFi=0x8012A064 -dead__Q34Game10EnemyStone3ObjFv=0x8012A0EC -__dt__Q34Game10EnemyStone3ObjFv=0x8012A1A0 -__sinit_enemyStoneObj_cpp=0x8012A21C -loadSettingFile__Q24Game14EnemyParmsBaseFP10JKRArchivePc=0x8012A244 -setDebugParm__Q24Game14EnemyParmsBaseFUl=0x8012A2D8 -resetDebugParm__Q24Game14EnemyParmsBaseFUl=0x8012A2FC -__ct__Q34Game15WalkSmokeEffect3ObjFv=0x8012A320 -__ct__Q34Game15WalkSmokeEffect3MgrFv=0x8012A354 -alloc__Q34Game15WalkSmokeEffect3MgrFi=0x8012A364 -update__Q34Game15WalkSmokeEffect3MgrFPQ24Game9EnemyBase=0x8012A418 -setup__Q34Game15WalkSmokeEffect3MgrFiPQ28SysShape5ModelPcf=0x8012A5E0 -__ct__Q34Game10ChappyBase3MgrFiUc=0x8012A670 -loadModelData__Q34Game10ChappyBase3MgrFv=0x8012A6C0 -loadAnimData__Q34Game10ChappyBase3MgrFv=0x8012A780 -createModel__Q34Game10ChappyBase3MgrFv=0x8012A820 -getEnemyTypeID__Q34Game10ChappyBase3MgrFv=0x8012A93C -doAlloc__Q24Game12EnemyMgrBaseFv=0x8012A944 -@4@__dt__Q34Game10ChappyBase3MgrFv=0x8012A948 -__ct__Q34Game10ChappyBase3ObjFv=0x8012A950 -birth__Q34Game10ChappyBase3ObjFR10Vector3f=0x8012AAAC -setInitialSetting__Q34Game10ChappyBase3ObjFPQ24Game21EnemyInitialParamBase=0x8012AAF0 -onInit__Q34Game10ChappyBase3ObjFPQ24Game15CreatureInitArg=0x8012AAF4 -doUpdate__Q34Game10ChappyBase3ObjFv=0x8012AB74 -doDirectDraw__Q34Game10ChappyBase3ObjFR8Graphics=0x8012ABA8 -doDebugDraw__Q34Game10ChappyBase3ObjFR8Graphics=0x8012ABAC -getShadowParam__Q34Game10ChappyBase3ObjFRQ24Game11ShadowParam=0x8012ABCC -damageCallBack__Q34Game10ChappyBase3ObjFPQ24Game8CreaturefP8CollPart=0x8012AC94 -collisionCallback__Q34Game10ChappyBase3ObjFRQ24Game9CollEvent=0x8012ACD4 -doStartStoneState__Q34Game10ChappyBase3ObjFv=0x8012AE24 -doFinishStoneState__Q34Game10ChappyBase3ObjFv=0x8012AE74 -getOffsetForMapCollision__Q34Game10ChappyBase3ObjFv=0x8012AE78 -startCarcassMotion__Q34Game10ChappyBase3ObjFv=0x8012AEDC -initMouthSlots__Q34Game10ChappyBase3ObjFv=0x8012AF04 -initWalkSmokeEffect__Q34Game10ChappyBase3ObjFv=0x8012AFE0 -getWalkSmokeEffectMgr__Q34Game10ChappyBase3ObjFv=0x8012B044 -isWakeup__Q34Game10ChappyBase3ObjFv=0x8012B04C -setCollEvent__Q34Game10ChappyBase3ObjFRQ24Game9CollEvent=0x8012B24C -flickStatePikmin__Q34Game10ChappyBase3ObjFv=0x8012B2FC -flickAttackBomb__Q34Game10ChappyBase3ObjFv=0x8012B3C4 -flickAttackFail__Q34Game10ChappyBase3ObjFv=0x8012B568 -eatAttackPikmin__Q34Game10ChappyBase3ObjFv=0x8012B5C8 -createEffect__Q34Game10ChappyBase3ObjFv=0x8012B5EC -__dt__Q23efx9TChaseMtxFv=0x8012B69C -setupEffect__Q34Game10ChappyBase3ObjFv=0x8012B720 -startSleepEffect__Q34Game10ChappyBase3ObjFv=0x8012B770 -finishSleepEffect__Q34Game10ChappyBase3ObjFv=0x8012B7A4 -__dt__Q23efx9THanachoNFv=0x8012B7D4 -doExecuteAfter__Q23efx5TSyncFP14JPABaseEmitter=0x8012B870 -startDemoDrawOff__Q23efx5TSyncFv=0x8012B874 -endDemoDrawOn__Q23efx5TSyncFv=0x8012B884 -@4@executeAfter__Q23efx5TSyncFP14JPABaseEmitter=0x8012B894 -@4@execute__Q23efx5TSyncFP14JPABaseEmitter=0x8012B89C -@4@__dt__Q23efx9THanachoNFv=0x8012B8A4 -__ct__Q34Game10BlueChappy3MgrFiUc=0x8012B8AC -loadTexData__Q34Game10BlueChappy3MgrFv=0x8012B8FC -doAlloc__Q34Game10BlueChappy3MgrFv=0x8012B968 -__dt__Q34Game10BlueChappy3MgrFv=0x8012B9B0 -getEnemyTypeID__Q34Game10BlueChappy3MgrFv=0x8012BA78 -getChangeTexture0__Q34Game10BlueChappy3MgrFv=0x8012BA80 -getChangeTexture1__Q34Game10BlueChappy3MgrFv=0x8012BA88 -createObj__Q34Game10BlueChappy3MgrFi=0x8012BA90 -__dt__Q34Game10BlueChappy3ObjFv=0x8012BAF0 -getEnemy__Q34Game10BlueChappy3MgrFi=0x8012BBDC -@4@__dt__Q34Game10BlueChappy3MgrFv=0x8012BBEC -__ct__Q34Game10BlueChappy3ObjFv=0x8012BBF4 -changeMaterial__Q34Game10BlueChappy3ObjFv=0x8012BD38 -getEnemyTypeID__Q34Game10BlueChappy3ObjFv=0x8012BFE8 -__ct__Q34Game12YellowChappy3MgrFiUc=0x8012BFF0 -loadTexData__Q34Game12YellowChappy3MgrFv=0x8012C048 -doAlloc__Q34Game12YellowChappy3MgrFv=0x8012C0B4 -loadAnimData__Q34Game12YellowChappy3MgrFv=0x8012C0FC -__dt__Q34Game12YellowChappy3MgrFv=0x8012C130 -getEnemyTypeID__Q34Game12YellowChappy3MgrFv=0x8012C1F8 -getChangeTexture0__Q34Game12YellowChappy3MgrFv=0x8012C200 -getChangeTexture1__Q34Game12YellowChappy3MgrFv=0x8012C208 -createObj__Q34Game12YellowChappy3MgrFi=0x8012C210 -__dt__Q34Game12YellowChappy3ObjFv=0x8012C270 -getEnemy__Q34Game12YellowChappy3MgrFi=0x8012C360 -@4@__dt__Q34Game12YellowChappy3MgrFv=0x8012C370 -__ct__Q34Game12YellowChappy3ObjFv=0x8012C378 -onInit__Q34Game12YellowChappy3ObjFPQ24Game15CreatureInitArg=0x8012C4CC -doUpdateCommon__Q34Game12YellowChappy3ObjFv=0x8012C514 -onKill__Q34Game12YellowChappy3ObjFPQ24Game15CreatureKillArg=0x8012C6C4 -createEffect__Q34Game12YellowChappy3ObjFv=0x8012C704 -setupEffect__Q34Game12YellowChappy3ObjFv=0x8012C76C -doStartMovie__Q34Game12YellowChappy3ObjFv=0x8012C820 -doEndMovie__Q34Game12YellowChappy3ObjFv=0x8012C848 -changeMaterial__Q34Game12YellowChappy3ObjFv=0x8012C84C -doStartWaitingBirthTypeDrop__Q34Game12YellowChappy3ObjFv=0x8012CAFC -doFinishWaitingBirthTypeDrop__Q34Game12YellowChappy3ObjFv=0x8012CB48 -forceKill__Q23efx8TSimple1Fv=0x8012CB94 -fade__Q23efx8TSimple1Fv=0x8012CB98 -getEnemyTypeID__Q34Game12YellowChappy3ObjFv=0x8012CB9C -@752@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8012CBA4 -@752@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8012CBB8 -@752@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8012CBCC -@752@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8012CBE0 -@752@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8012CBF4 -@752@12@viewGetShape__Q24Game9EnemyBaseFv=0x8012CC08 -__ct__Q34Game12BlueKochappy3MgrFiUc=0x8012CC1C -doAlloc__Q34Game12BlueKochappy3MgrFv=0x8012CC6C -loadTexData__Q34Game12BlueKochappy3MgrFv=0x8012CCB4 -__dt__Q34Game12BlueKochappy3MgrFv=0x8012CCFC -getChangeTexture__Q34Game12BlueKochappy3MgrFv=0x8012CDC4 -getEnemyTypeID__Q34Game12BlueKochappy3MgrFv=0x8012CDCC -createObj__Q34Game12BlueKochappy3MgrFi=0x8012CDD4 -__dt__Q34Game12BlueKochappy3ObjFv=0x8012CE34 -getEnemy__Q34Game12BlueKochappy3MgrFi=0x8012CF20 -@4@__dt__Q34Game12BlueKochappy3MgrFv=0x8012CF30 -__ct__Q34Game12BlueKochappy3ObjFv=0x8012CF38 -changeMaterial__Q34Game12BlueKochappy3ObjFv=0x8012D068 -getEnemyTypeID__Q34Game12BlueKochappy3ObjFv=0x8012D20C -__ct__Q34Game14YellowKochappy3ObjFv=0x8012D214 -changeMaterial__Q34Game14YellowKochappy3ObjFv=0x8012D344 -getChangeTexture__Q34Game14YellowKochappy3MgrFv=0x8012D4E8 -__dt__Q34Game14YellowKochappy3ObjFv=0x8012D4F0 -getEnemyTypeID__Q34Game14YellowKochappy3ObjFv=0x8012D5DC -__ct__Q34Game14YellowKochappy3MgrFiUc=0x8012D5E4 -doAlloc__Q34Game14YellowKochappy3MgrFv=0x8012D634 -loadTexData__Q34Game14YellowKochappy3MgrFv=0x8012D67C -__dt__Q34Game14YellowKochappy3MgrFv=0x8012D6C4 -getEnemyTypeID__Q34Game14YellowKochappy3MgrFv=0x8012D78C -createObj__Q34Game14YellowKochappy3MgrFi=0x8012D794 -getEnemy__Q34Game14YellowKochappy3MgrFi=0x8012D7F4 -@4@__dt__Q34Game14YellowKochappy3MgrFv=0x8012D804 -__ct__Q34Game12KochappyBase3MgrFiUc=0x8012D80C -loadModelData__Q34Game12KochappyBase3MgrFv=0x8012D85C -loadAnimData__Q34Game12KochappyBase3MgrFv=0x8012D91C -createModel__Q34Game12KochappyBase3MgrFv=0x8012D9BC -getEnemyTypeID__Q34Game12KochappyBase3MgrFv=0x8012DAD8 -@4@__dt__Q34Game12KochappyBase3MgrFv=0x8012DAE0 -__ct__Q34Game12KochappyBase3ObjFv=0x8012DAE8 -birth__Q34Game12KochappyBase3ObjFR10Vector3f=0x8012DC30 -setInitialSetting__Q34Game12KochappyBase3ObjFPQ24Game21EnemyInitialParamBase=0x8012DC98 -onInit__Q34Game12KochappyBase3ObjFPQ24Game15CreatureInitArg=0x8012DC9C -doUpdate__Q34Game12KochappyBase3ObjFv=0x8012DD04 -doDirectDraw__Q34Game12KochappyBase3ObjFR8Graphics=0x8012DD8C -doDebugDraw__Q34Game12KochappyBase3ObjFR8Graphics=0x8012DD90 -getShadowParam__Q34Game12KochappyBase3ObjFRQ24Game11ShadowParam=0x8012DDB0 -bounceCallback__Q34Game12KochappyBase3ObjFPQ23Sys8Triangle=0x8012DE38 -pressCallBack__Q34Game12KochappyBase3ObjFPQ24Game8CreaturefP8CollPart=0x8012DE78 -doStartStoneState__Q34Game12KochappyBase3ObjFv=0x8012DF18 -doFinishStoneState__Q34Game12KochappyBase3ObjFv=0x8012DF38 -getOffsetForMapCollision__Q34Game12KochappyBase3ObjFv=0x8012DF3C -startCarcassMotion__Q34Game12KochappyBase3ObjFv=0x8012DFA0 -initMouthSlots__Q34Game12KochappyBase3ObjFv=0x8012DFC8 -initWalkSmokeEffect__Q34Game12KochappyBase3ObjFv=0x8012E054 -getWalkSmokeEffectMgr__Q34Game12KochappyBase3ObjFv=0x8012E0E0 -__ct__Q24Game22EnemyBlendAnimatorBaseFv=0x8012E0E8 -setAnimMgr__Q24Game22EnemyBlendAnimatorBaseFPQ28SysShape7AnimMgr=0x8012E12C -getAnimator__Q24Game22EnemyBlendAnimatorBaseFv=0x8012E150 -getAnimator__Q24Game22EnemyBlendAnimatorBaseFi=0x8012E158 -startBlend__Q24Game22EnemyBlendAnimatorBaseFiiPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener=0x8012E16C -endBlend__Q24Game22EnemyBlendAnimatorBaseFv=0x8012E208 -animate__Q24Game22EnemyBlendAnimatorBaseFPQ28SysShape13BlendFunctionfff=0x8012E22C -animate__Q24Game22EnemyBlendAnimatorBaseFf=0x8012E274 -getValue__Q28SysShape14BlendLinearFunFf=0x8012E324 -__sinit_enemyBlendAnimatorBase_cpp=0x8012E328 -getValue__Q28SysShape18BlendQuadraticFuncFf=0x8012E344 -__ct__Q24Game15EnemyPelletInfoFv=0x8012E34C -write__Q24Game15EnemyPelletInfoFR6Stream=0x8012E380 -read__Q24Game15EnemyPelletInfoFR6Stream=0x8012E4A0 -__ct__Q24Game20EnemyEffectNodeHamonFv=0x8012E510 -__dt__Q23efx15TEnemyHamonMIndFv=0x8012E644 -__dt__Q23efx12TEnemyHamonMFv=0x8012E6E0 -__dt__Q24Game19EnemyEffectNodeBaseFv=0x8012E77C -create__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase=0x8012E7DC -fade__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase=0x8012E8F8 -fade__Q23efx11TEnemyHamonFv=0x8012E924 -fade__Q23efx19TEnemyHamonChasePosFv=0x8012E968 -forceKill__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase=0x8012E9B8 -forceKill__Q23efx11TEnemyHamonFv=0x8012E9E4 -forceKill__Q23efx19TEnemyHamonChasePosFv=0x8012EA28 -update__Q24Game20EnemyEffectNodeHamonFPQ24Game9EnemyBase=0x8012EA78 -__dt__Q24Game20EnemyEffectNodeHamonFv=0x8012EAC4 -__ct__Q24Game13EnemyBirthArgFv=0x8012EC24 -__ct__Q24Game12EnemyMgrBaseFiUc=0x8012EC94 -startMovie__Q24Game12EnemyMgrBaseFv=0x8012ED58 -endMovie__Q24Game12EnemyMgrBaseFv=0x8012EDC8 -alloc__Q24Game12EnemyMgrBaseFv=0x8012EE38 -doAnimation__Q24Game12EnemyMgrBaseFv=0x8012EED8 -doEntry__Q24Game12EnemyMgrBaseFv=0x8012EFE8 -doSetView__Q24Game12EnemyMgrBaseFi=0x8012F09C -doViewCalc__Q24Game12EnemyMgrBaseFv=0x8012F128 -doSimulation__Q24Game12EnemyMgrBaseFf=0x8012F1A4 -doDirectDraw__Q24Game12EnemyMgrBaseFR8Graphics=0x8012F290 -getNext__Q24Game12EnemyMgrBaseFPv=0x8012F354 -birth__Q24Game12EnemyMgrBaseFRQ24Game13EnemyBirthArg=0x8012F3C8 -getEnemyTypeID__Q24Game12EnemyMgrBaseFv=0x8012F54C -kill__Q24Game12EnemyMgrBaseFPQ24Game9EnemyBase=0x8012F554 -killAll__Q24Game12EnemyMgrBaseFPQ24Game15CreatureKillArg=0x8012F6B8 -isValidEnemyTypeID__Q24Game12EnemyMgrBaseFv=0x8012F760 -setupSoundViewerAndBas__Q24Game12EnemyMgrBaseFv=0x8012F79C -init__Q24Game12EnemyMgrBaseFPQ24Game14EnemyParmsBase=0x8012F89C -setDebugParm__Q24Game12EnemyMgrBaseFUl=0x8012F928 -resetDebugParm__Q24Game12EnemyMgrBaseFUl=0x8012F94C -createModel__Q24Game12EnemyMgrBaseFv=0x8012F970 -initParms__Q24Game12EnemyMgrBaseFv=0x8012FA1C -loadStoneSetting__Q24Game12EnemyMgrBaseFPCc=0x8012FADC -setupParms__Q24Game12EnemyMgrBaseFPCc=0x8012FB54 -loadResource__Q24Game12EnemyMgrBaseFv=0x8012FBE4 -initObjects__Q24Game12EnemyMgrBaseFv=0x8012FC6C -initStoneSetting__Q24Game12EnemyMgrBaseFv=0x8012FF68 -loadModelData__Q24Game12EnemyMgrBaseFP10JKRArchive=0x80130028 -loadModelData__Q24Game12EnemyMgrBaseFv=0x8013010C -loadAnimData__Q24Game12EnemyMgrBaseFv=0x801301CC -loadTexData__Q24Game12EnemyMgrBaseFv=0x80130320 -doLoadBmd__Q24Game12EnemyMgrBaseFPv=0x80130394 -doLoadBdl__Q24Game12EnemyMgrBaseFPv=0x801303C0 -initGenerator__Q24Game12EnemyMgrBaseFv=0x801303E8 -doAnimationAlwaysMovieActor__Q24Game12EnemyMgrBaseFv=0x80130478 -doEntryAlwaysMovieActor__Q24Game12EnemyMgrBaseFv=0x80130560 -doSimulationAlwaysMovieActor__Q24Game12EnemyMgrBaseFf=0x801305DC -doDirectDrawAlwaysMovieActor__Q24Game12EnemyMgrBaseFR8Graphics=0x80130678 -@4@__dt__Q24Game12EnemyMgrBaseFv=0x80130704 -transit__Q24Game13EnemyFSMStateFPQ24Game9EnemyBaseiPQ24Game8StateArg=0x8013070C -doDirectDraw__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseR8Graphics=0x8013073C -start__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseiPQ24Game8StateArg=0x80130798 -exec__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase=0x80130818 -create__Q24Game17EnemyStateMachineFi=0x80130864 -registerState__Q24Game17EnemyStateMachineFPQ24Game13EnemyFSMState=0x80130908 -getCurrID__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase=0x8013098C -getCurrName__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase=0x801309FC -transit__Q24Game17EnemyStateMachineFPQ24Game9EnemyBaseiPQ24Game8StateArg=0x80130A6C -setCurrState__Q24Game17EnemyStateMachineFPQ24Game9EnemyBasePQ24Game13EnemyFSMState=0x80130B88 -getCurrState__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase=0x80130B90 -init__Q24Game17EnemyStateMachineFPQ24Game9EnemyBase=0x80130B98 -__ct__Q34Game15IllustratedBook12ColorSettingFv=0x80130B9C -__ct__6Color4Fv=0x80130D6C -read__Q34Game15IllustratedBook12ColorSettingFR6Stream=0x80130D70 -update__Q34Game15IllustratedBook12ColorSettingFv=0x80130E08 -__ct__Q34Game15IllustratedBook13PositionParmsFv=0x801316D4 -read__Q34Game15IllustratedBook13PositionParmsFR6Stream=0x8013181C -__dt__Q34Game15IllustratedBook13PositionParmsFv=0x8013186C -read__Q34Game15IllustratedBook17PositionParmsListFR6Stream=0x801318CC -read__Q34Game15IllustratedBook11CameraParmsFR6Stream=0x80131934 -__ct__Q34Game15IllustratedBook10EnemyParmsFv=0x80131954 -__ct__Q34Game15IllustratedBook11CameraParmsFv=0x80131A84 -__ct__Q44Game15IllustratedBook11CameraParms5ParmsFv=0x80131AC4 -read__Q34Game15IllustratedBook10EnemyParmsFR6Stream=0x80131DA8 -__dt__Q34Game15IllustratedBook10EnemyParmsFv=0x80131E0C -read__Q34Game15IllustratedBook14EnemyModeParmsFR6Stream=0x80131E6C -__ct__Q34Game15IllustratedBook9ItemParmsFv=0x80131EF0 -read__Q34Game15IllustratedBook9ItemParmsFR6Stream=0x80132038 -__dt__Q34Game15IllustratedBook9ItemParmsFv=0x8013209C -read__Q34Game15IllustratedBook13ItemModeParmsFR6Stream=0x801320FC -__ct__Q34Game15IllustratedBook5ParmsFv=0x8013217C -__dt__Q34Game15IllustratedBook13ItemModeParmsFv=0x80132418 -__dt__Q34Game15IllustratedBook14EnemyModeParmsFv=0x80132478 -__dt__Q34Game15IllustratedBook17PositionParmsListFv=0x801324F4 -__dt__Q34Game15IllustratedBook12ColorSettingFv=0x80132570 -read__Q34Game15IllustratedBook5ParmsFR6Stream=0x801325D0 -loadFile__Q34Game15IllustratedBook5ParmsFP10JKRArchive=0x80132660 -__dt__Q34Game15IllustratedBook5ParmsFv=0x80132730 -__sinit_singleGS_ZukanParms_cpp=0x80132844 -__ct__Q213TreasureLight3MgrFv=0x8013286C -update__Q213TreasureLight3MgrFv=0x801329BC -set__Q213TreasureLight3MgrFR8Graphics=0x801329C0 -set__Q213TreasureLight3MgrFR7Matrixf=0x80132A04 -setCommonProc__Q213TreasureLight3MgrFv=0x80132A48 -drawDebugInfo__Q213TreasureLight3MgrFR8Graphics=0x80132BCC -__dt__Q213TreasureLight3MgrFv=0x80132BEC -__sinit_treasureLightMgr_cpp=0x80132C8C -update__Q214EffectAnimator3ObjFPQ23efx13TKechappyTestf=0x80132CB4 -setup__Q214EffectAnimator6ObjMgrFPQ214EffectAnimator10ObjMgrData=0x80132CB8 -__dt__Q214EffectAnimator3ObjFv=0x80132FB0 -__ct__Q214EffectAnimator3MgrFv=0x80133010 -setup__Q214EffectAnimator3MgrFv=0x8013301C -update__Q214EffectAnimator3MgrFPQ23efx13TKechappyTestif=0x801330D0 -__dt__Q214EffectAnimator9LengthObjFv=0x801331B4 -update__Q214EffectAnimator9LengthObjFPQ23efx13TKechappyTestf=0x80133224 -__dt__Q214EffectAnimator10BristleObjFv=0x8013333C -update__Q214EffectAnimator10BristleObjFPQ23efx13TKechappyTestf=0x801333AC -__dt__Q214EffectAnimator12VibrationObjFv=0x801334C4 -update__Q214EffectAnimator12VibrationObjFPQ23efx13TKechappyTestf=0x80133534 -__ct__12PikiAnimatorFv=0x8013364C -setAnimMgr__12PikiAnimatorFPQ28SysShape7AnimMgr=0x8013369C -__ct__8PlatformFv=0x801336A8 -getTriDivider__8PlatformFv=0x801336EC -setMapCodeAll__8PlatformFRQ27MapCode4Code=0x801336F4 -clone__8PlatformFR7Matrixf=0x80133730 -load__8PlatformFP13JKRFileLoaderPc=0x801337B4 -__ct__12PlatAttacherFv=0x80133860 -setMapCodeAll__12PlatAttacherFRQ27MapCode4Code=0x80133874 -__dt__8PlatformFv=0x801338D8 -read__12PlatAttacherFR6Stream=0x80133938 -read__28ArrayContainer<10Vector3>FR6Stream=0x80133AC8 -readObject__28ArrayContainer<10Vector3>FR6StreamR10Vector3=0x80133B78 -alloc__28ArrayContainer<10Vector3>Fi=0x80133B7C -__dt__28ArrayContainer<10Vector3>Fv=0x80133BE4 -__dt__23Container<10Vector3>Fv=0x80133C64 -getNumShapes__12PlatAttacherFv=0x80133CD4 -getJointIndex__12PlatAttacherFi=0x80133CDC -getPlatform__12PlatAttacherFi=0x80133D58 -__dt__Q23Sys11GridDividerFv=0x80133DD4 -__dt__Q23Sys12TriIndexListFv=0x80133E64 -__dt__Q23Sys10TriDividerFv=0x80133F04 -__dt__Q23Sys7OBBTreeFv=0x80133F64 -__ct__8CollTreeFv=0x8013405C -createFromFactory__8CollTreeFPQ28SysShape9MtxObjectP15CollPartFactoryP11CollPartMgr=0x8013406C -createSingleSphere__8CollTreeFPQ28SysShape9MtxObjectiRQ23Sys6SphereP11CollPartMgr=0x801340B0 -release__8CollTreeFv=0x801341B4 -releaseRec__8CollTreeFP8CollPart=0x801341F8 -getChild__8CollPartFv=0x80134540 -getNext__8CollPartFv=0x80134548 -checkCollision__8CollTreeFP8CollTreePP8CollPartPP8CollPartR10Vector3=0x80134550 -checkCollisionRec__8CollTreeFP8CollPartP8CollPartPP8CollPartPP8CollPartR10Vector3=0x8013458C -isLeaf__8CollPartFv=0x80134B90 -isPrim__8CollPartFv=0x80134BA0 -checkCollision__8CollTreeFRQ23Sys6SphereP22IDelegate1=0x80134BD0 -checkCollision__8CollPartFRQ23Sys6SphereP22IDelegate1=0x80134BFC -__ct__Q23Sys4TubeFR10Vector3R10Vector3ff=0x801354B4 -__ct__Q23Sys6SphereFR10Vector3f=0x801354F0 -isSphere__8CollPartFv=0x80135510 -__ct__10Vector3FRC10Vector3=0x80135520 -isTubeTree__8CollPartFv=0x8013553C -isTube__8CollPartFv=0x80135550 -checkCollisionMulti__8CollTreeFP8CollTreeP47IDelegate3>=0x80135564 -checkCollisionMulti__8CollPartFP8CollPartP47IDelegate3>=0x801356FC -collide__8CollPartFP8CollPartR10Vector3=0x801358EC -update__8CollTreeFv=0x80135A9C -attachModel__8CollTreeFPQ28SysShape9MtxObject=0x80135AC8 -attachModel__8CollPartFPQ28SysShape9MtxObject=0x80135AF4 -getCollPart__8CollTreeFUl=0x80135E44 -getCollPart__8CollPartFUl=0x80135E78 -getAllCollPartToArray__8CollPartFPP8CollPartiRi=0x801364B8 -findCollPart__8CollTreeFR15FindCollPartArg=0x80136A04 -getRandomCollPart__8CollTreeFv=0x80136B1C -getBoundingSphere__8CollTreeFRQ23Sys6Sphere=0x80136C40 -__ct__8CollPartFPQ28SysShape9MtxObject=0x80136C74 -__ct__8CollPartFv=0x80136CD8 -init__8CollPartFPQ28SysShape9MtxObject=0x80136D30 -isStickable__8CollPartFv=0x80136DB0 -update__8CollPartFv=0x80136DE0 -getTranslation__7MatrixfFR10Vector3=0x801372C0 -getBasis__7MatrixfFiR10Vector3=0x801372DC -__cl__7MatrixfFii=0x80137300 -makeMatrixTo__8CollPartFR7Matrixf=0x80137318 -makeTubeTree__8CollPartFv=0x8013739C -calcStickLocal__8CollPartFR10Vector3R10Vector3=0x801375B0 -calcStickGlobal__8CollPartFR10Vector3R10Vector3=0x801377DC -calcPoseMatrix__8CollPartFR10Vector3R7Matrixf=0x80137944 -setScale__8CollPartFf=0x80137E0C -getSphere__8CollPartFRQ23Sys6Sphere=0x801381FC -getTube__8CollPartFRQ23Sys4Tube=0x80138278 -draw__8CollPartFR8Graphics=0x80138330 -__ct__13MouthCollPartFv=0x80138334 -__dt__8CollPartFv=0x80138468 -getPosition__13MouthCollPartFR10Vector3=0x801384C8 -copyMatrixTo__13MouthCollPartFR7Matrixf=0x80138510 -__ct__10MouthSlotsFv=0x80138548 -alloc__10MouthSlotsFi=0x80138558 -__dt__13MouthCollPartFv=0x801385BC -update__10MouthSlotsFv=0x8013862C -setup__10MouthSlotsFiPQ28SysShape5ModelPc=0x80138690 -getSlot__10MouthSlotsFi=0x80138778 -load__15CollPartFactoryFPc=0x801387F4 -load__15CollPartFactoryFP13JKRFileLoaderPc=0x80138944 -createInstance__15CollPartFactoryFPQ28SysShape9MtxObjectP11CollPartMgr=0x80138A6C -createOne__11CollPartMgrFPQ28SysShape9MtxObject=0x80138A8C -clone__8CollPartFPQ28SysShape9MtxObjectP11CollPartMgr=0x80138B38 -getChildCount__8CollPartFv=0x80138DE0 -read__8CollPartFR6Streamb=0x80138E00 -addChild__8CollPartFP8CollPart=0x8013915C -setName__5CNodeFPc=0x8013917C -readU16__6StreamFv=0x80139184 -draw__11AgeCollPartFR8Graphics=0x801391A8 -__ct__11AgeCollPartFPQ28SysShape5Model=0x801392B4 -__dt__11AgeCollPartFv=0x80139380 -isMouth__8CollPartFv=0x801393F0 -constructor__8CollPartFv=0x801393F8 -doAnimation__8CollPartFv=0x801393FC -doEntry__8CollPartFv=0x80139400 -doSetView__8CollPartFUl=0x80139404 -doViewCalc__8CollPartFv=0x80139408 -doSimulation__8CollPartFf=0x8013940C -doDirectDraw__8CollPartFR8Graphics=0x80139410 -__dt__15CollPartFactoryFv=0x80139414 -isMouth__13MouthCollPartFv=0x80139484 -__dt__Q23Sys3OBBFv=0x8013948C -__dt__12ContainerFv=0x80139560 -__dt__17ArrayContainerFv=0x801395D0 -alloc__17ArrayContainerFi=0x80139650 -read__17ArrayContainerFR6Stream=0x8013969C -readObject__17ArrayContainerFR6StreamRi=0x8013974C -readObject__Q23Sys9IndexListFR6StreamRi=0x80139750 -writeObject__Q23Sys9IndexListFR6StreamRi=0x80139784 -__dt__Q23Sys9IndexListFv=0x801397AC -setArray__28ArrayContainer<10Vector3>FP10Vector3i=0x8013983C -addOne__28ArrayContainer<10Vector3>FR10Vector3=0x8013984C -birth__24MonoObjectMgr<8CollPart>Fv=0x8013988C -kill__24MonoObjectMgr<8CollPart>FP8CollPart=0x801398EC -getEmptyIndex__24MonoObjectMgr<8CollPart>Fv=0x80139940 -writeObject__28ArrayContainer<10Vector3>FR6StreamR10Vector3=0x8013997C -write__28ArrayContainer<10Vector3>FR6Stream=0x80139980 -get__28ArrayContainer<10Vector3>FPv=0x80139A54 -getNext__28ArrayContainer<10Vector3>FPv=0x80139A64 -getStart__28ArrayContainer<10Vector3>Fv=0x80139A6C -getEnd__28ArrayContainer<10Vector3>Fv=0x80139A74 -getAt__28ArrayContainer<10Vector3>Fi=0x80139A7C -getTo__28ArrayContainer<10Vector3>Fv=0x80139A8C -writeObject__17ArrayContainerFR6StreamRi=0x80139A94 -write__17ArrayContainerFR6Stream=0x80139A98 -addOne__17ArrayContainerFRi=0x80139B6C -setArray__17ArrayContainerFPii=0x80139B98 -get__17ArrayContainerFPv=0x80139BA8 -getNext__17ArrayContainerFPv=0x80139BB8 -getStart__17ArrayContainerFv=0x80139BC0 -getEnd__17ArrayContainerFv=0x80139BC8 -getAt__17ArrayContainerFi=0x80139BD0 -getTo__17ArrayContainerFv=0x80139BE0 -getObject__23Container<10Vector3>FPv=0x80139BE8 -getAt__23Container<10Vector3>Fi=0x80139C14 -getTo__23Container<10Vector3>Fv=0x80139C1C -getObject__12ContainerFPv=0x80139C24 -getAt__12ContainerFi=0x80139C50 -getTo__12ContainerFv=0x80139C58 -__ct__13DynamicsParmsFv=0x80139C60 -__dt__13DynamicsParmsFv=0x80139F94 -globalInstance__13DynamicsParmsFv=0x8013A008 -__ct__Q24Game5RigidFv=0x8013A050 -__ct__Q24Game11RigidConfigFv=0x8013A0A4 -initPosition__Q24Game5RigidFR10Vector3R10Vector3=0x8013A0D8 -initPositionIndex__Q24Game5RigidFR10Vector3iR10Vector3=0x8013A164 -updateMatrix__Q24Game5RigidFi=0x8013A1F0 -computeForces__Q24Game5RigidFi=0x8013A228 -getYDegree__FR4QuatR10Vector3=0x8013A294 -integrate__Q24Game5RigidFfi=0x8013A4FC -resolveCollision__Q24Game5RigidFiR10Vector3R10Vector3f=0x8013AB74 -size__7ParmFv=0x8013AE74 -@12@__dt__13DynamicsParmsFv=0x8013AE7C -__ct__Q24Game8CreatureFv=0x8013AE84 -__ct__Q24Game7CellLegFv=0x8013AFB0 -init__Q24Game8CreatureFPQ24Game15CreatureInitArg=0x8013AFC8 -onInitPost__Q24Game8CreatureFPQ24Game15CreatureInitArg=0x8013B0E8 -onInit__Q24Game8CreatureFPQ24Game15CreatureInitArg=0x8013B0EC -kill__Q24Game8CreatureFPQ24Game15CreatureKillArg=0x8013B0F0 -onKill__Q24Game8CreatureFPQ24Game15CreatureKillArg=0x8013B1A4 -setPosition__Q24Game8CreatureFR10Vector3b=0x8013B1A8 -onSetPositionPost__Q24Game8CreatureFR10Vector3=0x8013B270 -initPosition__Q24Game8CreatureFR10Vector3=0x8013B274 -getYVector__Q24Game8CreatureFR10Vector3=0x8013B340 -getBodyRadius__Q24Game8CreatureFv=0x8013B3E0 -getCellRadius__Q24Game8CreatureFv=0x8013B414 -getTypeName__Q24Game8CreatureFv=0x8013B448 -getShadowParam__Q24Game8CreatureFRQ24Game11ShadowParam=0x8013B46C -needShadow__Q24Game8CreatureFv=0x8013B4F8 -getLifeGaugeParam__Q24Game8CreatureFRQ24Game14LifeGaugeParam=0x8013B504 -save__Q24Game8CreatureFR6StreamUc=0x8013B574 -load__Q24Game8CreatureFR6StreamUc=0x8013B604 -calcSphereDistance__Q24Game8CreatureFPQ24Game8Creature=0x8013B6E8 -applyAirDrag__Q24Game8CreatureFfff=0x8013B7A4 -doAnimation__Q24Game8CreatureFv=0x8013B870 -doEntry__Q24Game8CreatureFv=0x8013B8AC -doSetView__Q24Game8CreatureFi=0x8013B8B0 -doViewCalc__Q24Game8CreatureFv=0x8013B9B8 -isPiki__Q24Game8CreatureFv=0x8013B9E4 -isNavi__Q24Game8CreatureFv=0x8013B9F4 -isTeki__Q24Game8CreatureFv=0x8013BA08 -isPellet__Q24Game8CreatureFv=0x8013BA1C -sound_culling__Q24Game8CreatureFv=0x8013BA30 -movie_begin__Q24Game8CreatureFb=0x8013BA50 -movie_end__Q24Game8CreatureFb=0x8013BAEC -checkWater__Q24Game8CreatureFPQ24Game8WaterBoxRQ23Sys6Sphere=0x8013BB3C -inWaterCallback__Q24Game8CreatureFPQ24Game8WaterBox=0x8013BC1C -outWaterCallback__Q24Game8CreatureFv=0x8013BC20 -checkHell__Q24Game8CreatureFRQ34Game8Creature12CheckHellArg=0x8013BC24 -updateCell__Q24Game8CreatureFv=0x8013BD68 -getCreatureID__Q24Game8CreatureFv=0x8013BEE0 -getCellPikiCount__Q24Game8CreatureFv=0x8013BEE8 -applyImpulse__Q24Game8CreatureFR10Vector3R10Vector3=0x8013BF2C -checkCollision__Q24Game8CreatureFPQ24Game10CellObject=0x8013BFDC -resolveOneColl__Q24Game8CreatureFP8CollPartP8CollPartR10Vector3=0x8013C2C0 -collisionCallback__Q24Game8CreatureFRQ24Game9CollEvent=0x8013CB8C -invoke__63Delegate3>FP8CollPartP8CollPartR10Vector3=0x8013CB90 -constructor__Q24Game8CreatureFv=0x8013CBC0 -doSimulation__Q24Game8CreatureFf=0x8013CBC4 -inWater__Q24Game8CreatureFv=0x8013CBC8 -isFlying__Q24Game8CreatureFv=0x8013CBD0 -getPSCreature__Q24Game8CreatureFv=0x8013CBD8 -getSound_PosPtr__Q24Game8CreatureFv=0x8013CBE0 -getSound_CurrAnimFrame__Q24Game8CreatureFv=0x8013CBE8 -getSound_CurrAnimSpeed__Q24Game8CreatureFv=0x8013CBF0 -getLODSphere__Q24Game8CreatureFRQ23Sys6Sphere=0x8013CBF8 -onStickStart__Q24Game8CreatureFPQ24Game8Creature=0x8013CC24 -onStickEnd__Q24Game8CreatureFPQ24Game8Creature=0x8013CC28 -checkCollision__Q24Game10CellObjectFPQ24Game10CellObject=0x8013CC2C -isPiki__Q24Game10CellObjectFv=0x8013CC30 -isNavi__Q24Game10CellObjectFv=0x8013CC38 -__sinit_creature_cpp=0x8013CC40 -__ct__Q24Game8FakePikiFv=0x8013CC68 -initFakePiki__Q24Game8FakePikiFv=0x8013CD94 -killFakePiki__Q24Game8FakePikiFv=0x8013CE4C -initAnimator__Q24Game8FakePikiFv=0x8013CE74 -assertMotion__Q24Game8FakePikiFi=0x8013CF2C -enableMotionBlend__Q24Game8FakePikiFv=0x8013CF54 -startMotion__Q24Game8FakePikiFiiPQ28SysShape14MotionListenerPQ28SysShape14MotionListener=0x8013CFC0 -finishMotion__Q24Game8FakePikiFv=0x8013D0C0 -movieSetFaceDir__Q24Game8FakePikiFf=0x8013D0DC -setDoAnimCallback__Q24Game8FakePikiFP9IDelegate=0x8013D0E4 -clearDoAnimCallback__Q24Game8FakePikiFv=0x8013D0EC -updateWalkAnimation__Q24Game8FakePikiFv=0x8013D0F8 -sNeckCallback__Q24Game8FakePikiFP8J3DJointi=0x8013D4B4 -startLookCreature__Q24Game8FakePikiFPQ24Game8Creature=0x8013D6F0 -updateLookCreature__Q24Game8FakePikiFv=0x8013D7B0 -do_updateLookCreature__Q24Game8FakePikiFv=0x8013D820 -finishLook__Q24Game8FakePikiFv=0x8013D824 -updateLook__Q24Game8FakePikiFv=0x8013D83C -turnTo__Q24Game8FakePikiFR10Vector3=0x8013DBD4 -moveVelocity__Q24Game8FakePikiFv=0x8013DC34 -moveRotation__Q24Game8FakePikiFv=0x8013DFE8 -useMoveRotation__Q24Game8FakePikiFv=0x8013E09C -move__Q24Game8FakePikiFf=0x8013E0B0 -__opi__Q34Game8GameStat11PikiCounterFv=0x8013E754 -inWater__Q24Game8FakePikiFv=0x8013E790 -wallCallback__Q24Game8FakePikiFR10Vector3=0x8013E7A4 -useMapCollision__Q24Game8FakePikiFv=0x8013E7A8 -getMapCollisionRadius__Q24Game8FakePikiFv=0x8013E7BC -doEntry__Q24Game8FakePikiFv=0x8013E7C4 -doColorChange__Q24Game8FakePikiFv=0x8013E880 -doAnimation__Q24Game8FakePikiFv=0x8013E884 -getBoundingSphere__Q24Game8FakePikiFRQ23Sys6Sphere=0x8013ED18 -useMoveVelocity__Q24Game8FakePikiFv=0x8013ED3C -updateTrMatrix__Q24Game8FakePikiFv=0x8013ED50 -useUpdateTrMatrix__Q24Game8FakePikiFv=0x8013EDC8 -doSimulation__Q24Game8FakePikiFf=0x8013EDDC -getPosition__Q24Game8BaseItemFv=0x8013F33C -initCaptureStomach__Q24Game8FakePikiFv=0x8013F358 -startCaptureStomach__Q24Game8FakePikiFP8CollPart=0x8013F364 -endCaptureStomach__Q24Game8FakePikiFv=0x8013F36C -updateStomach__Q24Game8FakePikiFv=0x8013F378 -debugShapeDL__Q24Game8FakePikiFPc=0x8013F4D0 -getDownfloorMass__Q24Game8FakePikiFv=0x8013F4D8 -isPikmin__Q24Game8FakePikiFv=0x8013F4E0 -doDebugDL__Q24Game8FakePikiFv=0x8013F4E8 -update__Q24Game8FakePikiFv=0x8013F4EC -setMoveRotation__Q24Game8FakePikiFb=0x8013F4F0 -setUpdateTrMatrix__Q24Game8FakePikiFb=0x8013F518 -setMoveVelocity__Q24Game8FakePikiFb=0x8013F540 -setMapCollision__Q24Game8FakePikiFb=0x8013F568 -isZikatu__Q24Game8FakePikiFv=0x8013F590 -setZikatu__Q24Game8FakePikiFb=0x8013F59C -wasZikatu__Q24Game8FakePikiFv=0x8013F5D8 -inWaterCallback__Q24Game8FakePikiFPQ24Game8WaterBox=0x8013F5E4 -outWaterCallback__Q24Game8FakePikiFv=0x8013F5E8 -onSetPosition__Q24Game8FakePikiFv=0x8013F5EC -onSetPosition__Q24Game8FakePikiFR10Vector3=0x8013F5F0 -getFaceDir__Q24Game8FakePikiFv=0x8013F634 -getVelocity__Q24Game8FakePikiFv=0x8013F63C -setVelocity__Q24Game8FakePikiFR10Vector3=0x8013F658 -getVelocityAt__Q24Game8FakePikiFR10Vector3R10Vector3=0x8013F674 -getSound_PosPtr__Q24Game8FakePikiFv=0x8013F690 -isWalking__Q24Game8FakePikiFv=0x8013F698 -onKeyEvent__Q24Game8FakePikiFRCQ28SysShape8KeyEvent=0x8013F6A0 -__sinit_fakePiki_cpp=0x8013F6A4 -@376@onKeyEvent__Q24Game8FakePikiFRCQ28SysShape8KeyEvent=0x8013F6CC -getShadowParam__Q24Game4NaviFRQ24Game11ShadowParam=0x8013F6D4 -getLODSphere__Q24Game4NaviFRQ23Sys6Sphere=0x8013F724 -__ct__Q24Game4NaviFv=0x8013F748 -__ct__Q23efx11TNaviEffectFv=0x8013F950 -__dt__Q23efx10TChaseMtxTFv=0x8013FC00 -__ct__Q23efx7ContextFv=0x8013FC84 -__dt__Q23efx11TOneEmitterFv=0x8013FCD4 -__dt__Q23efx7ContextFv=0x8013FD60 -__dt__Q23efx12TFueactBiri2Fv=0x8013FDC0 -__dt__Q23efx12TFueactBiri1Fv=0x8013FE5C -__dt__Q23efx15TFueactBiriBaseFv=0x8013FEF8 -__dt__Q23efx13TFueactCircleFv=0x8013FF7C -__dt__Q23efx15ContextChasePosFv=0x8013FFFC -__ct__Q23efx15ContextChasePosFv=0x8014005C -onInit__Q24Game4NaviFPQ24Game15CreatureInitArg=0x801400B0 -getCreatureID__Q24Game4NaviFv=0x80140340 -start__Q24Game26StateMachineFPQ24Game4NaviiPQ24Game8StateArg=0x80140348 -onSetPosition__Q24Game4NaviFR10Vector3=0x8014037C -onKill__Q24Game4NaviFPQ24Game15CreatureKillArg=0x80140404 -onKeyEvent__Q24Game4NaviFRCQ28SysShape8KeyEvent=0x80140444 -onKeyEvent__Q24Game9NaviStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x80140518 -getPosition__Q24Game4NaviFv=0x8014051C -onStickStart__Q24Game4NaviFPQ24Game8Creature=0x8014059C -onStickEnd__Q24Game4NaviFPQ24Game8Creature=0x801405EC -procActionButton__Q24Game4NaviFv=0x80140644 -getAt__27MonoObjectMgrFi=0x80140C98 -isDone__36IteratorFv=0x80140CA8 -setupNukuAdjustArg__Q24Game4NaviFPQ34Game12ItemPikihead4ItemRQ24Game22NaviNukuAdjustStateArg=0x80140CF4 -hasDope__Q24Game4NaviFi=0x80140E2C -getDopeCount__Q24Game4NaviFi=0x80140E7C -useDope__Q24Game4NaviFi=0x80140EC0 -incDopeCount__Q24Game4NaviFi=0x80140F0C -sendMessage__Q24Game15BaseGameSectionFRQ24Game11GameMessage=0x80140FAC -applyDopes__Q24Game4NaviFiR10Vector3=0x80140FB4 -applyDopeSmoke__Q24Game4NaviFPQ24Game10CellObject=0x80141294 -getStateID__Q24Game4NaviFv=0x80141444 -transit__Q24Game4NaviFiPQ24Game8StateArg=0x80141460 -getOlimarData__Q24Game4NaviFv=0x801414A4 -getJAIObject__Q24Game4NaviFv=0x801414B0 -getPSCreature__Q24Game4NaviFv=0x801414C4 -wallCallback__Q24Game4NaviFR10Vector3=0x801414CC -wallCallback__Q24Game9NaviStateFPQ24Game4NaviR10Vector3=0x80141510 -bounceCallback__Q24Game4NaviFPQ23Sys8Triangle=0x80141514 -bounceCallback__Q24Game9NaviStateFPQ24Game4NaviPQ23Sys8Triangle=0x80141558 -collisionCallback__Q24Game4NaviFRQ24Game9CollEvent=0x8014155C -collisionCallback__Q24Game9NaviStateFPQ24Game4NaviRQ24Game9CollEvent=0x801415A0 -platCallback__Q24Game4NaviFRQ24Game9PlatEvent=0x801415A4 -viewEntryShape__Q24Game4NaviFR7MatrixfR10Vector3=0x80141738 -viewGetShape__Q24Game4NaviFv=0x8014173C -viewGetBaseScale__Q24Game4NaviFv=0x80141744 -doEntry__Q24Game4NaviFv=0x80141760 -doAnimation__Q24Game4NaviFv=0x80141958 -updateCursor__Q24Game4NaviFv=0x80141C1C -doSimulation__Q24Game4NaviFf=0x80141E9C -doSetView__Q24Game4NaviFi=0x80141EF4 -doViewCalc__Q24Game4NaviFv=0x80141FAC -setLifeMax__Q24Game4NaviFv=0x80141FE8 -getLifeRatio__Q24Game4NaviFv=0x80141FFC -getDownfloorMass__Q24Game4NaviFv=0x80142014 -update__Q24Game4NaviFv=0x801420C0 -vsUsableY__Q24Game9NaviStateFv=0x80142368 -openKanketuMenu__Q24Game15BaseGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller=0x80142370 -openCaveInMenu__Q24Game15BaseGameSectionFPQ34Game8ItemCave4Itemi=0x80142374 -openCaveMoreMenu__Q24Game15BaseGameSectionFPQ34Game8ItemHole4ItemP10Controller=0x80142378 -do_updateLookCreature__Q24Game4NaviFv=0x8014237C -inWaterCallback__Q24Game4NaviFPQ24Game8WaterBox=0x80142380 -outWaterCallback__Q24Game4NaviFv=0x8014241C -ignoreAtari__Q24Game4NaviFPQ24Game8Creature=0x80142460 -ignoreAtari__Q24Game9NaviStateFPQ24Game8Creature=0x80142510 -on_movie_begin__Q24Game4NaviFb=0x80142518 -on_movie_end__Q24Game4NaviFb=0x80142564 -movieUserCommand__Q24Game4NaviFUlPQ24Game11MoviePlayer=0x801425AC -movieSetFaceDir__Q24Game4NaviFf=0x80142828 -movieStartAnimation__Q24Game4NaviFUl=0x80142850 -movieStartDemoAnimation__Q24Game4NaviFPQ28SysShape8AnimInfo=0x8014289C -movieSetTranslation__Q24Game4NaviFR10Vector3f=0x80142978 -movieGotoPosition__Q24Game4NaviFR10Vector3=0x80142A00 -set_movie_draw__Q24Game4NaviFb=0x80142B2C -isWalking__Q24Game4NaviFv=0x80142CD4 -setDeadLaydown__Q24Game4NaviFv=0x80142D24 -checkHole__Q24Game4NaviFv=0x80142E90 -isDone__26IteratorFv=0x8014316C -checkCave__Q24Game4NaviFv=0x801431B8 -checkBigFountain__Q24Game4NaviFv=0x80143484 -checkOnyon__Q24Game4NaviFv=0x80143738 -isDone__23IteratorFv=0x80143AA0 -getMapCollisionRadius__Q24Game4NaviFv=0x80143AEC -doDirectDraw__Q24Game4NaviFR8Graphics=0x80143AF4 -disableController__Q24Game4NaviFv=0x80143AF8 -control__Q24Game4NaviFv=0x80143B04 -makeVelocity__Q24Game4NaviFv=0x80143BDC -reviseController__Q24Game4NaviFR10Vector3=0x80143FF4 -callPikis__Q24Game4NaviFv=0x80144198 -invincible__Q24Game4NaviFv=0x8014436C -invincible__Q24Game9NaviStateFv=0x801443F8 -setInvincibleTimer__Q24Game4NaviFUc=0x80144400 -startDamage__Q24Game4NaviFf=0x80144408 -addDamage__Q24Game4NaviFfb=0x80144610 -enterAllPikis__Q24Game4NaviFv=0x80144824 -formationable__Q24Game4NaviFv=0x80144AC0 -updateKaisanDisable__Q24Game4NaviFv=0x80144AD4 -clearKaisanDisable__Q24Game4NaviFv=0x80144B44 -throwable__Q24Game4NaviFv=0x80144B50 -startThrowDisable__Q24Game4NaviFv=0x80144B60 -updateThrowDisable__Q24Game4NaviFv=0x80144B6C -clearThrowDisable__Q24Game4NaviFv=0x80144BA8 -holeinAllPikis__Q24Game4NaviFR10Vector3=0x80144BB4 -soft_transittable__Q24Game9PikiStateFi=0x80144EB0 -transittable__Q24Game9PikiStateFi=0x80144EB8 -fountainonAllPikis__Q24Game4NaviFR10Vector3=0x80144EC0 -demowaitAllPikis__Q24Game4NaviFv=0x801451B8 -releasePikis__Q24Game4NaviFv=0x8014548C -releasable__Q24Game9PikiStateFv=0x80145DE0 -makeCStick__Q24Game4NaviFb=0x80145DE8 -isCStickNetural__Q24Game4NaviFv=0x80146708 -findNextThrowPiki__Q24Game4NaviFv=0x8014676C -ogGetNextThrowPiki__Q24Game4NaviFv=0x80146A28 -throwPiki__Q24Game4NaviFPQ24Game4PikiR10Vector3=0x80146A54 -commandOn__Q24Game4NaviFv=0x80146D14 -getName__Q26PikiAI10ActFreeArgFv=0x80146D1C -getName__Q26PikiAI17CreatureActionArgFv=0x80146D28 -getName__Q26PikiAI9ActionArgFv=0x80146D34 -getName__Q24Game13NaviDamageArgFv=0x80146D40 -__ml__23IteratorFv=0x80146D4C -next__23IteratorFv=0x80146D84 -first__23IteratorFv=0x80146E68 -__ml__26IteratorFv=0x80146F44 -next__26IteratorFv=0x80146F7C -first__26IteratorFv=0x80147060 -actCommon__Q24Game11GameMessageFPQ24Game15BaseGameSection=0x8014713C -actSingle__Q24Game11GameMessageFPQ24Game17SingleGameSection=0x80147144 -actVs__Q24Game11GameMessageFPQ24Game13VsGameSection=0x8014714C -__ml__36IteratorFv=0x80147154 -next__36IteratorFv=0x8014718C -first__36IteratorFv=0x80147270 -setVelocity__Q24Game4NaviFR10Vector3=0x8014734C -getCreatureName__Q24Game4NaviFv=0x80147368 -create__Q23efx7TFueactFPQ23efx3Arg=0x80147370 -fade__Q23efx7TFueactFv=0x8014740C -fade__Q23efx13TFueactCircleFv=0x80147470 -forceKill__Q23efx7TFueactFv=0x801474AC -forceKill__Q23efx13TFueactCircleFv=0x80147510 -init__Q24Game26StateMachineFPQ24Game4Navi=0x8014754C -invoke__44Delegate1FPQ24Game10CellObject=0x80147550 -transit__Q24Game26StateMachineFPQ24Game4NaviiPQ24Game8StateArg=0x80147580 -init__Q24Game22FSMStateFPQ24Game4NaviPQ24Game8StateArg=0x8014761C -cleanup__Q24Game22FSMStateFPQ24Game4Navi=0x80147620 -exec__Q24Game26StateMachineFPQ24Game4Navi=0x80147624 -exec__Q24Game22FSMStateFPQ24Game4Navi=0x8014765C -__sinit_navi_cpp=0x80147660 -@4@__dt__Q23efx12TFueactBiri1Fv=0x80147688 -@4@__dt__Q23efx12TFueactBiri2Fv=0x80147690 -@376@onKeyEvent__Q24Game4NaviFRCQ28SysShape8KeyEvent=0x80147698 -@784@12@viewEntryShape__Q24Game4NaviFR7MatrixfR10Vector3=0x801476A0 -@784@12@viewGetShape__Q24Game4NaviFv=0x801476B4 -@784@12@viewGetBaseScale__Q24Game4NaviFv=0x801476C8 -__ct__Q24Game4PikiFv=0x801476DC -__ct__Q23efx9TPkEffectFv=0x80147880 -__dt__Q23efx12TPkBlackDownFv=0x80147B3C -__dt__Q23efx7TPkMoeAFv=0x80147BD8 -__dt__Q23efx11TPkNageBlurFv=0x80147C74 -isWalking__Q24Game4PikiFv=0x80147D10 -getFormationSlotID__Q24Game4PikiFv=0x80147DC4 -getCurrAction__Q24Game4PikiFv=0x80147E14 -clearCurrAction__Q24Game4PikiFv=0x80147E38 -getCurrActionID__Q24Game4PikiFv=0x80147E48 -onInit__Q24Game4PikiFPQ24Game15CreatureInitArg=0x80147E54 -start__Q24Game26StateMachineFPQ24Game4PikiiPQ24Game8StateArg=0x801480D4 -onKill__Q24Game4PikiFPQ24Game15CreatureKillArg=0x80148108 -cleanup__Q26PikiAI6ActionFv=0x80148494 -onSetPosition__Q24Game4PikiFv=0x80148498 -getLODSphere__Q24Game4PikiFRQ23Sys6Sphere=0x801484B4 -update__Q24Game4PikiFv=0x801484D8 -dead__Q24Game9PikiStateFv=0x801486E8 -isAlive__Q24Game4PikiFv=0x801486F0 -on_movie_begin__Q24Game4PikiFb=0x80148748 -on_movie_end__Q24Game4PikiFb=0x8014874C -getCreatureID__Q24Game4PikiFv=0x801487B0 -movieUserCommand__Q24Game4PikiFUlPQ24Game11MoviePlayer=0x801487B8 -movieStartAnimation__Q24Game4PikiFUl=0x801487BC -movieStartDemoAnimation__Q24Game4PikiFPQ28SysShape8AnimInfo=0x801487F4 -movieSetTranslation__Q24Game4PikiFR10Vector3f=0x8014883C -movieGotoPosition__Q24Game4PikiFR10Vector3=0x801488C4 -startSound__Q24Game4PikiFUlb=0x801488CC -startSound__Q24Game4PikiFUlQ36PSGame5SeMgr7SetSeId=0x8014890C -startSound__Q24Game4PikiFPQ24Game8CreatureUlb=0x80148954 -startSound__Q24Game4PikiFPQ24Game8CreatureUlQ36PSGame5SeMgr7SetSeId=0x801489C4 -getJAIObject__Q24Game4PikiFv=0x80148A90 -getPSCreature__Q24Game4PikiFv=0x80148AA4 -canVsBattle__Q24Game4PikiFv=0x80148AAC -battleOK__Q24Game9PikiStateFv=0x80148ADC -getVsBattlePiki__Q24Game4PikiFv=0x80148AE4 -attachRadar__Q24Game4PikiFb=0x80148B20 -inWaterCallback__Q24Game4PikiFPQ24Game8WaterBox=0x80148BD0 -outWaterCallback__Q24Game4PikiFv=0x80148D18 -outWaterCallback__Q24Game9PikiStateFPQ24Game4Piki=0x80148D80 -might_bury__Q24Game4PikiFv=0x80148D84 -surviveDayEnd__Q24Game4PikiFv=0x80148ED8 -onKeyEvent__Q24Game4PikiFRCQ28SysShape8KeyEvent=0x80148EEC -onKeyEvent__Q24Game9PikiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x80148F30 -getStateID__Q24Game4PikiFv=0x80148F34 -getSpeed__Q24Game4PikiFf=0x80148F50 -setSpeed__Q24Game4PikiFfR10Vector3=0x80149018 -setSpeed__Q24Game4PikiFfR10Vector3f=0x801491D8 -isPikmin__Q24Game4PikiFv=0x801493E4 -isThrowable__Q24Game4PikiFv=0x80149424 -throwable__Q24Game9PikiStateFv=0x80149470 -getDownfloorMass__Q24Game4PikiFv=0x80149478 -gasInvicible__Q24Game4PikiFv=0x801494B8 -setGasInvincible__Q24Game4PikiFUc=0x801494CC -updateGasInvincible__Q24Game4PikiFv=0x801494D4 -getAttackDamage__Q24Game4PikiFv=0x801494EC -getThrowHeight__Q24Game4PikiFv=0x801495E4 -getPelletCarryPower__Q24Game4PikiFv=0x801496A4 -onStickStartSelf__Q24Game4PikiFPQ24Game8Creature=0x80149768 -onStickEndSelf__Q24Game4PikiFPQ24Game8Creature=0x8014976C -stimulate__Q24Game4PikiFRQ24Game11Interaction=0x80149854 -bounceCallback__Q24Game4PikiFPQ23Sys8Triangle=0x801498DC -bounceCallback__Q26PikiAI6ActionFPQ24Game4PikiPQ23Sys8Triangle=0x80149980 -aiActive__Q24Game9PikiStateFv=0x80149984 -bounceCallback__Q24Game9PikiStateFPQ24Game4PikiPQ23Sys8Triangle=0x8014998C -wallCallback__Q24Game4PikiFR10Vector3=0x80149990 -wallCallback__Q26PikiAI6ActionFR10Vector3=0x80149A30 -wallCallback__Q24Game9PikiStateFPQ24Game4PikiR10Vector3=0x80149A34 -collisionCallback__Q24Game4PikiFRQ24Game9CollEvent=0x80149A38 -collisionCallback__Q26PikiAI6ActionFPQ24Game4PikiRQ24Game9CollEvent=0x80149AE4 -collisionCallback__Q24Game9PikiStateFPQ24Game4PikiRQ24Game9CollEvent=0x80149AE8 -platCallback__Q24Game4PikiFRQ24Game9PlatEvent=0x80149AEC -platCallback__Q26PikiAI6ActionFPQ24Game4PikiRQ24Game9PlatEvent=0x80149C64 -platCallback__Q24Game9PikiStateFPQ24Game4PikiRQ24Game9PlatEvent=0x80149C68 -ignoreAtari__Q24Game4PikiFPQ24Game8Creature=0x80149C6C -ignoreAtari__Q24Game9PikiStateFPQ24Game4PikiPQ24Game8Creature=0x80149CBC -setFreeLightEffect__Q24Game4PikiFb=0x80149CC4 -setDopeEffect__Q24Game4PikiFb=0x80149D24 -clearDope__Q24Game4PikiFv=0x80149DA8 -extendDopeTime__Q24Game4PikiFv=0x80149E30 -startDope__Q24Game4PikiFi=0x80149E44 -doped__Q24Game4PikiFv=0x80149FE0 -initColor__Q24Game4PikiFv=0x80149FF8 -setPastel__Q24Game4PikiFb=0x8014A038 -getShadowParam__Q24Game4PikiFRQ24Game11ShadowParam=0x8014A138 -isMyPikmin__Q24Game4PikiFPQ24Game8Creature=0x8014A208 -isTekiFollowAI__Q24Game4PikiFv=0x8014A288 -doColorChange__Q24Game4PikiFv=0x8014A2A0 -doDebugDL__Q24Game4PikiFv=0x8014A38C -startMotion__Q24Game4PikiFiiPQ28SysShape14MotionListenerPQ28SysShape14MotionListener=0x8014A3B8 -doAnimation__Q24Game4PikiFv=0x8014A4B0 -doDirectDraw__Q24Game4PikiFR8Graphics=0x8014A594 -getBaseScale__Q24Game4PikiFv=0x8014A598 -changeShape__Q24Game4PikiFi=0x8014A5C0 -changeHappa__Q24Game4PikiFi=0x8014A770 -do_updateLookCreature__Q24Game4PikiFv=0x8014A778 -setTekiKillID__Q24Game4PikiFi=0x8014AABC -deferPikiCollision__Q24Game4PikiFv=0x8014AAD0 -getCreatureName__Q24Game4PikiFv=0x8014AAD8 -kill__27MonoObjectMgrFPQ24Game4Piki=0x8014AAE0 -init__Q24Game26StateMachineFPQ24Game4Piki=0x8014AB34 -transit__Q24Game26StateMachineFPQ24Game4PikiiPQ24Game8StateArg=0x8014AB38 -init__Q24Game22FSMStateFPQ24Game4PikiPQ24Game8StateArg=0x8014ABD4 -cleanup__Q24Game22FSMStateFPQ24Game4Piki=0x8014ABD8 -exec__Q24Game26StateMachineFPQ24Game4Piki=0x8014ABDC -exec__Q24Game22FSMStateFPQ24Game4Piki=0x8014AC14 -__sinit_piki_cpp=0x8014AC18 -@4@__dt__Q23efx7TPkMoeAFv=0x8014AD88 -@4@__dt__Q23efx12TPkBlackDownFv=0x8014AD90 -@376@onKeyEvent__Q24Game4PikiFRCQ28SysShape8KeyEvent=0x8014AD98 -__ct__Q24Game15BaseGameSectionFP7JKRHeap=0x8014ADA0 -__dt__11WipeInFaderFv=0x8014AFBC -__dt__12WipeOutFaderFv=0x8014B02C -__dt__8WipeBaseFv=0x8014B09C -useSpecificFBTexture__Q24Game15BaseGameSectionFP10JUTTexture=0x8014B0FC -restoreFBTexture__Q24Game15BaseGameSectionFv=0x8014B170 -__dt__Q24Game15BaseGameSectionFv=0x8014B1DC -loadSync__Q24Game15BaseGameSectionFP9IDelegateb=0x8014B2F0 -waitSyncLoad__Q24Game15BaseGameSectionFb=0x8014B340 -dvdloadGameSystem__Q24Game15BaseGameSectionFv=0x8014B460 -init__Q24Game15BaseGameSectionFv=0x8014B4B0 -onInit__Q24Game15BaseGameSectionFv=0x8014B840 -drawInit__Q24Game15BaseGameSectionFR8GraphicsQ27Section13EDrawInitMode=0x8014B844 -section_fadeout__Q24Game15BaseGameSectionFv=0x8014B878 -doUpdate__Q24Game15BaseGameSectionFv=0x8014B87C -onUpdate__Q24Game15BaseGameSectionFv=0x8014BC24 -doDraw__Q24Game15BaseGameSectionFR8Graphics=0x8014BC28 -pre2dDraw__Q24Game15BaseGameSectionFR8Graphics=0x8014BD98 -movieDone__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl=0x8014BD9C -onMovieDone__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl=0x8014BE14 -onMovieCommand__Q24Game15BaseGameSectionFi=0x8014BE18 -initJ3D__Q24Game15BaseGameSectionFv=0x8014BEA4 -initResources__Q24Game15BaseGameSectionFv=0x8014C2F4 -initViewports__Q24Game15BaseGameSectionFR8Graphics=0x8014C328 -__dt__12LookAtCameraFv=0x8014C50C -initGenerators__Q24Game15BaseGameSectionFv=0x8014C5CC -advanceDayCount__Q24Game15BaseGameSectionFv=0x8014D6EC -saveToGeneratorCache__Q24Game15BaseGameSectionFPQ24Game10CourseInfo=0x8014D790 -pmTogglePlayer__Q24Game15BaseGameSectionFv=0x8014D864 -onTogglePlayer__Q24Game15BaseGameSectionFv=0x8014D910 -onPlayerJoin__Q24Game15BaseGameSectionFv=0x8014D914 -setPlayerMode__Q24Game15BaseGameSectionFi=0x8014D918 -split2__8SplitterFf=0x8014DBD0 -onCameraBlendFinished__Q24Game15BaseGameSectionFPQ24Game9CameraArg=0x8014DBD4 -setFixNearFar__Q24Game15BaseGameSectionFbff=0x8014DD20 -setCamController__Q24Game15BaseGameSectionFv=0x8014DD88 -on_setCamController__Q24Game15BaseGameSectionFi=0x8014DF98 -setDefaultPSSceneInfo__Q24Game15BaseGameSectionFRQ26PSGame9SceneInfo=0x8014DF9C -getSoundMatrixPtr__6CameraFv=0x8014E120 -getSoundPositionPtr__6CameraFv=0x8014E128 -prepareHoleIn__Q24Game15BaseGameSectionFR10Vector3b=0x8014E130 -prepareFountainOn__Q24Game15BaseGameSectionFR10Vector3=0x8014E7BC -initLights__Q24Game15BaseGameSectionFv=0x8014EED0 -draw3D__Q24Game15BaseGameSectionFR8Graphics=0x8014EF44 -drawParticle__Q24Game15BaseGameSectionFR8Graphicsi=0x8014EF64 -draw_Ogawa2D__Q24Game15BaseGameSectionFR8Graphics=0x8014F138 -test_draw_treasure_detector__Q24Game15BaseGameSectionFv=0x8014F1D8 -draw2D__Q24Game15BaseGameSectionFR8Graphics=0x8014F1DC -directDraw__Q24Game15BaseGameSectionFR8GraphicsP8Viewport=0x8014F398 -directDrawPost__Q24Game15BaseGameSectionFR8GraphicsP8Viewport=0x8014F450 -j3dSetView__Q24Game15BaseGameSectionFP8Viewportb=0x8014F4C8 -doSimulation__Q24Game15BaseGameSectionFf=0x8014F51C -doSimpleDraw__Q24Game15BaseGameSectionFP8Viewport=0x8014F54C -doAnimation__Q24Game15BaseGameSectionFv=0x8014F57C -changeGeneratorCursor__Q24Game15BaseGameSectionFR10Vector3=0x8014F754 -doEntry__Q24Game15BaseGameSectionFv=0x8014F7A0 -doSetView__Q24Game15BaseGameSectionFi=0x8014F868 -doViewCalc__Q24Game15BaseGameSectionFv=0x8014F968 -updateBlendCamera__Q24Game15BaseGameSectionFv=0x8014FA30 -setSplitter__Q24Game15BaseGameSectionFb=0x8014FBA4 -updateSplitter__Q24Game15BaseGameSectionFv=0x8014FC10 -doDirectDrawPost__Q24Game15BaseGameSectionFR8GraphicsP8Viewport=0x8014FD44 -doDirectDraw__Q24Game15BaseGameSectionFR8GraphicsP8Viewport=0x8014FD9C -onStartHeap__Q24Game15BaseGameSectionFv=0x8014FDA0 -clearHeap__Q24Game15BaseGameSectionFv=0x8014FDA4 -__dt__10ControllerFv=0x8015004C -onClearHeap__Q24Game15BaseGameSectionFv=0x801500AC -startFadeout__Q24Game15BaseGameSectionFf=0x801500B0 -startFadein__Q24Game15BaseGameSectionFf=0x801500DC -startFadeoutin__Q24Game15BaseGameSectionFf=0x80150108 -startFadeblack__Q24Game15BaseGameSectionFv=0x80150134 -startFadewhite__Q24Game15BaseGameSectionFv=0x80150170 -setupFixMemory__Q24Game15BaseGameSectionFv=0x801501AC -setupFixMemory_dvdload__Q24Game15BaseGameSectionFv=0x8015036C -__dt__15ModelEffectDataFv=0x801506A0 -enableAllocHalt__Q24Game15BaseGameSectionFv=0x80150700 -disableAllocHalt__Q24Game15BaseGameSectionFv=0x80150708 -setupFloatMemory__Q24Game15BaseGameSectionFv=0x80150710 -onSetSoundScene__Q24Game15BaseGameSectionFv=0x801513D0 -getCurrFloor__Q24Game15BaseGameSectionFv=0x801513D4 -challengeDisablePelplant__Q24Game15BaseGameSectionFv=0x801513DC -getVsEditNumber__Q24Game15BaseGameSectionFv=0x801513E4 -getEditorFilename__Q24Game15BaseGameSectionFv=0x801513EC -getCaveFilename__Q24Game15BaseGameSectionFv=0x801513F4 -onSetupFloatMemory__Q24Game15BaseGameSectionFv=0x80151400 -isDevelopSection__Q24Game15BaseGameSectionFv=0x80151404 -__dt__Q28PSSystem28SingletonBaseFv=0x8015140C -setDrawBuffer__Q24Game15BaseGameSectionFi=0x8015145C -postSetupFloatMemory__Q24Game15BaseGameSectionFv=0x80151500 -setupJUTTextures__Q24Game6MapMgrFv=0x80151530 -createFallPikminSound__Q24Game15BaseGameSectionFv=0x80151534 -captureRadarmap__Q24Game15BaseGameSectionFR8Graphics=0x80151734 -satisfy__27PikiCond_ExceptChappyPikminFPQ24Game4Piki=0x80151738 -__dt__17Container<5Plane>Fv=0x80151750 -__dt__22ArrayContainer<5Plane>Fv=0x801517C0 -readObject__9CullPlaneFR6StreamR5Plane=0x80151840 -writeObject__9CullPlaneFR6StreamR5Plane=0x80151844 -__dt__9CullPlaneFv=0x80151848 -forceFinish__Q24Game15BaseGameSectionFv=0x801518D8 -addChallengeScore__Q24Game15BaseGameSectionFi=0x801518E8 -startMainBgm__Q24Game15BaseGameSectionFv=0x801518EC -goNextFloor__Q24Game15BaseGameSectionFPQ34Game8ItemHole4Item=0x801518F0 -goCave__Q24Game15BaseGameSectionFPQ34Game8ItemCave4Item=0x801518F4 -goMainMap__Q24Game15BaseGameSectionFPQ34Game15ItemBigFountain4Item=0x801518F8 -getCaveID__Q24Game15BaseGameSectionFv=0x801518FC -getCurrentCourseInfo__Q24Game15BaseGameSectionFv=0x80151908 -openContainerWindow__Q24Game15BaseGameSectionFv=0x80151910 -closeContainerWindow__Q24Game15BaseGameSectionFv=0x80151918 -playMovie_firstexperience__Q24Game15BaseGameSectionFiPQ24Game8Creature=0x8015191C -playMovie_bootup__Q24Game15BaseGameSectionFPQ24Game5Onyon=0x80151920 -playMovie_helloPikmin__Q24Game15BaseGameSectionFPQ24Game4Piki=0x80151924 -disableTimer__Q24Game15BaseGameSectionFUl=0x80151928 -onMovieStart__Q24Game15BaseGameSectionFPQ24Game11MovieConfigUlUl=0x8015192C -gmOrimaDown__Q24Game15BaseGameSectionFi=0x80151930 -gmPikminZero__Q24Game15BaseGameSectionFv=0x80151934 -drawInit__7SectionFR8Graphics=0x80151938 -doExit__7SectionFv=0x8015193C -forceReset__7SectionFv=0x80151940 -getCurrentSection__7SectionFv=0x80151948 -doLoadingStart__7SectionFv=0x8015194C -doLoading__7SectionFv=0x80151950 -isFinishable__7SectionFv=0x80151958 -writeObject__22ArrayContainer<5Plane>FR6StreamR5Plane=0x80151960 -readObject__22ArrayContainer<5Plane>FR6StreamR5Plane=0x80151964 -write__22ArrayContainer<5Plane>FR6Stream=0x80151968 -alloc__22ArrayContainer<5Plane>Fi=0x80151A3C -setArray__22ArrayContainer<5Plane>FP5Planei=0x80151AA4 -get__22ArrayContainer<5Plane>FPv=0x80151AB4 -getNext__22ArrayContainer<5Plane>FPv=0x80151AC4 -getStart__22ArrayContainer<5Plane>Fv=0x80151ACC -getEnd__22ArrayContainer<5Plane>Fv=0x80151AD4 -getAt__22ArrayContainer<5Plane>Fi=0x80151ADC -getTo__22ArrayContainer<5Plane>Fv=0x80151AEC -getObject__17Container<5Plane>FPv=0x80151AF4 -getAt__17Container<5Plane>Fi=0x80151B20 -getTo__17Container<5Plane>Fv=0x80151B28 -invoke__63Delegate3FPQ24Game11MovieConfigUlUl=0x80151B30 -invoke__49Delegate1>FR10Vector3=0x80151B60 -invoke__54Delegate1FPQ24Game9CameraArg=0x80151B90 -invoke__45Delegate1>FR7Rect=0x80151BC0 -invoke__34DelegateFv=0x80151BF0 -addOne__22ArrayContainer<5Plane>FR5Plane=0x80151C20 -__ct__5PlaneFv=0x80151C68 -read__22ArrayContainer<5Plane>FR6Stream=0x80151C84 -alloc__27MonoObjectMgrFi=0x80151D34 -onAlloc__27MonoObjectMgrFv=0x80151EBC -alloc__27MonoObjectMgrFi=0x80151EC0 -onAlloc__27MonoObjectMgrFv=0x80152048 -__sinit_baseGameSection_cpp=0x8015204C -__dt__Q24Game17SingleGameSectionFv=0x80152074 -startMainBgm__Q24Game17SingleGameSectionFv=0x801520F8 -isGameScene__Q23PSM9SceneBaseFv=0x8015227C -init__Q34Game10SingleGame3FSMFPQ24Game17SingleGameSection=0x80152284 -draw__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionR8Graphics=0x80152524 -transit__Q34Game10SingleGame3FSMFPQ24Game17SingleGameSectioniPQ24Game8StateArg=0x80152528 -getState__Q34Game10SingleGame3FSMFi=0x80152548 -accountEarnings__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game16PelletCropMemoryb=0x80152588 -init__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x80152788 -exec__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSection=0x801528E8 -transit__Q24Game36FSMStateFPQ24Game17SingleGameSectioniPQ24Game8StateArg=0x8015299C -draw__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSectionR8Graphics=0x801529CC -cleanup__Q34Game10SingleGame15CaveDayEndStateFPQ24Game17SingleGameSection=0x80152A08 -__ct__Q24Game17SingleGameSectionFP7JKRHeap=0x80152A3C -section_fadeout__Q24Game17SingleGameSectionFv=0x80152B1C -on_section_fadeout__Q34Game10SingleGame5StateFPQ24Game17SingleGameSection=0x80152B50 -flow_goto_title__Q24Game17SingleGameSectionFv=0x80152B54 -onInit__Q24Game17SingleGameSectionFv=0x80152B60 -start__Q24Game40StateMachineFPQ24Game17SingleGameSectioniPQ24Game8StateArg=0x80152CE8 -doUpdate__Q24Game17SingleGameSectionFv=0x80152D1C -on_demo_timer__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionUl=0x80152E08 -doDraw__Q24Game17SingleGameSectionFR8Graphics=0x80152E0C -on_setCamController__Q24Game17SingleGameSectionFi=0x80152E5C -onSetSoundScene__Q24Game17SingleGameSectionFv=0x80152EB8 -getCaveID__Q24Game17SingleGameSectionFv=0x80153118 -onSetupFloatMemory__Q24Game17SingleGameSectionFv=0x80153120 -onClearHeap__Q24Game17SingleGameSectionFv=0x801533C0 -onStartHeap__Q24Game17SingleGameSectionFv=0x80153410 -gmOrimaDown__Q24Game17SingleGameSectionFi=0x8015341C -onOrimaDown__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectioni=0x80153460 -gmPikminZero__Q24Game17SingleGameSectionFv=0x80153464 -enableTimer__Q24Game17SingleGameSectionFfUl=0x80153468 -disableTimer__Q24Game17SingleGameSectionFUl=0x80153488 -onMovieStart__Q24Game17SingleGameSectionFPQ24Game11MovieConfigUlUl=0x80153508 -onMovieStart__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x8015355C -onMovieDone__Q24Game17SingleGameSectionFPQ24Game11MovieConfigUlUl=0x80153560 -onMovieDone__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x801535C4 -onMovieCommand__Q24Game17SingleGameSectionFi=0x801535C8 -onMovieCommand__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectioni=0x80153624 -playMovie_bootup__Q24Game17SingleGameSectionFPQ24Game5Onyon=0x80153628 -getFaceDir__Q24Game5OnyonFv=0x80153868 -playMovie_helloPikmin__Q24Game17SingleGameSectionFPQ24Game4Piki=0x80153870 -playMovie_firstexperience__Q24Game17SingleGameSectionFiPQ24Game8Creature=0x80153CC4 -saveMainMapSituation__Q24Game17SingleGameSectionFb=0x80153CC8 -loadMainMapSituation__Q24Game17SingleGameSectionFv=0x80153F68 -clearCaveMenus__Q24Game17SingleGameSectionFv=0x80153F98 -openCaveInMenu__Q24Game17SingleGameSectionFPQ34Game8ItemCave4Itemi=0x80153FB0 -getCurrentCourseInfo__Q24Game17SingleGameSectionFv=0x801543C8 -openCaveMoreMenu__Q24Game17SingleGameSectionFPQ34Game8ItemHole4ItemP10Controller=0x801543D0 -saveCaveMore__Q24Game17SingleGameSectionFv=0x8015456C -openKanketuMenu__Q24Game17SingleGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller=0x80154598 -updateCaveMenus__Q24Game17SingleGameSectionFv=0x8015471C -goNextFloor__Q24Game17SingleGameSectionFPQ34Game8ItemHole4Item=0x80154A1C -onNextFloor__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game8ItemHole4Item=0x80154A5C -goCave__Q24Game17SingleGameSectionFPQ34Game8ItemCave4Item=0x80154A60 -onHoleIn__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game8ItemCave4Item=0x80154AD4 -goMainMap__Q24Game17SingleGameSectionFPQ34Game15ItemBigFountain4Item=0x80154AD8 -onFountainReturn__Q34Game10SingleGame5StateFPQ24Game17SingleGameSectionPQ34Game15ItemBigFountain4Item=0x80154B20 -setupMainMapGames__Q24Game17SingleGameSectionFv=0x80154B24 -setupCaveGames__Q24Game17SingleGameSectionFv=0x80154B44 -createFallPikmins__Q24Game17SingleGameSectionFv=0x80154B64 -setDispMemberSMenu__Q24Game17SingleGameSectionFRQ32og6Screen18DispMemberSMenuAll=0x80154FD8 -__cl__Q34Game8GameStat11PikiCounterFi=0x801554DC -updateMainMapScreen__Q24Game17SingleGameSectionFv=0x801554EC -drawMainMapScreen__Q24Game17SingleGameSectionFv=0x80155A78 -updateCaveScreen__Q24Game17SingleGameSectionFv=0x80155A7C -getCurrFloor__Q24Game17SingleGameSectionFv=0x80155F54 -drawCaveScreen__Q24Game17SingleGameSectionFv=0x80155F5C -newCaveOtakaraEarningsAndDrops__Q24Game17SingleGameSectionFv=0x80155F60 -clearCaveOtakaraEarningsAndDrops__Q24Game17SingleGameSectionFv=0x80155FEC -getSize__Q32og6Screen14DispMemberCaveFv=0x8015603C -getOwnerID__Q32og6Screen14DispMemberCaveFv=0x80156044 -getMemberID__Q32og6Screen14DispMemberCaveFv=0x80156050 -doSetSubMemberAll__Q32og6Screen14DispMemberBaseFv=0x80156060 -getSize__Q32og6Screen17DispMemberHurryUpFv=0x80156064 -getOwnerID__Q32og6Screen17DispMemberHurryUpFv=0x8015606C -getMemberID__Q32og6Screen17DispMemberHurryUpFv=0x80156078 -getSize__Q32og6Screen21DispMemberDayEndCountFv=0x8015608C -getOwnerID__Q32og6Screen21DispMemberDayEndCountFv=0x80156094 -getMemberID__Q32og6Screen21DispMemberDayEndCountFv=0x801560A0 -getSize__Q32og6Screen16DispMemberGroundFv=0x801560B4 -getOwnerID__Q32og6Screen16DispMemberGroundFv=0x801560BC -getMemberID__Q32og6Screen16DispMemberGroundFv=0x801560C8 -getName__Q24Game11PikiInitArgFv=0x801560D8 -getSize__Q32og6Screen21DispMemberKanketuMenuFv=0x801560E4 -getOwnerID__Q32og6Screen21DispMemberKanketuMenuFv=0x801560EC -getMemberID__Q32og6Screen21DispMemberKanketuMenuFv=0x801560F8 -getSize__Q32og6Screen18DispMemberCaveMoreFv=0x8015610C -getOwnerID__Q32og6Screen18DispMemberCaveMoreFv=0x80156114 -getMemberID__Q32og6Screen18DispMemberCaveMoreFv=0x80156120 -getSize__Q32og6Screen17DispMemberAnaDemoFv=0x80156134 -getOwnerID__Q32og6Screen17DispMemberAnaDemoFv=0x8015613C -getMemberID__Q32og6Screen17DispMemberAnaDemoFv=0x80156148 -getName__Q24Game11PikiKillArgFv=0x8015615C -__dt__Q23efx11TLastMomijiFv=0x80156168 -__dt__Q23efx13TForestSakuraFv=0x80156204 -__dt__Q23efx13TTutorialSnowFv=0x801562A0 -isCaveFloor__Q26PSGame13CaveFloorInfoFv=0x8015633C -isBossFloor__Q26PSGame13CaveFloorInfoFv=0x80156344 -isRelaxFloor__Q26PSGame13CaveFloorInfoFv=0x80156358 -isDevelopSection__Q24Game17SingleGameSectionFv=0x8015636C -getTimerType__Q24Game17SingleGameSectionFv=0x80156374 -getCaveFilename__Q24Game17SingleGameSectionFv=0x8015637C -init__Q24Game36FSMStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x80156384 -exec__Q24Game36FSMStateFPQ24Game17SingleGameSection=0x80156388 -cleanup__Q24Game36FSMStateFPQ24Game17SingleGameSection=0x8015638C -resume__Q24Game36FSMStateFPQ24Game17SingleGameSection=0x80156390 -restart__Q24Game36FSMStateFPQ24Game17SingleGameSection=0x80156394 -init__Q24Game40StateMachineFPQ24Game17SingleGameSection=0x80156398 -exec__Q24Game40StateMachineFPQ24Game17SingleGameSection=0x8015639C -create__Q24Game40StateMachineFi=0x801563D4 -invoke__36DelegateFv=0x80156438 -transit__Q24Game40StateMachineFPQ24Game17SingleGameSectioniPQ24Game8StateArg=0x80156468 -registerState__Q24Game40StateMachineFPQ24Game36FSMState=0x80156504 -__sinit_singleGameSection_cpp=0x80156588 -@4@__dt__Q23efx13TTutorialSnowFv=0x801565B0 -@4@__dt__Q23efx13TForestSakuraFv=0x801565B8 -@4@__dt__Q23efx11TLastMomijiFv=0x801565C0 -mapSearch__Q24Game11CellPyramidFRQ23Sys6SphereP32IDelegate1=0x801565C8 -exitCell__Q24Game10CellObjectFv=0x8015668C -__ct__Q24Game4CellFv=0x80156740 -mapSearch__Q24Game4CellFP32IDelegate1Ul=0x8015677C -mapSearchUp__Q24Game4CellFP32IDelegate1Ul=0x80156840 -mapSearchDown__Q24Game4CellFP32IDelegate1Ul=0x80156A78 -resolveCollision__Q24Game4CellFv=0x80156CF8 -initFrame__Q24Game11CellPyramidFv=0x80156D44 -updateCollisionBuffer__Q24Game10CellObjectFPQ24Game10CellObject=0x80156D48 -__ct__Q24Game15CollisionBufferFv=0x80156E18 -alloc__Q24Game15CollisionBufferFPQ24Game10CellObjecti=0x80156E30 -__ct__Q24Game8CollNodeFv=0x80156E9C -insert__Q24Game15CollisionBufferFPQ24Game10CellObjectf=0x80156EB0 -pikiInsertPiki__Q24Game15CollisionBufferFPQ24Game10CellObjectf=0x80156F68 -pikiInsertOther__Q24Game15CollisionBufferFPQ24Game10CellObjectf=0x80157090 -insertSort__Q24Game15CollisionBufferFPQ24Game10CellObjectf=0x801571B8 -findIndex__Q24Game15CollisionBufferFPQ24Game10CellObject=0x801572B0 -resolveCollision__Q24Game11CellPyramidFv=0x801572F4 -rec_resolveColl__Q24Game4CellFv=0x80157538 -__cl__7ParmFv=0x801577CC -getInstance__12CellMgrParmsFv=0x801577D4 -clearAllCollBuffer__Q24Game11CellPyramidFv=0x801577DC -exit__Q24Game4CellFPQ24Game7CellLegb=0x801578B8 -entry__Q24Game4CellFPQ24Game7CellLegb=0x80157A10 -__cl__Q24Game9CellLayerFii=0x80157CFC -pileup__Q24Game9CellLayerFRQ24Game9CellLayer=0x80157D44 -__ct__Q24Game11CellPyramidFv=0x801582BC -clear__Q24Game11CellPyramidFv=0x801582F8 -calcExtent__Q24Game11CellPyramidFRQ23Sys6SphereRiR7Rect=0x80158390 -entry__Q24Game11CellPyramidFPQ24Game10CellObjectRQ23Sys6Sphere=0x80158520 -entry__Q24Game11CellPyramidFPQ24Game10CellObjectRQ23Sys6SphereRiR7Rect=0x80158554 -create__Q24Game11CellPyramidFR10BoundBox2df=0x80158A0C -__ct__Q24Game9CellLayerFv=0x80158CF8 -getPikiCount__Q24Game11CellPyramidFiR7Rect=0x80158D34 -resolveCollision_2__Q24Game4CellFv=0x80158E68 -resolveCollision_1__Q24Game4CellFv=0x80158F60 -resolveCollision_3__Q24Game4CellFv=0x80159060 -invoke__13SweepCallbackFPQ210SweepPrune6ObjectPQ210SweepPrune6Object=0x80159240 -__ct__Q24Game7NaviMgrFv=0x8015928C -__ct__Q24Game9NaviParmsFv=0x80159358 -__ct__Q34Game9NaviParms5ParmsFv=0x801593B8 -__ct__Q24Game13FakePikiParmsFv=0x8015A2C8 -__ct__Q34Game13FakePikiParms5ParmsFv=0x8015A46C -__dt__27MonoObjectMgrFv=0x8015A720 -__dt__Q24Game7NaviMgrFv=0x8015A7C0 -createPSMDirectorUpdator__Q24Game7NaviMgrFv=0x8015A8D0 -resetMgr__Q24Game7NaviMgrFv=0x8015A948 -killAll__Q24Game7NaviMgrFv=0x8015A9A4 -setupNavi__Q24Game7NaviMgrFPQ24Game4Navi=0x8015AA34 -birth__Q24Game7NaviMgrFv=0x8015AB24 -getActiveNavi__Q24Game7NaviMgrFv=0x8015AC20 -loadResources__Q24Game7NaviMgrFv=0x8015ACBC -read__Q24Game9NaviParmsFR6Stream=0x8015AD78 -load__Q24Game7NaviMgrFv=0x8015ADC8 -createModel__Q24Game7NaviMgrFi=0x8015B02C -loadResources_float__Q24Game7NaviMgrFv=0x8015B090 -getAliveCount__Q24Game7NaviMgrFv=0x8015B164 -clearDeadCount__Q24Game7NaviMgrFv=0x8015B1F0 -informOrimaDead__Q24Game7NaviMgrFi=0x8015B208 -getDeadOrima__Q24Game7NaviMgrFi=0x8015B280 -getAliveOrima__Q24Game7NaviMgrFi=0x8015B2CC -setMovieDraw__Q24Game7NaviMgrFb=0x8015B3B8 -doAnimation__Q24Game7NaviMgrFv=0x8015B460 -doEntry__Q24Game7NaviMgrFv=0x8015B540 -doSimulation__Q24Game7NaviMgrFf=0x8015B6A8 -setupSoundViewerAndBas__Q24Game7NaviMgrFv=0x8015BA20 -getMgrName__Q24Game7NaviMgrFv=0x8015BA24 -frozenable__Q24Game7NaviMgrFv=0x8015BA2C -__dt__23ContainerFv=0x8015BA34 -__dt__23ObjectMgrFv=0x8015BAA4 -read__Q24Game13FakePikiParmsFR6Stream=0x8015BB2C -birth__27MonoObjectMgrFv=0x8015BB70 -getNext__27MonoObjectMgrFPv=0x8015BBD0 -getStart__27MonoObjectMgrFv=0x8015BC10 -getEnd__27MonoObjectMgrFv=0x8015BC40 -getTo__27MonoObjectMgrFv=0x8015BC48 -doAnimation__27MonoObjectMgrFv=0x8015BC50 -doEntry__27MonoObjectMgrFv=0x8015BCD0 -doSetView__27MonoObjectMgrFi=0x8015BD50 -doViewCalc__27MonoObjectMgrFv=0x8015BDE0 -doSimulation__27MonoObjectMgrFf=0x8015BE60 -doDirectDraw__27MonoObjectMgrFR8Graphics=0x8015BEF0 -resetMgr__27MonoObjectMgrFv=0x8015BF80 -clearMgr__27MonoObjectMgrFv=0x8015BF98 -getEmptyIndex__27MonoObjectMgrFv=0x8015BFC8 -get__27MonoObjectMgrFPv=0x8015C004 -doAnimation__23ObjectMgrFv=0x8015C014 -doEntry__23ObjectMgrFv=0x8015C1F8 -doSetView__23ObjectMgrFi=0x8015C3DC -doViewCalc__23ObjectMgrFv=0x8015C5D0 -doSimulation__23ObjectMgrFf=0x8015C7B4 -doDirectDraw__23ObjectMgrFR8Graphics=0x8015C9A8 -getObject__23ContainerFPv=0x8015CB9C -getAt__23ContainerFi=0x8015CBC8 -getTo__23ContainerFv=0x8015CBD0 -__ct__27MonoObjectMgrFv=0x8015CBD8 -@28@resetMgr__27MonoObjectMgrFv=0x8015CC74 -@28@doSimulation__27MonoObjectMgrFf=0x8015CC7C -@28@doEntry__27MonoObjectMgrFv=0x8015CC84 -@28@doAnimation__27MonoObjectMgrFv=0x8015CC8C -@28@doDirectDraw__23ObjectMgrFR8Graphics=0x8015CC94 -@28@doSimulation__23ObjectMgrFf=0x8015CC9C -@28@doViewCalc__23ObjectMgrFv=0x8015CCA4 -@28@doSetView__23ObjectMgrFi=0x8015CCAC -@28@doEntry__23ObjectMgrFv=0x8015CCB4 -@28@doAnimation__23ObjectMgrFv=0x8015CCBC -@28@frozenable__Q24Game7NaviMgrFv=0x8015CCC4 -@28@resetMgr__Q24Game7NaviMgrFv=0x8015CCCC -@28@loadResources__Q24Game7NaviMgrFv=0x8015CCD4 -@28@doDirectDraw__27MonoObjectMgrFR8Graphics=0x8015CCDC -@28@doSimulation__Q24Game7NaviMgrFf=0x8015CCE4 -@28@doViewCalc__27MonoObjectMgrFv=0x8015CCEC -@28@doSetView__27MonoObjectMgrFi=0x8015CCF4 -@28@doEntry__Q24Game7NaviMgrFv=0x8015CCFC -@28@doAnimation__Q24Game7NaviMgrFv=0x8015CD04 -@48@__dt__Q24Game7NaviMgrFv=0x8015CD0C -__ct__Q24Game7PikiMgrFv=0x8015CD14 -__ct__Q24Game9PikiParmsFv=0x8015CDC8 -__ct__Q34Game9PikiParms5ParmsFv=0x8015CE28 -__dt__27MonoObjectMgrFv=0x8015E5EC -resetMgr__Q24Game7PikiMgrFv=0x8015E68C -onAlloc__Q24Game7PikiMgrFv=0x8015E6C4 -getAt__27MonoObjectMgrFi=0x8015E728 -setupPiki__Q24Game7PikiMgrFPQ24Game4Piki=0x8015E738 -birth__Q24Game7PikiMgrFv=0x8015E798 -loadResources__Q24Game7PikiMgrFi=0x8015EABC -read__Q24Game9PikiParmsFR6Stream=0x8015EB88 -load__Q24Game7PikiMgrFi=0x8015EBD8 -loadBmd__Q24Game7PikiMgrFiPc=0x8015EE70 -createModelCallback__Q24Game7PikiMgrFPQ28SysShape5Model=0x8015EF08 -createModel__Q24Game7PikiMgrFii=0x8015EF54 -createLeafModel__Q24Game7PikiMgrFii=0x8015EF78 -setMovieDraw__Q24Game7PikiMgrFb=0x8015EF80 -debugShapeDL__Q24Game7PikiMgrFPc=0x8015F200 -doSimpleDraw__Q24Game7PikiMgrFP8Viewport=0x8015F284 -doAnimation__Q24Game7PikiMgrFv=0x8015F41C -setVsXlu__Q24Game7PikiMgrFib=0x8015F5F4 -doEntry__Q24Game7PikiMgrFv=0x8015F64C -setupSoundViewerAndBas__Q24Game7PikiMgrFv=0x8015F848 -getColorTransportScale__Q24Game7PikiMgrFi=0x8015F84C -allocStorePikmins__Q24Game7PikiMgrFv=0x8015F8C0 -clearStorePikmins__Q24Game7PikiMgrFv=0x8015F8FC -moveAllPikmins__Q24Game7PikiMgrFR10Vector3fP23Condition=0x8015F968 -forceEnterPikmins__Q24Game7PikiMgrFUc=0x8015FCB4 -killDayEndPikmins__Q24Game7PikiMgrFRQ24Game13PikiContainer=0x8015FF4C -killAllPikmins__Q24Game7PikiMgrFv=0x80160558 -caveSaveFormationPikmins__Q24Game7PikiMgrFb=0x801607B0 -caveSaveAllPikmins__Q24Game7PikiMgrFbb=0x80160A78 -saveAllPikmins__Q24Game7PikiMgrFRQ24Game13PikiContainer=0x80160D3C -__dt__Q24Game7PikiMgrFv=0x80160FE4 -getMgrName__Q24Game7PikiMgrFv=0x8016109C -getMatrixLoadType__Q24Game7PikiMgrFv=0x801610A4 -loadResources__Q24Game7PikiMgrFv=0x801610AC -__dt__23ContainerFv=0x801610B0 -__dt__23ObjectMgrFv=0x80161120 -invoke__45Delegate1FPQ28SysShape5Model=0x801611A8 -birth__27MonoObjectMgrFv=0x801611D8 -getNext__27MonoObjectMgrFPv=0x80161238 -getStart__27MonoObjectMgrFv=0x80161278 -getEnd__27MonoObjectMgrFv=0x801612A8 -getTo__27MonoObjectMgrFv=0x801612B0 -doAnimation__27MonoObjectMgrFv=0x801612B8 -doEntry__27MonoObjectMgrFv=0x80161338 -doSetView__27MonoObjectMgrFi=0x801613B8 -doViewCalc__27MonoObjectMgrFv=0x80161448 -doSimulation__27MonoObjectMgrFf=0x801614C8 -doDirectDraw__27MonoObjectMgrFR8Graphics=0x80161558 -resetMgr__27MonoObjectMgrFv=0x801615E8 -clearMgr__27MonoObjectMgrFv=0x80161600 -getEmptyIndex__27MonoObjectMgrFv=0x80161630 -get__27MonoObjectMgrFPv=0x8016166C -doAnimation__23ObjectMgrFv=0x8016167C -doEntry__23ObjectMgrFv=0x80161860 -doSetView__23ObjectMgrFi=0x80161A44 -doViewCalc__23ObjectMgrFv=0x80161C38 -doSimulation__23ObjectMgrFf=0x80161E1C -doDirectDraw__23ObjectMgrFR8Graphics=0x80162010 -getObject__23ContainerFPv=0x80162204 -getAt__23ContainerFi=0x80162230 -getTo__23ContainerFv=0x80162238 -__ct__27MonoObjectMgrFv=0x80162240 -__sinit_pikiMgr_cpp=0x801622DC -@28@resetMgr__27MonoObjectMgrFv=0x80162304 -@28@doEntry__27MonoObjectMgrFv=0x8016230C -@28@doAnimation__27MonoObjectMgrFv=0x80162314 -@28@doDirectDraw__23ObjectMgrFR8Graphics=0x8016231C -@28@doSimulation__23ObjectMgrFf=0x80162324 -@28@doViewCalc__23ObjectMgrFv=0x8016232C -@28@doSetView__23ObjectMgrFi=0x80162334 -@28@doEntry__23ObjectMgrFv=0x8016233C -@28@doAnimation__23ObjectMgrFv=0x80162344 -@28@getMatrixLoadType__Q24Game7PikiMgrFv=0x8016234C -@28@resetMgr__Q24Game7PikiMgrFv=0x80162354 -@28@loadResources__Q24Game7PikiMgrFv=0x8016235C -@28@doSimpleDraw__Q24Game7PikiMgrFP8Viewport=0x80162364 -@28@doDirectDraw__27MonoObjectMgrFR8Graphics=0x8016236C -@28@doSimulation__27MonoObjectMgrFf=0x80162374 -@28@doViewCalc__27MonoObjectMgrFv=0x8016237C -@28@doSetView__27MonoObjectMgrFi=0x80162384 -@28@doEntry__Q24Game7PikiMgrFv=0x8016238C -@28@doAnimation__Q24Game7PikiMgrFv=0x80162394 -store__Q24Game18TDispTriangleArrayFRQ23Sys8TriangleRQ23Sys11VertexTablei=0x8016239C -store__Q24Game18TDispTriangleArrayFR7MatrixfRQ23Sys8TriangleRQ23Sys11VertexTablei=0x801623E0 -store__Q24Game13TDispTriangleFRQ23Sys8TriangleRQ23Sys11VertexTablei=0x80162424 -store__Q24Game13TDispTriangleFR7MatrixfRQ23Sys8TriangleRQ23Sys11VertexTablei=0x801624E4 -__ct__Q24Game6MapMgrFv=0x801625E4 -getStartPosition__Q24Game6MapMgrFR10Vector3i=0x8016267C -getMapRotation__Q24Game6MapMgrFv=0x801626F8 -getDemoMatrix__Q24Game6MapMgrFv=0x80162724 -getBestAngle__Q24Game6MapMgrFR10Vector3ff=0x80162740 -checkBeamCollision__Q24Game6MapMgrFRQ34Game6MapMgr16BeamCollisionArg=0x80162E44 -load__Q24Game11ShapeMapMgrFRQ34Game11ShapeMapMgr7LoadArg=0x801630E8 -__ct__Q23Sys15MatLoopAnimatorFv=0x801638EC -findWater__Q24Game6MapMgrFRQ23Sys6Sphere=0x80163928 -do_update__Q24Game11ShapeMapMgrFv=0x8016395C -update__Q24Game6MapMgrFv=0x801639F8 -do_update__Q24Game6MapMgrFv=0x80163A48 -clearPerfMonitor__Q24Game6MapMgrFv=0x80163A4C -drawCollision__Q24Game11ShapeMapMgrFR8GraphicsRQ23Sys6Sphere=0x80163A64 -createTriangles__Q24Game11ShapeMapMgrFRQ23Sys17CreateTriangleArg=0x80163B10 -createTriangles__12MapCollisionFRQ23Sys17CreateTriangleArg=0x80163B3C -createTriangles__Q23Sys10TriDividerFRQ23Sys17CreateTriangleArg=0x80163B6C -getMinY__Q24Game11ShapeMapMgrFR10Vector3=0x80163B70 -getCurrTri__Q24Game11ShapeMapMgrFRQ24Game11CurrTriInfo=0x80163BFC -doAnimation__Q24Game11ShapeMapMgrFv=0x80163C28 -doSetView__Q24Game11ShapeMapMgrFi=0x80163C60 -doViewCalc__Q24Game11ShapeMapMgrFv=0x80163CC0 -doEntry__Q24Game11ShapeMapMgrFv=0x80163D0C -findRayIntersection__Q24Game11ShapeMapMgrFRQ23Sys16RayIntersectInfo=0x80163DCC -getBoundBox2d__Q24Game11ShapeMapMgrFR10BoundBox2d=0x80163FE0 -getBoundBox__Q24Game11ShapeMapMgrFR8BoundBox=0x80164060 -frozenable__Q24Game6MapMgrFv=0x801640F0 -doDirectDraw__Q24Game6MapMgrFR8Graphics=0x801640F8 -doSimulation__Q24Game6MapMgrFf=0x801640FC -findRayIntersection__Q24Game6MapMgrFRQ23Sys16RayIntersectInfo=0x80164100 -createTriangles__Q24Game6MapMgrFRQ23Sys17CreateTriangleArg=0x80164108 -doViewCalc__27ObjectMgrFv=0x8016410C -doViewCalc__Q24Game8WaterBoxFv=0x801642F0 -isDone__26IteratorFv=0x801642F4 -doSetView__27ObjectMgrFi=0x80164340 -doSetView__Q24Game8WaterBoxFi=0x80164534 -doEntry__27ObjectMgrFv=0x80164538 -doEntry__Q24Game8WaterBoxFv=0x8016471C -doAnimation__27ObjectMgrFv=0x80164720 -doAnimation__Q24Game8WaterBoxFv=0x80164904 -__ml__26IteratorFv=0x80164908 -next__26IteratorFv=0x80164940 -first__26IteratorFv=0x80164A24 -__sinit_mapMgr_cpp=0x80164B00 -@36@4@frozenable__Q24Game6MapMgrFv=0x80164B28 -@36@4@doDirectDraw__Q24Game6MapMgrFR8Graphics=0x80164B3C -@36@4@doSimulation__Q24Game6MapMgrFf=0x80164B50 -@84@4@frozenable__Q24Game6MapMgrFv=0x80164B64 -@84@4@doDirectDraw__Q24Game6MapMgrFR8Graphics=0x80164B78 -@84@4@doSimulation__Q24Game6MapMgrFf=0x80164B8C -@84@4@doViewCalc__Q24Game11ShapeMapMgrFv=0x80164BA0 -@84@4@doSetView__Q24Game11ShapeMapMgrFi=0x80164BB4 -@84@4@doEntry__Q24Game11ShapeMapMgrFv=0x80164BC8 -@84@4@doAnimation__Q24Game11ShapeMapMgrFv=0x80164BDC -__ct__Q24Game14BaseHIOSectionFP7JKRHeap=0x80164BF0 -__dt__Q24Game14BaseHIOSectionFv=0x80164CB0 -__dt__Q24Game11HIORootNodeFv=0x80164D74 -setDisplay__Q24Game14BaseHIOSectionFP10JFWDisplayi=0x80164DD4 -initHIO__Q24Game14BaseHIOSectionFPQ24Game11HIORootNode=0x80164F24 -createScreenRootNode__Q24Game14BaseHIOSectionFv=0x80164FA4 -doUpdate__Q24Game14BaseHIOSectionFv=0x80164FA8 -addGenNode__Q24Game14BaseHIOSectionFP5CNode=0x80164FB0 -refreshHIO__Q24Game14BaseHIOSectionFv=0x80164FD4 -__ct__Q24Game11HIORootNodeFP7Section=0x80164FD8 -drawInit__7SectionFR8GraphicsQ27Section13EDrawInitMode=0x8016502C -forceFinish__7SectionFv=0x80165058 -__sinit_baseHIOSection_cpp=0x80165060 -__ct__Q24Game11NaviWhistleFPQ24Game4Navi=0x80165088 -init__Q24Game11NaviWhistleFv=0x801650BC -updatePosition__Q24Game11NaviWhistleFv=0x801651E4 -start__Q24Game11NaviWhistleFv=0x80165374 -stop__Q24Game11NaviWhistleFv=0x801653EC -timeout__Q24Game11NaviWhistleFv=0x80165420 -setFaceDir__Q24Game11NaviWhistleFf=0x80165430 -updateWhistle__Q24Game11NaviWhistleFv=0x80165524 -update__Q24Game11NaviWhistleFR10Vector3b=0x80165718 -getCreatureName__Q24Game6PelletFv=0x801658EC -getCreatureID__Q24Game6PelletFv=0x8016590C -getShadowParam__Q24Game6PelletFRQ24Game11ShadowParam=0x80165940 -needShadow__Q24Game6PelletFv=0x80165AD0 -getWallTimer__Q24Game6PelletFv=0x80165B44 -__ct__Q24Game13PelletViewArgFv=0x80165B4C -becomePellet__Q24Game10PelletViewFPQ24Game13PelletViewArg=0x80165B80 -viewMakeMatrix__Q24Game10PelletViewFR7Matrixf=0x80165DA0 -clearClaim__Q24Game6PelletFv=0x80165E24 -sendClaim__Q24Game6PelletFv=0x80165E30 -updateClaim__Q24Game6PelletFv=0x80165E48 -getBuryDepthMax__Q24Game6PelletFv=0x8016623C -getBuryDepth__Q24Game6PelletFv=0x80166248 -getBuryRadius__Q24Game6PelletFf=0x80166254 -stimulate__Q24Game6PelletFRQ24Game11Interaction=0x80166378 -actPellet__Q24Game15InteractMattuanFPQ24Game6Pellet=0x801663EC -actPellet__Q24Game11InteractEatFPQ24Game6Pellet=0x80166474 -actPellet__Q24Game12InteractSuckFPQ24Game6Pellet=0x801665FC -doDirectDraw__Q24Game6PelletFR8Graphics=0x8016667C -__ct__Q24Game6PelletFv=0x80166680 -constructor__Q24Game6PelletFv=0x80166830 -__dt__Q23PSM11CreatureObjFv=0x8016689C -shadowOn__Q24Game6PelletFv=0x80166938 -shadowOff__Q24Game6PelletFv=0x8016696C -getJAIObject__Q24Game6PelletFv=0x801669A0 -getPSCreature__Q24Game6PelletFv=0x801669B4 -getBottomRadius__Q24Game6PelletFv=0x801669BC -getPickRadius__Q24Game6PelletFv=0x801669C8 -getCylinderHeight__Q24Game6PelletFv=0x801669D4 -getConfigIndex__Q24Game6PelletFv=0x801669E0 -getConfigName__Q24Game6PelletFv=0x80166A38 -__ct__Q24Game18PelletIndexInitArgFi=0x80166A44 -__ct__Q24Game19PelletNumberInitArgFii=0x80166B74 -isPickable__Q24Game6PelletFv=0x80166C64 -isPickable__Q24Game11PelletStateFv=0x80166CA4 -onKill__Q24Game6PelletFPQ24Game15CreatureKillArg=0x80166CAC -start__Q24Game28StateMachineFPQ24Game6PelletiPQ24Game8StateArg=0x80166F34 -onInit__Q24Game6PelletFPQ24Game15CreatureInitArg=0x80166F68 -do_onInit__Q24Game6PelletFPQ24Game15CreatureInitArg=0x80167588 -onCreateShape__Q24Game6PelletFv=0x8016758C -getPelletConfigMin__Q24Game6PelletFv=0x80167590 -getPelletConfigMax__Q24Game6PelletFv=0x801675B0 -setupParticles__Q24Game6PelletFv=0x801675D0 -setupParticles_simple__Q24Game6PelletFv=0x80167924 -setupParticles_tall__Q24Game6PelletFv=0x80167B44 -panmodokiCarryable__Q24Game6PelletFv=0x80167D74 -isCarried__Q24Game6PelletFv=0x80167D8C -isPicked__Q24Game6PelletFv=0x80167DD8 -finishDisplayCarryInfo__Q24Game6PelletFv=0x80167DE4 -getCarryInfoParam__Q24Game6PelletFR14CarryInfoParam=0x80167E28 -setCarryColor__Q24Game6PelletFi=0x80167EC8 -sound_otakaraEventStart__Q24Game6PelletFv=0x80167F30 -clearCarryColor__Q24Game6PelletFv=0x80167F34 -getVelocity__Q24Game6PelletFv=0x80167F40 -setVelocity__Q24Game6PelletFR10Vector3=0x80167F5C -allocateTexCaster__Q24Game6PelletFv=0x80167F78 -onSetPosition__Q24Game6PelletFv=0x8016807C -setPanModokiRotation__Q24Game6PelletFf=0x8016836C -setOrientation__Q24Game6PelletFR7Matrixf=0x801684CC -getStateID__Q24Game6PelletFv=0x8016879C -bounceCallback__Q24Game6PelletFPQ23Sys8Triangle=0x801687C4 -onBounce__Q24Game6PelletFv=0x80168A24 -update__Q24Game6PelletFv=0x80168A28 -do_update__Q24Game6PelletFv=0x801699AC -isCave__Q23PSM10Scene_GameFv=0x801699B0 -getPikiBirthCount__Q24Game6PelletFRiRi=0x801699B8 -setMovieDraw__Q24Game9PelletMgrFb=0x801699D4 -doSimulation__Q24Game6PelletFf=0x801699E8 -updateTrMatrix__Q24Game6PelletFv=0x80169B14 -doAnimation__Q24Game6PelletFv=0x80169C28 -doEntry__Q24Game6PelletFv=0x80169EA4 -changeMaterial__Q24Game6PelletFv=0x80169F94 -doSetView__Q24Game6PelletFi=0x80169F98 -doViewCalc__Q24Game6PelletFv=0x80169FB8 -theEntry__Q24Game6PelletFv=0x80169FD8 -entryShape__Q24Game6PelletFv=0x8016A0B4 -getBoundingSphere__Q24Game6PelletFRQ23Sys6Sphere=0x8016A150 -getLODSphere__Q24Game6PelletFRQ23Sys6Sphere=0x8016A174 -init_pmotions__Q24Game6PelletFv=0x8016A1B0 -update_pmotions__Q24Game6PelletFv=0x8016A208 -start_pmotions__Q24Game6PelletFv=0x8016A2BC -stop_carrymotion__Q24Game6PelletFv=0x8016A300 -finish_carrymotion__Q24Game6PelletFv=0x8016A30C -onKeyEvent__Q24Game6PelletFRCQ28SysShape8KeyEvent=0x8016A360 -isSlotFree__Q24Game6PelletFs=0x8016A3E8 -getSpeicalSlot__Q24Game6PelletFv=0x8016A4A8 -getFreeStickSlot__Q24Game6PelletFv=0x8016A4C4 -getNearFreeStickSlot__Q24Game6PelletFR10Vector3=0x8016A518 -getRandomFreeStickSlot__Q24Game6PelletFv=0x8016A640 -getPelletGoal__Q24Game6PelletFv=0x8016A728 -getTotalPikmins__Q24Game6PelletFv=0x8016A934 -getTotalCarryPikmins__Q24Game6PelletFv=0x8016A970 -getPikmins__Q24Game6PelletFi=0x8016A9DC -onSlotStickStart__Q24Game6PelletFPQ24Game8Creatures=0x8016AA54 -onSlotStickEnd__Q24Game6PelletFPQ24Game8Creatures=0x8016AC28 -calcStickSlotGlobal__Q24Game6PelletFsR10Vector3=0x8016AE10 -getFace__Q24Game6PelletFv=0x8016B02C -startPick__Q24Game6PelletFv=0x8016B094 -sound_otakaraEventRestart__Q24Game6PelletFv=0x8016B340 -endPick__Q24Game6PelletFb=0x8016B344 -sound_otakaraEventStop__Q24Game6PelletFv=0x8016B4C0 -clearDiscoverDisable__Q24Game6PelletFv=0x8016B4C4 -startDiscoverDisable__Q24Game6PelletFUc=0x8016B4D0 -updateDiscoverDisable__Q24Game6PelletFv=0x8016B4D8 -discoverDisabled__Q24Game6PelletFv=0x8016B4F0 -doSave__Q24Game6PelletFR6Stream=0x8016B51C -doLoad__Q24Game6PelletFR6Stream=0x8016B548 -onStartCapture__Q24Game6PelletFv=0x8016B724 -onUpdateCapture__Q24Game6PelletFR7Matrixf=0x8016B818 -onEndCapture__Q24Game6PelletFv=0x8016B928 -__ct__Q24Game13BasePelletMgrFQ34Game10PelletList5cKind=0x8016B9C0 -__dt__11CollPartMgrFv=0x8016BC30 -__dt__24MonoObjectMgr<8CollPart>Fv=0x8016BCE8 -getPelletConfig__Q24Game13BasePelletMgrFi=0x8016BD88 -setUse__Q24Game13BasePelletMgrFi=0x8016BDB8 -load__Q24Game13BasePelletMgrFv=0x8016BE34 -load_texArc__Q24Game13BasePelletMgrFPc=0x8016C0CC -openTextArc__Q24Game13BasePelletMgrFPc=0x8016C4B0 -closeTextArc__Q24Game13BasePelletMgrFP10JKRArchive=0x8016C5BC -useModelMgr__Q24Game13BasePelletMgrFiUl=0x8016C5EC -createModelCallback__Q24Game13BasePelletMgrFPQ28SysShape5Model=0x8016C6D0 -onCreateModel__Q24Game13BasePelletMgrFPQ28SysShape5Model=0x8016C6FC -createShape__Q24Game13BasePelletMgrFii=0x8016C700 -setCollTree__Q24Game13BasePelletMgrFPQ24Game6Pelleti=0x8016C7E4 -generatorNewPelletParm__Q24Game13BasePelletMgrFv=0x8016C93C -generatorGetShape__Q24Game13BasePelletMgrFPQ24Game13GenPelletParm=0x8016C960 -__ct__Q24Game14PelletIteratorFv=0x8016C968 -first__Q24Game14PelletIteratorFv=0x8016C980 -__ml__Q24Game14PelletIteratorFv=0x8016C9CC -next__Q24Game14PelletIteratorFv=0x8016CA34 -isDone__Q24Game14PelletIteratorFv=0x8016CAF4 -setFirst__Q24Game14PelletIteratorFv=0x8016CB04 -getNext__31TObjectNode<16GenericObjectMgr>Fv=0x8016CE54 -__ct__Q24Game9PelletMgrFv=0x8016CE5C -__dt__33NodeObjectMgr<16GenericObjectMgr>Fv=0x8016CF28 -__dt__31TObjectNode<16GenericObjectMgr>Fv=0x8016CFF0 -__dt__29ObjectMgr<16GenericObjectMgr>Fv=0x8016D050 -__dt__29Container<16GenericObjectMgr>Fv=0x8016D0D8 -createManagers__Q24Game9PelletMgrFUl=0x8016D148 -resetMgrs__Q24Game9PelletMgrFv=0x8016D238 -resetMgr__Q24Game47FixedSizePelletMgrFv=0x8016D2B8 -resetMgr__Q24Game49FixedSizePelletMgrFv=0x8016D308 -resetMgr__Q24Game48FixedSizePelletMgrFv=0x8016D358 -setupResources__Q24Game9PelletMgrFv=0x8016D3A8 -isDone__36IteratorFv=0x8016D428 -isDone__39IteratorFv=0x8016D474 -birth__Q24Game9PelletMgrFPQ24Game13PelletInitArg=0x8016D4C0 -setUse__Q24Game9PelletMgrFPQ24Game13PelletInitArg=0x8016D6DC -isNull__Q34Game9PelletMgr15OtakaraItemCodeFv=0x8016D888 -makePelletInitArg__Q24Game9PelletMgrFRQ24Game13PelletInitArgPc=0x8016D9E4 -makeVsCarryMinMax__Q24Game9PelletMgrFRQ24Game13PelletInitArgPc=0x8016DAAC -makePelletInitArg__Q24Game9PelletMgrFRQ24Game13PelletInitArgRQ34Game9PelletMgr15OtakaraItemCode=0x8016DB90 -makeOtakaraItemCode__Q24Game9PelletMgrFPcRQ34Game9PelletMgr15OtakaraItemCode=0x8016DE7C -read__Q34Game9PelletMgr15OtakaraItemCodeFR6Stream=0x8016DEDC -write__Q34Game9PelletMgr15OtakaraItemCodeFR6Stream=0x8016DF10 -addMgr__Q24Game9PelletMgrFPQ24Game13BasePelletMgr=0x8016DF70 -doAnimation__Q24Game9PelletMgrFv=0x8016DFDC -isDone__28Iterator<16GenericObjectMgr>Fv=0x8016E1C0 -doEntry__Q24Game9PelletMgrFv=0x8016E20C -doSetView__Q24Game9PelletMgrFi=0x8016E3F0 -doViewCalc__Q24Game9PelletMgrFv=0x8016E5E4 -doSimulation__Q24Game9PelletMgrFf=0x8016E7C8 -doDirectDraw__Q24Game9PelletMgrFR8Graphics=0x8016E9BC -doSimpleDraw__Q24Game9PelletMgrFP8Viewport=0x8016E9C0 -setupSoundViewerAndBas__Q24Game9PelletMgrFv=0x8016EBB4 -decode__Q24Game9PelletMgrFlRUcRi=0x8016ED88 -encode__Q24Game9PelletMgrFUci=0x8016ED9C -getCaveName__Q24Game9PelletMgrFi=0x8016EDA8 -getCaveID__Q24Game9PelletMgrFPc=0x8016EE5C -getMgrByID__Q24Game9PelletMgrFUc=0x8016F0CC -__dt__Q24Game9PelletMgrFv=0x8016F2E8 -getMgrName__Q24Game9PelletMgrFv=0x8016F3C8 -__ml__28Iterator<16GenericObjectMgr>Fv=0x8016F3D4 -next__28Iterator<16GenericObjectMgr>Fv=0x8016F40C -first__28Iterator<16GenericObjectMgr>Fv=0x8016F4F0 -__ml__36IteratorFv=0x8016F5CC -next__36IteratorFv=0x8016F604 -first__36IteratorFv=0x8016F6E8 -__ml__39IteratorFv=0x8016F7C4 -next__39IteratorFv=0x8016F7FC -first__39IteratorFv=0x8016F8E0 -generatorBirth__Q24Game13BasePelletMgrFR10Vector3R10Vector3PQ24Game13GenPelletParm=0x8016F9BC -generatorWrite__Q24Game13BasePelletMgrFR6StreamPQ24Game13GenPelletParm=0x8016F9C4 -generatorRead__Q24Game13BasePelletMgrFR6StreamPQ24Game13GenPelletParmUl=0x8016F9C8 -generatorLocalVersion__Q24Game13BasePelletMgrFv=0x8016F9CC -doAnimation__Q24Game13BasePelletMgrFv=0x8016F9D8 -doEntry__Q24Game13BasePelletMgrFv=0x8016F9DC -doSetView__Q24Game13BasePelletMgrFi=0x8016F9E0 -doViewCalc__Q24Game13BasePelletMgrFv=0x8016F9E4 -doSimulation__Q24Game13BasePelletMgrFf=0x8016F9E8 -doDirectDraw__Q24Game13BasePelletMgrFR8Graphics=0x8016F9EC -__dt__20Container<8CollPart>Fv=0x8016F9F0 -__dt__20ObjectMgr<8CollPart>Fv=0x8016FA60 -satisfy__13WPExcludeSpotFPQ24Game8WayPoint=0x8016FAE8 -satisfy__Q223@unnamed@pelletMgr_cpp@6NotOffFPQ24Game8WayPoint=0x8016FB6C -onSetPosition__Q24Game6PelletFR10Vector3=0x80170048 -inWater__Q24Game6PelletFv=0x8017008C -getBedamaColor__Q24Game6PelletFv=0x80170094 -getSound_PosPtr__Q24Game6PelletFv=0x8017009C -getFaceDir__Q24Game6PelletFv=0x801700A4 -deferPikiCollision__Q24Game6PelletFv=0x801700AC -sound_otakaraEventFinish__Q24Game6PelletFv=0x801700B4 -__dt__Q23PSM9EventBaseFv=0x801700B8 -getCastType__Q23PSM11CreatureObjFv=0x80170174 -getJAIObject__Q23PSM11CreatureObjFv=0x8017017C -getHandleArea__Q23PSM11CreatureObjFUc=0x8017018C -onCalcOn__Q23PSM11CreatureObjFv=0x8017019C -getName__Q24Game18PelletGoalStateArgFv=0x801701A0 -init__Q24Game28StateMachineFPQ24Game6Pellet=0x801701AC -get__33NodeObjectMgr<16GenericObjectMgr>FPv=0x801701B0 -getNext__33NodeObjectMgr<16GenericObjectMgr>FPv=0x801701B8 -getStart__33NodeObjectMgr<16GenericObjectMgr>Fv=0x801701C0 -getEnd__33NodeObjectMgr<16GenericObjectMgr>Fv=0x801701C8 -resetMgr__33NodeObjectMgr<16GenericObjectMgr>Fv=0x801701D0 -resetMgr__42MonoObjectMgrFv=0x801701E8 -resetMgr__44MonoObjectMgrFv=0x80170200 -resetMgr__43MonoObjectMgrFv=0x80170218 -getNext__24MonoObjectMgr<8CollPart>FPv=0x80170230 -getStart__24MonoObjectMgr<8CollPart>Fv=0x80170270 -getEnd__24MonoObjectMgr<8CollPart>Fv=0x801702A0 -getAt__24MonoObjectMgr<8CollPart>Fi=0x801702A8 -getTo__24MonoObjectMgr<8CollPart>Fv=0x801702B8 -doAnimation__24MonoObjectMgr<8CollPart>Fv=0x801702C0 -doEntry__24MonoObjectMgr<8CollPart>Fv=0x80170340 -doSetView__24MonoObjectMgr<8CollPart>Fi=0x801703C0 -doViewCalc__24MonoObjectMgr<8CollPart>Fv=0x80170450 -doSimulation__24MonoObjectMgr<8CollPart>Ff=0x801704D0 -doDirectDraw__24MonoObjectMgr<8CollPart>FR8Graphics=0x80170560 -resetMgr__24MonoObjectMgr<8CollPart>Fv=0x801705F0 -clearMgr__24MonoObjectMgr<8CollPart>Fv=0x80170608 -onAlloc__24MonoObjectMgr<8CollPart>Fv=0x80170638 -get__24MonoObjectMgr<8CollPart>FPv=0x8017063C -doAnimation__29ObjectMgr<16GenericObjectMgr>Fv=0x8017064C -doEntry__29ObjectMgr<16GenericObjectMgr>Fv=0x80170830 -doSetView__29ObjectMgr<16GenericObjectMgr>Fi=0x80170A14 -doViewCalc__29ObjectMgr<16GenericObjectMgr>Fv=0x80170C08 -doSimulation__29ObjectMgr<16GenericObjectMgr>Ff=0x80170DEC -doDirectDraw__29ObjectMgr<16GenericObjectMgr>FR8Graphics=0x80170FE0 -getObject__29Container<16GenericObjectMgr>FPv=0x801711D4 -getAt__29Container<16GenericObjectMgr>Fi=0x80171200 -getTo__29Container<16GenericObjectMgr>Fv=0x80171208 -getObject__20Container<8CollPart>FPv=0x80171210 -getAt__20Container<8CollPart>Fi=0x8017123C -getTo__20Container<8CollPart>Fv=0x80171244 -invoke__52Delegate1FPQ28SysShape5Model=0x8017124C -doDirectDraw__20ObjectMgr<8CollPart>FR8Graphics=0x8017127C -isDone__19Iterator<8CollPart>Fv=0x80171470 -doSimulation__20ObjectMgr<8CollPart>Ff=0x801714BC -doViewCalc__20ObjectMgr<8CollPart>Fv=0x801716B0 -doSetView__20ObjectMgr<8CollPart>Fi=0x80171894 -doEntry__20ObjectMgr<8CollPart>Fv=0x80171A88 -doAnimation__20ObjectMgr<8CollPart>Fv=0x80171C6C -__ct__24MonoObjectMgr<8CollPart>Fv=0x80171E50 -transit__Q24Game28StateMachineFPQ24Game6PelletiPQ24Game8StateArg=0x80171EEC -init__Q24Game24FSMStateFPQ24Game6PelletPQ24Game8StateArg=0x80171F88 -cleanup__Q24Game24FSMStateFPQ24Game6Pellet=0x80171F8C -getCurrID__Q24Game28StateMachineFPQ24Game6Pellet=0x80171F90 -exec__Q24Game28StateMachineFPQ24Game6Pellet=0x80171FAC -exec__Q24Game24FSMStateFPQ24Game6Pellet=0x80171FE4 -resetMgrAndResources__Q24Game49FixedSizePelletMgrFv=0x80171FE8 -resetMgr__Q24Game49FixedSizePelletMgrFv=0x80172084 -resetMgrAndResources__Q24Game46FixedSizePelletMgrFv=0x801720D4 -resetMgr__Q24Game46FixedSizePelletMgrFv=0x80172170 -__ml__19Iterator<8CollPart>Fv=0x801721C0 -next__19Iterator<8CollPart>Fv=0x801721F8 -first__19Iterator<8CollPart>Fv=0x801722DC -resetMgr__41MonoObjectMgrFv=0x801723B8 -resetMgr__44MonoObjectMgrFv=0x801723D0 -__sinit_pelletMgr_cpp=0x801723E8 -@16@__dt__Q23PSM9EventBaseFv=0x80172410 -@48@startSound__Q23PSM11CreatureObjFUcUlUl=0x80172418 -@48@startSound__Q23PSM11CreatureObjFPP8JAISoundUlUl=0x80172420 -@48@startSound__Q23PSM11CreatureObjFUlUl=0x80172428 -@48@__dt__Q23PSM9EventBaseFv=0x80172430 -@788@onKeyEvent__Q24Game6PelletFRCQ28SysShape8KeyEvent=0x80172438 -@792@getCarryInfoParam__Q24Game6PelletFR14CarryInfoParam=0x80172440 -@28@resetMgr__24MonoObjectMgr<8CollPart>Fv=0x80172448 -@28@doDirectDraw__24MonoObjectMgr<8CollPart>FR8Graphics=0x80172450 -@28@doSimulation__24MonoObjectMgr<8CollPart>Ff=0x80172458 -@28@doViewCalc__24MonoObjectMgr<8CollPart>Fv=0x80172460 -@28@doSetView__24MonoObjectMgr<8CollPart>Fi=0x80172468 -@28@doEntry__24MonoObjectMgr<8CollPart>Fv=0x80172470 -@28@doAnimation__24MonoObjectMgr<8CollPart>Fv=0x80172478 -@28@doDirectDraw__20ObjectMgr<8CollPart>FR8Graphics=0x80172480 -@28@doSimulation__20ObjectMgr<8CollPart>Ff=0x80172488 -@28@doViewCalc__20ObjectMgr<8CollPart>Fv=0x80172490 -@28@doSetView__20ObjectMgr<8CollPart>Fi=0x80172498 -@28@doEntry__20ObjectMgr<8CollPart>Fv=0x801724A0 -@28@doAnimation__20ObjectMgr<8CollPart>Fv=0x801724A8 -@28@doDirectDraw__29ObjectMgr<16GenericObjectMgr>FR8Graphics=0x801724B0 -@28@doSimulation__29ObjectMgr<16GenericObjectMgr>Ff=0x801724B8 -@28@doViewCalc__29ObjectMgr<16GenericObjectMgr>Fv=0x801724C0 -@28@doSetView__29ObjectMgr<16GenericObjectMgr>Fi=0x801724C8 -@28@doEntry__29ObjectMgr<16GenericObjectMgr>Fv=0x801724D0 -@28@doAnimation__29ObjectMgr<16GenericObjectMgr>Fv=0x801724D8 -@28@resetMgr__33NodeObjectMgr<16GenericObjectMgr>Fv=0x801724E0 -@28@doSimpleDraw__Q24Game9PelletMgrFP8Viewport=0x801724E8 -@28@doDirectDraw__Q24Game9PelletMgrFR8Graphics=0x801724F0 -@28@doSimulation__Q24Game9PelletMgrFf=0x801724F8 -@28@doViewCalc__Q24Game9PelletMgrFv=0x80172500 -@28@doSetView__Q24Game9PelletMgrFi=0x80172508 -@28@doEntry__Q24Game9PelletMgrFv=0x80172510 -@28@doAnimation__Q24Game9PelletMgrFv=0x80172518 -__ct__Q24Game16WayPointIteratorFPQ24Game8WayPointb=0x80172520 -first__Q24Game16WayPointIteratorFv=0x80172534 -next__Q24Game16WayPointIteratorFv=0x8017255C -isDone__Q24Game16WayPointIteratorFv=0x80172588 -__ml__Q24Game16WayPointIteratorFv=0x801725C4 -forward__Q24Game16WayPointIteratorFv=0x801725F8 -__ct__Q24Game8WayPointFv=0x801726A0 -__dt__Q34Game8WayPoint8RoomListFv=0x8017270C -__dt__Q24Game8WayPointFv=0x8017276C -reset__Q24Game8WayPointFv=0x801727F0 -setOpen__Q24Game8WayPointFb=0x80172874 -setWater__Q24Game8WayPointFb=0x8017289C -setBridge__Q24Game8WayPointFb=0x801728C4 -directDraw__Q24Game8WayPointFR8Graphics=0x801728EC -directDraw_Simple__Q24Game8WayPointFR8Graphics=0x801728F0 -__dt__27ContainerFv=0x801728F4 -__dt__Q24Game8RouteMgrFv=0x80172964 -makeInvertLinks__Q24Game8RouteMgrFv=0x801729E4 -linkable__Q24Game8RouteMgrFPQ24Game8WayPointPQ24Game8WayPoint=0x80172B2C -refreshWater__Q24Game8RouteMgrFv=0x80172D10 -isDone__26IteratorFv=0x80172F78 -getNearestWayPoint__Q24Game8RouteMgrFRQ24Game11WPSearchArg=0x80172FC4 -getNearestEdge__Q24Game8RouteMgrFRQ24Game15WPEdgeSearchArg=0x8017336C -setCloseAll__Q24Game8RouteMgrFv=0x80173B88 -openRoom__Q24Game8RouteMgrFs=0x80173D68 -write__Q24Game8RouteMgrFR6Stream=0x80173F78 -__ct__Q24Game12GameRouteMgrFv=0x80174294 -__dt__Q24Game12GameRouteMgrFv=0x80174310 -read__Q24Game12GameRouteMgrFR6Stream=0x801743CC -getWayPoint__Q24Game12GameRouteMgrFs=0x801744C0 -get__Q24Game12GameRouteMgrFPv=0x80174548 -getNext__Q24Game12GameRouteMgrFPv=0x80174578 -getStart__Q24Game12GameRouteMgrFv=0x80174580 -getEnd__Q24Game12GameRouteMgrFv=0x80174588 -__ct__Q24Game14EditorRouteMgrFv=0x80174590 -__dt__Q34Game14EditorRouteMgr6WPNodeFv=0x8017463C -read__Q24Game14EditorRouteMgrFR6Stream=0x8017469C -addWayPoint__Q24Game14EditorRouteMgrFPQ24Game8WayPoint=0x80174848 -delWayPoint__Q24Game14EditorRouteMgrFPQ24Game8WayPoint=0x801748D4 -getWayPoint__Q24Game14EditorRouteMgrFs=0x8017495C -get__Q24Game14EditorRouteMgrFPv=0x80174994 -getNext__Q24Game14EditorRouteMgrFPv=0x8017499C -getStart__Q24Game14EditorRouteMgrFv=0x801749A4 -getEnd__Q24Game14EditorRouteMgrFv=0x801749AC -__dt__Q24Game14EditorRouteMgrFv=0x801749B4 -__ml__26IteratorFv=0x80174A6C -next__26IteratorFv=0x80174AA4 -first__26IteratorFv=0x80174B88 -getObject__27ContainerFPv=0x80174C64 -getAt__27ContainerFi=0x80174C90 -getTo__27ContainerFv=0x80174C98 -movieUserCommand__Q24Game5OnyonFUlPQ24Game11MoviePlayer=0x80174CA0 -isSuckReady__Q24Game5OnyonFv=0x801754AC -isSuckArriveWait__Q24Game5OnyonFv=0x80175590 -setType__Q24Game5OnyonFi=0x801755B8 -__dt__Q23efx13TChasePosYRotFv=0x80175C44 -__dt__Q23efx8TForeverFv=0x80175CC8 -setupTevRegAnim__Q24Game5OnyonFi=0x80175D4C -stimulate__Q24Game5OnyonFRQ24Game11Interaction=0x80175E1C -actOnyon__Q24Game18InteractSuckArriveFPQ24Game5Onyon=0x80175E90 -needShadow__Q24Game5OnyonFv=0x80175FE8 -getShadowParam__Q24Game5OnyonFRQ24Game11ShadowParam=0x80175FF0 -sound_culling__Q24Game5OnyonFv=0x80176094 -actOnyon__Q24Game16InteractSuckDoneFPQ24Game5Onyon=0x801760C8 -startPropera__Q24Game5OnyonFv=0x80176E84 -stopPropera__Q24Game5OnyonFv=0x80176E90 -doDirectDraw__Q24Game5OnyonFR8Graphics=0x80176E9C -onInit__Q24Game5OnyonFPQ24Game15CreatureInitArg=0x80177008 -onKill__Q24Game5OnyonFPQ24Game15CreatureKillArg=0x8017703C -onSetPosition__Q24Game5OnyonFv=0x80177040 -setSpotState__Q24Game5OnyonFQ34Game5Onyon10cSpotState=0x8017727C -getSuckPos__Q24Game5OnyonFv=0x8017738C -getGoalPos__Q24Game5OnyonFv=0x80177438 -doAI__Q24Game5OnyonFv=0x80177510 -forceClose__Q24Game5OnyonFv=0x80177828 -do_updateLOD__Q24Game5OnyonFv=0x801778A0 -getLODCylinder__Q24Game5OnyonFRQ23Sys8Cylinder=0x80177918 -do_doAnimation__Q24Game5OnyonFv=0x8017797C -getSound_PosPtr__Q24Game8BaseItemFv=0x80177DEC -startWaitMotion__Q24Game5OnyonFv=0x80177DF4 -onKeyEvent_UFO__Q24Game5OnyonFRCQ28SysShape8KeyEvent=0x80177F8C -getFlagSetPos__Q24Game5OnyonFv=0x80178004 -onKeyEvent__Q24Game5OnyonFRCQ28SysShape8KeyEvent=0x80178140 -vsChargePikmin__Q24Game5OnyonFv=0x8017818C -onKeyEvent_Onyon__Q24Game5OnyonFRCQ28SysShape8KeyEvent=0x80178238 -doEmit__Q24Game5OnyonFPQ24Game8Creatureb=0x80178880 -getLegPart__Q24Game5OnyonFi=0x80178B18 -getFootPart__Q24Game5OnyonFi=0x80178BB8 -makeTrMatrix__Q24Game5OnyonFv=0x80178C78 -changeMaterial__Q24Game5OnyonFv=0x80178DA4 -setSpotEffect__Q24Game5OnyonFb=0x80178EDC -setSpotEffectActive__Q24Game5OnyonFb=0x801790B0 -efxSuikomi__Q24Game5OnyonFv=0x801791E4 -efxPafuPafu__Q24Game5OnyonFv=0x8017934C -efxPafuKira__Q24Game5OnyonFv=0x801794EC -getStoreCount__Q24Game5OnyonFv=0x8017959C -enterPiki__Q24Game5OnyonFPQ24Game4Piki=0x801795C8 -exitPikis__Q24Game5OnyonFii=0x8017980C -exitPiki__Q24Game5OnyonFv=0x80179854 -insideAccessArea__Q24Game5OnyonFR10Vector3=0x80179CA8 -generatorBirth__Q34Game9ItemOnyon3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x80179D60 -setupSoundViewerAndBas__Q34Game9ItemOnyon3MgrFv=0x80179E7C -getInEnd_UFO__Q24Game5OnyonFv=0x80179E80 -getInStart_UFO__Q24Game5OnyonFv=0x80179F44 -getOutStart_UFO__Q24Game5OnyonFv=0x8017A0AC -__ct__Q28SysShape8AnimatorFv=0x8017A170 -getPMotionSpeed__Q24Game5OnyonFi=0x8017A1A4 -getPAnimator__Q24Game5OnyonFi=0x8017A220 -update_pmotions__Q24Game5OnyonFv=0x8017A29C -initDependency__Q34Game9ItemOnyon3MgrFv=0x8017A434 -initDependency__Q24Game8BaseItemFv=0x8017A61C -generatorGetShape__Q34Game9ItemOnyon3MgrFPQ24Game11GenItemParm=0x8017A620 -generatorNewItemParm__Q34Game9ItemOnyon3MgrFv=0x8017A66C -generatorWrite__Q34Game9ItemOnyon3MgrFR6StreamPQ24Game11GenItemParm=0x8017A6C0 -generatorRead__Q34Game9ItemOnyon3MgrFR6StreamPQ24Game11GenItemParmUl=0x8017A74C -__ct__Q34Game9ItemOnyon3MgrFv=0x8017A7C4 -__dt__28NodeObjectMgrFv=0x8017A94C -__dt__26TObjectNodeFv=0x8017AA14 -__dt__24ObjectMgrFv=0x8017AA74 -__dt__24ContainerFv=0x8017AAFC -__dt__Q34Game9ItemOnyon3MgrFv=0x8017AB6C -on_movie_end__Q24Game5OnyonFb=0x8017AC88 -birth__Q34Game9ItemOnyon3MgrFii=0x8017AEDC -getOnyon__Q34Game9ItemOnyon3MgrFi=0x8017BA9C -init__Q34Game9ItemOnyon3MgrFv=0x8017BAFC -load__Q34Game9ItemOnyon3MgrFv=0x8017BB1C -generatorGetID__Q34Game9ItemOnyon3MgrFv=0x8017C044 -generatorLocalVersion__Q34Game9ItemOnyon3MgrFv=0x8017C050 -doAnimation__Q34Game9ItemOnyon3MgrFv=0x8017C05C -doEntry__Q34Game9ItemOnyon3MgrFv=0x8017C088 -doSetView__Q34Game9ItemOnyon3MgrFi=0x8017C0B4 -doViewCalc__Q34Game9ItemOnyon3MgrFv=0x8017C0E0 -doSimulation__Q34Game9ItemOnyon3MgrFf=0x8017C10C -doDirectDraw__Q34Game9ItemOnyon3MgrFR8Graphics=0x8017C138 -killAll__Q24Game11BaseItemMgrFv=0x8017C164 -setup__Q24Game11BaseItemMgrFPQ24Game8BaseItem=0x8017C168 -onLoadResources__Q24Game11BaseItemMgrFv=0x8017C16C -loadEverytime__Q24Game11BaseItemMgrFv=0x8017C170 -onUpdateUseList__Q24Game11BaseItemMgrFPQ24Game11GenItemParmi=0x8017C178 -getEnd__Q34Game9ItemOnyon3MgrFv=0x8017C17C -getEnd__28NodeObjectMgrFv=0x8017C1A8 -getStart__Q34Game9ItemOnyon3MgrFv=0x8017C1B0 -getStart__28NodeObjectMgrFv=0x8017C1DC -getNext__Q34Game9ItemOnyon3MgrFPv=0x8017C1E4 -getNext__28NodeObjectMgrFPv=0x8017C210 -get__Q34Game9ItemOnyon3MgrFPv=0x8017C218 -get__28NodeObjectMgrFPv=0x8017C244 -getShapeID__Q24Game11GenItemParmFv=0x8017C24C -getName__Q23efx7ArgTypeFv=0x8017C254 -getID__Q23efx12OnyonSpotArgFv=0x8017C25C -getCreatureName__Q24Game5OnyonFv=0x8017C270 -getCreatureID__Q24Game8BaseItemFv=0x8017C278 -do_setLODParm__Q24Game8BaseItemFRQ24Game9AILODParm=0x8017C280 -getMapCollisionRadius__Q24Game8BaseItemFv=0x8017C284 -interactAttack__Q24Game8BaseItemFRQ24Game14InteractAttack=0x8017C28C -interactBreakBridge__Q24Game8BaseItemFRQ24Game19InteractBreakBridge=0x8017C294 -interactEat__Q24Game8BaseItemFRQ24Game11InteractEat=0x8017C29C -interactFlockAttack__Q24Game8BaseItemFRQ24Game19InteractFlockAttack=0x8017C2A4 -interactAbsorb__Q24Game8BaseItemFRQ24Game14InteractAbsorb=0x8017C2AC -interactFue__Q24Game8BaseItemFRQ24Game11InteractFue=0x8017C2B4 -interactFarmKarero__Q24Game8BaseItemFRQ24Game18InteractFarmKarero=0x8017C2BC -interactFarmHaero__Q24Game8BaseItemFRQ24Game17InteractFarmHaero=0x8017C2C4 -interactGotKey__Q24Game8BaseItemFRQ24Game14InteractGotKey=0x8017C2CC -getVectorField__Q24Game8BaseItemFRQ23Sys6SphereR10Vector3=0x8017C2D4 -getWorkDistance__Q24Game8BaseItemFRQ23Sys6Sphere=0x8017C2DC -bounceCallback__Q24Game8BaseItemFPQ23Sys8Triangle=0x8017C2E4 -collisionCallback__Q24Game8BaseItemFRQ24Game9CollEvent=0x8017C2E8 -platCallback__Q24Game8BaseItemFRQ24Game9PlatEvent=0x8017C2EC -updateBoundSphere__Q24Game8BaseItemFv=0x8017C2F0 -getBoundingSphere__Q24Game8BaseItemFRQ23Sys6Sphere=0x8017C2F4 -onSetPosition__Q24Game8BaseItemFR10Vector3=0x8017C318 -onSetPosition__Q24Game8BaseItemFv=0x8017C35C -getVelocity__Q24Game8BaseItemFv=0x8017C360 -getVelocityAt__Q24Game8BaseItemFR10Vector3R10Vector3=0x8017C37C -__dt__Q23efx8TPodKiraFv=0x8017C390 -__dt__Q23efx9TPodOpenBFv=0x8017C42C -__dt__Q23efx9TPodOpenAFv=0x8017C4C8 -doExecuteEmitterOperation__Q23efx8TForeverFP14JPABaseEmitter=0x8017C564 -__dt__Q23efx10TUfoGasOutFv=0x8017C568 -__dt__Q23efx9TUfoGasInFv=0x8017C604 -__dt__Q23efx15TUfoPodOpenSuckFv=0x8017C6A0 -getName__Q34Game12ItemPikihead7InitArgFv=0x8017C73C -getName__Q24Game11ItemInitArgFv=0x8017C748 -resetMgr__28NodeObjectMgrFv=0x8017C754 -doAnimation__24ObjectMgrFv=0x8017C76C -doEntry__24ObjectMgrFv=0x8017C950 -doSetView__24ObjectMgrFi=0x8017CB34 -doViewCalc__24ObjectMgrFv=0x8017CD28 -doSimulation__24ObjectMgrFf=0x8017CF0C -doDirectDraw__24ObjectMgrFR8Graphics=0x8017D100 -getObject__24ContainerFPv=0x8017D2F4 -getAt__24ContainerFi=0x8017D320 -getTo__24ContainerFv=0x8017D328 -__sinit_onyonMgr_cpp=0x8017D330 -@4@__dt__Q23efx8TForeverFv=0x8017D358 -@4@__dt__Q23efx15TUfoPodOpenSuckFv=0x8017D360 -@4@__dt__Q23efx9TUfoGasInFv=0x8017D368 -@4@__dt__Q23efx10TUfoGasOutFv=0x8017D370 -@4@__dt__Q23efx9TPodOpenAFv=0x8017D378 -@4@__dt__Q23efx9TPodOpenBFv=0x8017D380 -@4@__dt__Q23efx8TPodKiraFv=0x8017D388 -@376@onKeyEvent__Q24Game5OnyonFRCQ28SysShape8KeyEvent=0x8017D390 -@28@resetMgr__28NodeObjectMgrFv=0x8017D398 -@28@doDirectDraw__24ObjectMgrFR8Graphics=0x8017D3A0 -@28@doSimulation__24ObjectMgrFf=0x8017D3A8 -@28@doViewCalc__24ObjectMgrFv=0x8017D3B0 -@28@doSetView__24ObjectMgrFi=0x8017D3B8 -@28@doEntry__24ObjectMgrFv=0x8017D3C0 -@28@doAnimation__24ObjectMgrFv=0x8017D3C8 -@48@getEnd__Q34Game9ItemOnyon3MgrFv=0x8017D3D0 -@48@getStart__Q34Game9ItemOnyon3MgrFv=0x8017D3D8 -@48@getNext__Q34Game9ItemOnyon3MgrFPv=0x8017D3E0 -@48@get__Q34Game9ItemOnyon3MgrFPv=0x8017D3E8 -@48@__dt__Q34Game9ItemOnyon3MgrFv=0x8017D3F0 -getName__Q24Game7ObjTypeFUs=0x8017D3F8 -draw2d__Q24Game9NaviStateFR14J2DGrafContextRi=0x8017D44C -transit__Q24Game7NaviFSMFPQ24Game4NaviiPQ24Game8StateArg=0x8017D450 -init__Q24Game7NaviFSMFPQ24Game4Navi=0x8017D4D4 -init__Q24Game18NaviCarryBombStateFPQ24Game4NaviPQ24Game8StateArg=0x8017DCF4 -transit__Q24Game22FSMStateFPQ24Game4NaviiPQ24Game8StateArg=0x8017DDCC -updateMatrix__Q24Game18NaviCarryBombStateFPQ24Game4Navi=0x8017DDFC -exec__Q24Game18NaviCarryBombStateFPQ24Game4Navi=0x8017DF44 -onKeyEvent__Q24Game18NaviCarryBombStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x8017E190 -cleanup__Q24Game18NaviCarryBombStateFPQ24Game4Navi=0x8017E30C -init__Q24Game14NaviStuckStateFPQ24Game4NaviPQ24Game8StateArg=0x8017E338 -exec__Q24Game14NaviStuckStateFPQ24Game4Navi=0x8017E390 -cleanup__Q24Game14NaviStuckStateFPQ24Game4Navi=0x8017E84C -init__Q24Game13NaviWalkStateFPQ24Game4NaviPQ24Game8StateArg=0x8017E850 -exec__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017E92C -needYChangeMotion__Q24Game9NaviStateFv=0x8017EF60 -cleanup__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017EF68 -collisionCallback__Q24Game13NaviWalkStateFPQ24Game4NaviRQ24Game9CollEvent=0x8017EF6C -execAI__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017F104 -checkAI__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017F198 -onKeyEvent__Q24Game13NaviWalkStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x8017F3D4 -wallCallback__Q24Game13NaviWalkStateFPQ24Game4NaviR10Vector3=0x8017F4D4 -initAI_wait__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017F508 -execAI_wait__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017F550 -initAI_animation__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017F714 -execAI_animation__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017F980 -execAI_attack__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017FA00 -initAI_escape__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017FC40 -execAI_escape__Q24Game13NaviWalkStateFPQ24Game4Navi=0x8017FCCC -blendVelocity__Q24Game13NaviWalkStateFPQ24Game4NaviR10Vector3=0x8017FF80 -init__Q24Game15NaviChangeStateFPQ24Game4NaviPQ24Game8StateArg=0x8017FFB4 -onKeyEvent__Q24Game15NaviChangeStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x8018005C -exec__Q24Game15NaviChangeStateFPQ24Game4Navi=0x801800B4 -cleanup__Q24Game15NaviChangeStateFPQ24Game4Navi=0x80180160 -init__Q24Game15NaviFollowStateFPQ24Game4NaviPQ24Game8StateArg=0x80180164 -onKeyEvent__Q24Game15NaviFollowStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x801802D0 -exec__Q24Game15NaviFollowStateFPQ24Game4Navi=0x80180444 -cleanup__Q24Game15NaviFollowStateFPQ24Game4Navi=0x80180DE4 -__ct__Q24Game14NaviPunchStateFv=0x80180DE8 -init__Q24Game14NaviPunchStateFPQ24Game4NaviPQ24Game8StateArg=0x80180E28 -hitCallback__Q24Game14NaviPunchStateFP8CollPart=0x80180EFC -onKeyEvent__Q24Game14NaviPunchStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x801811FC -exec__Q24Game14NaviPunchStateFPQ24Game4Navi=0x801815A0 -cleanup__Q24Game14NaviPunchStateFPQ24Game4Navi=0x8018171C -init__Q24Game17NaviPathMoveStateFPQ24Game4NaviPQ24Game8StateArg=0x80181720 -exec__Q24Game17NaviPathMoveStateFPQ24Game4Navi=0x801817C0 -cleanup__Q24Game17NaviPathMoveStateFPQ24Game4Navi=0x80181898 -initPathfinding__Q24Game17NaviPathMoveStateFPQ24Game4Navi=0x801818DC -execPathfinding__Q24Game17NaviPathMoveStateFPQ24Game4Navi=0x80181A98 -execMove__Q24Game17NaviPathMoveStateFPQ24Game4Navi=0x80181B28 -execMoveGoal__Q24Game17NaviPathMoveStateFPQ24Game4Navi=0x80181C84 -init__Q24Game13NaviNukuStateFPQ24Game4NaviPQ24Game8StateArg=0x80181C8C -exec__Q24Game13NaviNukuStateFPQ24Game4Navi=0x80181D70 -cleanup__Q24Game13NaviNukuStateFPQ24Game4Navi=0x80181EFC -onKeyEvent__Q24Game13NaviNukuStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x80181F28 -init__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviPQ24Game8StateArg=0x801820A0 -wallCallback__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviR10Vector3=0x801822E0 -ignoreAtari__Q24Game19NaviNukuAdjustStateFPQ24Game8Creature=0x801822F0 -collisionCallback__Q24Game19NaviNukuAdjustStateFPQ24Game4NaviRQ24Game9CollEvent=0x80182354 -exec__Q24Game19NaviNukuAdjustStateFPQ24Game4Navi=0x80182418 -cleanup__Q24Game19NaviNukuAdjustStateFPQ24Game4Navi=0x80182B9C -init__Q24Game13NaviDopeStateFPQ24Game4NaviPQ24Game8StateArg=0x80182BEC -exec__Q24Game13NaviDopeStateFPQ24Game4Navi=0x801831D8 -cleanup__Q24Game13NaviDopeStateFPQ24Game4Navi=0x80183278 -onKeyEvent__Q24Game13NaviDopeStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x8018327C -init__Q24Game14NaviClimbStateFPQ24Game4NaviPQ24Game8StateArg=0x801832C8 -prepare__Q24Game14NaviClimbStateFPQ24Game4Navi=0x801833A8 -exec__Q24Game14NaviClimbStateFPQ24Game4Navi=0x80183464 -cleanup__Q24Game14NaviClimbStateFPQ24Game4Navi=0x80183720 -init__Q24Game17NaviFallMeckStateFPQ24Game4NaviPQ24Game8StateArg=0x80183744 -exec__Q24Game17NaviFallMeckStateFPQ24Game4Navi=0x801837FC -cleanup__Q24Game17NaviFallMeckStateFPQ24Game4Navi=0x80183898 -onKeyEvent__Q24Game17NaviFallMeckStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x8018389C -bounceCallback__Q24Game17NaviFallMeckStateFPQ24Game4NaviPQ23Sys8Triangle=0x80183938 -init__Q24Game14NaviFlickStateFPQ24Game4NaviPQ24Game8StateArg=0x80183BA0 -exec__Q24Game14NaviFlickStateFPQ24Game4Navi=0x80183CCC -cleanup__Q24Game14NaviFlickStateFPQ24Game4Navi=0x80183DE4 -onKeyEvent__Q24Game14NaviFlickStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x80183DE8 -bounceCallback__Q24Game14NaviFlickStateFPQ24Game4NaviPQ23Sys8Triangle=0x80183E4C -init__Q24Game19NaviKokeDamageStateFPQ24Game4NaviPQ24Game8StateArg=0x80183EBC -exec__Q24Game19NaviKokeDamageStateFPQ24Game4Navi=0x80183F7C -cleanup__Q24Game19NaviKokeDamageStateFPQ24Game4Navi=0x80184184 -onKeyEvent__Q24Game19NaviKokeDamageStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x80184188 -init__Q24Game14NaviSaraiStateFPQ24Game4NaviPQ24Game8StateArg=0x80184224 -exec__Q24Game14NaviSaraiStateFPQ24Game4Navi=0x80184290 -cleanup__Q24Game14NaviSaraiStateFPQ24Game4Navi=0x80184610 -init__Q24Game18NaviSaraiExitStateFPQ24Game4NaviPQ24Game8StateArg=0x8018461C -exec__Q24Game18NaviSaraiExitStateFPQ24Game4Navi=0x80184688 -cleanup__Q24Game18NaviSaraiExitStateFPQ24Game4Navi=0x801846D4 -bounceCallback__Q24Game18NaviSaraiExitStateFPQ24Game4NaviPQ23Sys8Triangle=0x80184708 -init__Q24Game18NaviContainerStateFPQ24Game4NaviPQ24Game8StateArg=0x8018473C -exec__Q24Game18NaviContainerStateFPQ24Game4Navi=0x80184D38 -enterPikis__Q24Game18NaviContainerStateFPQ24Game4Navii=0x80184FA8 -cleanup__Q24Game18NaviContainerStateFPQ24Game4Navi=0x80185248 -init__Q24Game15NaviAbsorbStateFPQ24Game4NaviPQ24Game8StateArg=0x8018528C -exec__Q24Game15NaviAbsorbStateFPQ24Game4Navi=0x801853CC -onKeyEvent__Q24Game15NaviAbsorbStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x801854BC -cleanup__Q24Game15NaviAbsorbStateFPQ24Game4Navi=0x80185630 -init__Q24Game16NaviDamagedStateFPQ24Game4NaviPQ24Game8StateArg=0x80185670 -exec__Q24Game16NaviDamagedStateFPQ24Game4Navi=0x801856F4 -cleanup__Q24Game16NaviDamagedStateFPQ24Game4Navi=0x8018578C -onKeyEvent__Q24Game16NaviDamagedStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x801857B4 -init__Q24Game13NaviDeadStateFPQ24Game4NaviPQ24Game8StateArg=0x8018581C -exec__Q24Game13NaviDeadStateFPQ24Game4Navi=0x80185878 -cleanup__Q24Game13NaviDeadStateFPQ24Game4Navi=0x80185898 -onKeyEvent__Q24Game13NaviDeadStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x8018589C -init__Q24Game15NaviGatherStateFPQ24Game4NaviPQ24Game8StateArg=0x801858DC -exec__Q24Game15NaviGatherStateFPQ24Game4Navi=0x801859D4 -cleanup__Q24Game15NaviGatherStateFPQ24Game4Navi=0x80185B00 -__ct__Q24Game18NaviThrowWaitStateFv=0x80185B60 -draw2d__Q24Game18NaviThrowWaitStateFR14J2DGrafContextRi=0x80185C54 -resume__Q24Game18NaviThrowWaitStateFPQ24Game4Navi=0x80185C58 -restart__Q24Game18NaviThrowWaitStateFPQ24Game4Navi=0x80185C84 -init__Q24Game18NaviThrowWaitStateFPQ24Game4NaviPQ24Game8StateArg=0x80185CB8 -onKeyEvent__Q24Game18NaviThrowWaitStateFRCQ28SysShape8KeyEvent=0x80186210 -doAnimCallback__Q24Game18NaviThrowWaitStateFv=0x8018624C -lockHangPiki__Q24Game18NaviThrowWaitStateFPQ24Game4Navi=0x80186270 -exec__Q24Game18NaviThrowWaitStateFPQ24Game4Navi=0x801862F4 -findNearestColorPiki__Q24Game18NaviThrowWaitStateFPQ24Game4Navii=0x80186DD4 -sortPikis__Q24Game18NaviThrowWaitStateFPQ24Game4Navi=0x801870D0 -cleanup__Q24Game18NaviThrowWaitStateFPQ24Game4Navi=0x80187340 -init__Q24Game14NaviThrowStateFPQ24Game4NaviPQ24Game8StateArg=0x801873A8 -onKeyEvent__Q24Game14NaviThrowStateFRCQ28SysShape8KeyEvent=0x80187470 -exec__Q24Game14NaviThrowStateFPQ24Game4Navi=0x80187544 -cleanup__Q24Game14NaviThrowStateFPQ24Game4Navi=0x80187634 -init__Q24Game15NaviPelletStateFPQ24Game4NaviPQ24Game8StateArg=0x80187638 -exec__Q24Game15NaviPelletStateFPQ24Game4Navi=0x801877F8 -onKeyEvent__Q24Game15NaviPelletStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x80187BF0 -cleanup__Q24Game15NaviPelletStateFPQ24Game4Navi=0x80187D1C -init__Q24Game17NaviDemo_UfoStateFPQ24Game4NaviPQ24Game8StateArg=0x80187D9C -exec__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi=0x80187DE4 -cleanup__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi=0x80187E94 -execGoto__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi=0x80187E98 -initSuck__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi=0x80188014 -execSuck__Q24Game17NaviDemo_UfoStateFPQ24Game4Navi=0x8018812C -init__Q24Game20NaviDemo_HoleInStateFPQ24Game4NaviPQ24Game8StateArg=0x8018824C -exec__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi=0x801887D8 -onKeyEvent__Q24Game20NaviDemo_HoleInStateFPQ24Game4NaviRCQ28SysShape8KeyEvent=0x80188880 -cleanup__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi=0x8018888C -execGoto__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi=0x80188890 -initHesitate__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi=0x80188A08 -execHesitate__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi=0x80188A68 -initFall__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi=0x80188BD4 -execFall__Q24Game20NaviDemo_HoleInStateFPQ24Game4Navi=0x80188BD8 -init__Q24Game16NaviPressedStateFPQ24Game4NaviPQ24Game8StateArg=0x80188BE0 -exec__Q24Game16NaviPressedStateFPQ24Game4Navi=0x80188D24 -cleanup__Q24Game16NaviPressedStateFPQ24Game4Navi=0x80188F94 -pressable__Q24Game16NaviPressedStateFv=0x80189010 -invincible__Q24Game16NaviPressedStateFv=0x80189018 -vsUsableY__Q24Game16NaviPressedStateFv=0x80189020 -callable__Q24Game9NaviStateFv=0x80189028 -pressable__Q24Game9NaviStateFv=0x80189030 -callable__Q24Game15NaviPelletStateFv=0x80189038 -invincible__Q24Game13NaviDeadStateFv=0x80189040 -pressable__Q24Game13NaviDeadStateFv=0x80189048 -vsUsableY__Q24Game13NaviDeadStateFv=0x80189050 -invincible__Q24Game16NaviDamagedStateFv=0x80189058 -vsUsableY__Q24Game16NaviDamagedStateFv=0x80189060 -vsUsableY__Q24Game15NaviAbsorbStateFv=0x80189068 -invincible__Q24Game15NaviAbsorbStateFv=0x80189070 -pressable__Q24Game15NaviAbsorbStateFv=0x80189078 -getSize__Q32og6Screen17DispMemberContenaFv=0x80189080 -getOwnerID__Q32og6Screen17DispMemberContenaFv=0x80189088 -getMemberID__Q32og6Screen17DispMemberContenaFv=0x80189094 -getSize__Q32og6Screen17DispMemberUfoMenuFv=0x801890A8 -getOwnerID__Q32og6Screen17DispMemberUfoMenuFv=0x801890B0 -getMemberID__Q32og6Screen17DispMemberUfoMenuFv=0x801890BC -getSize__Q32og6Screen18DispMemberUfoGroupFv=0x801890D0 -getOwnerID__Q32og6Screen18DispMemberUfoGroupFv=0x801890D8 -getMemberID__Q32og6Screen18DispMemberUfoGroupFv=0x801890E4 -doSetSubMemberAll__Q32og6Screen18DispMemberUfoGroupFv=0x801890F8 -invincible__Q24Game18NaviContainerStateFv=0x80189140 -pressable__Q24Game18NaviSaraiExitStateFv=0x80189148 -pressable__Q24Game14NaviSaraiStateFv=0x80189150 -pressable__Q24Game19NaviKokeDamageStateFv=0x80189158 -vsUsableY__Q24Game19NaviKokeDamageStateFv=0x80189160 -pressable__Q24Game14NaviFlickStateFv=0x80189168 -vsUsableY__Q24Game14NaviFlickStateFv=0x80189170 -pressable__Q24Game17NaviFallMeckStateFv=0x80189178 -getName__Q23efx14ArgDopingSmokeFv=0x80189180 -invincible__Q24Game13NaviDopeStateFv=0x8018918C -invincible__Q24Game13NaviNukuStateFv=0x80189194 -needYChangeMotion__Q24Game15NaviFollowStateFv=0x8018919C -callable__Q24Game13NaviWalkStateFv=0x801891A4 -needYChangeMotion__Q24Game13NaviWalkStateFv=0x801891AC -vsUsableY__Q24Game14NaviStuckStateFv=0x801891B4 -resume__Q24Game22FSMStateFPQ24Game4Navi=0x801891BC -restart__Q24Game22FSMStateFPQ24Game4Navi=0x801891C0 -create__Q24Game26StateMachineFi=0x801891C4 -invoke__45Delegate1FP8CollPart=0x80189228 -invoke__37DelegateFv=0x80189258 -getCurrID__Q24Game26StateMachineFPQ24Game4Navi=0x80189288 -registerState__Q24Game26StateMachineFPQ24Game22FSMState=0x801892A4 -__sinit_naviState_cpp=0x80189328 -@60@4@onKeyEvent__Q24Game18NaviThrowWaitStateFRCQ28SysShape8KeyEvent=0x80189350 -@32@4@onKeyEvent__Q24Game14NaviThrowStateFRCQ28SysShape8KeyEvent=0x80189364 -dump__Q24Game9PikiStateFv=0x80189378 -getInfo__Q24Game9PikiStateFPc=0x8018937C -init__Q24Game7PikiFSMFPQ24Game4Piki=0x801893AC -transit__Q24Game7PikiFSMFPQ24Game4PikiiPQ24Game8StateArg=0x80189F18 -transitForce__Q24Game7PikiFSMFPQ24Game4PikiiPQ24Game8StateArg=0x8018A030 -init__Q24Game13PikiWalkStateFPQ24Game4PikiPQ24Game8StateArg=0x8018A080 -exec__Q24Game13PikiWalkStateFPQ24Game4Piki=0x8018A0C0 -cleanup__Q24Game13PikiWalkStateFPQ24Game4Piki=0x8018A0E4 -init__Q24Game17PikiDemoWaitStateFPQ24Game4PikiPQ24Game8StateArg=0x8018A0E8 -exec__Q24Game17PikiDemoWaitStateFPQ24Game4Piki=0x8018A128 -cleanup__Q24Game17PikiDemoWaitStateFPQ24Game4Piki=0x8018A14C -init__Q24Game15PikiCarrotStateFPQ24Game4PikiPQ24Game8StateArg=0x8018A150 -exec__Q24Game15PikiCarrotStateFPQ24Game4Piki=0x8018A250 -cleanup__Q24Game15PikiCarrotStateFPQ24Game4Piki=0x8018A584 -bounceCallback__Q24Game15PikiCarrotStateFPQ24Game4PikiPQ23Sys8Triangle=0x8018A65C -collisionCallback__Q24Game15PikiCarrotStateFPQ24Game4PikiRQ24Game9CollEvent=0x8018A780 -init__Q24Game18PikiSwallowedStateFPQ24Game4PikiPQ24Game8StateArg=0x8018A784 -exec__Q24Game18PikiSwallowedStateFPQ24Game4Piki=0x8018A85C -transit__Q24Game22FSMStateFPQ24Game4PikiiPQ24Game8StateArg=0x8018A8D0 -cleanup__Q24Game18PikiSwallowedStateFPQ24Game4Piki=0x8018A900 -init__Q24Game15PikiHoleinStateFPQ24Game4PikiPQ24Game8StateArg=0x8018A954 -exec__Q24Game15PikiHoleinStateFPQ24Game4Piki=0x8018AB60 -cleanup__Q24Game15PikiHoleinStateFPQ24Game4Piki=0x8018AD20 -init__Q24Game19PikiFountainonStateFPQ24Game4PikiPQ24Game8StateArg=0x8018AD24 -exec__Q24Game19PikiFountainonStateFPQ24Game4Piki=0x8018AF18 -cleanup__Q24Game19PikiFountainonStateFPQ24Game4Piki=0x8018B0B8 -init__Q24Game13PikiTaneStateFPQ24Game4PikiPQ24Game8StateArg=0x8018B0BC -exec__Q24Game13PikiTaneStateFPQ24Game4Piki=0x8018B184 -cleanup__Q24Game13PikiTaneStateFPQ24Game4Piki=0x8018B1BC -bounceCallback__Q24Game13PikiTaneStateFPQ24Game4PikiPQ23Sys8Triangle=0x8018B1F0 -init__Q24Game15PikiNukareStateFPQ24Game4PikiPQ24Game8StateArg=0x8018B254 -soft_transittable__Q24Game15PikiNukareStateFi=0x8018B368 -exec__Q24Game15PikiNukareStateFPQ24Game4Piki=0x8018B374 -onKeyEvent__Q24Game15PikiNukareStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8018B4C4 -cleanup__Q24Game15PikiNukareStateFPQ24Game4Piki=0x8018B6D0 -init__Q24Game13PikiDopeStateFPQ24Game4PikiPQ24Game8StateArg=0x8018B6E0 -onFlute__Q24Game13PikiDopeStateFPQ24Game4PikiPQ24Game4Navi=0x8018B798 -exec__Q24Game13PikiDopeStateFPQ24Game4Piki=0x8018B7A0 -onKeyEvent__Q24Game13PikiDopeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8018B92C -cleanup__Q24Game13PikiDopeStateFPQ24Game4Piki=0x8018BA04 -soft_transittable__Q24Game14PikiPanicStateFi=0x8018BA08 -transittable__Q24Game14PikiPanicStateFi=0x8018BA2C -init__Q24Game14PikiPanicStateFPQ24Game4PikiPQ24Game8StateArg=0x8018BA9C -exec__Q24Game14PikiPanicStateFPQ24Game4Piki=0x8018BD1C -onKeyEvent__Q24Game14PikiPanicStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8018BF7C -panicRun__Q24Game14PikiPanicStateFPQ24Game4Piki=0x8018BFC4 -panicLobster__Q24Game14PikiPanicStateFPQ24Game4Piki=0x8018C280 -cleanup__Q24Game14PikiPanicStateFPQ24Game4Piki=0x8018C554 -bounceCallback__Q24Game14PikiPanicStateFPQ24Game4PikiPQ23Sys8Triangle=0x8018C638 -onFlute__Q24Game14PikiPanicStateFPQ24Game4PikiPQ24Game4Navi=0x8018C644 -init__Q24Game13PikiDeadStateFPQ24Game4PikiPQ24Game8StateArg=0x8018C760 -exec__Q24Game13PikiDeadStateFPQ24Game4Piki=0x8018C764 -transittable__Q24Game14PikiDyingStateFi=0x8018C768 -init__Q24Game14PikiDyingStateFPQ24Game4PikiPQ24Game8StateArg=0x8018C778 -exec__Q24Game14PikiDyingStateFPQ24Game4Piki=0x8018C82C -cleanup__Q24Game14PikiDyingStateFPQ24Game4Piki=0x8018C908 -onKeyEvent__Q24Game14PikiDyingStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8018C90C -soft_transittable__Q24Game19PikiDenkiDyingStateFi=0x8018C970 -transittable__Q24Game19PikiDenkiDyingStateFi=0x8018C980 -init__Q24Game19PikiDenkiDyingStateFPQ24Game4PikiPQ24Game8StateArg=0x8018C990 -exec__Q24Game19PikiDenkiDyingStateFPQ24Game4Piki=0x8018CA14 -cleanup__Q24Game19PikiDenkiDyingStateFPQ24Game4Piki=0x8018CB4C -soft_transittable__Q24Game16PikiPressedStateFi=0x8018CB50 -transittable__Q24Game16PikiPressedStateFi=0x8018CB60 -init__Q24Game16PikiPressedStateFPQ24Game4PikiPQ24Game8StateArg=0x8018CB70 -exec__Q24Game16PikiPressedStateFPQ24Game4Piki=0x8018CC38 -cleanup__Q24Game16PikiPressedStateFPQ24Game4Piki=0x8018CD44 -init__Q24Game15PikiLookAtStateFPQ24Game4PikiPQ24Game8StateArg=0x8018CD78 -onFlute__Q24Game15PikiLookAtStateFPQ24Game4PikiPQ24Game4Navi=0x8018CDFC -exec__Q24Game15PikiLookAtStateFPQ24Game4Piki=0x8018CE00 -onKeyEvent__Q24Game15PikiLookAtStateFRCQ28SysShape8KeyEvent=0x8018CF80 -cleanup__Q24Game15PikiLookAtStateFPQ24Game4Piki=0x8018CFA8 -init__Q24Game17PikiAutoNukiStateFPQ24Game4PikiPQ24Game8StateArg=0x8018CFAC -exec__Q24Game17PikiAutoNukiStateFPQ24Game4Piki=0x8018D1A8 -onKeyEvent__Q24Game17PikiAutoNukiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8018D4A8 -cleanup__Q24Game17PikiAutoNukiStateFPQ24Game4Piki=0x8018D4D0 -init__Q24Game15PikiGoHangStateFPQ24Game4PikiPQ24Game8StateArg=0x8018D4D4 -exec__Q24Game15PikiGoHangStateFPQ24Game4Piki=0x8018D538 -cleanup__Q24Game15PikiGoHangStateFPQ24Game4Piki=0x8018D700 -onKeyEvent__Q24Game15PikiHangedStateFRCQ28SysShape8KeyEvent=0x8018D734 -init__Q24Game15PikiHangedStateFPQ24Game4PikiPQ24Game8StateArg=0x8018D738 -exec__Q24Game15PikiHangedStateFPQ24Game4Piki=0x8018D7FC -cleanup__Q24Game15PikiHangedStateFPQ24Game4Piki=0x8018D868 -ignoreAtari__Q24Game15PikiHangedStateFPQ24Game4PikiPQ24Game8Creature=0x8018D89C -onKeyEvent__Q24Game20PikiWaterHangedStateFRCQ28SysShape8KeyEvent=0x8018D908 -init__Q24Game20PikiWaterHangedStateFPQ24Game4PikiPQ24Game8StateArg=0x8018D90C -exec__Q24Game20PikiWaterHangedStateFPQ24Game4Piki=0x8018D9D0 -cleanup__Q24Game20PikiWaterHangedStateFPQ24Game4Piki=0x8018DA78 -ignoreAtari__Q24Game20PikiWaterHangedStateFPQ24Game4PikiPQ24Game8Creature=0x8018DAAC -init__Q24Game16PikiHipDropStateFPQ24Game4PikiPQ24Game8StateArg=0x8018DB18 -exec__Q24Game16PikiHipDropStateFPQ24Game4Piki=0x8018DB88 -cleanup__Q24Game16PikiHipDropStateFPQ24Game4Piki=0x8018DF50 -onKeyEvent__Q24Game16PikiHipDropStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8018DF88 -bounceCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiPQ23Sys8Triangle=0x8018DF8C -collisionCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiRQ24Game9CollEvent=0x8018DFB8 -platCallback__Q24Game16PikiHipDropStateFPQ24Game4PikiRQ24Game9PlatEvent=0x8018E298 -dosin__Q24Game16PikiHipDropStateFPQ24Game4Piki=0x8018E2C4 -earthquake__Q24Game16PikiHipDropStateFPQ24Game4Piki=0x8018E380 -init__Q24Game17PikiFallMeckStateFPQ24Game4PikiPQ24Game8StateArg=0x8018E488 -exec__Q24Game17PikiFallMeckStateFPQ24Game4Piki=0x8018E510 -cleanup__Q24Game17PikiFallMeckStateFPQ24Game4Piki=0x8018E548 -collisionCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiRQ24Game9CollEvent=0x8018E54C -platCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiRQ24Game9PlatEvent=0x8018E550 -bounceCallback__Q24Game17PikiFallMeckStateFPQ24Game4PikiPQ23Sys8Triangle=0x8018E584 -init__Q24Game16PikiSuikomiStateFPQ24Game4PikiPQ24Game8StateArg=0x8018EAD0 -exec__Q24Game16PikiSuikomiStateFPQ24Game4Piki=0x8018EB70 -execMouth__Q24Game16PikiSuikomiStateFPQ24Game4Piki=0x8018EC5C -onKeyEvent__Q24Game16PikiSuikomiStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8018EE58 -execString__Q24Game16PikiSuikomiStateFPQ24Game4Piki=0x8018EE90 -ignoreAtari__Q24Game16PikiSuikomiStateFPQ24Game4PikiPQ24Game8Creature=0x8018EF98 -execStomach__Q24Game16PikiSuikomiStateFPQ24Game4Piki=0x8018EFAC -cleanup__Q24Game16PikiSuikomiStateFPQ24Game4Piki=0x8018F16C -stopEffect__Q24Game15PikiFlyingStateFv=0x8018F1B4 -restartEffect__Q24Game15PikiFlyingStateFv=0x8018F1B8 -init__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ24Game8StateArg=0x8018F1BC -bounceCallback__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ23Sys8Triangle=0x8018F2E0 -collisionCallback__Q24Game15PikiFlyingStateFPQ24Game4PikiRQ24Game9CollEvent=0x8018F354 -ignoreAtari__Q24Game15PikiFlyingStateFPQ24Game4PikiPQ24Game8Creature=0x8018F67C -exec__Q24Game15PikiFlyingStateFPQ24Game4Piki=0x8018F6E8 -cleanup__Q24Game15PikiFlyingStateFPQ24Game4Piki=0x8018FAB4 -init__Q24Game14PikiFlickStateFPQ24Game4PikiPQ24Game8StateArg=0x8018FB1C -onFlute__Q24Game14PikiFlickStateFPQ24Game4PikiPQ24Game4Navi=0x8018FC8C -exec__Q24Game14PikiFlickStateFPQ24Game4Piki=0x8018FCA4 -onKeyEvent__Q24Game14PikiFlickStateFRCQ28SysShape8KeyEvent=0x8018FEAC -cleanup__Q24Game14PikiFlickStateFPQ24Game4Piki=0x8018FFD0 -init__Q24Game13PikiBlowStateFPQ24Game4PikiPQ24Game8StateArg=0x8019007C -exec__Q24Game13PikiBlowStateFPQ24Game4Piki=0x80190220 -cleanup__Q24Game13PikiBlowStateFPQ24Game4Piki=0x80190360 -onKeyEvent__Q24Game13PikiBlowStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x80190364 -onFlute__Q24Game13PikiBlowStateFPQ24Game4PikiPQ24Game4Navi=0x801903C8 -bounceCallback__Q24Game13PikiBlowStateFPQ24Game4PikiPQ23Sys8Triangle=0x801903D8 -init__Q24Game19PikiKokeDamageStateFPQ24Game4PikiPQ24Game8StateArg=0x80190540 -exec__Q24Game19PikiKokeDamageStateFPQ24Game4Piki=0x801905CC -onFlute__Q24Game19PikiKokeDamageStateFPQ24Game4PikiPQ24Game4Navi=0x80190728 -cleanup__Q24Game19PikiKokeDamageStateFPQ24Game4Piki=0x80190744 -onKeyEvent__Q24Game19PikiKokeDamageStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8019082C -init__Q24Game13PikiKokeStateFPQ24Game4PikiPQ24Game8StateArg=0x8019088C -onFlute__Q24Game13PikiKokeStateFPQ24Game4PikiPQ24Game4Navi=0x801909AC -exec__Q24Game13PikiKokeStateFPQ24Game4Piki=0x801909B8 -onKeyEvent__Q24Game13PikiKokeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x80190A4C -cleanup__Q24Game13PikiKokeStateFPQ24Game4Piki=0x80190B3C -init__Q24Game14PikiDrownStateFPQ24Game4PikiPQ24Game8StateArg=0x80190B40 -soft_transittable__Q24Game14PikiDrownStateFi=0x80190D40 -onFlute__Q24Game14PikiDrownStateFPQ24Game4PikiPQ24Game4Navi=0x80190D80 -outWaterCallback__Q24Game14PikiDrownStateFPQ24Game4Piki=0x80190D90 -exec__Q24Game14PikiDrownStateFPQ24Game4Piki=0x80190D9C -cleanup__Q24Game14PikiDrownStateFPQ24Game4Piki=0x801914E8 -onKeyEvent__Q24Game14PikiDrownStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x801914EC -init__Q24Game16PikiEmotionStateFPQ24Game4PikiPQ24Game8StateArg=0x8019160C -exec__Q24Game16PikiEmotionStateFPQ24Game4Piki=0x80191964 -cleanup__Q24Game16PikiEmotionStateFPQ24Game4Piki=0x80191A0C -onKeyEvent__Q24Game16PikiEmotionStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x80191A10 -init__Q24Game15PikiAbsorbStateFPQ24Game4PikiPQ24Game8StateArg=0x80191AD0 -exec__Q24Game15PikiAbsorbStateFPQ24Game4Piki=0x80191C40 -onKeyEvent__Q24Game15PikiAbsorbStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x80191D94 -cleanup__Q24Game15PikiAbsorbStateFPQ24Game4Piki=0x80191EC0 -init__Q24Game15PikiGrowupStateFPQ24Game4PikiPQ24Game8StateArg=0x80191EC4 -exec__Q24Game15PikiGrowupStateFPQ24Game4Piki=0x80191FA4 -onKeyEvent__Q24Game15PikiGrowupStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8019201C -cleanup__Q24Game15PikiGrowupStateFPQ24Game4Piki=0x801921BC -init__Q24Game15PikiEscapeStateFPQ24Game4PikiPQ24Game8StateArg=0x801921C0 -initRun__Q24Game15PikiEscapeStateFPQ24Game4Piki=0x801921E0 -exec__Q24Game15PikiEscapeStateFPQ24Game4Piki=0x80192254 -onKeyEvent__Q24Game15PikiEscapeStateFPQ24Game4PikiRCQ28SysShape8KeyEvent=0x8019281C -cleanup__Q24Game15PikiEscapeStateFPQ24Game4Piki=0x80192998 -callable__Q24Game15PikiEscapeStateFv=0x8019299C -invincible__Q24Game9PikiStateFPQ24Game4Piki=0x801929A4 -dopable__Q24Game9PikiStateFv=0x801929AC -pressable__Q24Game9PikiStateFv=0x801929B4 -onFlute__Q24Game9PikiStateFPQ24Game4PikiPQ24Game4Navi=0x801929BC -callable__Q24Game9PikiStateFv=0x801929C0 -callable__Q24Game16PikiEmotionStateFv=0x801929C8 -callable__Q24Game13PikiKokeStateFv=0x801929D0 -callable__Q24Game19PikiKokeDamageStateFv=0x801929D8 -pressable__Q24Game13PikiBlowStateFv=0x801929E0 -callable__Q24Game13PikiBlowStateFv=0x801929E8 -callable__Q24Game14PikiFlickStateFv=0x801929F0 -getName__Q26PikiAI10ActCropArgFv=0x801929F8 -callable__Q24Game15PikiFlyingStateFv=0x80192A04 -pressable__Q24Game16PikiSuikomiStateFv=0x80192A0C -pressable__Q24Game17PikiFallMeckStateFv=0x80192A14 -throwable__Q24Game20PikiWaterHangedStateFv=0x80192A1C -throwable__Q24Game15PikiHangedStateFv=0x80192A24 -callable__Q24Game15PikiGoHangStateFv=0x80192A2C -throwable__Q24Game15PikiGoHangStateFv=0x80192A34 -callable__Q24Game17PikiAutoNukiStateFv=0x80192A3C -callable__Q24Game15PikiLookAtStateFv=0x80192A44 -pressable__Q24Game16PikiPressedStateFv=0x80192A4C -dead__Q24Game16PikiPressedStateFv=0x80192A54 -pressable__Q24Game19PikiDenkiDyingStateFv=0x80192A5C -dead__Q24Game19PikiDenkiDyingStateFv=0x80192A64 -pressable__Q24Game14PikiDyingStateFv=0x80192A6C -dead__Q24Game14PikiDyingStateFv=0x80192A74 -pressable__Q24Game13PikiDeadStateFv=0x80192A7C -transittable__Q24Game13PikiDeadStateFi=0x80192A84 -dead__Q24Game13PikiDeadStateFv=0x80192A8C -callable__Q24Game13PikiTaneStateFv=0x80192A94 -callable__Q24Game19PikiFountainonStateFv=0x80192A9C -soft_transittable__Q24Game19PikiFountainonStateFi=0x80192AA4 -invincible__Q24Game19PikiFountainonStateFPQ24Game4Piki=0x80192AAC -callable__Q24Game15PikiHoleinStateFv=0x80192AB4 -soft_transittable__Q24Game15PikiHoleinStateFi=0x80192ABC -invincible__Q24Game15PikiHoleinStateFPQ24Game4Piki=0x80192AC4 -dead__Q24Game18PikiSwallowedStateFv=0x80192ACC -ignoreAtari__Q24Game18PikiSwallowedStateFPQ24Game4PikiPQ24Game8Creature=0x80192AD4 -callable__Q24Game18PikiSwallowedStateFv=0x80192ADC -invincible__Q24Game17PikiDemoWaitStateFPQ24Game4Piki=0x80192AE4 -dopable__Q24Game13PikiWalkStateFv=0x80192AEC -aiActive__Q24Game13PikiWalkStateFv=0x80192AF4 -callable__Q24Game13PikiWalkStateFv=0x80192AFC -releasable__Q24Game13PikiWalkStateFv=0x80192B04 -battleOK__Q24Game13PikiWalkStateFv=0x80192B0C -throwable__Q24Game13PikiWalkStateFv=0x80192B14 -resume__Q24Game22FSMStateFPQ24Game4Piki=0x80192B1C -restart__Q24Game22FSMStateFPQ24Game4Piki=0x80192B20 -create__Q24Game26StateMachineFi=0x80192B24 -registerState__Q24Game26StateMachineFPQ24Game22FSMState=0x80192B88 -__sinit_pikiState_cpp=0x80192C0C -@28@4@onKeyEvent__Q24Game15PikiLookAtStateFRCQ28SysShape8KeyEvent=0x80192C34 -@20@4@onKeyEvent__Q24Game15PikiHangedStateFRCQ28SysShape8KeyEvent=0x80192C48 -@24@4@onKeyEvent__Q24Game20PikiWaterHangedStateFRCQ28SysShape8KeyEvent=0x80192C5C -@48@4@onKeyEvent__Q24Game14PikiFlickStateFRCQ28SysShape8KeyEvent=0x80192C70 -actPiki__Q24Game15InteractFueFukiFPQ24Game4Piki=0x80192C84 -actPiki__Q24Game11InteractFueFPQ24Game4Piki=0x80192D68 -actPiki__Q24Game12InteractDopeFPQ24Game4Piki=0x80193938 -actPiki__Q24Game12InteractWindFPQ24Game4Piki=0x80193A94 -actPiki__Q24Game20InteractHanaChirashiFPQ24Game4Piki=0x80193B94 -actPiki__Q24Game12InteractBombFPQ24Game4Piki=0x80193CB4 -actPiki__Q24Game13InteractDenkiFPQ24Game4Piki=0x80193E10 -actPiki__Q24Game16InteractFallMeckFPQ24Game4Piki=0x80193F24 -actPiki__Q24Game12InteractBuryFPQ24Game4Piki=0x80193FC4 -actPiki__Q24Game20InteractSuikomi_TestFPQ24Game4Piki=0x8019424C -actPiki__Q24Game12InteractFireFPQ24Game4Piki=0x80194328 -actPiki__Q24Game16InteractAstonishFPQ24Game4Piki=0x80194440 -actPiki__Q24Game14InteractBubbleFPQ24Game4Piki=0x80194574 -actPiki__Q24Game11InteractGasFPQ24Game4Piki=0x8019468C -actPiki__Q24Game14InteractBattleFPQ24Game4Piki=0x801947C8 -actPiki__Q24Game13InteractPressFPQ24Game4Piki=0x80194888 -actPiki__Q24Game13InteractFlickFPQ24Game4Piki=0x801949A8 -actPiki__Q24Game15InteractSwallowFPQ24Game4Piki=0x80194C08 -actPiki__Q24Game12InteractKillFPQ24Game4Piki=0x80194EF4 -getName__Q26PikiAI12ActBattleArgFv=0x80194FC0 -__sinit_interactPiki_cpp=0x80194FCC -get__Q24Game6CPlateFPv=0x80194FF4 -getNext__Q24Game6CPlateFPv=0x80195008 -getStart__Q24Game6CPlateFv=0x80195044 -getEnd__Q24Game6CPlateFv=0x8019504C -shrink__Q24Game6CPlateFv=0x80195054 -__ct__Q24Game6CPlateFi=0x80195060 -__ct__Q34Game6CPlate4SlotFv=0x80195250 -__dt__27ContainerFv=0x8019527C -setPos__Q24Game6CPlateFR10Vector3fR10Vector3f=0x801952EC -setPosGray__Q24Game6CPlateFR10Vector3fR10Vector3f=0x801954FC -getSlot__Q24Game6CPlateFPQ24Game8CreaturePQ24Game18SlotChangeListenerb=0x80195708 -changeFlower__Q24Game6CPlateFPQ24Game8Creature=0x801957B0 -releaseSlot__Q24Game6CPlateFPQ24Game8Creaturei=0x80195868 -validSlot__Q24Game6CPlateFi=0x80195990 -sortByColor__Q24Game6CPlateFPQ24Game8Creaturei=0x801959B4 -rearrangeSlot__Q24Game6CPlateFR10Vector3fR10Vector3=0x80195E54 -getSlotPosition__Q24Game6CPlateFiR10Vector3=0x80196034 -refresh__Q24Game6CPlateFif=0x801960F8 -refreshSlot__Q24Game6CPlateFf=0x801962B0 -update__Q24Game6CPlateFv=0x8019659C -__dt__Q24Game6CPlateFv=0x801965B4 -getObject__27ContainerFPv=0x80196634 -getAt__27ContainerFi=0x80196660 -getTo__27ContainerFv=0x80196668 -__ct__Q24Game13UpdateContextFv=0x80196670 -updatable__Q24Game13UpdateContextFv=0x80196688 -init__Q24Game13UpdateContextFPQ24Game9UpdateMgr=0x801966E4 -exit__Q24Game13UpdateContextFv=0x80196720 -__ct__Q24Game9UpdateMgrFv=0x80196778 -update__Q24Game9UpdateMgrFv=0x80196794 -updatable__Q24Game9UpdateMgrFPQ24Game13UpdateContext=0x801967B8 -create__Q24Game9UpdateMgrFi=0x801967E0 -addClient__Q24Game9UpdateMgrFPQ24Game13UpdateContext=0x80196880 -removeClient__Q24Game9UpdateMgrFPQ24Game13UpdateContext=0x80196950 -__ct__Q26PikiAI6ActionFPQ24Game4Piki=0x80196A18 -getInfo__Q26PikiAI6ActionFPc=0x80196A34 -__ct__Q26PikiAI5BrainFPQ24Game4Piki=0x80196A64 -addAction__Q26PikiAI5BrainFPQ26PikiAI6Action=0x80196CE4 -getCurrAction__Q26PikiAI5BrainFv=0x80196D00 -exec__Q26PikiAI5BrainFv=0x80196D24 -emotion_fail__Q26PikiAI6ActionFv=0x80196F7C -emotion_success__Q26PikiAI6ActionFv=0x80196F80 -getNextAIType__Q26PikiAI6ActionFv=0x80196F84 -exec__Q26PikiAI6ActionFv=0x80196F8C -start__Q26PikiAI5BrainFiPQ26PikiAI9ActionArg=0x80196F94 -applicable__Q26PikiAI6ActionFv=0x80197094 -init__Q26PikiAI6ActionFPQ26PikiAI9ActionArg=0x8019709C -searchOrima__Q26PikiAI5BrainFv=0x801970A0 -doDirectDraw__Q26PikiAI6ActionFR8Graphics=0x801972B0 -__sinit_aiAction_cpp=0x801972B4 -__ct__Q26PikiAI10ActGotoPosFPQ24Game4Piki=0x801972DC -init__Q26PikiAI10ActGotoPosFPQ26PikiAI9ActionArg=0x80197318 -exec__Q26PikiAI10ActGotoPosFv=0x80197390 -cleanup__Q26PikiAI10ActGotoPosFv=0x801974AC -__ct__Q26PikiAI14ActApproachPosFPQ24Game4Piki=0x801974B0 -init__Q26PikiAI14ActApproachPosFPQ26PikiAI9ActionArg=0x801974EC -exec__Q26PikiAI14ActApproachPosFv=0x801975F0 -cleanup__Q26PikiAI14ActApproachPosFv=0x80197918 -__ct__Q26PikiAI11ActGotoSlotFPQ24Game4Piki=0x8019794C -init__Q26PikiAI11ActGotoSlotFPQ26PikiAI9ActionArg=0x80197988 -wallCallback__Q26PikiAI11ActGotoSlotFR10Vector3=0x80197B14 -resetTimers__Q26PikiAI11ActGotoSlotFv=0x80197B2C -exec__Q26PikiAI11ActGotoSlotFv=0x80197B40 -cleanup__Q26PikiAI11ActGotoSlotFv=0x801985D4 -__ct__Q26PikiAI11ActPathMoveFPQ24Game4Piki=0x801985D8 -init__Q26PikiAI11ActPathMoveFPQ26PikiAI9ActionArg=0x80198654 -initPathfinding__Q26PikiAI11ActPathMoveFb=0x80198810 -decideGoal__Q26PikiAI11ActPathMoveFv=0x80198BBC -exec__Q26PikiAI11ActPathMoveFv=0x80198C18 -execPathfinding__Q26PikiAI11ActPathMoveFv=0x80198D34 -execMoveGoal__Q26PikiAI11ActPathMoveFv=0x80198FE4 -isAllBlue__Q26PikiAI11ActPathMoveFv=0x8019968C -carry__Q26PikiAI11ActPathMoveFR10Vector3=0x80199728 -execMove__Q26PikiAI11ActPathMoveFv=0x801997D0 -cleanup__Q26PikiAI11ActPathMoveFv=0x80199BF8 -execMoveGuru__Q26PikiAI11ActPathMoveFv=0x80199C88 -getWayPoint__Q26PikiAI11ActPathMoveFi=0x8019A170 -crGetPoint__Q26PikiAI11ActPathMoveFi=0x8019A228 -contextCheck__Q26PikiAI11ActPathMoveFi=0x8019A3B4 -crGetRadius__Q26PikiAI11ActPathMoveFi=0x8019A778 -crInit__Q26PikiAI11ActPathMoveFv=0x8019A8AC -crMakeRefs__Q26PikiAI11ActPathMoveFv=0x8019AFE4 -crMove__Q26PikiAI11ActPathMoveFv=0x8019B064 -__ct__Q26PikiAI14ActStickAttackFPQ24Game4Piki=0x8019BCB8 -init__Q26PikiAI14ActStickAttackFPQ26PikiAI9ActionArg=0x8019BD34 -exec__Q26PikiAI14ActStickAttackFv=0x8019BF24 -createEfx__Q26PikiAI14ActStickAttackFv=0x8019C088 -onKeyEvent__Q26PikiAI14ActStickAttackFRCQ28SysShape8KeyEvent=0x8019C6D8 -cleanup__Q26PikiAI14ActStickAttackFv=0x8019C758 -__ct__Q26PikiAI8ActClimbFPQ24Game4Piki=0x8019C77C -init__Q26PikiAI8ActClimbFPQ26PikiAI9ActionArg=0x8019C7B8 -exec__Q26PikiAI8ActClimbFv=0x8019C8B8 -cleanup__Q26PikiAI8ActClimbFv=0x8019C99C -__ct__Q26PikiAI9ActGatherFPQ24Game4Piki=0x8019C9A0 -init__Q26PikiAI9ActGatherFPQ26PikiAI9ActionArg=0x8019C9DC -exec__Q26PikiAI9ActGatherFv=0x8019CABC -cleanup__Q26PikiAI9ActGatherFv=0x8019CC10 -__ct__Q26PikiAI20ActFollowVectorFieldFPQ24Game4Piki=0x8019CC14 -init__Q26PikiAI20ActFollowVectorFieldFPQ26PikiAI9ActionArg=0x8019CC50 -exec__Q26PikiAI20ActFollowVectorFieldFv=0x8019CCB0 -cleanup__Q26PikiAI20ActFollowVectorFieldFv=0x8019CD30 -__sinit_aiPrimitives_cpp=0x8019CD34 -@36@4@onKeyEvent__Q26PikiAI14ActStickAttackFRCQ28SysShape8KeyEvent=0x8019CD5C -__ct__Q26PikiAI12ActFormationFPQ24Game4Piki=0x8019CD70 -inform__Q26PikiAI12ActFormationFi=0x8019CE68 -startSort__Q26PikiAI12ActFormationFv=0x8019CE70 -init__Q26PikiAI12ActFormationFPQ26PikiAI9ActionArg=0x8019CE7C -wallCallback__Q26PikiAI12ActFormationFR10Vector3=0x8019D030 -setFormed__Q26PikiAI12ActFormationFv=0x8019D088 -onKeyEvent__Q26PikiAI12ActFormationFRCQ28SysShape8KeyEvent=0x8019D4E4 -cleanup__Q26PikiAI12ActFormationFv=0x8019D5DC -exec__Q26PikiAI12ActFormationFv=0x8019D680 -collisionCallback__Q26PikiAI12ActFormationFPQ24Game4PikiRQ24Game9CollEvent=0x8019ED68 -platCallback__Q26PikiAI12ActFormationFPQ24Game4PikiRQ24Game9PlatEvent=0x8019EDDC -resumable__Q26PikiAI12ActFormationFv=0x8019EE34 -getNextAIType__Q26PikiAI12ActFormationFv=0x8019EE3C -__sinit_aiFormation_cpp=0x8019EE44 -@100@4@inform__Q26PikiAI12ActFormationFi=0x8019EE6C -@108@4@onKeyEvent__Q26PikiAI12ActFormationFRCQ28SysShape8KeyEvent=0x8019EE80 -clearStick__Q24Game8CreatureFv=0x8019EE94 -releaseAllStickers__Q24Game8CreatureFv=0x8019EEB8 -startStick__Q24Game8CreatureFPQ24Game8CreatureP8CollPart=0x8019EEF4 -startStickMouth__Q24Game8CreatureFPQ24Game8CreatureP8CollPart=0x8019F068 -startStick__Q24Game8CreatureFPQ24Game8Creatures=0x8019F218 -endStick__Q24Game8CreatureFv=0x8019F424 -isStickTo__Q24Game8CreatureFv=0x8019F574 -isStickToMouth__Q24Game8CreatureFv=0x8019F588 -updateStick__Q24Game8CreatureFR10Vector3=0x8019F5E8 -clearCapture__Q24Game8CreatureFv=0x8019FA9C -startCapture__Q24Game8CreatureFP7Matrixf=0x8019FAA8 -updateCapture__Q24Game8CreatureFR7Matrixf=0x8019FAFC -endCapture__Q24Game8CreatureFv=0x8019FB9C -initialise__Q24Game8StickersFv=0x8019FBF4 -__ct__Q24Game8StickersFPQ24Game8Creature=0x8019FC5C -__dt__Q24Game8StickersFv=0x8019FD64 -get__Q24Game8StickersFPv=0x8019FDF0 -getNext__Q24Game8StickersFPv=0x8019FE60 -getStart__Q24Game8StickersFv=0x8019FE68 -getEnd__Q24Game8StickersFv=0x8019FE70 -actCommon__Q24Game13InteractFlickFPQ24Game8Creature=0x8019FE78 -actCommon__Q24Game14InteractAttackFPQ24Game8Creature=0x8019FEBC -actCommon__Q24Game15InteractSwallowFPQ24Game8Creature=0x8019FF28 -actCommon__Q24Game12InteractKillFPQ24Game8Creature=0x8019FF30 -__ct__Q26PikiAI7ActFreeFPQ24Game4Piki=0x8019FF38 -init__Q26PikiAI7ActFreeFPQ26PikiAI9ActionArg=0x801A0008 -exec__Q26PikiAI7ActFreeFv=0x801A0198 -cleanup__Q26PikiAI7ActFreeFv=0x801A0368 -onKeyEvent__Q26PikiAI7ActFreeFRCQ28SysShape8KeyEvent=0x801A03B4 -collisionCallback__Q26PikiAI7ActFreeFPQ24Game4PikiRQ24Game9CollEvent=0x801A03B8 -getName__Q26PikiAI15GatherActionArgFv=0x801A04A4 -getNextAIType__Q26PikiAI7ActFreeFv=0x801A04B0 -@32@4@onKeyEvent__Q26PikiAI7ActFreeFRCQ28SysShape8KeyEvent=0x801A04B8 -getInfo__Q26PikiAI9ActAttackFPc=0x801A04CC -emotion_success__Q26PikiAI9ActAttackFv=0x801A053C -__ct__Q26PikiAI9ActAttackFPQ24Game4Piki=0x801A0580 -init__Q26PikiAI9ActAttackFPQ26PikiAI9ActionArg=0x801A0654 -initStickAttack__Q26PikiAI9ActAttackFv=0x801A0770 -initAdjust__Q26PikiAI9ActAttackFv=0x801A07F4 -initJumpAdjust__Q26PikiAI9ActAttackFv=0x801A089C -applicable__Q26PikiAI9ActAttackFv=0x801A0948 -calcAttackPos__Q26PikiAI9ActAttackFv=0x801A09D4 -exec__Q26PikiAI9ActAttackFv=0x801A0B98 -cleanup__Q26PikiAI9ActAttackFv=0x801A14E4 -collisionCallback__Q26PikiAI9ActAttackFPQ24Game4PikiRQ24Game9CollEvent=0x801A1538 -bounceCallback__Q26PikiAI9ActAttackFPQ24Game4PikiPQ23Sys8Triangle=0x801A1618 -onKeyEvent__Q26PikiAI9ActAttackFRCQ28SysShape8KeyEvent=0x801A1864 -satisfy__13FindConditionFP8CollPart=0x801A1888 -getName__Q26PikiAI20ApproachPosActionArgFv=0x801A18E0 -getName__Q26PikiAI20StickAttackActionArgFv=0x801A18EC -getNextAIType__Q26PikiAI9ActAttackFv=0x801A18F8 -@56@4@onKeyEvent__Q26PikiAI9ActAttackFRCQ28SysShape8KeyEvent=0x801A1900 -getInfo__Q26PikiAI12ActTransportFPc=0x801A1914 -__ct__Q26PikiAI12ActTransportFPQ24Game4Piki=0x801A1978 -init__Q26PikiAI12ActTransportFPQ26PikiAI9ActionArg=0x801A1A48 -emotion_success__Q26PikiAI12ActTransportFv=0x801A1BC4 -emotion_fail__Q26PikiAI12ActTransportFv=0x801A1C08 -exec__Q26PikiAI12ActTransportFv=0x801A1C0C -cleanup__Q26PikiAI12ActTransportFv=0x801A1FF4 -onKeyEvent__Q26PikiAI12ActTransportFRCQ28SysShape8KeyEvent=0x801A206C -isStickLeader__Q26PikiAI12ActTransportFv=0x801A2188 -initLift__Q26PikiAI12ActTransportFv=0x801A2224 -execLift__Q26PikiAI12ActTransportFv=0x801A22E0 -getName__Q26PikiAI11PathMoveArgFv=0x801A26F4 -getName__Q26PikiAI11GotoSlotArgFv=0x801A2700 -@60@4@onKeyEvent__Q26PikiAI12ActTransportFRCQ28SysShape8KeyEvent=0x801A270C -__ct__Q26PikiAI8ActEnterFPQ24Game4Piki=0x801A2720 -init__Q26PikiAI8ActEnterFPQ26PikiAI9ActionArg=0x801A27F0 -exec__Q26PikiAI8ActEnterFv=0x801A2B28 -cleanup__Q26PikiAI8ActEnterFv=0x801A2D68 -onKeyEvent__Q26PikiAI8ActEnterFRCQ28SysShape8KeyEvent=0x801A2DD0 -initStay__Q26PikiAI8ActEnterFv=0x801A2DD4 -execStay__Q26PikiAI8ActEnterFv=0x801A2E4C -initSuck__Q26PikiAI8ActEnterFv=0x801A2EB0 -execSuck__Q26PikiAI8ActEnterFv=0x801A3050 -__ct__Q26PikiAI7ActExitFPQ24Game4Piki=0x801A31DC -init__Q26PikiAI7ActExitFPQ26PikiAI9ActionArg=0x801A324C -exec__Q26PikiAI7ActExitFv=0x801A3450 -cleanup__Q26PikiAI7ActExitFv=0x801A34F8 -getName__Q26PikiAI14ClimbActionArgFv=0x801A35C0 -getName__Q26PikiAI16GotoPosActionArgFv=0x801A35CC -@96@4@onKeyEvent__Q26PikiAI8ActEnterFRCQ28SysShape8KeyEvent=0x801A35D8 -__ct__Q24Game10PathfinderFv=0x801A35EC -create__Q24Game10PathfinderFiPQ24Game8RouteMgr=0x801A364C -__ct__Q24Game12AStarContextFv=0x801A3710 -update__Q24Game10PathfinderFv=0x801A3730 -start__Q24Game10PathfinderFRQ24Game15PathfindRequest=0x801A3854 -makepath__Q24Game10PathfinderFUlPPQ24Game8PathNode=0x801A39A0 -release__Q24Game10PathfinderFUl=0x801A3A60 -check__Q24Game10PathfinderFUl=0x801A3AD0 -init__Q24Game12AStarContextFPQ24Game8RouteMgri=0x801A3B68 -__ct__Q24Game15AStarPathfinderFv=0x801A3BE0 -setContext__Q24Game15AStarPathfinderFPQ24Game12AStarContext=0x801A3BEC -initsearch__Q24Game15AStarPathfinderFPQ24Game12AStarContext=0x801A3BF4 -search__Q24Game15AStarPathfinderFPQ24Game12AStarContextiPPQ24Game8PathNode=0x801A3D70 -estimate__Q24Game15AStarPathfinderFss=0x801A4228 -makepath__Q24Game12AStarContextFPQ24Game8PathNodePPQ24Game8PathNode=0x801A42DC -init__Q24Game9PelletFSMFPQ24Game6Pellet=0x801A4310 -init__Q24Game17PelletNormalStateFPQ24Game6PelletPQ24Game8StateArg=0x801A45BC -exec__Q24Game17PelletNormalStateFPQ24Game6Pellet=0x801A45C0 -cleanup__Q24Game17PelletNormalStateFPQ24Game6Pellet=0x801A45C4 -init__Q24Game19PelletGoalWaitStateFPQ24Game6PelletPQ24Game8StateArg=0x801A45C8 -exec__Q24Game19PelletGoalWaitStateFPQ24Game6Pellet=0x801A4644 -transit__Q24Game24FSMStateFPQ24Game6PelletiPQ24Game8StateArg=0x801A46A4 -cleanup__Q24Game19PelletGoalWaitStateFPQ24Game6Pellet=0x801A46D4 -init__Q24Game15PelletGoalStateFPQ24Game6PelletPQ24Game8StateArg=0x801A46D8 -checkMovie__Q24Game15PelletGoalStateFPQ24Game6Pellet=0x801A4D58 -exec__Q24Game15PelletGoalStateFPQ24Game6Pellet=0x801A5AC4 -cleanup__Q24Game15PelletGoalStateFPQ24Game6Pellet=0x801A65F8 -init__Q24Game17PelletAppearStateFPQ24Game6PelletPQ24Game8StateArg=0x801A65FC -exec__Q24Game17PelletAppearStateFPQ24Game6Pellet=0x801A6740 -cleanup__Q24Game17PelletAppearStateFPQ24Game6Pellet=0x801A6980 -init__Q24Game22PelletScaleAppearStateFPQ24Game6PelletPQ24Game8StateArg=0x801A6984 -exec__Q24Game22PelletScaleAppearStateFPQ24Game6Pellet=0x801A6AB4 -cleanup__Q24Game22PelletScaleAppearStateFPQ24Game6Pellet=0x801A6C70 -init__Q24Game15PelletBuryStateFPQ24Game6PelletPQ24Game8StateArg=0x801A6CA4 -exec__Q24Game15PelletBuryStateFPQ24Game6Pellet=0x801A6CC8 -cleanup__Q24Game15PelletBuryStateFPQ24Game6Pellet=0x801A6CCC -init__Q24Game16PelletZukanStateFPQ24Game6PelletPQ24Game8StateArg=0x801A6CD0 -exec__Q24Game16PelletZukanStateFPQ24Game6Pellet=0x801A6D08 -cleanup__Q24Game16PelletZukanStateFPQ24Game6Pellet=0x801A6D9C -init__Q24Game13PelletUpStateFPQ24Game6PelletPQ24Game8StateArg=0x801A6DA0 -exec__Q24Game13PelletUpStateFPQ24Game6Pellet=0x801A6DC4 -cleanup__Q24Game13PelletUpStateFPQ24Game6Pellet=0x801A6DC8 -__ct__Q24Game17PelletReturnStateFv=0x801A6DCC -init__Q24Game17PelletReturnStateFPQ24Game6PelletPQ24Game8StateArg=0x801A6EBC -exec__Q24Game17PelletReturnStateFPQ24Game6Pellet=0x801A71D4 -cleanup__Q24Game17PelletReturnStateFPQ24Game6Pellet=0x801A72AC -initPathfinding__Q24Game17PelletReturnStateFPQ24Game6Pellet=0x801A7348 -execPathfinding__Q24Game17PelletReturnStateFPQ24Game6Pellet=0x801A74FC -execMove__Q24Game17PelletReturnStateFPQ24Game6Pellet=0x801A758C -execMoveGoal__Q24Game17PelletReturnStateFPQ24Game6Pellet=0x801A7DE4 -isBuried__Q24Game11PelletStateFv=0x801A7DEC -appeared__Q24Game11PelletStateFv=0x801A7DF4 -isBuried__Q24Game13PelletUpStateFv=0x801A7DFC -isBuried__Q24Game15PelletBuryStateFv=0x801A7E04 -appeared__Q24Game22PelletScaleAppearStateFv=0x801A7E0C -appeared__Q24Game17PelletAppearStateFv=0x801A7E14 -isPickable__Q24Game17PelletNormalStateFv=0x801A7E1C -resume__Q24Game24FSMStateFPQ24Game6Pellet=0x801A7E24 -restart__Q24Game24FSMStateFPQ24Game6Pellet=0x801A7E28 -create__Q24Game28StateMachineFi=0x801A7E2C -registerState__Q24Game28StateMachineFPQ24Game24FSMState=0x801A7E90 -__sinit_pelletState_cpp=0x801A7F14 -__ct__Q24Game14DynParticleMgrFi=0x801A7F3C -__dt__35MonoObjectMgrFv=0x801A7F98 -resetMgr__Q24Game14DynParticleMgrFv=0x801A8038 -getAt__Q24Game11DynParticleFi=0x801A8068 -__ct__Q24Game11DynCreatureFv=0x801A80E0 -createParticles__Q24Game11DynCreatureFi=0x801A8154 -releaseParticles__Q24Game11DynCreatureFv=0x801A8204 -updateParticlePositions__Q24Game11DynCreatureFv=0x801A8278 -computeForces__Q24Game11DynCreatureFf=0x801A82E4 -tracemoveCallback__Q24Game11DynCreatureFR10Vector3R10Vector3=0x801A87D8 -simulate__Q24Game11DynCreatureFf=0x801A888C -getPosition__Q24Game11DynCreatureFv=0x801A8D34 -onSetPosition__Q24Game11DynCreatureFR10Vector3=0x801A8D50 -onSetPosition__Q24Game11DynCreatureFv=0x801A8DFC -getVelocity__Q24Game11DynCreatureFv=0x801A8E00 -setVelocity__Q24Game11DynCreatureFR10Vector3=0x801A8E1C -getVelocityAt__Q24Game11DynCreatureFR10Vector3R10Vector3=0x801A8E38 -getAngularEffect__Q24Game11DynCreatureFR10Vector3R10Vector3=0x801A8EC0 -applyImpulse__Q24Game11DynCreatureFR10Vector3R10Vector3=0x801A8EC8 -__dt__Q24Game14DynParticleMgrFv=0x801A8F0C -__dt__31ContainerFv=0x801A8FC4 -__dt__31ObjectMgrFv=0x801A9034 -birth__35MonoObjectMgrFv=0x801A90BC -kill__35MonoObjectMgrFPQ24Game11DynParticle=0x801A911C -getNext__35MonoObjectMgrFPv=0x801A9170 -getStart__35MonoObjectMgrFv=0x801A91B0 -getEnd__35MonoObjectMgrFv=0x801A91E0 -getAt__35MonoObjectMgrFi=0x801A91E8 -getTo__35MonoObjectMgrFv=0x801A91F8 -doAnimation__35MonoObjectMgrFv=0x801A9200 -doEntry__35MonoObjectMgrFv=0x801A9280 -doSetView__35MonoObjectMgrFi=0x801A9300 -doViewCalc__35MonoObjectMgrFv=0x801A9390 -doSimulation__35MonoObjectMgrFf=0x801A9410 -doDirectDraw__35MonoObjectMgrFR8Graphics=0x801A94A0 -resetMgr__35MonoObjectMgrFv=0x801A9530 -clearMgr__35MonoObjectMgrFv=0x801A9548 -onAlloc__35MonoObjectMgrFv=0x801A9578 -getEmptyIndex__35MonoObjectMgrFv=0x801A957C -get__35MonoObjectMgrFPv=0x801A95B8 -getObject__31ContainerFPv=0x801A95C8 -getAt__31ContainerFi=0x801A95F4 -getTo__31ContainerFv=0x801A95FC -invoke__59Delegate2,R10Vector3>FR10Vector3R10Vector3=0x801A9604 -doDirectDraw__31ObjectMgrFR8Graphics=0x801A9634 -isDone__30IteratorFv=0x801A9828 -doSimulation__31ObjectMgrFf=0x801A9874 -doViewCalc__31ObjectMgrFv=0x801A9A68 -doSetView__31ObjectMgrFi=0x801A9C4C -doEntry__31ObjectMgrFv=0x801A9E40 -doAnimation__31ObjectMgrFv=0x801AA024 -doDirectDraw__Q24Game11DynParticleFR8Graphics=0x801AA208 -doSimulation__Q24Game11DynParticleFf=0x801AA20C -doViewCalc__Q24Game11DynParticleFv=0x801AA210 -doSetView__Q24Game11DynParticleFUl=0x801AA214 -doEntry__Q24Game11DynParticleFv=0x801AA218 -doAnimation__Q24Game11DynParticleFv=0x801AA21C -alloc__35MonoObjectMgrFi=0x801AA220 -constructor__Q24Game11DynParticleFv=0x801AA3A8 -__ct__Q24Game11DynParticleFv=0x801AA3AC -__ct__35MonoObjectMgrFv=0x801AA3E0 -__ml__30IteratorFv=0x801AA47C -next__30IteratorFv=0x801AA4B4 -first__30IteratorFv=0x801AA598 -@28@resetMgr__35MonoObjectMgrFv=0x801AA674 -@28@doDirectDraw__31ObjectMgrFR8Graphics=0x801AA67C -@28@doSimulation__31ObjectMgrFf=0x801AA684 -@28@doViewCalc__31ObjectMgrFv=0x801AA68C -@28@doSetView__31ObjectMgrFi=0x801AA694 -@28@doEntry__31ObjectMgrFv=0x801AA69C -@28@doAnimation__31ObjectMgrFv=0x801AA6A4 -@28@resetMgr__Q24Game14DynParticleMgrFv=0x801AA6AC -@28@doDirectDraw__35MonoObjectMgrFR8Graphics=0x801AA6B4 -@28@doSimulation__35MonoObjectMgrFf=0x801AA6BC -@28@doViewCalc__35MonoObjectMgrFv=0x801AA6C4 -@28@doSetView__35MonoObjectMgrFi=0x801AA6CC -@28@doEntry__35MonoObjectMgrFv=0x801AA6D4 -@28@doAnimation__35MonoObjectMgrFv=0x801AA6DC -__ct__Q24Game7GenBaseFUlPcPc=0x801AA6E4 -getLatestVersion__Q24Game7GenBaseFv=0x801AA734 -doWrite__Q24Game7GenBaseFR6Stream=0x801AA740 -ramSaveParameters__Q24Game7GenBaseFR6Stream=0x801AA744 -ramLoadParameters__Q24Game7GenBaseFR6Stream=0x801AA764 -doRead__Q24Game7GenBaseFR6Stream=0x801AA784 -getLatestVersion__Q24Game9GenObjectFv=0x801AA788 -initialiseSystem__Q24Game9GeneratorFv=0x801AA7D8 -__ct__Q24Game9GeneratorFv=0x801AA7E4 -__dt__Q24Game9GeneratorFv=0x801AA8C0 -updateUseList__Q24Game9GeneratorFv=0x801AA928 -updateUseList__Q24Game9GenObjectFPQ24Game9Generatori=0x801AA980 -isExpired__Q24Game9GeneratorFv=0x801AA984 -loadCreature__Q24Game9GeneratorFR6Stream=0x801AA9B8 -generate__Q24Game9GenObjectFPQ24Game9Generator=0x801AAA70 -need_saveCreature__Q24Game9GeneratorFv=0x801AAA78 -saveCreature__Q24Game9GeneratorFR6Stream=0x801AAAF4 -generate__Q24Game9GeneratorFv=0x801AABBC -informDeath__Q24Game9GeneratorFPQ24Game8Creature=0x801AACF4 -read__Q24Game9GeneratorFR6Stream=0x801AAD18 -write__Q24Game9GeneratorFR6Stream=0x801AB0BC -__ct__Q24Game12GeneratorMgrFv=0x801AB458 -addMgr__Q24Game12GeneratorMgrFPQ24Game12GeneratorMgr=0x801AB578 -generate__Q24Game12GeneratorMgrFv=0x801AB5B4 -setDayLimit__Q24Game12GeneratorMgrFi=0x801AB6FC -updateUseList__Q24Game12GeneratorMgrFv=0x801AB718 -getNext__Q24Game12GeneratorMgrFv=0x801AB7B0 -getChild__Q24Game12GeneratorMgrFv=0x801AB7B8 -updateCursorPos__Q24Game12GeneratorMgrFR10Vector3=0x801AB7C0 -__as__10Vector3FRC10Vector3=0x801ABBFC -read__Q24Game12GeneratorMgrFR6Streamb=0x801ABC18 -doAnimation__Q24Game9GeneratorFv=0x801ABF08 -doEntry__Q24Game9GeneratorFv=0x801ABFE0 -doSetView__Q24Game9GeneratorFi=0x801AC050 -doViewCalc__Q24Game9GeneratorFv=0x801AC0C0 -doAnimation__Q24Game12GeneratorMgrFv=0x801AC120 -doEntry__Q24Game12GeneratorMgrFv=0x801AC19C -doSetView__Q24Game12GeneratorMgrFi=0x801AC218 -doViewCalc__Q24Game12GeneratorMgrFv=0x801AC2A8 -__dt__Q24Game12GeneratorMgrFv=0x801AC324 -render__Q24Game9GenObjectFR8GraphicsPQ24Game9Generator=0x801AC384 -getShape__Q24Game7GenBaseFv=0x801AC388 -update__Q24Game7GenBaseFPQ24Game9Generator=0x801AC390 -render__Q24Game7GenBaseFR8GraphicsPQ24Game9Generator=0x801AC394 -__sinit_gameGenerator_cpp=0x801AC398 -makeObjectPiki__Fv=0x801AC3C0 -initialise__Q24Game13GenObjectPikiFv=0x801AC4E8 -ramSaveParameters__Q24Game13GenObjectPikiFR6Stream=0x801AC574 -ramLoadParameters__Q24Game13GenObjectPikiFR6Stream=0x801AC5A0 -generate__Q24Game13GenObjectPikiFPQ24Game9Generator=0x801AC5D8 -birth__Q24Game13GenObjectPikiFPQ24Game6GenArg=0x801AC830 -__sinit_genPiki_cpp=0x801AC9E0 -makeObjectNavi__Fv=0x801ACA08 -initialise__Q24Game13GenObjectNaviFv=0x801ACAC0 -ramSaveParameters__Q24Game13GenObjectNaviFR6Stream=0x801ACB4C -ramLoadParameters__Q24Game13GenObjectNaviFR6Stream=0x801ACB50 -generate__Q24Game13GenObjectNaviFPQ24Game9Generator=0x801ACB54 -birth__Q24Game13GenObjectNaviFPQ24Game6GenArg=0x801ACBCC -getCalc__Q28SysShape8AnimatorFv=0x801ACD04 -makeItem__Fv=0x801ACD20 -initialise__Q24Game7GenItemFv=0x801ACDBC -updateUseList__Q24Game7GenItemFPQ24Game9Generatori=0x801ACE48 -doEvent__Q24Game7GenItemFUl=0x801ACE80 -generatorMakeMatrix__Q24Game7GenItemFR7MatrixfR10Vector3=0x801ACEEC -getShape__Q24Game7GenItemFv=0x801ACF54 -doWrite__Q24Game7GenItemFR6Stream=0x801ACFA4 -generatorWrite__Q24Game11BaseItemMgrFR6StreamPQ24Game11GenItemParm=0x801AD0F8 -generatorLocalVersion__Q24Game11BaseItemMgrFv=0x801AD0FC -doRead__Q24Game7GenItemFR6Stream=0x801AD108 -generatorRead__Q24Game11BaseItemMgrFR6StreamPQ24Game11GenItemParmUl=0x801AD250 -ramSaveParameters__Q24Game7GenItemFR6Stream=0x801AD254 -ramLoadParameters__Q24Game7GenItemFR6Stream=0x801AD258 -generate__Q24Game7GenItemFPQ24Game9Generator=0x801AD25C -birth__Q24Game7GenItemFPQ24Game6GenArg=0x801AD2D4 -__dt__Q24Game11CaveOtakaraFv=0x801AD378 -__dt__Q24Game8LimitGenFv=0x801AD3D8 -__ct__Q24Game10CourseInfoFv=0x801AD438 -dump__Q24Game10CourseInfoFv=0x801AD58C -read__Q24Game10CourseInfoFR6Stream=0x801AD590 -getOtakaraNum__Q24Game10CourseInfoFR4ID32=0x801ADA54 -getOtakaraNum__Q24Game10CourseInfoFi=0x801ADADC -getCaveIndex_FromID__Q24Game10CourseInfoFR4ID32=0x801ADB14 -getCaveinfoFilename_FromID__Q24Game10CourseInfoFR4ID32=0x801ADBA0 -getCaveID_FromIndex__Q24Game10CourseInfoFi=0x801ADC3C -getCaveNum__Q24Game10CourseInfoFv=0x801ADC78 -__ct__Q24Game6StagesFv=0x801ADC80 -__dt__Q24Game10CourseInfoFv=0x801ADE6C -getCourseInfo__Q24Game6StagesFPc=0x801ADF3C -getCourseInfo__Q24Game6StagesFi=0x801ADFAC -createMapMgr__Q24Game6StagesFPQ24Game10CourseInfoPQ24Game8RouteMgr=0x801AE020 -__dt__12MapCollisionFv=0x801AE254 -read__Q24Game6StagesFR6Stream=0x801AE2B4 -startDown__Q24Game12AABBWaterBoxFf=0x801AE448 -startUp__Q24Game12AABBWaterBoxFf=0x801AE470 -update__Q24Game12AABBWaterBoxFv=0x801AE4A8 -attachModel__Q24Game12AABBWaterBoxFP12J3DModelDataPQ23Sys15MatTexAnimationf=0x801AE560 -calcMatrix__Q24Game12AABBWaterBoxFv=0x801AE710 -doAnimation__Q24Game12AABBWaterBoxFv=0x801AE7B0 -doSetView__Q24Game12AABBWaterBoxFi=0x801AE7F8 -doViewCalc__Q24Game12AABBWaterBoxFv=0x801AE828 -doEntry__Q24Game12AABBWaterBoxFv=0x801AE854 -update__Q24Game6SeaMgrFv=0x801AED8C -inWater__Q24Game12AABBWaterBoxFRQ23Sys6Sphere=0x801AEF9C -inWater2d__Q24Game12AABBWaterBoxFRQ23Sys6Sphere=0x801AF0A0 -globalise__Q24Game12AABBWaterBoxFPQ24Game12AABBWaterBoxR7Matrixf=0x801AF184 -directDraw__Q24Game12AABBWaterBoxFR8Graphics=0x801AF34C -__ct__Q24Game6SeaMgrFv=0x801AF350 -__dt__31NodeObjectMgrFv=0x801AF648 -__dt__29TObjectNodeFv=0x801AF710 -__dt__27ObjectMgrFv=0x801AF770 -__dt__27ContainerFv=0x801AF7F8 -attachModel__Q24Game8WaterBoxFP12J3DModelDataPQ23Sys15MatTexAnimationf=0x801AF868 -findWater__Q24Game6SeaMgrFRQ23Sys6Sphere=0x801AF86C -findWater2d__Q24Game6SeaMgrFRQ23Sys6Sphere=0x801AFA80 -inWater2d__Q24Game8WaterBoxFRQ23Sys6Sphere=0x801AFC94 -read__Q24Game6SeaMgrFR6Stream=0x801AFC9C -addSeaMgr__Q24Game6SeaMgrFPQ24Game6SeaMgrR7Matrixf=0x801AFEA8 -__dt__Q24Game6SeaMgrFv=0x801B01B0 -getSeaLevel__Q24Game12AABBWaterBoxFv=0x801B0290 -getSeaHeightPtr__Q24Game12AABBWaterBoxFv=0x801B02A0 -doSimulation__Q24Game8WaterBoxFf=0x801B02A8 -doDirectDraw__Q24Game8WaterBoxFR8Graphics=0x801B02AC -startDown__Q24Game8WaterBoxFf=0x801B02B0 -startUp__Q24Game8WaterBoxFf=0x801B02B4 -directDraw__Q24Game8WaterBoxFR8Graphics=0x801B02B8 -calcMatrix__Q24Game8WaterBoxFv=0x801B02BC -get__31NodeObjectMgrFPv=0x801B02C0 -getNext__31NodeObjectMgrFPv=0x801B02C8 -getStart__31NodeObjectMgrFv=0x801B02D0 -getEnd__31NodeObjectMgrFv=0x801B02D8 -delNode__31NodeObjectMgrFPQ24Game8WaterBox=0x801B02E0 -resetMgr__31NodeObjectMgrFv=0x801B0324 -doSimulation__27ObjectMgrFf=0x801B033C -doDirectDraw__27ObjectMgrFR8Graphics=0x801B0530 -getObject__27ContainerFPv=0x801B0724 -getAt__27ContainerFi=0x801B0750 -getTo__27ContainerFv=0x801B0758 -__sinit_gameSeaMgr_cpp=0x801B0760 -@28@resetMgr__31NodeObjectMgrFv=0x801B0788 -@28@doDirectDraw__27ObjectMgrFR8Graphics=0x801B0790 -@28@doSimulation__27ObjectMgrFf=0x801B0798 -@28@doViewCalc__27ObjectMgrFv=0x801B07A0 -@28@doSetView__27ObjectMgrFi=0x801B07A8 -@28@doEntry__27ObjectMgrFv=0x801B07B0 -@28@doAnimation__27ObjectMgrFv=0x801B07B8 -graspSituation_Fast__Q24Game4PikiFPPQ24Game8Creature=0x801B07C0 -graspSituation__Q24Game4PikiFPPQ24Game8Creature=0x801B1360 -isDone__26IteratorFv=0x801B2D64 -invokeAI__Q24Game4PikiFPQ24Game9CollEventb=0x801B2DB0 -invokeAI__Q24Game4PikiFPQ24Game9PlatEvent=0x801B3584 -invokeAIFree__Q24Game4PikiFRQ34Game4Piki15InvokeAIFreeArg=0x801B3848 -checkInvokeAI__Q24Game4PikiFb=0x801B38F8 -invokeAI__Q24Game4PikiFv=0x801B3C08 -setActTransportArg__Q24Game4PikiFRQ26PikiAI15ActTransportArg=0x801B3C5C -getName__Q26PikiAI12ActBridgeArgFv=0x801B3C84 -getName__Q26PikiAI15ActBreakRockArgFv=0x801B3C90 -getName__Q26PikiAI15ActBreakGateArgFv=0x801B3C9C -getName__Q26PikiAI15ActTransportArgFv=0x801B3CA8 -getName__Q26PikiAI12ActAttackArgFv=0x801B3CB4 -getName__Q26PikiAI10ActWeedArgFv=0x801B3CC0 -__ml__26IteratorFv=0x801B3CCC -next__26IteratorFv=0x801B3D04 -first__26IteratorFv=0x801B3DE8 -__sinit_pikiAI_cpp=0x801B3EC4 -__ct__Q24Game16PelletConfigListFv=0x801B3EEC -__ct__Q24Game12PelletConfigFv=0x801B3F34 -__dt__Q34Game12PelletConfig6TParmsFv=0x801B3FE0 -__ct__Q34Game12PelletConfig6TParmsFv=0x801B4050 -__dt__13TagParametersFv=0x801B43C4 -getPelletConfig__Q24Game16PelletConfigListFPc=0x801B4424 -getPelletConfig__Q24Game16PelletConfigListFi=0x801B44A8 -getPelletConfig_ByDictionaryNo__Q24Game16PelletConfigListFi=0x801B4524 -read__Q24Game16PelletConfigListFR6Stream=0x801B4568 -__dt__Q24Game12PelletConfigFv=0x801B4698 -flushValue__7TagParmFv=0x801B4730 -__dt__Q24Game16PelletConfigListFv=0x801B4734 -__ct__Q24Game8FootmarkFv=0x801B4794 -__ct__Q24Game9FootmarksFv=0x801B47B0 -alloc__Q24Game9FootmarksFi=0x801B47CC -add__Q24Game9FootmarksFRQ24Game8Footmark=0x801B4838 -get__Q24Game9FootmarksFi=0x801B496C -findNearest2__Q24Game9FootmarksFR10Vector3i=0x801B49B8 -__ct__Q24Game10GameSystemFPQ24Game15BaseGameSection=0x801B4A80 -__dt__Q24Game10GameSystemFv=0x801B4B80 -init__Q24Game10GameSystemFv=0x801B4C68 -calcFrameDist__Q24Game10GameSystemFi=0x801B4D58 -startFrame__Q24Game10GameSystemFv=0x801B4D78 -endFrame__Q24Game10GameSystemFv=0x801B4E54 -startFadeout__Q24Game10GameSystemFf=0x801B4E6C -startFadein__Q24Game10GameSystemFf=0x801B4EA4 -startFadeoutin__Q24Game10GameSystemFf=0x801B4EDC -startFadeblack__Q24Game10GameSystemFv=0x801B4F14 -startFadewhite__Q24Game10GameSystemFv=0x801B4F4C -setMoviePause__Q24Game10GameSystemFbPc=0x801B4F84 -setFrozen__Q24Game10GameSystemFbPc=0x801B4F8C -setPause__Q24Game10GameSystemFbPci=0x801B4F94 -paused_soft__Q24Game10GameSystemFv=0x801B4FC0 -paused__Q24Game10GameSystemFv=0x801B4FC8 -startPause__Q24Game10GameSystemFbiPc=0x801B4FF0 -setDrawBuffer__Q24Game10GameSystemFi=0x801B5040 -getLightMgr__Q24Game10GameSystemFv=0x801B506C -doAnimation__Q24Game10GameSystemFv=0x801B5078 -doEntry__Q24Game10GameSystemFv=0x801B52EC -doSetView__Q24Game10GameSystemFi=0x801B54D0 -doViewCalc__Q24Game10GameSystemFv=0x801B56C4 -doSimulation__Q24Game10GameSystemFf=0x801B5AC8 -doSimpleDraw__Q24Game10GameSystemFP8Viewport=0x801B5D4C -doDirectDraw__Q24Game10GameSystemFR8Graphics=0x801B5F40 -directDraw__Q24Game10GameSystemFR8Graphics=0x801B5F44 -addObjectMgr__Q24Game10GameSystemFP16GenericObjectMgr=0x801B5F48 -detachObjectMgr__Q24Game10GameSystemFP16GenericObjectMgr=0x801B5FB4 -addObjectMgr_reuse__Q24Game10GameSystemFP31TObjectNode<16GenericObjectMgr>=0x801B5FD4 -detachObjectMgr_reuse__Q24Game10GameSystemFP16GenericObjectMgr=0x801B5FF8 -__dt__Q24Game18OptimiseControllerFv=0x801B6050 -globalInstance__Q24Game18OptimiseControllerFv=0x801B60B8 -deleteInstance__Q24Game18OptimiseControllerFv=0x801B61C4 -delNode__33NodeObjectMgr<16GenericObjectMgr>FP16GenericObjectMgr=0x801B620C -__sinit_gameSystem_cpp=0x801B6250 -@28@doSimpleDraw__Q24Game10GameSystemFP8Viewport=0x801B6278 -@28@doDirectDraw__Q24Game10GameSystemFR8Graphics=0x801B6280 -@28@doSimulation__Q24Game10GameSystemFf=0x801B6288 -@28@doViewCalc__Q24Game10GameSystemFv=0x801B6290 -@28@doSetView__Q24Game10GameSystemFi=0x801B6298 -@28@doEntry__Q24Game10GameSystemFv=0x801B62A0 -@28@doAnimation__Q24Game10GameSystemFv=0x801B62A8 -__ct__Q24Game11AIConstantsFv=0x801B62B0 -__dt__Q24Game11AIConstantsFv=0x801B63F8 -getDoor__Q24Game16MapUnitInterfaceFi=0x801B6468 -getCellSize__Q24Game16MapUnitInterfaceFRiRi=0x801B648C -getLink__Q24Game4DoorFi=0x801B64A8 -read__Q24Game4DoorFR6Stream=0x801B64CC -__ct__Q24Game7MapUnitFv=0x801B65D0 -getBoundBox__12MapCollisionFR8BoundBox=0x801B667C -load__Q24Game7MapUnitFR6Stream=0x801B66AC -__dt__30NodeObjectMgrFv=0x801B66F8 -__dt__28TObjectNodeFv=0x801B67C0 -__dt__26ObjectMgrFv=0x801B6820 -__dt__26ContainerFv=0x801B68A8 -getAt__Q24Game10MapUnitMgrFi=0x801B6918 -isDone__25IteratorFv=0x801B69A0 -makeUnit__Q24Game10MapUnitMgrFPQ24Game7MapUnitPc=0x801B69EC -__ct__Q24Game7MapRoomFv=0x801B6E2C -getExtraCode__Q24Game16ObjectLayoutNodeFv=0x801B6F08 -placeObjects__Q24Game7MapRoomFPQ34Game4Cave9FloorInfob=0x801B6F10 -getBirthDoorIndex__Q24Game16ObjectLayoutNodeFv=0x801B76C8 -isFixedBattery__Q24Game16ObjectLayoutNodeFv=0x801B76D0 -getDirection__Q24Game16ObjectLayoutNodeFv=0x801B76D8 -getBirthPosition__Q24Game16ObjectLayoutNodeFRfRf=0x801B76E0 -__ct__Q24Game12RoomDoorInfoFv=0x801B76E4 -doAnimation__Q24Game7MapRoomFv=0x801B76E8 -doEntry__Q24Game7MapRoomFv=0x801B77BC -doSetView__Q24Game7MapRoomFi=0x801B79B0 -doViewCalc__Q24Game7MapRoomFv=0x801B7AD4 -doSimulation__Q24Game7MapRoomFf=0x801B7AF8 -doDirectDraw__Q24Game7MapRoomFR8Graphics=0x801B7AFC -__ct__Q24Game10RoomMapMgrFPQ34Game4Cave8CaveInfo=0x801B7B00 -__dt__30MonoObjectMgrFv=0x801B7CE8 -getMapRoom__Q24Game10RoomMapMgrFs=0x801B7D88 -isDone__25IteratorFv=0x801B7F84 -__ct__Q24Game9CaveVRBoxFv=0x801B7FD0 -createRandomMap__Q24Game10RoomMapMgrFiPQ34Game4Cave11EditMapUnit=0x801B7FDC -__dt__Q24Game16MapUnitInterfaceFv=0x801B8A24 -__ct__Q24Game16MapUnitInterfaceFv=0x801B8B10 -__dt__Q24Game9PartsViewFv=0x801B8B4C -completeUnitData__Q24Game10RoomMapMgrFv=0x801B8C28 -setupJUTTextures__Q24Game10RoomMapMgrFv=0x801B8E4C -useUnit__Q24Game10RoomMapMgrFPc=0x801B9080 -getTexture__Q24Game10RoomMapMgrFPc=0x801B933C -allocRooms__Q24Game10RoomMapMgrFi=0x801B954C -makeRoom__Q24Game10RoomMapMgrFPcffiiPQ24Game8RoomLinkPQ24Game16ObjectLayoutInfo=0x801B9740 -placeObjects__Q24Game10RoomMapMgrFv=0x801B9790 -getBoundBox2d__Q24Game10RoomMapMgrFR10BoundBox2d=0x801B9B44 -getBoundBox__Q24Game10RoomMapMgrFR8BoundBox=0x801B9B68 -drawCollision__Q24Game10RoomMapMgrFR8GraphicsRQ23Sys6Sphere=0x801B9B9C -traceMove__Q24Game10RoomMapMgrFRQ24Game8MoveInfof=0x801B9BA0 -hasHiddenCollision__Q24Game10RoomMapMgrFv=0x801B9D90 -constraintBoundBox__Q24Game10RoomMapMgrFRQ23Sys6Sphere=0x801B9DB4 -entryToMapRoomCellMgr__Q24Game10RoomMapMgrFv=0x801B9E40 -findRoomIndex__Q24Game10RoomMapMgrFRQ23Sys6Sphere=0x801BA034 -createGlobalCollision__Q24Game10RoomMapMgrFv=0x801BA15C -addOne__Q23Sys11VertexTableFR10Vector3=0x801BAB58 -addOne__31ArrayContainerFRQ23Sys8Triangle=0x801BAC10 -alloc__31ArrayContainerFi=0x801BACF8 -traceMove_new__Q24Game10RoomMapMgrFRQ24Game8MoveInfof=0x801BAD60 -traceMove_original__Q24Game10RoomMapMgrFRQ24Game8MoveInfof=0x801BB088 -findRayIntersection__Q24Game10RoomMapMgrFRQ23Sys16RayIntersectInfo=0x801BB7C8 -getMinY__Q24Game10RoomMapMgrFR10Vector3=0x801BBCB8 -createTriangles__Q24Game10RoomMapMgrFRQ23Sys17CreateTriangleArg=0x801BBD44 -getCurrTri__Q24Game10RoomMapMgrFRQ24Game11CurrTriInfo=0x801BC4B4 -makeOneRoom__Q24Game10RoomMapMgrFfffPcsPQ24Game8RoomLinkPQ24Game16ObjectLayoutInfo=0x801BC914 -deleteTemp__Q24Game10RoomMapMgrFv=0x801BDFCC -getMUI__Q24Game10RoomMapMgrFPQ24Game7MapUnit=0x801BE1C0 -doAnimation__Q24Game10RoomMapMgrFv=0x801BE254 -doEntry__Q24Game10RoomMapMgrFv=0x801BE2B4 -doSetView__Q24Game10RoomMapMgrFi=0x801BE390 -doViewCalc__Q24Game10RoomMapMgrFv=0x801BE40C -doSimulation__Q24Game10RoomMapMgrFf=0x801BE474 -doDirectDraw__Q24Game10RoomMapMgrFR8Graphics=0x801BE478 -getStartPosition__Q24Game10RoomMapMgrFR10Vector3i=0x801BE688 -getDemoMatrix__Q24Game10RoomMapMgrFv=0x801BE6AC -__dt__Q24Game4DoorFv=0x801BE6B4 -constructor__Q24Game9PartsViewFv=0x801BE738 -doSimulation__Q24Game9PartsViewFf=0x801BE73C -__ml__25IteratorFv=0x801BE740 -next__25IteratorFv=0x801BE778 -first__25IteratorFv=0x801BE85C -__dt__26ContainerFv=0x801BE938 -__dt__26ObjectMgrFv=0x801BE9A8 -getBoundingSphere__Q24Game7MapRoomFRQ23Sys6Sphere=0x801BEA30 -getTypeName__Q24Game7MapRoomFv=0x801BEA54 -getObjType__Q24Game7MapRoomFv=0x801BEA5C -collisionUpdatable__Q24Game7MapRoomFv=0x801BEA68 -getPosition__Q24Game7MapRoomFv=0x801BEA70 -constructor__Q24Game7MapRoomFv=0x801BEA8C -getName__Q24Game15ItemGateInitArgFv=0x801BEA90 -getName__Q34Game15ItemBigFountain7InitArgFv=0x801BEA9C -getName__Q34Game8ItemHole7InitArgFv=0x801BEAA8 -__ml__25IteratorFv=0x801BEAB4 -next__25IteratorFv=0x801BEAEC -first__25IteratorFv=0x801BEBD0 -__dt__Q24Game10MapUnitMgrFv=0x801BECAC -constructor__Q24Game7MapUnitFv=0x801BED8C -doAnimation__Q24Game7MapUnitFv=0x801BED90 -doEntry__Q24Game7MapUnitFv=0x801BED94 -doSetView__Q24Game7MapUnitFi=0x801BED98 -doViewCalc__Q24Game7MapUnitFv=0x801BED9C -doSimulation__Q24Game7MapUnitFf=0x801BEDA0 -doDirectDraw__Q24Game7MapUnitFR8Graphics=0x801BEDA4 -__dt__Q24Game8DoorLinkFv=0x801BEDA8 -get__30NodeObjectMgrFPv=0x801BEE08 -getNext__30NodeObjectMgrFPv=0x801BEE10 -getStart__30NodeObjectMgrFv=0x801BEE18 -getEnd__30NodeObjectMgrFv=0x801BEE20 -resetMgr__30NodeObjectMgrFv=0x801BEE28 -birth__30MonoObjectMgrFv=0x801BEE40 -getNext__30MonoObjectMgrFPv=0x801BEEA0 -getStart__30MonoObjectMgrFv=0x801BEEE0 -getEnd__30MonoObjectMgrFv=0x801BEF10 -getAt__30MonoObjectMgrFi=0x801BEF18 -getTo__30MonoObjectMgrFv=0x801BEF28 -doAnimation__30MonoObjectMgrFv=0x801BEF30 -doEntry__30MonoObjectMgrFv=0x801BEFB0 -doSetView__30MonoObjectMgrFi=0x801BF030 -doViewCalc__30MonoObjectMgrFv=0x801BF0C0 -doSimulation__30MonoObjectMgrFf=0x801BF140 -doDirectDraw__30MonoObjectMgrFR8Graphics=0x801BF1D0 -resetMgr__30MonoObjectMgrFv=0x801BF260 -clearMgr__30MonoObjectMgrFv=0x801BF278 -onAlloc__30MonoObjectMgrFv=0x801BF2A8 -getEmptyIndex__30MonoObjectMgrFv=0x801BF2AC -get__30MonoObjectMgrFPv=0x801BF2E8 -doAnimation__26ObjectMgrFv=0x801BF2F8 -doEntry__26ObjectMgrFv=0x801BF4DC -doSetView__26ObjectMgrFi=0x801BF6C0 -doViewCalc__26ObjectMgrFv=0x801BF8B4 -doSimulation__26ObjectMgrFf=0x801BFA98 -doDirectDraw__26ObjectMgrFR8Graphics=0x801BFC8C -doAnimation__26ObjectMgrFv=0x801BFE80 -doEntry__26ObjectMgrFv=0x801C0064 -doSetView__26ObjectMgrFi=0x801C0248 -doViewCalc__26ObjectMgrFv=0x801C043C -doSimulation__26ObjectMgrFf=0x801C0620 -doDirectDraw__26ObjectMgrFR8Graphics=0x801C0814 -getObject__26ContainerFPv=0x801C0A08 -getAt__26ContainerFi=0x801C0A34 -getTo__26ContainerFv=0x801C0A3C -getObject__26ContainerFPv=0x801C0A44 -getAt__26ContainerFi=0x801C0A70 -getTo__26ContainerFv=0x801C0A78 -alloc__30MonoObjectMgrFi=0x801C0A80 -__ct__30MonoObjectMgrFv=0x801C0C08 -__sinit_gameMapParts_cpp=0x801C0CA4 -@28@resetMgr__30NodeObjectMgrFv=0x801C0CCC -@28@doDirectDraw__26ObjectMgrFR8Graphics=0x801C0CD4 -@28@doSimulation__26ObjectMgrFf=0x801C0CDC -@28@doViewCalc__26ObjectMgrFv=0x801C0CE4 -@28@doSetView__26ObjectMgrFi=0x801C0CEC -@28@doEntry__26ObjectMgrFv=0x801C0CF4 -@28@doAnimation__26ObjectMgrFv=0x801C0CFC -@28@resetMgr__30MonoObjectMgrFv=0x801C0D04 -@28@doDirectDraw__30MonoObjectMgrFR8Graphics=0x801C0D0C -@28@doSimulation__30MonoObjectMgrFf=0x801C0D14 -@28@doViewCalc__30MonoObjectMgrFv=0x801C0D1C -@28@doSetView__30MonoObjectMgrFi=0x801C0D24 -@28@doEntry__30MonoObjectMgrFv=0x801C0D2C -@28@doAnimation__30MonoObjectMgrFv=0x801C0D34 -@28@doDirectDraw__26ObjectMgrFR8Graphics=0x801C0D3C -@28@doSimulation__26ObjectMgrFf=0x801C0D44 -@28@doViewCalc__26ObjectMgrFv=0x801C0D4C -@28@doSetView__26ObjectMgrFi=0x801C0D54 -@28@doEntry__26ObjectMgrFv=0x801C0D5C -@28@doAnimation__26ObjectMgrFv=0x801C0D64 -@280@4@frozenable__Q24Game6MapMgrFv=0x801C0D6C -@280@4@doDirectDraw__Q24Game10RoomMapMgrFR8Graphics=0x801C0D80 -@280@4@doSimulation__Q24Game10RoomMapMgrFf=0x801C0D94 -@280@4@doViewCalc__Q24Game10RoomMapMgrFv=0x801C0DA8 -@280@4@doSetView__Q24Game10RoomMapMgrFi=0x801C0DBC -@280@4@doEntry__Q24Game10RoomMapMgrFv=0x801C0DD0 -@280@4@doAnimation__Q24Game10RoomMapMgrFv=0x801C0DE4 -init__Q34Game6VsGame3FSMFPQ24Game13VsGameSection=0x801C0DF8 -draw__Q34Game6VsGame5StateFPQ24Game13VsGameSectionR8Graphics=0x801C0EC8 -transit__Q34Game6VsGame3FSMFPQ24Game13VsGameSectioniPQ24Game8StateArg=0x801C0ECC -__ct__Q24Game13VsGameSectionFP7JKRHeapb=0x801C0EEC -__dt__Q24Game13VsGameSectionFv=0x801C0FE8 -isGPActive__6VSFifoFv=0x801C10B4 -section_fadeout__Q24Game13VsGameSectionFv=0x801C1110 -on_section_fadeout__Q34Game6VsGame5StateFPQ24Game13VsGameSection=0x801C1144 -startMainBgm__Q24Game13VsGameSectionFv=0x801C1148 -onInit__Q24Game13VsGameSectionFv=0x801C11D8 -start__Q24Game36StateMachineFPQ24Game13VsGameSectioniPQ24Game8StateArg=0x801C13E4 -getCurrFloor__Q24Game13VsGameSectionFv=0x801C1418 -doUpdate__Q24Game13VsGameSectionFv=0x801C1420 -pre2dDraw__Q24Game13VsGameSectionFR8Graphics=0x801C15D8 -pre2dDraw__Q34Game6VsGame5StateFR8GraphicsPQ24Game13VsGameSection=0x801C1614 -doDraw__Q24Game13VsGameSectionFR8Graphics=0x801C1618 -onSetSoundScene__Q24Game13VsGameSectionFv=0x801C1668 -initPlayData__Q24Game13VsGameSectionFv=0x801C1844 -onSetupFloatMemory__Q24Game13VsGameSectionFv=0x801C18A0 -postSetupFloatMemory__Q24Game13VsGameSectionFv=0x801C1A08 -onClearHeap__Q24Game13VsGameSectionFv=0x801C1AA8 -loadChallengeStageList__Q24Game13VsGameSectionFv=0x801C1AC8 -loadVsStageList__Q24Game13VsGameSectionFv=0x801C1B78 -gmOrimaDown__Q24Game13VsGameSectionFi=0x801C1C10 -onOrimaDown__Q34Game6VsGame5StateFPQ24Game13VsGameSectioni=0x801C1C54 -gmPikminZero__Q24Game13VsGameSectionFv=0x801C1C58 -goNextFloor__Q24Game13VsGameSectionFPQ34Game8ItemHole4Item=0x801C1C5C -onNextFloor__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ34Game8ItemHole4Item=0x801C1C98 -openCaveMoreMenu__Q24Game13VsGameSectionFPQ34Game8ItemHole4ItemP10Controller=0x801C1C9C -goingToCave__Q34Game6VsGame5StateFPQ24Game13VsGameSection=0x801C1E74 -openKanketuMenu__Q24Game13VsGameSectionFPQ34Game15ItemBigFountain4ItemP10Controller=0x801C1E7C -clearCaveMenus__Q24Game13VsGameSectionFv=0x801C202C -updateCaveMenus__Q24Game13VsGameSectionFv=0x801C2040 -getFaceDir__Q34Game15ItemBigFountain4ItemFv=0x801C22E8 -onMovieStart__Q24Game13VsGameSectionFPQ24Game11MovieConfigUlUl=0x801C22F0 -onMovieStart__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl=0x801C23CC -onMovieDone__Q24Game13VsGameSectionFPQ24Game11MovieConfigUlUl=0x801C23D0 -onMovieDone__Q34Game6VsGame5StateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl=0x801C2424 -createFallPikmins__Q24Game13VsGameSectionFRQ24Game13PikiContaineri=0x801C2428 -createVsPikmins__Q24Game13VsGameSectionFv=0x801C285C -addChallengeScore__Q24Game13VsGameSectionFi=0x801C2DC0 -sendMessage__Q24Game13VsGameSectionFRQ24Game11GameMessage=0x801C2DD0 -actVs__Q24Game22GameMessageVsGetDopingFPQ24Game13VsGameSection=0x801C2E3C -actVs__Q24Game27GameMessageVsBattleFinishedFPQ24Game13VsGameSection=0x801C2E7C -onBattleFinished__Q34Game6VsGame5StateFPQ24Game13VsGameSectionib=0x801C2EC8 -actVs__Q24Game27GameMessageVsRedOrSuckStartFPQ24Game13VsGameSection=0x801C2ECC -onRedOrBlueSuckStart__Q34Game6VsGame5StateFPQ24Game13VsGameSectionib=0x801C2F18 -actVs__Q24Game23GameMessageVsGetOtakaraFPQ24Game13VsGameSection=0x801C2F1C -actVs__Q24Game21GameMessageVsAddEnemyFPQ24Game13VsGameSection=0x801C2FD4 -actVs__Q24Game21GameMessagePelletBornFPQ24Game13VsGameSection=0x801C3008 -actVs__Q24Game21GameMessagePelletDeadFPQ24Game13VsGameSection=0x801C3120 -actVs__Q24Game30GameMessageVsBirthTekiTreasureFPQ24Game13VsGameSection=0x801C31AC -actVs__Q24Game23GameMessageVsPikminDeadFPQ24Game13VsGameSection=0x801C33D4 -actVs__Q24Game20GameMessageVsGotCardFPQ24Game13VsGameSection=0x801C33F0 -actVs__Q24Game20GameMessageVsUseCardFPQ24Game13VsGameSection=0x801C346C -isCardUsable__Q34Game6VsGame5StateFPQ24Game13VsGameSection=0x801C3514 -setComeAlive__Q24Game49FixedSizePelletMgrFi=0x801C351C -initCardPellets__Q24Game13VsGameSectionFv=0x801C352C -initCardGeneration__Q24Game13VsGameSectionFv=0x801C36BC -updateCardGeneration__Q24Game13VsGameSectionFv=0x801C36D0 -useCard__Q24Game13VsGameSectionFv=0x801C39A8 -dropCard__Q24Game13VsGameSectionFRQ34Game13VsGameSection11DropCardArg=0x801C39C0 -createYellowBedamas__Q24Game13VsGameSectionFi=0x801C3DB4 -createRedBlueBedamas__Q24Game13VsGameSectionFR10Vector3=0x801C3F60 -calcVsScores__Q24Game13VsGameSectionFv=0x801C40AC -clearGetDopeCount__Q24Game13VsGameSectionFv=0x801C48C0 -getGetDopeCount__Q24Game13VsGameSectionFii=0x801C48D8 -clearGetCherryCount__Q24Game13VsGameSectionFv=0x801C49A8 -challengeDisablePelplant__Q24Game13VsGameSectionFv=0x801C49B8 -player2enabled__Q24Game13VsGameSectionFv=0x801C49C0 -getCaveFilename__Q24Game13VsGameSectionFv=0x801C49C8 -getEditorFilename__Q24Game13VsGameSectionFv=0x801C49D0 -getVsEditNumber__Q24Game13VsGameSectionFv=0x801C49D8 -init__Q24Game36StateMachineFPQ24Game13VsGameSection=0x801C49E0 -create__Q24Game36StateMachineFi=0x801C49E4 -transit__Q24Game36StateMachineFPQ24Game13VsGameSectioniPQ24Game8StateArg=0x801C4A48 -init__Q24Game32FSMStateFPQ24Game13VsGameSectionPQ24Game8StateArg=0x801C4AE4 -cleanup__Q24Game32FSMStateFPQ24Game13VsGameSection=0x801C4AE8 -registerState__Q24Game36StateMachineFPQ24Game32FSMState=0x801C4AEC -exec__Q24Game36StateMachineFPQ24Game13VsGameSection=0x801C4B70 -exec__Q24Game32FSMStateFPQ24Game13VsGameSection=0x801C4BA8 -__sinit_vsGameSection_cpp=0x801C4BAC -setCollision__Q24Game12PlatInstanceFb=0x801C4BD4 -getPosition__Q24Game12PlatInstanceFv=0x801C4BFC -getBoundingSphere__Q24Game12PlatInstanceFRQ23Sys6Sphere=0x801C4C1C -getCurrTri__Q24Game12PlatInstanceFRQ24Game11CurrTriInfo=0x801C4C6C -traceMove__Q24Game12PlatInstanceFRQ24Game8MoveInfof=0x801C4EC0 -__ct__Q24Game20PlatInstanceAttacherFv=0x801C51A4 -addToMgr__Q24Game20PlatInstanceAttacherFPQ24Game8CreatureR4ID32P12PlatAttacherb=0x801C51BC -setCollision__Q24Game20PlatInstanceAttacherFbUs=0x801C536C -fixCollision__Q24Game20PlatInstanceAttacherFb=0x801C5400 -setCode__Q24Game20PlatInstanceAttacherFR4ID32Us=0x801C549C -setShapeVisibility__Q24Game20PlatInstanceAttacherFv=0x801C5528 -__ct__Q24Game7PlatMgrFv=0x801C55E8 -__dt__36NodeObjectMgrFv=0x801C56A0 -__dt__34TObjectNodeFv=0x801C5768 -__dt__32ObjectMgrFv=0x801C57C8 -__dt__32ContainerFv=0x801C5850 -__ct__Q24Game18PlatAddInstanceArgFv=0x801C58C0 -addInstance__Q24Game7PlatMgrFRQ24Game18PlatAddInstanceArg=0x801C5924 -constructor__Q24Game12PlatInstanceFv=0x801C5B94 -delInstance__Q24Game7PlatMgrFPQ24Game12PlatInstance=0x801C5B98 -traceMove__Q24Game7PlatMgrFRQ24Game8MoveInfof=0x801C5BB8 -isDone__31IteratorFv=0x801C5E5C -getCurrTri__Q24Game7PlatMgrFRQ24Game11CurrTriInfo=0x801C5EA8 -findRayIntersection__Q24Game7PlatMgrFRQ23Sys16RayIntersectInfo=0x801C6158 -resetOnCount__Q24Game7PlatMgrFv=0x801C6490 -doDirectDraw__Q24Game7PlatMgrFR8Graphics=0x801C666C -__dt__Q24Game7PlatMgrFv=0x801C6670 -__ml__31IteratorFv=0x801C6750 -next__31IteratorFv=0x801C6788 -first__31IteratorFv=0x801C686C -checkCollision__Q24Game12PlatInstanceFPQ24Game10CellObject=0x801C6948 -doAnimation__Q24Game12PlatInstanceFv=0x801C694C -doEntry__Q24Game12PlatInstanceFv=0x801C6950 -doSetView__Q24Game12PlatInstanceFi=0x801C6954 -doViewCalc__Q24Game12PlatInstanceFv=0x801C6958 -doSimulation__Q24Game12PlatInstanceFf=0x801C695C -doDirectDraw__Q24Game12PlatInstanceFR8Graphics=0x801C6960 -getTypeName__Q24Game12PlatInstanceFv=0x801C6964 -getObjType__Q24Game12PlatInstanceFv=0x801C6970 -collisionUpdatable__Q24Game12PlatInstanceFv=0x801C697C -get__36NodeObjectMgrFPv=0x801C6984 -getNext__36NodeObjectMgrFPv=0x801C698C -getStart__36NodeObjectMgrFv=0x801C6994 -getEnd__36NodeObjectMgrFv=0x801C699C -delNode__36NodeObjectMgrFPQ24Game12PlatInstance=0x801C69A4 -resetMgr__36NodeObjectMgrFv=0x801C69E8 -doAnimation__32ObjectMgrFv=0x801C6A00 -doEntry__32ObjectMgrFv=0x801C6BE4 -doSetView__32ObjectMgrFi=0x801C6DC8 -doViewCalc__32ObjectMgrFv=0x801C6FBC -doSimulation__32ObjectMgrFf=0x801C71A0 -doDirectDraw__32ObjectMgrFR8Graphics=0x801C7394 -getObject__32ContainerFPv=0x801C7588 -getAt__32ContainerFi=0x801C75B4 -getTo__32ContainerFv=0x801C75BC -@28@doDirectDraw__32ObjectMgrFR8Graphics=0x801C75C4 -@28@resetMgr__36NodeObjectMgrFv=0x801C75CC -@28@doDirectDraw__Q24Game7PlatMgrFR8Graphics=0x801C75D4 -@28@doSimulation__32ObjectMgrFf=0x801C75DC -@28@doViewCalc__32ObjectMgrFv=0x801C75E4 -@28@doSetView__32ObjectMgrFi=0x801C75EC -@28@doEntry__32ObjectMgrFv=0x801C75F4 -@28@doAnimation__32ObjectMgrFv=0x801C75FC -init__Q24Game7GateFSMFPQ24Game8ItemGate=0x801C7604 -constructor__Q24Game8ItemGateFv=0x801C7738 -onInit__Q24Game8ItemGateFPQ24Game15CreatureInitArg=0x801C7780 -start__Q24Game30StateMachineFPQ24Game8ItemGateiPQ24Game8StateArg=0x801C79C8 -onSetPosition__Q24Game8ItemGateFv=0x801C79FC -doLoad__Q24Game8ItemGateFR6Stream=0x801C7BE0 -doSave__Q24Game8ItemGateFR6Stream=0x801C7CC8 -updateBoundSphere__Q24Game8ItemGateFv=0x801C7D14 -update__Q24Game8ItemGateFv=0x801C7D30 -doAI__Q24Game8ItemGateFv=0x801C7DAC -onKeyEvent__Q24Game8ItemGateFRCQ28SysShape8KeyEvent=0x801C7EDC -onKeyEvent__Q24Game9GateStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent=0x801C7F20 -interactAttack__Q24Game8ItemGateFRQ24Game14InteractAttack=0x801C7F24 -onDamage__Q24Game9GateStateFPQ24Game8ItemGatef=0x801C8040 -initMotion__Q24Game8ItemGateFv=0x801C8044 -getVectorField__Q24Game8ItemGateFRQ23Sys6SphereR10Vector3=0x801C80B0 -getWorkDistance__Q24Game8ItemGateFRQ23Sys6Sphere=0x801C8340 -initPlanes__Q24Game8ItemGateFv=0x801C845C -changeMaterial__Q24Game8ItemGateFv=0x801C8804 -getLifeGaugeParam__Q24Game8ItemGateFRQ24Game14LifeGaugeParam=0x801C88D8 -__ct__Q24Game11ItemGateMgrFv=0x801C8978 -__dt__31NodeObjectMgrFv=0x801C8B74 -__dt__29TObjectNodeFv=0x801C8C3C -__dt__27ObjectMgrFv=0x801C8C9C -__dt__27ContainerFv=0x801C8D24 -setupGate__Q24Game11ItemGateMgrFPQ24Game8ItemGate=0x801C8D94 -setupPlatform__Q24Game11ItemGateMgrFPQ24Game8ItemGate=0x801C8E34 -birth__Q24Game11ItemGateMgrFv=0x801C8F8C -initDependency__Q24Game11ItemGateMgrFv=0x801C9160 -generatorNewItemParm__Q24Game11ItemGateMgrFv=0x801C9348 -generatorWrite__Q24Game11ItemGateMgrFR6StreamPQ24Game11GenItemParm=0x801C939C -generatorRead__Q24Game11ItemGateMgrFR6StreamPQ24Game11GenItemParmUl=0x801C944C -generatorBirth__Q24Game11ItemGateMgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801C94F4 -getCaveName__Q24Game11ItemGateMgrFi=0x801C971C -getCaveID__Q24Game11ItemGateMgrFPc=0x801C9730 -init__Q24Game13GateWaitStateFPQ24Game8ItemGatePQ24Game8StateArg=0x801C977C -exec__Q24Game13GateWaitStateFPQ24Game8ItemGate=0x801C9780 -cleanup__Q24Game13GateWaitStateFPQ24Game8ItemGate=0x801C9784 -onDamage__Q24Game13GateWaitStateFPQ24Game8ItemGatef=0x801C9788 -transit__Q24Game26FSMStateFPQ24Game8ItemGateiPQ24Game8StateArg=0x801C97C8 -onKeyEvent__Q24Game13GateWaitStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent=0x801C97F8 -init__Q24Game16GateDamagedStateFPQ24Game8ItemGatePQ24Game8StateArg=0x801C97FC -exec__Q24Game16GateDamagedStateFPQ24Game8ItemGate=0x801C9858 -cleanup__Q24Game16GateDamagedStateFPQ24Game8ItemGate=0x801C9918 -onDamage__Q24Game16GateDamagedStateFPQ24Game8ItemGatef=0x801C991C -onKeyEvent__Q24Game16GateDamagedStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent=0x801C992C -init__Q24Game13GateDownStateFPQ24Game8ItemGatePQ24Game8StateArg=0x801C9938 -getFaceDir__Q24Game8ItemGateFv=0x801C9B5C -exec__Q24Game13GateDownStateFPQ24Game8ItemGate=0x801C9B64 -cleanup__Q24Game13GateDownStateFPQ24Game8ItemGate=0x801C9B68 -onDamage__Q24Game13GateDownStateFPQ24Game8ItemGatef=0x801C9B6C -onKeyEvent__Q24Game13GateDownStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent=0x801C9B7C -__ct__Q34Game15ItemDengekiGate3MgrFv=0x801C9CE4 -__dt__Q24Game29NodeItemMgrFv=0x801C9E64 -setupGate__Q34Game15ItemDengekiGate3MgrFPQ24Game8ItemGate=0x801C9F80 -setupPlatform__Q34Game15ItemDengekiGate3MgrFPQ24Game8ItemGate=0x801CA024 -generatorNewItemParm__Q34Game15ItemDengekiGate3MgrFv=0x801CA17C -generatorWrite__Q34Game15ItemDengekiGate3MgrFR6StreamPQ24Game11GenItemParm=0x801CA1D0 -generatorRead__Q34Game15ItemDengekiGate3MgrFR6StreamPQ24Game11GenItemParmUl=0x801CA254 -generatorBirth__Q34Game15ItemDengekiGate3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801CA2B4 -getCaveName__Q34Game15ItemDengekiGate3MgrFi=0x801CA36C -getCaveID__Q34Game15ItemDengekiGate3MgrFPc=0x801CA380 -__dt__Q34Game15ItemDengekiGate3MgrFv=0x801CA3CC -generatorGetID__Q34Game15ItemDengekiGate3MgrFv=0x801CA500 -generatorLocalVersion__Q34Game15ItemDengekiGate3MgrFv=0x801CA50C -generatorGetID__Q24Game11ItemGateMgrFv=0x801CA518 -generatorLocalVersion__Q24Game11ItemGateMgrFv=0x801CA524 -doAnimation__Q24Game11ItemGateMgrFv=0x801CA530 -doEntry__Q24Game11ItemGateMgrFv=0x801CA55C -doSetView__Q24Game11ItemGateMgrFi=0x801CA588 -doViewCalc__Q24Game11ItemGateMgrFv=0x801CA5B4 -doSimulation__Q24Game11ItemGateMgrFf=0x801CA5E0 -doDirectDraw__Q24Game11ItemGateMgrFR8Graphics=0x801CA60C -getName__Q23efx7ArgRotYFv=0x801CA638 -__dt__Q23efx7TEgateAFv=0x801CA640 -getCreatureName__Q24Game8ItemGateFv=0x801CA6DC -getMabiki__Q24Game8ItemGateFv=0x801CA6E4 -makeTrMatrix__Q24Game8ItemGateFv=0x801CA6EC -do_doAnimation__Q24Game8BaseItemFv=0x801CA6F0 -doAI__Q24Game59FSMItemFv=0x801CA6F4 -getCreatureName__Q24Game8BaseItemFv=0x801CA728 -changeMaterial__Q24Game8BaseItemFv=0x801CA730 -getFaceDir__Q24Game8BaseItemFv=0x801CA734 -__ct__Q24Game29NodeItemMgrFv=0x801CA73C -birth__Q24Game29NodeItemMgrFv=0x801CA850 -initDependency__Q24Game29NodeItemMgrFv=0x801CAA04 -kill__Q24Game29NodeItemMgrFPQ24Game8ItemGate=0x801CABEC -doAnimation__Q24Game29NodeItemMgrFv=0x801CAC10 -doEntry__Q24Game29NodeItemMgrFv=0x801CAC3C -doSetView__Q24Game29NodeItemMgrFi=0x801CAC68 -doViewCalc__Q24Game29NodeItemMgrFv=0x801CAC94 -doSimulation__Q24Game29NodeItemMgrFf=0x801CACC0 -doDirectDraw__Q24Game29NodeItemMgrFR8Graphics=0x801CACEC -onKeyEvent__Q24Game59FSMItemFRCQ28SysShape8KeyEvent=0x801CAD18 -onDamage__Q24Game27ItemStateFPQ24Game8ItemGatef=0x801CAD5C -onKeyEvent__Q24Game27ItemStateFPQ24Game8ItemGateRCQ28SysShape8KeyEvent=0x801CAD60 -onBounce__Q24Game27ItemStateFPQ24Game8ItemGatePQ23Sys8Triangle=0x801CAD64 -onPlatCollision__Q24Game27ItemStateFPQ24Game8ItemGateRQ24Game9PlatEvent=0x801CAD68 -onCollision__Q24Game27ItemStateFPQ24Game8ItemGateRQ24Game9CollEvent=0x801CAD6C -init__Q24Game26FSMStateFPQ24Game8ItemGatePQ24Game8StateArg=0x801CAD70 -exec__Q24Game26FSMStateFPQ24Game8ItemGate=0x801CAD74 -cleanup__Q24Game26FSMStateFPQ24Game8ItemGate=0x801CAD78 -resume__Q24Game26FSMStateFPQ24Game8ItemGate=0x801CAD7C -restart__Q24Game26FSMStateFPQ24Game8ItemGate=0x801CAD80 -init__Q24Game30StateMachineFPQ24Game8ItemGate=0x801CAD84 -exec__Q24Game30StateMachineFPQ24Game8ItemGate=0x801CAD88 -create__Q24Game30StateMachineFi=0x801CADC0 -get__31NodeObjectMgrFPv=0x801CAE24 -getNext__31NodeObjectMgrFPv=0x801CAE2C -getStart__31NodeObjectMgrFv=0x801CAE34 -getEnd__31NodeObjectMgrFv=0x801CAE3C -delNode__31NodeObjectMgrFPQ24Game8ItemGate=0x801CAE44 -resetMgr__31NodeObjectMgrFv=0x801CAE88 -doAnimation__27ObjectMgrFv=0x801CAEA0 -doEntry__27ObjectMgrFv=0x801CB084 -doSetView__27ObjectMgrFi=0x801CB268 -doViewCalc__27ObjectMgrFv=0x801CB45C -doSimulation__27ObjectMgrFf=0x801CB640 -doDirectDraw__27ObjectMgrFR8Graphics=0x801CB834 -getObject__27ContainerFPv=0x801CBA28 -getAt__27ContainerFi=0x801CBA54 -getTo__27ContainerFv=0x801CBA5C -transit__Q24Game30StateMachineFPQ24Game8ItemGateiPQ24Game8StateArg=0x801CBA64 -registerState__Q24Game30StateMachineFPQ24Game26FSMState=0x801CBB00 -platCallback__Q24Game59FSMItemFRQ24Game9PlatEvent=0x801CBB84 -collisionCallback__Q24Game59FSMItemFRQ24Game9CollEvent=0x801CBBC8 -bounceCallback__Q24Game59FSMItemFPQ23Sys8Triangle=0x801CBC0C -getEnd__Q24Game29NodeItemMgrFv=0x801CBC50 -getStart__Q24Game29NodeItemMgrFv=0x801CBC7C -getNext__Q24Game29NodeItemMgrFPv=0x801CBCA8 -get__Q24Game29NodeItemMgrFPv=0x801CBCD4 -killAll__Q24Game29NodeItemMgrFv=0x801CBD00 -__sinit_itemGate_cpp=0x801CBF40 -@376@onKeyEvent__Q24Game59FSMItemFRCQ28SysShape8KeyEvent=0x801CBF68 -@376@onKeyEvent__Q24Game8ItemGateFRCQ28SysShape8KeyEvent=0x801CBF70 -@4@__dt__Q23efx7TEgateAFv=0x801CBF78 -@28@resetMgr__31NodeObjectMgrFv=0x801CBF80 -@28@doDirectDraw__27ObjectMgrFR8Graphics=0x801CBF88 -@28@doSimulation__27ObjectMgrFf=0x801CBF90 -@28@doViewCalc__27ObjectMgrFv=0x801CBF98 -@28@doSetView__27ObjectMgrFi=0x801CBFA0 -@28@doEntry__27ObjectMgrFv=0x801CBFA8 -@28@doAnimation__27ObjectMgrFv=0x801CBFB0 -@48@__dt__Q24Game29NodeItemMgrFv=0x801CBFB8 -@48@getEnd__Q24Game29NodeItemMgrFv=0x801CBFC0 -@48@getStart__Q24Game29NodeItemMgrFv=0x801CBFC8 -@48@getNext__Q24Game29NodeItemMgrFPv=0x801CBFD0 -@48@get__Q24Game29NodeItemMgrFPv=0x801CBFD8 -@48@__dt__Q34Game15ItemDengekiGate3MgrFv=0x801CBFE0 -__ct__Q24Game8BaseItemFi=0x801CBFE8 -constructor__Q24Game8BaseItemFv=0x801CC0E8 -getJAIObject__Q24Game8BaseItemFv=0x801CC134 -getPSCreature__Q24Game8BaseItemFv=0x801CC148 -startSound__Q24Game8BaseItemFUl=0x801CC150 -doAnimation__Q24Game8BaseItemFv=0x801CC1DC -updateTrMatrix__Q24Game8BaseItemFv=0x801CC2E4 -entryShape__Q24Game8BaseItemFv=0x801CC310 -doEntry__Q24Game8BaseItemFv=0x801CC3D4 -stimulate__Q24Game8BaseItemFRQ24Game11Interaction=0x801CC40C -doSimulation__Q24Game8BaseItemFf=0x801CC480 -makeTrMatrix__Q24Game8BaseItemFv=0x801CC484 -update__Q24Game8BaseItemFv=0x801CC4B0 -doAI__Q24Game8BaseItemFv=0x801CC58C -do_updateLOD__Q24Game8BaseItemFv=0x801CC590 -updateCollTree__Q24Game8BaseItemFv=0x801CC60C -move__Q24Game8BaseItemFf=0x801CC648 -movieStartAnimation__Q24Game8BaseItemFUl=0x801CC80C -movieStartDemoAnimation__Q24Game8BaseItemFPQ28SysShape8AnimInfo=0x801CC888 -movieSetAnimationLastFrame__Q24Game8BaseItemFv=0x801CC910 -movieSetTranslation__Q24Game8BaseItemFR10Vector3f=0x801CC934 -constructor__Q24Game8CFSMItemFv=0x801CC950 -initFSM__Q24Game8CFSMItemFv=0x801CC9A0 -init__Q24Game30StateMachineFPQ24Game8CFSMItem=0x801CC9F4 -doAI__Q24Game8CFSMItemFv=0x801CC9F8 -setCurrState__Q24Game8CFSMItemFPQ24Game26FSMState=0x801CCA2C -getCurrState__Q24Game8CFSMItemFv=0x801CCA34 -getStateID__Q24Game8CFSMItemFv=0x801CCA3C -bounceCallback__Q24Game8CFSMItemFPQ23Sys8Triangle=0x801CCA58 -onBounce__Q24Game10CItemStateFPQ24Game8CFSMItemPQ23Sys8Triangle=0x801CCA9C -collisionCallback__Q24Game8CFSMItemFRQ24Game9CollEvent=0x801CCAA0 -onCollision__Q24Game10CItemStateFPQ24Game8CFSMItemRQ24Game9CollEvent=0x801CCAE4 -platCallback__Q24Game8CFSMItemFRQ24Game9PlatEvent=0x801CCAE8 -onPlatCollision__Q24Game10CItemStateFPQ24Game8CFSMItemRQ24Game9PlatEvent=0x801CCB2C -onKeyEvent__Q24Game8CFSMItemFRCQ28SysShape8KeyEvent=0x801CCB30 -onKeyEvent__Q24Game10CItemStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent=0x801CCB74 -actItem__Q24Game14InteractAttackFPQ24Game8BaseItem=0x801CCB78 -actItem__Q24Game19InteractBreakBridgeFPQ24Game8BaseItem=0x801CCBB0 -actItem__Q24Game14InteractGotKeyFPQ24Game8BaseItem=0x801CCBE8 -actItem__Q24Game11InteractEatFPQ24Game8BaseItem=0x801CCC20 -actItem__Q24Game19InteractFlockAttackFPQ24Game8BaseItem=0x801CCC58 -actItem__Q24Game14InteractAbsorbFPQ24Game8BaseItem=0x801CCC90 -actItem__Q24Game11InteractFueFPQ24Game8BaseItem=0x801CCCC8 -actItem__Q24Game18InteractFarmKareroFPQ24Game8BaseItem=0x801CCD00 -actItem__Q24Game17InteractFarmHaeroFPQ24Game8BaseItem=0x801CCD38 -__ct__Q24Game11BaseItemMgrFi=0x801CCD70 -setModelSize__Q24Game11BaseItemMgrFi=0x801CCDCC -loadArchive__Q24Game11BaseItemMgrFPc=0x801CCED4 -loadBmd__Q24Game11BaseItemMgrFPciUl=0x801CCF50 -loadAnimMgr__Q24Game11BaseItemMgrFP13JKRFileLoaderPc=0x801CCFFC -loadCollision__Q24Game11BaseItemMgrFP13JKRFileLoaderPc=0x801CD07C -generatorNewItemParm__Q24Game11BaseItemMgrFv=0x801CD0B4 -generatorGetShape__Q24Game11BaseItemMgrFPQ24Game11GenItemParm=0x801CD0EC -getModelData__Q24Game11BaseItemMgrFi=0x801CD150 -openTextArc__Q24Game11BaseItemMgrFPc=0x801CD1CC -closeTextArc__Q24Game11BaseItemMgrFP10JKRArchive=0x801CD250 -loadPlatform__Q24Game11BaseItemMgrFP13JKRFileLoaderPc=0x801CD2A0 -loadPlatAttacher__Q24Game11BaseItemMgrFP13JKRFileLoaderPc=0x801CD308 -updateUseList__Q24Game11BaseItemMgrFPQ24Game11GenItemParmi=0x801CD3C4 -loadResources__Q24Game11BaseItemMgrFv=0x801CD3F0 -setupSoundViewerAndBas__Q24Game11BaseItemMgrFv=0x801CD41C -__ct__Q24Game12TNodeItemMgrFv=0x801CD420 -__dt__31NodeObjectMgrFv=0x801CD56C -__dt__29TObjectNodeFv=0x801CD634 -__dt__27ObjectMgrFv=0x801CD694 -__dt__27ContainerFv=0x801CD71C -birth__Q24Game12TNodeItemMgrFv=0x801CD78C -entry__Q24Game12TNodeItemMgrFPQ24Game8BaseItem=0x801CD828 -initDependency__Q24Game12TNodeItemMgrFv=0x801CD8AC -killAll__Q24Game12TNodeItemMgrFv=0x801CDA94 -__ct__Q24Game7ItemMgrFv=0x801CDB3C -__dt__Q24Game7ItemMgrFv=0x801CDC00 -addMgr__Q24Game7ItemMgrFPQ24Game11BaseItemMgr=0x801CDCE8 -initDependency__Q24Game7ItemMgrFv=0x801CDD54 -doAnimation__Q24Game7ItemMgrFv=0x801CDF38 -doEntry__Q24Game7ItemMgrFv=0x801CE11C -doSetView__Q24Game7ItemMgrFi=0x801CE300 -doViewCalc__Q24Game7ItemMgrFv=0x801CE4F4 -doSimulation__Q24Game7ItemMgrFf=0x801CE6D8 -doDirectDraw__Q24Game7ItemMgrFR8Graphics=0x801CE8CC -doSimpleDraw__Q24Game7ItemMgrFP8Viewport=0x801CE8D0 -setupSoundViewerAndBas__Q24Game7ItemMgrFv=0x801CEAC4 -loadResources__Q24Game7ItemMgrFv=0x801CECA8 -getIndexByMgr__Q24Game7ItemMgrFPQ24Game11BaseItemMgr=0x801CEE8C -getMgrByIndex__Q24Game7ItemMgrFi=0x801CF090 -getMgrByID__Q24Game7ItemMgrFR4ID32=0x801CF290 -__dt__Q24Game12TNodeItemMgrFv=0x801CF4B4 -kill__Q24Game12TNodeItemMgrFPQ24Game8BaseItem=0x801CF5D0 -doAnimation__Q24Game12TNodeItemMgrFv=0x801CF5F4 -doEntry__Q24Game12TNodeItemMgrFv=0x801CF620 -doSetView__Q24Game12TNodeItemMgrFi=0x801CF64C -doViewCalc__Q24Game12TNodeItemMgrFv=0x801CF678 -doSimulation__Q24Game12TNodeItemMgrFf=0x801CF6A4 -doDirectDraw__Q24Game12TNodeItemMgrFR8Graphics=0x801CF6D0 -getEnd__Q24Game12TNodeItemMgrFv=0x801CF6FC -getEnd__31NodeObjectMgrFv=0x801CF728 -getStart__Q24Game12TNodeItemMgrFv=0x801CF730 -getStart__31NodeObjectMgrFv=0x801CF75C -getNext__Q24Game12TNodeItemMgrFPv=0x801CF764 -getNext__31NodeObjectMgrFPv=0x801CF790 -get__Q24Game12TNodeItemMgrFPv=0x801CF798 -get__31NodeObjectMgrFPv=0x801CF7C4 -doAnimation__Q24Game11BaseItemMgrFv=0x801CF7CC -doEntry__Q24Game11BaseItemMgrFv=0x801CF7D0 -doSetView__Q24Game11BaseItemMgrFi=0x801CF7D4 -doViewCalc__Q24Game11BaseItemMgrFv=0x801CF7D8 -doSimulation__Q24Game11BaseItemMgrFf=0x801CF7DC -doDirectDraw__Q24Game11BaseItemMgrFR8Graphics=0x801CF7E0 -delNode__31NodeObjectMgrFPQ24Game8BaseItem=0x801CF7E4 -resetMgr__31NodeObjectMgrFv=0x801CF828 -doAnimation__27ObjectMgrFv=0x801CF840 -doEntry__27ObjectMgrFv=0x801CFA24 -doSetView__27ObjectMgrFi=0x801CFC08 -doViewCalc__27ObjectMgrFv=0x801CFDFC -doSimulation__27ObjectMgrFf=0x801CFFE0 -doDirectDraw__27ObjectMgrFR8Graphics=0x801D01D4 -getObject__27ContainerFPv=0x801D03C8 -getAt__27ContainerFi=0x801D03F4 -getTo__27ContainerFv=0x801D03FC -exec__Q24Game30StateMachineFPQ24Game8CFSMItem=0x801D0404 -exec__Q24Game26FSMStateFPQ24Game8CFSMItem=0x801D043C -@376@onKeyEvent__Q24Game8CFSMItemFRCQ28SysShape8KeyEvent=0x801D0440 -@28@resetMgr__31NodeObjectMgrFv=0x801D0448 -@28@doDirectDraw__27ObjectMgrFR8Graphics=0x801D0450 -@28@doSimulation__27ObjectMgrFf=0x801D0458 -@28@doViewCalc__27ObjectMgrFv=0x801D0460 -@28@doSetView__27ObjectMgrFi=0x801D0468 -@28@doEntry__27ObjectMgrFv=0x801D0470 -@28@doAnimation__27ObjectMgrFv=0x801D0478 -@48@getEnd__Q24Game12TNodeItemMgrFv=0x801D0480 -@48@getStart__Q24Game12TNodeItemMgrFv=0x801D0488 -@48@getNext__Q24Game12TNodeItemMgrFPv=0x801D0490 -@48@get__Q24Game12TNodeItemMgrFPv=0x801D0498 -@48@__dt__Q24Game12TNodeItemMgrFv=0x801D04A0 -@28@loadResources__Q24Game7ItemMgrFv=0x801D04A8 -@28@doSimpleDraw__Q24Game7ItemMgrFP8Viewport=0x801D04B0 -@28@doDirectDraw__Q24Game7ItemMgrFR8Graphics=0x801D04B8 -@28@doSimulation__Q24Game7ItemMgrFf=0x801D04C0 -@28@doViewCalc__Q24Game7ItemMgrFv=0x801D04C8 -@28@doSetView__Q24Game7ItemMgrFi=0x801D04D0 -@28@doEntry__Q24Game7ItemMgrFv=0x801D04D8 -@28@doAnimation__Q24Game7ItemMgrFv=0x801D04E0 -__ct__Q26PikiAI12ActBreakGateFPQ24Game4Piki=0x801D04E8 -init__Q26PikiAI12ActBreakGateFPQ26PikiAI9ActionArg=0x801D05E0 -initFollow__Q26PikiAI12ActBreakGateFv=0x801D06A8 -exec__Q26PikiAI12ActBreakGateFv=0x801D0710 -cleanup__Q26PikiAI12ActBreakGateFv=0x801D0BA8 -emotion_success__Q26PikiAI12ActBreakGateFv=0x801D0C04 -platCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiRQ24Game9PlatEvent=0x801D0C48 -collisionCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiRQ24Game9CollEvent=0x801D0D8C -bounceCallback__Q26PikiAI12ActBreakGateFPQ24Game4PikiPQ23Sys8Triangle=0x801D0D90 -onKeyEvent__Q26PikiAI12ActBreakGateFRCQ28SysShape8KeyEvent=0x801D0D94 -getName__Q26PikiAI26FollowVectorFieldActionArgFv=0x801D0D98 -@52@4@onKeyEvent__Q26PikiAI12ActBreakGateFRCQ28SysShape8KeyEvent=0x801D0DA4 -clear__Q24Game8GameStatFv=0x801D0DB8 -getMapPikmins_exclude_Me__Q24Game8GameStatFi=0x801D0E10 -getMapPikmins__Q24Game8GameStatFi=0x801D0E60 -getZikatuPikmins__Q24Game8GameStatFi=0x801D0EEC -getAllPikmins__Q24Game8GameStatFi=0x801D0F3C -__ct__Q34Game8GameStat11PikiCounterFv=0x801D1034 -clear__Q34Game8GameStat11PikiCounterFv=0x801D1070 -inc__Q34Game8GameStat11PikiCounterFPQ24Game4Piki=0x801D1094 -dec__Q34Game8GameStat11PikiCounterFPQ24Game4Piki=0x801D1118 -inc__Q34Game8GameStat11PikiCounterFi=0x801D119C -dec__Q34Game8GameStat11PikiCounterFi=0x801D121C -clear__Q34Game8GameStat15PikiNaviCounterFv=0x801D129C -inc__Q34Game8GameStat15PikiNaviCounterFPQ24Game4Piki=0x801D1368 -dec__Q34Game8GameStat15PikiNaviCounterFPQ24Game4Piki=0x801D1414 -__sinit_gameStat_cpp=0x801D14C0 -init__Q34Game8ItemHole3FSMFPQ24Game8CFSMItem=0x801D1738 -init__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D186C -exec__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItem=0x801D18A8 -cleanup__Q34Game8ItemHole11NormalStateFPQ24Game8CFSMItem=0x801D18AC -init__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D18B0 -exec__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItem=0x801D190C -transit__Q24Game26FSMStateFPQ24Game8CFSMItemiPQ24Game8StateArg=0x801D1A24 -cleanup__Q34Game8ItemHole11AppearStateFPQ24Game8CFSMItem=0x801D1A54 -init__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D1A58 -exec__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItem=0x801D1A94 -cleanup__Q34Game8ItemHole10CloseStateFPQ24Game8CFSMItem=0x801D1AA8 -movieUserCommand__Q34Game8ItemHole4ItemFUlPQ24Game11MoviePlayer=0x801D1AAC -interactGotKey__Q34Game8ItemHole4ItemFRQ24Game14InteractGotKey=0x801D1D08 -getFaceDir__Q34Game8ItemHole4ItemFv=0x801D1E10 -onInit__Q34Game8ItemHole4ItemFPQ24Game15CreatureInitArg=0x801D1E18 -start__Q24Game30StateMachineFPQ24Game8CFSMItemiPQ24Game8StateArg=0x801D1ED8 -changeMaterial__Q34Game8ItemHole4ItemFv=0x801D1F50 -onSetPosition__Q34Game8ItemHole4ItemFv=0x801D1FA0 -initDependency__Q34Game8ItemHole4ItemFv=0x801D217C -makeTrMatrix__Q34Game8ItemHole4ItemFv=0x801D2490 -canRide__Q34Game8ItemHole4ItemFv=0x801D24F8 -canRide__Q34Game8ItemHole5StateFv=0x801D2528 -do_setLODParm__Q34Game8ItemHole4ItemFRQ24Game9AILODParm=0x801D2530 -sound_culling__Q34Game8ItemHole4ItemFv=0x801D2544 -doAI__Q34Game8ItemHole4ItemFv=0x801D254C -doDirectDraw__Q34Game8ItemHole4ItemFR8Graphics=0x801D2630 -createFSM__Q34Game8ItemHole4ItemFv=0x801D26EC -__ct__Q34Game8ItemHole3MgrFv=0x801D2744 -onLoadResources__Q34Game8ItemHole3MgrFv=0x801D27C0 -setup__Q34Game8ItemHole3MgrFPQ24Game8BaseItem=0x801D28C0 -generatorBirth__Q34Game8ItemHole3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801D297C -__dt__Q34Game8ItemHole3MgrFv=0x801D29D0 -doNew__Q34Game8ItemHole3MgrFv=0x801D2B04 -generatorGetID__Q34Game8ItemHole3MgrFv=0x801D2B78 -getCreatureName__Q34Game8ItemHole4ItemFv=0x801D2B84 -onDamage__Q24Game10CItemStateFPQ24Game8CFSMItemf=0x801D2B8C -canRide__Q34Game8ItemHole11NormalStateFv=0x801D2B90 -init__Q24Game26FSMStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D2B98 -cleanup__Q24Game26FSMStateFPQ24Game8CFSMItem=0x801D2B9C -resume__Q24Game26FSMStateFPQ24Game8CFSMItem=0x801D2BA0 -restart__Q24Game26FSMStateFPQ24Game8CFSMItem=0x801D2BA4 -create__Q24Game30StateMachineFi=0x801D2BA8 -transit__Q24Game30StateMachineFPQ24Game8CFSMItemiPQ24Game8StateArg=0x801D2C0C -registerState__Q24Game30StateMachineFPQ24Game26FSMState=0x801D2CB8 -__sinit_itemHole_cpp=0x801D2D3C -@48@__dt__Q34Game8ItemHole3MgrFv=0x801D2D64 -init__Q34Game9ItemHoney3FSMFPQ24Game8CFSMItem=0x801D2D6C -init__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D2FA8 -exec__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItem=0x801D2FAC -cleanup__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItem=0x801D2FB0 -onBounce__Q34Game9ItemHoney9FallStateFPQ24Game8CFSMItemPQ23Sys8Triangle=0x801D2FB4 -init__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D2FE8 -exec__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItem=0x801D31AC -cleanup__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItem=0x801D31B0 -onKeyEvent__Q34Game9ItemHoney11BounceStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent=0x801D31B4 -init__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D31E8 -exec__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItem=0x801D3220 -cleanup__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItem=0x801D3224 -collisionCallback__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemRQ24Game9CollEvent=0x801D3228 -interactAbsorb__Q34Game9ItemHoney9WaitStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb=0x801D3344 -init__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D337C -exec__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItem=0x801D33B4 -cleanup__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItem=0x801D33B8 -onKeyEvent__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent=0x801D33BC -kill__Q24Game40FixedSizeItemMgrFPQ34Game9ItemHoney4Item=0x801D3420 -init__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D3444 -exec__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItem=0x801D3490 -cleanup__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItem=0x801D3494 -interactAbsorb__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb=0x801D3498 -onKeyEvent__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent=0x801D34D0 -collisionCallback__Q34Game9ItemHoney10TouchStateFPQ24Game8CFSMItemRQ24Game9CollEvent=0x801D3504 -init__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItemPQ24Game8StateArg=0x801D3584 -exec__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItem=0x801D35BC -cleanup__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItem=0x801D35C0 -onKeyEvent__Q34Game9ItemHoney9DemoStateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent=0x801D35C4 -demoOK__Q34Game9ItemHoney4ItemFv=0x801D35FC -__ct__Q34Game9ItemHoney4ItemFv=0x801D3638 -createFSM__Q34Game9ItemHoney4ItemFv=0x801D36C0 -doAI__Q34Game9ItemHoney4ItemFv=0x801D3718 -onInit__Q34Game9ItemHoney4ItemFPQ24Game15CreatureInitArg=0x801D3758 -onSetPosition__Q34Game9ItemHoney4ItemFv=0x801D38B0 -getMapCollisionRadius__Q34Game9ItemHoney4ItemFv=0x801D38B4 -changeMaterial__Q34Game9ItemHoney4ItemFv=0x801D38BC -updateBoundSphere__Q34Game9ItemHoney4ItemFv=0x801D39EC -doSimulation__Q34Game9ItemHoney4ItemFf=0x801D3A24 -absorbable__Q34Game9ItemHoney4ItemFv=0x801D3AB8 -absorbable__Q34Game9ItemHoney5StateFv=0x801D3B0C -onKeyEvent__Q34Game9ItemHoney4ItemFRCQ28SysShape8KeyEvent=0x801D3B14 -collisionCallback__Q34Game9ItemHoney4ItemFRQ24Game9CollEvent=0x801D3B74 -collisionCallback__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRQ24Game9CollEvent=0x801D3BD4 -interactAbsorb__Q34Game9ItemHoney4ItemFRQ24Game14InteractAbsorb=0x801D3BD8 -interactAbsorb__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb=0x801D3C40 -doDirectDraw__Q34Game9ItemHoney4ItemFR8Graphics=0x801D3C48 -makeTrMatrix__Q34Game9ItemHoney4ItemFv=0x801D3C4C -onStartCapture__Q34Game9ItemHoney4ItemFv=0x801D3CB8 -onUpdateCapture__Q34Game9ItemHoney4ItemFR7Matrixf=0x801D3CF4 -onEndCapture__Q34Game9ItemHoney4ItemFv=0x801D3D48 -on_movie_end__Q34Game9ItemHoney4ItemFb=0x801D3D70 -isShrinking__Q34Game9ItemHoney4ItemFv=0x801D3D9C -__ct__Q34Game9ItemHoney3MgrFv=0x801D3DC8 -__dt__Q24Game40FixedSizeItemMgrFv=0x801D3E98 -__dt__37MonoObjectMgrFv=0x801D3F98 -__dt__33ContainerFv=0x801D4038 -onCreateModel__Q34Game9ItemHoney3MgrFPQ28SysShape5Model=0x801D40A8 -onLoadResources__Q34Game9ItemHoney3MgrFv=0x801D4118 -birth__Q34Game9ItemHoney3MgrFv=0x801D41E4 -generatorBirth__Q34Game9ItemHoney3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801D4210 -__dt__Q34Game9ItemHoney3MgrFv=0x801D4270 -generatorGetID__Q34Game9ItemHoney3MgrFv=0x801D4388 -__dt__33ObjectMgrFv=0x801D4394 -birth__Q24Game40FixedSizeItemMgrFv=0x801D441C -getCreatureName__Q34Game9ItemHoney4ItemFv=0x801D4448 -absorbable__Q34Game9ItemHoney10TouchStateFv=0x801D4450 -interactAbsorb__Q34Game9ItemHoney11ShrinkStateFPQ24Game8CFSMItemRQ24Game14InteractAbsorb=0x801D4458 -absorbable__Q34Game9ItemHoney11ShrinkStateFv=0x801D4460 -absorbable__Q34Game9ItemHoney9WaitStateFv=0x801D4468 -onKeyEvent__Q34Game9ItemHoney5StateFPQ24Game8CFSMItemRCQ28SysShape8KeyEvent=0x801D4470 -onCreateModel__Q24Game40FixedSizeItemMgrFPQ28SysShape5Model=0x801D4474 -doAnimation__Q24Game40FixedSizeItemMgrFv=0x801D4478 -doEntry__Q24Game40FixedSizeItemMgrFv=0x801D44A4 -doSetView__Q24Game40FixedSizeItemMgrFi=0x801D44D0 -doViewCalc__Q24Game40FixedSizeItemMgrFv=0x801D44FC -doSimulation__Q24Game40FixedSizeItemMgrFf=0x801D4528 -doDirectDraw__Q24Game40FixedSizeItemMgrFR8Graphics=0x801D4554 -getNext__Q24Game40FixedSizeItemMgrFPv=0x801D4580 -getStart__Q24Game40FixedSizeItemMgrFv=0x801D45AC -createModel__Q24Game40FixedSizeItemMgrFPQ34Game9ItemHoney4Item=0x801D45D8 -birth__37MonoObjectMgrFv=0x801D4608 -kill__37MonoObjectMgrFPQ34Game9ItemHoney4Item=0x801D4668 -getNext__37MonoObjectMgrFPv=0x801D46BC -getStart__37MonoObjectMgrFv=0x801D46FC -getEnd__37MonoObjectMgrFv=0x801D472C -getAt__37MonoObjectMgrFi=0x801D4734 -getTo__37MonoObjectMgrFv=0x801D4744 -doAnimation__37MonoObjectMgrFv=0x801D474C -doEntry__37MonoObjectMgrFv=0x801D47CC -doSetView__37MonoObjectMgrFi=0x801D484C -doViewCalc__37MonoObjectMgrFv=0x801D48DC -doSimulation__37MonoObjectMgrFf=0x801D495C -doDirectDraw__37MonoObjectMgrFR8Graphics=0x801D49EC -resetMgr__37MonoObjectMgrFv=0x801D4A7C -clearMgr__37MonoObjectMgrFv=0x801D4A94 -onAlloc__37MonoObjectMgrFv=0x801D4AC4 -getEmptyIndex__37MonoObjectMgrFv=0x801D4AC8 -get__37MonoObjectMgrFPv=0x801D4B04 -getObject__33ContainerFPv=0x801D4B14 -getAt__33ContainerFi=0x801D4B40 -getTo__33ContainerFv=0x801D4B48 -doDirectDraw__33ObjectMgrFR8Graphics=0x801D4B50 -isDone__32IteratorFv=0x801D4D44 -doSimulation__33ObjectMgrFf=0x801D4D90 -doViewCalc__33ObjectMgrFv=0x801D4F84 -doSetView__33ObjectMgrFi=0x801D5168 -doEntry__33ObjectMgrFv=0x801D535C -doAnimation__33ObjectMgrFv=0x801D5540 -__ct__37MonoObjectMgrFv=0x801D5724 -getEnd__Q24Game40FixedSizeItemMgrFv=0x801D57C0 -get__Q24Game40FixedSizeItemMgrFPv=0x801D57EC -initDependency__Q24Game40FixedSizeItemMgrFv=0x801D5818 -killAll__Q24Game40FixedSizeItemMgrFv=0x801D5A00 -createModelCallback__Q24Game40FixedSizeItemMgrFPQ28SysShape5Model=0x801D5AE0 -createMgr__Q24Game40FixedSizeItemMgrFiUl=0x801D5B0C -__ml__32IteratorFv=0x801D5BF0 -next__32IteratorFv=0x801D5C28 -first__32IteratorFv=0x801D5D0C -onAlloc__Q24Game40FixedSizeItemMgrFv=0x801D5DE8 -alloc__37MonoObjectMgrFi=0x801D5E4C -invoke__79Delegate1,PQ28SysShape5Model>FPQ28SysShape5Model=0x801D5FD4 -@376@onKeyEvent__Q34Game9ItemHoney4ItemFRCQ28SysShape8KeyEvent=0x801D6004 -@48@__dt__Q24Game40FixedSizeItemMgrFv=0x801D600C -@28@resetMgr__37MonoObjectMgrFv=0x801D6014 -@28@doDirectDraw__37MonoObjectMgrFR8Graphics=0x801D601C -@28@doSimulation__37MonoObjectMgrFf=0x801D6024 -@28@doViewCalc__37MonoObjectMgrFv=0x801D602C -@28@doSetView__37MonoObjectMgrFi=0x801D6034 -@28@doEntry__37MonoObjectMgrFv=0x801D603C -@28@doAnimation__37MonoObjectMgrFv=0x801D6044 -@28@doDirectDraw__33ObjectMgrFR8Graphics=0x801D604C -@28@doSimulation__33ObjectMgrFf=0x801D6054 -@28@doViewCalc__33ObjectMgrFv=0x801D605C -@28@doSetView__33ObjectMgrFi=0x801D6064 -@28@doEntry__33ObjectMgrFv=0x801D606C -@28@doAnimation__33ObjectMgrFv=0x801D6074 -@48@getEnd__Q24Game40FixedSizeItemMgrFv=0x801D607C -@48@getStart__Q24Game40FixedSizeItemMgrFv=0x801D6084 -@48@getNext__Q24Game40FixedSizeItemMgrFPv=0x801D608C -@48@get__Q24Game40FixedSizeItemMgrFPv=0x801D6094 -@48@__dt__Q34Game9ItemHoney3MgrFv=0x801D609C -__ct__Q34Game4Cave7BaseGenFv=0x801D60A4 -read__Q34Game4Cave7BaseGenFR6Stream=0x801D6114 -draw__Q34Game4Cave7BaseGenFR8GraphicsP7Matrixf=0x801D6208 -read__Q34Game4Cave8TekiInfoFR6Stream=0x801D620C -read__Q34Game4Cave8ItemInfoFR6Stream=0x801D63B4 -read__Q34Game4Cave8GateInfoFR6Stream=0x801D645C -getTekiInfo__Q34Game4Cave7CapInfoFv=0x801D64E8 -read__Q34Game4Cave7CapInfoFR6Stream=0x801D6504 -__ct__Q34Game4Cave9FloorInfoFv=0x801D65CC -__dt__Q34Game4Cave7CapInfoFv=0x801D6740 -__dt__Q34Game4Cave8GateInfoFv=0x801D67A0 -__dt__Q34Game4Cave8ItemInfoFv=0x801D6800 -__dt__Q34Game4Cave8TekiInfoFv=0x801D6860 -__ct__Q44Game4Cave9FloorInfo5ParmsFv=0x801D68C0 -hasHiddenCollision__Q34Game4Cave9FloorInfoFv=0x801D6CD0 -getTekiMax__Q34Game4Cave9FloorInfoFv=0x801D6CE4 -getTekiInfoNum__Q34Game4Cave9FloorInfoFv=0x801D6CEC -getTekiInfo__Q34Game4Cave9FloorInfoFi=0x801D6D18 -getTekiWeightSum__Q34Game4Cave9FloorInfoFv=0x801D6DAC -getItemMax__Q34Game4Cave9FloorInfoFv=0x801D6DD0 -getItemInfoNum__Q34Game4Cave9FloorInfoFv=0x801D6DD8 -getItemInfo__Q34Game4Cave9FloorInfoFi=0x801D6E04 -getItemWeightSum__Q34Game4Cave9FloorInfoFv=0x801D6E98 -getGateMax__Q34Game4Cave9FloorInfoFv=0x801D6EBC -getGateInfoNum__Q34Game4Cave9FloorInfoFv=0x801D6EC4 -getGateInfo__Q34Game4Cave9FloorInfoFi=0x801D6EF0 -getGateWeightSum__Q34Game4Cave9FloorInfoFv=0x801D6F84 -getCapMax__Q34Game4Cave9FloorInfoFv=0x801D6FA8 -getCapInfoNum__Q34Game4Cave9FloorInfoFv=0x801D6FB0 -getCapInfo__Q34Game4Cave9FloorInfoFi=0x801D6FDC -getRoomNum__Q34Game4Cave9FloorInfoFv=0x801D7070 -getRouteRatio__Q34Game4Cave9FloorInfoFv=0x801D7078 -hasEscapeFountain__Q34Game4Cave9FloorInfoFi=0x801D7080 -useKaidanBarrel__Q34Game4Cave9FloorInfoFv=0x801D70C4 -read__Q34Game4Cave9FloorInfoFR6Stream=0x801D70D8 -__ct__Q34Game4Cave8CaveInfoFv=0x801D72FC -__dt__Q34Game4Cave9FloorInfoFv=0x801D73CC -disablePelplant__Q34Game4Cave8CaveInfoFv=0x801D74B0 -getFloorMax__Q34Game4Cave8CaveInfoFv=0x801D74F0 -getFloorInfo__Q34Game4Cave8CaveInfoFi=0x801D74F8 -load__Q34Game4Cave8CaveInfoFPc=0x801D752C -read__Q34Game4Cave8CaveInfoFR6Stream=0x801D7624 -__dt__Q34Game4Cave8CaveInfoFv=0x801D76B4 -__dt__Q34Game4Cave7BaseGenFv=0x801D77A8 -__ct__Q24Game9AILODParmFv=0x801D7808 -__ct__Q24Game5AILODFv=0x801D7824 -updateLOD__Q24Game8CreatureFRQ24Game9AILODParm=0x801D783C -drawLODInfo__Q24Game8CreatureFR8GraphicsR10Vector3=0x801D7BE4 -__sinit_creatureLOD_cpp=0x801D7E3C -stimulate__Q24Game4NaviFRQ24Game11Interaction=0x801D7E64 -actNavi__Q24Game13InteractSaraiFPQ24Game4Navi=0x801D7ED8 -actNavi__Q24Game12InteractBombFPQ24Game4Navi=0x801D7F64 -actNavi__Q24Game12InteractWindFPQ24Game4Navi=0x801D7FE4 -actNavi__Q24Game13InteractDenkiFPQ24Game4Navi=0x801D80C4 -actNavi__Q24Game16InteractFallMeckFPQ24Game4Navi=0x801D8178 -actNavi__Q24Game13InteractFlickFPQ24Game4Navi=0x801D81BC -actNavi__Q24Game13InteractPressFPQ24Game4Navi=0x801D83B4 -actNavi__Q24Game12InteractFireFPQ24Game4Navi=0x801D84A8 -actNavi__Q24Game14InteractBubbleFPQ24Game4Navi=0x801D8560 -actNavi__Q24Game11InteractGasFPQ24Game4Navi=0x801D85F0 -actNavi__Q24Game12InteractBuryFPQ24Game4Navi=0x801D85F8 -actNavi__Q24Game11InteractFueFPQ24Game4Navi=0x801D8654 -actNavi__Q24Game14InteractKaisanFPQ24Game4Navi=0x801D89AC -actNavi__Q24Game14InteractAttackFPQ24Game4Navi=0x801D8A20 -init__Q34Game12ItemPikihead3FSMFPQ34Game12ItemPikihead4Item=0x801D8ABC -init__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801D8D50 -exec__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4Item=0x801D8DE8 -cleanup__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4Item=0x801D8E20 -onPlatCollision__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemRQ24Game9PlatEvent=0x801D8E44 -onBounce__Q34Game12ItemPikihead9FallStateFPQ34Game12ItemPikihead4ItemPQ23Sys8Triangle=0x801D8E6C -transit__Q24Game36FSMStateFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg=0x801D915C -init__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801D918C -exec__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4Item=0x801D9218 -cleanup__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4Item=0x801D9280 -onKeyEvent__Q34Game12ItemPikihead9BuryStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801D9284 -init__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801D9290 -exec__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4Item=0x801D931C -cleanup__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4Item=0x801D9384 -onKeyEvent__Q34Game12ItemPikihead9TaneStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801D9388 -init__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801D9394 -exec__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4Item=0x801D93EC -cleanup__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4Item=0x801D93F0 -onKeyEvent__Q34Game12ItemPikihead11HatugaStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801D93F4 -init__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801D9428 -exec__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4Item=0x801D9514 -cleanup__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4Item=0x801D95B0 -onKeyEvent__Q34Game12ItemPikihead9WaitStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801D95D4 -init__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801D960C -exec__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4Item=0x801D9658 -cleanup__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4Item=0x801D965C -onKeyEvent__Q34Game12ItemPikihead9GrowStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801D9660 -init__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801D972C -exec__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4Item=0x801D97D8 -cleanup__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4Item=0x801D9840 -onKeyEvent__Q34Game12ItemPikihead10SioreStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801D9844 -__ct__Q34Game12ItemPikihead4ItemFv=0x801D9858 -__dt__Q23efx8TPkGlow1Fv=0x801D9A28 -onInit__Q34Game12ItemPikihead4ItemFPQ24Game15CreatureInitArg=0x801D9AC4 -start__Q24Game40StateMachineFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg=0x801D9CE0 -onKill__Q34Game12ItemPikihead4ItemFPQ24Game15CreatureKillArg=0x801D9D14 -kill__Q24Game44FixedSizeItemMgrFPQ34Game12ItemPikihead4Item=0x801D9DA8 -cleanup__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item=0x801D9DCC -needSave__Q34Game12ItemPikihead4ItemFv=0x801D9DD0 -cacheSave__Q34Game12ItemPikihead4ItemFR6Stream=0x801D9DFC -cacheLoad__Q34Game12ItemPikihead4ItemFR6Stream=0x801D9E58 -makeTrMatrix__Q34Game12ItemPikihead4ItemFv=0x801D9EFC -doAI__Q34Game12ItemPikihead4ItemFv=0x801DA0FC -changeMaterial__Q34Game12ItemPikihead4ItemFv=0x801DA23C -onKeyEvent__Q34Game12ItemPikihead4ItemFRCQ28SysShape8KeyEvent=0x801DA388 -onKeyEvent__Q34Game12ItemPikihead5StateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801DA3CC -updateBoundSphere__Q34Game12ItemPikihead4ItemFv=0x801DA3D0 -getLODSphere__Q34Game12ItemPikihead4ItemFRQ23Sys6Sphere=0x801DA3F4 -onSetPosition__Q34Game12ItemPikihead4ItemFv=0x801DA418 -doSimulation__Q34Game12ItemPikihead4ItemFf=0x801DA41C -canPullout__Q34Game12ItemPikihead4ItemFv=0x801DA490 -interactFue__Q34Game12ItemPikihead4ItemFRQ24Game11InteractFue=0x801DA4BC -__ct__Q34Game12ItemPikihead3MgrFv=0x801DA668 -__dt__Q24Game44FixedSizeItemMgrFv=0x801DA73C -__dt__41MonoObjectMgrFv=0x801DA83C -__dt__37ContainerFv=0x801DA8DC -onLoadResources__Q34Game12ItemPikihead3MgrFv=0x801DA94C -doSimpleDraw__Q34Game12ItemPikihead3MgrFP8Viewport=0x801DA9F8 -onCreateModel__Q34Game12ItemPikihead3MgrFPQ28SysShape5Model=0x801DAD70 -birth__Q34Game12ItemPikihead3MgrFv=0x801DADDC -generatorBirth__Q34Game12ItemPikihead3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801DAE7C -__dt__Q34Game12ItemPikihead3MgrFv=0x801DAEDC -generatorGetID__Q34Game12ItemPikihead3MgrFv=0x801DAFF4 -__dt__37ObjectMgrFv=0x801DB000 -birth__Q24Game44FixedSizeItemMgrFv=0x801DB088 -getCreatureName__Q34Game12ItemPikihead4ItemFv=0x801DB0B4 -doAI__Q24Game89FSMItemFv=0x801DB0C0 -onCreateModel__Q24Game44FixedSizeItemMgrFPQ28SysShape5Model=0x801DB0F4 -doAnimation__Q24Game44FixedSizeItemMgrFv=0x801DB0F8 -doEntry__Q24Game44FixedSizeItemMgrFv=0x801DB124 -doSetView__Q24Game44FixedSizeItemMgrFi=0x801DB150 -doViewCalc__Q24Game44FixedSizeItemMgrFv=0x801DB17C -doSimulation__Q24Game44FixedSizeItemMgrFf=0x801DB1A8 -doDirectDraw__Q24Game44FixedSizeItemMgrFR8Graphics=0x801DB1D4 -initDependency__Q24Game44FixedSizeItemMgrFv=0x801DB200 -getNext__Q24Game44FixedSizeItemMgrFPv=0x801DB3E8 -getStart__Q24Game44FixedSizeItemMgrFv=0x801DB414 -createModel__Q24Game44FixedSizeItemMgrFPQ34Game12ItemPikihead4Item=0x801DB440 -onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent=0x801DB470 -onDamage__Q24Game37ItemStateFPQ34Game12ItemPikihead4Itemf=0x801DB4B4 -onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRCQ28SysShape8KeyEvent=0x801DB4B8 -onBounce__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemPQ23Sys8Triangle=0x801DB4BC -onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRQ24Game9PlatEvent=0x801DB4C0 -onCollision__Q24Game37ItemStateFPQ34Game12ItemPikihead4ItemRQ24Game9CollEvent=0x801DB4C4 -init__Q24Game36FSMStateFPQ34Game12ItemPikihead4ItemPQ24Game8StateArg=0x801DB4C8 -exec__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item=0x801DB4CC -resume__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item=0x801DB4D0 -restart__Q24Game36FSMStateFPQ34Game12ItemPikihead4Item=0x801DB4D4 -init__Q24Game40StateMachineFPQ34Game12ItemPikihead4Item=0x801DB4D8 -exec__Q24Game40StateMachineFPQ34Game12ItemPikihead4Item=0x801DB4DC -create__Q24Game40StateMachineFi=0x801DB514 -birth__41MonoObjectMgrFv=0x801DB578 -kill__41MonoObjectMgrFPQ34Game12ItemPikihead4Item=0x801DB5D8 -getNext__41MonoObjectMgrFPv=0x801DB62C -getStart__41MonoObjectMgrFv=0x801DB66C -getEnd__41MonoObjectMgrFv=0x801DB69C -getAt__41MonoObjectMgrFi=0x801DB6A4 -getTo__41MonoObjectMgrFv=0x801DB6B4 -doAnimation__41MonoObjectMgrFv=0x801DB6BC -doEntry__41MonoObjectMgrFv=0x801DB73C -doSetView__41MonoObjectMgrFi=0x801DB7BC -doViewCalc__41MonoObjectMgrFv=0x801DB84C -doSimulation__41MonoObjectMgrFf=0x801DB8CC -doDirectDraw__41MonoObjectMgrFR8Graphics=0x801DB95C -resetMgr__41MonoObjectMgrFv=0x801DB9EC -clearMgr__41MonoObjectMgrFv=0x801DBA04 -onAlloc__41MonoObjectMgrFv=0x801DBA34 -getEmptyIndex__41MonoObjectMgrFv=0x801DBA38 -get__41MonoObjectMgrFPv=0x801DBA74 -doAnimation__37ObjectMgrFv=0x801DBA84 -doEntry__37ObjectMgrFv=0x801DBC68 -doSetView__37ObjectMgrFi=0x801DBE4C -doViewCalc__37ObjectMgrFv=0x801DC040 -doSimulation__37ObjectMgrFf=0x801DC224 -doDirectDraw__37ObjectMgrFR8Graphics=0x801DC418 -getObject__37ContainerFPv=0x801DC60C -getAt__37ContainerFi=0x801DC638 -getTo__37ContainerFv=0x801DC640 -__ct__41MonoObjectMgrFv=0x801DC648 -transit__Q24Game40StateMachineFPQ34Game12ItemPikihead4ItemiPQ24Game8StateArg=0x801DC6E4 -registerState__Q24Game40StateMachineFPQ24Game36FSMState=0x801DC780 -getStateID__Q24Game89FSMItemFv=0x801DC804 -platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent=0x801DC820 -collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent=0x801DC864 -bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle=0x801DC8A8 -getEnd__Q24Game44FixedSizeItemMgrFv=0x801DC8EC -get__Q24Game44FixedSizeItemMgrFPv=0x801DC918 -killAll__Q24Game44FixedSizeItemMgrFv=0x801DC944 -createModelCallback__Q24Game44FixedSizeItemMgrFPQ28SysShape5Model=0x801DCA24 -createMgr__Q24Game44FixedSizeItemMgrFiUl=0x801DCA50 -onAlloc__Q24Game44FixedSizeItemMgrFv=0x801DCB34 -alloc__41MonoObjectMgrFi=0x801DCB98 -invoke__83Delegate1,PQ28SysShape5Model>FPQ28SysShape5Model=0x801DCD20 -__sinit_itemPikihead_cpp=0x801DCD50 -@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent=0x801DCD78 -@4@__dt__Q23efx8TPkGlow1Fv=0x801DCD80 -@376@onKeyEvent__Q34Game12ItemPikihead4ItemFRCQ28SysShape8KeyEvent=0x801DCD88 -@48@__dt__Q24Game44FixedSizeItemMgrFv=0x801DCD90 -@28@resetMgr__41MonoObjectMgrFv=0x801DCD98 -@28@doDirectDraw__41MonoObjectMgrFR8Graphics=0x801DCDA0 -@28@doSimulation__41MonoObjectMgrFf=0x801DCDA8 -@28@doViewCalc__41MonoObjectMgrFv=0x801DCDB0 -@28@doSetView__41MonoObjectMgrFi=0x801DCDB8 -@28@doEntry__41MonoObjectMgrFv=0x801DCDC0 -@28@doAnimation__41MonoObjectMgrFv=0x801DCDC8 -@28@doDirectDraw__37ObjectMgrFR8Graphics=0x801DCDD0 -@28@doSimulation__37ObjectMgrFf=0x801DCDD8 -@28@doViewCalc__37ObjectMgrFv=0x801DCDE0 -@28@doSetView__37ObjectMgrFi=0x801DCDE8 -@28@doEntry__37ObjectMgrFv=0x801DCDF0 -@28@doAnimation__37ObjectMgrFv=0x801DCDF8 -@48@getEnd__Q24Game44FixedSizeItemMgrFv=0x801DCE00 -@48@getStart__Q24Game44FixedSizeItemMgrFv=0x801DCE08 -@48@getNext__Q24Game44FixedSizeItemMgrFPv=0x801DCE10 -@48@get__Q24Game44FixedSizeItemMgrFPv=0x801DCE18 -@48@__dt__Q34Game12ItemPikihead3MgrFv=0x801DCE20 -init__Q34Game9ItemPlant3FSMFPQ34Game9ItemPlant4Item=0x801DCE28 -init__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg=0x801DCFB4 -startMotion__Q34Game9ItemPlant4ItemFi=0x801DCFE8 -exec__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item=0x801DCFEC -bearFruits__Q34Game9ItemPlant4ItemFv=0x801DD114 -transit__Q24Game32FSMStateFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg=0x801DD118 -cleanup__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item=0x801DD148 -eventKarero__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Item=0x801DD14C -onDamage__Q34Game9ItemPlant11NormalStateFPQ34Game9ItemPlant4Itemf=0x801DD180 -init__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg=0x801DD1DC -exec__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item=0x801DD224 -cleanup__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item=0x801DD228 -eventKarero__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Item=0x801DD22C -onKeyEvent__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent=0x801DD238 -onDamage__Q34Game9ItemPlant12DamagedStateFPQ34Game9ItemPlant4Itemf=0x801DD294 -init__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg=0x801DD2B8 -exec__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item=0x801DD32C -cleanup__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item=0x801DD330 -eventKarero__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Item=0x801DD334 -onKeyEvent__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent=0x801DD340 -onDamage__Q34Game9ItemPlant11GrowUpStateFPQ34Game9ItemPlant4Itemf=0x801DD460 -init__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg=0x801DD484 -killFruits__Q34Game9ItemPlant4ItemFv=0x801DD500 -exec__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item=0x801DD504 -cleanup__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item=0x801DD590 -eventHaero__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Item=0x801DD594 -onKeyEvent__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent=0x801DD5AC -onDamage__Q34Game9ItemPlant11KareruStateFPQ34Game9ItemPlant4Itemf=0x801DD650 -constructor__Q34Game9ItemPlant4ItemFv=0x801DD654 -onInit__Q34Game9ItemPlant4ItemFPQ24Game15CreatureInitArg=0x801DD69C -onStickStart__Q34Game9ItemPlant4ItemFPQ24Game8Creature=0x801DD6F4 -onStickEnd__Q34Game9ItemPlant4ItemFPQ24Game8Creature=0x801DD71C -onSetPosition__Q34Game9ItemPlant4ItemFv=0x801DD758 -updateTrMatrix__Q34Game9ItemPlant4ItemFv=0x801DD780 -startColorMotion__Q34Game9ItemPlant4ItemFi=0x801DD7C4 -updateColorMotion__Q34Game9ItemPlant4ItemFf=0x801DD7EC -doAI__Q34Game9ItemPlant4ItemFv=0x801DD87C -interactAttack__Q34Game9ItemPlant4ItemFRQ24Game14InteractAttack=0x801DD8B0 -onDamage__Q24Game33ItemStateFPQ34Game9ItemPlant4Itemf=0x801DD8F4 -interactFarmKarero__Q34Game9ItemPlant4ItemFRQ24Game18InteractFarmKarero=0x801DD8F8 -eventKarero__Q34Game9ItemPlant5StateFPQ34Game9ItemPlant4Item=0x801DD930 -interactFarmHaero__Q34Game9ItemPlant4ItemFRQ24Game17InteractFarmHaero=0x801DD934 -eventHaero__Q34Game9ItemPlant5StateFPQ34Game9ItemPlant4Item=0x801DD96C -doDirectDraw__Q34Game9ItemPlant4ItemFR8Graphics=0x801DD970 -addDamage__Q34Game9ItemPlant4ItemFf=0x801DDA90 -dropFruit__Q34Game9ItemPlant4ItemFi=0x801DDD24 -calcAngles__Q34Game9ItemPlant12ProcAnimatorFv=0x801DDD28 -update__Q34Game9ItemPlant12ProcAnimatorFff=0x801DE040 -onKill__Q34Game9ItemPlant5PlantFPQ24Game15CreatureKillArg=0x801DE524 -getNearestFruit__Q34Game9ItemPlant5PlantFR10Vector3=0x801DE558 -updateBoundSphere__Q34Game9ItemPlant5PlantFv=0x801DE590 -doDirectDraw__Q34Game9ItemPlant5PlantFR8Graphics=0x801DE5B4 -onInit__Q34Game9ItemPlant5PlantFPQ24Game15CreatureInitArg=0x801DE794 -start__Q24Game36StateMachineFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg=0x801DEF0C -doAI__Q34Game9ItemPlant5PlantFv=0x801DEF40 -startMotion__Q34Game9ItemPlant5PlantFi=0x801DEFC0 -setColor__Q34Game9ItemPlant5PlantFf=0x801DF330 -do_updateLOD__Q34Game9ItemPlant5PlantFv=0x801DF348 -doAnimation__Q34Game9ItemPlant5PlantFv=0x801DF368 -bearFruits__Q34Game9ItemPlant5PlantFv=0x801DF618 -killFruits__Q34Game9ItemPlant5PlantFv=0x801DF644 -dropFruit__Q34Game9ItemPlant5PlantFi=0x801DF668 -hasFruits__Q34Game9ItemPlant5PlantFv=0x801DF6E8 -getFruitsNum__Q34Game9ItemPlant5PlantFv=0x801DF70C -interactEat__Q34Game9ItemPlant5PlantFRQ24Game11InteractEat=0x801DF730 -__ct__Q34Game9ItemPlant3MgrFv=0x801DF900 -read__Q34Game9ItemPlant10PlantParmsFR6Stream=0x801DFA20 -__ct__Q34Game9ItemPlant10PlantParmsFv=0x801DFA44 -birth__Q34Game9ItemPlant3MgrFv=0x801DFD5C -onLoadResources__Q34Game9ItemPlant3MgrFv=0x801DFE8C -generatorNewItemParm__Q34Game9ItemPlant3MgrFv=0x801DFF40 -generatorWrite__Q34Game9ItemPlant3MgrFR6StreamPQ24Game11GenItemParm=0x801DFF8C -generatorRead__Q34Game9ItemPlant3MgrFR6StreamPQ24Game11GenItemParmUl=0x801E0014 -generatorBirth__Q34Game9ItemPlant3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801E009C -init__Q34Game9ItemPlant6FruitsFiP7Matrixf=0x801E0150 -__dt__Q34Game9ItemPlant9FruitSlotFv=0x801E01C4 -update__Q34Game9ItemPlant6FruitsFv=0x801E0224 -bearAll__Q34Game9ItemPlant6FruitsFUs=0x801E0288 -hasFruits__Q34Game9ItemPlant6FruitsFv=0x801E053C -countFruits__Q34Game9ItemPlant6FruitsFv=0x801E057C -killAll__Q34Game9ItemPlant6FruitsFv=0x801E05BC -getFruit__Q34Game9ItemPlant6FruitsFR10Vector3=0x801E0620 -__ct__Q34Game9ItemPlant9FruitSlotFv=0x801E072C -setFruit__Q34Game9ItemPlant9FruitSlotFPQ24Game6PelletP7MatrixfR7Matrixf=0x801E0778 -dropFruit__Q34Game9ItemPlant9FruitSlotFv=0x801E07C8 -killFruit__Q34Game9ItemPlant9FruitSlotFv=0x801E0808 -update__Q34Game9ItemPlant9FruitSlotFv=0x801E084C -__dt__Q34Game9ItemPlant3MgrFv=0x801E0880 -doNew__Q34Game9ItemPlant3MgrFv=0x801E09B4 -generatorGetID__Q34Game9ItemPlant3MgrFv=0x801E0ACC -generatorLocalVersion__Q34Game9ItemPlant3MgrFv=0x801E0AD8 -changeMaterial__Q34Game9ItemPlant4ItemFv=0x801E0AE4 -setColor__Q34Game9ItemPlant4ItemFf=0x801E0B14 -hasFruits__Q34Game9ItemPlant4ItemFv=0x801E0B18 -getFruitsNum__Q34Game9ItemPlant4ItemFv=0x801E0B20 -getNearestFruit__Q34Game9ItemPlant4ItemFR10Vector3=0x801E0B28 -doAI__Q24Game77FSMItemFv=0x801E0B30 -onKeyEvent__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRCQ28SysShape8KeyEvent=0x801E0B64 -onBounce__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemPQ23Sys8Triangle=0x801E0B68 -onPlatCollision__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRQ24Game9PlatEvent=0x801E0B6C -onCollision__Q24Game33ItemStateFPQ34Game9ItemPlant4ItemRQ24Game9CollEvent=0x801E0B70 -init__Q24Game32FSMStateFPQ34Game9ItemPlant4ItemPQ24Game8StateArg=0x801E0B74 -exec__Q24Game32FSMStateFPQ34Game9ItemPlant4Item=0x801E0B78 -cleanup__Q24Game32FSMStateFPQ34Game9ItemPlant4Item=0x801E0B7C -resume__Q24Game32FSMStateFPQ34Game9ItemPlant4Item=0x801E0B80 -restart__Q24Game32FSMStateFPQ34Game9ItemPlant4Item=0x801E0B84 -init__Q24Game36StateMachineFPQ34Game9ItemPlant4Item=0x801E0B88 -exec__Q24Game36StateMachineFPQ34Game9ItemPlant4Item=0x801E0B8C -create__Q24Game36StateMachineFi=0x801E0BC4 -transit__Q24Game36StateMachineFPQ34Game9ItemPlant4ItemiPQ24Game8StateArg=0x801E0C28 -registerState__Q24Game36StateMachineFPQ24Game32FSMState=0x801E0CC4 -onKeyEvent__Q24Game77FSMItemFRCQ28SysShape8KeyEvent=0x801E0D48 -getStateID__Q24Game77FSMItemFv=0x801E0D8C -platCallback__Q24Game77FSMItemFRQ24Game9PlatEvent=0x801E0DA8 -collisionCallback__Q24Game77FSMItemFRQ24Game9CollEvent=0x801E0DEC -bounceCallback__Q24Game77FSMItemFPQ23Sys8Triangle=0x801E0E30 -@376@onKeyEvent__Q24Game77FSMItemFRCQ28SysShape8KeyEvent=0x801E0E74 -@48@__dt__Q34Game9ItemPlant3MgrFv=0x801E0E7C -init__Q34Game8ItemRock3FSMFPQ34Game8ItemRock4Item=0x801E0E84 -init__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg=0x801E0FB8 -exec__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Item=0x801E0FF4 -transit__Q24Game31FSMStateFPQ34Game8ItemRock4ItemiPQ24Game8StateArg=0x801E1084 -cleanup__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Item=0x801E10B4 -onDamage__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4Itemf=0x801E10B8 -onKeyEvent__Q34Game8ItemRock11NormalStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent=0x801E1174 -init__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg=0x801E126C -exec__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Item=0x801E12B4 -cleanup__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Item=0x801E12B8 -onDamage__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4Itemf=0x801E12BC -onKeyEvent__Q34Game8ItemRock9DownStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent=0x801E12CC -init__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg=0x801E13BC -exec__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Item=0x801E1414 -cleanup__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Item=0x801E1418 -onDamage__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4Itemf=0x801E141C -onKeyEvent__Q34Game8ItemRock7UpStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent=0x801E142C -constructor__Q34Game8ItemRock4ItemFv=0x801E14F8 -onInit__Q34Game8ItemRock4ItemFPQ24Game15CreatureInitArg=0x801E1540 -start__Q24Game35StateMachineFPQ34Game8ItemRock4ItemiPQ24Game8StateArg=0x801E174C -onKill__Q34Game8ItemRock4ItemFPQ24Game15CreatureKillArg=0x801E1780 -onSetPosition__Q34Game8ItemRock4ItemFv=0x801E17B4 -onKeyEvent__Q34Game8ItemRock4ItemFRCQ28SysShape8KeyEvent=0x801E1810 -onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRCQ28SysShape8KeyEvent=0x801E1854 -startLoopEffect__Q34Game8ItemRock4ItemFv=0x801E1858 -finishLoopEffect__Q34Game8ItemRock4ItemFv=0x801E1964 -startFukuEffect__Q34Game8ItemRock4ItemFR10Vector3=0x801E19C8 -doLoad__Q34Game8ItemRock4ItemFR6Stream=0x801E1A78 -doSave__Q34Game8ItemRock4ItemFR6Stream=0x801E1C7C -updateBoundSphere__Q34Game8ItemRock4ItemFv=0x801E1CD4 -doAI__Q34Game8ItemRock4ItemFv=0x801E1D1C -initMotion__Q34Game8ItemRock4ItemFv=0x801E1ED0 -on_movie_end__Q34Game8ItemRock4ItemFb=0x801E1EF0 -startWaitMotion__Q34Game8ItemRock4ItemFv=0x801E1F10 -startDamageMotion__Q34Game8ItemRock4ItemFv=0x801E203C -startDownMotion__Q34Game8ItemRock4ItemFv=0x801E20D8 -startUpMotion__Q34Game8ItemRock4ItemFv=0x801E2364 -getVectorField__Q34Game8ItemRock4ItemFRQ23Sys6SphereR10Vector3=0x801E2450 -getWorkDistance__Q34Game8ItemRock4ItemFRQ23Sys6Sphere=0x801E2564 -createRock__Q34Game8ItemRock4ItemFi=0x801E25EC -interactAttack__Q34Game8ItemRock4ItemFRQ24Game14InteractAttack=0x801E2780 -onDamage__Q34Game8ItemRock5StateFPQ34Game8ItemRock4Itemf=0x801E28F4 -getWorkRadius__Q34Game8ItemRock4ItemFv=0x801E28F8 -__ct__Q34Game8ItemRock3MgrFv=0x801E2920 -read__Q34Game8ItemRock9RockParmsFR6Stream=0x801E2A40 -__ct__Q34Game8ItemRock9RockParmsFv=0x801E2A64 -__ct__Q44Game8ItemRock9RockParms5ParmsFv=0x801E2C08 -birth__Q34Game8ItemRock3MgrFv=0x801E2EF8 -generatorBirth__Q34Game8ItemRock3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801E3008 -onLoadResources__Q34Game8ItemRock3MgrFv=0x801E3068 -__dt__Q34Game8ItemRock3MgrFv=0x801E3110 -doNew__Q34Game8ItemRock3MgrFv=0x801E3244 -generatorGetID__Q34Game8ItemRock3MgrFv=0x801E333C -getName__Q23efx9ArgKouhaiFv=0x801E3348 -getCreatureName__Q34Game8ItemRock4ItemFv=0x801E3354 -doAI__Q24Game74FSMItemFv=0x801E3360 -onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent=0x801E3394 -onDamage__Q24Game32ItemStateFPQ34Game8ItemRock4Itemf=0x801E33D8 -onBounce__Q24Game32ItemStateFPQ34Game8ItemRock4ItemPQ23Sys8Triangle=0x801E33DC -onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRQ24Game9PlatEvent=0x801E33E0 -onCollision__Q24Game32ItemStateFPQ34Game8ItemRock4ItemRQ24Game9CollEvent=0x801E33E4 -init__Q24Game31FSMStateFPQ34Game8ItemRock4ItemPQ24Game8StateArg=0x801E33E8 -exec__Q24Game31FSMStateFPQ34Game8ItemRock4Item=0x801E33EC -cleanup__Q24Game31FSMStateFPQ34Game8ItemRock4Item=0x801E33F0 -resume__Q24Game31FSMStateFPQ34Game8ItemRock4Item=0x801E33F4 -restart__Q24Game31FSMStateFPQ34Game8ItemRock4Item=0x801E33F8 -init__Q24Game35StateMachineFPQ34Game8ItemRock4Item=0x801E33FC -exec__Q24Game35StateMachineFPQ34Game8ItemRock4Item=0x801E3400 -create__Q24Game35StateMachineFi=0x801E3438 -transit__Q24Game35StateMachineFPQ34Game8ItemRock4ItemiPQ24Game8StateArg=0x801E349C -registerState__Q24Game35StateMachineFPQ24Game31FSMState=0x801E3538 -platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent=0x801E35BC -collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent=0x801E3600 -bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle=0x801E3644 -@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent=0x801E3688 -@376@onKeyEvent__Q34Game8ItemRock4ItemFRCQ28SysShape8KeyEvent=0x801E3690 -@48@__dt__Q34Game8ItemRock3MgrFv=0x801E3698 -__ct__Q26PikiAI12ActBreakRockFPQ24Game4Piki=0x801E36A0 -init__Q26PikiAI12ActBreakRockFPQ26PikiAI9ActionArg=0x801E3798 -initFollow__Q26PikiAI12ActBreakRockFv=0x801E3858 -exec__Q26PikiAI12ActBreakRockFv=0x801E38C0 -cleanup__Q26PikiAI12ActBreakRockFv=0x801E3BEC -platCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiRQ24Game9PlatEvent=0x801E3C48 -collisionCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiRQ24Game9CollEvent=0x801E3D38 -bounceCallback__Q26PikiAI12ActBreakRockFPQ24Game4PikiPQ23Sys8Triangle=0x801E3E34 -onKeyEvent__Q26PikiAI12ActBreakRockFRCQ28SysShape8KeyEvent=0x801E3E38 -@48@4@onKeyEvent__Q26PikiAI12ActBreakRockFRCQ28SysShape8KeyEvent=0x801E3E3C -__ct__Q26PikiAI7ActCropFPQ24Game4Piki=0x801E3E50 -init__Q26PikiAI7ActCropFPQ26PikiAI9ActionArg=0x801E3F24 -execClimb__Q26PikiAI7ActCropFv=0x801E402C -initGoto__Q26PikiAI7ActCropFv=0x801E42F4 -initAttack__Q26PikiAI7ActCropFv=0x801E438C -exec__Q26PikiAI7ActCropFv=0x801E4488 -cleanup__Q26PikiAI7ActCropFv=0x801E4B34 -collisionCallback__Q26PikiAI7ActCropFPQ24Game4PikiRQ24Game9CollEvent=0x801E4B74 -onKeyEvent__Q26PikiAI7ActCropFRCQ28SysShape8KeyEvent=0x801E4B78 -getNextAIType__Q26PikiAI7ActCropFv=0x801E4B7C -@64@4@onKeyEvent__Q26PikiAI7ActCropFRCQ28SysShape8KeyEvent=0x801E4B84 -createManagers__Q24Game7ItemMgrFUl=0x801E4B98 -clearGlobalPointers__Q24Game7ItemMgrFv=0x801E51FC -killAllExceptOnyonMgr__Q24Game7ItemMgrFv=0x801E5244 -__sinit_registItem_cpp=0x801E532C -__ct__Q24Game11KindCounterFv=0x801E5354 -alloc__Q24Game11KindCounterFi=0x801E5364 -clear__Q24Game11KindCounterFv=0x801E53D8 -__cl__Q24Game11KindCounterFi=0x801E5400 -createClone__Q24Game16PelletCropMemoryFv=0x801E5478 -addTo__Q24Game16PelletCropMemoryFPQ24Game16PelletCropMemory=0x801E56F8 -clear__Q24Game16PelletCropMemoryFv=0x801E5840 -calcEarnKinds__Q24Game16PelletCropMemoryFv=0x801E58B0 -firstCarryPellet__Q24Game17PelletFirstMemoryFPQ24Game6Pellet=0x801E58F8 -obtainPellet__Q24Game17PelletFirstMemoryFPQ24Game13BasePelletMgri=0x801E5BC0 -losePellet__Q24Game17PelletFirstMemoryFPQ24Game13BasePelletMgri=0x801E5D14 -isCompletePelletTrigger__Q24Game8PlayDataFv=0x801E5E68 -completeAll__Q24Game16PelletCropMemoryFv=0x801E5EB4 -completeAll__Q24Game11KindCounterFv=0x801E5F0C -getEarnKinds__Q24Game11KindCounterFv=0x801E5F48 -__ct__Q24Game10OlimarDataFv=0x801E5F84 -clear__Q24Game10OlimarDataFv=0x801E5FC0 -hasItem__Q24Game10OlimarDataFi=0x801E5FD0 -getItem__Q24Game10OlimarDataFi=0x801E6068 -construct__Q24Game8PlayDataFv=0x801E6134 -__ct__Q24Game8PlayDataFv=0x801E61B8 -__ct__Q34Game8PlayData11CaveOtakaraFv=0x801E6A0C -__ct__Q34Game8PlayData8LimitGenFv=0x801E6A20 -__dt__Q24Game8PlayDataFv=0x801E6A58 -reset__Q24Game8PlayDataFv=0x801E6AC0 -setDevelopSetting__Q24Game8PlayDataFbb=0x801E6E90 -calcPlayMinutes__Q24Game8PlayDataFv=0x801E6F58 -resetContainerFlag__Q24Game8PlayDataFv=0x801E700C -hasContainer__Q24Game8PlayDataFi=0x801E7020 -hasMetPikmin__Q24Game8PlayDataFi=0x801E70A8 -hasBootContainer__Q24Game8PlayDataFi=0x801E70D8 -setContainer__Q24Game8PlayDataFi=0x801E717C -setMeetPikmin__Q24Game8PlayDataFi=0x801E71FC -setBootContainer__Q24Game8PlayDataFi=0x801E727C -debugSetContainerFlagOn__Q24Game8PlayDataFv=0x801E72FC -setDemoFlag__Q24Game8PlayDataFi=0x801E73A4 -isDemoFlag__Q24Game8PlayDataFi=0x801E73E0 -setFindItemDemoFlag__Q24Game8PlayDataFi=0x801E7408 -isFindItemDemoFlag__Q24Game8PlayDataFi=0x801E7444 -setCurrentCourse__Q24Game8PlayDataFi=0x801E746C -clearCurrentCave__Q24Game8PlayDataFv=0x801E7474 -setCurrentCave__Q24Game8PlayDataFR4ID32i=0x801E7480 -setCurrentCaveFloor__Q24Game8PlayDataFi=0x801E74CC -getCurrentCourseIndex__Q24Game8PlayDataFv=0x801E74DC -getCurrentCourse__Q24Game8PlayDataFv=0x801E74E4 -getCurrentCave__Q24Game8PlayDataFR4ID32Ri=0x801E751C -firstCarryPellet__Q24Game8PlayDataFPQ24Game6Pellet=0x801E7564 -obtainPellet__Q24Game8PlayDataFPQ24Game13BasePelletMgri=0x801E7594 -losePellet__Q24Game8PlayDataFPQ24Game13BasePelletMgri=0x801E75C4 -obtainPellet_Main__Q24Game8PlayDataFPQ24Game6Pellet=0x801E75F4 -obtainPellet_Cave__Q24Game8PlayDataFPQ24Game6Pellet=0x801E7914 -isPelletEverGot__Q24Game8PlayDataFUcUc=0x801E7B98 -isPelletZukanVisible__Q24Game8PlayDataFi=0x801E7C9C -isPelletZukanWhatsNew__Q24Game8PlayDataFi=0x801E7DC4 -hasPelletZukanWhatsNew__Q24Game8PlayDataFv=0x801E7EFC -setPelletZukanOutOfDateAll__Q24Game8PlayDataFv=0x801E80B8 -getGroundOtakaraNum__Q24Game8PlayDataFi=0x801E8260 -getGroundOtakaraMax__Q24Game8PlayDataFi=0x801E82DC -incGroundOtakara__Q24Game8PlayDataFi=0x801E8354 -getDopeCount__Q24Game8PlayDataFi=0x801E83D8 -setDopeCount__Q24Game8PlayDataFii=0x801E8450 -incDopeCount__Q24Game8PlayDataFi=0x801E84D4 -hasDope__Q24Game8PlayDataFi=0x801E8554 -getDopeFruitCount__Q24Game8PlayDataFi=0x801E85D8 -addDopeFruit__Q24Game8PlayDataFi=0x801E8650 -useDope__Q24Game8PlayDataFi=0x801E8704 -isCaveFirstTime__Q24Game8PlayDataFiR4ID32=0x801E87C8 -setCaveVisit__Q24Game8PlayDataFiR4ID32=0x801E88A4 -incCaveOtakara__Q24Game8PlayDataFiR4ID32=0x801E8960 -getOtakaraNum_Course_CaveID__Q24Game8PlayDataFiR4ID32=0x801E8A18 -getOtakaraMax_Course_CaveID__Q24Game8PlayDataFiR4ID32=0x801E8AD0 -initCaveOtakaras__Q24Game8PlayDataFv=0x801E8B18 -read_CaveOtakara__Q24Game8PlayDataFR6Stream=0x801E8BEC -write_CaveOtakara__Q24Game8PlayDataFR6Stream=0x801E8C4C -write__Q34Game8PlayData11CaveOtakaraFR6Stream=0x801E8CC4 -read__Q34Game8PlayData11CaveOtakaraFR6Stream=0x801E8D9C -getRepayLevel__Q24Game8PlayDataFv=0x801E8E5C -getRepayLevelPercent__Q24Game8PlayDataFi=0x801E8F80 -checkRepayLevelFirstClear__Q24Game8PlayDataFv=0x801E8FC4 -experienceRepayLevelFirstClear__Q24Game8PlayDataFv=0x801E9124 -initLimitGens__Q24Game8PlayDataFv=0x801E9298 -initCourses__Q24Game8PlayDataFb=0x801E92FC -openCourse__Q24Game8PlayDataFi=0x801E9368 -visitCourse__Q24Game8PlayDataFi=0x801E93FC -courseOpen__Q24Game8PlayDataFi=0x801E9480 -courseJustOpen__Q24Game8PlayDataFi=0x801E9500 -courseFirstTime__Q24Game8PlayDataFi=0x801E95E4 -courseVisited__Q24Game8PlayDataFi=0x801E96C0 -__ct__Q24Game12CaveSaveDataFv=0x801E9740 -clear__Q24Game12CaveSaveDataFv=0x801E97C4 -doneWorldMapEffect__Q24Game8PlayDataFv=0x801E982C -getGroundOtakaraNum_Old__Q24Game8PlayDataFi=0x801E99C0 -getOtakaraNum_Course_CaveID_Old__Q24Game8PlayDataFiR4ID32=0x801E9A3C -getMoney_Old__Q24Game8PlayDataFv=0x801E9AF4 -isCaveFirstTime_Old__Q24Game8PlayDataFiR4ID32=0x801E9AFC -read_CaveOtakara_Old__Q24Game8PlayDataFR6Stream=0x801E9BA0 -write_CaveOtakara_Old__Q24Game8PlayDataFR6Stream=0x801E9C74 -getPikminCount_Today__Q24Game8PlayDataFi=0x801E9D8C -getPikminCount_Yesterday__Q24Game8PlayDataFi=0x801E9E04 -setPikminCounts_Today__Q24Game8PlayDataFv=0x801E9E7C -setPikminCounts_Yesterday__Q24Game8PlayDataFv=0x801E9F84 -init__Q34Game8ItemCave3FSMFPQ34Game8ItemCave4Item=0x801E9FB8 -init__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg=0x801EA090 -exec__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4Item=0x801EA094 -cleanup__Q34Game8ItemCave11NormalStateFPQ34Game8ItemCave4Item=0x801EA098 -init__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg=0x801EA09C -exec__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4Item=0x801EA0A0 -cleanup__Q34Game8ItemCave9OpenStateFPQ34Game8ItemCave4Item=0x801EA0A4 -__ct__Q34Game8ItemCave4ItemFv=0x801EA0A8 -__ct__Q34Game8ItemCave7FogParmFv=0x801EA18C -onInit__Q34Game8ItemCave4ItemFPQ24Game15CreatureInitArg=0x801EA440 -start__Q24Game35StateMachineFPQ34Game8ItemCave4ItemiPQ24Game8StateArg=0x801EA4B8 -makeTrMatrix__Q34Game8ItemCave4ItemFv=0x801EA4EC -onSetPosition__Q34Game8ItemCave4ItemFv=0x801EA530 -initDependency__Q34Game8ItemCave4ItemFv=0x801EA794 -sound_culling__Q34Game8ItemCave4ItemFv=0x801EAAA8 -changeMaterial__Q34Game8ItemCave4ItemFv=0x801EAB34 -createLightEvent__Q34Game8ItemCave4ItemFv=0x801EAB90 -do_setLODParm__Q34Game8ItemCave4ItemFRQ24Game9AILODParm=0x801EACDC -doAI__Q34Game8ItemCave4ItemFv=0x801EACF0 -getCaveOtakaraNum__Q34Game8ItemCave4ItemFv=0x801EAF04 -getCaveOtakaraMax__Q34Game8ItemCave4ItemFv=0x801EAF64 -complete__Q34Game8ItemCave4ItemFv=0x801EAFC4 -doDirectDraw__Q34Game8ItemCave4ItemFR8Graphics=0x801EB078 -__ct__Q34Game8ItemCave3MgrFv=0x801EB268 -onLoadResources__Q34Game8ItemCave3MgrFv=0x801EB2E4 -setup__Q34Game8ItemCave3MgrFPQ24Game8BaseItem=0x801EB3C8 -generatorNewItemParm__Q34Game8ItemCave3MgrFv=0x801EB43C -__ct__11GenCaveParmFv=0x801EB474 -generatorWrite__Q34Game8ItemCave3MgrFR6StreamPQ24Game11GenItemParm=0x801EB580 -generatorRead__Q34Game8ItemCave3MgrFR6StreamPQ24Game11GenItemParmUl=0x801EB660 -generatorBirth__Q34Game8ItemCave3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801EB878 -__as__Q34Game8ItemCave7FogParmFRCQ34Game8ItemCave7FogParm=0x801EB974 -__dt__Q34Game8ItemCave3MgrFv=0x801EBC58 -doNew__Q34Game8ItemCave3MgrFv=0x801EBD8C -generatorGetID__Q34Game8ItemCave3MgrFv=0x801EBDC4 -generatorLocalVersion__Q34Game8ItemCave3MgrFv=0x801EBDD0 -getCreatureName__Q34Game8ItemCave4ItemFv=0x801EBDDC -getFaceDir__Q34Game8ItemCave4ItemFv=0x801EBDE4 -doAI__Q24Game74FSMItemFv=0x801EBDEC -onDamage__Q24Game32ItemStateFPQ34Game8ItemCave4Itemf=0x801EBE20 -onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRCQ28SysShape8KeyEvent=0x801EBE24 -onBounce__Q24Game32ItemStateFPQ34Game8ItemCave4ItemPQ23Sys8Triangle=0x801EBE28 -onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRQ24Game9PlatEvent=0x801EBE2C -onCollision__Q24Game32ItemStateFPQ34Game8ItemCave4ItemRQ24Game9CollEvent=0x801EBE30 -init__Q24Game31FSMStateFPQ34Game8ItemCave4ItemPQ24Game8StateArg=0x801EBE34 -exec__Q24Game31FSMStateFPQ34Game8ItemCave4Item=0x801EBE38 -cleanup__Q24Game31FSMStateFPQ34Game8ItemCave4Item=0x801EBE3C -resume__Q24Game31FSMStateFPQ34Game8ItemCave4Item=0x801EBE40 -restart__Q24Game31FSMStateFPQ34Game8ItemCave4Item=0x801EBE44 -transit__Q24Game31FSMStateFPQ34Game8ItemCave4ItemiPQ24Game8StateArg=0x801EBE48 -init__Q24Game35StateMachineFPQ34Game8ItemCave4Item=0x801EBE78 -create__Q24Game35StateMachineFi=0x801EBE7C -size__8ParmFv=0x801EBEE0 -transit__Q24Game35StateMachineFPQ34Game8ItemCave4ItemiPQ24Game8StateArg=0x801EBEE8 -registerState__Q24Game35StateMachineFPQ24Game31FSMState=0x801EBF84 -exec__Q24Game35StateMachineFPQ34Game8ItemCave4Item=0x801EC008 -onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent=0x801EC040 -platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent=0x801EC084 -collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent=0x801EC0C8 -bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle=0x801EC10C -__sinit_itemCave_cpp=0x801EC150 -@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent=0x801EC178 -@48@__dt__Q34Game8ItemCave3MgrFv=0x801EC180 -init__Q34Game15ItemBigFountain3FSMFPQ34Game15ItemBigFountain4Item=0x801EC188 -init__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg=0x801EC314 -exec__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4Item=0x801EC35C -transit__Q24Game39FSMStateFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg=0x801EC428 -cleanup__Q34Game15ItemBigFountain11AppearStateFPQ34Game15ItemBigFountain4Item=0x801EC458 -init__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg=0x801EC45C -exec__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4Item=0x801EC498 -cleanup__Q34Game15ItemBigFountain10CloseStateFPQ34Game15ItemBigFountain4Item=0x801EC4AC -init__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg=0x801EC4B0 -exec__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Item=0x801EC4F4 -cleanup__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Item=0x801EC528 -onDamage__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4Itemf=0x801EC52C -onKeyEvent__Q34Game15ItemBigFountain9WaitStateFPQ34Game15ItemBigFountain4ItemRCQ28SysShape8KeyEvent=0x801EC5C0 -init__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg=0x801EC5CC -exec__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4Item=0x801EC6E8 -cleanup__Q34Game15ItemBigFountain8OutStateFPQ34Game15ItemBigFountain4Item=0x801EC71C -movieUserCommand__Q34Game15ItemBigFountain4ItemFUlPQ24Game11MoviePlayer=0x801EC720 -interactGotKey__Q34Game15ItemBigFountain4ItemFRQ24Game14InteractGotKey=0x801EC924 -constructor__Q34Game15ItemBigFountain4ItemFv=0x801ECA2C -onInit__Q34Game15ItemBigFountain4ItemFPQ24Game15CreatureInitArg=0x801ECA74 -start__Q24Game43StateMachineFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg=0x801ECCF8 -initDependency__Q34Game15ItemBigFountain4ItemFv=0x801ECD2C -update__Q34Game15ItemBigFountain4ItemFv=0x801ECD80 -killAllEffect__Q34Game15ItemBigFountain4ItemFv=0x801ECE40 -makeTrMatrix__Q34Game15ItemBigFountain4ItemFv=0x801ECEA0 -onSetPosition__Q34Game15ItemBigFountain4ItemFv=0x801ECF08 -doAI__Q34Game15ItemBigFountain4ItemFv=0x801ED020 -doDirectDraw__Q34Game15ItemBigFountain4ItemFR8Graphics=0x801ED0C0 -updateBoundSphere__Q34Game15ItemBigFountain4ItemFv=0x801ED22C -doSimulation__Q34Game15ItemBigFountain4ItemFf=0x801ED264 -canRide__Q34Game15ItemBigFountain4ItemFv=0x801ED268 -canRide__Q34Game15ItemBigFountain5StateFv=0x801ED298 -interactAttack__Q34Game15ItemBigFountain4ItemFRQ24Game14InteractAttack=0x801ED2A0 -onDamage__Q34Game15ItemBigFountain5StateFPQ34Game15ItemBigFountain4Itemf=0x801ED3BC -getVectorField__Q34Game15ItemBigFountain4ItemFRQ23Sys6SphereR10Vector3=0x801ED3C0 -getWorkDistance__Q34Game15ItemBigFountain4ItemFRQ23Sys6Sphere=0x801ED488 -onKeyEvent__Q34Game15ItemBigFountain4ItemFRCQ28SysShape8KeyEvent=0x801ED4E8 -onKeyEvent__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRCQ28SysShape8KeyEvent=0x801ED524 -__ct__Q34Game15ItemBigFountain3MgrFv=0x801ED528 -read__Q34Game15ItemBigFountain13FountainParmsFR6Stream=0x801ED648 -__ct__Q34Game15ItemBigFountain13FountainParmsFv=0x801ED66C -onLoadResources__Q34Game15ItemBigFountain3MgrFv=0x801ED858 -birth__Q34Game15ItemBigFountain3MgrFv=0x801ED934 -generatorBirth__Q34Game15ItemBigFountain3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801ED954 -__dt__Q34Game15ItemBigFountain3MgrFv=0x801ED9AC -doNew__Q34Game15ItemBigFountain3MgrFv=0x801EDAE0 -generatorGetID__Q34Game15ItemBigFountain3MgrFv=0x801EDBC8 -sound_culling__Q34Game15ItemBigFountain4ItemFv=0x801EDBD4 -getCreatureName__Q34Game15ItemBigFountain4ItemFv=0x801EDBDC -doAI__Q24Game98FSMItemFv=0x801EDBE8 -canRide__Q34Game15ItemBigFountain8OutStateFv=0x801EDC1C -onKeyEvent__Q24Game98FSMItemFRCQ28SysShape8KeyEvent=0x801EDC24 -onDamage__Q24Game40ItemStateFPQ34Game15ItemBigFountain4Itemf=0x801EDC68 -onBounce__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemPQ23Sys8Triangle=0x801EDC6C -onPlatCollision__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRQ24Game9PlatEvent=0x801EDC70 -onCollision__Q24Game40ItemStateFPQ34Game15ItemBigFountain4ItemRQ24Game9CollEvent=0x801EDC74 -init__Q24Game39FSMStateFPQ34Game15ItemBigFountain4ItemPQ24Game8StateArg=0x801EDC78 -exec__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item=0x801EDC7C -cleanup__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item=0x801EDC80 -resume__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item=0x801EDC84 -restart__Q24Game39FSMStateFPQ34Game15ItemBigFountain4Item=0x801EDC88 -init__Q24Game43StateMachineFPQ34Game15ItemBigFountain4Item=0x801EDC8C -exec__Q24Game43StateMachineFPQ34Game15ItemBigFountain4Item=0x801EDC90 -create__Q24Game43StateMachineFi=0x801EDCC8 -transit__Q24Game43StateMachineFPQ34Game15ItemBigFountain4ItemiPQ24Game8StateArg=0x801EDD2C -registerState__Q24Game43StateMachineFPQ24Game39FSMState=0x801EDDC8 -getStateID__Q24Game98FSMItemFv=0x801EDE4C -platCallback__Q24Game98FSMItemFRQ24Game9PlatEvent=0x801EDE68 -collisionCallback__Q24Game98FSMItemFRQ24Game9CollEvent=0x801EDEAC -bounceCallback__Q24Game98FSMItemFPQ23Sys8Triangle=0x801EDEF0 -__sinit_itemBigFountain_cpp=0x801EDF34 -@376@onKeyEvent__Q24Game98FSMItemFRCQ28SysShape8KeyEvent=0x801EDF5C -@376@onKeyEvent__Q34Game15ItemBigFountain4ItemFRCQ28SysShape8KeyEvent=0x801EDF64 -@48@__dt__Q34Game15ItemBigFountain3MgrFv=0x801EDF6C -init__Q34Game10ItemBridge3FSMFPQ34Game10ItemBridge4Item=0x801EDF74 -init__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4ItemPQ24Game8StateArg=0x801EDFF8 -exec__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4Item=0x801EDFFC -cleanup__Q34Game10ItemBridge11NormalStateFPQ34Game10ItemBridge4Item=0x801EE000 -onInit__Q34Game10ItemBridge4ItemFPQ24Game15CreatureInitArg=0x801EE004 -start__Q24Game38StateMachineFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg=0x801EE184 -update__Q34Game10ItemBridge4ItemFv=0x801EE1B8 -getLODCylinder__Q34Game10ItemBridge4ItemFRQ23Sys8Cylinder=0x801EE2C8 -do_updateLOD__Q34Game10ItemBridge4ItemFv=0x801EE47C -doDirectDraw__Q34Game10ItemBridge4ItemFR8Graphics=0x801EE4C0 -constructor__Q34Game10ItemBridge4ItemFv=0x801EE4C4 -doLoad__Q34Game10ItemBridge4ItemFR6Stream=0x801EE50C -doSave__Q34Game10ItemBridge4ItemFR6Stream=0x801EE608 -onSetPosition__Q34Game10ItemBridge4ItemFv=0x801EE67C -updateBoundSphere__Q34Game10ItemBridge4ItemFv=0x801EE70C -changeMaterial__Q34Game10ItemBridge4ItemFv=0x801EE730 -doAI__Q34Game10ItemBridge4ItemFv=0x801EE854 -setCurrStage__Q34Game10ItemBridge4ItemFi=0x801EE9F4 -createWayPoints__Q34Game10ItemBridge4ItemFv=0x801EEC80 -getStagePos__Q34Game10ItemBridge4ItemFi=0x801EEE4C -getStartPos__Q34Game10ItemBridge4ItemFv=0x801EEF34 -getStageZ__Q34Game10ItemBridge4ItemFi=0x801EEFD4 -getStageWidth__Q34Game10ItemBridge4ItemFv=0x801EF030 -getBridgeZVec__Q34Game10ItemBridge4ItemFv=0x801EF038 -getBridgeXVec__Q34Game10ItemBridge4ItemFv=0x801EF0DC -getBridgePos__Q34Game10ItemBridge4ItemFR10Vector3RfRf=0x801EF194 -workable__Q34Game10ItemBridge4ItemFR10Vector3=0x801EF384 -getVectorField__Q34Game10ItemBridge4ItemFRQ23Sys6SphereR10Vector3=0x801EF4BC -getWorkDistance__Q34Game10ItemBridge4ItemFRQ23Sys6Sphere=0x801EF8EC -interactAttack__Q34Game10ItemBridge4ItemFRQ24Game14InteractAttack=0x801EFA34 -interactBreakBridge__Q34Game10ItemBridge4ItemFRQ24Game19InteractBreakBridge=0x801EFE7C -generatorNewItemParm__Q34Game10ItemBridge3MgrFv=0x801EFF6C -generatorWrite__Q34Game10ItemBridge3MgrFR6StreamPQ24Game11GenItemParm=0x801EFFB8 -generatorRead__Q34Game10ItemBridge3MgrFR6StreamPQ24Game11GenItemParmUl=0x801F0040 -__ct__Q34Game10ItemBridge3MgrFv=0x801F00C8 -read__Q34Game10ItemBridge11BridgeParmsFR6Stream=0x801F01F8 -__ct__Q34Game10ItemBridge11BridgeParmsFv=0x801F021C -birth__Q34Game10ItemBridge3MgrFv=0x801F0408 -generatorBirth__Q34Game10ItemBridge3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801F0520 -onLoadResources__Q34Game10ItemBridge3MgrFv=0x801F05C8 -__ct__Q34Game10ItemBridge10BridgeInfoFv=0x801F0828 -getBridgeInfo__Q34Game10ItemBridge3MgrFi=0x801F0844 -createBridgeInfo__Q34Game10ItemBridge3MgrFi=0x801F08BC -setupPlatInstanceAttacher__Q34Game10ItemBridge3MgrFPQ34Game10ItemBridge4ItemRQ24Game20PlatInstanceAttacher=0x801F0AC8 -getName__Q34Game10ItemBridge13BridgeInitArgFv=0x801F0C68 -__dt__Q34Game10ItemBridge3MgrFv=0x801F0C74 -doNew__Q34Game10ItemBridge3MgrFv=0x801F0DA8 -generatorGetID__Q34Game10ItemBridge3MgrFv=0x801F0EA8 -generatorLocalVersion__Q34Game10ItemBridge3MgrFv=0x801F0EB4 -makeTrMatrix__Q34Game10ItemBridge4ItemFv=0x801F0EC0 -getCreatureName__Q34Game10ItemBridge4ItemFv=0x801F0EC4 -getMabiki__Q34Game10ItemBridge4ItemFv=0x801F0ECC -doAI__Q24Game83FSMItemFv=0x801F0ED4 -onDamage__Q24Game35ItemStateFPQ34Game10ItemBridge4Itemf=0x801F0F08 -onKeyEvent__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRCQ28SysShape8KeyEvent=0x801F0F0C -onBounce__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemPQ23Sys8Triangle=0x801F0F10 -onPlatCollision__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRQ24Game9PlatEvent=0x801F0F14 -onCollision__Q24Game35ItemStateFPQ34Game10ItemBridge4ItemRQ24Game9CollEvent=0x801F0F18 -init__Q24Game34FSMStateFPQ34Game10ItemBridge4ItemPQ24Game8StateArg=0x801F0F1C -exec__Q24Game34FSMStateFPQ34Game10ItemBridge4Item=0x801F0F20 -cleanup__Q24Game34FSMStateFPQ34Game10ItemBridge4Item=0x801F0F24 -resume__Q24Game34FSMStateFPQ34Game10ItemBridge4Item=0x801F0F28 -restart__Q24Game34FSMStateFPQ34Game10ItemBridge4Item=0x801F0F2C -transit__Q24Game34FSMStateFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg=0x801F0F30 -init__Q24Game38StateMachineFPQ34Game10ItemBridge4Item=0x801F0F60 -create__Q24Game38StateMachineFi=0x801F0F64 -transit__Q24Game38StateMachineFPQ34Game10ItemBridge4ItemiPQ24Game8StateArg=0x801F0FC8 -registerState__Q24Game38StateMachineFPQ24Game34FSMState=0x801F1064 -exec__Q24Game38StateMachineFPQ34Game10ItemBridge4Item=0x801F10E8 -onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent=0x801F1120 -platCallback__Q24Game83FSMItemFRQ24Game9PlatEvent=0x801F1164 -collisionCallback__Q24Game83FSMItemFRQ24Game9CollEvent=0x801F11A8 -bounceCallback__Q24Game83FSMItemFPQ23Sys8Triangle=0x801F11EC -@376@onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent=0x801F1230 -@48@__dt__Q34Game10ItemBridge3MgrFv=0x801F1238 -__ct__Q24Game13PikiContainerFv=0x801F1240 -clear__Q24Game13PikiContainerFv=0x801F128C -__as__Q24Game13PikiContainerFRQ24Game13PikiContainer=0x801F12F8 -dump__Q24Game13PikiContainerFPc=0x801F13A8 -getCount__Q24Game13PikiContainerFii=0x801F141C -__cl__Q24Game13PikiContainerFPQ24Game4Piki=0x801F14E4 -getColorSum__Q24Game13PikiContainerFi=0x801F15B0 -getTotalSum__Q24Game13PikiContainerFv=0x801F1684 -write__Q24Game13PikiContainerFR6Stream=0x801F1768 -read__Q24Game13PikiContainerFR6Stream=0x801F189C -__ct__Q24Game14GeneratorCacheFv=0x801F1908 -__dt__Q24Game11CourseCacheFv=0x801F1990 -clearCache__Q24Game14GeneratorCacheFv=0x801F19F0 -clearGeneratorList__Q24Game14GeneratorCacheFv=0x801F1A88 -addGenerator__Q24Game14GeneratorCacheFPQ24Game9Generator=0x801F1AA0 -getFirstGenerator__Q24Game14GeneratorCacheFv=0x801F1B18 -getTotalMePikmins__Q24Game14GeneratorCacheFv=0x801F1B20 -getColorMePikmins__Q24Game14GeneratorCacheFi=0x801F1B44 -getColorMePikmins__Q24Game11CourseCacheFPUci=0x801F1BB8 -createHeap__Q24Game14GeneratorCacheFv=0x801F1C54 -findCache__Q24Game14GeneratorCacheFRQ24Game11CourseCachei=0x801F1CF0 -loadGenerators__Q24Game14GeneratorCacheFi=0x801F1D28 -loadCreatures__Q24Game14GeneratorCacheFi=0x801F1E50 -loadPikiheads__Q24Game14GeneratorCacheFv=0x801F2008 -slideCache__Q24Game14GeneratorCacheFv=0x801F211C -updateUseList__Q24Game14GeneratorCacheFv=0x801F21DC -createNumberGenerators__Q24Game14GeneratorCacheFv=0x801F2228 -beginSave__Q24Game14GeneratorCacheFi=0x801F22A0 -endSave__Q24Game14GeneratorCacheFv=0x801F2398 -saveGenerator__Q24Game14GeneratorCacheFPQ24Game9Generator=0x801F2460 -saveCreature__Q24Game14GeneratorCacheFPQ24Game9Generator=0x801F2550 -savePikiheads__Q24Game14GeneratorCacheFv=0x801F2690 -__ct__Q24Game11CourseCacheFi=0x801F2960 -beginSave__Q24Game11CourseCacheFi=0x801F29D0 -write__Q24Game14GeneratorCacheFR6Stream=0x801F29F8 -read__Q24Game14GeneratorCacheFR6Stream=0x801F2C2C -write__Q24Game11CourseCacheFR6Stream=0x801F2EDC -read__Q24Game11CourseCacheFR6Stream=0x801F30B0 -init__Q34Game12ItemTreasure3FSMFPQ34Game12ItemTreasure4Item=0x801F316C -init__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4ItemPQ24Game8StateArg=0x801F31F0 -exec__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Item=0x801F31FC -cleanup__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Item=0x801F3200 -onDamage__Q34Game12ItemTreasure11NormalStateFPQ34Game12ItemTreasure4Itemf=0x801F3204 -releasePellet__Q34Game12ItemTreasure4ItemFv=0x801F35CC -constructor__Q34Game12ItemTreasure4ItemFv=0x801F3864 -onInit__Q34Game12ItemTreasure4ItemFPQ24Game15CreatureInitArg=0x801F38AC -start__Q24Game40StateMachineFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg=0x801F392C -onSetPosition__Q34Game12ItemTreasure4ItemFv=0x801F3960 -updateBoundSphere__Q34Game12ItemTreasure4ItemFv=0x801F39A4 -doAI__Q34Game12ItemTreasure4ItemFv=0x801F39EC -doDirectDraw__Q34Game12ItemTreasure4ItemFR8Graphics=0x801F3B6C -getVectorField__Q34Game12ItemTreasure4ItemFRQ23Sys6SphereR10Vector3=0x801F3BBC -getWorkDistance__Q34Game12ItemTreasure4ItemFRQ23Sys6Sphere=0x801F3CD8 -setTreasure__Q34Game12ItemTreasure4ItemFPQ24Game6Pellet=0x801F3D60 -setLife__Q34Game12ItemTreasure4ItemFv=0x801F3E18 -getCurrMaxLife__Q34Game12ItemTreasure4ItemFv=0x801F3E48 -interactAttack__Q34Game12ItemTreasure4ItemFRQ24Game14InteractAttack=0x801F3EE0 -onDamage__Q34Game12ItemTreasure5StateFPQ34Game12ItemTreasure4Itemf=0x801F3FFC -getWorkRadius__Q34Game12ItemTreasure4ItemFv=0x801F4000 -isVisible__Q34Game12ItemTreasure4ItemFv=0x801F4058 -ignoreAtari__Q34Game12ItemTreasure4ItemFPQ24Game8Creature=0x801F40B8 -__ct__Q34Game12ItemTreasure3MgrFv=0x801F4168 -read__Q34Game12ItemTreasure13TreasureParmsFR6Stream=0x801F427C -__ct__Q34Game12ItemTreasure13TreasureParmsFv=0x801F42A0 -birth__Q34Game12ItemTreasure3MgrFv=0x801F4540 -generatorBirth__Q34Game12ItemTreasure3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801F4670 -onLoadResources__Q34Game12ItemTreasure3MgrFv=0x801F46D0 -__dt__Q34Game12ItemTreasure3MgrFv=0x801F46D4 -doNew__Q34Game12ItemTreasure3MgrFv=0x801F4808 -generatorGetID__Q34Game12ItemTreasure3MgrFv=0x801F4920 -getCreatureName__Q34Game12ItemTreasure4ItemFv=0x801F492C -getMatrix__Q44Game12ItemTreasure4Item10DummyShapeFi=0x801F4938 -isModel__Q28SysShape9MtxObjectFv=0x801F4940 -doAI__Q24Game89FSMItemFv=0x801F4948 -onDamage__Q24Game37ItemStateFPQ34Game12ItemTreasure4Itemf=0x801F497C -onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRCQ28SysShape8KeyEvent=0x801F4980 -onBounce__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemPQ23Sys8Triangle=0x801F4984 -onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRQ24Game9PlatEvent=0x801F4988 -onCollision__Q24Game37ItemStateFPQ34Game12ItemTreasure4ItemRQ24Game9CollEvent=0x801F498C -init__Q24Game36FSMStateFPQ34Game12ItemTreasure4ItemPQ24Game8StateArg=0x801F4990 -exec__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item=0x801F4994 -cleanup__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item=0x801F4998 -resume__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item=0x801F499C -restart__Q24Game36FSMStateFPQ34Game12ItemTreasure4Item=0x801F49A0 -transit__Q24Game36FSMStateFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg=0x801F49A4 -init__Q24Game40StateMachineFPQ34Game12ItemTreasure4Item=0x801F49D4 -exec__Q24Game40StateMachineFPQ34Game12ItemTreasure4Item=0x801F49D8 -create__Q24Game40StateMachineFi=0x801F4A10 -transit__Q24Game40StateMachineFPQ34Game12ItemTreasure4ItemiPQ24Game8StateArg=0x801F4A74 -registerState__Q24Game40StateMachineFPQ24Game36FSMState=0x801F4B10 -onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent=0x801F4B94 -platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent=0x801F4BD8 -collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent=0x801F4C1C -bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle=0x801F4C60 -__sinit_itemTreasure_cpp=0x801F4CA4 -@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent=0x801F4CCC -@48@__dt__Q34Game12ItemTreasure3MgrFv=0x801F4CD4 -init__Q34Game13ItemDownFloor3FSMFPQ34Game13ItemDownFloor4Item=0x801F4CDC -constructor__Q34Game13ItemDownFloor4ItemFv=0x801F4EC0 -onInit__Q34Game13ItemDownFloor4ItemFPQ24Game15CreatureInitArg=0x801F4F08 -start__Q24Game41StateMachineFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg=0x801F5004 -initDependency__Q34Game13ItemDownFloor4ItemFv=0x801F5038 -onSetPosition__Q34Game13ItemDownFloor4ItemFv=0x801F52EC -updateBoundSphere__Q34Game13ItemDownFloor4ItemFv=0x801F5424 -onKeyEvent__Q34Game13ItemDownFloor4ItemFRCQ28SysShape8KeyEvent=0x801F5440 -onKeyEvent__Q34Game13ItemDownFloor5StateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent=0x801F5484 -startDamageMotion__Q34Game13ItemDownFloor4ItemFv=0x801F5488 -startDownMotion__Q34Game13ItemDownFloor4ItemFv=0x801F57C0 -startUpMotion__Q34Game13ItemDownFloor4ItemFv=0x801F5AFC -changeMaterial__Q34Game13ItemDownFloor4ItemFv=0x801F5DE0 -doSave__Q34Game13ItemDownFloor4ItemFR6Stream=0x801F5DE4 -doLoad__Q34Game13ItemDownFloor4ItemFR6Stream=0x801F5E1C -doAI__Q34Game13ItemDownFloor4ItemFv=0x801F5F14 -platCallback__Q34Game13ItemDownFloor4ItemFRQ24Game9PlatEvent=0x801F600C -onPlat__Q34Game13ItemDownFloor5StateFPQ34Game13ItemDownFloor4Item=0x801F6248 -getCarryInfoParam__Q34Game13ItemDownFloor4ItemFR14CarryInfoParam=0x801F624C -__ct__Q34Game13ItemDownFloor3MgrFv=0x801F62A8 -setupDownFloor__Q34Game13ItemDownFloor3MgrFPQ34Game13ItemDownFloor4Item=0x801F6488 -setupPlatform__Q34Game13ItemDownFloor3MgrFPQ34Game13ItemDownFloor4Item=0x801F6578 -onLoadResources__Q34Game13ItemDownFloor3MgrFv=0x801F6680 -birth__Q34Game13ItemDownFloor3MgrFv=0x801F6684 -getCaveName__Q34Game13ItemDownFloor3MgrFi=0x801F6800 -getCaveID__Q34Game13ItemDownFloor3MgrFPc=0x801F683C -init__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg=0x801F68EC -exec__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item=0x801F6954 -transit__Q24Game37FSMStateFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg=0x801F69B4 -cleanup__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item=0x801F69E4 -onKeyEvent__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent=0x801F69E8 -onPlat__Q34Game13ItemDownFloor9WaitStateFPQ34Game13ItemDownFloor4Item=0x801F69EC -init__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg=0x801F6A2C -exec__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item=0x801F6A64 -cleanup__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item=0x801F6B28 -onKeyEvent__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent=0x801F6B2C -onPlat__Q34Game13ItemDownFloor12DamagedStateFPQ34Game13ItemDownFloor4Item=0x801F6B38 -init__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg=0x801F6B3C -exec__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item=0x801F6BD8 -cleanup__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item=0x801F6BDC -onKeyEvent__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent=0x801F6BE0 -onPlat__Q34Game13ItemDownFloor9DownStateFPQ34Game13ItemDownFloor4Item=0x801F6E00 -init__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg=0x801F6E04 -exec__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item=0x801F6E28 -cleanup__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item=0x801F6E2C -onKeyEvent__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent=0x801F6E30 -onPlat__Q34Game13ItemDownFloor7UpStateFPQ34Game13ItemDownFloor4Item=0x801F6E6C -generatorNewItemParm__Q34Game13ItemDownFloor3MgrFv=0x801F6E70 -generatorWrite__Q34Game13ItemDownFloor3MgrFR6StreamPQ24Game11GenItemParm=0x801F6EEC -generatorRead__Q34Game13ItemDownFloor3MgrFR6StreamPQ24Game11GenItemParmUl=0x801F6FF0 -generatorBirth__Q34Game13ItemDownFloor3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801F70BC -__dt__Q34Game13ItemDownFloor3MgrFv=0x801F72A0 -doNew__Q34Game13ItemDownFloor3MgrFv=0x801F73D4 -generatorGetID__Q34Game13ItemDownFloor3MgrFv=0x801F7514 -generatorLocalVersion__Q34Game13ItemDownFloor3MgrFv=0x801F7520 -makeTrMatrix__Q34Game13ItemDownFloor4ItemFv=0x801F752C -getFaceDir__Q34Game13ItemDownFloor4ItemFv=0x801F7530 -getCreatureName__Q34Game13ItemDownFloor4ItemFv=0x801F7538 -doAI__Q24Game92FSMItemFv=0x801F7544 -init__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg=0x801F7578 -exec__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item=0x801F757C -cleanup__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item=0x801F7580 -onPlat__Q34Game13ItemDownFloor9DeadStateFPQ34Game13ItemDownFloor4Item=0x801F7584 -onKeyEvent__Q24Game92FSMItemFRCQ28SysShape8KeyEvent=0x801F7588 -onDamage__Q24Game38ItemStateFPQ34Game13ItemDownFloor4Itemf=0x801F75CC -onKeyEvent__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRCQ28SysShape8KeyEvent=0x801F75D0 -onBounce__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemPQ23Sys8Triangle=0x801F75D4 -onPlatCollision__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRQ24Game9PlatEvent=0x801F75D8 -onCollision__Q24Game38ItemStateFPQ34Game13ItemDownFloor4ItemRQ24Game9CollEvent=0x801F75DC -init__Q24Game37FSMStateFPQ34Game13ItemDownFloor4ItemPQ24Game8StateArg=0x801F75E0 -exec__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item=0x801F75E4 -cleanup__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item=0x801F75E8 -resume__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item=0x801F75EC -restart__Q24Game37FSMStateFPQ34Game13ItemDownFloor4Item=0x801F75F0 -init__Q24Game41StateMachineFPQ34Game13ItemDownFloor4Item=0x801F75F4 -exec__Q24Game41StateMachineFPQ34Game13ItemDownFloor4Item=0x801F75F8 -create__Q24Game41StateMachineFi=0x801F7630 -transit__Q24Game41StateMachineFPQ34Game13ItemDownFloor4ItemiPQ24Game8StateArg=0x801F7694 -registerState__Q24Game41StateMachineFPQ24Game37FSMState=0x801F7730 -platCallback__Q24Game92FSMItemFRQ24Game9PlatEvent=0x801F77B4 -collisionCallback__Q24Game92FSMItemFRQ24Game9CollEvent=0x801F77F8 -bounceCallback__Q24Game92FSMItemFPQ23Sys8Triangle=0x801F783C -__sinit_itemDownFloor_cpp=0x801F7880 -@376@onKeyEvent__Q24Game92FSMItemFRCQ28SysShape8KeyEvent=0x801F78A8 -@376@onKeyEvent__Q34Game13ItemDownFloor4ItemFRCQ28SysShape8KeyEvent=0x801F78B0 -@480@getCarryInfoParam__Q34Game13ItemDownFloor4ItemFR14CarryInfoParam=0x801F78B8 -@48@__dt__Q34Game13ItemDownFloor3MgrFv=0x801F78C0 -getRandomChoice__8KandoLibFPQ28KandoLib6Choicei=0x801F78C8 -init__Q34Game10ItemBarrel3FSMFPQ34Game10ItemBarrel4Item=0x801F7970 -init__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg=0x801F7AA4 -exec__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Item=0x801F7AB0 -cleanup__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Item=0x801F7AB4 -onDamage__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4Itemf=0x801F7AB8 -transit__Q24Game34FSMStateFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg=0x801F7B1C -onKeyEvent__Q34Game10ItemBarrel11NormalStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent=0x801F7B4C -init__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg=0x801F7B50 -exec__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Item=0x801F7CC0 -cleanup__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Item=0x801F7CC4 -onDamage__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4Itemf=0x801F7CC8 -onKeyEvent__Q34Game10ItemBarrel9DeadStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent=0x801F7CCC -init__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg=0x801F7E14 -exec__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Item=0x801F7E18 -cleanup__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Item=0x801F7E1C -onDamage__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4Itemf=0x801F7E20 -onKeyEvent__Q34Game10ItemBarrel12DamagedStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent=0x801F7E30 -doSave__Q34Game10ItemBarrel4ItemFR6Stream=0x801F7E34 -doLoad__Q34Game10ItemBarrel4ItemFR6Stream=0x801F7E78 -constructor__Q34Game10ItemBarrel4ItemFv=0x801F7F34 -onInit__Q34Game10ItemBarrel4ItemFPQ24Game15CreatureInitArg=0x801F7F7C -start__Q24Game38StateMachineFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg=0x801F80BC -onSetPosition__Q34Game10ItemBarrel4ItemFv=0x801F80F0 -updateBoundSphere__Q34Game10ItemBarrel4ItemFv=0x801F813C -doAI__Q34Game10ItemBarrel4ItemFv=0x801F8184 -getVectorField__Q34Game10ItemBarrel4ItemFRQ23Sys6SphereR10Vector3=0x801F8248 -getWorkRadius__Q34Game10ItemBarrel4ItemFv=0x801F835C -getWorkDistance__Q34Game10ItemBarrel4ItemFRQ23Sys6Sphere=0x801F83B4 -createBarrel__Q34Game10ItemBarrel4ItemFv=0x801F8478 -interactAttack__Q34Game10ItemBarrel4ItemFRQ24Game14InteractAttack=0x801F849C -onDamage__Q34Game10ItemBarrel5StateFPQ34Game10ItemBarrel4Itemf=0x801F85E4 -__ct__Q34Game10ItemBarrel3MgrFv=0x801F85E8 -read__Q34Game10ItemBarrel11BarrelParmsFR6Stream=0x801F8708 -__ct__Q34Game10ItemBarrel11BarrelParmsFv=0x801F872C -birth__Q34Game10ItemBarrel3MgrFv=0x801F8918 -generatorBirth__Q34Game10ItemBarrel3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x801F8A20 -onLoadResources__Q34Game10ItemBarrel3MgrFv=0x801F8A80 -__dt__Q34Game10ItemBarrel3MgrFv=0x801F8B38 -doNew__Q34Game10ItemBarrel3MgrFv=0x801F8C6C -generatorGetID__Q34Game10ItemBarrel3MgrFv=0x801F8D5C -getCreatureName__Q34Game10ItemBarrel4ItemFv=0x801F8D68 -doAI__Q24Game83FSMItemFv=0x801F8D70 -onDamage__Q24Game35ItemStateFPQ34Game10ItemBarrel4Itemf=0x801F8DA4 -onKeyEvent__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRCQ28SysShape8KeyEvent=0x801F8DA8 -onBounce__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemPQ23Sys8Triangle=0x801F8DAC -onPlatCollision__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRQ24Game9PlatEvent=0x801F8DB0 -onCollision__Q24Game35ItemStateFPQ34Game10ItemBarrel4ItemRQ24Game9CollEvent=0x801F8DB4 -init__Q24Game34FSMStateFPQ34Game10ItemBarrel4ItemPQ24Game8StateArg=0x801F8DB8 -exec__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item=0x801F8DBC -cleanup__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item=0x801F8DC0 -resume__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item=0x801F8DC4 -restart__Q24Game34FSMStateFPQ34Game10ItemBarrel4Item=0x801F8DC8 -init__Q24Game38StateMachineFPQ34Game10ItemBarrel4Item=0x801F8DCC -exec__Q24Game38StateMachineFPQ34Game10ItemBarrel4Item=0x801F8DD0 -create__Q24Game38StateMachineFi=0x801F8E08 -transit__Q24Game38StateMachineFPQ34Game10ItemBarrel4ItemiPQ24Game8StateArg=0x801F8E6C -registerState__Q24Game38StateMachineFPQ24Game34FSMState=0x801F8F08 -onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent=0x801F8F8C -platCallback__Q24Game83FSMItemFRQ24Game9PlatEvent=0x801F8FD0 -collisionCallback__Q24Game83FSMItemFRQ24Game9CollEvent=0x801F9014 -bounceCallback__Q24Game83FSMItemFPQ23Sys8Triangle=0x801F9058 -__sinit_itemBarrel_cpp=0x801F909C -@376@onKeyEvent__Q24Game83FSMItemFRCQ28SysShape8KeyEvent=0x801F90C4 -@48@__dt__Q34Game10ItemBarrel3MgrFv=0x801F90CC -do_onInit__Q34Game12PelletNumber6ObjectFPQ24Game15CreatureInitArg=0x801F90D4 -constructor__Q34Game12PelletNumber6ObjectFv=0x801F90D8 -createKiraEffect__Q34Game12PelletNumber6ObjectFR10Vector3=0x801F9198 -changeMaterial__Q34Game12PelletNumber6ObjectFv=0x801F9204 -__ct__Q34Game12PelletNumber3MgrFv=0x801F930C -__dt__Q24Game48FixedSizePelletMgrFv=0x801F93BC -__dt__43MonoObjectMgrFv=0x801F9558 -__dt__39ContainerFv=0x801F95F8 -setupResources__Q34Game12PelletNumber3MgrFv=0x801F9668 -onCreateModel__Q34Game12PelletNumber3MgrFPQ28SysShape5Model=0x801F975C -generatorNewPelletParm__Q34Game12PelletNumber3MgrFv=0x801F97D8 -generatorBirth__Q34Game12PelletNumber3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm=0x801F9814 -generatorWrite__Q34Game12PelletNumber3MgrFR6StreamPQ24Game13GenPelletParm=0x801F98EC -generatorRead__Q34Game12PelletNumber3MgrFR6StreamPQ24Game13GenPelletParmUl=0x801F9940 -__dt__Q34Game12PelletNumber3MgrFv=0x801F9A04 -getMgrName__Q34Game12PelletNumber3MgrFv=0x801F9BB8 -getMgrID__Q34Game12PelletNumber3MgrFv=0x801F9BC0 -generatorLocalVersion__Q34Game12PelletNumber3MgrFv=0x801F9BC8 -__dt__39ObjectMgrFv=0x801F9BD4 -getName__Q23efx10ArgPelTypeFv=0x801F9C5C -getKind__Q34Game12PelletNumber6ObjectFv=0x801F9C68 -resetMgrAndResources__Q24Game48FixedSizePelletMgrFv=0x801F9C70 -onCreateModel__Q24Game48FixedSizePelletMgrFPQ28SysShape5Model=0x801F9D0C -birth__Q24Game48FixedSizePelletMgrFv=0x801F9D10 -doAnimation__Q24Game48FixedSizePelletMgrFv=0x801F9D3C -doEntry__Q24Game48FixedSizePelletMgrFv=0x801F9D68 -doSetView__Q24Game48FixedSizePelletMgrFi=0x801F9D94 -doViewCalc__Q24Game48FixedSizePelletMgrFv=0x801F9DC0 -doSimulation__Q24Game48FixedSizePelletMgrFf=0x801F9DEC -doDirectDraw__Q24Game48FixedSizePelletMgrFR8Graphics=0x801F9E18 -kill__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet=0x801F9E44 -getNext__Q24Game48FixedSizePelletMgrFPv=0x801F9E68 -getStart__Q24Game48FixedSizePelletMgrFv=0x801F9E94 -birth__43MonoObjectMgrFv=0x801F9EC0 -kill__43MonoObjectMgrFPQ34Game12PelletNumber6Object=0x801F9F20 -getNext__43MonoObjectMgrFPv=0x801F9F74 -getStart__43MonoObjectMgrFv=0x801F9FB4 -getEnd__43MonoObjectMgrFv=0x801F9FE4 -getAt__43MonoObjectMgrFi=0x801F9FEC -getTo__43MonoObjectMgrFv=0x801F9FFC -doAnimation__43MonoObjectMgrFv=0x801FA004 -doEntry__43MonoObjectMgrFv=0x801FA084 -doSetView__43MonoObjectMgrFi=0x801FA104 -doViewCalc__43MonoObjectMgrFv=0x801FA194 -doSimulation__43MonoObjectMgrFf=0x801FA214 -doDirectDraw__43MonoObjectMgrFR8Graphics=0x801FA2A4 -clearMgr__43MonoObjectMgrFv=0x801FA334 -onAlloc__43MonoObjectMgrFv=0x801FA364 -getEmptyIndex__43MonoObjectMgrFv=0x801FA368 -get__43MonoObjectMgrFPv=0x801FA3A4 -getObject__39ContainerFPv=0x801FA3B4 -getAt__39ContainerFi=0x801FA3E0 -getTo__39ContainerFv=0x801FA3E8 -doDirectDraw__39ObjectMgrFR8Graphics=0x801FA3F0 -isDone__38IteratorFv=0x801FA5E4 -doSimulation__39ObjectMgrFf=0x801FA630 -doViewCalc__39ObjectMgrFv=0x801FA824 -doSetView__39ObjectMgrFi=0x801FAA08 -doEntry__39ObjectMgrFv=0x801FABFC -doAnimation__39ObjectMgrFv=0x801FADE0 -alloc__24MonoObjectMgr<8CollPart>Fi=0x801FAFC4 -__ct__43MonoObjectMgrFv=0x801FB150 -getFlag__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet=0x801FB1EC -setFromTeki__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet=0x801FB20C -setRevival__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet=0x801FB228 -setComeAlive__Q24Game48FixedSizePelletMgrFPQ24Game6Pellet=0x801FB244 -setComeAlive__Q24Game48FixedSizePelletMgrFi=0x801FB260 -getEnd__Q24Game48FixedSizePelletMgrFv=0x801FB270 -get__Q24Game48FixedSizePelletMgrFPv=0x801FB29C -getObjectPtr__Q24Game48FixedSizePelletMgrFPv=0x801FB2C8 -birthFromTeki__Q24Game48FixedSizePelletMgrFPQ24Game12PelletConfig=0x801FB2F4 -alloc__Q24Game48FixedSizePelletMgrFi=0x801FB384 -__ml__38IteratorFv=0x801FB404 -next__38IteratorFv=0x801FB43C -first__38IteratorFv=0x801FB520 -onAlloc__Q24Game48FixedSizePelletMgrFv=0x801FB5FC -alloc__43MonoObjectMgrFi=0x801FB660 -__ct__Q34Game12PelletNumber6ObjectFv=0x801FB7E8 -@84@__dt__Q24Game48FixedSizePelletMgrFv=0x801FB834 -@28@resetMgr__43MonoObjectMgrFv=0x801FB83C -@28@doDirectDraw__43MonoObjectMgrFR8Graphics=0x801FB844 -@28@doSimulation__43MonoObjectMgrFf=0x801FB84C -@28@doViewCalc__43MonoObjectMgrFv=0x801FB854 -@28@doSetView__43MonoObjectMgrFi=0x801FB85C -@28@doEntry__43MonoObjectMgrFv=0x801FB864 -@28@doAnimation__43MonoObjectMgrFv=0x801FB86C -@28@doDirectDraw__39ObjectMgrFR8Graphics=0x801FB874 -@28@doSimulation__39ObjectMgrFf=0x801FB87C -@28@doViewCalc__39ObjectMgrFv=0x801FB884 -@28@doSetView__39ObjectMgrFi=0x801FB88C -@28@doEntry__39ObjectMgrFv=0x801FB894 -@28@doAnimation__39ObjectMgrFv=0x801FB89C -@84@getEnd__Q24Game48FixedSizePelletMgrFv=0x801FB8A4 -@84@getStart__Q24Game48FixedSizePelletMgrFv=0x801FB8AC -@84@getNext__Q24Game48FixedSizePelletMgrFPv=0x801FB8B4 -@84@get__Q24Game48FixedSizePelletMgrFPv=0x801FB8BC -@84@__dt__Q34Game12PelletNumber3MgrFv=0x801FB8C4 -__ct__Q34Game13PelletCarcass3MgrFv=0x801FB8CC -__dt__Q24Game49FixedSizePelletMgrFv=0x801FB97C -__dt__44MonoObjectMgrFv=0x801FBB18 -__dt__40ContainerFv=0x801FBBB8 -setupResources__Q34Game13PelletCarcass3MgrFv=0x801FBC28 -__dt__Q34Game13PelletCarcass3MgrFv=0x801FBC8C -createShape__Q34Game13PelletCarcass3MgrFii=0x801FBE40 -getMgrName__Q34Game13PelletCarcass3MgrFv=0x801FBE48 -getMgrID__Q34Game13PelletCarcass3MgrFv=0x801FBE50 -__dt__40ObjectMgrFv=0x801FBE58 -resetMgrAndResources__Q24Game49FixedSizePelletMgrFv=0x801FBEE0 -onCreateModel__Q24Game49FixedSizePelletMgrFPQ28SysShape5Model=0x801FBF7C -birth__Q24Game49FixedSizePelletMgrFv=0x801FBF80 -doAnimation__Q24Game49FixedSizePelletMgrFv=0x801FBFAC -doEntry__Q24Game49FixedSizePelletMgrFv=0x801FBFD8 -doSetView__Q24Game49FixedSizePelletMgrFi=0x801FC004 -doViewCalc__Q24Game49FixedSizePelletMgrFv=0x801FC030 -doSimulation__Q24Game49FixedSizePelletMgrFf=0x801FC05C -doDirectDraw__Q24Game49FixedSizePelletMgrFR8Graphics=0x801FC088 -kill__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x801FC0B4 -getNext__Q24Game49FixedSizePelletMgrFPv=0x801FC0D8 -getStart__Q24Game49FixedSizePelletMgrFv=0x801FC104 -birth__44MonoObjectMgrFv=0x801FC130 -kill__44MonoObjectMgrFPQ34Game13PelletCarcass6Object=0x801FC190 -getNext__44MonoObjectMgrFPv=0x801FC1E4 -getStart__44MonoObjectMgrFv=0x801FC224 -getEnd__44MonoObjectMgrFv=0x801FC254 -getAt__44MonoObjectMgrFi=0x801FC25C -getTo__44MonoObjectMgrFv=0x801FC26C -doAnimation__44MonoObjectMgrFv=0x801FC274 -doEntry__44MonoObjectMgrFv=0x801FC2F4 -doSetView__44MonoObjectMgrFi=0x801FC374 -doViewCalc__44MonoObjectMgrFv=0x801FC404 -doSimulation__44MonoObjectMgrFf=0x801FC484 -doDirectDraw__44MonoObjectMgrFR8Graphics=0x801FC514 -clearMgr__44MonoObjectMgrFv=0x801FC5A4 -onAlloc__44MonoObjectMgrFv=0x801FC5D4 -getEmptyIndex__44MonoObjectMgrFv=0x801FC5D8 -get__44MonoObjectMgrFPv=0x801FC614 -getObject__40ContainerFPv=0x801FC624 -getAt__40ContainerFi=0x801FC650 -getTo__40ContainerFv=0x801FC658 -doDirectDraw__40ObjectMgrFR8Graphics=0x801FC660 -isDone__39IteratorFv=0x801FC854 -doSimulation__40ObjectMgrFf=0x801FC8A0 -doViewCalc__40ObjectMgrFv=0x801FCA94 -doSetView__40ObjectMgrFi=0x801FCC78 -doEntry__40ObjectMgrFv=0x801FCE6C -doAnimation__40ObjectMgrFv=0x801FD050 -__ct__44MonoObjectMgrFv=0x801FD234 -getFlag__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x801FD2D0 -setFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x801FD2F0 -setRevival__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x801FD30C -setComeAlive__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x801FD328 -setComeAlive__Q24Game49FixedSizePelletMgrFi=0x801FD344 -getEnd__Q24Game49FixedSizePelletMgrFv=0x801FD354 -get__Q24Game49FixedSizePelletMgrFPv=0x801FD380 -getObjectPtr__Q24Game49FixedSizePelletMgrFPv=0x801FD3AC -birthFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game12PelletConfig=0x801FD3D8 -alloc__Q24Game49FixedSizePelletMgrFi=0x801FD468 -__ml__39IteratorFv=0x801FD4E8 -next__39IteratorFv=0x801FD520 -first__39IteratorFv=0x801FD604 -onAlloc__Q24Game49FixedSizePelletMgrFv=0x801FD6E0 -alloc__44MonoObjectMgrFi=0x801FD744 -__ct__Q34Game13PelletCarcass6ObjectFv=0x801FD8CC -getKind__Q34Game13PelletCarcass6ObjectFv=0x801FD918 -@84@__dt__Q24Game49FixedSizePelletMgrFv=0x801FD920 -@28@resetMgr__44MonoObjectMgrFv=0x801FD928 -@28@doDirectDraw__44MonoObjectMgrFR8Graphics=0x801FD930 -@28@doSimulation__44MonoObjectMgrFf=0x801FD938 -@28@doViewCalc__44MonoObjectMgrFv=0x801FD940 -@28@doSetView__44MonoObjectMgrFi=0x801FD948 -@28@doEntry__44MonoObjectMgrFv=0x801FD950 -@28@doAnimation__44MonoObjectMgrFv=0x801FD958 -@28@doDirectDraw__40ObjectMgrFR8Graphics=0x801FD960 -@28@doSimulation__40ObjectMgrFf=0x801FD968 -@28@doViewCalc__40ObjectMgrFv=0x801FD970 -@28@doSetView__40ObjectMgrFi=0x801FD978 -@28@doEntry__40ObjectMgrFv=0x801FD980 -@28@doAnimation__40ObjectMgrFv=0x801FD988 -@84@getEnd__Q24Game49FixedSizePelletMgrFv=0x801FD990 -@84@getStart__Q24Game49FixedSizePelletMgrFv=0x801FD998 -@84@getNext__Q24Game49FixedSizePelletMgrFPv=0x801FD9A0 -@84@get__Q24Game49FixedSizePelletMgrFPv=0x801FD9A8 -@84@__dt__Q34Game13PelletCarcass3MgrFv=0x801FD9B0 -do_onInit__Q34Game11PelletFruit6ObjectFPQ24Game15CreatureInitArg=0x801FD9B8 -do_update__Q34Game11PelletFruit6ObjectFv=0x801FDA28 -changeMaterial__Q34Game11PelletFruit6ObjectFv=0x801FDBA8 -__ct__Q34Game11PelletFruit3MgrFv=0x801FDCC4 -__dt__Q24Game47FixedSizePelletMgrFv=0x801FDD74 -__dt__42MonoObjectMgrFv=0x801FDF10 -__dt__38ContainerFv=0x801FDFB0 -setupResources__Q34Game11PelletFruit3MgrFv=0x801FE020 -onCreateModel__Q34Game11PelletFruit3MgrFPQ28SysShape5Model=0x801FE0AC -__dt__Q34Game11PelletFruit3MgrFv=0x801FE118 -getMgrName__Q34Game11PelletFruit3MgrFv=0x801FE2CC -getMgrID__Q34Game11PelletFruit3MgrFv=0x801FE2D4 -__dt__38ObjectMgrFv=0x801FE2DC -getKind__Q34Game11PelletFruit6ObjectFv=0x801FE364 -resetMgrAndResources__Q24Game47FixedSizePelletMgrFv=0x801FE36C -onCreateModel__Q24Game47FixedSizePelletMgrFPQ28SysShape5Model=0x801FE408 -birth__Q24Game47FixedSizePelletMgrFv=0x801FE40C -doAnimation__Q24Game47FixedSizePelletMgrFv=0x801FE438 -doEntry__Q24Game47FixedSizePelletMgrFv=0x801FE464 -doSetView__Q24Game47FixedSizePelletMgrFi=0x801FE490 -doViewCalc__Q24Game47FixedSizePelletMgrFv=0x801FE4BC -doSimulation__Q24Game47FixedSizePelletMgrFf=0x801FE4E8 -doDirectDraw__Q24Game47FixedSizePelletMgrFR8Graphics=0x801FE514 -kill__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet=0x801FE540 -getNext__Q24Game47FixedSizePelletMgrFPv=0x801FE564 -getStart__Q24Game47FixedSizePelletMgrFv=0x801FE590 -birth__42MonoObjectMgrFv=0x801FE5BC -kill__42MonoObjectMgrFPQ34Game11PelletFruit6Object=0x801FE61C -getNext__42MonoObjectMgrFPv=0x801FE670 -getStart__42MonoObjectMgrFv=0x801FE6B0 -getEnd__42MonoObjectMgrFv=0x801FE6E0 -getAt__42MonoObjectMgrFi=0x801FE6E8 -getTo__42MonoObjectMgrFv=0x801FE6F8 -doAnimation__42MonoObjectMgrFv=0x801FE700 -doEntry__42MonoObjectMgrFv=0x801FE780 -doSetView__42MonoObjectMgrFi=0x801FE800 -doViewCalc__42MonoObjectMgrFv=0x801FE890 -doSimulation__42MonoObjectMgrFf=0x801FE910 -doDirectDraw__42MonoObjectMgrFR8Graphics=0x801FE9A0 -clearMgr__42MonoObjectMgrFv=0x801FEA30 -onAlloc__42MonoObjectMgrFv=0x801FEA60 -getEmptyIndex__42MonoObjectMgrFv=0x801FEA64 -get__42MonoObjectMgrFPv=0x801FEAA0 -getObject__38ContainerFPv=0x801FEAB0 -getAt__38ContainerFi=0x801FEADC -getTo__38ContainerFv=0x801FEAE4 -doDirectDraw__38ObjectMgrFR8Graphics=0x801FEAEC -isDone__37IteratorFv=0x801FECE0 -doSimulation__38ObjectMgrFf=0x801FED2C -doViewCalc__38ObjectMgrFv=0x801FEF20 -doSetView__38ObjectMgrFi=0x801FF104 -doEntry__38ObjectMgrFv=0x801FF2F8 -doAnimation__38ObjectMgrFv=0x801FF4DC -__ct__42MonoObjectMgrFv=0x801FF6C0 -getFlag__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet=0x801FF75C -setFromTeki__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet=0x801FF77C -setRevival__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet=0x801FF798 -setComeAlive__Q24Game47FixedSizePelletMgrFPQ24Game6Pellet=0x801FF7B4 -setComeAlive__Q24Game47FixedSizePelletMgrFi=0x801FF7D0 -getEnd__Q24Game47FixedSizePelletMgrFv=0x801FF7E0 -get__Q24Game47FixedSizePelletMgrFPv=0x801FF80C -getObjectPtr__Q24Game47FixedSizePelletMgrFPv=0x801FF838 -birthFromTeki__Q24Game47FixedSizePelletMgrFPQ24Game12PelletConfig=0x801FF864 -alloc__Q24Game47FixedSizePelletMgrFi=0x801FF8F4 -__ml__37IteratorFv=0x801FF974 -next__37IteratorFv=0x801FF9AC -first__37IteratorFv=0x801FFA90 -onAlloc__Q24Game47FixedSizePelletMgrFv=0x801FFB6C -alloc__42MonoObjectMgrFi=0x801FFBD0 -__ct__Q34Game11PelletFruit6ObjectFv=0x801FFD58 -__sinit_pelletFruit_cpp=0x801FFDA4 -@84@__dt__Q24Game47FixedSizePelletMgrFv=0x801FFDCC -@28@resetMgr__42MonoObjectMgrFv=0x801FFDD4 -@28@doDirectDraw__42MonoObjectMgrFR8Graphics=0x801FFDDC -@28@doSimulation__42MonoObjectMgrFf=0x801FFDE4 -@28@doViewCalc__42MonoObjectMgrFv=0x801FFDEC -@28@doSetView__42MonoObjectMgrFi=0x801FFDF4 -@28@doEntry__42MonoObjectMgrFv=0x801FFDFC -@28@doAnimation__42MonoObjectMgrFv=0x801FFE04 -@28@doDirectDraw__38ObjectMgrFR8Graphics=0x801FFE0C -@28@doSimulation__38ObjectMgrFf=0x801FFE14 -@28@doViewCalc__38ObjectMgrFv=0x801FFE1C -@28@doSetView__38ObjectMgrFi=0x801FFE24 -@28@doEntry__38ObjectMgrFv=0x801FFE2C -@28@doAnimation__38ObjectMgrFv=0x801FFE34 -@84@getEnd__Q24Game47FixedSizePelletMgrFv=0x801FFE3C -@84@getStart__Q24Game47FixedSizePelletMgrFv=0x801FFE44 -@84@getNext__Q24Game47FixedSizePelletMgrFPv=0x801FFE4C -@84@get__Q24Game47FixedSizePelletMgrFPv=0x801FFE54 -@84@__dt__Q34Game11PelletFruit3MgrFv=0x801FFE5C -constructor__Q34Game13PelletOtakara6ObjectFv=0x801FFE64 -do_onInit__Q34Game13PelletOtakara6ObjectFPQ24Game15CreatureInitArg=0x801FFEF8 -getShadowParam__Q34Game13PelletOtakara6ObjectFRQ24Game11ShadowParam=0x801FFFEC -sound_otakaraEventStart__Q34Game13PelletOtakara6ObjectFv=0x8020000C -sound_otakaraEventRestart__Q34Game13PelletOtakara6ObjectFv=0x80200154 -sound_otakaraEventStop__Q34Game13PelletOtakara6ObjectFv=0x8020029C -sound_otakaraEventFinish__Q34Game13PelletOtakara6ObjectFv=0x80200310 -onCreateShape__Q34Game13PelletOtakara6ObjectFv=0x80200384 -theEntry__Q34Game13PelletOtakara6ObjectFv=0x8020045C -changeMaterial__Q34Game13PelletOtakara6ObjectFv=0x80200514 -__ct__Q34Game13PelletOtakara3MgrFv=0x8020077C -__dt__Q24Game49FixedSizePelletMgrFv=0x8020082C -__dt__44MonoObjectMgrFv=0x802009C8 -__dt__40ContainerFv=0x80200A68 -setupResources__Q34Game13PelletOtakara3MgrFv=0x80200AD8 -generatorNewPelletParm__Q34Game13PelletOtakara3MgrFv=0x80200B44 -generatorBirth__Q34Game13PelletOtakara3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm=0x80200B68 -generatorWrite__Q34Game13PelletOtakara3MgrFR6StreamPQ24Game13GenPelletParm=0x80200CB0 -generatorRead__Q34Game13PelletOtakara3MgrFR6StreamPQ24Game13GenPelletParmUl=0x80200CE0 -__dt__Q34Game13PelletOtakara3MgrFv=0x80200D18 -getMgrName__Q34Game13PelletOtakara3MgrFv=0x80200ECC -getMgrID__Q34Game13PelletOtakara3MgrFv=0x80200ED4 -generatorLocalVersion__Q34Game13PelletOtakara3MgrFv=0x80200EDC -__dt__40ObjectMgrFv=0x80200EE8 -getKind__Q34Game13PelletOtakara6ObjectFv=0x80200F70 -getBedamaColor__Q34Game13PelletOtakara6ObjectFv=0x80200F78 -onCreateModel__Q24Game49FixedSizePelletMgrFPQ28SysShape5Model=0x80200F84 -birth__Q24Game49FixedSizePelletMgrFv=0x80200F88 -doAnimation__Q24Game49FixedSizePelletMgrFv=0x80200FB4 -doEntry__Q24Game49FixedSizePelletMgrFv=0x80200FE0 -doSetView__Q24Game49FixedSizePelletMgrFi=0x8020100C -doViewCalc__Q24Game49FixedSizePelletMgrFv=0x80201038 -doSimulation__Q24Game49FixedSizePelletMgrFf=0x80201064 -doDirectDraw__Q24Game49FixedSizePelletMgrFR8Graphics=0x80201090 -kill__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x802010BC -getNext__Q24Game49FixedSizePelletMgrFPv=0x802010E0 -getStart__Q24Game49FixedSizePelletMgrFv=0x8020110C -birth__44MonoObjectMgrFv=0x80201138 -kill__44MonoObjectMgrFPQ34Game13PelletOtakara6Object=0x80201198 -getNext__44MonoObjectMgrFPv=0x802011EC -getStart__44MonoObjectMgrFv=0x8020122C -getEnd__44MonoObjectMgrFv=0x8020125C -getAt__44MonoObjectMgrFi=0x80201264 -getTo__44MonoObjectMgrFv=0x80201274 -doAnimation__44MonoObjectMgrFv=0x8020127C -doEntry__44MonoObjectMgrFv=0x802012FC -doSetView__44MonoObjectMgrFi=0x8020137C -doViewCalc__44MonoObjectMgrFv=0x8020140C -doSimulation__44MonoObjectMgrFf=0x8020148C -doDirectDraw__44MonoObjectMgrFR8Graphics=0x8020151C -clearMgr__44MonoObjectMgrFv=0x802015AC -onAlloc__44MonoObjectMgrFv=0x802015DC -getEmptyIndex__44MonoObjectMgrFv=0x802015E0 -get__44MonoObjectMgrFPv=0x8020161C -getObject__40ContainerFPv=0x8020162C -getAt__40ContainerFi=0x80201658 -getTo__40ContainerFv=0x80201660 -doDirectDraw__40ObjectMgrFR8Graphics=0x80201668 -doSimulation__40ObjectMgrFf=0x8020185C -doViewCalc__40ObjectMgrFv=0x80201A50 -doSetView__40ObjectMgrFi=0x80201C34 -doEntry__40ObjectMgrFv=0x80201E28 -doAnimation__40ObjectMgrFv=0x8020200C -__ct__44MonoObjectMgrFv=0x802021F0 -getFlag__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x8020228C -setFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x802022AC -setRevival__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x802022C8 -setComeAlive__Q24Game49FixedSizePelletMgrFPQ24Game6Pellet=0x802022E4 -getEnd__Q24Game49FixedSizePelletMgrFv=0x80202300 -get__Q24Game49FixedSizePelletMgrFPv=0x8020232C -getObjectPtr__Q24Game49FixedSizePelletMgrFPv=0x80202358 -birthFromTeki__Q24Game49FixedSizePelletMgrFPQ24Game12PelletConfig=0x80202384 -alloc__Q24Game49FixedSizePelletMgrFi=0x80202414 -onAlloc__Q24Game49FixedSizePelletMgrFv=0x80202494 -alloc__44MonoObjectMgrFi=0x802024F8 -__ct__Q34Game13PelletOtakara6ObjectFv=0x80202680 -__sinit_pelletOtakara_cpp=0x802026CC -@84@__dt__Q24Game49FixedSizePelletMgrFv=0x802026F4 -@28@resetMgr__44MonoObjectMgrFv=0x802026FC -@28@doDirectDraw__44MonoObjectMgrFR8Graphics=0x80202704 -@28@doSimulation__44MonoObjectMgrFf=0x8020270C -@28@doViewCalc__44MonoObjectMgrFv=0x80202714 -@28@doSetView__44MonoObjectMgrFi=0x8020271C -@28@doEntry__44MonoObjectMgrFv=0x80202724 -@28@doAnimation__44MonoObjectMgrFv=0x8020272C -@28@doDirectDraw__40ObjectMgrFR8Graphics=0x80202734 -@28@doSimulation__40ObjectMgrFf=0x8020273C -@28@doViewCalc__40ObjectMgrFv=0x80202744 -@28@doSetView__40ObjectMgrFi=0x8020274C -@28@doEntry__40ObjectMgrFv=0x80202754 -@28@doAnimation__40ObjectMgrFv=0x8020275C -@84@getEnd__Q24Game49FixedSizePelletMgrFv=0x80202764 -@84@getStart__Q24Game49FixedSizePelletMgrFv=0x8020276C -@84@getNext__Q24Game49FixedSizePelletMgrFPv=0x80202774 -@84@get__Q24Game49FixedSizePelletMgrFPv=0x8020277C -@84@__dt__Q34Game13PelletOtakara3MgrFv=0x80202784 -makePellet__Fv=0x8020278C -initialise__Q24Game9GenPelletFv=0x80202828 -doEvent__Q24Game9GenPelletFUl=0x802028B4 -generatorMakeMatrix__Q24Game9GenPelletFR7MatrixfR10Vector3=0x80202920 -getShape__Q24Game9GenPelletFv=0x80202988 -doWrite__Q24Game9GenPelletFR6Stream=0x802029D8 -doRead__Q24Game9GenPelletFR6Stream=0x80202B10 -ramSaveParameters__Q24Game9GenPelletFR6Stream=0x80202C28 -ramLoadParameters__Q24Game9GenPelletFR6Stream=0x80202C2C -updateUseList__Q24Game9GenPelletFPQ24Game9Generatori=0x80202C30 -generate__Q24Game9GenPelletFPQ24Game9Generator=0x80202C88 -getDebugInfo__Q24Game9GenPelletFPc=0x80202D00 -birth__Q24Game9GenPelletFPQ24Game6GenArg=0x80202D40 -do_onInit__Q34Game10PelletItem6ObjectFPQ24Game15CreatureInitArg=0x80202E14 -onBounce__Q34Game10PelletItem6ObjectFv=0x80202E18 -constructor__Q34Game10PelletItem6ObjectFv=0x80202E74 -sound_otakaraEventStart__Q34Game10PelletItem6ObjectFv=0x80202EC8 -sound_otakaraEventRestart__Q34Game10PelletItem6ObjectFv=0x80202F3C -sound_otakaraEventStop__Q34Game10PelletItem6ObjectFv=0x80202FB0 -sound_otakaraEventFinish__Q34Game10PelletItem6ObjectFv=0x80203024 -__ct__Q34Game10PelletItem3MgrFv=0x80203098 -__dt__Q24Game46FixedSizePelletMgrFv=0x80203148 -__dt__41MonoObjectMgrFv=0x802032E4 -__dt__37ContainerFv=0x80203384 -setupResources__Q34Game10PelletItem3MgrFv=0x802033F4 -generatorNewPelletParm__Q34Game10PelletItem3MgrFv=0x80203468 -generatorBirth__Q34Game10PelletItem3MgrFR10Vector3R10Vector3PQ24Game13GenPelletParm=0x8020348C -generatorWrite__Q34Game10PelletItem3MgrFR6StreamPQ24Game13GenPelletParm=0x802035D4 -generatorRead__Q34Game10PelletItem3MgrFR6StreamPQ24Game13GenPelletParmUl=0x80203604 -__dt__Q34Game10PelletItem3MgrFv=0x8020363C -getMgrName__Q34Game10PelletItem3MgrFv=0x802037F0 -getMgrID__Q34Game10PelletItem3MgrFv=0x802037F8 -generatorLocalVersion__Q34Game10PelletItem3MgrFv=0x80203800 -__dt__37ObjectMgrFv=0x8020380C -getKind__Q34Game10PelletItem6ObjectFv=0x80203894 -onCreateModel__Q24Game46FixedSizePelletMgrFPQ28SysShape5Model=0x8020389C -birth__Q24Game46FixedSizePelletMgrFv=0x802038A0 -doAnimation__Q24Game46FixedSizePelletMgrFv=0x802038CC -doEntry__Q24Game46FixedSizePelletMgrFv=0x802038F8 -doSetView__Q24Game46FixedSizePelletMgrFi=0x80203924 -doViewCalc__Q24Game46FixedSizePelletMgrFv=0x80203950 -doSimulation__Q24Game46FixedSizePelletMgrFf=0x8020397C -doDirectDraw__Q24Game46FixedSizePelletMgrFR8Graphics=0x802039A8 -kill__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet=0x802039D4 -getNext__Q24Game46FixedSizePelletMgrFPv=0x802039F8 -getStart__Q24Game46FixedSizePelletMgrFv=0x80203A24 -birth__41MonoObjectMgrFv=0x80203A50 -kill__41MonoObjectMgrFPQ34Game10PelletItem6Object=0x80203AB0 -getNext__41MonoObjectMgrFPv=0x80203B04 -getStart__41MonoObjectMgrFv=0x80203B44 -getEnd__41MonoObjectMgrFv=0x80203B74 -getAt__41MonoObjectMgrFi=0x80203B7C -getTo__41MonoObjectMgrFv=0x80203B8C -doAnimation__41MonoObjectMgrFv=0x80203B94 -doEntry__41MonoObjectMgrFv=0x80203C14 -doSetView__41MonoObjectMgrFi=0x80203C94 -doViewCalc__41MonoObjectMgrFv=0x80203D24 -doSimulation__41MonoObjectMgrFf=0x80203DA4 -doDirectDraw__41MonoObjectMgrFR8Graphics=0x80203E34 -clearMgr__41MonoObjectMgrFv=0x80203EC4 -onAlloc__41MonoObjectMgrFv=0x80203EF4 -getEmptyIndex__41MonoObjectMgrFv=0x80203EF8 -get__41MonoObjectMgrFPv=0x80203F34 -getObject__37ContainerFPv=0x80203F44 -getAt__37ContainerFi=0x80203F70 -getTo__37ContainerFv=0x80203F78 -doDirectDraw__37ObjectMgrFR8Graphics=0x80203F80 -doSimulation__37ObjectMgrFf=0x80204174 -doViewCalc__37ObjectMgrFv=0x80204368 -doSetView__37ObjectMgrFi=0x8020454C -doEntry__37ObjectMgrFv=0x80204740 -doAnimation__37ObjectMgrFv=0x80204924 -__ct__41MonoObjectMgrFv=0x80204B08 -getFlag__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet=0x80204BA4 -setFromTeki__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet=0x80204BC4 -setRevival__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet=0x80204BE0 -setComeAlive__Q24Game46FixedSizePelletMgrFPQ24Game6Pellet=0x80204BFC -setComeAlive__Q24Game46FixedSizePelletMgrFi=0x80204C18 -getEnd__Q24Game46FixedSizePelletMgrFv=0x80204C28 -get__Q24Game46FixedSizePelletMgrFPv=0x80204C54 -getObjectPtr__Q24Game46FixedSizePelletMgrFPv=0x80204C80 -birthFromTeki__Q24Game46FixedSizePelletMgrFPQ24Game12PelletConfig=0x80204CAC -alloc__Q24Game46FixedSizePelletMgrFi=0x80204D3C -onAlloc__Q24Game46FixedSizePelletMgrFv=0x80204DBC -alloc__41MonoObjectMgrFi=0x80204E20 -__ct__Q34Game10PelletItem6ObjectFv=0x80204FA8 -@84@__dt__Q24Game46FixedSizePelletMgrFv=0x80204FF4 -@28@resetMgr__41MonoObjectMgrFv=0x80204FFC -@28@doDirectDraw__41MonoObjectMgrFR8Graphics=0x80205004 -@28@doSimulation__41MonoObjectMgrFf=0x8020500C -@28@doViewCalc__41MonoObjectMgrFv=0x80205014 -@28@doSetView__41MonoObjectMgrFi=0x8020501C -@28@doEntry__41MonoObjectMgrFv=0x80205024 -@28@doAnimation__41MonoObjectMgrFv=0x8020502C -@28@doDirectDraw__37ObjectMgrFR8Graphics=0x80205034 -@28@doSimulation__37ObjectMgrFf=0x8020503C -@28@doViewCalc__37ObjectMgrFv=0x80205044 -@28@doSetView__37ObjectMgrFi=0x8020504C -@28@doEntry__37ObjectMgrFv=0x80205054 -@28@doAnimation__37ObjectMgrFv=0x8020505C -@84@getEnd__Q24Game46FixedSizePelletMgrFv=0x80205064 -@84@getStart__Q24Game46FixedSizePelletMgrFv=0x8020506C -@84@getNext__Q24Game46FixedSizePelletMgrFPv=0x80205074 -@84@get__Q24Game46FixedSizePelletMgrFPv=0x8020507C -@84@__dt__Q34Game10PelletItem3MgrFv=0x80205084 -traceMove__Q24Game11ShapeMapMgrFRQ24Game8MoveInfof=0x8020508C -traceMove__Q24Game6MapMgrFR12MapCollisionRQ24Game8MoveInfof=0x802051A0 -traceMove_test1203_cylinder__Q24Game6MapMgrFR12MapCollisionRQ24Game8MoveInfof=0x802051C0 -__sinit_mapMgrTraceMove_cpp=0x8020557C -getLODSphere__Q23efx9OnyonSpotFRQ23Sys6Sphere=0x802055A4 -getLODCylinder__Q23efx9OnyonSpotFRQ23Sys8Cylinder=0x802055C8 -changeMaterial__Q23efx9OnyonSpotFv=0x8020561C -loadResources__Q23efx13OnyonSpotDataFv=0x8020566C -onCreate__Q23efx13OnyonSpotDataFP20ModelEffectCreateArg=0x80205810 -getID__Q23efx13OnyonSpotDataFv=0x80205990 -__dt__Q23efx13OnyonSpotDataFv=0x802059A4 -useCylinderLOD__Q23efx9OnyonSpotFv=0x80205A14 -constructor__11ModelEffectFv=0x80205A1C -doSimulation__11ModelEffectFf=0x80205A20 -doDirectDraw__11ModelEffectFR8Graphics=0x80205A24 -__ct__Q34Game12ItemUjamushi9BoidParmsFv=0x80205A28 -blendTo__Q34Game12ItemUjamushi9BoidParmsFRQ34Game12ItemUjamushi9BoidParmsRQ34Game12ItemUjamushi9BoidParmsf=0x80205DFC -__ct__Q34Game12ItemUjamushi13BoidParameterFv=0x80205F34 -__dt__Q44Game12ItemUjamushi13BoidParameter5TNodeFv=0x80205F80 -__ct__Q44Game12ItemUjamushi13BoidParameter5TNodeFv=0x80205FE0 -getParms__Q34Game12ItemUjamushi13BoidParameterFiifRQ34Game12ItemUjamushi9BoidParms=0x80206028 -newParms__Q34Game12ItemUjamushi13BoidParameterFv=0x802060E8 -read__Q34Game12ItemUjamushi13BoidParameterFR6Stream=0x80206130 -__ct__Q34Game12ItemUjamushi3UjaFv=0x802061D8 -damaged__Q34Game12ItemUjamushi3UjaFf=0x80206280 -clearBuffer__Q34Game12ItemUjamushi3UjaFv=0x802062A8 -updateBuffer__Q34Game12ItemUjamushi3UjaFv=0x802062E4 -makeMatrix__Q34Game12ItemUjamushi3UjaFv=0x802065FC -updateScale__Q34Game12ItemUjamushi3UjaFf=0x802066A8 -update__Q34Game12ItemUjamushi3UjaFRQ34Game12ItemUjamushi9BoidParms=0x80206804 -length__10Vector3CFv=0x80207B50 -__pl__FRC10Vector3RC10Vector3=0x80207BA0 -next__35IteratorFv=0x80207BD4 -isDone__35IteratorFv=0x80207CB8 -first__35IteratorFv=0x80207D04 -normalise__10Vector3Fv=0x80207DE0 -__mi__FRC10Vector3RC10Vector3=0x80207E70 -__ct__Q34Game12ItemUjamushi6UjaMgrFi=0x80207EA4 -__dt__Q24Game36TFlockMgrFv=0x80207FD4 -__dt__40MonoObjectMgrFv=0x802080D4 -__dt__36ContainerFv=0x80208174 -init__Q34Game12ItemUjamushi6UjaMgrFRQ34Game12ItemUjamushi13UjaMgrInitArg=0x802081E4 -getMaxObjects__Q24Game36TFlockMgrFv=0x80208234 -getFlock__Q24Game36TFlockMgrFi=0x8020823C -getAt__40MonoObjectMgrFi=0x80208268 -test_createUjas__Q34Game12ItemUjamushi6UjaMgrFv=0x80208278 -do_update_boundSphere__Q34Game12ItemUjamushi6UjaMgrFv=0x80208690 -do_update__Q34Game12ItemUjamushi6UjaMgrFv=0x802086B4 -isFlagAlive__Q24Game36TFlockMgrFi=0x80208950 -astonishPikmins__Q34Game12ItemUjamushi6UjaMgrFv=0x80208964 -init__Q34Game12ItemUjamushi3FSMFPQ34Game12ItemUjamushi4Item=0x80208C48 -onInit__Q34Game12ItemUjamushi4ItemFPQ24Game15CreatureInitArg=0x80208D7C -start__Q24Game40StateMachineFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg=0x80208E44 -onSetPosition__Q34Game12ItemUjamushi4ItemFv=0x80208E78 -setBoidTimer__Q34Game12ItemUjamushi4ItemFv=0x80208F38 -ignoreAtari__Q34Game12ItemUjamushi4ItemFPQ24Game8Creature=0x80208F9C -updateBoundSphere__Q34Game12ItemUjamushi4ItemFv=0x80208FD8 -isCollisionFlick__Q34Game12ItemUjamushi4ItemFv=0x80209050 -interactFlockAttack__Q34Game12ItemUjamushi4ItemFRQ24Game19InteractFlockAttack=0x80209058 -doAI__Q34Game12ItemUjamushi4ItemFv=0x802093CC -getNumObjects__Q24Game36TFlockMgrFv=0x80209678 -doSimpleDraw__Q34Game12ItemUjamushi4ItemFP8Viewport=0x80209680 -__ct__Q34Game12ItemUjamushi3MgrFv=0x802096F8 -__dt__Q34Game12ItemUjamushi13BoidParameterFv=0x80209A08 -__dt__Q24Game39NodeItemMgrFv=0x80209A8C -doSimpleDraw__Q34Game12ItemUjamushi3MgrFP8Viewport=0x80209BA8 -isDone__36IteratorFv=0x80209DA8 -onLoadResources__Q34Game12ItemUjamushi3MgrFv=0x80209DF4 -getCaveName__Q34Game12ItemUjamushi3MgrFi=0x80209DF8 -getCaveID__Q34Game12ItemUjamushi3MgrFPc=0x80209E04 -init__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg=0x80209E58 -exec__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4Item=0x80209EEC -transit__Q24Game36FSMStateFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg=0x80209F44 -cleanup__Q34Game12ItemUjamushi9WaitStateFPQ34Game12ItemUjamushi4Item=0x80209F74 -init__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg=0x80209F78 -exec__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4Item=0x8020A03C -cleanup__Q34Game12ItemUjamushi11ActiveStateFPQ34Game12ItemUjamushi4Item=0x8020A040 -init__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg=0x8020A044 -exec__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4Item=0x8020A0D8 -cleanup__Q34Game12ItemUjamushi8DigStateFPQ34Game12ItemUjamushi4Item=0x8020A130 -generatorNewItemParm__Q34Game12ItemUjamushi3MgrFv=0x8020A134 -generatorWrite__Q34Game12ItemUjamushi3MgrFR6StreamPQ24Game11GenItemParm=0x8020A180 -generatorRead__Q34Game12ItemUjamushi3MgrFR6StreamPQ24Game11GenItemParmUl=0x8020A208 -generatorBirth__Q34Game12ItemUjamushi3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x8020A26C -getName__Q34Game12ItemUjamushi7InitArgFv=0x8020A438 -__dt__Q34Game12ItemUjamushi3MgrFv=0x8020A444 -generatorGetID__Q34Game12ItemUjamushi3MgrFv=0x8020A5B8 -generatorLocalVersion__Q34Game12ItemUjamushi3MgrFv=0x8020A5C4 -__ml__36IteratorFv=0x8020A5D0 -next__36IteratorFv=0x8020A608 -first__36IteratorFv=0x8020A6EC -__dt__37ContainerFv=0x8020A7C8 -__dt__37ObjectMgrFv=0x8020A838 -__dt__39TObjectNodeFv=0x8020A8C0 -__dt__41NodeObjectMgrFv=0x8020A920 -getFlockMgr__Q34Game12ItemUjamushi4ItemFv=0x8020A9E8 -makeTrMatrix__Q34Game12ItemUjamushi4ItemFv=0x8020A9F0 -getMatrix__Q44Game12ItemUjamushi4Item10DummyShapeFi=0x8020A9F4 -doAI__Q24Game89FSMItemFv=0x8020A9FC -__dt__Q34Game12ItemUjamushi6UjaMgrFv=0x8020AA30 -isWeed__Q24Game12BaseFlockMgrFi=0x8020AB48 -isWeed__Q24Game6TFlockFv=0x8020ABF4 -fear__Q24Game12BaseFlockMgrFi=0x8020ABFC -fear__Q24Game6TFlockFv=0x8020ACA8 -__dt__36ObjectMgrFv=0x8020ACB0 -do_update__Q24Game12BaseFlockMgrFv=0x8020AD38 -__ml__35IteratorFv=0x8020AD3C -isVisible__Q34Game12ItemUjamushi3UjaFv=0x8020AD74 -getRadius__Q24Game6TFlockFv=0x8020AD8C -constructor__Q24Game6TFlockFv=0x8020AD94 -isVisible__Q24Game6TFlockFv=0x8020AD98 -damaged__Q24Game6TFlockFf=0x8020ADA0 -getNext__Q24Game36TFlockMgrFPv=0x8020ADA8 -getStart__Q24Game36TFlockMgrFv=0x8020ADD4 -killFlock__Q24Game36TFlockMgrFPQ24Game6TFlock=0x8020AE00 -initDependency__Q24Game39NodeItemMgrFv=0x8020AE24 -kill__Q24Game39NodeItemMgrFPQ34Game12ItemUjamushi4Item=0x8020B00C -doAnimation__Q24Game39NodeItemMgrFv=0x8020B030 -doEntry__Q24Game39NodeItemMgrFv=0x8020B05C -doSetView__Q24Game39NodeItemMgrFi=0x8020B088 -doViewCalc__Q24Game39NodeItemMgrFv=0x8020B0B4 -doSimulation__Q24Game39NodeItemMgrFf=0x8020B0E0 -doDirectDraw__Q24Game39NodeItemMgrFR8Graphics=0x8020B10C -onDamage__Q24Game37ItemStateFPQ34Game12ItemUjamushi4Itemf=0x8020B138 -onKeyEvent__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRCQ28SysShape8KeyEvent=0x8020B13C -onBounce__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemPQ23Sys8Triangle=0x8020B140 -onPlatCollision__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRQ24Game9PlatEvent=0x8020B144 -onCollision__Q24Game37ItemStateFPQ34Game12ItemUjamushi4ItemRQ24Game9CollEvent=0x8020B148 -init__Q24Game36FSMStateFPQ34Game12ItemUjamushi4ItemPQ24Game8StateArg=0x8020B14C -exec__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item=0x8020B150 -cleanup__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item=0x8020B154 -resume__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item=0x8020B158 -restart__Q24Game36FSMStateFPQ34Game12ItemUjamushi4Item=0x8020B15C -init__Q24Game40StateMachineFPQ34Game12ItemUjamushi4Item=0x8020B160 -create__Q24Game40StateMachineFi=0x8020B164 -get__41NodeObjectMgrFPv=0x8020B1C8 -getNext__41NodeObjectMgrFPv=0x8020B1D0 -getStart__41NodeObjectMgrFv=0x8020B1D8 -getEnd__41NodeObjectMgrFv=0x8020B1E0 -delNode__41NodeObjectMgrFPQ34Game12ItemUjamushi4Item=0x8020B1E8 -resetMgr__41NodeObjectMgrFv=0x8020B22C -birth__40MonoObjectMgrFv=0x8020B244 -kill__40MonoObjectMgrFPQ34Game12ItemUjamushi3Uja=0x8020B2A4 -getNext__40MonoObjectMgrFPv=0x8020B2F8 -getStart__40MonoObjectMgrFv=0x8020B338 -getEnd__40MonoObjectMgrFv=0x8020B368 -getTo__40MonoObjectMgrFv=0x8020B370 -doAnimation__40MonoObjectMgrFv=0x8020B378 -doEntry__40MonoObjectMgrFv=0x8020B3C8 -doSetView__40MonoObjectMgrFi=0x8020B418 -doViewCalc__40MonoObjectMgrFv=0x8020B468 -doSimulation__40MonoObjectMgrFf=0x8020B4B8 -doDirectDraw__40MonoObjectMgrFR8Graphics=0x8020B508 -resetMgr__40MonoObjectMgrFv=0x8020B558 -clearMgr__40MonoObjectMgrFv=0x8020B570 -onAlloc__40MonoObjectMgrFv=0x8020B5A0 -getEmptyIndex__40MonoObjectMgrFv=0x8020B5A4 -get__40MonoObjectMgrFPv=0x8020B5E0 -doAnimation__37ObjectMgrFv=0x8020B5F0 -doEntry__37ObjectMgrFv=0x8020B7D4 -doSetView__37ObjectMgrFi=0x8020B9B8 -doViewCalc__37ObjectMgrFv=0x8020BBAC -doSimulation__37ObjectMgrFf=0x8020BD90 -doDirectDraw__37ObjectMgrFR8Graphics=0x8020BF84 -doAnimation__36ObjectMgrFv=0x8020C178 -doEntry__36ObjectMgrFv=0x8020C34C -doSetView__36ObjectMgrFi=0x8020C520 -doViewCalc__36ObjectMgrFv=0x8020C6F4 -doSimulation__36ObjectMgrFf=0x8020C8C8 -doDirectDraw__36ObjectMgrFR8Graphics=0x8020CA9C -getObject__37ContainerFPv=0x8020CC70 -getAt__37ContainerFi=0x8020CC9C -getTo__37ContainerFv=0x8020CCA4 -getObject__36ContainerFPv=0x8020CCAC -getAt__36ContainerFi=0x8020CCD8 -getTo__36ContainerFv=0x8020CCE0 -alloc__40MonoObjectMgrFi=0x8020CCE8 -__ct__40MonoObjectMgrFv=0x8020CE70 -transit__Q24Game40StateMachineFPQ34Game12ItemUjamushi4ItemiPQ24Game8StateArg=0x8020CF0C -registerState__Q24Game40StateMachineFPQ24Game36FSMState=0x8020CFA8 -exec__Q24Game40StateMachineFPQ34Game12ItemUjamushi4Item=0x8020D02C -onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent=0x8020D064 -platCallback__Q24Game89FSMItemFRQ24Game9PlatEvent=0x8020D0A8 -collisionCallback__Q24Game89FSMItemFRQ24Game9CollEvent=0x8020D0EC -bounceCallback__Q24Game89FSMItemFPQ23Sys8Triangle=0x8020D130 -getEnd__Q24Game39NodeItemMgrFv=0x8020D174 -getStart__Q24Game39NodeItemMgrFv=0x8020D1A0 -getNext__Q24Game39NodeItemMgrFPv=0x8020D1CC -get__Q24Game39NodeItemMgrFPv=0x8020D1F8 -killAll__Q24Game39NodeItemMgrFv=0x8020D224 -entry__Q24Game39NodeItemMgrFPQ34Game12ItemUjamushi4Item=0x8020D464 -__ct__Q24Game39NodeItemMgrFv=0x8020D4E8 -getEnd__Q24Game36TFlockMgrFv=0x8020D5FC -get__Q24Game36TFlockMgrFPv=0x8020D628 -__sinit_itemUjamushi_cpp=0x8020D654 -@32@__dt__Q24Game36TFlockMgrFv=0x8020D67C -@28@resetMgr__40MonoObjectMgrFv=0x8020D684 -@28@doDirectDraw__40MonoObjectMgrFR8Graphics=0x8020D68C -@28@doSimulation__40MonoObjectMgrFf=0x8020D694 -@28@doViewCalc__40MonoObjectMgrFv=0x8020D69C -@28@doSetView__40MonoObjectMgrFi=0x8020D6A4 -@28@doEntry__40MonoObjectMgrFv=0x8020D6AC -@28@doAnimation__40MonoObjectMgrFv=0x8020D6B4 -@28@doDirectDraw__36ObjectMgrFR8Graphics=0x8020D6BC -@28@doSimulation__36ObjectMgrFf=0x8020D6C4 -@28@doViewCalc__36ObjectMgrFv=0x8020D6CC -@28@doSetView__36ObjectMgrFi=0x8020D6D4 -@28@doEntry__36ObjectMgrFv=0x8020D6DC -@28@doAnimation__36ObjectMgrFv=0x8020D6E4 -@32@getEnd__Q24Game36TFlockMgrFv=0x8020D6EC -@32@getStart__Q24Game36TFlockMgrFv=0x8020D6F4 -@32@getNext__Q24Game36TFlockMgrFPv=0x8020D6FC -@32@get__Q24Game36TFlockMgrFPv=0x8020D704 -@32@__dt__Q34Game12ItemUjamushi6UjaMgrFv=0x8020D70C -@376@onKeyEvent__Q24Game89FSMItemFRCQ28SysShape8KeyEvent=0x8020D714 -@48@__dt__Q24Game39NodeItemMgrFv=0x8020D71C -@28@resetMgr__41NodeObjectMgrFv=0x8020D724 -@28@doDirectDraw__37ObjectMgrFR8Graphics=0x8020D72C -@28@doSimulation__37ObjectMgrFf=0x8020D734 -@28@doViewCalc__37ObjectMgrFv=0x8020D73C -@28@doSetView__37ObjectMgrFi=0x8020D744 -@28@doEntry__37ObjectMgrFv=0x8020D74C -@28@doAnimation__37ObjectMgrFv=0x8020D754 -@48@getEnd__Q24Game39NodeItemMgrFv=0x8020D75C -@48@getStart__Q24Game39NodeItemMgrFv=0x8020D764 -@48@getNext__Q24Game39NodeItemMgrFPv=0x8020D76C -@48@get__Q24Game39NodeItemMgrFPv=0x8020D774 -@48@__dt__Q34Game12ItemUjamushi3MgrFv=0x8020D77C -getInfo__Q26PikiAI7ActWeedFPc=0x8020D784 -__ct__Q26PikiAI7ActWeedFPQ24Game4Piki=0x8020D7D0 -init__Q26PikiAI7ActWeedFPQ26PikiAI9ActionArg=0x8020D864 -decideTarget__Q26PikiAI7ActWeedFv=0x8020D9D4 -initAdjust__Q26PikiAI7ActWeedFv=0x8020DA3C -calcAttackPos__Q26PikiAI7ActWeedFv=0x8020DBC4 -exec__Q26PikiAI7ActWeedFv=0x8020DC94 -cleanup__Q26PikiAI7ActWeedFv=0x8020E4D4 -collisionCallback__Q26PikiAI7ActWeedFPQ24Game4PikiRQ24Game9CollEvent=0x8020E53C -__ct__Q26PikiAI14ActFlockAttackFPQ24Game4Piki=0x8020E540 -init__Q26PikiAI14ActFlockAttackFPQ26PikiAI9ActionArg=0x8020E5C8 -exec__Q26PikiAI14ActFlockAttackFv=0x8020E700 -onKeyEvent__Q26PikiAI14ActFlockAttackFRCQ28SysShape8KeyEvent=0x8020EA24 -cleanup__Q26PikiAI14ActFlockAttackFv=0x8020EA88 -getName__Q26PikiAI20FlockAttackActionArgFv=0x8020EA94 -__sinit_aiWeed_cpp=0x8020EAA0 -@40@4@onKeyEvent__Q26PikiAI14ActFlockAttackFRCQ28SysShape8KeyEvent=0x8020EAC8 -update__Q24Game12BaseFlockMgrFv=0x8020EADC -getNearestFlock__Q24Game12BaseFlockMgrFR10Vector3=0x8020EBBC -attackFlock__Q24Game12BaseFlockMgrFif=0x8020ED10 -resolveCollision__Q24Game12BaseFlockMgrFf=0x8020EE2C -doSimpleDraw__Q24Game12BaseFlockMgrFP8ViewportPP12J3DModelDatai=0x8020F0C0 -__sinit_flockMgr_cpp=0x8020F258 -__ct__Q34Game8ItemWeed4WeedFv=0x8020F280 -damaged__Q34Game8ItemWeed4WeedFf=0x8020F2B8 -makeMatrix__Q34Game8ItemWeed4WeedFv=0x8020F2C0 -__dt__Q24Game32TFlockMgrFv=0x8020F36C -__dt__36MonoObjectMgrFv=0x8020F46C -__dt__32ContainerFv=0x8020F50C -getMaxObjects__Q24Game32TFlockMgrFv=0x8020F57C -do_update_boundSphere__Q34Game8ItemWeed7WeedMgrFv=0x8020F584 -do_update__Q34Game8ItemWeed7WeedMgrFv=0x8020F588 -init__Q34Game8ItemWeed3FSMFPQ34Game8ItemWeed4Item=0x8020F5A0 -onInit__Q34Game8ItemWeed4ItemFPQ24Game15CreatureInitArg=0x8020F624 -start__Q24Game35StateMachineFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg=0x8020F780 -onSetPosition__Q34Game8ItemWeed4ItemFv=0x8020F7B4 -ignoreAtari__Q34Game8ItemWeed4ItemFPQ24Game8Creature=0x8020FA1C -updateBoundSphere__Q34Game8ItemWeed4ItemFv=0x8020FA58 -interactFlockAttack__Q34Game8ItemWeed4ItemFRQ24Game19InteractFlockAttack=0x8020FAD0 -getFlock__Q24Game32TFlockMgrFi=0x8020FDB0 -getAt__36MonoObjectMgrFi=0x8020FDDC -doAI__Q34Game8ItemWeed4ItemFv=0x8020FDEC -getNumObjects__Q24Game32TFlockMgrFv=0x8020FE70 -doSimpleDraw__Q34Game8ItemWeed4ItemFP8Viewport=0x8020FE78 -__ct__Q34Game8ItemWeed3MgrFv=0x8020FEB4 -doSimpleDraw__Q34Game8ItemWeed3MgrFP8Viewport=0x8020FFF0 -onLoadResources__Q34Game8ItemWeed3MgrFv=0x802101F0 -getCaveName__Q34Game8ItemWeed3MgrFi=0x802101F4 -getCaveID__Q34Game8ItemWeed3MgrFPc=0x802101FC -init__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4ItemPQ24Game8StateArg=0x80210248 -exec__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4Item=0x8021024C -cleanup__Q34Game8ItemWeed9WaitStateFPQ34Game8ItemWeed4Item=0x80210250 -generatorNewItemParm__Q34Game8ItemWeed3MgrFv=0x80210254 -generatorWrite__Q34Game8ItemWeed3MgrFR6StreamPQ24Game11GenItemParm=0x802102A8 -generatorRead__Q34Game8ItemWeed3MgrFR6StreamPQ24Game11GenItemParmUl=0x80210358 -generatorBirth__Q34Game8ItemWeed3MgrFR10Vector3R10Vector3PQ24Game11GenItemParm=0x802103E4 -getName__Q34Game8ItemWeed7InitArgFv=0x802105C0 -__dt__Q34Game8ItemWeed3MgrFv=0x802105CC -doNew__Q34Game8ItemWeed3MgrFv=0x80210700 -generatorGetID__Q34Game8ItemWeed3MgrFv=0x80210848 -generatorLocalVersion__Q34Game8ItemWeed3MgrFv=0x80210854 -getCreatureName__Q34Game8ItemWeed4ItemFv=0x80210860 -getFlockMgr__Q34Game8ItemWeed4ItemFv=0x80210868 -makeTrMatrix__Q34Game8ItemWeed4ItemFv=0x80210870 -getMatrix__Q44Game8ItemWeed4Item10DummyShapeFi=0x80210874 -doAI__Q24Game74FSMItemFv=0x8021087C -__dt__Q34Game8ItemWeed7WeedMgrFv=0x802108B0 -__dt__32ObjectMgrFv=0x802109C8 -isWeed__Q34Game8ItemWeed4WeedFv=0x80210A50 -getNext__Q24Game32TFlockMgrFPv=0x80210A60 -getStart__Q24Game32TFlockMgrFv=0x80210A8C -killFlock__Q24Game32TFlockMgrFPQ24Game6TFlock=0x80210AB8 -onDamage__Q24Game32ItemStateFPQ34Game8ItemWeed4Itemf=0x80210ADC -onKeyEvent__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRCQ28SysShape8KeyEvent=0x80210AE0 -onBounce__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemPQ23Sys8Triangle=0x80210AE4 -onPlatCollision__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRQ24Game9PlatEvent=0x80210AE8 -onCollision__Q24Game32ItemStateFPQ34Game8ItemWeed4ItemRQ24Game9CollEvent=0x80210AEC -init__Q24Game31FSMStateFPQ34Game8ItemWeed4ItemPQ24Game8StateArg=0x80210AF0 -exec__Q24Game31FSMStateFPQ34Game8ItemWeed4Item=0x80210AF4 -cleanup__Q24Game31FSMStateFPQ34Game8ItemWeed4Item=0x80210AF8 -resume__Q24Game31FSMStateFPQ34Game8ItemWeed4Item=0x80210AFC -restart__Q24Game31FSMStateFPQ34Game8ItemWeed4Item=0x80210B00 -transit__Q24Game31FSMStateFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg=0x80210B04 -init__Q24Game35StateMachineFPQ34Game8ItemWeed4Item=0x80210B34 -create__Q24Game35StateMachineFi=0x80210B38 -birth__36MonoObjectMgrFv=0x80210B9C -kill__36MonoObjectMgrFPQ34Game8ItemWeed4Weed=0x80210BFC -getNext__36MonoObjectMgrFPv=0x80210C50 -getStart__36MonoObjectMgrFv=0x80210C90 -getEnd__36MonoObjectMgrFv=0x80210CC0 -getTo__36MonoObjectMgrFv=0x80210CC8 -doAnimation__36MonoObjectMgrFv=0x80210CD0 -doEntry__36MonoObjectMgrFv=0x80210D20 -doSetView__36MonoObjectMgrFi=0x80210D70 -doViewCalc__36MonoObjectMgrFv=0x80210DC0 -doSimulation__36MonoObjectMgrFf=0x80210E10 -doDirectDraw__36MonoObjectMgrFR8Graphics=0x80210E60 -resetMgr__36MonoObjectMgrFv=0x80210EB0 -clearMgr__36MonoObjectMgrFv=0x80210EC8 -onAlloc__36MonoObjectMgrFv=0x80210EF8 -getEmptyIndex__36MonoObjectMgrFv=0x80210EFC -get__36MonoObjectMgrFPv=0x80210F38 -getObject__32ContainerFPv=0x80210F48 -getAt__32ContainerFi=0x80210F74 -getTo__32ContainerFv=0x80210F7C -doDirectDraw__32ObjectMgrFR8Graphics=0x80210F84 -isDone__31IteratorFv=0x80211158 -doSimulation__32ObjectMgrFf=0x802111A4 -doViewCalc__32ObjectMgrFv=0x80211378 -doSetView__32ObjectMgrFi=0x8021154C -doEntry__32ObjectMgrFv=0x80211720 -doAnimation__32ObjectMgrFv=0x802118F4 -alloc__36MonoObjectMgrFi=0x80211AC8 -__ct__36MonoObjectMgrFv=0x80211C50 -transit__Q24Game35StateMachineFPQ34Game8ItemWeed4ItemiPQ24Game8StateArg=0x80211CEC -registerState__Q24Game35StateMachineFPQ24Game31FSMState=0x80211D88 -exec__Q24Game35StateMachineFPQ34Game8ItemWeed4Item=0x80211E0C -onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent=0x80211E44 -platCallback__Q24Game74FSMItemFRQ24Game9PlatEvent=0x80211E88 -collisionCallback__Q24Game74FSMItemFRQ24Game9CollEvent=0x80211ECC -bounceCallback__Q24Game74FSMItemFPQ23Sys8Triangle=0x80211F10 -isFlagAlive__Q24Game32TFlockMgrFi=0x80211F54 -getEnd__Q24Game32TFlockMgrFv=0x80211F68 -get__Q24Game32TFlockMgrFPv=0x80211F94 -__ml__31IteratorFv=0x80211FC0 -next__31IteratorFv=0x80211FF8 -first__31IteratorFv=0x802120DC -__sinit_itemWeed_cpp=0x802121B8 -@32@__dt__Q24Game32TFlockMgrFv=0x802121E0 -@28@resetMgr__36MonoObjectMgrFv=0x802121E8 -@28@doDirectDraw__36MonoObjectMgrFR8Graphics=0x802121F0 -@28@doSimulation__36MonoObjectMgrFf=0x802121F8 -@28@doViewCalc__36MonoObjectMgrFv=0x80212200 -@28@doSetView__36MonoObjectMgrFi=0x80212208 -@28@doEntry__36MonoObjectMgrFv=0x80212210 -@28@doAnimation__36MonoObjectMgrFv=0x80212218 -@28@doDirectDraw__32ObjectMgrFR8Graphics=0x80212220 -@28@doSimulation__32ObjectMgrFf=0x80212228 -@28@doViewCalc__32ObjectMgrFv=0x80212230 -@28@doSetView__32ObjectMgrFi=0x80212238 -@28@doEntry__32ObjectMgrFv=0x80212240 -@28@doAnimation__32ObjectMgrFv=0x80212248 -@32@getEnd__Q24Game32TFlockMgrFv=0x80212250 -@32@getStart__Q24Game32TFlockMgrFv=0x80212258 -@32@getNext__Q24Game32TFlockMgrFPv=0x80212260 -@32@get__Q24Game32TFlockMgrFPv=0x80212268 -@32@__dt__Q34Game8ItemWeed7WeedMgrFv=0x80212270 -@376@onKeyEvent__Q24Game74FSMItemFRCQ28SysShape8KeyEvent=0x80212278 -@48@__dt__Q34Game8ItemWeed3MgrFv=0x80212280 -__ct__Q26PikiAI9ActBridgeFPQ24Game4Piki=0x80212288 -init__Q26PikiAI9ActBridgeFPQ26PikiAI9ActionArg=0x80212384 -initFollow__Q26PikiAI9ActBridgeFv=0x8021244C -exec__Q26PikiAI9ActBridgeFv=0x802124B4 -cleanup__Q26PikiAI9ActBridgeFv=0x802127D0 -platCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiRQ24Game9PlatEvent=0x8021282C -collisionCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiRQ24Game9CollEvent=0x8021293C -bounceCallback__Q26PikiAI9ActBridgeFPQ24Game4PikiPQ23Sys8Triangle=0x80212940 -onKeyEvent__Q26PikiAI9ActBridgeFRCQ28SysShape8KeyEvent=0x80212944 -@52@4@onKeyEvent__Q26PikiAI9ActBridgeFRCQ28SysShape8KeyEvent=0x80212948 -__ct__Q26PikiAI7ActTekiFPQ24Game4Piki=0x8021295C -init__Q26PikiAI7ActTekiFPQ26PikiAI9ActionArg=0x802129EC -exec__Q26PikiAI7ActTekiFv=0x80212AF8 -emotion_success__Q26PikiAI7ActTekiFv=0x80212C70 -makeTarget__Q26PikiAI7ActTekiFv=0x80212CC0 -test_0__Q26PikiAI7ActTekiFv=0x80212FD4 -doDirectDraw__Q26PikiAI7ActTekiFR8Graphics=0x80213318 -setTimer__Q26PikiAI7ActTekiFv=0x80213370 -cleanup__Q26PikiAI7ActTekiFv=0x802134A0 -collisionCallback__Q26PikiAI7ActTekiFPQ24Game4PikiRQ24Game9CollEvent=0x802134A4 -onKeyEvent__Q26PikiAI7ActTekiFRCQ28SysShape8KeyEvent=0x8021358C -getNextAIType__Q26PikiAI7ActTekiFv=0x80213590 -@72@4@onKeyEvent__Q26PikiAI7ActTekiFRCQ28SysShape8KeyEvent=0x80213598 -init__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x802135AC -check_DemoInout__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection=0x80213E5C -on_section_fadeout__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection=0x802140E4 -on_demo_timer__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionUl=0x802140F0 -exec__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection=0x80214C18 -__ct__Q32og6Screen18DispMemberSMenuAllFv=0x802152F8 -onOrimaDown__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectioni=0x802154D4 -onHoleIn__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ34Game8ItemCave4Item=0x802155A8 -onMovieCommand__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectioni=0x80215684 -onMovieStart__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x80215688 -onMovieDone__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x802157E0 -needRepayDemo__Q34Game10SingleGame9GameStateFv=0x8021725C -startRepayDemo__Q34Game10SingleGame9GameStateFv=0x802172D0 -updateRepayDemo__Q34Game10SingleGame9GameStateFv=0x80217410 -draw__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSectionR8Graphics=0x802174B8 -cleanup__Q34Game10SingleGame9GameStateFPQ24Game17SingleGameSection=0x80217530 -getSize__Q32og6Screen14DispMemberSaveFv=0x80217598 -getOwnerID__Q32og6Screen14DispMemberSaveFv=0x802175A0 -getMemberID__Q32og6Screen14DispMemberSaveFv=0x802175AC -getSize__Q32og6Screen19DispMemberSMenuContFv=0x802175BC -getOwnerID__Q32og6Screen19DispMemberSMenuContFv=0x802175C4 -getMemberID__Q32og6Screen19DispMemberSMenuContFv=0x802175D0 -getSize__Q32og6Screen22DispMemberSMenuPauseVSFv=0x802175E4 -getOwnerID__Q32og6Screen22DispMemberSMenuPauseVSFv=0x802175EC -getMemberID__Q32og6Screen22DispMemberSMenuPauseVSFv=0x802175F8 -getSize__Q32og6Screen18DispMemberSMenuMapFv=0x8021760C -getOwnerID__Q32og6Screen18DispMemberSMenuMapFv=0x80217614 -getMemberID__Q32og6Screen18DispMemberSMenuMapFv=0x80217620 -getSize__Q32og6Screen19DispMemberSMenuItemFv=0x80217630 -getOwnerID__Q32og6Screen19DispMemberSMenuItemFv=0x80217638 -getMemberID__Q32og6Screen19DispMemberSMenuItemFv=0x80217644 -getSize__Q32og6Screen27DispMemberSMenuPauseDoukutuFv=0x80217658 -getOwnerID__Q32og6Screen27DispMemberSMenuPauseDoukutuFv=0x80217660 -getMemberID__Q32og6Screen27DispMemberSMenuPauseDoukutuFv=0x8021766C -getSize__Q32og6Screen20DispMemberSMenuPauseFv=0x80217680 -getOwnerID__Q32og6Screen20DispMemberSMenuPauseFv=0x80217688 -getMemberID__Q32og6Screen20DispMemberSMenuPauseFv=0x80217694 -getSize__Q32og6Screen18DispMemberSMenuAllFv=0x802176A8 -getOwnerID__Q32og6Screen18DispMemberSMenuAllFv=0x802176B0 -getMemberID__Q32og6Screen18DispMemberSMenuAllFv=0x802176BC -doSetSubMemberAll__Q32og6Screen18DispMemberSMenuAllFv=0x802176CC -__sinit_singleGS_MainGame_cpp=0x80217738 -init__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x80217760 -on_section_fadeout__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection=0x80217A64 -exec__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection=0x80217A70 -draw__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionR8Graphics=0x80217D44 -check_SMenu__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection=0x80217DDC -cleanup__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSection=0x80218268 -onOrimaDown__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectioni=0x802182D0 -onFountainReturn__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ34Game15ItemBigFountain4Item=0x802183A4 -onNextFloor__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ34Game8ItemHole4Item=0x802184A8 -onMovieCommand__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectioni=0x802185EC -onMovieStart__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x80218BDC -onMovieDone__Q34Game10SingleGame9CaveStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x8021906C -__sinit_singleGS_CaveGame_cpp=0x80219F20 -__ct__Q34Game10SingleGame15MainResultStateFv=0x80219F48 -__dt__Q34Game6Result5TNodeFv=0x8021A098 -init__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x8021A0F8 -beforeSave__Q34Game10SingleGame15MainResultStateFv=0x8021A1FC -loadResource__Q34Game10SingleGame15MainResultStateFv=0x8021A220 -exec__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSection=0x8021A2A8 -onMovieDone__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x8021A690 -createResultNodes__Q34Game10SingleGame15MainResultStateFv=0x8021A6C0 -draw__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSectionR8Graphics=0x8021AA1C -cleanup__Q34Game10SingleGame15MainResultStateFPQ24Game17SingleGameSection=0x8021AAB0 -getSize__Q32kh6Screen20DispDayEndResultTitlFv=0x8021AB2C -getOwnerID__Q32kh6Screen20DispDayEndResultTitlFv=0x8021AB34 -getMemberID__Q32kh6Screen20DispDayEndResultTitlFv=0x8021AB3C -getSize__Q32kh6Screen16DispDayEndResultFv=0x8021AB50 -getOwnerID__Q32kh6Screen16DispDayEndResultFv=0x8021AB58 -getMemberID__Q32kh6Screen16DispDayEndResultFv=0x8021AB60 -doSetSubMemberAll__Q32kh6Screen16DispDayEndResultFv=0x8021AB74 -invoke__46DelegateFv=0x8021ABC8 -__sinit_singleGS_MainResult_cpp=0x8021ABF8 -__ct__Q34Game10SingleGame15CaveResultStateFv=0x8021AC20 -init__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x8021AD18 -loadResource__Q34Game10SingleGame15CaveResultStateFv=0x8021AE3C -exec__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection=0x8021B07C -draw__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSectionR8Graphics=0x8021B364 -cleanup__Q34Game10SingleGame15CaveResultStateFPQ24Game17SingleGameSection=0x8021B424 -createResultNodes__Q34Game10SingleGame15CaveResultStateFv=0x8021B4E8 -invoke__46DelegateFv=0x8021B8F4 -__sinit_singleGS_CaveResult_cpp=0x8021B924 -__ct__Q34Game10SingleGame11SelectStateFv=0x8021B94C -init__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x8021BA30 -initNext__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection=0x8021BAC8 -init__Q34Game8WorldMap4BaseFRQ34Game8WorldMap7InitArg=0x8021BD28 -dvdload__Q34Game10SingleGame11SelectStateFv=0x8021BD2C -loadResource__Q34Game8WorldMap4BaseFv=0x8021C038 -exec__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection=0x8021C03C -update__Q34Game8WorldMap4BaseFRQ34Game8WorldMap9UpdateArg=0x8021C2E8 -draw__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSectionR8Graphics=0x8021C2EC -draw4th__Q34Game8WorldMap4BaseFR8Graphics=0x8021C5BC -draw3rd__Q34Game8WorldMap4BaseFR8Graphics=0x8021C5C0 -draw2nd__Q34Game8WorldMap4BaseFR8Graphics=0x8021C5C4 -draw1st__Q34Game8WorldMap4BaseFR8Graphics=0x8021C5C8 -cleanup__Q34Game10SingleGame11SelectStateFPQ24Game17SingleGameSection=0x8021C5CC -invoke__42DelegateFv=0x8021C6C0 -__sinit_singleGS_WorldMap_cpp=0x8021C6F0 -__ct__Q34Game10SingleGame9FileStateFv=0x8021C718 -init__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x8021C7C0 -dvdload__Q34Game10SingleGame9FileStateFv=0x8021C85C -exec__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection=0x8021C9F8 -startGame__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection=0x8021CB8C -draw__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSectionR8Graphics=0x8021CE08 -cleanup__Q34Game10SingleGame9FileStateFPQ24Game17SingleGameSection=0x8021CEC8 -invoke__39DelegateFv=0x8021CF9C -__sinit_singleGS_FileSelect_cpp=0x8021CFCC -write__Q24Game8PlayDataFR6Stream=0x8021CFF4 -read__Q24Game8PlayDataFR6Stream=0x8021D734 -read__Q34Game8PlayData8LimitGenFR6Stream=0x8021DB38 -write__Q34Game8PlayData8LimitGenFR6Stream=0x8021DB7C -write__Q24Game16PelletCropMemoryFR6Stream=0x8021DBF4 -read__Q24Game16PelletCropMemoryFR6Stream=0x8021DDFC -write__Q24Game10OlimarDataFR6Stream=0x8021DF4C -read__Q24Game10OlimarDataFR6Stream=0x8021DFC8 -write__Q24Game12CaveSaveDataFR6Stream=0x8021E024 -read__Q24Game12CaveSaveDataFR6StreamUl=0x8021E1BC -getPosition__Q25Radar5PointFv=0x8021E28C -__ct__Q25Radar3MgrFv=0x8021E2F4 -__ct__Q25Radar5PointFv=0x8021E3E8 -__dt__Q25Radar5PointFv=0x8021E438 -clear__Q25Radar3MgrFv=0x8021E498 -bornFuefuki__Q25Radar3MgrFv=0x8021E54C -dieFuefuki__Q25Radar3MgrFv=0x8021E55C -fuefuki__Q25Radar3MgrFv=0x8021E574 -entry__Q25Radar3MgrFPQ24Game15TPositionObjectQ25Radar10cRadarTypeUl=0x8021E584 -exit__Q25Radar3MgrFPQ24Game15TPositionObject=0x8021E5F4 -getNumOtakaraItems__Q25Radar3MgrFv=0x8021E630 -attach__Q25Radar3MgrFPQ24Game15TPositionObjectQ25Radar10cRadarTypeUl=0x8021E64C -detach__Q25Radar3MgrFPQ24Game15TPositionObject=0x8021E6B0 -calcNearestTreasure__Q25Radar3MgrFR10Vector3fR10Vector3Rf=0x8021E774 -ogDummpyInit__Q25Radar3MgrFv=0x8021E954 -getPosition__7OgDummyFv=0x8021EEBC -__ct__Q34Game10SingleGame10MovieStateFv=0x8021EED8 -init__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x8021EF64 -exec__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSection=0x8021F1F4 -draw__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSectionR8Graphics=0x8021F308 -cleanup__Q34Game10SingleGame10MovieStateFPQ24Game17SingleGameSection=0x8021F348 -__sinit_singleGS_Movie_cpp=0x8021F390 -demoCheck__Q24Game4NaviFv=0x8021F3D0 -distance__10Vector3FR10Vector3=0x80220B60 -next__Q24Game30EnemyIteratorFv=0x80220BB8 -isDone__Q24Game30EnemyIteratorFv=0x80220C9C -__ct__Q24Game12MoviePlayArgFPcPcP39IDelegate3Ul=0x80220CE8 -first__Q24Game30EnemyIteratorFv=0x80220D28 -checkDemoNaviAndPiki__Q24Game4NaviFRQ23Sys6Sphere=0x80220E04 -__ml__Q24Game30EnemyIteratorFv=0x80220FC8 -__sinit_navi_demoCheck_cpp=0x80221000 -__ct__Q34Game15IllustratedBook6CameraFP10Controller=0x80221028 -startVibration__Q34Game15IllustratedBook6CameraFi=0x802212AC -move__Q34Game15IllustratedBook6CameraFRC10Vector3=0x80221484 -setTarget__Q34Game15IllustratedBook6CameraFPQ24Game8Creature=0x8022150C -resetControl__Q34Game15IllustratedBook6CameraFv=0x80221634 -doUpdate__Q34Game15IllustratedBook6CameraFv=0x802218A8 -updateCameraShake__Q34Game15IllustratedBook6CameraFv=0x802221AC -updateFocus__Q34Game15IllustratedBook6CameraFv=0x802223B0 -addFovy__Q34Game15IllustratedBook6CameraFf=0x80222498 -__ct__Q34Game10SingleGame10ZukanStateFv=0x802224EC -init__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x802225D8 -setMode__Q34Game10SingleGame10ZukanStateFQ44Game10SingleGame10ZukanState5CMode=0x80222944 -exec__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection=0x80222958 -execModeChange__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionQ44Game10SingleGame10ZukanState5CMode=0x80223084 -execChangeTeki__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection=0x802231F0 -execTeki__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection=0x802232D0 -startWipe__Q34Game10SingleGame10ZukanStateFf=0x80223874 -createEnemy__Q34Game10SingleGame10ZukanStateFi=0x8022388C -execChangePellet__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection=0x802238C8 -execPellet__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection=0x802239B4 -getMaxPelletID__Q34Game10SingleGame10ZukanStateFv=0x80223A68 -getCurrentPelletConfig__Q34Game10SingleGame10ZukanStateFi=0x80223AA4 -convertPelletID__Q34Game10SingleGame10ZukanStateFRii=0x80223B20 -draw__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics=0x80223BA0 -drawGradationEffect__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics=0x80223E14 -drawLightEffect__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSectionR8Graphics=0x8022438C -dvdloadA__Q34Game10SingleGame10ZukanStateFv=0x80224B4C -createTeki__Q34Game10SingleGame10ZukanStateFi=0x802254E0 -createPellet__Q34Game10SingleGame10ZukanStateFi=0x802255C4 -dvdloadB_teki__Q34Game10SingleGame10ZukanStateFv=0x80225604 -dvdloadB_pellet__Q34Game10SingleGame10ZukanStateFv=0x802262E0 -clearHeapB_common__Q34Game10SingleGame10ZukanStateFv=0x80226790 -clearHeapB_teki__Q34Game10SingleGame10ZukanStateFv=0x80226820 -clearHeapB_pellet__Q34Game10SingleGame10ZukanStateFv=0x80226BDC -clearHeaps__Q34Game10SingleGame10ZukanStateFv=0x80226D50 -cleanup__Q34Game10SingleGame10ZukanStateFPQ24Game17SingleGameSection=0x802270FC -getSize__Q28Morimura19DispMemberZukanItemFv=0x802271A4 -getOwnerID__Q28Morimura19DispMemberZukanItemFv=0x802271AC -getMemberID__Q28Morimura19DispMemberZukanItemFv=0x802271B8 -getSize__Q28Morimura20DispMemberZukanEnemyFv=0x802271C8 -getOwnerID__Q28Morimura20DispMemberZukanEnemyFv=0x802271D0 -getMemberID__Q28Morimura20DispMemberZukanEnemyFv=0x802271DC -__dt__Q34Game15IllustratedBook6CameraFv=0x802271EC -getLookAtPosition___12LookAtCameraFv=0x802272BC -on_getPositionPtr__12LookAtCameraFv=0x802272D8 -getTargetDistance__6CameraFv=0x802272E0 -isSpecialCamera__6CameraFv=0x802272E8 -__dt__Q34Game15IllustratedBook11EnemyTexMgrFv=0x802272F0 -__dt__Q34Game15IllustratedBook10DebugParmsFv=0x80227360 -invoke__41DelegateFv=0x802273C0 -__sinit_singleGS_Zukan_cpp=0x802273F0 -__ct__Q34Game12ResultTexMgr3MgrFv=0x80227418 -__dt__Q34Game12ResultTexMgr3MgrFv=0x80227468 -create__Q34Game12ResultTexMgr3MgrFRQ34Game12ResultTexMgr3Arg=0x802274C8 -getOtakaraItemTexture__Q34Game12ResultTexMgr3MgrFi=0x80227808 -getOtakaraTexture__Q34Game12ResultTexMgr3MgrFi=0x802278C0 -getItemTexture__Q34Game12ResultTexMgr3MgrFi=0x802278E4 -getCarcassTexture__Q34Game12ResultTexMgr3MgrFv=0x80227908 -alloc__Q44Game12ResultTexMgr3Mgr8TexturesFi=0x80227930 -getTexture__Q44Game12ResultTexMgr3Mgr8TexturesFi=0x80227994 -__ct__Q34Game6Result5TNodeFv=0x80227A08 -setTNode__Q34Game6Result5TNodeFUxP10JUTTextureiii=0x80227A64 -setTNode__Q34Game6Result5TNodeFUxP10JUTTextureiiii=0x80227A80 -convertByMorimun__Q34Game6Result5TNodeFi=0x80227AA4 -__ct__Q24Game5DNodeFv=0x80227B1C -add__Q24Game5DNodeFPQ24Game5DNode=0x80227B78 -__dt__Q24Game5DNodeFv=0x80227C28 -del__Q24Game5DNodeFv=0x80227C90 -getChildCount__Q24Game5DNodeFv=0x80227D28 -getConfigList__Q34Game10PelletList3MgrFQ34Game10PelletList5cKind=0x80227D5C -getCount__Q34Game10PelletList3MgrFQ34Game10PelletList5cKind=0x80227DCC -getConfigAndKind__Q34Game10PelletList3MgrFPcRQ34Game10PelletList5cKind=0x80227E40 -__dt__Q34Game10PelletList3MgrFv=0x80227F00 -loadResource__Q34Game10PelletList3MgrFv=0x80227F70 -getDictionaryNum__Q34Game10PelletList3MgrFv=0x80228148 -getConfigFromDictionaryNo__Q34Game10PelletList3MgrFi=0x80228160 -getOffsetFromDictionaryNo__Q34Game10PelletList3MgrFi=0x80228204 -globalInstance__Q34Game10PelletList3MgrFv=0x802282A8 -__ct__Q34Game6VsGame10TitleStateFv=0x80228328 -init__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSectionPQ24Game8StateArg=0x80228420 -dvdload__Q34Game6VsGame10TitleStateFv=0x80228554 -exec__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection=0x80228948 -execChallenge__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection=0x80228980 -transit__Q24Game32FSMStateFPQ24Game13VsGameSectioniPQ24Game8StateArg=0x80228C5C -execVs__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection=0x80228C8C -draw__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSectionR8Graphics=0x802290BC -cleanup__Q34Game6VsGame10TitleStateFPQ24Game13VsGameSection=0x80229144 -getSize__Q28Morimura18DispMemberVsSelectFv=0x802291F4 -getOwnerID__Q28Morimura18DispMemberVsSelectFv=0x802291FC -getMemberID__Q28Morimura18DispMemberVsSelectFv=0x80229208 -getSize__Q28Morimura25DispMemberChallengeSelectFv=0x8022921C -getOwnerID__Q28Morimura25DispMemberChallengeSelectFv=0x80229224 -getMemberID__Q28Morimura25DispMemberChallengeSelectFv=0x80229230 -resume__Q24Game32FSMStateFPQ24Game13VsGameSection=0x80229244 -restart__Q24Game32FSMStateFPQ24Game13VsGameSection=0x80229248 -invoke__36DelegateFv=0x8022924C -__sinit_vsGS_Title_cpp=0x8022927C -__ct__Q34Game6VsGame9GameStateFv=0x802292A4 -__ct__11BitFlagFv=0x80229348 -init__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game8StateArg=0x80229354 -clearLoseCauses__Q34Game6VsGame9GameStateFv=0x80229500 -do_init__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x80229514 -goingToCave__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x802296E8 -exec__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x802296F4 -checkFindKeyDemo__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x80229FF0 -checkSMenu__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x8022A378 -pre2dDraw__Q34Game6VsGame9GameStateFR8GraphicsPQ24Game13VsGameSection=0x8022A75C -draw__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionR8Graphics=0x8022A7AC -cleanup__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x8022A7E0 -onBattleFinished__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionib=0x8022A824 -isCardUsable__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x8022A858 -onRedOrBlueSuckStart__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionib=0x8022A868 -checkPikminZero__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x8022A9B4 -onMovieStart__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl=0x8022AB3C -onMovieDone__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ24Game11MovieConfigUlUl=0x8022AFB0 -onNextFloor__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectionPQ34Game8ItemHole4Item=0x8022B980 -onOrimaDown__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectioni=0x8022BA64 -open_GameChallenge__Q34Game6VsGame9GameStateFPQ24Game13VsGameSectioni=0x8022BC00 -update_GameChallenge__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x8022BF3C -drawStatus__Q34Game6VsGame9GameStateFR8GraphicsPQ24Game13VsGameSection=0x8022C70C -getSize__Q32og6Screen12DispMemberVsFv=0x8022C710 -getOwnerID__Q32og6Screen12DispMemberVsFv=0x8022C718 -getMemberID__Q32og6Screen12DispMemberVsFv=0x8022C724 -getSize__Q32og6Screen21DispMemberChallenge1PFv=0x8022C730 -getOwnerID__Q32og6Screen21DispMemberChallenge1PFv=0x8022C738 -getMemberID__Q32og6Screen21DispMemberChallenge1PFv=0x8022C744 -getSize__Q32kh6Screen17DispWinLoseReasonFv=0x8022C754 -getOwnerID__Q32kh6Screen17DispWinLoseReasonFv=0x8022C75C -getMemberID__Q32kh6Screen17DispWinLoseReasonFv=0x8022C764 -getSize__Q32kh6Screen11DispWinLoseFv=0x8022C774 -getOwnerID__Q32kh6Screen11DispWinLoseFv=0x8022C77C -getMemberID__Q32kh6Screen11DispWinLoseFv=0x8022C784 -getSize__Q32og6Screen21DispMemberChallenge2PFv=0x8022C798 -getOwnerID__Q32og6Screen21DispMemberChallenge2PFv=0x8022C7A0 -getMemberID__Q32og6Screen21DispMemberChallenge2PFv=0x8022C7AC -on_section_fadeout__Q34Game6VsGame9GameStateFPQ24Game13VsGameSection=0x8022C7BC -__sinit_vsGS_Game_cpp=0x8022C7CC -__ct__Q34Game6VsGame11ResultStateFv=0x8022C7F4 -init__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSectionPQ24Game8StateArg=0x8022C8F8 -prepareMorimuraInfo__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection=0x8022C9B4 -dvdload__Q34Game6VsGame11ResultStateFv=0x8022CC5C -exec__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection=0x8022CD98 -draw__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSectionR8Graphics=0x8022CF14 -cleanup__Q34Game6VsGame11ResultStateFPQ24Game13VsGameSection=0x8022CF9C -getSize__Q28Morimura25DispMemberChallengeResultFv=0x8022D068 -getOwnerID__Q28Morimura25DispMemberChallengeResultFv=0x8022D070 -getMemberID__Q28Morimura25DispMemberChallengeResultFv=0x8022D07C -invoke__37DelegateFv=0x8022D090 -__sinit_vsGS_Result_cpp=0x8022D0C0 -__ct__Q34Game6VsGame9LoadStateFv=0x8022D0E8 -init__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSectionPQ24Game8StateArg=0x8022D1D8 -dvdLoad__Q34Game6VsGame9LoadStateFv=0x8022D2A8 -exec__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSection=0x8022D2CC -draw__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSectionR8Graphics=0x8022D590 -cleanup__Q34Game6VsGame9LoadStateFPQ24Game13VsGameSection=0x8022D60C -getSize__Q32og6Screen15DispMemberFloorFv=0x8022D610 -getOwnerID__Q32og6Screen15DispMemberFloorFv=0x8022D618 -getMemberID__Q32og6Screen15DispMemberFloorFv=0x8022D624 -invoke__34DelegateFv=0x8022D634 -__sinit_vsGS_Load_cpp=0x8022D664 -read__Q34Game13ChallengeGame9StageDataFR6Stream=0x8022D68C -__ct__Q34Game13ChallengeGame9StageListFv=0x8022D8C4 -__dt__Q34Game13ChallengeGame9StageDataFv=0x8022D978 -read__Q34Game13ChallengeGame9StageListFR6Stream=0x8022D9D8 -getStageData__Q34Game13ChallengeGame9StageListFi=0x8022DAE4 -__ct__Q34Game6VsGame9StageListFv=0x8022DB68 -__dt__Q34Game6VsGame9StageDataFv=0x8022DC24 -read__Q34Game6VsGame9StageListFR6Stream=0x8022DC84 -getStageData__Q34Game6VsGame9StageListFi=0x8022DFD4 -__dt__Q34Game6VsGame9StageListFv=0x8022E058 -__dt__Q34Game13ChallengeGame9StageListFv=0x8022E0DC -__sinit_vsStageData_cpp=0x8022E160 -__dt__12CellMgrParmsFv=0x8022E188 -globalInstance__12CellMgrParmsFv=0x8022E1FC -@12@__dt__12CellMgrParmsFv=0x8022E364 -__ct__Q24Game15CellIteratorArgFv=0x8022E36C -__ct__Q24Game15CellIteratorArgFRQ23Sys6Sphere=0x8022E3A0 -__ct__Q24Game12CellIteratorFRQ24Game15CellIteratorArg=0x8022E3E0 -first__Q24Game12CellIteratorFv=0x8022E45C -next__Q24Game12CellIteratorFv=0x8022E500 -isDone__Q24Game12CellIteratorFv=0x8022E534 -__ml__Q24Game12CellIteratorFv=0x8022E544 -getCellObject__Q24Game12CellIteratorFv=0x8022E560 -step__Q24Game12CellIteratorFv=0x8022E57C -find__Q24Game12CellIteratorFv=0x8022E668 -satisfy__Q24Game12CellIteratorFv=0x8022E778 -calcExtent__Q24Game12CellIteratorFv=0x8022E904 -dump__Q24Game12CellIteratorFv=0x8022EA90 -__ct__Q34Game6VsGame7VSStateFv=0x8022EA94 -do_init__Q34Game6VsGame7VSStateFPQ24Game13VsGameSection=0x8022EAD8 -__sinit_vsGS_VSGame_cpp=0x8022EBA4 -__ct__Q24Game11TSoundEventFv=0x8022EBCC -event__Q24Game11TSoundEventFv=0x8022EBE8 -finish__Q24Game11TSoundEventFv=0x8022EC30 -update__Q24Game11TSoundEventFv=0x8022EC40 -__ct__Q26PikiAI9ActBattleFPQ24Game4Piki=0x8022ECB4 -emotion_success__Q26PikiAI9ActBattleFv=0x8022ED6C -init__Q26PikiAI9ActBattleFPQ26PikiAI9ActionArg=0x8022EDB0 -exec__Q26PikiAI9ActBattleFv=0x8022F0B0 -cleanup__Q26PikiAI9ActBattleFv=0x8022F19C -collisionCallback__Q26PikiAI9ActBattleFPQ24Game4PikiRQ24Game9CollEvent=0x8022F1A8 -onKeyEvent__Q26PikiAI9ActBattleFRCQ28SysShape8KeyEvent=0x8022F1AC -initApproach__Q26PikiAI9ActBattleFv=0x8022F630 -execApproach__Q26PikiAI9ActBattleFv=0x8022F6EC -initBattle__Q26PikiAI9ActBattleFv=0x8022F73C -execBattle__Q26PikiAI9ActBattleFv=0x8022F804 -execDamage__Q26PikiAI9ActBattleFv=0x8022F900 -@32@4@onKeyEvent__Q26PikiAI9ActBattleFRCQ28SysShape8KeyEvent=0x8022F9E8 -clear__Q24Game8BirthMgrFv=0x8022F9FC -inc__Q24Game8BirthMgrFi=0x8022FA64 -dec__Q24Game8BirthMgrFi=0x8022FAAC -inc_today__Q24Game8BirthMgrFi=0x8022FAF4 -inc_cave__Q24Game8BirthMgrFi=0x8022FBC4 -dec_today__Q24Game8BirthMgrFi=0x8022FC94 -dec_cave__Q24Game8BirthMgrFi=0x8022FD64 -account_cave__Q24Game8BirthMgrFv=0x8022FE34 -account_today_adjust__Q24Game8BirthMgrFv=0x8022FF74 -account_today__Q24Game8BirthMgrFv=0x80230228 -get_total__Q24Game8BirthMgrFi=0x8023042C -read__Q24Game8BirthMgrFR6Stream=0x8023049C -write__Q24Game8BirthMgrFR6Stream=0x8023054C -clear__Q24Game8DeathMgrFv=0x80230694 -inc__Q24Game8DeathMgrFi=0x80230718 -inc_today__Q24Game8DeathMgrFi=0x80230774 -inc_cave__Q24Game8DeathMgrFi=0x80230870 -account_cave__Q24Game8DeathMgrFv=0x8023096C -account_today__Q24Game8DeathMgrFv=0x80230B68 -get_cave__Q24Game8DeathMgrFi=0x80230D64 -get_today__Q24Game8DeathMgrFi=0x80230E4C -get_total__Q24Game8DeathMgrFi=0x80230F34 -read__Q24Game8DeathMgrFR6Stream=0x8023101C -write__Q24Game8DeathMgrFR6Stream=0x802310CC -__sinit_gameDeathCount_cpp=0x80231214 -__ct__Q26PikiAI7ActBoreFPQ24Game4Piki=0x802312F4 -init__Q26PikiAI7ActBoreFPQ26PikiAI9ActionArg=0x8023138C -startCurrAction__Q26PikiAI7ActBoreFv=0x8023140C -finish__Q26PikiAI7ActBoreFv=0x8023158C -exec__Q26PikiAI7ActBoreFv=0x80231608 -cleanup__Q26PikiAI7ActBoreFv=0x8023189C -__ct__Q26PikiAI7ActRestFPQ24Game4Piki=0x802318A0 -finish__Q26PikiAI7ActRestFv=0x8023193C -init__Q26PikiAI7ActRestFPQ26PikiAI9ActionArg=0x80231958 -sitDown__Q26PikiAI7ActRestFv=0x802319D8 -exec__Q26PikiAI7ActRestFv=0x80231A90 -cleanup__Q26PikiAI7ActRestFv=0x80231DC0 -onKeyEvent__Q26PikiAI7ActRestFRCQ28SysShape8KeyEvent=0x80231DC4 -__ct__Q26PikiAI10ActOneshotFPQ24Game4Piki=0x80231FB8 -init__Q26PikiAI10ActOneshotFPQ26PikiAI9ActionArg=0x80232074 -finish__Q26PikiAI10ActOneshotFv=0x80232108 -exec__Q26PikiAI10ActOneshotFv=0x80232150 -cleanup__Q26PikiAI10ActOneshotFv=0x802321C0 -onKeyEvent__Q26PikiAI10ActOneshotFRCQ28SysShape8KeyEvent=0x802321C4 -@28@4@onKeyEvent__Q26PikiAI7ActRestFRCQ28SysShape8KeyEvent=0x80232314 -@28@4@onKeyEvent__Q26PikiAI10ActOneshotFRCQ28SysShape8KeyEvent=0x80232328 -__ct__Q24Game9PartsViewFv=0x8023233C -doDirectDraw__Q24Game9PartsViewFR8Graphics=0x8023247C -doAnimation__Q24Game9PartsViewFv=0x80232480 -doEntry__Q24Game9PartsViewFv=0x802324F4 -doSetView__Q24Game9PartsViewFi=0x802324F8 -doViewCalc__Q24Game9PartsViewFv=0x80232524 -read__Q24Game9PartsViewFR6Stream=0x80232550 -__ct__Q34Game10SingleGame11EndingStateFv=0x802326A8 -init__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x80232788 -dvdload__Q34Game10SingleGame11EndingStateFv=0x8023285C -do_dvdload__Q34Game10SingleGame11EndingStateFv=0x80232A24 -exec__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSection=0x80232A28 -draw__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSectionR8Graphics=0x80233278 -cleanup__Q34Game10SingleGame11EndingStateFPQ24Game17SingleGameSection=0x8023334C -getSize__Q32og6Screen22DispMemberFinalMessageFv=0x80233404 -getOwnerID__Q32og6Screen22DispMemberFinalMessageFv=0x8023340C -getMemberID__Q32og6Screen22DispMemberFinalMessageFv=0x80233418 -invoke__42DelegateFv=0x8023342C -__sinit_singleGS_Ending_cpp=0x8023345C -__ct__Q34Game11IconTexture6LoaderFv=0x80233484 -__dt__Q34Game11IconTexture6LoaderFv=0x802334CC -loadResource__Q34Game11IconTexture6LoaderFPc=0x80233558 -getResTIMG__Q34Game11IconTexture6LoaderFPc=0x802335DC -__ct__Q34Game11IconTexture3MgrFv=0x8023360C -__dt__Q34Game11IconTexture3MgrFv=0x80233654 -create__Q34Game11IconTexture3MgrFi=0x802336E0 -setTexture__Q34Game11IconTexture3MgrFiP7ResTIMG=0x80233764 -getTexture__Q34Game11IconTexture3MgrFi=0x802337F0 -incKilled__Q34Game8TekiStat4InfoFv=0x8023381C -incKillPikmin__Q34Game8TekiStat4InfoFv=0x80233850 -__ct__Q34Game8TekiStat3MgrFv=0x80233878 -whatsNew__Q34Game8TekiStat3MgrFv=0x80233888 -setOutOfDateAll__Q34Game8TekiStat3MgrFv=0x8023390C -clear__Q34Game8TekiStat3MgrFv=0x80233984 -allocate__Q34Game8TekiStat3MgrFi=0x80233A4C -__ct__Q34Game8TekiStat4InfoFv=0x80233AAC -getTekiInfo__Q34Game8TekiStat3MgrFi=0x80233AC4 -write__Q34Game8TekiStat3MgrFR6Stream=0x80233B40 -read__Q34Game8TekiStat3MgrFR6Stream=0x80233C00 -__ct__Q24Game9HighscoreFv=0x80233CEC -allocate__Q24Game9HighscoreFi=0x80233D08 -getScore__Q24Game9HighscoreFi=0x80233D4C -entryScore__Q24Game9HighscoreFi=0x80233DD4 -higher__Q24Game9HighscoreFii=0x80233F4C -do_higher__Q24Game9HighscoreFii=0x80233F98 -read__Q24Game9HighscoreFR6Stream=0x80233FB0 -write__Q24Game9HighscoreFR6Stream=0x80234068 -clear__Q24Game9HighscoreFv=0x802340DC -__ct__Q24Game14PlayCommonDataFv=0x8023410C -reset__Q24Game14PlayCommonDataFv=0x80234208 -reset__Q24Game21PlayChallengeGameDataFv=0x80234280 -write__Q24Game14PlayCommonDataFR6Stream=0x80234340 -read__Q24Game14PlayCommonDataFR6Stream=0x802343E0 -getHighscore_clear__Q24Game14PlayCommonDataFi=0x802344CC -getHighscore_complete__Q24Game14PlayCommonDataFi=0x80234544 -entryHighscores_clear__Q24Game14PlayCommonDataFiPiPi=0x802345BC -entryHighscores_complete__Q24Game14PlayCommonDataFiPiPi=0x802345F4 -entryHighscores_common__Q24Game14PlayCommonDataFPPQ24Game9HighscoreiPiPi=0x8023462C -isChallengeGamePlayable__Q24Game14PlayCommonDataFv=0x8023470C -isLouieRescued__Q24Game14PlayCommonDataFv=0x80234718 -isPerfectChallenge__Q24Game14PlayCommonDataFv=0x80234724 -enableChallengeGame__Q24Game14PlayCommonDataFv=0x802347B0 -enableLouieRescue__Q24Game14PlayCommonDataFv=0x802347E0 -challenge_is_virgin__Q24Game14PlayCommonDataFv=0x80234810 -challenge_is_virgin_check_only__Q24Game14PlayCommonDataFv=0x8023482C -challenge_get_CourseState__Q24Game14PlayCommonDataFi=0x80234840 -challenge_checkOpen__Q24Game14PlayCommonDataFi=0x80234864 -challenge_checkClear__Q24Game14PlayCommonDataFi=0x80234890 -challenge_checkKunsho__Q24Game14PlayCommonDataFi=0x802348BC -challenge_checkJustOpen__Q24Game14PlayCommonDataFi=0x802348E8 -challenge_checkJustClear__Q24Game14PlayCommonDataFi=0x80234934 -challenge_checkJustKunsho__Q24Game14PlayCommonDataFi=0x80234980 -challenge_openNewCourse__Q24Game14PlayCommonDataFv=0x802349CC -challenge_setClear__Q24Game14PlayCommonDataFi=0x80234A60 -challenge_setOpen__Q24Game14PlayCommonDataFi=0x80234A90 -challenge_setKunsho__Q24Game14PlayCommonDataFi=0x80234AC0 -challenge_getHighscore__Q24Game14PlayCommonDataFii=0x80234B40 -__ct__Q24Game21PlayChallengeGameDataFv=0x80234BC4 -__ct__Q34Game21PlayChallengeGameData11CourseStateFv=0x80234C8C -getState__Q24Game21PlayChallengeGameDataFi=0x80234D04 -write__Q24Game21PlayChallengeGameDataFR6Stream=0x80234DA8 -read__Q24Game21PlayChallengeGameDataFR6Stream=0x80234E44 -do_higher__Q24Game8LowscoreFii=0x80234EE0 -__ct__Q24Game11PelletCarryFv=0x80234EF8 -reset__Q24Game11PelletCarryFv=0x80234F28 -pull__Q24Game11PelletCarryFUsR10Vector3f=0x80234F50 -pullable__Q24Game11PelletCarryFUsf=0x80234FD4 -giveup__Q24Game11PelletCarryFUs=0x80235008 -frameWork__Q24Game11PelletCarryFR10Vector3=0x8023503C -__ct__Q24Game21Challenge2D_TitleInfoFi=0x802350A0 -__ct__Q34Game21Challenge2D_TitleInfo4InfoFv=0x80235104 -__cl__Q24Game21Challenge2D_TitleInfoFi=0x80235134 -__ct__Q24Game14Vs2D_TitleInfoFi=0x802351B0 -__ct__Q34Game14Vs2D_TitleInfo4InfoFv=0x80235214 -__cl__Q24Game14Vs2D_TitleInfoFi=0x80235220 -__ct__Q24Game22Challenge2D_ResultInfoFv=0x802352C8 -__ct__Q34Game6VsGame7TekiMgrFv=0x802352F0 -__dt__Q34Game6VsGame8TekiNodeFv=0x80235334 -entry__Q34Game6VsGame7TekiMgrFQ34Game11EnemyTypeID12EEnemyTypeIDi=0x80235394 -birth__Q34Game6VsGame7TekiMgrFiR10Vector3b=0x80235434 -__ct__Q34Game6VsGame7CardMgrFPQ24Game13VsGameSectionPQ34Game6VsGame7TekiMgr=0x8023550C -__ct__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80235654 -loadResource__Q34Game6VsGame7CardMgrFv=0x802356AC -update__Q34Game6VsGame7CardMgrFv=0x80235964 -draw__Q34Game6VsGame7CardMgrFR8Graphics=0x802359AC -stopSlot__Q34Game6VsGame7CardMgrFi=0x80235A50 -usePlayerCard__Q34Game6VsGame7CardMgrFiPQ34Game6VsGame7TekiMgr=0x80235A80 -gotPlayerCard__Q34Game6VsGame7CardMgrFi=0x8023680C -clear__Q44Game6VsGame7CardMgr11SlotMachineFv=0x802369C8 -start__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80236A20 -startStop__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80237010 -update__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80237060 -updateAppear__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80237818 -initDraw__Q34Game6VsGame7CardMgrFv=0x80237968 -drawSlot__Q34Game6VsGame7CardMgrFR8GraphicsR10Vector3RQ44Game6VsGame7CardMgr11SlotMachine=0x80237CBC -update__8LightObjFv=0x80238B08 -startZoomIn__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80238B0C -startZoomUse__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80238B34 -updateZoomIn__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80238B54 -updateZoomUse__Q44Game6VsGame7CardMgr11SlotMachineFv=0x80238D44 -setGroup__Q25efx2d5TBaseFUc=0x80238E6C -getName__Q25efx2d18ArgScaleColorColorFv=0x80238E74 -getName__Q25efx2d3ArgFv=0x80238E80 -__sinit_vsCardMgr_cpp=0x80238E88 -__ct__Q26PikiAI9ActRescueFPQ24Game4Piki=0x80238EB0 -init__Q26PikiAI9ActRescueFPQ26PikiAI9ActionArg=0x80238F68 -exec__Q26PikiAI9ActRescueFv=0x8023902C -initApproach__Q26PikiAI9ActRescueFv=0x8023908C -execApproach__Q26PikiAI9ActRescueFv=0x80239138 -initGo__Q26PikiAI9ActRescueFv=0x80239274 -execGo__Q26PikiAI9ActRescueFv=0x802393C4 -initThrow__Q26PikiAI9ActRescueFv=0x80239584 -execThrow__Q26PikiAI9ActRescueFv=0x802395E8 -onKeyEvent__Q26PikiAI9ActRescueFRCQ28SysShape8KeyEvent=0x80239860 -emotion_success__Q26PikiAI9ActRescueFv=0x8023988C -doDirectDraw__Q26PikiAI9ActRescueFR8Graphics=0x80239890 -cleanup__Q26PikiAI9ActRescueFv=0x80239894 -collisionCallback__Q26PikiAI9ActRescueFPQ24Game4PikiRQ24Game9CollEvent=0x80239898 -satisfy__10WPFindCondFPQ24Game8WayPoint=0x8023989C -getNextAIType__Q26PikiAI9ActRescueFv=0x802398BC -@40@4@onKeyEvent__Q26PikiAI9ActRescueFRCQ28SysShape8KeyEvent=0x802398C4 -newdraw_draw3D_all__Q24Game15BaseGameSectionFR8Graphics=0x802398D8 -newdraw_drawAll__Q24Game15BaseGameSectionFP8Viewport=0x80239ACC -invoke__46Delegate1FP8Viewport=0x80239E2C -__sinit_baseGameSectionDraw_cpp=0x80239E5C -init__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x80239E84 -exec__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSection=0x80239F38 -draw__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSectionR8Graphics=0x8023A170 -cleanup__Q34Game10SingleGame9LoadStateFPQ24Game17SingleGameSection=0x8023A200 -getSize__Q32og6Screen20DispMemberCourseNameFv=0x8023A204 -getOwnerID__Q32og6Screen20DispMemberCourseNameFv=0x8023A20C -getMemberID__Q32og6Screen20DispMemberCourseNameFv=0x8023A218 -__sinit_singleGS_Load_cpp=0x8023A228 -init__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game8StateArg=0x8023A250 -exec__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSection=0x8023A6F0 -onMovieStart__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x8023AAFC -onMovieDone__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionPQ24Game11MovieConfigUlUl=0x8023B0B4 -onMovieCommand__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectioni=0x8023B1A8 -draw__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSectionR8Graphics=0x8023B468 -cleanup__Q34Game10SingleGame11DayEndStateFPQ24Game17SingleGameSection=0x8023B490 -__sinit_singleGS_DayEnd_cpp=0x8023B50C -drawOtakaraWindow__Q24Game15BaseGameSectionFR8Graphics=0x8023B534 -setDraw2DCreature__Q24Game15BaseGameSectionFPQ24Game8Creature=0x8023B598 -startZoomWindow__Q24Game15BaseGameSectionFv=0x8023B62C -startKantei2D__Q24Game15BaseGameSectionFv=0x8023B80C -onKanteiDone__Q24Game15BaseGameSectionFR7Rect=0x8023BA64 -init__Q34Game15BaseGameSection10ZoomCameraFffR10Vector3P10Controller=0x8023BB30 -makeLookAt__Q34Game15BaseGameSection10ZoomCameraFv=0x8023BC44 -doUpdate__Q34Game15BaseGameSection10ZoomCameraFv=0x8023BEF4 -do_drawOtakaraWindow__Q24Game15BaseGameSectionFR8Graphics=0x8023C058 -__dt__Q34Game15BaseGameSection10ZoomCameraFv=0x8023C468 -startVibration__12LookAtCameraFi=0x8023C538 -getSize__Q32og6Screen21DispMemberSpecialItemFv=0x8023C53C -getOwnerID__Q32og6Screen21DispMemberSpecialItemFv=0x8023C544 -getMemberID__Q32og6Screen21DispMemberSpecialItemFv=0x8023C550 -getSize__Q32og6Screen16DispMemberKanteiFv=0x8023C564 -getOwnerID__Q32og6Screen16DispMemberKanteiFv=0x8023C56C -getMemberID__Q32og6Screen16DispMemberKanteiFv=0x8023C578 -__sinit_baseGameSectionKantei_cpp=0x8023C588 -insertSort__Q210SweepPrune4NodeFRQ210SweepPrune4Node=0x8023C5B0 -__ct__Q210SweepPrune6ObjectFv=0x8023C778 -__ct__Q210SweepPrune5WorldFv=0x8023C7E8 -resolve__Q210SweepPrune5WorldFRQ310SweepPrune5World10ResolveArg=0x8023C814 -__dt__Q29TexCaster6CasterFv=0x8023C95C -hide__Q29TexCaster6CasterFv=0x8023C9BC -fadein__Q29TexCaster6CasterFf=0x8023C9D0 -globalInstance__Q29TexCaster3MgrFv=0x8023CA50 -deleteInstance__Q29TexCaster3MgrFv=0x8023CAF0 -loadResource__Q29TexCaster3MgrFv=0x8023CB5C -create__Q29TexCaster3MgrFRQ23Sys6Spheref=0x8023CC44 -draw__Q29TexCaster3MgrFR8Graphics=0x8023D194 -clear__Q24Game17PelletBirthBufferFv=0x8023D41C -entry__Q24Game17PelletBirthBufferFRQ24Game13PelletInitArg=0x8023D428 -birthAll__Q24Game17PelletBirthBufferFv=0x8023D518 -__sinit_pelletBirthBuffer_cpp=0x8023D5B8 -__ct__Q24Game13PelletInitArgFv=0x8023D5F4 -__ct__6VSFifoFUl=0x8023D64C -__dt__6VSFifoFv=0x8023D6DC -becomeCurrent__6VSFifoFv=0x8023D724 -calcLagrange__Q24Game9NsMathExpFPC10Vector3fR10Vector3=0x8023D7B0 -calcJointPos__Q24Game9NsMathExpFRC10Vector3RC10Vector3ffR10Vector3R10Vector3=0x8023D858 -__ct__Q24Game12CylinderBaseFv=0x8023DA30 -setColor__Q24Game12CylinderBaseFP6Color4=0x8023DF0C -setShadowRect__Q24Game12CylinderBaseFR7Rect=0x8023DF14 -setCameraParms__Q24Game12CylinderBaseFP6Camerai=0x8023DF38 -makeSRT__Q24Game12CylinderBaseFR7MatrixfRQ24Game11ShadowParam=0x8023DFEC -getCylinderType__Q24Game12CylinderBaseFRQ24Game11ShadowParami=0x8023E0B8 -setFilterTextureID__Q24Game12CylinderBaseFi=0x8023E15C -drawInit__Q24Game12CylinderBaseFv=0x8023E160 -drawCylinder__Q24Game12CylinderBaseFR7Matrixfi=0x8023E164 -drawFinish__Q24Game12CylinderBaseFv=0x8023E168 -__ct__Q24Game15ShadowCylinder2FPQ24Game11ShadowParmsP6Color4=0x8023E16C -setFilterTextureID__Q24Game15ShadowCylinder2Fi=0x8023E2D0 -drawInit__Q24Game15ShadowCylinder2Fv=0x8023E314 -drawCylinder__Q24Game15ShadowCylinder2FR7Matrixfi=0x8023E664 -drawFinish__Q24Game15ShadowCylinder2Fv=0x8023E724 -copyShadowTexture__Q24Game15ShadowCylinder2Fv=0x8023E908 -setupTextureFilterGX__Q24Game15ShadowCylinder2Fv=0x8023EA78 -drawTextureFilter__Q24Game15ShadowCylinder2Fv=0x8023EB74 -__ct__Q24Game15ShadowCylinder3FPQ24Game11ShadowParmsP6Color4=0x8023EC7C -drawInit__Q24Game15ShadowCylinder3Fv=0x8023ECD8 -drawCylinder__Q24Game15ShadowCylinder3FR7Matrixfi=0x8023F028 -drawFinish__Q24Game15ShadowCylinder3Fv=0x8023F120 -drawScreenFilter__Q24Game15ShadowCylinder3Fv=0x8023F2F4 -setFilterTextureID__Q24Game15ShadowCylinder3Fi=0x8023F3C4 -__sinit_ShadowCylinder_cpp=0x8023F3C8 -__ct__Q24Game10PlayCameraFPQ24Game4Navi=0x8023F3F0 -setCameraParms__Q24Game10PlayCameraFPQ24Game11CameraParms=0x8023F528 -setVibrationParms__Q24Game10PlayCameraFPQ24Game14VibrationParms=0x8023F530 -init__Q24Game10PlayCameraFv=0x8023F538 -setCameraAngle__Q24Game10PlayCameraFf=0x8023F6A4 -getCameraData__Q24Game10PlayCameraFRQ24Game10CameraData=0x8023F6D8 -setCameraData__Q24Game10PlayCameraFRQ24Game10CameraData=0x8023F734 -changePlayerMode__Q24Game10PlayCameraFb=0x8023F790 -isSpecialCamera__Q24Game10PlayCameraFv=0x8023F810 -doUpdate__Q24Game10PlayCameraFv=0x8023F85C -updateMatrix__Q24Game10PlayCameraFv=0x8023F944 -noUpdate__Q24Game10PlayCameraFv=0x8023FA24 -isVibration__Q24Game10PlayCameraFv=0x8023FAA0 -startVibration__Q24Game10PlayCameraFif=0x8023FAE4 -startDemoCamera__Q24Game10PlayCameraFi=0x8023FCEC -finishDemoCamera__Q24Game10PlayCameraFv=0x8023FDBC -updateCameraMode__Q24Game10PlayCameraFv=0x8023FDDC -startZoomCamera__Q24Game10PlayCameraFv=0x8023FEC8 -startGameCamera__Q24Game10PlayCameraFi=0x8023FF48 -setTargetParms__Q24Game10PlayCameraFv=0x8023FFCC -setTargetThetaToWhistle__Q24Game10PlayCameraFv=0x802402C4 -setFollowTime__Q24Game10PlayCameraFv=0x80240334 -setSmoothThetaSpeed__Q24Game10PlayCameraFv=0x80240344 -changeTargetTheta__Q24Game10PlayCameraFv=0x802403AC -changeTargetAtPosition__Q24Game10PlayCameraFv=0x8024048C -updateParms__Q24Game10PlayCameraFi=0x80240810 -updateVibration__Q24Game10PlayCameraFi=0x80240974 -otherVibFinished__Q24Game10PlayCameraFi=0x80240AA0 -isModCameraFinished__Q24Game10PlayCameraFv=0x80240B14 -setCollisionCameraTargetPhi__Q24Game10PlayCameraFi=0x80240C88 -getCollisionCameraTargetPhi__Q24Game10PlayCameraFff=0x80240DE0 -__dt__Q24Game10PlayCameraFv=0x80241164 -startVibration__Q24Game10PlayCameraFi=0x80241234 -getLookAtPosition___Q24Game10PlayCameraFv=0x80241238 -__sinit_playCamera_cpp=0x80241254 -__ct__Q24Game19JointShadowRootNodeFPQ24Game8Creature=0x8024127C -__ct__Q24Game15JointShadowNodeFi=0x802412DC -init__Q24Game15JointShadowNodeFi=0x80241350 -__ct__Q24Game9ShadowMgrFi=0x802413C4 -loadResource__Q24Game9ShadowMgrFv=0x80241444 -init__Q24Game9ShadowMgrFv=0x80241654 -setViewport__Q24Game9ShadowMgrFP8Viewporti=0x80241658 -setShadowColor__Q24Game9ShadowMgrFP6Color4=0x80241668 -update__Q24Game9ShadowMgrFv=0x802416B0 -draw__Q24Game9ShadowMgrFR8Graphicsi=0x80241910 -createShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241B20 -killAll__Q24Game9ShadowMgrFv=0x80241C10 -killShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241C68 -addShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241CAC -delShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241CF0 -addNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241D34 -addJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241DE0 -delNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241E98 -delJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241F04 -killNormalShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80241F84 -killJointShadow__Q24Game9ShadowMgrFPQ24Game8Creature=0x80242030 -setJointShadowRootNode__Q24Game9ShadowMgrFPQ24Game19JointShadowRootNode=0x802420DC -setForceVisible__Q24Game9ShadowMgrFPQ24Game8Creatureb=0x80242100 -getSize__Q24Game9ShadowMgrFv=0x802421F0 -getMax__Q24Game9ShadowMgrFv=0x80242220 -getCreature__Q24Game9ShadowMgrFi=0x80242228 -getFirst__Q24Game9ShadowMgrFv=0x80242260 -getNext__Q24Game9ShadowMgrFi=0x80242268 -isDone__Q24Game9ShadowMgrFi=0x80242270 -getShadowMaskType__Q24Game9ShadowMgrFii=0x802422BC -getShadowType__Q24Game9ShadowMgrFii=0x80242308 -isDrawNormalShadow__Q24Game9ShadowMgrFPQ24Game10ShadowNodei=0x80242354 -isDrawJointShadow__Q24Game9ShadowMgrFPQ24Game19JointShadowRootNodei=0x802423D4 -readShadowParms__Q24Game9ShadowMgrFPc=0x80242454 -write__Q24Game9ShadowMgrFR6Stream=0x80242500 -read__Q24Game9ShadowMgrFR6Stream=0x80242584 -__dt__Q24Game9ShadowMgrFv=0x80242600 -__dt__Q24Game10ShadowNodeFv=0x80242660 -__dt__Q24Game15JointShadowNodeFv=0x802426C0 -__dt__Q24Game19JointShadowRootNodeFv=0x80242720 -__sinit_shadowMgr_cpp=0x80242780 -__ct__Q34Game4Cave8MapUnitsFP10JUTTexture=0x802427A8 -setDoorNum__Q34Game4Cave8MapUnitsFi=0x8024284C -__dt__Q34Game4Cave10AdjustNodeFv=0x802428AC -setUnitName__Q34Game4Cave8MapUnitsFPc=0x8024290C -setUnitIndex__Q34Game4Cave8MapUnitsFi=0x80242914 -setUnitKind__Q34Game4Cave8MapUnitsFi=0x8024291C -setUnitSize__Q34Game4Cave8MapUnitsFii=0x80242924 -setBaseGenPtr__Q34Game4Cave8MapUnitsFPQ34Game4Cave7BaseGen=0x80242930 -__ct__Q34Game4Cave8UnitInfoFPQ34Game4Cave8MapUnits=0x80242938 -setUnitTexture__Q34Game4Cave8UnitInfoFP10JUTTexture=0x8024299C -setUnitRotation__Q34Game4Cave8UnitInfoFi=0x802429A8 -create__Q34Game4Cave8UnitInfoFv=0x802429B0 -getUnitName__Q34Game4Cave8UnitInfoFv=0x80242B6C -getUnitKind__Q34Game4Cave8UnitInfoFv=0x80242B78 -getUnitSizeX__Q34Game4Cave8UnitInfoFv=0x80242B84 -getUnitSizeY__Q34Game4Cave8UnitInfoFv=0x80242B8C -getUnitRotation__Q34Game4Cave8UnitInfoFv=0x80242B94 -getDoorNode__Q34Game4Cave8UnitInfoFi=0x80242B9C -getBaseGen__Q34Game4Cave8UnitInfoFv=0x80242BC0 -draw__Q34Game4Cave8UnitInfoFffff=0x80242BCC -__ct__Q34Game4Cave10AdjustInfoFv=0x80242D58 -__ct__Q34Game4Cave7MapNodeFPQ34Game4Cave8UnitInfo=0x80242D70 -setOffset__Q34Game4Cave7MapNodeFii=0x8024301C -getDoorDirect__Q34Game4Cave7MapNodeFi=0x80243028 -getDoorOffset__Q34Game4Cave7MapNodeFiRiRi=0x8024304C -isDoorSet__Q34Game4Cave7MapNodeFPQ34Game4Cave8DoorNodeiii=0x8024314C -setDoorClose__Q34Game4Cave7MapNodeFiPQ34Game4Cave7MapNodei=0x80243248 -detachDoorClose__Q34Game4Cave7MapNodeFv=0x8024327C -isDoorClose__Q34Game4Cave7MapNodeFi=0x80243318 -resetDoorScore__Q34Game4Cave7MapNodeFv=0x80243334 -setDoorScore__Q34Game4Cave7MapNodeFii=0x80243434 -isDoorScoreSetDone__Q34Game4Cave7MapNodeFi=0x80243468 -getDoorNode__Q34Game4Cave7MapNodeFi=0x80243484 -getAdjustNode__Q34Game4Cave7MapNodeFi=0x802434A8 -isGateSetDoor__Q34Game4Cave7MapNodeFi=0x802434BC -getGateScore__Q34Game4Cave7MapNodeFi=0x80243620 -setEnemyScore__Q34Game4Cave7MapNodeFv=0x802437B8 -setNodeScore__Q34Game4Cave7MapNodeFi=0x80243864 -copyNodeScoreToVersusScore__Q34Game4Cave7MapNodeFv=0x8024386C -subNodeScoreToVersusScore__Q34Game4Cave7MapNodeFv=0x80243878 -draw__Q34Game4Cave7MapNodeFfff=0x8024388C -getNodeOffsetX__Q34Game4Cave7MapNodeFv=0x8024399C -getNodeOffsetY__Q34Game4Cave7MapNodeFv=0x802439A4 -getEnemyScore__Q34Game4Cave7MapNodeFv=0x802439AC -getNodeScore__Q34Game4Cave7MapNodeFv=0x802439B4 -getVersusScore__Q34Game4Cave7MapNodeFv=0x802439BC -getUnitName__Q34Game4Cave7MapNodeFv=0x802439C4 -getNodeCentreOffset__Q34Game4Cave7MapNodeFRfRf=0x802439E8 -getDirection__Q34Game4Cave7MapNodeFv=0x80243AB8 -getBaseGenGlobalPosition__Q34Game4Cave7MapNodeFPQ34Game4Cave7BaseGen=0x80243ADC -getDoorGlobalPosition__Q34Game4Cave7MapNodeFi=0x80243CA0 -getBaseGenGlobalDirection__Q34Game4Cave7MapNodeFPQ34Game4Cave7BaseGen=0x80243EFC -getDoorGlobalDirection__Q34Game4Cave7MapNodeFi=0x80243FE8 -getNumDoors__Q34Game4Cave7MapNodeFv=0x80244060 -__dt__Q34Game4Cave7MapNodeFv=0x80244094 -__ct__Q34Game4Cave9EnemyNodeFv=0x802440F4 -__dt__Q24Game16ObjectLayoutNodeFv=0x80244168 -__ct__Q34Game4Cave9EnemyNodeFPQ34Game4Cave9EnemyUnitPQ34Game4Cave7BaseGeni=0x802441C8 -makeGlobalData__Q34Game4Cave9EnemyNodeFPQ34Game4Cave7MapNode=0x8024425C -setGlobalData__Q34Game4Cave9EnemyNodeFR10Vector3f=0x80244404 -setBirthDoorIndex__Q34Game4Cave9EnemyNodeFi=0x80244424 -getObjectId__Q34Game4Cave9EnemyNodeFv=0x8024442C -getExtraCode__Q34Game4Cave9EnemyNodeFv=0x8024444C -getObjectType__Q34Game4Cave9EnemyNodeFv=0x8024446C -getBirthCount__Q34Game4Cave9EnemyNodeFv=0x8024448C -getBirthPosition__Q34Game4Cave9EnemyNodeFRfRf=0x80244494 -getDirection__Q34Game4Cave9EnemyNodeFv=0x802444A8 -getBirthDoorIndex__Q34Game4Cave9EnemyNodeFv=0x802444B0 -__dt__Q34Game4Cave9EnemyNodeFv=0x802444B8 -__ct__Q34Game4Cave10RandMapMgrFb=0x80244528 -loadResource__Q34Game4Cave10RandMapMgrFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit=0x802445B0 -create__Q34Game4Cave10RandMapMgrFv=0x80244754 -getNumRooms__Q34Game4Cave10RandMapMgrFv=0x80244858 -getUseUnitName__Q34Game4Cave10RandMapMgrFi=0x8024488C -getRoomData__Q34Game4Cave10RandMapMgrFiRfRfRi=0x802448C8 -makeRoomLink__Q34Game4Cave10RandMapMgrFi=0x8024494C -makeObjectLayoutInfo__Q34Game4Cave10RandMapMgrFi=0x80244A30 -getStartPosition__Q34Game4Cave10RandMapMgrFR10Vector3i=0x80244AB4 -getItemDropPosition__Q34Game4Cave10RandMapMgrFR10Vector3ff=0x80244B3C -getItemDropPosition__Q34Game4Cave10RandMapMgrFP10Vector3iff=0x80244BDC -setUnitTexture__Q34Game4Cave10RandMapMgrFiP10JUTTexture=0x80244D64 -setCaptureOn__Q34Game4Cave10RandMapMgrFv=0x80244DAC -captureRadarMap__Q34Game4Cave10RandMapMgrFR8Graphics=0x80244DB8 -isLastFloor__Q34Game4Cave10RandMapMgrFv=0x80244E94 -isVersusHiba__Q34Game4Cave10RandMapMgrFv=0x80244EB0 -getRadarMapTexture__Q34Game4Cave10RandMapMgrFv=0x80244EB8 -radarMapPartsOpen__Q34Game4Cave10RandMapMgrFR10Vector3=0x80244EC0 -getPositionOnTex__Q34Game4Cave10RandMapMgrFR10Vector3RfRf=0x80244EE4 -getBaseGenData__Q34Game4Cave10RandMapMgrFP10Vector3Pf=0x80244F04 -drawFrameBuffer__Q34Game4Cave10RandMapMgrFR8Graphics=0x80245158 -__dt__Q24Game8RoomLinkFv=0x80245358 -__dt__Q34Game4Cave10RandMapMgrFv=0x802453B8 -__ct__Q34Game4Cave11RandMapDrawFPQ34Game4Cave16MapUnitGenerator=0x80245418 -radarMapPartsOpen__Q34Game4Cave11RandMapDrawFR10Vector3=0x80245420 -draw__Q34Game4Cave11RandMapDrawFR8Graphicsfff=0x802455EC -__ct__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode=0x80245664 -isPutOnMap__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode=0x8024566C -isPartsOnParts__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode=0x802456E8 -isDoorOnParts__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode=0x802457D8 -isPartsOnDoor__Q34Game4Cave14RandMapCheckerFPQ34Game4Cave7MapNode=0x802459F8 -isInnerBox__Q34Game4Cave14RandMapCheckerFiiiiiiii=0x80245BE0 -__ct__Q34Game4Cave11EditMapUnitFv=0x80245C5C -read__Q34Game4Cave11EditMapUnitFPc=0x80245C8C -read__Q34Game4Cave11EditMapUnitFP6Stream=0x80245D44 -setEditNumber__Q34Game4Cave11EditMapUnitFi=0x80245F2C -__ct__Q34Game4Cave11RandMapUnitFPQ34Game4Cave16MapUnitGenerator=0x80245F80 -setMapUnit__Q34Game4Cave11RandMapUnitFv=0x8024611C -getAliveMapIndex__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNode=0x80246210 -getTextureSize__Q34Game4Cave11RandMapUnitFRiRi=0x80246244 -getRandMapUnit__Q34Game4Cave11RandMapUnitFv=0x802462E4 -changeCapToRootLoopMapUnit__Q34Game4Cave11RandMapUnitFv=0x80246350 -changeTwoToOneMapUnit__Q34Game4Cave11RandMapUnitFv=0x802465D4 -setEditorMapUnit__Q34Game4Cave11RandMapUnitFv=0x80246934 -setFirstMapUnit__Q34Game4Cave11RandMapUnitFv=0x80246A78 -getFirstMapUnit__Q34Game4Cave11RandMapUnitFv=0x80246AE4 -getNormalRandMapUnit__Q34Game4Cave11RandMapUnitFv=0x80246B70 -setUnitKindOrder__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodePi=0x80246CF8 -setUnitDoorSorting__Q34Game4Cave11RandMapUnitFi=0x80246DC0 -setRandomDoorIndex__Q34Game4Cave11RandMapUnitFPii=0x802470D4 -getLoopRandMapUnit__Q34Game4Cave11RandMapUnitFv=0x80247238 -getCalcDoorIndex__Q34Game4Cave11RandMapUnitFRiRiRii=0x80247440 -getLinkDoorNodeFirst__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodeiiiRi=0x80247508 -isInLinkArea__Q34Game4Cave11RandMapUnitFiiiii=0x80247634 -getLoopMapNode__Q34Game4Cave11RandMapUnitFPPQ34Game4Cave7MapNode=0x80247704 -getLinkDoorDirection__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodeiPQ34Game4Cave7MapNodei=0x80247834 -getUpToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii=0x80247920 -getRightToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii=0x802479DC -getDownToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii=0x80247AA0 -getLeftToLinkDoorDir__Q34Game4Cave11RandMapUnitFiii=0x80247B5C -getLoopEndMapUnit__Q34Game4Cave11RandMapUnitFv=0x80247C1C -getPartsKindNum__Q34Game4Cave11RandMapUnitFi=0x80247F0C -getOpenDoorNum__Q34Game4Cave11RandMapUnitFv=0x80247F7C -addMap__Q34Game4Cave11RandMapUnitFPQ34Game4Cave8UnitInfoiib=0x80248008 -changeMapPriority__Q34Game4Cave11RandMapUnitFPQ34Game4Cave8UnitInfo=0x802480BC -moveCentre__Q34Game4Cave11RandMapUnitFv=0x80248498 -closeDoorCheck__Q34Game4Cave11RandMapUnitFv=0x802485C4 -deleteMapNode__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNode=0x802486F8 -createLoopMapNodeCheck__Q34Game4Cave11RandMapUnitFv=0x80248730 -isLoopMapNodeCheck__Q34Game4Cave11RandMapUnitFPQ34Game4Cave7MapNodei=0x802488C8 -__ct__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave16MapUnitGeneratorb=0x80248914 -setManageClassPtr__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave12RandMapScore=0x802489BC -setEnemySlot__Q34Game4Cave13RandEnemyUnitFv=0x802489C4 -setEnemyTypeWeight__Q34Game4Cave13RandEnemyUnitFv=0x80248A18 -setEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv=0x80248C90 -setEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv=0x80248D80 -setEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv=0x80248E4C -setEnemyTypeA__Q34Game4Cave13RandEnemyUnitFv=0x80248F18 -setVersusHibaTypeC__Q34Game4Cave13RandEnemyUnitFv=0x8024901C -setVersusEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv=0x802491AC -setSlotEnemyTypeC__Q34Game4Cave13RandEnemyUnitFRii=0x80249350 -setUnitRandEnemyTypeC__Q34Game4Cave13RandEnemyUnitFv=0x80249648 -makeSetEnemyTypeC__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodeiPQ34Game4Cave9EnemyUnit=0x802497E8 -setVersusEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv=0x802498C0 -setSlotEnemyTypeF__Q34Game4Cave13RandEnemyUnitFi=0x80249A3C -setUnitRandEnemyTypeF__Q34Game4Cave13RandEnemyUnitFv=0x80249E1C -makeSetEnemyTypeF__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUnit=0x80249FBC -setVersusEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv=0x8024A044 -setSlotEnemyTypeB__Q34Game4Cave13RandEnemyUnitFi=0x8024A1C0 -setUnitRandEnemyTypeB__Q34Game4Cave13RandEnemyUnitFv=0x8024A5A0 -makeSetEnemyTypeB__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUnit=0x8024A740 -setVersusEasyEnemy__Q34Game4Cave13RandEnemyUnitFv=0x8024A7C8 -getVersusEasyEnemyBaseGen__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen=0x8024AA94 -setVersusEnemyTypeA__Q34Game4Cave13RandEnemyUnitFv=0x8024ABD8 -setSlotEnemyTypeA__Q34Game4Cave13RandEnemyUnitFRiRii=0x8024ADAC -setUnitRandEnemyTypeA__Q34Game4Cave13RandEnemyUnitFRiii=0x8024B180 -makeSetEnemyTypeA__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGenPQ34Game4Cave9EnemyUniti=0x8024B418 -isEnemySetGen__Q34Game4Cave13RandEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen=0x8024B838 -__ct__Q34Game4Cave6AdjustFv=0x8024B874 -__ct__Q34Game4Cave10AdjustNodeFv=0x8024B888 -__ct__Q34Game4Cave10AdjustNodeFPQ34Game4Cave6Adjust=0x8024B8CC -__ct__Q34Game4Cave4DoorFv=0x8024B918 -__ct__Q34Game4Cave8DoorNodeFv=0x8024B928 -__ct__Q34Game4Cave8DoorNodeFRQ34Game4Cave4Door=0x8024B978 -isDoorAdjust__Q34Game4Cave8DoorNodeFPQ34Game4Cave8DoorNode=0x8024B9DC -__dt__Q34Game4Cave8DoorNodeFv=0x8024BA4C -__ct__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit=0x8024BAAC -__defctor__Q34Game4Cave7MapNodeFv=0x8024BCAC -createEditMapInfo__Q34Game4Cave16MapUnitGeneratorFPQ34Game4Cave11EditMapUnit=0x8024BCD0 -createMemList__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterfacei=0x8024BD7C -isCreateList__Q34Game4Cave16MapUnitGeneratorFPQ24Game16MapUnitInterface=0x8024BFC8 -memMapListSorting__Q34Game4Cave16MapUnitGeneratorFv=0x8024C040 -createMapPartsList__Q34Game4Cave16MapUnitGeneratorFv=0x8024C10C -createEnemyList__Q34Game4Cave16MapUnitGeneratorFv=0x8024C258 -createCapEnemyList__Q34Game4Cave16MapUnitGeneratorFv=0x8024C30C -isPomGroup__Q34Game4Cave16MapUnitGeneratorFPQ34Game4Cave8TekiInfo=0x8024C3F8 -createGateList__Q34Game4Cave16MapUnitGeneratorFv=0x8024C428 -createItemList__Q34Game4Cave16MapUnitGeneratorFv=0x8024C4DC -createCaveLevel__Q34Game4Cave16MapUnitGeneratorFv=0x8024C590 -__sinit_MapUnitGenerator_cpp=0x8024C5BC -nishimuraCreateRandomMap__Q24Game10RoomMapMgrFPQ24Game16MapUnitInterfaceiPQ34Game4Cave9FloorInfobPQ34Game4Cave11EditMapUnit=0x8024C5E4 -nishimuraPlaceRooms__Q24Game10RoomMapMgrFv=0x8024C6D4 -nishimuraSetTexture__Q24Game10RoomMapMgrFv=0x8024C7F0 -__ct__Q34Game4Cave12RandMapScoreFPQ34Game4Cave16MapUnitGenerator=0x8024C878 -setMapUnitScore__Q34Game4Cave12RandMapScoreFv=0x8024C920 -setStartSlot__Q34Game4Cave12RandMapScoreFv=0x8024C98C -setGoalSlot__Q34Game4Cave12RandMapScoreFv=0x8024C9C4 -makeObjectLayout__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePQ34Game4Cave12ObjectLayout=0x8024CA1C -getFixObjNode__Q34Game4Cave12RandMapScoreFi=0x8024CBA8 -getFixObjGen__Q34Game4Cave12RandMapScoreFi=0x8024CBB8 -getGlobalPosition__Q34Game4Cave12RandMapScoreFiR10Vector3=0x8024CBC8 -getVersusHighScore__Q34Game4Cave12RandMapScoreFv=0x8024CC2C -getVersusLowScore__Q34Game4Cave12RandMapScoreFv=0x8024CC34 -isScoreSetDone__Q34Game4Cave12RandMapScoreFv=0x8024CC3C -clearRoomAndDoorScore__Q34Game4Cave12RandMapScoreFv=0x8024CCC0 -setUnitAndDoorScore__Q34Game4Cave12RandMapScoreFv=0x8024CD84 -setStartMapNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNode=0x8024CED8 -setChallengePod__Q34Game4Cave12RandMapScoreFv=0x8024CF88 -setVersusOnyon__Q34Game4Cave12RandMapScoreFv=0x8024D0C4 -getMaxScoreRoomMapNode__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGen=0x8024D27C -calcNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNode=0x8024D378 -copyNodeScore__Q34Game4Cave12RandMapScoreFv=0x8024D728 -subNodeScore__Q34Game4Cave12RandMapScoreFv=0x8024D770 -setMapNodeScore__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodei=0x8024D7FC -setChallengeFixObjNormal__Q34Game4Cave12RandMapScoreFv=0x8024D860 -setChallengeFixObjHard__Q34Game4Cave12RandMapScoreFv=0x8024DC1C -isGoalSetHard__Q34Game4Cave12RandMapScoreFv=0x8024DF40 -isFixObjSet__Q34Game4Cave12RandMapScoreFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen=0x8024DFA4 -__dt__Q34Game4Cave10FixObjNodeFv=0x8024E0CC -getObjectId__Q34Game4Cave10FixObjNodeFv=0x8024E13C -getObjectType__Q34Game4Cave10FixObjNodeFv=0x8024E144 -getBirthCount__Q34Game4Cave10FixObjNodeFv=0x8024E14C -getDirection__Q34Game4Cave10FixObjNodeFv=0x8024E154 -getBirthPosition__Q34Game4Cave10FixObjNodeFRfRf=0x8024E15C -__ct__Q34Game4Cave8ItemNodeFv=0x8024E170 -__ct__Q34Game4Cave8ItemNodeFPQ34Game4Cave8ItemUnitPQ34Game4Cave7BaseGeni=0x8024E1DC -makeGlobalData__Q34Game4Cave8ItemNodeFPQ34Game4Cave7MapNode=0x8024E268 -getObjectId__Q34Game4Cave8ItemNodeFv=0x8024E2D0 -getObjectType__Q34Game4Cave8ItemNodeFv=0x8024E2F0 -getBirthCount__Q34Game4Cave8ItemNodeFv=0x8024E2F8 -getBirthPosition__Q34Game4Cave8ItemNodeFRfRf=0x8024E300 -getDirection__Q34Game4Cave8ItemNodeFv=0x8024E314 -__dt__Q34Game4Cave8ItemNodeFv=0x8024E31C -__ct__Q34Game4Cave12RandItemUnitFPQ34Game4Cave16MapUnitGenerator=0x8024E38C -setManageClassPtr__Q34Game4Cave12RandItemUnitFPQ34Game4Cave12RandMapScore=0x8024E3F0 -setItemSlot__Q34Game4Cave12RandItemUnitFv=0x8024E3F8 -isItemSetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen=0x8024E4FC -isGroundCapEnemySetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode=0x8024E60C -isFallCapEnemySetDone__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode=0x8024E6F4 -setItemDropPositionList__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGen=0x8024E7C4 -getItemDropPosition__Q34Game4Cave12RandItemUnitFR10Vector3fi=0x8024E7D0 -getItemNormalSetMapNode__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7BaseGen=0x8024E9F8 -getItemHardSetMapNode__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7BaseGen=0x8024ED84 -getItemUnit__Q34Game4Cave12RandItemUnitFv=0x8024F0C4 -getItemSlotNum__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNode=0x8024F244 -isItemSetHard__Q34Game4Cave12RandItemUnitFv=0x8024F2A4 -getItemDropMapNode__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePPQ34Game4Cave7MapNodeiRi=0x8024F300 -getItemBaseGenPosition__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodei=0x8024F448 -getItemDropList__Q34Game4Cave12RandItemUnitFPQ34Game4Cave7MapNodePPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGenRi=0x8024F75C -getItemBaseGenPosition__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGeniii=0x8024F8E8 -getItemDropSortingList__Q34Game4Cave12RandItemUnitFPPQ34Game4Cave7MapNodePPQ34Game4Cave7BaseGenPii=0x8024FBB4 -__ct__Q34Game4Cave8GateNodeFv=0x8024FCC8 -__ct__Q34Game4Cave8GateNodeFPQ34Game4Cave8GateUnitii=0x8024FD24 -getObjectId__Q34Game4Cave8GateNodeFv=0x8024FDC0 -getObjectType__Q34Game4Cave8GateNodeFv=0x8024FDE0 -getBirthCount__Q34Game4Cave8GateNodeFv=0x8024FDE8 -getDirection__Q34Game4Cave8GateNodeFv=0x8024FDF0 -getBirthDoorIndex__Q34Game4Cave8GateNodeFv=0x8024FDF8 -__dt__Q34Game4Cave8GateNodeFv=0x8024FE00 -__ct__Q34Game4Cave12RandGateUnitFPQ34Game4Cave16MapUnitGenerator=0x8024FE70 -setManageClassPtr__Q34Game4Cave12RandGateUnitFPQ34Game4Cave12RandMapScorePQ34Game4Cave12RandItemUnit=0x8024FEE4 -setGateDoor__Q34Game4Cave12RandGateUnitFv=0x8024FEF0 -getGateUnit__Q34Game4Cave12RandGateUnitFv=0x8024FFC8 -getRoomNodePtr__Q34Game4Cave12RandGateUnitFRi=0x8025009C -getItemSetCapDoor__Q34Game4Cave12RandGateUnitFRi=0x80250158 -getRoomMinScoreDoor__Q34Game4Cave12RandGateUnitFRi=0x802502B8 -getRoomLowScoreDoor__Q34Game4Cave12RandGateUnitFRi=0x8025039C -getRandomScoreDoor__Q34Game4Cave12RandGateUnitFRi=0x802505B4 -__ct__Q34Game4Cave12ObjectLayoutFPQ34Game4Cave7MapNode=0x80250824 -setNode__Q34Game4Cave12ObjectLayoutFiPQ24Game16ObjectLayoutNode=0x802508F0 -getCount__Q34Game4Cave12ObjectLayoutFi=0x80250900 -getNode__Q34Game4Cave12ObjectLayoutFii=0x80250948 -__ct__Q24Game9CameraMgrFv=0x80250988 -loadResource__Q24Game9CameraMgrFv=0x802509D0 -__ct__Q24Game14VibrationParmsFv=0x80250AFC -__ct__Q24Game11CameraParmsFv=0x80250FCC -setViewport__Q24Game9CameraMgrFP8Viewporti=0x80251E44 -init__Q24Game9CameraMgrFi=0x80251EEC -setCameraAngle__Q24Game9CameraMgrFfi=0x80252038 -update__Q24Game9CameraMgrFv=0x802520CC -startVibration__Q24Game9CameraMgrFiR10Vector3i=0x8025223C -startVibration__Q24Game9CameraMgrFii=0x80252390 -controllerLock__Q24Game9CameraMgrFi=0x8025246C -controllerUnLock__Q24Game9CameraMgrFi=0x802524DC -startDemoCamera__Q24Game9CameraMgrFii=0x8025254C -finishDemoCamera__Q24Game9CameraMgrFi=0x802525DC -changePlayerMode__Q24Game9CameraMgrFiP30IDelegate1=0x80252658 -isChangePlayer__Q24Game9CameraMgrFv=0x802527B8 -setZukanCamera__Q24Game9CameraMgrFP12LookAtCamera=0x80252810 -isCameraUpdateOn__Q24Game9CameraMgrFv=0x80252868 -isStartAndEnd__Q24Game9CameraMgrFPii=0x80252890 -isVibrationStart__Q24Game9CameraMgrFii=0x802528F8 -readCameraParms__Q24Game9CameraMgrFPc=0x8025297C -readParameter__Q24Game9CameraMgrFR6Stream=0x80252A24 -__dt__Q24Game9CameraMgrFv=0x80252A98 -__sinit_CameraMgr_cpp=0x80252AF8 -__ct__Q24Game10ContRumbleFii=0x80252B20 -init__Q24Game10ContRumbleFv=0x80252C78 -update__Q24Game10ContRumbleFv=0x80252D04 -setController__Q24Game10ContRumbleFb=0x80252F94 -startRumble__Q24Game10ContRumbleFif=0x80252FEC -rumbleStop__Q24Game10ContRumbleFv=0x802530F0 -rumbleStop__Q24Game10ContRumbleFi=0x80253178 -getRumbleParameter__Q24Game10ContRumbleFiRfRf=0x80253208 -__dt__Q24Game10RumbleNodeFv=0x802532A4 -__ct__Q24Game9RumbleMgrFv=0x80253304 -loadResource__Q24Game9RumbleMgrFv=0x8025334C -init__Q24Game9RumbleMgrFv=0x802534A4 -update__Q24Game9RumbleMgrFv=0x802535AC -startRumble__Q24Game9RumbleMgrFiR10Vector3i=0x80253780 -startRumble__Q24Game9RumbleMgrFii=0x80253924 -stopRumble__Q24Game9RumbleMgrFii=0x802539DC -stopRumble__Q24Game9RumbleMgrFi=0x80253A70 -isRumbleUpdateOn__Q24Game9RumbleMgrFv=0x80253AF8 -setZukanRumble__Q24Game9RumbleMgrFP10ControllerP10Vector3=0x80253B74 -isStartAndEnd__Q24Game9RumbleMgrFPii=0x80253BD0 -readRumbleParms__Q24Game9RumbleMgrFPc=0x80253C38 -readRumbleData__Q24Game9RumbleMgrFPc=0x80253CF8 -__dt__Q24Game9RumbleMgrFv=0x80253DB8 -setAnimMgr__Q34Game3Pom14ProperAnimatorFPQ28SysShape7AnimMgr=0x80253E18 -getAnimator__Q34Game3Pom14ProperAnimatorFi=0x80253E20 -__dt__Q34Game3Pom14ProperAnimatorFv=0x80253E28 -getAnimator__Q34Game3Pom14ProperAnimatorFv=0x80253E84 -__ct__Q34Game3Pom3MgrFiUc=0x80253E8C -birth__Q34Game3Pom3MgrFRQ24Game13EnemyBirthArg=0x80253EDC -doAlloc__Q34Game3Pom3MgrFv=0x802540D0 -__ct__Q34Game3Pom5ParmsFv=0x80254118 -createObj__Q34Game3Pom3MgrFi=0x802542E0 -__dt__Q34Game3Pom3ObjFv=0x80254468 -getEnemy__Q34Game3Pom3MgrFi=0x80254524 -createModel__Q34Game3Pom3MgrFv=0x80254534 -read__Q34Game3Pom5ParmsFR6Stream=0x8025466C -__dt__Q34Game3Pom3MgrFv=0x802546BC -getEnemyTypeID__Q34Game3Pom3MgrFv=0x8025476C -__sinit_PomMgr_cpp=0x80254774 -@4@__dt__Q34Game3Pom3MgrFv=0x8025479C -__ct__Q34Game3Pom3ObjFv=0x802547A4 -setInitialSetting__Q34Game3Pom3ObjFPQ24Game21EnemyInitialParamBase=0x802548DC -onInit__Q34Game3Pom3ObjFPQ24Game15CreatureInitArg=0x802548E0 -doUpdate__Q34Game3Pom3ObjFv=0x802549F4 -changeMaterial__Q34Game3Pom3ObjFv=0x80254A7C -doDirectDraw__Q34Game3Pom3ObjFR8Graphics=0x80254B8C -doDebugDraw__Q34Game3Pom3ObjFR8Graphics=0x80254B90 -setFSM__Q34Game3Pom3ObjFPQ34Game3Pom3FSM=0x80254BB0 -getShadowParam__Q34Game3Pom3ObjFRQ24Game11ShadowParam=0x80254BFC -pressCallBack__Q34Game3Pom3ObjFPQ24Game8CreaturefP8CollPart=0x80254C40 -hipdropCallBack__Q34Game3Pom3ObjFPQ24Game8CreaturefP8CollPart=0x80254D6C -collisionCallback__Q34Game3Pom3ObjFRQ24Game9CollEvent=0x80254D98 -initMouthSlots__Q34Game3Pom3ObjFv=0x80254E40 -setPomParms__Q34Game3Pom3ObjFv=0x80254E8C -getEnemyTypeID__Q34Game3Pom3ObjFv=0x8025539C -shotPikmin__Q34Game3Pom3ObjFv=0x802553A4 -changePomColor__Q34Game3Pom3ObjFv=0x80255850 -createSwingSmokeEffect__Q34Game3Pom3ObjFv=0x802559EC -createShotEffect__Q34Game3Pom3ObjFv=0x80255B70 -createPomDeadEffect__Q34Game3Pom3ObjFv=0x80255C04 -inWaterCallback__Q34Game3Pom3ObjFPQ24Game8WaterBox=0x80255C84 -outWaterCallback__Q34Game3Pom3ObjFv=0x80255C88 -isLivingThing__Q34Game3Pom3ObjFv=0x80255C8C -getMouthSlots__Q34Game3Pom3ObjFv=0x80255C94 -getDownSmokeScale__Q34Game3Pom3ObjFv=0x80255C9C -init__Q34Game3Pom3FSMFPQ24Game9EnemyBase=0x80255CA4 -init__Q34Game3Pom9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80255EC8 -exec__Q34Game3Pom9StateWaitFPQ24Game9EnemyBase=0x80255EF4 -cleanup__Q34Game3Pom9StateWaitFPQ24Game9EnemyBase=0x80255F50 -init__Q34Game3Pom9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80255F54 -exec__Q34Game3Pom9StateDeadFPQ24Game9EnemyBase=0x80255FB4 -cleanup__Q34Game3Pom9StateDeadFPQ24Game9EnemyBase=0x80255FF8 -init__Q34Game3Pom9StateOpenFPQ24Game9EnemyBasePQ24Game8StateArg=0x80255FFC -exec__Q34Game3Pom9StateOpenFPQ24Game9EnemyBase=0x8025603C -cleanup__Q34Game3Pom9StateOpenFPQ24Game9EnemyBase=0x802560DC -init__Q34Game3Pom10StateCloseFPQ24Game9EnemyBasePQ24Game8StateArg=0x802560E0 -exec__Q34Game3Pom10StateCloseFPQ24Game9EnemyBase=0x80256120 -cleanup__Q34Game3Pom10StateCloseFPQ24Game9EnemyBase=0x80256198 -init__Q34Game3Pom9StateShotFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025619C -exec__Q34Game3Pom9StateShotFPQ24Game9EnemyBase=0x802561E8 -cleanup__Q34Game3Pom9StateShotFPQ24Game9EnemyBase=0x8025627C -init__Q34Game3Pom10StateSwingFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025628C -exec__Q34Game3Pom10StateSwingFPQ24Game9EnemyBase=0x802562C8 -cleanup__Q34Game3Pom10StateSwingFPQ24Game9EnemyBase=0x802563C0 -init__Q34Game4Frog3FSMFPQ24Game9EnemyBase=0x802563C4 -init__Q34Game4Frog9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80256740 -exec__Q34Game4Frog9StateDeadFPQ24Game9EnemyBase=0x802567A8 -getDownSmokeScale__Q34Game4Frog3ObjFv=0x80256820 -cleanup__Q34Game4Frog9StateDeadFPQ24Game9EnemyBase=0x80256828 -init__Q34Game4Frog9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025682C -exec__Q34Game4Frog9StateWaitFPQ24Game9EnemyBase=0x802568CC -attackNaviPosition__Q34Game4Frog3ObjFv=0x80256D0C -cleanup__Q34Game4Frog9StateWaitFPQ24Game9EnemyBase=0x80256D10 -init__Q34Game4Frog9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x80256D14 -exec__Q34Game4Frog9StateTurnFPQ24Game9EnemyBase=0x80256D74 -cleanup__Q34Game4Frog9StateTurnFPQ24Game9EnemyBase=0x80257120 -init__Q34Game4Frog9StateJumpFPQ24Game9EnemyBasePQ24Game8StateArg=0x802571CC -exec__Q34Game4Frog9StateJumpFPQ24Game9EnemyBase=0x802572B4 -cleanup__Q34Game4Frog9StateJumpFPQ24Game9EnemyBase=0x802573CC -init__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80257414 -exec__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBase=0x8025746C -cleanup__Q34Game4Frog13StateJumpWaitFPQ24Game9EnemyBase=0x802574F8 -init__Q34Game4Frog9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x80257534 -exec__Q34Game4Frog9StateFallFPQ24Game9EnemyBase=0x802575C0 -cleanup__Q34Game4Frog9StateFallFPQ24Game9EnemyBase=0x80257600 -init__Q34Game4Frog11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80257638 -exec__Q34Game4Frog11StateAttackFPQ24Game9EnemyBase=0x802576AC -cleanup__Q34Game4Frog11StateAttackFPQ24Game9EnemyBase=0x80257818 -init__Q34Game4Frog9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025785C -exec__Q34Game4Frog9StateFailFPQ24Game9EnemyBase=0x802578B0 -cleanup__Q34Game4Frog9StateFailFPQ24Game9EnemyBase=0x80257A58 -init__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80257A7C -exec__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBase=0x80257AC0 -cleanup__Q34Game4Frog15StateTurnToHomeFPQ24Game9EnemyBase=0x80257CE4 -init__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80257D44 -exec__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBase=0x80257DA0 -cleanup__Q34Game4Frog11StateGoHomeFPQ24Game9EnemyBase=0x80257FA0 -setAnimMgr__Q34Game4Frog14ProperAnimatorFPQ28SysShape7AnimMgr=0x802580AC -getAnimator__Q34Game4Frog14ProperAnimatorFi=0x802580B4 -__dt__Q34Game4Frog14ProperAnimatorFv=0x802580BC -getAnimator__Q34Game4Frog14ProperAnimatorFv=0x80258118 -__ct__Q34Game4Frog3MgrFiUc=0x80258120 -doAlloc__Q34Game4Frog3MgrFv=0x80258170 -__ct__Q34Game4Frog5ParmsFv=0x802581B8 -createObj__Q34Game4Frog3MgrFi=0x8025830C -__dt__Q34Game4Frog3ObjFv=0x8025836C -getEnemy__Q34Game4Frog3MgrFi=0x80258428 -read__Q34Game4Frog5ParmsFR6Stream=0x80258438 -__dt__Q34Game4Frog3MgrFv=0x80258488 -getEnemyTypeID__Q34Game4Frog3MgrFv=0x80258538 -@4@__dt__Q34Game4Frog3MgrFv=0x80258540 -__ct__Q34Game4Frog3ObjFv=0x80258548 -setInitialSetting__Q34Game4Frog3ObjFPQ24Game21EnemyInitialParamBase=0x80258680 -onInit__Q34Game4Frog3ObjFPQ24Game15CreatureInitArg=0x80258684 -onKill__Q34Game4Frog3ObjFPQ24Game15CreatureKillArg=0x802586FC -doUpdate__Q34Game4Frog3ObjFv=0x80258740 -doSimulationFlying__Q34Game4Frog3ObjFf=0x80258784 -doDirectDraw__Q34Game4Frog3ObjFR8Graphics=0x80258A04 -doDebugDraw__Q34Game4Frog3ObjFR8Graphics=0x80258A08 -setFSM__Q34Game4Frog3ObjFPQ34Game4Frog3FSM=0x80258A28 -getShadowParam__Q34Game4Frog3ObjFRQ24Game11ShadowParam=0x80258A74 -collisionCallback__Q34Game4Frog3ObjFRQ24Game9CollEvent=0x80258B84 -doStartStoneState__Q34Game4Frog3ObjFv=0x80258C88 -doFinishStoneState__Q34Game4Frog3ObjFv=0x80258CBC -doStartEarthquakeFitState__Q34Game4Frog3ObjFv=0x80258D20 -doFinishEarthquakeFitState__Q34Game4Frog3ObjFv=0x80258D54 -doStartWaitingBirthTypeDrop__Q34Game4Frog3ObjFv=0x80258DB0 -doFinishWaitingBirthTypeDrop__Q34Game4Frog3ObjFv=0x80258DE4 -startCarcassMotion__Q34Game4Frog3ObjFv=0x80258E18 -viewGetCollTreeOffset__Q34Game4Frog3ObjFv=0x80258E40 -doStartMovie__Q34Game4Frog3ObjFv=0x80258E5C -doEndMovie__Q34Game4Frog3ObjFv=0x80258E7C -getOffsetForMapCollision__Q34Game4Frog3ObjFv=0x80258E9C -getCommonEffectPos__Q34Game4Frog3ObjFR10Vector3=0x80258F24 -updateCaution__Q34Game4Frog3ObjFv=0x80258F78 -getViewAngle__Q34Game4Frog3ObjFv=0x80258FC8 -startJumpAttack__Q34Game4Frog3ObjFv=0x80258FEC -resetHomePosition__Q34Game4Frog3ObjFv=0x802590C4 -pressOnGround__Q34Game4Frog3ObjFv=0x8025919C -createEffect__Q34Game4Frog3ObjFv=0x802593E8 -setupEffect__Q34Game4Frog3ObjFv=0x80259498 -startJumpEffect__Q34Game4Frog3ObjFv=0x802594A8 -finishJumpEffect__Q34Game4Frog3ObjFv=0x802594DC -createDownEffect__Q34Game4Frog3ObjFf=0x8025950C -effectDrawOn__Q34Game4Frog3ObjFv=0x802595CC -effectDrawOff__Q34Game4Frog3ObjFv=0x802595FC -__dt__Q23efx9TFrogPotaFv=0x8025962C -forceKill__Q23efx8TSimple4Fv=0x802596C8 -fade__Q23efx8TSimple4Fv=0x802596CC -inWaterCallback__Q34Game4Frog3ObjFPQ24Game8WaterBox=0x802596D0 -outWaterCallback__Q34Game4Frog3ObjFv=0x802596D4 -getEnemyTypeID__Q34Game4Frog3ObjFv=0x802596D8 -__sinit_Frog_cpp=0x802596E0 -@736@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80259708 -@736@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8025971C -@736@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80259730 -@736@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80259744 -@736@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80259758 -@736@12@viewGetCollTreeOffset__Q34Game4Frog3ObjFv=0x8025976C -@736@12@viewGetShape__Q24Game9EnemyBaseFv=0x80259780 -@4@__dt__Q23efx9TFrogPotaFv=0x80259794 -__ct__Q34Game4Ujib3MgrFiUc=0x8025979C -doAlloc__Q34Game4Ujib3MgrFv=0x802597EC -__ct__Q34Game4Ujib5ParmsFv=0x80259834 -createObj__Q34Game4Ujib3MgrFi=0x80259910 -__dt__Q34Game4Ujib3ObjFv=0x80259970 -getEnemy__Q34Game4Ujib3MgrFi=0x80259A2C -read__Q34Game4Ujib5ParmsFR6Stream=0x80259A3C -__dt__Q34Game4Ujib3MgrFv=0x80259A8C -getEnemyTypeID__Q34Game4Ujib3MgrFv=0x80259B3C -@4@__dt__Q34Game4Ujib3MgrFv=0x80259B44 -__ct__Q34Game4Ujib3ObjFv=0x80259B4C -setInitialSetting__Q34Game4Ujib3ObjFPQ24Game21EnemyInitialParamBase=0x80259C84 -onInit__Q34Game4Ujib3ObjFPQ24Game15CreatureInitArg=0x80259C88 -doUpdate__Q34Game4Ujib3ObjFv=0x80259D20 -doDirectDraw__Q34Game4Ujib3ObjFR8Graphics=0x80259D68 -doDebugDraw__Q34Game4Ujib3ObjFR8Graphics=0x80259D6C -setFSM__Q34Game4Ujib3ObjFPQ34Game4Ujib3FSM=0x80259D8C -getShadowParam__Q34Game4Ujib3ObjFRQ24Game11ShadowParam=0x80259DD8 -pressCallBack__Q34Game4Ujib3ObjFPQ24Game8CreaturefP8CollPart=0x80259E80 -hipdropCallBack__Q34Game4Ujib3ObjFPQ24Game8CreaturefP8CollPart=0x80259F14 -startCarcassMotion__Q34Game4Ujib3ObjFv=0x80259F40 -initMouthSlots__Q34Game4Ujib3ObjFv=0x80259F68 -lifeIncrement__Q34Game4Ujib3ObjFv=0x80259FF4 -setInWaterDamage__Q34Game4Ujib3ObjFv=0x8025A024 -resetAppearCheck__Q34Game4Ujib3ObjFv=0x8025A058 -isAppearCheck__Q34Game4Ujib3ObjFv=0x8025A10C -resetBridgeSearch__Q34Game4Ujib3ObjFv=0x8025A154 -setBridgeSearch__Q34Game4Ujib3ObjFv=0x8025A174 -setNearestBridge__Q34Game4Ujib3ObjFv=0x8025A1BC -setCullingCheck__Q34Game4Ujib3ObjFv=0x8025A47C -checkBreakOrMove__Q34Game4Ujib3ObjFv=0x8025A480 -isBreakBridge__Q34Game4Ujib3ObjFv=0x8025A634 -moveBridgeSide__Q34Game4Ujib3ObjFv=0x8025A65C -moveBridgeCentre__Q34Game4Ujib3ObjFv=0x8025A904 -moveBridgeTop__Q34Game4Ujib3ObjFv=0x8025AB8C -breakTargetBridge__Q34Game4Ujib3ObjFv=0x8025AE7C -createAppearEffect__Q34Game4Ujib3ObjFv=0x8025AED8 -createDisAppearEffect__Q34Game4Ujib3ObjFv=0x8025AF64 -createBridgeEffect__Q34Game4Ujib3ObjFv=0x8025AFF0 -createEatEffect__Q34Game4Ujib3ObjFv=0x8025B080 -isUnderground__Q34Game4Ujib3ObjFv=0x8025B110 -getMouthSlots__Q34Game4Ujib3ObjFv=0x8025B118 -getDownSmokeScale__Q34Game4Ujib3ObjFv=0x8025B120 -getEnemyTypeID__Q34Game4Ujib3ObjFv=0x8025B128 -@732@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8025B130 -@732@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8025B144 -@732@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8025B158 -@732@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8025B16C -@732@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8025B180 -@732@12@viewGetShape__Q24Game9EnemyBaseFv=0x8025B194 -init__Q34Game4Ujib3FSMFPQ24Game9EnemyBase=0x8025B1A8 -init__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025B620 -exec__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBase=0x8025B67C -cleanup__Q34Game4Ujib9StateDeadFPQ24Game9EnemyBase=0x8025B6C0 -init__Q34Game4Ujib10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025B6C4 -exec__Q34Game4Ujib10StatePressFPQ24Game9EnemyBase=0x8025B728 -cleanup__Q34Game4Ujib10StatePressFPQ24Game9EnemyBase=0x8025B76C -init__Q34Game4Ujib9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025B770 -exec__Q34Game4Ujib9StateStayFPQ24Game9EnemyBase=0x8025B82C -cleanup__Q34Game4Ujib9StateStayFPQ24Game9EnemyBase=0x8025B8DC -init__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025B960 -exec__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBase=0x8025B9E0 -cleanup__Q34Game4Ujib11StateAppearFPQ24Game9EnemyBase=0x8025BA60 -init__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025BA9C -exec__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBase=0x8025BB08 -cleanup__Q34Game4Ujib9StateDiveFPQ24Game9EnemyBase=0x8025BB58 -init__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025BB94 -exec__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBase=0x8025BBC8 -cleanup__Q34Game4Ujib9StateMoveFPQ24Game9EnemyBase=0x8025C090 -init__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025C094 -exec__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBase=0x8025C0C8 -cleanup__Q34Game4Ujib13StateMoveSideFPQ24Game9EnemyBase=0x8025C1F8 -init__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025C1FC -exec__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBase=0x8025C230 -cleanup__Q34Game4Ujib15StateMoveCentreFPQ24Game9EnemyBase=0x8025C360 -init__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025C364 -exec__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBase=0x8025C398 -cleanup__Q34Game4Ujib12StateMoveTopFPQ24Game9EnemyBase=0x8025C4C8 -init__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025C4CC -exec__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBase=0x8025C500 -cleanup__Q34Game4Ujib11StateGoHomeFPQ24Game9EnemyBase=0x8025C6DC -init__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg=0x8025C6E0 -exec__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBase=0x8025C738 -cleanup__Q34Game4Ujib12StateAttack1FPQ24Game9EnemyBase=0x8025C878 -init__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg=0x8025C87C -exec__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBase=0x8025C8C4 -cleanup__Q34Game4Ujib12StateAttack2FPQ24Game9EnemyBase=0x8025CADC -init__Q34Game4Ujib8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025CAEC -exec__Q34Game4Ujib8StateEatFPQ24Game9EnemyBase=0x8025CB28 -cleanup__Q34Game4Ujib8StateEatFPQ24Game9EnemyBase=0x8025CCD0 -setAnimMgr__Q34Game4Ujib14ProperAnimatorFPQ28SysShape7AnimMgr=0x8025CCD4 -getAnimator__Q34Game4Ujib14ProperAnimatorFi=0x8025CCDC -__dt__Q34Game4Ujib14ProperAnimatorFv=0x8025CCE4 -getAnimator__Q34Game4Ujib14ProperAnimatorFv=0x8025CD40 -init__Q34Game6Kogane3FSMFPQ24Game9EnemyBase=0x8025CD48 -init__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025CF1C -exec__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBase=0x8025CFB4 -cleanup__Q34Game6Kogane11StateAppearFPQ24Game9EnemyBase=0x8025D018 -startBodyEffect__Q34Game6Kogane3ObjFv=0x8025D1B8 -init__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025D1BC -finishBodyEffect__Q34Game6Kogane3ObjFv=0x8025D2F4 -exec__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBase=0x8025D2F8 -cleanup__Q34Game6Kogane14StateDisappearFPQ24Game9EnemyBase=0x8025D364 -init__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025D368 -createFartEffect__Q34Game6Kogane3ObjFv=0x8025D3D4 -exec__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBase=0x8025D3D8 -cleanup__Q34Game6Kogane9StateMoveFPQ24Game9EnemyBase=0x8025D510 -init__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025D514 -exec__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBase=0x8025D570 -cleanup__Q34Game6Kogane9StateWaitFPQ24Game9EnemyBase=0x8025D62C -init__Q34Game6Kogane10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025D630 -createPressSENormal__Q34Game6Kogane3ObjFv=0x8025D74C -exec__Q34Game6Kogane10StatePressFPQ24Game9EnemyBase=0x8025D750 -createItem__Q34Game6Kogane3ObjFv=0x8025D880 -createPressSESpecial__Q34Game6Kogane3ObjFv=0x8025D884 -cleanup__Q34Game6Kogane10StatePressFPQ24Game9EnemyBase=0x8025D888 -__ct__Q34Game6Kogane3MgrFiUc=0x8025D898 -loadModelData__Q34Game6Kogane3MgrFv=0x8025D8E8 -loadAnimData__Q34Game6Kogane3MgrFv=0x8025D9D0 -createModel__Q34Game6Kogane3MgrFv=0x8025DA70 -__dt__Q34Game6Kogane3MgrFv=0x8025DBA0 -getEnemyTypeID__Q34Game6Kogane3MgrFv=0x8025DC50 -doLoadBmd__Q34Game6Kogane3MgrFPv=0x8025DC58 -@4@__dt__Q34Game6Kogane3MgrFv=0x8025DC84 -__ct__Q34Game6Kogane3ObjFv=0x8025DC8C -setInitialSetting__Q34Game6Kogane3ObjFPQ24Game21EnemyInitialParamBase=0x8025DDBC -onInit__Q34Game6Kogane3ObjFPQ24Game15CreatureInitArg=0x8025DDC0 -resetFartTimer__Q34Game6Kogane3ObjFv=0x8025DEF0 -onKill__Q34Game6Kogane3ObjFPQ24Game15CreatureKillArg=0x8025DEF4 -doUpdate__Q34Game6Kogane3ObjFv=0x8025DF44 -doUpdateCommon__Q34Game6Kogane3ObjFv=0x8025DF78 -doDirectDraw__Q34Game6Kogane3ObjFR8Graphics=0x8025DF98 -doDebugDraw__Q34Game6Kogane3ObjFR8Graphics=0x8025DF9C -setFSM__Q34Game6Kogane3ObjFPQ34Game6Kogane3FSM=0x8025DFBC -getShadowParam__Q34Game6Kogane3ObjFRQ24Game11ShadowParam=0x8025E008 -pressCallBack__Q34Game6Kogane3ObjFPQ24Game8CreaturefP8CollPart=0x8025E0A8 -wallCallback__Q34Game6Kogane3ObjFRCQ24Game8MoveInfo=0x8025E114 -earthquakeCallBack__Q34Game6Kogane3ObjFPQ24Game8Creaturef=0x8025E150 -hipdropCallBack__Q34Game6Kogane3ObjFPQ24Game8CreaturefP8CollPart=0x8025E1B0 -doStartStoneState__Q34Game6Kogane3ObjFv=0x8025E21C -doFinishStoneState__Q34Game6Kogane3ObjFv=0x8025E26C -doStartMovie__Q34Game6Kogane3ObjFv=0x8025E2BC -effectDrawOff__Q34Game6Kogane3ObjFv=0x8025E2E8 -doEndMovie__Q34Game6Kogane3ObjFv=0x8025E2EC -effectDrawOn__Q34Game6Kogane3ObjFv=0x8025E318 -transitDamageState__Q34Game6Kogane3ObjFf=0x8025E31C -transitDisappear__Q34Game6Kogane3ObjFv=0x8025E3A0 -getBodyJointPos__Q34Game6Kogane3ObjFv=0x8025E4A8 -koganeScaleUp__Q34Game6Kogane3ObjFv=0x8025E4F8 -koganeScaleDown__Q34Game6Kogane3ObjFv=0x8025E59C -setTargetPosition__Q34Game6Kogane3ObjFP10Vector3=0x8025E628 -resetAppearTimer__Q34Game6Kogane3ObjFv=0x8025E7D4 -isAppear__Q34Game6Kogane3ObjFv=0x8025E84C -resetMoveTimer__Q34Game6Kogane3ObjFff=0x8025E8CC -createTreasureItem__Q34Game6Kogane3ObjFv=0x8025E950 -createPellet__Q34Game6Kogane3ObjFii=0x8025EAE4 -createDoping__Q34Game6Kogane3ObjFUci=0x8025ED78 -__dt__Q34Game6Kogane3ObjFv=0x8025EF54 -inWaterCallback__Q34Game6Kogane3ObjFPQ24Game8WaterBox=0x8025F010 -outWaterCallback__Q34Game6Kogane3ObjFv=0x8025F014 -getEnemyTypeID__Q34Game6Kogane3ObjFv=0x8025F018 -setAnimMgr__Q34Game6Kogane14ProperAnimatorFPQ28SysShape7AnimMgr=0x8025F020 -getAnimator__Q34Game6Kogane14ProperAnimatorFi=0x8025F028 -__dt__Q34Game6Kogane14ProperAnimatorFv=0x8025F030 -getAnimator__Q34Game6Kogane14ProperAnimatorFv=0x8025F08C -init__Q34Game7Qurione3FSMFPQ24Game9EnemyBase=0x8025F094 -init__Q34Game7Qurione9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025F2BC -exec__Q34Game7Qurione9StateStayFPQ24Game9EnemyBase=0x8025F38C -cleanup__Q34Game7Qurione9StateStayFPQ24Game9EnemyBase=0x8025F414 -init__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025F470 -exec__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBase=0x8025F4E4 -cleanup__Q34Game7Qurione11StateAppearFPQ24Game9EnemyBase=0x8025F564 -init__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025F5B8 -exec__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBase=0x8025F624 -cleanup__Q34Game7Qurione14StateDisappearFPQ24Game9EnemyBase=0x8025F6A4 -init__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025F734 -exec__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBase=0x8025F770 -cleanup__Q34Game7Qurione9StateMoveFPQ24Game9EnemyBase=0x8025F8A0 -init__Q34Game7Qurione9StateDropFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025F8A4 -exec__Q34Game7Qurione9StateDropFPQ24Game9EnemyBase=0x8025F900 -cleanup__Q34Game7Qurione9StateDropFPQ24Game9EnemyBase=0x8025F968 -init__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8025F978 -exec__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBase=0x8025FA28 -cleanup__Q34Game7Qurione9StateDeadFPQ24Game9EnemyBase=0x8025FA88 -__ct__Q34Game7Qurione9GeneratorFv=0x8025FA8C -getLatestVersion__Q34Game7Qurione9GeneratorFv=0x8025FB20 -doRead__Q34Game7Qurione9GeneratorFR6Stream=0x8025FB2C -doWrite__Q34Game7Qurione9GeneratorFR6Stream=0x8025FBA0 -doReadLatestVersion__Q34Game7Qurione9GeneratorFR6Stream=0x8025FC20 -doReadOldVersion__Q34Game7Qurione9GeneratorFR6Stream=0x8025FC6C -__ct__Q34Game7Qurione3MgrFiUc=0x8025FC70 -doAlloc__Q34Game7Qurione3MgrFv=0x8025FCC0 -__ct__Q34Game7Qurione5ParmsFv=0x8025FD08 -createObj__Q34Game7Qurione3MgrFi=0x8025FE98 -__dt__Q34Game7Qurione3ObjFv=0x8025FEF8 -getEnemy__Q34Game7Qurione3MgrFi=0x8025FFB4 -read__Q34Game7Qurione5ParmsFR6Stream=0x8025FFC4 -__dt__Q34Game7Qurione3MgrFv=0x80260014 -getEnemyTypeID__Q34Game7Qurione3MgrFv=0x802600C4 -doLoadBmd__Q34Game7Qurione3MgrFPv=0x802600CC -__dt__Q34Game7Qurione9GeneratorFv=0x802600F8 -getInitialParam__Q34Game7Qurione9GeneratorFv=0x80260168 -@4@__dt__Q34Game7Qurione3MgrFv=0x80260170 -__ct__Q34Game7Qurione3ObjFv=0x80260178 -birth__Q34Game7Qurione3ObjFR10Vector3f=0x802602CC -setInitialSetting__Q34Game7Qurione3ObjFPQ24Game21EnemyInitialParamBase=0x80260328 -onInit__Q34Game7Qurione3ObjFPQ24Game15CreatureInitArg=0x80260354 -onKill__Q34Game7Qurione3ObjFPQ24Game15CreatureKillArg=0x80260440 -doUpdate__Q34Game7Qurione3ObjFv=0x80260484 -setFSM__Q34Game7Qurione3ObjFPQ34Game7Qurione3FSM=0x802604B8 -doDirectDraw__Q34Game7Qurione3ObjFR8Graphics=0x80260504 -doDebugDraw__Q34Game7Qurione3ObjFR8Graphics=0x80260508 -getShadowParam__Q34Game7Qurione3ObjFRQ24Game11ShadowParam=0x80260528 -flyCollisionCallBack__Q34Game7Qurione3ObjFPQ24Game8CreaturefP8CollPart=0x80260584 -doStartWaitingBirthTypeDrop__Q34Game7Qurione3ObjFv=0x8026060C -doFinishWaitingBirthTypeDrop__Q34Game7Qurione3ObjFv=0x80260640 -doStartMovie__Q34Game7Qurione3ObjFv=0x80260674 -doEndMovie__Q34Game7Qurione3ObjFv=0x80260694 -setQurioneStartPos__Q34Game7Qurione3ObjFf=0x802606B4 -moveFaceDir__Q34Game7Qurione3ObjFv=0x8026083C -addPitchRatio__Q34Game7Qurione3ObjFv=0x802609A8 -resetUtilityTimer__Q34Game7Qurione3ObjFv=0x802609E0 -isAppear__Q34Game7Qurione3ObjFv=0x80260A68 -isFlyKill__Q34Game7Qurione3ObjFv=0x80260AD4 -attachItem__Q34Game7Qurione3ObjFv=0x80260B04 -dropItem__Q34Game7Qurione3ObjFv=0x80260BA8 -addQurioneScale__Q34Game7Qurione3ObjFv=0x80260BF4 -subQurioneScale__Q34Game7Qurione3ObjFv=0x80260C20 -createEffect__Q34Game7Qurione3ObjFv=0x80260C4C -setupEffect__Q34Game7Qurione3ObjFv=0x80260E0C -createHitEffect__Q34Game7Qurione3ObjFv=0x80260E60 -startGlowEffect__Q34Game7Qurione3ObjFv=0x80260F00 -setGlowEffectScale__Q34Game7Qurione3ObjFv=0x80260F4C -finishGlowEffect__Q34Game7Qurione3ObjFv=0x80260F78 -createAppearEffect__Q34Game7Qurione3ObjFv=0x80260FA8 -createDisppearEffect__Q34Game7Qurione3ObjFv=0x80260FDC -effectDrawOn__Q34Game7Qurione3ObjFv=0x80261010 -effectDrawOff__Q34Game7Qurione3ObjFv=0x80261074 -__dt__Q23efx10TQuriDisapFv=0x802610D8 -__dt__Q23efx8TQuriAppFv=0x80261174 -__dt__Q23efx9TQuriGlowFv=0x80261210 -inWaterCallback__Q34Game7Qurione3ObjFPQ24Game8WaterBox=0x802612AC -outWaterCallback__Q34Game7Qurione3ObjFv=0x802612B0 -getEnemyTypeID__Q34Game7Qurione3ObjFv=0x802612B4 -@764@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x802612BC -@764@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802612D0 -@764@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802612E4 -@764@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802612F8 -@764@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8026130C -@764@12@viewGetShape__Q24Game9EnemyBaseFv=0x80261320 -@4@__dt__Q23efx9TQuriGlowFv=0x80261334 -@4@__dt__Q23efx8TQuriAppFv=0x8026133C -@4@__dt__Q23efx10TQuriDisapFv=0x80261344 -setAnimMgr__Q34Game7Qurione14ProperAnimatorFPQ28SysShape7AnimMgr=0x8026134C -getAnimator__Q34Game7Qurione14ProperAnimatorFi=0x80261354 -__dt__Q34Game7Qurione14ProperAnimatorFv=0x8026135C -getAnimator__Q34Game7Qurione14ProperAnimatorFv=0x802613B8 -__ct__Q24Game10RumbleDataFv=0x802613C0 -__ct__Q24Game13RumbleDataMgrFv=0x802613CC -getRumbleData__Q24Game13RumbleDataMgrFi=0x802613D8 -read__Q24Game13RumbleDataMgrFR6Stream=0x80261404 -__ct__Q34Game8MaroFrog3MgrFiUc=0x8026152C -doAlloc__Q34Game8MaroFrog3MgrFv=0x8026157C -createObj__Q34Game8MaroFrog3MgrFi=0x802615C4 -__dt__Q34Game8MaroFrog3ObjFv=0x80261624 -getEnemy__Q34Game8MaroFrog3MgrFi=0x80261710 -__dt__Q34Game8MaroFrog3MgrFv=0x80261720 -getEnemyTypeID__Q34Game8MaroFrog3MgrFv=0x802617D0 -@4@__dt__Q34Game8MaroFrog3MgrFv=0x802617D8 -__ct__Q34Game8MaroFrog3ObjFv=0x802617E0 -attackNaviPosition__Q34Game8MaroFrog3ObjFv=0x80261878 -createEffect__Q34Game8MaroFrog3ObjFv=0x80261CD4 -getEnemyTypeID__Q34Game8MaroFrog3ObjFv=0x80261D84 -init__Q34Game4Rock3FSMFPQ24Game9EnemyBase=0x80261D8C -init__Q34Game4Rock9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80261FB4 -exec__Q34Game4Rock9StateWaitFPQ24Game9EnemyBase=0x8026204C -cleanup__Q34Game4Rock9StateWaitFPQ24Game9EnemyBase=0x80262154 -init__Q34Game4Rock11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026219C -exec__Q34Game4Rock11StateAppearFPQ24Game9EnemyBase=0x802622A0 -cleanup__Q34Game4Rock11StateAppearFPQ24Game9EnemyBase=0x80262304 -init__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80262360 -exec__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBase=0x8026238C -cleanup__Q34Game4Rock13StateDropWaitFPQ24Game9EnemyBase=0x802623C0 -init__Q34Game4Rock9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x80262418 -exec__Q34Game4Rock9StateFallFPQ24Game9EnemyBase=0x80262478 -cleanup__Q34Game4Rock9StateFallFPQ24Game9EnemyBase=0x802624E0 -init__Q34Game4Rock9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80262574 -exec__Q34Game4Rock9StateMoveFPQ24Game9EnemyBase=0x802625F0 -cleanup__Q34Game4Rock9StateMoveFPQ24Game9EnemyBase=0x802626C0 -init__Q34Game4Rock9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026273C -exec__Q34Game4Rock9StateDeadFPQ24Game9EnemyBase=0x802627C4 -cleanup__Q34Game4Rock9StateDeadFPQ24Game9EnemyBase=0x80262850 -__sinit_RockState_cpp=0x80262854 -setAnimMgr__Q34Game4Rock14ProperAnimatorFPQ28SysShape7AnimMgr=0x8026287C -getAnimator__Q34Game4Rock14ProperAnimatorFi=0x80262884 -__dt__Q34Game4Rock14ProperAnimatorFv=0x8026288C -getAnimator__Q34Game4Rock14ProperAnimatorFv=0x802628E8 -__ct__Q34Game4Rock9GeneratorFv=0x802628F0 -getLatestVersion__Q34Game4Rock9GeneratorFv=0x8026298C -doRead__Q34Game4Rock9GeneratorFR6Stream=0x80262998 -doWrite__Q34Game4Rock9GeneratorFR6Stream=0x80262A0C -doReadLatestVersion__Q34Game4Rock9GeneratorFR6Stream=0x80262AB0 -doReadOldVersion__Q34Game4Rock9GeneratorFR6Stream=0x80262B08 -__ct__Q34Game4Rock3MgrFiUc=0x80262B0C -doAlloc__Q34Game4Rock3MgrFv=0x80262B5C -__ct__Q34Game4Rock5ParmsFv=0x80262BA4 -createObj__Q34Game4Rock3MgrFi=0x80262C3C -__dt__Q34Game4Rock3ObjFv=0x80262D9C -getEnemy__Q34Game4Rock3MgrFi=0x80262E58 -read__Q34Game4Rock5ParmsFR6Stream=0x80262E68 -__dt__Q34Game4Rock3MgrFv=0x80262EB8 -getEnemyTypeID__Q34Game4Rock3MgrFv=0x80262F68 -__dt__Q34Game4Rock9GeneratorFv=0x80262F70 -getInitialParam__Q34Game4Rock9GeneratorFv=0x80262FE0 -@4@__dt__Q34Game4Rock3MgrFv=0x80262FE8 -__ct__Q34Game4Rock3ObjFv=0x80262FF0 -birth__Q34Game4Rock3ObjFR10Vector3f=0x80263128 -setInitialSetting__Q34Game4Rock3ObjFPQ24Game21EnemyInitialParamBase=0x80263184 -onInit__Q34Game4Rock3ObjFPQ24Game15CreatureInitArg=0x802631AC -getEnemyTypeID__Q34Game4Rock3ObjFv=0x8026338C -onKill__Q34Game4Rock3ObjFPQ24Game15CreatureKillArg=0x80263394 -doUpdate__Q34Game4Rock3ObjFv=0x802633E8 -setFSM__Q34Game4Rock3ObjFPQ34Game4Rock3FSM=0x8026341C -doDirectDraw__Q34Game4Rock3ObjFR8Graphics=0x80263468 -doDebugDraw__Q34Game4Rock3ObjFR8Graphics=0x8026346C -getShadowParam__Q34Game4Rock3ObjFRQ24Game11ShadowParam=0x8026348C -needShadow__Q34Game4Rock3ObjFv=0x80263570 -hipdropCallBack__Q34Game4Rock3ObjFPQ24Game8CreaturefP8CollPart=0x802635D0 -collisionCallback__Q34Game4Rock3ObjFRQ24Game9CollEvent=0x80263658 -wallCallback__Q34Game4Rock3ObjFRCQ24Game8MoveInfo=0x802637FC -inWaterCallback__Q34Game4Rock3ObjFPQ24Game8WaterBox=0x80263850 -outWaterCallback__Q34Game4Rock3ObjFv=0x802638BC -doStartMovie__Q34Game4Rock3ObjFv=0x8026391C -doEndMovie__Q34Game4Rock3ObjFv=0x8026393C -ignoreAtari__Q34Game4Rock3ObjFPQ24Game8Creature=0x8026395C -fallRockScaleUp__Q34Game4Rock3ObjFv=0x80263988 -moveRockScaleUp__Q34Game4Rock3ObjFv=0x80263A04 -initMoveVelocity__Q34Game4Rock3ObjFv=0x80263A80 -updateMoveVelocity__Q34Game4Rock3ObjFv=0x80263B80 -createEffect__Q34Game4Rock3ObjFv=0x80263F20 -setupEffect__Q34Game4Rock3ObjFv=0x802640C4 -startFallEffect__Q34Game4Rock3ObjFv=0x802640DC -finishFallEffect__Q34Game4Rock3ObjFv=0x80264110 -startRollingGroundEffect__Q34Game4Rock3ObjFv=0x80264140 -finishRollingGroundEffect__Q34Game4Rock3ObjFv=0x80264174 -startRollingWaterEffect__Q34Game4Rock3ObjFv=0x802641A4 -create__Q23efx9TRockWRunFPQ23efx3Arg=0x8026428C -finishRollingWaterEffect__Q34Game4Rock3ObjFv=0x8026429C -fade__Q23efx9TRockWRunFv=0x802642CC -updateWaterEffectPosition__Q34Game4Rock3ObjFv=0x80264310 -createRockDeadEffect__Q34Game4Rock3ObjFv=0x802643B4 -effectDrawOn__Q34Game4Rock3ObjFv=0x8026444C -effectDrawOff__Q34Game4Rock3ObjFv=0x802644B0 -forceKill__Q23efx9TRockWRunFv=0x80264514 -__dt__Q23efx10TRockGrRunFv=0x80264558 -__dt__Q23efx8TRockRunFv=0x802645F4 -isLivingThing__Q34Game4Rock3ObjFv=0x80264690 -@744@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80264698 -@744@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802646AC -@744@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802646C0 -@744@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802646D4 -@744@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802646E8 -@744@12@viewGetShape__Q24Game9EnemyBaseFv=0x802646FC -@4@__dt__Q23efx8TRockRunFv=0x80264710 -@4@__dt__Q23efx10TRockGrRunFv=0x80264718 -init__Q34Game4Ujia3FSMFPQ24Game9EnemyBase=0x80264720 -init__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80264AF0 -exec__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBase=0x80264B4C -cleanup__Q34Game4Ujia9StateDeadFPQ24Game9EnemyBase=0x80264B90 -init__Q34Game4Ujia10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x80264B94 -exec__Q34Game4Ujia10StatePressFPQ24Game9EnemyBase=0x80264BF8 -cleanup__Q34Game4Ujia10StatePressFPQ24Game9EnemyBase=0x80264C3C -init__Q34Game4Ujia9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x80264C40 -exec__Q34Game4Ujia9StateStayFPQ24Game9EnemyBase=0x80264CFC -cleanup__Q34Game4Ujia9StateStayFPQ24Game9EnemyBase=0x80264DD0 -init__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x80264E54 -exec__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBase=0x80264ED4 -cleanup__Q34Game4Ujia11StateAppearFPQ24Game9EnemyBase=0x80264FB0 -init__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80264FEC -exec__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBase=0x80265058 -cleanup__Q34Game4Ujia9StateDiveFPQ24Game9EnemyBase=0x802650A8 -init__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802650E4 -exec__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBase=0x80265118 -cleanup__Q34Game4Ujia9StateMoveFPQ24Game9EnemyBase=0x802655E0 -init__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg=0x802655E4 -exec__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBase=0x80265618 -cleanup__Q34Game4Ujia13StateMoveSideFPQ24Game9EnemyBase=0x8026570C -init__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg=0x80265710 -exec__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBase=0x80265744 -cleanup__Q34Game4Ujia15StateMoveCentreFPQ24Game9EnemyBase=0x80265838 -init__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026583C -exec__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBase=0x80265870 -cleanup__Q34Game4Ujia12StateMoveTopFPQ24Game9EnemyBase=0x80265964 -init__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80265968 -exec__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBase=0x8026599C -cleanup__Q34Game4Ujia11StateGoHomeFPQ24Game9EnemyBase=0x80265B34 -init__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg=0x80265B38 -exec__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBase=0x80265B90 -cleanup__Q34Game4Ujia12StateAttack1FPQ24Game9EnemyBase=0x80265C9C -setAnimMgr__Q34Game4Ujia14ProperAnimatorFPQ28SysShape7AnimMgr=0x80265CA0 -getAnimator__Q34Game4Ujia14ProperAnimatorFi=0x80265CA8 -__dt__Q34Game4Ujia14ProperAnimatorFv=0x80265CB0 -getAnimator__Q34Game4Ujia14ProperAnimatorFv=0x80265D0C -__ct__Q34Game4Ujia3MgrFiUc=0x80265D14 -doAlloc__Q34Game4Ujia3MgrFv=0x80265D64 -__ct__Q34Game4Ujia5ParmsFv=0x80265DAC -createObj__Q34Game4Ujia3MgrFi=0x80265E44 -__dt__Q34Game4Ujia3ObjFv=0x80265EA4 -getEnemy__Q34Game4Ujia3MgrFi=0x80265F60 -read__Q34Game4Ujia5ParmsFR6Stream=0x80265F70 -__dt__Q34Game4Ujia3MgrFv=0x80265FC0 -getEnemyTypeID__Q34Game4Ujia3MgrFv=0x80266070 -@4@__dt__Q34Game4Ujia3MgrFv=0x80266078 -__ct__Q34Game4Ujia3ObjFv=0x80266080 -setInitialSetting__Q34Game4Ujia3ObjFPQ24Game21EnemyInitialParamBase=0x802661B0 -onInit__Q34Game4Ujia3ObjFPQ24Game15CreatureInitArg=0x802661B4 -doUpdate__Q34Game4Ujia3ObjFv=0x8026624C -doDirectDraw__Q34Game4Ujia3ObjFR8Graphics=0x80266280 -doDebugDraw__Q34Game4Ujia3ObjFR8Graphics=0x80266284 -setFSM__Q34Game4Ujia3ObjFPQ34Game4Ujia3FSM=0x802662A4 -getShadowParam__Q34Game4Ujia3ObjFRQ24Game11ShadowParam=0x802662F0 -pressCallBack__Q34Game4Ujia3ObjFPQ24Game8CreaturefP8CollPart=0x80266398 -hipdropCallBack__Q34Game4Ujia3ObjFPQ24Game8CreaturefP8CollPart=0x8026642C -startCarcassMotion__Q34Game4Ujia3ObjFv=0x80266458 -lifeIncrement__Q34Game4Ujia3ObjFv=0x80266480 -setInWaterDamage__Q34Game4Ujia3ObjFv=0x802664B0 -resetAppearCheck__Q34Game4Ujia3ObjFv=0x802664E4 -isAppearCheck__Q34Game4Ujia3ObjFv=0x80266598 -resetBridgeSearch__Q34Game4Ujia3ObjFv=0x802665E0 -setBridgeSearch__Q34Game4Ujia3ObjFv=0x80266600 -setNearestBridge__Q34Game4Ujia3ObjFv=0x80266648 -setCullingCheck__Q34Game4Ujia3ObjFv=0x80266908 -checkBreakOrMove__Q34Game4Ujia3ObjFv=0x8026690C -isBreakBridge__Q34Game4Ujia3ObjFv=0x80266AC0 -moveBridgeSide__Q34Game4Ujia3ObjFv=0x80266AE8 -moveBridgeCentre__Q34Game4Ujia3ObjFv=0x80266D90 -moveBridgeTop__Q34Game4Ujia3ObjFv=0x80267018 -breakTargetBridge__Q34Game4Ujia3ObjFv=0x80267308 -createAppearEffect__Q34Game4Ujia3ObjFv=0x80267364 -createDisAppearEffect__Q34Game4Ujia3ObjFv=0x802673F0 -createBridgeEffect__Q34Game4Ujia3ObjFv=0x8026747C -isUnderground__Q34Game4Ujia3ObjFv=0x8026750C -getDownSmokeScale__Q34Game4Ujia3ObjFv=0x80267514 -getEnemyTypeID__Q34Game4Ujia3ObjFv=0x8026751C -@724@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80267524 -@724@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x80267538 -@724@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8026754C -@724@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80267560 -@724@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80267574 -@724@12@viewGetShape__Q24Game9EnemyBaseFv=0x80267588 -init__Q34Game4Tobi3FSMFPQ24Game9EnemyBase=0x8026759C -init__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80267A68 -exec__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBase=0x80267AD8 -cleanup__Q34Game4Tobi9StateDeadFPQ24Game9EnemyBase=0x80267B1C -init__Q34Game4Tobi10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x80267B20 -exec__Q34Game4Tobi10StatePressFPQ24Game9EnemyBase=0x80267B90 -cleanup__Q34Game4Tobi10StatePressFPQ24Game9EnemyBase=0x80267BD4 -init__Q34Game4Tobi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x80267BD8 -exec__Q34Game4Tobi9StateStayFPQ24Game9EnemyBase=0x80267C94 -cleanup__Q34Game4Tobi9StateStayFPQ24Game9EnemyBase=0x80267D44 -init__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x80267DC8 -exec__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBase=0x80267E48 -cleanup__Q34Game4Tobi11StateAppearFPQ24Game9EnemyBase=0x80267EC8 -init__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80267F04 -exec__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBase=0x80267F70 -cleanup__Q34Game4Tobi9StateDiveFPQ24Game9EnemyBase=0x80267FC0 -init__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80267FFC -exec__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBase=0x80268030 -cleanup__Q34Game4Tobi9StateMoveFPQ24Game9EnemyBase=0x80268518 -init__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026851C -exec__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBase=0x80268550 -cleanup__Q34Game4Tobi13StateMoveSideFPQ24Game9EnemyBase=0x802686A0 -init__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg=0x802686A4 -exec__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBase=0x802686D8 -cleanup__Q34Game4Tobi15StateMoveCentreFPQ24Game9EnemyBase=0x80268828 -init__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026882C -exec__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBase=0x80268860 -cleanup__Q34Game4Tobi12StateMoveTopFPQ24Game9EnemyBase=0x802689B0 -init__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802689B4 -exec__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBase=0x802689E8 -cleanup__Q34Game4Tobi11StateGoHomeFPQ24Game9EnemyBase=0x80268BE4 -init__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBasePQ24Game8StateArg=0x80268BE8 -exec__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBase=0x80268C7C -cleanup__Q34Game4Tobi8StateFlyFPQ24Game9EnemyBase=0x80268DAC -init__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg=0x80268DC8 -exec__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBase=0x80268E20 -cleanup__Q34Game4Tobi12StateAttack1FPQ24Game9EnemyBase=0x80268F78 -init__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg=0x80268F7C -exec__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBase=0x80268FC4 -cleanup__Q34Game4Tobi12StateAttack2FPQ24Game9EnemyBase=0x802691DC -init__Q34Game4Tobi8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x802691EC -exec__Q34Game4Tobi8StateEatFPQ24Game9EnemyBase=0x80269228 -cleanup__Q34Game4Tobi8StateEatFPQ24Game9EnemyBase=0x802693D0 -setAnimMgr__Q34Game4Tobi14ProperAnimatorFPQ28SysShape7AnimMgr=0x802693D4 -getAnimator__Q34Game4Tobi14ProperAnimatorFi=0x802693DC -__dt__Q34Game4Tobi14ProperAnimatorFv=0x802693E4 -getAnimator__Q34Game4Tobi14ProperAnimatorFv=0x80269440 -__ct__Q34Game4Tobi3MgrFiUc=0x80269448 -doAlloc__Q34Game4Tobi3MgrFv=0x80269498 -__ct__Q34Game4Tobi5ParmsFv=0x802694E0 -createObj__Q34Game4Tobi3MgrFi=0x80269670 -__dt__Q34Game4Tobi3ObjFv=0x802696D0 -getEnemy__Q34Game4Tobi3MgrFi=0x8026978C -read__Q34Game4Tobi5ParmsFR6Stream=0x8026979C -__dt__Q34Game4Tobi3MgrFv=0x802697EC -getEnemyTypeID__Q34Game4Tobi3MgrFv=0x8026989C -@4@__dt__Q34Game4Tobi3MgrFv=0x802698A4 -__ct__Q34Game4Tobi3ObjFv=0x802698AC -setInitialSetting__Q34Game4Tobi3ObjFPQ24Game21EnemyInitialParamBase=0x802699E4 -onInit__Q34Game4Tobi3ObjFPQ24Game15CreatureInitArg=0x802699E8 -doUpdate__Q34Game4Tobi3ObjFv=0x80269A80 -doDirectDraw__Q34Game4Tobi3ObjFR8Graphics=0x80269AC8 -doDebugDraw__Q34Game4Tobi3ObjFR8Graphics=0x80269ACC -setFSM__Q34Game4Tobi3ObjFPQ34Game4Tobi3FSM=0x80269AEC -getShadowParam__Q34Game4Tobi3ObjFRQ24Game11ShadowParam=0x80269B38 -pressCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart=0x80269C18 -hipdropCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart=0x80269CBC -flyCollisionCallBack__Q34Game4Tobi3ObjFPQ24Game8CreaturefP8CollPart=0x80269CE8 -doStartStoneState__Q34Game4Tobi3ObjFv=0x80269D7C -doFinishStoneState__Q34Game4Tobi3ObjFv=0x80269DB4 -doStartEarthquakeFitState__Q34Game4Tobi3ObjFv=0x80269E10 -doFinishEarthquakeFitState__Q34Game4Tobi3ObjFv=0x80269E48 -startCarcassMotion__Q34Game4Tobi3ObjFv=0x80269EA4 -initMouthSlots__Q34Game4Tobi3ObjFv=0x80269ECC -lifeRecover__Q34Game4Tobi3ObjFv=0x80269F58 -lifeIncrement__Q34Game4Tobi3ObjFv=0x80269FD4 -randomFlyingTarget__Q34Game4Tobi3ObjFv=0x8026A004 -isFlyingLife__Q34Game4Tobi3ObjFv=0x8026A224 -setInWaterDamage__Q34Game4Tobi3ObjFv=0x8026A248 -resetAppearCheck__Q34Game4Tobi3ObjFv=0x8026A27C -isAppearCheck__Q34Game4Tobi3ObjFv=0x8026A330 -resetBridgeSearch__Q34Game4Tobi3ObjFv=0x8026A378 -setBridgeSearch__Q34Game4Tobi3ObjFv=0x8026A398 -setNearestBridge__Q34Game4Tobi3ObjFv=0x8026A3E0 -setCullingCheck__Q34Game4Tobi3ObjFv=0x8026A6A0 -checkBreakOrMove__Q34Game4Tobi3ObjFv=0x8026A6A4 -isBreakBridge__Q34Game4Tobi3ObjFv=0x8026A858 -moveBridgeSide__Q34Game4Tobi3ObjFv=0x8026A880 -moveBridgeCentre__Q34Game4Tobi3ObjFv=0x8026AB28 -moveBridgeTop__Q34Game4Tobi3ObjFv=0x8026ADB0 -breakTargetBridge__Q34Game4Tobi3ObjFv=0x8026B0A0 -createAppearEffect__Q34Game4Tobi3ObjFv=0x8026B0FC -createDisAppearEffect__Q34Game4Tobi3ObjFv=0x8026B188 -createBridgeEffect__Q34Game4Tobi3ObjFv=0x8026B214 -createEatEffect__Q34Game4Tobi3ObjFv=0x8026B2A4 -isUnderground__Q34Game4Tobi3ObjFv=0x8026B334 -getMouthSlots__Q34Game4Tobi3ObjFv=0x8026B33C -getDownSmokeScale__Q34Game4Tobi3ObjFv=0x8026B344 -getEnemyTypeID__Q34Game4Tobi3ObjFv=0x8026B34C -init__Q34Game4Hiba3FSMFPQ24Game9EnemyBase=0x8026B354 -init__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026B47C -getEnemyTypeID__Q34Game4Hiba3ObjFv=0x8026B5F8 -exec__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBase=0x8026B600 -cleanup__Q34Game4Hiba9StateDeadFPQ24Game9EnemyBase=0x8026B604 -init__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026B608 -exec__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBase=0x8026B650 -cleanup__Q34Game4Hiba9StateWaitFPQ24Game9EnemyBase=0x8026B6DC -init__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026B6E0 -exec__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBase=0x8026B728 -cleanup__Q34Game4Hiba11StateAttackFPQ24Game9EnemyBase=0x8026B824 -setAnimMgr__Q34Game4Hiba14ProperAnimatorFPQ28SysShape7AnimMgr=0x8026B848 -getAnimator__Q34Game4Hiba14ProperAnimatorFi=0x8026B850 -__dt__Q34Game4Hiba14ProperAnimatorFv=0x8026B858 -getAnimator__Q34Game4Hiba14ProperAnimatorFv=0x8026B8B4 -__ct__Q34Game4Hiba3MgrFiUc=0x8026B8BC -__dt__Q24Game28EnemyMgrBaseAlwaysMovieActorFv=0x8026B920 -doAlloc__Q34Game4Hiba3MgrFv=0x8026B9D0 -__ct__Q34Game4Hiba5ParmsFv=0x8026BA18 -createObj__Q34Game4Hiba3MgrFi=0x8026BBA8 -__dt__Q34Game4Hiba3ObjFv=0x8026BC08 -getEnemy__Q34Game4Hiba3MgrFi=0x8026BCC4 -read__Q34Game4Hiba5ParmsFR6Stream=0x8026BCD4 -__dt__Q34Game4Hiba3MgrFv=0x8026BD24 -getEnemyTypeID__Q34Game4Hiba3MgrFv=0x8026BDEC -isAlwaysMovieActor__Q24Game28EnemyMgrBaseAlwaysMovieActorFv=0x8026BDF4 -doAnimation__Q24Game28EnemyMgrBaseAlwaysMovieActorFv=0x8026BDFC -doEntry__Q24Game28EnemyMgrBaseAlwaysMovieActorFv=0x8026BE1C -doSimulation__Q24Game28EnemyMgrBaseAlwaysMovieActorFf=0x8026BE3C -doDirectDraw__Q24Game28EnemyMgrBaseAlwaysMovieActorFR8Graphics=0x8026BE5C -@4@__dt__Q24Game28EnemyMgrBaseAlwaysMovieActorFv=0x8026BE7C -@4@__dt__Q34Game4Hiba3MgrFv=0x8026BE84 -__ct__Q34Game4Hiba3ObjFv=0x8026BE8C -setInitialSetting__Q34Game4Hiba3ObjFPQ24Game21EnemyInitialParamBase=0x8026BFC4 -onInit__Q34Game4Hiba3ObjFPQ24Game15CreatureInitArg=0x8026BFC8 -doUpdate__Q34Game4Hiba3ObjFv=0x8026C0C0 -doDirectDraw__Q34Game4Hiba3ObjFR8Graphics=0x8026C0F4 -doDebugDraw__Q34Game4Hiba3ObjFR8Graphics=0x8026C0F8 -setFSM__Q34Game4Hiba3ObjFPQ34Game4Hiba3FSM=0x8026C118 -getShadowParam__Q34Game4Hiba3ObjFRQ24Game11ShadowParam=0x8026C164 -damageCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026C19C -pressCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026C218 -hipdropCallBack__Q34Game4Hiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026C248 -bombCallBack__Q34Game4Hiba3ObjFPQ24Game8CreatureR10Vector3f=0x8026C278 -interactFireAttack__Q34Game4Hiba3ObjFv=0x8026C2AC -setupLodParms__Q34Game4Hiba3ObjFv=0x8026C47C -updateEfxLod__Q34Game4Hiba3ObjFv=0x8026C4A0 -createEffect__Q34Game4Hiba3ObjFv=0x8026C4CC -startFireEffect__Q34Game4Hiba3ObjFv=0x8026C530 -finishFireEffect__Q34Game4Hiba3ObjFv=0x8026C588 -generatorKill__Q34Game4Hiba3ObjFv=0x8026C5B8 -doSimulation__Q34Game4Hiba3ObjFf=0x8026C5FC -inWaterCallback__Q34Game4Hiba3ObjFPQ24Game8WaterBox=0x8026C600 -outWaterCallback__Q34Game4Hiba3ObjFv=0x8026C604 -isLivingThing__Q34Game4Hiba3ObjFv=0x8026C608 -lifeRecover__Q34Game4Hiba3ObjFv=0x8026C610 -@716@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8026C614 -@716@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8026C628 -@716@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8026C63C -@716@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8026C650 -@716@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8026C664 -@716@12@viewGetShape__Q24Game9EnemyBaseFv=0x8026C678 -init__Q34Game7GasHiba3FSMFPQ24Game9EnemyBase=0x8026C68C -init__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026C7B4 -getEnemyTypeID__Q34Game7GasHiba3ObjFv=0x8026C930 -exec__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBase=0x8026C938 -cleanup__Q34Game7GasHiba9StateDeadFPQ24Game9EnemyBase=0x8026C93C -init__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026C940 -exec__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBase=0x8026C988 -cleanup__Q34Game7GasHiba9StateWaitFPQ24Game9EnemyBase=0x8026CA4C -init__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026CA50 -exec__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBase=0x8026CA98 -cleanup__Q34Game7GasHiba11StateAttackFPQ24Game9EnemyBase=0x8026CBE8 -setAnimMgr__Q34Game7GasHiba14ProperAnimatorFPQ28SysShape7AnimMgr=0x8026CC0C -getAnimator__Q34Game7GasHiba14ProperAnimatorFi=0x8026CC14 -__dt__Q34Game7GasHiba14ProperAnimatorFv=0x8026CC1C -getAnimator__Q34Game7GasHiba14ProperAnimatorFv=0x8026CC78 -__ct__Q34Game7GasHiba3MgrFiUc=0x8026CC80 -doAlloc__Q34Game7GasHiba3MgrFv=0x8026CCE4 -__ct__Q34Game7GasHiba5ParmsFv=0x8026CD2C -createObj__Q34Game7GasHiba3MgrFi=0x8026CEF8 -__dt__Q34Game7GasHiba3ObjFv=0x8026CF58 -getEnemy__Q34Game7GasHiba3MgrFi=0x8026D014 -read__Q34Game7GasHiba5ParmsFR6Stream=0x8026D024 -__dt__Q34Game7GasHiba3MgrFv=0x8026D074 -getEnemyTypeID__Q34Game7GasHiba3MgrFv=0x8026D13C -@4@__dt__Q34Game7GasHiba3MgrFv=0x8026D144 -__ct__Q34Game7GasHiba3ObjFv=0x8026D14C -setInitialSetting__Q34Game7GasHiba3ObjFPQ24Game21EnemyInitialParamBase=0x8026D284 -onInit__Q34Game7GasHiba3ObjFPQ24Game15CreatureInitArg=0x8026D288 -doUpdate__Q34Game7GasHiba3ObjFv=0x8026D388 -doDirectDraw__Q34Game7GasHiba3ObjFR8Graphics=0x8026D3BC -doDebugDraw__Q34Game7GasHiba3ObjFR8Graphics=0x8026D3C0 -setFSM__Q34Game7GasHiba3ObjFPQ34Game7GasHiba3FSM=0x8026D3E0 -getShadowParam__Q34Game7GasHiba3ObjFRQ24Game11ShadowParam=0x8026D42C -damageCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026D464 -pressCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026D52C -hipdropCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026D55C -bombCallBack__Q34Game7GasHiba3ObjFPQ24Game8CreatureR10Vector3f=0x8026D58C -interactGasAttack__Q34Game7GasHiba3ObjFv=0x8026D5C0 -resetBridgeGateCheck__Q34Game7GasHiba3ObjFv=0x8026D790 -setInitLivingThing__Q34Game7GasHiba3ObjFv=0x8026D7A8 -updateLivingThing__Q34Game7GasHiba3ObjFv=0x8026DD58 -isLivingThing__Q34Game7GasHiba3ObjFv=0x8026DDF4 -setupLodParms__Q34Game7GasHiba3ObjFv=0x8026DDFC -updateEfxLod__Q34Game7GasHiba3ObjFv=0x8026DE20 -createEffect__Q34Game7GasHiba3ObjFv=0x8026DE4C -startGasEffect__Q34Game7GasHiba3ObjFv=0x8026DEA8 -finishGasEffect__Q34Game7GasHiba3ObjFv=0x8026DF48 -generatorKill__Q34Game7GasHiba3ObjFv=0x8026DF78 -getName__Q23efx11ArgGasuHibaFv=0x8026DFBC -doSimulation__Q34Game7GasHiba3ObjFf=0x8026DFC8 -inWaterCallback__Q34Game7GasHiba3ObjFPQ24Game8WaterBox=0x8026DFCC -outWaterCallback__Q34Game7GasHiba3ObjFv=0x8026DFD0 -lifeRecover__Q34Game7GasHiba3ObjFv=0x8026DFD4 -init__Q34Game8ElecHiba3FSMFPQ24Game9EnemyBase=0x8026DFD8 -init__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026E154 -getEnemyTypeID__Q34Game8ElecHiba3ObjFv=0x8026E420 -exec__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBase=0x8026E428 -cleanup__Q34Game8ElecHiba9StateDeadFPQ24Game9EnemyBase=0x8026E42C -init__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026E430 -exec__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBase=0x8026E4A0 -cleanup__Q34Game8ElecHiba9StateWaitFPQ24Game9EnemyBase=0x8026E584 -init__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026E588 -exec__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBase=0x8026E610 -cleanup__Q34Game8ElecHiba9StateSignFPQ24Game9EnemyBase=0x8026E708 -init__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x8026E74C -exec__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBase=0x8026E7D0 -cleanup__Q34Game8ElecHiba11StateAttackFPQ24Game9EnemyBase=0x8026E934 -setAnimMgr__Q34Game8ElecHiba14ProperAnimatorFPQ28SysShape7AnimMgr=0x8026E994 -getAnimator__Q34Game8ElecHiba14ProperAnimatorFi=0x8026E99C -__dt__Q34Game8ElecHiba14ProperAnimatorFv=0x8026E9A4 -getAnimator__Q34Game8ElecHiba14ProperAnimatorFv=0x8026EA00 -__ct__Q34Game8ElecHiba9GeneratorFv=0x8026EA08 -getLatestVersion__Q34Game8ElecHiba9GeneratorFv=0x8026EA94 -doRead__Q34Game8ElecHiba9GeneratorFR6Stream=0x8026EAA0 -doWrite__Q34Game8ElecHiba9GeneratorFR6Stream=0x8026EB14 -doReadLatestVersion__Q34Game8ElecHiba9GeneratorFR6Stream=0x8026EB74 -doReadOldVersion__Q34Game8ElecHiba9GeneratorFR6Stream=0x8026EBA8 -__ct__Q34Game8ElecHiba3MgrFiUc=0x8026EBAC -doAlloc__Q34Game8ElecHiba3MgrFv=0x8026EC10 -__ct__Q34Game8ElecHiba5ParmsFv=0x8026EC58 -createObj__Q34Game8ElecHiba3MgrFi=0x8026EE24 -__dt__Q34Game8ElecHiba3ObjFv=0x8026EE84 -getEnemy__Q34Game8ElecHiba3MgrFi=0x8026EF64 -birth__Q34Game8ElecHiba3MgrFRQ24Game13EnemyBirthArg=0x8026EF74 -__dt__Q34Game8ElecHiba3MgrFv=0x8026F058 -getEnemyTypeID__Q34Game8ElecHiba3MgrFv=0x8026F120 -__dt__Q34Game8ElecHiba8TeamListFv=0x8026F128 -read__Q34Game8ElecHiba5ParmsFR6Stream=0x8026F188 -__dt__Q34Game8ElecHiba9GeneratorFv=0x8026F1D8 -getInitialParam__Q34Game8ElecHiba9GeneratorFv=0x8026F248 -@4@__dt__Q34Game8ElecHiba3MgrFv=0x8026F250 -__ct__Q34Game8ElecHiba3ObjFv=0x8026F258 -birth__Q34Game8ElecHiba3ObjFR10Vector3f=0x8026F3A8 -setInitialSetting__Q34Game8ElecHiba3ObjFPQ24Game21EnemyInitialParamBase=0x8026F3E0 -onInit__Q34Game8ElecHiba3ObjFPQ24Game15CreatureInitArg=0x8026F460 -doUpdate__Q34Game8ElecHiba3ObjFv=0x8026F5A4 -doDirectDraw__Q34Game8ElecHiba3ObjFR8Graphics=0x8026F5E4 -doDebugDraw__Q34Game8ElecHiba3ObjFR8Graphics=0x8026F5E8 -setFSM__Q34Game8ElecHiba3ObjFPQ34Game8ElecHiba3FSM=0x8026F608 -getShadowParam__Q34Game8ElecHiba3ObjFRQ24Game11ShadowParam=0x8026F654 -damageCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026F68C -pressCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026F758 -hipdropCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreaturefP8CollPart=0x8026F788 -bombCallBack__Q34Game8ElecHiba3ObjFPQ24Game8CreatureR10Vector3f=0x8026F7B8 -doGetLifeGaugeParam__Q34Game8ElecHiba3ObjFRQ24Game14LifeGaugeParam=0x8026F7EC -injure__Q34Game8ElecHiba3ObjFv=0x8026F8EC -getChildObjPtr__Q34Game8ElecHiba3ObjFv=0x8026F938 -setElecHibaPosition__Q34Game8ElecHiba3ObjFPQ34Game8ElecHiba12InitialParamf=0x8026F954 -interactDenkiAttack__Q34Game8ElecHiba3ObjFR10Vector3=0x8026FAC4 -addDamageMyself__Q34Game8ElecHiba3ObjFf=0x8027008C -damageIncrement__Q34Game8ElecHiba3ObjFf=0x802700D8 -setupLodParms__Q34Game8ElecHiba3ObjFv=0x80270104 -updateEfxLod__Q34Game8ElecHiba3ObjFv=0x80270128 -createEffect__Q34Game8ElecHiba3ObjFb=0x80270160 -__dt__Q23efx14TDenkipoleSignFv=0x8027023C -__ct__Q23efx14TDenkipoleSignFv=0x802702D8 -__dt__Q23efx10TDenkiPoleFv=0x80270344 -__ct__Q23efx10TDenkiPoleFv=0x802703D4 -startChargeEffect__Q34Game8ElecHiba3ObjFPQ24Game8Creature=0x80270418 -finishChargeEffect__Q34Game8ElecHiba3ObjFv=0x80270528 -startDisChargeEffect__Q34Game8ElecHiba3ObjFv=0x80270560 -finishDisChargeEffect__Q34Game8ElecHiba3ObjFv=0x802705D0 -generatorKill__Q34Game8ElecHiba3ObjFv=0x80270608 -setVersusHibaOnOff__Q34Game8ElecHiba3ObjFv=0x8027064C -setVersusHibaType__Q34Game8ElecHiba3ObjFv=0x802706B8 -resetAttrHitCount__Q34Game8ElecHiba3ObjFv=0x802706E4 -addAttrAttackCount__Q34Game8ElecHiba3ObjFPQ24Game4Piki=0x802706F4 -isWaitFinish__Q34Game8ElecHiba3ObjFv=0x80270764 -isAttackFinish__Q34Game8ElecHiba3ObjFv=0x802707A4 -getName__Q23efx12ArgDenkiHibaFv=0x802707FC -doSimulation__Q34Game8ElecHiba3ObjFf=0x80270808 -inWaterCallback__Q34Game8ElecHiba3ObjFPQ24Game8WaterBox=0x8027080C -outWaterCallback__Q34Game8ElecHiba3ObjFv=0x80270810 -isLivingThing__Q34Game8ElecHiba3ObjFv=0x80270814 -lifeRecover__Q34Game8ElecHiba3ObjFv=0x8027081C -@772@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80270820 -@772@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x80270834 -@772@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80270848 -@772@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8027085C -@772@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80270870 -@772@12@viewGetShape__Q24Game9EnemyBaseFv=0x80270884 -@4@__dt__Q23efx14TDenkipoleSignFv=0x80270898 -init__Q34Game5Sarai3FSMFPQ24Game9EnemyBase=0x802708A0 -init__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80270C70 -exec__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBase=0x80270CE0 -cleanup__Q34Game5Sarai9StateDeadFPQ24Game9EnemyBase=0x80270D24 -init__Q34Game5Sarai9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x80270D28 -exec__Q34Game5Sarai9StateFallFPQ24Game9EnemyBase=0x80270D90 -cleanup__Q34Game5Sarai9StateFallFPQ24Game9EnemyBase=0x80270F48 -init__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg=0x80270F6C -exec__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBase=0x80270FD4 -cleanup__Q34Game5Sarai11StateDamageFPQ24Game9EnemyBase=0x802710DC -init__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg=0x80271100 -exec__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBase=0x8027114C -cleanup__Q34Game5Sarai12StateTakeOffFPQ24Game9EnemyBase=0x80271254 -init__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x80271278 -exec__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBase=0x802712D0 -cleanup__Q34Game5Sarai10StateFlickFPQ24Game9EnemyBase=0x802713E8 -init__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80271418 -exec__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBase=0x802714C8 -cleanup__Q34Game5Sarai9StateWaitFPQ24Game9EnemyBase=0x80271628 -init__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x8027162C -exec__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBase=0x80271688 -cleanup__Q34Game5Sarai9StateMoveFPQ24Game9EnemyBase=0x80271890 -init__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80271894 -exec__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBase=0x8027190C -cleanup__Q34Game5Sarai11StateAttackFPQ24Game9EnemyBase=0x80271F20 -init__Q34Game5Sarai9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg=0x80271F64 -exec__Q34Game5Sarai9StateFailFPQ24Game9EnemyBase=0x80271FBC -cleanup__Q34Game5Sarai9StateFailFPQ24Game9EnemyBase=0x80272094 -init__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBasePQ24Game8StateArg=0x802720C4 -exec__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBase=0x80272128 -cleanup__Q34Game5Sarai13StateCatchFlyFPQ24Game9EnemyBase=0x802722E8 -init__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBasePQ24Game8StateArg=0x8027230C -exec__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBase=0x8027237C -cleanup__Q34Game5Sarai13StateFallMeckFPQ24Game9EnemyBase=0x80272438 -resetAttackableTimer__Q34Game5Sarai3ObjFf=0x8027248C -setAnimMgr__Q34Game5Sarai14ProperAnimatorFPQ28SysShape7AnimMgr=0x80272490 -getAnimator__Q34Game5Sarai14ProperAnimatorFi=0x80272498 -__dt__Q34Game5Sarai14ProperAnimatorFv=0x802724A0 -getAnimator__Q34Game5Sarai14ProperAnimatorFv=0x802724FC -__ct__Q34Game5Sarai3MgrFiUc=0x80272504 -doAlloc__Q34Game5Sarai3MgrFv=0x80272554 -__ct__Q34Game5Sarai5ParmsFv=0x8027259C -__ct__Q44Game5Sarai5Parms11ProperParmsFv=0x802725E4 -createObj__Q34Game5Sarai3MgrFi=0x80272988 -__dt__Q34Game5Sarai3ObjFv=0x802729E8 -getEnemy__Q34Game5Sarai3MgrFi=0x80272AA4 -read__Q34Game5Sarai5ParmsFR6Stream=0x80272AB4 -__dt__Q34Game5Sarai3MgrFv=0x80272B04 -getEnemyTypeID__Q34Game5Sarai3MgrFv=0x80272BB4 -@4@__dt__Q34Game5Sarai3MgrFv=0x80272BBC -__ct__Q34Game5Sarai3ObjFv=0x80272BC4 -setInitialSetting__Q34Game5Sarai3ObjFPQ24Game21EnemyInitialParamBase=0x80272CFC -onInit__Q34Game5Sarai3ObjFPQ24Game15CreatureInitArg=0x80272D00 -doUpdate__Q34Game5Sarai3ObjFv=0x80272D78 -setFSM__Q34Game5Sarai3ObjFPQ34Game5Sarai3FSM=0x80272DC0 -doDirectDraw__Q34Game5Sarai3ObjFR8Graphics=0x80272E0C -doDebugDraw__Q34Game5Sarai3ObjFR8Graphics=0x80272E10 -getShadowParam__Q34Game5Sarai3ObjFRQ24Game11ShadowParam=0x80272E30 -doStartStoneState__Q34Game5Sarai3ObjFv=0x80272F70 -doFinishStoneState__Q34Game5Sarai3ObjFv=0x80272FA4 -startCarcassMotion__Q34Game5Sarai3ObjFv=0x80273000 -initMouthSlots__Q34Game5Sarai3ObjFv=0x80273028 -setHeightVelocity__Q34Game5Sarai3ObjFv=0x802730D0 -setRandTarget__Q34Game5Sarai3ObjFv=0x802731D8 -fallMeckGround__Q34Game5Sarai3ObjFv=0x80273408 -getCatchTargetNum__Q34Game5Sarai3ObjFv=0x8027369C -getNextStateOnHeight__Q34Game5Sarai3ObjFv=0x80273718 -flickStickTarget__Q34Game5Sarai3ObjFv=0x8027385C -getStickPikminNum__Q34Game5Sarai3ObjFv=0x8027390C -getAttackableTarget__Q34Game5Sarai3ObjFv=0x8027398C -catchTarget__Q34Game5Sarai3ObjFv=0x80273D5C -createDownEffect__Q34Game5Sarai3ObjFv=0x80273D80 -getDownSmokeScale__Q34Game5Sarai3ObjFv=0x80273DC4 -inWaterCallback__Q34Game5Sarai3ObjFPQ24Game8WaterBox=0x80273DCC -outWaterCallback__Q34Game5Sarai3ObjFv=0x80273DD0 -getMouthSlots__Q34Game5Sarai3ObjFv=0x80273DD4 -getEnemyTypeID__Q34Game5Sarai3ObjFv=0x80273DDC -init__Q34Game4Tank3FSMFPQ24Game9EnemyBase=0x80273DE4 -init__Q34Game4Tank9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80274064 -finishEffect__Q34Game4Tank3ObjFv=0x802740D4 -exec__Q34Game4Tank9StateDeadFPQ24Game9EnemyBase=0x802740D8 -cleanup__Q34Game4Tank9StateDeadFPQ24Game9EnemyBase=0x8027411C -init__Q34Game4Tank9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80274120 -exec__Q34Game4Tank9StateWaitFPQ24Game9EnemyBase=0x80274164 -cleanup__Q34Game4Tank9StateWaitFPQ24Game9EnemyBase=0x802743BC -init__Q34Game4Tank9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802743E4 -exec__Q34Game4Tank9StateMoveFPQ24Game9EnemyBase=0x80274438 -cleanup__Q34Game4Tank9StateMoveFPQ24Game9EnemyBase=0x802749A4 -init__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802749CC -exec__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBase=0x80274AD0 -cleanup__Q34Game4Tank13StateMoveTurnFPQ24Game9EnemyBase=0x80274E34 -init__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x80274E5C -exec__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBase=0x80274EAC -cleanup__Q34Game4Tank14StateChaseTurnFPQ24Game9EnemyBase=0x802754A0 -init__Q34Game4Tank11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802754DC -createChargeSE__Q34Game4Tank3ObjFv=0x80275560 -exec__Q34Game4Tank11StateAttackFPQ24Game9EnemyBase=0x80275564 -startEffect__Q34Game4Tank3ObjFv=0x80275744 -createDisChargeSE__Q34Game4Tank3ObjFv=0x80275748 -cleanup__Q34Game4Tank11StateAttackFPQ24Game9EnemyBase=0x8027574C -startYodare__Q34Game4Tank3ObjFv=0x802757A4 -init__Q34Game4Tank10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802757A8 -exec__Q34Game4Tank10StateFlickFPQ24Game9EnemyBase=0x80275800 -cleanup__Q34Game4Tank10StateFlickFPQ24Game9EnemyBase=0x80275980 -setAnimMgr__Q34Game4Tank14ProperAnimatorFPQ28SysShape7AnimMgr=0x802759A4 -getAnimator__Q34Game4Tank14ProperAnimatorFi=0x802759AC -__dt__Q34Game4Tank14ProperAnimatorFv=0x802759B4 -getAnimator__Q34Game4Tank14ProperAnimatorFv=0x80275A10 -__ct__Q34Game4Tank3MgrFiUc=0x80275A18 -loadModelData__Q34Game4Tank3MgrFv=0x80275A68 -loadAnimData__Q34Game4Tank3MgrFv=0x80275B04 -createModel__Q34Game4Tank3MgrFv=0x80275B94 -__dt__Q34Game4Tank3MgrFv=0x80275CCC -getEnemyTypeID__Q34Game4Tank3MgrFv=0x80275D7C -@4@__dt__Q34Game4Tank3MgrFv=0x80275D84 -__ct__Q34Game4Tank3ObjFv=0x80275D8C -setInitialSetting__Q34Game4Tank3ObjFPQ24Game21EnemyInitialParamBase=0x80275EC4 -onInit__Q34Game4Tank3ObjFPQ24Game15CreatureInitArg=0x80275EC8 -setupEffect__Q34Game4Tank3ObjFv=0x80275F64 -onKill__Q34Game4Tank3ObjFPQ24Game15CreatureKillArg=0x80275F68 -doUpdate__Q34Game4Tank3ObjFv=0x80275FB8 -doDirectDraw__Q34Game4Tank3ObjFR8Graphics=0x80276004 -doDebugDraw__Q34Game4Tank3ObjFR8Graphics=0x80276008 -setFSM__Q34Game4Tank3ObjFPQ34Game4Tank3FSM=0x80276028 -getShadowParam__Q34Game4Tank3ObjFRQ24Game11ShadowParam=0x80276074 -doStartStoneState__Q34Game4Tank3ObjFv=0x80276104 -doFinishStoneState__Q34Game4Tank3ObjFv=0x80276158 -doStartEarthquakeFitState__Q34Game4Tank3ObjFv=0x802761A4 -doFinishEarthquakeFitState__Q34Game4Tank3ObjFv=0x802761F8 -doStartWaitingBirthTypeDrop__Q34Game4Tank3ObjFv=0x80276244 -effectDrawOff__Q34Game4Tank3ObjFv=0x80276284 -doFinishWaitingBirthTypeDrop__Q34Game4Tank3ObjFv=0x80276288 -effectDrawOn__Q34Game4Tank3ObjFv=0x802762C8 -startCarcassMotion__Q34Game4Tank3ObjFv=0x802762CC -doStartMovie__Q34Game4Tank3ObjFv=0x802762F4 -doEndMovie__Q34Game4Tank3ObjFv=0x80276320 -getOffsetForMapCollision__Q34Game4Tank3ObjFv=0x8027634C -initWalkSmokeEffect__Q34Game4Tank3ObjFv=0x80276410 -getWalkSmokeEffectMgr__Q34Game4Tank3ObjFv=0x802764A4 -getCommonEffectPos__Q34Game4Tank3ObjFR10Vector3=0x802764AC -isAttackable__Q34Game4Tank3ObjFb=0x80276500 -interactCreature__Q34Game4Tank3ObjFPQ24Game8Creature=0x80276838 -emitCollideRatio__Q34Game4Tank3ObjFR10Vector3R10Vector3f=0x8027683C -stopEffectRadius__Q34Game4Tank3ObjFf=0x80276A64 -updateEmit__Q34Game4Tank3ObjFv=0x80276A68 -updateCaution__Q34Game4Tank3ObjFv=0x80276B98 -getViewAngle__Q34Game4Tank3ObjFv=0x80276BE8 -__dt__Q34Game4Tank3ObjFv=0x80276C0C -getDownSmokeScale__Q34Game4Tank3ObjFv=0x80276CC8 -getEnemyTypeID__Q34Game4Tank3ObjFv=0x80276CD0 -createEffect__Q34Game4Tank3ObjFv=0x80276CD8 -@776@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80276CDC -@776@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x80276CF0 -@776@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80276D04 -@776@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80276D18 -@776@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80276D2C -@776@12@viewGetShape__Q24Game9EnemyBaseFv=0x80276D40 -__ct__Q34Game7Catfish3MgrFiUc=0x80276D54 -doAlloc__Q34Game7Catfish3MgrFv=0x80276DA4 -createObj__Q34Game7Catfish3MgrFi=0x80276DEC -__dt__Q34Game7Catfish3ObjFv=0x80276E4C -getEnemy__Q34Game7Catfish3MgrFi=0x80276F38 -__dt__Q34Game7Catfish3MgrFv=0x80276F48 -getEnemyTypeID__Q34Game7Catfish3MgrFv=0x80276FF8 -@4@__dt__Q34Game7Catfish3MgrFv=0x80277000 -__ct__Q34Game7Catfish3ObjFv=0x80277008 -onInit__Q34Game7Catfish3ObjFPQ24Game15CreatureInitArg=0x80277098 -getShadowParam__Q34Game7Catfish3ObjFRQ24Game11ShadowParam=0x802770D4 -pressCallBack__Q34Game7Catfish3ObjFPQ24Game8CreaturefP8CollPart=0x80277194 -hipdropCallBack__Q34Game7Catfish3ObjFPQ24Game8CreaturefP8CollPart=0x802771BC -initMouthSlots__Q34Game7Catfish3ObjFv=0x802771DC -resetEnemyNonStone__Q34Game7Catfish3ObjFv=0x8027727C -createDownEffect__Q34Game7Catfish3ObjFv=0x802772C0 -changeMaterial__Q34Game7Catfish3ObjFv=0x802772E8 -inWaterCallback__Q34Game7Catfish3ObjFPQ24Game8WaterBox=0x802772EC -outWaterCallback__Q34Game7Catfish3ObjFv=0x802772F0 -getEnemyTypeID__Q34Game7Catfish3ObjFv=0x802772F4 -setEnemyNonStone__Q34Game7Catfish3ObjFv=0x802772FC -init__Q34Game7Tadpole3FSMFPQ24Game9EnemyBase=0x8027730C -init__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80277530 -exec__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBase=0x8027758C -cleanup__Q34Game7Tadpole9StateDeadFPQ24Game9EnemyBase=0x802775E4 -init__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802775E8 -exec__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBase=0x80277630 -cleanup__Q34Game7Tadpole9StateWaitFPQ24Game9EnemyBase=0x8027778C -init__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80277790 -exec__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBase=0x802777E4 -cleanup__Q34Game7Tadpole9StateMoveFPQ24Game9EnemyBase=0x802779F4 -init__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802779F8 -exec__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBase=0x80277A54 -cleanup__Q34Game7Tadpole10StateAmazeFPQ24Game9EnemyBase=0x80277B08 -init__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80277B38 -exec__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBase=0x80277B78 -cleanup__Q34Game7Tadpole11StateEscapeFPQ24Game9EnemyBase=0x80277CE0 -init__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBasePQ24Game8StateArg=0x80277D04 -exec__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBase=0x80277DE4 -cleanup__Q34Game7Tadpole9StateLeapFPQ24Game9EnemyBase=0x802781E0 -setAnimMgr__Q34Game7Tadpole14ProperAnimatorFPQ28SysShape7AnimMgr=0x802781F0 -getAnimator__Q34Game7Tadpole14ProperAnimatorFi=0x802781F8 -__dt__Q34Game7Tadpole14ProperAnimatorFv=0x80278200 -getAnimator__Q34Game7Tadpole14ProperAnimatorFv=0x8027825C -__ct__Q34Game7Tadpole3MgrFiUc=0x80278264 -doAlloc__Q34Game7Tadpole3MgrFv=0x802782B4 -__ct__Q34Game7Tadpole5ParmsFv=0x802782FC -createObj__Q34Game7Tadpole3MgrFi=0x80278394 -__dt__Q34Game7Tadpole3ObjFv=0x802783F4 -getEnemy__Q34Game7Tadpole3MgrFi=0x802784B0 -read__Q34Game7Tadpole5ParmsFR6Stream=0x802784C0 -__dt__Q34Game7Tadpole3MgrFv=0x80278510 -getEnemyTypeID__Q34Game7Tadpole3MgrFv=0x802785C0 -@4@__dt__Q34Game7Tadpole3MgrFv=0x802785C8 -__ct__Q34Game7Tadpole3ObjFv=0x802785D0 -setInitialSetting__Q34Game7Tadpole3ObjFPQ24Game21EnemyInitialParamBase=0x80278700 -onInit__Q34Game7Tadpole3ObjFPQ24Game15CreatureInitArg=0x80278704 -doUpdate__Q34Game7Tadpole3ObjFv=0x80278768 -doDirectDraw__Q34Game7Tadpole3ObjFR8Graphics=0x8027879C -doDebugDraw__Q34Game7Tadpole3ObjFR8Graphics=0x802787A0 -setFSM__Q34Game7Tadpole3ObjFPQ34Game7Tadpole3FSM=0x802787C0 -getShadowParam__Q34Game7Tadpole3ObjFRQ24Game11ShadowParam=0x8027880C -hipdropCallBack__Q34Game7Tadpole3ObjFPQ24Game8CreaturefP8CollPart=0x802788BC -startCarcassMotion__Q34Game7Tadpole3ObjFv=0x80278924 -setRandTarget__Q34Game7Tadpole3ObjFb=0x8027894C -getTargetPosition__Q34Game7Tadpole3ObjFPQ24Game8Creature=0x80278B30 -createLeapEffect__Q34Game7Tadpole3ObjFv=0x80278CF8 -inWaterCallback__Q34Game7Tadpole3ObjFPQ24Game8WaterBox=0x80278E80 -outWaterCallback__Q34Game7Tadpole3ObjFv=0x80278E84 -getEnemyTypeID__Q34Game7Tadpole3ObjFv=0x80278E88 -init__Q34Game7ElecBug3FSMFPQ24Game9EnemyBase=0x80278E90 -init__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80279214 -exec__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBase=0x80279270 -cleanup__Q34Game7ElecBug9StateDeadFPQ24Game9EnemyBase=0x802792B4 -init__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802792B8 -exec__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBase=0x80279304 -cleanup__Q34Game7ElecBug9StateWaitFPQ24Game9EnemyBase=0x802793A4 -init__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802793A8 -exec__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBase=0x80279404 -cleanup__Q34Game7ElecBug9StateTurnFPQ24Game9EnemyBase=0x80279604 -init__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80279608 -exec__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBase=0x80279644 -cleanup__Q34Game7ElecBug9StateMoveFPQ24Game9EnemyBase=0x80279780 -init__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80279784 -exec__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBase=0x80279800 -isDone__Q24Game34EnemyIteratorFv=0x80279D54 -cleanup__Q34Game7ElecBug11StateChargeFPQ24Game9EnemyBase=0x80279DA0 -init__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80279E04 -exec__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBase=0x80279E64 -cleanup__Q34Game7ElecBug14StateDischargeFPQ24Game9EnemyBase=0x80279F4C -init__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBasePQ24Game8StateArg=0x80279FB8 -exec__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBase=0x8027A024 -cleanup__Q34Game7ElecBug16StateChildChargeFPQ24Game9EnemyBase=0x8027A24C -init__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBasePQ24Game8StateArg=0x8027A2B0 -exec__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBase=0x8027A310 -cleanup__Q34Game7ElecBug19StateChildDischargeFPQ24Game9EnemyBase=0x8027A3D0 -init__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBasePQ24Game8StateArg=0x8027A43C -exec__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBase=0x8027A4AC -cleanup__Q34Game7ElecBug12StateReverseFPQ24Game9EnemyBase=0x8027A584 -init__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBasePQ24Game8StateArg=0x8027A594 -exec__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBase=0x8027A5DC -cleanup__Q34Game7ElecBug11StateReturnFPQ24Game9EnemyBase=0x8027A62C -__ml__Q24Game34EnemyIteratorFv=0x8027A630 -next__Q24Game34EnemyIteratorFv=0x8027A668 -first__Q24Game34EnemyIteratorFv=0x8027A74C -setAnimMgr__Q34Game7ElecBug14ProperAnimatorFPQ28SysShape7AnimMgr=0x8027A828 -getAnimator__Q34Game7ElecBug14ProperAnimatorFi=0x8027A830 -__dt__Q34Game7ElecBug14ProperAnimatorFv=0x8027A838 -getAnimator__Q34Game7ElecBug14ProperAnimatorFv=0x8027A894 -__ct__Q34Game7ElecBug3MgrFiUc=0x8027A89C -doAlloc__Q34Game7ElecBug3MgrFv=0x8027A8EC -__ct__Q34Game7ElecBug5ParmsFv=0x8027A934 -createObj__Q34Game7ElecBug3MgrFi=0x8027AA4C -__dt__Q34Game7ElecBug3ObjFv=0x8027AAAC -getEnemy__Q34Game7ElecBug3MgrFi=0x8027AB68 -read__Q34Game7ElecBug5ParmsFR6Stream=0x8027AB78 -__dt__Q34Game7ElecBug3MgrFv=0x8027ABC8 -getEnemyTypeID__Q34Game7ElecBug3MgrFv=0x8027AC78 -@4@__dt__Q34Game7ElecBug3MgrFv=0x8027AC80 -__ct__Q34Game7ElecBug3ObjFv=0x8027AC88 -setInitialSetting__Q34Game7ElecBug3ObjFPQ24Game21EnemyInitialParamBase=0x8027ADC0 -onInit__Q34Game7ElecBug3ObjFPQ24Game15CreatureInitArg=0x8027ADC4 -onKill__Q34Game7ElecBug3ObjFPQ24Game15CreatureKillArg=0x8027AE68 -doUpdate__Q34Game7ElecBug3ObjFv=0x8027AEAC -doDirectDraw__Q34Game7ElecBug3ObjFR8Graphics=0x8027AEF4 -doDebugDraw__Q34Game7ElecBug3ObjFR8Graphics=0x8027AEF8 -setFSM__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3FSM=0x8027AF18 -getShadowParam__Q34Game7ElecBug3ObjFRQ24Game11ShadowParam=0x8027AF64 -collisionCallback__Q34Game7ElecBug3ObjFRQ24Game9CollEvent=0x8027AFE4 -pressCallBack__Q34Game7ElecBug3ObjFPQ24Game8CreaturefP8CollPart=0x8027B1C8 -hipdropCallBack__Q34Game7ElecBug3ObjFPQ24Game8CreaturefP8CollPart=0x8027B384 -earthquakeCallBack__Q34Game7ElecBug3ObjFPQ24Game8Creaturef=0x8027B3B0 -doStartStoneState__Q34Game7ElecBug3ObjFv=0x8027B470 -doFinishStoneState__Q34Game7ElecBug3ObjFv=0x8027B4B0 -doStartWaitingBirthTypeDrop__Q34Game7ElecBug3ObjFv=0x8027B4F0 -doFinishWaitingBirthTypeDrop__Q34Game7ElecBug3ObjFv=0x8027B524 -startCarcassMotion__Q34Game7ElecBug3ObjFv=0x8027B558 -doStartMovie__Q34Game7ElecBug3ObjFv=0x8027B580 -doEndMovie__Q34Game7ElecBug3ObjFv=0x8027B5A0 -setTargetPosition__Q34Game7ElecBug3ObjFv=0x8027B5C0 -resetPartnerPtr__Q34Game7ElecBug3ObjFv=0x8027B764 -isBecomeChargeState__Q34Game7ElecBug3ObjFv=0x8027B780 -startChargeState__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj=0x8027B7F0 -startChildChargeState__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj=0x8027B820 -createEffect__Q34Game7ElecBug3ObjFv=0x8027B864 -__ct__Q23efx12TDnkmsEffectFv=0x8027B8A8 -__dt__Q23efx14TDnkmsThunderBFv=0x8027BA10 -__dt__Q23efx14TDnkmsThunderAFv=0x8027BA94 -__dt__Q23efx13TDnkmsHoudenBFv=0x8027BB18 -__dt__Q23efx13TDnkmsHoudenAFv=0x8027BBB4 -setupEffect__Q34Game7ElecBug3ObjFv=0x8027BC50 -startChargeEffect__Q34Game7ElecBug3ObjFv=0x8027BC60 -startDischargeEffect__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj=0x8027BCA0 -finishPartnerAndEffect__Q34Game7ElecBug3ObjFv=0x8027BD60 -effectDrawOn__Q34Game7ElecBug3ObjFv=0x8027BE04 -effectDrawOff__Q34Game7ElecBug3ObjFv=0x8027BE90 -checkInteract__Q34Game7ElecBug3ObjFPQ34Game7ElecBug3Obj=0x8027BF1C -getDownSmokeScale__Q34Game7ElecBug3ObjFv=0x8027C3EC -getEnemyTypeID__Q34Game7ElecBug3ObjFv=0x8027C3F4 -@4@__dt__Q23efx13TDnkmsHoudenAFv=0x8027C3FC -@4@__dt__Q23efx13TDnkmsHoudenBFv=0x8027C404 -__ct__Q34Game5Wtank3MgrFiUc=0x8027C40C -doAlloc__Q34Game5Wtank3MgrFv=0x8027C45C -__ct__Q34Game4Tank5ParmsFv=0x8027C4A4 -createObj__Q34Game5Wtank3MgrFi=0x8027C4FC -__dt__Q34Game5Wtank3ObjFv=0x8027C55C -getEnemy__Q34Game5Wtank3MgrFi=0x8027C64C -loadTexData__Q34Game5Wtank3MgrFv=0x8027C65C -__dt__Q34Game5Wtank3MgrFv=0x8027C6DC -getEnemyTypeID__Q34Game5Wtank3MgrFv=0x8027C7A4 -getChangeTexture__Q34Game5Wtank3MgrFv=0x8027C7AC -read__Q34Game4Tank5ParmsFR6Stream=0x8027C7B4 -@4@__dt__Q34Game5Wtank3MgrFv=0x8027C804 -__ct__Q34Game5Wtank3ObjFv=0x8027C80C -changeMaterial__Q34Game5Wtank3ObjFv=0x8027C8B0 -createEffect__Q34Game5Wtank3ObjFv=0x8027CA54 -__dt__Q23efx14TTankWatYodareFv=0x8027CBF0 -__dt__Q23efx11TTankWatHitFv=0x8027CC8C -__dt__Q23efx17TOneEmitterSimpleFv=0x8027CD10 -__dt__Q23efx26TParticleCallBack_TankFireFv=0x8027CD7C -setupEffect__Q34Game5Wtank3ObjFv=0x8027CDDC -startEffect__Q34Game5Wtank3ObjFv=0x8027CE2C -startYodare__Q34Game5Wtank3ObjFv=0x8027CE60 -fade__Q23efx8TTankWatFv=0x8027CEB4 -fade__Q23efx17TOneEmitterSimpleFv=0x8027CEFC -finishEffect__Q34Game5Wtank3ObjFv=0x8027CF40 -effectDrawOn__Q34Game5Wtank3ObjFv=0x8027CF90 -endDemoDrawOn__Q23efx8TTankWatFv=0x8027CFE0 -endDemoDrawOn__Q23efx17TOneEmitterSimpleFv=0x8027D020 -effectDrawOff__Q34Game5Wtank3ObjFv=0x8027D03C -startDemoDrawOff__Q23efx8TTankWatFv=0x8027D08C -startDemoDrawOff__Q23efx17TOneEmitterSimpleFv=0x8027D0CC -interactCreature__Q34Game5Wtank3ObjFPQ24Game8Creature=0x8027D0E8 -stopEffectRadius__Q34Game5Wtank3ObjFf=0x8027D148 -createChargeSE__Q34Game5Wtank3ObjFv=0x8027D154 -createDisChargeSE__Q34Game5Wtank3ObjFv=0x8027D198 -forceKill__Q23efx17TOneEmitterSimpleFv=0x8027D1DC -getEnemyTypeID__Q34Game5Wtank3ObjFv=0x8027D220 -@780@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8027D228 -@780@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8027D23C -@780@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8027D250 -@780@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8027D264 -@780@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8027D278 -@780@12@viewGetShape__Q24Game9EnemyBaseFv=0x8027D28C -@4@executeAfter__Q23efx17TOneEmitterSimpleFP14JPABaseEmitter=0x8027D2A0 -@4@__dt__Q23efx11TTankWatHitFv=0x8027D2A8 -@4@__dt__Q23efx14TTankWatYodareFv=0x8027D2B0 -__ct__Q34Game5Armor3MgrFiUc=0x8027D2B8 -doAlloc__Q34Game5Armor3MgrFv=0x8027D308 -__ct__Q34Game5Armor5ParmsFv=0x8027D350 -createObj__Q34Game5Armor3MgrFi=0x8027D460 -__dt__Q34Game5Armor3ObjFv=0x8027D4C0 -getEnemy__Q34Game5Armor3MgrFi=0x8027D57C -read__Q34Game5Armor5ParmsFR6Stream=0x8027D58C -__dt__Q34Game5Armor3MgrFv=0x8027D5DC -getEnemyTypeID__Q34Game5Armor3MgrFv=0x8027D68C -@4@__dt__Q34Game5Armor3MgrFv=0x8027D694 -__ct__Q34Game5Armor3ObjFv=0x8027D69C -setInitialSetting__Q34Game5Armor3ObjFPQ24Game21EnemyInitialParamBase=0x8027D7DC -onInit__Q34Game5Armor3ObjFPQ24Game15CreatureInitArg=0x8027D7E0 -doUpdate__Q34Game5Armor3ObjFv=0x8027D878 -doDirectDraw__Q34Game5Armor3ObjFR8Graphics=0x8027D8C0 -doDebugDraw__Q34Game5Armor3ObjFR8Graphics=0x8027D8C4 -setFSM__Q34Game5Armor3ObjFPQ34Game5Armor3FSM=0x8027D8E4 -getShadowParam__Q34Game5Armor3ObjFRQ24Game11ShadowParam=0x8027D930 -damageCallBack__Q34Game5Armor3ObjFPQ24Game8CreaturefP8CollPart=0x8027DA1C -hipdropCallBack__Q34Game5Armor3ObjFPQ24Game8CreaturefP8CollPart=0x8027DAB0 -doStartStoneState__Q34Game5Armor3ObjFv=0x8027DB18 -doFinishStoneState__Q34Game5Armor3ObjFv=0x8027DD78 -startCarcassMotion__Q34Game5Armor3ObjFv=0x8027DDAC -doStartMovie__Q34Game5Armor3ObjFv=0x8027DDD4 -doEndMovie__Q34Game5Armor3ObjFv=0x8027DDF4 -initMouthSlots__Q34Game5Armor3ObjFv=0x8027DE14 -lifeIncrement__Q34Game5Armor3ObjFv=0x8027DEA0 -attackPikmin__Q34Game5Armor3ObjFv=0x8027DED0 -getSlotPikiNum__Q34Game5Armor3ObjFv=0x8027E2BC -getMouthSlots__Q34Game5Armor3ObjFv=0x8027E348 -killSlotPiki__Q34Game5Armor3ObjFv=0x8027E350 -resetBridgeSearch__Q34Game5Armor3ObjFv=0x8027E37C -setBridgeSearch__Q34Game5Armor3ObjFv=0x8027E39C -setNearestBridge__Q34Game5Armor3ObjFv=0x8027E3E4 -setCullingCheck__Q34Game5Armor3ObjFv=0x8027E6A4 -checkBreakOrMove__Q34Game5Armor3ObjFv=0x8027E6A8 -isBreakBridge__Q34Game5Armor3ObjFv=0x8027E85C -moveBridgeSide__Q34Game5Armor3ObjFv=0x8027E884 -moveBridgeCentre__Q34Game5Armor3ObjFv=0x8027EB2C -moveBridgeTop__Q34Game5Armor3ObjFv=0x8027EDB4 -breakTargetBridge__Q34Game5Armor3ObjFv=0x8027F0D0 -createEffect__Q34Game5Armor3ObjFv=0x8027F12C -setupEffect__Q34Game5Armor3ObjFv=0x8027F1DC -createAttackEffect__Q34Game5Armor3ObjFv=0x8027F21C -createAppearEffect__Q34Game5Armor3ObjFv=0x8027F250 -createDisAppearEffect__Q34Game5Armor3ObjFv=0x8027F2DC -createBridgeEffect__Q34Game5Armor3ObjFv=0x8027F368 -effectDrawOn__Q34Game5Armor3ObjFv=0x8027F3F8 -effectDrawOff__Q34Game5Armor3ObjFv=0x8027F428 -__dt__Q23efx12TYoroiAttackFv=0x8027F458 -getDownSmokeScale__Q34Game5Armor3ObjFv=0x8027F4F4 -getEnemyTypeID__Q34Game5Armor3ObjFv=0x8027F4FC -@4@__dt__Q23efx12TYoroiAttackFv=0x8027F504 -__ct__Q34Game3Mar3ObjFv=0x8027F50C -setInitialSetting__Q34Game3Mar3ObjFPQ24Game21EnemyInitialParamBase=0x8027F668 -onInit__Q34Game3Mar3ObjFPQ24Game15CreatureInitArg=0x8027F66C -onKill__Q34Game3Mar3ObjFPQ24Game15CreatureKillArg=0x8027F758 -doUpdate__Q34Game3Mar3ObjFv=0x8027F79C -changeMaterial__Q34Game3Mar3ObjFv=0x8027F7EC -setFSM__Q34Game3Mar3ObjFPQ34Game3Mar3FSM=0x8027F8C0 -doDirectDraw__Q34Game3Mar3ObjFR8Graphics=0x8027F90C -doDebugDraw__Q34Game3Mar3ObjFR8Graphics=0x8027F910 -getShadowParam__Q34Game3Mar3ObjFRQ24Game11ShadowParam=0x8027F930 -doStartStoneState__Q34Game3Mar3ObjFv=0x8027FA00 -doFinishStoneState__Q34Game3Mar3ObjFv=0x8027FA3C -doStartWaitingBirthTypeDrop__Q34Game3Mar3ObjFv=0x8027FAB0 -doFinishWaitingBirthTypeDrop__Q34Game3Mar3ObjFv=0x8027FAE4 -doStartMovie__Q34Game3Mar3ObjFv=0x8027FB18 -doEndMovie__Q34Game3Mar3ObjFv=0x8027FB38 -getOffsetForMapCollision__Q34Game3Mar3ObjFv=0x8027FB58 -getThrowupItemPosition__Q34Game3Mar3ObjFP10Vector3=0x8027FBBC -getThrowupItemVelocity__Q34Game3Mar3ObjFP10Vector3=0x8027FC0C -getHeadJointPos__Q34Game3Mar3ObjFv=0x8027FC4C -setHeightVelocity__Q34Game3Mar3ObjFv=0x8027FC9C -setRandTarget__Q34Game3Mar3ObjFv=0x8027FDB8 -resetShadowOffset__Q34Game3Mar3ObjFv=0x8027FF90 -setShadowOffsetMax__Q34Game3Mar3ObjFv=0x8027FF9C -addShadowOffset__Q34Game3Mar3ObjFv=0x8027FFA8 -subShadowOffset__Q34Game3Mar3ObjFv=0x8027FFD0 -resetShadowRadius__Q34Game3Mar3ObjFv=0x8027FFF8 -subShadowRadius__Q34Game3Mar3ObjFv=0x80280004 -updateFallTimer__Q34Game3Mar3ObjFv=0x80280034 -getFlyingNextState__Q34Game3Mar3ObjFv=0x80280064 -addPitchRatio__Q34Game3Mar3ObjFv=0x80280108 -getSearchedPikmin__Q34Game3Mar3ObjFv=0x80280140 -isTargetLost__Q34Game3Mar3ObjFv=0x802804EC -isAttackable__Q34Game3Mar3ObjFv=0x802807DC -updateEmit__Q34Game3Mar3ObjFv=0x80280B68 -getAttackPosition__Q34Game3Mar3ObjFv=0x80280D14 -windTarget__Q34Game3Mar3ObjFv=0x80280EFC -createEffect__Q34Game3Mar3ObjFv=0x802817F0 -setupEffect__Q34Game3Mar3ObjFv=0x80281940 -startDeadEffect__Q34Game3Mar3ObjFv=0x8028198C -createSuckEffect__Q34Game3Mar3ObjFv=0x80281A08 -startWindEffect__Q34Game3Mar3ObjFv=0x80281A3C -finishWindEffect__Q34Game3Mar3ObjFv=0x80281ACC -createDownEffect__Q34Game3Mar3ObjFv=0x80281B44 -getDownSmokeScale__Q34Game3Mar3ObjFv=0x80281BB8 -effectDrawOn__Q34Game3Mar3ObjFv=0x80281BC0 -effectDrawOff__Q34Game3Mar3ObjFv=0x80281C38 -__dt__Q23efx9TFusenSuiFv=0x80281CB0 -__dt__Q34Game3Mar3ObjFv=0x80281D4C -inWaterCallback__Q34Game3Mar3ObjFPQ24Game8WaterBox=0x80281E08 -outWaterCallback__Q34Game3Mar3ObjFv=0x80281E0C -throwupItemInDeathProcedure__Q34Game3Mar3ObjFv=0x80281E10 -getEnemyTypeID__Q34Game3Mar3ObjFv=0x80281E14 -@804@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80281E1C -@804@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x80281E30 -@804@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80281E44 -@804@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80281E58 -@804@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80281E6C -@804@12@viewGetShape__Q24Game9EnemyBaseFv=0x80281E80 -@4@__dt__Q23efx9TFusenSuiFv=0x80281E94 -setAnimMgr__Q34Game3Mar14ProperAnimatorFPQ28SysShape7AnimMgr=0x80281E9C -getAnimator__Q34Game3Mar14ProperAnimatorFi=0x80281EA4 -__dt__Q34Game3Mar14ProperAnimatorFv=0x80281EAC -getAnimator__Q34Game3Mar14ProperAnimatorFv=0x80281F08 -__ct__Q34Game3Mar3MgrFiUc=0x80281F10 -doAlloc__Q34Game3Mar3MgrFv=0x80281F60 -__ct__Q34Game3Mar5ParmsFv=0x80281FA8 -__ct__Q44Game3Mar5Parms11ProperParmsFv=0x80281FF0 -createObj__Q34Game3Mar3MgrFi=0x8028222C -getEnemy__Q34Game3Mar3MgrFi=0x8028228C -loadTexData__Q34Game3Mar3MgrFv=0x8028229C -createModel__Q34Game3Mar3MgrFv=0x802823C8 -__dt__Q34Game3Mar3MgrFv=0x80282504 -getEnemyTypeID__Q34Game3Mar3MgrFv=0x802825B4 -read__Q34Game3Mar5ParmsFR6Stream=0x802825BC -@4@__dt__Q34Game3Mar3MgrFv=0x8028260C -init__Q34Game3Mar3FSMFPQ24Game9EnemyBase=0x80282614 -init__Q34Game3Mar9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80282A40 -exec__Q34Game3Mar9StateDeadFPQ24Game9EnemyBase=0x80282AEC -cleanup__Q34Game3Mar9StateDeadFPQ24Game9EnemyBase=0x80282B74 -init__Q34Game3Mar9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80282B78 -exec__Q34Game3Mar9StateWaitFPQ24Game9EnemyBase=0x80282BCC -cleanup__Q34Game3Mar9StateWaitFPQ24Game9EnemyBase=0x80282D04 -init__Q34Game3Mar9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80282D08 -exec__Q34Game3Mar9StateMoveFPQ24Game9EnemyBase=0x80282D54 -cleanup__Q34Game3Mar9StateMoveFPQ24Game9EnemyBase=0x80282EF4 -init__Q34Game3Mar10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg=0x80282EF8 -exec__Q34Game3Mar10StateChaseFPQ24Game9EnemyBase=0x80282F28 -cleanup__Q34Game3Mar10StateChaseFPQ24Game9EnemyBase=0x80283458 -init__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028347C -exec__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBase=0x802835A0 -cleanup__Q34Game3Mar16StateChaseInsideFPQ24Game9EnemyBase=0x8028391C -init__Q34Game3Mar11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80283940 -exec__Q34Game3Mar11StateAttackFPQ24Game9EnemyBase=0x802839C8 -cleanup__Q34Game3Mar11StateAttackFPQ24Game9EnemyBase=0x80283AA8 -init__Q34Game3Mar9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x80283AFC -exec__Q34Game3Mar9StateFallFPQ24Game9EnemyBase=0x80283B64 -cleanup__Q34Game3Mar9StateFallFPQ24Game9EnemyBase=0x80283D08 -init__Q34Game3Mar9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x80283D40 -exec__Q34Game3Mar9StateLandFPQ24Game9EnemyBase=0x80283DB0 -cleanup__Q34Game3Mar9StateLandFPQ24Game9EnemyBase=0x80283E30 -init__Q34Game3Mar11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg=0x80283E54 -exec__Q34Game3Mar11StateGroundFPQ24Game9EnemyBase=0x80283EBC -cleanup__Q34Game3Mar11StateGroundFPQ24Game9EnemyBase=0x80283FD0 -init__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg=0x80283FF4 -exec__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBase=0x80284058 -cleanup__Q34Game3Mar12StateTakeOffFPQ24Game9EnemyBase=0x80284144 -init__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028417C -exec__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBase=0x802841E0 -cleanup__Q34Game3Mar13StateFlyFlickFPQ24Game9EnemyBase=0x802842C4 -init__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802842E8 -exec__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBase=0x8028434C -cleanup__Q34Game3Mar16StateGroundFlickFPQ24Game9EnemyBase=0x8028444C -__ct__Q34Game7Wealthy3MgrFiUc=0x80284470 -doAlloc__Q34Game7Wealthy3MgrFv=0x802844C0 -__ct__Q34Game6Kogane5ParmsFv=0x80284508 -__ct__Q44Game6Kogane5Parms11ProperParmsFv=0x80284550 -createObj__Q34Game7Wealthy3MgrFi=0x8028478C -__dt__Q34Game7Wealthy3ObjFv=0x802847EC -getEnemy__Q34Game7Wealthy3MgrFi=0x802848DC -loadTexData__Q34Game7Wealthy3MgrFv=0x802848EC -read__Q34Game6Kogane5ParmsFR6Stream=0x8028496C -__dt__Q34Game7Wealthy3MgrFv=0x802849BC -getEnemyTypeID__Q34Game7Wealthy3MgrFv=0x80284A84 -getChangeTexture__Q34Game7Wealthy3MgrFv=0x80284A8C -@4@__dt__Q34Game7Wealthy3MgrFv=0x80284A94 -__ct__Q34Game7Wealthy3ObjFv=0x80284A9C -changeMaterial__Q34Game7Wealthy3ObjFv=0x80284B34 -createItem__Q34Game7Wealthy3ObjFv=0x80284D24 -createEffect__Q34Game7Wealthy3ObjFv=0x80284E68 -startBodyEffect__Q34Game7Wealthy3ObjFv=0x80284F18 -finishBodyEffect__Q34Game7Wealthy3ObjFv=0x80284F70 -effectDrawOn__Q34Game7Wealthy3ObjFv=0x80284FA0 -effectDrawOff__Q34Game7Wealthy3ObjFv=0x80284FD0 -createPressSENormal__Q34Game7Wealthy3ObjFv=0x80285000 -__dt__Q23efx11TOoganeKiraFv=0x80285044 -getEnemyTypeID__Q34Game7Wealthy3ObjFv=0x802850E0 -@4@__dt__Q23efx11TOoganeKiraFv=0x802850E8 -__ct__Q34Game4Fart3MgrFiUc=0x802850F0 -doAlloc__Q34Game4Fart3MgrFv=0x80285140 -createObj__Q34Game4Fart3MgrFi=0x80285188 -__dt__Q34Game4Fart3ObjFv=0x802851E8 -getEnemy__Q34Game4Fart3MgrFi=0x802852D8 -loadTexData__Q34Game4Fart3MgrFv=0x802852E8 -__dt__Q34Game4Fart3MgrFv=0x80285368 -getEnemyTypeID__Q34Game4Fart3MgrFv=0x80285430 -getChangeTexture__Q34Game4Fart3MgrFv=0x80285438 -@4@__dt__Q34Game4Fart3MgrFv=0x80285440 -__ct__Q34Game4Fart3ObjFv=0x80285448 -doUpdateCommon__Q34Game4Fart3ObjFv=0x802854E0 -changeMaterial__Q34Game4Fart3ObjFv=0x80285550 -doDebugDraw__Q34Game4Fart3ObjFR8Graphics=0x80285740 -interactFartGasAttack__Q34Game4Fart3ObjFv=0x80285760 -createItem__Q34Game4Fart3ObjFv=0x80285954 -createEffect__Q34Game4Fart3ObjFv=0x80285A74 -resetFartTimer__Q34Game4Fart3ObjFv=0x80285B2C -startBodyEffect__Q34Game4Fart3ObjFv=0x80285B50 -finishBodyEffect__Q34Game4Fart3ObjFv=0x80285BF8 -createFartEffect__Q34Game4Fart3ObjFv=0x80285C28 -effectDrawOn__Q34Game4Fart3ObjFv=0x80285E2C -effectDrawOff__Q34Game4Fart3ObjFv=0x80285E5C -createPressSESpecial__Q34Game4Fart3ObjFv=0x80285E8C -getEnemyTypeID__Q34Game4Fart3ObjFv=0x80285ED0 -init__Q34Game5Armor3FSMFPQ24Game9EnemyBase=0x80285ED8 -init__Q34Game5Armor9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802863A4 -exec__Q34Game5Armor9StateDeadFPQ24Game9EnemyBase=0x80286400 -cleanup__Q34Game5Armor9StateDeadFPQ24Game9EnemyBase=0x80286490 -init__Q34Game5Armor9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x80286494 -exec__Q34Game5Armor9StateStayFPQ24Game9EnemyBase=0x80286504 -cleanup__Q34Game5Armor9StateStayFPQ24Game9EnemyBase=0x802865A4 -init__Q34Game5Armor11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802865E0 -exec__Q34Game5Armor11StateAppearFPQ24Game9EnemyBase=0x80286698 -cleanup__Q34Game5Armor11StateAppearFPQ24Game9EnemyBase=0x80286764 -init__Q34Game5Armor9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80286788 -exec__Q34Game5Armor9StateDiveFPQ24Game9EnemyBase=0x802867E8 -cleanup__Q34Game5Armor9StateDiveFPQ24Game9EnemyBase=0x80286884 -init__Q34Game5Armor9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802868A8 -exec__Q34Game5Armor9StateMoveFPQ24Game9EnemyBase=0x802868DC -cleanup__Q34Game5Armor9StateMoveFPQ24Game9EnemyBase=0x80286DD4 -init__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBasePQ24Game8StateArg=0x80286DD8 -exec__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBase=0x80286E0C -cleanup__Q34Game5Armor13StateMoveSideFPQ24Game9EnemyBase=0x80286F34 -init__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBasePQ24Game8StateArg=0x80286F38 -exec__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBase=0x80286F6C -cleanup__Q34Game5Armor15StateMoveCentreFPQ24Game9EnemyBase=0x80287094 -init__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBasePQ24Game8StateArg=0x80287098 -exec__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBase=0x802870CC -cleanup__Q34Game5Armor12StateMoveTopFPQ24Game9EnemyBase=0x802871F4 -init__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802871F8 -exec__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBase=0x8028722C -cleanup__Q34Game5Armor11StateGoHomeFPQ24Game9EnemyBase=0x80287448 -init__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBasePQ24Game8StateArg=0x8028744C -exec__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBase=0x802874A4 -cleanup__Q34Game5Armor12StateAttack1FPQ24Game9EnemyBase=0x802875E0 -init__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBasePQ24Game8StateArg=0x802875E4 -exec__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBase=0x80287624 -cleanup__Q34Game5Armor12StateAttack2FPQ24Game9EnemyBase=0x802877DC -init__Q34Game5Armor8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x802877E0 -exec__Q34Game5Armor8StateEatFPQ24Game9EnemyBase=0x8028781C -cleanup__Q34Game5Armor8StateEatFPQ24Game9EnemyBase=0x802878B4 -init__Q34Game5Armor10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802878B8 -exec__Q34Game5Armor10StateFlickFPQ24Game9EnemyBase=0x802878F4 -cleanup__Q34Game5Armor10StateFlickFPQ24Game9EnemyBase=0x80287A38 -init__Q34Game5Armor9StateFailFPQ24Game9EnemyBasePQ24Game8StateArg=0x80287A3C -exec__Q34Game5Armor9StateFailFPQ24Game9EnemyBase=0x80287A78 -cleanup__Q34Game5Armor9StateFailFPQ24Game9EnemyBase=0x80287AF8 -setAnimMgr__Q34Game5Armor14ProperAnimatorFPQ28SysShape7AnimMgr=0x80287AFC -getAnimator__Q34Game5Armor14ProperAnimatorFi=0x80287B04 -__dt__Q34Game5Armor14ProperAnimatorFv=0x80287B0C -getAnimator__Q34Game5Armor14ProperAnimatorFv=0x80287B68 -init__Q34Game5Queen3FSMFPQ24Game9EnemyBase=0x80287B70 -init__Q34Game5Queen9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80287DE8 -exec__Q34Game5Queen9StateDeadFPQ24Game9EnemyBase=0x80287E40 -cleanup__Q34Game5Queen9StateDeadFPQ24Game9EnemyBase=0x80287EF8 -init__Q34Game5Queen10StateSleepFPQ24Game9EnemyBasePQ24Game8StateArg=0x80287EFC -exec__Q34Game5Queen10StateSleepFPQ24Game9EnemyBase=0x80287F6C -cleanup__Q34Game5Queen10StateSleepFPQ24Game9EnemyBase=0x802880C0 -init__Q34Game5Queen9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80288100 -exec__Q34Game5Queen9StateWaitFPQ24Game9EnemyBase=0x80288170 -cleanup__Q34Game5Queen9StateWaitFPQ24Game9EnemyBase=0x802882AC -init__Q34Game5Queen11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg=0x802882D0 -exec__Q34Game5Queen11StateDamageFPQ24Game9EnemyBase=0x80288348 -cleanup__Q34Game5Queen11StateDamageFPQ24Game9EnemyBase=0x8028843C -init__Q34Game5Queen10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028847C -exec__Q34Game5Queen10StateFlickFPQ24Game9EnemyBase=0x802884FC -cleanup__Q34Game5Queen10StateFlickFPQ24Game9EnemyBase=0x802885F8 -init__Q34Game5Queen12StateRollingFPQ24Game9EnemyBasePQ24Game8StateArg=0x80288630 -exec__Q34Game5Queen12StateRollingFPQ24Game9EnemyBase=0x802886B8 -cleanup__Q34Game5Queen12StateRollingFPQ24Game9EnemyBase=0x80288C74 -init__Q34Game5Queen9StateBornFPQ24Game9EnemyBasePQ24Game8StateArg=0x80288CC0 -exec__Q34Game5Queen9StateBornFPQ24Game9EnemyBase=0x80288D30 -cleanup__Q34Game5Queen9StateBornFPQ24Game9EnemyBase=0x80288DD8 -__sinit_QueenState_cpp=0x80288E18 -setAnimMgr__Q34Game5Queen14ProperAnimatorFPQ28SysShape7AnimMgr=0x80288E40 -getAnimator__Q34Game5Queen14ProperAnimatorFi=0x80288E48 -__dt__Q34Game5Queen14ProperAnimatorFv=0x80288E50 -getAnimator__Q34Game5Queen14ProperAnimatorFv=0x80288EAC -__ct__Q34Game5Queen3MgrFiUc=0x80288EB4 -doAlloc__Q34Game5Queen3MgrFv=0x80288F04 -__ct__Q34Game5Queen5ParmsFv=0x80288F4C -createObj__Q34Game5Queen3MgrFi=0x802890D4 -__dt__Q34Game5Queen3ObjFv=0x80289134 -getEnemy__Q34Game5Queen3MgrFi=0x802891F0 -loadModelData__Q34Game5Queen3MgrFv=0x80289200 -loadTexData__Q34Game5Queen3MgrFv=0x80289268 -createModel__Q34Game5Queen3MgrFv=0x8028931C -__dt__Q34Game5Queen3MgrFv=0x80289398 -getEnemyTypeID__Q34Game5Queen3MgrFv=0x80289448 -doLoadBmd__Q34Game5Queen3MgrFPv=0x80289450 -read__Q34Game5Queen5ParmsFR6Stream=0x8028947C -@4@__dt__Q34Game5Queen3MgrFv=0x802894CC -__ct__Q34Game5Queen3ObjFv=0x802894D4 -setInitialSetting__Q34Game5Queen3ObjFPQ24Game21EnemyInitialParamBase=0x80289650 -onInit__Q34Game5Queen3ObjFPQ24Game15CreatureInitArg=0x80289654 -onKill__Q34Game5Queen3ObjFPQ24Game15CreatureKillArg=0x80289754 -setParameters__Q34Game5Queen3ObjFv=0x802897AC -doUpdate__Q34Game5Queen3ObjFv=0x80289864 -doUpdateCommon__Q34Game5Queen3ObjFv=0x802898B4 -doAnimationCullingOff__Q34Game5Queen3ObjFv=0x802898E8 -doDirectDraw__Q34Game5Queen3ObjFR8Graphics=0x8028993C -doDebugDraw__Q34Game5Queen3ObjFR8Graphics=0x80289940 -setFSM__Q34Game5Queen3ObjFPQ34Game5Queen3FSM=0x80289960 -getShadowParam__Q34Game5Queen3ObjFRQ24Game11ShadowParam=0x802899AC -damageCallBack__Q34Game5Queen3ObjFPQ24Game8CreaturefP8CollPart=0x80289A38 -earthquakeCallBack__Q34Game5Queen3ObjFPQ24Game8Creaturef=0x80289AE8 -doStartStoneState__Q34Game5Queen3ObjFv=0x80289AF0 -doFinishStoneState__Q34Game5Queen3ObjFv=0x80289B3C -ignoreAtari__Q34Game5Queen3ObjFPQ24Game8Creature=0x80289BC4 -startCarcassMotion__Q34Game5Queen3ObjFv=0x80289C48 -doStartMovie__Q34Game5Queen3ObjFv=0x80289C70 -doEndMovie__Q34Game5Queen3ObjFv=0x80289C90 -rollingAttack__Q34Game5Queen3ObjFv=0x80289CB0 -flickPikmin__Q34Game5Queen3ObjFf=0x80289F9C -isRollingAttackLeft__Q34Game5Queen3ObjFv=0x8028A344 -createCrashFallRock__Q34Game5Queen3ObjFv=0x8028A4EC -createBabyChappy__Q34Game5Queen3ObjFv=0x8028A7C0 -isDone__Q24Game31EnemyIteratorFv=0x8028A95C -updateCreateBaby__Q34Game5Queen3ObjFv=0x8028A9A8 -isCreateBaby__Q34Game5Queen3ObjFv=0x8028AC1C -isHitCounterUp__Q34Game5Queen3ObjFv=0x8028AC58 -resetJointShadow__Q34Game5Queen3ObjFv=0x8028AC70 -releaseJointShadow__Q34Game5Queen3ObjFv=0x8028AC98 -startBossChargeBGM__Q34Game5Queen3ObjFv=0x8028ACD8 -startBossAttackLoopBGM__Q34Game5Queen3ObjFv=0x8028ADA0 -finishBossAttackLoopBGM__Q34Game5Queen3ObjFv=0x8028AE7C -startStoneStateBossAttackLoopBGM__Q34Game5Queen3ObjFv=0x8028AF54 -finishStoneStateBossAttackLoopBGM__Q34Game5Queen3ObjFv=0x8028B028 -updateBossBGM__Q34Game5Queen3ObjFv=0x8028B0FC -resetMidBossAppearBGM__Q34Game5Queen3ObjFv=0x8028B1F8 -setMidBossAppearBGM__Q34Game5Queen3ObjFv=0x8028B2A0 -createEffect__Q34Game5Queen3ObjFv=0x8028B320 -setupEffect__Q34Game5Queen3ObjFv=0x8028B854 -createBornEffect__Q34Game5Queen3ObjFv=0x8028B8CC -startRollingEffect__Q34Game5Queen3ObjFv=0x8028B900 -finishRollingEffect__Q34Game5Queen3ObjFb=0x8028B980 -forceFinishRollingEffect__Q34Game5Queen3ObjFv=0x8028BA60 -startDamageEffect__Q34Game5Queen3ObjFv=0x8028BAC4 -finishDamageEffect__Q34Game5Queen3ObjFv=0x8028BAF8 -createFlickEffect__Q34Game5Queen3ObjFv=0x8028BB28 -createDeadEffect__Q34Game5Queen3ObjFv=0x8028BB5C -createWakeUpEffect__Q34Game5Queen3ObjFv=0x8028BB90 -startSleepEffect__Q34Game5Queen3ObjFv=0x8028BBC4 -finishSleepEffect__Q34Game5Queen3ObjFv=0x8028BBF8 -effectDrawOn__Q34Game5Queen3ObjFv=0x8028BC28 -effectDrawOff__Q34Game5Queen3ObjFv=0x8028BD40 -__dt__Q23efx13TQueenHanachoFv=0x8028BE58 -__dt__Q23efx12TQueenWakeupFv=0x8028BEF4 -__dt__Q23efx12TQueenDamageFv=0x8028BF90 -__dt__Q23efx15TQueenCrashRockFv=0x8028C02C -__dt__Q23efx12TQueenCrashLFv=0x8028C0C8 -__dt__Q23efx12TQueenCrashRFv=0x8028C164 -__dt__Q23efx9TQueenLayFv=0x8028C200 -__ml__Q24Game31EnemyIteratorFv=0x8028C29C -next__Q24Game31EnemyIteratorFv=0x8028C2D4 -first__Q24Game31EnemyIteratorFv=0x8028C3B8 -inWaterCallback__Q34Game5Queen3ObjFPQ24Game8WaterBox=0x8028C494 -outWaterCallback__Q34Game5Queen3ObjFv=0x8028C498 -getDamageCoeStoneState__Q34Game5Queen3ObjFv=0x8028C49C -getEnemyTypeID__Q34Game5Queen3ObjFv=0x8028C4A4 -__sinit_Queen_cpp=0x8028C4AC -@784@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8028C4D4 -@784@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8028C4E8 -@784@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8028C4FC -@784@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8028C510 -@784@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8028C524 -@784@12@viewGetShape__Q24Game9EnemyBaseFv=0x8028C538 -@4@__dt__Q23efx9TQueenLayFv=0x8028C54C -@4@__dt__Q23efx12TQueenCrashRFv=0x8028C554 -@4@__dt__Q23efx12TQueenCrashLFv=0x8028C55C -@4@__dt__Q23efx15TQueenCrashRockFv=0x8028C564 -@4@__dt__Q23efx12TQueenDamageFv=0x8028C56C -@4@__dt__Q23efx12TQueenWakeupFv=0x8028C574 -@4@__dt__Q23efx13TQueenHanachoFv=0x8028C57C -init__Q34Game4Baby3FSMFPQ24Game9EnemyBase=0x8028C584 -init__Q34Game4Baby9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028C754 -exec__Q34Game4Baby9StateDeadFPQ24Game9EnemyBase=0x8028C7AC -cleanup__Q34Game4Baby9StateDeadFPQ24Game9EnemyBase=0x8028C7F0 -init__Q34Game4Baby10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028C7F4 -exec__Q34Game4Baby10StatePressFPQ24Game9EnemyBase=0x8028C8D0 -cleanup__Q34Game4Baby10StatePressFPQ24Game9EnemyBase=0x8028C914 -init__Q34Game4Baby9StateBornFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028C918 -exec__Q34Game4Baby9StateBornFPQ24Game9EnemyBase=0x8028C958 -cleanup__Q34Game4Baby9StateBornFPQ24Game9EnemyBase=0x8028CA30 -init__Q34Game4Baby9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028CA34 -exec__Q34Game4Baby9StateMoveFPQ24Game9EnemyBase=0x8028CA68 -cleanup__Q34Game4Baby9StateMoveFPQ24Game9EnemyBase=0x8028CED0 -init__Q34Game4Baby11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x8028CED4 -exec__Q34Game4Baby11StateAttackFPQ24Game9EnemyBase=0x8028CF24 -cleanup__Q34Game4Baby11StateAttackFPQ24Game9EnemyBase=0x8028D028 -setAnimMgr__Q34Game4Baby14ProperAnimatorFPQ28SysShape7AnimMgr=0x8028D04C -getAnimator__Q34Game4Baby14ProperAnimatorFi=0x8028D054 -__dt__Q34Game4Baby14ProperAnimatorFv=0x8028D05C -getAnimator__Q34Game4Baby14ProperAnimatorFv=0x8028D0B8 -__ct__Q34Game4Baby3MgrFiUc=0x8028D0C0 -doAlloc__Q34Game4Baby3MgrFv=0x8028D110 -__ct__Q34Game4Baby5ParmsFv=0x8028D158 -createObj__Q34Game4Baby3MgrFi=0x8028D234 -__dt__Q34Game4Baby3ObjFv=0x8028D294 -getEnemy__Q34Game4Baby3MgrFi=0x8028D350 -read__Q34Game4Baby5ParmsFR6Stream=0x8028D360 -__dt__Q34Game4Baby3MgrFv=0x8028D3B0 -getEnemyTypeID__Q34Game4Baby3MgrFv=0x8028D460 -@4@__dt__Q34Game4Baby3MgrFv=0x8028D468 -__ct__Q34Game4Baby3ObjFv=0x8028D470 -setInitialSetting__Q34Game4Baby3ObjFPQ24Game21EnemyInitialParamBase=0x8028D5B0 -onInit__Q34Game4Baby3ObjFPQ24Game15CreatureInitArg=0x8028D5B4 -doUpdate__Q34Game4Baby3ObjFv=0x8028D66C -doDirectDraw__Q34Game4Baby3ObjFR8Graphics=0x8028D6B4 -doDebugDraw__Q34Game4Baby3ObjFR8Graphics=0x8028D6B8 -setFSM__Q34Game4Baby3ObjFPQ34Game4Baby3FSM=0x8028D6D8 -getShadowParam__Q34Game4Baby3ObjFRQ24Game11ShadowParam=0x8028D724 -pressCallBack__Q34Game4Baby3ObjFPQ24Game8CreaturefP8CollPart=0x8028D78C -hipdropCallBack__Q34Game4Baby3ObjFPQ24Game8CreaturefP8CollPart=0x8028D800 -doStartStoneState__Q34Game4Baby3ObjFv=0x8028D874 -doFinishStoneState__Q34Game4Baby3ObjFv=0x8028D894 -doStartWaitingBirthTypeDrop__Q34Game4Baby3ObjFv=0x8028D8F0 -doFinishWaitingBirthTypeDrop__Q34Game4Baby3ObjFv=0x8028D924 -doStartMovie__Q34Game4Baby3ObjFv=0x8028D958 -doEndMovie__Q34Game4Baby3ObjFv=0x8028D978 -initMouthSlots__Q34Game4Baby3ObjFv=0x8028D998 -getSlotPikiNum__Q34Game4Baby3ObjFv=0x8028DA24 -getMouthSlots__Q34Game4Baby3ObjFv=0x8028DAB0 -resetRandTargetPosition__Q34Game4Baby3ObjFv=0x8028DAB8 -resetZukanAnimationFrame__Q34Game4Baby3ObjFv=0x8028DAD4 -moveNoTarget__Q34Game4Baby3ObjFv=0x8028DB48 -createHoney__Q34Game4Baby3ObjFv=0x8028DD54 -createEffect__Q34Game4Baby3ObjFv=0x8028DE48 -setupEffect__Q34Game4Baby3ObjFv=0x8028DEFC -createBornEffect__Q34Game4Baby3ObjFv=0x8028DF00 -effectDrawOn__Q34Game4Baby3ObjFv=0x8028DF34 -effectDrawOff__Q34Game4Baby3ObjFv=0x8028DF64 -__dt__Q23efx9TBabyBornFv=0x8028DF94 -inWaterCallback__Q34Game4Baby3ObjFPQ24Game8WaterBox=0x8028E030 -outWaterCallback__Q34Game4Baby3ObjFv=0x8028E034 -getEnemyTypeID__Q34Game4Baby3ObjFv=0x8028E038 -@4@__dt__Q23efx9TBabyBornFv=0x8028E040 -__ct__Q34Game5Demon3MgrFiUc=0x8028E048 -doAlloc__Q34Game5Demon3MgrFv=0x8028E098 -createObj__Q34Game5Demon3MgrFi=0x8028E0E0 -__dt__Q34Game5Demon3ObjFv=0x8028E140 -getEnemy__Q34Game5Demon3MgrFi=0x8028E230 -loadModelData__Q34Game5Demon3MgrFv=0x8028E240 -__dt__Q34Game5Demon3MgrFv=0x8028E2A8 -getEnemyTypeID__Q34Game5Demon3MgrFv=0x8028E358 -doLoadBmd__Q34Game5Demon3MgrFPv=0x8028E360 -@4@__dt__Q34Game5Demon3MgrFv=0x8028E38C -__ct__Q34Game5Demon3ObjFv=0x8028E394 -getAttackableTarget__Q34Game5Demon3ObjFv=0x8028E424 -catchTarget__Q34Game5Demon3ObjFv=0x8028E814 -getEnemyTypeID__Q34Game5Demon3ObjFv=0x8028EB50 -getStickPikminNum__Q34Game5Demon3ObjFv=0x8028EB58 -resetAttackableTimer__Q34Game5Demon3ObjFf=0x8028EB60 -makeShadowSRT__Q34Game5Queen15QueenShadowNodeFv=0x8028EB68 -__ct__Q34Game5Queen14QueenShadowMgrFPQ34Game5Queen3Obj=0x8028ED14 -init__Q34Game5Queen14QueenShadowMgrFv=0x8028EDC8 -update__Q34Game5Queen14QueenShadowMgrFv=0x8028F06C -__dt__Q34Game5Queen15QueenShadowNodeFv=0x8028F0C8 -__ct__Q34Game10FireChappy3MgrFiUc=0x8028F138 -doAlloc__Q34Game10FireChappy3MgrFv=0x8028F188 -createObj__Q34Game10FireChappy3MgrFi=0x8028F1D0 -__dt__Q34Game10FireChappy3ObjFv=0x8028F230 -getEnemy__Q34Game10FireChappy3MgrFi=0x8028F320 -loadModelData__Q34Game10FireChappy3MgrFv=0x8028F330 -loadTexData__Q34Game10FireChappy3MgrFv=0x8028F398 -createModel__Q34Game10FireChappy3MgrFv=0x8028F4C4 -__dt__Q34Game10FireChappy3MgrFv=0x8028F540 -getEnemyTypeID__Q34Game10FireChappy3MgrFv=0x8028F5F0 -doLoadBmd__Q34Game10FireChappy3MgrFPv=0x8028F5F8 -@4@__dt__Q34Game10FireChappy3MgrFv=0x8028F624 -__ct__Q34Game10FireChappy3ObjFv=0x8028F62C -onInit__Q34Game10FireChappy3ObjFPQ24Game15CreatureInitArg=0x8028F6D8 -onKill__Q34Game10FireChappy3ObjFPQ24Game15CreatureKillArg=0x8028F730 -doDirectDraw__Q34Game10FireChappy3ObjFR8Graphics=0x8028F778 -doDebugDraw__Q34Game10FireChappy3ObjFR8Graphics=0x8028F77C -changeMaterial__Q34Game10FireChappy3ObjFv=0x8028F79C -doUpdateCommon__Q34Game10FireChappy3ObjFv=0x8028F85C -getShadowParam__Q34Game10FireChappy3ObjFRQ24Game11ShadowParam=0x8028F890 -collisionCallback__Q34Game10FireChappy3ObjFRQ24Game9CollEvent=0x8028F930 -doStartWaitingBirthTypeDrop__Q34Game10FireChappy3ObjFv=0x8028FA10 -doFinishWaitingBirthTypeDrop__Q34Game10FireChappy3ObjFv=0x8028FA44 -doStartMovie__Q34Game10FireChappy3ObjFv=0x8028FA78 -doEndMovie__Q34Game10FireChappy3ObjFv=0x8028FA98 -startFireState__Q34Game10FireChappy3ObjFv=0x8028FAB8 -finishFireState__Q34Game10FireChappy3ObjFb=0x8028FB00 -updateFireState__Q34Game10FireChappy3ObjFv=0x8028FB94 -createMaterialAnimation__Q34Game10FireChappy3ObjFv=0x8028FCA0 -startMaterialAnimation__Q34Game10FireChappy3ObjFv=0x8028FCEC -updateMaterialAnimation__Q34Game10FireChappy3ObjFv=0x8028FD4C -updateEfxLod__Q34Game10FireChappy3ObjFv=0x8028FE54 -createEffect__Q34Game10FireChappy3ObjFv=0x8028FE80 -setupEffect__Q34Game10FireChappy3ObjFv=0x80290108 -startSleepEffect__Q34Game10FireChappy3ObjFv=0x8029018C -finishSleepEffect__Q34Game10FireChappy3ObjFv=0x802901C0 -startBodyEffect__Q34Game10FireChappy3ObjFv=0x802901F0 -finishBodyEffect__Q34Game10FireChappy3ObjFv=0x80290224 -createFlickEffect__Q34Game10FireChappy3ObjFv=0x80290254 -createDeadSmokeEffect__Q34Game10FireChappy3ObjFv=0x80290294 -createDeadSteamEffect__Q34Game10FireChappy3ObjFv=0x802902C8 -effectDrawOn__Q34Game10FireChappy3ObjFv=0x802902FC -effectDrawOff__Q34Game10FireChappy3ObjFv=0x80290388 -__dt__Q23efx10TYakiSteamFv=0x80290414 -__dt__Q23efx14TYakiDeadsmokeFv=0x802904B0 -__dt__Q23efx10TYakiFlickFv=0x8029054C -__dt__Q23efx9THanachoYFv=0x802905E8 -getEnemyTypeID__Q34Game10FireChappy3ObjFv=0x80290684 -@768@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8029068C -@768@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802906A0 -@768@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802906B4 -@768@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802906C8 -@768@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802906DC -@768@12@viewGetShape__Q24Game9EnemyBaseFv=0x802906F0 -@4@__dt__Q23efx9THanachoYFv=0x80290704 -@4@__dt__Q23efx10TYakiFlickFv=0x8029070C -@4@__dt__Q23efx14TYakiDeadsmokeFv=0x80290714 -@4@__dt__Q23efx10TYakiSteamFv=0x8029071C -init__Q34Game9SnakeCrow3FSMFPQ24Game9EnemyBase=0x80290724 -init__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80290A4C -exec__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBase=0x80290B10 -cleanup__Q34Game9SnakeCrow9StateDeadFPQ24Game9EnemyBase=0x80290C80 -init__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x80290C84 -exec__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBase=0x80290DA8 -cleanup__Q34Game9SnakeCrow9StateStayFPQ24Game9EnemyBase=0x802913C0 -init__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBasePQ24Game8StateArg=0x80291450 -exec__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBase=0x8029151C -cleanup__Q34Game9SnakeCrow12StateAppear1FPQ24Game9EnemyBase=0x80291674 -init__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBasePQ24Game8StateArg=0x802916DC -exec__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBase=0x802917A8 -cleanup__Q34Game9SnakeCrow12StateAppear2FPQ24Game9EnemyBase=0x802919DC -init__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg=0x80291A44 -exec__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBase=0x80291B84 -cleanup__Q34Game9SnakeCrow14StateDisappearFPQ24Game9EnemyBase=0x80291C8C -init__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80291CF0 -exec__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBase=0x80291D38 -cleanup__Q34Game9SnakeCrow9StateWaitFPQ24Game9EnemyBase=0x802923F8 -init__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029241C -exec__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBase=0x80292468 -cleanup__Q34Game9SnakeCrow11StateAttackFPQ24Game9EnemyBase=0x8029279C -init__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x802927AC -exec__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBase=0x802927E8 -cleanup__Q34Game9SnakeCrow8StateEatFPQ24Game9EnemyBase=0x80292960 -init__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg=0x80292964 -exec__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBase=0x802929A4 -cleanup__Q34Game9SnakeCrow13StateStruggleFPQ24Game9EnemyBase=0x80292AFC -__sinit_SnakeCrowState_cpp=0x80292B00 -setAnimMgr__Q34Game9SnakeCrow14ProperAnimatorFPQ28SysShape7AnimMgr=0x80292B28 -getAnimator__Q34Game9SnakeCrow14ProperAnimatorFi=0x80292B30 -__dt__Q34Game9SnakeCrow14ProperAnimatorFv=0x80292B38 -getAnimator__Q34Game9SnakeCrow14ProperAnimatorFv=0x80292B94 -__ct__Q34Game9SnakeCrow3MgrFiUc=0x80292B9C -doAlloc__Q34Game9SnakeCrow3MgrFv=0x80292BEC -__ct__Q34Game9SnakeCrow5ParmsFv=0x80292C34 -createObj__Q34Game9SnakeCrow3MgrFi=0x80292DC4 -__dt__Q34Game9SnakeCrow3ObjFv=0x80292E24 -getEnemy__Q34Game9SnakeCrow3MgrFi=0x80292EE0 -loadModelData__Q34Game9SnakeCrow3MgrFv=0x80292EF0 -__dt__Q34Game9SnakeCrow3MgrFv=0x80292F58 -getEnemyTypeID__Q34Game9SnakeCrow3MgrFv=0x80293008 -doLoadBmd__Q34Game9SnakeCrow3MgrFPv=0x80293010 -read__Q34Game9SnakeCrow5ParmsFR6Stream=0x8029303C -@4@__dt__Q34Game9SnakeCrow3MgrFv=0x8029308C -__ct__Q34Game9SnakeCrow3ObjFv=0x80293094 -constructor__Q34Game9SnakeCrow3ObjFv=0x80293200 -setInitialSetting__Q34Game9SnakeCrow3ObjFPQ24Game21EnemyInitialParamBase=0x80293244 -onInit__Q34Game9SnakeCrow3ObjFPQ24Game15CreatureInitArg=0x80293248 -onKill__Q34Game9SnakeCrow3ObjFPQ24Game15CreatureKillArg=0x80293328 -setParameters__Q34Game9SnakeCrow3ObjFv=0x80293374 -doUpdate__Q34Game9SnakeCrow3ObjFv=0x802933FC -doUpdateCommon__Q34Game9SnakeCrow3ObjFv=0x80293444 -doAnimationUpdateAnimator__Q34Game9SnakeCrow3ObjFv=0x80293478 -doAnimationCullingOff__Q34Game9SnakeCrow3ObjFv=0x802934AC -doDirectDraw__Q34Game9SnakeCrow3ObjFR8Graphics=0x802934E8 -doDebugDraw__Q34Game9SnakeCrow3ObjFR8Graphics=0x802934EC -setFSM__Q34Game9SnakeCrow3ObjFPQ34Game9SnakeCrow3FSM=0x8029350C -getShadowParam__Q34Game9SnakeCrow3ObjFRQ24Game11ShadowParam=0x80293558 -damageCallBack__Q34Game9SnakeCrow3ObjFPQ24Game8CreaturefP8CollPart=0x802935F0 -doStartStoneState__Q34Game9SnakeCrow3ObjFv=0x80293688 -doFinishStoneState__Q34Game9SnakeCrow3ObjFv=0x802936C4 -startCarcassMotion__Q34Game9SnakeCrow3ObjFv=0x80293724 -doStartMovie__Q34Game9SnakeCrow3ObjFv=0x8029374C -doEndMovie__Q34Game9SnakeCrow3ObjFv=0x8029376C -initMouthSlots__Q34Game9SnakeCrow3ObjFv=0x8029378C -getThrowupItemPosition__Q34Game9SnakeCrow3ObjFP10Vector3=0x80293848 -getCommonEffectPos__Q34Game9SnakeCrow3ObjFR10Vector3=0x802938A0 -appearNearByTarget__Q34Game9SnakeCrow3ObjFPQ24Game8Creature=0x802938F8 -setAttackPosition__Q34Game9SnakeCrow3ObjFv=0x80293C30 -getAttackPiki__Q34Game9SnakeCrow3ObjFi=0x80293E3C -getAttackNavi__Q34Game9SnakeCrow3ObjFi=0x80294430 -getSwallowSlot__Q34Game9SnakeCrow3ObjFv=0x802949F8 -isSwallowPikmin__Q34Game9SnakeCrow3ObjFv=0x80294A60 -getStickHeadPikmin__Q34Game9SnakeCrow3ObjFv=0x80294ACC -createJointCallBack__Q34Game9SnakeCrow3ObjFv=0x80294D18 -setupJointCallBack__Q34Game9SnakeCrow3ObjFv=0x80294D60 -doAnimationJointCallBack__Q34Game9SnakeCrow3ObjFv=0x80294D84 -finishAnimationJointCallBack__Q34Game9SnakeCrow3ObjFv=0x80294DA8 -startJointCallBack__Q34Game9SnakeCrow3ObjFv=0x80294DCC -returnJointCallBack__Q34Game9SnakeCrow3ObjFv=0x80294E84 -finishJointCallBack__Q34Game9SnakeCrow3ObjFv=0x80294F0C -setupCollision__Q34Game9SnakeCrow3ObjFv=0x80294F30 -lifeIncrement__Q34Game9SnakeCrow3ObjFv=0x80294F68 -createShadowSystem__Q34Game9SnakeCrow3ObjFv=0x80294FA8 -setupShadowSystem__Q34Game9SnakeCrow3ObjFv=0x80294FF0 -doAnimationShadowSystem__Q34Game9SnakeCrow3ObjFv=0x80295014 -startJointShadow__Q34Game9SnakeCrow3ObjFv=0x80295038 -finishJointShadow__Q34Game9SnakeCrow3ObjFv=0x8029505C -deleteJointShadow__Q34Game9SnakeCrow3ObjFv=0x80295080 -startBossAttackBGM__Q34Game9SnakeCrow3ObjFv=0x802950C0 -startBossFlickBGM__Q34Game9SnakeCrow3ObjFv=0x802951A0 -updateBossBGM__Q34Game9SnakeCrow3ObjFv=0x80295268 -resetBossAppearBGM__Q34Game9SnakeCrow3ObjFv=0x80295364 -setBossAppearBGM__Q34Game9SnakeCrow3ObjFv=0x80295434 -createEffect__Q34Game9SnakeCrow3ObjFv=0x80295500 -setupEffect__Q34Game9SnakeCrow3ObjFv=0x80295660 -createAppearEffect__Q34Game9SnakeCrow3ObjFi=0x802956AC -startRotateEffect__Q34Game9SnakeCrow3ObjFv=0x80295880 -finishRotateEffect__Q34Game9SnakeCrow3ObjFv=0x802958D8 -startWaitEffect__Q34Game9SnakeCrow3ObjFv=0x80295908 -finishWaitEffect__Q34Game9SnakeCrow3ObjFv=0x80295960 -createDeadStartEffect__Q34Game9SnakeCrow3ObjFv=0x80295990 -createDeadFinishEffect__Q34Game9SnakeCrow3ObjFv=0x802959C4 -createDownHeadEffect__Q34Game9SnakeCrow3ObjFf=0x80295A58 -effectDrawOn__Q34Game9SnakeCrow3ObjFv=0x80295B04 -effectDrawOff__Q34Game9SnakeCrow3ObjFv=0x80295B68 -createEfxHamon__Q34Game9SnakeCrow3ObjFv=0x80295BCC -isUnderground__Q34Game9SnakeCrow3ObjFv=0x80295C14 -__dt__Q23efx9THebiWaitFv=0x80295C1C -__dt__Q23efx8THebiRotFv=0x80295CB8 -inWaterCallback__Q34Game9SnakeCrow3ObjFPQ24Game8WaterBox=0x80295D54 -outWaterCallback__Q34Game9SnakeCrow3ObjFv=0x80295D58 -getDamageCoeStoneState__Q34Game9SnakeCrow3ObjFv=0x80295D5C -getMouthSlots__Q34Game9SnakeCrow3ObjFv=0x80295D64 -throwupItemInDeathProcedure__Q34Game9SnakeCrow3ObjFv=0x80295D6C -getEnemyTypeID__Q34Game9SnakeCrow3ObjFv=0x80295D70 -__sinit_SnakeCrow_cpp=0x80295D78 -@808@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80295DA0 -@808@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x80295DB4 -@808@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80295DC8 -@808@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80295DDC -@808@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80295DF0 -@808@12@viewGetShape__Q24Game9EnemyBaseFv=0x80295E04 -@4@__dt__Q23efx8THebiRotFv=0x80295E18 -@4@__dt__Q23efx9THebiWaitFv=0x80295E20 -init__Q34Game10KumaChappy3FSMFPQ24Game9EnemyBase=0x80295E28 -init__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80296150 -exec__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBase=0x802961A0 -getEnemyTypeID__Q34Game10KumaChappy3ObjFv=0x80296238 -cleanup__Q34Game10KumaChappy9StateDeadFPQ24Game9EnemyBase=0x80296240 -init__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBasePQ24Game8StateArg=0x80296244 -exec__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBase=0x8029629C -cleanup__Q34Game10KumaChappy12StateRebirthFPQ24Game9EnemyBase=0x8029684C -init__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029685C -exec__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBase=0x802968A8 -cleanup__Q34Game10KumaChappy9StateLostFPQ24Game9EnemyBase=0x80296D04 -init__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80296D08 -exec__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBase=0x80296D60 -cleanup__Q34Game10KumaChappy11StateAttackFPQ24Game9EnemyBase=0x802972B0 -init__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802972EC -exec__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBase=0x80297350 -cleanup__Q34Game10KumaChappy10StateFlickFPQ24Game9EnemyBase=0x80297824 -init__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x80297860 -exec__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBase=0x802978C0 -cleanup__Q34Game10KumaChappy9StateTurnFPQ24Game9EnemyBase=0x80297F30 -init__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBasePQ24Game8StateArg=0x80297F6C -exec__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBase=0x80297FB0 -cleanup__Q34Game10KumaChappy13StateTurnPathFPQ24Game9EnemyBase=0x80298490 -init__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802984B8 -exec__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBase=0x80298508 -cleanup__Q34Game10KumaChappy9StateWalkFPQ24Game9EnemyBase=0x80298C14 -init__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg=0x80298C50 -exec__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBase=0x80298C84 -cleanup__Q34Game10KumaChappy13StateWalkPathFPQ24Game9EnemyBase=0x80299218 -setAnimMgr__Q34Game10KumaChappy14ProperAnimatorFPQ28SysShape7AnimMgr=0x80299240 -getAnimator__Q34Game10KumaChappy14ProperAnimatorFi=0x80299248 -__dt__Q34Game10KumaChappy14ProperAnimatorFv=0x80299250 -getAnimator__Q34Game10KumaChappy14ProperAnimatorFv=0x802992AC -__ct__Q34Game10KumaChappy3MgrFiUc=0x802992B4 -doAlloc__Q34Game10KumaChappy3MgrFv=0x80299304 -__ct__Q34Game10KumaChappy5ParmsFv=0x8029934C -createObj__Q34Game10KumaChappy3MgrFi=0x80299464 -__dt__Q34Game10KumaChappy3ObjFv=0x802994C4 -getEnemy__Q34Game10KumaChappy3MgrFi=0x80299580 -read__Q34Game10KumaChappy5ParmsFR6Stream=0x80299590 -__dt__Q34Game10KumaChappy3MgrFv=0x802995E0 -getEnemyTypeID__Q34Game10KumaChappy3MgrFv=0x80299690 -@4@__dt__Q34Game10KumaChappy3MgrFv=0x80299698 -__ct__Q34Game10KumaChappy3ObjFv=0x802996A0 -setInitialSetting__Q34Game10KumaChappy3ObjFPQ24Game21EnemyInitialParamBase=0x802997F4 -onInit__Q34Game10KumaChappy3ObjFPQ24Game15CreatureInitArg=0x802997F8 -doUpdate__Q34Game10KumaChappy3ObjFv=0x80299874 -doDirectDraw__Q34Game10KumaChappy3ObjFR8Graphics=0x802998D4 -doDebugDraw__Q34Game10KumaChappy3ObjFR8Graphics=0x802998D8 -setFSM__Q34Game10KumaChappy3ObjFPQ34Game10KumaChappy3FSM=0x802998F8 -getShadowParam__Q34Game10KumaChappy3ObjFRQ24Game11ShadowParam=0x80299944 -damageCallBack__Q34Game10KumaChappy3ObjFPQ24Game8CreaturefP8CollPart=0x80299A08 -startCarcassMotion__Q34Game10KumaChappy3ObjFv=0x80299A40 -getOffsetForMapCollision__Q34Game10KumaChappy3ObjFv=0x80299A68 -initMouthSlots__Q34Game10KumaChappy3ObjFv=0x80299B10 -initWalkSmokeEffect__Q34Game10KumaChappy3ObjFv=0x80299BEC -getWalkSmokeEffectMgr__Q34Game10KumaChappy3ObjFv=0x80299C50 -doBecomeCarcass__Q34Game10KumaChappy3ObjFv=0x80299C58 -doUpdateCarcass__Q34Game10KumaChappy3ObjFv=0x80299C6C -doGetLifeGaugeParam__Q34Game10KumaChappy3ObjFRQ24Game14LifeGaugeParam=0x80299E68 -getViewAngle__Q34Game10KumaChappy3ObjFv=0x80299ECC -resetWayPoint__Q34Game10KumaChappy3ObjFv=0x80299EF0 -setNearestWayPoint__Q34Game10KumaChappy3ObjFv=0x80299F00 -setLinkWayPoint__Q34Game10KumaChappy3ObjFv=0x80299FB0 -getSearchedTarget__Q34Game10KumaChappy3ObjFv=0x8029A210 -updateTargetDistance__Q34Game10KumaChappy3ObjFv=0x8029A27C -updateHomePosition__Q34Game10KumaChappy3ObjFv=0x8029A3A4 -createChappyRelation__Q34Game10KumaChappy3ObjFv=0x8029A460 -startEnemyRumble__Q34Game10KumaChappy3ObjFv=0x8029A4D0 -__dt__Q24Game14ChappyRelationFv=0x8029A54C -getMouthSlots__Q34Game10KumaChappy3ObjFv=0x8029A5AC -getDownSmokeScale__Q34Game10KumaChappy3ObjFv=0x8029A5B4 -getChappyRelation__Q34Game10KumaChappy3ObjFv=0x8029A5BC -@760@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8029A5C4 -@760@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8029A5D8 -@760@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8029A5EC -@760@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8029A600 -@760@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8029A614 -@760@12@viewGetShape__Q24Game9EnemyBaseFv=0x8029A628 -init__Q34Game7Fuefuki3FSMFPQ24Game9EnemyBase=0x8029A63C -init__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029A960 -exec__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBase=0x8029A9BC -cleanup__Q34Game7Fuefuki9StateDeadFPQ24Game9EnemyBase=0x8029AA00 -init__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029AA04 -exec__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBase=0x8029AAA4 -cleanup__Q34Game7Fuefuki9StateStayFPQ24Game9EnemyBase=0x8029AB00 -init__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029AB04 -exec__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBase=0x8029AC90 -cleanup__Q34Game7Fuefuki9StateLandFPQ24Game9EnemyBase=0x8029ADB4 -init__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029AE04 -exec__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBase=0x8029AE60 -cleanup__Q34Game7Fuefuki9StateJumpFPQ24Game9EnemyBase=0x8029B16C -init__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029B17C -exec__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBase=0x8029B1DC -cleanup__Q34Game7Fuefuki9StateWaitFPQ24Game9EnemyBase=0x8029B2F8 -init__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029B31C -exec__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBase=0x8029B37C -cleanup__Q34Game7Fuefuki9StateTurnFPQ24Game9EnemyBase=0x8029B5C4 -init__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029B5E8 -exec__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBase=0x8029B638 -cleanup__Q34Game7Fuefuki9StateWalkFPQ24Game9EnemyBase=0x8029B804 -init__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029B840 -exec__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBase=0x8029B8A8 -cleanup__Q34Game7Fuefuki11StateWhisleFPQ24Game9EnemyBase=0x8029B9B4 -init__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029BA18 -exec__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBase=0x8029BA80 -cleanup__Q34Game7Fuefuki13StateStruggleFPQ24Game9EnemyBase=0x8029BB8C -setAnimMgr__Q34Game7Fuefuki14ProperAnimatorFPQ28SysShape7AnimMgr=0x8029BBC4 -getAnimator__Q34Game7Fuefuki14ProperAnimatorFi=0x8029BBCC -__dt__Q34Game7Fuefuki14ProperAnimatorFv=0x8029BBD4 -getAnimator__Q34Game7Fuefuki14ProperAnimatorFv=0x8029BC30 -__ct__Q34Game7Fuefuki3MgrFiUc=0x8029BC38 -doAlloc__Q34Game7Fuefuki3MgrFv=0x8029BC88 -__ct__Q34Game7Fuefuki5ParmsFv=0x8029BCD0 -__ct__Q44Game7Fuefuki5Parms11ProperParmsFv=0x8029BD18 -createObj__Q34Game7Fuefuki3MgrFi=0x8029BF88 -__dt__Q34Game7Fuefuki3ObjFv=0x8029BFE8 -getEnemy__Q34Game7Fuefuki3MgrFi=0x8029C0A4 -read__Q34Game7Fuefuki5ParmsFR6Stream=0x8029C0B4 -__dt__Q34Game7Fuefuki3MgrFv=0x8029C104 -getEnemyTypeID__Q34Game7Fuefuki3MgrFv=0x8029C1B4 -@4@__dt__Q34Game7Fuefuki3MgrFv=0x8029C1BC -actEnemy__Q24Game25InteractFuefukiTimerResetFPQ24Game9EnemyBase=0x8029C1C4 -__ct__Q34Game7Fuefuki3ObjFv=0x8029C21C -setInitialSetting__Q34Game7Fuefuki3ObjFPQ24Game21EnemyInitialParamBase=0x8029C35C -birth__Q34Game7Fuefuki3ObjFR10Vector3f=0x8029C360 -onInit__Q34Game7Fuefuki3ObjFPQ24Game15CreatureInitArg=0x8029C390 -onKill__Q34Game7Fuefuki3ObjFPQ24Game15CreatureKillArg=0x8029C418 -doUpdate__Q34Game7Fuefuki3ObjFv=0x8029C46C -doDirectDraw__Q34Game7Fuefuki3ObjFR8Graphics=0x8029C4E4 -doDebugDraw__Q34Game7Fuefuki3ObjFR8Graphics=0x8029C4E8 -setFSM__Q34Game7Fuefuki3ObjFPQ34Game7Fuefuki3FSM=0x8029C508 -getShadowParam__Q34Game7Fuefuki3ObjFRQ24Game11ShadowParam=0x8029C554 -pressCallBack__Q34Game7Fuefuki3ObjFPQ24Game8CreaturefP8CollPart=0x8029C5F8 -hipdropCallBack__Q34Game7Fuefuki3ObjFPQ24Game8CreaturefP8CollPart=0x8029C660 -doStartStoneState__Q34Game7Fuefuki3ObjFv=0x8029C6C8 -doFinishStoneState__Q34Game7Fuefuki3ObjFv=0x8029C70C -doStartEarthquakeFitState__Q34Game7Fuefuki3ObjFv=0x8029C750 -doFinishEarthquakeFitState__Q34Game7Fuefuki3ObjFv=0x8029C794 -doStartWaitingBirthTypeDrop__Q34Game7Fuefuki3ObjFv=0x8029C7D8 -doFinishWaitingBirthTypeDrop__Q34Game7Fuefuki3ObjFv=0x8029C80C -startCarcassMotion__Q34Game7Fuefuki3ObjFv=0x8029C840 -doStartMovie__Q34Game7Fuefuki3ObjFv=0x8029C868 -doEndMovie__Q34Game7Fuefuki3ObjFv=0x8029C888 -getOffsetForMapCollision__Q34Game7Fuefuki3ObjFv=0x8029C8A8 -resetAppearTimer__Q34Game7Fuefuki3ObjFv=0x8029C968 -resetWhisleTimer__Q34Game7Fuefuki3ObjFb=0x8029C9E0 -isWhisleTimeMax__Q34Game7Fuefuki3ObjFv=0x8029CA0C -startWhisle__Q34Game7Fuefuki3ObjFv=0x8029CA84 -updateWhisle__Q34Game7Fuefuki3ObjFv=0x8029CABC -finishWhisle__Q34Game7Fuefuki3ObjFv=0x8029CDE0 -setTargetPosition__Q34Game7Fuefuki3ObjFb=0x8029CE18 -isJumpAway__Q34Game7Fuefuki3ObjFv=0x8029D0B8 -isArriveTarget__Q34Game7Fuefuki3ObjFv=0x8029D298 -createFootmarks__Q34Game7Fuefuki3ObjFv=0x8029D2E0 -updateFootmarks__Q34Game7Fuefuki3ObjFv=0x8029D330 -createEffect__Q34Game7Fuefuki3ObjFv=0x8029D3EC -startWhisleEffect__Q34Game7Fuefuki3ObjFv=0x8029D588 -updateWhisleEffect__Q34Game7Fuefuki3ObjFf=0x8029D624 -finishWhisleEffect__Q34Game7Fuefuki3ObjFv=0x8029D69C -fade__Q23efx7TCursorFv=0x8029D6EC -createDownEffect__Q34Game7Fuefuki3ObjFf=0x8029D718 -createEfxHamon__Q34Game7Fuefuki3ObjFv=0x8029D790 -effectDrawOn__Q34Game7Fuefuki3ObjFv=0x8029D7D8 -endDemoDrawOn__Q23efx11TOneEmitterFv=0x8029D828 -effectDrawOff__Q34Game7Fuefuki3ObjFv=0x8029D844 -startDemoDrawOff__Q23efx11TOneEmitterFv=0x8029D894 -getName__Q23efx9ArgCursorFv=0x8029D8B0 -__dt__Q23efx11TFuebugOnpaFv=0x8029D8BC -inWaterCallback__Q34Game7Fuefuki3ObjFPQ24Game8WaterBox=0x8029D958 -outWaterCallback__Q34Game7Fuefuki3ObjFv=0x8029D95C -getEnemyTypeID__Q34Game7Fuefuki3ObjFv=0x8029D960 -getFootmarks__Q34Game7Fuefuki3ObjFv=0x8029D968 -@756@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8029D970 -@756@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8029D984 -@756@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8029D998 -@756@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8029D9AC -@756@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8029D9C0 -@756@12@viewGetShape__Q24Game9EnemyBaseFv=0x8029D9D4 -@4@__dt__Q23efx11TFuebugOnpaFv=0x8029D9E8 -__ct__Q34Game11Koganemushi3MgrFiUc=0x8029D9F0 -doAlloc__Q34Game11Koganemushi3MgrFv=0x8029DA40 -createObj__Q34Game11Koganemushi3MgrFi=0x8029DA88 -__dt__Q34Game11Koganemushi3ObjFv=0x8029DAE8 -getEnemy__Q34Game11Koganemushi3MgrFi=0x8029DBD4 -loadTexData__Q34Game11Koganemushi3MgrFv=0x8029DBE4 -__dt__Q34Game11Koganemushi3MgrFv=0x8029DC64 -getEnemyTypeID__Q34Game11Koganemushi3MgrFv=0x8029DD2C -getChangeTexture__Q34Game11Koganemushi3MgrFv=0x8029DD34 -@4@__dt__Q34Game11Koganemushi3MgrFv=0x8029DD3C -__ct__Q34Game11Koganemushi3ObjFv=0x8029DD44 -changeMaterial__Q34Game11Koganemushi3ObjFv=0x8029DDD4 -createItem__Q34Game11Koganemushi3ObjFv=0x8029DFC4 -createPressSENormal__Q34Game11Koganemushi3ObjFv=0x8029E0E0 -getEnemyTypeID__Q34Game11Koganemushi3ObjFv=0x8029E124 -__ct__Q34Game5Ftank3MgrFiUc=0x8029E12C -doAlloc__Q34Game5Ftank3MgrFv=0x8029E17C -createObj__Q34Game5Ftank3MgrFi=0x8029E1C4 -__dt__Q34Game5Ftank3ObjFv=0x8029E224 -getEnemy__Q34Game5Ftank3MgrFi=0x8029E314 -loadTexData__Q34Game5Ftank3MgrFv=0x8029E324 -__dt__Q34Game5Ftank3MgrFv=0x8029E3A4 -getEnemyTypeID__Q34Game5Ftank3MgrFv=0x8029E46C -getChangeTexture__Q34Game5Ftank3MgrFv=0x8029E474 -@4@__dt__Q34Game5Ftank3MgrFv=0x8029E47C -__ct__Q34Game5Ftank3ObjFv=0x8029E484 -changeMaterial__Q34Game5Ftank3ObjFv=0x8029E528 -createEffect__Q34Game5Ftank3ObjFv=0x8029E6CC -__ct__Q23efx11TTankEffectFPA4_f=0x8029E714 -__dt__Q23efx15TTankFireYodareFv=0x8029E910 -__dt__Q23efx12TTankFireINDFv=0x8029E9AC -__dt__Q23efx12TTankFireHitFv=0x8029EA6C -setupEffect__Q34Game5Ftank3ObjFv=0x8029EAF0 -startEffect__Q34Game5Ftank3ObjFv=0x8029EB44 -startYodare__Q34Game5Ftank3ObjFv=0x8029EB78 -fade__Q23efx9TTankFireFv=0x8029EBCC -fade__Q23efx12TTankFireABCFv=0x8029EC1C -finishEffect__Q34Game5Ftank3ObjFv=0x8029EC64 -effectDrawOn__Q34Game5Ftank3ObjFv=0x8029ECB4 -endDemoDrawOn__Q23efx12TTankFireABCFv=0x8029ED18 -effectDrawOff__Q34Game5Ftank3ObjFv=0x8029ED58 -startDemoDrawOff__Q23efx12TTankFireABCFv=0x8029EDBC -interactCreature__Q34Game5Ftank3ObjFPQ24Game8Creature=0x8029EDFC -stopEffectRadius__Q34Game5Ftank3ObjFf=0x8029EE5C -createChargeSE__Q34Game5Ftank3ObjFv=0x8029EE6C -createDisChargeSE__Q34Game5Ftank3ObjFv=0x8029EEB0 -getEnemyTypeID__Q34Game5Ftank3ObjFv=0x8029EEF4 -@4@__dt__Q23efx12TTankFireHitFv=0x8029EEFC -@4@__dt__Q23efx15TTankFireYodareFv=0x8029EF04 -__ct__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave16MapUnitGenerator=0x8029EF0C -setPlantSlot__Q34Game4Cave13RandPlantUnitFv=0x8029EF68 -getPlantSetMapNode__Q34Game4Cave13RandPlantUnitFPPQ34Game4Cave7BaseGen=0x8029F044 -getPlantUnit__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave7BaseGen=0x8029F178 -isPlantSet__Q34Game4Cave13RandPlantUnitFPQ34Game4Cave7MapNodePQ34Game4Cave7BaseGen=0x8029F1E0 -init__Q34Game12Hanachirashi3FSMFPQ24Game9EnemyBase=0x8029F228 -init__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029F6A8 -exec__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBase=0x8029F754 -cleanup__Q34Game12Hanachirashi9StateDeadFPQ24Game9EnemyBase=0x8029F80C -init__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029F810 -exec__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBase=0x8029F864 -cleanup__Q34Game12Hanachirashi9StateWaitFPQ24Game9EnemyBase=0x8029F99C -init__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029F9A0 -exec__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBase=0x8029F9EC -cleanup__Q34Game12Hanachirashi9StateMoveFPQ24Game9EnemyBase=0x8029FB8C -init__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg=0x8029FB90 -exec__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBase=0x8029FBC0 -cleanup__Q34Game12Hanachirashi10StateChaseFPQ24Game9EnemyBase=0x802A00F0 -init__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A0114 -exec__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBase=0x802A0238 -cleanup__Q34Game12Hanachirashi16StateChaseInsideFPQ24Game9EnemyBase=0x802A05B4 -init__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A05D8 -exec__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBase=0x802A0668 -cleanup__Q34Game12Hanachirashi11StateAttackFPQ24Game9EnemyBase=0x802A0784 -init__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A07D8 -exec__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBase=0x802A0840 -cleanup__Q34Game12Hanachirashi9StateFallFPQ24Game9EnemyBase=0x802A09E4 -init__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A0A1C -exec__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBase=0x802A0A8C -cleanup__Q34Game12Hanachirashi9StateLandFPQ24Game9EnemyBase=0x802A0B0C -init__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A0B30 -exec__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBase=0x802A0B98 -cleanup__Q34Game12Hanachirashi11StateGroundFPQ24Game9EnemyBase=0x802A0CAC -init__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A0CD0 -exec__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBase=0x802A0D34 -cleanup__Q34Game12Hanachirashi12StateTakeOffFPQ24Game9EnemyBase=0x802A0E20 -init__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A0E58 -exec__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBase=0x802A0EBC -cleanup__Q34Game12Hanachirashi13StateFlyFlickFPQ24Game9EnemyBase=0x802A0FA0 -init__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A0FC4 -exec__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBase=0x802A1028 -cleanup__Q34Game12Hanachirashi16StateGroundFlickFPQ24Game9EnemyBase=0x802A1128 -init__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A114C -exec__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBase=0x802A11B4 -cleanup__Q34Game12Hanachirashi10StateLaughFPQ24Game9EnemyBase=0x802A1290 -setAnimMgr__Q34Game12Hanachirashi14ProperAnimatorFPQ28SysShape7AnimMgr=0x802A12B4 -getAnimator__Q34Game12Hanachirashi14ProperAnimatorFi=0x802A12BC -__dt__Q34Game12Hanachirashi14ProperAnimatorFv=0x802A12C4 -getAnimator__Q34Game12Hanachirashi14ProperAnimatorFv=0x802A1320 -__ct__Q34Game12Hanachirashi3MgrFiUc=0x802A1328 -doAlloc__Q34Game12Hanachirashi3MgrFv=0x802A1378 -__ct__Q34Game12Hanachirashi5ParmsFv=0x802A13C0 -__ct__Q44Game12Hanachirashi5Parms11ProperParmsFv=0x802A1408 -createObj__Q34Game12Hanachirashi3MgrFi=0x802A1644 -__dt__Q34Game12Hanachirashi3ObjFv=0x802A16A4 -getEnemy__Q34Game12Hanachirashi3MgrFi=0x802A1760 -loadTexData__Q34Game12Hanachirashi3MgrFv=0x802A1770 -createModel__Q34Game12Hanachirashi3MgrFv=0x802A189C -__dt__Q34Game12Hanachirashi3MgrFv=0x802A19D8 -getEnemyTypeID__Q34Game12Hanachirashi3MgrFv=0x802A1A88 -read__Q34Game12Hanachirashi5ParmsFR6Stream=0x802A1A90 -@4@__dt__Q34Game12Hanachirashi3MgrFv=0x802A1AE0 -__ct__Q34Game12Hanachirashi3ObjFv=0x802A1AE8 -setInitialSetting__Q34Game12Hanachirashi3ObjFPQ24Game21EnemyInitialParamBase=0x802A1C44 -onInit__Q34Game12Hanachirashi3ObjFPQ24Game15CreatureInitArg=0x802A1C48 -onKill__Q34Game12Hanachirashi3ObjFPQ24Game15CreatureKillArg=0x802A1D3C -doUpdate__Q34Game12Hanachirashi3ObjFv=0x802A1D80 -changeMaterial__Q34Game12Hanachirashi3ObjFv=0x802A1DD0 -setFSM__Q34Game12Hanachirashi3ObjFPQ34Game12Hanachirashi3FSM=0x802A1EA4 -doDirectDraw__Q34Game12Hanachirashi3ObjFR8Graphics=0x802A1EF0 -doDebugDraw__Q34Game12Hanachirashi3ObjFR8Graphics=0x802A1EF4 -getShadowParam__Q34Game12Hanachirashi3ObjFRQ24Game11ShadowParam=0x802A1F14 -doStartStoneState__Q34Game12Hanachirashi3ObjFv=0x802A207C -doFinishStoneState__Q34Game12Hanachirashi3ObjFv=0x802A20B8 -doStartWaitingBirthTypeDrop__Q34Game12Hanachirashi3ObjFv=0x802A2134 -doFinishWaitingBirthTypeDrop__Q34Game12Hanachirashi3ObjFv=0x802A2168 -doStartMovie__Q34Game12Hanachirashi3ObjFv=0x802A219C -doEndMovie__Q34Game12Hanachirashi3ObjFv=0x802A21BC -getOffsetForMapCollision__Q34Game12Hanachirashi3ObjFv=0x802A21DC -getThrowupItemPosition__Q34Game12Hanachirashi3ObjFP10Vector3=0x802A2240 -getThrowupItemVelocity__Q34Game12Hanachirashi3ObjFP10Vector3=0x802A2290 -getHeadJointPos__Q34Game12Hanachirashi3ObjFv=0x802A22D0 -setHeightVelocity__Q34Game12Hanachirashi3ObjFv=0x802A2320 -setRandTarget__Q34Game12Hanachirashi3ObjFv=0x802A243C -resetShadowOffset__Q34Game12Hanachirashi3ObjFv=0x802A2614 -setShadowOffsetMax__Q34Game12Hanachirashi3ObjFv=0x802A2620 -addShadowOffset__Q34Game12Hanachirashi3ObjFv=0x802A262C -subShadowOffset__Q34Game12Hanachirashi3ObjFv=0x802A2654 -resetShadowRadius__Q34Game12Hanachirashi3ObjFv=0x802A267C -subShadowRadius__Q34Game12Hanachirashi3ObjFv=0x802A2688 -updateFallTimer__Q34Game12Hanachirashi3ObjFv=0x802A26B4 -getFlyingNextState__Q34Game12Hanachirashi3ObjFv=0x802A26E4 -addPitchRatio__Q34Game12Hanachirashi3ObjFv=0x802A2788 -getSearchedPikmin__Q34Game12Hanachirashi3ObjFv=0x802A27C0 -isTargetLost__Q34Game12Hanachirashi3ObjFv=0x802A2B94 -isAttackable__Q34Game12Hanachirashi3ObjFv=0x802A2E84 -updateEmit__Q34Game12Hanachirashi3ObjFv=0x802A3210 -getAttackPosition__Q34Game12Hanachirashi3ObjFv=0x802A33BC -windTarget__Q34Game12Hanachirashi3ObjFv=0x802A35A4 -createEffect__Q34Game12Hanachirashi3ObjFv=0x802A3EB0 -setupEffect__Q34Game12Hanachirashi3ObjFv=0x802A4000 -startDeadEffect__Q34Game12Hanachirashi3ObjFv=0x802A404C -createSuckEffect__Q34Game12Hanachirashi3ObjFv=0x802A40C8 -startWindEffect__Q34Game12Hanachirashi3ObjFv=0x802A40FC -finishWindEffect__Q34Game12Hanachirashi3ObjFv=0x802A418C -createDownEffect__Q34Game12Hanachirashi3ObjFv=0x802A4204 -getDownSmokeScale__Q34Game12Hanachirashi3ObjFv=0x802A4278 -effectDrawOn__Q34Game12Hanachirashi3ObjFv=0x802A4280 -effectDrawOff__Q34Game12Hanachirashi3ObjFv=0x802A42F8 -inWaterCallback__Q34Game12Hanachirashi3ObjFPQ24Game8WaterBox=0x802A4370 -outWaterCallback__Q34Game12Hanachirashi3ObjFv=0x802A4374 -throwupItemInDeathProcedure__Q34Game12Hanachirashi3ObjFv=0x802A4378 -getEnemyTypeID__Q34Game12Hanachirashi3ObjFv=0x802A437C -@812@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x802A4384 -@812@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802A4398 -@812@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802A43AC -@812@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802A43C0 -@812@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802A43D4 -@812@12@viewGetShape__Q24Game9EnemyBaseFv=0x802A43E8 -init__Q34Game8Damagumo3FSMFPQ24Game9EnemyBase=0x802A43FC -init__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A4620 -exec__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBase=0x802A46EC -cleanup__Q34Game8Damagumo9StateDeadFPQ24Game9EnemyBase=0x802A4778 -init__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A477C -exec__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBase=0x802A4800 -cleanup__Q34Game8Damagumo9StateStayFPQ24Game9EnemyBase=0x802A48B8 -init__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A48BC -exec__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBase=0x802A4970 -cleanup__Q34Game8Damagumo9StateLandFPQ24Game9EnemyBase=0x802A4B58 -init__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A4BB4 -exec__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBase=0x802A4C4C -cleanup__Q34Game8Damagumo9StateWaitFPQ24Game9EnemyBase=0x802A4D40 -init__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A4D44 -exec__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBase=0x802A4DA8 -cleanup__Q34Game8Damagumo10StateFlickFPQ24Game9EnemyBase=0x802A4E70 -init__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802A4E94 -exec__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBase=0x802A4F2C -cleanup__Q34Game8Damagumo9StateWalkFPQ24Game9EnemyBase=0x802A502C -__sinit_DamagumoState_cpp=0x802A5030 -setAnimMgr__Q34Game8Damagumo14ProperAnimatorFPQ28SysShape7AnimMgr=0x802A5058 -getAnimator__Q34Game8Damagumo14ProperAnimatorFi=0x802A5060 -__dt__Q34Game8Damagumo14ProperAnimatorFv=0x802A5068 -getAnimator__Q34Game8Damagumo14ProperAnimatorFv=0x802A50C4 -__ct__Q34Game8Damagumo3MgrFiUc=0x802A50CC -doAlloc__Q34Game8Damagumo3MgrFv=0x802A511C -__ct__Q34Game8Damagumo5ParmsFv=0x802A5164 -createObj__Q34Game8Damagumo3MgrFi=0x802A532C -__dt__Q34Game8Damagumo3ObjFv=0x802A538C -getEnemy__Q34Game8Damagumo3MgrFi=0x802A5448 -loadModelData__Q34Game8Damagumo3MgrFv=0x802A5458 -loadTexData__Q34Game8Damagumo3MgrFv=0x802A54C0 -createModel__Q34Game8Damagumo3MgrFv=0x802A55EC -__dt__Q34Game8Damagumo3MgrFv=0x802A5668 -getEnemyTypeID__Q34Game8Damagumo3MgrFv=0x802A5718 -doLoadBmd__Q34Game8Damagumo3MgrFPv=0x802A5720 -read__Q34Game8Damagumo5ParmsFR6Stream=0x802A574C -@4@__dt__Q34Game8Damagumo3MgrFv=0x802A579C -invokeOnGround__Q34Game8Damagumo22DamagumoGroundCallBackFiPQ24Game8WaterBox=0x802A57A4 -invokeOffGround__Q34Game8Damagumo22DamagumoGroundCallBackFiPQ24Game8WaterBox=0x802A57C8 -__ct__Q34Game8Damagumo3ObjFv=0x802A57EC -constructor__Q34Game8Damagumo3ObjFv=0x802A5958 -setInitialSetting__Q34Game8Damagumo3ObjFPQ24Game21EnemyInitialParamBase=0x802A598C -onInit__Q34Game8Damagumo3ObjFPQ24Game15CreatureInitArg=0x802A5990 -doUpdate__Q34Game8Damagumo3ObjFv=0x802A5AC4 -doUpdateCommon__Q34Game8Damagumo3ObjFv=0x802A5B14 -doAnimationCullingOff__Q34Game8Damagumo3ObjFv=0x802A5B48 -doDirectDraw__Q34Game8Damagumo3ObjFR8Graphics=0x802A5BE0 -doDebugDraw__Q34Game8Damagumo3ObjFR8Graphics=0x802A5BE4 -setFSM__Q34Game8Damagumo3ObjFPQ34Game8Damagumo3FSM=0x802A5C04 -getShadowParam__Q34Game8Damagumo3ObjFRQ24Game11ShadowParam=0x802A5C50 -needShadow__Q34Game8Damagumo3ObjFv=0x802A5C8C -damageCallBack__Q34Game8Damagumo3ObjFPQ24Game8CreaturefP8CollPart=0x802A5CDC -collisionCallback__Q34Game8Damagumo3ObjFRQ24Game9CollEvent=0x802A5D78 -doStartStoneState__Q34Game8Damagumo3ObjFv=0x802A5F24 -doFinishStoneState__Q34Game8Damagumo3ObjFv=0x802A5F58 -doStartMovie__Q34Game8Damagumo3ObjFv=0x802A5FB4 -doEndMovie__Q34Game8Damagumo3ObjFv=0x802A5FD4 -getThrowupItemPosition__Q34Game8Damagumo3ObjFP10Vector3=0x802A5FF4 -getThrowupItemVelocity__Q34Game8Damagumo3ObjFP10Vector3=0x802A6054 -getTargetPosition__Q34Game8Damagumo3ObjFv=0x802A6068 -createIKSystem__Q34Game8Damagumo3ObjFv=0x802A6300 -setupIKSystem__Q34Game8Damagumo3ObjFv=0x802A640C -setIKParameter__Q34Game8Damagumo3ObjFv=0x802A6530 -setIKSystemTargetPosition__Q34Game8Damagumo3ObjFR10Vector3=0x802A65C0 -updateIKSystem__Q34Game8Damagumo3ObjFv=0x802A65E0 -doAnimationIKSystem__Q34Game8Damagumo3ObjFv=0x802A6640 -finishAnimationIKSystem__Q34Game8Damagumo3ObjFv=0x802A66A0 -startProgramedIK__Q34Game8Damagumo3ObjFv=0x802A66C4 -startIKMotion__Q34Game8Damagumo3ObjFv=0x802A66E8 -finishIKMotion__Q34Game8Damagumo3ObjFv=0x802A670C -forceFinishIKMotion__Q34Game8Damagumo3ObjFv=0x802A6730 -isFinishIKMotion__Q34Game8Damagumo3ObjFv=0x802A6754 -startBlendMotion__Q34Game8Damagumo3ObjFv=0x802A6778 -finishBlendMotion__Q34Game8Damagumo3ObjFv=0x802A679C -getTraceCentrePosition__Q34Game8Damagumo3ObjFv=0x802A67C0 -isCollisionCheck__Q34Game8Damagumo3ObjFP8CollPart=0x802A67E0 -createShadowSystem__Q34Game8Damagumo3ObjFv=0x802A6804 -setupShadowSystem__Q34Game8Damagumo3ObjFv=0x802A684C -doAnimationShadowSystem__Q34Game8Damagumo3ObjFv=0x802A68C0 -createMaterialAnimation__Q34Game8Damagumo3ObjFv=0x802A68E4 -startMaterialAnimation__Q34Game8Damagumo3ObjFv=0x802A6930 -updateMaterialAnimation__Q34Game8Damagumo3ObjFv=0x802A6990 -setupCollision__Q34Game8Damagumo3ObjFv=0x802A6ACC -createItemAndEnemy__Q34Game8Damagumo3ObjFv=0x802A6B5C -startBossFlickBGM__Q34Game8Damagumo3ObjFv=0x802A6BE8 -updateBossBGM__Q34Game8Damagumo3ObjFv=0x802A6CB0 -resetBossAppearBGM__Q34Game8Damagumo3ObjFv=0x802A6DAC -setBossAppearBGM__Q34Game8Damagumo3ObjFv=0x802A6E70 -createEffect__Q34Game8Damagumo3ObjFv=0x802A6F2C -__dt__Q23efx12TChasePosPosFv=0x802A74E8 -setupEffect__Q34Game8Damagumo3ObjFv=0x802A756C -createOnGroundEffect__Q34Game8Damagumo3ObjFiPQ24Game8WaterBox=0x802A76F0 -createOffGroundEffect__Q34Game8Damagumo3ObjFiPQ24Game8WaterBox=0x802A78E0 -startPinchJointEffect__Q34Game8Damagumo3ObjFv=0x802A7A08 -finishPinchJointEffect__Q34Game8Damagumo3ObjFv=0x802A7BA8 -startDeadEffect__Q34Game8Damagumo3ObjFv=0x802A7C00 -updatePinchLife__Q34Game8Damagumo3ObjFv=0x802A7DC0 -effectDrawOn__Q34Game8Damagumo3ObjFv=0x802A8010 -effectDrawOff__Q34Game8Damagumo3ObjFv=0x802A81A8 -addShadowScale__Q34Game8Damagumo3ObjFv=0x802A8340 -__dt__Q23efx16TDamaDeadHahenC2Fv=0x802A8378 -__dt__Q23efx16TDamaDeadHahenC1Fv=0x802A8414 -__dt__Q23efx10TDamaSmokeFv=0x802A84B0 -__dt__Q23efx15TDamaDeadHahenBFv=0x802A854C -__dt__Q23efx15TDamaDeadHahenAFv=0x802A85E8 -__dt__Q23efx14TDamaDeadElecBFv=0x802A8684 -__dt__Q23efx14TDamaDeadElecAFv=0x802A8720 -__dt__Q23efx10TDamaHahenFv=0x802A87BC -__dt__Q23efx10TDamaFootwFv=0x802A8858 -satisfy__Q24Game23ConditionNotStickClientFPQ24Game4Piki=0x802A88F4 -inWaterCallback__Q34Game8Damagumo3ObjFPQ24Game8WaterBox=0x802A897C -outWaterCallback__Q34Game8Damagumo3ObjFv=0x802A8980 -getDamageCoeStoneState__Q34Game8Damagumo3ObjFv=0x802A8984 -throwupItemInDeathProcedure__Q34Game8Damagumo3ObjFv=0x802A898C -getEnemyTypeID__Q34Game8Damagumo3ObjFv=0x802A8990 -__sinit_Damagumo_cpp=0x802A8998 -@1176@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x802A89C0 -@1176@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802A89D4 -@1176@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802A89E8 -@1176@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802A89FC -@1176@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802A8A10 -@1176@12@viewGetShape__Q24Game9EnemyBaseFv=0x802A8A24 -@4@__dt__Q23efx10TDamaFootwFv=0x802A8A38 -@4@__dt__Q23efx10TDamaHahenFv=0x802A8A40 -@4@__dt__Q23efx14TDamaDeadElecAFv=0x802A8A48 -@4@__dt__Q23efx14TDamaDeadElecBFv=0x802A8A50 -@4@__dt__Q23efx15TDamaDeadHahenAFv=0x802A8A58 -@4@__dt__Q23efx15TDamaDeadHahenBFv=0x802A8A60 -@4@__dt__Q23efx10TDamaSmokeFv=0x802A8A68 -@4@__dt__Q23efx16TDamaDeadHahenC1Fv=0x802A8A70 -@4@__dt__Q23efx16TDamaDeadHahenC2Fv=0x802A8A78 -IKJointCallBack__4GameFP8J3DJointi=0x802A8A80 -__ct__Q24Game11IKSystemMgrFv=0x802A8AB8 -init__Q24Game11IKSystemMgrFPQ24Game9EnemyBasePQ24Game19JointGroundCallBack=0x802A8B34 -setupJoint__Q24Game11IKSystemMgrFPQ28SysShape5ModeliPPc=0x802A8C78 -setupCallBack__Q24Game11IKSystemMgrFPQ28SysShape5ModelPc=0x802A8CE4 -setParameters__Q24Game11IKSystemMgrFPQ24Game13IKSystemParms=0x802A8D1C -startProgramedIK__Q24Game11IKSystemMgrFv=0x802A8D80 -startIKMotion__Q24Game11IKSystemMgrFv=0x802A8F08 -finishIKMotion__Q24Game11IKSystemMgrFv=0x802A8F2C -forceFinishIKMotion__Q24Game11IKSystemMgrFv=0x802A8F38 -startBlendMotion__Q24Game11IKSystemMgrFv=0x802A8F4C -finishBlendMotion__Q24Game11IKSystemMgrFv=0x802A8FA8 -checkJointScaleOn__Q24Game11IKSystemMgrFv=0x802A9004 -isFinishIKMotion__Q24Game11IKSystemMgrFv=0x802A9060 -resetAnimationCallBack__Q24Game11IKSystemMgrFv=0x802A90D0 -setAnimationCallBack__Q24Game11IKSystemMgrFv=0x802A90DC -doUpdate__Q24Game11IKSystemMgrFv=0x802A90E4 -makeMatrix__Q24Game11IKSystemMgrFv=0x802A9160 -getCollisionCentre__Q24Game11IKSystemMgrFi=0x802A91BC -isCollisionCheck__Q24Game11IKSystemMgrFP8CollPart=0x802A91F4 -updateController__Q24Game11IKSystemMgrFv=0x802A9300 -setNextCentrePosition__Q24Game11IKSystemMgrFv=0x802A9608 -calcFaceDir__Q24Game11IKSystemMgrFv=0x802A99E4 -calcCentrePosition__Q24Game11IKSystemMgrFv=0x802A9AE0 -calcTraceCentrePosition__Q24Game11IKSystemMgrFv=0x802A9D78 -__ct__Q24Game12IKSystemBaseFv=0x802A9E5C -init__Q24Game12IKSystemBaseFv=0x802A9ECC -setLegJointMatrix__Q24Game12IKSystemBaseFiP7Matrixf=0x802A9EFC -setParameters__Q24Game12IKSystemBaseFPQ24Game13IKSystemParms=0x802A9F0C -startProgramedIK__Q24Game12IKSystemBaseFv=0x802A9F14 -startMovePosition__Q24Game12IKSystemBaseFR10Vector3=0x802AA004 -startBlendMotion__Q24Game12IKSystemBaseFv=0x802AA0F8 -finishBlendMotion__Q24Game12IKSystemBaseFv=0x802AA104 -checkJointScaleOn__Q24Game12IKSystemBaseFv=0x802AA110 -update__Q24Game12IKSystemBaseFv=0x802AA11C -makeMatrix__Q24Game12IKSystemBaseFv=0x802AA198 -moveBottomJointPosition__Q24Game12IKSystemBaseFv=0x802AA290 -onGround__Q24Game12IKSystemBaseFv=0x802AA354 -getBottomJointPosition__Q24Game12IKSystemBaseFv=0x802AA35C -getCollisionCentre__Q24Game12IKSystemBaseFv=0x802AA378 -getMoveRatio__Q24Game12IKSystemBaseFv=0x802AA3C4 -onGroundPosition__Q24Game12IKSystemBaseFv=0x802AA3CC -makeBendRatio__Q24Game12IKSystemBaseFv=0x802AA64C -getMiddleDirection__Q24Game12IKSystemBaseFR10Vector3=0x802AA6D0 -setTopJointRotation__Q24Game12IKSystemBaseFR10Vector3R10Vector3=0x802AA76C -setMiddleJointRotation__Q24Game12IKSystemBaseFR10Vector3R10Vector3=0x802AAA00 -makeBottomMatrix__Q24Game12IKSystemBaseFR10Vector3=0x802AAC94 -__ct__Q34Game8Damagumo17DamagumoShadowMgrFPQ34Game8Damagumo3Obj=0x802AAD94 -init__Q34Game8Damagumo17DamagumoShadowMgrFv=0x802AAFA0 -setJointPosPtr__Q34Game8Damagumo17DamagumoShadowMgrFiiP10Vector3=0x802AB0EC -update__Q34Game8Damagumo17DamagumoShadowMgrFv=0x802AB104 -__dt__Q24Game17TubeShadowSetNodeFv=0x802AB4A0 -__dt__Q24Game19TubeShadowTransNodeFv=0x802AB510 -__dt__Q24Game16SphereShadowNodeFv=0x802AB580 -init__Q34Game6Kurage3FSMFPQ24Game9EnemyBase=0x802AB5F0 -init__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802AB9C0 -exec__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBase=0x802ABA8C -cleanup__Q34Game6Kurage9StateDeadFPQ24Game9EnemyBase=0x802ABBD8 -init__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802ABBDC -exec__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBase=0x802ABC38 -cleanup__Q34Game6Kurage9StateWaitFPQ24Game9EnemyBase=0x802ABDAC -init__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802ABDB0 -exec__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBase=0x802ABE24 -cleanup__Q34Game6Kurage9StateMoveFPQ24Game9EnemyBase=0x802AC02C -init__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg=0x802AC030 -exec__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBase=0x802AC09C -cleanup__Q34Game6Kurage10StateChaseFPQ24Game9EnemyBase=0x802AC1F8 -init__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802AC21C -exec__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBase=0x802AC29C -cleanup__Q34Game6Kurage11StateAttackFPQ24Game9EnemyBase=0x802AC4E0 -init__Q34Game6Kurage9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x802AC518 -exec__Q34Game6Kurage9StateFallFPQ24Game9EnemyBase=0x802AC580 -cleanup__Q34Game6Kurage9StateFallFPQ24Game9EnemyBase=0x802AC700 -init__Q34Game6Kurage9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x802AC724 -exec__Q34Game6Kurage9StateLandFPQ24Game9EnemyBase=0x802AC7E4 -cleanup__Q34Game6Kurage9StateLandFPQ24Game9EnemyBase=0x802AC864 -init__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg=0x802AC888 -exec__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBase=0x802AC8F0 -cleanup__Q34Game6Kurage12StateTakeOffFPQ24Game9EnemyBase=0x802AC9E0 -init__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg=0x802ACA04 -exec__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBase=0x802ACA64 -cleanup__Q34Game6Kurage11StateGroundFPQ24Game9EnemyBase=0x802ACB78 -init__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802ACB9C -exec__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBase=0x802ACC7C -cleanup__Q34Game6Kurage13StateFlyFlickFPQ24Game9EnemyBase=0x802ACDF8 -init__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802ACE1C -exec__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBase=0x802ACEF8 -cleanup__Q34Game6Kurage16StateGroundFlickFPQ24Game9EnemyBase=0x802AD044 -__sinit_KurageState_cpp=0x802AD068 -setAnimMgr__Q34Game6Kurage14ProperAnimatorFPQ28SysShape7AnimMgr=0x802AD090 -getAnimator__Q34Game6Kurage14ProperAnimatorFi=0x802AD098 -__dt__Q34Game6Kurage14ProperAnimatorFv=0x802AD0A0 -getAnimator__Q34Game6Kurage14ProperAnimatorFv=0x802AD0FC -__ct__Q34Game6Kurage3MgrFiUc=0x802AD104 -doAlloc__Q34Game6Kurage3MgrFv=0x802AD154 -__ct__Q34Game6Kurage5ParmsFv=0x802AD19C -__ct__Q44Game6Kurage5Parms11ProperParmsFv=0x802AD1E4 -createObj__Q34Game6Kurage3MgrFi=0x802AD420 -__dt__Q34Game6Kurage3ObjFv=0x802AD480 -getEnemy__Q34Game6Kurage3MgrFi=0x802AD53C -loadModelData__Q34Game6Kurage3MgrFv=0x802AD54C -__dt__Q34Game6Kurage3MgrFv=0x802AD5B4 -getEnemyTypeID__Q34Game6Kurage3MgrFv=0x802AD664 -doLoadBmd__Q34Game6Kurage3MgrFPv=0x802AD66C -read__Q34Game6Kurage5ParmsFR6Stream=0x802AD698 -@4@__dt__Q34Game6Kurage3MgrFv=0x802AD6E8 -__ct__Q34Game6Kurage3ObjFv=0x802AD6F0 -setInitialSetting__Q34Game6Kurage3ObjFPQ24Game21EnemyInitialParamBase=0x802AD828 -onInit__Q34Game6Kurage3ObjFPQ24Game15CreatureInitArg=0x802AD82C -onKill__Q34Game6Kurage3ObjFPQ24Game15CreatureKillArg=0x802AD8D4 -doUpdate__Q34Game6Kurage3ObjFv=0x802AD928 -doDirectDraw__Q34Game6Kurage3ObjFR8Graphics=0x802ADA28 -doDebugDraw__Q34Game6Kurage3ObjFR8Graphics=0x802ADA2C -setFSM__Q34Game6Kurage3ObjFPQ34Game6Kurage3FSM=0x802ADA4C -getShadowParam__Q34Game6Kurage3ObjFRQ24Game11ShadowParam=0x802ADA98 -damageCallBack__Q34Game6Kurage3ObjFPQ24Game8CreaturefP8CollPart=0x802ADBB0 -doStartStoneState__Q34Game6Kurage3ObjFv=0x802ADBE8 -doFinishStoneState__Q34Game6Kurage3ObjFv=0x802ADC2C -doStartWaitingBirthTypeDrop__Q34Game6Kurage3ObjFv=0x802ADCA8 -doFinishWaitingBirthTypeDrop__Q34Game6Kurage3ObjFv=0x802ADCDC -doStartMovie__Q34Game6Kurage3ObjFv=0x802ADD10 -doEndMovie__Q34Game6Kurage3ObjFv=0x802ADD30 -setHeightVelocity__Q34Game6Kurage3ObjFff=0x802ADD50 -setRandTarget__Q34Game6Kurage3ObjFv=0x802ADDE8 -getMovePitchOffset__Q34Game6Kurage3ObjFv=0x802ADFC0 -getAttackPitchOffset__Q34Game6Kurage3ObjFv=0x802AE064 -getFlickPitchOffset__Q34Game6Kurage3ObjFv=0x802AE20C -getTakeOffPitchOffset__Q34Game6Kurage3ObjFv=0x802AE3B4 -getFallPitchOffset__Q34Game6Kurage3ObjFf=0x802AE4F8 -updateFallTimer__Q34Game6Kurage3ObjFv=0x802AE660 -getFlyingNextState__Q34Game6Kurage3ObjFv=0x802AE690 -getSearchedTarget__Q34Game6Kurage3ObjFf=0x802AE734 -isSuck__Q34Game6Kurage3ObjFfPQ24Game8Creature=0x802AEB7C -suckPikmin__Q34Game6Kurage3ObjFf=0x802AEEB8 -createEffect__Q34Game6Kurage3ObjFv=0x802AF2EC -setupEffect__Q34Game6Kurage3ObjFv=0x802AF5A0 -startEyeHireBodyEffect__Q34Game6Kurage3ObjFv=0x802AF62C -finishEyeBodyEffect__Q34Game6Kurage3ObjFv=0x802AF6B4 -setHireEffectLife__Q34Game6Kurage3ObjFs=0x802AF730 -finishHireEffect__Q34Game6Kurage3ObjFv=0x802AF754 -startSuckEffect__Q34Game6Kurage3ObjFR10Vector3=0x802AF7A4 -updateSuckEffect__Q34Game6Kurage3ObjFR10Vector3=0x802AF7FC -finishSuckEffect__Q34Game6Kurage3ObjFv=0x802AF820 -createBodyBombEffect__Q34Game6Kurage3ObjFv=0x802AF850 -createDownEffect__Q34Game6Kurage3ObjFv=0x802AF8EC -getDownSmokeScale__Q34Game6Kurage3ObjFv=0x802AF930 -effectDrawOn__Q34Game6Kurage3ObjFv=0x802AF938 -effectDrawOff__Q34Game6Kurage3ObjFv=0x802AF9D8 -__dt__Q23efx17TNewkurageDeadrunFv=0x802AFA78 -__dt__Q23efx14TNewkurageKiraFv=0x802AFB14 -__dt__Q23efx13TNewkurageEyeFv=0x802AFBB0 -inWaterCallback__Q34Game6Kurage3ObjFPQ24Game8WaterBox=0x802AFC4C -outWaterCallback__Q34Game6Kurage3ObjFv=0x802AFC50 -getEnemyTypeID__Q34Game6Kurage3ObjFv=0x802AFC54 -@4@__dt__Q23efx13TNewkurageEyeFv=0x802AFC5C -@4@__dt__Q23efx14TNewkurageKiraFv=0x802AFC64 -@4@__dt__Q23efx17TNewkurageDeadrunFv=0x802AFC6C -init__Q34Game9BombSarai3FSMFPQ24Game9EnemyBase=0x802AFC74 -init__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B00F4 -exec__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBase=0x802B0188 -cleanup__Q34Game9BombSarai9StateDeadFPQ24Game9EnemyBase=0x802B02BC -init__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B02C0 -exec__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBase=0x802B0370 -cleanup__Q34Game9BombSarai11StateDamageFPQ24Game9EnemyBase=0x802B0524 -init__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B0554 -exec__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBase=0x802B05A8 -cleanup__Q34Game9BombSarai9StateWaitFPQ24Game9EnemyBase=0x802B06F0 -init__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B06F4 -exec__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBase=0x802B0768 -cleanup__Q34Game9BombSarai13StateBombWaitFPQ24Game9EnemyBase=0x802B0BBC -init__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B0BEC -exec__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBase=0x802B0C58 -cleanup__Q34Game9BombSarai9StateMoveFPQ24Game9EnemyBase=0x802B0E24 -init__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B0E28 -exec__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBase=0x802B0EA8 -cleanup__Q34Game9BombSarai13StateBombMoveFPQ24Game9EnemyBase=0x802B138C -init__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B13BC -exec__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBase=0x802B143C -cleanup__Q34Game9BombSarai11StateSupplyFPQ24Game9EnemyBase=0x802B14E8 -init__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B1520 -exec__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBase=0x802B1590 -cleanup__Q34Game9BombSarai12StateReleaseFPQ24Game9EnemyBase=0x802B1714 -init__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B1744 -exec__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBase=0x802B1808 -cleanup__Q34Game9BombSarai9StateFallFPQ24Game9EnemyBase=0x802B1AE0 -init__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBasePQ24Game8StateArg=0x802B1B10 -exec__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBase=0x802B1B64 -cleanup__Q34Game9BombSarai13StateTakeOff1FPQ24Game9EnemyBase=0x802B1C74 -init__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBasePQ24Game8StateArg=0x802B1C98 -exec__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBase=0x802B1CEC -cleanup__Q34Game9BombSarai13StateTakeOff2FPQ24Game9EnemyBase=0x802B1DFC -init__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B1E20 -exec__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBase=0x802B1E6C -cleanup__Q34Game9BombSarai10StateFlickFPQ24Game9EnemyBase=0x802B1F4C -init__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B1F70 -exec__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBase=0x802B1FC8 -cleanup__Q34Game9BombSarai14StateBombFlickFPQ24Game9EnemyBase=0x802B20D8 -__sinit_BombSaraiState_cpp=0x802B2108 -setAnimMgr__Q34Game9BombSarai14ProperAnimatorFPQ28SysShape7AnimMgr=0x802B2130 -getAnimator__Q34Game9BombSarai14ProperAnimatorFi=0x802B2138 -__dt__Q34Game9BombSarai14ProperAnimatorFv=0x802B2140 -getAnimator__Q34Game9BombSarai14ProperAnimatorFv=0x802B219C -__ct__Q34Game9BombSarai3MgrFiUc=0x802B21A4 -doAlloc__Q34Game9BombSarai3MgrFv=0x802B21F4 -__ct__Q34Game9BombSarai5ParmsFv=0x802B223C -__ct__Q44Game9BombSarai5Parms11ProperParmsFv=0x802B2284 -createObj__Q34Game9BombSarai3MgrFi=0x802B24FC -__dt__Q34Game9BombSarai3ObjFv=0x802B255C -getEnemy__Q34Game9BombSarai3MgrFi=0x802B2618 -loadModelData__Q34Game9BombSarai3MgrFv=0x802B2628 -__dt__Q34Game9BombSarai3MgrFv=0x802B2690 -getEnemyTypeID__Q34Game9BombSarai3MgrFv=0x802B2740 -doLoadBmd__Q34Game9BombSarai3MgrFPv=0x802B2748 -read__Q34Game9BombSarai5ParmsFR6Stream=0x802B2774 -@4@__dt__Q34Game9BombSarai3MgrFv=0x802B27C4 -__ct__Q34Game9BombSarai3ObjFv=0x802B27CC -setInitialSetting__Q34Game9BombSarai3ObjFPQ24Game21EnemyInitialParamBase=0x802B2904 -onInit__Q34Game9BombSarai3ObjFPQ24Game15CreatureInitArg=0x802B2908 -onKill__Q34Game9BombSarai3ObjFPQ24Game15CreatureKillArg=0x802B29A0 -doUpdate__Q34Game9BombSarai3ObjFv=0x802B29F0 -doDirectDraw__Q34Game9BombSarai3ObjFR8Graphics=0x802B2A94 -doDebugDraw__Q34Game9BombSarai3ObjFR8Graphics=0x802B2A98 -setFSM__Q34Game9BombSarai3ObjFPQ34Game9BombSarai3FSM=0x802B2AB8 -getShadowParam__Q34Game9BombSarai3ObjFRQ24Game11ShadowParam=0x802B2B04 -bombCallBack__Q34Game9BombSarai3ObjFPQ24Game8CreatureR10Vector3f=0x802B2BD8 -doFinishStoneState__Q34Game9BombSarai3ObjFv=0x802B2C14 -doStartWaitingBirthTypeDrop__Q34Game9BombSarai3ObjFv=0x802B2CA0 -doFinishWaitingBirthTypeDrop__Q34Game9BombSarai3ObjFv=0x802B2CD4 -startCarcassMotion__Q34Game9BombSarai3ObjFv=0x802B2D08 -doStartMovie__Q34Game9BombSarai3ObjFv=0x802B2D30 -doEndMovie__Q34Game9BombSarai3ObjFv=0x802B2D50 -setHeightVelocity__Q34Game9BombSarai3ObjFb=0x802B2D70 -setRandTarget__Q34Game9BombSarai3ObjFv=0x802B2F10 -addPitchRatio__Q34Game9BombSarai3ObjFv=0x802B30F8 -supplyBomb__Q34Game9BombSarai3ObjFv=0x802B3130 -throwBomb__Q34Game9BombSarai3ObjFR10Vector3=0x802B31F8 -getAttackablePikmin__Q34Game9BombSarai3ObjFv=0x802B3270 -getNextStateOnHeight__Q34Game9BombSarai3ObjFv=0x802B32E0 -createEffect__Q34Game9BombSarai3ObjFv=0x802B3424 -setupEffect__Q34Game9BombSarai3ObjFv=0x802B34D4 -createSupliEffect__Q34Game9BombSarai3ObjFv=0x802B3518 -createBalloonEffect__Q34Game9BombSarai3ObjFi=0x802B354C -createDownEffect__Q34Game9BombSarai3ObjFf=0x802B3668 -effectDrawOn__Q34Game9BombSarai3ObjFv=0x802B368C -effectDrawOff__Q34Game9BombSarai3ObjFv=0x802B36BC -__dt__Q23efx12TBsaraiSupliFv=0x802B36EC -inWaterCallback__Q34Game9BombSarai3ObjFPQ24Game8WaterBox=0x802B3788 -outWaterCallback__Q34Game9BombSarai3ObjFv=0x802B378C -getDownSmokeScale__Q34Game9BombSarai3ObjFv=0x802B3790 -getEnemyTypeID__Q34Game9BombSarai3ObjFv=0x802B3798 -@4@__dt__Q23efx12TBsaraiSupliFv=0x802B37A0 -init__Q34Game11OtakaraBase3FSMFPQ24Game9EnemyBase=0x802B37A8 -init__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B3C7C -exec__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBase=0x802B3CD8 -cleanup__Q34Game11OtakaraBase9StateDeadFPQ24Game9EnemyBase=0x802B3D1C -init__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B3D20 -startChargeEffect__Q34Game11OtakaraBase3ObjFv=0x802B3D9C -exec__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBase=0x802B3DA0 -createDisChargeEffect__Q34Game11OtakaraBase3ObjFv=0x802B4030 -finishChargeEffect__Q34Game11OtakaraBase3ObjFv=0x802B4034 -cleanup__Q34Game11OtakaraBase10StateFlickFPQ24Game9EnemyBase=0x802B4038 -init__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B405C -exec__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBase=0x802B40AC -cleanup__Q34Game11OtakaraBase9StateWaitFPQ24Game9EnemyBase=0x802B4278 -init__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B427C -exec__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBase=0x802B42C4 -cleanup__Q34Game11OtakaraBase9StateMoveFPQ24Game9EnemyBase=0x802B4508 -init__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B452C -exec__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBase=0x802B4584 -cleanup__Q34Game11OtakaraBase9StateTurnFPQ24Game9EnemyBase=0x802B47E8 -init__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B480C -exec__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBase=0x802B485C -cleanup__Q34Game11OtakaraBase9StateTakeFPQ24Game9EnemyBase=0x802B49B0 -init__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B49D4 -exec__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBase=0x802B4A1C -cleanup__Q34Game11OtakaraBase13StateItemWaitFPQ24Game9EnemyBase=0x802B4BF4 -init__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B4BF8 -exec__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBase=0x802B4C40 -cleanup__Q34Game11OtakaraBase13StateItemMoveFPQ24Game9EnemyBase=0x802B4EA0 -init__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B4EC4 -exec__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBase=0x802B4F1C -cleanup__Q34Game11OtakaraBase13StateItemTurnFPQ24Game9EnemyBase=0x802B518C -init__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B51B0 -exec__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBase=0x802B522C -cleanup__Q34Game11OtakaraBase14StateItemFlickFPQ24Game9EnemyBase=0x802B5480 -init__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B54A4 -exec__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBase=0x802B5500 -cleanup__Q34Game11OtakaraBase13StateItemDropFPQ24Game9EnemyBase=0x802B56F8 -init__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B5724 -exec__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBase=0x802B576C -cleanup__Q34Game11OtakaraBase13StateBombWaitFPQ24Game9EnemyBase=0x802B592C -init__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B5930 -exec__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBase=0x802B5978 -cleanup__Q34Game11OtakaraBase13StateBombMoveFPQ24Game9EnemyBase=0x802B5B60 -init__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802B5B84 -exec__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBase=0x802B5BDC -cleanup__Q34Game11OtakaraBase13StateBombTurnFPQ24Game9EnemyBase=0x802B5E00 -setAnimMgr__Q34Game11OtakaraBase14ProperAnimatorFPQ28SysShape7AnimMgr=0x802B5E24 -getAnimator__Q34Game11OtakaraBase14ProperAnimatorFi=0x802B5E2C -__dt__Q34Game11OtakaraBase14ProperAnimatorFv=0x802B5E34 -getAnimator__Q34Game11OtakaraBase14ProperAnimatorFv=0x802B5E90 -__ct__Q34Game11OtakaraBase3MgrFiUc=0x802B5E98 -loadModelData__Q34Game11OtakaraBase3MgrFv=0x802B5EE8 -loadAnimData__Q34Game11OtakaraBase3MgrFv=0x802B5FA4 -createModel__Q34Game11OtakaraBase3MgrFv=0x802B6054 -__dt__Q34Game11OtakaraBase3MgrFv=0x802B618C -getEnemyTypeID__Q34Game11OtakaraBase3MgrFv=0x802B623C -@4@__dt__Q34Game11OtakaraBase3MgrFv=0x802B6244 -__ct__Q34Game11OtakaraBase3ObjFv=0x802B624C -setInitialSetting__Q34Game11OtakaraBase3ObjFPQ24Game21EnemyInitialParamBase=0x802B637C -onInit__Q34Game11OtakaraBase3ObjFPQ24Game15CreatureInitArg=0x802B6380 -getEnemyTypeID__Q34Game11OtakaraBase3ObjFv=0x802B6484 -setupEffect__Q34Game11OtakaraBase3ObjFv=0x802B648C -onKill__Q34Game11OtakaraBase3ObjFPQ24Game15CreatureKillArg=0x802B6490 -doUpdate__Q34Game11OtakaraBase3ObjFv=0x802B64EC -doUpdateCommon__Q34Game11OtakaraBase3ObjFv=0x802B6520 -startDisChargeSE__Q34Game11OtakaraBase3ObjFv=0x802B6610 -doAnimationCullingOff__Q34Game11OtakaraBase3ObjFv=0x802B6614 -doDirectDraw__Q34Game11OtakaraBase3ObjFR8Graphics=0x802B6690 -doDebugDraw__Q34Game11OtakaraBase3ObjFR8Graphics=0x802B6694 -setFSM__Q34Game11OtakaraBase3ObjFPQ34Game11OtakaraBase3FSM=0x802B66B4 -getShadowParam__Q34Game11OtakaraBase3ObjFRQ24Game11ShadowParam=0x802B6700 -damageCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreaturefP8CollPart=0x802B67EC -hipdropCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreaturefP8CollPart=0x802B6820 -earthquakeCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8Creaturef=0x802B6898 -bombCallBack__Q34Game11OtakaraBase3ObjFPQ24Game8CreatureR10Vector3f=0x802B6908 -doStartStoneState__Q34Game11OtakaraBase3ObjFv=0x802B692C -doFinishStoneState__Q34Game11OtakaraBase3ObjFv=0x802B6978 -doStartEarthquakeState__Q34Game11OtakaraBase3ObjFf=0x802B69C4 -doFinishEarthquakeState__Q34Game11OtakaraBase3ObjFv=0x802B6A10 -doStartEarthquakeFitState__Q34Game11OtakaraBase3ObjFv=0x802B6A5C -doFinishEarthquakeFitState__Q34Game11OtakaraBase3ObjFv=0x802B6AA8 -doStartWaitingBirthTypeDrop__Q34Game11OtakaraBase3ObjFv=0x802B6AF4 -effectDrawOff__Q34Game11OtakaraBase3ObjFv=0x802B6B34 -doFinishWaitingBirthTypeDrop__Q34Game11OtakaraBase3ObjFv=0x802B6B38 -effectDrawOn__Q34Game11OtakaraBase3ObjFv=0x802B6B9C -startCarcassMotion__Q34Game11OtakaraBase3ObjFv=0x802B6BA0 -doStartMovie__Q34Game11OtakaraBase3ObjFv=0x802B6BC8 -doEndMovie__Q34Game11OtakaraBase3ObjFv=0x802B6BF4 -isMovePositionSet__Q34Game11OtakaraBase3ObjFb=0x802B6C20 -getNearestTreasure__Q34Game11OtakaraBase3ObjFv=0x802B6D60 -getTargetPosition__Q34Game11OtakaraBase3ObjFPQ24Game8Creature=0x802B6EA8 -resetTreasure__Q34Game11OtakaraBase3ObjFv=0x802B7070 -isTakeTreasure__Q34Game11OtakaraBase3ObjFv=0x802B7104 -takeTreasure__Q34Game11OtakaraBase3ObjFv=0x802B7210 -fallTreasure__Q34Game11OtakaraBase3ObjFb=0x802B745C -isDropTreasure__Q34Game11OtakaraBase3ObjFv=0x802B7554 -damageTreasure__Q34Game11OtakaraBase3ObjFf=0x802B757C -attackTarget__Q34Game11OtakaraBase3ObjFv=0x802B75D0 -interactCreature__Q34Game11OtakaraBase3ObjFPQ24Game8Creature=0x802B7778 -createTreasureFallEffect__Q34Game11OtakaraBase3ObjFv=0x802B777C -startEscapeSE__Q34Game11OtakaraBase3ObjFv=0x802B78B0 -initBombOtakara__Q34Game11OtakaraBase3ObjFv=0x802B7938 -isTransitChaseState__Q34Game11OtakaraBase3ObjFv=0x802B7A34 -stimulateBomb__Q34Game11OtakaraBase3ObjFv=0x802B7A9C -getChaseTargetCreature__Q34Game11OtakaraBase3ObjFv=0x802B7B28 -satisfy__Q24Game30ConditionNotStickClientAndItemFPQ24Game4Piki=0x802B7B60 -__dt__Q34Game11OtakaraBase3ObjFv=0x802B7BFC -getDownSmokeScale__Q34Game11OtakaraBase3ObjFv=0x802B7CB8 -getCellRadius__Q34Game11OtakaraBase3ObjFv=0x802B7CC0 -createEffect__Q34Game11OtakaraBase3ObjFv=0x802B7CC8 -__ct__Q34Game11FireOtakara3MgrFiUc=0x802B7CCC -doAlloc__Q34Game11FireOtakara3MgrFv=0x802B7D1C -__ct__Q34Game11OtakaraBase5ParmsFv=0x802B7D64 -createObj__Q34Game11FireOtakara3MgrFi=0x802B7EB8 -__dt__Q34Game11FireOtakara3ObjFv=0x802B7F18 -getEnemy__Q34Game11FireOtakara3MgrFi=0x802B8008 -loadTexData__Q34Game11FireOtakara3MgrFv=0x802B8018 -__dt__Q34Game11FireOtakara3MgrFv=0x802B8098 -getEnemyTypeID__Q34Game11FireOtakara3MgrFv=0x802B8160 -getChangeTexture__Q34Game11FireOtakara3MgrFv=0x802B8168 -read__Q34Game11OtakaraBase5ParmsFR6Stream=0x802B8170 -@4@__dt__Q34Game11FireOtakara3MgrFv=0x802B81C0 -__ct__Q34Game11FireOtakara3ObjFv=0x802B81C8 -changeMaterial__Q34Game11FireOtakara3ObjFv=0x802B826C -interactCreature__Q34Game11FireOtakara3ObjFPQ24Game8Creature=0x802B8410 -createEffect__Q34Game11FireOtakara3ObjFv=0x802B8470 -setupEffect__Q34Game11FireOtakara3ObjFv=0x802B84D0 -startChargeEffect__Q34Game11FireOtakara3ObjFv=0x802B8518 -finishChargeEffect__Q34Game11FireOtakara3ObjFv=0x802B854C -createDisChargeEffect__Q34Game11FireOtakara3ObjFv=0x802B857C -effectDrawOn__Q34Game11FireOtakara3ObjFv=0x802B862C -effectDrawOff__Q34Game11FireOtakara3ObjFv=0x802B865C -startDisChargeSE__Q34Game11FireOtakara3ObjFv=0x802B868C -forceKill__Q23efx8TSimple5Fv=0x802B86D0 -fade__Q23efx8TSimple5Fv=0x802B86D4 -getEnemyTypeID__Q34Game11FireOtakara3ObjFv=0x802B86D8 -__ct__Q34Game12WaterOtakara3MgrFiUc=0x802B86E0 -doAlloc__Q34Game12WaterOtakara3MgrFv=0x802B8730 -createObj__Q34Game12WaterOtakara3MgrFi=0x802B8778 -__dt__Q34Game12WaterOtakara3ObjFv=0x802B87D8 -getEnemy__Q34Game12WaterOtakara3MgrFi=0x802B88C8 -loadTexData__Q34Game12WaterOtakara3MgrFv=0x802B88D8 -__dt__Q34Game12WaterOtakara3MgrFv=0x802B8958 -getEnemyTypeID__Q34Game12WaterOtakara3MgrFv=0x802B8A20 -getChangeTexture__Q34Game12WaterOtakara3MgrFv=0x802B8A28 -@4@__dt__Q34Game12WaterOtakara3MgrFv=0x802B8A30 -__ct__Q34Game12WaterOtakara3ObjFv=0x802B8A38 -changeMaterial__Q34Game12WaterOtakara3ObjFv=0x802B8ADC -interactCreature__Q34Game12WaterOtakara3ObjFPQ24Game8Creature=0x802B8C80 -createEffect__Q34Game12WaterOtakara3ObjFv=0x802B8CE0 -setupEffect__Q34Game12WaterOtakara3ObjFv=0x802B8D40 -startChargeEffect__Q34Game12WaterOtakara3ObjFv=0x802B8D88 -finishChargeEffect__Q34Game12WaterOtakara3ObjFv=0x802B8DBC -createDisChargeEffect__Q34Game12WaterOtakara3ObjFv=0x802B8DEC -effectDrawOn__Q34Game12WaterOtakara3ObjFv=0x802B8E90 -effectDrawOff__Q34Game12WaterOtakara3ObjFv=0x802B8EC0 -startDisChargeSE__Q34Game12WaterOtakara3ObjFv=0x802B8EF0 -getEnemyTypeID__Q34Game12WaterOtakara3ObjFv=0x802B8F34 -__ct__Q34Game10GasOtakara3MgrFiUc=0x802B8F3C -doAlloc__Q34Game10GasOtakara3MgrFv=0x802B8F8C -createObj__Q34Game10GasOtakara3MgrFi=0x802B8FD4 -__dt__Q34Game10GasOtakara3ObjFv=0x802B9034 -getEnemy__Q34Game10GasOtakara3MgrFi=0x802B9124 -loadTexData__Q34Game10GasOtakara3MgrFv=0x802B9134 -__dt__Q34Game10GasOtakara3MgrFv=0x802B91B4 -getEnemyTypeID__Q34Game10GasOtakara3MgrFv=0x802B927C -getChangeTexture__Q34Game10GasOtakara3MgrFv=0x802B9284 -@4@__dt__Q34Game10GasOtakara3MgrFv=0x802B928C -__ct__Q34Game10GasOtakara3ObjFv=0x802B9294 -changeMaterial__Q34Game10GasOtakara3ObjFv=0x802B9338 -interactCreature__Q34Game10GasOtakara3ObjFPQ24Game8Creature=0x802B94DC -createEffect__Q34Game10GasOtakara3ObjFv=0x802B953C -setupEffect__Q34Game10GasOtakara3ObjFv=0x802B959C -startChargeEffect__Q34Game10GasOtakara3ObjFv=0x802B95E4 -finishChargeEffect__Q34Game10GasOtakara3ObjFv=0x802B9618 -createDisChargeEffect__Q34Game10GasOtakara3ObjFv=0x802B9648 -effectDrawOn__Q34Game10GasOtakara3ObjFv=0x802B96D4 -effectDrawOff__Q34Game10GasOtakara3ObjFv=0x802B9704 -startDisChargeSE__Q34Game10GasOtakara3ObjFv=0x802B9734 -getEnemyTypeID__Q34Game10GasOtakara3ObjFv=0x802B9778 -__ct__Q34Game11ElecOtakara3MgrFiUc=0x802B9780 -doAlloc__Q34Game11ElecOtakara3MgrFv=0x802B97D0 -createObj__Q34Game11ElecOtakara3MgrFi=0x802B9818 -__dt__Q34Game11ElecOtakara3ObjFv=0x802B9878 -getEnemy__Q34Game11ElecOtakara3MgrFi=0x802B9968 -loadTexData__Q34Game11ElecOtakara3MgrFv=0x802B9978 -__dt__Q34Game11ElecOtakara3MgrFv=0x802B99F8 -getEnemyTypeID__Q34Game11ElecOtakara3MgrFv=0x802B9AC0 -getChangeTexture__Q34Game11ElecOtakara3MgrFv=0x802B9AC8 -@4@__dt__Q34Game11ElecOtakara3MgrFv=0x802B9AD0 -__ct__Q34Game11ElecOtakara3ObjFv=0x802B9AD8 -changeMaterial__Q34Game11ElecOtakara3ObjFv=0x802B9B7C -interactCreature__Q34Game11ElecOtakara3ObjFPQ24Game8Creature=0x802B9D20 -createEffect__Q34Game11ElecOtakara3ObjFv=0x802B9E88 -setupEffect__Q34Game11ElecOtakara3ObjFv=0x802B9EE8 -startChargeEffect__Q34Game11ElecOtakara3ObjFv=0x802B9F30 -finishChargeEffect__Q34Game11ElecOtakara3ObjFv=0x802B9F64 -createDisChargeEffect__Q34Game11ElecOtakara3ObjFv=0x802B9F94 -effectDrawOn__Q34Game11ElecOtakara3ObjFv=0x802BA02C -effectDrawOff__Q34Game11ElecOtakara3ObjFv=0x802BA05C -startDisChargeSE__Q34Game11ElecOtakara3ObjFv=0x802BA08C -getEnemyTypeID__Q34Game11ElecOtakara3ObjFv=0x802BA0D0 -init__Q34Game8Imomushi3FSMFPQ24Game9EnemyBase=0x802BA0D8 -init__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BA5AC -exec__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBase=0x802BA5FC -cleanup__Q34Game8Imomushi9StateDeadFPQ24Game9EnemyBase=0x802BA640 -init__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BA644 -exec__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBase=0x802BA690 -cleanup__Q34Game8Imomushi13StateFallDiveFPQ24Game9EnemyBase=0x802BA7D0 -init__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BA7D4 -exec__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBase=0x802BA820 -cleanup__Q34Game8Imomushi13StateFallMoveFPQ24Game9EnemyBase=0x802BA998 -init__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BA99C -exec__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBase=0x802BAA64 -cleanup__Q34Game8Imomushi9StateStayFPQ24Game9EnemyBase=0x802BAB0C -init__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BAB9C -exec__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBase=0x802BAC1C -cleanup__Q34Game8Imomushi11StateAppearFPQ24Game9EnemyBase=0x802BACF4 -init__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BAD30 -exec__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBase=0x802BADA4 -cleanup__Q34Game8Imomushi9StateDiveFPQ24Game9EnemyBase=0x802BADF4 -init__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BAE30 -exec__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBase=0x802BAE78 -cleanup__Q34Game8Imomushi9StateMoveFPQ24Game9EnemyBase=0x802BB0B0 -init__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BB0D4 -exec__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBase=0x802BB11C -cleanup__Q34Game8Imomushi11StateGoHomeFPQ24Game9EnemyBase=0x802BB268 -init__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BB28C -exec__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBase=0x802BB3D8 -cleanup__Q34Game8Imomushi10StateClimbFPQ24Game9EnemyBase=0x802BB548 -init__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BB56C -exec__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBase=0x802BB608 -cleanup__Q34Game8Imomushi11StateAttackFPQ24Game9EnemyBase=0x802BB764 -init__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BB788 -exec__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBase=0x802BB81C -cleanup__Q34Game8Imomushi9StateWaitFPQ24Game9EnemyBase=0x802BB954 -init__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BB978 -exec__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBase=0x802BB9E4 -cleanup__Q34Game8Imomushi14StateZukanStayFPQ24Game9EnemyBase=0x802BBA3C -init__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BBA6C -exec__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBase=0x802BBAC8 -cleanup__Q34Game8Imomushi16StateZukanAppearFPQ24Game9EnemyBase=0x802BBB18 -init__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BBB28 -exec__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBase=0x802BBB80 -cleanup__Q34Game8Imomushi14StateZukanMoveFPQ24Game9EnemyBase=0x802BBC3C -setAnimMgr__Q34Game8Imomushi14ProperAnimatorFPQ28SysShape7AnimMgr=0x802BBC60 -getAnimator__Q34Game8Imomushi14ProperAnimatorFi=0x802BBC68 -__dt__Q34Game8Imomushi14ProperAnimatorFv=0x802BBC70 -getAnimator__Q34Game8Imomushi14ProperAnimatorFv=0x802BBCCC -__ct__Q34Game8Imomushi3MgrFiUc=0x802BBCD4 -doAlloc__Q34Game8Imomushi3MgrFv=0x802BBD24 -__ct__Q34Game8Imomushi5ParmsFv=0x802BBD6C -createObj__Q34Game8Imomushi3MgrFi=0x802BBEFC -__dt__Q34Game8Imomushi3ObjFv=0x802BBF5C -getEnemy__Q34Game8Imomushi3MgrFi=0x802BC018 -read__Q34Game8Imomushi5ParmsFR6Stream=0x802BC028 -__dt__Q34Game8Imomushi3MgrFv=0x802BC078 -getEnemyTypeID__Q34Game8Imomushi3MgrFv=0x802BC128 -@4@__dt__Q34Game8Imomushi3MgrFv=0x802BC130 -__ct__Q34Game8Imomushi3ObjFv=0x802BC138 -setInitialSetting__Q34Game8Imomushi3ObjFPQ24Game21EnemyInitialParamBase=0x802BC270 -onInit__Q34Game8Imomushi3ObjFPQ24Game15CreatureInitArg=0x802BC274 -onKill__Q34Game8Imomushi3ObjFPQ24Game15CreatureKillArg=0x802BC35C -doUpdate__Q34Game8Imomushi3ObjFv=0x802BC3A0 -doAnimationStick__Q34Game8Imomushi3ObjFv=0x802BC3D4 -doDirectDraw__Q34Game8Imomushi3ObjFR8Graphics=0x802BC8A4 -doDebugDraw__Q34Game8Imomushi3ObjFR8Graphics=0x802BC8A8 -setFSM__Q34Game8Imomushi3ObjFPQ34Game8Imomushi3FSM=0x802BC8C8 -getShadowParam__Q34Game8Imomushi3ObjFRQ24Game11ShadowParam=0x802BC914 -earthquakeCallBack__Q34Game8Imomushi3ObjFPQ24Game8Creaturef=0x802BC9E4 -dropCallBack__Q34Game8Imomushi3ObjFPQ24Game8Creature=0x802BCA48 -doStartStoneState__Q34Game8Imomushi3ObjFv=0x802BCAC8 -doFinishStoneState__Q34Game8Imomushi3ObjFv=0x802BCAFC -doStartEarthquakeState__Q34Game8Imomushi3ObjFf=0x802BCB48 -doFinishEarthquakeState__Q34Game8Imomushi3ObjFv=0x802BCB7C -doStartEarthquakeFitState__Q34Game8Imomushi3ObjFv=0x802BCBC8 -doFinishEarthquakeFitState__Q34Game8Imomushi3ObjFv=0x802BCBFC -startCarcassMotion__Q34Game8Imomushi3ObjFv=0x802BCC48 -doStartMovie__Q34Game8Imomushi3ObjFv=0x802BCC70 -doEndMovie__Q34Game8Imomushi3ObjFv=0x802BCC90 -lifeIncrement__Q34Game8Imomushi3ObjFv=0x802BCCB0 -resetZukanStateTimer__Q34Game8Imomushi3ObjFv=0x802BCCD4 -resetStickDiff__Q34Game8Imomushi3ObjFv=0x802BCD80 -setStickDiff__Q34Game8Imomushi3ObjFff=0x802BCD90 -getRandFruitsPlant__Q34Game8Imomushi3ObjFv=0x802BCDAC -startClimbPlant__Q34Game8Imomushi3ObjFP8CollPart=0x802BD0C8 -moveStickTube__Q34Game8Imomushi3ObjFv=0x802BD190 -moveStickSphere__Q34Game8Imomushi3ObjFv=0x802BD1C0 -eatTsuyukusa__Q34Game8Imomushi3ObjFv=0x802BD28C -isAttackable__Q34Game8Imomushi3ObjFv=0x802BD428 -isStickToFall__Q34Game8Imomushi3ObjFv=0x802BD49C -setZukanTargetPosition__Q34Game8Imomushi3ObjFv=0x802BD4E8 -isInZukanTargetArea__Q34Game8Imomushi3ObjFv=0x802BD670 -createEffect__Q34Game8Imomushi3ObjFv=0x802BD6A4 -setupEffect__Q34Game8Imomushi3ObjFv=0x802BD7E0 -createAppearEffect__Q34Game8Imomushi3ObjFv=0x802BD820 -createDisAppearEffect__Q34Game8Imomushi3ObjFv=0x802BD8AC -startMoveTraceEffect__Q34Game8Imomushi3ObjFv=0x802BD938 -finishMoveTraceEffect__Q34Game8Imomushi3ObjFv=0x802BD9BC -effectDrawOn__Q34Game8Imomushi3ObjFv=0x802BD9EC -effectDrawOff__Q34Game8Imomushi3ObjFv=0x802BDA3C -getName__Q23efx9ArgImoEatFv=0x802BDA8C -isUnderground__Q34Game8Imomushi3ObjFv=0x802BDA98 -getDownSmokeScale__Q34Game8Imomushi3ObjFv=0x802BDAA0 -getEnemyTypeID__Q34Game8Imomushi3ObjFv=0x802BDAA8 -init__Q34Game6Houdai3FSMFPQ24Game9EnemyBase=0x802BDAB0 -init__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BDD28 -exec__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBase=0x802BDDE4 -cleanup__Q34Game6Houdai9StateDeadFPQ24Game9EnemyBase=0x802BDE9C -init__Q34Game6Houdai9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BDEA0 -exec__Q34Game6Houdai9StateStayFPQ24Game9EnemyBase=0x802BDF18 -cleanup__Q34Game6Houdai9StateStayFPQ24Game9EnemyBase=0x802BDFDC -init__Q34Game6Houdai9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BDFE0 -exec__Q34Game6Houdai9StateLandFPQ24Game9EnemyBase=0x802BE0C4 -cleanup__Q34Game6Houdai9StateLandFPQ24Game9EnemyBase=0x802BE3B4 -init__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BE404 -exec__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBase=0x802BE49C -cleanup__Q34Game6Houdai9StateWaitFPQ24Game9EnemyBase=0x802BE5B4 -init__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BE5B8 -exec__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBase=0x802BE61C -cleanup__Q34Game6Houdai10StateFlickFPQ24Game9EnemyBase=0x802BE70C -init__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BE730 -exec__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBase=0x802BE7C8 -cleanup__Q34Game6Houdai9StateWalkFPQ24Game9EnemyBase=0x802BE8C8 -init__Q34Game6Houdai9StateShotFPQ24Game9EnemyBasePQ24Game8StateArg=0x802BE8CC -exec__Q34Game6Houdai9StateShotFPQ24Game9EnemyBase=0x802BE95C -cleanup__Q34Game6Houdai9StateShotFPQ24Game9EnemyBase=0x802BED0C -__sinit_HoudaiState_cpp=0x802BED44 -setAnimMgr__Q34Game6Houdai14ProperAnimatorFPQ28SysShape7AnimMgr=0x802BED6C -getAnimator__Q34Game6Houdai14ProperAnimatorFi=0x802BED74 -__dt__Q34Game6Houdai14ProperAnimatorFv=0x802BED7C -getAnimator__Q34Game6Houdai14ProperAnimatorFv=0x802BEDD8 -__ct__Q34Game6Houdai3MgrFiUc=0x802BEDE0 -doAlloc__Q34Game6Houdai3MgrFv=0x802BEE30 -__ct__Q34Game6Houdai5ParmsFv=0x802BEE78 -__ct__Q44Game6Houdai5Parms11ProperParmsFv=0x802BEEC0 -createObj__Q34Game6Houdai3MgrFi=0x802BF1AC -__dt__Q34Game6Houdai3ObjFv=0x802BF20C -getEnemy__Q34Game6Houdai3MgrFi=0x802BF2C8 -loadModelData__Q34Game6Houdai3MgrFv=0x802BF2D8 -__dt__Q34Game6Houdai3MgrFv=0x802BF340 -getEnemyTypeID__Q34Game6Houdai3MgrFv=0x802BF3F0 -doLoadBmd__Q34Game6Houdai3MgrFPv=0x802BF3F8 -read__Q34Game6Houdai5ParmsFR6Stream=0x802BF424 -@4@__dt__Q34Game6Houdai3MgrFv=0x802BF474 -__ct__Q34Game6Houdai15HoudaiShadowMgrFPQ34Game6Houdai3Obj=0x802BF47C -init__Q34Game6Houdai15HoudaiShadowMgrFv=0x802BF6F8 -setJointPosPtr__Q34Game6Houdai15HoudaiShadowMgrFiiP10Vector3=0x802BF8A8 -update__Q34Game6Houdai15HoudaiShadowMgrFv=0x802BF8C0 -invokeOnGround__Q34Game6Houdai20HoudaiGroundCallBackFiPQ24Game8WaterBox=0x802BFCB0 -invokeOffGround__Q34Game6Houdai20HoudaiGroundCallBackFiPQ24Game8WaterBox=0x802BFCD4 -__ct__Q34Game6Houdai3ObjFv=0x802BFCF8 -setInitialSetting__Q34Game6Houdai3ObjFPQ24Game21EnemyInitialParamBase=0x802BFE64 -onInit__Q34Game6Houdai3ObjFPQ24Game15CreatureInitArg=0x802BFE68 -onKill__Q34Game6Houdai3ObjFPQ24Game15CreatureKillArg=0x802BFFAC -setParameters__Q34Game6Houdai3ObjFv=0x802C0000 -doUpdate__Q34Game6Houdai3ObjFv=0x802C0088 -doUpdateCommon__Q34Game6Houdai3ObjFv=0x802C013C -doAnimationCullingOff__Q34Game6Houdai3ObjFv=0x802C0178 -doDirectDraw__Q34Game6Houdai3ObjFR8Graphics=0x802C0218 -doDebugDraw__Q34Game6Houdai3ObjFR8Graphics=0x802C021C -setFSM__Q34Game6Houdai3ObjFPQ34Game6Houdai3FSM=0x802C023C -getShadowParam__Q34Game6Houdai3ObjFRQ24Game11ShadowParam=0x802C0288 -damageCallBack__Q34Game6Houdai3ObjFPQ24Game8CreaturefP8CollPart=0x802C02C4 -doStartStoneState__Q34Game6Houdai3ObjFv=0x802C0378 -doFinishStoneState__Q34Game6Houdai3ObjFv=0x802C03CC -doStartMovie__Q34Game6Houdai3ObjFv=0x802C0444 -doEndMovie__Q34Game6Houdai3ObjFv=0x802C0464 -getThrowupItemPosition__Q34Game6Houdai3ObjFP10Vector3=0x802C0484 -getThrowupItemVelocity__Q34Game6Houdai3ObjFP10Vector3=0x802C04D4 -setTargetPattern__Q34Game6Houdai3ObjFv=0x802C04E8 -getTargetPosition__Q34Game6Houdai3ObjFv=0x802C05B0 -setShotGunTargetPosition__Q34Game6Houdai3ObjFv=0x802C0848 -createIKSystem__Q34Game6Houdai3ObjFv=0x802C0A7C -setupIKSystem__Q34Game6Houdai3ObjFv=0x802C0B88 -setIKParameter__Q34Game6Houdai3ObjFv=0x802C0CAC -setIKSystemTargetPosition__Q34Game6Houdai3ObjFR10Vector3=0x802C0D3C -updateIKSystem__Q34Game6Houdai3ObjFv=0x802C0D5C -doAnimationIKSystem__Q34Game6Houdai3ObjFv=0x802C0DBC -finishAnimationIKSystem__Q34Game6Houdai3ObjFv=0x802C0E1C -startProgramedIK__Q34Game6Houdai3ObjFv=0x802C0E40 -startIKMotion__Q34Game6Houdai3ObjFv=0x802C0E64 -finishIKMotion__Q34Game6Houdai3ObjFv=0x802C0E88 -forceFinishIKMotion__Q34Game6Houdai3ObjFv=0x802C0EAC -isFinishIKMotion__Q34Game6Houdai3ObjFv=0x802C0ED0 -startBlendMotion__Q34Game6Houdai3ObjFv=0x802C0EF4 -finishBlendMotion__Q34Game6Houdai3ObjFv=0x802C0F18 -getTraceCentrePosition__Q34Game6Houdai3ObjFv=0x802C0F3C -createShadowSystem__Q34Game6Houdai3ObjFv=0x802C0F5C -setupShadowSystem__Q34Game6Houdai3ObjFv=0x802C0FA4 -doAnimationShadowSystem__Q34Game6Houdai3ObjFv=0x802C1018 -setShotGunEmitKeepTimerOn__Q34Game6Houdai3ObjFv=0x802C103C -setShotGunEmitKeepTimerOff__Q34Game6Houdai3ObjFv=0x802C10B4 -updateShotGunTimer__Q34Game6Houdai3ObjFv=0x802C112C -isTransitShotGunState__Q34Game6Houdai3ObjFv=0x802C115C -createShotGun__Q34Game6Houdai3ObjFv=0x802C1178 -setupShotGun__Q34Game6Houdai3ObjFv=0x802C11C0 -setShotGunTarget__Q34Game6Houdai3ObjFR10Vector3=0x802C11E4 -resetShotGunCallBack__Q34Game6Houdai3ObjFv=0x802C1208 -setShotGunCallBack__Q34Game6Houdai3ObjFv=0x802C122C -doUpdateShotGun__Q34Game6Houdai3ObjFv=0x802C1250 -doUpdateCommonShotGun__Q34Game6Houdai3ObjFv=0x802C1274 -startShotGunRotation__Q34Game6Houdai3ObjFv=0x802C1298 -finishShotGunRotation__Q34Game6Houdai3ObjFv=0x802C12BC -isShotGunRotation__Q34Game6Houdai3ObjFv=0x802C12E0 -isShotGunLockOn__Q34Game6Houdai3ObjFv=0x802C1304 -isFinishShotGun__Q34Game6Houdai3ObjFv=0x802C1328 -emitShotGun__Q34Game6Houdai3ObjFv=0x802C134C -forceFinishShotGun__Q34Game6Houdai3ObjFv=0x802C13A8 -setupCollision__Q34Game6Houdai3ObjFv=0x802C13CC -startBossChargeBGM__Q34Game6Houdai3ObjFv=0x802C1404 -startBossAttackLoopBGM__Q34Game6Houdai3ObjFv=0x802C14CC -finishBossAttackLoopBGM__Q34Game6Houdai3ObjFv=0x802C15A8 -startStoneStateBossAttackLoopBGM__Q34Game6Houdai3ObjFv=0x802C1680 -finishStoneStateBossAttackLoopBGM__Q34Game6Houdai3ObjFv=0x802C1754 -startBossFlickBGM__Q34Game6Houdai3ObjFv=0x802C1828 -updateBossBGM__Q34Game6Houdai3ObjFv=0x802C18F0 -resetBossAppearBGM__Q34Game6Houdai3ObjFv=0x802C19EC -setBossAppearBGM__Q34Game6Houdai3ObjFv=0x802C1AA8 -createEffect__Q34Game6Houdai3ObjFv=0x802C1B64 -setupEffect__Q34Game6Houdai3ObjFv=0x802C2130 -createOnGroundEffect__Q34Game6Houdai3ObjFiPQ24Game8WaterBox=0x802C22D8 -createOffGroundEffect__Q34Game6Houdai3ObjFiPQ24Game8WaterBox=0x802C265C -startPinchJointEffect__Q34Game6Houdai3ObjFv=0x802C27C4 -finishPinchJointEffect__Q34Game6Houdai3ObjFv=0x802C2820 -createHoudaiDeadEffect__Q34Game6Houdai3ObjFv=0x802C2878 -updatePinchLife__Q34Game6Houdai3ObjFv=0x802C2A0C -createAppearEffect__Q34Game6Houdai3ObjFv=0x802C2B2C -createAppearHahenEffect__Q34Game6Houdai3ObjFv=0x802C2C1C -createAppearFootEffect__Q34Game6Houdai3ObjFi=0x802C2C50 -startSteamEffect__Q34Game6Houdai3ObjFb=0x802C2C8C -finishSteamEffect__Q34Game6Houdai3ObjFv=0x802C2D08 -startChimneyEffect__Q34Game6Houdai3ObjFv=0x802C2D74 -finishChimneyEffect__Q34Game6Houdai3ObjFv=0x802C2DD0 -createShotGunOpenEffect__Q34Game6Houdai3ObjFv=0x802C2E28 -createDeadBombEffect__Q34Game6Houdai3ObjFv=0x802C2EB8 -effectDrawOn__Q34Game6Houdai3ObjFv=0x802C3110 -effectDrawOff__Q34Game6Houdai3ObjFv=0x802C328C -getName__Q23efx9ArgPosPosFv=0x802C3408 -__dt__Q23efx13THdamaSteamBdFv=0x802C3414 -__dt__Q23efx14THdamaOnSteam1Fv=0x802C34B0 -__dt__Q23efx14THdamaOnHahen1Fv=0x802C354C -__dt__Q23efx11THdamaHahenFv=0x802C35E8 -__dt__Q23efx13THdamaSteamStFv=0x802C3684 -__dt__Q23efx11THdamaSteamFv=0x802C3720 -__dt__Q23efx14THdamaOnHahen2Fv=0x802C37BC -inWaterCallback__Q34Game6Houdai3ObjFPQ24Game8WaterBox=0x802C3858 -outWaterCallback__Q34Game6Houdai3ObjFv=0x802C385C -getDamageCoeStoneState__Q34Game6Houdai3ObjFv=0x802C3860 -throwupItemInDeathProcedure__Q34Game6Houdai3ObjFv=0x802C3868 -getEnemyTypeID__Q34Game6Houdai3ObjFv=0x802C386C -__sinit_Houdai_cpp=0x802C3874 -@1056@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x802C389C -@1056@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802C38B0 -@1056@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802C38C4 -@1056@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802C38D8 -@1056@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802C38EC -@1056@12@viewGetShape__Q24Game9EnemyBaseFv=0x802C3900 -@4@__dt__Q23efx14THdamaOnHahen2Fv=0x802C3914 -@4@__dt__Q23efx11THdamaSteamFv=0x802C391C -@4@__dt__Q23efx13THdamaSteamStFv=0x802C3924 -@4@__dt__Q23efx11THdamaHahenFv=0x802C392C -@4@__dt__Q23efx14THdamaOnHahen1Fv=0x802C3934 -@4@__dt__Q23efx14THdamaOnSteam1Fv=0x802C393C -@4@__dt__Q23efx13THdamaSteamBdFv=0x802C3944 -levelRotationCallBack__Q24Game6HoudaiFP8J3DJointi=0x802C394C -verticalRotationCallBack__Q24Game6HoudaiFP8J3DJointi=0x802C3988 -update__Q34Game6Houdai17HoudaiShotGunNodeFv=0x802C39C4 -__ct__Q34Game6Houdai16HoudaiShotGunMgrFPQ34Game6Houdai3Obj=0x802C44D4 -setupShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4714 -resetCallBack__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C47C8 -setCallBack__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C47D4 -startRotation__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C47DC -finishRotation__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4800 -isShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4814 -isShotGunLockOn__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C481C -isFinishShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4824 -setShotGunTarget__Q34Game6Houdai16HoudaiShotGunMgrFR10Vector3=0x802C482C -emitShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4848 -doUpdate__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4C08 -doUpdateCommon__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4C8C -forceFinishShotGun__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4D04 -searchShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4D88 -returnShotGunRotation__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C4FBC -rotateLevel__Q34Game6Houdai16HoudaiShotGunMgrFP8J3DJoint=0x802C5134 -rotateVertical__Q34Game6Houdai16HoudaiShotGunMgrFP8J3DJoint=0x802C519C -finishLockOnEffect__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C53F4 -setShotGunLockOnPosition__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C5424 -effectDrawOn__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C5674 -effectDrawOff__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C5710 -startStoneStateEffectOff__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C57AC -finishStoneStateEffectOn__Q34Game6Houdai16HoudaiShotGunMgrFv=0x802C57DC -__dt__Q23efx11THdamaSightFv=0x802C580C -getName__Q23efx6ArgDirFv=0x802C58A8 -__dt__Q34Game6Houdai17HoudaiShotGunNodeFv=0x802C58B0 -@4@__dt__Q23efx11THdamaSightFv=0x802C5910 -__ct__Q34Game10LeafChappy3MgrFiUc=0x802C5918 -birth__Q34Game10LeafChappy3MgrFRQ24Game13EnemyBirthArg=0x802C5968 -doAlloc__Q34Game10LeafChappy3MgrFv=0x802C59B0 -createObj__Q34Game10LeafChappy3MgrFi=0x802C59F8 -__dt__Q34Game10LeafChappy3ObjFv=0x802C5A58 -getEnemy__Q34Game10LeafChappy3MgrFi=0x802C5B48 -__dt__Q34Game10LeafChappy3MgrFv=0x802C5B58 -getEnemyTypeID__Q34Game10LeafChappy3MgrFv=0x802C5C08 -@4@__dt__Q34Game10LeafChappy3MgrFv=0x802C5C10 -__ct__Q34Game10LeafChappy3ObjFv=0x802C5C18 -doUpdate__Q34Game10LeafChappy3ObjFv=0x802C5CB0 -doDirectDraw__Q34Game10LeafChappy3ObjFR8Graphics=0x802C5D70 -getShadowParam__Q34Game10LeafChappy3ObjFRQ24Game11ShadowParam=0x802C5D74 -initMouthSlots__Q34Game10LeafChappy3ObjFv=0x802C5E38 -initWalkSmokeEffect__Q34Game10LeafChappy3ObjFv=0x802C5EEC -doBecomeCarcass__Q34Game10LeafChappy3ObjFv=0x802C5F50 -doUpdateCarcass__Q34Game10LeafChappy3ObjFv=0x802C5F70 -doGetLifeGaugeParam__Q34Game10LeafChappy3ObjFRQ24Game14LifeGaugeParam=0x802C5F90 -birthChildren__Q34Game10LeafChappy3ObjFRQ24Game13EnemyBirthArg=0x802C5FB0 -startEnemyRumble__Q34Game10LeafChappy3ObjFv=0x802C61F4 -createFootmarks__Q34Game10LeafChappy3ObjFv=0x802C6270 -getDownSmokeScale__Q34Game10LeafChappy3ObjFv=0x802C62C0 -getEnemyTypeID__Q34Game10LeafChappy3ObjFv=0x802C62C8 -createChappyRelation__Q34Game10LeafChappy3ObjFv=0x802C62D0 -resetChappyRelation__Q34Game10LeafChappy3ObjFv=0x802C62D4 -getChappyRelation__Q34Game10LeafChappy3ObjFv=0x802C62D8 -getFootmarks__Q34Game10LeafChappy3ObjFv=0x802C62E0 -init__Q34Game7BigFoot3FSMFPQ24Game9EnemyBase=0x802C62E8 -init__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802C650C -exec__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBase=0x802C65D8 -cleanup__Q34Game7BigFoot9StateDeadFPQ24Game9EnemyBase=0x802C666C -init__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802C6670 -exec__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBase=0x802C66F4 -cleanup__Q34Game7BigFoot9StateStayFPQ24Game9EnemyBase=0x802C67AC -init__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x802C67B0 -exec__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBase=0x802C6864 -cleanup__Q34Game7BigFoot9StateLandFPQ24Game9EnemyBase=0x802C69DC -init__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802C6A38 -exec__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBase=0x802C6AA8 -cleanup__Q34Game7BigFoot9StateWaitFPQ24Game9EnemyBase=0x802C6B9C -init__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802C6BA0 -exec__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBase=0x802C6C0C -cleanup__Q34Game7BigFoot10StateFlickFPQ24Game9EnemyBase=0x802C6CCC -init__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802C6D14 -exec__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBase=0x802C6D84 -cleanup__Q34Game7BigFoot9StateWalkFPQ24Game9EnemyBase=0x802C6E84 -__sinit_BigFootState_cpp=0x802C6EBC -setAnimMgr__Q34Game7BigFoot14ProperAnimatorFPQ28SysShape7AnimMgr=0x802C6EE4 -getAnimator__Q34Game7BigFoot14ProperAnimatorFi=0x802C6EEC -__dt__Q34Game7BigFoot14ProperAnimatorFv=0x802C6EF4 -getAnimator__Q34Game7BigFoot14ProperAnimatorFv=0x802C6F50 -__ct__Q34Game7BigFoot3MgrFiUc=0x802C6F58 -doAlloc__Q34Game7BigFoot3MgrFv=0x802C6FA8 -__ct__Q34Game7BigFoot5ParmsFv=0x802C6FF0 -__ct__Q44Game7BigFoot5Parms11ProperParmsFv=0x802C7038 -createObj__Q34Game7BigFoot3MgrFi=0x802C7410 -__dt__Q34Game7BigFoot3ObjFv=0x802C7470 -getEnemy__Q34Game7BigFoot3MgrFi=0x802C752C -loadModelData__Q34Game7BigFoot3MgrFv=0x802C753C -loadTexData__Q34Game7BigFoot3MgrFv=0x802C75A4 -createModel__Q34Game7BigFoot3MgrFv=0x802C7658 -__dt__Q34Game7BigFoot3MgrFv=0x802C76D4 -getEnemyTypeID__Q34Game7BigFoot3MgrFv=0x802C7784 -doLoadBmd__Q34Game7BigFoot3MgrFPv=0x802C778C -read__Q34Game7BigFoot5ParmsFR6Stream=0x802C77B8 -@4@__dt__Q34Game7BigFoot3MgrFv=0x802C7808 -__ct__Q34Game7BigFoot16BigFootShadowMgrFPQ34Game7BigFoot3Obj=0x802C7810 -init__Q34Game7BigFoot16BigFootShadowMgrFv=0x802C7A1C -setJointPosPtr__Q34Game7BigFoot16BigFootShadowMgrFiiP10Vector3=0x802C7B68 -update__Q34Game7BigFoot16BigFootShadowMgrFv=0x802C7B80 -invokeOnGround__Q34Game7BigFoot21BigFootGroundCallBackFiPQ24Game8WaterBox=0x802C7EF0 -invokeOffGround__Q34Game7BigFoot21BigFootGroundCallBackFiPQ24Game8WaterBox=0x802C7F14 -__ct__Q34Game7BigFoot3ObjFv=0x802C7F38 -setInitialSetting__Q34Game7BigFoot3ObjFPQ24Game21EnemyInitialParamBase=0x802C80A4 -onInit__Q34Game7BigFoot3ObjFPQ24Game15CreatureInitArg=0x802C80A8 -onKill__Q34Game7BigFoot3ObjFPQ24Game15CreatureKillArg=0x802C81F0 -doUpdate__Q34Game7BigFoot3ObjFv=0x802C8234 -doUpdateCommon__Q34Game7BigFoot3ObjFv=0x802C8284 -doAnimationCullingOff__Q34Game7BigFoot3ObjFv=0x802C82B8 -doDirectDraw__Q34Game7BigFoot3ObjFR8Graphics=0x802C8350 -doDebugDraw__Q34Game7BigFoot3ObjFR8Graphics=0x802C8354 -setFSM__Q34Game7BigFoot3ObjFPQ34Game7BigFoot3FSM=0x802C8374 -getShadowParam__Q34Game7BigFoot3ObjFRQ24Game11ShadowParam=0x802C83C0 -needShadow__Q34Game7BigFoot3ObjFv=0x802C83FC -damageCallBack__Q34Game7BigFoot3ObjFPQ24Game8CreaturefP8CollPart=0x802C844C -collisionCallback__Q34Game7BigFoot3ObjFRQ24Game9CollEvent=0x802C84E8 -doStartStoneState__Q34Game7BigFoot3ObjFv=0x802C8694 -doFinishStoneState__Q34Game7BigFoot3ObjFv=0x802C86D8 -doStartMovie__Q34Game7BigFoot3ObjFv=0x802C8744 -doEndMovie__Q34Game7BigFoot3ObjFv=0x802C8764 -getThrowupItemPosition__Q34Game7BigFoot3ObjFP10Vector3=0x802C8784 -getThrowupItemVelocity__Q34Game7BigFoot3ObjFP10Vector3=0x802C87E4 -resetFlickWalkTimeMax__Q34Game7BigFoot3ObjFv=0x802C87F8 -setFlickWalkTimeMax__Q34Game7BigFoot3ObjFv=0x802C8884 -getTargetPosition__Q34Game7BigFoot3ObjFv=0x802C8910 -createIKSystem__Q34Game7BigFoot3ObjFv=0x802C8D00 -setupIKSystem__Q34Game7BigFoot3ObjFv=0x802C8E0C -setIKParameter__Q34Game7BigFoot3ObjFv=0x802C8F30 -setIKSystemTargetPosition__Q34Game7BigFoot3ObjFR10Vector3=0x802C9054 -updateIKSystem__Q34Game7BigFoot3ObjFv=0x802C9074 -doAnimationIKSystem__Q34Game7BigFoot3ObjFv=0x802C90D4 -finishAnimationIKSystem__Q34Game7BigFoot3ObjFv=0x802C9134 -startProgramedIK__Q34Game7BigFoot3ObjFv=0x802C9158 -startIKMotion__Q34Game7BigFoot3ObjFv=0x802C917C -finishIKMotion__Q34Game7BigFoot3ObjFv=0x802C91A0 -forceFinishIKMotion__Q34Game7BigFoot3ObjFv=0x802C91C4 -isFinishIKMotion__Q34Game7BigFoot3ObjFv=0x802C91E8 -startBlendMotion__Q34Game7BigFoot3ObjFv=0x802C920C -finishBlendMotion__Q34Game7BigFoot3ObjFv=0x802C9230 -getTraceCentrePosition__Q34Game7BigFoot3ObjFv=0x802C9254 -isCollisionCheck__Q34Game7BigFoot3ObjFP8CollPart=0x802C9274 -createShadowSystem__Q34Game7BigFoot3ObjFv=0x802C9298 -setupShadowSystem__Q34Game7BigFoot3ObjFv=0x802C92E0 -doAnimationShadowSystem__Q34Game7BigFoot3ObjFv=0x802C9354 -createMaterialAnimation__Q34Game7BigFoot3ObjFv=0x802C9378 -startMaterialAnimation__Q34Game7BigFoot3ObjFv=0x802C93CC -updateMaterialAnimation__Q34Game7BigFoot3ObjFv=0x802C9408 -setupCollision__Q34Game7BigFoot3ObjFv=0x802C94F8 -createItemAndEnemy__Q34Game7BigFoot3ObjFv=0x802C9588 -startBossChargeBGM__Q34Game7BigFoot3ObjFv=0x802C962C -startBossAttackLoopBGM__Q34Game7BigFoot3ObjFv=0x802C96F4 -finishBossAttackLoopBGM__Q34Game7BigFoot3ObjFv=0x802C97BC -startStoneStateBossAttackLoopBGM__Q34Game7BigFoot3ObjFv=0x802C9884 -finishStoneStateBossAttackLoopBGM__Q34Game7BigFoot3ObjFv=0x802C9958 -updateBossBGM__Q34Game7BigFoot3ObjFv=0x802C9A2C -resetBossAppearBGM__Q34Game7BigFoot3ObjFv=0x802C9B28 -setBossAppearBGM__Q34Game7BigFoot3ObjFv=0x802C9BE4 -createEffect__Q34Game7BigFoot3ObjFv=0x802C9CA0 -setupEffect__Q34Game7BigFoot3ObjFv=0x802CA368 -createOnGroundEffect__Q34Game7BigFoot3ObjFiPQ24Game8WaterBox=0x802CA54C -createOffGroundEffect__Q34Game7BigFoot3ObjFiPQ24Game8WaterBox=0x802CA774 -startPinchJointEffect__Q34Game7BigFoot3ObjFv=0x802CA8D8 -finishPinchJointEffect__Q34Game7BigFoot3ObjFv=0x802CAA78 -startDeadEffect__Q34Game7BigFoot3ObjFv=0x802CAAD0 -updatePinchLife__Q34Game7BigFoot3ObjFv=0x802CAC90 -startFurEffect__Q34Game7BigFoot3ObjFv=0x802CAEE4 -finishFurEffect__Q34Game7BigFoot3ObjFv=0x802CAF58 -updateDeadFurEffect__Q34Game7BigFoot3ObjFv=0x802CAFC4 -effectDrawOn__Q34Game7BigFoot3ObjFv=0x802CB02C -effectDrawOff__Q34Game7BigFoot3ObjFv=0x802CB204 -addShadowScale__Q34Game7BigFoot3ObjFv=0x802CB3DC -__dt__Q23efx10TOdamaFur1Fv=0x802CB414 -__dt__Q23efx17TOdamaDeadHahenC2Fv=0x802CB4B0 -__dt__Q23efx17TOdamaDeadHahenC1Fv=0x802CB54C -__dt__Q23efx10TOdamaFur2Fv=0x802CB5E8 -__dt__Q23efx16TOdamaDeadHahenBFv=0x802CB684 -__dt__Q23efx16TOdamaDeadHahenAFv=0x802CB720 -__dt__Q23efx11TOdamaHahenFv=0x802CB7BC -inWaterCallback__Q34Game7BigFoot3ObjFPQ24Game8WaterBox=0x802CB858 -outWaterCallback__Q34Game7BigFoot3ObjFv=0x802CB85C -getDamageCoeStoneState__Q34Game7BigFoot3ObjFv=0x802CB860 -throwupItemInDeathProcedure__Q34Game7BigFoot3ObjFv=0x802CB868 -getEnemyTypeID__Q34Game7BigFoot3ObjFv=0x802CB86C -__sinit_BigFoot_cpp=0x802CB874 -@1196@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x802CB89C -@1196@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802CB8B0 -@1196@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802CB8C4 -@1196@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802CB8D8 -@1196@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802CB8EC -@1196@12@viewGetShape__Q24Game9EnemyBaseFv=0x802CB900 -@4@__dt__Q23efx11TOdamaHahenFv=0x802CB914 -@4@__dt__Q23efx16TOdamaDeadHahenAFv=0x802CB91C -@4@__dt__Q23efx16TOdamaDeadHahenBFv=0x802CB924 -@4@__dt__Q23efx10TOdamaFur2Fv=0x802CB92C -@4@__dt__Q23efx17TOdamaDeadHahenC1Fv=0x802CB934 -@4@__dt__Q23efx17TOdamaDeadHahenC2Fv=0x802CB93C -@4@__dt__Q23efx10TOdamaFur1Fv=0x802CB944 -init__Q34Game10SnakeWhole3FSMFPQ24Game9EnemyBase=0x802CB94C -init__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CBD1C -exec__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBase=0x802CBDE0 -cleanup__Q34Game10SnakeWhole9StateDeadFPQ24Game9EnemyBase=0x802CBFA0 -init__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CBFA4 -exec__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBase=0x802CC0D0 -cleanup__Q34Game10SnakeWhole9StateStayFPQ24Game9EnemyBase=0x802CC6E8 -init__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBasePQ24Game8StateArg=0x802CC780 -exec__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBase=0x802CC854 -cleanup__Q34Game10SnakeWhole12StateAppear1FPQ24Game9EnemyBase=0x802CCB4C -init__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBasePQ24Game8StateArg=0x802CCBB4 -exec__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBase=0x802CCC88 -cleanup__Q34Game10SnakeWhole12StateAppear2FPQ24Game9EnemyBase=0x802CCFA0 -init__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CD008 -exec__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBase=0x802CD06C -cleanup__Q34Game10SnakeWhole14StateDisappearFPQ24Game9EnemyBase=0x802CD280 -init__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CD2F8 -exec__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBase=0x802CD360 -cleanup__Q34Game10SnakeWhole9StateWaitFPQ24Game9EnemyBase=0x802CD4F8 -init__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CD4FC -exec__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBase=0x802CD544 -cleanup__Q34Game10SnakeWhole9StateWalkFPQ24Game9EnemyBase=0x802CD7CC -init__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CD7DC -exec__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBase=0x802CD824 -cleanup__Q34Game10SnakeWhole9StateHomeFPQ24Game9EnemyBase=0x802CD9C8 -init__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CD9D8 -exec__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBase=0x802CDA24 -cleanup__Q34Game10SnakeWhole11StateAttackFPQ24Game9EnemyBase=0x802CDDF4 -init__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CDE04 -exec__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBase=0x802CDE40 -cleanup__Q34Game10SnakeWhole8StateEatFPQ24Game9EnemyBase=0x802CE030 -init__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBasePQ24Game8StateArg=0x802CE034 -exec__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBase=0x802CE074 -cleanup__Q34Game10SnakeWhole13StateStruggleFPQ24Game9EnemyBase=0x802CE23C -__sinit_SnakeWholeState_cpp=0x802CE240 -setAnimMgr__Q34Game10SnakeWhole14ProperAnimatorFPQ28SysShape7AnimMgr=0x802CE268 -getAnimator__Q34Game10SnakeWhole14ProperAnimatorFi=0x802CE270 -__dt__Q34Game10SnakeWhole14ProperAnimatorFv=0x802CE278 -getAnimator__Q34Game10SnakeWhole14ProperAnimatorFv=0x802CE2D4 -__ct__Q34Game10SnakeWhole3MgrFiUc=0x802CE2DC -doAlloc__Q34Game10SnakeWhole3MgrFv=0x802CE32C -__ct__Q34Game10SnakeWhole5ParmsFv=0x802CE374 -createObj__Q34Game10SnakeWhole3MgrFi=0x802CE4C8 -__dt__Q34Game10SnakeWhole3ObjFv=0x802CE528 -getEnemy__Q34Game10SnakeWhole3MgrFi=0x802CE5E4 -loadModelData__Q34Game10SnakeWhole3MgrFv=0x802CE5F4 -__dt__Q34Game10SnakeWhole3MgrFv=0x802CE65C -getEnemyTypeID__Q34Game10SnakeWhole3MgrFv=0x802CE70C -doLoadBmd__Q34Game10SnakeWhole3MgrFPv=0x802CE714 -read__Q34Game10SnakeWhole5ParmsFR6Stream=0x802CE740 -@4@__dt__Q34Game10SnakeWhole3MgrFv=0x802CE790 -__ct__Q34Game10SnakeWhole3ObjFv=0x802CE798 -setInitialSetting__Q34Game10SnakeWhole3ObjFPQ24Game21EnemyInitialParamBase=0x802CE904 -onInit__Q34Game10SnakeWhole3ObjFPQ24Game15CreatureInitArg=0x802CE908 -doUpdate__Q34Game10SnakeWhole3ObjFv=0x802CE9D4 -doUpdateCommon__Q34Game10SnakeWhole3ObjFv=0x802CEA24 -doAnimationUpdateAnimator__Q34Game10SnakeWhole3ObjFv=0x802CEA58 -doAnimationCullingOff__Q34Game10SnakeWhole3ObjFv=0x802CEA8C -doDirectDraw__Q34Game10SnakeWhole3ObjFR8Graphics=0x802CEAC8 -doDebugDraw__Q34Game10SnakeWhole3ObjFR8Graphics=0x802CEACC -setFSM__Q34Game10SnakeWhole3ObjFPQ34Game10SnakeWhole3FSM=0x802CEAEC -getShadowParam__Q34Game10SnakeWhole3ObjFRQ24Game11ShadowParam=0x802CEB38 -damageCallBack__Q34Game10SnakeWhole3ObjFPQ24Game8CreaturefP8CollPart=0x802CEBE8 -doStartStoneState__Q34Game10SnakeWhole3ObjFv=0x802CEC80 -doFinishStoneState__Q34Game10SnakeWhole3ObjFv=0x802CECA0 -startCarcassMotion__Q34Game10SnakeWhole3ObjFv=0x802CECE8 -doStartMovie__Q34Game10SnakeWhole3ObjFv=0x802CED10 -doEndMovie__Q34Game10SnakeWhole3ObjFv=0x802CED30 -initMouthSlots__Q34Game10SnakeWhole3ObjFv=0x802CED50 -getThrowupItemPosition__Q34Game10SnakeWhole3ObjFP10Vector3=0x802CEE0C -isOutTerritory__Q34Game10SnakeWhole3ObjFv=0x802CEE64 -isInHomeRange__Q34Game10SnakeWhole3ObjFv=0x802CEEA0 -setJumpMove__Q34Game10SnakeWhole3ObjFR10Vector3=0x802CEEDC -updateFace__Q34Game10SnakeWhole3ObjFv=0x802CF188 -updateConstraint__Q34Game10SnakeWhole3ObjFv=0x802CF200 -appearNearByTarget__Q34Game10SnakeWhole3ObjFPQ24Game8Creature=0x802CF280 -setAttackPosition__Q34Game10SnakeWhole3ObjFv=0x802CF7B0 -getAttackPiki__Q34Game10SnakeWhole3ObjFi=0x802CF9BC -getAttackNavi__Q34Game10SnakeWhole3ObjFi=0x802CFFB0 -getSearchedTarget__Q34Game10SnakeWhole3ObjFv=0x802D0578 -getSwallowSlot__Q34Game10SnakeWhole3ObjFv=0x802D05C8 -isSwallowPikmin__Q34Game10SnakeWhole3ObjFv=0x802D0630 -getStickHeadPikmin__Q34Game10SnakeWhole3ObjFv=0x802D069C -createJointCallBack__Q34Game10SnakeWhole3ObjFv=0x802D08E8 -setupJointCallBack__Q34Game10SnakeWhole3ObjFv=0x802D0930 -doAnimationJointCallBack__Q34Game10SnakeWhole3ObjFv=0x802D0954 -finishAnimationJointCallBack__Q34Game10SnakeWhole3ObjFv=0x802D0978 -startJointCallBack__Q34Game10SnakeWhole3ObjFv=0x802D099C -returnJointCallBack__Q34Game10SnakeWhole3ObjFv=0x802D0A54 -finishJointCallBack__Q34Game10SnakeWhole3ObjFv=0x802D0ADC -setupCollision__Q34Game10SnakeWhole3ObjFv=0x802D0B00 -lifeIncrement__Q34Game10SnakeWhole3ObjFv=0x802D0B38 -createShadowSystem__Q34Game10SnakeWhole3ObjFv=0x802D0B78 -setupShadowSystem__Q34Game10SnakeWhole3ObjFv=0x802D0BC0 -doAnimationShadowSystem__Q34Game10SnakeWhole3ObjFv=0x802D0BE4 -startJointShadow__Q34Game10SnakeWhole3ObjFv=0x802D0C08 -finishJointShadow__Q34Game10SnakeWhole3ObjFv=0x802D0C2C -deleteJointShadow__Q34Game10SnakeWhole3ObjFv=0x802D0C50 -startBossAttackBGM__Q34Game10SnakeWhole3ObjFv=0x802D0C90 -startBossFlickBGM__Q34Game10SnakeWhole3ObjFv=0x802D0D70 -updateBossBGM__Q34Game10SnakeWhole3ObjFv=0x802D0E38 -resetBossAppearBGM__Q34Game10SnakeWhole3ObjFv=0x802D0F34 -setBossAppearBGM__Q34Game10SnakeWhole3ObjFv=0x802D1004 -createEffect__Q34Game10SnakeWhole3ObjFv=0x802D10D0 -setupEffect__Q34Game10SnakeWhole3ObjFv=0x802D1138 -createAppearEffect__Q34Game10SnakeWhole3ObjFi=0x802D11B0 -createDeadStartEffect__Q34Game10SnakeWhole3ObjFv=0x802D1384 -createDeadFinishEffect__Q34Game10SnakeWhole3ObjFv=0x802D13B8 -createWalkSmokeEffect__Q34Game10SnakeWhole3ObjFf=0x802D144C -effectDrawOn__Q34Game10SnakeWhole3ObjFv=0x802D1488 -effectDrawOff__Q34Game10SnakeWhole3ObjFv=0x802D14B8 -createEfxHamon__Q34Game10SnakeWhole3ObjFv=0x802D14E8 -isUnderground__Q34Game10SnakeWhole3ObjFv=0x802D1530 -getFitEffectPos__Q34Game10SnakeWhole3ObjFv=0x802D1538 -inWaterCallback__Q34Game10SnakeWhole3ObjFPQ24Game8WaterBox=0x802D1590 -outWaterCallback__Q34Game10SnakeWhole3ObjFv=0x802D1594 -getDamageCoeStoneState__Q34Game10SnakeWhole3ObjFv=0x802D1598 -getMouthSlots__Q34Game10SnakeWhole3ObjFv=0x802D15A0 -throwupItemInDeathProcedure__Q34Game10SnakeWhole3ObjFv=0x802D15A8 -getDownSmokeScale__Q34Game10SnakeWhole3ObjFv=0x802D15AC -getEnemyTypeID__Q34Game10SnakeWhole3ObjFv=0x802D15B4 -@816@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x802D15BC -@816@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802D15D0 -@816@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802D15E4 -@816@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802D15F8 -@816@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802D160C -@816@12@viewGetShape__Q24Game9EnemyBaseFv=0x802D1620 -SnakeJointCallBack__4GameFP8J3DJointi=0x802D1634 -__ct__Q24Game13SnakeJointMgrFPQ24Game9EnemyBase=0x802D166C -setupCallBackJoint__Q24Game13SnakeJointMgrFv=0x802D16A8 -startModify__Q24Game13SnakeJointMgrFff=0x802D1760 -returnModify__Q24Game13SnakeJointMgrFf=0x802D1780 -finishModify__Q24Game13SnakeJointMgrFv=0x802D179C -doAnimation__Q24Game13SnakeJointMgrFv=0x802D17A8 -finishAnimation__Q24Game13SnakeJointMgrFv=0x802D1828 -makeMatrix__Q24Game13SnakeJointMgrFv=0x802D1834 -init__Q34Game9OniKurage3FSMFPQ24Game9EnemyBase=0x802D1AE0 -init__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D1F04 -exec__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBase=0x802D1FD0 -cleanup__Q34Game9OniKurage9StateDeadFPQ24Game9EnemyBase=0x802D215C -init__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D2160 -exec__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBase=0x802D21BC -cleanup__Q34Game9OniKurage9StateWaitFPQ24Game9EnemyBase=0x802D2304 -init__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D2308 -exec__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBase=0x802D237C -cleanup__Q34Game9OniKurage9StateMoveFPQ24Game9EnemyBase=0x802D2558 -init__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D255C -exec__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBase=0x802D25C8 -cleanup__Q34Game9OniKurage10StateChaseFPQ24Game9EnemyBase=0x802D2724 -init__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D2748 -exec__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBase=0x802D27C8 -cleanup__Q34Game9OniKurage11StateAttackFPQ24Game9EnemyBase=0x802D2AE8 -init__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D2B2C -exec__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBase=0x802D2B94 -cleanup__Q34Game9OniKurage9StateFallFPQ24Game9EnemyBase=0x802D2D14 -init__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D2D38 -exec__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBase=0x802D2DCC -cleanup__Q34Game9OniKurage9StateDropFPQ24Game9EnemyBase=0x802D2F30 -init__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D2F54 -exec__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBase=0x802D3014 -cleanup__Q34Game9OniKurage9StateLandFPQ24Game9EnemyBase=0x802D3094 -init__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D30B8 -exec__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBase=0x802D3120 -cleanup__Q34Game9OniKurage12StateTakeOffFPQ24Game9EnemyBase=0x802D3210 -init__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D3234 -exec__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBase=0x802D3294 -cleanup__Q34Game9OniKurage11StateGroundFPQ24Game9EnemyBase=0x802D33CC -init__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D33F0 -exec__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBase=0x802D34D0 -cleanup__Q34Game9OniKurage13StateFlyFlickFPQ24Game9EnemyBase=0x802D364C -init__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D3670 -exec__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBase=0x802D374C -cleanup__Q34Game9OniKurage16StateGroundFlickFPQ24Game9EnemyBase=0x802D38D8 -__sinit_OniKurageState_cpp=0x802D38FC -setAnimMgr__Q34Game9OniKurage14ProperAnimatorFPQ28SysShape7AnimMgr=0x802D3924 -getAnimator__Q34Game9OniKurage14ProperAnimatorFi=0x802D392C -__dt__Q34Game9OniKurage14ProperAnimatorFv=0x802D3934 -getAnimator__Q34Game9OniKurage14ProperAnimatorFv=0x802D3990 -__ct__Q34Game9OniKurage3MgrFiUc=0x802D3998 -doAlloc__Q34Game9OniKurage3MgrFv=0x802D39E8 -__ct__Q34Game9OniKurage5ParmsFv=0x802D3A30 -__ct__Q44Game9OniKurage5Parms11ProperParmsFv=0x802D3A78 -createObj__Q34Game9OniKurage3MgrFi=0x802D3CB4 -__dt__Q34Game9OniKurage3ObjFv=0x802D3D14 -getEnemy__Q34Game9OniKurage3MgrFi=0x802D3DD0 -loadModelData__Q34Game9OniKurage3MgrFv=0x802D3DE0 -__dt__Q34Game9OniKurage3MgrFv=0x802D3E48 -getEnemyTypeID__Q34Game9OniKurage3MgrFv=0x802D3EF8 -doLoadBmd__Q34Game9OniKurage3MgrFPv=0x802D3F00 -read__Q34Game9OniKurage5ParmsFR6Stream=0x802D3F2C -@4@__dt__Q34Game9OniKurage3MgrFv=0x802D3F7C -__ct__Q34Game9OniKurage3ObjFv=0x802D3F84 -setInitialSetting__Q34Game9OniKurage3ObjFPQ24Game21EnemyInitialParamBase=0x802D40C4 -onInit__Q34Game9OniKurage3ObjFPQ24Game15CreatureInitArg=0x802D40C8 -onKill__Q34Game9OniKurage3ObjFPQ24Game15CreatureKillArg=0x802D4178 -doUpdate__Q34Game9OniKurage3ObjFv=0x802D41CC -doUpdateCommon__Q34Game9OniKurage3ObjFv=0x802D42D4 -doDirectDraw__Q34Game9OniKurage3ObjFR8Graphics=0x802D4308 -doDebugDraw__Q34Game9OniKurage3ObjFR8Graphics=0x802D430C -setFSM__Q34Game9OniKurage3ObjFPQ34Game9OniKurage3FSM=0x802D432C -getShadowParam__Q34Game9OniKurage3ObjFRQ24Game11ShadowParam=0x802D4378 -damageCallBack__Q34Game9OniKurage3ObjFPQ24Game8CreaturefP8CollPart=0x802D4484 -doStartStoneState__Q34Game9OniKurage3ObjFv=0x802D44BC -doFinishStoneState__Q34Game9OniKurage3ObjFv=0x802D4500 -doStartWaitingBirthTypeDrop__Q34Game9OniKurage3ObjFv=0x802D45B8 -doFinishWaitingBirthTypeDrop__Q34Game9OniKurage3ObjFv=0x802D45EC -doStartMovie__Q34Game9OniKurage3ObjFv=0x802D4620 -doEndMovie__Q34Game9OniKurage3ObjFv=0x802D4640 -initMouthSlots__Q34Game9OniKurage3ObjFv=0x802D4660 -setHeightVelocity__Q34Game9OniKurage3ObjFff=0x802D4728 -setRandTarget__Q34Game9OniKurage3ObjFv=0x802D47C0 -getMovePitchOffset__Q34Game9OniKurage3ObjFv=0x802D4998 -getAttackPitchOffset__Q34Game9OniKurage3ObjFv=0x802D4A3C -getFlickPitchOffset__Q34Game9OniKurage3ObjFv=0x802D4BE4 -getTakeOffPitchOffset__Q34Game9OniKurage3ObjFv=0x802D4D8C -getFallPitchOffset__Q34Game9OniKurage3ObjFf=0x802D4ED0 -updateFallTimer__Q34Game9OniKurage3ObjFv=0x802D5038 -getFlyingNextState__Q34Game9OniKurage3ObjFv=0x802D5068 -getSearchedTarget__Q34Game9OniKurage3ObjFf=0x802D510C -isSuck__Q34Game9OniKurage3ObjFfPQ24Game8Creature=0x802D544C -suckPikmin__Q34Game9OniKurage3ObjFf=0x802D5684 -suckNavi__Q34Game9OniKurage3ObjFf=0x802D5AB8 -updateCollPartOffset__Q34Game9OniKurage3ObjFv=0x802D6028 -isFinishNaviSuck__Q34Game9OniKurage3ObjFv=0x802D6294 -isNaviSucked__Q34Game9OniKurage3ObjFv=0x802D6394 -flickStickNavi__Q34Game9OniKurage3ObjFb=0x802D63BC -escapeCheckNavi__Q34Game9OniKurage3ObjFv=0x802D6658 -createEffect__Q34Game9OniKurage3ObjFv=0x802D6788 -setupEffect__Q34Game9OniKurage3ObjFv=0x802D6AC8 -startEyeHireBodyEffect__Q34Game9OniKurage3ObjFv=0x802D6B54 -finishEyeBodyEffect__Q34Game9OniKurage3ObjFv=0x802D6BDC -setHireEffectLife__Q34Game9OniKurage3ObjFs=0x802D6C58 -finishHireEffect__Q34Game9OniKurage3ObjFv=0x802D6C7C -startSuckEffect__Q34Game9OniKurage3ObjFR10Vector3=0x802D6CCC -updateSuckEffect__Q34Game9OniKurage3ObjFR10Vector3=0x802D6D24 -finishSuckEffect__Q34Game9OniKurage3ObjFv=0x802D6D48 -createFlickNaviEffect__Q34Game9OniKurage3ObjFv=0x802D6D78 -createBodyBombEffect__Q34Game9OniKurage3ObjFv=0x802D6DAC -createDownEffect__Q34Game9OniKurage3ObjFv=0x802D6E48 -getDownSmokeScale__Q34Game9OniKurage3ObjFv=0x802D6E8C -effectDrawOn__Q34Game9OniKurage3ObjFv=0x802D6E94 -effectDrawOff__Q34Game9OniKurage3ObjFv=0x802D6F48 -__dt__Q23efx14TKurageDeadrunFv=0x802D6FFC -__dt__Q23efx11TKurageGepuFv=0x802D7098 -__dt__Q23efx11TKurageKiraFv=0x802D7134 -__dt__Q23efx10TKurageEyeFv=0x802D71D0 -inWaterCallback__Q34Game9OniKurage3ObjFPQ24Game8WaterBox=0x802D726C -outWaterCallback__Q34Game9OniKurage3ObjFv=0x802D7270 -getMouthSlots__Q34Game9OniKurage3ObjFv=0x802D7274 -getEnemyTypeID__Q34Game9OniKurage3ObjFv=0x802D727C -__sinit_OniKurage_cpp=0x802D7284 -@4@__dt__Q23efx10TKurageEyeFv=0x802D72AC -@4@__dt__Q23efx11TKurageKiraFv=0x802D72B4 -@4@__dt__Q23efx11TKurageGepuFv=0x802D72BC -@4@__dt__Q23efx14TKurageDeadrunFv=0x802D72C4 -init__Q34Game11BigTreasure3FSMFPQ24Game9EnemyBase=0x802D72CC -init__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D76F8 -exec__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBase=0x802D7778 -cleanup__Q34Game11BigTreasure9StateDeadFPQ24Game9EnemyBase=0x802D79A8 -init__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D79AC -exec__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBase=0x802D7A2C -cleanup__Q34Game11BigTreasure9StateStayFPQ24Game9EnemyBase=0x802D7B28 -init__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D7B2C -exec__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBase=0x802D7BD8 -cleanup__Q34Game11BigTreasure9StateLandFPQ24Game9EnemyBase=0x802D7EFC -init__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D7F2C -exec__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBase=0x802D7FCC -cleanup__Q34Game11BigTreasure9StateWaitFPQ24Game9EnemyBase=0x802D810C -init__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D8130 -exec__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBase=0x802D81D0 -cleanup__Q34Game11BigTreasure13StateItemWaitFPQ24Game9EnemyBase=0x802D82F4 -init__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D8318 -exec__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBase=0x802D838C -cleanup__Q34Game11BigTreasure10StateFlickFPQ24Game9EnemyBase=0x802D8468 -init__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D848C -exec__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBase=0x802D8524 -cleanup__Q34Game11BigTreasure14StatePreAttackFPQ24Game9EnemyBase=0x802D86C0 -init__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D86E4 -exec__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBase=0x802D875C -cleanup__Q34Game11BigTreasure11StateAttackFPQ24Game9EnemyBase=0x802D88A4 -init__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D88E4 -exec__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBase=0x802D8964 -cleanup__Q34Game11BigTreasure12StatePutItemFPQ24Game9EnemyBase=0x802D8A8C -init__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D8AB0 -exec__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBase=0x802D8B24 -cleanup__Q34Game11BigTreasure13StateDropItemFPQ24Game9EnemyBase=0x802D8C10 -init__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D8C34 -exec__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBase=0x802D8CDC -cleanup__Q34Game11BigTreasure9StateWalkFPQ24Game9EnemyBase=0x802D8E20 -init__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802D8E24 -exec__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBase=0x802D8ECC -cleanup__Q34Game11BigTreasure13StateItemWalkFPQ24Game9EnemyBase=0x802D90B8 -__sinit_BigTreasureState_cpp=0x802D90BC -__ct__Q34Game11BigTreasure3MgrFiUc=0x802D90E4 -doAlloc__Q34Game11BigTreasure3MgrFv=0x802D91F4 -__ct__Q34Game11BigTreasure5ParmsFv=0x802D923C -__ct__Q44Game11BigTreasure5Parms11ProperParmsFv=0x802D9284 -createObj__Q34Game11BigTreasure3MgrFi=0x802DA27C -__dt__Q34Game11BigTreasure3ObjFv=0x802DA2DC -getEnemy__Q34Game11BigTreasure3MgrFi=0x802DA398 -loadModelData__Q34Game11BigTreasure3MgrFv=0x802DA3A8 -createModel__Q34Game11BigTreasure3MgrFv=0x802DA410 -__dt__Q34Game11BigTreasure3MgrFv=0x802DA48C -getEnemyTypeID__Q34Game11BigTreasure3MgrFv=0x802DA53C -doLoadBmd__Q34Game11BigTreasure3MgrFPv=0x802DA544 -read__Q34Game11BigTreasure5ParmsFR6Stream=0x802DA570 -@4@__dt__Q34Game11BigTreasure3MgrFv=0x802DA5C0 -__ct__Q34Game11BigTreasure20BigTreasureShadowMgrFPQ34Game11BigTreasure3Obj=0x802DA5C8 -init__Q34Game11BigTreasure20BigTreasureShadowMgrFv=0x802DA9E0 -setKosiJointPosPtr__Q34Game11BigTreasure20BigTreasureShadowMgrFP10Vector3=0x802DAC94 -setJointPosPtr__Q34Game11BigTreasure20BigTreasureShadowMgrFiiP10Vector3=0x802DAC9C -update__Q34Game11BigTreasure20BigTreasureShadowMgrFv=0x802DACB4 -updateTreasureShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm=0x802DB1C4 -updateHandShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm=0x802DB2B8 -updateAntennaShadow__Q34Game11BigTreasure20BigTreasureShadowMgrFRQ24Game15JointShadowParm=0x802DB600 -__dt__Q24Game17TubeShadowPosNodeFv=0x802DBB44 -invokeOnGround__Q34Game11BigTreasure25BigTreasureGroundCallBackFiPQ24Game8WaterBox=0x802DBBB4 -invokeOffGround__Q34Game11BigTreasure25BigTreasureGroundCallBackFiPQ24Game8WaterBox=0x802DBBD8 -__ct__Q34Game11BigTreasure3ObjFv=0x802DBBFC -setInitialSetting__Q34Game11BigTreasure3ObjFPQ24Game21EnemyInitialParamBase=0x802DBD38 -onInit__Q34Game11BigTreasure3ObjFPQ24Game15CreatureInitArg=0x802DBD3C -onKill__Q34Game11BigTreasure3ObjFPQ24Game15CreatureKillArg=0x802DBE9C -doUpdate__Q34Game11BigTreasure3ObjFv=0x802DBEE8 -doUpdateCommon__Q34Game11BigTreasure3ObjFv=0x802DBF34 -doAnimationUpdateAnimator__Q34Game11BigTreasure3ObjFv=0x802DBF70 -doAnimationCullingOff__Q34Game11BigTreasure3ObjFv=0x802DC004 -changeMaterial__Q34Game11BigTreasure3ObjFv=0x802DC09C -doDirectDraw__Q34Game11BigTreasure3ObjFR8Graphics=0x802DC230 -doDebugDraw__Q34Game11BigTreasure3ObjFR8Graphics=0x802DC234 -setFSM__Q34Game11BigTreasure3ObjFPQ34Game11BigTreasure3FSM=0x802DC254 -getShadowParam__Q34Game11BigTreasure3ObjFRQ24Game11ShadowParam=0x802DC2A0 -damageCallBack__Q34Game11BigTreasure3ObjFPQ24Game8CreaturefP8CollPart=0x802DC2DC -hipdropCallBack__Q34Game11BigTreasure3ObjFPQ24Game8CreaturefP8CollPart=0x802DC3DC -doStartStoneState__Q34Game11BigTreasure3ObjFv=0x802DC414 -doFinishStoneState__Q34Game11BigTreasure3ObjFv=0x802DC434 -doStartMovie__Q34Game11BigTreasure3ObjFv=0x802DC47C -doEndMovie__Q34Game11BigTreasure3ObjFv=0x802DC49C -getThrowupItemPosition__Q34Game11BigTreasure3ObjFP10Vector3=0x802DC4BC -getThrowupItemVelocity__Q34Game11BigTreasure3ObjFP10Vector3=0x802DC50C -resetAttackLimitTimer__Q34Game11BigTreasure3ObjFv=0x802DC520 -isAttackLimitTime__Q34Game11BigTreasure3ObjFv=0x802DC57C -getTargetPosition__Q34Game11BigTreasure3ObjFv=0x802DC7A4 -createIKSystem__Q34Game11BigTreasure3ObjFv=0x802DCA3C -setupIKSystem__Q34Game11BigTreasure3ObjFv=0x802DCB48 -setIKParameter__Q34Game11BigTreasure3ObjFv=0x802DCC6C -setIKSystemTargetPosition__Q34Game11BigTreasure3ObjFR10Vector3=0x802DCCF0 -updateIKSystem__Q34Game11BigTreasure3ObjFv=0x802DCD10 -doAnimationIKSystem__Q34Game11BigTreasure3ObjFv=0x802DCD70 -finishAnimationIKSystem__Q34Game11BigTreasure3ObjFv=0x802DCDD0 -startProgramedIK__Q34Game11BigTreasure3ObjFv=0x802DCDF4 -startIKMotion__Q34Game11BigTreasure3ObjFv=0x802DCE18 -finishIKMotion__Q34Game11BigTreasure3ObjFv=0x802DCE3C -forceFinishIKMotion__Q34Game11BigTreasure3ObjFv=0x802DCE60 -isFinishIKMotion__Q34Game11BigTreasure3ObjFv=0x802DCE84 -startBlendMotion__Q34Game11BigTreasure3ObjFv=0x802DCEA8 -finishBlendMotion__Q34Game11BigTreasure3ObjFv=0x802DCECC -checkJointScaleOn__Q34Game11BigTreasure3ObjFv=0x802DCEF0 -getTraceCentrePosition__Q34Game11BigTreasure3ObjFv=0x802DCF14 -getJointPositionPtr__Q34Game11BigTreasure3ObjFii=0x802DCF34 -createShadowSystem__Q34Game11BigTreasure3ObjFv=0x802DCF50 -setupShadowSystem__Q34Game11BigTreasure3ObjFv=0x802DCF98 -doAnimationShadowSystem__Q34Game11BigTreasure3ObjFv=0x802DD018 -setupCollision__Q34Game11BigTreasure3ObjFv=0x802DD03C -setupTreasure__Q34Game11BigTreasure3ObjFv=0x802DD0CC -updateTreasure__Q34Game11BigTreasure3ObjFv=0x802DD428 -dropTreasure__Q34Game11BigTreasure3ObjFv=0x802DD590 -dropTreasure__Q34Game11BigTreasure3ObjFi=0x802DD750 -isCapturedTreasure__Q34Game11BigTreasure3ObjFv=0x802DD7D8 -isCapturedTreasure__Q34Game11BigTreasure3ObjFi=0x802DD834 -getCapturedTreasureNum__Q34Game11BigTreasure3ObjFv=0x802DD850 -addTreasureDamage__Q34Game11BigTreasure3ObjFif=0x802DD89C -flickStickCollPartPikmin__Q34Game11BigTreasure3ObjFP8CollPart=0x802DD93C -releaseItemLoozy__Q34Game11BigTreasure3ObjFv=0x802DDBC0 -createAttack__Q34Game11BigTreasure3ObjFv=0x802DDC2C -setupAttack__Q34Game11BigTreasure3ObjFv=0x802DDC74 -updateAttack__Q34Game11BigTreasure3ObjFv=0x802DDC98 -startAttack__Q34Game11BigTreasure3ObjFv=0x802DDCBC -finishAttack__Q34Game11BigTreasure3ObjFv=0x802DDD30 -setTreasureAttack__Q34Game11BigTreasure3ObjFv=0x802DDD54 -getPreAttackAnimIndex__Q34Game11BigTreasure3ObjFv=0x802DDEFC -getAttackAnimIndex__Q34Game11BigTreasure3ObjFv=0x802DDF44 -getPutItemAnimIndex__Q34Game11BigTreasure3ObjFv=0x802DDFD4 -getFireAttackAnimIndex__Q34Game11BigTreasure3ObjFv=0x802DE064 -getPreAttackTimeMax__Q34Game11BigTreasure3ObjFv=0x802DE1E8 -getAttackTimeMax__Q34Game11BigTreasure3ObjFv=0x802DE280 -isNormalAttack__Q34Game11BigTreasure3ObjFi=0x802DE2DC -resetMaterialColor__Q34Game11BigTreasure3ObjFv=0x802DE2FC -resetTargetMatBodyColor__Q34Game11BigTreasure3ObjFb=0x802DE3AC -resetCurrentMatBodyColor__Q34Game11BigTreasure3ObjFv=0x802DE3E4 -resetTargetEyeMatColor__Q34Game11BigTreasure3ObjFv=0x802DE408 -resetCurrentMatEyeColor__Q34Game11BigTreasure3ObjFv=0x802DE460 -setMatEyeAnimSpeed__Q34Game11BigTreasure3ObjFv=0x802DE494 -setAttackMaterialColor__Q34Game11BigTreasure3ObjFb=0x802DE5C0 -updateMaterialColor__Q34Game11BigTreasure3ObjFv=0x802DEA90 -startBlendAnimation__Q34Game11BigTreasure3ObjFib=0x802DEF50 -endBlendAnimation__Q34Game11BigTreasure3ObjFv=0x802DF06C -getCurrAnimationIndex__Q34Game11BigTreasure3ObjFv=0x802DF104 -startBossChargeBGM__Q34Game11BigTreasure3ObjFv=0x802DF150 -startBossAttackBGM__Q34Game11BigTreasure3ObjFv=0x802DF218 -finishBossAttackBGM__Q34Game11BigTreasure3ObjFv=0x802DF338 -startBossFlickBGM__Q34Game11BigTreasure3ObjFv=0x802DF4A4 -startBossItemDropBGM__Q34Game11BigTreasure3ObjFv=0x802DF56C -updateBossBGM__Q34Game11BigTreasure3ObjFv=0x802DF71C -resetBossAppearBGM__Q34Game11BigTreasure3ObjFv=0x802DF818 -setBossAppearBGM__Q34Game11BigTreasure3ObjFv=0x802DF8D4 -createEffect__Q34Game11BigTreasure3ObjFv=0x802DFA38 -__dt__Q23efx23TChasePosPosLocalYScaleFv=0x802E0054 -setupEffect__Q34Game11BigTreasure3ObjFv=0x802E00D8 -createOnGroundEffect__Q34Game11BigTreasure3ObjFiPQ24Game8WaterBox=0x802E02F8 -createOffGroundEffect__Q34Game11BigTreasure3ObjFiPQ24Game8WaterBox=0x802E04B8 -startTreasurePinchSmoke__Q34Game11BigTreasure3ObjFi=0x802E0558 -finishTreasurePinchSmoke__Q34Game11BigTreasure3ObjFi=0x802E0594 -createDropTreasureEffect__Q34Game11BigTreasure3ObjFi=0x802E05CC -createAppearBodyEffect__Q34Game11BigTreasure3ObjFv=0x802E06A4 -createAppearLegEffect__Q34Game11BigTreasure3ObjFi=0x802E0794 -createDeadBombLegEffect__Q34Game11BigTreasure3ObjFi=0x802E07F4 -createDeadBombBodyEffect__Q34Game11BigTreasure3ObjFv=0x802E0A10 -startDeadBubbleLegEffect__Q34Game11BigTreasure3ObjFi=0x802E0AA0 -finishDeadBubbleLegEffect__Q34Game11BigTreasure3ObjFi=0x802E0B00 -startDeadBubbleBodyEffect__Q34Game11BigTreasure3ObjFv=0x802E0B5C -finishDeadBubbleBodyEffect__Q34Game11BigTreasure3ObjFv=0x802E0B90 -startDeadBubbleMouthEffect__Q34Game11BigTreasure3ObjFv=0x802E0BC0 -finishDeadBubbleMouthEffect__Q34Game11BigTreasure3ObjFv=0x802E0BF4 -createChangeMaterialEffect__Q34Game11BigTreasure3ObjFv=0x802E0C24 -createDeadBombFootEffect__Q34Game11BigTreasure3ObjFv=0x802E0CC4 -startShineParticleEffect__Q34Game11BigTreasure3ObjFv=0x802E0D7C -finishShineParticleEffect__Q34Game11BigTreasure3ObjFv=0x802E0DB0 -effectDrawOn__Q34Game11BigTreasure3ObjFv=0x802E0DE0 -effectDrawOff__Q34Game11BigTreasure3ObjFv=0x802E0FA4 -subShadowScale__Q34Game11BigTreasure3ObjFv=0x802E1168 -startBigTreasureBootUpDemo__Q34Game11BigTreasure3ObjFv=0x802E1194 -__dt__Q23efx14TOootaParticleFv=0x802E1290 -__dt__Q23efx16TOootaChangeBodyFv=0x802E132C -__dt__Q23efx13TOootaDeadAwaFv=0x802E13C8 -__dt__Q23efx15TOootaStartBodyFv=0x802E1464 -__dt__Q23efx15TOootaChangeLegFv=0x802E1500 -__dt__Q23efx14TOootaStartLegFv=0x802E159C -__dt__Q23efx14TOootaStartOtaFv=0x802E1638 -inWaterCallback__Q34Game11BigTreasure3ObjFPQ24Game8WaterBox=0x802E16D4 -outWaterCallback__Q34Game11BigTreasure3ObjFv=0x802E16D8 -getDamageCoeStoneState__Q34Game11BigTreasure3ObjFv=0x802E16DC -throwupItemInDeathProcedure__Q34Game11BigTreasure3ObjFv=0x802E16E4 -getEnemyTypeID__Q34Game11BigTreasure3ObjFv=0x802E16E8 -__dt__Q34Game11BigTreasure14ProperAnimatorFv=0x802E16F0 -__sinit_BigTreasure_cpp=0x802E175C -@1412@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x802E1784 -@1412@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x802E1798 -@1412@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x802E17AC -@1412@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x802E17C0 -@1412@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x802E17D4 -@1412@12@viewGetShape__Q24Game9EnemyBaseFv=0x802E17E8 -@4@__dt__Q23efx14TOootaStartOtaFv=0x802E17FC -@4@__dt__Q23efx14TOootaStartLegFv=0x802E1804 -@4@__dt__Q23efx15TOootaChangeLegFv=0x802E180C -@4@__dt__Q23efx15TOootaStartBodyFv=0x802E1814 -@4@__dt__Q23efx13TOootaDeadAwaFv=0x802E181C -@4@__dt__Q23efx16TOootaChangeBodyFv=0x802E1824 -@4@__dt__Q23efx14TOootaParticleFv=0x802E182C -init__Q34Game6Kabuto3FSMFPQ24Game9EnemyBase=0x802E1834 -init__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E1CB4 -finishWaitEffect__Q34Game6Kabuto3ObjFv=0x802E1D54 -getEnemyTypeID__Q34Game6Kabuto3ObjFv=0x802E1D58 -exec__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBase=0x802E1D60 -cleanup__Q34Game6Kabuto9StateDeadFPQ24Game9EnemyBase=0x802E1DA4 -init__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E1DA8 -exec__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBase=0x802E1E14 -cleanup__Q34Game6Kabuto9StateWaitFPQ24Game9EnemyBase=0x802E1F20 -init__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E1F44 -exec__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBase=0x802E1F98 -cleanup__Q34Game6Kabuto9StateTurnFPQ24Game9EnemyBase=0x802E22D8 -init__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E22FC -exec__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBase=0x802E234C -cleanup__Q34Game6Kabuto9StateMoveFPQ24Game9EnemyBase=0x802E26D8 -init__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E26FC -exec__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBase=0x802E2764 -cleanup__Q34Game6Kabuto10StateFlickFPQ24Game9EnemyBase=0x802E28D0 -init__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E2908 -exec__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBase=0x802E2984 -cleanup__Q34Game6Kabuto11StateAttackFPQ24Game9EnemyBase=0x802E2AAC -init__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E2AF0 -exec__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBase=0x802E2BA8 -cleanup__Q34Game6Kabuto12StateFixStayFPQ24Game9EnemyBase=0x802E2C8C -init__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E2D10 -exec__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBase=0x802E2E9C -cleanup__Q34Game6Kabuto14StateFixAppearFPQ24Game9EnemyBase=0x802E30E0 -init__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E30F0 -exec__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBase=0x802E3220 -cleanup__Q34Game6Kabuto12StateFixHideFPQ24Game9EnemyBase=0x802E32B0 -init__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E32D4 -startWaitEffect__Q34Game6Kabuto3ObjFv=0x802E3328 -exec__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBase=0x802E332C -cleanup__Q34Game6Kabuto12StateFixWaitFPQ24Game9EnemyBase=0x802E3530 -init__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E3534 -startRotateEffect__Q34Game6Kabuto3ObjFv=0x802E359C -exec__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBase=0x802E35A0 -cleanup__Q34Game6Kabuto12StateFixTurnFPQ24Game9EnemyBase=0x802E3830 -finishRotateEffect__Q34Game6Kabuto3ObjFv=0x802E3860 -init__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E3864 -exec__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBase=0x802E38CC -cleanup__Q34Game6Kabuto14StateFixAttackFPQ24Game9EnemyBase=0x802E3B2C -init__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E3B30 -exec__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBase=0x802E3B84 -cleanup__Q34Game6Kabuto13StateFixFlickFPQ24Game9EnemyBase=0x802E3CF0 -setAnimMgr__Q34Game6Kabuto14ProperAnimatorFPQ28SysShape7AnimMgr=0x802E3CF4 -getAnimator__Q34Game6Kabuto14ProperAnimatorFi=0x802E3CFC -__dt__Q34Game6Kabuto14ProperAnimatorFv=0x802E3D04 -getAnimator__Q34Game6Kabuto14ProperAnimatorFv=0x802E3D60 -__ct__Q34Game6Kabuto3MgrFiUc=0x802E3D68 -loadModelData__Q34Game6Kabuto3MgrFv=0x802E3DB8 -loadAnimData__Q34Game6Kabuto3MgrFv=0x802E3EA0 -createModel__Q34Game6Kabuto3MgrFv=0x802E3F40 -__dt__Q34Game6Kabuto3MgrFv=0x802E408C -getEnemyTypeID__Q34Game6Kabuto3MgrFv=0x802E413C -doLoadBmd__Q34Game6Kabuto3MgrFPv=0x802E4144 -@4@__dt__Q34Game6Kabuto3MgrFv=0x802E4170 -__ct__Q34Game6Kabuto3ObjFv=0x802E4178 -createEffect__Q34Game6Kabuto3ObjFv=0x802E42C4 -setInitialSetting__Q34Game6Kabuto3ObjFPQ24Game21EnemyInitialParamBase=0x802E42C8 -onInit__Q34Game6Kabuto3ObjFPQ24Game15CreatureInitArg=0x802E42CC -setupEffect__Q34Game6Kabuto3ObjFv=0x802E43D4 -doUpdate__Q34Game6Kabuto3ObjFv=0x802E43D8 -doDirectDraw__Q34Game6Kabuto3ObjFR8Graphics=0x802E441C -doDebugDraw__Q34Game6Kabuto3ObjFR8Graphics=0x802E4420 -setFSM__Q34Game6Kabuto3ObjFPQ34Game6Kabuto3FSM=0x802E4440 -getShadowParam__Q34Game6Kabuto3ObjFRQ24Game11ShadowParam=0x802E448C -doStartStoneState__Q34Game6Kabuto3ObjFv=0x802E4534 -doFinishStoneState__Q34Game6Kabuto3ObjFv=0x802E4588 -startCarcassMotion__Q34Game6Kabuto3ObjFv=0x802E4638 -doStartMovie__Q34Game6Kabuto3ObjFv=0x802E4660 -effectDrawOff__Q34Game6Kabuto3ObjFv=0x802E468C -doEndMovie__Q34Game6Kabuto3ObjFv=0x802E4690 -effectDrawOn__Q34Game6Kabuto3ObjFv=0x802E46BC -initWalkSmokeEffect__Q34Game6Kabuto3ObjFv=0x802E46C0 -getWalkSmokeEffectMgr__Q34Game6Kabuto3ObjFv=0x802E4754 -setRandTarget__Q34Game6Kabuto3ObjFv=0x802E475C -getSearchedTarget__Q34Game6Kabuto3ObjFv=0x802E48F4 -isAttackableTarget__Q34Game6Kabuto3ObjFv=0x802E494C -createStoneAttack__Q34Game6Kabuto3ObjFv=0x802E4C08 -updateCaution__Q34Game6Kabuto3ObjFv=0x802E4CEC -getViewAngle__Q34Game6Kabuto3ObjFv=0x802E4D3C -lifeIncrement__Q34Game6Kabuto3ObjFv=0x802E4D60 -createRockEmitEffect__Q34Game6Kabuto3ObjFv=0x802E4DA0 -__dt__Q34Game6Kabuto3ObjFv=0x802E4E1C -isUnderground__Q34Game6Kabuto3ObjFv=0x802E4ED8 -getDownSmokeScale__Q34Game6Kabuto3ObjFv=0x802E4EE0 -init__Q34Game12KumaKochappy3FSMFPQ24Game9EnemyBase=0x802E4EE8 -init__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E5164 -exec__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBase=0x802E51B4 -cleanup__Q34Game12KumaKochappy9StateDeadFPQ24Game9EnemyBase=0x802E51F8 -init__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E51FC -exec__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBase=0x802E5254 -cleanup__Q34Game12KumaKochappy10StatePressFPQ24Game9EnemyBase=0x802E5298 -init__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E529C -exec__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBase=0x802E52F0 -cleanup__Q34Game12KumaKochappy9StateWaitFPQ24Game9EnemyBase=0x802E5698 -init__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E56D4 -exec__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBase=0x802E572C -cleanup__Q34Game12KumaKochappy11StateAttackFPQ24Game9EnemyBase=0x802E5BF8 -init__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E5C1C -exec__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBase=0x802E5C60 -cleanup__Q34Game12KumaKochappy10StateFlickFPQ24Game9EnemyBase=0x802E6130 -init__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E6134 -exec__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBase=0x802E6168 -cleanup__Q34Game12KumaKochappy9StateWalkFPQ24Game9EnemyBase=0x802E66A0 -init__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E66C8 -exec__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBase=0x802E6714 -cleanup__Q34Game12KumaKochappy13StateWalkPathFPQ24Game9EnemyBase=0x802E6C48 -setAnimMgr__Q34Game12KumaKochappy14ProperAnimatorFPQ28SysShape7AnimMgr=0x802E6C70 -getAnimator__Q34Game12KumaKochappy14ProperAnimatorFi=0x802E6C78 -__dt__Q34Game12KumaKochappy14ProperAnimatorFv=0x802E6C80 -getAnimator__Q34Game12KumaKochappy14ProperAnimatorFv=0x802E6CDC -__ct__Q34Game12KumaKochappy3MgrFiUc=0x802E6CE4 -doAlloc__Q34Game12KumaKochappy3MgrFv=0x802E6D34 -__ct__Q34Game12KumaKochappy5ParmsFv=0x802E6D7C -createObj__Q34Game12KumaKochappy3MgrFi=0x802E6E14 -__dt__Q34Game12KumaKochappy3ObjFv=0x802E6E74 -getEnemy__Q34Game12KumaKochappy3MgrFi=0x802E6F30 -read__Q34Game12KumaKochappy5ParmsFR6Stream=0x802E6F40 -__dt__Q34Game12KumaKochappy3MgrFv=0x802E6F90 -getEnemyTypeID__Q34Game12KumaKochappy3MgrFv=0x802E7040 -@4@__dt__Q34Game12KumaKochappy3MgrFv=0x802E7048 -__ct__Q34Game12KumaKochappy3ObjFv=0x802E7050 -setInitialSetting__Q34Game12KumaKochappy3ObjFPQ24Game21EnemyInitialParamBase=0x802E7198 -onInit__Q34Game12KumaKochappy3ObjFPQ24Game15CreatureInitArg=0x802E719C -onKill__Q34Game12KumaKochappy3ObjFPQ24Game15CreatureKillArg=0x802E7204 -doUpdate__Q34Game12KumaKochappy3ObjFv=0x802E7248 -doDirectDraw__Q34Game12KumaKochappy3ObjFR8Graphics=0x802E7294 -doDebugDraw__Q34Game12KumaKochappy3ObjFR8Graphics=0x802E7298 -setFSM__Q34Game12KumaKochappy3ObjFPQ34Game12KumaKochappy3FSM=0x802E72B8 -getShadowParam__Q34Game12KumaKochappy3ObjFRQ24Game11ShadowParam=0x802E7304 -pressCallBack__Q34Game12KumaKochappy3ObjFPQ24Game8CreaturefP8CollPart=0x802E73AC -hipdropCallBack__Q34Game12KumaKochappy3ObjFPQ24Game8CreaturefP8CollPart=0x802E7434 -startCarcassMotion__Q34Game12KumaKochappy3ObjFv=0x802E7460 -initMouthSlots__Q34Game12KumaKochappy3ObjFv=0x802E7488 -initWalkSmokeEffect__Q34Game12KumaKochappy3ObjFv=0x802E7514 -getWalkSmokeEffectMgr__Q34Game12KumaKochappy3ObjFv=0x802E7578 -resetZukanAnimationFrame__Q34Game12KumaKochappy3ObjFv=0x802E7580 -setNearestParent__Q34Game12KumaKochappy3ObjFv=0x802E75F8 -isDone__Q24Game38EnemyIteratorFv=0x802E7978 -setTargetParentPosition__Q34Game12KumaKochappy3ObjFv=0x802E79C4 -updateHomePosition__Q34Game12KumaKochappy3ObjFv=0x802E7B6C -getSearchedTarget__Q34Game12KumaKochappy3ObjFv=0x802E7B88 -createChappyRelation__Q34Game12KumaKochappy3ObjFv=0x802E7BC0 -releaseParent__Q34Game12KumaKochappy3ObjFv=0x802E7C30 -getParentRelation__Q34Game12KumaKochappy3ObjFv=0x802E7C54 -getEnemyIndex__Q34Game12KumaKochappy3ObjFRi=0x802E7C60 -addParentEnemy__Q34Game12KumaKochappy3ObjFPQ34Game10KumaChappy3Obj=0x802E7C9C -__ml__Q24Game38EnemyIteratorFv=0x802E7D3C -next__Q24Game38EnemyIteratorFv=0x802E7D74 -first__Q24Game38EnemyIteratorFv=0x802E7E58 -getMouthSlots__Q34Game12KumaKochappy3ObjFv=0x802E7F34 -getDownSmokeScale__Q34Game12KumaKochappy3ObjFv=0x802E7F3C -getEnemyTypeID__Q34Game12KumaKochappy3ObjFv=0x802E7F44 -init__Q34Game10MiniHoudai3FSMFPQ24Game9EnemyBase=0x802E7F4C -init__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E8324 -exec__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBase=0x802E837C -cleanup__Q34Game10MiniHoudai9StateDeadFPQ24Game9EnemyBase=0x802E8488 -init__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E848C -exec__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBase=0x802E84E4 -cleanup__Q34Game10MiniHoudai12StateRebirthFPQ24Game9EnemyBase=0x802E888C -init__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E889C -exec__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBase=0x802E88E8 -cleanup__Q34Game10MiniHoudai9StateLostFPQ24Game9EnemyBase=0x802E8DF4 -init__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E8DF8 -exec__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBase=0x802E8E58 -cleanup__Q34Game10MiniHoudai11StateAttackFPQ24Game9EnemyBase=0x802E9524 -init__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E9548 -exec__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBase=0x802E95B0 -cleanup__Q34Game10MiniHoudai10StateFlickFPQ24Game9EnemyBase=0x802E9AF4 -init__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802E9B30 -exec__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBase=0x802E9B8C -cleanup__Q34Game10MiniHoudai9StateTurnFPQ24Game9EnemyBase=0x802EA238 -init__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EA25C -exec__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBase=0x802EA2A0 -cleanup__Q34Game10MiniHoudai13StateTurnHomeFPQ24Game9EnemyBase=0x802EA608 -init__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EA60C -exec__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBase=0x802EA650 -cleanup__Q34Game10MiniHoudai13StateTurnPathFPQ24Game9EnemyBase=0x802EA9E0 -init__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EA9E4 -exec__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBase=0x802EAA34 -getEnemyTypeID__Q34Game10MiniHoudai3ObjFv=0x802EB200 -cleanup__Q34Game10MiniHoudai9StateWalkFPQ24Game9EnemyBase=0x802EB208 -init__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EB22C -exec__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBase=0x802EB260 -cleanup__Q34Game10MiniHoudai13StateWalkHomeFPQ24Game9EnemyBase=0x802EB7D8 -init__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EB7DC -exec__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBase=0x802EB810 -cleanup__Q34Game10MiniHoudai13StateWalkPathFPQ24Game9EnemyBase=0x802EBCB4 -__sinit_MiniHoudaiState_cpp=0x802EBCB8 -setAnimMgr__Q34Game10MiniHoudai14ProperAnimatorFPQ28SysShape7AnimMgr=0x802EBCE0 -getAnimator__Q34Game10MiniHoudai14ProperAnimatorFi=0x802EBCE8 -__dt__Q34Game10MiniHoudai14ProperAnimatorFv=0x802EBCF0 -getAnimator__Q34Game10MiniHoudai14ProperAnimatorFv=0x802EBD4C -__ct__Q34Game10MiniHoudai3MgrFiUc=0x802EBD54 -loadModelData__Q34Game10MiniHoudai3MgrFv=0x802EBDA4 -loadAnimData__Q34Game10MiniHoudai3MgrFv=0x802EBE7C -__dt__Q34Game10MiniHoudai3MgrFv=0x802EBF0C -getEnemyTypeID__Q34Game10MiniHoudai3MgrFv=0x802EBFBC -doLoadBmd__Q34Game10MiniHoudai3MgrFPv=0x802EBFC4 -@4@__dt__Q34Game10MiniHoudai3MgrFv=0x802EBFF0 -__ct__Q34Game10MiniHoudai3ObjFv=0x802EBFF8 -setInitialSetting__Q34Game10MiniHoudai3ObjFPQ24Game21EnemyInitialParamBase=0x802EC140 -onInit__Q34Game10MiniHoudai3ObjFPQ24Game15CreatureInitArg=0x802EC144 -onKill__Q34Game10MiniHoudai3ObjFPQ24Game15CreatureKillArg=0x802EC20C -doUpdate__Q34Game10MiniHoudai3ObjFv=0x802EC258 -doUpdateCommon__Q34Game10MiniHoudai3ObjFv=0x802EC2AC -doAnimationCullingOff__Q34Game10MiniHoudai3ObjFv=0x802EC2E0 -doDirectDraw__Q34Game10MiniHoudai3ObjFR8Graphics=0x802EC31C -doDebugDraw__Q34Game10MiniHoudai3ObjFR8Graphics=0x802EC320 -setFSM__Q34Game10MiniHoudai3ObjFPQ34Game10MiniHoudai3FSM=0x802EC340 -getShadowParam__Q34Game10MiniHoudai3ObjFRQ24Game11ShadowParam=0x802EC38C -damageCallBack__Q34Game10MiniHoudai3ObjFPQ24Game8CreaturefP8CollPart=0x802EC46C -doStartStoneState__Q34Game10MiniHoudai3ObjFv=0x802EC4B0 -doFinishStoneState__Q34Game10MiniHoudai3ObjFv=0x802EC4E4 -doStartEarthquakeFitState__Q34Game10MiniHoudai3ObjFv=0x802EC504 -doFinishEarthquakeFitState__Q34Game10MiniHoudai3ObjFv=0x802EC538 -doStartWaitingBirthTypeDrop__Q34Game10MiniHoudai3ObjFv=0x802EC558 -doFinishWaitingBirthTypeDrop__Q34Game10MiniHoudai3ObjFv=0x802EC58C -startCarcassMotion__Q34Game10MiniHoudai3ObjFv=0x802EC5C0 -doStartMovie__Q34Game10MiniHoudai3ObjFv=0x802EC5E8 -doEndMovie__Q34Game10MiniHoudai3ObjFv=0x802EC608 -initWalkSmokeEffect__Q34Game10MiniHoudai3ObjFv=0x802EC628 -getWalkSmokeEffectMgr__Q34Game10MiniHoudai3ObjFv=0x802EC68C -doBecomeCarcass__Q34Game10MiniHoudai3ObjFv=0x802EC694 -doUpdateCarcass__Q34Game10MiniHoudai3ObjFv=0x802EC6A8 -doGetLifeGaugeParam__Q34Game10MiniHoudai3ObjFRQ24Game14LifeGaugeParam=0x802EC8A4 -updateCaution__Q34Game10MiniHoudai3ObjFv=0x802EC908 -getViewAngle__Q34Game10MiniHoudai3ObjFv=0x802EC958 -resetWayPoint__Q34Game10MiniHoudai3ObjFv=0x802EC97C -setNearestWayPoint__Q34Game10MiniHoudai3ObjFv=0x802EC98C -setLinkWayPoint__Q34Game10MiniHoudai3ObjFv=0x802ECA3C -getSearchedTarget__Q34Game10MiniHoudai3ObjFv=0x802ECC9C -updateTargetDistance__Q34Game10MiniHoudai3ObjFv=0x802ECD08 -updateHomePosition__Q34Game10MiniHoudai3ObjFv=0x802ECE30 -isAttackableTarget__Q34Game10MiniHoudai3ObjFv=0x802ECEEC -createShotGun__Q34Game10MiniHoudai3ObjFv=0x802ED218 -setupShotGun__Q34Game10MiniHoudai3ObjFv=0x802ED260 -resetShotGunCallBack__Q34Game10MiniHoudai3ObjFv=0x802ED284 -setShotGunCallBack__Q34Game10MiniHoudai3ObjFv=0x802ED2A8 -doUpdateShotGun__Q34Game10MiniHoudai3ObjFv=0x802ED2CC -doUpdateCommonShotGun__Q34Game10MiniHoudai3ObjFv=0x802ED2F0 -startShotGunRotation__Q34Game10MiniHoudai3ObjFv=0x802ED314 -finishShotGunRotation__Q34Game10MiniHoudai3ObjFv=0x802ED338 -isShotGunRotation__Q34Game10MiniHoudai3ObjFv=0x802ED35C -isShotGunLockOn__Q34Game10MiniHoudai3ObjFv=0x802ED380 -isFinishShotGun__Q34Game10MiniHoudai3ObjFv=0x802ED3A4 -emitShotGun__Q34Game10MiniHoudai3ObjFv=0x802ED3C8 -setShotGunTargetPosition__Q34Game10MiniHoudai3ObjFv=0x802ED3EC -forceFinishShotGun__Q34Game10MiniHoudai3ObjFv=0x802ED418 -createEffect__Q34Game10MiniHoudai3ObjFv=0x802ED43C -setupEffect__Q34Game10MiniHoudai3ObjFv=0x802ED574 -createSmokeSmallEffect__Q34Game10MiniHoudai3ObjFb=0x802ED5CC -createSmokeLargeEffect__Q34Game10MiniHoudai3ObjFv=0x802ED66C -createDownEffect__Q34Game10MiniHoudai3ObjFf=0x802ED754 -startChargeEffect__Q34Game10MiniHoudai3ObjFv=0x802ED778 -finishChargeEffect__Q34Game10MiniHoudai3ObjFv=0x802ED7AC -createDeadLightEffect__Q34Game10MiniHoudai3ObjFv=0x802ED7DC -createDeadBombEmitEffect__Q34Game10MiniHoudai3ObjFv=0x802ED810 -effectDrawOn__Q34Game10MiniHoudai3ObjFv=0x802ED9E4 -effectDrawOff__Q34Game10MiniHoudai3ObjFv=0x802EDA3C -__dt__Q23efx15TChibiDeadLightFv=0x802EDA94 -__dt__Q23efx12TChibiChargeFv=0x802EDB30 -__dt__Q34Game10MiniHoudai3ObjFv=0x802EDBCC -getDownSmokeScale__Q34Game10MiniHoudai3ObjFv=0x802EDC88 -@4@__dt__Q23efx12TChibiChargeFv=0x802EDC90 -@4@__dt__Q23efx15TChibiDeadLightFv=0x802EDC98 -verticalRotationCallBack__Q24Game10MiniHoudaiFP8J3DJointi=0x802EDCA0 -update__Q34Game10MiniHoudai21MiniHoudaiShotGunNodeFv=0x802EDCDC -__ct__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFPQ34Game10MiniHoudai3Obj=0x802EE9F0 -setupShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEBD0 -resetCallBack__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEC3C -setCallBack__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEC48 -startRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEC50 -finishRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEC74 -isShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEC88 -isShotGunLockOn__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEC90 -isFinishShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EEC98 -setShotGunTarget__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFR10Vector3=0x802EECA0 -emitShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EECBC -doUpdate__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF180 -doUpdateCommon__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF1F4 -forceFinishShotGun__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF26C -getShotGunPosition__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF2E8 -searchShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF308 -returnShotGunRotation__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF4CC -rotateVertical__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFP8J3DJoint=0x802EF590 -effectDrawOn__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF7E8 -effectDrawOff__Q34Game10MiniHoudai20MiniHoudaiShotGunMgrFv=0x802EF870 -__dt__Q23efx11TChibiShellFv=0x802EF8F8 -__dt__Q34Game10MiniHoudai21MiniHoudaiShotGunNodeFv=0x802EF994 -__sinit_MiniHoudaiShotGun_cpp=0x802EF9F4 -@4@__dt__Q23efx11TChibiShellFv=0x802EFA1C -init__Q34Game7Sokkuri3FSMFPQ24Game9EnemyBase=0x802EFA24 -init__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EFD54 -exec__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBase=0x802EFDB8 -cleanup__Q34Game7Sokkuri9StateDeadFPQ24Game9EnemyBase=0x802EFE18 -init__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EFE1C -exec__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBase=0x802EFE8C -cleanup__Q34Game7Sokkuri10StatePressFPQ24Game9EnemyBase=0x802EFEEC -init__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802EFEF0 -exec__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBase=0x802EFFB4 -cleanup__Q34Game7Sokkuri9StateStayFPQ24Game9EnemyBase=0x802F0018 -init__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F0094 -exec__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBase=0x802F010C -cleanup__Q34Game7Sokkuri11StateAppearFPQ24Game9EnemyBase=0x802F01E4 -init__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F01E8 -exec__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBase=0x802F0258 -cleanup__Q34Game7Sokkuri14StateDisappearFPQ24Game9EnemyBase=0x802F02F4 -init__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F02F8 -exec__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBase=0x802F0360 -cleanup__Q34Game7Sokkuri9StateWaitFPQ24Game9EnemyBase=0x802F04B4 -init__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F04B8 -exec__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBase=0x802F0518 -cleanup__Q34Game7Sokkuri15StateMoveGroundFPQ24Game9EnemyBase=0x802F074C -init__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F0750 -exec__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBase=0x802F07A0 -cleanup__Q34Game7Sokkuri14StateMoveWaterFPQ24Game9EnemyBase=0x802F0978 -init__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F097C -exec__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBase=0x802F09E8 -cleanup__Q34Game7Sokkuri10StateFlickFPQ24Game9EnemyBase=0x802F0B80 -setAnimMgr__Q34Game7Sokkuri14ProperAnimatorFPQ28SysShape7AnimMgr=0x802F0B90 -getAnimator__Q34Game7Sokkuri14ProperAnimatorFi=0x802F0B98 -__dt__Q34Game7Sokkuri14ProperAnimatorFv=0x802F0BA0 -getAnimator__Q34Game7Sokkuri14ProperAnimatorFv=0x802F0BFC -__ct__Q34Game7Sokkuri3MgrFiUc=0x802F0C04 -doAlloc__Q34Game7Sokkuri3MgrFv=0x802F0C54 -__ct__Q34Game7Sokkuri5ParmsFv=0x802F0C9C -__ct__Q44Game7Sokkuri5Parms11ProperParmsFv=0x802F0CE4 -createObj__Q34Game7Sokkuri3MgrFi=0x802F0F94 -__dt__Q34Game7Sokkuri3ObjFv=0x802F0FF4 -getEnemy__Q34Game7Sokkuri3MgrFi=0x802F10B0 -loadModelData__Q34Game7Sokkuri3MgrFv=0x802F10C0 -__dt__Q34Game7Sokkuri3MgrFv=0x802F1128 -getEnemyTypeID__Q34Game7Sokkuri3MgrFv=0x802F11D8 -doLoadBmd__Q34Game7Sokkuri3MgrFPv=0x802F11E0 -read__Q34Game7Sokkuri5ParmsFR6Stream=0x802F120C -@4@__dt__Q34Game7Sokkuri3MgrFv=0x802F125C -__ct__Q34Game7Sokkuri3ObjFv=0x802F1264 -setInitialSetting__Q34Game7Sokkuri3ObjFPQ24Game21EnemyInitialParamBase=0x802F1394 -onInit__Q34Game7Sokkuri3ObjFPQ24Game15CreatureInitArg=0x802F1398 -doUpdate__Q34Game7Sokkuri3ObjFv=0x802F1424 -doDirectDraw__Q34Game7Sokkuri3ObjFR8Graphics=0x802F1458 -doDebugDraw__Q34Game7Sokkuri3ObjFR8Graphics=0x802F145C -setFSM__Q34Game7Sokkuri3ObjFPQ34Game7Sokkuri3FSM=0x802F147C -getShadowParam__Q34Game7Sokkuri3ObjFRQ24Game11ShadowParam=0x802F14C8 -isUnderground__Q34Game7Sokkuri3ObjFv=0x802F15E0 -pressCallBack__Q34Game7Sokkuri3ObjFPQ24Game8CreaturefP8CollPart=0x802F15E8 -hipdropCallBack__Q34Game7Sokkuri3ObjFPQ24Game8CreaturefP8CollPart=0x802F1684 -wallCallback__Q34Game7Sokkuri3ObjFRCQ24Game8MoveInfo=0x802F1720 -doStartStoneState__Q34Game7Sokkuri3ObjFv=0x802F181C -doFinishStoneState__Q34Game7Sokkuri3ObjFv=0x802F185C -startCarcassMotion__Q34Game7Sokkuri3ObjFv=0x802F187C -getOffsetForMapCollision__Q34Game7Sokkuri3ObjFv=0x802F18A4 -isAppear__Q34Game7Sokkuri3ObjFv=0x802F1950 -isDisappear__Q34Game7Sokkuri3ObjFv=0x802F19CC -setNextMoveInfo__Q34Game7Sokkuri3ObjFv=0x802F1A74 -updateMoveState__Q34Game7Sokkuri3ObjFv=0x802F1C54 -resetMoveVelocity__Q34Game7Sokkuri3ObjFv=0x802F1DC0 -setNextWaitInfo__Q34Game7Sokkuri3ObjFv=0x802F1DEC -createDownEffect__Q34Game7Sokkuri3ObjFff=0x802F1E64 -createBubbleEffect__Q34Game7Sokkuri3ObjFv=0x802F1F28 -createEfxHamon__Q34Game7Sokkuri3ObjFv=0x802F1FE8 -getDownSmokeScale__Q34Game7Sokkuri3ObjFv=0x802F2030 -getEnemyTypeID__Q34Game7Sokkuri3ObjFv=0x802F2038 -makeShadowSRT__Q24Game19TubeShadowTransNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3=0x802F2040 -makeShadowSRT__Q24Game17TubeShadowSetNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3=0x802F22B8 -makeShadowSRT__Q24Game17TubeShadowPosNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3=0x802F2530 -makeShadowSRT__Q24Game16SphereShadowNodeFRQ24Game15JointShadowParmR10Vector3=0x802F26DC -makeShadowSRT__Q24Game22UmimushiTubeShadowNodeFRQ24Game15JointShadowParmP7MatrixfR10Vector3R10Vector3=0x802F27DC -makeShadowSRT__Q24Game24UmimushiSphereShadowNodeFRQ24Game15JointShadowParmP7MatrixfR10Vector3b=0x802F29B8 -__ct__Q34Game8UmiMushi17UmimushiShadowMgrFPQ34Game8UmiMushi3Obj=0x802F2A84 -init__Q34Game8UmiMushi17UmimushiShadowMgrFv=0x802F2B48 -update__Q34Game8UmiMushi17UmimushiShadowMgrFv=0x802F2BB0 -__dt__Q24Game24UmimushiSphereShadowNodeFv=0x802F2D0C -__dt__Q24Game22UmimushiTubeShadowNodeFv=0x802F2D7C -__ct__Q34Game4Hana3MgrFiUc=0x802F2DEC -doAlloc__Q34Game4Hana3MgrFv=0x802F2E3C -createObj__Q34Game4Hana3MgrFi=0x802F2E84 -__dt__Q34Game4Hana3ObjFv=0x802F2EE4 -getEnemy__Q34Game4Hana3MgrFi=0x802F2FD4 -loadModelData__Q34Game4Hana3MgrFv=0x802F2FE4 -__dt__Q34Game4Hana3MgrFv=0x802F304C -getEnemyTypeID__Q34Game4Hana3MgrFv=0x802F30FC -doLoadBmd__Q34Game4Hana3MgrFPv=0x802F3104 -@4@__dt__Q34Game4Hana3MgrFv=0x802F3130 -__ct__Q34Game4Hana3ObjFv=0x802F3138 -createEffect__Q34Game4Hana3ObjFv=0x802F31DC -onInit__Q34Game4Hana3ObjFPQ24Game15CreatureInitArg=0x802F31E0 -setupEffect__Q34Game4Hana3ObjFv=0x802F3244 -doDirectDraw__Q34Game4Hana3ObjFR8Graphics=0x802F3248 -getShadowParam__Q34Game4Hana3ObjFRQ24Game11ShadowParam=0x802F324C -initMouthSlots__Q34Game4Hana3ObjFv=0x802F3334 -isWakeup__Q34Game4Hana3ObjFv=0x802F33E8 -flickStatePikmin__Q34Game4Hana3ObjFv=0x802F3468 -flickAttackBomb__Q34Game4Hana3ObjFv=0x802F34EC -eatAttackPikmin__Q34Game4Hana3ObjFv=0x802F35DC -resetUnderGround__Q34Game4Hana3ObjFv=0x802F3618 -setUnderGround__Q34Game4Hana3ObjFv=0x802F3688 -createSmokeEffect__Q34Game4Hana3ObjFv=0x802F370C -satisfy__Q24Game21ConditionNotStickSlotFPQ24Game4Piki=0x802F38CC -changeMaterial__Q34Game4Hana3ObjFv=0x802F3948 -isUnderground__Q34Game4Hana3ObjFv=0x802F394C -initWalkSmokeEffect__Q34Game4Hana3ObjFv=0x802F3954 -getWalkSmokeEffectMgr__Q34Game4Hana3ObjFv=0x802F3958 -getDownSmokeScale__Q34Game4Hana3ObjFv=0x802F3960 -getEnemyTypeID__Q34Game4Hana3ObjFv=0x802F3968 -setAnimationSpeed__Q34Game4Hana3ObjFf=0x802F3970 -flickAttackFail__Q34Game4Hana3ObjFv=0x802F3974 -startSleepEffect__Q34Game4Hana3ObjFv=0x802F3978 -finishSleepEffect__Q34Game4Hana3ObjFv=0x802F397C -__sinit_Hana_cpp=0x802F3980 -makeShadowSRT__Q34Game11BigTreasure16AttackShadowNodeFv=0x802F39A8 -update__Q34Game11BigTreasure21BigTreasureFireAttackFv=0x802F3AB0 -update__Q34Game11BigTreasure20BigTreasureGasAttackFv=0x802F3E24 -update__Q34Game11BigTreasure22BigTreasureWaterAttackFv=0x802F4188 -__dt__Q23efx23TChasePosPosLocalZScaleFv=0x802F44AC -update__Q34Game11BigTreasure21BigTreasureElecAttackFv=0x802F4530 -__ct__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure3Obj=0x802F4C68 -init__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F541C -update__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F55E4 -startFireAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F56CC -startNewFireList__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F57FC -updateFireAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F5898 -updateFireEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F5A24 -updateFireSePosition__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureFireAttacki=0x802F5A94 -startGasAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F5B34 -startNewGasList__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F5DF8 -updateGasAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F5F44 -updateGasEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F6288 -updateGasSePosition__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure20BigTreasureGasAttacki=0x802F62E0 -startWaterAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F6380 -startNewWaterList__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F648C -updateWaterAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F6908 -updateWaterEmitPosition__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F6A6C -getWaterTargetCreature__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F6AC4 -setElecAttackParameter__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F6D9C -startElecAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F7198 -updateElecAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F762C -finishAttack__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F78B4 -addAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure22BigTreasureWaterAttack=0x802F7A98 -addAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureElecAttack=0x802F7B18 -delAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure22BigTreasureWaterAttack=0x802F7B98 -delAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFPQ34Game11BigTreasure21BigTreasureElecAttack=0x802F7C04 -updateAttackShadow__Q34Game11BigTreasure20BigTreasureAttackMgrFv=0x802F7C70 -__dt__Q23efx17TOootaElecAttack1Fv=0x802F7CB4 -__dt__Q23efx13TOootaElecLegFv=0x802F7D50 -__dt__Q23efx15TOootaElecpartsFv=0x802F7DEC -__dt__Q34Game11BigTreasure21BigTreasureElecAttackFv=0x802F7E88 -__dt__Q34Game11BigTreasure22BigTreasureWaterAttackFv=0x802F7EE8 -__dt__Q34Game11BigTreasure20BigTreasureGasAttackFv=0x802F7F48 -__dt__Q34Game11BigTreasure21BigTreasureFireAttackFv=0x802F7FA8 -__dt__Q34Game11BigTreasure16AttackShadowNodeFv=0x802F8008 -@4@__dt__Q23efx15TOootaElecpartsFv=0x802F8078 -@4@__dt__Q23efx13TOootaElecLegFv=0x802F8080 -@4@__dt__Q23efx17TOootaElecAttack1Fv=0x802F8088 -makeShadowSRT__Q24Game23SnakeCrowTubeShadowNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3=0x802F8090 -makeShadowSRT__Q24Game25SnakeCrowSphereShadowNodeFRQ24Game15JointShadowParmR10Vector3=0x802F82BC -__ct__Q34Game9SnakeCrow18SnakeCrowShadowMgrFPQ34Game9SnakeCrow3Obj=0x802F83E8 -init__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv=0x802F84D4 -startJointShadow__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv=0x802F8594 -finishJointShadow__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv=0x802F860C -update__Q34Game9SnakeCrow18SnakeCrowShadowMgrFv=0x802F8670 -__dt__Q24Game25SnakeCrowSphereShadowNodeFv=0x802F88CC -__dt__Q24Game23SnakeCrowTubeShadowNodeFv=0x802F893C -makeShadowSRT__Q24Game24SnakeWholeTubeShadowNodeFRQ24Game15JointShadowParmR10Vector3R10Vector3=0x802F89AC -makeShadowSRT__Q24Game26SnakeWholeSphereShadowNodeFRQ24Game15JointShadowParmR10Vector3=0x802F8BD8 -__ct__Q34Game10SnakeWhole19SnakeWholeShadowMgrFPQ34Game10SnakeWhole3Obj=0x802F8D04 -init__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv=0x802F8DF0 -startJointShadow__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv=0x802F8EB8 -finishJointShadow__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv=0x802F8F30 -update__Q34Game10SnakeWhole19SnakeWholeShadowMgrFv=0x802F8F94 -__dt__Q24Game26SnakeWholeSphereShadowNodeFv=0x802F91F0 -__dt__Q24Game24SnakeWholeTubeShadowNodeFv=0x802F9260 -__ct__Q34Game11BombOtakara3MgrFiUc=0x802F92D0 -doAlloc__Q34Game11BombOtakara3MgrFv=0x802F9320 -createObj__Q34Game11BombOtakara3MgrFi=0x802F9368 -__dt__Q34Game11BombOtakara3ObjFv=0x802F93C8 -getEnemy__Q34Game11BombOtakara3MgrFi=0x802F94B4 -loadTexData__Q34Game11BombOtakara3MgrFv=0x802F94C4 -__dt__Q34Game11BombOtakara3MgrFv=0x802F9544 -getEnemyTypeID__Q34Game11BombOtakara3MgrFv=0x802F960C -getChangeTexture__Q34Game11BombOtakara3MgrFv=0x802F9614 -@4@__dt__Q34Game11BombOtakara3MgrFv=0x802F961C -__ct__Q34Game11BombOtakara3ObjFv=0x802F9624 -changeMaterial__Q34Game11BombOtakara3ObjFv=0x802F96B4 -damageCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreaturefP8CollPart=0x802F9858 -hipdropCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreaturefP8CollPart=0x802F990C -earthquakeCallBack__Q34Game11BombOtakara3ObjFPQ24Game8Creaturef=0x802F9938 -bombCallBack__Q34Game11BombOtakara3ObjFPQ24Game8CreatureR10Vector3f=0x802F99B4 -startEscapeSE__Q34Game11BombOtakara3ObjFv=0x802F99E4 -getEnemyTypeID__Q34Game11BombOtakara3ObjFv=0x802F9A60 -interactCreature__Q34Game11BombOtakara3ObjFPQ24Game8Creature=0x802F9A68 -createEffect__Q34Game11BombOtakara3ObjFv=0x802F9A6C -setupEffect__Q34Game11BombOtakara3ObjFv=0x802F9A70 -startChargeEffect__Q34Game11BombOtakara3ObjFv=0x802F9A74 -finishChargeEffect__Q34Game11BombOtakara3ObjFv=0x802F9A78 -createDisChargeEffect__Q34Game11BombOtakara3ObjFv=0x802F9A7C -effectDrawOn__Q34Game11BombOtakara3ObjFv=0x802F9A80 -effectDrawOff__Q34Game11BombOtakara3ObjFv=0x802F9A84 -startDisChargeSE__Q34Game11BombOtakara3ObjFv=0x802F9A88 -init__Q34Game10DangoMushi3FSMFPQ24Game9EnemyBase=0x802F9A8C -init__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F9DAC -exec__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBase=0x802F9E34 -cleanup__Q34Game10DangoMushi9StateDeadFPQ24Game9EnemyBase=0x802F9F70 -init__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBasePQ24Game8StateArg=0x802F9F74 -exec__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBase=0x802FA008 -cleanup__Q34Game10DangoMushi9StateStayFPQ24Game9EnemyBase=0x802FA14C -init__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x802FA150 -exec__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBase=0x802FA1DC -cleanup__Q34Game10DangoMushi11StateAppearFPQ24Game9EnemyBase=0x802FA5DC -init__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x802FA60C -exec__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBase=0x802FA6A8 -cleanup__Q34Game10DangoMushi9StateWaitFPQ24Game9EnemyBase=0x802FAA0C -init__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x802FAA10 -exec__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBase=0x802FAA6C -cleanup__Q34Game10DangoMushi9StateMoveFPQ24Game9EnemyBase=0x802FB214 -init__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x802FB218 -exec__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBase=0x802FB2A0 -cleanup__Q34Game10DangoMushi11StateAttackFPQ24Game9EnemyBase=0x802FB528 -init__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x802FB580 -exec__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBase=0x802FB654 -cleanup__Q34Game10DangoMushi9StateTurnFPQ24Game9EnemyBase=0x802FB8C4 -init__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBasePQ24Game8StateArg=0x802FB92C -exec__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBase=0x802FB97C -cleanup__Q34Game10DangoMushi12StateRecoverFPQ24Game9EnemyBase=0x802FBA78 -init__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x802FBA7C -exec__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBase=0x802FBAE8 -cleanup__Q34Game10DangoMushi10StateFlickFPQ24Game9EnemyBase=0x802FBCC8 -__sinit_DangoMushiState_cpp=0x802FBCF4 -__ct__Q34Game10DangoMushi3MgrFiUc=0x802FBD1C -doAlloc__Q34Game10DangoMushi3MgrFv=0x802FBD6C -__ct__Q34Game10DangoMushi5ParmsFv=0x802FBDB4 -createObj__Q34Game10DangoMushi3MgrFi=0x802FBF08 -__dt__Q34Game10DangoMushi3ObjFv=0x802FBF68 -getEnemy__Q34Game10DangoMushi3MgrFi=0x802FC024 -loadModelData__Q34Game10DangoMushi3MgrFv=0x802FC034 -loadTexData__Q34Game10DangoMushi3MgrFv=0x802FC09C -createModel__Q34Game10DangoMushi3MgrFv=0x802FC150 -__dt__Q34Game10DangoMushi3MgrFv=0x802FC280 -getEnemyTypeID__Q34Game10DangoMushi3MgrFv=0x802FC330 -doLoadBmd__Q34Game10DangoMushi3MgrFPv=0x802FC338 -read__Q34Game10DangoMushi5ParmsFR6Stream=0x802FC364 -@4@__dt__Q34Game10DangoMushi3MgrFv=0x802FC3B4 -__ct__Q34Game10DangoMushi3ObjFv=0x802FC3BC -setInitialSetting__Q34Game10DangoMushi3ObjFPQ24Game21EnemyInitialParamBase=0x802FC4F0 -onInit__Q34Game10DangoMushi3ObjFPQ24Game15CreatureInitArg=0x802FC4F4 -onKill__Q34Game10DangoMushi3ObjFPQ24Game15CreatureKillArg=0x802FC624 -doUpdate__Q34Game10DangoMushi3ObjFv=0x802FC668 -doUpdateCommon__Q34Game10DangoMushi3ObjFv=0x802FC6B8 -doAnimationUpdateAnimator__Q34Game10DangoMushi3ObjFv=0x802FC6FC -changeMaterial__Q34Game10DangoMushi3ObjFv=0x802FC790 -doDirectDraw__Q34Game10DangoMushi3ObjFR8Graphics=0x802FC854 -doDebugDraw__Q34Game10DangoMushi3ObjFR8Graphics=0x802FC858 -setFSM__Q34Game10DangoMushi3ObjFPQ34Game10DangoMushi3FSM=0x802FC878 -getShadowParam__Q34Game10DangoMushi3ObjFRQ24Game11ShadowParam=0x802FC8C4 -needShadow__Q34Game10DangoMushi3ObjFv=0x802FC97C -damageCallBack__Q34Game10DangoMushi3ObjFPQ24Game8CreaturefP8CollPart=0x802FC9EC -earthquakeCallBack__Q34Game10DangoMushi3ObjFPQ24Game8Creaturef=0x802FCAD8 -collisionCallback__Q34Game10DangoMushi3ObjFRQ24Game9CollEvent=0x802FCAE0 -wallCallback__Q34Game10DangoMushi3ObjFRCQ24Game8MoveInfo=0x802FCBE4 -doStartStoneState__Q34Game10DangoMushi3ObjFv=0x802FCCF0 -doFinishStoneState__Q34Game10DangoMushi3ObjFv=0x802FCD28 -startCarcassMotion__Q34Game10DangoMushi3ObjFv=0x802FCD9C -doStartMovie__Q34Game10DangoMushi3ObjFv=0x802FCDC4 -doEndMovie__Q34Game10DangoMushi3ObjFv=0x802FCDE4 -initWalkSmokeEffect__Q34Game10DangoMushi3ObjFv=0x802FCE04 -getWalkSmokeEffectMgr__Q34Game10DangoMushi3ObjFv=0x802FCE50 -getCommonEffectPos__Q34Game10DangoMushi3ObjFR10Vector3=0x802FCE58 -addShadowScale__Q34Game10DangoMushi3ObjFv=0x802FCE7C -setRandTarget__Q34Game10DangoMushi3ObjFv=0x802FCECC -isReachedTarget__Q34Game10DangoMushi3ObjFv=0x802FD064 -getSearchedTarget__Q34Game10DangoMushi3ObjFv=0x802FD098 -rollingMove__Q34Game10DangoMushi3ObjFv=0x802FD0D0 -createCrashEnemy__Q34Game10DangoMushi3ObjFv=0x802FD38C -getFallEggNum__Q34Game10DangoMushi3ObjFv=0x802FD874 -getFallPosition__Q34Game10DangoMushi3ObjFi=0x802FD960 -setupCollision__Q34Game10DangoMushi3ObjFv=0x802FDA64 -setBodyCollision__Q34Game10DangoMushi3ObjFb=0x802FDA9C -flickHandCollision__Q34Game10DangoMushi3ObjFPQ24Game8Creature=0x802FDEE0 -isNoDamageCollision__Q34Game10DangoMushi3ObjFv=0x802FE18C -resetMapCollisionSize__Q34Game10DangoMushi3ObjFb=0x802FE1E4 -updateMapCollisionSize__Q34Game10DangoMushi3ObjFv=0x802FE210 -flickHandCollision__Q34Game10DangoMushi3ObjFv=0x802FE29C -startBlendAnimation__Q34Game10DangoMushi3ObjFib=0x802FE648 -endBlendAnimation__Q34Game10DangoMushi3ObjFv=0x802FE764 -startBossFlickBGM__Q34Game10DangoMushi3ObjFv=0x802FE7FC -startBossAttackLoopBGM__Q34Game10DangoMushi3ObjFv=0x802FE8C4 -finishBossAttackLoopBGM__Q34Game10DangoMushi3ObjFv=0x802FE98C -updateBossBGM__Q34Game10DangoMushi3ObjFv=0x802FEA54 -resetBossAppearBGM__Q34Game10DangoMushi3ObjFv=0x802FEB50 -setBossAppearBGM__Q34Game10DangoMushi3ObjFv=0x802FEC0C -createEffect__Q34Game10DangoMushi3ObjFv=0x802FECC8 -setupEffect__Q34Game10DangoMushi3ObjFv=0x802FEE38 -createDeadSmokeEffect__Q34Game10DangoMushi3ObjFv=0x802FEE9C -createDeadBombEffect__Q34Game10DangoMushi3ObjFv=0x802FEF18 -createBodyTurnEffect__Q34Game10DangoMushi3ObjFv=0x802FEFA0 -createWallBreakEffect__Q34Game10DangoMushi3ObjFv=0x802FF040 -createFlickAttackEffect__Q34Game10DangoMushi3ObjFv=0x802FF094 -createBodyDamageEffect__Q34Game10DangoMushi3ObjFv=0x802FF0C8 -createBodyWallCrashEffect__Q34Game10DangoMushi3ObjF10Vector3=0x802FF144 -startRollingMoveEffect__Q34Game10DangoMushi3ObjFv=0x802FF210 -finishRollingMoveEffect__Q34Game10DangoMushi3ObjFv=0x802FF244 -createEnemyBounceEffect__Q34Game10DangoMushi3ObjFv=0x802FF274 -getDownSmokeScale__Q34Game10DangoMushi3ObjFv=0x802FF2B8 -createMoveHandEffect__Q34Game10DangoMushi3ObjFv=0x802FF2C0 -createAppearSmokeEffect__Q34Game10DangoMushi3ObjFv=0x802FF4A8 -effectDrawOn__Q34Game10DangoMushi3ObjFv=0x802FF540 -effectDrawOff__Q34Game10DangoMushi3ObjFv=0x802FF5A4 -__dt__Q23efx13TDangoAttack2Fv=0x802FF608 -__dt__Q23efx15TDangoWallBreakFv=0x802FF6A4 -getDamageCoeStoneState__Q34Game10DangoMushi3ObjFv=0x802FF740 -getEnemyTypeID__Q34Game10DangoMushi3ObjFv=0x802FF748 -__dt__Q34Game10DangoMushi14ProperAnimatorFv=0x802FF750 -@4@__dt__Q23efx15TDangoWallBreakFv=0x802FF7BC -@4@__dt__Q23efx13TDangoAttack2Fv=0x802FF7C4 -__ct__Q34Game11GreenKabuto3MgrFiUc=0x802FF7CC -doAlloc__Q34Game11GreenKabuto3MgrFv=0x802FF81C -__ct__Q34Game6Kabuto5ParmsFv=0x802FF864 -createObj__Q34Game11GreenKabuto3MgrFi=0x802FF8BC -__dt__Q34Game11GreenKabuto3ObjFv=0x802FF91C -getEnemy__Q34Game11GreenKabuto3MgrFi=0x802FFA08 -loadTexData__Q34Game11GreenKabuto3MgrFv=0x802FFA18 -__dt__Q34Game11GreenKabuto3MgrFv=0x802FFA98 -getEnemyTypeID__Q34Game11GreenKabuto3MgrFv=0x802FFB60 -getChangeTexture__Q34Game11GreenKabuto3MgrFv=0x802FFB68 -read__Q34Game6Kabuto5ParmsFR6Stream=0x802FFB70 -@4@__dt__Q34Game11GreenKabuto3MgrFv=0x802FFBC0 -__ct__Q34Game11GreenKabuto3ObjFv=0x802FFBC8 -changeMaterial__Q34Game11GreenKabuto3ObjFv=0x802FFC58 -getEnemyTypeID__Q34Game11GreenKabuto3ObjFv=0x802FFDFC -__ct__Q34Game9RedKabuto3MgrFiUc=0x802FFE04 -doAlloc__Q34Game9RedKabuto3MgrFv=0x802FFE54 -createObj__Q34Game9RedKabuto3MgrFi=0x802FFE9C -__dt__Q34Game9RedKabuto3ObjFv=0x802FFEFC -getEnemy__Q34Game9RedKabuto3MgrFi=0x802FFFE8 -loadTexData__Q34Game9RedKabuto3MgrFv=0x802FFFF8 -__dt__Q34Game9RedKabuto3MgrFv=0x80300078 -getEnemyTypeID__Q34Game9RedKabuto3MgrFv=0x80300140 -getChangeTexture__Q34Game9RedKabuto3MgrFv=0x80300148 -@4@__dt__Q34Game9RedKabuto3MgrFv=0x80300150 -__ct__Q34Game9RedKabuto3ObjFv=0x80300158 -changeMaterial__Q34Game9RedKabuto3ObjFv=0x803001E8 -getEnemyTypeID__Q34Game9RedKabuto3ObjFv=0x8030038C -__ct__Q34Game9FixKabuto3MgrFiUc=0x80300394 -doAlloc__Q34Game9FixKabuto3MgrFv=0x803003E4 -createObj__Q34Game9FixKabuto3MgrFi=0x8030042C -__dt__Q34Game9FixKabuto3ObjFv=0x8030048C -getEnemy__Q34Game9FixKabuto3MgrFi=0x8030057C -loadTexData__Q34Game9FixKabuto3MgrFv=0x8030058C -__dt__Q34Game9FixKabuto3MgrFv=0x8030060C -getEnemyTypeID__Q34Game9FixKabuto3MgrFv=0x803006D4 -getChangeTexture__Q34Game9FixKabuto3MgrFv=0x803006DC -@4@__dt__Q34Game9FixKabuto3MgrFv=0x803006E4 -__ct__Q34Game9FixKabuto3ObjFv=0x803006EC -onKill__Q34Game9FixKabuto3ObjFPQ24Game15CreatureKillArg=0x80300790 -changeMaterial__Q34Game9FixKabuto3ObjFv=0x803007F4 -createEffect__Q34Game9FixKabuto3ObjFv=0x80300998 -setupEffect__Q34Game9FixKabuto3ObjFv=0x80300AD8 -startRotateEffect__Q34Game9FixKabuto3ObjFv=0x80300AF0 -finishRotateEffect__Q34Game9FixKabuto3ObjFv=0x80300B48 -startWaitEffect__Q34Game9FixKabuto3ObjFv=0x80300B78 -finishWaitEffect__Q34Game9FixKabuto3ObjFv=0x80300BD0 -effectDrawOn__Q34Game9FixKabuto3ObjFv=0x80300C00 -effectDrawOff__Q34Game9FixKabuto3ObjFv=0x80300C50 -__dt__Q23efx12TKkabutoWaitFv=0x80300CA0 -__dt__Q23efx11TKkabutoRotFv=0x80300D3C -getEnemyTypeID__Q34Game9FixKabuto3ObjFv=0x80300DD8 -@748@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80300DE0 -@748@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x80300DF4 -@748@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80300E08 -@748@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80300E1C -@748@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80300E30 -@748@12@viewGetShape__Q24Game9EnemyBaseFv=0x80300E44 -@4@__dt__Q23efx11TKkabutoRotFv=0x80300E58 -@4@__dt__Q23efx12TKkabutoWaitFv=0x80300E60 -__ct__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave16MapUnitGenerator=0x80300E68 -setManageClassPtr__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave12RandItemUnit=0x80300E94 -setCapEnemySlot__Q34Game4Cave16RandCapEnemyUnitFv=0x80300E9C -setCapCommonEnemySlot__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave7MapNodei=0x80300FA4 -setCapEnemy__Q34Game4Cave16RandCapEnemyUnitFPQ34Game4Cave7MapNodePQ34Game4Cave9EnemyUnitii=0x80301160 -__ct__Q34Game14NormMiniHoudai3MgrFiUc=0x803011F8 -doAlloc__Q34Game14NormMiniHoudai3MgrFv=0x80301248 -__ct__Q34Game10MiniHoudai5ParmsFv=0x80301290 -createObj__Q34Game14NormMiniHoudai3MgrFi=0x8030136C -__dt__Q34Game14NormMiniHoudai3ObjFv=0x803013CC -getEnemy__Q34Game14NormMiniHoudai3MgrFi=0x803014B8 -getEnemyTypeID__Q34Game14NormMiniHoudai3ObjFv=0x803014C8 -read__Q34Game10MiniHoudai5ParmsFR6Stream=0x803014D0 -__dt__Q34Game14NormMiniHoudai3MgrFv=0x80301520 -getEnemyTypeID__Q34Game14NormMiniHoudai3MgrFv=0x803015E8 -@4@__dt__Q34Game14NormMiniHoudai3MgrFv=0x803015F0 -__ct__Q34Game14NormMiniHoudai3ObjFv=0x803015F8 -__ct__Q34Game13FixMiniHoudai3MgrFiUc=0x80301688 -doAlloc__Q34Game13FixMiniHoudai3MgrFv=0x803016D8 -createObj__Q34Game13FixMiniHoudai3MgrFi=0x80301720 -__dt__Q34Game13FixMiniHoudai3ObjFv=0x80301780 -getEnemy__Q34Game13FixMiniHoudai3MgrFi=0x8030186C -getEnemyTypeID__Q34Game13FixMiniHoudai3ObjFv=0x8030187C -__dt__Q34Game13FixMiniHoudai3MgrFv=0x80301884 -getEnemyTypeID__Q34Game13FixMiniHoudai3MgrFv=0x8030194C -@4@__dt__Q34Game13FixMiniHoudai3MgrFv=0x80301954 -__ct__Q34Game13FixMiniHoudai3ObjFv=0x8030195C -makeShadowSRT__Q24Game18TyreTubeShadowNodeFRQ24Game15JointShadowParmP7Matrixf=0x803019EC -__ct__Q34Game4Tyre13TyreShadowMgrFPQ34Game4Tyre3Obj=0x80301C48 -init__Q34Game4Tyre13TyreShadowMgrFv=0x80301D2C -update__Q34Game4Tyre13TyreShadowMgrFv=0x80301D94 -__dt__Q24Game18TyreTubeShadowNodeFv=0x80301E48 -setSpeed__Q32og6Screen15ArrowAlphaBlinkFf=0x80301EB8 -calc__Q32og6Screen15ArrowAlphaBlinkFv=0x80301EC0 -capturePictureTreeColor__Q22og6ScreenFP7J2DPanei=0x80301F80 -__ct__Q32og6Screen20PictureTreeColorInfoFv=0x8030219C -blendColor__Q22og6ScreenFRQ28JUtility6TColorRQ28JUtility6TColorfPQ28JUtility6TColor=0x803021D8 -blendPictureTreeColor__Q22og6ScreenFPQ32og6Screen27PictureTreeColorCaptureInfoRQ28JUtility6TColorRQ28JUtility6TColorf=0x8030232C -calcSmooth0to1__Q22og6ScreenFff=0x8030269C -calcGlbCenter__Q22og6ScreenFP7J2DPaneP10Vector2=0x80302764 -maskTag2__Q22og6ScreenFUxUs=0x80302814 -maskTag__Q22og6ScreenFUxUsUs=0x80302920 -CalcKeta__Q22og6ScreenFUl=0x803029C0 -MojiToNum__Q22og6ScreenFUxi=0x80302A74 -TagToName__Q22og6ScreenFUxPc=0x80302BCC -CharCodeToTag__Q22og6ScreenFPc=0x80302D24 -TagToHex__Q22og6ScreenFUxPc=0x80302E18 -TagSearch__Q22og6ScreenFP9J2DScreenUx=0x80302EAC -__ct__Q32og6Screen8AlphaMgrFv=0x80303038 -setBlinkArea__Q32og6Screen8AlphaMgrFff=0x80303060 -in__Q32og6Screen8AlphaMgrFf=0x8030306C -out__Q32og6Screen8AlphaMgrFf=0x803030D0 -blink__Q32og6Screen8AlphaMgrFf=0x80303134 -calc__Q32og6Screen8AlphaMgrFv=0x80303184 -setAlphaScreen__Q22og6ScreenFP7J2DPane=0x80303314 -getObject__25JSUTreeIterator<7J2DPane>CFv=0x803034E8 -getPaneTree__7J2DPaneFv=0x803034F4 -getTagName__7J2DPaneCFv=0x803034FC -__dt__Q29P2DScreen10Mgr_tuningFv=0x8030350C -update__Q29P2DScreen4NodeFv=0x803035A0 -draw__Q29P2DScreen4NodeFR8GraphicsR14J2DGrafContext=0x803035A4 -doInit__Q29P2DScreen4NodeFv=0x803035A8 -__dt__Q29P2DScreen4NodeFv=0x803035AC -__ct__Q32og6Screen12DopingScreenFv=0x8030360C -setCallBack__Q32og6Screen12DopingScreenFP10JKRArchive=0x80303700 -setParam__Q32og6Screen12DopingScreenFRQ32og6Screen8DataNavi=0x803039CC -update__Q32og6Screen12DopingScreenFv=0x80303A04 -adjPos__Q32og6Screen12DopingScreenFff=0x80303C88 -setDopingEnable__Q32og6Screen12DopingScreenFbb=0x80303C94 -openDopingUp__Q32og6Screen12DopingScreenFv=0x80303CD8 -openDopingDown__Q32og6Screen12DopingScreenFv=0x80303CE8 -openDopingKey__Q32og6Screen12DopingScreenFv=0x80303CF8 -__ct__Q32og6Screen11DopingCheckFv=0x80303D04 -init__Q32og6Screen11DopingCheckFP7J2DPaneP7J2DPanePQ32og6Screen8ScaleMgrPQ32og6Screen8ScaleMgr=0x80303E04 -update__Q32og6Screen11DopingCheckFv=0x80303E48 -effStart__Q32og6Screen11DopingCheckFP7J2DPane=0x80303F48 -startGetEff_Up__Q32og6Screen11DopingCheckFv=0x80303FC8 -startGetEff_Down__Q32og6Screen11DopingCheckFv=0x80304098 -kill__Q25efx2d8TSimple2Fv=0x80304168 -fade__Q25efx2d8TSimple2Fv=0x8030416C -kill__Q25efx2d8TSimple1Fv=0x80304170 -fade__Q25efx2d8TSimple1Fv=0x80304174 -__dt__Q32og6Screen12DopingScreenFv=0x80304178 -__ct__Q32og6Screen13PikminCounterFv=0x8030421C -setParam__Q32og6Screen13PikminCounterFRQ32og6Screen8DataGameRQ32og6Screen8DataNavi=0x803042D8 -update__Q32og6Screen13PikminCounterFv=0x80304344 -setCallBack__Q32og6Screen13PikminCounterFP10JKRArchive=0x8030443C -setCallBack__Q32og6Screen17PikminCounterCaveFP10JKRArchive=0x8030466C -setCallBack__Q32og6Screen24PikminCounterChallenge1PFP10JKRArchive=0x803048AC -__dt__Q32og6Screen24PikminCounterChallenge1PFv=0x80304AA4 -__dt__Q32og6Screen17PikminCounterCaveFv=0x80304B58 -__dt__Q32og6Screen13PikminCounterFv=0x80304C0C -start__Q32og6Screen12AnimBaseBaseFf=0x80304CB0 -updateSub__Q32og6Screen12AnimBaseBaseFv=0x80304CC0 -update__Q32og6Screen12AnimBaseBaseFv=0x80304E10 -__ct__Q32og6Screen10AnimScreenFv=0x80304E88 -init__Q32og6Screen10AnimScreenFP10JKRArchiveP9J2DScreenPc=0x80304F24 -start__Q32og6Screen10AnimScreenFv=0x80305088 -moveAnim__Q32og6Screen10AnimScreenFv=0x80305118 -__ct__Q32og6Screen8AnimPaneFv=0x80305178 -init__Q32og6Screen8AnimPaneFP10JKRArchiveP9J2DScreenUxPc=0x80305218 -start__Q32og6Screen8AnimPaneFv=0x80305368 -moveAnim__Q32og6Screen8AnimPaneFv=0x803053F8 -__ct__Q32og6Screen9AnimGroupFi=0x80305458 -update__Q32og6Screen9AnimGroupFv=0x803054E8 -setSpeed__Q32og6Screen9AnimGroupFf=0x803056A8 -setRepeat__Q32og6Screen9AnimGroupFb=0x80305704 -setFrame__Q32og6Screen9AnimGroupFf=0x80305760 -setAllArea__Q32og6Screen9AnimGroupFv=0x803057BC -getFrame__Q32og6Screen9AnimGroupFv=0x80305810 -setArea__Q32og6Screen9AnimGroupFff=0x80305830 -start__Q32og6Screen9AnimGroupFv=0x803058B8 -reservAnim__Q32og6Screen9AnimGroupFfff=0x80305960 -getLastFrame__Q32og6Screen9AnimGroupFv=0x80305978 -registAnimGroupScreen__Q22og6ScreenFPQ32og6Screen9AnimGroupP10JKRArchiveP9J2DScreenPcf=0x80305998 -registAnimGroupPane__Q22og6ScreenFPQ32og6Screen9AnimGroupP10JKRArchiveP9J2DScreenUxPcf=0x80305BEC -makeSujiFontTable__Q22og6ScreenFPPcP10JKRArchive=0x80305E48 -setSuji__Q32og6Screen11CounterKetaFPP7ResTIMGUl=0x80305F60 -calcScale__Q32og6Screen11CounterKetaFv=0x80305FB0 -__ct__Q32og6Screen18CallBack_LifeGaugeFv=0x80306038 -__dt__Q29P2DScreen12CallBackNodeFv=0x80306190 -init__Q32og6Screen18CallBack_LifeGaugeFPQ29P2DScreen3MgrPQ32og6Screen8DataNaviQ42og6Screen18CallBack_LifeGauge13LifeGaugeType=0x80306200 -setType__Q32og6Screen18CallBack_LifeGaugeFQ42og6Screen18CallBack_LifeGauge13LifeGaugeType=0x803064C4 -setOffset__Q32og6Screen18CallBack_LifeGaugeFff=0x803068F8 -moveIcon__Q32og6Screen18CallBack_LifeGaugeFv=0x80306970 -update__Q32og6Screen18CallBack_LifeGaugeFv=0x80306C88 -draw__Q32og6Screen18CallBack_LifeGaugeFR8GraphicsR14J2DGrafContext=0x80306EF4 -setCallBack__Q32og6Screen13NaviLifeGaugeFPQ32og6Screen8DataNaviQ42og6Screen18CallBack_LifeGauge13LifeGaugeType=0x80306FA8 -setType__Q32og6Screen13NaviLifeGaugeFQ42og6Screen18CallBack_LifeGauge13LifeGaugeType=0x803070C0 -update__Q32og6Screen13NaviLifeGaugeFv=0x803070EC -__dt__Q32og6Screen13NaviLifeGaugeFv=0x80307148 -__dt__Q32og6Screen18CallBack_LifeGaugeFv=0x803071EC -update__Q29P2DScreen12CallBackNodeFv=0x8030726C -__sinit_ogLifeGauge_cpp=0x80307270 -update__Q32og6Screen17CallBack_SunMeterFv=0x80307294 -startEffectChime__Q32og6Screen17CallBack_SunMeterFv=0x803074D0 -__ct__Q32og6Screen8SunMeterFv=0x80307504 -setCallBack__Q32og6Screen8SunMeterFv=0x80307548 -__dt__Q32og6Screen8SunMeterFv=0x803076FC -__dt__Q32og6Screen17CallBack_SunMeterFv=0x803077A0 -__ct__Q32og6Screen18CallBack_CatchPikiFv=0x80307820 -__dt__Q32og6Screen8ScaleMgrFv=0x803078A0 -init__Q32og6Screen18CallBack_CatchPikiFP9J2DScreenUxPUlP10JKRArchive=0x803078DC -update__Q32og6Screen18CallBack_CatchPikiFv=0x8030799C -setPikiIcon__Q32og6Screen18CallBack_CatchPikiFi=0x80307A8C -__dt__Q32og6Screen18CallBack_CatchPikiFv=0x80307AD8 -__ct__Q32og6Screen14ContenaCounterFPQ32og6Screen17DispMemberContena=0x80307B58 -setblo__Q32og6Screen14ContenaCounterFPcP10JKRArchive=0x80307BE8 -__dt__Q32og6Screen14ContenaCounterFv=0x80307D28 -__ct__Q32og6Screen10MapCounterFPQ32og6Screen7DataMap=0x80307DCC -dispRed__Q32og6Screen10MapCounterFb=0x80307EB0 -dispYellow__Q32og6Screen10MapCounterFb=0x80307EE8 -dispBlue__Q32og6Screen10MapCounterFb=0x80307F20 -dispWhite__Q32og6Screen10MapCounterFb=0x80307F58 -dispBlack__Q32og6Screen10MapCounterFb=0x80307F90 -dispFree__Q32og6Screen10MapCounterFb=0x80307FC8 -setCallBack__Q32og6Screen10MapCounterFP10JKRArchive=0x80307FF0 -__dt__Q32og6Screen10MapCounterFv=0x80308714 -setAnimTextScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx=0x803087B8 -setMenuScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx=0x803088EC -setMenuTitleScreen__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx=0x80308A28 -__ct__Q32og6Screen15AnimText_ScreenFPQ29P2DScreen3MgrUx=0x80308B64 -__dt__Q32og6Screen15CallBack_ScreenFv=0x80308D8C -update__Q32og6Screen15AnimText_ScreenFv=0x80308E0C -setAnimScreen__Q32og6Screen15AnimText_ScreenFPQ32og6Screen10AnimScreen=0x80309418 -setText__Q32og6Screen15AnimText_ScreenFUx=0x80309420 -stop__Q32og6Screen15AnimText_ScreenFv=0x8030943C -open__Q32og6Screen15AnimText_ScreenFf=0x80309454 -close__Q32og6Screen15AnimText_ScreenFv=0x80309490 -blink__Q32og6Screen15AnimText_ScreenFff=0x803094D8 -__dt__Q32og6Screen15AnimText_ScreenFv=0x80309584 -__ct__Q32og6Screen16CallBack_MessageFv=0x80309614 -draw__Q32og6Screen16CallBack_MessageFR8GraphicsR14J2DGrafContext=0x803096AC -__dt__Q32og6Screen16CallBack_MessageFv=0x80309860 -checkVisibleGlb__Q22og6ScreenFP7J2DPane=0x803098E0 -isVisible__7J2DPaneCFv=0x80309A74 -setCallBackMessageSub__Q22og6ScreenFPQ29P2DScreen3MgrP7J2DPane=0x80309A7C -getUserInfo__7J2DPaneCFv=0x80309D98 -getMsgPtr__Q22og5Lib2DFv=0x80309DA8 -__ct__Q29P2DScreen12CallBackNodeFv=0x80309DB0 -setCallBackMessage__Q22og6ScreenFPQ29P2DScreen3Mgr=0x80309E00 -update__Q32og6Screen16CallBack_MessageFv=0x80309E24 -__ct__Q32og6Screen7MenuMgrFv=0x80309E28 -__dt__Q25efx2d9TChasePosFv=0x8030A010 -__dt__Q25efx2d8TForeverFv=0x8030A094 -startCursor__Q32og6Screen7MenuMgrFf=0x8030A100 -killCursor__Q32og6Screen7MenuMgrFv=0x8030A194 -init2taku__Q32og6Screen7MenuMgrFP9J2DScreenUxUxUxUxUxUxUxUx=0x8030A204 -init2takuTitle__Q32og6Screen7MenuMgrFP9J2DScreenUxUxUxUxUxUxUxUx=0x8030A420 -init__Q32og6Screen7MenuMgrFP9J2DScreenUsUxUxUxUxUx=0x8030A63C -selectSub__Q32og6Screen7MenuMgrFUs=0x8030AAD0 -select__Q32og6Screen7MenuMgrFUs=0x8030AB60 -initSelNum__Q32og6Screen7MenuMgrFUs=0x8030ABF8 -update__Q32og6Screen7MenuMgrFv=0x8030AC0C -draw__Q32og6Screen7MenuMgrFP14J2DGrafContext=0x8030B18C -MenuOnOff__Q32og6Screen7MenuMgrFv=0x8030B278 -__ct__Q32og6Screen15CallBack_ScreenFPQ29P2DScreen3MgrUx=0x8030B370 -getPartsScreen__Q32og6Screen15CallBack_ScreenFv=0x8030B414 -update__Q32og6Screen15CallBack_ScreenFv=0x8030B41C -draw__Q32og6Screen15CallBack_ScreenFR8GraphicsR14J2DGrafContext=0x8030B454 -__ct__Q32og6Screen18CallBack_CounterRVFPPcUsUsP10JKRArchive=0x8030B524 -show__Q32og6Screen18CallBack_CounterRVFv=0x8030B704 -setValue__Q32og6Screen18CallBack_CounterRVFv=0x8030B744 -hide__Q32og6Screen18CallBack_CounterRVFv=0x8030B778 -getMotherPane__Q32og6Screen18CallBack_CounterRVFv=0x8030B7C0 -setPuyoAnim__Q32og6Screen18CallBack_CounterRVFb=0x8030B7D8 -setPuyoAnimZero__Q32og6Screen18CallBack_CounterRVFb=0x8030B7E0 -setBlind__Q32og6Screen18CallBack_CounterRVFb=0x8030B7E8 -setZeroAlpha__Q32og6Screen18CallBack_CounterRVFUc=0x8030B7F0 -startPuyoUp__Q32og6Screen18CallBack_CounterRVFf=0x8030B7F8 -setCenteringMode__Q32og6Screen18CallBack_CounterRVFQ42og6Screen18CallBack_CounterRV17EnumCenteringMode=0x8030B8DC -init__Q32og6Screen18CallBack_CounterRVFP9J2DScreenUxUxUxPUlb=0x8030B8E4 -setKetaSub__Q32og6Screen18CallBack_CounterRVFibb=0x8030BDB4 -setCounterUpDown__Q32og6Screen18CallBack_CounterRVFibb=0x8030BFD4 -setValue__Q32og6Screen18CallBack_CounterRVFbb=0x8030C084 -update__Q32og6Screen18CallBack_CounterRVFv=0x8030C47C -draw__Q32og6Screen18CallBack_CounterRVFR8GraphicsR14J2DGrafContext=0x8030C52C -setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxUxUxPUlUsUsbP10JKRArchive=0x8030C530 -setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxPUlUsbbP10JKRArchive=0x8030C608 -setCallBack_CounterRV__Q22og6ScreenFPQ29P2DScreen3MgrUxUlUsbbP10JKRArchive=0x8030C784 -__dt__Q32og6Screen18CallBack_CounterRVFv=0x8030C910 -__sinit_ogCounterRV_cpp=0x8030C990 -setSE__Q22og5SoundFUl=0x8030C9B0 -setLifeDanger__Q22og5SoundFv=0x8030C9D8 -setChimeNoon__Q22og5SoundFv=0x8030CA04 -setChime__Q22og5SoundFv=0x8030CAF8 -setDecide__Q22og5SoundFv=0x8030CB24 -setCancel__Q22og5SoundFv=0x8030CB50 -setCursor__Q22og5SoundFv=0x8030CB7C -setOpen__Q22og5SoundFv=0x8030CBA8 -setClose__Q22og5SoundFv=0x8030CBD4 -setPlusMinus__Q22og5SoundFb=0x8030CC00 -setSMenuLR__Q22og5SoundFv=0x8030CC48 -setError__Q22og5SoundFv=0x8030CC74 -setZoomIn__Q22og5SoundFv=0x8030CCA0 -setZoomOut__Q22og5SoundFv=0x8030CCCC -setScroll__Q22og5SoundFv=0x8030CCF8 -setOpenDoukutu__Q22og5SoundFv=0x8030CD24 -setSaveCave__Q22og5SoundFv=0x8030CD50 -setOpenWMapMenu__Q22og5SoundFv=0x8030CD7C -setOpenTotalPoko__Q22og5SoundFv=0x8030CDA8 -setCloseTotalPoko__Q22og5SoundFv=0x8030CDD4 -setPlusTotalPoko__Q22og5SoundFv=0x8030CE00 -setOpenFinalMsg__Q22og5SoundFv=0x8030CE2C -setSprayAdd__Q22og5SoundFv=0x8030CE58 -setTimeCarry__Q22og5SoundFv=0x8030CE84 -setGetSensor__Q22og5SoundFv=0x8030CEB0 -setFloorComplete__Q22og5SoundFv=0x8030CEDC -setGraySensor__Q22og5SoundFv=0x8030CF08 -setGetSpray__Q22og5SoundFv=0x8030CF34 -setKanteiExit__Q22og5SoundFv=0x8030CF60 -setFloorTitle__Q22og5SoundFv=0x8030CF8C -setVsTitle__Q22og5SoundFv=0x8030CF90 -setBdamaGet__Q22og5SoundFv=0x8030CFBC -setNaviChange__Q22og5SoundFi=0x8030CFE8 -setVsWin1P__Q22og5SoundFv=0x8030CFEC -setVsWin2P__Q22og5SoundFv=0x8030D0CC -setVsDraw__Q22og5SoundFv=0x8030D1AC -setWarning__Q22og5SoundFv=0x8030D28C -__ct__Q32og6Screen19CallBack_CounterDayFPPcUsP10JKRArchive=0x8030D2B8 -init__Q32og6Screen19CallBack_CounterDayFP9J2DScreenUxUxUxPUlb=0x8030D304 -setValue__Q32og6Screen19CallBack_CounterDayFv=0x8030D3F0 -show__Q32og6Screen19CallBack_CounterDayFv=0x8030D558 -hide__Q32og6Screen19CallBack_CounterDayFv=0x8030D598 -update__Q32og6Screen19CallBack_CounterDayFv=0x8030D5E4 -setCallBack_CounterDay__Q22og6ScreenFPQ29P2DScreen3MgrUxUxUxPUlUsP10JKRArchive=0x8030D624 -__dt__Q32og6Screen19CallBack_CounterDayFv=0x8030D700 -isUseBackupSceneInfo__Q26Screen9SceneBaseFv=0x8030D790 -isDrawInDemo__Q26Screen9SceneBaseCFv=0x8030D798 -setPort__Q26Screen9SceneBaseFR8Graphics=0x8030D7A0 -doConfirmSetScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg=0x8030D7D0 -doConfirmStartScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg=0x8030D7D8 -doConfirmEndScene__Q26Screen9SceneBaseFRPQ26Screen11EndSceneArg=0x8030D7E0 -setDefaultDispMember__Q26Screen9SceneBaseFv=0x8030D7E8 -doSetBackupScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg=0x8030D838 -doGetFinishState__Q26Screen9SceneBaseFv=0x8030D83C -getSize__Q32og6Screen15DispMemberDummyFv=0x8030D844 -getOwnerID__Q32og6Screen15DispMemberDummyFv=0x8030D84C -getMemberID__Q32og6Screen15DispMemberDummyFv=0x8030D858 -__dt__Q26Screen7ObjBaseFv=0x8030D868 -setOwner__Q26Screen7ObjBaseFPQ26Screen9SceneBase=0x8030D8FC -getOwner__Q26Screen7ObjBaseCFv=0x8030D95C -doConfirmSetScene__Q26Screen7ObjBaseFRQ26Screen11SetSceneArg=0x8030D964 -doConfirmStartScene__Q26Screen7ObjBaseFPQ26Screen13StartSceneArg=0x8030D96C -doConfirmEndScene__Q26Screen7ObjBaseFRPQ26Screen11EndSceneArg=0x8030D974 -__dt__Q26Screen8IObjBaseFv=0x8030D97C -@24@__dt__Q26Screen8IObjBaseFv=0x8030D9F8 -initGround__Q22og9newScreenFv=0x8030DA00 -__ct__Q32og9newScreen6GroundFv=0x8030DA0C -doUserCallBackFunc__Q32og9newScreen6GroundFPQ28Resource10MgrCommand=0x8030DA60 -doCreateObj__Q32og9newScreen6GroundFP10JKRArchive=0x8030DA64 -doStart__Q32og9newScreen6GroundFPQ26Screen13StartSceneArg=0x8030DB24 -doUpdateActive__Q32og9newScreen6GroundFv=0x8030DB70 -getResName__Q32og9newScreen6GroundCFv=0x8030DE80 -getSceneType__Q32og9newScreen6GroundFv=0x8030DE8C -getOwnerID__Q32og9newScreen6GroundFv=0x8030DE94 -getMemberID__Q32og9newScreen6GroundFv=0x8030DEA0 -isDrawInDemo__Q32og9newScreen6GroundCFv=0x8030DEB0 -__ct__Q32og9newScreen9ObjGroundFPCc=0x8030DEB8 -__dt__Q32og9newScreen9ObjGroundFv=0x8030DF4C -doCreate__Q32og9newScreen9ObjGroundFP10JKRArchive=0x8030DFF8 -commonUpdate__Q32og9newScreen9ObjGroundFv=0x8030E45C -doUpdate__Q32og9newScreen9ObjGroundFv=0x8030E6F8 -doDraw__Q32og9newScreen9ObjGroundFR8Graphics=0x8030E71C -doStart__Q32og9newScreen9ObjGroundFPCQ26Screen13StartSceneArg=0x8030E7AC -doEnd__Q32og9newScreen9ObjGroundFPCQ26Screen11EndSceneArg=0x8030E7C0 -doUpdateFadein__Q32og9newScreen9ObjGroundFv=0x8030E7D0 -doUpdateFadeinFinish__Q32og9newScreen9ObjGroundFv=0x8030E844 -doUpdateFinish__Q32og9newScreen9ObjGroundFv=0x8030E848 -doUpdateFadeout__Q32og9newScreen9ObjGroundFv=0x8030E854 -doUpdateFadeoutFinish__Q32og9newScreen9ObjGroundFv=0x8030E8D0 -__sinit_ogObjGround_cpp=0x8030E8D4 -@24@__dt__Q32og9newScreen9ObjGroundFv=0x8030E950 -CopyPicture__Q22og6ScreenFP12J2DPictureExUx=0x8030E958 -CopyPictureToPane__Q22og6ScreenFP12J2DPictureExP7J2DPaneffUx=0x8030EC50 -__ct__Q32og6Screen8BloGroupFUs=0x8030EF88 -addBlo__Q32og6Screen8BloGroupFPcPQ29P2DScreen10Mgr_tuningUlP10JKRArchive=0x8030F020 -scale__Q32og6Screen8BloGroupFf=0x8030F0C0 -rotate__Q32og6Screen8BloGroupFff13J2DRotateAxisf=0x8030F104 -update__Q32og6Screen8BloGroupFv=0x8030F1A8 -draw__Q32og6Screen8BloGroupFP13J2DPerspGraph=0x8030F218 -doJ3DDrawInit__8GraphicsFv=0x8030F300 -doJ3DDraw__8GraphicsFi=0x8030F304 -doJ3DFrameInit__8GraphicsFv=0x8030F308 -doJ3DAnimation__8GraphicsFv=0x8030F30C -doJ3DUpdateInit__8GraphicsFv=0x8030F310 -doJ3DSetView__8GraphicsFi=0x8030F314 -doJ3DViewCalc__8GraphicsFv=0x8030F318 -isID__Q32og6Screen14DispMemberBaseFUlUx=0x8030F31C -getMemberName__Q32og6Screen14DispMemberBaseFPc=0x8030F39C -setSubMember__Q32og6Screen14DispMemberBaseFPQ32og6Screen14DispMemberBase=0x8030F3DC -getSubMember__Q32og6Screen14DispMemberBaseFUlUx=0x8030F4C0 -setSubMemberAll__Q32og6Screen14DispMemberBaseFv=0x8030F5CC -__dt__Q22og5Lib2DFv=0x8030F600 -create__Q22og5Lib2DFv=0x8030F668 -__ct__Q32og9newScreen11ObjSMenuMapFPCc=0x8030F6F0 -__dt__Q32og9newScreen12ObjSMenuBaseFv=0x8030F804 -__dt__Q32og9newScreen11ObjSMenuMapFv=0x8030F8B0 -setMapTexture__Q32og9newScreen11ObjSMenuMapFv=0x8030F974 -tuningIcon__Q32og9newScreen11ObjSMenuMapFv=0x8030FBE0 -initMapIcon__Q32og9newScreen11ObjSMenuMapFP10JKRArchive=0x8030FD98 -appendCaveName__Q32og9newScreen11ObjSMenuMapFP7J2DPaneUsUx=0x80310A0C -transMap__Q32og9newScreen11ObjSMenuMapFv=0x80310BF0 -doCreate__Q32og9newScreen11ObjSMenuMapFP10JKRArchive=0x80310ED8 -updateMap__Q32og9newScreen11ObjSMenuMapFv=0x80311838 -commonUpdate__Q32og9newScreen11ObjSMenuMapFv=0x80311DD0 -doUpdateLAction__Q32og9newScreen11ObjSMenuMapFv=0x80311E78 -doUpdateRAction__Q32og9newScreen11ObjSMenuMapFv=0x80311EE4 -doUpdate__Q32og9newScreen11ObjSMenuMapFv=0x80311FA8 -doDraw__Q32og9newScreen11ObjSMenuMapFR8Graphics=0x803120B4 -drawMap__Q32og9newScreen11ObjSMenuMapFR8Graphics=0x803121EC -drawRectZ__Q32og9newScreen11ObjSMenuMapFR8GraphicsR7RectR6Color4f=0x80312518 -drawVecZ__Q32og9newScreen11ObjSMenuMapFR8GraphicsR3VecR3VecR3VecR3VecR6Color4f=0x803126F8 -doStart__Q32og9newScreen11ObjSMenuMapFPCQ26Screen13StartSceneArg=0x8031290C -doEnd__Q32og9newScreen11ObjSMenuMapFPCQ26Screen11EndSceneArg=0x803129B0 -doUpdateFinish__Q32og9newScreen11ObjSMenuMapFv=0x803129B8 -doUpdateFadeout__Q32og9newScreen11ObjSMenuMapFv=0x803129D8 -in_L__Q32og9newScreen11ObjSMenuMapFv=0x80312A24 -in_R__Q32og9newScreen11ObjSMenuMapFv=0x80312A38 -wait__Q32og9newScreen11ObjSMenuMapFv=0x80312A4C -out_L__Q32og9newScreen11ObjSMenuMapFv=0x80312A58 -out_R__Q32og9newScreen11ObjSMenuMapFv=0x80312A84 -getClassSize__Q26Screen11SetSceneArgFv=0x80312AB0 -getSceneType__Q26Screen11SetSceneArgCFv=0x80312AB8 -getSceneType__Q26Screen12SceneArgBaseCFv=0x80312AC0 -doUpdateCancelAction__Q32og9newScreen11ObjSMenuMapFv=0x80312AC8 -__sinit_ogObjSMenuMap_cpp=0x80312ACC -@24@__dt__Q32og9newScreen11ObjSMenuMapFv=0x80312BF4 -__ct__Q32og9newScreen8SMenuMapFv=0x80312BFC -doUserCallBackFunc__Q32og9newScreen8SMenuMapFPQ28Resource10MgrCommand=0x80312C4C -doCreateObj__Q32og9newScreen8SMenuMapFP10JKRArchive=0x80312D94 -doUpdateActive__Q32og9newScreen8SMenuMapFv=0x80312E14 -doConfirmSetScene__Q32og9newScreen8SMenuMapFRQ26Screen11SetSceneArg=0x80312E18 -doSetBackupScene__Q32og9newScreen8SMenuMapFRQ26Screen11SetSceneArg=0x80312E80 -getResName__Q32og9newScreen8SMenuMapCFv=0x80312E8C -getSceneType__Q32og9newScreen8SMenuMapFv=0x80312E98 -getOwnerID__Q32og9newScreen8SMenuMapFv=0x80312EA0 -getMemberID__Q32og9newScreen8SMenuMapFv=0x80312EAC -isUseBackupSceneInfo__Q32og9newScreen8SMenuMapFv=0x80312EBC -doGetFinishState__Q32og9newScreen14SceneSMenuBaseFv=0x80312EC4 -doUserCallBackFunc__Q26Screen9SceneBaseFPQ28Resource10MgrCommand=0x80312ECC -__sinit_ogSceneSMenuMap_cpp=0x80312ED0 -__ct__Q32og9newScreen12ObjSMenuItemFPCc=0x80312EF8 -__dt__Q32og9newScreen12ObjSMenuItemFv=0x80312F74 -doCreate__Q32og9newScreen12ObjSMenuItemFP10JKRArchive=0x80313038 -doUpdateLAction__Q32og9newScreen12ObjSMenuItemFv=0x8031395C -doUpdateRAction__Q32og9newScreen12ObjSMenuItemFv=0x80313A84 -commonUpdate__Q32og9newScreen12ObjSMenuItemFv=0x80313AF0 -doUpdate__Q32og9newScreen12ObjSMenuItemFv=0x80313BD8 -doDraw__Q32og9newScreen12ObjSMenuItemFR8Graphics=0x80313C2C -in_L__Q32og9newScreen12ObjSMenuItemFv=0x80313D00 -in_R__Q32og9newScreen12ObjSMenuItemFv=0x80313D14 -wait__Q32og9newScreen12ObjSMenuItemFv=0x80313D28 -out_L__Q32og9newScreen12ObjSMenuItemFv=0x80313D34 -out_R__Q32og9newScreen12ObjSMenuItemFv=0x80313D60 -doStart__Q32og9newScreen12ObjSMenuItemFPCQ26Screen13StartSceneArg=0x80313D8C -doEnd__Q32og9newScreen12ObjSMenuItemFPCQ26Screen11EndSceneArg=0x80313E5C -doUpdateFinish__Q32og9newScreen12ObjSMenuItemFv=0x80313E64 -doUpdateFadeout__Q32og9newScreen12ObjSMenuItemFv=0x80313E84 -doUpdateCancelAction__Q32og9newScreen12ObjSMenuItemFv=0x80313ED0 -__sinit_ogObjSMenuItem_cpp=0x80313ED4 -@24@__dt__Q32og9newScreen12ObjSMenuItemFv=0x80313F44 -__ct__Q32og9newScreen9SMenuItemFv=0x80313F4C -doConfirmSetScene__Q32og9newScreen9SMenuItemFRQ26Screen11SetSceneArg=0x80313F9C -doSetBackupScene__Q32og9newScreen9SMenuItemFRQ26Screen11SetSceneArg=0x80314004 -doUserCallBackFunc__Q32og9newScreen9SMenuItemFPQ28Resource10MgrCommand=0x80314010 -doCreateObj__Q32og9newScreen9SMenuItemFP10JKRArchive=0x80314014 -doUpdateActive__Q32og9newScreen9SMenuItemFv=0x80314074 -getResName__Q32og9newScreen9SMenuItemCFv=0x80314078 -getSceneType__Q32og9newScreen9SMenuItemFv=0x80314084 -getOwnerID__Q32og9newScreen9SMenuItemFv=0x8031408C -getMemberID__Q32og9newScreen9SMenuItemFv=0x80314098 -isUseBackupSceneInfo__Q32og9newScreen9SMenuItemFv=0x803140AC -__ct__Q32og9newScreen10SMenuPauseFv=0x803140B4 -doUserCallBackFunc__Q32og9newScreen10SMenuPauseFPQ28Resource10MgrCommand=0x80314104 -doCreateObj__Q32og9newScreen10SMenuPauseFP10JKRArchive=0x80314108 -doUpdateActive__Q32og9newScreen10SMenuPauseFv=0x80314168 -doConfirmSetScene__Q32og9newScreen10SMenuPauseFRQ26Screen11SetSceneArg=0x8031416C -getResName__Q32og9newScreen10SMenuPauseCFv=0x803141D4 -getSceneType__Q32og9newScreen10SMenuPauseFv=0x803141E0 -getOwnerID__Q32og9newScreen10SMenuPauseFv=0x803141E8 -getMemberID__Q32og9newScreen10SMenuPauseFv=0x803141F4 -isUseBackupSceneInfo__Q32og9newScreen10SMenuPauseFv=0x80314208 -__sinit_ogSceneSMenuPause_cpp=0x80314210 -getMenuColor__Q42og9newScreen13ObjSMenuPause9ObjHIOValFPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColorPQ28JUtility6TColor=0x80314238 -__ct__Q32og9newScreen13ObjSMenuPauseFPCc=0x8031442C -__dt__Q32og9newScreen13ObjSMenuPauseFv=0x803144FC -doCreate__Q32og9newScreen13ObjSMenuPauseFP10JKRArchive=0x803145C0 -blink_TopMenu__Q32og9newScreen13ObjSMenuPauseFi=0x80314B0C -doUpdateLAction__Q32og9newScreen13ObjSMenuPauseFv=0x80314BE8 -doUpdateRAction__Q32og9newScreen13ObjSMenuPauseFv=0x80314C54 -doUpdateCancelAction__Q32og9newScreen13ObjSMenuPauseFv=0x80314D1C -commonUpdate__Q32og9newScreen13ObjSMenuPauseFv=0x80314D2C -doUpdate__Q32og9newScreen13ObjSMenuPauseFv=0x80314DB0 -doDraw__Q32og9newScreen13ObjSMenuPauseFR8Graphics=0x80314E60 -doStart__Q32og9newScreen13ObjSMenuPauseFPCQ26Screen13StartSceneArg=0x80314EF8 -doEnd__Q32og9newScreen13ObjSMenuPauseFPCQ26Screen11EndSceneArg=0x80314F9C -doUpdateFinish__Q32og9newScreen13ObjSMenuPauseFv=0x80314FA4 -doUpdateFadeout__Q32og9newScreen13ObjSMenuPauseFv=0x80314FD8 -doUpdateFadeoutFinish__Q32og9newScreen13ObjSMenuPauseFv=0x80315024 -menu_pause__Q32og9newScreen13ObjSMenuPauseFv=0x80315150 -menu_yuugata__Q32og9newScreen13ObjSMenuPauseFv=0x80315610 -menu_zenkai__Q32og9newScreen13ObjSMenuPauseFv=0x80315A88 -killCursorAll__Q32og9newScreen13ObjSMenuPauseFv=0x80315F00 -menu__Q32og9newScreen13ObjSMenuPauseFv=0x80315F40 -in_L__Q32og9newScreen13ObjSMenuPauseFv=0x80315FAC -in_R__Q32og9newScreen13ObjSMenuPauseFv=0x80315FC0 -wait__Q32og9newScreen13ObjSMenuPauseFv=0x80315FD4 -out_L__Q32og9newScreen13ObjSMenuPauseFv=0x80316004 -out_R__Q32og9newScreen13ObjSMenuPauseFv=0x80316030 -__sinit_ogObjSMenuPause_cpp=0x8031605C -__ct__Q42og9newScreen13ObjSMenuPause9ObjHIOValFv=0x80316084 -@24@__dt__Q32og9newScreen13ObjSMenuPauseFv=0x80316208 -__ct__Q32og9newScreen12ObjSMenuBaseFv=0x80316210 -setFinishState__Q32og9newScreen12ObjSMenuBaseFl=0x803162FC -setSMenuScale__Q32og9newScreen12ObjSMenuBaseFff=0x80316338 -doCreateAfter__Q32og9newScreen12ObjSMenuBaseFP10JKRArchivePQ29P2DScreen3Mgr=0x80316378 -commonUpdateBase__Q32og9newScreen12ObjSMenuBaseFv=0x8031653C -doUpdate__Q32og9newScreen12ObjSMenuBaseFv=0x8031655C -doUpdateFinish__Q32og9newScreen12ObjSMenuBaseFv=0x80316688 -startBackupScene__Q32og9newScreen12ObjSMenuBaseFv=0x80316758 -close_L__Q32og9newScreen12ObjSMenuBaseFv=0x803167CC -jump_L__Q32og9newScreen12ObjSMenuBaseFRQ26Screen11SetSceneArg=0x803167F8 -jump_R__Q32og9newScreen12ObjSMenuBaseFRQ26Screen11SetSceneArg=0x803168DC -start_LR__Q32og9newScreen12ObjSMenuBaseFPCQ26Screen13StartSceneArg=0x803169C0 -setYajiName__Q32og9newScreen12ObjSMenuBaseFUxUxUx=0x80316B10 -loop__Q32og9newScreen12ObjSMenuBaseFv=0x80316B78 -stopYaji__Q32og9newScreen12ObjSMenuBaseFv=0x80316B7C -updateYaji__Q32og9newScreen12ObjSMenuBaseFv=0x80316B88 -drawYaji__Q32og9newScreen12ObjSMenuBaseFR8Graphics=0x80316E8C -updateFadeIn__Q32og9newScreen12ObjSMenuBaseFv=0x80316EC0 -doUpdateFadein__Q32og9newScreen12ObjSMenuBaseFv=0x80317030 -doUpdateFadeinFinish__Q32og9newScreen12ObjSMenuBaseFv=0x803170D8 -updateFadeOut__Q32og9newScreen12ObjSMenuBaseFv=0x8031712C -doUpdateFadeoutFinish__Q32og9newScreen12ObjSMenuBaseFv=0x80317230 -doStart__Q26Screen7ObjBaseFPCQ26Screen13StartSceneArg=0x80317394 -doEnd__Q26Screen7ObjBaseFPCQ26Screen11EndSceneArg=0x8031739C -doCreate__Q26Screen7ObjBaseFP10JKRArchive=0x803173A4 -doUpdateFadeout__Q26Screen7ObjBaseFv=0x803173A8 -getSceneType__Q32og9newScreen18StartSceneArgSMenuCFv=0x803173B0 -getClassSize__Q26Screen58StartSceneArgTemplateFv=0x803173B8 -__sinit_ogObjSMenuBase_cpp=0x803173C0 -@24@__dt__Q32og9newScreen12ObjSMenuBaseFv=0x80317414 -__ct__Q32og9newScreen13ObjCourseNameFPCc=0x8031741C -__dt__Q32og9newScreen13ObjCourseNameFv=0x803174C4 -doCreate__Q32og9newScreen13ObjCourseNameFP10JKRArchive=0x80317570 -doUpdate__Q32og9newScreen13ObjCourseNameFv=0x803178A4 -doDraw__Q32og9newScreen13ObjCourseNameFR8Graphics=0x80317994 -doStart__Q32og9newScreen13ObjCourseNameFPCQ26Screen13StartSceneArg=0x80317B04 -doEnd__Q32og9newScreen13ObjCourseNameFPCQ26Screen11EndSceneArg=0x80317B18 -doUpdateFadeinFinish__Q32og9newScreen13ObjCourseNameFv=0x80317B28 -doUpdateFinish__Q32og9newScreen13ObjCourseNameFv=0x80317B2C -doUpdateFadeoutFinish__Q32og9newScreen13ObjCourseNameFv=0x80317B38 -doUpdateFadein__Q32og9newScreen13ObjCourseNameFv=0x80317B3C -doUpdateFadeout__Q32og9newScreen13ObjCourseNameFv=0x80317C5C -drawBG__Q32og9newScreen13ObjCourseNameFR8Graphics=0x80317D90 -__sinit_ogObjCourseName_cpp=0x80317EF8 -@24@__dt__Q32og9newScreen13ObjCourseNameFv=0x80317F20 -checkMovieActive__Q22og9newScreenFv=0x80317F28 -makeLanguageResName__Q22og9newScreenFPcPCc=0x80317F4C -__sinit_ogUtil_cpp=0x80318028 -__ct__Q32og9newScreen10CourseNameFv=0x80318050 -doUserCallBackFunc__Q32og9newScreen10CourseNameFPQ28Resource10MgrCommand=0x8031808C -doCreateObj__Q32og9newScreen10CourseNameFP10JKRArchive=0x803181B4 -doCreateObjUserCallBackFunc__Q32og9newScreen10CourseNameFP10JKRArchive=0x803181B8 -getResName__Q32og9newScreen10CourseNameCFv=0x80318218 -getSceneType__Q32og9newScreen10CourseNameFv=0x80318220 -getOwnerID__Q32og9newScreen10CourseNameFv=0x80318228 -getMemberID__Q32og9newScreen10CourseNameFv=0x80318234 -__ct__Q32og9newScreen9ObjKanteiFPCc=0x80318244 -__dt__Q32og9newScreen9ObjKanteiFv=0x80318364 -doCreate__Q32og9newScreen9ObjKanteiFP10JKRArchive=0x80318410 -scaleAnimItemName__Q32og9newScreen9ObjKanteiFv=0x80318BDC -commonUpdate__Q32og9newScreen9ObjKanteiFv=0x80318E34 -doUpdate__Q32og9newScreen9ObjKanteiFv=0x80318F88 -finishKantei__Q32og9newScreen9ObjKanteiFv=0x80319394 -doDraw__Q32og9newScreen9ObjKanteiFR8Graphics=0x803193D4 -doDrawMsg__Q32og9newScreen9ObjKanteiFR8Graphics=0x80319664 -doStart__Q32og9newScreen9ObjKanteiFPCQ26Screen13StartSceneArg=0x803196A0 -doEnd__Q32og9newScreen9ObjKanteiFPCQ26Screen11EndSceneArg=0x803197AC -doUpdateFadeinFinish__Q32og9newScreen9ObjKanteiFv=0x803197BC -doUpdateFinish__Q32og9newScreen9ObjKanteiFv=0x803197C0 -doUpdateFadeoutFinish__Q32og9newScreen9ObjKanteiFv=0x80319800 -doUpdateFadein__Q32og9newScreen9ObjKanteiFv=0x80319804 -doUpdateFadeout__Q32og9newScreen9ObjKanteiFv=0x803199A8 -__sinit_ogObjKantei_cpp=0x80319B54 -@24@__dt__Q32og9newScreen9ObjKanteiFv=0x80319BD4 -__ct__Q32og9newScreen10KanteiDemoFv=0x80319BDC -doUserCallBackFunc__Q32og9newScreen10KanteiDemoFPQ28Resource10MgrCommand=0x80319C20 -doCreateObj__Q32og9newScreen10KanteiDemoFP10JKRArchive=0x80319C24 -getResName__Q32og9newScreen10KanteiDemoCFv=0x80319C8C -getSceneType__Q32og9newScreen10KanteiDemoFv=0x80319C98 -getOwnerID__Q32og9newScreen10KanteiDemoFv=0x80319CA0 -getMemberID__Q32og9newScreen10KanteiDemoFv=0x80319CAC -isUseBackupSceneInfo__Q32og9newScreen10KanteiDemoFv=0x80319CBC -__ct__Q32og9newScreen14ObjSpecialItemFPCc=0x80319CC4 -__dt__Q32og9newScreen14ObjSpecialItemFv=0x80319D4C -doCreate__Q32og9newScreen14ObjSpecialItemFP10JKRArchive=0x80319DF8 -doUpdate__Q32og9newScreen14ObjSpecialItemFv=0x80319F8C -doDraw__Q32og9newScreen14ObjSpecialItemFR8Graphics=0x80319FCC -doStart__Q32og9newScreen14ObjSpecialItemFPCQ26Screen13StartSceneArg=0x8031A0D0 -doEnd__Q32og9newScreen14ObjSpecialItemFPCQ26Screen11EndSceneArg=0x8031A1DC -doUpdateFadeinFinish__Q32og9newScreen14ObjSpecialItemFv=0x8031A1EC -doUpdateFinish__Q32og9newScreen14ObjSpecialItemFv=0x8031A1F0 -doUpdateFadeoutFinish__Q32og9newScreen14ObjSpecialItemFv=0x8031A1FC -doUpdateFadein__Q32og9newScreen14ObjSpecialItemFv=0x8031A200 -doUpdateFadeout__Q32og9newScreen14ObjSpecialItemFv=0x8031A248 -@24@__dt__Q32og9newScreen14ObjSpecialItemFv=0x8031A298 -__ct__Q32og9newScreen11SpecialItemFv=0x8031A2A0 -doUserCallBackFunc__Q32og9newScreen11SpecialItemFPQ28Resource10MgrCommand=0x8031A2DC -doCreateObj__Q32og9newScreen11SpecialItemFP10JKRArchive=0x8031A2E0 -doConfirmSetScene__Q32og9newScreen11SpecialItemFRQ26Screen11SetSceneArg=0x8031A340 -getResName__Q32og9newScreen11SpecialItemCFv=0x8031A38C -getSceneType__Q32og9newScreen11SpecialItemFv=0x8031A398 -getOwnerID__Q32og9newScreen11SpecialItemFv=0x8031A3A0 -getMemberID__Q32og9newScreen11SpecialItemFv=0x8031A3AC -isUseBackupSceneInfo__Q32og9newScreen11SpecialItemFv=0x8031A3C0 -__ct__Q32og9newScreen8ObjFloorFPCc=0x8031A3C8 -__dt__Q32og9newScreen8ObjFloorFv=0x8031A4B0 -setCaveMsgID__Q32og9newScreen8ObjFloorFUlPc=0x8031A55C -doCreate__Q32og9newScreen8ObjFloorFP10JKRArchive=0x8031A9BC -init__Q32og9newScreen8TitleMsgFv=0x8031B27C -commonUpdate__Q32og9newScreen8ObjFloorFv=0x8031B280 -end__Q32og9newScreen8TitleMsgFv=0x8031B818 -update__Q32og9newScreen8TitleMsgFv=0x8031B81C -doUpdate__Q32og9newScreen8ObjFloorFv=0x8031B820 -doDraw__Q32og9newScreen8ObjFloorFR8Graphics=0x8031B840 -doStart__Q32og9newScreen8ObjFloorFPCQ26Screen13StartSceneArg=0x8031B9DC -doEnd__Q32og9newScreen8ObjFloorFPCQ26Screen11EndSceneArg=0x8031BA10 -doUpdateFadeinFinish__Q32og9newScreen8ObjFloorFv=0x8031BA20 -doUpdateFinish__Q32og9newScreen8ObjFloorFv=0x8031BA24 -doUpdateFadeoutFinish__Q32og9newScreen8ObjFloorFv=0x8031BA54 -doUpdateFadein__Q32og9newScreen8ObjFloorFv=0x8031BA58 -doUpdateFadeout__Q32og9newScreen8ObjFloorFv=0x8031BACC -drawBG__Q32og9newScreen8ObjFloorFR8Graphics=0x8031BB54 -__sinit_ogObjFloor_cpp=0x8031BCBC -@24@__dt__Q32og9newScreen8ObjFloorFv=0x8031BE58 -__ct__Q32og9newScreen5FloorFv=0x8031BE60 -doUserCallBackFunc__Q32og9newScreen5FloorFPQ28Resource10MgrCommand=0x8031BE9C -doCreateObj__Q32og9newScreen5FloorFP10JKRArchive=0x8031BFD8 -getResName__Q32og9newScreen5FloorCFv=0x8031BFDC -getSceneType__Q32og9newScreen5FloorFv=0x8031BFE4 -getOwnerID__Q32og9newScreen5FloorFv=0x8031BFEC -getMemberID__Q32og9newScreen5FloorFv=0x8031BFF8 -__ct__Q32og9newScreen7ObjCaveFPCc=0x8031C008 -__dt__Q32og9newScreen7ObjCaveFv=0x8031C0A4 -doCreate__Q32og9newScreen7ObjCaveFP10JKRArchive=0x8031C150 -commonUpdate__Q32og9newScreen7ObjCaveFv=0x8031C668 -doUpdate__Q32og9newScreen7ObjCaveFv=0x8031CA0C -doDraw__Q32og9newScreen7ObjCaveFR8Graphics=0x8031CA30 -doStart__Q32og9newScreen7ObjCaveFPCQ26Screen13StartSceneArg=0x8031CA94 -doEnd__Q32og9newScreen7ObjCaveFPCQ26Screen11EndSceneArg=0x8031CAA8 -doUpdateFadein__Q32og9newScreen7ObjCaveFv=0x8031CAB8 -doUpdateFadeinFinish__Q32og9newScreen7ObjCaveFv=0x8031CB2C -doUpdateFinish__Q32og9newScreen7ObjCaveFv=0x8031CB30 -doUpdateFadeout__Q32og9newScreen7ObjCaveFv=0x8031CB3C -doUpdateFadeoutFinish__Q32og9newScreen7ObjCaveFv=0x8031CBB8 -__sinit_ogObjCave_cpp=0x8031CBBC -@24@__dt__Q32og9newScreen7ObjCaveFv=0x8031CC88 -__ct__Q32og9newScreen4CaveFv=0x8031CC90 -doUserCallBackFunc__Q32og9newScreen4CaveFPQ28Resource10MgrCommand=0x8031CCCC -doCreateObj__Q32og9newScreen4CaveFP10JKRArchive=0x8031CCD0 -getResName__Q32og9newScreen4CaveCFv=0x8031CD48 -getSceneType__Q32og9newScreen4CaveFv=0x8031CD54 -getOwnerID__Q32og9newScreen4CaveFv=0x8031CD5C -getMemberID__Q32og9newScreen4CaveFv=0x8031CD68 -isDrawInDemo__Q32og9newScreen4CaveCFv=0x8031CD78 -caveIDtoMsgID__Q22og9newScreenFUl=0x8031CD80 -__ct__Q32og9newScreen10ObjAnaDemoFPCc=0x8031CE1C -__dt__Q32og9newScreen10ObjAnaDemoFv=0x8031CED8 -doCreate__Q32og9newScreen10ObjAnaDemoFP10JKRArchive=0x8031CF84 -setBlinkMenu__Q32og9newScreen10ObjAnaDemoFv=0x8031E0A4 -doUpdate__Q32og9newScreen10ObjAnaDemoFv=0x8031E138 -commonUpdate__Q32og9newScreen10ObjAnaDemoFv=0x8031E70C -doDraw__Q32og9newScreen10ObjAnaDemoFR8Graphics=0x8031E78C -doStart__Q32og9newScreen10ObjAnaDemoFPCQ26Screen13StartSceneArg=0x8031E800 -doEnd__Q32og9newScreen10ObjAnaDemoFPCQ26Screen11EndSceneArg=0x8031E818 -doUpdateFadeinFinish__Q32og9newScreen10ObjAnaDemoFv=0x8031E820 -doUpdateFinish__Q32og9newScreen10ObjAnaDemoFv=0x8031E824 -doUpdateFadeoutFinish__Q32og9newScreen10ObjAnaDemoFv=0x8031E830 -doUpdateFadein__Q32og9newScreen10ObjAnaDemoFv=0x8031E8C4 -doUpdateFadeout__Q32og9newScreen10ObjAnaDemoFv=0x8031E9A8 -__sinit_ogObjAnaDemo_cpp=0x8031EA2C -@24@__dt__Q32og9newScreen10ObjAnaDemoFv=0x8031EA50 -__ct__Q32og9newScreen7AnaDemoFl=0x8031EA58 -doUserCallBackFunc__Q32og9newScreen7AnaDemoFPQ28Resource10MgrCommand=0x8031EAD8 -doCreateObj__Q32og9newScreen7AnaDemoFP10JKRArchive=0x8031EADC -getResName__Q32og9newScreen7AnaDemoCFv=0x8031EB54 -getSceneType__Q32og9newScreen7AnaDemoFv=0x8031EB60 -getOwnerID__Q32og9newScreen7AnaDemoFv=0x8031EB68 -getMemberID__Q32og9newScreen7AnaDemoFv=0x8031EB74 -isUseBackupSceneInfo__Q32og9newScreen7AnaDemoFv=0x8031EBE0 -__ct__Q32og9newScreen14ObjChallenge2PFPCc=0x8031EBE8 -__dt__Q32og9newScreen14ObjChallenge2PFv=0x8031EC4C -doCreate__Q32og9newScreen14ObjChallenge2PFP10JKRArchive=0x8031ECB4 -init__Q42og9newScreen14ObjChallenge2P9ScreenSetFPQ32og6Screen8DataNaviP10JKRArchivePQ32og6Screen21DispMemberChallenge2P=0x8031F378 -commonUpdate__Q32og9newScreen14ObjChallenge2PFv=0x8031F634 -doUpdate__Q32og9newScreen14ObjChallenge2PFv=0x8031F894 -doDraw__Q32og9newScreen14ObjChallenge2PFR8Graphics=0x8031F8B8 -doUpdateFadeinFinish__Q32og9newScreen14ObjChallenge2PFv=0x8031FAB0 -doUpdateFinish__Q32og9newScreen14ObjChallenge2PFv=0x8031FAB4 -doUpdateFadeoutFinish__Q32og9newScreen14ObjChallenge2PFv=0x8031FAC0 -doUpdateFadein__Q32og9newScreen14ObjChallenge2PFv=0x8031FAC4 -doUpdateFadeout__Q32og9newScreen14ObjChallenge2PFv=0x8031FB38 -doStart__Q32og9newScreen14ObjChallenge2PFPCQ26Screen13StartSceneArg=0x8031FBB4 -__sinit_ogObjChallenge2P_cpp=0x8031FC28 -@24@__dt__Q32og9newScreen14ObjChallenge2PFv=0x8031FCFC -__ct__Q32og9newScreen11Challenge2PFv=0x8031FD04 -doUserCallBackFunc__Q32og9newScreen11Challenge2PFPQ28Resource10MgrCommand=0x8031FD40 -doCreateObj__Q32og9newScreen11Challenge2PFP10JKRArchive=0x8031FD44 -doStart__Q32og9newScreen11Challenge2PFPQ26Screen13StartSceneArg=0x8031FE04 -doUpdateActive__Q32og9newScreen11Challenge2PFv=0x8031FE50 -startCountDown__Q32og9newScreen11Challenge2PFv=0x8031FE88 -getResName__Q32og9newScreen11Challenge2PCFv=0x8031FF0C -getSceneType__Q32og9newScreen11Challenge2PFv=0x8031FF18 -getOwnerID__Q32og9newScreen11Challenge2PFv=0x8031FF20 -getMemberID__Q32og9newScreen11Challenge2PFv=0x8031FF2C -isDrawInDemo__Q32og9newScreen11Challenge2PCFv=0x8031FF3C -__ct__Q32og9newScreen10ObjContenaFPCc=0x8031FF44 -__dt__Q32og9newScreen10ObjContenaFv=0x80320104 -doCreate__Q32og9newScreen10ObjContenaFP10JKRArchive=0x803201B0 -putinPiki__Q32og9newScreen10ObjContenaFb=0x80320AE4 -takeoutPiki__Q32og9newScreen10ObjContenaFb=0x80320D68 -moveContena__Q32og9newScreen10ObjContenaFv=0x80321088 -commonUpdate__Q32og9newScreen10ObjContenaFv=0x803213C4 -doUpdate__Q32og9newScreen10ObjContenaFv=0x803219C0 -doDraw__Q32og9newScreen10ObjContenaFR8Graphics=0x80321A00 -doStart__Q32og9newScreen10ObjContenaFPCQ26Screen13StartSceneArg=0x80321B74 -doEnd__Q32og9newScreen10ObjContenaFPCQ26Screen11EndSceneArg=0x80321BB8 -doUpdateFadeinFinish__Q32og9newScreen10ObjContenaFv=0x80321BC0 -doUpdateFinish__Q32og9newScreen10ObjContenaFv=0x80321BC4 -doUpdateFadeoutFinish__Q32og9newScreen10ObjContenaFv=0x80321BD0 -doUpdateFadein__Q32og9newScreen10ObjContenaFv=0x80321BD4 -doUpdateFadeout__Q32og9newScreen10ObjContenaFv=0x80321C7C -__sinit_ogObjContena_cpp=0x80321E58 -@24@__dt__Q32og9newScreen10ObjContenaFv=0x80321F00 -__ct__Q32og9newScreen7ContenaFv=0x80321F08 -doUserCallBackFunc__Q32og9newScreen7ContenaFPQ28Resource10MgrCommand=0x80321F4C -doCreateObj__Q32og9newScreen7ContenaFP10JKRArchive=0x80321F50 -getResName__Q32og9newScreen7ContenaCFv=0x80322050 -getSceneType__Q32og9newScreen7ContenaFv=0x8032205C -getOwnerID__Q32og9newScreen7ContenaFv=0x80322064 -getMemberID__Q32og9newScreen7ContenaFv=0x80322070 -isUseBackupSceneInfo__Q32og9newScreen7ContenaFv=0x80322084 -__ct__Q32og9newScreen20ObjSMenuPauseDoukutuFPCc=0x8032208C -__dt__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x8032213C -doCreate__Q32og9newScreen20ObjSMenuPauseDoukutuFP10JKRArchive=0x80322200 -commonUpdate__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322774 -doUpdate__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322808 -doDraw__Q32og9newScreen20ObjSMenuPauseDoukutuFR8Graphics=0x803228B8 -doStart__Q32og9newScreen20ObjSMenuPauseDoukutuFPCQ26Screen13StartSceneArg=0x80322944 -doEnd__Q32og9newScreen20ObjSMenuPauseDoukutuFPCQ26Screen11EndSceneArg=0x803229E8 -doUpdateFinish__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x803229F0 -doUpdateFadeout__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322A2C -doUpdateFadeoutFinish__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322A78 -menu_pause__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322BD0 -doUpdateCancelAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322DA8 -doUpdateLAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322DB8 -doUpdateRAction__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322E24 -menu_giveup__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80322EEC -finishPause__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x803230D4 -menu__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x8032310C -in_L__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x803231B4 -in_R__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x803231C8 -wait__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x803231DC -out_L__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x803231E8 -out_R__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80323214 -set_Blink_Normal__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80323240 -set_Blink_YesNo__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80323304 -set_Menu_Normal__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x8032337C -set_Menu_YesNo__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x80323488 -__sinit_ogObjSMenuPauseDoukutu_cpp=0x8032355C -@24@__dt__Q32og9newScreen20ObjSMenuPauseDoukutuFv=0x8032357C -__ct__Q32og9newScreen17SMenuPauseDoukutuFv=0x80323584 -doUserCallBackFunc__Q32og9newScreen17SMenuPauseDoukutuFPQ28Resource10MgrCommand=0x803235D4 -doCreateObj__Q32og9newScreen17SMenuPauseDoukutuFP10JKRArchive=0x803235D8 -doGetFinishState__Q32og9newScreen17SMenuPauseDoukutuFv=0x80323638 -doUpdateActive__Q32og9newScreen17SMenuPauseDoukutuFv=0x803236C8 -doConfirmSetScene__Q32og9newScreen17SMenuPauseDoukutuFRQ26Screen11SetSceneArg=0x803236CC -getResName__Q32og9newScreen17SMenuPauseDoukutuCFv=0x80323734 -getSceneType__Q32og9newScreen17SMenuPauseDoukutuFv=0x80323740 -getOwnerID__Q32og9newScreen17SMenuPauseDoukutuFv=0x80323748 -getMemberID__Q32og9newScreen17SMenuPauseDoukutuFv=0x80323754 -isUseBackupSceneInfo__Q32og9newScreen17SMenuPauseDoukutuFv=0x80323768 -__sinit_ogSceneSMenuPauseDoukutu_cpp=0x80323770 -__ct__Q32og9newScreen10ObjUfoMenuFPCc=0x80323798 -__dt__Q32og9newScreen10ObjUfoMenuFv=0x80323848 -doCreate__Q32og9newScreen10ObjUfoMenuFP10JKRArchive=0x803238F4 -setSelectPikmin__Q32og9newScreen10ObjUfoMenuFi=0x80323D84 -doUpdate__Q32og9newScreen10ObjUfoMenuFv=0x80323E78 -setBackupScene__Q32og9newScreen10ObjUfoMenuFv=0x8032439C -doDraw__Q32og9newScreen10ObjUfoMenuFR8Graphics=0x80324430 -doStart__Q32og9newScreen10ObjUfoMenuFPCQ26Screen13StartSceneArg=0x803244E4 -doEnd__Q32og9newScreen10ObjUfoMenuFPCQ26Screen11EndSceneArg=0x80324504 -doUpdateFadeinFinish__Q32og9newScreen10ObjUfoMenuFv=0x8032450C -doUpdateFinish__Q32og9newScreen10ObjUfoMenuFv=0x80324550 -doUpdateFadeoutFinish__Q32og9newScreen10ObjUfoMenuFv=0x8032457C -doUpdateFadein__Q32og9newScreen10ObjUfoMenuFv=0x803245A0 -doUpdateFadeout__Q32og9newScreen10ObjUfoMenuFv=0x80324728 -__sinit_ogObjUfo_cpp=0x803248A4 -@24@__dt__Q32og9newScreen10ObjUfoMenuFv=0x803248EC -__ct__Q32og9newScreen7UfoMenuFv=0x803248F4 -doUserCallBackFunc__Q32og9newScreen7UfoMenuFPQ28Resource10MgrCommand=0x80324930 -doCreateObj__Q32og9newScreen7UfoMenuFP10JKRArchive=0x80324934 -doConfirmSetScene__Q32og9newScreen7UfoMenuFRQ26Screen11SetSceneArg=0x803249AC -doSetBackupScene__Q32og9newScreen7UfoMenuFRQ26Screen11SetSceneArg=0x80324A0C -getResName__Q32og9newScreen7UfoMenuCFv=0x80324A18 -getSceneType__Q32og9newScreen7UfoMenuFv=0x80324A24 -getOwnerID__Q32og9newScreen7UfoMenuFv=0x80324A2C -getMemberID__Q32og9newScreen7UfoMenuFv=0x80324A38 -isUseBackupSceneInfo__Q32og9newScreen7UfoMenuFv=0x80324A4C -__ct__Q32og9newScreen7ObjSaveFPCc=0x80324A54 -__dt__Q32og9newScreen7ObjSaveFv=0x80324AB4 -doCreate__Q32og9newScreen7ObjSaveFP10JKRArchive=0x80324B60 -doUpdate__Q32og9newScreen7ObjSaveFv=0x80324BEC -doDraw__Q32og9newScreen7ObjSaveFR8Graphics=0x80324D20 -doStart__Q32og9newScreen7ObjSaveFPCQ26Screen13StartSceneArg=0x80324D50 -doEnd__Q32og9newScreen7ObjSaveFPCQ26Screen11EndSceneArg=0x80324D58 -doUpdateFadeinFinish__Q32og9newScreen7ObjSaveFv=0x80324D60 -doUpdateFinish__Q32og9newScreen7ObjSaveFv=0x80324D64 -doUpdateFadeoutFinish__Q32og9newScreen7ObjSaveFv=0x80324D68 -doUpdateFadein__Q32og9newScreen7ObjSaveFv=0x80324D9C -doUpdateFadeout__Q32og9newScreen7ObjSaveFv=0x80324DA4 -@24@__dt__Q32og9newScreen7ObjSaveFv=0x80324DAC -__ct__Q32og9newScreen4SaveFv=0x80324DB4 -doUserCallBackFunc__Q32og9newScreen4SaveFPQ28Resource10MgrCommand=0x80324DF0 -doCreateObj__Q32og9newScreen4SaveFP10JKRArchive=0x80324E68 -doCreateObjUserCallBackFunc__Q32og9newScreen4SaveFP10JKRArchive=0x80324E98 -getResName__Q32og9newScreen4SaveCFv=0x80324F00 -getSceneType__Q32og9newScreen4SaveFv=0x80324F08 -getOwnerID__Q32og9newScreen4SaveFv=0x80324F10 -getMemberID__Q32og9newScreen4SaveFv=0x80324F1C -__ct__Q32og9newScreen11ObjFinalMsgFPCc=0x80324F2C -__dt__Q32og9newScreen11ObjFinalMsgFv=0x80324FAC -doCreate__Q32og9newScreen11ObjFinalMsgFP10JKRArchive=0x80325058 -blink_Menu__Q32og9newScreen11ObjFinalMsgFi=0x80325324 -doUpdate__Q32og9newScreen11ObjFinalMsgFv=0x80325394 -menu__Q32og9newScreen11ObjFinalMsgFv=0x803253FC -doDraw__Q32og9newScreen11ObjFinalMsgFR8Graphics=0x803255BC -doStart__Q32og9newScreen11ObjFinalMsgFPCQ26Screen13StartSceneArg=0x8032561C -doEnd__Q32og9newScreen11ObjFinalMsgFPCQ26Screen11EndSceneArg=0x8032567C -doUpdateFadein__Q32og9newScreen11ObjFinalMsgFv=0x80325684 -doUpdateFadeinFinish__Q32og9newScreen11ObjFinalMsgFv=0x8032573C -doUpdateFinish__Q32og9newScreen11ObjFinalMsgFv=0x80325778 -doUpdateFadeout__Q32og9newScreen11ObjFinalMsgFv=0x803257B0 -doUpdateFadeoutFinish__Q32og9newScreen11ObjFinalMsgFv=0x80325860 -wait__Q32og9newScreen11ObjFinalMsgFv=0x80325894 -@24@__dt__Q32og9newScreen11ObjFinalMsgFv=0x803258E0 -__ct__Q32og9newScreen8FinalMsgFv=0x803258E8 -doUserCallBackFunc__Q32og9newScreen8FinalMsgFPQ28Resource10MgrCommand=0x80325924 -doCreateObj__Q32og9newScreen8FinalMsgFP10JKRArchive=0x80325928 -doGetFinishState__Q32og9newScreen8FinalMsgFv=0x803259A0 -getResName__Q32og9newScreen8FinalMsgCFv=0x80325A04 -getSceneType__Q32og9newScreen8FinalMsgFv=0x80325A10 -getOwnerID__Q32og9newScreen8FinalMsgFv=0x80325A18 -getMemberID__Q32og9newScreen8FinalMsgFv=0x80325A24 -isUseBackupSceneInfo__Q32og9newScreen8FinalMsgFv=0x80325A38 -__ct__Q32og9newScreen5ObjVsFPCc=0x80325A40 -__dt__Q32og9newScreen5ObjVsFv=0x80325B9C -doCreate__Q32og9newScreen5ObjVsFP10JKRArchive=0x80325C48 -setOnOffBdama__Q32og9newScreen5ObjVsFb=0x80326448 -init__Q42og9newScreen5ObjVs9ScreenSetFPQ32og6Screen8DataNaviP10JKRArchivePUl=0x80326E70 -checkObake__Q32og9newScreen5ObjVsFv=0x80327128 -doUpdateCommon__Q32og9newScreen5ObjVsFv=0x80327694 -doUpdate__Q32og9newScreen5ObjVsFv=0x80327940 -doDraw__Q32og9newScreen5ObjVsFR8Graphics=0x80327984 -doStart__Q32og9newScreen5ObjVsFPCQ26Screen13StartSceneArg=0x80327AB4 -doEnd__Q32og9newScreen5ObjVsFPCQ26Screen11EndSceneArg=0x80327AC8 -doUpdateFadeinFinish__Q32og9newScreen5ObjVsFv=0x80327AD8 -doUpdateFinish__Q32og9newScreen5ObjVsFv=0x80327ADC -doUpdateFadeoutFinish__Q32og9newScreen5ObjVsFv=0x80327AE8 -doUpdateFadein__Q32og9newScreen5ObjVsFv=0x80327AEC -doUpdateFadeout__Q32og9newScreen5ObjVsFv=0x80327B60 -getName__Q25efx2d8ArgScaleFv=0x80327BDC -__sinit_ogObjVs_cpp=0x80327BE8 -@24@__dt__Q32og9newScreen5ObjVsFv=0x80327C54 -__ct__Q32og9newScreen2VsFv=0x80327C5C -doUserCallBackFunc__Q32og9newScreen2VsFPQ28Resource10MgrCommand=0x80327C98 -doCreateObj__Q32og9newScreen2VsFP10JKRArchive=0x80327C9C -getResName__Q32og9newScreen2VsCFv=0x80327D14 -getSceneType__Q32og9newScreen2VsFv=0x80327D20 -getOwnerID__Q32og9newScreen2VsFv=0x80327D28 -getMemberID__Q32og9newScreen2VsFv=0x80327D34 -isDrawInDemo__Q32og9newScreen2VsCFv=0x80327D40 -__ct__Q32og9newScreen14ObjChallenge1PFPCc=0x80327D48 -__dt__Q32og9newScreen14ObjChallenge1PFv=0x80327DBC -doCreate__Q32og9newScreen14ObjChallenge1PFP10JKRArchive=0x80327E24 -doUpdate__Q32og9newScreen14ObjChallenge1PFv=0x8032849C -doDraw__Q32og9newScreen14ObjChallenge1PFR8Graphics=0x80328670 -doUpdateFadein__Q32og9newScreen14ObjChallenge1PFv=0x803286A0 -doUpdateFadeinFinish__Q32og9newScreen14ObjChallenge1PFv=0x803288C8 -doUpdateFinish__Q32og9newScreen14ObjChallenge1PFv=0x803288CC -doUpdateFadeout__Q32og9newScreen14ObjChallenge1PFv=0x803288D8 -doUpdateFadeoutFinish__Q32og9newScreen14ObjChallenge1PFv=0x80328B08 -doStart__Q32og9newScreen14ObjChallenge1PFPCQ26Screen13StartSceneArg=0x80328B0C -__sinit_ogObjChallenge1P_cpp=0x80328B80 -@24@__dt__Q32og9newScreen14ObjChallenge1PFv=0x80328C28 -__ct__Q32og9newScreen11Challenge1PFv=0x80328C30 -doUserCallBackFunc__Q32og9newScreen11Challenge1PFPQ28Resource10MgrCommand=0x80328C6C -doCreateObj__Q32og9newScreen11Challenge1PFP10JKRArchive=0x80328C70 -doStart__Q32og9newScreen11Challenge1PFPQ26Screen13StartSceneArg=0x80328D0C -doUpdateActive__Q32og9newScreen11Challenge1PFv=0x80328D58 -startCountDown__Q32og9newScreen11Challenge1PFv=0x80328D90 -getResName__Q32og9newScreen11Challenge1PCFv=0x80328DCC -getSceneType__Q32og9newScreen11Challenge1PFv=0x80328DD8 -getOwnerID__Q32og9newScreen11Challenge1PFv=0x80328DE0 -getMemberID__Q32og9newScreen11Challenge1PFv=0x80328DEC -isDrawInDemo__Q32og9newScreen11Challenge1PCFv=0x80328DFC -__ct__Q32og6Screen8ScaleMgrFv=0x80328E04 -up__Q32og6Screen8ScaleMgrFv=0x80328E48 -down__Q32og6Screen8ScaleMgrFv=0x80328E90 -up__Q32og6Screen8ScaleMgrFffff=0x80328ED8 -down__Q32og6Screen8ScaleMgrFfff=0x80328F3C -setParam__Q32og6Screen8ScaleMgrFfff=0x80328F64 -calc__Q32og6Screen8ScaleMgrFv=0x80328F84 -__ct__Q32og9newScreen15ObjSMenuPauseVSFPCc=0x80329190 -__dt__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329210 -doCreate__Q32og9newScreen15ObjSMenuPauseVSFP10JKRArchive=0x803292D4 -blink_Menu__Q32og9newScreen15ObjSMenuPauseVSFi=0x80329608 -commonUpdate__Q32og9newScreen15ObjSMenuPauseVSFv=0x8032967C -doUpdate__Q32og9newScreen15ObjSMenuPauseVSFv=0x803296E4 -menu__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329744 -out_cancel__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329974 -out_menu_0__Q32og9newScreen15ObjSMenuPauseVSFv=0x803299AC -out_menu_1__Q32og9newScreen15ObjSMenuPauseVSFv=0x803299E4 -doUpdateCancelAction__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329A1C -doDraw__Q32og9newScreen15ObjSMenuPauseVSFR8Graphics=0x80329A2C -doStart__Q32og9newScreen15ObjSMenuPauseVSFPCQ26Screen13StartSceneArg=0x80329A8C -doEnd__Q32og9newScreen15ObjSMenuPauseVSFPCQ26Screen11EndSceneArg=0x80329AD0 -doUpdateFadein__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329AD8 -doUpdateFadeinFinish__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329B24 -doUpdateFinish__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329B6C -doUpdateFadeout__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329BB4 -doUpdateFadeoutFinish__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329C00 -getResult__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CAC -in_L__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CB8 -wait__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CCC -out_L__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CD8 -doUpdateRAction__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CE4 -doUpdateLAction__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CE8 -in_R__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CEC -out_R__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CF0 -@24@__dt__Q32og9newScreen15ObjSMenuPauseVSFv=0x80329CF4 -__ct__Q32og9newScreen12SMenuPauseVSFv=0x80329CFC -doUserCallBackFunc__Q32og9newScreen12SMenuPauseVSFPQ28Resource10MgrCommand=0x80329D38 -doCreateObj__Q32og9newScreen12SMenuPauseVSFP10JKRArchive=0x80329D3C -doGetFinishState__Q32og9newScreen12SMenuPauseVSFv=0x80329DB4 -doUpdateActive__Q32og9newScreen12SMenuPauseVSFv=0x80329E3C -doConfirmSetScene__Q32og9newScreen12SMenuPauseVSFRQ26Screen11SetSceneArg=0x80329E40 -doSetBackupScene__Q32og9newScreen12SMenuPauseVSFRQ26Screen11SetSceneArg=0x80329EA8 -getResName__Q32og9newScreen12SMenuPauseVSCFv=0x80329EB4 -getSceneType__Q32og9newScreen12SMenuPauseVSFv=0x80329EC0 -getOwnerID__Q32og9newScreen12SMenuPauseVSFv=0x80329EC8 -getMemberID__Q32og9newScreen12SMenuPauseVSFv=0x80329ED4 -isUseBackupSceneInfo__Q32og9newScreen12SMenuPauseVSFv=0x80329EE8 -__sinit_ogSceneSMenuPauseVs_cpp=0x80329EF0 -stop__Q32og6Screen15CallBack_FurikoFv=0x80329F18 -setParam__Q32og6Screen15CallBack_FurikoFfff=0x80329F58 -update__Q32og6Screen15CallBack_FurikoFv=0x80329F68 -draw__Q32og6Screen15CallBack_FurikoFR8GraphicsR14J2DGrafContext=0x8032A0D0 -setCallBack_Furiko__Q22og6ScreenFPQ29P2DScreen3MgrUx=0x8032A270 -setFurikoScreen__Q22og6ScreenFPQ29P2DScreen3Mgr=0x8032A440 -getFurikoPtr__Q22og6ScreenFPQ29P2DScreen3MgrUx=0x8032A6B0 -__dt__Q32og6Screen15CallBack_FurikoFv=0x8032A6D4 -init__Q32og6Screen20CallBack_CounterSlotFP9J2DScreenUxUxUxPUlb=0x8032A754 -setPuyoParam__Q32og6Screen20CallBack_CounterSlotFfff=0x8032A784 -update__Q32og6Screen20CallBack_CounterSlotFv=0x8032A794 -slot_up__Q32og6Screen20CallBack_CounterSlotFi=0x8032AA04 -startSlot__Q32og6Screen20CallBack_CounterSlotFf=0x8032AA98 -setValue__Q32og6Screen20CallBack_CounterSlotFbb=0x8032AB58 -setCallBack_CounterSlot__Q22og6ScreenFPQ29P2DScreen3MgrUxPUlUsbbP10JKRArchive=0x8032B0AC -__dt__Q32og6Screen20CallBack_CounterSlotFv=0x8032B27C -setValue__Q32og6Screen20CallBack_CounterSlotFv=0x8032B30C -__ct__Q32og9newScreen22ObjWorldMapInfoWindow0FPCc=0x8032B340 -doCreate__Q32og9newScreen22ObjWorldMapInfoWindow0FP10JKRArchive=0x8032B3C4 -doStart__Q32og9newScreen22ObjWorldMapInfoWindow0FPCQ26Screen13StartSceneArg=0x8032B788 -doUpdateFadein__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032B814 -commonUpdate__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032B8A4 -out_cancel__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032B8C4 -out_menu_0__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032B8FC -out_menu_1__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032B934 -out_L__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032B96C -doUpdateFadeoutFinish__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032B978 -getResult__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032BA00 -__dt__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032BA0C -getSize__Q32og6Screen26DispMemberWorldMapInfoWin0Fv=0x8032BA74 -getOwnerID__Q32og6Screen26DispMemberWorldMapInfoWin0Fv=0x8032BA7C -getMemberID__Q32og6Screen26DispMemberWorldMapInfoWin0Fv=0x8032BA88 -@24@__dt__Q32og9newScreen22ObjWorldMapInfoWindow0Fv=0x8032BA9C -__ct__Q32og9newScreen19WorldMapInfoWindow0Fv=0x8032BAA4 -doCreateObj__Q32og9newScreen19WorldMapInfoWindow0FP10JKRArchive=0x8032BAE0 -doConfirmSetScene__Q32og9newScreen19WorldMapInfoWindow0FRQ26Screen11SetSceneArg=0x8032BB84 -doGetFinishState__Q32og9newScreen19WorldMapInfoWindow0Fv=0x8032BB8C -getResName__Q32og9newScreen19WorldMapInfoWindow0CFv=0x8032BBF0 -getSceneType__Q32og9newScreen19WorldMapInfoWindow0Fv=0x8032BBFC -getMemberID__Q32og9newScreen19WorldMapInfoWindow0Fv=0x8032BC04 -isUseBackupSceneInfo__Q32og9newScreen19WorldMapInfoWindow0Fv=0x8032BC18 -__sinit_ogSceneWorldMapInfoWindow0_cpp=0x8032BC20 -__ct__Q32og9newScreen22ObjWorldMapInfoWindow1FPCc=0x8032BC48 -doCreate__Q32og9newScreen22ObjWorldMapInfoWindow1FP10JKRArchive=0x8032BCC8 -doStart__Q32og9newScreen22ObjWorldMapInfoWindow1FPCQ26Screen13StartSceneArg=0x8032BFC8 -commonUpdate__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C024 -out_cancel__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C044 -out_menu_0__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C07C -out_menu_1__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C0B4 -out_L__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C0EC -doUpdateFadeoutFinish__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C0F8 -getResult__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C164 -__dt__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C170 -getSize__Q32og6Screen26DispMemberWorldMapInfoWin1Fv=0x8032C1D8 -getOwnerID__Q32og6Screen26DispMemberWorldMapInfoWin1Fv=0x8032C1E0 -getMemberID__Q32og6Screen26DispMemberWorldMapInfoWin1Fv=0x8032C1EC -@24@__dt__Q32og9newScreen22ObjWorldMapInfoWindow1Fv=0x8032C200 -__ct__Q32og9newScreen19WorldMapInfoWindow1Fv=0x8032C208 -doCreateObj__Q32og9newScreen19WorldMapInfoWindow1FP10JKRArchive=0x8032C244 -doConfirmSetScene__Q32og9newScreen19WorldMapInfoWindow1FRQ26Screen11SetSceneArg=0x8032C2E8 -doGetFinishState__Q32og9newScreen19WorldMapInfoWindow1Fv=0x8032C2F0 -getResName__Q32og9newScreen19WorldMapInfoWindow1CFv=0x8032C354 -getSceneType__Q32og9newScreen19WorldMapInfoWindow1Fv=0x8032C360 -getMemberID__Q32og9newScreen19WorldMapInfoWindow1Fv=0x8032C368 -isUseBackupSceneInfo__Q32og9newScreen19WorldMapInfoWindow1Fv=0x8032C37C -__sinit_ogSceneWorldMapInfoWindow1_cpp=0x8032C384 -__ct__Q32og6Screen15TotalPokoScreenFv=0x8032C3AC -showTotalPoko__Q32og6Screen15TotalPokoScreenFv=0x8032C44C -setTotalPoko__Q32og6Screen15TotalPokoScreenFUl=0x8032C4BC -closeTotalPoko__Q32og6Screen15TotalPokoScreenFv=0x8032C52C -hideTotalPoko__Q32og6Screen15TotalPokoScreenFv=0x8032C570 -setCallBack__Q32og6Screen15TotalPokoScreenFP10JKRArchiveffff=0x8032C580 -update__Q32og6Screen15TotalPokoScreenFv=0x8032C6B8 -__dt__Q32og6Screen15TotalPokoScreenFv=0x8032C7FC -__ct__Q32og9newScreen16ObjChallengeBaseFv=0x8032C8A0 -__dt__Q32og9newScreen16ObjChallengeBaseFv=0x8032C938 -doCreateAfter__Q32og9newScreen16ObjChallengeBaseFP10JKRArchivePQ32og6Screen18CallBack_CounterRV=0x8032C9E4 -doStart__Q32og9newScreen16ObjChallengeBaseFPCQ26Screen13StartSceneArg=0x8032CA84 -doEnd__Q32og9newScreen16ObjChallengeBaseFPCQ26Screen11EndSceneArg=0x8032CA98 -updateTimer__Q32og9newScreen16ObjChallengeBaseFff=0x8032CAA8 -setSubLevel__Q32og9newScreen16ObjChallengeBaseFUl=0x8032CC78 -doUpdateFadein__Q26Screen7ObjBaseFv=0x8032CC80 -doUpdateFadeinFinish__Q26Screen7ObjBaseFv=0x8032CC88 -doUpdate__Q26Screen7ObjBaseFv=0x8032CC8C -doUpdateFinish__Q26Screen7ObjBaseFv=0x8032CC94 -doUpdateFadeoutFinish__Q26Screen7ObjBaseFv=0x8032CC98 -__sinit_ogObjChallengeBase_cpp=0x8032CC9C -@24@__dt__Q32og9newScreen16ObjChallengeBaseFv=0x8032CD28 -__ct__Q32og9newScreen13ChallengeBaseFv=0x8032CD30 -updateCountDown__Q32og9newScreen13ChallengeBaseFfPQ32og6Screen21DispMemberDayEndCount=0x8032CD74 -update__Q32og6Screen16CallBack_PictureFv=0x8032CE18 -draw__Q32og6Screen16CallBack_PictureFR8GraphicsR14J2DGrafContext=0x8032CE78 -setCallBack_3DStick__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx=0x8032D134 -setCallBack_3DStickSmall__Q22og6ScreenFP10JKRArchivePQ29P2DScreen3MgrUx=0x8032D250 -__ct__Q32og6Screen12StickAnimMgrFPQ32og6Screen16CallBack_Picture=0x8032D36C -stickUp__Q32og6Screen12StickAnimMgrFv=0x8032D37C -stickDown__Q32og6Screen12StickAnimMgrFv=0x8032D450 -stickUpDown__Q32og6Screen12StickAnimMgrFv=0x8032D538 -__dt__Q32og6Screen16CallBack_PictureFv=0x8032D5F4 -update__Q32og6Screen18CallBack_DrawAfterFv=0x8032D684 -draw__Q32og6Screen18CallBack_DrawAfterFR8GraphicsR14J2DGrafContext=0x8032D688 -setCallBack_DrawAfter__Q22og6ScreenFPQ29P2DScreen3MgrUx=0x8032D784 -__dt__Q32og6Screen18CallBack_DrawAfterFv=0x8032D868 -__ct__Q32og6Screen13OtakaraSensorFv=0x8032D8E8 -init__Q32og6Screen13OtakaraSensorFP7J2DPaneP7J2DPanei=0x8032DA28 -setParam__Q32og6Screen13OtakaraSensorFfibb=0x8032DAD0 -calcLevel__Q32og6Screen13OtakaraSensorFf=0x8032DC20 -show__Q32og6Screen13OtakaraSensorFv=0x8032DC7C -hide__Q32og6Screen13OtakaraSensorFv=0x8032DC8C -startSensorEff__Q32og6Screen13OtakaraSensorFv=0x8032DC9C -adjPos__Q32og6Screen13OtakaraSensorFff=0x8032DCB0 -adjScale__Q32og6Screen13OtakaraSensorFf=0x8032DD88 -update__Q32og6Screen13OtakaraSensorFv=0x8032DD90 -updateInit__Q32og6Screen13OtakaraSensorFv=0x8032DE18 -calcGrayColor__Q32og6Screen13OtakaraSensorFv=0x8032DF78 -calcAppear__Q32og6Screen13OtakaraSensorFv=0x8032E2E8 -startGraySensor__Q32og6Screen13OtakaraSensorFv=0x8032E4E4 -calcAngle__Q32og6Screen13OtakaraSensorFv=0x8032E61C -calcReaction__Q32og6Screen13OtakaraSensorFv=0x8032E848 -draw__Q32og6Screen13OtakaraSensorFR14J2DGrafContext=0x8032EA4C -kill__Q25efx2d8TSimple3Fv=0x8032EA50 -fade__Q25efx2d8TSimple3Fv=0x8032EA54 -__dt__Q25P2JME8AnalyzerFv=0x8032EA58 -do_character__Q32og9newScreen20TitleMessageAnalyzerFi=0x8032EAC8 -__ct__Q32og9newScreen8TitleMsgFP9J2DScreenP7J2DPanePc=0x8032ECF0 -__dt__Q32og9newScreen20TitleMessageAnalyzerFv=0x8032EF7C -setFontPane__Q32og9newScreen8TitleMsgFP12J2DPictureExi=0x8032EFFC -setCentering__Q32og9newScreen8TitleMsgFQ42og9newScreen8TitleMsg13EnumCentering=0x8032F150 -setColor__Q32og9newScreen8TitleMsgFRQ28JUtility6TColorRQ28JUtility6TColor=0x8032F2B4 -__ct__Q32og9newScreen12TitleMsgDropFP9J2DScreenP7J2DPanePc=0x8032F384 -__dt__Q42og9newScreen12TitleMsgDrop6MotionFv=0x8032F474 -__ct__Q42og9newScreen12TitleMsgDrop6MotionFv=0x8032F4B0 -init__Q32og9newScreen12TitleMsgDropFv=0x8032F4CC -update__Q32og9newScreen12TitleMsgDropFv=0x8032F5F4 -end__Q32og9newScreen12TitleMsgDropFv=0x8032F824 -__ct__Q32og9newScreen12TitleMsgWaveFP9J2DScreenP7J2DPanePc=0x8032F890 -init__Q32og9newScreen12TitleMsgWaveFv=0x8032FA1C -start__Q32og9newScreen12TitleMsgWaveFv=0x8032FA20 -update__Q32og9newScreen12TitleMsgWaveFv=0x8032FAD0 -end__Q32og9newScreen12TitleMsgWaveFv=0x8032FDB0 -setParam__Q32og9newScreen12TitleMsgWaveFffff=0x8032FE1C -__ct__Q32og9newScreen13TitleMsgClashFP9J2DScreenP7J2DPanePc=0x8032FE30 -init__Q32og9newScreen13TitleMsgClashFv=0x8032FF28 -update__Q32og9newScreen13TitleMsgClashFv=0x8032FF3C -end__Q32og9newScreen13TitleMsgClashFv=0x80330150 -start__Q32og9newScreen8TitleMsgFv=0x803301BC -__dt__Q25efx2d13T2DCvnameChalFv=0x803301C0 -tagColor__Q25P2JME8AnalyzerFPCvUl=0x80330244 -tagSize__Q25P2JME8AnalyzerFPCvUl=0x8033024C -tagRuby__Q25P2JME8AnalyzerFPCvUl=0x80330254 -tagFont__Q25P2JME8AnalyzerFPCvUl=0x8033025C -tagImage__Q25P2JME8AnalyzerFUsPCvUl=0x80330264 -tagColorEX__Q25P2JME8AnalyzerFUsPCvUl=0x8033026C -tagControl__Q25P2JME8AnalyzerFUsPCvUl=0x80330274 -tagPosition__Q25P2JME8AnalyzerFUsPCvUl=0x8033027C -@8@__dt__Q25efx2d13T2DCvnameChalFv=0x80330284 -__ct__Q32og6Screen8AngleMgrFv=0x8033028C -init__Q32og6Screen8AngleMgrFfff=0x803302B8 -chase__Q32og6Screen8AngleMgrFff=0x803302C8 -calc__Q32og6Screen8AngleMgrFv=0x80330348 -__ct__Q32og9newScreen9SMenuContFv=0x803304F0 -doConfirmSetScene__Q32og9newScreen9SMenuContFRQ26Screen11SetSceneArg=0x80330540 -doSetBackupScene__Q32og9newScreen9SMenuContFRQ26Screen11SetSceneArg=0x803305A8 -doUserCallBackFunc__Q32og9newScreen9SMenuContFPQ28Resource10MgrCommand=0x803305B4 -doCreateObj__Q32og9newScreen9SMenuContFP10JKRArchive=0x803305B8 -doUpdateActive__Q32og9newScreen9SMenuContFv=0x80330618 -getResName__Q32og9newScreen9SMenuContCFv=0x8033061C -getSceneType__Q32og9newScreen9SMenuContFv=0x80330628 -getOwnerID__Q32og9newScreen9SMenuContFv=0x80330630 -getMemberID__Q32og9newScreen9SMenuContFv=0x8033063C -isUseBackupSceneInfo__Q32og9newScreen9SMenuContFv=0x80330650 -__ct__Q32og9newScreen12ObjSMenuContFPCc=0x80330658 -__dt__Q32og9newScreen12ObjSMenuContFv=0x803306BC -doCreate__Q32og9newScreen12ObjSMenuContFP10JKRArchive=0x80330780 -doUpdateLAction__Q32og9newScreen12ObjSMenuContFv=0x803308CC -doUpdateRAction__Q32og9newScreen12ObjSMenuContFv=0x80330998 -commonUpdate__Q32og9newScreen12ObjSMenuContFv=0x80330A04 -doUpdate__Q32og9newScreen12ObjSMenuContFv=0x80330A84 -doDraw__Q32og9newScreen12ObjSMenuContFR8Graphics=0x80330AD8 -in_L__Q32og9newScreen12ObjSMenuContFv=0x80330B5C -in_R__Q32og9newScreen12ObjSMenuContFv=0x80330B70 -wait__Q32og9newScreen12ObjSMenuContFv=0x80330B84 -out_L__Q32og9newScreen12ObjSMenuContFv=0x80330B90 -out_R__Q32og9newScreen12ObjSMenuContFv=0x80330BBC -doStart__Q32og9newScreen12ObjSMenuContFPCQ26Screen13StartSceneArg=0x80330BE8 -doEnd__Q32og9newScreen12ObjSMenuContFPCQ26Screen11EndSceneArg=0x80330C8C -doUpdateFinish__Q32og9newScreen12ObjSMenuContFv=0x80330C94 -doUpdateFadeout__Q32og9newScreen12ObjSMenuContFv=0x80330CB4 -doUpdateCancelAction__Q32og9newScreen12ObjSMenuContFv=0x80330D00 -__sinit_ogObjSMenuCont_cpp=0x80330D04 -@24@__dt__Q32og9newScreen12ObjSMenuContFv=0x80330D18 -__ct__Q28PSSystem11SeqDataListFv=0x80330D20 -__dt__Q28PSSystem11SeqDataListFv=0x80330D80 -getSeqVolume__Q28PSSystem11SeqDataListFPCc=0x80330E08 -__ct__Q28PSSystem14StreamDataListFv=0x80330F10 -__dt__Q28PSSystem14StreamDataListFv=0x80330F70 -getStreamVolume__Q28PSSystem14StreamDataListFUl=0x80330FF8 -stop__Q28PSSystem12SeqSoundBaseFUl=0x80331108 -stopInner__Q28PSSystem8SeqSoundFUl=0x8033119C -stopInner__Q28PSSystem11StreamSoundFUl=0x803311BC -__dt__Q28PSSystem7SeqHeapFv=0x803311DC -requestCallback__Q28PSSystem7SeqHeapFUlUsP11JAISequence=0x8033123C -loadSeqAsync__Q28PSSystem7SeqHeapFPQ28PSSystem11TaskChecker=0x8033143C -loadedCallback__Q28PSSystem7SeqHeapFUlUl=0x80331510 -reservatorTask__Q28PSSystem17SeqPlayReservatorFv=0x803315A8 -reservatorTask__Q28PSSystem21SeqPauseOffReservatorFv=0x803315D8 -__ct__Q28PSSystem7SeqBaseFPCcRCQ27JAInter9SoundInfo=0x80331608 -init__Q28PSSystem7SeqBaseFv=0x80331708 -__dt__Q28PSSystem7SeqBaseFv=0x8033183C -isPlaying__Q28PSSystem7SeqBaseFv=0x803318D4 -getFileEntry__Q28PSSystem7SeqBaseFv=0x80331910 -pauseOn__Q28PSSystem7SeqBaseFQ38PSSystem7SeqBase9PauseMode=0x803319A0 -pauseOff__Q28PSSystem7SeqBaseFv=0x80331B74 -exec__Q28PSSystem7SeqBaseFv=0x80331CB0 -onPlayingFrame__Q28PSSystem7SeqBaseFv=0x80331D84 -startSeq__Q28PSSystem7SeqBaseFv=0x80331D88 -setConfigVolume__Q28PSSystem7SeqBaseFv=0x80331EDC -scene1st__Q28PSSystem7SeqBaseFPQ28PSSystem11TaskChecker=0x80331FAC -stopSeq__Q28PSSystem7SeqBaseFUl=0x80331FE4 -__ct__Q28PSSystem6BgmSeqFPCcRCQ27JAInter9SoundInfo=0x80332044 -__dt__Q28PSSystem6BgmSeqFv=0x80332158 -__ct__Q28PSSystem9StreamBgmFUlRCQ27JAInter9SoundInfo=0x80332218 -init__Q28PSSystem9StreamBgmFv=0x80332318 -__dt__Q28PSSystem9StreamBgmFv=0x8033231C -setId__Q28PSSystem9StreamBgmFUl=0x80332408 -startSeq__Q28PSSystem9StreamBgmFv=0x80332410 -setConfigVolume__Q28PSSystem9StreamBgmFv=0x8033256C -isPlaying__Q28PSSystem9StreamBgmFv=0x8033263C -__dt__Q28PSSystem5SeSeqFv=0x80332650 -seqLoadAfter__Q28PSSystem5SeSeqFv=0x80332710 -setConfigVolume__Q28PSSystem5SeSeqFv=0x8033273C -stopSeq__Q28PSSystem5SeSeqFUl=0x8033280C -__ct__Q28PSSystem11DirectedBgmFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase=0x803328B0 -initRootTrack_onPlaying__Q28PSSystem11DirectedBgmFP8JASTrack=0x803329E8 -initChildTrack_onPlaying__Q28PSSystem11DirectedBgmFP8JASTrackUc=0x80332AA8 -getDirectorP__Q28PSSystem11DirectedBgmFUc=0x80332B7C -newSeqTrackRoot__Q28PSSystem11DirectedBgmFv=0x80332C14 -newSeqTrackChild__Q28PSSystem11DirectedBgmFUcRQ28PSSystem12SeqTrackRoot=0x80332C78 -init__Q28PSSystem11DirectedBgmFv=0x80332CEC -startSeq__Q28PSSystem11DirectedBgmFv=0x80332EDC -stopSeq__Q28PSSystem11DirectedBgmFUl=0x80333030 -onPlayingFrame__Q28PSSystem11DirectedBgmFv=0x80333120 -onBeatTop__Q28PSSystem20SeqTrackRoot_JumpBgmFv=0x8033314C -onBeatTop__Q28PSSystem11JumpBgmPortFRQ28PSSystem7BeatMgr=0x80333178 -__ct__Q28PSSystem10JumpBgmSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase=0x80333230 -newSeqTrackRoot__Q28PSSystem10JumpBgmSeqFv=0x803333C0 -startSeq__Q28PSSystem10JumpBgmSeqFv=0x80333440 -startSeq__Q28PSSystem10JumpBgmSeqFUs=0x803335B0 -requestJumpBgmQuickly__Q28PSSystem10JumpBgmSeqFUs=0x80333728 -requestJumpBgmOnBeat__Q28PSSystem10JumpBgmSeqFUs=0x80333788 -requestJumpBgmEveryBeat__Q28PSSystem10JumpBgmSeqFUs=0x803337E8 -onPlayingFrame__Q28PSSystem10JumpBgmSeqFv=0x8033383C -outputJumpRequest__Q28PSSystem10JumpBgmSeqFv=0x80333888 -getSeqStartPoint__Q28PSSystem10JumpBgmSeqFv=0x80333950 -setAvoidJumpTimer_Checked__Q28PSSystem10JumpBgmSeqFUl=0x80333990 -isPlaying__Q28PSSystem6SeqMgrFv=0x803339A4 -__dt__Q28PSSystem6SeqMgrFv=0x80333A04 -pauseOnAllSeq__Q28PSSystem6SeqMgrFQ38PSSystem7SeqBase9PauseMode=0x80333ACC -pauseOffAllSeq__Q28PSSystem6SeqMgrFv=0x80333B28 -reservePauseOffAllSeq__Q28PSSystem6SeqMgrFv=0x80333B74 -cancelPauseOffAllSeq__Q28PSSystem6SeqMgrFv=0x80333B98 -exec__Q28PSSystem6SeqMgrFv=0x80333BBC -stopAllSound__Q28PSSystem6SeqMgrFUl=0x80333C3C -scene1st__Q28PSSystem6SeqMgrFPQ28PSSystem11TaskChecker=0x80333C98 -findSeq__Q28PSSystem6SeqMgrFP8JASTrack=0x80333CF4 -getPlayingSeq__Q28PSSystem6SeqMgrFP8JASTrack=0x80333DDC -getFirstSeq__Q28PSSystem6SeqMgrFv=0x80333E5C -getFirstSeqA__Q28PSSystem6SeqMgrFv=0x80333E78 -getSeq__Q28PSSystem6SeqMgrFUl=0x80333E9C -__dt__Q28PSSystem10JumpBgmSeqFv=0x80333ED0 -__dt__Q28PSSystem39SingletonBaseFv=0x80333FB0 -__dt__Q28PSSystem42SingletonBaseFv=0x80334000 -@28@__dt__Q28PSSystem11SeqDataListFv=0x80334050 -@28@__dt__Q28PSSystem14StreamDataListFv=0x80334058 -@1696@stopInner__Q28PSSystem8SeqSoundFUl=0x80334060 -@472@stopInner__Q28PSSystem11StreamSoundFUl=0x80334068 -seqLoadAfter__Q28PSSystem7SeqBaseFv=0x80334070 -getHandleP__Q28PSSystem6BgmSeqFv=0x80334074 -__dt__Q28PSSystem11DirectedBgmFv=0x8033407C -onJump__Q28PSSystem10JumpBgmSeqFUs=0x8033414C -getCastType__Q28PSSystem10JumpBgmSeqFv=0x80334150 -getSeqType__Q28PSSystem6BgmSeqFv=0x80334158 -getCastType__Q28PSSystem11DirectedBgmFv=0x80334160 -getSeqType__Q28PSSystem5SeSeqFv=0x80334168 -getCastType__Q28PSSystem5SeSeqFv=0x80334174 -getHandleP__Q28PSSystem5SeSeqFv=0x8033417C -getHandleP__Q28PSSystem9StreamBgmFv=0x80334184 -scene1st__Q28PSSystem9StreamBgmFPQ28PSSystem11TaskChecker=0x8033418C -getSeqType__Q28PSSystem9StreamBgmFv=0x80334190 -getCastType__Q28PSSystem9StreamBgmFv=0x80334198 -getCastType__Q28PSSystem6BgmSeqFv=0x803341A0 -read__Q28PSSystem14StreamDataListFR6Stream=0x803341A8 -read__Q28PSSystem11SeqDataListFR6Stream=0x803341B0 -getTgtWithTable__Q28PSSystem20TriangleTableModTaskFUc=0x803341B8 -getTableIdxNum__Q28PSSystem20TriangleTableModTaskFv=0x803341D4 -task__Q28PSSystem14PitchResetTaskFR8JASTrack=0x803341DC -task__Q28PSSystem12FlagWaitTaskFR8JASTrack=0x80334210 -timeTask__Q28PSSystem12BankRandTaskFR8JASTrackf=0x80334218 -getPreParam__Q28PSSystem12BankRandTaskFR8JASTrack=0x80334224 -update__Q28PSSystem12SeqTrackRootFv=0x80334230 -getCaveNoFromID__Q26PSGame13CaveFloorInfoFv=0x80334268 -__dt__Q26PSGame13ConductorListFv=0x80334290 -read__Q26PSGame13ConductorListFR6Stream=0x80334364 -__ct__Q36PSGame13ConductorList8CaveInfoFv=0x80334510 -getSeqAndWaveFromConductor__Q26PSGame13ConductorListFPCcPUcPPc=0x80334524 -__ct__Q36PSGame10SoundTable11CategoryMgrFv=0x803348F8 -initiate__Q36PSGame10SoundTable11CategoryMgrFUc=0x803349D8 -set__Q36PSGame10SoundTable11SePerspInfoFfffff=0x80334B4C -getDistVol__Q36PSGame10SoundTable11SePerspInfoFfUc=0x80334B64 -__ct__Q26PSGame9CameraMgrFv=0x80334CC8 -__dt__Q26PSGame9CameraMgrFv=0x80334D70 -getBgmCamVol__Q26PSGame9CameraMgrFUc=0x80334DD0 -update__Q26PSGame9CameraMgrFUcf=0x80334DF4 -getCurrentCamDistVol__Q26PSGame9CameraMgrFUc=0x80334E40 -getVol_DistBetweenCamAndLookat__Q26PSGame9CameraMgrFf=0x80334E50 -__ct__Q26PSGame10SysFactoryFv=0x80334ED8 -newSoundSystem__Q26PSGame10SysFactoryFv=0x80334F0C -preInitJAI__Q26PSGame10SysFactoryFv=0x80335310 -postInitJAI__Q26PSGame10SysFactoryFv=0x80335390 -__ct__Q26PSGame9SceneInfoFv=0x803354B0 -setStageFlag__Q26PSGame9SceneInfoFQ36PSGame9SceneInfo7FlagDefQ36PSGame9SceneInfo12FlagBitShift=0x803354E8 -getFlag__Q26PSGame9SceneInfoCFQ36PSGame9SceneInfo12FlagBitShift=0x80335560 -setStageCamera__Q26PSGame9SceneInfoCFv=0x80335570 -__ct__Q26PSGame8PikSceneFUc=0x803355E4 -__dt__Q26PSGame8PikSceneFv=0x80335620 -getMiddleBossBgm__Q26PSGame8PikSceneFv=0x80335680 -newAndSetGlobalScene__Q26PSGame11PikSceneMgrFv=0x80335728 -newAndSetCurrentScene__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfo=0x80335AA0 -newBgmSeq__Q26PSGame11PikSceneMgrFPCcRQ27JAInter9SoundInfo=0x80335F4C -newStreamBgm__Q26PSGame11PikSceneMgrFUlRQ27JAInter9SoundInfo=0x80335FE4 -initBossBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPUc=0x8033606C -initAdditionalBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPQ28PSSystem5Scene=0x803361BC -initMainBgm__Q26PSGame11PikSceneMgrFRQ26PSGame9SceneInfoPUc=0x803365BC -seqCpuSync__6PSGameFP8JASTrackUs=0x803372E0 -PSPlayerChangeToOrimer__Fv=0x80337C2C -PSGetDirectedMainBgm__Fv=0x80337CA8 -PSPlayerChangeToLugie__Fv=0x80337DCC -PSGetDirectedMainBgmA__Fv=0x80337F3C -__dt__Q28PSSystem39SingletonBaseFv=0x803380AC -__dt__Q28PSSystem49SingletonBaseFv=0x803380FC -newInstance__Q28PSSystem49SingletonBaseFv=0x8033814C -@28@__dt__Q26PSGame13ConductorListFv=0x803381E4 -isCaveFloor__Q26PSGame9SceneInfoFv=0x803381EC -curSceneIsBigBossFloor__Q26PSGame11PikSceneMgrFv=0x803381F4 -exec__Q28PSSystem8SceneMgrFv=0x803381FC -init__Q28PSSystem5SceneFv=0x80338234 -__dt__Q29PSAutoBgm15ConductorArcMgrFv=0x80338238 -__dt__Q36PSGame10SoundTable11CategoryMgrFv=0x80338288 -__dt__Q28PSSystem24ArcMgrFv=0x803382EC -getObject__8PSSystemFP8JASTrackUc=0x8033836C -setObject__8PSSystemFP8JASTrackPvUc=0x803383BC -__ct__Q28PSSystem5SysIFFRCQ28PSSystem8SetupArg=0x8033841C -stopSoundSystem__Q28PSSystem5SysIFFv=0x80338550 -playSystemSe__Q28PSSystem5SysIFFUlUl=0x80338630 -playSystemSe__Q28PSSystem5SysIFFUlPP8JAISoundUl=0x80338670 -initIF__Q28PSSystem5SysIFFRCQ28PSSystem8SetupArg=0x8033869C -makeSe__Q28PSSystem5SysIFFv=0x80338714 -mainLoop__Q28PSSystem5SysIFFv=0x8033874C -setConfigVol_Se__Q28PSSystem5SysIFFf=0x80338828 -setConfigVol_Bgm__Q28PSSystem5SysIFFf=0x803388B4 -__ct__Q28PSSystem5FxMgrFv=0x8033897C -__ct__Q28PSSystem12TextDataBaseFv=0x80338980 -__dt__Q28PSSystem12TextDataBaseFv=0x803389C4 -load__Q28PSSystem12TextDataBaseFPCcQ212JKRDvdRipper15EAllocDirection=0x80338A34 -onlyLoad__Q28PSSystem12TextDataBaseFPCcQ212JKRDvdRipper15EAllocDirection=0x80338AB0 -start1stSeq__Q28PSSystem5SysIFFv=0x80338B18 -makeSequence__Q28PSSystem5SysIFFv=0x80338B24 -__ct__Q28PSSystem8SeqSoundFv=0x80338B94 -makeStream__Q28PSSystem5SysIFFv=0x80338BEC -__ct__Q28PSSystem11StreamSoundFv=0x80338C5C -startSoundActorReturnHandleT<5JAISe>__8JAIBasicFPP5JAISeUlPQ27JAInter5ActorUlUc=0x80338CB4 -startSoundActorT<5JAISe>__8JAIBasicFUlPP5JAISePQ27JAInter5ActorUlUc=0x80338D24 -__sinit_PSSystemIF_cpp=0x80338D8C -__dt__Q210JADUtility18PrmRadioButtonFv=0x80338DB4 -__dt__Q210JADUtility13PrmSliderFv=0x80338E5C -__dt__Q210JADUtility10PrmHioFv=0x80338F04 -__dt__Q210JADUtility7PrmFv=0x80338F9C -__dt__Q29PSAutoBgm9ConductorFv=0x80339024 -removeCallback__Q29PSAutoBgm9ConductorFUcPv=0x803392B4 -seqCpuSync_AutoBgm__Q29PSAutoBgm9ConductorFP8JASTrackUsUlP8JASTrack=0x803392E8 -createTables__Q29PSAutoBgm9ConductorFP8JASTrack=0x80339404 -__ct__Q29PSAutoBgm5TrackFv=0x803394F8 -afterGetFromFree__Q29PSAutoBgm5TrackFv=0x8033979C -__dt__Q29PSAutoBgm5TrackFv=0x803397D8 -removeCallback__Q29PSAutoBgm5TrackFUcPv=0x80339BB4 -seqCpuSync_AutoBgm_Track__Q29PSAutoBgm5TrackFP8JASTrackUsUlP8JASTrack=0x80339BF0 -incCurModule__Q29PSAutoBgm5TrackFv=0x80339DA8 -afterGetFromFree__Q29PSAutoBgm6ModuleFv=0x80339E08 -__ct__Q29PSAutoBgm6ModuleFv=0x80339E5C -__dt__Q29PSAutoBgm6ModuleFv=0x8033A3B0 -removeCallback__Q29PSAutoBgm6ModuleFUcPv=0x8033AADC -seqCpuSync_AutoBgm_Module__Q29PSAutoBgm6ModuleFP8JASTrackUsUlP8JASTrack=0x8033AB20 -setTableAddress__Q29PSAutoBgm6ModuleFP8JASTrack=0x8033AD38 -cycleLoop__Q29PSAutoBgm6ModuleFP8JASTrack=0x8033AEF4 -cycleTop__Q29PSAutoBgm9CycleBaseFP8JASTrack=0x8033B048 -play__Q29PSAutoBgm9CycleBaseFP8JASTrack=0x8033B058 -checkCloser__Q29PSAutoBgm9CycleBaseFP8JASTrack=0x8033B214 -__ct__Q29PSAutoBgm7OnCycleFPQ29PSAutoBgm6Module=0x8033B28C -__dt__Q29PSAutoBgm11PrmLinkFv=0x8033B410 -play__Q29PSAutoBgm7OnCycleFP8JASTrack=0x8033B468 -setTip__Q29PSAutoBgm7OnCycleFP8JASTrack=0x8033B7C8 -historiesAreSameAll__Q29PSAutoBgm7OnCycleFv=0x8033BA3C -avoidCheck__Q29PSAutoBgm7OnCycleFv=0x8033BA98 -__ct__Q29PSAutoBgm8OffCycleFPQ29PSAutoBgm6Module=0x8033BB54 -__ct__Q29PSAutoBgm7AutoBgmFPCcPCcRCQ27JAInter9SoundInfoQ210JADUtility10AccessModePQ28PSSystem15DirectorMgrBase=0x8033BC04 -__dt__Q29PSAutoBgm10MeloArrMgrFv=0x8033BD60 -__dt__Q29PSAutoBgm12ConductorMgrFv=0x8033BDD8 -__dt__Q210JADUtility59PrmDataMgrNodeFv=0x8033BF2C -startSeq__Q29PSAutoBgm7AutoBgmFv=0x8033C058 -scene1st__Q29PSAutoBgm7AutoBgmFPQ28PSSystem11TaskChecker=0x8033C1A8 -loadConductor__Q29PSAutoBgm7AutoBgmFPQ28PSSystem11TaskChecker=0x8033C1EC -loadedCallback__Q29PSAutoBgm7AutoBgmFUlUl=0x8033C36C -pauseOn__Q29PSAutoBgm7AutoBgmFQ38PSSystem7SeqBase9PauseMode=0x8033C3E0 -pauseOff__Q29PSAutoBgm7AutoBgmFv=0x8033C548 -__dt__Q210JADUtility28PrmSetRcFv=0x8033C568 -__dt__Q210JADUtility10StrEditBoxFv=0x8033C6F8 -__dt__Q210JADUtility12PrmSliderFv=0x8033C7BC -__dt__Q210JADUtility9PrmHioFv=0x8033C864 -__dt__Q210JADUtility6PrmFv=0x8033C8FC -__dt__Q210JADUtility29PrmSetRcFv=0x8033C984 -getChildNum__Q210JADUtility28PrmSetRcFv=0x8033CB14 -getPrmObjHeap__Q210JADUtility28PrmSetRcFv=0x8033CB1C -getChildNum__Q210JADUtility29PrmSetRcFv=0x8033CB24 -getPrmObjHeap__Q210JADUtility29PrmSetRcFv=0x8033CB2C -save__Q210JADUtility6PrmFR21JSUMemoryOutputStream=0x8033CB34 -load__Q210JADUtility6PrmFR20JSUMemoryInputStream=0x8033CBC4 -save__Q210JADUtility7PrmFR21JSUMemoryOutputStream=0x8033CC28 -load__Q210JADUtility7PrmFR20JSUMemoryInputStream=0x8033CCB8 -getChild__Q210JADUtility29PrmSetRcFUc=0x8033CD1C -load__Q210JADUtility29PrmSetRcFR20JSUMemoryInputStream=0x8033CD58 -__ct__Q210JADUtility29PrmSetRcFv=0x8033CE6C -getChild__Q210JADUtility28PrmSetRcFUc=0x8033CEFC -load__Q210JADUtility28PrmSetRcFR20JSUMemoryInputStream=0x8033CF38 -__ct__Q210JADUtility28PrmSetRcFv=0x8033D04C -avoidCheck__Q29PSAutoBgm9CycleBaseFv=0x8033D0DC -getCycleType__Q29PSAutoBgm9CycleBaseFv=0x8033D0E4 -__ct__Q29PSAutoBgm11PrmLinkFv=0x8033D0EC -__dt__Q29PSAutoBgm7AutoBgmFv=0x8033D120 -getCastType__Q29PSAutoBgm7AutoBgmFv=0x8033D2E4 -newSeqTrackRoot__Q29PSAutoBgm7AutoBgmFv=0x8033D2EC -beatUpdate__Q29PSAutoBgm19AutoBgmSeqTrackRootFv=0x8033D374 -getSaveTempHeap__Q29PSAutoBgm12ConductorMgrFv=0x8033D444 -getObjHeap__Q29PSAutoBgm12ConductorMgrFv=0x8033D44C -getDataHeap__Q29PSAutoBgm12ConductorMgrFv=0x8033D454 -getCycleType__Q29PSAutoBgm7OnCycleFv=0x8033D45C -getEraseLink__Q29PSAutoBgm9ConductorFv=0x8033D464 -onBeatTop__Q28PSSystem12SeqTrackRootFv=0x8033D46C -initInstance__Q210JADUtility59PrmDataMgrNodeFv=0x8033D470 -initInstance__Q210JADUtility59PrmDataMgrNodeFPvl=0x8033D614 -@600@28@__dt__Q210JADUtility59PrmDataMgrNodeFv=0x8033D6FC -@600@28@init__Q210JADUtility11DataMgrNodeFv=0x8033D710 -@600@28@__dt__Q29PSAutoBgm12ConductorMgrFv=0x8033D724 -createInstance__Q28PSSystem7BankMgrFv=0x8033D738 -__ct__Q28PSSystem7BankMgrFv=0x8033D79C -preInit__Q28PSSystem7BankMgrFv=0x8033D7F4 -init__Q28PSSystem7BankMgrFv=0x8033D888 -load__Q28PSSystem9WaveSceneFUsUsQ38PSSystem9WaveScene7AreaArgPQ28PSSystem11TaskChecker=0x8033DA00 -__ct__Q38PSSystem9WaveScene8WaveAreaFv=0x8033DA78 -loadWave__Q38PSSystem9WaveScene8WaveAreaFUsUsPQ28PSSystem11TaskChecker=0x8033DAA0 -deleteWave__Q38PSSystem9WaveScene8WaveAreaFv=0x8033DBB4 -waveLoadCallback__Q38PSSystem9WaveScene8WaveAreaFUl=0x8033DC64 -__dt__Q28PSSystem7BankMgrFv=0x8033DCE0 -secondLoadS__Q28PSSystem7BankMgrFv=0x8033DD70 -firstLoadS__Q28PSSystem7BankMgrFv=0x8033DD74 -initS__Q28PSSystem7BankMgrFv=0x8033DD78 -setWsDataS__Q28PSSystem7BankMgrFPUl=0x8033DD9C -setBankDataS__Q28PSSystem7BankMgrFPUl=0x8033DF64 -__dt__Q38PSSystem9WaveScene8WaveAreaFv=0x8033E12C -__ct__Q28PSSystem8TaskBaseFv=0x8033E1F8 -append__Q28PSSystem9TaskEntryFPQ28PSSystem8TaskBase=0x8033E24C -isUnderTask_byDirector__Q28PSSystem12TaskEntryMgrFPQ28PSSystem12DirectorBase=0x8033E270 -update__Q28PSSystem12TaskEntryMgrFv=0x8033E2A4 -appendEntry__Q28PSSystem12TaskEntryMgrFPQ28PSSystem9TaskEntryPQ28PSSystem12DirectorBase=0x8033E3F4 -removeEntry__Q28PSSystem12TaskEntryMgrFPQ28PSSystem9TaskEntry=0x8033E494 -removeAllEntry__Q28PSSystem12TaskEntryMgrFv=0x8033E508 -remove_Lock__Q28PSSystem32MutexListFP30JSULink=0x8033E5AC -append_Lock__Q28PSSystem31MutexListFP29JSULink=0x8033E604 -append_Lock__Q28PSSystem32MutexListFP30JSULink=0x8033E65C -task__Q28PSSystem16ModParamWithFadeFR8JASTrack=0x8033E6B4 -task__Q28PSSystem21ModParamWithTableTaskFR8JASTrack=0x8033E7D8 -tableTask__Q28PSSystem12PitchModTaskFR8JASTrackf=0x8033E8CC -getPreParam__Q28PSSystem14OuterParamTaskFR8JASTrack=0x8033E8FC -timeTask__Q28PSSystem14OuterParamTaskFR8JASTrackf=0x8033E9D0 -task__Q28PSSystem14SimpleWaitTaskFR8JASTrack=0x8033EA68 -__ct__Q28PSSystem11BankRandPrmFv=0x8033EA90 -makeEntry__Q28PSSystem20TaskEntry_OuterParamFfUl=0x8033EB04 -makeEntry__Q28PSSystem16TaskEntry_IdMaskFUc=0x8033EB84 -makeEntry__Q28PSSystem16TaskEntry_PitModFffUl=0x8033EBD8 -makeEntry__Q28PSSystem20TaskEntry_MuteVolumeFfUl=0x8033ECE8 -makeEntry__Q28PSSystem22TaskEntry_MuteOnVolumeFUl=0x8033ED8C -makeEntry__Q28PSSystem15TaskEntry_TempoFfUl=0x8033EE18 -registerAnime__Q26PSGame16SoundCreatureMgrFP10J3DAnmBasePCc=0x8033EE98 -avoidChk__Q29PSAutoBgm19MeloArr_RandomAvoidFRQ29PSAutoBgm10MeloArrArg=0x8033EE9C -isToAvoid__Q29PSAutoBgm10MeloArrMgrFRQ29PSAutoBgm10MeloArrArg=0x8033EED8 -post__Q29PSAutoBgm11MeloArrBaseFRQ29PSAutoBgm10MeloArrArg=0x8033F010 -pre__Q29PSAutoBgm11MeloArrBaseFRQ29PSAutoBgm10MeloArrArg=0x8033F014 -directOn__Q29PSAutoBgm11MeloArrBaseFPQ29PSAutoBgm5Track=0x8033F018 -directOff__Q29PSAutoBgm11MeloArrBaseFPQ29PSAutoBgm5Track=0x8033F024 -__dt__Q29PSAutoBgm11MeloArrBaseFv=0x8033F030 -__dt__Q29PSAutoBgm19MeloArr_RandomAvoidFv=0x8033F0B0 -@16@__dt__Q29PSAutoBgm19MeloArr_RandomAvoidFv=0x8033F148 -@16@__dt__Q29PSAutoBgm11MeloArrBaseFv=0x8033F150 -__ct__Q26PSGame5SeMgrFv=0x8033F158 -playMessageVoice__Q26PSGame5SeMgrFUlb=0x8033F368 -stopMessageVoice__Q26PSGame5SeMgrFv=0x8033F488 -__ct__Q26PSGame5RappaFv=0x8033F4C4 -init__Q26PSGame5RappaFUs=0x8033F514 -setId__Q26PSGame5RappaFUl=0x8033F5B4 -__dt__Q26PSGame5RappaFv=0x8033F5BC -playRappa__Q26PSGame5RappaFbffPQ27JAInter6Object=0x8033F654 -syncCpu_WaitChk__Q26PSGame5RappaFP8JASTrack=0x8033F7C4 -syncCpu_TblNo__Q26PSGame5RappaFP8JASTrack=0x8033F800 -__ct__Q26PSGame5SetSeFPCcss=0x8033F808 -exec__Q26PSGame5SetSeFv=0x8033F880 -startSound__Q26PSGame5SetSeFPQ27JAInter6ObjectUlUl=0x8033F8B8 -playSystemSe__Q26PSGame5SetSeFUlUl=0x8033F970 -startCounter__Q26PSGame5SetSeFUl=0x8033FA10 -__ct__Q26PSGame6RandIdFv=0x8033FA94 -startSound__Q26PSGame6RandIdFPQ27JAInter6ObjectUlUlUl=0x8033FAA0 -playSystemSe__Q26PSGame6RandIdFUlPP8JAISoundUlUl=0x8033FC88 -setPanAndDolby__Q26PSGame9EnvSe_PanFP8JAISound=0x8033FE40 -__ct__Q26PSGame17EnvSe_PerspectiveFUlf3Vec=0x8033FEB4 -play__Q26PSGame17EnvSe_PerspectiveFv=0x8033FF14 -__ct__Q26PSGame13EnvSe_AutoPanFUlfffff=0x8033FF60 -setDirection__Q26PSGame13EnvSe_AutoPanFbb=0x8033FFE8 -setPanAndDolby__Q26PSGame13EnvSe_AutoPanFP8JAISound=0x8033FFF4 -__ct__Q26PSGame25Builder_EvnSe_PerspectiveFQ29JGeometry8TBox3=0x80340110 -build__Q26PSGame25Builder_EvnSe_PerspectiveFfPQ28PSSystem8EnvSeMgr=0x8034032C -newSeObj__Q26PSGame25Builder_EvnSe_PerspectiveFUlf3Vec=0x803405FC -__dt__Q26PSGame25Builder_EvnSe_PerspectiveFv=0x803406A8 -__dt__Q28PSSystem30SingletonBaseFv=0x80340770 -onBuild__Q26PSGame25Builder_EvnSe_PerspectiveFPQ28PSSystem9EnvSeBase=0x803407C0 -getCastType__Q28PSSystem9EnvSeBaseFv=0x803407C4 -setPanAndDolby__Q28PSSystem9EnvSeBaseFP8JAISound=0x803407D0 -__dt__Q26PSGame5SeMgrFv=0x803407D4 -__ct__Q28PSSystem9EnvSeBaseFUlf=0x80340838 -exec__Q28PSSystem9EnvSeBaseFv=0x803408DC -play__Q28PSSystem9EnvSeBaseFv=0x80340C38 -setAllPauseFlag__Q28PSSystem8EnvSeMgrFUc=0x80340C78 -on__Q28PSSystem8EnvSeMgrFv=0x80340CAC -on__Q28PSSystem8EnvSeMgrFUlb=0x80340CD0 -off__Q28PSSystem8EnvSeMgrFv=0x80340D20 -off__Q28PSSystem8EnvSeMgrFUlb=0x80340D44 -reservePauseOff__Q28PSSystem8EnvSeMgrFv=0x80340D94 -setVolumeRequest__Q28PSSystem8EnvSeMgrFfUlUc=0x80340DA0 -exec__Q28PSSystem8EnvSeMgrFv=0x80340E10 -reservatorTask__Q28PSSystem24EnvSe_PauseOffReservatorFv=0x80340E90 -__ct__Q38PSSystem9ClusterSe11PartInitArgFv=0x80340EC8 -__ct__Q38PSSystem9ClusterSe4PartFv=0x80340EE8 -callSe__Q38PSSystem9ClusterSe4PartFPQ27JAInter6Object=0x80340F14 -__ct__Q38PSSystem9ClusterSe7FactoryFUc=0x80340F50 -constructPart__Q38PSSystem9ClusterSe7FactoryFv=0x80340FB0 -constructParts__Q38PSSystem9ClusterSe3MgrFRQ38PSSystem9ClusterSe7Factory=0x80341024 -play__Q38PSSystem9ClusterSe3MgrFUcPQ27JAInter6Object=0x803412D8 -__dt__Q28PSSystem9WaveSceneFv=0x8034147C -loadWave__Q28PSSystem10WaveLoaderFPQ28PSSystem11TaskCheckerQ38PSSystem9WaveScene7AreaArg=0x803414F8 -__ct__Q28PSSystem5SceneFUc=0x80341538 -__dt__Q28PSSystem5SceneFv=0x80341650 -adaptChildScene__Q28PSSystem5SceneFPQ28PSSystem5Scene=0x80341714 -adaptTo__Q28PSSystem5SceneFPPQ28PSSystem5Scene=0x803417D0 -detach__Q28PSSystem5SceneFv=0x80341840 -appendSeq__Q28PSSystem5SceneFPQ28PSSystem7SeqBase=0x80341898 -startMainSeq__Q28PSSystem5SceneFv=0x803418F8 -stopMainSeq__Q28PSSystem5SceneFUl=0x80341934 -stopAllSound__Q28PSSystem5SceneFUl=0x80341970 -scene1st__Q28PSSystem5SceneFPQ28PSSystem11TaskChecker=0x80341994 -scene1stLoadSync__Q28PSSystem5SceneFv=0x80341A1C -exec__Q28PSSystem5SceneFv=0x80341A78 -refreshCurEndScene__Q28PSSystem8SceneMgrFv=0x80341AC4 -findSeq__Q28PSSystem8SceneMgrFP8JASTrack=0x80341AF8 -getPlayingSeq__Q28PSSystem8SceneMgrFP8JASTrack=0x80341C4C -deleteScene__Q28PSSystem8SceneMgrFPQ28PSSystem5Scene=0x80341DA0 -deleteCurrentScene__Q28PSSystem8SceneMgrFv=0x803421E0 -getSeqMgr__Q28PSSystem5SceneFv=0x80342248 -getChildScene__Q28PSSystem5SceneFv=0x80342250 -PSGetSystemIFA__Fv=0x80342258 -PSGetSystemIF__Fv=0x803422A0 -proc__Q28PSSystem7BeatMgrFv=0x803422A8 -update__Q28PSSystem12SeqTrackBaseFv=0x803422D4 -init__Q28PSSystem12SeqTrackBaseFP8JASTrack=0x803422FC -getTaskEntryList__Q28PSSystem12SeqTrackBaseFv=0x80342304 -__ct__Q28PSSystem12SeqTrackRootFv=0x8034230C -init__Q28PSSystem12SeqTrackRootFP8JASTrack=0x803426B0 -initSwingRatio__Q28PSSystem12SeqTrackRootFv=0x80342728 -pitchModulation__Q28PSSystem12SeqTrackRootFffUlPQ28PSSystem12DirectorBase=0x803427A4 -tempoChange__Q28PSSystem12SeqTrackRootFfUlPQ28PSSystem12DirectorBase=0x8034282C -onStopSeq__Q28PSSystem12SeqTrackRootFv=0x803428A4 -beatUpdate__Q28PSSystem12SeqTrackRootFv=0x803428C8 -__ct__Q28PSSystem13SeqTrackChildFRCQ28PSSystem12SeqTrackRoot=0x80342964 -muteOffAndFadeIn__Q28PSSystem13SeqTrackChildFfUlPQ28PSSystem12DirectorBase=0x80342C50 -fadeoutAndMute__Q28PSSystem13SeqTrackChildFUlPQ28PSSystem12DirectorBase=0x80342CD4 -fade__Q28PSSystem13SeqTrackChildFfUlPQ28PSSystem12DirectorBase=0x80342D48 -setIdMask__Q28PSSystem13SeqTrackChildFUcPQ28PSSystem12DirectorBase=0x80342DC0 -onStopSeq__Q28PSSystem13SeqTrackChildFv=0x80342E28 -task__Q28PSSystem10IdMaskTaskFR8JASTrack=0x80342E4C -task__Q28PSSystem8MuteTaskFR8JASTrack=0x80342E7C -__ct__Q28PSSystem12DirectorBaseFiPCc=0x80342EB4 -isUnderDirection__Q28PSSystem12DirectorBaseFv=0x803430C8 -setTrack__Q28PSSystem12DirectorBaseFUcPQ28PSSystem12SeqTrackBase=0x803430D8 -exec__Q28PSSystem12DirectorBaseFv=0x8034317C -directOn__Q28PSSystem12DirectorBaseFv=0x803432C8 -directOnInner__Q28PSSystem12DirectorBaseFv=0x8034333C -directOff__Q28PSSystem12DirectorBaseFv=0x803433EC -directOffInner__Q28PSSystem12DirectorBaseFv=0x8034346C -doUpdateRequest__Q28PSSystem12DirectorBaseFv=0x8034351C -powerOn__Q28PSSystem12DirectorBaseFv=0x80343520 -exec__Q28PSSystem15OneShotDirectorFv=0x80343560 -doUpdateRequest__Q28PSSystem16SwitcherDirectorFv=0x803436B0 -__ct__Q28PSSystem15DirectorMgrBaseFUc=0x80343848 -initAndAdaptToBgm__Q28PSSystem15DirectorMgrBaseFRQ28PSSystem11DirectedBgm=0x803438D0 -playInit__Q28PSSystem15DirectorMgrBaseFP8JASTrack=0x803439FC -exec__Q28PSSystem15DirectorMgrBaseFv=0x80343B60 -off__Q28PSSystem15DirectorMgrBaseFPQ28PSSystem11DirectedBgm=0x80343BC8 -__ct__Q28PSSystem17DirectorCopyActorFPQ28PSSystem12DirectorBasePQ28PSSystem12DirectorBase=0x80343D84 -exec__Q28PSSystem17DirectorCopyActorFPQ28PSSystem12DirectorBase=0x80343DA8 -underDirection__Q28PSSystem12DirectorBaseFv=0x80343EC8 -execInner__Q28PSSystem12DirectorBaseFv=0x80343ECC -onPlayInit__Q28PSSystem12DirectorBaseFP8JASTrack=0x80343ED0 -onDirectOn__Q28PSSystem12DirectorBaseFv=0x80343ED4 -onDirectOff__Q28PSSystem12DirectorBaseFv=0x80343ED8 -onUpdateFromSlaveD__Q28PSSystem17DirectorCopyActorFv=0x80343EDC -onUpdateFromMasterD__Q28PSSystem17DirectorCopyActorFv=0x80343EE0 -__dt__Q28PSSystem15DirectorMgrBaseFv=0x80343EE4 -__dt__Q28PSSystem16SwitcherDirectorFv=0x80343F44 -__dt__Q28PSSystem15OneShotDirectorFv=0x80343FB4 -directOffTrack__Q28PSSystem15OneShotDirectorFRQ28PSSystem12SeqTrackBase=0x80344024 -__dt__Q28PSSystem12DirectorBaseFv=0x80344028 -__ct__Q28Morimura12TDayEndCountFv=0x80344088 -__dt__Q28Morimura9TTestBaseFv=0x80344168 -doCreate__Q28Morimura12TDayEndCountFP10JKRArchive=0x80344214 -doUpdate__Q28Morimura12TDayEndCountFv=0x80344500 -doDraw__Q28Morimura12TDayEndCountFR8Graphics=0x80344F88 -reset__Q28Morimura12TDayEndCountFv=0x80345000 -__ct__Q28Morimura18TChallengeEndCountFv=0x80345414 -__dt__Q28Morimura12TDayEndCountFv=0x80345518 -doCreate__Q28Morimura18TChallengeEndCountFP10JKRArchive=0x803455DC -__ct__Q28Morimura20TChallengeEndCount1pFv=0x8034561C -__dt__Q28Morimura18TChallengeEndCountFv=0x80345758 -doUpdate__Q28Morimura20TChallengeEndCount1pFv=0x80345834 -__ct__Q28Morimura20TChallengeEndCount2pFv=0x80345868 -doUpdate__Q28Morimura20TChallengeEndCount2pFv=0x803459A4 -doCreateObj__Q28Morimura15TCountDownSceneFP10JKRArchive=0x803459D4 -doStart__Q28Morimura15TCountDownSceneFPQ26Screen13StartSceneArg=0x80345E60 -getResName__Q28Morimura15TCountDownSceneCFv=0x80345EC4 -getSceneType__Q28Morimura15TCountDownSceneFv=0x80345ED0 -getOwnerID__Q28Morimura15TCountDownSceneFv=0x80345ED8 -getMemberID__Q28Morimura15TCountDownSceneFv=0x80345EE4 -doStart__Q28Morimura12TDayEndCountFPCQ26Screen13StartSceneArg=0x80345EF8 -getDispMemberBase__Q28Morimura12TDayEndCountFv=0x80345F30 -doUpdateFadeinFinish__Q28Morimura9TTestBaseFv=0x80345F64 -__dt__Q28Morimura20TChallengeEndCount2pFv=0x80345F70 -__dt__Q28Morimura20TChallengeEndCount1pFv=0x80346064 -@24@__dt__Q28Morimura12TDayEndCountFv=0x80346158 -@24@__dt__Q28Morimura18TChallengeEndCountFv=0x80346160 -@24@__dt__Q28Morimura20TChallengeEndCount1pFv=0x80346168 -@24@__dt__Q28Morimura20TChallengeEndCount2pFv=0x80346170 -drawSelf__Q28Morimura15THuWhitePaneSetFffPA3_A4_f=0x80346178 -gxSet__Q28Morimura15THuWhitePaneSetFv=0x8034639C -__ct__Q28Morimura10THurryUp2DFv=0x80346430 -__ct__Q38Morimura10THurryUp2D11TStateParamFv=0x803464E0 -doCreate__Q28Morimura10THurryUp2DFP10JKRArchive=0x80346504 -doUpdate__Q28Morimura10THurryUp2DFv=0x80346894 -doDraw__Q28Morimura10THurryUp2DFR8Graphics=0x80346A20 -doStart__Q28Morimura10THurryUp2DFPCQ26Screen13StartSceneArg=0x80346E2C -init__Q28Morimura10THurryUp2DFv=0x80346E88 -move__Q28Morimura10THurryUp2DFv=0x80347348 -scaleUp1__Q28Morimura10THurryUp2DFv=0x80347614 -colorUp__Q28Morimura10THurryUp2DFv=0x8034777C -scaleUp2__Q28Morimura10THurryUp2DFv=0x8034792C -changeState__Q28Morimura10THurryUp2DFif=0x80347B6C -getDispMemberBase__Q28Morimura10THurryUp2DFv=0x80347DC0 -__dt__Q28Morimura10THurryUp2DFv=0x80347DF4 -__dt__Q28Morimura15THuWhitePaneSetFv=0x80347EB8 -__sinit_hurryUp2D_cpp=0x80347F18 -@24@__dt__Q28Morimura10THurryUp2DFv=0x80347F40 -__ct__Q28Morimura13TGameOverBaseFPc=0x80347F48 -doUpdate__Q28Morimura13TGameOverBaseFv=0x80347FB4 -doDraw__Q28Morimura13TGameOverBaseFR8Graphics=0x803480A4 -doCreate__Q28Morimura11TGameOver2DFP10JKRArchive=0x803482E4 -doCreate__Q28Morimura12TOrimaDown2DFP10JKRArchive=0x80348390 -doCreate__Q28Morimura11TLujiDown2DFP10JKRArchive=0x80348430 -doCreate__Q28Morimura16TPresidentDown2DFP10JKRArchive=0x803484D0 -doCreate__Q28Morimura13TPikminDown2DFP10JKRArchive=0x80348570 -__ct__Q28Morimura15TGameOverScreenFP10JKRArchivei=0x80348610 -init__Q28Morimura15TGameOverScreenFPCcUl=0x80348634 -addAnim__Q28Morimura15TGameOverScreenFPc=0x8034884C -update__Q28Morimura15TGameOverScreenFv=0x8034891C -setPosY__Q28Morimura15TGameOverScreenFf=0x803489A8 -draw__Q28Morimura15TGameOverScreenFR8GraphicsP13J2DPerspGraph=0x803489CC -orgdraw__Q28Morimura15TGameOverScreenFR8GraphicsP13J2DPerspGraph=0x80348A04 -setFadeAlpha__Q28Morimura15TGameOverScreenFUc=0x80348A3C -__dt__Q28Morimura10TGXSetPaneFv=0x80348BC0 -drawSelf__Q28Morimura10TGXSetPaneFffPA3_A4_f=0x80348C20 -__dt__Q28Morimura13TPikminDown2DFv=0x80348C4C -getDispMemberBase__Q28Morimura13TGameOverBaseFv=0x80348D28 -doUpdateFadeout__Q28Morimura13TGameOverBaseFv=0x80348D30 -__dt__Q28Morimura16TPresidentDown2DFv=0x80348D64 -__dt__Q28Morimura11TLujiDown2DFv=0x80348E40 -__dt__Q28Morimura12TOrimaDown2DFv=0x80348F1C -__dt__Q28Morimura11TGameOver2DFv=0x80348FF8 -__dt__Q28Morimura13TGameOverBaseFv=0x803490D4 -@24@__dt__Q28Morimura13TGameOverBaseFv=0x80349198 -@24@__dt__Q28Morimura11TGameOver2DFv=0x803491A0 -@24@__dt__Q28Morimura12TOrimaDown2DFv=0x803491A8 -@24@__dt__Q28Morimura11TLujiDown2DFv=0x803491B0 -@24@__dt__Q28Morimura16TPresidentDown2DFv=0x803491B8 -@24@__dt__Q28Morimura13TPikminDown2DFv=0x803491C0 -__ct__Q28Morimura9TTestBaseFPc=0x803491C8 -doStart__Q28Morimura9TTestBaseFPCQ26Screen13StartSceneArg=0x8034924C -doEnd__Q28Morimura9TTestBaseFPCQ26Screen11EndSceneArg=0x8034926C -doUpdateFadein__Q28Morimura9TTestBaseFv=0x8034927C -doUpdateFinish__Q28Morimura9TTestBaseFv=0x8034932C -doUpdateFadeout__Q28Morimura9TTestBaseFv=0x80349338 -@24@__dt__Q28Morimura9TTestBaseFv=0x803493F0 -init__Q34Game4Bomb3FSMFPQ24Game9EnemyBase=0x803493F8 -__ct__Q34Game4Bomb9StateWaitFi=0x80349470 -init__Q34Game4Bomb9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x803494AC -exec__Q34Game4Bomb9StateWaitFPQ24Game9EnemyBase=0x80349508 -__ct__Q34Game4Bomb9StateBombFi=0x80349650 -init__Q34Game4Bomb9StateBombFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034968C -exec__Q34Game4Bomb9StateBombFPQ24Game9EnemyBase=0x803496EC -create__Q23efx9TBombrockFPQ23efx3Arg=0x80349CB0 -forceKill__Q23efx9TBombrockFv=0x80349D34 -fade__Q23efx9TBombrockFv=0x80349D38 -__sinit_bombState_cpp=0x80349D3C -setAnimMgr__Q34Game4Bomb14ProperAnimatorFPQ28SysShape7AnimMgr=0x80349D64 -getAnimator__Q34Game4Bomb14ProperAnimatorFi=0x80349D6C -__dt__Q34Game4Bomb14ProperAnimatorFv=0x80349D74 -getAnimator__Q34Game4Bomb14ProperAnimatorFv=0x80349DD0 -__ct__Q34Game4Bomb3MgrFiUc=0x80349DD8 -doAlloc__Q34Game4Bomb3MgrFv=0x80349E28 -__ct__Q34Game4Bomb5ParmsFv=0x80349E70 -birth__Q34Game4Bomb3MgrFRQ24Game13EnemyBirthArg=0x80349FC0 -__dt__Q34Game4Bomb3MgrFv=0x80349FE0 -getEnemyTypeID__Q34Game4Bomb3MgrFv=0x8034A090 -createObj__Q34Game4Bomb3MgrFi=0x8034A098 -__dt__Q34Game4Bomb3ObjFv=0x8034A0F8 -getEnemy__Q34Game4Bomb3MgrFi=0x8034A1B4 -read__Q34Game4Bomb5ParmsFR6Stream=0x8034A1C4 -@4@__dt__Q34Game4Bomb3MgrFv=0x8034A214 -setParameters__Q34Game4Bomb3ObjFv=0x8034A21C -onStartCapture__Q34Game4Bomb3ObjFv=0x8034A23C -onEndCapture__Q34Game4Bomb3ObjFv=0x8034A328 -birth__Q34Game4Bomb3ObjFR10Vector3f=0x8034A370 -onInit__Q34Game4Bomb3ObjFPQ24Game15CreatureInitArg=0x8034A390 -__ct__Q34Game4Bomb3ObjFv=0x8034A4F8 -setFSM__Q34Game4Bomb3ObjFPQ34Game4Bomb3FSM=0x8034A6D4 -doUpdate__Q34Game4Bomb3ObjFv=0x8034A720 -doDirectDraw__Q34Game4Bomb3ObjFR8Graphics=0x8034A7F4 -doDebugDraw__Q34Game4Bomb3ObjFR8Graphics=0x8034A7F8 -doEntry__Q34Game4Bomb3ObjFv=0x8034A7FC -doAnimationCullingOff__Q34Game4Bomb3ObjFv=0x8034A828 -doAnimationCullingOn__Q34Game4Bomb3ObjFv=0x8034AA1C -doSimulation__Q34Game4Bomb3ObjFf=0x8034AA68 -getShadowParam__Q34Game4Bomb3ObjFRQ24Game11ShadowParam=0x8034AB9C -needShadow__Q34Game4Bomb3ObjFv=0x8034ABEC -doFinishStoneState__Q34Game4Bomb3ObjFv=0x8034AC34 -doStartStoneState__Q34Game4Bomb3ObjFv=0x8034ACB4 -onKill__Q34Game4Bomb3ObjFPQ24Game15CreatureKillArg=0x8034ACFC -doStartMovie__Q34Game4Bomb3ObjFv=0x8034AD80 -doEndMovie__Q34Game4Bomb3ObjFv=0x8034ADB0 -damageCallBack__Q34Game4Bomb3ObjFPQ24Game8CreaturefP8CollPart=0x8034ADE0 -bombCallBack__Q34Game4Bomb3ObjFPQ24Game8CreatureR10Vector3f=0x8034AE54 -pressCallBack__Q34Game4Bomb3ObjFPQ24Game8CreaturefP8CollPart=0x8034AFB4 -bounceCallback__Q34Game4Bomb3ObjFPQ23Sys8Triangle=0x8034AFBC -collisionCallback__Q34Game4Bomb3ObjFRQ24Game9CollEvent=0x8034B034 -forceBomb__Q34Game4Bomb3ObjFv=0x8034B0D0 -bombEffInWater__Q34Game4Bomb3ObjFv=0x8034B130 -canEat__Q34Game4Bomb3ObjFv=0x8034B158 -isAnimStart__Q34Game4Bomb3ObjFv=0x8034B1B4 -__dt__Q23efx14TBombrockLightFv=0x8034B28C -setInitialSetting__Q34Game4Bomb3ObjFPQ24Game21EnemyInitialParamBase=0x8034B328 -isLivingThing__Q34Game4Bomb3ObjFv=0x8034B32C -isUnderground__Q34Game4Bomb3ObjFv=0x8034B36C -getEnemyTypeID__Q34Game4Bomb3ObjFv=0x8034B3B4 -@4@__dt__Q23efx14TBombrockLightFv=0x8034B3BC -init__Q34Game3Egg3FSMFPQ24Game9EnemyBase=0x8034B3C4 -__ct__Q34Game3Egg9StateWaitFi=0x8034B418 -init__Q34Game3Egg9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034B454 -exec__Q34Game3Egg9StateWaitFPQ24Game9EnemyBase=0x8034B494 -setAnimMgr__Q34Game3Egg14ProperAnimatorFPQ28SysShape7AnimMgr=0x8034B63C -getAnimator__Q34Game3Egg14ProperAnimatorFi=0x8034B644 -__dt__Q34Game3Egg14ProperAnimatorFv=0x8034B64C -getAnimator__Q34Game3Egg14ProperAnimatorFv=0x8034B6A8 -__ct__Q34Game3Egg3MgrFiUc=0x8034B6B0 -doAlloc__Q34Game3Egg3MgrFv=0x8034B700 -__ct__Q34Game3Egg5ParmsFv=0x8034B748 -birth__Q34Game3Egg3MgrFRQ24Game13EnemyBirthArg=0x8034B8D4 -__dt__Q34Game3Egg3MgrFv=0x8034B8F4 -getEnemyTypeID__Q34Game3Egg3MgrFv=0x8034B9A4 -createObj__Q34Game3Egg3MgrFi=0x8034B9AC -__dt__Q34Game3Egg3ObjFv=0x8034BA0C -getEnemy__Q34Game3Egg3MgrFi=0x8034BAC8 -read__Q34Game3Egg5ParmsFR6Stream=0x8034BAD8 -@4@__dt__Q34Game3Egg3MgrFv=0x8034BB28 -setParameters__Q34Game3Egg3ObjFv=0x8034BB30 -birth__Q34Game3Egg3ObjFR10Vector3f=0x8034BB50 -onInit__Q34Game3Egg3ObjFPQ24Game15CreatureInitArg=0x8034BB70 -__ct__Q34Game3Egg3ObjFv=0x8034BCC0 -setFSM__Q34Game3Egg3ObjFPQ34Game3Egg3FSM=0x8034BDF8 -doUpdate__Q34Game3Egg3ObjFv=0x8034BE44 -doDirectDraw__Q34Game3Egg3ObjFR8Graphics=0x8034BEB0 -doDebugDraw__Q34Game3Egg3ObjFR8Graphics=0x8034BEB4 -doSimulation__Q34Game3Egg3ObjFf=0x8034BED4 -doAnimationCullingOff__Q34Game3Egg3ObjFv=0x8034BF20 -pressCallBack__Q34Game3Egg3ObjFPQ24Game8CreaturefP8CollPart=0x8034C048 -bounceCallback__Q34Game3Egg3ObjFPQ23Sys8Triangle=0x8034C050 -collisionCallback__Q34Game3Egg3ObjFRQ24Game9CollEvent=0x8034C0A4 -getShadowParam__Q34Game3Egg3ObjFRQ24Game11ShadowParam=0x8034C134 -needShadow__Q34Game3Egg3ObjFv=0x8034C184 -onStartCapture__Q34Game3Egg3ObjFv=0x8034C1CC -onEndCapture__Q34Game3Egg3ObjFv=0x8034C26C -genItem__Q34Game3Egg3ObjFv=0x8034C2AC -setInitialSetting__Q34Game3Egg3ObjFPQ24Game21EnemyInitialParamBase=0x8034C8A0 -isLivingThing__Q34Game3Egg3ObjFv=0x8034C8A4 -getEnemyTypeID__Q34Game3Egg3ObjFv=0x8034C8B4 -getDownSmokeScale__Q34Game3Egg3ObjFv=0x8034C8BC -@708@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8034C8C4 -@708@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8034C8D8 -@708@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8034C8EC -@708@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8034C900 -@708@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8034C914 -@708@12@viewGetShape__Q24Game9EnemyBaseFv=0x8034C928 -init__Q34Game13PanModokiBase3FSMFPQ24Game9EnemyBase=0x8034C93C -__ct__Q34Game13PanModokiBase9StateDeadFi=0x8034CAF8 -init__Q34Game13PanModokiBase9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034CB34 -exec__Q34Game13PanModokiBase9StateDeadFPQ24Game9EnemyBase=0x8034CBC4 -__ct__Q34Game13PanModokiBase9StateWalkFi=0x8034CC1C -init__Q34Game13PanModokiBase9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034CC58 -exec__Q34Game13PanModokiBase9StateWalkFPQ24Game9EnemyBase=0x8034CCC8 -__ct__Q34Game13PanModokiBase9StateBackFi=0x8034CDD4 -init__Q34Game13PanModokiBase9StateBackFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034CE10 -exec__Q34Game13PanModokiBase9StateBackFPQ24Game9EnemyBase=0x8034CF14 -__ct__Q34Game13PanModokiBase11StatePulledFi=0x8034D3E4 -init__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034D420 -exec__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBase=0x8034D4D0 -cleanup__Q34Game13PanModokiBase11StatePulledFPQ24Game9EnemyBase=0x8034D99C -__ct__Q34Game13PanModokiBase11StateAppearFi=0x8034D9C0 -init__Q34Game13PanModokiBase11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034D9FC -appearRumble__Q34Game13PanModokiBase3ObjFv=0x8034DA6C -exec__Q34Game13PanModokiBase11StateAppearFPQ24Game9EnemyBase=0x8034DA70 -__ct__Q34Game13PanModokiBase9StateHideFi=0x8034DAD4 -init__Q34Game13PanModokiBase9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034DB10 -exec__Q34Game13PanModokiBase9StateHideFPQ24Game9EnemyBase=0x8034DB78 -hideRumble__Q34Game13PanModokiBase3ObjFv=0x8034DC90 -__ct__Q34Game13PanModokiBase11StateDamageFi=0x8034DC94 -init__Q34Game13PanModokiBase11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034DCD0 -exec__Q34Game13PanModokiBase11StateDamageFPQ24Game9EnemyBase=0x8034DDDC -__ct__Q34Game13PanModokiBase9StateWaitFi=0x8034DE5C -init__Q34Game13PanModokiBase9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034DE98 -exec__Q34Game13PanModokiBase9StateWaitFPQ24Game9EnemyBase=0x8034DF08 -__ct__Q34Game13PanModokiBase10StateStickFi=0x8034DFFC -init__Q34Game13PanModokiBase10StateStickFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034E038 -exec__Q34Game13PanModokiBase10StateStickFPQ24Game9EnemyBase=0x8034E140 -__ct__Q34Game13PanModokiBase11StateSuckedFi=0x8034E4FC -init__Q34Game13PanModokiBase11StateSuckedFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034E538 -exec__Q34Game13PanModokiBase11StateSuckedFPQ24Game9EnemyBase=0x8034E5A4 -__ct__Q34Game13PanModokiBase13StateCarryEndFi=0x8034E5B0 -init__Q34Game13PanModokiBase13StateCarryEndFPQ24Game9EnemyBasePQ24Game8StateArg=0x8034E5F0 -exec__Q34Game13PanModokiBase13StateCarryEndFPQ24Game9EnemyBase=0x8034E65C -setAnimMgr__Q34Game13PanModokiBase14ProperAnimatorFPQ28SysShape7AnimMgr=0x8034E94C -getAnimator__Q34Game13PanModokiBase14ProperAnimatorFi=0x8034E954 -__dt__Q34Game13PanModokiBase14ProperAnimatorFv=0x8034E95C -getAnimator__Q34Game13PanModokiBase14ProperAnimatorFv=0x8034E9B8 -__ct__Q34Game9PanModoki3MgrFiUc=0x8034E9C0 -doAlloc__Q34Game9PanModoki3MgrFv=0x8034EA10 -__ct__Q34Game13PanModokiBase5ParmsFv=0x8034EA58 -__ct__Q44Game13PanModokiBase5Parms11ProperParmsFv=0x8034EABC -birth__Q34Game9PanModoki3MgrFRQ24Game13EnemyBirthArg=0x8034ED70 -__ct__Q34Game11OoPanModoki3MgrFiUc=0x8034ED90 -doAlloc__Q34Game11OoPanModoki3MgrFv=0x8034EDE0 -birth__Q34Game11OoPanModoki3MgrFRQ24Game13EnemyBirthArg=0x8034EE28 -doLoadBmd__Q34Game11OoPanModoki3MgrFPv=0x8034EE48 -loadModelData__Q34Game11OoPanModoki3MgrFv=0x8034EE74 -__dt__Q34Game11OoPanModoki3MgrFv=0x8034EEDC -getEnemyTypeID__Q34Game11OoPanModoki3MgrFv=0x8034EF8C -createObj__Q34Game11OoPanModoki3MgrFi=0x8034EF94 -__dt__Q34Game11OoPanModoki3ObjFv=0x8034EFF4 -getEnemy__Q34Game11OoPanModoki3MgrFi=0x8034F0E0 -__dt__Q34Game9PanModoki3MgrFv=0x8034F0F0 -getEnemyTypeID__Q34Game9PanModoki3MgrFv=0x8034F1A0 -createObj__Q34Game9PanModoki3MgrFi=0x8034F1A8 -__dt__Q34Game9PanModoki3ObjFv=0x8034F208 -__ct__Q34Game9PanModoki3ObjFv=0x8034F2F4 -__dt__Q34Game13PanModokiBase3ObjFv=0x8034F384 -getEnemy__Q34Game9PanModoki3MgrFi=0x8034F440 -canTarget__Q34Game9PanModoki3ObjFii=0x8034F450 -getDownSmokeScale__Q34Game9PanModoki3ObjFv=0x8034F468 -getEnemyTypeID__Q34Game9PanModoki3ObjFv=0x8034F470 -setInitialSetting__Q34Game13PanModokiBase3ObjFPQ24Game21EnemyInitialParamBase=0x8034F478 -applyImpulse__Q34Game13PanModokiBase3ObjFR10Vector3R10Vector3=0x8034F47C -isLivingThing__Q34Game13PanModokiBase3ObjFv=0x8034F480 -isUnderground__Q34Game13PanModokiBase3ObjFv=0x8034F48C -ignoreAtari__Q34Game13PanModokiBase3ObjFPQ24Game8Creature=0x8034F4A0 -getMouthSlots__Q34Game13PanModokiBase3ObjFv=0x8034F4B4 -setFSM__Q34Game13PanModokiBase3ObjFPQ34Game13PanModokiBase3FSM=0x8034F4BC -read__Q34Game13PanModokiBase5ParmsFR6Stream=0x8034F508 -@968@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8034F558 -@968@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8034F56C -@968@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8034F580 -@968@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8034F594 -@968@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8034F5A8 -@968@12@viewGetShape__Q24Game9EnemyBaseFv=0x8034F5BC -@4@__dt__Q34Game9PanModoki3MgrFv=0x8034F5D0 -@4@__dt__Q34Game11OoPanModoki3MgrFv=0x8034F5D8 -actEnemy__Q24Game18InteractSuckFinishFPQ24Game9EnemyBase=0x8034F5E0 -setParameters__Q34Game13PanModokiBase3ObjFv=0x8034F650 -birth__Q34Game13PanModokiBase3ObjFR10Vector3f=0x8034F6B8 -onInit__Q34Game13PanModokiBase3ObjFPQ24Game15CreatureInitArg=0x8034F7D8 -__ct__Q34Game13PanModokiBase3ObjFv=0x8034F9B4 -doUpdate__Q34Game13PanModokiBase3ObjFv=0x8034FC54 -doAnimation__Q34Game13PanModokiBase3ObjFv=0x8034FC88 -doAnimationStick__Q34Game13PanModokiBase3ObjFv=0x8034FD3C -updateCaptureMatrix__Q34Game13PanModokiBase3ObjFv=0x80350054 -doDirectDraw__Q34Game13PanModokiBase3ObjFR8Graphics=0x803502D0 -doDebugDraw__Q34Game13PanModokiBase3ObjFR8Graphics=0x803502D4 -damageCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart=0x803502F4 -pressCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart=0x80350324 -hipdropCallBack__Q34Game13PanModokiBase3ObjFPQ24Game8CreaturefP8CollPart=0x803504E0 -collisionCallback__Q34Game13PanModokiBase3ObjFRQ24Game9CollEvent=0x8035050C -outWaterCallback__Q34Game13PanModokiBase3ObjFv=0x803505B8 -inWaterCallback__Q34Game13PanModokiBase3ObjFPQ24Game8WaterBox=0x803505FC -bounceCallback__Q34Game13PanModokiBase3ObjFPQ23Sys8Triangle=0x80350630 -damageRumble__Q34Game13PanModokiBase3ObjFv=0x80350684 -doSimulation__Q34Game13PanModokiBase3ObjFf=0x803506D4 -getShadowParam__Q34Game13PanModokiBase3ObjFRQ24Game11ShadowParam=0x803508F0 -needShadow__Q34Game13PanModokiBase3ObjFv=0x80350978 -startCarcassMotion__Q34Game13PanModokiBase3ObjFv=0x803509D0 -initMouthSlots__Q34Game13PanModokiBase3ObjFv=0x803509F8 -onKill__Q34Game13PanModokiBase3ObjFPQ24Game15CreatureKillArg=0x80350A84 -doStartMovie__Q34Game13PanModokiBase3ObjFv=0x80350AC8 -doEndMovie__Q34Game13PanModokiBase3ObjFv=0x80350B18 -doStartStoneState__Q34Game13PanModokiBase3ObjFv=0x80350B68 -doFinishStoneState__Q34Game13PanModokiBase3ObjFv=0x80350BBC -initWalkSmokeEffect__Q34Game13PanModokiBase3ObjFv=0x80350C68 -getWalkSmokeEffectMgr__Q34Game13PanModokiBase3ObjFv=0x80350CCC -findNextRoutePoint__Q34Game13PanModokiBase3ObjFb=0x80350CD4 -isCarryToGoal__Q34Game13PanModokiBase3ObjFv=0x80351188 -walkFunc__Q34Game13PanModokiBase3ObjFv=0x803513FC -isReachToGoal__Q34Game13PanModokiBase3ObjFf=0x803516C8 -canBack__Q34Game13PanModokiBase3ObjFv=0x8035184C -findNearestPellet__Q34Game13PanModokiBase3ObjFv=0x803518C0 -getCarryTarget__Q34Game13PanModokiBase3ObjFv=0x80351C04 -releaseCarryTarget__Q34Game13PanModokiBase3ObjFv=0x80351C6C -checkNearHomeGraphIndex__Q34Game13PanModokiBase3ObjFv=0x80351E50 -carryTarget__Q34Game13PanModokiBase3ObjFf=0x803520D4 -changeCarryDir__Q34Game13PanModokiBase3ObjFb=0x803525EC -setCarryDir__Q34Game13PanModokiBase3ObjFb=0x8035263C -endCarry__Q34Game13PanModokiBase3ObjFv=0x803527F0 -checkSucked__Q34Game13PanModokiBase3ObjFv=0x80352B74 -suckFinish__Q34Game13PanModokiBase3ObjFv=0x80352C14 -isEndPathFinder__Q34Game13PanModokiBase3ObjFv=0x80352CD0 -setPathFinder__Q34Game13PanModokiBase3ObjFb=0x80352DE8 -releasePathFinder__Q34Game13PanModokiBase3ObjFv=0x803530A4 -killNest__Q34Game13PanModokiBase3ObjFv=0x803530E8 -isTargetable__Q34Game13PanModokiBase3ObjFPQ24Game6Pellet=0x80353108 -calcSlotGlobalPos__Q34Game13PanModokiBase3ObjFR10Vector3=0x8035342C -boundEffect__Q34Game13PanModokiBase3ObjFv=0x803535A8 -createAppearEffect__Q34Game13PanModokiBase3ObjFv=0x803535D0 -createHideEffect__Q34Game13PanModokiBase3ObjFv=0x803536B8 -fadeHideEffect__Q34Game13PanModokiBase3ObjFv=0x80353798 -createPulledSmokeEffect__Q34Game13PanModokiBase3ObjFv=0x803537C8 -fadePulledSmokeEffect__Q34Game13PanModokiBase3ObjFv=0x8035384C -throwUpEatItem__Q34Game13PanModokiBase3ObjFv=0x8035387C -__ct__Q34Game11OoPanModoki3ObjFv=0x80353B48 -appearRumble__Q34Game11OoPanModoki3ObjFv=0x80353C00 -hideRumble__Q34Game11OoPanModoki3ObjFv=0x80353C34 -pressCallBack__Q34Game11OoPanModoki3ObjFPQ24Game8CreaturefP8CollPart=0x80353C68 -canTarget__Q34Game11OoPanModoki3ObjFii=0x80353CFC -getDownSmokeScale__Q34Game11OoPanModoki3ObjFv=0x80353D14 -getEnemyTypeID__Q34Game11OoPanModoki3ObjFv=0x80353D1C -__sinit_panModoki_cpp=0x80353D24 -__ct__Q34Game7Tanpopo3MgrFiUc=0x80353D4C -doAlloc__Q34Game7Tanpopo3MgrFv=0x80353DB0 -birth__Q34Game7Tanpopo3MgrFRQ24Game13EnemyBirthArg=0x80353DF8 -__ct__Q34Game6Clover3MgrFiUc=0x80353E18 -doAlloc__Q34Game6Clover3MgrFv=0x80353E7C -birth__Q34Game6Clover3MgrFRQ24Game13EnemyBirthArg=0x80353EC4 -__ct__Q34Game12HikariKinoko3MgrFiUc=0x80353EE4 -doAlloc__Q34Game12HikariKinoko3MgrFv=0x80353F48 -birth__Q34Game12HikariKinoko3MgrFRQ24Game13EnemyBirthArg=0x80353F90 -__ct__Q34Game7Ooinu_s3MgrFiUc=0x80353FB0 -doAlloc__Q34Game7Ooinu_s3MgrFv=0x80354014 -birth__Q34Game7Ooinu_s3MgrFRQ24Game13EnemyBirthArg=0x8035405C -__ct__Q34Game11KareOoinu_s3MgrFiUc=0x8035407C -doAlloc__Q34Game11KareOoinu_s3MgrFv=0x803540E0 -birth__Q34Game11KareOoinu_s3MgrFRQ24Game13EnemyBirthArg=0x80354128 -__ct__Q34Game7Ooinu_l3MgrFiUc=0x80354148 -doAlloc__Q34Game7Ooinu_l3MgrFv=0x803541AC -birth__Q34Game7Ooinu_l3MgrFRQ24Game13EnemyBirthArg=0x803541F4 -__ct__Q34Game11KareOoinu_l3MgrFiUc=0x80354214 -doAlloc__Q34Game11KareOoinu_l3MgrFv=0x80354278 -birth__Q34Game11KareOoinu_l3MgrFRQ24Game13EnemyBirthArg=0x803542C0 -__ct__Q34Game8Wakame_s3MgrFiUc=0x803542E0 -doAlloc__Q34Game8Wakame_s3MgrFv=0x80354344 -birth__Q34Game8Wakame_s3MgrFRQ24Game13EnemyBirthArg=0x8035438C -__ct__Q34Game8Wakame_l3MgrFiUc=0x803543AC -doAlloc__Q34Game8Wakame_l3MgrFv=0x80354410 -birth__Q34Game8Wakame_l3MgrFRQ24Game13EnemyBirthArg=0x80354458 -__ct__Q34Game7Tukushi3MgrFiUc=0x80354478 -doAlloc__Q34Game7Tukushi3MgrFv=0x803544DC -birth__Q34Game7Tukushi3MgrFRQ24Game13EnemyBirthArg=0x80354524 -__ct__Q34Game6Watage3MgrFiUc=0x80354544 -doAlloc__Q34Game6Watage3MgrFv=0x803545A8 -birth__Q34Game6Watage3MgrFRQ24Game13EnemyBirthArg=0x803545F0 -__ct__Q34Game8DiodeRed3MgrFiUc=0x80354610 -doAlloc__Q34Game8DiodeRed3MgrFv=0x80354674 -birth__Q34Game8DiodeRed3MgrFRQ24Game13EnemyBirthArg=0x803546BC -__ct__Q34Game10DiodeGreen3MgrFiUc=0x803546DC -doAlloc__Q34Game10DiodeGreen3MgrFv=0x80354740 -birth__Q34Game10DiodeGreen3MgrFRQ24Game13EnemyBirthArg=0x80354788 -__ct__Q34Game8Margaret3MgrFiUc=0x803547A8 -doAlloc__Q34Game8Margaret3MgrFv=0x8035480C -birth__Q34Game8Margaret3MgrFRQ24Game13EnemyBirthArg=0x80354854 -__ct__Q34Game11Nekojarashi3MgrFiUc=0x80354874 -doAlloc__Q34Game11Nekojarashi3MgrFv=0x803548D8 -birth__Q34Game11Nekojarashi3MgrFRQ24Game13EnemyBirthArg=0x80354920 -__ct__Q34Game9Chiyogami3MgrFiUc=0x80354940 -doAlloc__Q34Game9Chiyogami3MgrFv=0x803549A4 -birth__Q34Game9Chiyogami3MgrFRQ24Game13EnemyBirthArg=0x803549EC -__ct__Q34Game6Zenmai3MgrFiUc=0x80354A0C -doAlloc__Q34Game6Zenmai3MgrFv=0x80354A70 -birth__Q34Game6Zenmai3MgrFRQ24Game13EnemyBirthArg=0x80354AB8 -__dt__Q34Game6Zenmai3MgrFv=0x80354AD8 -getEnemyTypeID__Q34Game6Zenmai3MgrFv=0x80354BA0 -doLoadBmd__Q34Game6Zenmai3MgrFPv=0x80354BA8 -createObj__Q34Game6Zenmai3MgrFi=0x80354BD4 -__dt__Q34Game6Zenmai3ObjFv=0x80354C34 -__ct__Q34Game6Zenmai3ObjFv=0x80354D20 -__dt__Q34Game6Plants3ObjFv=0x80354DB0 -getEnemy__Q34Game6Zenmai3MgrFi=0x80354E6C -setParameters__Q34Game6Zenmai3ObjFv=0x80354E7C -getLODCylinder__Q34Game6Zenmai3ObjFRQ23Sys8Cylinder=0x80354EB0 -getEnemyTypeID__Q34Game6Zenmai3ObjFv=0x80354F1C -setInitialSetting__Q34Game6Plants3ObjFPQ24Game21EnemyInitialParamBase=0x80354F24 -doUpdate__Q34Game6Plants3ObjFv=0x80354F28 -doSimulation__Q34Game6Plants3ObjFf=0x80354F2C -doUpdateCommon__Q34Game6Plants3ObjFv=0x80354F30 -isLivingThing__Q34Game6Plants3ObjFv=0x80354F34 -ignoreAtari__Q34Game6Plants3ObjFPQ24Game8Creature=0x80354F3C -__dt__Q34Game9Chiyogami3MgrFv=0x80354F88 -getEnemyTypeID__Q34Game9Chiyogami3MgrFv=0x80355050 -doLoadBmd__Q34Game9Chiyogami3MgrFPv=0x80355058 -createObj__Q34Game9Chiyogami3MgrFi=0x80355084 -__dt__Q34Game9Chiyogami3ObjFv=0x803550E4 -__ct__Q34Game9Chiyogami3ObjFv=0x803551D0 -getEnemy__Q34Game9Chiyogami3MgrFi=0x80355260 -setParameters__Q34Game9Chiyogami3ObjFv=0x80355270 -getLODCylinder__Q34Game9Chiyogami3ObjFRQ23Sys8Cylinder=0x803552A4 -getEnemyTypeID__Q34Game9Chiyogami3ObjFv=0x80355310 -__dt__Q34Game11Nekojarashi3MgrFv=0x80355318 -getEnemyTypeID__Q34Game11Nekojarashi3MgrFv=0x803553E0 -doLoadBmd__Q34Game11Nekojarashi3MgrFPv=0x803553E8 -createObj__Q34Game11Nekojarashi3MgrFi=0x80355414 -__dt__Q34Game11Nekojarashi3ObjFv=0x80355474 -__ct__Q34Game11Nekojarashi3ObjFv=0x80355560 -getEnemy__Q34Game11Nekojarashi3MgrFi=0x803555F0 -__dt__Q34Game8Margaret3MgrFv=0x80355600 -getEnemyTypeID__Q34Game8Margaret3MgrFv=0x803556C8 -doLoadBmd__Q34Game8Margaret3MgrFPv=0x803556D0 -createObj__Q34Game8Margaret3MgrFi=0x803556FC -__dt__Q34Game8Margaret3ObjFv=0x8035575C -__ct__Q34Game8Margaret3ObjFv=0x80355848 -getEnemy__Q34Game8Margaret3MgrFi=0x803558D8 -getEnemyTypeID__Q34Game8Margaret3ObjFv=0x803558E8 -__dt__Q34Game10DiodeGreen3MgrFv=0x803558F0 -getEnemyTypeID__Q34Game10DiodeGreen3MgrFv=0x803559B8 -loadModelData__Q34Game10DiodeGreen3MgrFv=0x803559C0 -doLoadBmd__Q34Game10DiodeGreen3MgrFPv=0x80355A7C -createObj__Q34Game10DiodeGreen3MgrFi=0x80355AA8 -__dt__Q34Game10DiodeGreen3ObjFv=0x80355B08 -__ct__Q34Game10DiodeGreen3ObjFv=0x80355BF4 -getEnemy__Q34Game10DiodeGreen3MgrFi=0x80355C84 -__dt__Q34Game8DiodeRed3MgrFv=0x80355C94 -getEnemyTypeID__Q34Game8DiodeRed3MgrFv=0x80355D5C -loadModelData__Q34Game8DiodeRed3MgrFv=0x80355D64 -doLoadBmd__Q34Game8DiodeRed3MgrFPv=0x80355E20 -createObj__Q34Game8DiodeRed3MgrFi=0x80355E4C -__dt__Q34Game8DiodeRed3ObjFv=0x80355EAC -__ct__Q34Game8DiodeRed3ObjFv=0x80355F98 -getEnemy__Q34Game8DiodeRed3MgrFi=0x80356028 -__dt__Q34Game6Watage3MgrFv=0x80356038 -getEnemyTypeID__Q34Game6Watage3MgrFv=0x80356100 -doLoadBmd__Q34Game6Watage3MgrFPv=0x80356108 -createObj__Q34Game6Watage3MgrFi=0x80356134 -__dt__Q34Game6Watage3ObjFv=0x80356194 -__ct__Q34Game6Watage3ObjFv=0x80356280 -getEnemy__Q34Game6Watage3MgrFi=0x80356310 -__dt__Q34Game7Tukushi3MgrFv=0x80356320 -getEnemyTypeID__Q34Game7Tukushi3MgrFv=0x803563E8 -doLoadBmd__Q34Game7Tukushi3MgrFPv=0x803563F0 -createObj__Q34Game7Tukushi3MgrFi=0x8035641C -__dt__Q34Game7Tukushi3ObjFv=0x8035647C -__ct__Q34Game7Tukushi3ObjFv=0x80356568 -getEnemy__Q34Game7Tukushi3MgrFi=0x803565F8 -setParameters__Q34Game7Tukushi3ObjFv=0x80356608 -getLODCylinder__Q34Game7Tukushi3ObjFRQ23Sys8Cylinder=0x8035663C -getEnemyTypeID__Q34Game7Tukushi3ObjFv=0x803566A8 -__dt__Q34Game8Wakame_l3MgrFv=0x803566B0 -getEnemyTypeID__Q34Game8Wakame_l3MgrFv=0x80356778 -doLoadBmd__Q34Game8Wakame_l3MgrFPv=0x80356780 -createObj__Q34Game8Wakame_l3MgrFi=0x803567AC -__dt__Q34Game8Wakame_l3ObjFv=0x8035680C -__ct__Q34Game8Wakame_l3ObjFv=0x803568F8 -getEnemy__Q34Game8Wakame_l3MgrFi=0x80356988 -setParameters__Q34Game8Wakame_l3ObjFv=0x80356998 -getLODCylinder__Q34Game8Wakame_l3ObjFRQ23Sys8Cylinder=0x803569CC -getEnemyTypeID__Q34Game8Wakame_l3ObjFv=0x80356A38 -__dt__Q34Game8Wakame_s3MgrFv=0x80356A40 -getEnemyTypeID__Q34Game8Wakame_s3MgrFv=0x80356B08 -doLoadBmd__Q34Game8Wakame_s3MgrFPv=0x80356B10 -createObj__Q34Game8Wakame_s3MgrFi=0x80356B3C -__dt__Q34Game8Wakame_s3ObjFv=0x80356B9C -__ct__Q34Game8Wakame_s3ObjFv=0x80356C88 -getEnemy__Q34Game8Wakame_s3MgrFi=0x80356D18 -setParameters__Q34Game8Wakame_s3ObjFv=0x80356D28 -getLODCylinder__Q34Game8Wakame_s3ObjFRQ23Sys8Cylinder=0x80356D5C -getEnemyTypeID__Q34Game8Wakame_s3ObjFv=0x80356DC8 -__dt__Q34Game11KareOoinu_l3MgrFv=0x80356DD0 -getEnemyTypeID__Q34Game11KareOoinu_l3MgrFv=0x80356E98 -doLoadBmd__Q34Game11KareOoinu_l3MgrFPv=0x80356EA0 -createObj__Q34Game11KareOoinu_l3MgrFi=0x80356ECC -__dt__Q34Game11KareOoinu_l3ObjFv=0x80356F2C -__ct__Q34Game11KareOoinu_l3ObjFv=0x80357018 -getEnemy__Q34Game11KareOoinu_l3MgrFi=0x803570A8 -getEnemyTypeID__Q34Game11KareOoinu_l3ObjFv=0x803570B8 -__dt__Q34Game7Ooinu_l3MgrFv=0x803570C0 -getEnemyTypeID__Q34Game7Ooinu_l3MgrFv=0x80357188 -doLoadBmd__Q34Game7Ooinu_l3MgrFPv=0x80357190 -createObj__Q34Game7Ooinu_l3MgrFi=0x803571BC -__dt__Q34Game7Ooinu_l3ObjFv=0x8035721C -__ct__Q34Game7Ooinu_l3ObjFv=0x80357308 -getEnemy__Q34Game7Ooinu_l3MgrFi=0x80357398 -getEnemyTypeID__Q34Game7Ooinu_l3ObjFv=0x803573A8 -__dt__Q34Game11KareOoinu_s3MgrFv=0x803573B0 -getEnemyTypeID__Q34Game11KareOoinu_s3MgrFv=0x80357478 -doLoadBmd__Q34Game11KareOoinu_s3MgrFPv=0x80357480 -createObj__Q34Game11KareOoinu_s3MgrFi=0x803574AC -__dt__Q34Game11KareOoinu_s3ObjFv=0x8035750C -__ct__Q34Game11KareOoinu_s3ObjFv=0x803575F8 -getEnemy__Q34Game11KareOoinu_s3MgrFi=0x80357688 -getEnemyTypeID__Q34Game11KareOoinu_s3ObjFv=0x80357698 -__dt__Q34Game7Ooinu_s3MgrFv=0x803576A0 -getEnemyTypeID__Q34Game7Ooinu_s3MgrFv=0x80357768 -doLoadBmd__Q34Game7Ooinu_s3MgrFPv=0x80357770 -createObj__Q34Game7Ooinu_s3MgrFi=0x8035779C -__dt__Q34Game7Ooinu_s3ObjFv=0x803577FC -__ct__Q34Game7Ooinu_s3ObjFv=0x803578E8 -getEnemy__Q34Game7Ooinu_s3MgrFi=0x80357978 -getEnemyTypeID__Q34Game7Ooinu_s3ObjFv=0x80357988 -__dt__Q34Game12HikariKinoko3MgrFv=0x80357990 -getEnemyTypeID__Q34Game12HikariKinoko3MgrFv=0x80357A58 -doLoadBmd__Q34Game12HikariKinoko3MgrFPv=0x80357A60 -createObj__Q34Game12HikariKinoko3MgrFi=0x80357A8C -__dt__Q34Game12HikariKinoko3ObjFv=0x80357AEC -__ct__Q34Game12HikariKinoko3ObjFv=0x80357BD8 -getEnemy__Q34Game12HikariKinoko3MgrFi=0x80357C68 -__dt__Q34Game6Clover3MgrFv=0x80357C78 -getEnemyTypeID__Q34Game6Clover3MgrFv=0x80357D40 -doLoadBmd__Q34Game6Clover3MgrFPv=0x80357D48 -createObj__Q34Game6Clover3MgrFi=0x80357D74 -__dt__Q34Game6Clover3ObjFv=0x80357DD4 -__ct__Q34Game6Clover3ObjFv=0x80357EC0 -getEnemy__Q34Game6Clover3MgrFi=0x80357F50 -getEnemyTypeID__Q34Game6Clover3ObjFv=0x80357F60 -__dt__Q34Game7Tanpopo3MgrFv=0x80357F68 -getEnemyTypeID__Q34Game7Tanpopo3MgrFv=0x80358030 -doLoadBmd__Q34Game7Tanpopo3MgrFPv=0x80358038 -createObj__Q34Game7Tanpopo3MgrFi=0x80358064 -__dt__Q34Game7Tanpopo3ObjFv=0x803580C4 -__ct__Q34Game7Tanpopo3ObjFv=0x803581B0 -getEnemy__Q34Game7Tanpopo3MgrFi=0x80358240 -getEnemyTypeID__Q34Game7Tanpopo3ObjFv=0x80358250 -@4@__dt__Q34Game7Tanpopo3MgrFv=0x80358258 -@4@__dt__Q34Game6Clover3MgrFv=0x80358260 -@4@__dt__Q34Game12HikariKinoko3MgrFv=0x80358268 -@4@__dt__Q34Game7Ooinu_s3MgrFv=0x80358270 -@4@__dt__Q34Game11KareOoinu_s3MgrFv=0x80358278 -@4@__dt__Q34Game7Ooinu_l3MgrFv=0x80358280 -@4@__dt__Q34Game11KareOoinu_l3MgrFv=0x80358288 -@4@__dt__Q34Game8Wakame_s3MgrFv=0x80358290 -@4@__dt__Q34Game8Wakame_l3MgrFv=0x80358298 -@4@__dt__Q34Game7Tukushi3MgrFv=0x803582A0 -@4@__dt__Q34Game6Watage3MgrFv=0x803582A8 -@4@__dt__Q34Game8DiodeRed3MgrFv=0x803582B0 -@4@__dt__Q34Game10DiodeGreen3MgrFv=0x803582B8 -@4@__dt__Q34Game8Margaret3MgrFv=0x803582C0 -@4@__dt__Q34Game11Nekojarashi3MgrFv=0x803582C8 -@4@__dt__Q34Game9Chiyogami3MgrFv=0x803582D0 -@704@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x803582D8 -@704@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x803582EC -@704@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80358300 -@704@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x80358314 -@704@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x80358328 -@704@12@viewGetShape__Q24Game9EnemyBaseFv=0x8035833C -@4@__dt__Q34Game6Zenmai3MgrFv=0x80358350 -setAnimMgr__Q34Game6Plants14ProperAnimatorFPQ28SysShape7AnimMgr=0x80358358 -getAnimator__Q34Game6Plants14ProperAnimatorFi=0x80358360 -__dt__Q34Game6Plants14ProperAnimatorFv=0x80358368 -getAnimator__Q34Game6Plants14ProperAnimatorFv=0x803583C4 -setParameters__Q34Game6Plants3ObjFv=0x803583CC -birth__Q34Game6Plants3ObjFR10Vector3f=0x8035841C -onInit__Q34Game6Plants3ObjFPQ24Game15CreatureInitArg=0x8035843C -__ct__Q34Game6Plants3ObjFv=0x803585E4 -update__Q34Game6Plants3ObjFv=0x803586D0 -doAnimation__Q34Game6Plants3ObjFv=0x80358718 -doAnimationCullingOff__Q34Game6Plants3ObjFv=0x80358784 -doDebugDraw__Q34Game6Plants3ObjFR8Graphics=0x80358820 -collisionCallback__Q34Game6Plants3ObjFRQ24Game9CollEvent=0x80358840 -earthquakeCallBack__Q34Game6Plants3ObjFPQ24Game8Creaturef=0x80358990 -touched__Q34Game6Plants3ObjFv=0x803589F0 -touchedSE__Q34Game6Plants3ObjFPQ24Game4Navi=0x80358A90 -touchedSE__Q34Game12HikariKinoko3ObjFPQ24Game4Navi=0x80358AD0 -doEntry__Q34Game6Watage3ObjFv=0x80358B10 -touched__Q34Game6Watage3ObjFv=0x80358B58 -doEntry__Q34Game11Nekojarashi3ObjFv=0x80358C5C -touchedSE__Q34Game8DiodeRed3ObjFPQ24Game4Navi=0x80358CA4 -doEntry__Q34Game8DiodeRed3ObjFv=0x80358CE4 -touchedSE__Q34Game10DiodeGreen3ObjFPQ24Game4Navi=0x80358D2C -doEntry__Q34Game10DiodeGreen3ObjFv=0x80358D6C -setParameters__Q34Game10DiodeGreen3ObjFv=0x80358DB4 -getLODCylinder__Q34Game10DiodeGreen3ObjFRQ23Sys8Cylinder=0x80358E0C -getEnemyTypeID__Q34Game10DiodeGreen3ObjFv=0x80358E78 -setParameters__Q34Game8DiodeRed3ObjFv=0x80358E80 -getLODCylinder__Q34Game8DiodeRed3ObjFRQ23Sys8Cylinder=0x80358ED8 -getEnemyTypeID__Q34Game8DiodeRed3ObjFv=0x80358F44 -setParameters__Q34Game11Nekojarashi3ObjFv=0x80358F4C -getLODCylinder__Q34Game11Nekojarashi3ObjFRQ23Sys8Cylinder=0x80358FA4 -getEnemyTypeID__Q34Game11Nekojarashi3ObjFv=0x803590B8 -getEnemyTypeID__Q34Game6Watage3ObjFv=0x803590C0 -setParameters__Q34Game12HikariKinoko3ObjFv=0x803590C8 -getLODCylinder__Q34Game12HikariKinoko3ObjFRQ23Sys8Cylinder=0x80359120 -getEnemyTypeID__Q34Game12HikariKinoko3ObjFv=0x8035918C -__sinit_plants_cpp=0x80359194 -init__Q34Game10KingChappy3FSMFPQ24Game9EnemyBase=0x803591BC -__ct__Q34Game10KingChappy9StateWalkFi=0x803593C0 -init__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x803593FC -exec__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBase=0x8035947C -cleanup__Q34Game10KingChappy9StateWalkFPQ24Game9EnemyBase=0x80359620 -__ct__Q34Game10KingChappy11StateAttackFi=0x80359648 -init__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80359684 -exec__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBase=0x803596F0 -cleanup__Q34Game10KingChappy11StateAttackFPQ24Game9EnemyBase=0x80359D9C -__ct__Q34Game10KingChappy9StateDeadFi=0x80359DD8 -init__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80359E14 -exec__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBase=0x80359EE0 -cleanup__Q34Game10KingChappy9StateDeadFPQ24Game9EnemyBase=0x80359FBC -__ct__Q34Game10KingChappy10StateFlickFi=0x80359FE4 -init__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035A020 -exec__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBase=0x8035A080 -cleanup__Q34Game10KingChappy10StateFlickFPQ24Game9EnemyBase=0x8035A96C -__ct__Q34Game10KingChappy11StateWarCryFi=0x8035A97C -init__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035A9B8 -exec__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBase=0x8035AA0C -cleanup__Q34Game10KingChappy11StateWarCryFPQ24Game9EnemyBase=0x8035B0DC -__ct__Q34Game10KingChappy11StateDamageFi=0x8035B11C -init__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035B158 -exec__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBase=0x8035B198 -cleanup__Q34Game10KingChappy11StateDamageFPQ24Game9EnemyBase=0x8035B34C -__ct__Q34Game10KingChappy9StateTurnFi=0x8035B38C -init__Q34Game10KingChappy9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035B3C8 -exec__Q34Game10KingChappy9StateTurnFPQ24Game9EnemyBase=0x8035B410 -__ct__Q34Game10KingChappy8StateEatFi=0x8035B508 -init__Q34Game10KingChappy8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035B544 -exec__Q34Game10KingChappy8StateEatFPQ24Game9EnemyBase=0x8035B594 -__ct__Q34Game10KingChappy9StateHideFi=0x8035B638 -init__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035B674 -exec__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBase=0x8035B730 -cleanup__Q34Game10KingChappy9StateHideFPQ24Game9EnemyBase=0x8035B8E8 -__ct__Q34Game10KingChappy13StateHideWaitFi=0x8035B93C -init__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035B97C -exec__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBase=0x8035B9FC -cleanup__Q34Game10KingChappy13StateHideWaitFPQ24Game9EnemyBase=0x8035BB88 -__ct__Q34Game10KingChappy11StateAppearFi=0x8035BBC8 -init__Q34Game10KingChappy11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035BC04 -exec__Q34Game10KingChappy11StateAppearFPQ24Game9EnemyBase=0x8035BEF0 -__ct__Q34Game10KingChappy12StateCautionFi=0x8035C08C -init__Q34Game10KingChappy12StateCautionFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035C0C8 -exec__Q34Game10KingChappy12StateCautionFPQ24Game9EnemyBase=0x8035C0F4 -__ct__Q34Game10KingChappy12StateSwallowFi=0x8035C158 -init__Q34Game10KingChappy12StateSwallowFPQ24Game9EnemyBasePQ24Game8StateArg=0x8035C194 -exec__Q34Game10KingChappy12StateSwallowFPQ24Game9EnemyBase=0x8035C1C0 -getName__Q23efx12ArgRotYScaleFv=0x8035C254 -__sinit_kingChappyState_cpp=0x8035C260 -__ct__Q34Game10KingChappy3MgrFiUc=0x8035C288 -doAlloc__Q34Game10KingChappy3MgrFv=0x8035C2D8 -__ct__Q34Game10KingChappy5ParmsFv=0x8035C320 -__ct__Q44Game10KingChappy5Parms11ProperParmsFv=0x8035C38C -birth__Q34Game10KingChappy3MgrFRQ24Game13EnemyBirthArg=0x8035C980 -createModel__Q34Game10KingChappy3MgrFv=0x8035C9A0 -requestState__Q34Game10KingChappy3MgrFPQ34Game10KingChappy3Obji=0x8035C9C0 -getEnemy__Q34Game10KingChappy3MgrFi=0x8035CAAC -__dt__Q34Game10KingChappy3MgrFv=0x8035CABC -getEnemyTypeID__Q34Game10KingChappy3MgrFv=0x8035CB6C -createObj__Q34Game10KingChappy3MgrFi=0x8035CB74 -__dt__Q34Game10KingChappy3ObjFv=0x8035CBD4 -read__Q34Game10KingChappy5ParmsFR6Stream=0x8035CC90 -@4@__dt__Q34Game10KingChappy3MgrFv=0x8035CCE0 -lFootCallBack__Q24Game10KingChappyFP8J3DJointi=0x8035CCE8 -rFootCallBack__Q24Game10KingChappyFP8J3DJointi=0x8035CD20 -setParameters__Q34Game10KingChappy3ObjFv=0x8035CD58 -birth__Q34Game10KingChappy3ObjFR10Vector3f=0x8035CDFC -onInit__Q34Game10KingChappy3ObjFPQ24Game15CreatureInitArg=0x8035CE1C -__ct__Q34Game10KingChappy3ObjFv=0x8035D264 -__ct__Q23efx14TKchDeadYodareFPA4_f=0x8035D810 -__dt__Q23efx22TKchYodareBaseChaseMtxFv=0x8035D9E8 -__dt__Q23efx27TParticleCallBack_KchYodareFv=0x8035DB30 -__dt__Q23efx16TKchYodareHitWatFv=0x8035DC1C -__dt__Q23efx15TKchYodareHitGrFv=0x8035DCA0 -__ct__Q23efx16TKchAttackYodareFPA4_f=0x8035DD24 -__ct__Q23efx10TKchYodareFPA4_f=0x8035DEFC -setFSM__Q34Game10KingChappy3ObjFPQ34Game10KingChappy3FSM=0x8035E0D4 -doUpdate__Q34Game10KingChappy3ObjFv=0x8035E120 -doDirectDraw__Q34Game10KingChappy3ObjFR8Graphics=0x8035E2C0 -doDebugDraw__Q34Game10KingChappy3ObjFR8Graphics=0x8035E2C4 -doAnimationUpdateAnimator__Q34Game10KingChappy3ObjFv=0x8035E2E4 -onKill__Q34Game10KingChappy3ObjFPQ24Game15CreatureKillArg=0x8035E39C -doAnimationCullingOff__Q34Game10KingChappy3ObjFv=0x8035E3D0 -doSimulation__Q34Game10KingChappy3ObjFf=0x8035E958 -getShadowParam__Q34Game10KingChappy3ObjFRQ24Game11ShadowParam=0x8035E998 -damageCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreaturefP8CollPart=0x8035EA30 -collisionCallback__Q34Game10KingChappy3ObjFRQ24Game9CollEvent=0x8035EB88 -wallCallback__Q34Game10KingChappy3ObjFRCQ24Game8MoveInfo=0x8035EBB8 -bombCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreatureR10Vector3f=0x8035EBE8 -inWaterCallback__Q34Game10KingChappy3ObjFPQ24Game8WaterBox=0x8035EC10 -startCarcassMotion__Q34Game10KingChappy3ObjFv=0x8035EC5C -initWalkSmokeEffect__Q34Game10KingChappy3ObjFv=0x8035EC84 -getWalkSmokeEffectMgr__Q34Game10KingChappy3ObjFv=0x8035ECE8 -doStartStoneState__Q34Game10KingChappy3ObjFv=0x8035ECF0 -doFinishStoneState__Q34Game10KingChappy3ObjFv=0x8035ED64 -doStartMovie__Q34Game10KingChappy3ObjFv=0x8035EE04 -startDemoDrawOff__Q23efx22TKchYodareBaseChaseMtxFv=0x8035EF40 -doEndMovie__Q34Game10KingChappy3ObjFv=0x8035EF9C -endDemoDrawOn__Q23efx22TKchYodareBaseChaseMtxFv=0x8035F0D8 -initMouthSlots__Q34Game10KingChappy3ObjFv=0x8035F134 -eatBomb__Q34Game10KingChappy3ObjFv=0x8035F268 -getMouthSlots__Q34Game10KingChappy3ObjFv=0x8035F40C -getPikminInMouth__Q34Game10KingChappy3ObjFb=0x8035F414 -getTonguePosVel__Q34Game10KingChappy3ObjFR10Vector3R10Vector3=0x8035F6DC -setNextGoal__Q34Game10KingChappy3ObjFv=0x8035F7F8 -searchTarget__Q34Game10KingChappy3ObjFv=0x8035F9E8 -isOutOfTerritory__Q34Game10KingChappy3ObjFf=0x8035FEE8 -forceTransit__Q34Game10KingChappy3ObjFi=0x8035FF28 -requestTransit__Q34Game10KingChappy3ObjFi=0x80360004 -walkFunc__Q34Game10KingChappy3ObjFv=0x80360034 -turnFunc__Q34Game10KingChappy3ObjFf=0x80360160 -isReachToGoal__Q34Game10KingChappy3ObjFf=0x8036030C -checkAttack__Q34Game10KingChappy3ObjFb=0x80360340 -checkFlick__Q34Game10KingChappy3ObjFb=0x80360B84 -checkDead__Q34Game10KingChappy3ObjFb=0x80360FB0 -checkTurn__Q34Game10KingChappy3ObjFb=0x8036109C -startMotionSelf__Q34Game10KingChappy3ObjFiPQ28SysShape14MotionListener=0x803611C4 -endBlendAnimation__Q34Game10KingChappy3ObjFv=0x80361300 -leftFootMtxCalc__Q34Game10KingChappy3ObjFv=0x80361398 -rightFootMtxCalc__Q34Game10KingChappy3ObjFv=0x803613DC -footMtxCalc__Q34Game10KingChappy3ObjFPA4_fP10Vector3Pf=0x80361420 -resetFootPos__Q34Game10KingChappy3ObjFv=0x803615B0 -fadeAllEffect__Q34Game10KingChappy3ObjFv=0x80361628 -fade__Q23efx22TKchYodareBaseChaseMtxFv=0x80361704 -createEffect__Q34Game10KingChappy3ObjFi=0x80361758 -fadeEffect__Q34Game10KingChappy3ObjFi=0x80361BCC -createBounceEffect__Q34Game10KingChappy3ObjFv=0x80361D0C -getName__Q23efx12ArgKchYodareFv=0x80361DD4 -__dt__Q23efx10TKchYodareFv=0x80361DE0 -forceKill__Q23efx22TKchYodareBaseChaseMtxFv=0x80361F40 -__dt__Q23efx16TKchAttackYodareFv=0x80361F94 -__dt__Q23efx14TKchDeadYodareFv=0x803620F4 -__dt__Q23efx13TKchSmokeHanaFv=0x80362254 -__dt__Q23efx10TKchCryIndFv=0x803622F0 -__dt__Q34Game10KingChappy14ProperAnimatorFv=0x8036238C -setInitialSetting__Q34Game10KingChappy3ObjFPQ24Game21EnemyInitialParamBase=0x803623F8 -applyImpulse__Q34Game10KingChappy3ObjFR10Vector3R10Vector3=0x803623FC -createEfxHamon__Q34Game10KingChappy3ObjFv=0x80362400 -updateEfxHamon__Q34Game10KingChappy3ObjFv=0x8036243C -isUnderground__Q34Game10KingChappy3ObjFv=0x80362490 -getCellRadius__Q34Game10KingChappy3ObjFv=0x803624B0 -getBodyRadius__Q34Game10KingChappy3ObjFv=0x803624C4 -pressCallBack__Q34Game10KingChappy3ObjFPQ24Game8CreaturefP8CollPart=0x803624D8 -eatWhitePikminCallBack__Q34Game10KingChappy3ObjFPQ24Game8Creaturef=0x80362508 -getEnemyTypeID__Q34Game10KingChappy3ObjFv=0x80362530 -getDownSmokeScale__Q34Game10KingChappy3ObjFv=0x80362538 -__sinit_kingChappy_cpp=0x80362540 -@920@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80362568 -@920@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8036257C -@920@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x80362590 -@920@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x803625A4 -@920@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x803625B8 -@920@12@viewGetShape__Q24Game9EnemyBaseFv=0x803625CC -@4@__dt__Q23efx10TKchCryIndFv=0x803625E0 -@4@__dt__Q23efx13TKchSmokeHanaFv=0x803625E8 -@4@__dt__Q23efx15TKchYodareHitGrFv=0x803625F0 -@4@__dt__Q23efx16TKchYodareHitWatFv=0x803625F8 -@4@__dt__Q23efx14TKchDeadYodareFv=0x80362600 -@4@__dt__Q23efx16TKchAttackYodareFv=0x80362608 -@4@__dt__Q23efx10TKchYodareFv=0x80362610 -init__Q34Game6Miulin3FSMFPQ24Game9EnemyBase=0x80362618 -__ct__Q34Game6Miulin9StateWaitFi=0x80362768 -init__Q34Game6Miulin9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x803627A4 -exec__Q34Game6Miulin9StateWaitFPQ24Game9EnemyBase=0x80362830 -__ct__Q34Game6Miulin9StateWalkFi=0x80362948 -init__Q34Game6Miulin9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x80362984 -exec__Q34Game6Miulin9StateWalkFPQ24Game9EnemyBase=0x80362AF0 -__ct__Q34Game6Miulin16StateAttackStartFi=0x80362E54 -init__Q34Game6Miulin16StateAttackStartFPQ24Game9EnemyBasePQ24Game8StateArg=0x80362E94 -exec__Q34Game6Miulin16StateAttackStartFPQ24Game9EnemyBase=0x80362EE0 -__ct__Q34Game6Miulin14StateAttackingFi=0x80362F30 -init__Q34Game6Miulin14StateAttackingFPQ24Game9EnemyBasePQ24Game8StateArg=0x80362F70 -exec__Q34Game6Miulin14StateAttackingFPQ24Game9EnemyBase=0x80362FC8 -__ct__Q34Game6Miulin14StateAttackEndFi=0x803637F4 -init__Q34Game6Miulin14StateAttackEndFPQ24Game9EnemyBasePQ24Game8StateArg=0x80363834 -exec__Q34Game6Miulin14StateAttackEndFPQ24Game9EnemyBase=0x80363888 -__ct__Q34Game6Miulin9StateTurnFi=0x80363934 -init__Q34Game6Miulin9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x80363970 -exec__Q34Game6Miulin9StateTurnFPQ24Game9EnemyBase=0x80363A64 -__ct__Q34Game6Miulin10StateFlickFi=0x80363BDC -init__Q34Game6Miulin10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x80363C18 -exec__Q34Game6Miulin10StateFlickFPQ24Game9EnemyBase=0x80363C64 -__ct__Q34Game6Miulin9StateDeadFi=0x80363DF4 -init__Q34Game6Miulin9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80363E30 -exec__Q34Game6Miulin9StateDeadFPQ24Game9EnemyBase=0x80363E84 -setAnimMgr__Q34Game6Miulin14ProperAnimatorFPQ28SysShape7AnimMgr=0x80363EE4 -getAnimator__Q34Game6Miulin14ProperAnimatorFi=0x80363EEC -__dt__Q34Game6Miulin14ProperAnimatorFv=0x80363EF4 -getAnimator__Q34Game6Miulin14ProperAnimatorFv=0x80363F50 -__ct__Q34Game6Miulin3MgrFiUc=0x80363F58 -doAlloc__Q34Game6Miulin3MgrFv=0x80363FA8 -__ct__Q34Game6Miulin5ParmsFv=0x80363FF0 -birth__Q34Game6Miulin3MgrFRQ24Game13EnemyBirthArg=0x803641F8 -__dt__Q34Game6Miulin3MgrFv=0x80364218 -getEnemyTypeID__Q34Game6Miulin3MgrFv=0x803642C8 -createObj__Q34Game6Miulin3MgrFi=0x803642D0 -__dt__Q34Game6Miulin3ObjFv=0x80364330 -getEnemy__Q34Game6Miulin3MgrFi=0x803643EC -read__Q34Game6Miulin5ParmsFR6Stream=0x803643FC -@4@__dt__Q34Game6Miulin3MgrFv=0x8036444C -setParameters__Q34Game6Miulin3ObjFv=0x80364454 -birth__Q34Game6Miulin3ObjFR10Vector3f=0x80364474 -onInit__Q34Game6Miulin3ObjFPQ24Game15CreatureInitArg=0x80364524 -__ct__Q34Game6Miulin3ObjFv=0x803645D8 -setFSM__Q34Game6Miulin3ObjFPQ34Game6Miulin3FSM=0x80364718 -doUpdate__Q34Game6Miulin3ObjFv=0x80364764 -doDirectDraw__Q34Game6Miulin3ObjFR8Graphics=0x803647E4 -doDebugDraw__Q34Game6Miulin3ObjFR8Graphics=0x803647E8 -getShadowParam__Q34Game6Miulin3ObjFRQ24Game11ShadowParam=0x80364808 -doSimulation__Q34Game6Miulin3ObjFf=0x80364890 -wallCallback__Q34Game6Miulin3ObjFRCQ24Game8MoveInfo=0x803648D0 -startCarcassMotion__Q34Game6Miulin3ObjFv=0x803648FC -initWalkSmokeEffect__Q34Game6Miulin3ObjFv=0x80364924 -getWalkSmokeEffectMgr__Q34Game6Miulin3ObjFv=0x80364990 -isAttackStart__Q34Game6Miulin3ObjFv=0x80364998 -isFindTarget__Q34Game6Miulin3ObjFv=0x80364ECC -isOutOfTerritory__Q34Game6Miulin3ObjFv=0x80365370 -isProhibitedSearch__Q34Game6Miulin3ObjFv=0x803653AC -isStartWalk__Q34Game6Miulin3ObjFv=0x80365434 -setReturnState__Q34Game6Miulin3ObjFv=0x803654E0 -walkFunc__Q34Game6Miulin3ObjFv=0x8036550C -turnFunc__Q34Game6Miulin3ObjFf=0x8036577C -isReachToGoal__Q34Game6Miulin3ObjFf=0x803658F8 -setNextGoal__Q34Game6Miulin3ObjFv=0x80365948 -nextTargetTurnCheck__Q34Game6Miulin3ObjFv=0x80365AA4 -isNowCaution__Q34Game6Miulin3ObjFv=0x80365D84 -landEffect__Q34Game6Miulin3ObjFv=0x80365E54 -attackEffect__Q34Game6Miulin3ObjFR10Vector3=0x80365E7C -setInitialSetting__Q34Game6Miulin3ObjFPQ24Game21EnemyInitialParamBase=0x80365FC0 -applyImpulse__Q34Game6Miulin3ObjFR10Vector3R10Vector3=0x80365FC4 -getEnemyTypeID__Q34Game6Miulin3ObjFv=0x80365FC8 -getDownSmokeScale__Q34Game6Miulin3ObjFv=0x80365FD0 -getGoalPos__Q34Game6Miulin3ObjFv=0x80365FD8 -init__Q34Game6Jigumo3FSMFPQ24Game9EnemyBase=0x80365FF4 -__ct__Q34Game6Jigumo9StateWaitFi=0x803661F8 -init__Q34Game6Jigumo9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80366234 -exec__Q34Game6Jigumo9StateWaitFPQ24Game9EnemyBase=0x80366294 -__ct__Q34Game6Jigumo11StateAppearFi=0x80366394 -init__Q34Game6Jigumo11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x803663D0 -exec__Q34Game6Jigumo11StateAppearFPQ24Game9EnemyBase=0x80366508 -__ct__Q34Game6Jigumo9StateHideFi=0x8036682C -init__Q34Game6Jigumo9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg=0x80366868 -exec__Q34Game6Jigumo9StateHideFPQ24Game9EnemyBase=0x80366990 -__ct__Q34Game6Jigumo9StateDeadFi=0x80366B00 -init__Q34Game6Jigumo9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80366B3C -exec__Q34Game6Jigumo9StateDeadFPQ24Game9EnemyBase=0x80366B98 -__ct__Q34Game6Jigumo11StateAttackFi=0x80366C58 -init__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80366C94 -exec__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBase=0x80366D50 -getGoalPos__Q34Game6Jigumo3ObjFv=0x803671D8 -cleanup__Q34Game6Jigumo11StateAttackFPQ24Game9EnemyBase=0x803671F4 -__ct__Q34Game6Jigumo9StateMissFi=0x8036722C -init__Q34Game6Jigumo9StateMissFPQ24Game9EnemyBasePQ24Game8StateArg=0x80367268 -exec__Q34Game6Jigumo9StateMissFPQ24Game9EnemyBase=0x803672B4 -__ct__Q34Game6Jigumo11StateReturnFi=0x803674B4 -init__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBasePQ24Game8StateArg=0x803674F0 -exec__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBase=0x80367530 -cleanup__Q34Game6Jigumo11StateReturnFPQ24Game9EnemyBase=0x803676A4 -__ct__Q34Game6Jigumo10StateCarryFi=0x803676D0 -init__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBasePQ24Game8StateArg=0x8036770C -exec__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBase=0x8036774C -cleanup__Q34Game6Jigumo10StateCarryFPQ24Game9EnemyBase=0x803678DC -__ct__Q34Game6Jigumo10StateFlickFi=0x80367908 -init__Q34Game6Jigumo10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x80367944 -exec__Q34Game6Jigumo10StateFlickFPQ24Game9EnemyBase=0x80367A10 -__ct__Q34Game6Jigumo8StateEatFi=0x80367B0C -init__Q34Game6Jigumo8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x80367B48 -exec__Q34Game6Jigumo8StateEatFPQ24Game9EnemyBase=0x80367BA0 -__ct__Q34Game6Jigumo11StateSearchFi=0x80367CC0 -init__Q34Game6Jigumo11StateSearchFPQ24Game9EnemyBasePQ24Game8StateArg=0x80367CFC -exec__Q34Game6Jigumo11StateSearchFPQ24Game9EnemyBase=0x80367D84 -__ct__Q34Game6Jigumo12StateSAttackFi=0x80368398 -init__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x803683D4 -exec__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBase=0x8036842C -cleanup__Q34Game6Jigumo12StateSAttackFPQ24Game9EnemyBase=0x80368664 -__ct__Q34Game6Jigumo10StateSMissFi=0x80368688 -init__Q34Game6Jigumo10StateSMissFPQ24Game9EnemyBasePQ24Game8StateArg=0x803686C4 -exec__Q34Game6Jigumo10StateSMissFPQ24Game9EnemyBase=0x803686F0 -satisfy__Q34Game6Jigumo24ConditionHeightCheckPikiFPQ24Game4Piki=0x80368740 -__sinit_jigumoState_cpp=0x80368830 -setAnimMgr__Q34Game6Jigumo14ProperAnimatorFPQ28SysShape7AnimMgr=0x80368858 -getAnimator__Q34Game6Jigumo14ProperAnimatorFi=0x80368860 -__dt__Q34Game6Jigumo14ProperAnimatorFv=0x80368868 -getAnimator__Q34Game6Jigumo14ProperAnimatorFv=0x803688C4 -__ct__Q34Game6Jigumo3MgrFiUc=0x803688CC -doAlloc__Q34Game6Jigumo3MgrFv=0x8036891C -__ct__Q34Game6Jigumo5ParmsFv=0x80368964 -birth__Q34Game6Jigumo3MgrFRQ24Game13EnemyBirthArg=0x80368BB0 -loadModelData__Q34Game6Jigumo3MgrFv=0x80368BD0 -__dt__Q34Game6Jigumo3MgrFv=0x80368C38 -doLoadBmd__Q34Game6Jigumo3MgrFPv=0x80368CE8 -getEnemyTypeID__Q34Game6Jigumo3MgrFv=0x80368D14 -createObj__Q34Game6Jigumo3MgrFi=0x80368D1C -__dt__Q34Game6Jigumo3ObjFv=0x80368D7C -getEnemy__Q34Game6Jigumo3MgrFi=0x80368E38 -read__Q34Game6Jigumo5ParmsFR6Stream=0x80368E48 -@4@__dt__Q34Game6Jigumo3MgrFv=0x80368E98 -mouthScaleCallBack__Q24Game6JigumoFP8J3DJointi=0x80368EA0 -setParameters__Q34Game6Jigumo3ObjFv=0x80368ED8 -birth__Q34Game6Jigumo3ObjFR10Vector3f=0x80369044 -getEnemyTypeID__Q34Game6Jigumo3ObjFv=0x803691C0 -onInit__Q34Game6Jigumo3ObjFPQ24Game15CreatureInitArg=0x803691C8 -__ct__Q34Game6Jigumo3ObjFv=0x80369404 -setFSM__Q34Game6Jigumo3ObjFPQ34Game6Jigumo3FSM=0x803697E8 -doUpdate__Q34Game6Jigumo3ObjFv=0x80369834 -doDirectDraw__Q34Game6Jigumo3ObjFR8Graphics=0x80369874 -doDebugDraw__Q34Game6Jigumo3ObjFR8Graphics=0x80369878 -doAnimationCullingOff__Q34Game6Jigumo3ObjFv=0x80369898 -startCarcassMotion__Q34Game6Jigumo3ObjFv=0x803699E4 -initMouthSlots__Q34Game6Jigumo3ObjFv=0x80369A0C -doGetLifeGaugeParam__Q34Game6Jigumo3ObjFRQ24Game14LifeGaugeParam=0x80369AC8 -pressCallBack__Q34Game6Jigumo3ObjFPQ24Game8CreaturefP8CollPart=0x80369B64 -damageCallBack__Q34Game6Jigumo3ObjFPQ24Game8CreaturefP8CollPart=0x80369C6C -collisionCallback__Q34Game6Jigumo3ObjFRQ24Game9CollEvent=0x80369E20 -outWaterCallback__Q34Game6Jigumo3ObjFv=0x80369EF0 -inWaterCallback__Q34Game6Jigumo3ObjFPQ24Game8WaterBox=0x8036A010 -earthquakeCallBack__Q34Game6Jigumo3ObjFPQ24Game8Creaturef=0x8036A160 -getShadowParam__Q34Game6Jigumo3ObjFRQ24Game11ShadowParam=0x8036A1DC -needShadow__Q34Game6Jigumo3ObjFv=0x8036A278 -doSimulationGround__Q34Game6Jigumo3ObjFf=0x8036A2F4 -onKill__Q34Game6Jigumo3ObjFPQ24Game15CreatureKillArg=0x8036A468 -isLivingThing__Q34Game6Jigumo3ObjFv=0x8036A49C -doStartMovie__Q34Game6Jigumo3ObjFv=0x8036A4A4 -doEndMovie__Q34Game6Jigumo3ObjFv=0x8036A530 -doStartStoneState__Q34Game6Jigumo3ObjFv=0x8036A5BC -doFinishStoneState__Q34Game6Jigumo3ObjFv=0x8036A694 -getGoalDist__Q34Game6Jigumo3ObjFv=0x8036A77C -walkFunc__Q34Game6Jigumo3ObjFv=0x8036A7B0 -getOffsetForMapCollision__Q34Game6Jigumo3ObjFv=0x8036AF8C -calcBaseTrMatrix__Q34Game6Jigumo3ObjFv=0x8036B128 -revisionAnimPos__Q34Game6Jigumo3ObjFf=0x8036B948 -getWalkSpeed__Q34Game6Jigumo3ObjFv=0x8036B9A0 -velocityControl__Q34Game6Jigumo3ObjFv=0x8036BA20 -getNearestPikiOrNavi__Q34Game6Jigumo3ObjFff=0x8036BA94 -effectStart__Q34Game6Jigumo3ObjFv=0x8036BB3C -effectStop__Q34Game6Jigumo3ObjFv=0x8036BCFC -boundEffect__Q34Game6Jigumo3ObjFv=0x8036BD88 -eatWaterEffect__Q34Game6Jigumo3ObjFv=0x8036BDB0 -killNest__Q34Game6Jigumo3ObjFv=0x8036BED4 -mouthScaleMtxCalc__Q34Game6Jigumo3ObjFv=0x8036BEF4 -setInitialSetting__Q34Game6Jigumo3ObjFPQ24Game21EnemyInitialParamBase=0x8036C088 -getCellRadius__Q34Game6Jigumo3ObjFv=0x8036C08C -getBodyRadius__Q34Game6Jigumo3ObjFv=0x8036C0A0 -eatWhitePikminCallBack__Q34Game6Jigumo3ObjFPQ24Game8Creaturef=0x8036C0A8 -getDownSmokeScale__Q34Game6Jigumo3ObjFv=0x8036C0D0 -getMouthSlots__Q34Game6Jigumo3ObjFv=0x8036C0D8 -createEfxHamon__Q34Game6Jigumo3ObjFv=0x8036C0E0 -@908@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8036C11C -@908@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8036C130 -@908@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8036C144 -@908@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8036C158 -@908@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8036C16C -@908@12@viewGetShape__Q24Game9EnemyBaseFv=0x8036C180 -__ct__Q34Game4Nest3MgrFiUc=0x8036C194 -doAlloc__Q34Game4Nest3MgrFv=0x8036C204 -birth__Q34Game4Nest3MgrFRQ24Game13EnemyBirthArg=0x8036C24C -loadModelData__Q34Game4Nest3MgrFP10JKRArchive=0x8036C26C -doSimpleDraw__Q34Game4Nest3MgrFP8Viewport=0x8036C398 -getEnemy__Q34Game4Nest3MgrFi=0x8036C6B8 -initObjects__Q34Game4Nest3MgrFv=0x8036C6C8 -getEnemyTypeID__Q34Game4Nest3MgrFv=0x8036C8B0 -__dt__Q34Game4Nest3MgrFv=0x8036C8B8 -loadAnimData__Q34Game4Nest3MgrFv=0x8036C968 -createObj__Q34Game4Nest3MgrFi=0x8036C96C -__dt__Q34Game4Nest3ObjFv=0x8036C9CC -__sinit_enemyNestMgr_cpp=0x8036CA88 -@4@__dt__Q34Game4Nest3MgrFv=0x8036CA8C -birth__Q34Game4Nest3ObjFR10Vector3f=0x8036CA94 -onInit__Q34Game4Nest3ObjFPQ24Game15CreatureInitArg=0x8036CAC8 -__ct__Q34Game4Nest3ObjFv=0x8036CBE4 -setHouseType__Q34Game4Nest3ObjFi=0x8036CC7C -setInitialSetting__Q34Game4Nest3ObjFPQ24Game21EnemyInitialParamBase=0x8036CC9C -update__Q34Game4Nest3ObjFv=0x8036CCA0 -doUpdate__Q34Game4Nest3ObjFv=0x8036CCA4 -doSimulation__Q34Game4Nest3ObjFf=0x8036CCA8 -doAnimationCullingOn__Q34Game4Nest3ObjFv=0x8036CCAC -doAnimationCullingOff__Q34Game4Nest3ObjFv=0x8036CCB0 -doUpdateCommon__Q34Game4Nest3ObjFv=0x8036CCB4 -doEntry__Q34Game4Nest3ObjFv=0x8036CCB8 -doViewCalc__Q34Game4Nest3ObjFv=0x8036CCBC -isLivingThing__Q34Game4Nest3ObjFv=0x8036CCC0 -ignoreAtari__Q34Game4Nest3ObjFPQ24Game8Creature=0x8036CCC8 -needShadow__Q34Game4Nest3ObjFv=0x8036CCD0 -getEnemyTypeID__Q34Game4Nest3ObjFv=0x8036CCD8 -getSound_CurrAnimFrame__Q34Game4Nest3ObjFv=0x8036CCE0 -getSound_CurrAnimSpeed__Q34Game4Nest3ObjFv=0x8036CCE8 -init__Q34Game11TamagoMushi3FSMFPQ24Game9EnemyBase=0x8036CCF0 -__ct__Q34Game11TamagoMushi9StateWalkFi=0x8036CDF8 -init__Q34Game11TamagoMushi9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x8036CE34 -exec__Q34Game11TamagoMushi9StateWalkFPQ24Game9EnemyBase=0x8036CF3C -__ct__Q34Game11TamagoMushi9StateTurnFi=0x8036D028 -init__Q34Game11TamagoMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x8036D064 -exec__Q34Game11TamagoMushi9StateTurnFPQ24Game9EnemyBase=0x8036D0B8 -__ct__Q34Game11TamagoMushi11StateAppearFi=0x8036D140 -init__Q34Game11TamagoMushi11StateAppearFPQ24Game9EnemyBasePQ24Game8StateArg=0x8036D17C -exec__Q34Game11TamagoMushi11StateAppearFPQ24Game9EnemyBase=0x8036D2DC -__ct__Q34Game11TamagoMushi9StateHideFi=0x8036D488 -init__Q34Game11TamagoMushi9StateHideFPQ24Game9EnemyBasePQ24Game8StateArg=0x8036D4C4 -exec__Q34Game11TamagoMushi9StateHideFPQ24Game9EnemyBase=0x8036D530 -__ct__Q34Game11TamagoMushi9StateDeadFi=0x8036D574 -init__Q34Game11TamagoMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x8036D5B0 -exec__Q34Game11TamagoMushi9StateDeadFPQ24Game9EnemyBase=0x8036D6B8 -__ct__Q34Game11TamagoMushi9StateWaitFi=0x8036D7CC -init__Q34Game11TamagoMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8036D808 -exec__Q34Game11TamagoMushi9StateWaitFPQ24Game9EnemyBase=0x8036D87C -setAnimMgr__Q34Game11TamagoMushi14ProperAnimatorFPQ28SysShape7AnimMgr=0x8036D914 -getAnimator__Q34Game11TamagoMushi14ProperAnimatorFi=0x8036D91C -__dt__Q34Game11TamagoMushi14ProperAnimatorFv=0x8036D924 -getAnimator__Q34Game11TamagoMushi14ProperAnimatorFv=0x8036D980 -__ct__Q34Game11TamagoMushi3MgrFiUc=0x8036D988 -doAlloc__Q34Game11TamagoMushi3MgrFv=0x8036D9D8 -__dt__16J3DUMtxCacheBaseFv=0x8036DAD8 -getEnemy__Q34Game11TamagoMushi3MgrFi=0x8036DB20 -__ct__Q34Game11TamagoMushi5ParmsFv=0x8036DB30 -birth__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArg=0x8036DD90 -fetch__Q34Game11TamagoMushi3MgrFP8J3DModelf=0x8036DDD8 -createGroup__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArgiR10Vector3=0x8036DE30 -createGroupByBigFoot__Q34Game11TamagoMushi3MgrFRQ24Game13EnemyBirthArgiR10Vector3f=0x8036DF28 -createGroup__Q34Game11TamagoMushi3MgrFPQ34Game11TamagoMushi3Objib=0x8036DFD8 -createGroupByBigFoot__Q34Game11TamagoMushi3MgrFPQ34Game11TamagoMushi3Objibf=0x8036E384 -__dt__Q34Game11TamagoMushi3MgrFv=0x8036E808 -getEnemyTypeID__Q34Game11TamagoMushi3MgrFv=0x8036E8B8 -createObj__Q34Game11TamagoMushi3MgrFi=0x8036E8C0 -__dt__Q34Game11TamagoMushi3ObjFv=0x8036E920 -read__Q34Game11TamagoMushi5ParmsFR6Stream=0x8036E9DC -fetch__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable>CFP8J3DModel=0x8036EA2C -__dt__39J3DUMtxCacheRef<20J3DUMtxAnmCacheTable>Fv=0x8036EB08 -@4@__dt__Q34Game11TamagoMushi3MgrFv=0x8036EBA0 -setParameters__Q34Game11TamagoMushi3ObjFv=0x8036EBA8 -birth__Q34Game11TamagoMushi3ObjFR10Vector3f=0x8036EBC8 -onInit__Q34Game11TamagoMushi3ObjFPQ24Game15CreatureInitArg=0x8036EBE8 -__ct__Q34Game11TamagoMushi3ObjFv=0x8036EEB8 -setFSM__Q34Game11TamagoMushi3ObjFPQ34Game11TamagoMushi3FSM=0x8036EFF4 -doUpdate__Q34Game11TamagoMushi3ObjFv=0x8036F040 -doAnimationCullingOff__Q34Game11TamagoMushi3ObjFv=0x8036F0E0 -doDirectDraw__Q34Game11TamagoMushi3ObjFR8Graphics=0x8036F238 -doDebugDraw__Q34Game11TamagoMushi3ObjFR8Graphics=0x8036F23C -pressCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart=0x8036F25C -bombCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreatureR10Vector3f=0x8036F338 -damageCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart=0x8036F3F4 -collisionCallback__Q34Game11TamagoMushi3ObjFRQ24Game9CollEvent=0x8036F528 -bounceCallback__Q34Game11TamagoMushi3ObjFPQ23Sys8Triangle=0x8036F620 -hipdropCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8CreaturefP8CollPart=0x8036F798 -earthquakeCallBack__Q34Game11TamagoMushi3ObjFPQ24Game8Creaturef=0x8036F7C4 -getShadowParam__Q34Game11TamagoMushi3ObjFRQ24Game11ShadowParam=0x8036F7F4 -needShadow__Q34Game11TamagoMushi3ObjFv=0x8036F89C -genItem__Q34Game11TamagoMushi3ObjFv=0x8036F8CC -walkFunc__Q34Game11TamagoMushi3ObjFv=0x8036FAD4 -setGoalRandom__Q34Game11TamagoMushi3ObjFv=0x8036FDE4 -setGoalDirect__Q34Game11TamagoMushi3ObjFR10Vector3=0x8036FF4C -turnFunc__Q34Game11TamagoMushi3ObjFv=0x80370004 -isReachToGoal__Q34Game11TamagoMushi3ObjFf=0x80370160 -resetWalkParm__Q34Game11TamagoMushi3ObjFv=0x80370194 -startCarcassMotion__Q34Game11TamagoMushi3ObjFv=0x803701C0 -setLeader__Q34Game11TamagoMushi3ObjFPQ34Game11TamagoMushi3Obj=0x803701E8 -setTypeBall__Q34Game11TamagoMushi3ObjFv=0x80370240 -appearPanic__Q34Game11TamagoMushi3ObjFv=0x80370294 -isFound__Q34Game11TamagoMushi3ObjFv=0x803705D8 -__cl__7ParmFv=0x80370994 -isZukanMode__Q24Game10GameSystemFv=0x8037099C -createFellow__Q34Game11TamagoMushi3ObjFv=0x803709B0 -ballMove__Q34Game11TamagoMushi3ObjFv=0x803709F4 -createHideEffect__Q34Game11TamagoMushi3ObjFv=0x80370A90 -createAppearEffect__Q34Game11TamagoMushi3ObjFv=0x80370B38 -setInitialSetting__Q34Game11TamagoMushi3ObjFPQ24Game21EnemyInitialParamBase=0x80370BE0 -isLivingThing__Q34Game11TamagoMushi3ObjFv=0x80370BE4 -getDownSmokeScale__Q34Game11TamagoMushi3ObjFv=0x80370BF8 -getEnemyTypeID__Q34Game11TamagoMushi3ObjFv=0x80370C00 -__ct__Q28Morimura10TZukanBaseFPc=0x80370C08 -__dt__Q28Morimura11TScrollListFv=0x80370E0C -__dt__Q28Morimura10TZukanBaseFv=0x80370ED0 -doCreate__Q28Morimura10TZukanBaseFP10JKRArchive=0x80370FCC -doUpdate__Q28Morimura10TZukanBaseFv=0x803718D8 -isListShow__Q28Morimura11TScrollListFi=0x803728A0 -updateButtonAlpha__Q28Morimura10TZukanBaseFUc=0x803728A8 -isComplete__Q28Morimura10TZukanBaseFv=0x80372B60 -doDraw__Q28Morimura10TZukanBaseFR8Graphics=0x80372B68 -doDemoDraw__Q28Morimura10TZukanBaseFR8Graphics=0x8037327C -doUpdateFadeoutFinish__Q28Morimura10TZukanBaseFv=0x80373280 -indexPaneInit__Q28Morimura10TZukanBaseFP9J2DScreen=0x80373298 -paneInit__Q28Morimura10TZukanBaseFv=0x80373810 -changePaneInfo__Q28Morimura10TZukanBaseFv=0x80373A68 -changeName__Q28Morimura10TZukanBaseFv=0x80373B30 -doUpdateIn__Q28Morimura10TZukanBaseFv=0x80373BD8 -doUpdateOut__Q28Morimura10TZukanBaseFv=0x80373C34 -doPushXButton__Q28Morimura10TZukanBaseFv=0x80374264 -doPushYButton__Q28Morimura10TZukanBaseFv=0x80374378 -doPushBButton__Q28Morimura10TZukanBaseFv=0x803744A8 -setShortenIndex__Q28Morimura10TZukanBaseFiib=0x80374558 -windowOpenClose__Q28Morimura10TZukanBaseFUx=0x8037479C -isPanelExist__Q28Morimura10TZukanBaseFv=0x80374824 -requireRequest__Q28Morimura10TZukanBaseFv=0x80374898 -requireEffectOff__Q28Morimura10TZukanBaseFv=0x803748B0 -isEnlargedWindow__Q28Morimura10TZukanBaseFv=0x803748BC -isMemoWindow__Q28Morimura10TZukanBaseFv=0x803748D8 -checkRequest__Q28Morimura10TZukanBaseFRi=0x803748F8 -getCurrSelectId__Q28Morimura10TZukanBaseFv=0x80374908 -getTexInfo__Q28Morimura10TZukanBaseFi=0x80374970 -__dt__Q28Morimura11TEnemyZukanFv=0x80374A94 -doCreate__Q28Morimura11TEnemyZukanFP10JKRArchive=0x80374BB8 -init__Q28Morimura15TScaleUpCounterFP9J2DScreenUxUxUxPUlb=0x803762EC -getIdMax__Q28Morimura11TEnemyZukanFv=0x80376330 -setDetail__Q28Morimura11TEnemyZukanFv=0x80376338 -setShortenIndex__Q28Morimura11TEnemyZukanFiib=0x80376510 -isListShow__Q28Morimura11TEnemyZukanFi=0x80376558 -indexPaneInit__Q28Morimura11TEnemyZukanFP9J2DScreen=0x80376630 -getUpdateIndex__Q28Morimura11TEnemyZukanFRib=0x80376D48 -getNameID__Q28Morimura11TEnemyZukanFi=0x803776B8 -getXMsgID__Q28Morimura11TEnemyZukanFi=0x803776DC -getYMsgID__Q28Morimura11TEnemyZukanFi=0x80377700 -getModelIndex__Q28Morimura11TEnemyZukanFi=0x80377724 -setXWindow__Q28Morimura11TEnemyZukanFv=0x80377774 -setYWindow__Q28Morimura11TEnemyZukanFv=0x803777D4 -isOpenConfirmWindow__Q28Morimura11TEnemyZukanFv=0x80377834 -isNewSupply__Q28Morimura11TEnemyZukanFib=0x80377868 -isPanelExist__Q28Morimura11TEnemyZukanFv=0x80377964 -openConfirmWindow__Q28Morimura11TEnemyZukanFv=0x80377A48 -getPrice__Q28Morimura11TEnemyZukanFi=0x80377A94 -getDefeatNum__Q28Morimura11TEnemyZukanFi=0x80377BC8 -getKilledNum__Q28Morimura11TEnemyZukanFi=0x80377CC0 -__ct__Q28Morimura12TDEnemySceneFv=0x80377DEC -doCreateObj__Q28Morimura12TDEnemySceneFP10JKRArchive=0x80377E40 -doStart__Q28Morimura12TDEnemySceneFPQ26Screen13StartSceneArg=0x80377F1C -isAppearConfirmWindow__Q28Morimura12TDEnemySceneFv=0x80377F50 -__dt__Q28Morimura10TItemZukanFv=0x80377F78 -doUpdate__Q28Morimura10TItemZukanFv=0x8037809C -demoSet__Q28Morimura10TItemZukanFv=0x803784C0 -setShortenIndex__Q28Morimura10TItemZukanFiib=0x80378568 -getCategoryColorId__Q28Morimura10TItemZukanFi=0x803789C4 -doUpdateOut__Q28Morimura10TItemZukanFv=0x803789D4 -getUpdateIndex__Q28Morimura10TItemZukanFRib=0x80378CA8 -getNameID__Q28Morimura10TItemZukanFi=0x80378D68 -getXMsgID__Q28Morimura10TItemZukanFi=0x80378DA4 -getYMsgID__Q28Morimura10TItemZukanFi=0x80378DE0 -getModelIndex__Q28Morimura10TItemZukanFi=0x80378E1C -getIdMax__Q28Morimura10TItemZukanFv=0x80378E50 -doCreate__Q28Morimura10TItemZukanFP10JKRArchive=0x80378E70 -doDemoDraw__Q28Morimura10TItemZukanFR8Graphics=0x8037A500 -setDetail__Q28Morimura10TItemZukanFv=0x8037ACB4 -isComplete__Q28Morimura10TItemZukanFv=0x8037AE24 -isListShow__Q28Morimura10TItemZukanFi=0x8037AEB4 -setXWindow__Q28Morimura10TItemZukanFv=0x8037AF34 -setYWindow__Q28Morimura10TItemZukanFv=0x8037AFA0 -getPrice__Q28Morimura10TItemZukanFi=0x8037B048 -getWeight__Q28Morimura10TItemZukanFi=0x8037B108 -isNewSupply__Q28Morimura10TItemZukanFib=0x8037B1D0 -isPanelExist__Q28Morimura10TItemZukanFv=0x8037B268 -isOpenConfirmWindow__Q28Morimura10TItemZukanFv=0x8037B32C -openConfirmWindow__Q28Morimura10TItemZukanFv=0x8037B360 -__ct__Q28Morimura11TDItemSceneFv=0x8037B3AC -doCreateObj__Q28Morimura11TDItemSceneFP10JKRArchive=0x8037B400 -doStart__Q28Morimura11TDItemSceneFPQ26Screen13StartSceneArg=0x8037B5C8 -isAppearConfirmWindow__Q28Morimura11TDItemSceneFv=0x8037B5FC -__ct__Q28Morimura18TCallbackScrollMsgFv=0x8037B624 -doInit__Q28Morimura18TCallbackScrollMsgFv=0x8037B6A4 -update__Q28Morimura18TCallbackScrollMsgFv=0x8037B714 -reset__Q28Morimura18TCallbackScrollMsgFv=0x8037B74C -scroll__Q28Morimura18TCallbackScrollMsgFf=0x8037B814 -draw__Q28Morimura18TCallbackScrollMsgFR8GraphicsR14J2DGrafContext=0x8037B848 -getPosRate__Q28Morimura18TCallbackScrollMsgFv=0x8037B890 -__ct__Q28Morimura12TZukanWindowFP10JKRArchivei=0x8037B8B4 -create__Q28Morimura12TZukanWindowFPCcUl=0x8037B934 -update__Q28Morimura12TZukanWindowFv=0x8037BE6C -draw__Q28Morimura12TZukanWindowFR8GraphicsP13J2DPerspGraph=0x8037C1FC -windowOpen__Q28Morimura12TZukanWindowFv=0x8037C228 -windowClose__Q28Morimura12TZukanWindowFv=0x8037C318 -msgScroll__Q28Morimura12TZukanWindowFf=0x8037C348 -getPosRate__Q28Morimura12TZukanWindowFv=0x8037C380 -setWindowColor__Q28Morimura12TZukanWindowFR13J2DGXColorS10=0x8037C3B0 -setIconColor__Q28Morimura12TZukanWindowFR13J2DGXColorS10R13J2DGXColorS10=0x8037C41C -onIcon__Q28Morimura12TZukanWindowFi=0x8037C50C -moveIcon__Q28Morimura12TZukanWindowFf=0x8037C598 -changeIconTexture__Q28Morimura12TZukanWindowFiP7ResTIMG=0x8037C66C -__dt__Q28Morimura18TCallbackScrollMsgFv=0x8037C6AC -getResName__Q28Morimura11TDItemSceneCFv=0x8037C73C -getSceneType__Q28Morimura11TDItemSceneFv=0x8037C748 -getOwnerID__Q28Morimura11TDItemSceneFv=0x8037C750 -getMemberID__Q28Morimura11TDItemSceneFv=0x8037C75C -getDispMemberBase__Q28Morimura10TItemZukanFv=0x8037C76C -getDispDataZukan__Q28Morimura10TItemZukanFv=0x8037C7A0 -doUpdateFadeinFinish__Q28Morimura10TZukanBaseFv=0x8037C7A8 -doUpdateFadeout__Q28Morimura10TZukanBaseFv=0x8037C7BC -changeTextTevBlock__Q28Morimura11TScrollListFi=0x8037C7E4 -setPaneCharacter__Q28Morimura11TScrollListFi=0x8037C7E8 -getResName__Q28Morimura12TDEnemySceneCFv=0x8037C7EC -getSceneType__Q28Morimura12TDEnemySceneFv=0x8037C7F8 -getOwnerID__Q28Morimura12TDEnemySceneFv=0x8037C800 -getMemberID__Q28Morimura12TDEnemySceneFv=0x8037C80C -getDispMemberBase__Q28Morimura11TEnemyZukanFv=0x8037C81C -getDispDataZukan__Q28Morimura11TEnemyZukanFv=0x8037C850 -getCategoryColorId__Q28Morimura10TZukanBaseFi=0x8037C858 -__sinit_zukan2D_cpp=0x8037C860 -@24@__dt__Q28Morimura10TZukanBaseFv=0x8037C994 -@24@__dt__Q28Morimura11TEnemyZukanFv=0x8037C99C -@24@__dt__Q28Morimura10TItemZukanFv=0x8037C9A4 -draw__Q28Morimura15THiScoreIndPaneFv=0x8037C9AC -create__Q28Morimura18THiScoreListScreenFPCcUl=0x8037CBC0 -__ct__Q28Morimura8THiScoreFv=0x8037CEEC -__ct__10Vector2Fv=0x8037D0B8 -doCreate__Q28Morimura8THiScoreFP10JKRArchive=0x8037D0BC -__dt__Q28Morimura8TIndPaneFv=0x8037E118 -getNameID__Q28Morimura8THiScoreFi=0x8037E178 -doUpdate__Q28Morimura8THiScoreFv=0x8037E194 -update__Q28Morimura18THiScoreListScreenFv=0x8037EB84 -doDraw__Q28Morimura8THiScoreFR8Graphics=0x8037EBB4 -paneInit__Q28Morimura8THiScoreFv=0x8037ED5C -doUpdateFadeinFinish__Q28Morimura8THiScoreFv=0x8037F0B4 -doUpdateFadeoutFinish__Q28Morimura8THiScoreFv=0x8037F110 -changePaneInfo__Q28Morimura8THiScoreFv=0x8037F12C -setPaneCharacter__Q28Morimura8THiScoreFi=0x8037F6F0 -getRecord__Q28Morimura8THiScoreFii=0x8037F814 -changeTextTevBlock__Q28Morimura8THiScoreFi=0x8037FC60 -copyTevBlock__Q28Morimura8THiScoreFP11J2DTevBlockP11J2DTevBlock=0x8038009C -changeTevBlock__Q28Morimura8THiScoreFP11J2DTevBlockP11J2DTevBlock=0x803802B8 -copyColorBlock__Q28Morimura8THiScoreFP13J2DColorBlockP13J2DColorBlock=0x803804D4 -changeColorBlock__Q28Morimura8THiScoreFP13J2DColorBlockP13J2DColorBlock=0x80380554 -updateLayout__Q28Morimura8THiScoreFv=0x803805D4 -__ct__Q28Morimura13THiScoreSceneFv=0x80380754 -getResName__Q28Morimura13THiScoreSceneCFv=0x803807A4 -doCreateObj__Q28Morimura13THiScoreSceneFP10JKRArchive=0x803807B0 -getSceneType__Q28Morimura13THiScoreSceneFv=0x80380818 -getOwnerID__Q28Morimura13THiScoreSceneFv=0x80380820 -getMemberID__Q28Morimura13THiScoreSceneFv=0x8038082C -getSize__Q28Morimura19DispMemberHighScoreFv=0x8038083C -getOwnerID__Q28Morimura19DispMemberHighScoreFv=0x80380844 -getMemberID__Q28Morimura19DispMemberHighScoreFv=0x80380850 -getDispMemberBase__Q28Morimura8THiScoreFv=0x80380860 -getIdMax__Q28Morimura8THiScoreFv=0x80380894 -setShortenIndex__Q28Morimura11TScrollListFiib=0x8038089C -doUpdateIn__Q28Morimura11TScrollListFv=0x803808A0 -doUpdateOut__Q28Morimura11TScrollListFv=0x803808A4 -__dt__Q28Morimura8THiScoreFv=0x803808A8 -__dt__Q28Morimura15THiScoreIndPaneFv=0x80380984 -__sinit_hiScore2D_cpp=0x803809F4 -@24@__dt__Q28Morimura8THiScoreFv=0x80380A24 -init__Q34Game8UmiMushi3FSMFPQ24Game9EnemyBase=0x80380A2C -__ct__Q34Game8UmiMushi9StateWaitFi=0x80380BC4 -init__Q34Game8UmiMushi9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x80380C00 -exec__Q34Game8UmiMushi9StateWaitFPQ24Game9EnemyBase=0x80380C54 -__ct__Q34Game8UmiMushi9StateWalkFi=0x80380E68 -init__Q34Game8UmiMushi9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x80380EA4 -exec__Q34Game8UmiMushi9StateWalkFPQ24Game9EnemyBase=0x80380F04 -__ct__Q34Game8UmiMushi9StateFindFi=0x803811C4 -init__Q34Game8UmiMushi9StateFindFPQ24Game9EnemyBasePQ24Game8StateArg=0x80381200 -exec__Q34Game8UmiMushi9StateFindFPQ24Game9EnemyBase=0x8038128C -__ct__Q34Game8UmiMushi11StateSearchFi=0x803813B8 -init__Q34Game8UmiMushi11StateSearchFPQ24Game9EnemyBasePQ24Game8StateArg=0x803813F4 -exec__Q34Game8UmiMushi11StateSearchFPQ24Game9EnemyBase=0x80381434 -__ct__Q34Game8UmiMushi9StateTurnFi=0x803816C8 -init__Q34Game8UmiMushi9StateTurnFPQ24Game9EnemyBasePQ24Game8StateArg=0x80381704 -exec__Q34Game8UmiMushi9StateTurnFPQ24Game9EnemyBase=0x80381744 -__ct__Q34Game8UmiMushi10StateFlickFi=0x80381930 -init__Q34Game8UmiMushi10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x8038196C -exec__Q34Game8UmiMushi10StateFlickFPQ24Game9EnemyBase=0x80381ACC -__ct__Q34Game8UmiMushi11StateAttackFi=0x80381C5C -init__Q34Game8UmiMushi11StateAttackFPQ24Game9EnemyBasePQ24Game8StateArg=0x80381C98 -exec__Q34Game8UmiMushi11StateAttackFPQ24Game9EnemyBase=0x80381DB0 -__ct__Q34Game8UmiMushi8StateEatFi=0x803822D0 -init__Q34Game8UmiMushi8StateEatFPQ24Game9EnemyBasePQ24Game8StateArg=0x8038230C -exec__Q34Game8UmiMushi8StateEatFPQ24Game9EnemyBase=0x8038234C -__ct__Q34Game8UmiMushi9StateDeadFi=0x80382404 -init__Q34Game8UmiMushi9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80382440 -exec__Q34Game8UmiMushi9StateDeadFPQ24Game9EnemyBase=0x803824C8 -__ct__Q34Game8UmiMushi9StateLostFi=0x80382580 -init__Q34Game8UmiMushi9StateLostFPQ24Game9EnemyBasePQ24Game8StateArg=0x803825BC -exec__Q34Game8UmiMushi9StateLostFPQ24Game9EnemyBase=0x80382610 -__sinit_umiMushiState_cpp=0x803826A0 -setAnimMgr__Q34Game8UmiMushi14ProperAnimatorFPQ28SysShape7AnimMgr=0x803826C8 -getAnimator__Q34Game8UmiMushi14ProperAnimatorFi=0x803826D0 -__dt__Q34Game8UmiMushi14ProperAnimatorFv=0x803826D8 -getAnimator__Q34Game8UmiMushi14ProperAnimatorFv=0x80382734 -__ct__Q34Game8UmiMushi3MgrFiUc=0x8038273C -doAlloc__Q34Game8UmiMushi3MgrFv=0x8038278C -__ct__Q34Game8UmiMushi5ParmsFv=0x803827D4 -__ct__Q44Game8UmiMushi5Parms11ProperParmsFv=0x80382878 -birth__Q34Game8UmiMushi3MgrFRQ24Game13EnemyBirthArg=0x80382BD8 -loadModelData__Q34Game8UmiMushi3MgrFv=0x80382BF8 -loadTexData__Q34Game8UmiMushi3MgrFv=0x80382C60 -createModel__Q34Game8UmiMushi3MgrFv=0x80382D1C -createObj__Q34Game8UmiMushi3MgrFi=0x80382D98 -__dt__Q34Game8UmiMushi3ObjFv=0x80382EF8 -__dt__Q34Game8UmiMushi3MgrFv=0x80382FB4 -doLoadBmd__Q34Game8UmiMushi3MgrFPv=0x80383064 -getEnemyTypeID__Q34Game8UmiMushi3MgrFv=0x80383090 -getEnemy__Q34Game8UmiMushi3MgrFi=0x80383098 -read__Q34Game8UmiMushi5ParmsFR6Stream=0x803830A8 -@4@__dt__Q34Game8UmiMushi3MgrFv=0x803830F8 -eyeScaleCallBack__Q24Game8UmiMushiFP8J3DJointi=0x80383100 -weakScaleCallBack__Q24Game8UmiMushiFP8J3DJointi=0x80383138 -setParameters__Q34Game8UmiMushi3ObjFv=0x80383170 -getBodyRadius__Q34Game8UmiMushi3ObjFv=0x80383224 -birth__Q34Game8UmiMushi3ObjFR10Vector3f=0x80383254 -onInit__Q34Game8UmiMushi3ObjFPQ24Game15CreatureInitArg=0x80383274 -__ct__Q34Game8UmiMushi3ObjFv=0x8038381C -setFSM__Q34Game8UmiMushi3ObjFPQ34Game8UmiMushi3FSM=0x80383C44 -doUpdate__Q34Game8UmiMushi3ObjFv=0x80383C90 -doAnimationCullingOff__Q34Game8UmiMushi3ObjFv=0x80383D20 -doAnimationCullingOn__Q34Game8UmiMushi3ObjFv=0x803841D0 -doDirectDraw__Q34Game8UmiMushi3ObjFR8Graphics=0x80384204 -doDebugDraw__Q34Game8UmiMushi3ObjFR8Graphics=0x80384208 -changeMaterial__Q34Game8UmiMushi3ObjFv=0x80384228 -doStartMovie__Q34Game8UmiMushi3ObjFv=0x803842C0 -doEndMovie__Q34Game8UmiMushi3ObjFv=0x8038439C -getShadowParam__Q34Game8UmiMushi3ObjFRQ24Game11ShadowParam=0x80384478 -doSimulation__Q34Game8UmiMushi3ObjFf=0x80384508 -damageCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart=0x80384548 -pressCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart=0x803846AC -hipdropCallBack__Q34Game8UmiMushi3ObjFPQ24Game8CreaturefP8CollPart=0x80384768 -earthquakeCallBack__Q34Game8UmiMushi3ObjFPQ24Game8Creaturef=0x80384824 -collisionCallback__Q34Game8UmiMushi3ObjFRQ24Game9CollEvent=0x803848D0 -initMouthSlots__Q34Game8UmiMushi3ObjFv=0x803848F0 -doStartStoneState__Q34Game8UmiMushi3ObjFv=0x80384A20 -doFinishStoneState__Q34Game8UmiMushi3ObjFv=0x80384AB4 -startCarcassMotion__Q34Game8UmiMushi3ObjFv=0x80384B70 -doGetLifeGaugeParam__Q34Game8UmiMushi3ObjFRQ24Game14LifeGaugeParam=0x80384B98 -isReachToGoal__Q34Game8UmiMushi3ObjFf=0x80384BE4 -walkFunc__Q34Game8UmiMushi3ObjFv=0x80384C40 -setNextGoal__Q34Game8UmiMushi3ObjFv=0x80384F98 -changeColor__Q34Game8UmiMushi3ObjFv=0x803850E8 -resetColor__Q34Game8UmiMushi3ObjFv=0x803858F8 -turnFunc__Q34Game8UmiMushi3ObjFv=0x80385AB8 -resetWalkParm__Q34Game8UmiMushi3ObjFv=0x80385C74 -isChangeNavi__Q34Game8UmiMushi3ObjFv=0x80385C88 -isFindTarget__Q34Game8UmiMushi3ObjFv=0x80385ED0 -isAttackStart__Q34Game8UmiMushi3ObjFv=0x803860A8 -isNeedTurn__Q34Game8UmiMushi3ObjFv=0x803862E8 -isOutOfTerritory__Q34Game8UmiMushi3ObjFf=0x8038649C -canMove__Q34Game8UmiMushi3ObjFv=0x803864F8 -outMove__Q34Game8UmiMushi3ObjFv=0x80386624 -setFindAnim__Q34Game8UmiMushi3ObjFv=0x80386AB4 -fadeAllEffect__Q34Game8UmiMushi3ObjFv=0x80386B34 -fadeColorEffect__Q34Game8UmiMushi3ObjFv=0x80386B78 -createColorEffect__Q34Game8UmiMushi3ObjFv=0x80386C20 -attackEffect__Q34Game8UmiMushi3ObjFv=0x80386D2C -meltEffect__Q34Game8UmiMushi3ObjFv=0x80386DEC -flickEffect__Q34Game8UmiMushi3ObjFv=0x80386EAC -eatEffect__Q34Game8UmiMushi3ObjFv=0x80386FB8 -bubbleEffect__Q34Game8UmiMushi3ObjFv=0x80387028 -delShadow__Q34Game8UmiMushi3ObjFv=0x80387098 -eyeScaleMtxCalc__Q34Game8UmiMushi3ObjFv=0x803870C0 -weakScaleMtxCalc__Q34Game8UmiMushi3ObjFv=0x80387388 -__dt__Q23efx11TUmiDeadawaFv=0x8038750C -__dt__Q23efx7TUmiEatFv=0x803875A8 -setInitialSetting__Q34Game8UmiMushi3ObjFPQ24Game21EnemyInitialParamBase=0x80387644 -applyImpulse__Q34Game8UmiMushi3ObjFR10Vector3R10Vector3=0x80387648 -getDamageCoeStoneState__Q34Game8UmiMushi3ObjFv=0x8038764C -eatWhitePikminCallBack__Q34Game8UmiMushi3ObjFPQ24Game8Creaturef=0x80387658 -getEnemyTypeID__Q34Game8UmiMushi3ObjFv=0x80387680 -getMouthSlots__Q34Game8UmiMushi3ObjFv=0x80387688 -@932@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x80387690 -@932@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x803876A4 -@932@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x803876B8 -@932@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x803876CC -@932@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x803876E0 -@932@12@viewGetShape__Q24Game9EnemyBaseFv=0x803876F4 -@4@__dt__Q23efx7TUmiEatFv=0x80387708 -@4@__dt__Q23efx11TUmiDeadawaFv=0x80387710 -init__Q34Game11ShijimiChou3FSMFPQ24Game9EnemyBase=0x80387718 -__ct__Q34Game11ShijimiChou9StateWaitFi=0x80387820 -init__Q34Game11ShijimiChou9StateWaitFPQ24Game9EnemyBasePQ24Game8StateArg=0x8038785C -exec__Q34Game11ShijimiChou9StateWaitFPQ24Game9EnemyBase=0x8038791C -__ct__Q34Game11ShijimiChou8StateFlyFi=0x80387A5C -init__Q34Game11ShijimiChou8StateFlyFPQ24Game9EnemyBasePQ24Game8StateArg=0x80387A98 -exec__Q34Game11ShijimiChou8StateFlyFPQ24Game9EnemyBase=0x80387AEC -__ct__Q34Game11ShijimiChou9StateFallFi=0x80387BD4 -init__Q34Game11ShijimiChou9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x80387C10 -exec__Q34Game11ShijimiChou9StateFallFPQ24Game9EnemyBase=0x80387CE0 -__ct__Q34Game11ShijimiChou9StateDeadFi=0x80387D74 -init__Q34Game11ShijimiChou9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x80387DB0 -exec__Q34Game11ShijimiChou9StateDeadFPQ24Game9EnemyBase=0x80387E50 -__ct__Q34Game11ShijimiChou10StateLeaveFi=0x80387F64 -init__Q34Game11ShijimiChou10StateLeaveFPQ24Game9EnemyBasePQ24Game8StateArg=0x80387FA0 -exec__Q34Game11ShijimiChou10StateLeaveFPQ24Game9EnemyBase=0x80387FE4 -__ct__Q34Game11ShijimiChou9StateRestFi=0x80388008 -init__Q34Game11ShijimiChou9StateRestFPQ24Game9EnemyBasePQ24Game8StateArg=0x80388044 -exec__Q34Game11ShijimiChou9StateRestFPQ24Game9EnemyBase=0x80388100 -setAnimMgr__Q34Game11ShijimiChou14ProperAnimatorFPQ28SysShape7AnimMgr=0x8038844C -getAnimator__Q34Game11ShijimiChou14ProperAnimatorFi=0x80388454 -__dt__Q34Game11ShijimiChou14ProperAnimatorFv=0x8038845C -getAnimator__Q34Game11ShijimiChou14ProperAnimatorFv=0x803884B8 -__ct__Q34Game11ShijimiChou3MgrFiUc=0x803884C0 -doAlloc__Q34Game11ShijimiChou3MgrFv=0x8038851C -getEnemy__Q34Game11ShijimiChou3MgrFi=0x8038866C -__ct__Q34Game11ShijimiChou5ParmsFv=0x8038867C -__ct__Q44Game11ShijimiChou5Parms11ProperParmsFv=0x8038872C -loadModelData__Q34Game11ShijimiChou3MgrFv=0x80388964 -createModel__Q34Game11ShijimiChou3MgrFv=0x8038899C -birth__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArg=0x80388AD4 -doAnimation__Q34Game11ShijimiChou3MgrFv=0x80388B9C -fetch__Q34Game11ShijimiChou3MgrFP8J3DModelf=0x80388BEC -createGroup__Q34Game11ShijimiChou3MgrFPQ34Game11ShijimiChou3Obji=0x80388C44 -createGroupByBigFoot__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgi=0x80389100 -createGroupByPlants__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgi=0x803891B8 -createGroupByEnemy__Q34Game11ShijimiChou3MgrFRQ24Game13EnemyBirthArgPQ24Game9EnemyBaseib=0x80389270 -__dt__Q34Game11ShijimiChou3MgrFv=0x80389408 -getEnemyTypeID__Q34Game11ShijimiChou3MgrFv=0x803894B8 -createObj__Q34Game11ShijimiChou3MgrFi=0x803894C0 -__dt__Q34Game11ShijimiChou3ObjFv=0x80389520 -read__Q34Game11ShijimiChou5ParmsFR6Stream=0x803895DC -@4@__dt__Q34Game11ShijimiChou3MgrFv=0x8038962C -setParameters__Q34Game11ShijimiChou3ObjFv=0x80389634 -birth__Q34Game11ShijimiChou3ObjFR10Vector3f=0x803896D8 -onInit__Q34Game11ShijimiChou3ObjFPQ24Game15CreatureInitArg=0x803896F8 -__ct__Q34Game11ShijimiChou3ObjFv=0x80389944 -setFSM__Q34Game11ShijimiChou3ObjFPQ34Game11ShijimiChou3FSM=0x80389B94 -doUpdate__Q34Game11ShijimiChou3ObjFv=0x80389BE0 -doDirectDraw__Q34Game11ShijimiChou3ObjFR8Graphics=0x80389C8C -doDebugDraw__Q34Game11ShijimiChou3ObjFR8Graphics=0x80389C90 -doAnimation__Q34Game11ShijimiChou3ObjFv=0x80389CB0 -doEntry__Q34Game11ShijimiChou3ObjFv=0x80389CD0 -doAnimationCullingOff__Q34Game11ShijimiChou3ObjFv=0x80389D1C -doAnimationCullingOn__Q34Game11ShijimiChou3ObjFv=0x80389EBC -onKill__Q34Game11ShijimiChou3ObjFPQ24Game15CreatureKillArg=0x80389F74 -doSimulation__Q34Game11ShijimiChou3ObjFf=0x80389FF8 -changeMaterial__Q34Game11ShijimiChou3ObjFv=0x8038A430 -doStartMovie__Q34Game11ShijimiChou3ObjFv=0x8038A69C -doEndMovie__Q34Game11ShijimiChou3ObjFv=0x8038A6CC -doStartStoneState__Q34Game11ShijimiChou3ObjFv=0x8038A6FC -damageCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart=0x8038A730 -wallCallback__Q34Game11ShijimiChou3ObjFRCQ24Game8MoveInfo=0x8038A738 -collisionCallback__Q34Game11ShijimiChou3ObjFRQ24Game9CollEvent=0x8038A7CC -startCarcassMotion__Q34Game11ShijimiChou3ObjFv=0x8038A830 -getShadowParam__Q34Game11ShijimiChou3ObjFRQ24Game11ShadowParam=0x8038A858 -genItem__Q34Game11ShijimiChou3ObjFv=0x8038A97C -checkFlyStart__Q34Game11ShijimiChou3ObjFv=0x8038ABB8 -fly__Q34Game11ShijimiChou3ObjFv=0x8038AC38 -restFly__Q34Game11ShijimiChou3ObjFv=0x8038AFF4 -restCheck__Q34Game11ShijimiChou3ObjFv=0x8038B0FC -checkRestOn__Q34Game11ShijimiChou3ObjFv=0x8038B1B0 -checkRestOff__Q34Game11ShijimiChou3ObjFv=0x8038B520 -resetRestPos__Q34Game11ShijimiChou3ObjFv=0x8038B7CC -leave__Q34Game11ShijimiChou3ObjFv=0x8038B8C8 -leaveInit__Q34Game11ShijimiChou3ObjFv=0x8038BA3C -setNextGoal__Q34Game11ShijimiChou3ObjFv=0x8038BBE8 -setTraceGoal__Q34Game11ShijimiChou3ObjFv=0x8038BDF8 -isFallEnd__Q34Game11ShijimiChou3ObjFv=0x8038BEF8 -deadEffect__Q34Game11ShijimiChou3ObjFv=0x8038BF58 -fallBehavior__Q34Game11ShijimiChou3ObjFv=0x8038BF80 -updateCluster__Q34Game11ShijimiChou3ObjFv=0x8038C144 -getFlyType__Q34Game11ShijimiChou3ObjFv=0x8038C1F4 -leaderInit__Q34Game11ShijimiChou3ObjFv=0x8038C214 -createAppearEffect__Q34Game11ShijimiChou3ObjFv=0x8038C280 -fadeAppearEffect__Q34Game11ShijimiChou3ObjFv=0x8038C328 -getName__Q23efx7ArgChouFv=0x8038C358 -setInitialSetting__Q34Game11ShijimiChou3ObjFPQ24Game21EnemyInitialParamBase=0x8038C360 -ignoreAtari__Q34Game11ShijimiChou3ObjFPQ24Game8Creature=0x8038C364 -pressCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart=0x8038C3EC -hipdropCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8CreaturefP8CollPart=0x8038C3F4 -earthquakeCallBack__Q34Game11ShijimiChou3ObjFPQ24Game8Creaturef=0x8038C3FC -getEnemyTypeID__Q34Game11ShijimiChou3ObjFv=0x8038C404 -__sinit_shijimiChou_cpp=0x8038C40C -@828@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x8038C410 -@828@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x8038C424 -@828@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x8038C438 -@828@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x8038C44C -@828@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x8038C460 -@828@12@viewGetShape__Q24Game9EnemyBaseFv=0x8038C474 -__ct__Q38Morimura14TChallengePiki7posInfoFv=0x8038C488 -update__Q28Morimura14TChallengePikiFv=0x8038C48C -update__Q28Morimura15TChallengePanelFib=0x8038C8F8 -__ct__Q28Morimura16TChallengeScreenFP10JKRArchivei=0x8038CCC8 -create__Q28Morimura16TChallengeScreenFPCcUl=0x8038CD68 -createAnimPane__Q28Morimura16TChallengeScreenFPc=0x8038D128 -update__Q28Morimura16TChallengeScreenFv=0x8038D200 -updateBckPane__Q28Morimura16TChallengeScreenFv=0x8038D38C -isRandAnimStart__Q28Morimura16TChallengeScreenFv=0x8038D43C -__ct__Q28Morimura24TChallengePlayModeScreenFP10JKRArchivei=0x8038D45C -create__Q28Morimura24TChallengePlayModeScreenFPCcUl=0x8038D584 -update__Q28Morimura24TChallengePlayModeScreenFv=0x8038DB1C -draw__Q28Morimura24TChallengePlayModeScreenFR8GraphicsP13J2DPerspGraph=0x8038E318 -create__Q28Morimura33TChallengeSelectExplanationWindowFPCcUl=0x8038E978 -screenScaleUp__Q28Morimura33TChallengeSelectExplanationWindowFv=0x8038E9B4 -__ct__Q28Morimura16TChallengeSelectFv=0x8038E9B8 -__dt__Q28Morimura16TChallengeSelectFv=0x8038EAF4 -doCreate__Q28Morimura16TChallengeSelectFP10JKRArchive=0x8038EBE8 -doUpdate__Q28Morimura16TChallengeSelectFv=0x80390780 -doDraw__Q28Morimura16TChallengeSelectFR8Graphics=0x80391C4C -doUpdateFadeoutFinish__Q28Morimura16TChallengeSelectFv=0x80392160 -setInfo__Q28Morimura16TChallengeSelectFi=0x803921D8 -setStageName__Q28Morimura16TChallengeSelectFi=0x803925D0 -getState__Q28Morimura16TChallengeSelectFi=0x803926A0 -getAfterState__Q28Morimura16TChallengeSelectFi=0x803927CC -isChangeState__Q28Morimura16TChallengeSelectFi=0x80392870 -getIndexMax__Q28Morimura16TChallengeSelectFv=0x80392954 -openWindow__Q28Morimura16TChallengeSelectFv=0x80392B20 -closeWindow__Q28Morimura16TChallengeSelectFv=0x80392B44 -reset__Q28Morimura16TChallengeSelectFv=0x80392B68 -demoStart__Q28Morimura16TChallengeSelectFv=0x80392CA8 -doCreateObj__Q28Morimura21TChallengeSelectSceneFP10JKRArchive=0x80393168 -doStart__Q28Morimura21TChallengeSelectSceneFPQ26Screen13StartSceneArg=0x80393204 -getResName__Q28Morimura21TChallengeSelectSceneCFv=0x80393238 -getSceneType__Q28Morimura21TChallengeSelectSceneFv=0x80393244 -getOwnerID__Q28Morimura21TChallengeSelectSceneFv=0x8039324C -getMemberID__Q28Morimura21TChallengeSelectSceneFv=0x80393258 -__dt__Q25efx2d11T2DChalDiveFv=0x8039326C -getDispMemberBase__Q28Morimura16TChallengeSelectFv=0x803932F0 -__sinit_challengeSelect2D_cpp=0x80393324 -@24@__dt__Q28Morimura16TChallengeSelectFv=0x80393338 -@8@__dt__Q25efx2d11T2DChalDiveFv=0x80393340 -create__Q28Morimura22TChallengeResultScreenFPCcUl=0x80393348 -createAnimPane__Q28Morimura22TChallengeResultScreenFPc=0x80393368 -updateBckPane__Q28Morimura22TChallengeResultScreenFv=0x80393480 -create__Q28Morimura26TChallengeResultDemoScreenFPCcUl=0x803934D4 -update__Q28Morimura26TChallengeResultDemoScreenFv=0x803935CC -draw__Q28Morimura26TChallengeResultDemoScreenFR8GraphicsP13J2DPerspGraph=0x803936B0 -setPane__Q28Morimura9TMovePaneFP7J2DPane=0x803936DC -update__Q28Morimura9TMovePaneFv=0x80393758 -move__Q28Morimura9TMovePaneFv=0x80393854 -turn__Q28Morimura9TMovePaneFv=0x803939C0 -getAngDist__Q28Morimura9TMovePaneFv=0x80393A4C -hosei__Q28Morimura9TMovePaneFv=0x80393AC8 -rolling__Q28Morimura9TMovePaneFv=0x80393CCC -stick__Q28Morimura9TMovePaneFv=0x80393CFC -isReachToGoal__Q28Morimura9TMovePaneFv=0x80393E28 -reset__Q28Morimura9TMovePaneFv=0x80393E5C -setTCounterRV__8MorimuraFPQ29P2DScreen3MgrUxUxUxPUlUsUsP10JKRArchive=0x80393F2C -__ct__Q28Morimura10TCounterRVFPPcUsUsP10JKRArchive=0x8039402C -update__Q28Morimura10TCounterRVFv=0x8039415C -setValue__Q28Morimura10TCounterRVFbb=0x80394238 -__ct__Q28Morimura16TChallengeResultFv=0x80394310 -__ct__Q38Morimura16TChallengeResult10VectorUnitFv=0x80394600 -__dt__Q28Morimura16TChallengeResultFv=0x80394604 -doCreate__Q28Morimura16TChallengeResultFP10JKRArchive=0x803946F8 -doUpdate__Q28Morimura16TChallengeResultFv=0x80395F4C -doDraw__Q28Morimura16TChallengeResultFR8Graphics=0x8039690C -doUpdateFadeoutFinish__Q28Morimura16TChallengeResultFv=0x80396A6C -setInfo__Q28Morimura16TChallengeResultFv=0x80396AC8 -updateDemo__Q28Morimura16TChallengeResultFv=0x803979A4 -changeAnimDemo__Q28Morimura16TChallengeResultFv=0x80398BF4 -startRankInDemo__Q28Morimura16TChallengeResultFv=0x80399134 -startDemo__Q28Morimura16TChallengeResultFv=0x80399354 -fadeEffect__Q28Morimura16TChallengeResultFv=0x803994D0 -doUserCallBackFunc__Q28Morimura21TChallengeResultSceneFPQ28Resource10MgrCommand=0x803995F0 -getResName__Q28Morimura21TChallengeResultSceneCFv=0x803996A0 -doCreateObj__Q28Morimura21TChallengeResultSceneFP10JKRArchive=0x803996A8 -getSceneType__Q28Morimura21TChallengeResultSceneFv=0x803996AC -getOwnerID__Q28Morimura21TChallengeResultSceneFv=0x803996B4 -getMemberID__Q28Morimura21TChallengeResultSceneFv=0x803996C0 -getDispMemberBase__Q28Morimura16TChallengeResultFv=0x803996D4 -__dt__Q25efx2d15T2DCavecompLoopFv=0x80399708 -__dt__Q28Morimura10TCounterRVFv=0x8039978C -@8@__dt__Q25efx2d15T2DCavecompLoopFv=0x8039981C -@24@__dt__Q28Morimura16TChallengeResultFv=0x80399824 -draw__Q28Morimura16TVsSelectIndPaneFv=0x8039982C -create__Q28Morimura26TVsSelectExplanationWindowFPCcUl=0x80399B40 -screenScaleUp__Q28Morimura26TVsSelectExplanationWindowFv=0x80399B7C -__ct__Q38Morimura7TVsPiki7posInfoFv=0x80399B80 -update__Q28Morimura7TVsPikiFi=0x80399B84 -draw__Q28Morimura7TVsPikiFv=0x80399E4C -posUpdate__Q28Morimura14TVsSelectOnyonFf=0x8039A0CC -getAngDist__Q28Morimura14TVsSelectOnyonFv=0x8039A3D4 -create__Q28Morimura15TVsSelectScreenFPCcUl=0x8039A450 -update__Q28Morimura17TVsSelectCBWinNumFv=0x8039A700 -setValue__Q28Morimura17TVsSelectCBWinNumFbb=0x8039A758 -__ct__Q28Morimura9TVsSelectFv=0x8039A7C0 -__dt__Q28Morimura9TVsSelectFv=0x8039AB60 -doCreate__Q28Morimura9TVsSelectFP10JKRArchive=0x8039AC6C -create__Q28Morimura19TVsSelectListScreenFPCcUl=0x8039D1C0 -doUpdate__Q28Morimura9TVsSelectFv=0x8039D1E0 -update__Q28Morimura19TVsSelectListScreenFv=0x8039E424 -doDraw__Q28Morimura9TVsSelectFR8Graphics=0x8039E454 -__as__10J2DPictureFRC10J2DPicture=0x8039EF44 -__as__7J2DPaneFRC7J2DPane=0x8039F118 -doUpdateFadeinFinish__Q28Morimura9TVsSelectFv=0x8039F334 -doUpdateFadeoutFinish__Q28Morimura9TVsSelectFv=0x8039F340 -paneInit__Q28Morimura9TVsSelectFv=0x8039F3EC -changePaneInfo__Q28Morimura9TVsSelectFv=0x8039F7B8 -getNameID__Q28Morimura9TVsSelectFi=0x8039F9F8 -getIdMax__Q28Morimura9TVsSelectFv=0x8039FA7C -getCourseID__Q28Morimura9TVsSelectFi=0x8039FA84 -doZoom__Q28Morimura9TVsSelectFv=0x8039FAC0 -doMoveOnyon__Q28Morimura9TVsSelectFv=0x8039FCB4 -doScreenEffect__Q28Morimura9TVsSelectFv=0x8039FD20 -onyonDemoInit__Q28Morimura9TVsSelectFv=0x8039FF34 -demoStart__Q28Morimura9TVsSelectFv=0x803A0430 -changeCourseTexture__Q28Morimura9TVsSelectFv=0x803A05F0 -changeIndirectTexture__Q28Morimura9TVsSelectFv=0x803A068C -setShortenIndex__Q28Morimura9TVsSelectFiib=0x803A075C -updateFacePicture__Q28Morimura9TVsSelectFv=0x803A0814 -changeFaceTexture__Q28Morimura9TVsSelectFv=0x803A0954 -changeOrimaTexture__Q28Morimura9TVsSelectFi=0x803A0B48 -changeLouieTexture__Q28Morimura9TVsSelectFi=0x803A0BE4 -changeSlotPage__Q28Morimura9TVsSelectFv=0x803A0C80 -doCreateObj__Q28Morimura14TVsSelectSceneFP10JKRArchive=0x803A0D98 -doStart__Q28Morimura14TVsSelectSceneFPQ26Screen13StartSceneArg=0x803A0E34 -getResName__Q28Morimura14TVsSelectSceneCFv=0x803A0E68 -getSceneType__Q28Morimura14TVsSelectSceneFv=0x803A0E74 -getOwnerID__Q28Morimura14TVsSelectSceneFv=0x803A0E7C -getMemberID__Q28Morimura14TVsSelectSceneFv=0x803A0E88 -getDispMemberBase__Q28Morimura9TVsSelectFv=0x803A0E9C -__dt__Q28Morimura17TVsSelectCBWinNumFv=0x803A0ED0 -__dt__Q28Morimura16TVsSelectIndPaneFv=0x803A0F70 -__sinit_vsSelect2D_cpp=0x803A0FE0 -@24@__dt__Q28Morimura9TVsSelectFv=0x803A1024 -draw__Q28Morimura16TCallbackScissorFR8GraphicsR14J2DGrafContext=0x803A102C -__ct__Q28Morimura13TOffsetMsgSetFPUxUxi=0x803A10E4 -__ct__Q28Morimura13TOffsetMsgSetFPUxUxiPUxPi=0x803A11A4 -getMsgID__Q28Morimura13TOffsetMsgSetFi=0x803A120C -__ct__Q28Morimura11TScreenBaseFP10JKRArchivei=0x803A13A8 -create__Q28Morimura11TScreenBaseFPCcUl=0x803A13D0 -addAnim__Q28Morimura11TScreenBaseFPc=0x803A1460 -update__Q28Morimura11TScreenBaseFv=0x803A1510 -draw__Q28Morimura11TScreenBaseFR8GraphicsP13J2DPerspGraph=0x803A1598 -__ct__Q28Morimura8TIndPaneFPCcff=0x803A15D0 -createIndTexture__Q28Morimura8TIndPaneFPCc=0x803A16F4 -createCaptureTexture__Q28Morimura8TIndPaneF9_GXTexFmt=0x803A1798 -draw__Q28Morimura8TIndPaneFv=0x803A180C -setValue__Q28Morimura15TScaleUpCounterFbb=0x803A1B14 -forceScaleUp__Q28Morimura15TScaleUpCounterFb=0x803A1BBC -setScale__Q28Morimura15TScaleUpCounterFff=0x803A1C1C -setScaleUpCounter__8MorimuraFPQ29P2DScreen3MgrUxPUlUsP10JKRArchive=0x803A1C5C -setScaleUpCounter2__8MorimuraFPQ29P2DScreen3MgrUxUxPUlUsP10JKRArchive=0x803A1E00 -drawSelf__Q28Morimura12TScissorPaneFffPA3_A4_f=0x803A1F2C -__dt__Q28Morimura12TScissorPaneFv=0x803A1FE4 -__dt__Q28Morimura15TScaleUpCounterFv=0x803A2044 -__dt__Q28Morimura16TCallbackScissorFv=0x803A20D4 -__ct__Q28Morimura11TIndexGroupFv=0x803A2154 -upIndex__Q28Morimura11TIndexGroupFv=0x803A21A0 -downIndex__Q28Morimura11TIndexGroupFv=0x803A220C -rollSpUp__Q28Morimura11TIndexGroupFv=0x803A2278 -update__Q28Morimura10TIndexPaneFv=0x803A22A8 -createIconInfo__Q28Morimura10TIndexPaneFii=0x803A2344 -setIndex__Q28Morimura10TIndexPaneFi=0x803A23D8 -getIndex__Q28Morimura10TIndexPaneFv=0x803A25BC -getListIndex__Q28Morimura10TIndexPaneFv=0x803A2614 -doIconOffsetY__Q28Morimura10TIndexPaneFv=0x803A261C -__ct__Q28Morimura9TIconInfoFv=0x803A2710 -init__Q28Morimura9TIconInfoFPQ28Morimura15TScaleUpCounterP7J2DPaneP7J2DPane=0x803A2778 -update__Q28Morimura9TIconInfoFf=0x803A2848 -setInfo__Q28Morimura9TIconInfoFiPC7ResTIMG=0x803A29E0 -startScaleUp__Q28Morimura9TIconInfoFf=0x803A2B94 -create__Q28Morimura11TListScreenFPCcUl=0x803A2BD4 -__ct__Q28Morimura11TScrollListFPc=0x803A2CB8 -updateIndex__Q28Morimura11TScrollListFb=0x803A2D48 -getUpdateIndex__Q28Morimura11TScrollListFRib=0x803A3170 -updateList__Q28Morimura11TScrollListFv=0x803A324C -changeIndex__Q28Morimura11TScrollListFv=0x803A35DC -@24@__dt__Q28Morimura11TScrollListFv=0x803A363C -__ct__Q28Morimura17TConfirmEndWindowFPCc=0x803A3644 -doStart__Q28Morimura17TConfirmEndWindowFPCQ26Screen13StartSceneArg=0x803A3694 -doUpdateFadeinFinish__Q28Morimura17TConfirmEndWindowFv=0x803A36D4 -doUpdateFadein__Q28Morimura17TConfirmEndWindowFv=0x803A3728 -doUpdateFadeoutFinish__Q28Morimura17TConfirmEndWindowFv=0x803A3748 -doUpdateFadeout__Q28Morimura17TConfirmEndWindowFv=0x803A3788 -doDraw__Q28Morimura17TConfirmEndWindowFR8Graphics=0x803A37B0 -setRetireMsg__Q28Morimura17TConfirmEndWindowFUx=0x803A37E8 -__ct__Q28Morimura24TSelectExplanationWindowFP10JKRArchivei=0x803A380C -update__Q28Morimura24TSelectExplanationWindowFv=0x803A3880 -draw__Q28Morimura24TSelectExplanationWindowFR8GraphicsP13J2DPerspGraph=0x803A3A14 -openWindow__Q28Morimura24TSelectExplanationWindowFv=0x803A3A40 -closeWindow__Q28Morimura24TSelectExplanationWindowFv=0x803A3A54 -__dt__Q28Morimura17TConfirmEndWindowFv=0x803A3A68 -@24@__dt__Q28Morimura17TConfirmEndWindowFv=0x803A3AE8 -init__Q34Game8BlackMan3FSMFPQ24Game9EnemyBase=0x803A3AF0 -__ct__Q34Game8BlackMan9StateWalkFi=0x803A3C64 -init__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A3CA0 -exec__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBase=0x803A3D20 -cleanup__Q34Game8BlackMan9StateWalkFPQ24Game9EnemyBase=0x803A3EF4 -__ct__Q34Game8BlackMan9StateDeadFi=0x803A3F18 -init__Q34Game8BlackMan9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A3F54 -exec__Q34Game8BlackMan9StateDeadFPQ24Game9EnemyBase=0x803A3FB8 -__ct__Q34Game8BlackMan11StateFreezeFi=0x803A40B4 -init__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A40F0 -exec__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBase=0x803A4180 -cleanup__Q34Game8BlackMan11StateFreezeFPQ24Game9EnemyBase=0x803A4474 -__ct__Q34Game8BlackMan9StateBendFi=0x803A4498 -init__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A44D4 -exec__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBase=0x803A4548 -cleanup__Q34Game8BlackMan9StateBendFPQ24Game9EnemyBase=0x803A4730 -__ct__Q34Game8BlackMan11StateEscapeFi=0x803A4754 -init__Q34Game8BlackMan11StateEscapeFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A4790 -exec__Q34Game8BlackMan11StateEscapeFPQ24Game9EnemyBase=0x803A4840 -__ct__Q34Game8BlackMan9StateFallFi=0x803A4AF4 -init__Q34Game8BlackMan9StateFallFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A4B30 -exec__Q34Game8BlackMan9StateFallFPQ24Game9EnemyBase=0x803A4B7C -__ct__Q34Game8BlackMan12StateRecoverFi=0x803A4CF4 -init__Q34Game8BlackMan12StateRecoverFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A4D30 -exec__Q34Game8BlackMan12StateRecoverFPQ24Game9EnemyBase=0x803A4DF8 -__ct__Q34Game8BlackMan10StateFlickFi=0x803A4F64 -init__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A4FA0 -exec__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBase=0x803A50F8 -cleanup__Q34Game8BlackMan10StateFlickFPQ24Game9EnemyBase=0x803A51B0 -__ct__Q34Game8BlackMan10StateTiredFi=0x803A51D4 -init__Q34Game8BlackMan10StateTiredFPQ24Game9EnemyBasePQ24Game8StateArg=0x803A5210 -exec__Q34Game8BlackMan10StateTiredFPQ24Game9EnemyBase=0x803A526C -__sinit_blackManState_cpp=0x803A532C -setAnimMgr__Q34Game8BlackMan14ProperAnimatorFPQ28SysShape7AnimMgr=0x803A5354 -getAnimator__Q34Game8BlackMan14ProperAnimatorFi=0x803A535C -__dt__Q34Game8BlackMan14ProperAnimatorFv=0x803A5364 -getAnimator__Q34Game8BlackMan14ProperAnimatorFv=0x803A53C0 -__ct__Q34Game8BlackMan3MgrFiUc=0x803A53C8 -doAlloc__Q34Game8BlackMan3MgrFv=0x803A5418 -__ct__Q34Game8BlackMan5ParmsFv=0x803A5460 -__ct__Q44Game8BlackMan5Parms11ProperParmsFv=0x803A554C -birth__Q34Game8BlackMan3MgrFRQ24Game13EnemyBirthArg=0x803A58B4 -loadModelData__Q34Game8BlackMan3MgrFv=0x803A58D4 -loadTexData__Q34Game8BlackMan3MgrFv=0x803A5968 -doLoadBmd__Q34Game8BlackMan3MgrFPv=0x803A5A24 -createModel__Q34Game8BlackMan3MgrFv=0x803A5A50 -__dt__Q34Game8BlackMan3MgrFv=0x803A5B74 -getEnemyTypeID__Q34Game8BlackMan3MgrFv=0x803A5C24 -createObj__Q34Game8BlackMan3MgrFi=0x803A5C2C -__dt__Q34Game8BlackMan3ObjFv=0x803A5C8C -getEnemy__Q34Game8BlackMan3MgrFi=0x803A5D48 -read__Q34Game8BlackMan5ParmsFR6Stream=0x803A5D58 -@4@__dt__Q34Game8BlackMan3MgrFv=0x803A5DA8 -lHandCallBack__Q24Game8BlackManFP8J3DJointi=0x803A5DB0 -rHandCallBack__Q24Game8BlackManFP8J3DJointi=0x803A5DEC -lFootCallBack__Q24Game8BlackManFP8J3DJointi=0x803A5E28 -rFootCallBack__Q24Game8BlackManFP8J3DJointi=0x803A5E64 -bodyCallBack__Q24Game8BlackManFP8J3DJointi=0x803A5EA0 -setParameters__Q34Game8BlackMan3ObjFv=0x803A5ED8 -birth__Q34Game8BlackMan3ObjFR10Vector3f=0x803A5FC8 -onInit__Q34Game8BlackMan3ObjFPQ24Game15CreatureInitArg=0x803A5FE8 -__ct__Q34Game8BlackMan3ObjFv=0x803A669C -setFSM__Q34Game8BlackMan3ObjFPQ34Game8BlackMan3FSM=0x803A6BFC -doUpdate__Q34Game8BlackMan3ObjFv=0x803A6C48 -doDirectDraw__Q34Game8BlackMan3ObjFR8Graphics=0x803A730C -doDebugDraw__Q34Game8BlackMan3ObjFR8Graphics=0x803A7310 -doSimulation__Q34Game8BlackMan3ObjFf=0x803A7330 -doAnimationCullingOff__Q34Game8BlackMan3ObjFv=0x803A74A4 -onKill__Q34Game8BlackMan3ObjFPQ24Game15CreatureKillArg=0x803A76DC -doStartStoneState__Q34Game8BlackMan3ObjFv=0x803A7718 -doFinishStoneState__Q34Game8BlackMan3ObjFv=0x803A77F4 -isUnderground__Q34Game8BlackMan3ObjFv=0x803A78B0 -doGetLifeGaugeParam__Q34Game8BlackMan3ObjFRQ24Game14LifeGaugeParam=0x803A7908 -collisionCallback__Q34Game8BlackMan3ObjFRQ24Game9CollEvent=0x803A79AC -damageCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreaturefP8CollPart=0x803A7B64 -hipdropCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreaturefP8CollPart=0x803A7CD0 -earthquakeCallBack__Q34Game8BlackMan3ObjFPQ24Game8Creaturef=0x803A7E04 -doEntry__Q34Game8BlackMan3ObjFv=0x803A7EE0 -changeMaterial__Q34Game8BlackMan3ObjFv=0x803A7F48 -getShadowParam__Q34Game8BlackMan3ObjFRQ24Game11ShadowParam=0x803A8264 -initWalkSmokeEffect__Q34Game8BlackMan3ObjFv=0x803A82B4 -getWalkSmokeEffectMgr__Q34Game8BlackMan3ObjFv=0x803A8318 -walkFunc__Q34Game8BlackMan3ObjFv=0x803A8334 -isReachToGoal__Q34Game8BlackMan3ObjFf=0x803A8B7C -findNextRoutePoint__Q34Game8BlackMan3ObjFv=0x803A8BB0 -findNextTraceRoutePoint__Q34Game8BlackMan3ObjFv=0x803A9A80 -isEndPathFinder__Q34Game8BlackMan3ObjFv=0x803A9B50 -setPathFinder__Q34Game8BlackMan3ObjFb=0x803A9C64 -releasePathFinder__Q34Game8BlackMan3ObjFv=0x803A9E3C -jointMtxCalc__Q34Game8BlackMan3ObjFi=0x803A9E80 -bodyMtxCalc__Q34Game8BlackMan3ObjFv=0x803AA410 -isTyreFreeze__Q34Game8BlackMan3ObjFv=0x803AA69C -isTyreDead__Q34Game8BlackMan3ObjFv=0x803AA6DC -isFallEnd__Q34Game8BlackMan3ObjFv=0x803AA778 -moveRestart__Q34Game8BlackMan3ObjFv=0x803AA7EC -escape__Q34Game8BlackMan3ObjFv=0x803AA9C0 -setTimer__Q34Game8BlackMan3ObjFf=0x803AA9C4 -getTimer__Q34Game8BlackMan3ObjFv=0x803AA9CC -collisionStOn__Q34Game8BlackMan3ObjFv=0x803AA9D4 -collisionStOff__Q34Game8BlackMan3ObjFv=0x803AAA74 -flick__Q34Game8BlackMan3ObjFv=0x803AAB0C -recover__Q34Game8BlackMan3ObjFv=0x803AAB58 -recoverFlick__Q34Game8BlackMan3ObjFv=0x803AACA8 -tyreFlick__Q34Game8BlackMan3ObjFv=0x803AADA0 -deadEffect__Q34Game8BlackMan3ObjFv=0x803AADCC -deadTraceEffect__Q34Game8BlackMan3ObjFv=0x803AAE9C -tyreUpEffect__Q34Game8BlackMan3ObjFv=0x803AAED0 -tyreDownEffect__Q34Game8BlackMan3ObjFv=0x803AAF44 -bendEffect__Q34Game8BlackMan3ObjFv=0x803AAF94 -createTraceEffect__Q34Game8BlackMan3ObjFv=0x803AB028 -fadeTraceEffect__Q34Game8BlackMan3ObjFv=0x803AB084 -createFlickEffect__Q34Game8BlackMan3ObjFv=0x803AB0D4 -fadeFlickEffect__Q34Game8BlackMan3ObjFv=0x803AB12C -isFinalFloor__Q34Game8BlackMan3ObjFv=0x803AB17C -appearFanfare__Q34Game8BlackMan3ObjFv=0x803AB240 -getName__Q23efx11ArgPrmColorFv=0x803AB400 -__dt__Q23efx10TKageFlickFv=0x803AB40C -__dt__Q23efx11TKageTyreupFv=0x803AB4A8 -__dt__Q23efx10TKageDead1Fv=0x803AB544 -__dt__Q23efx8TKageRunFv=0x803AB5E0 -__dt__Q23efx9TKageMoveFv=0x803AB67C -setInitialSetting__Q34Game8BlackMan3ObjFPQ24Game21EnemyInitialParamBase=0x803AB718 -throwupItemInDeathProcedure__Q34Game8BlackMan3ObjFv=0x803AB71C -createEfxHamon__Q34Game8BlackMan3ObjFv=0x803AB720 -updateEfxHamon__Q34Game8BlackMan3ObjFv=0x803AB74C -bombCallBack__Q34Game8BlackMan3ObjFPQ24Game8CreatureR10Vector3f=0x803AB78C -getEnemyTypeID__Q34Game8BlackMan3ObjFv=0x803AB794 -__sinit_blackMan_cpp=0x803AB79C -@940@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x803AB7C4 -@940@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x803AB7D8 -@940@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x803AB7EC -@940@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x803AB800 -@940@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x803AB814 -@940@12@viewGetShape__Q24Game9EnemyBaseFv=0x803AB828 -@4@__dt__Q23efx9TKageMoveFv=0x803AB83C -@4@__dt__Q23efx8TKageRunFv=0x803AB844 -@4@__dt__Q23efx10TKageDead1Fv=0x803AB84C -@4@__dt__Q23efx11TKageTyreupFv=0x803AB854 -@4@__dt__Q23efx10TKageFlickFv=0x803AB85C -init__Q34Game4Tyre3FSMFPQ24Game9EnemyBase=0x803AB864 -__ct__Q34Game4Tyre9StateMoveFi=0x803AB924 -init__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBasePQ24Game8StateArg=0x803AB960 -exec__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBase=0x803AB9A8 -cleanup__Q34Game4Tyre9StateMoveFPQ24Game9EnemyBase=0x803ABA64 -__ct__Q34Game4Tyre9StateLandFi=0x803ABA88 -init__Q34Game4Tyre9StateLandFPQ24Game9EnemyBasePQ24Game8StateArg=0x803ABAC4 -exec__Q34Game4Tyre9StateLandFPQ24Game9EnemyBase=0x803ABB0C -__ct__Q34Game4Tyre11StateFreezeFi=0x803ABBC0 -init__Q34Game4Tyre11StateFreezeFPQ24Game9EnemyBasePQ24Game8StateArg=0x803ABBFC -exec__Q34Game4Tyre11StateFreezeFPQ24Game9EnemyBase=0x803ABC70 -__ct__Q34Game4Tyre9StateDeadFi=0x803ABD24 -init__Q34Game4Tyre9StateDeadFPQ24Game9EnemyBasePQ24Game8StateArg=0x803ABD60 -exec__Q34Game4Tyre9StateDeadFPQ24Game9EnemyBase=0x803ABDA8 -setAnimMgr__Q34Game4Tyre14ProperAnimatorFPQ28SysShape7AnimMgr=0x803ABDEC -getAnimator__Q34Game4Tyre14ProperAnimatorFi=0x803ABDF4 -__dt__Q34Game4Tyre14ProperAnimatorFv=0x803ABDFC -getAnimator__Q34Game4Tyre14ProperAnimatorFv=0x803ABE58 -__ct__Q34Game4Tyre3MgrFiUc=0x803ABE60 -doAlloc__Q34Game4Tyre3MgrFv=0x803ABEB0 -__ct__Q34Game4Tyre5ParmsFv=0x803ABEF8 -birth__Q34Game4Tyre3MgrFRQ24Game13EnemyBirthArg=0x803ABFD4 -loadModelData__Q34Game4Tyre3MgrFv=0x803ABFF4 -doLoadBmd__Q34Game4Tyre3MgrFPv=0x803AC088 -__dt__Q34Game4Tyre3MgrFv=0x803AC0B4 -getEnemyTypeID__Q34Game4Tyre3MgrFv=0x803AC164 -createObj__Q34Game4Tyre3MgrFi=0x803AC16C -__dt__Q34Game4Tyre3ObjFv=0x803AC1CC -getEnemy__Q34Game4Tyre3MgrFi=0x803AC288 -read__Q34Game4Tyre5ParmsFR6Stream=0x803AC298 -@4@__dt__Q34Game4Tyre3MgrFv=0x803AC2E8 -frontTyreCallBack__Q24Game4TyreFP8J3DJointi=0x803AC2F0 -rearTyreCallBack__Q24Game4TyreFP8J3DJointi=0x803AC328 -setParameters__Q34Game4Tyre3ObjFv=0x803AC360 -birth__Q34Game4Tyre3ObjFR10Vector3f=0x803AC380 -onInit__Q34Game4Tyre3ObjFPQ24Game15CreatureInitArg=0x803AC3A0 -__ct__Q34Game4Tyre3ObjFv=0x803AC52C -setFSM__Q34Game4Tyre3ObjFPQ34Game4Tyre3FSM=0x803AC8EC -doUpdate__Q34Game4Tyre3ObjFv=0x803AC938 -doAnimationCullingOff__Q34Game4Tyre3ObjFv=0x803AC984 -doDirectDraw__Q34Game4Tyre3ObjFR8Graphics=0x803ACA3C -doDebugDraw__Q34Game4Tyre3ObjFR8Graphics=0x803ACA40 -doSimulation__Q34Game4Tyre3ObjFf=0x803ACA60 -doGetLifeGaugeParam__Q34Game4Tyre3ObjFRQ24Game14LifeGaugeParam=0x803ACA80 -doStartStoneState__Q34Game4Tyre3ObjFv=0x803ACB00 -doFinishStoneState__Q34Game4Tyre3ObjFv=0x803ACC2C -collisionCallback__Q34Game4Tyre3ObjFRQ24Game9CollEvent=0x803ACD50 -damageCallBack__Q34Game4Tyre3ObjFPQ24Game8CreaturefP8CollPart=0x803AD288 -hipdropCallBack__Q34Game4Tyre3ObjFPQ24Game8CreaturefP8CollPart=0x803AD328 -earthquakeCallBack__Q34Game4Tyre3ObjFPQ24Game8Creaturef=0x803AD364 -inWaterCallback__Q34Game4Tyre3ObjFPQ24Game8WaterBox=0x803AD3BC -outWaterCallback__Q34Game4Tyre3ObjFv=0x803AD3F0 -getShadowParam__Q34Game4Tyre3ObjFRQ24Game11ShadowParam=0x803AD434 -needShadow__Q34Game4Tyre3ObjFv=0x803AD484 -isFreeze__Q34Game4Tyre3ObjFv=0x803AD4D0 -frontRollMtxCalc__Q34Game4Tyre3ObjFv=0x803AD520 -rearRollMtxCalc__Q34Game4Tyre3ObjFv=0x803AD7B8 -getEnemyTypeID__Q34Game4Tyre3ObjFv=0x803ADB44 -moveStart__Q34Game4Tyre3ObjFv=0x803ADB4C -collisionStOn__Q34Game4Tyre3ObjFv=0x803ADBD4 -collisionStOff__Q34Game4Tyre3ObjFv=0x803ADCBC -flick__Q34Game4Tyre3ObjFv=0x803ADDC4 -deadEffect__Q34Game4Tyre3ObjFv=0x803AE390 -createSmokeEffect__Q34Game4Tyre3ObjFv=0x803AE490 -fadeSmokeEffect__Q34Game4Tyre3ObjFv=0x803AE4F4 -landEffect__Q34Game4Tyre3ObjFR10Vector3=0x803AE544 -scaleUpShadow__Q34Game4Tyre3ObjFv=0x803AE72C -__dt__Q23efx14TKageTyresmokeFv=0x803AE758 -setInitialSetting__Q34Game4Tyre3ObjFPQ24Game21EnemyInitialParamBase=0x803AE7F4 -isUnderground__Q34Game4Tyre3ObjFv=0x803AE7F8 -bombCallBack__Q34Game4Tyre3ObjFPQ24Game8CreatureR10Vector3f=0x803AE800 -__sinit_tyre_cpp=0x803AE808 -@836@12@viewOnPelletKilled__Q24Game9EnemyBaseFv=0x803AE830 -@836@12@viewStartCarryMotion__Q24Game9EnemyBaseFv=0x803AE844 -@836@12@viewStartPreCarryMotion__Q24Game9EnemyBaseFv=0x803AE858 -@836@12@view_finish_carrymotion__Q24Game9EnemyBaseFv=0x803AE86C -@836@12@view_start_carrymotion__Q24Game9EnemyBaseFv=0x803AE880 -@836@12@viewGetShape__Q24Game9EnemyBaseFv=0x803AE894 -@4@__dt__Q23efx14TKageTyresmokeFv=0x803AE8A8 -executeAfter__Q23efx24TCallBack_StaticClippingFP14JPABaseEmitter=0x803AE8B0 -add__Q23efx11TOneEmitterFPQ23efx7Context=0x803AE8EC -executeAfter__Q23efx11TOneEmitterFP14JPABaseEmitter=0x803AE934 -create__Q23efx11TOneEmitterFPQ23efx3Arg=0x803AE9F4 -fade__Q23efx11TOneEmitterFv=0x803AEA9C -forceKill__Q23efx11TOneEmitterFv=0x803AEAF4 -add__Q23efx19TOneEmitterChasePosFPQ23efx15ContextChasePos=0x803AEB4C -del__Q23efx19TOneEmitterChasePosFPQ23efx15ContextChasePos=0x803AEB94 -create__Q23efx19TOneEmitterChasePosFPQ23efx3Arg=0x803AEBB8 -executeAfter__Q23efx19TOneEmitterChasePosFP14JPABaseEmitter=0x803AEC60 -fade__Q23efx19TOneEmitterChasePosFv=0x803AED0C -forceKill__Q23efx19TOneEmitterChasePosFv=0x803AED64 -create__Q23efx17TOneEmitterSimpleFPQ23efx3Arg=0x803AEDBC -executeAfter__Q23efx17TOneEmitterSimpleFP14JPABaseEmitter=0x803AEE78 -create__Q23efx8TSimple1FPQ23efx3Arg=0x803AEF84 -create__Q23efx8TSimple2FPQ23efx3Arg=0x803AF014 -create__Q23efx8TSimple3FPQ23efx3Arg=0x803AF0BC -create__Q23efx8TSimple4FPQ23efx3Arg=0x803AF164 -create__Q23efx8TSimple5FPQ23efx3Arg=0x803AF20C -create__Q23efx11TSimpleMtx1FPQ23efx3Arg=0x803AF2B4 -create__Q23efx11TSimpleMtx2FPQ23efx3Arg=0x803AF398 -create__Q23efx11TSimpleMtx3FPQ23efx3Arg=0x803AF4B4 -create__Q23efx11TSimpleMtx4FPQ23efx3Arg=0x803AF5D0 -create__Q23efx5TSyncFPQ23efx3Arg=0x803AF6EC -execute__Q23efx5TSyncFP14JPABaseEmitter=0x803AF7C8 -executeAfter__Q23efx5TSyncFP14JPABaseEmitter=0x803AF834 -forceKill__Q23efx5TSyncFv=0x803AF8C4 -fade__Q23efx5TSyncFv=0x803AF900 -doExecuteEmitterOperation__Q23efx9TChasePosFP14JPABaseEmitter=0x803AF970 -doExecuteEmitterOperation__Q23efx13TChasePosYRotFP14JPABaseEmitter=0x803AF9E8 -doExecuteEmitterOperation__Q23efx9TChaseMtxFP14JPABaseEmitter=0x803AFAC0 -doExecuteEmitterOperation__Q23efx10TChaseMtxTFP14JPABaseEmitter=0x803AFB2C -doExecuteEmitterOperation__Q23efx12TChasePosPosFP14JPABaseEmitter=0x803AFBA4 -makeMtxZAxisAlongPosPos__3efxFPA4_fR10Vector3R10Vector3=0x803AFC80 -doExecuteEmitterOperation__Q23efx23TChasePosPosLocalZScaleFP14JPABaseEmitter=0x803AFD78 -doExecuteEmitterOperation__Q23efx23TChasePosPosLocalYScaleFP14JPABaseEmitter=0x803AFEC4 -__ct__Q23efx9TForever2FUsUs=0x803B0010 -__ct__Q23efx8TForeverFv=0x803B00A8 -__ct__Q23efx9TForever3FUsUsUs=0x803B0100 -__ct__Q23efx9TForever4FUsUsUsUs=0x803B01A8 -__ct__Q23efx10TChasePos2FP10Vector3UsUs=0x803B0240 -__ct__Q23efx9TChasePosFv=0x803B02EC -setPosptr__Q23efx10TChasePos2FP10Vector3=0x803B0344 -__ct__Q23efx10TChasePos3FP10Vector3UsUsUs=0x803B0350 -__ct__Q23efx10TChasePos4FP10Vector3UsUsUsUs=0x803B03F0 -__ct__Q23efx10TChaseMtx2FPA4_fUsUs=0x803B049C -__ct__Q23efx9TChaseMtxFv=0x803B0548 -setMtxptr__Q23efx10TChaseMtx2FPA4_f=0x803B05A0 -__ct__Q23efx10TChaseMtx3FPA4_fUsUsUs=0x803B05AC -setMtxptr__Q23efx10TChaseMtx3FPA4_f=0x803B064C -__ct__Q23efx10TChaseMtx4FPA4_fUsUsUsUs=0x803B065C -setMtxptr__Q23efx10TChaseMtx4FPA4_f=0x803B0708 -__ct__Q23efx10TChaseMtx6FPA4_fUsUsUsUsUsUs=0x803B071C -setMtxptr__Q23efx10TChaseMtx6FPA4_f=0x803B07E0 -__ct__Q23efx11TChaseMtxT2FPA4_fUsUs=0x803B07FC -__ct__Q23efx10TChaseMtxTFv=0x803B08A8 -setMtxptr__Q23efx11TChaseMtxT2FPA4_f=0x803B0900 -__ct__Q23efx11TChaseMtxT4FPA4_fUsUsUsUs=0x803B090C -setMtxptr__Q23efx11TChaseMtxT4FPA4_f=0x803B09B8 -__ct__Q23efx14TChasePosYRot2FP10Vector3PfUsUs=0x803B09CC -__ct__Q23efx13TChasePosYRotFv=0x803B0A6C -__ct__Q23efx14TChasePosYRot3FP10Vector3PfUsUsUs=0x803B0AC4 -__ct__Q23efx23TChasePosPosLocalYScaleFv=0x803B0B74 -__ct__Q23efx24TChasePosPosLocalYScale3FP10Vector3P10Vector3fUsUsUs=0x803B0BCC -setPosptr__Q23efx24TChasePosPosLocalYScale3FP10Vector3P10Vector3=0x803B0C94 -__ct__Q23efx23TChasePosPosLocalZScaleFv=0x803B0CB0 -__ct__Q23efx24TChasePosPosLocalZScale3FP10Vector3P10Vector3fUsUsUs=0x803B0D08 -setPosptr__Q23efx24TChasePosPosLocalZScale3FP10Vector3P10Vector3=0x803B0DD0 -__dt__Q23efx19TOneEmitterChasePosFv=0x803B0DEC -startDemoDrawOff__Q23efx19TOneEmitterChasePosFv=0x803B0E78 -endDemoDrawOn__Q23efx19TOneEmitterChasePosFv=0x803B0E94 -__dt__Q23efx24TCallBack_StaticClippingFv=0x803B0EB0 -create__Q23efx29TSyncGroup6FPQ23efx3Arg=0x803B0F10 -fade__Q23efx29TSyncGroup6Fv=0x803B0F8C -forceKill__Q23efx29TSyncGroup6Fv=0x803B0FE4 -startDemoDrawOff__Q23efx29TSyncGroup6Fv=0x803B103C -endDemoDrawOn__Q23efx29TSyncGroup6Fv=0x803B1094 -create__Q23efx31TSyncGroup4FPQ23efx3Arg=0x803B10EC -fade__Q23efx31TSyncGroup4Fv=0x803B1168 -forceKill__Q23efx31TSyncGroup4Fv=0x803B11C0 -startDemoDrawOff__Q23efx31TSyncGroup4Fv=0x803B1218 -endDemoDrawOn__Q23efx31TSyncGroup4Fv=0x803B1270 -create__Q23efx29TSyncGroup4FPQ23efx3Arg=0x803B12C8 -fade__Q23efx29TSyncGroup4Fv=0x803B1344 -forceKill__Q23efx29TSyncGroup4Fv=0x803B139C -startDemoDrawOff__Q23efx29TSyncGroup4Fv=0x803B13F4 -endDemoDrawOn__Q23efx29TSyncGroup4Fv=0x803B144C -create__Q23efx29TSyncGroup4FPQ23efx3Arg=0x803B14A4 -fade__Q23efx29TSyncGroup4Fv=0x803B1520 -forceKill__Q23efx29TSyncGroup4Fv=0x803B1578 -startDemoDrawOff__Q23efx29TSyncGroup4Fv=0x803B15D0 -endDemoDrawOn__Q23efx29TSyncGroup4Fv=0x803B1628 -create__Q23efx28TSyncGroup4FPQ23efx3Arg=0x803B1680 -fade__Q23efx28TSyncGroup4Fv=0x803B16FC -forceKill__Q23efx28TSyncGroup4Fv=0x803B1754 -startDemoDrawOff__Q23efx28TSyncGroup4Fv=0x803B17AC -endDemoDrawOn__Q23efx28TSyncGroup4Fv=0x803B1804 -create__Q23efx44TSyncGroup3FPQ23efx3Arg=0x803B185C -fade__Q23efx44TSyncGroup3Fv=0x803B18D8 -forceKill__Q23efx44TSyncGroup3Fv=0x803B1930 -startDemoDrawOff__Q23efx44TSyncGroup3Fv=0x803B1988 -endDemoDrawOn__Q23efx44TSyncGroup3Fv=0x803B19E0 -create__Q23efx44TSyncGroup3FPQ23efx3Arg=0x803B1A38 -fade__Q23efx44TSyncGroup3Fv=0x803B1AB4 -forceKill__Q23efx44TSyncGroup3Fv=0x803B1B0C -startDemoDrawOff__Q23efx44TSyncGroup3Fv=0x803B1B64 -endDemoDrawOn__Q23efx44TSyncGroup3Fv=0x803B1BBC -create__Q23efx34TSyncGroup3FPQ23efx3Arg=0x803B1C14 -fade__Q23efx34TSyncGroup3Fv=0x803B1C90 -forceKill__Q23efx34TSyncGroup3Fv=0x803B1CE8 -startDemoDrawOff__Q23efx34TSyncGroup3Fv=0x803B1D40 -endDemoDrawOn__Q23efx34TSyncGroup3Fv=0x803B1D98 -create__Q23efx29TSyncGroup3FPQ23efx3Arg=0x803B1DF0 -fade__Q23efx29TSyncGroup3Fv=0x803B1E6C -forceKill__Q23efx29TSyncGroup3Fv=0x803B1EC4 -startDemoDrawOff__Q23efx29TSyncGroup3Fv=0x803B1F1C -endDemoDrawOn__Q23efx29TSyncGroup3Fv=0x803B1F74 -create__Q23efx29TSyncGroup3FPQ23efx3Arg=0x803B1FCC -fade__Q23efx29TSyncGroup3Fv=0x803B2048 -forceKill__Q23efx29TSyncGroup3Fv=0x803B20A0 -startDemoDrawOff__Q23efx29TSyncGroup3Fv=0x803B20F8 -endDemoDrawOn__Q23efx29TSyncGroup3Fv=0x803B2150 -create__Q23efx28TSyncGroup3FPQ23efx3Arg=0x803B21A8 -fade__Q23efx28TSyncGroup3Fv=0x803B2224 -forceKill__Q23efx28TSyncGroup3Fv=0x803B227C -startDemoDrawOff__Q23efx28TSyncGroup3Fv=0x803B22D4 -endDemoDrawOn__Q23efx28TSyncGroup3Fv=0x803B232C -create__Q23efx34TSyncGroup2FPQ23efx3Arg=0x803B2384 -fade__Q23efx34TSyncGroup2Fv=0x803B2400 -forceKill__Q23efx34TSyncGroup2Fv=0x803B2458 -startDemoDrawOff__Q23efx34TSyncGroup2Fv=0x803B24B0 -endDemoDrawOn__Q23efx34TSyncGroup2Fv=0x803B2508 -create__Q23efx31TSyncGroup2FPQ23efx3Arg=0x803B2560 -fade__Q23efx31TSyncGroup2Fv=0x803B25DC -forceKill__Q23efx31TSyncGroup2Fv=0x803B2634 -startDemoDrawOff__Q23efx31TSyncGroup2Fv=0x803B268C -endDemoDrawOn__Q23efx31TSyncGroup2Fv=0x803B26E4 -create__Q23efx29TSyncGroup2FPQ23efx3Arg=0x803B273C -fade__Q23efx29TSyncGroup2Fv=0x803B27B8 -forceKill__Q23efx29TSyncGroup2Fv=0x803B2810 -startDemoDrawOff__Q23efx29TSyncGroup2Fv=0x803B2868 -endDemoDrawOn__Q23efx29TSyncGroup2Fv=0x803B28C0 -create__Q23efx29TSyncGroup2FPQ23efx3Arg=0x803B2918 -fade__Q23efx29TSyncGroup2Fv=0x803B2994 -forceKill__Q23efx29TSyncGroup2Fv=0x803B29EC -startDemoDrawOff__Q23efx29TSyncGroup2Fv=0x803B2A44 -endDemoDrawOn__Q23efx29TSyncGroup2Fv=0x803B2A9C -create__Q23efx28TSyncGroup2FPQ23efx3Arg=0x803B2AF4 -fade__Q23efx28TSyncGroup2Fv=0x803B2B70 -forceKill__Q23efx28TSyncGroup2Fv=0x803B2BC8 -startDemoDrawOff__Q23efx28TSyncGroup2Fv=0x803B2C20 -endDemoDrawOn__Q23efx28TSyncGroup2Fv=0x803B2C78 -__sinit_efxBase_cpp=0x803B2CD0 -@4@executeAfter__Q23efx11TOneEmitterFP14JPABaseEmitter=0x803B2D1C -@4@__dt__Q23efx11TOneEmitterFv=0x803B2D24 -@4@executeAfter__Q23efx19TOneEmitterChasePosFP14JPABaseEmitter=0x803B2D2C -@4@__dt__Q23efx19TOneEmitterChasePosFv=0x803B2D34 -@4@__dt__Q23efx17TOneEmitterSimpleFv=0x803B2D3C -@4@__dt__Q23efx5TSyncFv=0x803B2D44 -@4@__dt__Q23efx9TChasePosFv=0x803B2D4C -@4@__dt__Q23efx13TChasePosYRotFv=0x803B2D54 -@4@__dt__Q23efx9TChaseMtxFv=0x803B2D5C -@4@__dt__Q23efx10TChaseMtxTFv=0x803B2D64 -@4@__dt__Q23efx12TChasePosPosFv=0x803B2D6C -@4@__dt__Q23efx23TChasePosPosLocalZScaleFv=0x803B2D74 -@4@__dt__Q23efx23TChasePosPosLocalYScaleFv=0x803B2D7C -create__Q23efx9TChibiHitFPQ23efx3Arg=0x803B2D84 -create__Q23efx9TChouDownFPQ23efx3Arg=0x803B2EA8 -setGlobalScale__Q23efx9TUmiHamonFf=0x803B2F88 -create__Q23efx9TUmiFlickFPQ23efx3Arg=0x803B2FCC -create__Q23efx10TUmiAttackFPQ23efx3Arg=0x803B30CC -setGlobalScale__Q23efx7TUmiEatFf=0x803B319C -setGlobalScale__Q23efx11TUmiDeadawaFf=0x803B31C0 -create__Q23efx12TUmiDeadmeltFPQ23efx3Arg=0x803B31E4 -create__Q23efx10TJgmAttackFPQ23efx3Arg=0x803B32B4 -create__Q23efx11TJgmAttackWFPQ23efx3Arg=0x803B339C -create__Q23efx8TJgmBackFPQ23efx3Arg=0x803B349C -create__Q23efx9TJgmBackWFPQ23efx3Arg=0x803B356C -create__Q23efx7TImoEatFPQ23efx3Arg=0x803B3654 -create__Q23efx13TUjinkoHd_ImoFPQ23efx3Arg=0x803B3714 -create__Q23efx13TUjinkoAp_ImoFPQ23efx3Arg=0x803B3788 -create__Q23efx9TImoSmokeFPQ23efx3Arg=0x803B37FC -create__Q23efx12TOtaPartsoffFPQ23efx3Arg=0x803B38CC -setGlobalTranslation__Q23efx13TNewkurageSuiFR10Vector3=0x803B399C -setLifeTime__Q23efx14TNewkurageHireFs=0x803B39DC -setGlobalTranslation__Q23efx10TKurageSuiFR10Vector3=0x803B3A10 -setLifeTime__Q23efx11TKurageHireFs=0x803B3A50 -setGlobalScale__Q23efx9TQuriGlowFf=0x803B3A84 -create__Q23efx14THebiAphd_baseFPQ23efx3Arg=0x803B3AA8 -setGlobalAlpha__Q23efx13TKechappyTestFUc=0x803B3B4C -setGlobalParticleScale__Q23efx13TKechappyTestFf=0x803B3B80 -setAwayFromCenterSpeed__Q23efx13TKechappyTestFf=0x803B3BA4 -setSpread__Q23efx13TKechappyTestFf=0x803B3BC8 -setGlobalDynamicsScale__Q23efx13TKechappyTestFR10Vector3=0x803B3BEC -setRateLOD__Q23efx9TYakiBodyFi=0x803B3C38 -create__Q23efx7TPanAppFPQ23efx3Arg=0x803B3D14 -create__Q23efx8TPanHideFPQ23efx3Arg=0x803B3DE4 -create__Q23efx9TPanSmokeFPQ23efx3Arg=0x803B3EB4 -create__Q23efx14TBabaFly_ver01FPQ23efx3Arg=0x803B3F84 -create__Q23efx7TBabaHeFPQ23efx3Arg=0x803B4054 -create__Q23efx10TKoganeHitFPQ23efx3Arg=0x803B41D8 -create__Q23efx11TKoganeDiveFPQ23efx3Arg=0x803B42C0 -init__Q23efx26TParticleCallBack_TankFireFP14JPABaseEmitterP15JPABaseParticle=0x803B43A8 -execute__Q23efx26TParticleCallBack_TankFireFP14JPABaseEmitterP15JPABaseParticle=0x803B43AC -create__Q23efx12TTankFireABCFPQ23efx3Arg=0x803B44F0 -create__Q23efx12TTankFireINDFPQ23efx3Arg=0x803B4580 -create__Q23efx9TTankFireFPQ23efx3Arg=0x803B45C4 -create__Q23efx8TTankWatFPQ23efx3Arg=0x803B4648 -doExecuteEmitterOperation__Q23efx14TDnkmsThunderAFP14JPABaseEmitter=0x803B46E0 -doExecuteEmitterOperation__Q23efx14TDnkmsThunderBFP14JPABaseEmitter=0x803B4848 -setRateLOD__Q23efx9THibaFireFi=0x803B49B0 -create__Q23efx9TGasuHibaFPQ23efx3Arg=0x803B4A8C -setRateLOD__Q23efx9TGasuHibaFi=0x803B4B4C -create__Q23efx10TDenkiHibaFPQ23efx3Arg=0x803B4BC4 -create__Q23efx13TDenkiHibaMgrFPQ23efx3Arg=0x803B4DDC -createHiba__Q23efx13TDenkiHibaMgrFi=0x803B4F04 -forceKill__Q23efx13TDenkiHibaMgrFv=0x803B507C -fade__Q23efx13TDenkiHibaMgrFv=0x803B5108 -setRateLOD__Q23efx13TDenkiHibaMgrFi=0x803B5194 -forceKill__Q23efx8TTankWatFv=0x803B5248 -forceKill__Q23efx9TTankFireFv=0x803B5290 -forceKill__Q23efx12TTankFireABCFv=0x803B52E0 -__dt__Q23efx14TBabaFly_ver01Fv=0x803B5328 -__dt__Q23efx9TPanSmokeFv=0x803B53C4 -__dt__Q23efx8TPanHideFv=0x803B5460 -__dt__Q23efx9TImoSmokeFv=0x803B54FC -__dt__Q23efx7TImoEatFv=0x803B5598 -__dt__Q23efx8TJgmBackFv=0x803B5634 -__dt__Q23efx9TChouDownFv=0x803B56D0 -@4@__dt__Q23efx9TChouDownFv=0x803B576C -@4@__dt__Q23efx8TJgmBackFv=0x803B5774 -@4@__dt__Q23efx7TImoEatFv=0x803B577C -@4@__dt__Q23efx9TImoSmokeFv=0x803B5784 -@4@__dt__Q23efx8TPanHideFv=0x803B578C -@4@__dt__Q23efx9TPanSmokeFv=0x803B5794 -@4@__dt__Q23efx14TBabaFly_ver01Fv=0x803B579C -@4@__dt__Q23efx12TTankFireINDFv=0x803B57A4 -@4@__dt__Q23efx14TDnkmsThunderAFv=0x803B57AC -@4@__dt__Q23efx14TDnkmsThunderBFv=0x803B57B4 -create__Q23efx12TOtakaraDiveFPQ23efx3Arg=0x803B57BC -create__Q23efx11TTsuyuGrow0FPQ23efx3Arg=0x803B58C4 -create__Q23efx11TOtakaraApLFPQ23efx3Arg=0x803B59CC -create__Q23efx11TOtakaraApSFPQ23efx3Arg=0x803B5ACC -create__Q23efx10TOtakaraApFPQ23efx3Arg=0x803B5BB4 -create__Q23efx8TEgateBCFPQ23efx3Arg=0x803B5EC8 -create__Q23efx13TKouhaiDamageFPQ23efx3Arg=0x803B5FEC -create__Q23efx14TPelkira_ver01FPQ23efx3Arg=0x803B6110 -create__Q23efx9ContainerFPQ23efx3Arg=0x803B61F8 -create__Q23efx12ContainerActFPQ23efx3Arg=0x803B62C8 -setRateLOD__Q23efx8WarpZoneFib=0x803B63B0 -__dt__Q23efx9ContainerFv=0x803B6560 -__dt__Q23efx14TPelkira_ver01Fv=0x803B65FC -forceKill__Q23efx10TOtakaraApFv=0x803B6698 -fade__Q23efx10TOtakaraApFv=0x803B669C -@4@__dt__Q23efx14TPelkira_ver01Fv=0x803B66A0 -@4@__dt__Q23efx9ContainerFv=0x803B66A8 -create__Q23efx11TPkNageBlurFPQ23efx3Arg=0x803B66B0 -create__Q23efx12TDopingSmokeFPQ23efx3Arg=0x803B67A0 -create__Q23efx11TOrimaLightFPQ23efx3Arg=0x803B6980 -create__Q23efx14TOrimaLightActFPQ23efx3Arg=0x803B69E0 -init__Q23efx7TCursorFll=0x803B6A40 -create__Q23efx7TCursorFPQ23efx3Arg=0x803B6AB8 -update__Q23efx7TCursorFPQ23efx3Arg=0x803B6C0C -calcPos___Q23efx7TCursorFP10Vector3fl=0x803B6D0C -create__Q23efx13TFueactCircleFPQ23efx3Arg=0x803B6E54 -execute__Q23efx13TFueactCircleFP14JPABaseEmitter=0x803B6F00 -execute__Q23efx13TFueactCircleFP14JPABaseEmitterP15JPABaseParticle=0x803B7024 -doExecuteEmitterOperation__Q23efx15TFueactBiriBaseFP14JPABaseEmitter=0x803B72F0 -createSimpleDead__3efxFR10Vector3l=0x803B74C4 -createSimpleChinka__3efxFR10Vector3=0x803B75D0 -createSimpleGedoku__3efxFR10Vector3=0x803B762C -createSimpleBlackDrop__3efxFR10Vector3=0x803B7688 -createSimpleGate1Attack__3efxFR10Vector3=0x803B7720 -createSimplePkAp__3efxFR10Vector3=0x803B77AC -createSimpleWaterOff__3efxFR10Vector3=0x803B7838 -createSimpleDive__3efxFR10Vector3=0x803B7894 -createSimpleChiru__3efxFR10Vector3l=0x803B78F0 -createSimpleInattack__3efxFR10Vector3=0x803B7988 -createSimpleInstick__3efxFR10Vector3=0x803B79E4 -createSimpleGate2Attack__3efxFR10Vector3=0x803B7A64 -createSimpleBridgeAttack__3efxFR10Vector3=0x803B7AF0 -createSimpleWalksmoke__3efxFR10Vector3=0x803B7B70 -createSimpleGlow2__3efxFR10Vector3=0x803B7BCC -createSimpleStoneAttack__3efxFR10Vector3=0x803B7C58 -createSimpleDig__3efxFR10Vector3=0x803B7CD8 -createSimpleGate3Attack__3efxFR10Vector3=0x803B7D34 -createSimpleWalkwater__3efxFR10Vector3=0x803B7D90 -init__Q23efx11TNaviEffectFP10Vector3PA4_fP10Vector3Q33efx11TNaviEffect12enumNaviType=0x803B7DEC -setNaviType__Q23efx11TNaviEffectFQ33efx11TNaviEffect12enumNaviType=0x803B7E24 -update__Q23efx11TNaviEffectFv=0x803B7EFC -updateHamon___Q23efx11TNaviEffectFv=0x803B7F1C -createHamonA___Q23efx11TNaviEffectFP10Vector3=0x803B7FF4 -killHamonA___Q23efx11TNaviEffectFv=0x803B8054 -createHamonB___Q23efx11TNaviEffectFP10Vector3=0x803B8078 -killHamonB___Q23efx11TNaviEffectFv=0x803B80D8 -createLight___Q23efx11TNaviEffectFPA4_f=0x803B80FC -killLight___Q23efx11TNaviEffectFv=0x803B8174 -createLightAct___Q23efx11TNaviEffectFPA4_f=0x803B81A0 -killLightAct___Q23efx11TNaviEffectFv=0x803B8218 -createCursor___Q23efx11TNaviEffectF10Vector3f=0x803B8244 -killCursor___Q23efx11TNaviEffectFv=0x803B82A8 -updateCursor___Q23efx11TNaviEffectF10Vector3f=0x803B82D4 -createFueact___Q23efx11TNaviEffectFPA4_fP10Vector3=0x803B8558 -killFueact___Q23efx11TNaviEffectFv=0x803B860C -createOrimadamage___Q23efx11TNaviEffectFPA4_f=0x803B8638 -init__Q23efx9TPkEffectFv=0x803B86B0 -update__Q23efx9TPkEffectFv=0x803B86EC -updateMoeSmoke___Q23efx9TPkEffectFv=0x803B8720 -updateHamon___Q23efx9TPkEffectFv=0x803B8758 -createKourin___Q23efx9TPkEffectFP10Vector3=0x803B8828 -killKourin___Q23efx9TPkEffectFv=0x803B888C -createDoping___Q23efx9TPkEffectFP10Vector3=0x803B88B0 -killDoping___Q23efx9TPkEffectFv=0x803B8910 -createNage___Q23efx9TPkEffectFP10Vector3PA4_f=0x803B8934 -killNage___Q23efx9TPkEffectFv=0x803B8A2C -createMoe___Q23efx9TPkEffectFP10Vector3=0x803B8A70 -killMoe___Q23efx9TPkEffectFv=0x803B8AEC -createChudoku___Q23efx9TPkEffectFP10Vector3=0x803B8B30 -killChudoku___Q23efx9TPkEffectFv=0x803B8B90 -createMoeSmoke___Q23efx9TPkEffectFP10Vector3=0x803B8BB4 -killMoeSmoke___Q23efx9TPkEffectFv=0x803B8C14 -createBlackDown___Q23efx9TPkEffectFP10Vector3=0x803B8C38 -killBlackDown___Q23efx9TPkEffectFv=0x803B8CA8 -createWater___Q23efx9TPkEffectFP10Vector3=0x803B8CD4 -killWater___Q23efx9TPkEffectFv=0x803B8D34 -createHamonA___Q23efx9TPkEffectFP10Vector3=0x803B8D58 -killHamonA___Q23efx9TPkEffectFv=0x803B8DB8 -createHamonB___Q23efx9TPkEffectFP10Vector3=0x803B8DDC -killHamonB___Q23efx9TPkEffectFv=0x803B8E3C -init__Q23efx13TPkEffectTaneFv=0x803B8E60 -createTanekira___Q23efx13TPkEffectTaneFP10Vector3=0x803B8E80 -killTanekira___Q23efx13TPkEffectTaneFv=0x803B8EE0 -createKourin___Q23efx13TPkEffectTaneFP10Vector3=0x803B8F04 -killKourin___Q23efx13TPkEffectTaneFv=0x803B8F68 -createGlow1___Q23efx13TPkEffectTaneFP10Vector3=0x803B8F8C -executeAfter__Q23efx13TFueactCircleFP14JPABaseEmitter=0x803B8FFC -forceKill__Q23efx7TCursorFv=0x803B9000 -@4@__dt__Q23efx11TPkNageBlurFv=0x803B902C -@4@executeAfter__Q23efx13TFueactCircleFP14JPABaseEmitter=0x803B9034 -@4@execute__Q23efx13TFueactCircleFP14JPABaseEmitter=0x803B903C -@4@__dt__Q23efx13TFueactCircleFv=0x803B9044 -@8@execute__Q23efx13TFueactCircleFP14JPABaseEmitterP15JPABaseParticle=0x803B904C -@8@__dt__Q23efx13TFueactCircleFv=0x803B9054 -@4@__dt__Q23efx15TFueactBiriBaseFv=0x803B905C -__dt__14TParticle2dMgrFv=0x803B9064 -globalInstance__14TParticle2dMgrFv=0x803B90E8 -Instance__14TParticle2dMgrFv=0x803B910C -deleteInstance__14TParticle2dMgrFv=0x803B9154 -__ct__14TParticle2dMgrFv=0x803B91A4 -createHeap__14TParticle2dMgrFUl=0x803B922C -createMgr__14TParticle2dMgrFPcUlUlUl=0x803B92C0 -setSceneEmitterAndResourceManager__14TParticle2dMgrFP17JPAEmitterManagerP18JPAResourceManager=0x803B9414 -clearSceneEmitterAndResourceManager__14TParticle2dMgrFv=0x803B94C0 -setSceneResourceManager__14TParticle2dMgrFP18JPAResourceManager=0x803B9538 -clearSceneResourceManager__14TParticle2dMgrFv=0x803B9588 -update__14TParticle2dMgrFv=0x803B95B0 -draw__14TParticle2dMgrFUcUs=0x803B95D4 -create__14TParticle2dMgrFUsR10Vector2UcUc=0x803B971C -kill__14TParticle2dMgrFP14JPABaseEmitter=0x803B9768 -fade__14TParticle2dMgrFP14JPABaseEmitter=0x803B9794 -killAll__14TParticle2dMgrFv=0x803B97B4 -killGroup__14TParticle2dMgrFUc=0x803B97D8 -__sinit_particle2dMgr_cpp=0x803B9800 -@24@__dt__14TParticle2dMgrFv=0x803B9828 -create__Q25efx2d8TSimple1FPQ25efx2d3Arg=0x803B9830 -create__Q25efx2d8TSimple2FPQ25efx2d3Arg=0x803B98C8 -create__Q25efx2d8TSimple3FPQ25efx2d3Arg=0x803B9978 -create__Q25efx2d8TForeverFPQ25efx2d3Arg=0x803B9A28 -kill__Q25efx2d8TForeverFv=0x803B9ACC -fade__Q25efx2d8TForeverFv=0x803B9B08 -setGlobalScale__Q25efx2d8TForeverFf=0x803B9B44 -setGlobalEnvColor__Q25efx2d8TForeverFRQ28JUtility6TColor=0x803B9B68 -setGlobalAlpha__Q25efx2d8TForeverFUc=0x803B9B90 -__ct__Q25efx2d9TForeverNFUc=0x803B9BA4 -__ct__Q25efx2d8TForeverFv=0x803B9C24 -create__Q25efx2d9TForeverNFPQ25efx2d3Arg=0x803B9C74 -kill__Q25efx2d9TForeverNFv=0x803B9D0C -fade__Q25efx2d9TForeverNFv=0x803B9D78 -setGroup__Q25efx2d9TForeverNFUc=0x803B9DE4 -setGlobalAlpha__Q25efx2d9TForeverNFUc=0x803B9E60 -create__Q25efx2d9TChasePosFPQ25efx2d3Arg=0x803B9EA0 -execute__Q25efx2d9TChasePosFP14JPABaseEmitter=0x803B9F28 -create__Q25efx2d12TChasePosDirFPQ25efx2d3Arg=0x803B9FA0 -execute__Q25efx2d12TChasePosDirFP14JPABaseEmitter=0x803BA028 -__dt__Q25efx2d12TChasePosDirFv=0x803BA0E0 -@8@__dt__Q25efx2d8TForeverFv=0x803BA164 -@8@execute__Q25efx2d9TChasePosFP14JPABaseEmitter=0x803BA16C -@8@__dt__Q25efx2d9TChasePosFv=0x803BA174 -@8@execute__Q25efx2d12TChasePosDirFP14JPABaseEmitter=0x803BA17C -@8@__dt__Q25efx2d12TChasePosDirFv=0x803BA184 -create__Q25efx2d9T2DCursorFPQ25efx2d3Arg=0x803BA18C -create__Q25efx2d12T2DCountKiraFPQ25efx2d3Arg=0x803BA208 -create__Q25efx2d18T2DSensorGet_forVSFPQ25efx2d3Arg=0x803BA264 -create__Q25efx2d17T2DSprayset_forVSFPQ25efx2d3Arg=0x803BA33C -create__Q35efx2d10FileSelect13T2DFilecopiedFPQ25efx2d3Arg=0x803BA47C -create__Q35efx2d10FileSelect13T2DFiledeleteFPQ25efx2d3Arg=0x803BA544 -create__Q35efx2d10FileSelect14T2DFiledeleteMFPQ25efx2d3Arg=0x803BA60C -create__Q35efx2d10FileSelect15T2DFilecopyBaseFPQ25efx2d3Arg=0x803BA6D4 -create__Q35efx2d8WorldMap10T2DShstar2FPQ25efx2d3Arg=0x803BA8A0 -create__Q35efx2d8WorldMap9T2DNewmapFPQ25efx2d3Arg=0x803BA97C -create__Q35efx2d8WorldMap19TSimple_ArgDirScaleFPQ25efx2d3Arg=0x803BAA70 -create__Q35efx2d8WorldMap12T2DOnyonKiraFPQ25efx2d3Arg=0x803BAB1C -setGlobalParticleScale__Q35efx2d8WorldMap12T2DOnyonKiraFf=0x803BAB78 -setGlobalParticleScale__Q35efx2d8WorldMap13T2DRocketGlowFf=0x803BABB8 -create__Q35efx2d8WorldMap10T2DRocketBFPQ25efx2d3Arg=0x803BABD0 -setGlobalParticleScale__Q35efx2d8WorldMap10T2DRocketBFf=0x803BAC2C -__dt__Q35efx2d8WorldMap10T2DRocketBFv=0x803BAC6C -__dt__Q35efx2d8WorldMap12T2DOnyonKiraFv=0x803BAD08 -__dt__Q35efx2d10FileSelect15T2DFilecopyBaseFv=0x803BADA4 -__dt__Q25efx2d12T2DCountKiraFv=0x803BAE28 -__dt__Q25efx2d9T2DCursorFv=0x803BAEAC -@8@__dt__Q25efx2d9T2DCursorFv=0x803BAF48 -@8@__dt__Q25efx2d12T2DCountKiraFv=0x803BAF50 -@8@__dt__Q35efx2d10FileSelect15T2DFilecopyBaseFv=0x803BAF58 -@8@__dt__Q35efx2d8WorldMap12T2DOnyonKiraFv=0x803BAF60 -@8@__dt__Q35efx2d8WorldMap10T2DRocketBFv=0x803BAF68 -globalInstance__11ParticleMgrFv=0x803BAF70 -deleteInstance__11ParticleMgrFv=0x803BAFB4 -__ct__11ParticleMgrFv=0x803BAFFC -__dt__19ModelEffectDataRootFv=0x803BB110 -__dt__28NodeObjectMgr<11ModelEffect>Fv=0x803BB180 -__dt__26TObjectNode<11ModelEffect>Fv=0x803BB248 -__dt__24ObjectMgr<11ModelEffect>Fv=0x803BB2A8 -__dt__24Container<11ModelEffect>Fv=0x803BB330 -__dt__11ParticleMgrFv=0x803BB3A0 -createHeap__11ParticleMgrFUl=0x803BB4CC -createMgr__11ParticleMgrFPcUlUlUl=0x803BB53C -Instance_TPkEffectMgr__11ParticleMgrFv=0x803BB688 -deleteInstance_TPkEffectMgr__11ParticleMgrFv=0x803BB6A8 -beginEntryModelEffect__11ParticleMgrFv=0x803BB6C8 -endEntryModelEffect__11ParticleMgrFv=0x803BB6F4 -start__11ParticleMgrFv=0x803BB718 -reset__11ParticleMgrFv=0x803BB73C -killAll__11ParticleMgrFv=0x803BB794 -update__11ParticleMgrFv=0x803BB7B8 -setXfb__11ParticleMgrFPC7ResTIMG=0x803BB7E4 -draw__11ParticleMgrFP8ViewportUc=0x803BB810 -create__11ParticleMgrFUsR10Vector3Uc=0x803BB8B4 -createDemo__11ParticleMgrFUsR10Vector3UcUc=0x803BB97C -setGlobalColor__11ParticleMgrFP14JPABaseEmitter=0x803BB9D8 -forceKill__11ParticleMgrFP14JPABaseEmitter=0x803BBA80 -fade__11ParticleMgrFP14JPABaseEmitter=0x803BBAAC -setDemoResourceManager__11ParticleMgrFP18JPAResourceManager=0x803BBAD8 -clearDemoResourceManager__11ParticleMgrFv=0x803BBB00 -setViewport__11ParticleMgrFR8Graphics=0x803BBB28 -cullByResFlg__11ParticleMgrFR10Vector3Us=0x803BBBD0 -cullByResFlg__11ParticleMgrFP14JPABaseEmitter=0x803BBCE4 -loadResources__19ModelEffectDataRootFv=0x803BBE5C -getID__19ModelEffectDataRootFv=0x803BBE60 -onCreate__19ModelEffectDataRootFP20ModelEffectCreateArg=0x803BBE70 -get__28NodeObjectMgr<11ModelEffect>FPv=0x803BBE78 -getNext__28NodeObjectMgr<11ModelEffect>FPv=0x803BBE80 -getStart__28NodeObjectMgr<11ModelEffect>Fv=0x803BBE88 -getEnd__28NodeObjectMgr<11ModelEffect>Fv=0x803BBE90 -resetMgr__28NodeObjectMgr<11ModelEffect>Fv=0x803BBE98 -getObject__24Container<11ModelEffect>FPv=0x803BBEB0 -getAt__24Container<11ModelEffect>Fi=0x803BBEDC -getTo__24Container<11ModelEffect>Fv=0x803BBEE4 -doDirectDraw__24ObjectMgr<11ModelEffect>FR8Graphics=0x803BBEEC -isDone__23Iterator<11ModelEffect>Fv=0x803BC0E0 -doSimulation__24ObjectMgr<11ModelEffect>Ff=0x803BC12C -doViewCalc__24ObjectMgr<11ModelEffect>Fv=0x803BC320 -doSetView__24ObjectMgr<11ModelEffect>Fi=0x803BC504 -doEntry__24ObjectMgr<11ModelEffect>Fv=0x803BC6F8 -doAnimation__24ObjectMgr<11ModelEffect>Fv=0x803BC8DC -__ml__23Iterator<11ModelEffect>Fv=0x803BCAC0 -next__23Iterator<11ModelEffect>Fv=0x803BCAF8 -first__23Iterator<11ModelEffect>Fv=0x803BCBDC -__sinit_particleMgr_cpp=0x803BCCB8 -@28@resetMgr__28NodeObjectMgr<11ModelEffect>Fv=0x803BCCE0 -@28@doDirectDraw__24ObjectMgr<11ModelEffect>FR8Graphics=0x803BCCE8 -@28@doSimulation__24ObjectMgr<11ModelEffect>Ff=0x803BCCF0 -@28@doViewCalc__24ObjectMgr<11ModelEffect>Fv=0x803BCCF8 -@28@doSetView__24ObjectMgr<11ModelEffect>Fi=0x803BCD00 -@28@doEntry__24ObjectMgr<11ModelEffect>Fv=0x803BCD08 -@28@doAnimation__24ObjectMgr<11ModelEffect>Fv=0x803BCD10 -__ct__Q33ebi5title9TTitleMgrFv=0x803BCD18 -__ct__Q33ebi5title16TTitleParametersFv=0x803BD304 -__dt__Q33ebi5title12TTitleFogMgrFv=0x803BD75C -__dt__6FogMgrFv=0x803BD7CC -__dt__Q33ebi5title14TTitleLightMgrFv=0x803BD82C -__ct__Q33ebi5title14TTitleLightMgrFv=0x803BD910 -__ct__Q33ebi5title18TTitleLightSettingFv=0x803BD9E8 -__ct__Q43ebi5title18TTitleLightSetting10TSpecParmsFv=0x803BDB34 -__ct__Q43ebi5title18TTitleLightSetting10TMainParmsFv=0x803BDD5C -__dt__8LightObjFv=0x803BE0AC -__dt__Q33ebi5title15TTitleCameraMgrFv=0x803BE10C -__dt__8ViewportFv=0x803BE1DC -__dt__Q33ebi5title9TCoordMgrFv=0x803BE23C -__dt__Q43ebi5title6Chappy4TMgrFv=0x803BE29C -__dt__Q43ebi5title6Kogane4TMgrFv=0x803BE2FC -__dt__Q43ebi5title6Pikmin4TMgrFv=0x803BE35C -__dt__12J3DFrameCtrlFv=0x803BE3E0 -__dt__Q33ebi5title9TTitleMgrFv=0x803BE428 -globalInstance__Q33ebi5title9TTitleMgrFv=0x803BE774 -Instance__Q33ebi5title9TTitleMgrFv=0x803BE798 -deleteInstance__Q33ebi5title9TTitleMgrFv=0x803BE7E0 -init__Q33ebi5title9TTitleMgrFv=0x803BE830 -setLogo__Q33ebi5title9TTitleMgrFv=0x803BEA58 -loadResource__Q33ebi5title9TTitleMgrFv=0x803BEAA8 -initAfterLoadRes__Q33ebi5title9TTitleMgrFv=0x803BEDA8 -setController__Q33ebi5title9TTitleMgrFP10Controller=0x803BEDE8 -inField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase=0x803BEE2C -isCalc__Q33ebi5title8TObjBaseFv=0x803BEE9C -inViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase=0x803BEEA4 -isInViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase=0x803BEF24 -isOutViewField__Q33ebi5title9TTitleMgrFR10Vector2f=0x803BEFAC -isOutViewField__Q33ebi5title9TTitleMgrFPQ33ebi5title8TObjBase=0x803BEFF0 -getPosOutOfViewField__Q33ebi5title9TTitleMgrFv=0x803BF078 -start__Q33ebi5title9TTitleMgrFv=0x803BF098 -breakup__Q33ebi5title9TTitleMgrFv=0x803BF4A0 -startKogane__Q33ebi5title9TTitleMgrFv=0x803BF6AC -startChappy__Q33ebi5title9TTitleMgrFv=0x803BF84C -boidToAssemble__Q33ebi5title9TTitleMgrFl=0x803BF9EC -isControllerOK__Q33ebi5title9TTitleMgrFv=0x803BFC28 -isPressStart__Q33ebi5title9TTitleMgrFv=0x803BFC44 -startState__Q33ebi5title9TTitleMgrFQ43ebi5title9TTitleMgr9enumState=0x803BFC60 -update__Q33ebi5title9TTitleMgrFv=0x803BFD84 -updateState__Q33ebi5title9TTitleMgrFv=0x803C01DC -checkEncounter___Q33ebi5title9TTitleMgrFv=0x803C0528 -draw__Q33ebi5title9TTitleMgrFv=0x803C0754 -readTitleParam__Q33ebi5title9TTitleMgrFP10JKRArchivePc=0x803C09BC -__dt__Q43ebi5title6Pikmin13TBoidParamMgrFv=0x803C0A38 -read__Q33ebi5title15TTitleCameraMgrFR6Stream=0x803C0A98 -doUpdate__6CameraFv=0x803C0ABC -getCreatureType__Q33ebi5title8TObjBaseFv=0x803C0AC0 -__sinit_ebiP2Title_cpp=0x803C0AC8 -@24@__dt__Q33ebi5title9TTitleMgrFv=0x803C0AF0 -loadSettingFile__Q33ebi5title10TParamBaseFP10JKRArchivePc=0x803C0AF8 -calcModelBaseMtx___Q33ebi5title8TObjBaseFv=0x803C0B80 -pushOut__Q33ebi5title8TObjBaseFPQ33ebi5title8TObjBase=0x803C0C30 -setArchive__Q33ebi5title8TMapBaseFP10JKRArchive=0x803C0CC4 -startWind__Q33ebi5title8TMapBaseFf=0x803C0EE4 -update__Q33ebi5title8TMapBaseFv=0x803C0F2C -setArchive__Q33ebi5title12TBGEnemyBaseFP10JKRArchive=0x803C11A8 -start__Q33ebi5title12TBGEnemyBaseFv=0x803C12F8 -update__Q33ebi5title12TBGEnemyBaseFv=0x803C1354 -setArchive__Q33ebi5title11TBlackPlaneFP10JKRArchive=0x803C1478 -start__Q33ebi5title11TBlackPlaneFv=0x803C1750 -updateBeforeCamera__Q33ebi5title11TBlackPlaneFv=0x803C17F0 -updateAfterCamera__Q33ebi5title11TBlackPlaneFv=0x803C1900 -setLogo__Q33ebi5title11TBlackPlaneFv=0x803C1950 -getCameraPos__Q33ebi5title11TBlackPlaneFv=0x803C199C -__sinit_ebiP2TitleUnit_cpp=0x803C1A14 -init__Q23ebi24EUTPadInterface_countNumFP10ControllerllPlQ33ebi24EUTPadInterface_countNum8enumModeff=0x803C1A3C -update__Q23ebi24EUTPadInterface_countNumFv=0x803C1A9C -EUTColor_complement__3ebiFRQ28JUtility6TColorRQ28JUtility6TColorffPQ28JUtility6TColor=0x803C1DA0 -EUTDebug_Tag64ToName__3ebiFUxPc=0x803C1EB4 -EUTDebug_Tag32ToName__3ebiFUlPc=0x803C1EB8 -update__Q33ebi5title15TTitleCameraMgrFv=0x803C1EBC -__sinit_ebiP2TitleCamera_cpp=0x803C1F30 -loadSettingFile__Q33ebi5title14TTitleLightMgrFP10JKRArchivePc=0x803C1F58 -setParam___Q33ebi5title14TTitleLightMgrFv=0x803C1FEC -update__Q33ebi5title14TTitleLightMgrFv=0x803C2168 -setCameraMtx__Q33ebi5title14TTitleLightMgrFPA4_f=0x803C2188 -__sinit_ebiP2TitleLight_cpp=0x803C221C -__dt__Q33ebi6Screen17TResourceObserverFv=0x803C2244 -loadResource__Q33ebi6Screen11TMemoryCardFP7JKRHeap=0x803C22B0 -setArchive__Q33ebi6Screen11TMemoryCardFP10JKRArchive=0x803C2388 -set__Q23ebi26E2DCallBack_BlinkFontColorFP10J2DTextBoxP10J2DTextBox=0x803C2724 -destroyResource__Q33ebi6Screen11TMemoryCardFv=0x803C28E0 -open__Q33ebi6Screen11TMemoryCardFl=0x803C28F8 -close__Q33ebi6Screen11TMemoryCardFv=0x803C3B00 -killScreen__Q33ebi6Screen11TMemoryCardFv=0x803C3B30 -setSelect___Q33ebi6Screen11TMemoryCardFb=0x803C3B54 -update__Q23ebi12TYesNoCursorFv=0x803C3E88 -isFinish__Q33ebi6Screen11TMemoryCardFv=0x803C3FB0 -startState__Q33ebi6Screen11TMemoryCardFQ43ebi6Screen11TMemoryCard9enumState=0x803C3FD8 -update__Q33ebi6Screen11TMemoryCardFv=0x803C44C4 -draw__Q33ebi6Screen11TMemoryCardFv=0x803C4D8C -create__Q23efx19TPkOneEmitterSimpleFPQ23efx3Arg=0x803C4E0C -executeAfter__Q23efx19TPkOneEmitterSimpleFP14JPABaseEmitter=0x803C4EC0 -globalInstance__Q23efx12TPkEffectMgrFv=0x803C4F94 -deleteInstance__Q23efx12TPkEffectMgrFv=0x803C4FB8 -Instance__Q23efx12TPkEffectMgrFv=0x803C5008 -__ct__Q23efx12TPkEffectMgrFv=0x803C5050 -__dt__Q23efx11TOEContextSFv=0x803C640C -__ct__Q23efx11TOEContextSFv=0x803C6464 -__dt__Q23efx12TPkEffectMgrFv=0x803C6498 -__dt__Q23efx19TPkOneEmitterSimpleFv=0x803C65A0 -startMgr__Q23efx12TPkEffectMgrFv=0x803C6620 -exitMgr__Q23efx12TPkEffectMgrFv=0x803C66B8 -forceKill__Q23efx19TPkOneEmitterSimpleFv=0x803C6748 -resetContextS__Q23efx12TPkEffectMgrFv=0x803C678C -createS_Dead__Q23efx12TPkEffectMgrFR10Vector3l=0x803C6798 -createS_Chinka__Q23efx12TPkEffectMgrFR10Vector3=0x803C69B4 -createS_Gedoku__Q23efx12TPkEffectMgrFR10Vector3=0x803C6A7C -createS_WaterOff__Q23efx12TPkEffectMgrFR10Vector3=0x803C6B44 -createS_Dive__Q23efx12TPkEffectMgrFR10Vector3=0x803C6C0C -createS_Chiru__Q23efx12TPkEffectMgrFR10Vector3=0x803C6CD4 -createS_Inattack__Q23efx12TPkEffectMgrFR10Vector3=0x803C6D48 -createS_Walksmoke__Q23efx12TPkEffectMgrFR10Vector3=0x803C6DBC -createS_Dig__Q23efx12TPkEffectMgrFR10Vector3=0x803C6E30 -createS_ChiruRed__Q23efx12TPkEffectMgrFR10Vector3=0x803C6EA4 -createS_Gate3Attack__Q23efx12TPkEffectMgrFR10Vector3=0x803C6F18 -createS_Walkwater__Q23efx12TPkEffectMgrFR10Vector3=0x803C6F8C -create__Q23efx9ToeKourinFP10Vector3l=0x803C7054 -kill__Q23efx9ToeKourinFv=0x803C717C -create__Q23efx9ToeDopingFP10Vector3=0x803C7234 -kill__Q23efx9ToeDopingFv=0x803C729C -create__Q23efx11ToeNagekiraFP10Vector3=0x803C72C8 -kill__Q23efx11ToeNagekiraFv=0x803C7330 -create__Q23efx8ToeMoeBCFP10Vector3=0x803C735C -kill__Q23efx8ToeMoeBCFv=0x803C73D8 -create__Q23efx10ToeChudokuFP10Vector3=0x803C7420 -kill__Q23efx10ToeChudokuFv=0x803C7488 -create__Q23efx8ToeWaterFP10Vector3=0x803C74B4 -kill__Q23efx8ToeWaterFv=0x803C7530 -create__Q23efx9ToeHamonAFP10Vector3=0x803C7578 -kill__Q23efx9ToeHamonAFv=0x803C75EC -create__Q23efx9ToeHamonBFP10Vector3=0x803C7618 -kill__Q23efx9ToeHamonBFv=0x803C768C -create__Q23efx11ToeMoeSmokeFP10Vector3=0x803C76B8 -kill__Q23efx11ToeMoeSmokeFv=0x803C7720 -create__Q23efx11ToeTanekiraFP10Vector3=0x803C774C -kill__Q23efx11ToeTanekiraFv=0x803C77B4 -fade__Q23efx19TPkOneEmitterSimpleFv=0x803C77E0 -@4@executeAfter__Q23efx19TPkOneEmitterSimpleFP14JPABaseEmitter=0x803C7824 -@4@__dt__Q23efx19TPkOneEmitterSimpleFv=0x803C782C -create__Q23efx10TEnemyPiyoFPQ23efx3Arg=0x803C7834 -create__Q23efx13TEnemyPoisonLFPQ23efx3Arg=0x803C7AA8 -create__Q23efx13TEnemyPoisonSFPQ23efx3Arg=0x803C7B84 -create__Q23efx11TSekikaLOffFPQ23efx3Arg=0x803C7C60 -create__Q23efx10TSekikaLOnFPQ23efx3Arg=0x803C7D3C -create__Q23efx11TSekikaSOffFPQ23efx3Arg=0x803C7E18 -create__Q23efx10TSekikaSOnFPQ23efx3Arg=0x803C7EF4 -create__Q23efx19TEnemyDead_ArgScaleFPQ23efx3Arg=0x803C7FD0 -create__Q23efx10TEnemyDeadFPQ23efx3Arg=0x803C80AC -create__Q23efx15TEnemyWalkSmokeFPQ23efx3Arg=0x803C82F8 -create__Q23efx16TEnemyWalkSmokeMFPQ23efx3Arg=0x803C8610 -create__Q23efx16TEnemyWalkSmokeSFPQ23efx3Arg=0x803C86EC -create__Q23efx15TEnemyDownSmokeFPQ23efx3Arg=0x803C8764 -create__Q23efx13TEnemyDownWatFPQ23efx3Arg=0x803C87CC -create__Q23efx10TEnemyDiveFPQ23efx3Arg=0x803C88D8 -__ct__Q23efx20TEnemyBombScaleTableFQ34Game11EnemyTypeID12EEnemyTypeID=0x803C89CC -create__Q23efx10TEnemyBombFPQ23efx3Arg=0x803C8D84 -create__Q23efx11TEnemyBombMFPQ23efx3Arg=0x803C8F70 -create__Q23efx11TEnemyBombSFPQ23efx3Arg=0x803C9094 -create__Q23efx13TEnemyApsmokeFPQ23efx3Arg=0x803C91B8 -create__Q23efx14TEnemyApsmokeMFPQ23efx3Arg=0x803C935C -create__Q23efx14TEnemyApsmokeSFPQ23efx3Arg=0x803C9438 -create__Q23efx12TEnemyHamonMFPQ23efx3Arg=0x803C9514 -create__Q23efx15TEnemyHamonMIndFPQ23efx3Arg=0x803C95F0 -create__Q23efx19TEnemyHamonChasePosFPQ23efx3Arg=0x803C96CC -update__Q23efx11TEnemyHamonFR10Vector3=0x803C99C8 -create__Q23efx11TEnemyHamonFPQ23efx3Arg=0x803C9B00 -getLimitDepth___Q23efx11TEnemyHamonFv=0x803C9BA0 -forceKill__Q23efx13TEnemyApsmokeFv=0x803C9CE0 -fade__Q23efx13TEnemyApsmokeFv=0x803C9CE4 -forceKill__Q23efx10TEnemyBombFv=0x803C9CE8 -fade__Q23efx10TEnemyBombFv=0x803C9CEC -forceKill__Q23efx15TEnemyWalkSmokeFv=0x803C9CF0 -fade__Q23efx15TEnemyWalkSmokeFv=0x803C9CF4 -@4@__dt__Q23efx10TEnemyPiyoFv=0x803C9CF8 -@4@__dt__Q23efx12TEnemyHamonMFv=0x803C9D00 -@4@__dt__Q23efx15TEnemyHamonMIndFv=0x803C9D08 -load__Q23ebi10E3DAnimResFP12J3DModelDataP10JKRArchivePc=0x803C9D10 -setAnimFolder__Q23ebi11E3DAnimCtrlFPQ23ebi17E3DAnimFolderBase=0x803C9E14 -init__Q23ebi11E3DAnimCtrlFlf=0x803C9E6C -play__Q23ebi11E3DAnimCtrlFv=0x803C9F10 -playStopEnd__Q23ebi11E3DAnimCtrlFv=0x803C9F90 -isOut__Q23ebi8EGEBox2fFR10Vector2=0x803C9FF4 -isIn__Q23ebi8EGEBox2fFR10Vector2f=0x803CA04C -isOut__Q23ebi8EGEBox2fFR10Vector2f=0x803CA0BC -in__Q23ebi8EGEBox2fFP10Vector2f=0x803CA124 -isOut__Q23ebi11EGECircle2fFR10Vector2=0x803CA188 -in__Q23ebi11EGECircle2fFP10Vector2=0x803CA1E4 -out__Q23ebi11EGECircle2fFP10Vector2=0x803CA29C -E2DScreen_searchAssert__3ebiFP9J2DScreenUx=0x803CA358 -E2DPane_setTreeInfluencedAlpha__3ebiFP7J2DPaneb=0x803CA3E4 -E2DPane_setTreeShow__3ebiFP7J2DPane=0x803CA5BC -show__7J2DPaneFv=0x803CA760 -E2DPane_setTreeHide__3ebiFP7J2DPane=0x803CA76C -hide__7J2DPaneFv=0x803CA910 -E2DPane_setTreeCallBackMessage__3ebiFPQ29P2DScreen3MgrP7J2DPane=0x803CA91C -E2DPane_getGlbCenter__3ebiFP7J2DPane=0x803CACF8 -loadRam__Q33ebi6Screen16TOptionParameterFv=0x803CADC8 -saveRam__Q33ebi6Screen16TOptionParameterFv=0x803CAEC8 -initParamForTest__Q33ebi6Screen16TOptionParameterFv=0x803CAFC4 -doSetArchive__Q33ebi6Screen7TOptionFP10JKRArchive=0x803CAFE8 -doOpenScreen__Q33ebi6Screen7TOptionFPQ33ebi6Screen7ArgOpen=0x803CB8BC -doCloseScreen__Q33ebi6Screen7TOptionFPQ33ebi6Screen8ArgClose=0x803CB9F0 -doInitWaitState__Q33ebi6Screen7TOptionFv=0x803CBA3C -doUpdateStateOpen__Q33ebi6Screen7TOptionFv=0x803CBA60 -doUpdateStateWait__Q33ebi6Screen7TOptionFv=0x803CBAE4 -doUpdateStateClose__Q33ebi6Screen7TOptionFv=0x803CC498 -doDraw__Q33ebi6Screen7TOptionFv=0x803CC50C -loadResource__Q33ebi6Screen7TOptionFv=0x803CC750 -setController__Q33ebi6Screen7TOptionFP10Controller=0x803CC800 -initScreen___Q33ebi6Screen7TOptionFv=0x803CC8BC -setOptionParamToScreen___Q33ebi6Screen7TOptionFv=0x803CCA30 -getName__Q33ebi6Screen7TOptionFv=0x803CD6CC -doKillScreen__Q33ebi6Screen11TScreenBaseFv=0x803CD6D4 -loadResource__Q23ebi13TScreenProgreFv=0x803CD6D8 -setArchive__Q23ebi13TScreenProgreFP10JKRArchive=0x803CD788 -startScreen__Q23ebi13TScreenProgreFlUl=0x803CDAA0 -fadeout__Q23ebi13TScreenProgreFUl=0x803CDE84 -isFinish__Q23ebi13TScreenProgreFv=0x803CDED8 -startState__Q23ebi13TScreenProgreFQ33ebi13TScreenProgre9enumStateUl=0x803CDF00 -update__Q23ebi13TScreenProgreFv=0x803CDFC0 -draw__Q23ebi13TScreenProgreFv=0x803CE514 -setDecide__Q23ebi13TScreenProgreFv=0x803CE5F0 -init__Q33ebi6Option15FSMStateMachineFPQ33ebi6Option4TMgr=0x803CE8F8 -init__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CEBD0 -do_init__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CEBFC -exec__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgr=0x803CEC00 -do_exec__Q33ebi6Option8FSMStateFPQ33ebi6Option4TMgr=0x803CEC2C -do_init__Q33ebi6Option19FSMState_ScreenOpenFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CEC30 -do_exec__Q33ebi6Option19FSMState_ScreenOpenFPQ33ebi6Option4TMgr=0x803CEC80 -transit__Q24Game28FSMStateFPQ33ebi6Option4TMgriPQ24Game8StateArg=0x803CECE4 -do_init__Q33ebi6Option19FSMState_ScreenWaitFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CED14 -do_exec__Q33ebi6Option19FSMState_ScreenWaitFPQ33ebi6Option4TMgr=0x803CED20 -do_init__Q33ebi6Option20FSMState_ScreenCloseFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CEE64 -do_exec__Q33ebi6Option20FSMState_ScreenCloseFPQ33ebi6Option4TMgr=0x803CEEA0 -do_init__Q33ebi6Option27FSMState_WaitCloseForNoCardFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CEEEC -do_exec__Q33ebi6Option27FSMState_WaitCloseForNoCardFPQ33ebi6Option4TMgr=0x803CEF30 -do_init__Q33ebi6Option27FSMState_WorldMapInfoWindowFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CEFB4 -do_exec__Q33ebi6Option27FSMState_WorldMapInfoWindowFPQ33ebi6Option4TMgr=0x803CF06C -do_init__Q33ebi6Option19FSMState_LoadOptionFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CF10C -do_exec__Q33ebi6Option19FSMState_LoadOptionFPQ33ebi6Option4TMgr=0x803CF118 -do_init__Q33ebi6Option16FSMState_SaveMgrFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803CF2B8 -do_exec__Q33ebi6Option16FSMState_SaveMgrFPQ33ebi6Option4TMgr=0x803CF2E4 -__ct__Q33ebi6Option4TMgrFv=0x803CF3E4 -start__Q24Game32StateMachineFPQ33ebi6Option4TMgriPQ24Game8StateArg=0x803CF4A4 -__dt__Q33ebi6Screen7TOptionFv=0x803CF4D8 -__dt__Q23ebi20E2DCallBack_PurupuruFv=0x803CF7E4 -__ct__Q33ebi6Screen7TOptionFv=0x803CF874 -__dt__Q23ebi24E2DCallBack_WindowCursorFv=0x803CFCB0 -__ct__Q23ebi20E2DCallBack_PurupuruFv=0x803CFD40 -__dt__Q23ebi22E2DCallBack_BlinkAlphaFv=0x803CFDCC -__dt__Q23ebi26E2DCallBack_BlinkFontColorFv=0x803CFE5C -__ct__Q23ebi16E2DFullFontColorFv=0x803CFEEC -__dt__Q23ebi25E2DCallBack_CalcAnimationFv=0x803CFF04 -__dt__Q23ebi19E2DCallBack_AnmBaseFv=0x803CFF94 -__dt__Q23ebi16E2DCallBack_BaseFv=0x803D0040 -loadResource__Q33ebi6Option4TMgrFv=0x803D00C0 -setController__Q33ebi6Option4TMgrFP10Controller=0x803D0148 -start__Q33ebi6Option4TMgrFv=0x803D0194 -isFinish__Q33ebi6Option4TMgrFv=0x803D01D0 -goEnd___Q33ebi6Option4TMgrFv=0x803D01F8 -update__Q33ebi6Option4TMgrFv=0x803D0274 -draw__Q33ebi6Option4TMgrFv=0x803D0308 -getStateID__Q33ebi6Option4TMgrFv=0x803D0398 -do_update__Q23ebi25E2DCallBack_CalcAnimationFv=0x803D03F0 -update__Q23ebi16E2DCallBack_BaseFv=0x803D0440 -do_update__Q23ebi16E2DCallBack_BaseFv=0x803D0478 -draw__Q23ebi16E2DCallBack_BaseFR8GraphicsR14J2DGrafContext=0x803D047C -do_draw__Q23ebi16E2DCallBack_BaseFR8GraphicsR14J2DGrafContext=0x803D04B4 -init__Q24Game28FSMStateFPQ33ebi6Option4TMgrPQ24Game8StateArg=0x803D04B8 -exec__Q24Game28FSMStateFPQ33ebi6Option4TMgr=0x803D04BC -cleanup__Q24Game28FSMStateFPQ33ebi6Option4TMgr=0x803D04C0 -resume__Q24Game28FSMStateFPQ33ebi6Option4TMgr=0x803D04C4 -restart__Q24Game28FSMStateFPQ33ebi6Option4TMgr=0x803D04C8 -init__Q24Game32StateMachineFPQ33ebi6Option4TMgr=0x803D04CC -exec__Q24Game32StateMachineFPQ33ebi6Option4TMgr=0x803D04D0 -create__Q24Game32StateMachineFi=0x803D0508 -transit__Q24Game32StateMachineFPQ33ebi6Option4TMgriPQ24Game8StateArg=0x803D056C -registerState__Q24Game32StateMachineFPQ24Game28FSMState=0x803D0608 -do_update__Q23ebi20E2DCallBack_PurupuruFv=0x803D068C -do_update__Q23ebi26E2DCallBack_BlinkFontColorFv=0x803D06EC -do_update__Q23ebi22E2DCallBack_BlinkAlphaFv=0x803D09B8 -loadAnm__Q23ebi19E2DCallBack_AnmBaseFPcP10JKRArchivell=0x803D0AD0 -play__Q23ebi19E2DCallBack_AnmBaseFf10J3DAnmAttrb=0x803D0B98 -playBack__Q23ebi19E2DCallBack_AnmBaseFfb=0x803D0CA4 -stop__Q23ebi19E2DCallBack_AnmBaseFv=0x803D0DB4 -setStartFrame__Q23ebi19E2DCallBack_AnmBaseFv=0x803D0DC8 -setEndFrame__Q23ebi19E2DCallBack_AnmBaseFv=0x803D0E04 -setRandFrame__Q23ebi19E2DCallBack_AnmBaseFv=0x803D0E40 -getPlayFinRate__Q23ebi19E2DCallBack_AnmBaseFv=0x803D0F00 -do_update__Q23ebi19E2DCallBack_AnmBaseFv=0x803D0F54 -isFinish__Q23ebi19E2DCallBack_AnmBaseFv=0x803D0FB0 -do_update__Q23ebi24E2DCallBack_WindowCursorFv=0x803D0FB8 -init__Q33ebi9CardError15FSMStateMachineFPQ33ebi9CardError4TMgr=0x803D1104 -init__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg=0x803D1B30 -do_init__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg=0x803D1B5C -exec__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgr=0x803D1B60 -do_exec__Q33ebi9CardError8FSMStateFPQ33ebi9CardError4TMgr=0x803D1B8C -do_init__Q33ebi9CardError16FSMState_WarningFPQ33ebi9CardError4TMgrPQ24Game8StateArg=0x803D1B90 -do_exec__Q33ebi9CardError16FSMState_WarningFPQ33ebi9CardError4TMgr=0x803D1C14 -do_init__Q33ebi9CardError17FSMState_QuestionFPQ33ebi9CardError4TMgrPQ24Game8StateArg=0x803D1CB8 -do_exec__Q33ebi9CardError17FSMState_QuestionFPQ33ebi9CardError4TMgr=0x803D1CF4 -do_init__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgrPQ24Game8StateArg=0x803D1D8C -do_exec__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D1E00 -do_transitCardNoCard__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D2150 -transit__Q24Game31FSMStateFPQ33ebi9CardError4TMgriPQ24Game8StateArg=0x803D21B4 -do_transitCardIOError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D21E4 -do_transitCardWrongDevice__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D2248 -do_transitCardWrongSector__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D22AC -do_transitCardBroken__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D2310 -do_transitCardEncoding__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D2374 -do_transitCardNoFileSpace__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D23D8 -do_transitCardNoFileEntry__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D243C -do_transitCardFileOpenError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D24A0 -do_transitCardSerialNoError__Q33ebi9CardError20FSMState_CardRequestFPQ33ebi9CardError4TMgr=0x803D2504 -do_init__Q33ebi9CardError15FSMState_NoCardFPQ33ebi9CardError4TMgrPQ24Game8StateArg=0x803D256C -do_exec__Q33ebi9CardError15FSMState_NoCardFPQ33ebi9CardError4TMgr=0x803D25A0 -__ct__Q33ebi9CardError4TMgrFv=0x803D2650 -start__Q24Game35StateMachineFPQ33ebi9CardError4TMgriPQ24Game8StateArg=0x803D26E4 -__dt__Q33ebi6Screen11TMemoryCardFv=0x803D2718 -__ct__Q33ebi6Screen11TMemoryCardFv=0x803D2B78 -startSeq__Q33ebi9CardError4TMgrFQ43ebi9CardError4TMgr9enumStart=0x803D3040 -forceQuitSeq__Q33ebi9CardError4TMgrFv=0x803D33B8 -goEnd___Q33ebi9CardError4TMgrFQ43ebi9CardError4TMgr7enumEnd=0x803D3408 -checkAndTransitNoCard___Q33ebi9CardError4TMgrFv=0x803D344C -update__Q33ebi9CardError4TMgrFv=0x803D352C -draw__Q33ebi9CardError4TMgrFv=0x803D3598 -isGetEnd__Q33ebi9CardError4TMgrFv=0x803D35D4 -getStateID__Q33ebi9CardError4TMgrFv=0x803D3624 -init__Q24Game31FSMStateFPQ33ebi9CardError4TMgrPQ24Game8StateArg=0x803D367C -exec__Q24Game31FSMStateFPQ33ebi9CardError4TMgr=0x803D3680 -cleanup__Q24Game31FSMStateFPQ33ebi9CardError4TMgr=0x803D3684 -resume__Q24Game31FSMStateFPQ33ebi9CardError4TMgr=0x803D3688 -restart__Q24Game31FSMStateFPQ33ebi9CardError4TMgr=0x803D368C -init__Q24Game35StateMachineFPQ33ebi9CardError4TMgr=0x803D3690 -exec__Q24Game35StateMachineFPQ33ebi9CardError4TMgr=0x803D3694 -create__Q24Game35StateMachineFi=0x803D36CC -transit__Q24Game35StateMachineFPQ33ebi9CardError4TMgriPQ24Game8StateArg=0x803D3730 -registerState__Q24Game35StateMachineFPQ24Game31FSMState=0x803D37CC -setArchive__Q33ebi6Screen11TScreenBaseFP10JKRArchive=0x803D3850 -doSetArchive__Q33ebi6Screen11TScreenBaseFP10JKRArchive=0x803D388C -openScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen7ArgOpen=0x803D3890 -doOpenScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen7ArgOpen=0x803D38E8 -closeScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen8ArgClose=0x803D38EC -doCloseScreen__Q33ebi6Screen11TScreenBaseFPQ33ebi6Screen8ArgClose=0x803D3944 -killScreen__Q33ebi6Screen11TScreenBaseFv=0x803D3948 -isFinishScreen__Q33ebi6Screen11TScreenBaseFv=0x803D3988 -isWaitScreen__Q33ebi6Screen11TScreenBaseFv=0x803D3998 -isCloseScreen__Q33ebi6Screen11TScreenBaseFv=0x803D39AC -update__Q33ebi6Screen11TScreenBaseFv=0x803D39C0 -doUpdateStateClose__Q33ebi6Screen11TScreenBaseFv=0x803D3AAC -doUpdateStateWait__Q33ebi6Screen11TScreenBaseFv=0x803D3AB4 -doInitWaitState__Q33ebi6Screen11TScreenBaseFv=0x803D3ABC -doUpdateStateOpen__Q33ebi6Screen11TScreenBaseFv=0x803D3AC0 -draw__Q33ebi6Screen11TScreenBaseFv=0x803D3AC8 -doDraw__Q33ebi6Screen11TScreenBaseFv=0x803D3B00 -getName__Q33ebi6Screen11TScreenBaseFv=0x803D3B04 -doSetArchive__Q33ebi6Screen11TPressStartFP10JKRArchive=0x803D3B10 -doOpenScreen__Q33ebi6Screen11TPressStartFPQ33ebi6Screen7ArgOpen=0x803D3E34 -doCloseScreen__Q33ebi6Screen11TPressStartFPQ33ebi6Screen8ArgClose=0x803D3E5C -doUpdateStateWait__Q33ebi6Screen11TPressStartFv=0x803D3EA0 -doUpdateStateClose__Q33ebi6Screen11TPressStartFv=0x803D3F44 -doDraw__Q33ebi6Screen11TPressStartFv=0x803D404C -startLoop___Q33ebi6Screen11TPressStartFv=0x803D40CC -getName__Q33ebi6Screen11TPressStartFv=0x803D4238 -setData__Q43ebi6Screen10FileSelect22TScreenDataWindow_dataFlUlUlUlUlUlUl=0x803D4244 -__ct__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D4498 -loadResource__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D5348 -doSetArchive__Q43ebi6Screen10FileSelect11TMainScreenFP10JKRArchive=0x803D53F8 -doKillScreen__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D66DC -doOpenScreen__Q43ebi6Screen10FileSelect11TMainScreenFPQ33ebi6Screen7ArgOpen=0x803D67DC -doInitWaitState__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D6A60 -doCloseScreen__Q43ebi6Screen10FileSelect11TMainScreenFPQ33ebi6Screen8ArgClose=0x803D6C10 -doUpdateStateOpen__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D6CA8 -doUpdateStateWait__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D6D30 -doUpdateStateClose__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D704C -doDraw__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D7118 -inDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D748C -outDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D763C -decideDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D76E0 -createFiledecide__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D7784 -isFinishOutDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D78A8 -isFinishDecideDataBall__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D78D8 -createCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D7908 -fadeCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D79FC -moveLeftCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D7A4C -moveRightCopyCursor__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D7A5C -createFilecopyEffect__Q43ebi6Screen10FileSelect11TMainScreenFll=0x803D7A6C -fadeFilecopyEffect__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D7C4C -createFiledeletingEffect__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D7CA4 -fadeFiledeletingEffect__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D7DBC -openDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D7E14 -closeDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D812C -decideDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D8198 -isFinishCloseDataWindow__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D8204 -openMSG__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D8228 -closeMSG__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D84C8 -isFinishCloseMSG__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D8528 -setYesNo__Q43ebi6Screen10FileSelect11TMainScreenFb=0x803D8550 -updateMsg___Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D8614 -setMsgID___Q43ebi6Screen10FileSelect11TMainScreenFUxUxUx=0x803D8758 -inCopyErase__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D87A4 -outCopyErase__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D8830 -inYesNo___Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D88BC -outYesNo___Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D8948 -setDataBallCopyResult__Q43ebi6Screen10FileSelect11TMainScreenFll=0x803D89D4 -setDataBallNew__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D8B94 -setDataBallBroken__Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D8DE4 -initDataBalls___Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D8E7C -setColorTimgDataBall___Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D8EC8 -getDataBallColor___Q43ebi6Screen10FileSelect11TMainScreenFl=0x803D9418 -calcDataBallColor___Q43ebi6Screen10FileSelect11TMainScreenFUlUlUlUlUl=0x803D94E4 -setIconColorAlpha___Q43ebi6Screen10FileSelect11TMainScreenFUc=0x803D96A4 -__ct__Q43ebi6Screen10FileSelect9TFileDataFv=0x803D9724 -getName__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803D977C -__dt__Q35efx2d10FileSelect11T2DFileselMFv=0x803D9788 -__dt__Q35efx2d10FileSelect16T2DFiledeletingMFv=0x803D9824 -__dt__Q35efx2d10FileSelect15T2DFiledeletingFv=0x803D98A8 -__dt__Q35efx2d10FileSelect12T2DFilecopyMFv=0x803D992C -__dt__Q35efx2d10FileSelect11T2DFilecopyFv=0x803D99C8 -__ct__Q23ebi19E2DCallBack_AnmBaseFv=0x803D9A64 -set__Q23ebi26E2DCallBack_BlinkFontColorFRQ23ebi16E2DFullFontColorRQ23ebi16E2DFullFontColor=0x803D9AF8 -getName__Q25efx2d8ArgColorFv=0x803D9BFC -getName__Q35efx2d10FileSelect11ArgFilecopyFv=0x803D9C08 -__dt__Q35efx2d10FileSelect10T2DFileselFv=0x803D9C14 -@8@__dt__Q35efx2d10FileSelect11T2DFilecopyFv=0x803D9CB0 -@8@__dt__Q35efx2d10FileSelect12T2DFilecopyMFv=0x803D9CB8 -@8@__dt__Q35efx2d10FileSelect15T2DFiledeletingFv=0x803D9CC0 -@8@__dt__Q35efx2d10FileSelect16T2DFiledeletingMFv=0x803D9CC8 -@8@__dt__Q35efx2d10FileSelect10T2DFileselFv=0x803D9CD0 -@8@__dt__Q35efx2d10FileSelect11T2DFileselMFv=0x803D9CD8 -doSetArchive__Q33ebi6Screen10TTitleMenuFP10JKRArchive=0x803D9CE0 -doOpenScreen__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen7ArgOpen=0x803DA608 -doInitWaitState__Q33ebi6Screen10TTitleMenuFv=0x803DA824 -doCloseScreen__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen8ArgClose=0x803DA9E8 -doUpdateStateOpen__Q33ebi6Screen10TTitleMenuFv=0x803DAA58 -doUpdateStateWait__Q33ebi6Screen10TTitleMenuFv=0x803DAADC -doUpdateStateClose__Q33ebi6Screen10TTitleMenuFv=0x803DAF4C -doDraw__Q33ebi6Screen10TTitleMenuFv=0x803DB020 -setController__Q33ebi6Screen10TTitleMenuFP10Controller=0x803DB094 -openMenuSet__Q33ebi6Screen10TTitleMenuFPQ33ebi6Screen7ArgOpen=0x803DB09C -isDecide__Q33ebi6Screen10TTitleMenuFv=0x803DB0FC -isCancel__Q33ebi6Screen10TTitleMenuFv=0x803DB104 -showPika___Q33ebi6Screen10TTitleMenuFl=0x803DB10C -hidePika___Q33ebi6Screen10TTitleMenuFl=0x803DB148 -getName__Q33ebi6Screen10TTitleMenuFv=0x803DB184 -init__Q33ebi4Save15FSMStateMachineFPQ33ebi4Save4TMgr=0x803DB190 -init__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DB4DC -do_init__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DB508 -exec__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgr=0x803DB50C -do_exec__Q33ebi4Save8FSMStateFPQ33ebi4Save4TMgr=0x803DB538 -do_init__Q33ebi4Save18FSMState_DoYouSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DB53C -do_exec__Q33ebi4Save18FSMState_DoYouSaveFPQ33ebi4Save4TMgr=0x803DB588 -transit__Q24Game26FSMStateFPQ33ebi4Save4TMgriPQ24Game8StateArg=0x803DB6CC -do_init__Q33ebi4Save22FSMState_DoYouContinueFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DB6FC -do_exec__Q33ebi4Save22FSMState_DoYouContinueFPQ33ebi4Save4TMgr=0x803DB724 -do_init__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DB838 -do_exec__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DB844 -do_transitCardNoCard__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBAA8 -do_transitCardIOError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBAE4 -do_transitCardWrongDevice__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBB20 -do_transitCardWrongSector__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBB5C -do_transitCardBroken__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBB98 -do_transitCardEncoding__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBBD4 -do_transitCardNoFileSpace__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBC10 -do_transitCardNoFileEntry__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBC4C -do_transitCardFileOpenError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBC88 -do_transitCardSerialNoError__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBCC4 -do_transitCardPlayerDataBroken__Q33ebi4Save20FSMState_CardRequestFPQ33ebi4Save4TMgr=0x803DBD00 -do_cardRequest__Q33ebi4Save19FSMState_MountCheckFPQ33ebi4Save4TMgr=0x803DBD2C -do_transitCardReady__Q33ebi4Save19FSMState_MountCheckFPQ33ebi4Save4TMgr=0x803DBD54 -do_cardRequest__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr=0x803DBD88 -do_transitCardReady__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr=0x803DBDB4 -do_transitCardSerialNoError__Q33ebi4Save24FSMState_GetPlayerHeaderFPQ33ebi4Save4TMgr=0x803DBEAC -do_cardRequest__Q33ebi4Save24FSMState_CheckBeforeSaveFPQ33ebi4Save4TMgr=0x803DBEE4 -do_transitCardReady__Q33ebi4Save24FSMState_CheckBeforeSaveFPQ33ebi4Save4TMgr=0x803DBF0C -do_init__Q33ebi4Save16FSMState_NowSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DBF48 -do_exec__Q33ebi4Save16FSMState_NowSaveFPQ33ebi4Save4TMgr=0x803DC018 -do_init__Q33ebi4Save18FSMState_AfterSaveFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DC43C -do_exec__Q33ebi4Save18FSMState_AfterSaveFPQ33ebi4Save4TMgr=0x803DC48C -do_init__Q33ebi4Save18FSMState_CardErrorFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DC564 -do_exec__Q33ebi4Save18FSMState_CardErrorFPQ33ebi4Save4TMgr=0x803DC5CC -__dt__Q33ebi4Save4TMgrFv=0x803DC6D0 -__dt__Q33ebi9CardError4TMgrFv=0x803DC81C -createInstance__Q33ebi4Save4TMgrFv=0x803DC870 -onDvdErrorOccured__Q33ebi4Save4TMgrFv=0x803DC8B8 -onDvdErrorRecovered__Q33ebi4Save4TMgrFv=0x803DC910 -__ct__Q33ebi4Save4TMgrFv=0x803DC954 -start__Q24Game30StateMachineFPQ33ebi4Save4TMgriPQ24Game8StateArg=0x803DCA28 -__ct__Q33ebi6Screen9TSaveMenuFv=0x803DCA5C -start__Q33ebi4Save4TMgrFv=0x803DCBFC -forceQuit__Q33ebi4Save4TMgrFv=0x803DCC7C -isFinish__Q33ebi4Save4TMgrFv=0x803DCCE0 -goEnd___Q33ebi4Save4TMgrFQ43ebi4Save4TMgr7enumEnd=0x803DCD2C -update__Q33ebi4Save4TMgrFv=0x803DCD94 -draw__Q33ebi4Save4TMgrFv=0x803DCE2C -getStateID__Q33ebi4Save4TMgrFv=0x803DCE7C -init__Q24Game26FSMStateFPQ33ebi4Save4TMgrPQ24Game8StateArg=0x803DCED4 -exec__Q24Game26FSMStateFPQ33ebi4Save4TMgr=0x803DCED8 -cleanup__Q24Game26FSMStateFPQ33ebi4Save4TMgr=0x803DCEDC -resume__Q24Game26FSMStateFPQ33ebi4Save4TMgr=0x803DCEE0 -restart__Q24Game26FSMStateFPQ33ebi4Save4TMgr=0x803DCEE4 -init__Q24Game30StateMachineFPQ33ebi4Save4TMgr=0x803DCEE8 -exec__Q24Game30StateMachineFPQ33ebi4Save4TMgr=0x803DCEEC -create__Q24Game30StateMachineFi=0x803DCF24 -transit__Q24Game30StateMachineFPQ33ebi4Save4TMgriPQ24Game8StateArg=0x803DCF88 -registerState__Q24Game30StateMachineFPQ24Game26FSMState=0x803DD024 -doSetArchive__Q33ebi6Screen9TSaveMenuFP10JKRArchive=0x803DD0A8 -doOpenScreen__Q33ebi6Screen9TSaveMenuFPQ33ebi6Screen7ArgOpen=0x803DD3F8 -doCloseScreen__Q33ebi6Screen9TSaveMenuFPQ33ebi6Screen8ArgClose=0x803DD474 -doKillScreen__Q33ebi6Screen9TSaveMenuFv=0x803DD4D8 -doUpdateStateOpen__Q33ebi6Screen9TSaveMenuFv=0x803DD55C -doUpdateStateWait__Q33ebi6Screen9TSaveMenuFv=0x803DD638 -doUpdateStateClose__Q33ebi6Screen9TSaveMenuFv=0x803DD6AC -doDraw__Q33ebi6Screen9TSaveMenuFv=0x803DD780 -loadResource__Q33ebi6Screen9TSaveMenuFv=0x803DD9B4 -openMsg__Q33ebi6Screen9TSaveMenuFl=0x803DDA64 -closeMsg__Q33ebi6Screen9TSaveMenuFv=0x803DDAF8 -noMsg__Q33ebi6Screen9TSaveMenuFv=0x803DDB34 -isFinishMsg__Q33ebi6Screen9TSaveMenuFv=0x803DDB88 -startMsgState___Q33ebi6Screen9TSaveMenuFQ43ebi6Screen9TSaveMenu12enumMsgState=0x803DDB98 -updateMsg___Q33ebi6Screen9TSaveMenuFv=0x803DDF4C -getName__Q33ebi6Screen9TSaveMenuFv=0x803DE2B4 -init__Q33ebi2FS15FSMStateMachineFPQ33ebi2FS4TMgr=0x803DE2C0 -init__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DE870 -exec__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgr=0x803DE89C -do_init__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DE8C8 -do_exec__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgr=0x803DE938 -do_set__Q33ebi2FS21FSMState01_DataBrokenFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DEB3C -do_set__Q33ebi2FS22FSMState03_DoYouDeleteFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DEB9C -do_decide__Q33ebi2FS22FSMState03_DoYouDeleteFPQ33ebi2FS4TMgr=0x803DEBC0 -do_set__Q33ebi2FS25FSMState07_DoYouOverwriteFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DEBE4 -do_decide__Q33ebi2FS25FSMState07_DoYouOverwriteFPQ33ebi2FS4TMgr=0x803DEC08 -do_init__Q33ebi2FS16FSMState_WarningFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DEC40 -do_exec__Q33ebi2FS16FSMState_WarningFPQ33ebi2FS4TMgr=0x803DECA0 -do_open__Q33ebi2FS23FSMState05_FailToDeleteFPQ33ebi2FS4TMgr=0x803DED64 -do_transit__Q33ebi2FS23FSMState05_FailToDeleteFPQ33ebi2FS4TMgr=0x803DED8C -do_open__Q33ebi2FS23FSMState06_FinishDeleteFPQ33ebi2FS4TMgr=0x803DEDD0 -do_transit__Q33ebi2FS23FSMState06_FinishDeleteFPQ33ebi2FS4TMgr=0x803DEDF8 -do_open__Q33ebi2FS21FSMState08_FailToCopyFPQ33ebi2FS4TMgr=0x803DEE2C -do_transit__Q33ebi2FS21FSMState08_FailToCopyFPQ33ebi2FS4TMgr=0x803DEE54 -do_open__Q33ebi2FS21FSMState10_FinishCopyFPQ33ebi2FS4TMgr=0x803DEE98 -do_transit__Q33ebi2FS21FSMState10_FinishCopyFPQ33ebi2FS4TMgr=0x803DEEC0 -init__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DEEF4 -exec__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr=0x803DEF60 -do_transitCardPlayerDataBroken__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr=0x803DF220 -do_init__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DF254 -do_close__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr=0x803DF294 -do_cardRequest__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr=0x803DF2B8 -do_transitCardReady__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr=0x803DF2E4 -do_transitCardNoCard__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr=0x803DF344 -do_transitCardIOError__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr=0x803DF378 -cleanup__Q33ebi2FS20FSMState02_NowDeleteFPQ33ebi2FS4TMgr=0x803DF3AC -do_init__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DF3D0 -do_close__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr=0x803DF414 -do_cardRequest__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr=0x803DF438 -do_transitCardReady__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr=0x803DF46C -do_transitCardNoCard__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr=0x803DF4D0 -do_transitCardIOError__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr=0x803DF504 -cleanup__Q33ebi2FS18FSMState09_NowCopyFPQ33ebi2FS4TMgr=0x803DF538 -do_init__Q33ebi2FS21FSMState00a_OpenSceneFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DF55C -do_exec__Q33ebi2FS21FSMState00a_OpenSceneFPQ33ebi2FS4TMgr=0x803DF5A8 -do_init__Q33ebi2FS21FSMState00_SelectDataFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DF60C -do_exec__Q33ebi2FS21FSMState00_SelectDataFPQ33ebi2FS4TMgr=0x803DF6B8 -do_init__Q33ebi2FS21FSMState00b_CheckDataFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DF90C -do_exec__Q33ebi2FS21FSMState00b_CheckDataFPQ33ebi2FS4TMgr=0x803DF970 -do_init__Q33ebi2FS22FSMState00c_DecideDataFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DFB50 -do_exec__Q33ebi2FS22FSMState00c_DecideDataFPQ33ebi2FS4TMgr=0x803DFB8C -do_init__Q33ebi2FS31FSMState04_WhichDataDoYouCopyToFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803DFC40 -do_exec__Q33ebi2FS31FSMState04_WhichDataDoYouCopyToFPQ33ebi2FS4TMgr=0x803DFCF0 -__ct__Q33ebi2FS4TMgrFv=0x803DFF8C -setController__Q33ebi2FS4TMgrFP10Controller=0x803E0030 -perseInfo__Q33ebi2FS4TMgrFRQ34Game10MemoryCard14PlayerFileInfo=0x803E0078 -update__Q33ebi2FS4TMgrFv=0x803E0174 -draw__Q33ebi2FS4TMgrFv=0x803E020C -startSeq__Q33ebi2FS4TMgrFv=0x803E0254 -forceQuitSeq__Q33ebi2FS4TMgrFv=0x803E0298 -isFinish__Q33ebi2FS4TMgrFv=0x803E02F0 -goEnd___Q33ebi2FS4TMgrFQ43ebi2FS4TMgr7enumEnd=0x803E0318 -checkAndTransitNoCard___Q33ebi2FS4TMgrFv=0x803E0378 -getStateID__Q33ebi2FS4TMgrFv=0x803E0448 -do_init__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803E04A0 -do_exec__Q33ebi2FS8FSMStateFPQ33ebi2FS4TMgr=0x803E04A4 -do_decide__Q33ebi2FS20FSMState_SelectYesNoFPQ33ebi2FS4TMgr=0x803E04A8 -do_init__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803E04AC -do_close__Q33ebi2FS17FSMState_CardTaskFPQ33ebi2FS4TMgr=0x803E04B0 -transit__Q24Game24FSMStateFPQ33ebi2FS4TMgriPQ24Game8StateArg=0x803E04B4 -start__Q24Game28StateMachineFPQ33ebi2FS4TMgriPQ24Game8StateArg=0x803E04E4 -__dt__Q43ebi6Screen10FileSelect11TMainScreenFv=0x803E0518 -init__Q24Game24FSMStateFPQ33ebi2FS4TMgrPQ24Game8StateArg=0x803E110C -exec__Q24Game24FSMStateFPQ33ebi2FS4TMgr=0x803E1110 -cleanup__Q24Game24FSMStateFPQ33ebi2FS4TMgr=0x803E1114 -resume__Q24Game24FSMStateFPQ33ebi2FS4TMgr=0x803E1118 -restart__Q24Game24FSMStateFPQ33ebi2FS4TMgr=0x803E111C -init__Q24Game28StateMachineFPQ33ebi2FS4TMgr=0x803E1120 -exec__Q24Game28StateMachineFPQ33ebi2FS4TMgr=0x803E1124 -create__Q24Game28StateMachineFi=0x803E115C -transit__Q24Game28StateMachineFPQ33ebi2FS4TMgriPQ24Game8StateArg=0x803E11C0 -registerState__Q24Game28StateMachineFPQ24Game24FSMState=0x803E125C -init__Q33ebi10FileSelect15FSMStateMachineFPQ33ebi10FileSelect4TMgr=0x803E12E0 -init__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg=0x803E1528 -do_init__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg=0x803E1554 -exec__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgr=0x803E1558 -do_exec__Q33ebi10FileSelect8FSMStateFPQ33ebi10FileSelect4TMgr=0x803E1584 -do_init__Q33ebi10FileSelect20FSMState_EmptyUpdateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg=0x803E1588 -do_exec__Q33ebi10FileSelect20FSMState_EmptyUpdateFPQ33ebi10FileSelect4TMgr=0x803E1598 -transit__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg=0x803E15EC -do_init__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg=0x803E161C -do_exec__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1628 -do_transitCardNoCard__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E18A0 -do_transitCardIOError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E18DC -do_transitCardWrongDevice__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1918 -do_transitCardWrongSector__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1954 -do_transitCardBroken__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1990 -do_transitCardEncoding__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E19CC -do_transitCardNoFileSpace__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1A08 -do_transitCardNoFileEntry__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1A44 -do_transitCardFileOpenError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1A80 -do_transitCardPlayerDataBroken__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1ABC -do_transitCardSerialNoError__Q33ebi10FileSelect20FSMState_CardRequestFPQ33ebi10FileSelect4TMgr=0x803E1AE8 -do_cardRequest__Q33ebi10FileSelect19FSMState_MountCheckFPQ33ebi10FileSelect4TMgr=0x803E1B3C -do_transitCardReady__Q33ebi10FileSelect19FSMState_MountCheckFPQ33ebi10FileSelect4TMgr=0x803E1B64 -do_cardRequest__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr=0x803E1B98 -do_transitCardReady__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr=0x803E1BC4 -do_transitCardSerialNoError__Q33ebi10FileSelect24FSMState_GetPlayerHeaderFPQ33ebi10FileSelect4TMgr=0x803E1BF8 -do_init__Q33ebi10FileSelect25FSMState_ScreenFileSelectFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg=0x803E1C30 -do_exec__Q33ebi10FileSelect25FSMState_ScreenFileSelectFPQ33ebi10FileSelect4TMgr=0x803E1C74 -do_init__Q33ebi10FileSelect18FSMState_CardErrorFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg=0x803E1D38 -do_exec__Q33ebi10FileSelect18FSMState_CardErrorFPQ33ebi10FileSelect4TMgr=0x803E1D98 -start__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg=0x803E1E50 -__dt__Q33ebi2FS4TMgrFv=0x803E1E84 -__dt__Q33ebi10FileSelect4TMgrFv=0x803E1ED8 -createInstance__Q33ebi10FileSelect4TMgrFv=0x803E1F5C -onDvdErrorOccured__Q33ebi10FileSelect4TMgrFv=0x803E2038 -onDvdErrorRecovered__Q33ebi10FileSelect4TMgrFv=0x803E2090 -start__Q33ebi10FileSelect4TMgrFv=0x803E20D4 -forceQuit__Q33ebi10FileSelect4TMgrFv=0x803E2120 -update__Q33ebi10FileSelect4TMgrFv=0x803E2178 -draw__Q33ebi10FileSelect4TMgrFv=0x803E2204 -showInfo__Q33ebi10FileSelect4TMgrFv=0x803E2248 -isFinish__Q33ebi10FileSelect4TMgrFv=0x803E224C -goEnd___Q33ebi10FileSelect4TMgrFQ43ebi10FileSelect4TMgr7enumEnd=0x803E2298 -getStateID__Q33ebi10FileSelect4TMgrFv=0x803E22F4 -init__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgrPQ24Game8StateArg=0x803E234C -exec__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr=0x803E2350 -cleanup__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr=0x803E2354 -resume__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr=0x803E2358 -restart__Q24Game33FSMStateFPQ33ebi10FileSelect4TMgr=0x803E235C -init__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgr=0x803E2360 -exec__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgr=0x803E2364 -create__Q24Game37StateMachineFi=0x803E239C -transit__Q24Game37StateMachineFPQ33ebi10FileSelect4TMgriPQ24Game8StateArg=0x803E2400 -registerState__Q24Game37StateMachineFPQ24Game33FSMState=0x803E249C -do_open__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr=0x803E2520 -do_transit__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr=0x803E256C -do_transitOnCard__Q33ebi9CardError19FSMState_W00_NoCardFPQ33ebi9CardError4TMgr=0x803E25C4 -do_open__Q33ebi9CardError20FSMState_W01_IOErrorFPQ33ebi9CardError4TMgr=0x803E2610 -do_transit__Q33ebi9CardError20FSMState_W01_IOErrorFPQ33ebi9CardError4TMgr=0x803E2664 -do_open__Q33ebi9CardError24FSMState_W02_WrongDeviceFPQ33ebi9CardError4TMgr=0x803E26BC -do_transit__Q33ebi9CardError24FSMState_W02_WrongDeviceFPQ33ebi9CardError4TMgr=0x803E2710 -do_open__Q33ebi9CardError24FSMState_W03_WrongSectorFPQ33ebi9CardError4TMgr=0x803E2768 -do_transit__Q33ebi9CardError24FSMState_W03_WrongSectorFPQ33ebi9CardError4TMgr=0x803E27BC -do_open__Q33ebi9CardError25FSMState_W04_OverCapacityFPQ33ebi9CardError4TMgr=0x803E2814 -do_transit__Q33ebi9CardError25FSMState_W04_OverCapacityFPQ33ebi9CardError4TMgr=0x803E2868 -do_open__Q33ebi9CardError26FSMState_W05_InitCardOnIPLFPQ33ebi9CardError4TMgr=0x803E28CC -do_transit__Q33ebi9CardError26FSMState_W05_InitCardOnIPLFPQ33ebi9CardError4TMgr=0x803E2920 -do_open__Q33ebi9CardError26FSMState_W06_CardNotUsableFPQ33ebi9CardError4TMgr=0x803E2984 -do_transit__Q33ebi9CardError26FSMState_W06_CardNotUsableFPQ33ebi9CardError4TMgr=0x803E29D8 -do_open__Q33ebi9CardError26FSMState_W07_NoFileForSaveFPQ33ebi9CardError4TMgr=0x803E2A30 -do_transit__Q33ebi9CardError26FSMState_W07_NoFileForSaveFPQ33ebi9CardError4TMgr=0x803E2A84 -do_open__Q33ebi9CardError25FSMState_W08_FinishFormatFPQ33ebi9CardError4TMgr=0x803E2ADC -do_transit__Q33ebi9CardError25FSMState_W08_FinishFormatFPQ33ebi9CardError4TMgr=0x803E2B30 -do_open__Q33ebi9CardError32FSMState_W09_FinishCreateNewFileFPQ33ebi9CardError4TMgr=0x803E2B7C -do_transit__Q33ebi9CardError32FSMState_W09_FinishCreateNewFileFPQ33ebi9CardError4TMgr=0x803E2BD0 -do_open__Q33ebi9CardError26FSMState_W10_SerialNoErrorFPQ33ebi9CardError4TMgr=0x803E2C1C -do_transit__Q33ebi9CardError26FSMState_W10_SerialNoErrorFPQ33ebi9CardError4TMgr=0x803E2C80 -do_open__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCardFPQ33ebi9CardError4TMgr=0x803E2CDC -do_transit__Q33ebi9CardError32FSMState_WF0_FailToFormat_NoCardFPQ33ebi9CardError4TMgr=0x803E2D30 -do_open__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOErrorFPQ33ebi9CardError4TMgr=0x803E2D7C -do_transit__Q33ebi9CardError33FSMState_WF1_FailToFormat_IOErrorFPQ33ebi9CardError4TMgr=0x803E2DD0 -do_open__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCardFPQ33ebi9CardError4TMgr=0x803E2E1C -do_transit__Q33ebi9CardError39FSMState_WF2_FailToCreateNewFile_NoCardFPQ33ebi9CardError4TMgr=0x803E2E70 -do_open__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOErrorFPQ33ebi9CardError4TMgr=0x803E2EBC -do_transit__Q33ebi9CardError40FSMState_WF3_FailToCreateNewFile_IOErrorFPQ33ebi9CardError4TMgr=0x803E2F10 -do_open__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCardFPQ33ebi9CardError4TMgr=0x803E2F5C -do_transit__Q33ebi9CardError30FSMState_WF4_FailToSave_NoCardFPQ33ebi9CardError4TMgr=0x803E2FC0 -do_open__Q33ebi9CardError31FSMState_WF5_FailToSave_IOErrorFPQ33ebi9CardError4TMgr=0x803E300C -do_transit__Q33ebi9CardError31FSMState_WF5_FailToSave_IOErrorFPQ33ebi9CardError4TMgr=0x803E3070 -do_open__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr=0x803E30BC -do_transitYes__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr=0x803E3110 -do_transitNo__Q33ebi9CardError37FSMState_Q00_DataBrokenAndDoYouFormatFPQ33ebi9CardError4TMgr=0x803E3174 -do_open__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr=0x803E31D8 -do_transitYes__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr=0x803E322C -do_transitNo__Q33ebi9CardError25FSMState_Q01_DoYouOpenIPLFPQ33ebi9CardError4TMgr=0x803E3284 -do_open__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr=0x803E32DC -do_transitYes__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr=0x803E3330 -do_transitNo__Q33ebi9CardError24FSMState_Q02_DoYouFormatFPQ33ebi9CardError4TMgr=0x803E3394 -do_open__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr=0x803E33F8 -do_transitYes__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr=0x803E344C -do_transitNo__Q33ebi9CardError31FSMState_Q03_DoYouCreateNewFileFPQ33ebi9CardError4TMgr=0x803E34B0 -do_open__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr=0x803E3514 -do_transitYes__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr=0x803E3578 -do_transitNo__Q33ebi9CardError38FSMState_Q04_DoYouStartGameWithoutSaveFPQ33ebi9CardError4TMgr=0x803E35D4 -do_open__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr=0x803E3630 -do_transitYes__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr=0x803E3694 -do_transitNo__Q33ebi9CardError25FSMState_Q05_GameCantSaveFPQ33ebi9CardError4TMgr=0x803E36F0 -do_cardRequest__Q33ebi9CardError22FSMState_WN0_NowFormatFv=0x803E374C -do_open__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr=0x803E3774 -do_transitCardReady__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr=0x803E37C0 -do_transitCardNoCard__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr=0x803E37F4 -do_transitCardIOError__Q33ebi9CardError22FSMState_WN0_NowFormatFPQ33ebi9CardError4TMgr=0x803E3828 -do_open__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr=0x803E385C -do_cardRequest__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFv=0x803E38A8 -do_transitCardReady__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr=0x803E38D0 -do_transitCardNoCard__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr=0x803E3904 -do_transitCardIOError__Q33ebi9CardError29FSMState_WN1_NowCreateNewFileFPQ33ebi9CardError4TMgr=0x803E3938 -__ct__Q33ebi5title9TCoordMgrFv=0x803E396C -copyCoordinate__Q33ebi5title9TCoordMgrFP10Vector2=0x803E3B10 -readCoordinate__Q33ebi5title9TCoordMgrFP10JKRArchivePc=0x803E3C28 -readCoordinate__Q33ebi5title9TCoordMgrFR6Stream=0x803E3CA4 -setArchive__Q43ebi5title6Pikmin9TAnimatorFP10JKRArchive=0x803E3DE8 -__ct__Q43ebi5title6Pikmin4TMgrFv=0x803E40C0 -__dt__Q43ebi5title6Pikmin5TUnitFv=0x803E4258 -setArchive__Q43ebi5title6Pikmin4TMgrFP10JKRArchive=0x803E42CC -initUnit__Q43ebi5title6Pikmin4TMgrFv=0x803E43A4 -update__Q43ebi5title6Pikmin4TMgrFv=0x803E44C0 -setStartPos__Q43ebi5title6Pikmin4TMgrFP10Vector2=0x803E4668 -setDestPos__Q43ebi5title6Pikmin4TMgrFP10Vector2=0x803E47CC -forceArriveDest__Q43ebi5title6Pikmin4TMgrFv=0x803E4930 -assemble__Q43ebi5title6Pikmin4TMgrFv=0x803E49F0 -quickAssemble__Q43ebi5title6Pikmin4TMgrFv=0x803E4A78 -startBoid1__Q43ebi5title6Pikmin4TMgrFf=0x803E4B00 -startBoid2__Q43ebi5title6Pikmin4TMgrFf=0x803E4B90 -startBoid3__Q43ebi5title6Pikmin4TMgrFf=0x803E4C20 -startWindBlow__Q43ebi5title6Pikmin4TMgrFRQ23ebi8EGEBox2f=0x803E4CB0 -startDemo__Q43ebi5title6Pikmin4TMgrFv=0x803E4D4C -enemyPushOut__Q43ebi5title6Pikmin4TMgrFPQ33ebi5title8TObjBase=0x803E4DF8 -updateCalcBoid___Q43ebi5title6Pikmin4TMgrFv=0x803E4E64 -isAssemble__Q43ebi5title6Pikmin4TMgrFv=0x803E521C -getUnit__Q43ebi5title6Pikmin4TMgrFl=0x803E528C -init__Q43ebi5title6Pikmin5TUnitFPQ43ebi5title6Pikmin4TMgrl=0x803E529C -goDestination__Q43ebi5title6Pikmin5TUnitFv=0x803E55FC -beAttacked__Q43ebi5title6Pikmin5TUnitFv=0x803E5694 -alive__Q43ebi5title6Pikmin5TUnitFv=0x803E5700 -isCalc__Q43ebi5title6Pikmin5TUnitFv=0x803E570C -isAssemble__Q43ebi5title6Pikmin5TUnitFv=0x803E5720 -isWalk__Q43ebi5title6Pikmin5TUnitFv=0x803E5744 -startState__Q43ebi5title6Pikmin5TUnitFQ53ebi5title6Pikmin5TUnit9enumState=0x803E5768 -update__Q43ebi5title6Pikmin5TUnitFv=0x803E58B8 -updateSmoothWalk___Q43ebi5title6Pikmin5TUnitFR10Vector2=0x803E668C -updateEnemyReaction___Q43ebi5title6Pikmin5TUnitFv=0x803E688C -__ct__Q43ebi5title6Pikmin10TBoidParamFv=0x803E6BDC -__ct__Q43ebi5title6Pikmin5TUnitFv=0x803E6E14 -__ct__Q43ebi5title6Pikmin6TParamFv=0x803E6F10 -getCreatureType__Q43ebi5title6Pikmin5TUnitFv=0x803E7328 -__sinit_ebiP2TitlePikmin_cpp=0x803E7330 -__ct__Q43ebi5title6Kogane4TMgrFv=0x803E7358 -setArchive__Q43ebi5title6Kogane4TMgrFP10JKRArchive=0x803E74A0 -initUnit__Q43ebi5title6Kogane4TMgrFv=0x803E74F0 -__ct__Q43ebi5title6Kogane9TAnimatorFv=0x803E7518 -setArchive__Q43ebi5title6Kogane9TAnimatorFP10JKRArchive=0x803E7580 -setController__Q43ebi5title6Kogane5TUnitFP10Controller=0x803E769C -init__Q43ebi5title6Kogane5TUnitFPQ43ebi5title6Kogane4TMgr=0x803E76A4 -startZigzagWalk__Q43ebi5title6Kogane5TUnitFR10Vector2R10Vector2=0x803E7798 -goHome__Q43ebi5title6Kogane5TUnitFv=0x803E77E4 -outOfCalc__Q43ebi5title6Kogane5TUnitFv=0x803E7814 -isCalc__Q43ebi5title6Kogane5TUnitFv=0x803E7838 -isController__Q43ebi5title6Kogane5TUnitFv=0x803E784C -startState__Q43ebi5title6Kogane5TUnitFQ53ebi5title6Kogane5TUnit9enumState=0x803E7860 -update__Q43ebi5title6Kogane5TUnitFv=0x803E7B30 -__ct__Q43ebi5title6Kogane6TParamFv=0x803E8264 -getCreatureType__Q43ebi5title6Kogane5TUnitFv=0x803E8590 -getAnimRes__Q43ebi5title6Kogane11TAnimFolderFl=0x803E8598 -__ct__Q23ebi10E3DAnimResFv=0x803E85AC -__sinit_ebiP2TitleKogane_cpp=0x803E85B0 -__ct__Q43ebi5title6Chappy4TMgrFv=0x803E85D8 -setArchive__Q43ebi5title6Chappy4TMgrFP10JKRArchive=0x803E8728 -initUnit__Q43ebi5title6Chappy4TMgrFv=0x803E8778 -__ct__Q43ebi5title6Chappy9TAnimatorFv=0x803E87A0 -setArchive__Q43ebi5title6Chappy9TAnimatorFP10JKRArchive=0x803E8808 -setController__Q43ebi5title6Chappy5TUnitFP10Controller=0x803E8930 -init__Q43ebi5title6Chappy5TUnitFPQ43ebi5title6Chappy4TMgr=0x803E8938 -startZigzagWalk__Q43ebi5title6Chappy5TUnitFR10Vector2R10Vector2=0x803E8A2C -goHome__Q43ebi5title6Chappy5TUnitFv=0x803E8A80 -outOfCalc__Q43ebi5title6Chappy5TUnitFv=0x803E8AB0 -isCalc__Q43ebi5title6Chappy5TUnitFv=0x803E8AD4 -isController__Q43ebi5title6Chappy5TUnitFv=0x803E8AE8 -startAIState___Q43ebi5title6Chappy5TUnitFQ53ebi5title6Chappy5TUnit11enumAIState=0x803E8AFC -update__Q43ebi5title6Chappy5TUnitFv=0x803E8E14 -__ct__Q43ebi5title6Chappy6TParamFv=0x803E9878 -getCreatureType__Q43ebi5title6Chappy5TUnitFv=0x803E9C1C -getAnimRes__Q43ebi5title6Chappy11TAnimFolderFl=0x803E9C24 -__sinit_ebiP2TitleChappy_cpp=0x803E9C38 -doSetArchive__Q33ebi6Screen7TTMBackFP10JKRArchive=0x803E9C60 -doOpenScreen__Q33ebi6Screen7TTMBackFPQ33ebi6Screen7ArgOpen=0x803E9D14 -doCloseScreen__Q33ebi6Screen7TTMBackFPQ33ebi6Screen8ArgClose=0x803E9D84 -doUpdateStateOpen__Q33ebi6Screen7TTMBackFv=0x803E9DC8 -doUpdateStateWait__Q33ebi6Screen7TTMBackFv=0x803E9EA4 -doUpdateStateClose__Q33ebi6Screen7TTMBackFv=0x803E9ED8 -doDraw__Q33ebi6Screen7TTMBackFv=0x803E9FAC -doSetArchive__Q33ebi6Screen13TNintendoLogoFP10JKRArchive=0x803EA020 -doUpdateStateWait__Q33ebi6Screen13TNintendoLogoFv=0x803EA0B0 -doDraw__Q33ebi6Screen13TNintendoLogoFv=0x803EA0E4 -getName__Q33ebi6Screen13TNintendoLogoFv=0x803EA158 -getName__Q33ebi6Screen7TTMBackFv=0x803EA164 -__ct__Q23ebi13TMainTitleMgrFv=0x803EA170 -setMode__Q23ebi13TMainTitleMgrFl=0x803EA524 -loadResource__Q23ebi13TMainTitleMgrFv=0x803EA58C -setController__Q23ebi13TMainTitleMgrFP10Controller=0x803EA6B0 -start__Q23ebi13TMainTitleMgrFv=0x803EA6FC -startMenuSet__Q23ebi13TMainTitleMgrFll=0x803EA7BC -forceQuit__Q23ebi13TMainTitleMgrFv=0x803EA9AC -isFinish__Q23ebi13TMainTitleMgrFv=0x803EA9B8 -getSelectedMenu__Q23ebi13TMainTitleMgrFv=0x803EA9C8 -update__Q23ebi13TMainTitleMgrFv=0x803EA9D0 -draw__Q23ebi13TMainTitleMgrFv=0x803EAE80 -__ct__Q23ebi25E2DCallBack_CalcAnimationFv=0x803EB0F4 -__ct__Q33ebi6Screen22TTitleMenu_Object_IconFv=0x803EB164 -getName__Q33ebi6Screen8ArgCloseFv=0x803EB168 -getName__Q33ebi6Screen7ArgOpenFv=0x803EB174 -__sinit_ebiMainTitleMgr_cpp=0x803EB17C -setGX__Q33ebi5title12TTitleFogMgrFR6Camera=0x803EB1A4 -loadSettingFile__Q33ebi5title12TTitleFogMgrFP10JKRArchivePc=0x803EB2BC -__sinit_ebiP2TitleFog_cpp=0x803EB338 -create__Q23efx11TDangoCrashFPQ23efx3Arg=0x803EB360 -create__Q23efx10TDangoTurnFPQ23efx3Arg=0x803EB508 -setGlobalPrmColor__Q23efx9TKageMoveFR6Color4=0x803EB624 -setGlobalPrmColor__Q23efx8TKageRunFR6Color4=0x803EB654 -setGlobalPrmColor__Q23efx10TKageDead1FR6Color4=0x803EB684 -create__Q23efx10TKageDead2FPQ23efx3Arg=0x803EB6B4 -create__Q23efx13TOootaBombLegFPQ23efx3Arg=0x803EB780 -create__Q23efx10TOootaFireFPQ23efx3Arg=0x803EB8F4 -create__Q23efx13TKchFlickSandFPQ23efx3Arg=0x803EBA44 -create__Q23efx10TKchApSandFPQ23efx3Arg=0x803EBB98 -create__Q23efx9TKchApWatFPQ23efx3Arg=0x803EBCEC -setGlobalScale__Q23efx12TKchDiveSandFf=0x803EBE40 -setGlobalScale__Q23efx11TKchDiveWatFf=0x803EBE80 -setGlobalScale__Q23efx9TKchCryABFf=0x803EBEC0 -setGlobalScale__Q23efx10TKchCryIndFf=0x803EBEEC -create__Q23efx10TKchDamageFPQ23efx3Arg=0x803EBF04 -setGlobalScale__Q23efx13TKchSmokeHanaFf=0x803EC01C -create__Q23efx13TKchDownsmokeFPQ23efx3Arg=0x803EC034 -setGlobalScale__Q23efx12TKchDeadHanaFf=0x803EC104 -init__Q23efx27TParticleCallBack_KchYodareFP14JPABaseEmitterP15JPABaseParticle=0x803EC130 -execute__Q23efx27TParticleCallBack_KchYodareFP14JPABaseEmitterP15JPABaseParticle=0x803EC134 -create__Q23efx22TKchYodareBaseChaseMtxFPQ23efx3Arg=0x803EC2B0 -setGlobalScale__Q23efx22TKchYodareBaseChaseMtxFf=0x803EC3B8 -setPosNrm__Q23efx11THdamaSightFR10Vector3R10Vector3=0x803EC3D0 -create__Q23efx11THdamaShellFPQ23efx3Arg=0x803EC4D8 -create__Q23efx11THdamaHit2WFPQ23efx3Arg=0x803EC5A8 -create__Q23efx16THdamaDeadHahen1FPQ23efx3Arg=0x803EC764 -create__Q23efx16THdamaDeadHahen2FPQ23efx3Arg=0x803EC8D8 -setGlobalScale__Q23efx10TOdamaFur1Ff=0x803ECA64 -setGlobalScale__Q23efx10TOdamaFur2Ff=0x803ECA7C -__dt__Q23efx11THdamaShellFv=0x803ECA94 -@4@__dt__Q23efx22TKchYodareBaseChaseMtxFv=0x803ECB30 -@4@__dt__Q23efx11THdamaShellFv=0x803ECB38 -gCardEMgr_ThreadFunc__3ebiFPv=0x803ECB40 -CardE_uploadToGBA__Q23ebi11CardEReaderFlPUcUl=0x803ECB9C -__dt__Q33ebi11CardEReader4TMgrFv=0x803ECE10 -globalInstance__Q33ebi11CardEReader4TMgrFv=0x803ECE78 -loadResource__Q33ebi11CardEReader4TMgrFv=0x803ECEE4 -init__Q33ebi11CardEReader4TMgrFv=0x803ED000 -uploadToGBA__Q33ebi11CardEReader4TMgrFl=0x803ED03C -probeAGB__Q33ebi11CardEReader4TMgrFv=0x803ED058 -update__Q33ebi11CardEReader4TMgrFv=0x803ED070 -isFinish__Q33ebi11CardEReader4TMgrFv=0x803ED1C0 -threadProc__Q33ebi11CardEReader4TMgrFPv=0x803ED1D0 -tryUploadToGBA___Q33ebi11CardEReader4TMgrFv=0x803ED244 -goEnd___Q33ebi11CardEReader4TMgrFQ43ebi11CardEReader4TMgr7enumErr=0x803ED298 -__ct__Q33ebi6Screen6TOmakeFv=0x803ED2A8 -doSetArchive__Q33ebi6Screen6TOmakeFP10JKRArchive=0x803ED51C -doOpenScreen__Q33ebi6Screen6TOmakeFPQ33ebi6Screen7ArgOpen=0x803EDB0C -doCloseScreen__Q33ebi6Screen6TOmakeFPQ33ebi6Screen8ArgClose=0x803EE0FC -doInitWaitState__Q33ebi6Screen6TOmakeFv=0x803EE148 -doUpdateStateOpen__Q33ebi6Screen6TOmakeFv=0x803EE190 -doUpdateStateWait__Q33ebi6Screen6TOmakeFv=0x803EE214 -doUpdateStateClose__Q33ebi6Screen6TOmakeFv=0x803EE698 -doDraw__Q33ebi6Screen6TOmakeFv=0x803EE70C -setController__Q33ebi6Screen6TOmakeFP10Controller=0x803EE950 -showPanes___Q33ebi6Screen6TOmakeFv=0x803EE994 -hidePanes___Q33ebi6Screen6TOmakeFv=0x803EE9F8 -openFromMovie___Q33ebi6Screen6TOmakeFv=0x803EEA20 -openFromCardE___Q33ebi6Screen6TOmakeFv=0x803EEA74 -__ct__Q23ebi26E2DCallBack_BlinkFontColorFv=0x803EEB24 -getName__Q33ebi6Screen6TOmakeFv=0x803EEBE0 -init__Q33ebi5Omake15FSMStateMachineFPQ33ebi5Omake4TMgr=0x803EEBE8 -init__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg=0x803EEDB8 -exec__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgr=0x803EEDE4 -do_init__Q33ebi5Omake20FSMState_OmakeScreenFPQ33ebi5Omake4TMgrPQ24Game8StateArg=0x803EEE10 -do_exec__Q33ebi5Omake20FSMState_OmakeScreenFPQ33ebi5Omake4TMgr=0x803EEEEC -do_init__Q33ebi5Omake20FSMState_CardEScreenFPQ33ebi5Omake4TMgrPQ24Game8StateArg=0x803EEF94 -do_exec__Q33ebi5Omake20FSMState_CardEScreenFPQ33ebi5Omake4TMgr=0x803EEFC8 -do_init__Q33ebi5Omake19FSMState_SelectGameFPQ33ebi5Omake4TMgrPQ24Game8StateArg=0x803EF068 -do_exec__Q33ebi5Omake19FSMState_SelectGameFPQ33ebi5Omake4TMgr=0x803EF0B0 -__ct__Q33ebi5Omake4TMgrFv=0x803EF428 -loadResource__Q33ebi5Omake4TMgrFv=0x803EF4DC -newCardEMgrAndTask__Q33ebi5Omake4TMgrFv=0x803EF5C4 -start__Q33ebi5Omake4TMgrFv=0x803EF614 -goEnd___Q33ebi5Omake4TMgrFv=0x803EF650 -isFinish__Q33ebi5Omake4TMgrFv=0x803EF68C -update__Q33ebi5Omake4TMgrFv=0x803EF6B4 -draw__Q33ebi5Omake4TMgrFv=0x803EF794 -isMovieState__Q33ebi5Omake4TMgrFv=0x803EF814 -restartFromMovieState__Q33ebi5Omake4TMgrFv=0x803EF840 -getMovieID__Q33ebi5Omake4TMgrFv=0x803EF894 -getStateID__Q33ebi5Omake4TMgrFv=0x803EF89C -do_init__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg=0x803EF8F4 -do_exec__Q33ebi5Omake8FSMStateFPQ33ebi5Omake4TMgr=0x803EF8F8 -transit__Q24Game27FSMStateFPQ33ebi5Omake4TMgriPQ24Game8StateArg=0x803EF8FC -start__Q24Game31StateMachineFPQ33ebi5Omake4TMgriPQ24Game8StateArg=0x803EF92C -__dt__Q33ebi6Screen10TOmakeGameFv=0x803EF960 -__dt__Q33ebi6Screen11TOmakeCardEFv=0x803EFBD8 -__dt__Q33ebi6Screen6TOmakeFv=0x803EFEBC -init__Q24Game27FSMStateFPQ33ebi5Omake4TMgrPQ24Game8StateArg=0x803F00C4 -exec__Q24Game27FSMStateFPQ33ebi5Omake4TMgr=0x803F00C8 -cleanup__Q24Game27FSMStateFPQ33ebi5Omake4TMgr=0x803F00CC -resume__Q24Game27FSMStateFPQ33ebi5Omake4TMgr=0x803F00D0 -restart__Q24Game27FSMStateFPQ33ebi5Omake4TMgr=0x803F00D4 -init__Q24Game31StateMachineFPQ33ebi5Omake4TMgr=0x803F00D8 -exec__Q24Game31StateMachineFPQ33ebi5Omake4TMgr=0x803F00DC -create__Q24Game31StateMachineFi=0x803F0114 -transit__Q24Game31StateMachineFPQ33ebi5Omake4TMgriPQ24Game8StateArg=0x803F0178 -registerState__Q24Game31StateMachineFPQ24Game27FSMState=0x803F0214 -getName__Q33ebi6Screen12ArgOpenOmakeFv=0x803F0298 -__ct__Q33ebi6Screen11TOmakeCardEFv=0x803F02A4 -doSetArchive__Q33ebi6Screen11TOmakeCardEFP10JKRArchive=0x803F0558 -doOpenScreen__Q33ebi6Screen11TOmakeCardEFPQ33ebi6Screen7ArgOpen=0x803F07E8 -doCloseScreen__Q33ebi6Screen11TOmakeCardEFPQ33ebi6Screen8ArgClose=0x803F08A4 -doInitWaitState__Q33ebi6Screen11TOmakeCardEFv=0x803F08F4 -doUpdateStateOpen__Q33ebi6Screen11TOmakeCardEFv=0x803F0930 -doUpdateStateWait__Q33ebi6Screen11TOmakeCardEFv=0x803F0984 -doUpdateStateClose__Q33ebi6Screen11TOmakeCardEFv=0x803F0C20 -doDraw__Q33ebi6Screen11TOmakeCardEFv=0x803F0C74 -getName__Q33ebi6Screen11TOmakeCardEFv=0x803F0CE8 -__ct__Q33ebi6Screen10TOmakeGameFv=0x803F0CF4 -doSetArchive__Q33ebi6Screen10TOmakeGameFP10JKRArchive=0x803F0F6C -doOpenScreen__Q33ebi6Screen10TOmakeGameFPQ33ebi6Screen7ArgOpen=0x803F1260 -doCloseScreen__Q33ebi6Screen10TOmakeGameFPQ33ebi6Screen8ArgClose=0x803F14F4 -doUpdateStateOpen__Q33ebi6Screen10TOmakeGameFv=0x803F1530 -doUpdateStateWait__Q33ebi6Screen10TOmakeGameFv=0x803F1584 -doUpdateStateClose__Q33ebi6Screen10TOmakeGameFv=0x803F17DC -doDraw__Q33ebi6Screen10TOmakeGameFv=0x803F1830 -setController__Q33ebi6Screen10TOmakeGameFP10Controller=0x803F18A4 -isDelegateControl__Q33ebi6Screen10TOmakeGameFv=0x803F18E8 -setSelfControl__Q33ebi6Screen10TOmakeGameFv=0x803F1930 -openMsg__Q33ebi6Screen10TOmakeGameFl=0x803F196C -getName__Q33ebi6Screen10TOmakeGameFv=0x803F1A74 -__dt__Q29P2DScreen3MgrFv=0x803F1A80 -__dt__Q32kh6Screen14khUtilFadePaneFv=0x803F1B04 -fadeout_finish__Q32kh6Screen16khUtilFadePaneWMFv=0x803F1BA0 -__dt__Q32kh6Screen14khUtilColorAnmFv=0x803F1BF8 -do_update__Q32kh6Screen16khUtilColorAnmWMFv=0x803F1C78 -__ct__Q32kh6Screen8WorldMapFv=0x803F1CF4 -__dt__Q34Game8WorldMap4BaseFv=0x803F1EDC -init__Q32kh6Screen8WorldMapFRQ34Game8WorldMap7InitArg=0x803F1F3C -loadResource__Q32kh6Screen8WorldMapFv=0x803F2008 -__dt__Q42kh6Screen8WorldMap13OnyonDynamicsFv=0x803F3798 -update__Q32kh6Screen8WorldMapFRQ34Game8WorldMap9UpdateArg=0x803F37D4 -draw1st__Q32kh6Screen8WorldMapFR8Graphics=0x803F53F4 -draw2nd__Q32kh6Screen8WorldMapFR8Graphics=0x803F558C -draw3rd__Q32kh6Screen8WorldMapFR8Graphics=0x803F55F0 -draw4th__Q32kh6Screen8WorldMapFR8Graphics=0x803F5890 -rocketMove__Q32kh6Screen8WorldMapFP7J2DPaneb=0x803F59A0 -rocketUpdate__Q32kh6Screen8WorldMapFP7J2DPane=0x803F5CD0 -onyonMove__Q32kh6Screen8WorldMapFv=0x803F60D4 -onyonUpdate__Q32kh6Screen8WorldMapFv=0x803F6164 -postureControl__Q32kh6Screen8WorldMapFP7J2DPane=0x803F61CC -changeState__Q32kh6Screen8WorldMapFv=0x803F63C0 -tag2num__Q32kh6Screen8WorldMapFUx=0x803F65F0 -finish__Q32kh6Screen8WorldMapFv=0x803F66B0 -newMapOpen__Q32kh6Screen8WorldMapFv=0x803F673C -getTarget__Q32kh6Screen8WorldMapFv=0x803F67B8 -getRotDir__Q32kh6Screen8WorldMapFRCQ29JGeometry8TVec2f=0x803F68F4 -changeInfo__Q32kh6Screen8WorldMapFv=0x803F6A68 -effectFirstTime__Q32kh6Screen8WorldMapFv=0x803F74B4 -__ct__Q42kh6Screen8WorldMap13OnyonDynamicsFv=0x803F7A04 -initPtcl__Q42kh6Screen8WorldMap13OnyonDynamicsFv=0x803F7A48 -move__Q42kh6Screen8WorldMap13OnyonDynamicsFPQ32kh6Screen8WorldMapRCQ29JGeometry8TVec2=0x803F7B40 -update__Q42kh6Screen8WorldMap13OnyonDynamicsFPQ32kh6Screen8WorldMap=0x803F7F98 -kill__Q42kh6Screen8WorldMap13OnyonDynamicsFv=0x803F80C4 -getName__Q35efx2d8WorldMap11ArgDirScaleFv=0x803F80F4 -__dt__Q35efx2d8WorldMap10T2DShstar1Fv=0x803F8100 -__dt__Q35efx2d8WorldMap11T2DMapFlareFv=0x803F819C -__dt__Q35efx2d8WorldMap13T2DRocketGlowFv=0x803F8238 -__dt__Q32kh6Screen8WorldMapFv=0x803F82D4 -draw__Q34Game8WorldMap4BaseFR8Graphics=0x803F8344 -__dt__Q32kh6Screen16khUtilColorAnmWMFv=0x803F8348 -__dt__Q32kh6Screen16khUtilFadePaneWMFv=0x803F83D8 -fadein_finish__Q32kh6Screen14khUtilFadePaneFv=0x803F8484 -__dt__Q42kh6Screen14khUtilFadePane10khPaneNodeFv=0x803F8488 -__sinit_khWorldMap_cpp=0x803F84D0 -__ct__Q29JGeometry8TVec2Fv=0x803F8678 -@8@__dt__Q35efx2d8WorldMap13T2DRocketGlowFv=0x803F867C -@8@__dt__Q35efx2d8WorldMap11T2DMapFlareFv=0x803F8684 -@8@__dt__Q35efx2d8WorldMap10T2DShstar1Fv=0x803F868C -__ct__Q32kh6Screen14DispCaveResultFPQ34Game6Result5TNodeUlUlUlUlbP7JKRHeapb=0x803F8694 -init__Q32kh6Screen14DispCaveResultFPQ34Game6Result5TNodeUlb=0x803F8710 -__ct__Q32kh6Screen13ObjCaveResultFv=0x803F87BC -doCreate__Q32kh6Screen13ObjCaveResultFP10JKRArchive=0x803F88F0 -doUpdate__Q32kh6Screen13ObjCaveResultFv=0x803F93F8 -doDraw__Q32kh6Screen13ObjCaveResultFR8Graphics=0x803F9744 -doUpdateFadein__Q32kh6Screen13ObjCaveResultFv=0x803F9EA4 -doUpdateFadeinFinish__Q32kh6Screen13ObjCaveResultFv=0x803F9F0C -doUpdateFadeout__Q32kh6Screen13ObjCaveResultFv=0x803F9F20 -statusNormal__Q32kh6Screen13ObjCaveResultFv=0x803F9F8C -statusScrollUp__Q32kh6Screen13ObjCaveResultFv=0x803FA168 -statusScrollDown__Q32kh6Screen13ObjCaveResultFv=0x803FA25C -statusForceScroll__Q32kh6Screen13ObjCaveResultFv=0x803FA350 -statusDrumRoll__Q32kh6Screen13ObjCaveResultFv=0x803FA640 -statusAllMoney__Q32kh6Screen13ObjCaveResultFv=0x803FA65C -statusDecP__Q32kh6Screen13ObjCaveResultFv=0x803FA71C -statusLost__Q32kh6Screen13ObjCaveResultFv=0x803FA804 -statusEffect__Q32kh6Screen13ObjCaveResultFv=0x803FA914 -updateAnimation__Q32kh6Screen13ObjCaveResultFv=0x803FAAE8 -setAlpha__Q32kh6Screen13ObjCaveResultFiUc=0x803FB04C -pikminSE__Q32kh6Screen13ObjCaveResultFv=0x803FB0C4 -__ct__Q32kh6Screen8LostItemFv=0x803FB188 -__ct__Q32kh6Screen11LostItemMgrFi=0x803FB1C0 -init__Q32kh6Screen11LostItemMgrFRCQ29JGeometry8TVec2b=0x803FB240 -update__Q32kh6Screen11LostItemMgrFv=0x803FB62C -draw__Q32kh6Screen11LostItemMgrFPQ29P2DScreen10Mgr_tuningUxPC7ResTIMGR8Graphics=0x803FB734 -doUserCallBackFunc__Q32kh6Screen15SceneCaveResultFPQ28Resource10MgrCommand=0x803FB8A4 -getResName__Q32kh6Screen15SceneCaveResultCFv=0x803FB948 -getSceneType__Q32kh6Screen15SceneCaveResultFv=0x803FB950 -getOwnerID__Q32kh6Screen15SceneCaveResultFv=0x803FB958 -getMemberID__Q32kh6Screen15SceneCaveResultFv=0x803FB960 -doCreateObj__Q32kh6Screen15SceneCaveResultFP10JKRArchive=0x803FB970 -__dt__Q32kh6Screen13ObjCaveResultFv=0x803FB974 -getSize__Q32kh6Screen14DispCaveResultFv=0x803FBA20 -getOwnerID__Q32kh6Screen14DispCaveResultFv=0x803FBA28 -getMemberID__Q32kh6Screen14DispCaveResultFv=0x803FBA30 -__sinit_khCaveResult_cpp=0x803FBA40 -@24@__dt__Q32kh6Screen13ObjCaveResultFv=0x803FBACC -createScene_Koono__Q22kh6ScreenFl=0x803FBAD4 -getResName__Q32kh6Screen21SceneDayEndResultTitlCFv=0x803FBCCC -getSceneType__Q32kh6Screen21SceneDayEndResultTitlFv=0x803FBCD8 -getOwnerID__Q32kh6Screen21SceneDayEndResultTitlFv=0x803FBCE0 -getMemberID__Q32kh6Screen21SceneDayEndResultTitlFv=0x803FBCE8 -doCreateObj__Q32kh6Screen21SceneDayEndResultTitlFP10JKRArchive=0x803FBCFC -getResName__Q32kh6Screen12SceneWinLoseCFv=0x803FBD54 -getSceneType__Q32kh6Screen12SceneWinLoseFv=0x803FBD60 -getOwnerID__Q32kh6Screen12SceneWinLoseFv=0x803FBD68 -getMemberID__Q32kh6Screen12SceneWinLoseFv=0x803FBD70 -doCreateObj__Q32kh6Screen12SceneWinLoseFP10JKRArchive=0x803FBD84 -getResName__Q32kh6Screen21SceneDayEndResultIncPCFv=0x803FBDDC -getSceneType__Q32kh6Screen21SceneDayEndResultIncPFv=0x803FBDE8 -getOwnerID__Q32kh6Screen21SceneDayEndResultIncPFv=0x803FBDF0 -getMemberID__Q32kh6Screen21SceneDayEndResultIncPFv=0x803FBDF8 -doCreateObj__Q32kh6Screen21SceneDayEndResultIncPFP10JKRArchive=0x803FBE0C -getResName__Q32kh6Screen21SceneDayEndResultItemCFv=0x803FBE64 -getSceneType__Q32kh6Screen21SceneDayEndResultItemFv=0x803FBE70 -getOwnerID__Q32kh6Screen21SceneDayEndResultItemFv=0x803FBE78 -getMemberID__Q32kh6Screen21SceneDayEndResultItemFv=0x803FBE80 -doCreateObj__Q32kh6Screen21SceneDayEndResultItemFP10JKRArchive=0x803FBE94 -create__Q26Screen9Game2DMgrFv=0x803FBEEC -__ct__Q26Screen9Game2DMgrFv=0x803FBF4C -__dt__Q26Screen9Game2DMgrFv=0x803FBFA4 -initInCourse__Q26Screen9Game2DMgrFv=0x803FC00C -update__Q26Screen9Game2DMgrFv=0x803FC02C -draw__Q26Screen9Game2DMgrFR8Graphics=0x803FC050 -drawIndirect__Q26Screen9Game2DMgrFR8Graphics=0x803FC074 -setGamePad__Q26Screen9Game2DMgrFP10Controller=0x803FC078 -setDispMember__Q26Screen9Game2DMgrFPQ32og6Screen14DispMemberBase=0x803FC09C -setToumeiBG__Q26Screen9Game2DMgrFv=0x803FC0D0 -open_GameGround__Q26Screen9Game2DMgrFRQ32og6Screen16DispMemberGround=0x803FC108 -is_GameGround__Q26Screen9Game2DMgrFv=0x803FC1C4 -open_GameCave__Q26Screen9Game2DMgrFRQ32og6Screen14DispMemberCavei=0x803FC224 -is_GameCave__Q26Screen9Game2DMgrFv=0x803FC3D8 -open_GameVs__Q26Screen9Game2DMgrFRQ32og6Screen12DispMemberVsi=0x803FC438 -check_VsStatus__Q26Screen9Game2DMgrFv=0x803FC5D8 -open_GameChallenge2P__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberChallenge2Pi=0x803FC674 -open_GameChallenge1P__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberChallenge1Pi=0x803FC9A8 -open_SMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberSMenuAll=0x803FCCD0 -open_SMenu_Sub__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberSMenuAll=0x803FCD80 -check_SMenu__Q26Screen9Game2DMgrFv=0x803FCF30 -open_WorldMapInfoWin0__Q26Screen9Game2DMgrFRQ32og6Screen26DispMemberWorldMapInfoWin0=0x803FD058 -check_WorldMapInfoWin0__Q26Screen9Game2DMgrCFv=0x803FD100 -open_WorldMapInfoWin1__Q26Screen9Game2DMgrFRQ32og6Screen26DispMemberWorldMapInfoWin1=0x803FD17C -check_WorldMapInfoWin1__Q26Screen9Game2DMgrCFv=0x803FD224 -open_Kantei__Q26Screen9Game2DMgrFRQ32og6Screen16DispMemberKantei=0x803FD2A0 -close_Kantei__Q26Screen9Game2DMgrFv=0x803FD3C4 -update_Kantei__Q26Screen9Game2DMgrFv=0x803FD448 -open_SpecialItem__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberSpecialItem=0x803FD4BC -close_SpecialItem__Q26Screen9Game2DMgrFv=0x803FD54C -open_Floor__Q26Screen9Game2DMgrFRQ32og6Screen15DispMemberFloor=0x803FD5D0 -close_Floor__Q26Screen9Game2DMgrFv=0x803FD660 -set_FloorVS_LoadEnd__Q26Screen9Game2DMgrFv=0x803FD6D0 -startCount_Floor__Q26Screen9Game2DMgrFv=0x803FD72C -startFadeBG_Floor__Q26Screen9Game2DMgrFv=0x803FD774 -open_CourseName__Q26Screen9Game2DMgrFRQ32og6Screen20DispMemberCourseName=0x803FD7BC -startFadeBG_CourseName__Q26Screen9Game2DMgrFv=0x803FD84C -close_CourseName__Q26Screen9Game2DMgrFv=0x803FD894 -startCount_CourseName__Q26Screen9Game2DMgrFv=0x803FD904 -open_GameOver__Q26Screen9Game2DMgrFQ36Screen9Game2DMgr13GameOverTitle=0x803FD94C -close_GameOver__Q26Screen9Game2DMgrFv=0x803FDBA4 -open_CaveInMenu__Q26Screen9Game2DMgrFRQ32og6Screen17DispMemberAnaDemo=0x803FDC50 -check_CaveInMenu__Q26Screen9Game2DMgrFv=0x803FDD30 -open_KanketuMenu__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberKanketuMenu=0x803FDDCC -open_ChallengeKanketuMenu__Q26Screen9Game2DMgrFRQ32og6Screen21DispMemberKanketuMenu=0x803FDEAC -check_KanketuMenu__Q26Screen9Game2DMgrFv=0x803FDFA0 -open_CaveMoreMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberCaveMore=0x803FE03C -check_CaveMoreMenu__Q26Screen9Game2DMgrFv=0x803FE13C -open_FinalResult__Q26Screen9Game2DMgrFRQ32kh6Screen15DispFinalResult=0x803FE1D8 -check_FinalResult__Q26Screen9Game2DMgrCFv=0x803FE284 -open_CaveResult__Q26Screen9Game2DMgrFRQ32kh6Screen14DispCaveResult=0x803FE310 -check_CaveResult__Q26Screen9Game2DMgrCFv=0x803FE3B8 -open_DayEndResult__Q26Screen9Game2DMgrFRQ32kh6Screen16DispDayEndResult=0x803FE444 -check_DayEndResult__Q26Screen9Game2DMgrCFv=0x803FE4F0 -open_PayDept__Q26Screen9Game2DMgrFRQ32kh6Screen11DispPayDept=0x803FE5A0 -check_PayDept__Q26Screen9Game2DMgrCFv=0x803FE648 -open_Save__Q26Screen9Game2DMgrFRQ32og6Screen14DispMemberSave=0x803FE6A4 -check_Save__Q26Screen9Game2DMgrCFv=0x803FE74C -open_FinalMessage__Q26Screen9Game2DMgrFRQ32og6Screen22DispMemberFinalMessage=0x803FE7A8 -check_FinalMessage__Q26Screen9Game2DMgrCFv=0x803FE850 -stopFinalFloorSound__Q26Screen9Game2DMgrFv=0x803FE898 -restartFinalFloorSound__Q26Screen9Game2DMgrFv=0x803FE908 -check_ReadyGo__Q26Screen9Game2DMgrCFv=0x803FE978 -open_WinLoseReason__Q26Screen9Game2DMgrFRQ32kh6Screen17DispWinLoseReason=0x803FEA08 -check_WinLoseReason__Q26Screen9Game2DMgrCFv=0x803FEAB0 -open_WinLose__Q26Screen9Game2DMgrFRQ32kh6Screen11DispWinLose=0x803FEB18 -check_WinLose__Q26Screen9Game2DMgrCFv=0x803FEBC0 -open_TimeUp1P__Q26Screen9Game2DMgrFv=0x803FEC50 -open_TimeUp2P__Q26Screen9Game2DMgrFv=0x803FED24 -open_Contena__Q26Screen9Game2DMgrFRQ32og6Screen17DispMemberContena=0x803FEDF8 -check_Contena__Q26Screen9Game2DMgrFv=0x803FEF50 -result_Contena__Q26Screen9Game2DMgrFv=0x803FF018 -open_UfoMenu__Q26Screen9Game2DMgrFRQ32og6Screen18DispMemberUfoGroup=0x803FF0C0 -check_UfoMenu__Q26Screen9Game2DMgrFv=0x803FF304 -result_UfoMenu__Q26Screen9Game2DMgrFPiPi=0x803FF434 -open_ZukanEnemy__Q26Screen9Game2DMgrFRQ28Morimura20DispMemberZukanEnemy=0x803FF4CC -open_ZukanItem__Q26Screen9Game2DMgrFRQ28Morimura19DispMemberZukanItem=0x803FF568 -isZukanEnemy__Q26Screen9Game2DMgrFv=0x803FF604 -isZukanItem__Q26Screen9Game2DMgrFv=0x803FF634 -check_ZukanItemRequest__Q26Screen9Game2DMgrFRi=0x803FF664 -check_ZukanEnemyRequest__Q26Screen9Game2DMgrFRi=0x803FF6E8 -getZukanEnemyCurrSelectId__Q26Screen9Game2DMgrFv=0x803FF76C -getZukanItemCurrSelectId__Q26Screen9Game2DMgrFv=0x803FF7FC -requireZukanRequest__Q26Screen9Game2DMgrFv=0x803FF88C -requireZukanEffectOff__Q26Screen9Game2DMgrFv=0x803FF948 -isZukanEnlargedWindow__Q26Screen9Game2DMgrFv=0x803FFA04 -isZukanMemoWindow__Q26Screen9Game2DMgrFv=0x803FFAE8 -isAppearConfirmWindow__Q26Screen9Game2DMgrFv=0x803FFBCC -open_ChallengeSelect__Q26Screen9Game2DMgrFRQ28Morimura25DispMemberChallengeSelect=0x803FFC90 -check_ChallengeSelect__Q26Screen9Game2DMgrFRiRi=0x803FFD2C -open_ChallengeResult__Q26Screen9Game2DMgrFRQ28Morimura25DispMemberChallengeResult=0x803FFD98 -isEndChallengeResult__Q26Screen9Game2DMgrFv=0x803FFE34 -open_VsSelect__Q26Screen9Game2DMgrFRQ28Morimura18DispMemberVsSelect=0x803FFE68 -check_VsSelect__Q26Screen9Game2DMgrFRiRiRi=0x803FFF04 -open_HighScore__Q26Screen9Game2DMgrFRQ28Morimura19DispMemberHighScore=0x803FFF7C -isEndHighScore__Q26Screen9Game2DMgrFv=0x80400018 -drawKanteiMsg__Q26Screen9Game2DMgrFR8Graphics=0x80400070 -checkDayEnd__Q26Screen9Game2DMgrCFf=0x804000DC -getClassSize__Q26Screen11EndSceneArgFv=0x80400168 -getSceneType__Q32og9newScreen15SArgChallenge1PCFv=0x80400170 -getClassSize__Q32og9newScreen15SArgChallenge1PFv=0x80400178 -getSceneType__Q32og9newScreen15SArgChallenge2PCFv=0x80400180 -getClassSize__Q32og9newScreen15SArgChallenge2PFv=0x80400188 -getSize__Q32kh6Screen11DispReadyGoFv=0x80400190 -getOwnerID__Q32kh6Screen11DispReadyGoFv=0x80400198 -getMemberID__Q32kh6Screen11DispReadyGoFv=0x804001A0 -getSize__Q32kh6Screen14DispFinalFloorFv=0x804001B4 -getOwnerID__Q32kh6Screen14DispFinalFloorFv=0x804001BC -getMemberID__Q32kh6Screen14DispFinalFloorFv=0x804001C4 -createScene_Ogawa__9newScreenFl=0x804001D8 -createScene_Morimura__9newScreenFl=0x804005A4 -doGetSceneBase__Q29newScreen3MgrFl=0x804008EC -create__Q29newScreen3MgrFv=0x8040093C -__dt__Q26Screen3MgrFv=0x804009E8 -drawBG__Q29newScreen3MgrFR8Graphics=0x80400A98 -reset__Q29newScreen3MgrFv=0x80400C38 -__dt__Q29newScreen3MgrFv=0x80400C9C -setColorBG__Q29newScreen3MgrFRQ28JUtility6TColor=0x80400D5C -setBGMode__Q29newScreen3MgrFi=0x80400D80 -drawWipe__Q26Screen3MgrFR8Graphics=0x80400D88 -__dt__Q26Screen7MgrBaseFv=0x80400D8C -getResName__Q28Morimura16TPikminDownSceneCFv=0x80400DEC -doCreateObj__Q28Morimura16TPikminDownSceneFP10JKRArchive=0x80400DF8 -isUseBackupSceneInfo__Q28Morimura16TPikminDownSceneFv=0x80400E78 -getSceneType__Q28Morimura16TPikminDownSceneFv=0x80400E80 -getOwnerID__Q28Morimura16TPikminDownSceneFv=0x80400E88 -getMemberID__Q28Morimura16TPikminDownSceneFv=0x80400E94 -getResName__Q28Morimura19TPresidentDownSceneCFv=0x80400EA8 -doCreateObj__Q28Morimura19TPresidentDownSceneFP10JKRArchive=0x80400EB4 -getSceneType__Q28Morimura19TPresidentDownSceneFv=0x80400F34 -getOwnerID__Q28Morimura19TPresidentDownSceneFv=0x80400F3C -getMemberID__Q28Morimura19TPresidentDownSceneFv=0x80400F48 -isUseBackupSceneInfo__Q28Morimura18TGameOverSceneBaseFv=0x80400F5C -getResName__Q28Morimura14TLujiDownSceneCFv=0x80400FA8 -doCreateObj__Q28Morimura14TLujiDownSceneFP10JKRArchive=0x80400FB4 -getSceneType__Q28Morimura14TLujiDownSceneFv=0x80401034 -getOwnerID__Q28Morimura14TLujiDownSceneFv=0x8040103C -getMemberID__Q28Morimura14TLujiDownSceneFv=0x80401048 -getResName__Q28Morimura15TOrimaDownSceneCFv=0x8040105C -doCreateObj__Q28Morimura15TOrimaDownSceneFP10JKRArchive=0x80401068 -getSceneType__Q28Morimura15TOrimaDownSceneFv=0x804010E8 -getOwnerID__Q28Morimura15TOrimaDownSceneFv=0x804010F0 -getMemberID__Q28Morimura15TOrimaDownSceneFv=0x804010FC -getResName__Q28Morimura14TGameOverSceneCFv=0x80401110 -doCreateObj__Q28Morimura14TGameOverSceneFP10JKRArchive=0x8040111C -isUseBackupSceneInfo__Q28Morimura14TGameOverSceneFv=0x8040119C -getSceneType__Q28Morimura14TGameOverSceneFv=0x804011A4 -getOwnerID__Q28Morimura14TGameOverSceneFv=0x804011AC -getMemberID__Q28Morimura14TGameOverSceneFv=0x804011B8 -getResName__Q28Morimura13THurryUpSceneCFv=0x804011CC -doCreateObj__Q28Morimura13THurryUpSceneFP10JKRArchive=0x804011D8 -getSceneType__Q28Morimura13THurryUpSceneFv=0x80401240 -getOwnerID__Q28Morimura13THurryUpSceneFv=0x80401248 -getMemberID__Q28Morimura13THurryUpSceneFv=0x80401254 -doUpdateFadein__Q32kh6Screen10ObjReadyGoFv=0x80401268 -doCreate__Q32kh6Screen10ObjReadyGoFP10JKRArchive=0x8040130C -doUpdate__Q32kh6Screen10ObjReadyGoFv=0x804014E0 -doDraw__Q32kh6Screen10ObjReadyGoFR8Graphics=0x80401500 -doUpdateFadeout__Q32kh6Screen10ObjReadyGoFv=0x804015DC -updateAnimation__Q32kh6Screen10ObjReadyGoFv=0x80401768 -doConfirmSetScene__Q32kh6Screen12SceneReadyGoFRQ26Screen11SetSceneArg=0x80401AEC -getResName__Q32kh6Screen12SceneReadyGoCFv=0x80401B2C -isUseBackupSceneInfo__Q32kh6Screen12SceneReadyGoFv=0x80401B38 -getSceneType__Q32kh6Screen12SceneReadyGoFv=0x80401B40 -getOwnerID__Q32kh6Screen12SceneReadyGoFv=0x80401B48 -getMemberID__Q32kh6Screen12SceneReadyGoFv=0x80401B50 -doCreateObj__Q32kh6Screen12SceneReadyGoFP10JKRArchive=0x80401B64 -__dt__Q32kh6Screen10ObjReadyGoFv=0x80401C28 -__sinit_khReadyGo_cpp=0x80401CD4 -@24@__dt__Q32kh6Screen10ObjReadyGoFv=0x80401D30 -doCreate__Q32kh6Screen13ObjFinalFloorFP10JKRArchive=0x80401D38 -doUpdate__Q32kh6Screen13ObjFinalFloorFv=0x80401F54 -doDraw__Q32kh6Screen13ObjFinalFloorFR8Graphics=0x80401F74 -doUpdateFadein__Q32kh6Screen13ObjFinalFloorFv=0x80402050 -doUpdateFadeout__Q32kh6Screen13ObjFinalFloorFv=0x80402088 -doUpdateFadeoutFinish__Q32kh6Screen13ObjFinalFloorFv=0x80402280 -updateAnimation__Q32kh6Screen13ObjFinalFloorFv=0x804022B4 -stopSound__Q32kh6Screen13ObjFinalFloorFv=0x8040247C -restartSound__Q32kh6Screen13ObjFinalFloorFv=0x804024BC -doConfirmSetScene__Q32kh6Screen15SceneFinalFloorFRQ26Screen11SetSceneArg=0x80402618 -getResName__Q32kh6Screen15SceneFinalFloorCFv=0x80402658 -isUseBackupSceneInfo__Q32kh6Screen15SceneFinalFloorFv=0x80402664 -getSceneType__Q32kh6Screen15SceneFinalFloorFv=0x8040266C -getOwnerID__Q32kh6Screen15SceneFinalFloorFv=0x80402674 -getMemberID__Q32kh6Screen15SceneFinalFloorFv=0x8040267C -doCreateObj__Q32kh6Screen15SceneFinalFloorFP10JKRArchive=0x80402690 -__dt__Q32kh6Screen13ObjFinalFloorFv=0x8040274C -__sinit_khFinalFloor_cpp=0x804027F8 -@24@__dt__Q32kh6Screen13ObjFinalFloorFv=0x80402844 -__ct__Q32kh6Screen20DispDayEndResultItemFPQ34Game6Result5TNodeiib=0x8040284C -__ct__Q32kh6Screen4IncPFv=0x804028D8 -__ct__Q32kh6Screen20DispDayEndResultIncPFPCQ32kh6Screen4IncP=0x80402B6C -__ct__Q32kh6Screen20DispDayEndResultMailFP7JKRHeapQ32kh6Screen12MailCategory=0x80402B9C -doCreate__Q32kh6Screen19ObjDayEndResultBaseFP10JKRArchive=0x80402BEC -doStart__Q32kh6Screen19ObjDayEndResultBaseFPCQ26Screen13StartSceneArg=0x80402CE8 -doUpdateFinish__Q32kh6Screen19ObjDayEndResultBaseFv=0x80402D80 -doUpdateFadein__Q32kh6Screen19ObjDayEndResultBaseFv=0x80402DC4 -doUpdateFadeinFinish__Q32kh6Screen19ObjDayEndResultBaseFv=0x80402EB8 -doUpdateFadeout__Q32kh6Screen19ObjDayEndResultBaseFv=0x80402EC8 -doDraw__Q32kh6Screen19ObjDayEndResultBaseFR8Graphics=0x80402FC4 -updateCommon__Q32kh6Screen19ObjDayEndResultBaseFv=0x804030DC -setFadeinFrm__Q32kh6Screen19ObjDayEndResultBaseFv=0x8040335C -setFadeoutFrm__Q32kh6Screen19ObjDayEndResultBaseFv=0x804033F4 -__ct__Q32kh6Screen19ObjDayEndResultItemFv=0x8040348C -__dt__Q32kh6Screen19ObjDayEndResultBaseFv=0x804035D0 -doCreate__Q32kh6Screen19ObjDayEndResultItemFP10JKRArchive=0x8040367C -doStart__Q32kh6Screen19ObjDayEndResultItemFPCQ26Screen13StartSceneArg=0x80403E28 -doUpdateFadein__Q32kh6Screen19ObjDayEndResultItemFv=0x80403F30 -doUpdate__Q32kh6Screen19ObjDayEndResultItemFv=0x8040404C -doUpdateFadeout__Q32kh6Screen19ObjDayEndResultItemFv=0x80404318 -doDraw__Q32kh6Screen19ObjDayEndResultItemFR8Graphics=0x8040443C -statusNormal__Q32kh6Screen19ObjDayEndResultItemFv=0x80404B00 -statusScrollUp__Q32kh6Screen19ObjDayEndResultItemFv=0x80404CD4 -statusScrollDown__Q32kh6Screen19ObjDayEndResultItemFv=0x80404DC8 -statusForceScroll__Q32kh6Screen19ObjDayEndResultItemFv=0x80404EBC -statusDrumRoll__Q32kh6Screen19ObjDayEndResultItemFv=0x80405090 -statusTotalValue__Q32kh6Screen19ObjDayEndResultItemFv=0x804050AC -updateCommon__Q32kh6Screen19ObjDayEndResultItemFv=0x80405174 -__ct__Q32kh6Screen19ObjDayEndResultIncPFv=0x8040553C -doCreate__Q32kh6Screen19ObjDayEndResultIncPFP10JKRArchive=0x804056D8 -doUpdateFadein__Q32kh6Screen19ObjDayEndResultIncPFv=0x80406A4C -doUpdate__Q32kh6Screen19ObjDayEndResultIncPFv=0x80406BC8 -doUpdateFadeout__Q32kh6Screen19ObjDayEndResultIncPFv=0x80407044 -doDraw__Q32kh6Screen19ObjDayEndResultIncPFR8Graphics=0x804071C8 -statusNormal__Q32kh6Screen19ObjDayEndResultIncPFv=0x80407310 -statusFadeout__Q32kh6Screen19ObjDayEndResultIncPFv=0x80407360 -statusDecP__Q32kh6Screen19ObjDayEndResultIncPFv=0x80407460 -statusFadein__Q32kh6Screen19ObjDayEndResultIncPFv=0x804074B0 -statusSlot__Q32kh6Screen19ObjDayEndResultIncPFv=0x80407514 -statusDecPSlot__Q32kh6Screen19ObjDayEndResultIncPFv=0x80407654 -callIncPSE__Q32kh6Screen19ObjDayEndResultIncPFi=0x804077F0 -callDecPSE__Q32kh6Screen19ObjDayEndResultIncPFi=0x80407878 -effectCommon__Q32kh6Screen19ObjDayEndResultIncPFv=0x804078C4 -updateCommon__Q32kh6Screen19ObjDayEndResultIncPFv=0x80407A4C -doCreate__Q32kh6Screen19ObjDayEndResultMailFP10JKRArchive=0x80407DB8 -__ct__Q42kh6Screen19ObjDayEndResultMail11MailIconAnmFv=0x8040866C -doStart__Q32kh6Screen19ObjDayEndResultMailFPCQ26Screen13StartSceneArg=0x8040867C -doUpdateFadein__Q32kh6Screen19ObjDayEndResultMailFv=0x804087EC -doUpdate__Q32kh6Screen19ObjDayEndResultMailFv=0x804089A4 -doUpdateFadeout__Q32kh6Screen19ObjDayEndResultMailFv=0x80408C24 -statusNormal__Q32kh6Screen19ObjDayEndResultMailFv=0x80408DD8 -statusFadeoutToLeft__Q32kh6Screen19ObjDayEndResultMailFv=0x80408FEC -statusFadeinFromLeft__Q32kh6Screen19ObjDayEndResultMailFv=0x80409094 -statusFadeoutToRight__Q32kh6Screen19ObjDayEndResultMailFv=0x804090CC -statusFadeinFromRight__Q32kh6Screen19ObjDayEndResultMailFv=0x80409184 -statusWaitOpen__Q32kh6Screen19ObjDayEndResultMailFv=0x804091BC -statusOpenW__Q32kh6Screen19ObjDayEndResultMailFv=0x804092E8 -statusOpenH__Q32kh6Screen19ObjDayEndResultMailFv=0x804093BC -changeMail__Q32kh6Screen19ObjDayEndResultMailFv=0x80409488 -changeAlpha__Q32kh6Screen19ObjDayEndResultMailFv=0x80409908 -doDraw__Q32kh6Screen19ObjDayEndResultMailFR8Graphics=0x8040996C -updateCommon__Q32kh6Screen19ObjDayEndResultMailFv=0x80409B30 -setCallBackMessage__Q32kh6Screen19ObjDayEndResultMailFPQ29P2DScreen3MgrP7J2DPane=0x80409DB8 -setCallBackMessage__Q32kh6Screen19ObjDayEndResultMailFPQ29P2DScreen3Mgr=0x8040A174 -skipped__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040A198 -__ct__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040A1F4 -doCreate__Q32kh6Screen19ObjDayEndResultTitlFP10JKRArchive=0x8040A25C -doUpdateFadein__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040A418 -doUpdate__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040A490 -doUpdateFadeout__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040A4F4 -doUpdateFadeoutFinish__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040A568 -doDraw__Q32kh6Screen19ObjDayEndResultTitlFR8Graphics=0x8040A634 -updateCommon__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040A778 -__ct__Q32kh6Screen21SceneDayEndResultMailFv=0x8040A858 -doUserCallBackFunc__Q32kh6Screen21SceneDayEndResultMailFPQ28Resource10MgrCommand=0x8040A8A0 -getResName__Q32kh6Screen21SceneDayEndResultMailCFv=0x8040AE2C -getSceneType__Q32kh6Screen21SceneDayEndResultMailFv=0x8040AE34 -getOwnerID__Q32kh6Screen21SceneDayEndResultMailFv=0x8040AE3C -getMemberID__Q32kh6Screen21SceneDayEndResultMailFv=0x8040AE44 -doCreateObj__Q32kh6Screen21SceneDayEndResultMailFP10JKRArchive=0x8040AE58 -__dt__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040AE5C -__dt__Q32kh6Screen19ObjDayEndResultMailFv=0x8040AF08 -getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040AFCC -getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040AFD4 -getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040AFDC -getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040AFE4 -getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040AFEC -getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040AFF4 -getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040AFFC -getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040B004 -getStarWTagNum__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040B00C -getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040B014 -getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultMailCFv=0x8040B01C -getClassSize__Q32kh6Screen20SArgDayEndResultItemFv=0x8040B024 -getSceneType__Q32kh6Screen20SArgDayEndResultItemCFv=0x8040B02C -getClassSize__Q32kh6Screen20SArgDayEndResultMailFv=0x8040B034 -getSceneType__Q32kh6Screen20SArgDayEndResultMailCFv=0x8040B03C -__dt__Q32kh6Screen19ObjDayEndResultIncPFv=0x8040B044 -getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B108 -getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B110 -getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B118 -getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B120 -getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B128 -getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B130 -getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B138 -getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B140 -getStarWTagNum__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B148 -getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B150 -getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultIncPCFv=0x8040B158 -getClassSize__Q32kh6Screen20SArgDayEndResultIncPFv=0x8040B160 -getSceneType__Q32kh6Screen20SArgDayEndResultIncPCFv=0x8040B168 -getClassSize__Q32kh6Screen20SArgDayEndResultBaseFv=0x8040B170 -__dt__Q32kh6Screen19ObjDayEndResultItemFv=0x8040B178 -getFadeinUpMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B23C -getFadeinUpMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B244 -getFadeoutUpMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B24C -getFadeoutUpMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B254 -getFadeinDownMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B25C -getFadeinDownMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B264 -getFadeoutDownMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B26C -getFadeoutDownMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B274 -getStarWTagNum__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B27C -getPStarWMinFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B284 -getPStarWMaxFrm__Q32kh6Screen19ObjDayEndResultItemCFv=0x8040B28C -getSize__Q32kh6Screen20DispDayEndResultMailFv=0x8040B294 -getOwnerID__Q32kh6Screen20DispDayEndResultMailFv=0x8040B29C -getMemberID__Q32kh6Screen20DispDayEndResultMailFv=0x8040B2A4 -getSize__Q32kh6Screen20DispDayEndResultIncPFv=0x8040B2B8 -getOwnerID__Q32kh6Screen20DispDayEndResultIncPFv=0x8040B2C0 -getMemberID__Q32kh6Screen20DispDayEndResultIncPFv=0x8040B2C8 -getSize__Q32kh6Screen20DispDayEndResultItemFv=0x8040B2DC -getOwnerID__Q32kh6Screen20DispDayEndResultItemFv=0x8040B2E4 -getMemberID__Q32kh6Screen20DispDayEndResultItemFv=0x8040B2EC -__sinit_khDayEndResult_cpp=0x8040B300 -@24@__dt__Q32kh6Screen19ObjDayEndResultBaseFv=0x8040B3CC -@24@__dt__Q32kh6Screen19ObjDayEndResultItemFv=0x8040B3D4 -@24@__dt__Q32kh6Screen19ObjDayEndResultIncPFv=0x8040B3DC -@24@__dt__Q32kh6Screen19ObjDayEndResultMailFv=0x8040B3E4 -@24@__dt__Q32kh6Screen19ObjDayEndResultTitlFv=0x8040B3EC -getSerialTagName__Q22kh6ScreenFUxi=0x8040B3F4 -setTex__Q22kh6ScreenFP9J2DScreenUxPC7ResTIMG=0x8040B440 -setTex__Q22kh6ScreenFP9J2DScreenUxPCc=0x8040B490 -setMatAnm__Q22kh6ScreenFP7J2DPaneP10J2DAnmBase=0x8040B4E0 -setInfAlpha__Q22kh6ScreenFP7J2DPane=0x8040B6F0 -getPaneCenterX__Q22kh6ScreenFP7J2DPane=0x8040B90C -getPaneCenterY__Q22kh6ScreenFP7J2DPane=0x8040B9F8 -create__Q32kh6Screen14khUtilFadePaneFPQ29P2DScreen3MgrUxUc=0x8040BAE4 -__ct__Q32kh6Screen14khUtilFadePaneFUc=0x8040BB88 -update__Q32kh6Screen14khUtilFadePaneFv=0x8040BC10 -fadeout_finish__Q32kh6Screen14khUtilFadePaneFv=0x8040BD14 -add__Q32kh6Screen14khUtilFadePaneFP7J2DPane=0x8040BD18 -fadein__Q32kh6Screen14khUtilFadePaneFv=0x8040BDD0 -fadeout__Q32kh6Screen14khUtilFadePaneFv=0x8040BDF0 -set_init_alpha__Q32kh6Screen14khUtilFadePaneFUc=0x8040BE10 -__ct__Q32kh6Screen14khUtilColorAnmFPQ29P2DScreen3MgrUxii=0x8040BE70 -update__Q32kh6Screen14khUtilColorAnmFv=0x8040BFC8 -do_update__Q32kh6Screen14khUtilColorAnmFv=0x8040C1E4 -__ct__Q32kh6Screen15DispFinalResultFPQ32kh6Screen15TotalResultDataQ42kh6Screen15DispFinalResult10ResultTypeP7JKRHeap=0x8040C1E8 -__ct__Q32kh6Screen14ObjFinalResultFv=0x8040C21C -doCreate__Q32kh6Screen14ObjFinalResultFP10JKRArchive=0x8040C3BC -doUpdate__Q32kh6Screen14ObjFinalResultFv=0x8040CF48 -doUpdateFadein__Q32kh6Screen14ObjFinalResultFv=0x8040D104 -doUpdateFadeout__Q32kh6Screen14ObjFinalResultFv=0x8040D180 -doDraw__Q32kh6Screen14ObjFinalResultFR8Graphics=0x8040D1EC -updateCommon__Q32kh6Screen14ObjFinalResultFv=0x8040D5DC -statusNormal__Q32kh6Screen14ObjFinalResultFv=0x8040DBD0 -statusScrollUp__Q32kh6Screen14ObjFinalResultFv=0x8040DF74 -statusScrollDown__Q32kh6Screen14ObjFinalResultFv=0x8040E000 -statusForceScroll__Q32kh6Screen14ObjFinalResultFv=0x8040E090 -drawReplace__Q32kh6Screen14ObjFinalResultFR8Graphicsi=0x8040E248 -getClr__Q32kh6Screen14ObjFinalResultFRCQ28JUtility6TColorRCQ28JUtility6TColorf=0x8040EB08 -doUserCallBackFunc__Q32kh6Screen16SceneFinalResultFPQ28Resource10MgrCommand=0x8040EC30 -createDispMember__Q32kh6Screen16SceneFinalResultFPCiPCiPPQ24Game9Highscore=0x8040ED08 -getResName__Q32kh6Screen16SceneFinalResultCFv=0x8040EFEC -getSceneType__Q32kh6Screen16SceneFinalResultFv=0x8040EFF4 -getOwnerID__Q32kh6Screen16SceneFinalResultFv=0x8040EFFC -getMemberID__Q32kh6Screen16SceneFinalResultFv=0x8040F004 -doCreateObj__Q32kh6Screen16SceneFinalResultFP10JKRArchive=0x8040F014 -__dt__Q32kh6Screen14ObjFinalResultFv=0x8040F018 -getSize__Q32kh6Screen15DispFinalResultFv=0x8040F0C4 -getOwnerID__Q32kh6Screen15DispFinalResultFv=0x8040F0CC -getMemberID__Q32kh6Screen15DispFinalResultFv=0x8040F0D4 -__sinit_khFinalResult_cpp=0x8040F0E4 -@24@__dt__Q32kh6Screen14ObjFinalResultFv=0x8040F1D8 -__ct__Q32kh6Screen11DispPayDeptFQ42kh6Screen11DispPayDept11PayDeptTypei=0x8040F1E0 -doCreate__Q32kh6Screen10ObjPayDeptFP10JKRArchive=0x8040F20C -doUpdateFadein__Q32kh6Screen10ObjPayDeptFv=0x8040F468 -doUpdate__Q32kh6Screen10ObjPayDeptFv=0x8040F534 -doUpdateFadeoutFinish__Q32kh6Screen10ObjPayDeptFv=0x8040F554 -doDraw__Q32kh6Screen10ObjPayDeptFR8Graphics=0x8040F614 -updateAnimation__Q32kh6Screen10ObjPayDeptFv=0x8040F678 -searchNumPane__Q32kh6Screen10ObjPayDeptFP7J2DPaneii=0x8040F754 -doUserCallBackFunc__Q32kh6Screen12ScenePayDeptFPQ28Resource10MgrCommand=0x8040FA70 -getResName__Q32kh6Screen12ScenePayDeptCFv=0x8040FBCC -isUseBackupSceneInfo__Q32kh6Screen12ScenePayDeptFv=0x8040FBD4 -getSceneType__Q32kh6Screen12ScenePayDeptFv=0x8040FBDC -getOwnerID__Q32kh6Screen12ScenePayDeptFv=0x8040FBE4 -getMemberID__Q32kh6Screen12ScenePayDeptFv=0x8040FBEC -doCreateObj__Q32kh6Screen12ScenePayDeptFP10JKRArchive=0x8040FC00 -__dt__Q32kh6Screen10ObjPayDeptFv=0x8040FC04 -getSize__Q32kh6Screen11DispPayDeptFv=0x8040FCB0 -getOwnerID__Q32kh6Screen11DispPayDeptFv=0x8040FCB8 -getMemberID__Q32kh6Screen11DispPayDeptFv=0x8040FCC0 -__sinit_khPayDept_cpp=0x8040FCD4 -@24@__dt__Q32kh6Screen10ObjPayDeptFv=0x8040FCE0 -__ct__Q32kh6Screen10ObjWinLoseFv=0x8040FCE8 -doCreate__Q32kh6Screen10ObjWinLoseFP10JKRArchive=0x8040FDA0 -doUpdate__Q32kh6Screen10ObjWinLoseFv=0x804101B8 -doDraw__Q32kh6Screen10ObjWinLoseFR8Graphics=0x804101D8 -updateAnimation__Q32kh6Screen10ObjWinLoseFv=0x80410290 -__dt__Q32kh6Screen10ObjWinLoseFv=0x8041061C -__sinit_khWinLose_cpp=0x804106C8 -@24@__dt__Q32kh6Screen10ObjWinLoseFv=0x8041070C -doCreate__Q32kh6Screen16ObjWinLoseReasonFP10JKRArchive=0x80410714 -doUpdate__Q32kh6Screen16ObjWinLoseReasonFv=0x804107E0 -doDraw__Q32kh6Screen16ObjWinLoseReasonFR8Graphics=0x804107E8 -__ct__Q32kh6Screen18SceneWinLoseReasonFv=0x804107EC -doCreateObj__Q32kh6Screen18SceneWinLoseReasonFP10JKRArchive=0x8041084C -doUpdateActive__Q32kh6Screen18SceneWinLoseReasonFv=0x80410DD4 -doEnd__Q32kh6Screen18SceneWinLoseReasonFPQ26Screen11EndSceneArg=0x80410EA0 -getResName__Q32kh6Screen18SceneWinLoseReasonCFv=0x80410EC0 -getSceneType__Q32kh6Screen18SceneWinLoseReasonFv=0x80410ECC -getOwnerID__Q32kh6Screen18SceneWinLoseReasonFv=0x80410ED4 -getMemberID__Q32kh6Screen18SceneWinLoseReasonFv=0x80410EDC -__dt__Q32kh6Screen16ObjWinLoseReasonFv=0x80410EEC -__sinit_khWinLoseReason_cpp=0x80410F98 -@24@__dt__Q32kh6Screen16ObjWinLoseReasonFv=0x80410FD8 -clear__Q32kh6Screen12MailSaveDataFv=0x80410FE0 -read__Q32kh6Screen12MailSaveDataFR6Stream=0x8041107C -write__Q32kh6Screen12MailSaveDataFR6Stream=0x80411104 -set_history__Q32kh6Screen12MailSaveDataFSc=0x8041118C -main=0x804111B4 -init__4NodeFv=0x80411204 -displayInfo__4NodeFi=0x80411208 -update__4NodeFv=0x804112B8 -draw__4NodeFR8Graphics=0x8041131C -__ct__5CNodeFv=0x80411390 -addHead__5CNodeFP5CNode=0x804113C0 -add__5CNodeFP5CNode=0x80411408 -calcNextCount__5CNodeFv=0x804114B8 -concat__5CNodeFP5CNode=0x804114D8 -__dt__5CNodeFv=0x80411588 -del__5CNodeFv=0x804115D0 -getChildCount__5CNodeFv=0x80411668 -getChildAt__5CNodeFi=0x8041169C -pikmin2_sinf__Ff=0x80411730 -pikmin2_cosf__Ff=0x80411798 -pikmin2_atan2f__Fff=0x804117DC -pikmin2_sqrtf__Ff=0x80411804 -qdist2__Fffff=0x8041181C -CRSplineTangent__FfP10Vector3=0x80411858 -read__8BoundBoxFR6Stream=0x8041194C -read__10Vector3FR6Stream=0x80411990 -write__10Vector3FR6Stream=0x804119E8 -write__5PlaneFR6Stream=0x80411A40 -read__5PlaneFR6Stream=0x80411AA4 -write__6Color4FR6Stream=0x80411B08 -read__6Color4FR6Stream=0x80411B6C -roundAng__Ff=0x80411BD0 -angDist__Fff=0x80411BFC -makeIdentity__8Matrix3fFv=0x80411C70 -calcEigenMatrix__8Matrix3fFR8Matrix3fR8Matrix3f=0x80411CA0 -__ct__4QuatFv=0x804123C8 -__ct__4QuatFf10Vector3=0x804123E0 -__ml__FR4QuatR4Quat=0x80412400 -set__4QuatFR10Vector3=0x804124FC -__ct__4QuatFR4Quat=0x80412760 -set__4QuatFffff=0x80412784 -inverse__4QuatFv=0x80412798 -normalise__4QuatFv=0x8041284C -slerp__4QuatFR4QuatfR4Quat=0x804128F0 -fromMatrixf__4QuatFR7Matrixf=0x80412C38 -makeBoundSphere__8BoundBoxFRQ23Sys6Sphere=0x80412F74 -transform__8BoundBoxFR7Matrixf=0x8041303C -__sinit_sysMath_cpp=0x80413228 -isEof__4ID32Fv=0x80413254 -__ct__4ID32Fv=0x80413270 -__ct__4ID32FUl=0x804132A8 -setID__4ID32FUl=0x804132D8 -match__4ID32FUlc=0x804132FC -updateID__4ID32Fv=0x804133B4 -updateString__4ID32Fv=0x804133D8 -__as__4ID32FUl=0x80413404 -__eq__4ID32FUl=0x80413434 -__ne__4ID32FUl=0x80413448 -write__4ID32FR6Stream=0x80413460 -read__4ID32FR6Stream=0x804134F0 -print__4ID32Fv=0x804135DC -sprint__4ID32FPc=0x804135E0 -__sinit_id32_cpp=0x80413618 -__ct__8BaseParmFP10ParametersUlPc=0x80413658 -write__10ParametersFR6Stream=0x80413704 -write__8BaseParmFR6Stream=0x804137F0 -read__10ParametersFR6Stream=0x804137F4 -read__8BaseParmFR6Stream=0x804138BC -findParm__10ParametersFUl=0x804138C0 -read__7ParmFR6Stream=0x80413924 -write__7ParmFR6Stream=0x80413958 -read__8ParmFR6Stream=0x80413984 -write__8ParmFR6Stream=0x804139B8 -read__7ParmFR6Stream=0x804139E4 -write__7ParmFR6Stream=0x80413A28 -read__7ParmFR6Stream=0x80413A5C -write__7ParmFR6Stream=0x80413A90 -__ct__10ParmStringFP10ParametersPciUlPc=0x80413AB8 -write__10ParmStringFR6Stream=0x80413C68 -read__10ParmStringFR6Stream=0x80413C94 -__ct__8ParmEnumFP10ParametersPPcUlilPc=0x80413CC4 -write__8ParmEnumFR6Stream=0x80413D7C -read__8ParmEnumFR6Stream=0x80413DA8 -size__8ParmEnumFv=0x80413DDC -size__10ParmStringFv=0x80413DE4 -eof__6StreamFv=0x80413DEC -getNextToken__6StreamFv=0x80413DF4 -textBeginGroup__6StreamFPc=0x8041401C -textEndGroup__6StreamFv=0x804140A0 -printf__6StreamFPce=0x804140F8 -textWriteText__6StreamFPce=0x804141DC -skipReading__6StreamFUl=0x804142C8 -skipReadingText__6StreamFv=0x8041438C -textWriteTab__6StreamFi=0x80414434 -readByte__6StreamFv=0x8041449C -_readByte__6StreamFv=0x80414714 -readShort__6StreamFv=0x80414764 -readInt__6StreamFv=0x80414A90 -readFloat__6StreamFv=0x80414DAC -readString__6StreamFPci=0x804150D4 -writeString__6StreamFPc=0x804155CC -writeByte__6StreamFUc=0x80415670 -_writeByte__6StreamFUc=0x804156E0 -writeShort__6StreamFs=0x80415730 -writeInt__6StreamFi=0x804157C0 -writeFloat__6StreamFf=0x80415848 -__ct__9RamStreamFPvi=0x804158F8 -read__9RamStreamFPvi=0x80415948 -write__9RamStreamFPvi=0x804159DC -eof__9RamStreamFv=0x80415A70 -getPending__6StreamFv=0x80415A9C -getAxisVector__Q23Sys4TubeFR10Vector3=0x80415AA4 -collide__Q23Sys4TubeFRQ23Sys6SphereR10Vector3Rf=0x80415B58 -getPosRatio__Q23Sys4TubeFRC10Vector3=0x80415DD4 -setPos__Q23Sys4TubeFf=0x80415EC8 -intersect__Q23Sys6SphereFRQ23Sys6Sphere=0x80415F14 -intersect__Q23Sys6SphereFRQ23Sys6SphereR10Vector3=0x80415F6C -intersect__Q23Sys6SphereFRQ23Sys4EdgeRf=0x8041608C -intersect__Q23Sys6SphereFRQ23Sys4EdgeRfR10Vector3=0x80416290 -intersect__Q23Sys6SphereFRQ23Sys4EdgeRfR10Vector3Rf=0x8041651C -__ct__Q23Sys8TriangleFv=0x804168F0 -createSphere__Q23Sys8TriangleFRQ23Sys11VertexTable=0x80416958 -fastIntersect__Q23Sys8TriangleFRQ23Sys6Sphere=0x80416AC0 -calcDist__Q23Sys8TriangleFR5PlaneRQ23Sys11VertexTable=0x80416B44 -intersect__Q23Sys8TriangleFRQ23Sys4EdgefR10Vector3=0x80416C48 -intersect__Q23Sys8TriangleFRQ23Sys4EdgefR10Vector3Rf=0x80416F7C -intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6Sphere=0x804172EC -intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6SphereR10Vector3=0x80417598 -intersectHard__Q23Sys8TriangleFRQ23Sys11VertexTableRQ23Sys6SphereR10Vector3=0x80417890 -insideXZ__Q23Sys8TriangleFR10Vector3=0x80417B88 -makePlanes__Q23Sys8TriangleFRQ23Sys11VertexTable=0x80417C74 -condition__Q23Sys16RayIntersectInfoFRQ23Sys8Triangle=0x8041813C -createTriangles__Q23Sys11GridDividerFRQ23Sys17CreateTriangleArg=0x8041817C -getMinY__Q23Sys11GridDividerFR10Vector3=0x804185A4 -getCurrTri__Q23Sys11GridDividerFRQ24Game11CurrTriInfo=0x8041877C -findTriLists__Q23Sys11GridDividerFRQ23Sys6Sphere=0x804189B0 -create__Q23Sys11GridDividerFR8BoundBoxiiPQ23Sys11VertexTablePQ23Sys13TriangleTable=0x80418BE0 -__ct__Q23Sys12TriIndexListFv=0x8041903C -write__31ArrayContainerFR6Stream=0x804190C4 -writeObject__31ArrayContainerFR6StreamRQ23Sys8Triangle=0x80419198 -read__Q23Sys11GridDividerFR6Stream=0x8041919C -read__31ArrayContainerFR6Stream=0x804193E4 -readObject__31ArrayContainerFR6StreamRQ23Sys8Triangle=0x80419494 -createTriangleSphere__Q23Sys13TriangleTableFRQ23Sys11VertexTable=0x80419498 -constructClone__Q23Sys12TriIndexListFRQ23Sys13TriangleTable=0x8041950C -getMinMax__Q23Sys12TriIndexListFRQ23Sys11VertexTableRQ23Sys13TriangleTableR10Vector3R10Vector3RfRf=0x80419594 -makeCovarianceMatrix__Q23Sys12TriIndexListFRQ23Sys11VertexTableRQ23Sys13TriangleTableR8Matrix3fR10Vector3=0x804196E4 -draw__Q23Sys12TriIndexListFR8GraphicsRQ23Sys11VertexTableRQ23Sys13TriangleTableb=0x80419978 -__ct__Q23Sys13TriangleTableFv=0x8041997C -__dt__31ArrayContainerFv=0x804199F8 -__dt__26ContainerFv=0x80419A78 -transform__Q23Sys11VertexTableFR7Matrixf=0x80419AE8 -write__Q23Sys11VertexTableFR6Stream=0x80419C24 -writeObject__Q23Sys11VertexTableFR6StreamR10Vector3=0x80419CF8 -__dt__Q23Sys11VertexTableFv=0x80419D1C -readObject__Q23Sys11VertexTableFR6StreamR10Vector3=0x80419DAC -__dt__Q23Sys13TriangleTableFv=0x80419DD0 -readObject__Q23Sys13TriangleTableFR6StreamRQ23Sys8Triangle=0x80419E60 -writeObject__Q23Sys13TriangleTableFR6StreamRQ23Sys8Triangle=0x80419EE8 -getBoundBox__Q23Sys11GridDividerFR8BoundBox=0x80419F70 -setArray__31ArrayContainerFPQ23Sys8Trianglei=0x80419FA4 -get__31ArrayContainerFPv=0x80419FB4 -getNext__31ArrayContainerFPv=0x80419FC4 -getStart__31ArrayContainerFv=0x80419FCC -getEnd__31ArrayContainerFv=0x80419FD4 -getAt__31ArrayContainerFi=0x80419FDC -getTo__31ArrayContainerFv=0x80419FEC -getObject__26ContainerFPv=0x80419FF4 -getAt__26ContainerFi=0x8041A020 -getTo__26ContainerFv=0x8041A028 -getCurrTri__12MapCollisionFRQ24Game11CurrTriInfo=0x8041A030 -read__12MapCollisionFR6Stream=0x8041A060 -clone__12MapCollisionFR7Matrixf=0x8041A114 -isVisible__9CullPlaneFRQ23Sys6Sphere=0x8041A190 -isCylinderVisible__9CullPlaneFRQ23Sys8Cylinder=0x8041A200 -getUpVector__11CullFrustumFv=0x8041A288 -getSideVector__11CullFrustumFv=0x8041A2A8 -getViewVector__11CullFrustumFv=0x8041A2D4 -getPosition__11CullFrustumFv=0x8041A300 -updatePlanes__11CullFrustumFv=0x8041A374 -__ct__6CameraFv=0x8041A648 -__dt__11CullFrustumFv=0x8041A7A0 -setFixNearFar__6CameraFbff=0x8041A840 -copyFrom__6CameraFP6Camera=0x8041A858 -updatePlanes__6CameraFv=0x8041A900 -getLookAtPosition__6CameraFv=0x8041AA98 -getLookAtPosition___6CameraFv=0x8041AB48 -isRunning__Q34Game5P2JST12ObjectCameraFv=0x8041AB68 -getPosition__6CameraFv=0x8041AB70 -getPositionPtr__6CameraFv=0x8041AC78 -on_getPositionPtr__6CameraFv=0x8041AD04 -getNear__6CameraFv=0x8041AD0C -getFar__6CameraFv=0x8041AD28 -setProjection__6CameraFv=0x8041AD44 -update__6CameraFv=0x8041ADB4 -updateMatrix__6CameraFv=0x8041AEDC -getViewMatrix__6CameraFb=0x8041AEE0 -calcProperDistance__6CameraFff=0x8041AEF8 -updateScreenConstants__6CameraFv=0x8041B018 -calcScreenSize__6CameraFRQ23Sys6Sphere=0x8041B0F8 -updateSoundCamera__6CameraFf=0x8041B1B0 -__ct__12LookAtCameraFv=0x8041B498 -__dt__6CameraFv=0x8041B644 -updateMatrix__12LookAtCameraFv=0x8041B6F4 -__ct__11BlendCameraFiPP6Camera=0x8041B728 -setCameras__11BlendCameraFPP6Camera=0x8041B8A8 -setBlendFactor__11BlendCameraFf=0x8041B934 -doUpdate__11BlendCameraFv=0x8041B994 -__dt__11BlendCameraFv=0x8041BC3C -getViewMatrix__11CullFrustumFb=0x8041BCFC -__sinit_camera_cpp=0x8041BD04 -doRead__7TagParmFR6Stream=0x8041BD2C -doWrite__7TagParmFR6Stream=0x8041BD30 -doDump__7TagParmFv=0x8041BD34 -doRead__14PrimTagParmFR6Stream=0x8041BD38 -doWrite__14PrimTagParmFR6Stream=0x8041BD6C -doDump__14PrimTagParmFv=0x8041BD98 -doRead__15PrimTagParmFR6Stream=0x8041BD9C -doWrite__15PrimTagParmFR6Stream=0x8041BDD0 -doDump__15PrimTagParmFv=0x8041BDFC -doRead__15PrimTagParmFR6Stream=0x8041BE00 -doWrite__15PrimTagParmFR6Stream=0x8041BE78 -doDump__15PrimTagParmFv=0x8041BEE4 -doRead__14PrimTagParmFR6Stream=0x8041BEE8 -doWrite__14PrimTagParmFR6Stream=0x8041BF1C -doDump__14PrimTagParmFv=0x8041BF44 -doRead__25PrimTagParm<10Vector3>FR6Stream=0x8041BF48 -doWrite__25PrimTagParm<10Vector3>FR6Stream=0x8041BF6C -doDump__25PrimTagParm<10Vector3>Fv=0x8041BF90 -__ct__13StringTagParmFP13TagParametersPc=0x8041BF94 -flushValue__13StringTagParmFv=0x8041BFD8 -doRead__13StringTagParmFR6Stream=0x8041BFDC -doWrite__13StringTagParmFR6Stream=0x8041C018 -doDump__13StringTagParmFv=0x8041C044 -__ct__13TagParametersFPc=0x8041C048 -__ct__7TagParmFP13TagParametersPc=0x8041C09C -read__13TagParametersFR6Stream=0x8041C0D4 -__ct__8BitFlagsFv=0x8041C1A8 -dump__8BitFlagsFv=0x8041C1B8 -read__8BitFlagsFR6Stream=0x8041C208 -write__8BitFlagsFR6Stream=0x8041C26C -create__8BitFlagsFUsPUc=0x8041C2D0 -reset__8BitFlagsFv=0x8041C324 -all_zero__8BitFlagsFv=0x8041C34C -all_one__8BitFlagsFv=0x8041C374 -setFlag__8BitFlagsFUs=0x8041C39C -resetFlag__8BitFlagsFUs=0x8041C3CC -isFlag__8BitFlagsFUs=0x8041C3FC -getAttribute__Q27MapCode4CodeFv=0x8041C434 -getSlipCode__Q27MapCode4CodeFv=0x8041C440 -isBald__Q27MapCode4CodeFv=0x8041C44C -setCode__Q27MapCode4CodeFiib=0x8041C458 -__ct__Q27MapCode3MgrFv=0x8041C47C -__dt__Q37MapCode3Mgr9CodeArrayFv=0x8041C4F8 -__dt__31ArrayContainerFv=0x8041C588 -__dt__26ContainerFv=0x8041C608 -write__31ArrayContainerFR6Stream=0x8041C678 -writeObject__31ArrayContainerFR6StreamRQ27MapCode4Code=0x8041C75C -read__Q27MapCode3MgrFR6Stream=0x8041C760 -read__31ArrayContainerFR6Stream=0x8041C78C -readObject__31ArrayContainerFR6StreamRQ27MapCode4Code=0x8041C82C -alloc__31ArrayContainerFi=0x8041C830 -attachCodes__Q27MapCode3MgrFPQ23Sys13TriangleTable=0x8041C87C -writeObject__Q37MapCode3Mgr9CodeArrayFR6StreamRQ27MapCode4Code=0x8041C8C0 -readObject__Q37MapCode3Mgr9CodeArrayFR6StreamRQ27MapCode4Code=0x8041C8EC -addOne__31ArrayContainerFRQ27MapCode4Code=0x8041C920 -setArray__31ArrayContainerFPQ27MapCode4Codei=0x8041C948 -get__31ArrayContainerFPv=0x8041C958 -getNext__31ArrayContainerFPv=0x8041C964 -getStart__31ArrayContainerFv=0x8041C96C -getEnd__31ArrayContainerFv=0x8041C974 -getAt__31ArrayContainerFi=0x8041C97C -getTo__31ArrayContainerFv=0x8041C988 -getObject__26ContainerFPv=0x8041C990 -getAt__26ContainerFi=0x8041C9BC -getTo__26ContainerFv=0x8041C9C4 -intersect__Q23Sys8TriangleFRQ23Sys11VertexTableRQ33Sys8Triangle11SphereSweep=0x8041C9CC -clone__Q23Sys7OBBTreeFR7Matrixf=0x8041CEBC -create2__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTableR8Matrix3fR8Matrix3fR10Vector3=0x8041D02C -autoDivide__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTableii=0x8041D730 -getNum__17ArrayContainerFv=0x8041DA08 -determineDivPlane__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTable=0x8041DA10 -divide__Q23Sys3OBBFRQ23Sys11VertexTableRQ23Sys13TriangleTable=0x8041DBD4 -__ct__Q23Sys7OBBTreeFv=0x8041E054 -getCurrTri__Q23Sys7OBBTreeFRQ24Game11CurrTriInfo=0x8041E198 -getCurrTri__Q23Sys3OBBFRQ24Game11CurrTriInfo=0x8041E1C4 -calcDist__5PlaneCFRC10Vector3=0x8041E65C -isLeaf__Q23Sys3OBBFv=0x8041E68C -getCurrTriTriList__Q23Sys3OBBFRQ24Game11CurrTriInfo=0x8041E6B4 -construct__Q23Sys7OBBTreeFPQ23Sys11VertexTablePQ23Sys13TriangleTableii=0x8041E7CC -read__Q23Sys7OBBTreeFR6Stream=0x8041E880 -readWithoutVerts__Q23Sys7OBBTreeFR6StreamRQ23Sys11VertexTable=0x8041E998 -traceMove__Q23Sys7OBBTreeFR7MatrixfR7MatrixfRQ24Game8MoveInfof=0x8041EA10 -traceMove_global__Q23Sys7OBBTreeFRQ24Game8MoveInfof=0x8041EA34 -findRayIntersection__Q23Sys7OBBTreeFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf=0x8041EA58 -findRayIntersection__Q23Sys3OBBFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf=0x8041EC6C -findRayIntersectionTriList__Q23Sys3OBBFRQ23Sys16RayIntersectInfoR7MatrixfR7Matrixf=0x8041F22C -findTriLists__Q23Sys3OBBFRQ23Sys6Sphere=0x8041F340 -getMinY__Q23Sys7OBBTreeFR10Vector3=0x8041F4B8 -getMinY__Q23Sys3OBBFR10Vector3RQ23Sys13TriangleTablef=0x8041F4E4 -getMinYTriList__Q23Sys3OBBFR10Vector3RQ23Sys13TriangleTable=0x8041FBA4 -read__Q23Sys3OBBFR6Stream=0x8041FC58 -findTriLists__Q23Sys7OBBTreeFRQ23Sys6Sphere=0x8041FF78 -getBoundBox__Q23Sys7OBBTreeFR8BoundBox=0x8041FF9C -do_clone__Q23Sys10TriDividerFR7MatrixfPQ23Sys11VertexTablePQ23Sys13TriangleTable=0x8041FFA0 -traceMove_new__Q23Sys7OBBTreeFR7MatrixfR7MatrixfRQ24Game8MoveInfof=0x8041FFA8 -traceMoveTriList_new__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableR7MatrixfR7MatrixfRiPPQ23Sys8TrianglePfP10Vector3=0x80420168 -traceMove_new__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableR7MatrixfR7MatrixfRiPPQ23Sys8TrianglePfP10Vector3=0x80420464 -traceMove_new_global__Q23Sys7OBBTreeFRQ24Game8MoveInfof=0x80420C54 -traceMoveTriList_new_global__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableRiPPQ23Sys8TrianglePfP10Vector3=0x80420CEC -traceMove_new_global__Q23Sys3OBBFRQ24Game8MoveInfoRQ23Sys11VertexTableRQ23Sys13TriangleTableRiPPQ23Sys8TrianglePfP10Vector3=0x80420F38 -__ct__Q23Sys8CylinderFRC10Vector3RC10Vector3ff=0x80421628 -set__Q23Sys8CylinderFRC10Vector3RC10Vector3f=0x80421664 -culled__Q23Sys8CylinderFRC5Plane=0x80421764 -intersect__Q23Sys8CylinderFRCQ23Sys8TriangleRf=0x804218F4 -clone__Q23Sys10TriDividerFR7Matrixf=0x80421ACC -cloneFrom__Q23Sys11VertexTableFR7MatrixfPQ23Sys11VertexTable=0x80421BEC -cloneFrom__Q23Sys13TriangleTableFR7MatrixfPQ23Sys13TriangleTablePQ23Sys11VertexTable=0x80421D4C -do_clone__Q23Sys11GridDividerFR7MatrixfPQ23Sys11VertexTablePQ23Sys13TriangleTable=0x80421E00 -Pikmin2DefaultMemoryErrorRoutine__FPvUli=0x80421EC4 -kando_panic_f__FbPCciPCce=0x80421F64 -preUserCallback__FUsP9OSContextUlUl=0x804220EC -myTask__FPv=0x80422204 -__ct__Q26System20FragmentationCheckerFPcb=0x80422230 -__dt__Q26System20FragmentationCheckerFv=0x80422284 -assert_fragmentation__6SystemFPc=0x804222E0 -enableCPULockDetector__6SystemFi=0x8042231C -disableCPULockDetector__6SystemFv=0x8042232C -retraceCallback__FUl=0x80422344 -__ct__6SystemFv=0x804223E8 -construct__6SystemFv=0x80422504 -constructWithDvdAccessFirst__6SystemFv=0x80422718 -constructWithDvdAccessSecond__6SystemFv=0x80422800 -createRomFont__6SystemFP7JKRHeap=0x80422920 -destroyRomFont__6SystemFv=0x80422974 -createSoundSystem__6SystemFv=0x804229C4 -loadSoundResource__6SystemFv=0x80422B7C -initialize__6SystemFv=0x80422C64 -loadResourceFirst__6SystemFv=0x80422D5C -loadResourceSecond__6SystemFv=0x80422DF0 -run__6SystemFv=0x80422E84 -getTime__6SystemFv=0x80422EB8 -clearOptionBlockSaveFlag__6SystemFv=0x80422F10 -setOptionBlockSaveFlag__6SystemFv=0x80422F20 -getPlayCommonData__6SystemFv=0x80422F30 -dvdLoadUseCallBack__6SystemFP16DvdThreadCommandP9IDelegate=0x80422F38 -deleteThreads__6SystemFv=0x80422F90 -__dt__9DvdThreadFv=0x80422FE4 -setCurrentDisplay__6SystemFP10JFWDisplay=0x80423070 -clearCurrentDisplay__6SystemFP10JFWDisplay=0x80423080 -beginFrame__6SystemFv=0x8042309C -endFrame__6SystemFv=0x804230D8 -beginRender__6SystemFv=0x80423134 -endRender__6SystemFv=0x8042317C -setRenderMode__6SystemFQ26System11ERenderMode=0x80423214 -getRenderModeObj__6SystemFv=0x80423224 -changeRenderMode__6SystemFQ26System11ERenderMode=0x8042323C -heapStatusStart__6SystemFPcP7JKRHeap=0x8042335C -heapStatusEnd__6SystemFPc=0x80423364 -heapStatusDump__6SystemFb=0x80423368 -heapStatusIndividual__6SystemFv=0x8042336C -heapStatusNormal__6SystemFv=0x80423370 -resetOn__6SystemFb=0x80423374 -resetPermissionOn__6SystemFv=0x8042339C -isResetActive__6SystemFv=0x804233B0 -activeGP__6SystemFv=0x804233C8 -inactiveGP__6SystemFv=0x804233DC -isDvdErrorOccured__6SystemFv=0x804233F0 -initCurrentHeapMutex__6SystemFv=0x80423414 -startChangeCurrentHeap__6SystemFP7JKRHeap=0x80423448 -endChangeCurrentHeap__6SystemFv=0x804234B8 -addGenNode__6SystemFP5CNode=0x80423520 -initGenNode__6SystemFv=0x80423524 -refreshGenNode__6SystemFv=0x80423528 -setFrameRate__6SystemFi=0x8042352C -getCurrentSection__11ISectionMgrFv=0x804235CC -dvdLoadSyncNoBlock__6SystemFP16DvdThreadCommand=0x804235D4 -dvdLoadSyncAllNoBlock__6SystemFv=0x80423634 -__dt__9AppThreadFv=0x80423690 -newSceneMgr__Q23PSM7FactoryFv=0x804236F0 -invoke__17Delegate<6System>Fv=0x80423728 -__sinit_system_cpp=0x80423758 -init__7SectionFv=0x80423770 -__ct__7SectionFP10JFWDisplayP7JKRHeapb=0x80423774 -__dt__8ISectionFv=0x80423944 -__dt__7SectionFv=0x804239A4 -run__7SectionFv=0x80423AC4 -exit__7SectionFv=0x80423F7C -beginFrame__7SectionFv=0x80423FCC -endFrame__7SectionFv=0x80423FF0 -beginRender__7SectionFv=0x80424014 -endRender__7SectionFv=0x80424038 -update__7SectionFv=0x80424078 -draw__7SectionFR8Graphics=0x804240F4 -__sinit_section_cpp=0x80424150 -__ct__8GameFlowFv=0x804241A4 -run__8GameFlowFv=0x804241D0 -setSection__8GameFlowFv=0x804242AC -getSectionInfo__8GameFlowFi=0x8042436C -createSection__8GameFlowFP7JKRHeap=0x8042441C -getCurrentSection__8GameFlowFv=0x80424564 -__sinit_gameflow_cpp=0x804245A4 -__ct__11MenuSectionFP10JFWDisplayP7JKRHeapb=0x804245CC -run__11MenuSectionFv=0x80424614 -runChildSection__11MenuSectionFv=0x80424668 -__dt__11MenuSectionFv=0x804247B0 -getCurrentSection__11MenuSectionFv=0x80424810 -__ct__16DvdThreadCommandFv=0x80424818 -loadUseCallBack__16DvdThreadCommandFP9IDelegate=0x80424898 -__ct__9DvdThreadFUlii=0x804248B8 -run__9DvdThreadFv=0x80424904 -loadArchive__9DvdThreadFP16DvdThreadCommand=0x80424A98 -loadFile__9DvdThreadFP16DvdThreadCommand=0x80424B34 -sendCommand__9DvdThreadFP16DvdThreadCommand=0x80424C3C -sync__9DvdThreadFP16DvdThreadCommandQ29DvdThread14ESyncBlockFlag=0x80424C9C -syncAll__9DvdThreadFQ29DvdThread14ESyncBlockFlag=0x80424D4C -__ct__9AppThreadFUlii=0x80424E18 -__ct__10ControllerFQ210JUTGamePad8EPadPort=0x80424E54 -__ct__17HorizonalSplitterFP8Graphics=0x80424E90 -split2__17HorizonalSplitterFf=0x80424FE0 -__ct__8ViewportFv=0x8042509C -getMatrix__8ViewportFb=0x8042515C -setProjection__8ViewportFv=0x804251A0 -getNumActiveViewports__8GraphicsFv=0x804251CC -viewable__8ViewportFv=0x80425240 -updateCameraAspect__8ViewportFv=0x80425290 -refresh__8ViewportFv=0x804252DC -setRect__8ViewportFR7Rect=0x80425380 -setViewport__8ViewportFv=0x80425444 -setJ3DViewMtx__8ViewportFb=0x80425518 -allocateViewports__8GraphicsFi=0x80425568 -deleteViewports__8GraphicsFv=0x804255AC -addViewport__8GraphicsFP8Viewport=0x804255C0 -getViewport__8GraphicsFi=0x804255F0 -mapViewport__8GraphicsFP22IDelegate1=0x80425600 -graphicsTokenCallback__FUs=0x804256E0 -setToken__8GraphicsFPc=0x80425710 -getTokenName__8GraphicsFUs=0x80425788 -findTokenIndex__8GraphicsFPc=0x80425798 -initPrimDraw__8GraphicsFP7Matrixf=0x8042581C -drawLine__8GraphicsFR10Vector3R10Vector3=0x804259E8 -drawSphere__8GraphicsFR10Vector3f=0x80425AAC -drawSphere__8GraphicsFfP7Matrixf=0x80426044 -drawAxis__8GraphicsFfP7Matrixf=0x8042660C -clearZBuffer__8GraphicsFR7Rect=0x804268C4 -fillZBuffer__8GraphicsFR7Rectf=0x804268E8 -drawCone__8GraphicsFR10Vector3R10Vector3fi=0x80426CB8 -__ct__8GraphicsFv=0x804273C4 -setupJ2DOrthoGraphDefault__8GraphicsFv=0x80427468 -setupJ2DPerspGraphDefault__8GraphicsFv=0x804275D4 -clearVtxDesc__8GraphicsFv=0x804276F0 -setVtxDesc__8GraphicsF7_GXAttr11_GXAttrType=0x80427710 -setVtxAttrFmt__8GraphicsF9_GXVtxFmt7_GXAttr10_GXCompCnt11_GXCompTypeUc=0x80427738 -disableLight__8GraphicsFv=0x8042776C -setTextureGX__8GraphicsFv=0x804277A8 -initPerspPrintf__8GraphicsFP8Viewport=0x804278A8 -perspPrintf__8GraphicsFR15PerspPrintfInfoR10Vector3Pce=0x80427ADC -initGX__8GraphicsFv=0x80427EA0 -dirtyInitGX__8GraphicsFv=0x80427F00 -clearInitGX__8GraphicsFv=0x80427F04 -split4__8SplitterFff=0x80427F64 -__sinit_graphics_cpp=0x80427F68 -makeNaturalPosture__7MatrixfFR10Vector3f=0x80427F90 -print__7MatrixfFPc=0x804282D4 -makeSRT__7MatrixfFR10Vector3R10Vector3R10Vector3=0x804282D8 -makeST__7MatrixfFR10Vector3R10Vector3=0x80428560 -makeSR__7MatrixfFR10Vector3R10Vector3=0x804285B0 -makeT__7MatrixfFR10Vector3=0x80428840 -makeTR__7MatrixfFR10Vector3R10Vector3=0x80428888 -makeTQ__7MatrixfFR10Vector3R4Quat=0x80428AB8 -makeQ__7MatrixfFR4Quat=0x80428B88 -clearAnimatorAll__Q28SysShape5ModelFv=0x80428C50 -startAnim__Q28SysShape8AnimatorFiPQ28SysShape14MotionListener=0x80428C88 -startExAnim__Q28SysShape8AnimatorFPQ28SysShape8AnimInfo=0x80428D50 -assertValid__Q28SysShape8AnimatorFPQ28SysShape5Model=0x80428DB8 -setCurrFrame__Q28SysShape8AnimatorFf=0x80428DC0 -setFrameByKeyType__Q28SysShape8AnimatorFUl=0x80428E00 -setLastFrame__Q28SysShape8AnimatorFv=0x80428F00 -animate__Q28SysShape8AnimatorFf=0x80428F78 -__ct__Q28SysShape13BlendAnimatorFv=0x80429224 -setAnimMgr__Q28SysShape13BlendAnimatorFPQ28SysShape7AnimMgr=0x804292A4 -startBlend__Q28SysShape13BlendAnimatorFPQ28SysShape13BlendFunctionfPQ28SysShape14MotionListener=0x804293F8 -endBlend__Q28SysShape13BlendAnimatorFv=0x80429554 -animate__Q28SysShape13BlendAnimatorFPQ28SysShape13BlendFunctionfff=0x8042956C -getCalc__Q28SysShape13BlendAnimatorFv=0x804297E4 -init__Q28SysShape5JointFUsPQ28SysShape5ModelP8J3DJoint=0x80429824 -getWorldMatrix__Q28SysShape5JointFv=0x804298A0 -getLowestAnimKey__Q28SysShape8AnimInfoFf=0x804298C0 -getLastLoopStart__Q28SysShape8AnimInfoFPQ28SysShape8KeyEvent=0x8042992C -getAnimKeyByType__Q28SysShape8AnimInfoFUl=0x80429954 -read__Q28SysShape8AnimInfoFR6Stream=0x8042997C -readEditor__Q28SysShape8AnimInfoFR6Stream=0x8042999C -load__Q28SysShape7AnimMgrFPcP12J3DModelDataP13JKRFileLoader=0x80429AA8 -__dt__Q28SysShape8AnimInfoFv=0x80429BE4 -dump__Q28SysShape7AnimMgrFv=0x80429C68 -__dt__Q28SysShape7AnimMgrFv=0x80429CE8 -__sinit_sysShape_cpp=0x80429D88 -__ct__12ResetManagerFf=0x80429DB0 -update__12ResetManagerFv=0x80429E78 -updateStatusEffects__12ResetManagerFv=0x8042A12C -draw__12ResetManagerFv=0x8042A164 -isWritingMemoryCard__12ResetManagerFv=0x8042A2BC -isSoundSystemStopped__12ResetManagerFv=0x8042A2D0 -__ct__9DvdStatusFv=0x8042A314 -isErrorOccured__9DvdStatusFv=0x8042A328 -update__9DvdStatusFv=0x8042A354 -draw__9DvdStatusFv=0x8042A544 -__ct__9SysTimersFv=0x8042A7FC -__defctor__8TimerInfFv=0x8042A8DC -__dt__9SysTimersFv=0x8042A948 -get__9SysTimersFi=0x8042A9B0 -__dt__8TimerInfFv=0x8042AA2C -reset__9SysTimersFv=0x8042AAA0 -newFrame__9SysTimersFv=0x8042AAD8 -remove__9SysTimersFP8TimerInf=0x8042AAE8 -_start__9SysTimersFPcb=0x8042AAF8 -_stop__9SysTimersFPc=0x8042AAFC -__ct__Q28SysShape8ModelMgrFiPP12J3DModelDataiUlUlP30IDelegate1=0x8042AB00 -calcMaximumModelSize__Q28SysShape8ModelMgrFv=0x8042ACD8 -calcModelSize__Q28SysShape8ModelMgrFP12J3DModelData=0x8042AD5C -createModel__Q28SysShape8ModelMgrFii=0x8042ADFC -__ct__10HeapStatusFv=0x8042AFC4 -__dt__8HeapInfoFv=0x8042B074 -getNextChild__18JSUTree<8CoreNode>CFv=0x8042B214 -__ne__26JSUTreeIterator<8CoreNode>CFPC18JSUTree<8CoreNode>=0x8042B228 -getEndChild__18JSUTree<8CoreNode>CFv=0x8042B240 -__pp__26JSUTreeIterator<8CoreNode>Fv=0x8042B248 -getObject__26JSUTreeIterator<8CoreNode>CFv=0x8042B264 -__ct__26JSUTreeIterator<8CoreNode>FP18JSUTree<8CoreNode>=0x8042B270 -getFirstChild__18JSUTree<8CoreNode>CFv=0x8042B278 -search__8HeapInfoFP8HeapInfo=0x8042B28C -@36@__dt__8HeapInfoFv=0x8042B464 -__ct__8LightObjFPc10_GXLightID14ELightTypeFlagQ28JUtility6TColor=0x8042B46C -set__8LightObjFR7Matrixf=0x8042B530 -drawPos__8LightObjFR8Graphics=0x8042B80C -drawPos__8LightObjFR8GraphicsR6Camera=0x8042B868 -drawPos__8LightObjFR8GraphicsR7Matrixf=0x8042B8E4 -__ct__8LightMgrFPc=0x8042BA8C -registLightObj__8LightMgrFP8LightObj=0x8042BB64 -set__8LightMgrFR8Graphics=0x8042BBA0 -set__8LightMgrFR7Matrixf=0x8042BBF0 -drawDebugInfo__8LightMgrFR8Graphics=0x8042BC84 -update__8LightMgrFv=0x8042BCE0 -__sinit_light_cpp=0x8042BCE4 -__ct__8WipeBaseFv=0x8042BD0C -start__8WipeBaseFf=0x8042BD68 -on_start__8WipeBaseFv=0x8042BDA8 -update__8WipeBaseFv=0x8042BDAC -draw__8WipeBaseFv=0x8042BE24 -do_draw__8WipeBaseFf=0x8042BE84 -isWhite__11WipeInFaderFv=0x8042BE88 -isBlack__11WipeInFaderFv=0x8042BEA0 -__ct__11WipeInFaderFv=0x8042BEB8 -do_draw__11WipeInFaderFf=0x8042BF30 -__ct__12WipeOutFaderFv=0x8042C074 -on_start__12WipeOutFaderFv=0x8042C0EC -isWhite__12WipeOutFaderFv=0x8042C0F0 -isBlack__12WipeOutFaderFv=0x8042C108 -do_draw__12WipeOutFaderFf=0x8042C120 -on_start__14WipeOutInFaderFv=0x8042C258 -isWhite__14WipeOutInFaderFv=0x8042C2A8 -isBlack__14WipeOutInFaderFv=0x8042C2E4 -do_draw__14WipeOutInFaderFf=0x8042C31C -__ct__10BlackFaderFv=0x8042C3C4 -isWhite__10BlackFaderFv=0x8042C440 -isBlack__10BlackFaderFv=0x8042C450 -do_draw__10BlackFaderFf=0x8042C458 -isWhite__8WipeBaseFv=0x8042C578 -isBlack__8WipeBaseFv=0x8042C580 -__dt__10BlackFaderFv=0x8042C588 -__dt__14WipeOutInFaderFv=0x8042C5F8 -__sinit_wipe_cpp=0x8042C6D8 -__ct__Q24Game11MoviePlayerFv=0x8042C700 -__dt__Q24Game12MovieContextFv=0x8042C850 -reset__Q24Game11MoviePlayerFv=0x8042C8B0 -getActiveOrima__Q24Game11MoviePlayerFv=0x8042C8DC -getActiveGameCamera__Q24Game11MoviePlayerFv=0x8042C8F8 -allocMovieHeap__Q24Game11MoviePlayerFUl=0x8042C914 -play__Q24Game11MoviePlayerFRQ24Game12MoviePlayArg=0x8042C9D0 -play__Q24Game11MoviePlayerFPQ24Game11MovieConfigRQ24Game12MoviePlayArgb=0x8042CA30 -findConfig__Q24Game11MoviePlayerFPcPc=0x8042CD6C -__ct__Q24Game12MovieContextFv=0x8042CD90 -allocContexts__Q24Game11MoviePlayerFv=0x8042CE40 -clearContexts__Q24Game11MoviePlayerFv=0x8042CEDC -clearSuspendedDemo__Q24Game11MoviePlayerFv=0x8042CF88 -getNewContext__Q24Game11MoviePlayerFv=0x8042D034 -getChild__Q24Game12MovieContextFv=0x8042D0A0 -setContext__Q24Game11MoviePlayerFPQ24Game12MovieContextPQ24Game11MovieConfigRQ24Game12MoviePlayArg=0x8042D0A8 -loadResource__Q24Game11MoviePlayerFv=0x8042D130 -parse__Q24Game11MoviePlayerFb=0x8042D5A8 -update__Q24Game11MoviePlayerFP10ControllerP10Controller=0x8042D668 -update__Q25P2JME8TControlFP10ControllerP10Controller=0x8042DE2C -draw__Q24Game11MoviePlayerFR8Graphics=0x8042DE58 -start__Q24Game11MoviePlayerFP6Camera=0x8042DED0 -stop__Q24Game11MoviePlayerFv=0x8042DF44 -setCamera__Q24Game11MoviePlayerFP6Camera=0x8042E064 -unsuspend__Q24Game11MoviePlayerFlb=0x8042E388 -resetFrame__Q24Game11MoviePlayerFv=0x8042E458 -setTransform__Q24Game11MoviePlayerFR10Vector3f=0x8042E51C -isPlaying__Q24Game11MoviePlayerFPc=0x8042E5B8 -drawLoading__Q24Game11MoviePlayerFR8Graphics=0x8042E5EC -skip__Q24Game11MoviePlayerFv=0x8042E734 -getNext__Q24Game12MovieContextFv=0x8042E83C -__dt__Q24Game11MoviePlayerFv=0x8042E844 -invoke__30DelegateFv=0x8042E908 -__sinit_moviePlayer_cpp=0x8042E938 -__ct__Q34Game5P2JST11ObjectActorFPCcPQ24Game11MoviePlayer=0x8042E960 -__dt__Q34Game5P2JST11ObjectActorFv=0x8042EA30 -reset__Q34Game5P2JST11ObjectActorFv=0x8042EA98 -update__Q34Game5P2JST11ObjectActorFv=0x8042EB08 -entry__Q34Game5P2JST11ObjectActorFv=0x8042EE98 -setShape__Q34Game5P2JST11ObjectActorFv=0x8042EF00 -setAnim__Q34Game5P2JST11ObjectActorFv=0x8042F0A4 -mountArchive__Q34Game5P2JST11ObjectActorFv=0x8042F1CC -parseUserData___Q34Game5P2JST11ObjectActorFUlPCv=0x8042F204 -JSGFindNodeID__Q34Game5P2JST11ObjectActorCFPCc=0x8042F464 -JSGGetNodeTransformation__Q34Game5P2JST11ObjectActorCFUlPA4_f=0x8042F4D0 -JSGGetName__Q34Game5P2JST11ObjectActorCFv=0x8042F55C -JSGSetFlag__Q34Game5P2JST11ObjectActorFUl=0x8042F564 -JSGGetFlag__Q34Game5P2JST11ObjectActorCFv=0x8042F56C -JSGSetData__Q34Game5P2JST11ObjectActorFUlPCvUl=0x8042F574 -JSGSetTranslation__Q34Game5P2JST11ObjectActorFRC3Vec=0x8042F5AC -JSGGetTranslation__Q34Game5P2JST11ObjectActorCFP3Vec=0x8042F5C8 -JSGSetRotation__Q34Game5P2JST11ObjectActorFRC3Vec=0x8042F5E4 -JSGGetRotation__Q34Game5P2JST11ObjectActorCFP3Vec=0x8042F600 -JSGSetScaling__Q34Game5P2JST11ObjectActorFRC3Vec=0x8042F61C -JSGGetScaling__Q34Game5P2JST11ObjectActorCFP3Vec=0x8042F638 -JSGSetShape__Q34Game5P2JST11ObjectActorFUl=0x8042F654 -JSGGetShape__Q34Game5P2JST11ObjectActorCFv=0x8042F65C -JSGSetAnimation__Q34Game5P2JST11ObjectActorFUl=0x8042F664 -JSGGetAnimation__Q34Game5P2JST11ObjectActorCFv=0x8042F66C -JSGGetAnimationFrameMax__Q34Game5P2JST11ObjectActorCFv=0x8042F674 -JSGSetAnimationFrame__Q34Game5P2JST11ObjectActorFf=0x8042F67C -JSGGetAnimationFrame__Q34Game5P2JST11ObjectActorCFv=0x8042F680 -stop__Q34Game5P2JST11ObjectActorFv=0x8042F688 -start__Q34Game5P2JST11ObjectActorFv=0x8042F68C -parseUserData___Q34Game5P2JST10ObjectBaseFUlPCv=0x8042F690 -__sinit_JSTObjectActor_cpp=0x8042F694 -@4@parseUserData___Q34Game5P2JST11ObjectActorFUlPCv=0x8042F6BC -@4@stop__Q34Game5P2JST11ObjectActorFv=0x8042F6C4 -@4@start__Q34Game5P2JST11ObjectActorFv=0x8042F6CC -@4@update__Q34Game5P2JST11ObjectActorFv=0x8042F6D4 -@4@reset__Q34Game5P2JST11ObjectActorFv=0x8042F6DC -__ct__Q34Game5P2JST12ObjectCameraFPCcPQ24Game11MoviePlayer=0x8042F6E4 -__dt__Q34Game5P2JST12ObjectCameraFv=0x8042F7D4 -reset__Q34Game5P2JST12ObjectCameraFv=0x8042F83C -update__Q34Game5P2JST12ObjectCameraFv=0x8042F8E4 -setProjection__Q34Game5P2JST12ObjectCameraFv=0x8042F8E8 -setView__Q34Game5P2JST12ObjectCameraFv=0x8042F90C -updateCamera__Q34Game5P2JST12ObjectCameraFv=0x8042F988 -JSGGetName__Q34Game5P2JST12ObjectCameraCFv=0x8042F9F4 -JSGSetFlag__Q34Game5P2JST12ObjectCameraFUl=0x8042F9FC -JSGGetFlag__Q34Game5P2JST12ObjectCameraCFv=0x8042FA04 -JSGSetData__Q34Game5P2JST12ObjectCameraFUlPCvUl=0x8042FA0C -JSGSetViewPosition__Q34Game5P2JST12ObjectCameraFRC3Vec=0x8042FA1C -JSGGetViewPosition__Q34Game5P2JST12ObjectCameraCFP3Vec=0x8042FA38 -JSGSetViewTargetPosition__Q34Game5P2JST12ObjectCameraFRC3Vec=0x8042FA54 -JSGGetViewTargetPosition__Q34Game5P2JST12ObjectCameraCFP3Vec=0x8042FA70 -JSGSetViewRoll__Q34Game5P2JST12ObjectCameraFf=0x8042FA8C -JSGGetViewRoll__Q34Game5P2JST12ObjectCameraCFv=0x8042FA94 -JSGSetProjectionNear__Q34Game5P2JST12ObjectCameraFf=0x8042FA9C -JSGGetProjectionNear__Q34Game5P2JST12ObjectCameraCFv=0x8042FAA4 -JSGSetProjectionFar__Q34Game5P2JST12ObjectCameraFf=0x8042FAAC -JSGGetProjectionFar__Q34Game5P2JST12ObjectCameraCFv=0x8042FAB4 -JSGSetProjectionFovy__Q34Game5P2JST12ObjectCameraFf=0x8042FABC -JSGGetProjectionFovy__Q34Game5P2JST12ObjectCameraCFv=0x8042FAC4 -JSGSetProjectionAspect__Q34Game5P2JST12ObjectCameraFf=0x8042FACC -JSGGetProjectionAspect__Q34Game5P2JST12ObjectCameraCFv=0x8042FB30 -setCamera__Q34Game5P2JST12ObjectCameraFP6Camera=0x8042FB38 -start__Q34Game5P2JST12ObjectCameraFv=0x8042FCD8 -stop__Q34Game5P2JST12ObjectCameraFv=0x8042FD10 -__sinit_JSTObjectCamera_cpp=0x8042FD60 -@4@stop__Q34Game5P2JST12ObjectCameraFv=0x8042FD88 -@4@start__Q34Game5P2JST12ObjectCameraFv=0x8042FD90 -@4@update__Q34Game5P2JST12ObjectCameraFv=0x8042FD98 -@4@reset__Q34Game5P2JST12ObjectCameraFv=0x8042FDA0 -__ct__Q34Game5P2JST15ObjectGameActorFPCcPQ24Game11MoviePlayerPQ24Game8Creature=0x8042FDA8 -reset__Q34Game5P2JST15ObjectGameActorFv=0x8042FE3C -stop__Q34Game5P2JST15ObjectGameActorFv=0x8042FE90 -update__Q34Game5P2JST15ObjectGameActorFv=0x8042FFB4 -JSGSetAnimation__Q34Game5P2JST15ObjectGameActorFUl=0x8043048C -JSGSetShape__Q34Game5P2JST15ObjectGameActorFUl=0x80430500 -JSGSetTranslation__Q34Game5P2JST15ObjectGameActorFRC3Vec=0x80430508 -JSGGetTranslation__Q34Game5P2JST15ObjectGameActorCFP3Vec=0x80430524 -JSGSetRotation__Q34Game5P2JST15ObjectGameActorFRC3Vec=0x8043057C -JSGGetRotation__Q34Game5P2JST15ObjectGameActorCFP3Vec=0x80430598 -JSGFindNodeID__Q34Game5P2JST15ObjectGameActorCFPCc=0x804305B4 -JSGGetNodeTransformation__Q34Game5P2JST15ObjectGameActorCFUlPA4_f=0x80430694 -parseUserData___Q34Game5P2JST15ObjectGameActorFUlPCv=0x8043076C -__dt__Q34Game5P2JST15ObjectGameActorFv=0x804308A4 -__sinit_JSTObjectGameActor_cpp=0x8043090C -@4@parseUserData___Q34Game5P2JST15ObjectGameActorFUlPCv=0x80430934 -@4@stop__Q34Game5P2JST15ObjectGameActorFv=0x8043093C -@4@update__Q34Game5P2JST15ObjectGameActorFv=0x80430944 -@4@reset__Q34Game5P2JST15ObjectGameActorFv=0x8043094C -__ct__Q34Game5P2JST12ObjectSystemFPCcPQ24Game11MoviePlayer=0x80430954 -__dt__Q34Game5P2JST12ObjectSystemFv=0x804309F4 -destroyObjectAll__Q34Game5P2JST12ObjectSystemFv=0x80430A78 -reset__Q34Game5P2JST12ObjectSystemFv=0x80430B20 -entry__Q34Game5P2JST12ObjectSystemFv=0x80430C14 -update__Q34Game5P2JST12ObjectSystemFv=0x80430CC0 -start__Q34Game5P2JST12ObjectSystemFv=0x80430D94 -stop__Q34Game5P2JST12ObjectSystemFv=0x80430E68 -findObject__Q34Game5P2JST12ObjectSystemCFPCcQ26JStage8TEObject=0x80430F3C -JSGFindObject__Q34Game5P2JST12ObjectSystemCFPPQ26JStage7TObjectPCcQ26JStage8TEObject=0x80431038 -JSGGetName__Q34Game5P2JST12ObjectSystemCFv=0x80431348 -JSGSetFlag__Q34Game5P2JST12ObjectSystemFUl=0x80431350 -JSGGetFlag__Q34Game5P2JST12ObjectSystemCFv=0x80431358 -JSGSetData__Q34Game5P2JST12ObjectSystemFUlPCvUl=0x80431360 -__sinit_JSTObjectSystem_cpp=0x80431370 -@4@stop__Q34Game5P2JST12ObjectSystemFv=0x80431398 -@4@start__Q34Game5P2JST12ObjectSystemFv=0x804313A0 -@4@update__Q34Game5P2JST12ObjectSystemFv=0x804313A8 -@4@reset__Q34Game5P2JST12ObjectSystemFv=0x804313B0 -findCreature__Q34Game5P2JST12ObjectSystemCFPCc=0x804313B8 -__sinit_JSTFindCreature_cpp=0x80431808 -__dt__Q34Game11MovieConfig6TParmsFv=0x80431830 -dump__Q24Game11MovieConfigFv=0x804318A0 -isSkippable__Q24Game11MovieConfigFv=0x804318A4 -isNeverSkippable__Q24Game11MovieConfigFv=0x804318C0 -is__Q24Game11MovieConfigFPc=0x804318CC -read__Q24Game11MovieConfigFR6Stream=0x80431920 -construct__Q24Game9MovieListFv=0x80431BF4 -__ct__Q24Game9MovieListFv=0x80431C2C -__dt__Q24Game11MovieConfigFv=0x80431DE8 -findConfig__Q24Game9MovieListFPcPc=0x80431E80 -read__Q24Game9MovieListFR6Stream=0x80431F30 -__dt__Q24Game9MovieListFv=0x80432094 -__sinit_movieConfig_cpp=0x80432148 -__ct__Q24Game10GameConfigFv=0x80432170 -__dt__Q34Game10GameConfig5ParmsFv=0x804322A0 -__ct__Q34Game10GameConfig5ParmsFv=0x80432310 -load__Q24Game10GameConfigFPc=0x80432770 -__sinit_gameConfig_cpp=0x80432898 -__dt__Q24Game10GameConfigFv=0x804328D4 -__ct__6FogMgrFv=0x80432948 -off__6FogMgrFR8Graphics=0x804329BC -set__6FogMgrFR8Graphics=0x804329FC -setColor__6FogMgrFR6Color4=0x80432AA8 -getColor__6FogMgrFR6Color4=0x80432ACC -__sinit_fogMgr_cpp=0x80432AF0 -init__Q24ARAM3MgrFv=0x80432B18 -__ct__Q24ARAM3MgrFv=0x80432B48 -dvdToAram__Q24ARAM3MgrFPCcb=0x80432BC8 -__dt__Q24ARAM4NodeFv=0x80432E14 -aramToMainRam__Q24ARAM3MgrFPCcPUcUlUl15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectioniPUl=0x80432E74 -dump__Q24ARAM3MgrFv=0x80432FC8 -search__Q24ARAM3MgrFPCc=0x80433068 -__dt__Q28Resource4NodeFv=0x804330D8 -__ct__Q28Resource10MgrCommandFPc=0x804331B4 -__dt__Q28Resource10MgrCommandFv=0x804332EC -becomeCurrentHeap__Q28Resource10MgrCommandFv=0x804333A4 -releaseCurrentHeap__Q28Resource10MgrCommandFv=0x80433414 -getResource__Q28Resource10MgrCommandFv=0x8043349C -setModeInvalid__Q28Resource10MgrCommandFv=0x804334A8 -memoryCallBackFunc__Q28Resource10MgrCommandFv=0x804334C4 -aramLoadCallBackFunc__Q28Resource10MgrCommandFv=0x8043350C -dvdLoadCallBackFunc__Q28Resource10MgrCommandFv=0x804335A0 -userCallBackInvoke__Q28Resource10MgrCommandFv=0x8043365C -__ct__Q28Resource3MgrFP7JKRHeapUl=0x804336D0 -drawDump__Q28Resource3MgrFR8Graphicsii=0x804337DC -createNewNode__Q28Resource3MgrFPCc=0x804337E0 -loadResource__Q28Resource3MgrFPQ28Resource10MgrCommandPCcb=0x80433994 -destroy__Q28Resource3MgrFPQ28Resource10MgrCommand=0x80433B1C -destroyAll__Q28Resource3MgrFv=0x80433B8C -sync__Q28Resource3MgrFPQ28Resource10MgrCommandb=0x80433BF0 -delFinishCommand__Q28Resource3MgrFv=0x80433DD0 -searchCommand__Q28Resource3MgrFPQ28Resource10MgrCommand=0x80433F00 -invoke__33DelegateFv=0x80433F30 -@24@__dt__Q28Resource4NodeFv=0x80433F60 -@24@__dt__Q28Resource10MgrCommandFv=0x80433F68 -init__Q28Resource5Mgr2DFP7JKRHeap=0x80433F70 -attachResource__Q23Sys16MatBaseAnimationFPvP12J3DModelData=0x80434020 -getFrameMax__Q23Sys16MatBaseAnimationFv=0x804340A4 -__ct__Q23Sys15MatTexAnimationFv=0x80434134 -onAttachResource__Q23Sys15MatTexAnimationFPv=0x80434160 -set__Q23Sys15MatTexAnimationFv=0x804341E8 -remove__Q23Sys15MatTexAnimationFv=0x80434214 -__ct__Q23Sys18MatTevRegAnimationFv=0x80434240 -onAttachResource__Q23Sys18MatTevRegAnimationFPv=0x80434270 -set__Q23Sys18MatTevRegAnimationFv=0x804342FC -remove__Q23Sys18MatTevRegAnimationFv=0x80434328 -__ct__Q23Sys15MatBaseAnimatorFv=0x80434354 -start__Q23Sys15MatBaseAnimatorFPQ23Sys16MatBaseAnimation=0x8043436C -setCurrentFrame__Q23Sys15MatBaseAnimatorFf=0x804343DC -animate__Q23Sys15MatBaseAnimatorFf=0x8043454C -do_animate__Q23Sys15MatBaseAnimatorFf=0x804345C4 -do_animate__Q23Sys15MatLoopAnimatorFf=0x804345C8 -onStart__Q23Sys17MatRepeatAnimatorFv=0x80434778 -do_animate__Q23Sys17MatRepeatAnimatorFf=0x80434784 -onStart__Q23Sys15MatBaseAnimatorFv=0x80434AAC -getAnmBase__Q23Sys18MatTevRegAnimationFv=0x80434AB0 -getAnmBase__Q23Sys15MatTexAnimationFv=0x80434AB8 -__ct__Q29P2DScreen3MgrFv=0x80434AC0 -addCallBack__Q29P2DScreen3MgrFUxPQ29P2DScreen4Node=0x80434B24 -addCallBackPane__Q29P2DScreen3MgrFP7J2DPanePQ29P2DScreen4Node=0x80434C5C -update__Q29P2DScreen3MgrFv=0x80434CE0 -draw__Q29P2DScreen3MgrFR8GraphicsR14J2DGrafContext=0x80434D2C -__ct__Q29P2DScreen10Mgr_tuningFv=0x80434DAC -draw__Q29P2DScreen10Mgr_tuningFR8GraphicsR14J2DGrafContext=0x80434E34 -doInit__Q35P2JME5Movie10WindowPaneFv=0x80434F5C -update__Q35P2JME5Movie10WindowPaneFv=0x80434F7C -moveWindow__Q35P2JME5Movie10WindowPaneFb=0x804350E0 -open__Q35P2JME5Movie10WindowPaneFf=0x80435358 -doInit__Q35P2JME5Movie8AbtnPaneFv=0x804353A0 -update__Q35P2JME5Movie8AbtnPaneFv=0x804353F4 -update__Q35P2JME5Movie13PodIconScreenFv=0x80435564 -__ct__Q35P2JME5Movie8TControlFv=0x8043599C -__dt__Q35P2JME6Window8TControlFv=0x80435A1C -onInit__Q35P2JME5Movie8TControlFv=0x80435A8C -reset__Q35P2JME5Movie8TControlFv=0x8043623C -setMode__Q35P2JME5Movie8TControlFQ45P2JME5Movie8TControl9EModeFlag=0x80436274 -open__Q35P2JME5Movie19MessageWindowScreenFf=0x80436754 -update__Q35P2JME5Movie8TControlFP10ControllerP10Controller=0x80436778 -draw__Q35P2JME5Movie8TControlFR8Graphics=0x804369A0 -__dt__Q35P2JME5Movie8TControlFv=0x80436A6C -draw__Q35P2JME6Window8TControlFPA4_fPA4_f=0x80436AEC -createRenderingProcessor__Q35P2JME6Window8TControlFv=0x80436B0C -createSequenceProcessor__Q35P2JME6Window8TControlFv=0x80436B88 -setMessageID__Q25P2JME8TControlFUx=0x80436C08 -createReference__Q25P2JME8TControlFv=0x80436C40 -createResourceContainer__Q25P2JME8TControlFv=0x80436C50 -__dt__Q35P2JME5Movie19MessageWindowScreenFv=0x80436C60 -__dt__Q35P2JME5Movie13PodIconScreenFv=0x80436D04 -__dt__Q35P2JME5Movie8AbtnPaneFv=0x80436DA8 -__dt__Q35P2JME5Movie10WindowPaneFv=0x80436E28 -__sinit_movieMessage_cpp=0x80436EA8 -setPauseAndDraw__Q24Game11MoviePlayerFPQ24Game11MovieConfig=0x80436ED0 -clearPauseAndDraw__Q24Game11MoviePlayerFv=0x80436F40 -__sinit_moviePlayerPauseAndDraw_cpp=0x804373D8 -__ct__Q34Game5P2JST18ObjectSpecialActorFPCcPQ24Game11MoviePlayer=0x80437400 -reset__Q34Game5P2JST18ObjectSpecialActorFv=0x80437458 -stop__Q34Game5P2JST18ObjectSpecialActorFv=0x804374B4 -update__Q34Game5P2JST18ObjectSpecialActorFv=0x804374B8 -JSGSetAnimation__Q34Game5P2JST18ObjectSpecialActorFUl=0x8043770C -parseUserData___Q34Game5P2JST18ObjectSpecialActorFUlPCv=0x80437790 -__dt__Q34Game5P2JST18ObjectSpecialActorFv=0x80437794 -__sinit_JSTObjectSpecialActor_cpp=0x804377FC -@4@parseUserData___Q34Game5P2JST18ObjectSpecialActorFUlPCv=0x80437824 -@4@stop__Q34Game5P2JST18ObjectSpecialActorFv=0x8043782C -@4@update__Q34Game5P2JST18ObjectSpecialActorFv=0x80437834 -@4@reset__Q34Game5P2JST18ObjectSpecialActorFv=0x8043783C -__ct__Q25P2JME18TSequenceProcessorFPCQ28JMessage10TReferencePQ28JMessage8TControl=0x80437844 -do_begin__Q25P2JME18TSequenceProcessorFPCvPCc=0x804378C8 -do_end__Q25P2JME18TSequenceProcessorFv=0x804378FC -do_tag__Q25P2JME18TSequenceProcessorFUlPCvUl=0x80437900 -do_systemTagCode__Q25P2JME18TSequenceProcessorFUsPCvUl=0x804379A4 -do_isReady__Q25P2JME18TSequenceProcessorFv=0x804379AC -doFastForwardSE__Q25P2JME18TSequenceProcessorFv=0x80437B84 -do_jump_isReady__Q25P2JME18TSequenceProcessorFv=0x80437B88 -do_jump__Q25P2JME18TSequenceProcessorFPCvPCc=0x80437B90 -do_branch_query__Q25P2JME18TSequenceProcessorFUs=0x80437B9C -do_branch_queryResult__Q25P2JME18TSequenceProcessorFv=0x80437BA0 -do_branch__Q25P2JME18TSequenceProcessorFPCvPCc=0x80437BA8 -do_character__Q25P2JME18TSequenceProcessorFi=0x80437BB4 -doCharacterSE__Q25P2JME18TSequenceProcessorFi=0x80437C5C -doCharacterSEStart__Q25P2JME18TSequenceProcessorFv=0x80437C60 -tagControl__Q25P2JME18TSequenceProcessorFUsPCvUl=0x80437C64 -setAbtnWait__Q25P2JME18TSequenceProcessorFv=0x80437D58 -doCharacterSEEnd__Q25P2JME18TSequenceProcessorFv=0x80437DA4 -resetAbtnWait__Q25P2JME18TSequenceProcessorFv=0x80437DA8 -doResetAbtnWaitSE__Q25P2JME18TSequenceProcessorFv=0x80437E08 -reset__Q25P2JME18TSequenceProcessorFv=0x80437E34 -__dt__Q25P2JME18TSequenceProcessorFv=0x80437E4C -create__Q25P2JME3MgrFP10JKRExpHeap=0x80437EAC -__ct__Q25P2JME3MgrFP10JKRExpHeap=0x80437EEC -__dt__Q25P2JME3MgrFv=0x8043805C -setupMessage__Q25P2JME3MgrFv=0x804380C4 -setupTex__Q25P2JME3MgrFv=0x804381C4 -setupFont__Q25P2JME3MgrFPCcP10JKRExpHeap=0x804382BC -createImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDi=0x80438504 -setImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDiP10JUTTexture=0x804386AC -getImage__Q25P2JME3MgrFQ35P2JME10ImageGroup3EIDi=0x80438770 -setupMessageResource__Q25P2JME3MgrFP10JKRArchivePCc=0x80438828 -setupColor__Q25P2JME3MgrFP10JKRArchivePCc=0x8043892C -__sinit_messageMgr_cpp=0x80438A0C -__ct__Q25P2JME8TControlFv=0x80438A34 -setController__Q25P2JME8TControlFP10ControllerP10Controller=0x80438AA8 -setFont__Q25P2JME8TControlFP7JUTFont=0x80438ACC -setRubyFont__Q25P2JME8TControlFP7JUTFont=0x80438B38 -init__Q25P2JME8TControlFv=0x80438BD4 -onInit__Q25P2JME8TControlFv=0x80438CD8 -createRenderingProcessor__Q25P2JME8TControlFv=0x80438CE0 -createSequenceProcessor__Q25P2JME8TControlFv=0x80438D5C -reset__Q25P2JME8TControlFv=0x80438DDC -update__Q25P2JME8TControlFv=0x80438E4C -update__Q25P2JME19TRenderingProcessorFv=0x80438ED8 -draw__Q25P2JME8TControlFR8Graphics=0x80438EDC -draw__Q25P2JME8TControlFPA4_fPA4_f=0x80438EFC -setLocate__Q25P2JME8TControlFii=0x80438F7C -setMessageID__Q25P2JME8TControlFPc=0x80438FCC -setMessageID__Q25P2JME8TControlFUlUl=0x80439020 -setMessageCode__Q25P2JME8TControlFUsUs=0x804390A4 -setMessageCode__Q25P2JME8TControlFUl=0x80439120 -__dt__Q25P2JME8TControlFv=0x80439190 -__ct__Q25P2JME23TRenderingProcessorBaseFPCQ28JMessage10TReference=0x804391F0 -do_tag__Q25P2JME23TRenderingProcessorBaseFUlPCvUl=0x8043922C -tagFont__Q25P2JME23TRenderingProcessorBaseFPCvUl=0x804393A0 -tagRuby__Q25P2JME23TRenderingProcessorBaseFPCvUl=0x804393A8 -tagSize__Q25P2JME23TRenderingProcessorBaseFPCvUl=0x804393B0 -tagColor__Q25P2JME23TRenderingProcessorBaseFPCvUl=0x804393B8 -tagPosition__Q25P2JME23TRenderingProcessorBaseFUsPCvUl=0x804393C0 -tagControl__Q25P2JME23TRenderingProcessorBaseFUsPCvUl=0x804393C8 -tagColorEX__Q25P2JME23TRenderingProcessorBaseFUsPCvUl=0x804393D0 -tagImage__Q25P2JME23TRenderingProcessorBaseFUsPCvUl=0x804393D8 -__ct__Q25P2JME19TRenderingProcessorFPCQ28JMessage10TReference=0x804393E0 -__dt__Q25P2JME23TRenderingProcessorBaseFv=0x804395F8 -do_begin__Q25P2JME19TRenderingProcessorFPCvPCc=0x80439658 -setDrawLocate__Q25P2JME19TRenderingProcessorFv=0x80439740 -newParagraph__Q25P2JME19TRenderingProcessorFv=0x80439AF0 -do_character__Q25P2JME19TRenderingProcessorFi=0x80439BCC -do_select_begin__Q25P2JME19TRenderingProcessorFUl=0x80439EE8 -do_select_end__Q25P2JME19TRenderingProcessorFv=0x80439FA0 -do_select_separate__Q25P2JME19TRenderingProcessorFv=0x8043A00C -do_tag__Q25P2JME19TRenderingProcessorFUlPCvUl=0x8043A0C8 -do_systemTagCode__Q25P2JME19TRenderingProcessorFUsPCvUl=0x8043A23C -tagColor__Q25P2JME19TRenderingProcessorFPCvUl=0x8043A244 -tagSize__Q25P2JME19TRenderingProcessorFPCvUl=0x8043A270 -tagRuby__Q25P2JME19TRenderingProcessorFPCvUl=0x8043A2AC -tagFont__Q25P2JME19TRenderingProcessorFPCvUl=0x8043A410 -tagColorEX__Q25P2JME19TRenderingProcessorFUsPCvUl=0x8043A418 -tagControl__Q25P2JME19TRenderingProcessorFUsPCvUl=0x8043A43C -doTagControlAbtnWait__Q25P2JME19TRenderingProcessorFv=0x8043A4A8 -tagPosition__Q25P2JME19TRenderingProcessorFUsPCvUl=0x8043A4BC -initRuby__Q25P2JME19TRenderingProcessorFv=0x8043ABD8 -drawRuby__Q25P2JME19TRenderingProcessorFv=0x8043ABF4 -tagImage__Q25P2JME19TRenderingProcessorFUsPCvUl=0x8043AF54 -doDrawLetter__Q25P2JME19TRenderingProcessorFffffib=0x8043B38C -doDrawRuby__Q25P2JME19TRenderingProcessorFffffib=0x8043B7CC -doDrawImage__Q25P2JME19TRenderingProcessorFP10JUTTextureffff=0x8043BA68 -setImageGX__Q25P2JME19TRenderingProcessorFv=0x8043BADC -drawImage__Q25P2JME19TRenderingProcessorFP10JUTTextureffff=0x8043BE10 -reset__Q25P2JME19TRenderingProcessorFv=0x8043C304 -calcWidth__Q25P2JME19TRenderingProcessorFP7JUTFontifb=0x8043C314 -setLineWidth__Q25P2JME19TRenderingProcessorFv=0x8043C43C -resetLineWidth__Q25P2JME19TRenderingProcessorFv=0x8043C460 -setOnePageLine__Q25P2JME19TRenderingProcessorFv=0x8043C538 -resetOnePageLine__Q25P2JME19TRenderingProcessorFv=0x8043C578 -setPageInfo__Q25P2JME19TRenderingProcessorFv=0x8043C650 -preProcCode__Q25P2JME19TRenderingProcessorFUi=0x8043C6DC -preProcID__Q25P2JME19TRenderingProcessorFUiUi=0x8043C6FC -preProcCenteringCode__Q25P2JME19TRenderingProcessorFUi=0x8043C71C -preProcCenteringID__Q25P2JME19TRenderingProcessorFUiUi=0x8043CAB8 -setFont__Q25P2JME19TRenderingProcessorFP7JUTFont=0x8043CE64 -setTextBoxInfo__Q25P2JME19TRenderingProcessorFP7J2DPane=0x8043CE6C -__dt__Q25P2JME19TRenderingProcessorFv=0x8043D2B8 -do_character__Q25P2JME23TRenderingProcessorBaseFi=0x8043D328 -convertU64ToMessageID__5P2JMEFUxPUlPUl=0x8043D32C -convertCharToMessageID__5P2JMEFPcPUlPUl=0x8043D374 -entry__15ModelEffectDataFv=0x8043D49C -allocModelData__15ModelEffectDataFi=0x8043D508 -entryModelEffect__11ParticleMgrFP15ModelEffectData=0x8043D614 -createModelEffect__11ParticleMgrFP20ModelEffectCreateArg=0x8043D638 -doAnimation__11ModelEffectFv=0x8043D754 -getLODCylinder__11ModelEffectFRQ23Sys8Cylinder=0x8043D8FC -useCylinderLOD__11ModelEffectFv=0x8043D900 -doEntry__11ModelEffectFv=0x8043D908 -changeMaterial__11ModelEffectFv=0x8043D9A0 -doSetView__11ModelEffectFi=0x8043D9A4 -doViewCalc__11ModelEffectFv=0x8043DA1C -doAnimation__11ParticleMgrFv=0x8043DA40 -doEntry__11ParticleMgrFv=0x8043DA6C -doSetView__11ParticleMgrFi=0x8043DA98 -doViewCalc__11ParticleMgrFv=0x8043DAC4 -__sinit_modelEffect_cpp=0x8043DAF0 -do_word__Q25P2JME10TReferenceCFUl=0x8043DB18 -__dt__Q25P2JME10TReferenceFv=0x8043DB8C -__ct__Q25P2JME13SimpleMessageFv=0x8043DBEC -init__Q25P2JME13SimpleMessageFv=0x8043DBF0 -drawMessageID__Q25P2JME13SimpleMessageFR8GraphicsUlUl=0x8043DC5C -attach__Q28SysShape8AnimInfoFP12J3DModelDataPv=0x8043DCDC -load__Q28SysShape7AnimMgrFP13JKRFileLoaderPcP12J3DModelDataP13JKRFileLoaderPc=0x8043DD5C -load__Q28SysShape7AnimMgrFR6StreamP12J3DModelDataP13JKRFileLoaderPc=0x8043DE7C -read__Q28SysShape7AnimMgrFR6Stream=0x8043DF8C -connectBasArc__Q28SysShape7AnimMgrFPcPcP13JKRFileLoader=0x8043E064 -registerSoundViewer__Q28SysShape7AnimMgrFPQ26PSGame16SoundCreatureMgr=0x8043E15C -__sinit_sysShapeAnimation_cpp=0x8043E1B0 -__ct__Q28SysShape5ModelFP12J3DModelDataUlUl=0x8043E1D8 -enableMaterialAnim__Q28SysShape5ModelFP12J3DModelDatai=0x8043E29C -enableMaterialAnim__Q28SysShape5ModelFi=0x8043E418 -getMatrix__Q28SysShape5ModelFi=0x8043E58C -getRoughBoundingRadius__Q28SysShape5ModelFv=0x8043E5D4 -getRoughCenter__Q28SysShape5ModelFv=0x8043E730 -isVisible__Q28SysShape5ModelFRQ23Sys6Sphere=0x8043E8A4 -jointVisible__Q28SysShape5ModelFbi=0x8043E93C -hide__Q28SysShape5ModelFv=0x8043E9BC -show__Q28SysShape5ModelFv=0x8043EA14 -hidePackets__Q28SysShape5ModelFv=0x8043EA6C -showPackets__Q28SysShape5ModelFv=0x8043EAB0 -initJoints__Q28SysShape5ModelFv=0x8043EAF4 -__dt__Q28SysShape5JointFv=0x8043EBB0 -__ct__Q28SysShape5JointFv=0x8043EC10 -initJointsRec__Q28SysShape5ModelFiPQ28SysShape5Joint=0x8043EC6C -getJntNo__8J3DJointCFv=0x8043EF9C -getYounger__8J3DJointFv=0x8043EFA4 -getChild__8J3DJointFv=0x8043EFAC -getJointIndex__Q28SysShape5ModelFPc=0x8043EFB4 -getJoint__Q28SysShape5ModelFPc=0x8043EFE4 -setViewCalcModeImm__Q28SysShape5ModelFv=0x8043F040 -setViewCalcModeInd__Q28SysShape5ModelFv=0x8043F04C -viewCalc__Q28SysShape5ModelFv=0x8043F058 -setCurrentViewNo__Q28SysShape5ModelFUl=0x8043F0C0 -isMtxImmediate__Q28SysShape5ModelFv=0x8043F10C -isModel__Q28SysShape5ModelFv=0x8043F120 -isVisible__Q28SysShape5ModelFv=0x8043F128 -jointVisible__Q28SysShape5ModelFbPQ28SysShape5Joint=0x8043F130 -__sinit_sysShapeModel_cpp=0x8043F160 -__ct__Q35P2JME6Window8DrawInfoFv=0x8043F188 -__dt__Q35P2JME6Window8DrawInfoFv=0x8043F1D8 -searchDrawInfo__Q35P2JME6Window11DrawInfoMgrFi=0x8043F238 -getDrawInfo__Q35P2JME6Window11DrawInfoMgrFi=0x8043F268 -__ct__Q35P2JME6Window18TSequenceProcessorFPQ28JMessage10TReferencePQ28JMessage8TControl=0x8043F2C8 -doCharacterSE__Q35P2JME6Window18TSequenceProcessorFi=0x8043F304 -doCharacterSEStart__Q35P2JME6Window18TSequenceProcessorFv=0x8043F3A8 -doCharacterSEEnd__Q35P2JME6Window18TSequenceProcessorFv=0x8043F424 -doFastForwardSE__Q35P2JME6Window18TSequenceProcessorFv=0x8043F4A0 -__ct__Q35P2JME6Window19TRenderingProcessorFPQ28JMessage10TReference=0x8043F4FC -doDrawCommon__Q35P2JME6Window19TRenderingProcessorFffP7MatrixfP7Matrixf=0x8043F55C -doGetDrawInfo__Q35P2JME6Window19TRenderingProcessorFPQ35P2JME6Window8DrawInfo=0x8043F8A0 -makeMatrix__Q35P2JME6Window19TRenderingProcessorFP7MatrixfPQ35P2JME6Window8DrawInfof10Vector3=0x8043F8A4 -doDrawLetter__Q35P2JME6Window19TRenderingProcessorFffffib=0x8043FB28 -doDrawRuby__Q35P2JME6Window19TRenderingProcessorFffffib=0x8043FCB0 -doDrawImage__Q35P2JME6Window19TRenderingProcessorFP10JUTTextureffff=0x8043FE2C -update__Q35P2JME6Window19TRenderingProcessorFv=0x80440008 -reset__Q35P2JME6Window19TRenderingProcessorFv=0x80440048 -__ct__Q35P2JME6Window8TControlFv=0x804400EC -initRenderingProcessor__Q35P2JME6Window8TControlFUl=0x8044013C -update__Q35P2JME6Window8TControlFP10ControllerP10Controller=0x8044023C -reset__Q35P2JME6Window8TControlFv=0x804403C4 -draw__Q35P2JME6Window8TControlFR8Graphics=0x804403E4 -onInit__Q35P2JME6Window8TControlFv=0x80440460 -__dt__Q35P2JME6Window19TRenderingProcessorFv=0x804404B0 -__dt__Q35P2JME6Window18TSequenceProcessorFv=0x80440558 -__sinit_windowMessage_cpp=0x804405C8 -__ct__13MemoryCardMgrFv=0x804405F0 -__defctor__20MemoryCardMgrCommandFv=0x8044066C -resetCommandFlagQueue__13MemoryCardMgrFv=0x80440690 -setCommand__13MemoryCardMgrFi=0x804406B4 -setCommand__13MemoryCardMgrFP24MemoryCardMgrCommandBase=0x804406F4 -cardFormat__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot=0x8044082C -init__13MemoryCardMgrFv=0x80440ACC -doInit__13MemoryCardMgrFv=0x80440B48 -update__13MemoryCardMgrFv=0x80440B4C -cardMount__13MemoryCardMgrFv=0x80440E6C -checkStatus__13MemoryCardMgrFv=0x80440FBC -cardProc__13MemoryCardMgrFPv=0x804410C0 -doCardProc__13MemoryCardMgrFPvP20MemoryCardMgrCommand=0x80441310 -isErrorOccured__13MemoryCardMgrFv=0x80441318 -fileOpen__13MemoryCardMgrFP12CARDFileInfoQ213MemoryCardMgr9ECardSlotPCc=0x80441428 -writeHeader__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCc=0x804415C8 -getHeaderSize__13MemoryCardMgrFv=0x80441840 -writeCardStatus__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCc=0x80441848 -write__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCcPUcll=0x80441A9C -checkCardStat__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotP12CARDFileInfo=0x80441CA0 -read__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlotPCcPUcll=0x80441D64 -format__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot=0x80441FE4 -attach__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot=0x8044206C -detach__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot=0x80442104 -mount__13MemoryCardMgrFQ213MemoryCardMgr9ECardSlot=0x80442140 -checkSpace__13MemoryCardMgrFQ213MemoryCardMgr9ECardSloti=0x804422A8 -doMakeHeader__13MemoryCardMgrFPUc=0x804423A4 -doCheckCardStat__13MemoryCardMgrFP8CARDStat=0x804424A8 -doSetCardStat__13MemoryCardMgrFP8CARDStat=0x80442588 -calcCheckSum__13MemoryCardMgrFPvUl=0x80442690 -readCardSerialNo__13MemoryCardMgrFPUxQ213MemoryCardMgr9ECardSlot=0x80442788 -setInsideStatusFlag__13MemoryCardMgrFQ213MemoryCardMgr17EInsideStatusFlag=0x80442840 -resetInsideStatusFlag__13MemoryCardMgrFQ213MemoryCardMgr17EInsideStatusFlag=0x80442854 -__dt__13MemoryCardMgrFv=0x8044285C -getClassSize__20MemoryCardMgrCommandFv=0x804428A4 -__ct__Q34Game10MemoryCard6PlayerFv=0x804428AC -__ct__Q34Game10MemoryCard14PlayerFileInfoFv=0x804428E8 -getPlayer__Q34Game10MemoryCard14PlayerFileInfoFi=0x8044292C -isBrokenFile__Q34Game10MemoryCard14PlayerFileInfoFi=0x804429A0 -isNewFile__Q34Game10MemoryCard14PlayerFileInfoFi=0x80442A20 -__dt__Q34Game10MemoryCard8ResourceFv=0x80442AB4 -__ct__Q34Game10MemoryCard3MgrFv=0x80442B20 -isErrorOccured__Q34Game10MemoryCard3MgrFv=0x80442B9C -loadResource__Q34Game10MemoryCard3MgrFP7JKRHeap=0x80442BCC -destroyResource__Q34Game10MemoryCard3MgrFv=0x80442CEC -update__Q34Game10MemoryCard3MgrFv=0x80442CFC -format__Q34Game10MemoryCard3MgrFv=0x80442D1C -checkBeforeSave__Q34Game10MemoryCard3MgrFv=0x80442D88 -checkError__Q34Game10MemoryCard3MgrFv=0x80442DFC -createNewFile__Q34Game10MemoryCard3MgrFv=0x80442E70 -saveGameOption__Q34Game10MemoryCard3MgrFv=0x80442EE4 -loadGameOption__Q34Game10MemoryCard3MgrFv=0x80442F9C -savePlayerNoCheckSerialNumber__Q34Game10MemoryCard3MgrFi=0x80443054 -savePlayer__Q34Game10MemoryCard3MgrFi=0x80443178 -loadPlayer__Q34Game10MemoryCard3MgrFi=0x8044328C -deletePlayer__Q34Game10MemoryCard3MgrFi=0x804433B0 -copyPlayer__Q34Game10MemoryCard3MgrFii=0x804434D4 -getPlayerHeader__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard14PlayerFileInfo=0x80443624 -doCardProc__Q34Game10MemoryCard3MgrFPvP20MemoryCardMgrCommand=0x8044370C -commandUpdatePlayerHeader__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard14PlayerFileInfo=0x80443A60 -commandCheckBeforeSave__Q34Game10MemoryCard3MgrFv=0x80443DF0 -commandCheckError__Q34Game10MemoryCard3MgrFv=0x80443E6C -checkSpace__Q34Game10MemoryCard3MgrFQ213MemoryCardMgr9ECardSlot=0x80443EEC -commandSaveHeader__Q34Game10MemoryCard3MgrFv=0x80443FA4 -commandCreateNewFile__Q34Game10MemoryCard3MgrFv=0x804440BC -dataFormat__Q34Game10MemoryCard3MgrFQ213MemoryCardMgr9ECardSlot=0x8044425C -varifyCardStatus__Q34Game10MemoryCard3MgrFv=0x8044435C -commandSaveGameOption__Q34Game10MemoryCard3MgrFbb=0x804444CC -commandLoadGameOption__Q34Game10MemoryCard3MgrFv=0x8044468C -writeGameOption__Q34Game10MemoryCard3MgrFR6Stream=0x804448D4 -readGameOption__Q34Game10MemoryCard3MgrFR6Stream=0x804448FC -checkSerialNo__Q34Game10MemoryCard3MgrFb=0x80444924 -commandSavePlayer__Q34Game10MemoryCard3MgrFScb=0x80444994 -commandSavePlayerNoCheckSerialNo__Q34Game10MemoryCard3MgrFScb=0x80444A64 -getPlayerInfo__Q34Game10MemoryCard3MgrFScPQ34Game10MemoryCard16PlayerInfoHeaderPb=0x80444DD8 -getIndexPlayerInfo__Q34Game10MemoryCard3MgrFScPQ34Game10MemoryCard16PlayerInfoHeaderPb=0x80444E48 -commandLoadPlayer__Q34Game10MemoryCard3MgrFSc=0x804450F8 -loadPlayerForNoCard__Q34Game10MemoryCard3MgrFSc=0x80445294 -loadPlayerProc__Q34Game10MemoryCard3MgrFScPUc=0x80445330 -commandDeletePlayer__Q34Game10MemoryCard3MgrFSc=0x804454A8 -savePlayerProc__Q34Game10MemoryCard3MgrFScPUcb=0x8044553C -commandCheckSerialNo__Q34Game10MemoryCard3MgrFv=0x804456D8 -commandCopyPlayer__Q34Game10MemoryCard3MgrFScSc=0x80445740 -writePlayer__Q34Game10MemoryCard3MgrFR6Stream=0x80445908 -readPlayer__Q34Game10MemoryCard3MgrFR6Stream=0x8044592C -checkOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo=0x80445950 -calcCheckSumOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo=0x804459C4 -testCheckSumOptionInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10OptionInfo=0x804459E8 -checkPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo=0x80445A28 -calcCheckSumPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo=0x80445A9C -testCheckSumPlayerInfo__Q34Game10MemoryCard3MgrFPQ34Game10MemoryCard10PlayerInfo=0x80445AC4 -getCardStatus__Q34Game10MemoryCard3MgrFv=0x80445B0C -writeInvalidGameOption__Q34Game10MemoryCard3MgrFv=0x80445BC4 -writeInvalidPlayerInfoAll__Q34Game10MemoryCard3MgrFv=0x80445C7C -writeInvalidPlayerInfo__Q34Game10MemoryCard3MgrFiSc=0x80445CEC -checkPlayerNoPlayerInfo__Q34Game10MemoryCard3MgrFiScPQ34Game10MemoryCard16PlayerInfoHeader=0x80445DFC -getIndexInvalidPlayerInfo__Q34Game10MemoryCard3MgrFPiPScScUlb=0x80445FA4 -modifyPlayerInfo__Q34Game10MemoryCard3MgrFScPb=0x80446324 -verifyCardSerialNo__Q34Game10MemoryCard3MgrFPUxQ213MemoryCardMgr9ECardSlot=0x804467E0 -resetError__Q34Game10MemoryCard3MgrFv=0x80446864 -doMakeHeader__Q34Game10MemoryCard3MgrFPUc=0x804468E0 -doSetCardStat__Q34Game10MemoryCard3MgrFP8CARDStat=0x80446A0C -doCheckCardStat__Q34Game10MemoryCard3MgrFP8CARDStat=0x80446B10 -getClassSize__Q34Game10MemoryCard25MgrCommandGetPlayerHeaderFv=0x80446BEC -getClassSize__Q34Game10MemoryCard20MgrCommandCopyPlayerFv=0x80446BF4 -getClassSize__Q34Game10MemoryCard18MgrCommandPlayerNoFv=0x80446BFC -__dt__Q34Game10MemoryCard3MgrFv=0x80446C04 -getHeaderSize__Q34Game10MemoryCard3MgrFv=0x80446C60 -__ct__Q34Game14CommonSaveData3MgrFv=0x80446C68 -setDefault__Q34Game14CommonSaveData3MgrFv=0x80446CAC -setCardSerialNo__Q34Game14CommonSaveData3MgrFUx=0x80446D24 -resetCardSerialNo__Q34Game14CommonSaveData3MgrFv=0x80446D3C -write__Q34Game14CommonSaveData3MgrFR6Stream=0x80446D5C -read__Q34Game14CommonSaveData3MgrFR6Stream=0x80446E08 -setup__Q34Game14CommonSaveData3MgrFv=0x80446EB4 -resetPlayer__Q34Game14CommonSaveData3MgrFSc=0x80446FB4 -setDeflicker__Q34Game14CommonSaveData3MgrFv=0x80446FC8 -setDeflicker__Q34Game14CommonSaveData3MgrFb=0x80446FF8 -setSoundModeMono__Q34Game14CommonSaveData3MgrFv=0x804470C8 -setSoundModeStereo__Q34Game14CommonSaveData3MgrFv=0x804470FC -setSoundModeSurround__Q34Game14CommonSaveData3MgrFv=0x80447130 -setBgmVolume__Q34Game14CommonSaveData3MgrFf=0x80447164 -setSeVolume__Q34Game14CommonSaveData3MgrFf=0x80447290 -__ct__10TinyPikminFv=0x804473BC -update__10TinyPikminFv=0x804473EC -init__13TinyPikminMgrFv=0x804478A4 -__ct__11BootSectionFP7JKRHeap=0x80447D6C -__dt__11BootSectionFv=0x804480B4 -init__11BootSectionFv=0x80448138 -loadBootResource__11BootSectionFv=0x8044813C -load2DResource__11BootSectionFv=0x804483F4 -__ct__Q23ebi13TScreenProgreFv=0x8044851C -loadResident__11BootSectionFv=0x804487B0 -doDraw__11BootSectionFR8Graphics=0x804487F4 -drawProgressive__11BootSectionFR8Graphics=0x80448990 -drawSetProgressive__11BootSectionFR8Graphics=0x804489B0 -drawSetInterlace__11BootSectionFR8Graphics=0x804489D0 -drawNintendoLogo__11BootSectionFR8Graphics=0x804489F0 -drawDolbyLogo__11BootSectionFR8Graphics=0x80448DD0 -drawEpilepsy__11BootSectionFR8Graphics=0x80448E84 -doUpdate__11BootSectionFv=0x8044900C -updateLoadResourceFirst__11BootSectionFv=0x804496A0 -updateLoadMemoryCard__11BootSectionFv=0x8044973C -updateNintendoLogo__11BootSectionFv=0x80449878 -updateProgressive__11BootSectionFv=0x80449B00 -updateWaitProgressive__11BootSectionFv=0x80449C80 -run__11BootSectionFv=0x80449CE4 -runWait__11BootSectionFM11BootSectionFPCvPv_b=0x80449E04 -waitLoadResource__11BootSectionFv=0x80449EA0 -setMode__11BootSectionFi=0x80449ED0 -setModeEpilepsy__11BootSectionFv=0x80449F54 -forceReset__11BootSectionFv=0x80449FDC -invoke__23Delegate<11BootSection>Fv=0x80449FE4 -__sinit_bootSection_cpp=0x8044A014 -__ct__Q25Title7SectionFP7JKRHeap=0x8044A03C -__dt__Q33ebi5Omake4TMgrFv=0x8044A12C -__dt__Q33ebi6Option4TMgrFv=0x8044A19C -__dt__Q23ebi13TMainTitleMgrFv=0x8044A1F0 -__dt__Q25Title7SectionFv=0x8044A460 -doExit__Q25Title7SectionFv=0x8044A504 -loadResident__Q25Title7SectionFv=0x8044A5C8 -init__Q25Title7SectionFv=0x8044A6CC -menuCancel__Q25Title7SectionFR4Menu=0x8044AB00 -menuSelect__Q25Title7SectionFR4Menu=0x8044AB2C -doDraw__Q25Title7SectionFR8Graphics=0x8044AB80 -doUpdateMainTitle__Q25Title7SectionFv=0x8044AC90 -doUpdateOmake__Q25Title7SectionFv=0x8044B318 -run__Q25Title7SectionFv=0x8044B7E0 -doUpdate__Q25Title7SectionFv=0x8044B8E8 -isFinishable__Q25Title7SectionFv=0x8044BEA0 -doLoadingStart__Q25Title7SectionFv=0x8044BEE0 -doLoading__Q25Title7SectionFv=0x8044BF6C -loadResource__Q25Title7SectionFv=0x8044C058 -forceReset__Q25Title7SectionFv=0x8044C420 -__dt__11HIORootNodeFv=0x8044C428 -invoke__34Delegate1FR4Menu=0x8044C498 -invoke__26DelegateFv=0x8044C4C8 -__sinit_titleSection_cpp=0x8044C4F8 -__dt__Q212LoadResource4NodeFv=0x8044C520 -__ct__Q212LoadResource3ArgFPCc=0x8044C5D8 -__ct__Q212LoadResource11ArgAramOnlyFPCc=0x8044C61C -init__Q212LoadResource3MgrFv=0x8044C664 -mountArchive__Q212LoadResource3MgrFRQ212LoadResource3Arg=0x8044C714 -load__Q212LoadResource3MgrFRQ212LoadResource3Arg=0x8044C7A0 -@24@__dt__Q212LoadResource4NodeFv=0x8044CAC4 -__ct__15RootMenuSectionFP7JKRHeap=0x8044CACC -__dt__15RootMenuSectionFv=0x8044CB14 -setChildSection__15RootMenuSectionFP7JKRHeap=0x8044CB84 -drawInit__15RootMenuSectionFR8Graphics=0x8044CBA8 -doUpdate__15RootMenuSectionFv=0x8044CBAC -doDraw__15RootMenuSectionFR8Graphics=0x8044CBB4 -__ct__Q24Demo7SectionFP7JKRHeap=0x8044CBB8 -__dt__Q24Demo7SectionFv=0x8044CC0C -init__Q24Demo7SectionFv=0x8044CC94 -doDraw__Q24Demo7SectionFR8Graphics=0x8044CE34 -doUpdate__Q24Demo7SectionFv=0x8044CF1C -doExit__Q24Demo7SectionFv=0x8044CFC8 -doLoadingStart__Q24Demo7SectionFv=0x8044D078 -doLoading__Q24Demo7SectionFv=0x8044D11C -loadResource__Q24Demo7SectionFv=0x8044D154 -__dt__Q24Demo11HIORootNodeFv=0x8044D21C -forceReset__Q24Demo7SectionFv=0x8044D28C -invoke__25DelegateFv=0x8044D294 -CreateAudioDecodeThread=0x8044D2C4 -AudioDecodeThreadStart=0x8044D398 -AudioDecodeThreadCancel=0x8044D3CC -AudioDecoder__FPv=0x8044D408 -AudioDecoderForOnMemory__FPv=0x8044D430 -AudioDecode__FP13THPReadBuffer=0x8044D4D8 -PopFreeAudioBuffer=0x8044D5AC -PushFreeAudioBuffer=0x8044D5E0 -PopDecodedAudioBuffer=0x8044D610 -PushDecodedAudioBuffer=0x8044D654 -THPGXRestore=0x8044D684 -THPGXYuv2RgbSetup=0x8044D79C -THPGXYuv2RgbDraw=0x8044DC5C -audioCallbackWithMSound__Fl=0x8044DE38 -THPPlayerInit=0x8044DEE0 -THPPlayerQuit=0x8044DFB8 -THPPlayerOpen=0x8044DFEC -THPPlayerClose=0x8044E320 -THPPlayerCalcNeedMemory=0x8044E374 -THPPlayerSetBuffer=0x8044E424 -PrepareReady__Fi=0x8044E634 -THPPlayerPrepare=0x8044E664 -THPPlayerPlay=0x8044E9F8 -THPPlayerStop=0x8044EA58 -THPPlayerPause=0x8044EB28 -PlayControl__FUl=0x8044EB64 -ProperTimingForStart__Fv=0x8044EE1C -ProperTimingForGettingNextFrame__Fv=0x8044EE88 -THPPlayerDrawCurrentFrame=0x8044EFC8 -THPPlayerGetVideoInfo=0x8044F0A0 -THPPlayerGetAudioInfo=0x8044F0E8 -PushUsedTextureSet__FPv=0x8044F130 -PopUsedTextureSet__Fv=0x8044F160 -THPPlayerDrawDone=0x8044F1A4 -MixAudio__FPsPsUl=0x8044F214 -THPPlayerSetVolume=0x8044F464 -CreateReadThread=0x8044F58C -ReadThreadStart=0x8044F62C -ReadThreadCancel=0x8044F660 -Reader__FPv=0x8044F69C -PopReadedBuffer=0x8044F788 -PushReadedBuffer=0x8044F7BC -PopFreeReadBuffer=0x8044F7EC -PushFreeReadBuffer=0x8044F820 -PopReadedBuffer2=0x8044F850 -PushReadedBuffer2=0x8044F884 -CreateVideoDecodeThread=0x8044F8B4 -VideoDecodeThreadStart=0x8044F98C -VideoDecodeThreadCancel=0x8044F9C0 -VideoDecoder__FPv=0x8044F9FC -VideoDecoderForOnMemory__FPv=0x8044FAC4 -VideoDecode__FP13THPReadBuffer=0x8044FBF8 -PopFreeTextureSet=0x8044FD18 -PushFreeTextureSet=0x8044FD4C -PopDecodedTextureSet=0x8044FD7C -PushDecodedTextureSet=0x8044FDC0 -__ct__Q24Game9THPPlayerFv=0x8044FDF0 -__dt__Q24Game9THPPlayerFv=0x8044FF08 -load__Q24Game9THPPlayerFQ34Game9THPPlayer11EMovieIndex=0x8044FFA0 -load__Q24Game9THPPlayerFv=0x8045006C -loadResource__Q24Game9THPPlayerFv=0x804500D8 -loadResource__Q24Game9THPPlayerFRCQ24Game24THPPlayerLoadResourceArg=0x804500FC -prepare__Q24Game9THPPlayerFv=0x804502C8 -init__Q24Game9THPPlayerFP7JKRHeap=0x804503C4 -play__Q24Game9THPPlayerFv=0x80450484 -pause__Q24Game9THPPlayerFv=0x80450524 -stop__Q24Game9THPPlayerFv=0x8045055C -update__Q24Game9THPPlayerFv=0x80450584 -draw__Q24Game9THPPlayerFR8Graphics=0x80450618 -draw__Q24Game9THPPlayerFR8Graphicsllf=0x804506F4 -draw__Q24Game9THPPlayerFR8GraphicsllUlUl=0x804507B0 -isFinishLoading__Q24Game9THPPlayerFv=0x80450838 -isFinishPlaying__Q24Game9THPPlayerFv=0x80450894 -invoke__27DelegateFv=0x804508B0 -@24@__dt__Q24Game9THPPlayerFv=0x804508E0 -read__Q27Caption4NodeFR6Stream=0x804508E8 -__ct__Q27Caption3MgrFv=0x8045094C -__dt__Q35P2JME7Caption8TControlFv=0x80450A20 -read__Q27Caption3MgrFR6Stream=0x80450AA0 -reset__Q27Caption3MgrFv=0x80450BA8 -resetMessageObjs__Q27Caption3MgrFv=0x80450C10 -update__Q27Caption3MgrFl=0x80450C78 -draw__Q27Caption3MgrFR8Graphics=0x80450E0C -getFreeMessage__Q27Caption3MgrFv=0x80450EA4 -__dt__Q27Caption3MgrFv=0x80450F00 -__dt__Q27Caption4NodeFv=0x80450F60 -doGetDrawInfo__Q35P2JME7Caption19TRenderingProcessorFPQ35P2JME6Window8DrawInfo=0x80450FC0 -doDrawCommon__Q35P2JME7Caption19TRenderingProcessorFffP7MatrixfP7Matrixf=0x80450FCC -__ct__Q35P2JME7Caption8TControlFv=0x804511B8 -onInit__Q35P2JME7Caption8TControlFv=0x8045120C -reset__Q35P2JME7Caption8TControlFv=0x804512F4 -updateSetFrame__Q35P2JME7Caption8TControlFl=0x80451328 -draw__Q35P2JME7Caption8TControlFR8Graphics=0x80451450 -start__Q35P2JME7Caption8TControlFPcll=0x804514D4 -createSequenceProcessor__Q35P2JME7Caption8TControlFv=0x8045152C -createRenderingProcessor__Q35P2JME7Caption8TControlFv=0x804515B4 -__dt__Q35P2JME7Caption18TSequenceProcessorFv=0x80451640 -do_isReady__Q35P2JME7Caption18TSequenceProcessorFv=0x804516C0 -doResetAbtnWaitSE__Q35P2JME7Caption18TSequenceProcessorFv=0x804516C8 -doCharacterSE__Q35P2JME7Caption18TSequenceProcessorFi=0x804516CC -doCharacterSEStart__Q35P2JME7Caption18TSequenceProcessorFv=0x804516D0 -doCharacterSEEnd__Q35P2JME7Caption18TSequenceProcessorFv=0x804516D4 -__dt__Q35P2JME7Caption19TRenderingProcessorFv=0x804516D8 -__ct__Q26Screen9SceneBaseFv=0x80451790 -searchObj__Q26Screen9SceneBaseFPc=0x804518C4 -destroy__Q26Screen9SceneBaseFv=0x804518F4 -create__Q26Screen9SceneBaseFv=0x8045192C -update__Q26Screen9SceneBaseFv=0x804519E8 -updateActive__Q26Screen9SceneBaseFv=0x80451B44 -doUpdateActive__Q26Screen9SceneBaseFv=0x80451B84 -draw__Q26Screen9SceneBaseFR8Graphics=0x80451B88 -start__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg=0x80451C18 -doStart__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg=0x80451C68 -end__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg=0x80451C90 -doEnd__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg=0x80451CF8 -userCallBackFunc__Q26Screen9SceneBaseFPQ28Resource10MgrCommand=0x80451D1C -createObj__Q26Screen9SceneBaseFP10JKRArchive=0x80451D48 -registObj__Q26Screen9SceneBaseFPQ26Screen7ObjBaseP10JKRArchive=0x80451D74 -confirmSetScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg=0x80451DD0 -confirmStartScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg=0x80451E48 -confirmEndScene__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg=0x80451EC0 -setScene__Q26Screen9SceneBaseFRQ26Screen11SetSceneArg=0x80451F30 -startScene__Q26Screen9SceneBaseFPQ26Screen13StartSceneArg=0x80451F60 -endScene__Q26Screen9SceneBaseFPQ26Screen11EndSceneArg=0x80451F90 -setBackupScene__Q26Screen9SceneBaseFv=0x80451FC0 -setDispMember__Q26Screen9SceneBaseFPQ32og6Screen14DispMemberBase=0x804520C0 -getFinishState__Q26Screen9SceneBaseFv=0x804521F0 -getGamePad__Q26Screen9SceneBaseCFv=0x80452230 -setColorBG__Q26Screen9SceneBaseFUcUcUcUc=0x80452284 -setColorBG__Q26Screen3MgrFRQ28JUtility6TColor=0x804522C8 -setBGMode__Q26Screen3MgrFi=0x804522CC -invoke__55Delegate1FPQ28Resource10MgrCommand=0x804522D0 -__ct__Q26Screen13SceneInfoListFv=0x80452300 -__ct__Q26Screen3MgrFv=0x80452354 -__dt__Q26Screen13SceneInfoListFv=0x80452520 -init__Q26Screen3MgrFv=0x80452580 -reset__Q26Screen3MgrFv=0x804525F0 -startScene__Q26Screen3MgrFPQ26Screen13StartSceneArg=0x804526EC -endScene__Q26Screen3MgrFPQ26Screen11EndSceneArg=0x804528D4 -getCurrentCommand__Q26Screen3MgrFv=0x80452A60 -getNewCommand__Q26Screen3MgrFv=0x80452A68 -releaseCommand__Q26Screen3MgrFPQ26Screen10MgrCommand=0x80452B10 -update__Q26Screen3MgrFv=0x80452B68 -draw__Q26Screen3MgrFR8Graphics=0x80452E40 -drawBG__Q26Screen3MgrFR8Graphics=0x80452EF4 -doGetSceneBase__Q26Screen3MgrFl=0x80452EF8 -clearBackupSceneInfo__Q26Screen3MgrFv=0x80452F00 -changeScene__Q26Screen3MgrFRQ26Screen11SetSceneArgPUc=0x80452F78 -setScene__Q26Screen3MgrFRQ26Screen11SetSceneArg=0x804531C4 -isCurrentSceneLoading__Q26Screen3MgrFv=0x8045375C -copyDispMember__Q26Screen3MgrFPUcPUc=0x80453780 -setDispMember__Q26Screen3MgrFPQ32og6Screen14DispMemberBase=0x804538E0 -getDispMember__Q26Screen3MgrFv=0x80453914 -getSceneType__Q26Screen3MgrFv=0x80453930 -isSceneFinish__Q26Screen3MgrFv=0x80453970 -getSceneFinishState__Q26Screen3MgrFv=0x80453998 -setGamePad__Q26Screen3MgrFP10Controller=0x804539D0 -setBackupScene__Q26Screen3MgrFv=0x804539EC -isAnyReservation__Q26Screen3MgrCFv=0x80453A20 -__dt__Q26Screen10MgrCommandFv=0x80453A58 -__sinit_screenMgr_cpp=0x80453AC0 -__ct__Q26Screen7ObjBaseFv=0x80453AE8 -create__Q26Screen7ObjBaseFP10JKRArchive=0x80453B78 -start__Q26Screen7ObjBaseFPCQ26Screen13StartSceneArg=0x80453BA4 -end__Q26Screen7ObjBaseFPCQ26Screen11EndSceneArg=0x80453C50 -update__Q26Screen7ObjBaseFv=0x80453D88 -draw__Q26Screen7ObjBaseFR8Graphics=0x80453E98 -doDraw__Q26Screen7ObjBaseFR8Graphics=0x80453ED0 -getDispMember__Q26Screen7ObjBaseFv=0x80453FA8 -confirmSetScene__Q26Screen7ObjBaseFRQ26Screen11SetSceneArg=0x80453FB4 -confirmStartScene__Q26Screen7ObjBaseFPQ26Screen13StartSceneArg=0x80453FE0 -confirmEndScene__Q26Screen7ObjBaseFPQ26Screen11EndSceneArg=0x8045400C -getGamePad__Q26Screen7ObjBaseCFv=0x80454040 -__ct__Q26Screen10ObjMgrBaseFv=0x80454070 -registObj__Q26Screen10ObjMgrBaseFPQ26Screen8IObjBasePQ26Screen9SceneBase=0x804540B4 -update__Q26Screen10ObjMgrBaseFv=0x8045410C -draw__Q26Screen10ObjMgrBaseFR8Graphics=0x80454174 -search__Q26Screen10ObjMgrBaseFPQ26Screen9SceneBasePc=0x804541D0 -start__Q26Screen10ObjMgrBaseFPQ26Screen13StartSceneArg=0x80454268 -end__Q26Screen10ObjMgrBaseFPQ26Screen11EndSceneArg=0x804542E0 -confirmSetScene__Q26Screen10ObjMgrBaseFRQ26Screen11SetSceneArg=0x80454358 -confirmStartScene__Q26Screen10ObjMgrBaseFPQ26Screen13StartSceneArg=0x804543D4 -confirmEndScene__Q26Screen10ObjMgrBaseFPQ26Screen11EndSceneArg=0x80454450 -@24@__dt__Q26Screen7ObjBaseFv=0x804544CC -__ct__Q34Game5P2JST19ObjectParticleActorFPCcPQ24Game11MoviePlayerPQ24Game8Creature=0x804544D4 -reset__Q34Game5P2JST19ObjectParticleActorFv=0x8045463C -stop__Q34Game5P2JST19ObjectParticleActorFv=0x80454664 -update__Q34Game5P2JST19ObjectParticleActorFv=0x80454684 -JSGSetShape__Q34Game5P2JST19ObjectParticleActorFUl=0x80454744 -parseUserData___Q34Game5P2JST19ObjectParticleActorFUlPCv=0x80454780 -JSGSetTranslation__Q34Game5P2JST19ObjectParticleActorFRC3Vec=0x804548F8 -JSGGetTranslation__Q34Game5P2JST19ObjectParticleActorCFP3Vec=0x80454914 -emit__Q34Game5P2JST19ObjectParticleActorFv=0x80454930 -executeAfter__Q34Game5P2JST19ObjectParticleActorFP14JPABaseEmitter=0x80454B20 -killEmitter__Q34Game5P2JST19ObjectParticleActorFv=0x80454C14 -__dt__Q34Game5P2JST19ObjectParticleActorFv=0x80454C58 -__sinit_JSTObjectParticleActor_cpp=0x80454CD8 -@4@parseUserData___Q34Game5P2JST19ObjectParticleActorFUlPCv=0x80454D00 -@4@stop__Q34Game5P2JST19ObjectParticleActorFv=0x80454D08 -@4@update__Q34Game5P2JST19ObjectParticleActorFv=0x80454D10 -@4@reset__Q34Game5P2JST19ObjectParticleActorFv=0x80454D18 -@112@executeAfter__Q34Game5P2JST19ObjectParticleActorFP14JPABaseEmitter=0x80454D20 -@112@__dt__Q34Game5P2JST19ObjectParticleActorFv=0x80454D28 -__ct__27Pikmin_TCreateObject_JAudioFP8JAIBasicPCQ26JStage7TSystem=0x80454D30 -create__27Pikmin_TCreateObject_JAudioFPPQ27JStudio7TObjectRCQ47JStudio3stb4data20TParse_TBlock_object=0x80454D6C -__dt__27Pikmin_TCreateObject_JAudioFv=0x80454F00 -__sinit_moviePlayerAudio_cpp=0x80454F60 -__dt__Q25P2JME13TSeqProcNoSeqFv=0x80454F88 -makeMatrix__Q35P2JME15IllustratedBook19TRenderingProcessorFP7MatrixfPQ35P2JME6Window8DrawInfof10Vector3=0x80454FF8 -__ct__Q35P2JME15IllustratedBook8TControlFv=0x80455044 -onInit__Q35P2JME15IllustratedBook8TControlFv=0x804550A4 -reset__Q35P2JME15IllustratedBook8TControlFv=0x804550E0 -getScrollPosition__Q35P2JME15IllustratedBook8TControlFv=0x8045511C -scroll__Q35P2JME15IllustratedBook8TControlFf=0x80455144 -update__Q35P2JME15IllustratedBook8TControlFP10ControllerP10Controller=0x80455238 -setTextBoxInfo__Q35P2JME15IllustratedBook8TControlFP10J2DTextBox=0x80455308 -draw__Q35P2JME15IllustratedBook8TControlFPA4_fPA4_f=0x80455388 -__dt__Q35P2JME15IllustratedBook8TControlFv=0x80455400 -draw__Q35P2JME15IllustratedBook8TControlFR8Graphics=0x80455480 -createRenderingProcessor__Q35P2JME15IllustratedBook8TControlFv=0x804554A0 -createSequenceProcessor__Q35P2JME15IllustratedBook8TControlFv=0x80455524 -__dt__Q35P2JME15IllustratedBook19TRenderingProcessorFv=0x804555B8 -doTagControlAbtnWait__Q35P2JME15IllustratedBook19TRenderingProcessorFv=0x80455670 -__dt__Q35P2JME15IllustratedBook18TSequenceProcessorFv=0x80455678 -do_isReady__Q25P2JME13TSeqProcNoSeqFv=0x804556F8 -__ct__Q23Sys10DrawBufferFv=0x80455700 -__dt__Q23Sys10DrawBufferFv=0x8045575C -create__Q23Sys10DrawBufferFRQ33Sys10DrawBuffer9CreateArg=0x804557BC -draw__Q23Sys10DrawBufferFv=0x80455898 -frameInit__Q23Sys10DrawBufferFv=0x80455920 -__ct__Q23Sys11DrawBuffersFv=0x80455978 -__dt__Q23Sys11DrawBuffersFv=0x804559CC -allocate__Q23Sys11DrawBuffersFi=0x80455A2C -get__Q23Sys11DrawBuffersFi=0x80455AC4 -frameInitAll__Q23Sys11DrawBuffersFv=0x80455B50 -init__Q211Pikmin2ARAM3MgrFv=0x80455C30 -__ct__Q211Pikmin2ARAM3MgrFv=0x80455C90 -setLoadPermission__Q211Pikmin2ARAM3MgrFb=0x80455CA8 -load__Q211Pikmin2ARAM3MgrFv=0x80455CB0 -dump__Q211Pikmin2ARAM3MgrFv=0x80455D10 -loadEnemy__Q211Pikmin2ARAM3MgrFv=0x80455D34 -load2D__Q211Pikmin2ARAM3MgrFv=0x80455ED8 -loadDemo__Q211Pikmin2ARAM3MgrFv=0x80455F90 -loadItem__Q211Pikmin2ARAM3MgrFv=0x80456008 -__dt__Q211Pikmin2ARAM3MgrFv=0x80456080 -__ct__Q25P2JME8AnalyzerFPCQ28JMessage10TReference=0x804560C8 -do_character__Q25P2JME8AnalyzerFi=0x80456104 -exec__Q25P2JME8AnalyzerFPc=0x80456108 -__ct__4MenuFP10JUTGamePadP7JUTFontb=0x80456184 -addOption__4MenuFiPcP18IDelegate1b=0x804562B0 -addKeyEvent__4MenuFQ34Menu8KeyEvent9cTypeFlagUlP18IDelegate1=0x80456370 -doUpdate__4MenuFb=0x80456438 -__ct__Q24Menu8KeyEventFQ34Menu8KeyEvent9cTypeFlagUlP18IDelegate1=0x804567D8 -__ct__Q24Menu8MenuItemFQ34Menu8MenuItem9cTypeFlagiPc=0x80456840 -getNext__Q24Menu8MenuItemFv=0x804568C0 -getPrev__Q24Menu8MenuItemFv=0x804568DC -checkEvents__Q24Menu8MenuItemFP4Menui=0x804568F8 -__ct__Q23PSM14DamageDirectorFv=0x80456AF8 -__dt__Q23PSM15OneShotDirectorFv=0x80456B78 -directOnTrack__Q23PSM14DamageDirectorFRQ28PSSystem12SeqTrackBase=0x80456BF8 -execInner__Q23PSM14DamageDirectorFv=0x80456C2C -__dt__Q23PSM16SwitcherDirectorFv=0x80456C68 -directOnTrack__Q23PSM23TempoChangeDirectorBaseFRQ28PSSystem12SeqTrackBase=0x80456CE8 -directOffTrack__Q23PSM23TempoChangeDirectorBaseFRQ28PSSystem12SeqTrackBase=0x80456D18 -__ct__Q23PSM25ActorDirector_TempoChangeFv=0x80456D48 -__dt__Q23PSM23TempoChangeDirectorBaseFv=0x80456DCC -execInner__Q23PSM25ActorDirector_TempoChangeFv=0x80456E5C -__ct__Q23PSM20PikminNumberDirectorFiUcRQ28PSSystem11DirectedBgm=0x80456E98 -directOnTrack__Q23PSM20PikminNumberDirectorFRQ28PSSystem12SeqTrackBase=0x80456F10 -directOffTrack__Q23PSM20PikminNumberDirectorFRQ28PSSystem12SeqTrackBase=0x80456F5C -execInner__Q23PSM20PikminNumberDirectorFv=0x80456F88 -__ct__Q23PSM28PikminNumberDirector_AutoBgmFiUcRQ28PSSystem11DirectedBgm=0x80456FC4 -__dt__Q23PSM20PikminNumberDirectorFv=0x80457058 -directOnTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase=0x804570E8 -directOffTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase=0x80457170 -getTrack__Q23PSM28PikminNumberDirector_AutoBgmFRQ28PSSystem12SeqTrackBase=0x804571F8 -__ct__Q23PSM19TrackOnDirectorBaseFiPCcll=0x804572B0 -onPlayInit__Q23PSM19TrackOnDirectorBaseFP8JASTrack=0x8045732C -directOnTrack__Q23PSM19TrackOnDirectorBaseFRQ28PSSystem12SeqTrackBase=0x80457360 -directOffTrack__Q23PSM19TrackOnDirectorBaseFRQ28PSSystem12SeqTrackBase=0x804573B0 -execInner__Q23PSM22TrackOnDirector_VotingFv=0x804573DC -__dt__Q23PSM19TrackOnDirectorBaseFv=0x8045746C -underDirection__Q23PSM22TrackOnDirector_ScaledFv=0x804574FC -onUpdateFromMasterD__Q23PSM17ListDirectorActorFv=0x804575F8 -__ct__Q23PSM21ActorDirector_TrackOnFPCcill=0x80457684 -execInner__Q23PSM21ActorDirector_TrackOnFv=0x8045771C -__ct__Q23PSM20ActorDirector_ScaledFPCciffllUl=0x80457758 -__dt__Q23PSM22TrackOnDirector_ScaledFv=0x8045784C -execInner__Q23PSM20ActorDirector_ScaledFv=0x804578EC -getNearestDistance__Q23PSM20ActorDirector_ScaledFv=0x80457928 -__ct__Q23PSM19ActorDirector_EnemyFPCcillUl=0x80457F3C -__dt__Q23PSM20ActorDirector_ScaledFv=0x80458020 -onSetMinDistObj__Q23PSM19ActorDirector_EnemyFPQ24Game8Creature=0x804580D0 -underDirection__Q23PSM19ActorDirector_EnemyFv=0x804580D8 -getVolZeroDist__Q23PSM20ActorDirector_BattleFPQ24Game9EnemyBase=0x804582A8 -getVolMaxDist__Q23PSM20ActorDirector_BattleFPQ24Game9EnemyBase=0x804582EC -getVolZeroDist__Q23PSM19ActorDirector_KehaiFPQ24Game9EnemyBase=0x80458330 -getVolMaxDist__Q23PSM19ActorDirector_KehaiFPQ24Game9EnemyBase=0x80458374 -__ct__Q23PSM17PikAttackDirectorFi=0x804583B8 -__ct__Q23PSM13ExiteDirectorFi=0x80458434 -__ct__Q23PSM15DirectorUpdatorFPQ28PSSystem12DirectorBaseUcQ33PSM15DirectorUpdator4Type=0x804584B0 -directOn__Q23PSM15DirectorUpdatorFUc=0x80458518 -directOff__Q23PSM15DirectorUpdatorFUc=0x8045854C -frameEndWork__Q23PSM15DirectorUpdatorFv=0x80458580 -PSMGetBattleDirector__FUc=0x804586AC -PSMGetKehaiD__Fv=0x804587F4 -PSMGetBattleD__Fv=0x804588FC -PSMGetEventD__Fv=0x80458A04 -PSMGetOtakaraEventD__Fv=0x80458B0C -PSMGetGroundD__Fv=0x80458BFC -PSMGetPikminNumD__Fv=0x80458D90 -PSMGetDamageD__Fv=0x80458E80 -PSMGetLifeD__Fv=0x80458F70 -PSMGetBeedamaForOrimerD__Fv=0x80459060 -PSMGetBeedamaForLugieD__Fv=0x80459150 -PSMGetIchouForOrimerD__Fv=0x80459240 -PSMGetIchouForLugieD__Fv=0x80459330 -PSMGetPikiBattleD__Fv=0x80459420 -__dt__Q23PSM13ExiteDirectorFv=0x80459510 -onSetMinDistObj__Q23PSM20ActorDirector_ScaledFPQ24Game8Creature=0x804595B0 -is1PGame__Q23PSM11ObjCalcBaseFv=0x804595B4 -is2PBattle__Q23PSM16OtakaraEventLinkFv=0x804595BC -__dt__Q23PSM17PikAttackDirectorFv=0x804595C4 -__dt__Q23PSM19ActorDirector_KehaiFv=0x80459664 -__dt__Q23PSM20ActorDirector_BattleFv=0x80459734 -__dt__Q23PSM19ActorDirector_EnemyFv=0x80459804 -__dt__Q23PSM21ActorDirector_TrackOnFv=0x804598C4 -__dt__Q23PSM22TrackOnDirector_VotingFv=0x80459964 -__dt__Q23PSM28PikminNumberDirector_AutoBgmFv=0x80459A04 -__dt__Q23PSM25ActorDirector_TempoChangeFv=0x80459AA4 -__dt__Q23PSM14DamageDirectorFv=0x80459B44 -play__Q23PSM12Env_PollutinFv=0x80459BD4 -play__Q23PSM24EnvSe_Perspective_AvoidYFv=0x80459E48 -newSeObj__Q23PSM15EnvSeObjBuilderFUlf3Vec=0x8045A0C8 -onBuild__Q23PSM15EnvSeObjBuilderFPQ28PSSystem9EnvSeBase=0x8045A168 -__ct__Q23PSM8SceneMgrFv=0x8045A1C4 -newMainBgm__Q23PSM8SceneMgrFPCcRQ27JAInter9SoundInfo=0x8045A200 -curSceneIsBigBossFloor__Q23PSM8SceneMgrFv=0x8045A2D8 -newDirectedBgm__Q23PSM8SceneMgrFPCcRQ27JAInter9SoundInfo=0x8045A2EC -newGameScene__Q23PSM8SceneMgrFUcPQ26PSGame9SceneInfo=0x8045A4AC -initEnvironmentSe__Q23PSM8SceneMgrFPQ23PSM10Scene_Game=0x8045A6A0 -SetBossBgmMuteVol__3PSMFPQ28PSSystem8EnvSeMgrUlf=0x8045BF5C -SetNoYOfset__3PSMFPQ28PSSystem8EnvSeMgr=0x8045BFE8 -setInfo__Q23PSM15EnvSeObjBuilderFQ23PSM11PersEnvInfo=0x8045C05C -__ct__Q23PSM15EnvSeObjBuilderFQ29JGeometry8TBox3=0x8045C088 -__ct__Q29JGeometry8TBox3FRCQ29JGeometry8TBox3=0x8045C0F8 -newAutoBgm__Q23PSM8SceneMgrFPCcPCcRQ27JAInter9SoundInfoQ210JADUtility10AccessModeRQ26PSGame9SceneInfoPQ28PSSystem15DirectorMgrBase=0x8045C12C -__ct__Q23PSM13MiddleBossSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase=0x8045C290 -onJump__Q23PSM13MiddleBossSeqFUs=0x8045C2F0 -exec__Q23PSM13MiddleBossSeqFv=0x8045C384 -requestJumpBgmQuickly__Q23PSM13MiddleBossSeqFUs=0x8045C3C4 -requestJumpBgmOnBeat__Q23PSM13MiddleBossSeqFUs=0x8045C420 -requestJumpBgmEveryBeat__Q23PSM13MiddleBossSeqFUs=0x8045C47C -jumpCheck__Q23PSM13MiddleBossSeqFUs=0x8045C4D8 -__ct__Q23PSM10BigBossSeqFPCcRCQ27JAInter9SoundInfoPQ28PSSystem15DirectorMgrBase=0x8045C6EC -__dt__Q23PSM13MiddleBossSeqFv=0x8045C758 -jumpCheck__Q23PSM10BigBossSeqFUs=0x8045C7D8 -onJump__Q23PSM10BigBossSeqFUs=0x8045C98C -__ct__Q23PSM14PersEnvManagerFPQ28PSSystem8EnvSeMgr=0x8045CA24 -playOk__Q23PSM14PersEnvManagerFPQ23PSM24EnvSe_Perspective_AvoidY=0x8045CA7C -exec__Q23PSM14PersEnvManagerFv=0x8045CABC -__dt__Q23PSM10BigBossSeqFv=0x8045CC80 -getCastType__Q23PSM24EnvSe_Perspective_AvoidYFv=0x8045CD10 -getCastType__Q23PSM12Env_PollutinFv=0x8045CD1C -__dt__Q23PSM9SceneBaseFv=0x8045CD28 -__ct__Q28PSSystem8EnvSeMgrFv=0x8045CD88 -__dt__Q23PSM15EnvSeObjBuilderFv=0x8045CDDC -__sinit_PSMainSide_Factory_cpp=0x8045CE3C -__dt__Q23PSM7ObjBaseFv=0x8045CE64 -frameEnd_onPlaySe__Q23PSM6ObjMgrFv=0x8045CEE4 -__dt__Q23PSM6ObjMgrFv=0x8045CF30 -exec__Q23PSM8CreatureFv=0x8045D034 -judgeNearWithPlayer__Q23PSM8CreatureFRC3VecRC3Vecff=0x8045D08C -isNear__Q23PSM8CreatureFPQ24Game8Creaturef=0x8045D1B4 -getPlayingHandleNum__Q23PSM8CreatureFv=0x8045D254 -loopCalc__Q23PSM8CreatureFRQ23PSM12FrameCalcArg=0x8045D2C4 -startSoundInner__Q23PSM8CreatureFRQ23PSM13StartSoundArg=0x8045D420 -onPlayingSe__Q23PSM8CreatureFUlP8JAISound=0x8045D7A0 -__ct__Q23PSM11CreatureObjFPQ24Game8CreatureUc=0x8045D7A4 -__dt__Q23PSM8CreatureFv=0x8045D8B0 -startSound__Q23PSM11CreatureObjFUlUl=0x8045D948 -startSound__Q23PSM11CreatureObjFUcUlUl=0x8045D984 -startSound__Q23PSM11CreatureObjFPP8JAISoundUlUl=0x8045DA10 -frameEnd_onPlaySe__Q23PSM11CreatureObjFv=0x8045DAB8 -startAnimSound__Q23PSM13CreatureAnimeFUlPP8JAISoundPQ27JAInter5ActorUc=0x8045DB04 -startSound__Q23PSM13CreatureAnimeFUlUl=0x8045DC4C -startSound__Q23PSM13CreatureAnimeFUcUlUl=0x8045DC88 -startSound__Q23PSM13CreatureAnimeFPP8JAISoundUlUl=0x8045DD38 -setAnime__Q23PSM13CreatureAnimeFP17JAIAnimeSoundDataUlff=0x8045DDE0 -playActorAnimSound__Q23PSM13CreatureAnimeFPQ27JAInter5ActorfUc=0x8045DE20 -exec__Q23PSM13CreatureAnimeFv=0x8045E124 -onCalcOn__Q23PSM13CreatureAnimeFv=0x8045E1D8 -onCalcTurnOn__Q23PSM13CreatureAnimeFv=0x8045E2A0 -onCalcTurnOff__Q23PSM13CreatureAnimeFv=0x8045E2C4 -frameEnd_onPlaySe__Q23PSM13CreatureAnimeFv=0x8045E2C8 -battleOn__Q23PSM10BattleLinkFv=0x8045E314 -battleOff__Q23PSM10BattleLinkFv=0x8045E360 -kehaiOn__Q23PSM9KehaiLinkFv=0x8045E3AC -kehaiOff__Q23PSM9KehaiLinkFv=0x8045E3F8 -__ct__Q23PSM9EnemyBaseFPQ24Game9EnemyBaseUc=0x8045E444 -__dt__Q23PSM13CreatureAnimeFv=0x8045E5C4 -startAnimSound__Q23PSM9EnemyBaseFUlPP8JAISoundPQ27JAInter5ActorUc=0x8045E6A0 -startSoundInner__Q23PSM9EnemyBaseFRQ23PSM13StartSoundArg=0x8045E814 -onCalcTurnOn__Q23PSM9EnemyBaseFv=0x8045E870 -onCalcTurnOff__Q23PSM9EnemyBaseFv=0x8045E8B4 -onCalcOn__Q23PSM9EnemyBaseFv=0x8045E900 -battleOff__Q23PSM9EnemyBaseFv=0x8045E9F0 -updateKehai__Q23PSM9EnemyBaseFv=0x8045EA50 -updateBattle__Q23PSM9EnemyBaseFv=0x8045EAD8 -calcKehai__Q23PSM9EnemyBaseFv=0x8045EBA0 -judgeNearWithPlayer__Q23PSM9EnemyBaseFRC3VecRC3Vecff=0x8045EED8 -__ct__Q23PSM18EnemyNotAggressiveFPQ24Game9EnemyBaseUc=0x8045EF6C -__ct__Q23PSM9TsuyukusaFPQ24Game8Creature=0x8045F118 -noukouFrameWork__Q23PSM9TsuyukusaFb=0x8045F278 -judgeNearWithPlayer__Q23PSM8EnemyBigFRC3VecRC3Vecff=0x8045F330 -onPlayingSe__Q23PSM9EnemyBossFUlP8JAISound=0x8045F458 -judgeNearWithPlayer__Q23PSM9EnemyBossFRC3VecRC3Vecff=0x8045F4CC -exec__Q23PSM9EnemyBossFv=0x8045F4E0 -onCalcOn__Q23PSM9EnemyBossFv=0x8045F594 -calcDistance__Q23PSM9EnemyBossFv=0x8045F68C -setAppearFlag__Q23PSM9EnemyBossFb=0x8045F9F0 -dyingFrameWork__Q23PSM9EnemyBossFv=0x8045FB30 -onDeathMotionTop__Q23PSM9EnemyBossFv=0x8045FB8C -setKilled__Q23PSM9EnemyBossFv=0x8045FDC0 -isOnDisappearing__Q23PSM9EnemyBossFv=0x8045FF1C -updateDisappearing__Q23PSM9EnemyBossFv=0x8045FF40 -__ct__Q23PSM12EnemyMidBossFPQ24Game9EnemyBase=0x8045FF70 -__dt__Q23PSM9EnemyBossFv=0x804601D0 -onCalcOn__Q23PSM12EnemyMidBossFv=0x80460378 -jumpRequest__Q23PSM12EnemyMidBossFUs=0x80460594 -onAppear1st__Q23PSM12EnemyMidBossFv=0x80460680 -postPikiAttack__Q23PSM12EnemyMidBossFb=0x8046078C -__ct__Q23PSM12EnemyBigBossFPQ24Game9EnemyBase=0x804607EC -__dt__Q23PSM12EnemyMidBossFv=0x80460854 -__dt__Q23PSM12EnemyBigBossFv=0x80460A44 -jumpRequest__Q23PSM12EnemyBigBossFUs=0x80460ACC -onDeathMotionTop__Q23PSM12EnemyBigBossFv=0x80460BB4 -onAppear1st__Q23PSM12EnemyBigBossFv=0x80460BEC -onPlayingSe__Q23PSM19Enemy_SpecialChappyFUlP8JAISound=0x80460CF8 -eventStart__Q23PSM12DirectorLinkFv=0x80460DB4 -eventRestart__Q23PSM12DirectorLinkFv=0x80460DE0 -eventStop__Q23PSM12DirectorLinkFv=0x80460E2C -eventFinish__Q23PSM12DirectorLinkFv=0x80460E78 -getListDirectorActor__Q23PSM9EventLinkFv=0x80460EA4 -getListDirectorActor__Q23PSM16OtakaraEventLinkFv=0x80460ED8 -eventFinish__Q23PSM16OtakaraEventLinkFv=0x80460F0C -getTargetDirector__Q23PSM25OtakaraEventLink_2PBattleFv=0x80460F10 -eventStart__Q23PSM25OtakaraEventLink_2PBattleFv=0x80461160 -eventRestart__Q23PSM25OtakaraEventLink_2PBattleFv=0x804612F4 -eventStop__Q23PSM25OtakaraEventLink_2PBattleFv=0x80461320 -eventFinish__Q23PSM25OtakaraEventLink_2PBattleFv=0x804614B4 -getListDirectorActor__Q23PSM25OtakaraEventLink_2PBattleFv=0x804614E0 -__ct__Q23PSM8WorkItemFPQ24Game8BaseItem=0x80461620 -eventStart__Q23PSM8WorkItemFv=0x80461790 -eventRestart__Q23PSM8WorkItemFv=0x804617C0 -eventStop__Q23PSM8WorkItemFv=0x804617F0 -eventFinish__Q23PSM8WorkItemFv=0x80461820 -setGoalOnyon__Q23PSM7OtakaraFPQ24Game8Creature=0x80461850 -otakaraEventStart__Q23PSM7OtakaraFv=0x804619F0 -otakaraEventRestart__Q23PSM7OtakaraFv=0x80461ACC -otakaraEventStop__Q23PSM7OtakaraFv=0x80461BA8 -otakaraEventFinish__Q23PSM7OtakaraFv=0x80461C84 -__ct__Q23PSM13PelletOtakaraFPQ34Game13PelletOtakara6Objectb=0x80461D60 -__dt__Q23PSM7OtakaraFv=0x80461F84 -__ct__Q23PSM10PelletItemFPQ34Game10PelletItem6Object=0x804620CC -__ct__Q23PSM4PikiFPQ24Game4Piki=0x804622A0 -onCalcOn__Q23PSM4PikiFv=0x804623E8 -becomeFree__Q23PSM4PikiFv=0x80462568 -becomeNotFree__Q23PSM4PikiFv=0x80462574 -startFreePikiSound__Q23PSM4PikiFUlUlUl=0x80462580 -startPikiSound__Q23PSM4PikiFPQ27JAInter6ObjectUlUl=0x804626C4 -startPikiSetSound__Q23PSM4PikiFPQ27JAInter6ObjectUlQ36PSGame5SeMgr7SetSeIdUl=0x80462734 -startFreePikiSetSound__Q23PSM4PikiFUlQ36PSGame5SeMgr7SetSeIdUlUl=0x804627E8 -checkHappaChappySE__Q23PSM4PikiFUl=0x804629BC -__ct__Q23PSM4NaviFPQ24Game4Navi=0x80462AC0 -init__Q23PSM4NaviFUs=0x80462BF8 -setShacho__Q23PSM4NaviFv=0x80462C1C -stopWaitVoice__Q23PSM4NaviFv=0x80462C44 -startSound__Q23PSM4NaviFUlUl=0x80462C94 -getManType__Q23PSM4NaviFv=0x80462D9C -playShugoSE__Q23PSM4NaviFv=0x80462DC4 -playKaisanSE__Q23PSM4NaviFv=0x80462E64 -playWalkSound__Q23PSM4NaviFQ33PSM4Navi8FootTypei=0x80462F04 -__ct__Q23PSM7ClusterFPQ24Game8CreatureRQ38PSSystem9ClusterSe7Factory=0x80463034 -startClusterSound__Q23PSM7ClusterFUc=0x8046318C -PSSetCurCameraNo__FUc=0x804631EC -PSMGetNoukouDist__Fv=0x80463244 -PSSetLastBeedamaDirection__Fbb=0x8046324C -__dt__Q23PSM7ClusterFv=0x804632BC -getSeSceneGate__Q23PSM9SceneBaseFPQ23PSM7ObjBaseUl=0x804633A4 -isDemoScene__Q23PSM9SceneBaseFv=0x804633AC -onDisappear__Q23PSM9EnemyBossFv=0x804633B4 -onAppear__Q23PSM9EnemyBossFv=0x804633B8 -onAppear1st__Q23PSM9EnemyBossFv=0x804633BC -getCastType__Q23PSM4NaviFv=0x804633C0 -__dt__Q23PSM4PikiFv=0x804633C8 -getCastType__Q23PSM4PikiFv=0x804634B0 -__dt__Q23PSM10PelletItemFv=0x804634B8 -getCastType__Q23PSM10PelletItemFv=0x80463620 -__dt__Q23PSM13PelletOtakaraFv=0x80463628 -getCastType__Q23PSM13PelletOtakaraFv=0x80463790 -getCastType__Q23PSM7OtakaraFv=0x80463798 -__dt__Q23PSM8WorkItemFv=0x804637A0 -getCastType__Q23PSM8WorkItemFv=0x804638E8 -is2PBattle__Q23PSM25OtakaraEventLink_2PBattleFv=0x804638F0 -__dt__Q23PSM19Enemy_SpecialChappyFv=0x804638F8 -getCastType__Q23PSM8EnemyBigFv=0x80463AB8 -getCastType__Q23PSM12EnemyBigBossFv=0x80463AC0 -getCastType__Q23PSM12EnemyMidBossFv=0x80463AC8 -getCastType__Q23PSM9EnemyBossFv=0x80463AD0 -__dt__Q23PSM9TsuyukusaFv=0x80463AD8 -__dt__Q23PSM18EnemyNotAggressiveFv=0x80463BD8 -getCastType__Q23PSM18EnemyNotAggressiveFv=0x80463D68 -updateKehai__Q23PSM18EnemyNotAggressiveFv=0x80463D70 -updateBattle__Q23PSM18EnemyNotAggressiveFv=0x80463D74 -battleOff__Q23PSM18EnemyNotAggressiveFv=0x80463D78 -battleOn__Q23PSM18EnemyNotAggressiveFv=0x80463D7C -kehaiOff__Q23PSM18EnemyNotAggressiveFv=0x80463D80 -kehaiOn__Q23PSM18EnemyNotAggressiveFv=0x80463D84 -getCastType__Q23PSM13CreatureAnimeFv=0x80463D88 -__dt__Q23PSM4NaviFv=0x80463D90 -@16@__dt__Q23PSM7ObjBaseFv=0x80463E88 -@12@__dt__Q23PSM6ObjMgrFv=0x80463E90 -@16@__dt__Q23PSM6ObjMgrFv=0x80463E98 -@16@__dt__Q23PSM8CreatureFv=0x80463EA0 -@16@__dt__Q23PSM11CreatureObjFv=0x80463EA8 -@48@__dt__Q23PSM11CreatureObjFv=0x80463EB0 -@16@__dt__Q23PSM13CreatureAnimeFv=0x80463EB8 -@48@__dt__Q23PSM13CreatureAnimeFv=0x80463EC0 -@48@startAnimSound__Q23PSM13CreatureAnimeFUlPP8JAISoundPQ27JAInter5ActorUc=0x80463EC8 -@16@__dt__Q23PSM9EnemyBaseFv=0x80463ED0 -@48@__dt__Q23PSM9EnemyBaseFv=0x80463ED8 -@16@__dt__Q23PSM18EnemyNotAggressiveFv=0x80463EE0 -@48@__dt__Q23PSM18EnemyNotAggressiveFv=0x80463EE8 -@184@battleOff__Q23PSM18EnemyNotAggressiveFv=0x80463EF0 -@184@battleOn__Q23PSM18EnemyNotAggressiveFv=0x80463EF8 -@204@kehaiOff__Q23PSM18EnemyNotAggressiveFv=0x80463F00 -@204@kehaiOn__Q23PSM18EnemyNotAggressiveFv=0x80463F08 -@16@__dt__Q23PSM9TsuyukusaFv=0x80463F10 -@48@__dt__Q23PSM9TsuyukusaFv=0x80463F18 -@16@__dt__Q23PSM8EnemyBigFv=0x80463F20 -@48@__dt__Q23PSM8EnemyBigFv=0x80463F28 -@16@__dt__Q23PSM9EnemyBossFv=0x80463F30 -@48@__dt__Q23PSM9EnemyBossFv=0x80463F38 -@16@__dt__Q23PSM12EnemyMidBossFv=0x80463F40 -@48@__dt__Q23PSM12EnemyMidBossFv=0x80463F48 -@16@__dt__Q23PSM12EnemyBigBossFv=0x80463F50 -@48@__dt__Q23PSM12EnemyBigBossFv=0x80463F58 -@16@__dt__Q23PSM19Enemy_SpecialChappyFv=0x80463F60 -@48@__dt__Q23PSM19Enemy_SpecialChappyFv=0x80463F68 -@16@__dt__Q23PSM8WorkItemFv=0x80463F70 -@48@__dt__Q23PSM8WorkItemFv=0x80463F78 -@16@__dt__Q23PSM7OtakaraFv=0x80463F80 -@48@__dt__Q23PSM7OtakaraFv=0x80463F88 -@16@__dt__Q23PSM13PelletOtakaraFv=0x80463F90 -@48@__dt__Q23PSM13PelletOtakaraFv=0x80463F98 -@16@__dt__Q23PSM10PelletItemFv=0x80463FA0 -@48@__dt__Q23PSM10PelletItemFv=0x80463FA8 -@16@__dt__Q23PSM4PikiFv=0x80463FB0 -@48@__dt__Q23PSM4PikiFv=0x80463FB8 -@16@__dt__Q23PSM4NaviFv=0x80463FC0 -@48@startSound__Q23PSM4NaviFUlUl=0x80463FC8 -@48@__dt__Q23PSM4NaviFv=0x80463FD0 -@16@__dt__Q23PSM7ClusterFv=0x80463FD8 -@48@__dt__Q23PSM7ClusterFv=0x80463FE0 -__ct__Q23PSM4DemoFv=0x80463FE8 -init__Q23PSM4DemoFP3VecP3VecPA4_fQ23PSM7DemoArg=0x80464044 -demo1stLoadSync__Q23PSM4DemoFv=0x80464250 -initDemoScene__Q23PSM4DemoFRQ23PSM7DemoArgPQ23PSM10Scene_Demo=0x8046433C -initiate__Q23PSM4DemoFQ23PSM7DemoArgPUc=0x80464384 -__dt__Q23PSM4DemoFv=0x80466128 -onDemoTop__Q23PSM4DemoFv=0x804662AC -becomeSceneCamera__Q23PSM4DemoFv=0x8046696C -onDemoFadeoutStart__Q23PSM4DemoFUl=0x80466A70 -onDemoEnd__Q23PSM4DemoFv=0x80466B6C -onMessageEnd__Q23PSM4DemoFi=0x804671D0 -PSMCancelToPauseOffMainBgm__Fv=0x80467438 -PSMGetGameSceneA__Fv=0x8046751C -isPollutUp__Q23PSM10Scene_CaveFv=0x80467608 -getEnvSe__Q23PSM9SceneBaseFv=0x80467620 -setMode__Q23PSM11ObjCalcBaseFQ33PSM11ObjCalcBase4Mode=0x80467628 -__ct__Q23PSM9SceneBaseFUcPQ26PSGame9SceneInfo=0x80467630 -getSceneFx__Q23PSM9SceneBaseFv=0x804676B4 -becomeSceneCamera__Q23PSM9SceneBaseFv=0x804676BC -getSceneInfoA__Q23PSM9SceneBaseFv=0x80467714 -pauseOn_2D__Q23PSM9SceneBaseFUcUc=0x80467768 -pauseOff_2D__Q23PSM9SceneBaseFv=0x80467790 -pauseOn_Demo__Q23PSM9SceneBaseFv=0x804677B4 -pauseOff_Demo__Q23PSM9SceneBaseFv=0x804677B8 -__ct__Q23PSM12Scene_GlobalFUcPQ26PSGame9SceneInfo=0x804677BC -__dt__Q23PSM12Scene_GlobalFv=0x8046784C -getCamDistVol__Q23PSM12Scene_GlobalFUc=0x80467914 -getGlobalStream__Q23PSM12Scene_GlobalFv=0x8046791C -startGlobalStream__Q23PSM12Scene_GlobalFUl=0x804679B0 -__ct__Q23PSM10Scene_DemoFUcPQ26PSGame9SceneInfo=0x80467A6C -getSeSceneGate__Q23PSM10Scene_DemoFPQ23PSM7ObjBaseUl=0x80467B04 -getCamDistVol__Q23PSM10Scene_DemoFUc=0x80467B88 -__ct__Q23PSM13Scene_ObjectsFUcPQ26PSGame9SceneInfo=0x80467B90 -__dt__Q23PSM13Scene_ObjectsFv=0x80467CA4 -__dt__Q23PSM11ObjCalcBaseFv=0x80467D9C -adaptObjMgr__Q23PSM13Scene_ObjectsFv=0x80467E00 -detachObjMgr__Q23PSM13Scene_ObjectsFv=0x80467E60 -startMainSeq__Q23PSM13Scene_ObjectsFv=0x80467E7C -onStartMainSeq__Q23PSM13Scene_ObjectsFv=0x80467EBC -getSeSceneGate__Q23PSM13Scene_ObjectsFPQ23PSM7ObjBaseUl=0x80467EE0 -getCamDistVol__Q23PSM13Scene_ObjectsFUc=0x80467EF4 -exec__Q23PSM13Scene_ObjectsFv=0x80467F18 -init__Q23PSM10Scene_GameFv=0x80468128 -__dt__Q23PSM10Scene_GameFv=0x8046823C -__dt__Q33PSM12BossBgmFader3MgrFv=0x804683A4 -attachBossFaderMgr__Q23PSM10Scene_GameFv=0x80468454 -bossKilled__Q23PSM10Scene_GameFPQ23PSM9EnemyBoss=0x804684AC -startMainSeq__Q23PSM10Scene_GameFv=0x80468688 -stopMainSeq__Q23PSM10Scene_GameFUl=0x80468788 -stopAllSound__Q23PSM10Scene_GameFUl=0x80468814 -exec__Q23PSM10Scene_GameFv=0x80468864 -getEnvSe__Q23PSM10Scene_GameFv=0x80468C28 -adaptEnvSe__Q23PSM10Scene_GameFPQ28PSSystem8EnvSeMgr=0x80468C30 -bossAppear__Q23PSM10Scene_GameFPQ23PSM9EnemyBossUs=0x80468C88 -pauseOn_2D__Q23PSM10Scene_GameFUcUc=0x80468D88 -pauseOff_2D__Q23PSM10Scene_GameFv=0x80469300 -pauseOn_Demo__Q23PSM10Scene_GameFv=0x80469340 -pauseOff_Demo__Q23PSM10Scene_GameFv=0x80469888 -akubiOK__Q23PSM10Scene_GameFv=0x8046988C -__ct__Q23PSM12Scene_GroundFUcPQ26PSGame9SceneInfo=0x80469940 -exec__Q23PSM12Scene_GroundFv=0x80469AC4 -setPollutUp__Q23PSM12Scene_GroundFv=0x80469B08 -fadeMainBgm__Q23PSM12Scene_GroundFfUlQ33PSM12Scene_Ground4Time=0x80469B14 -jumpMainBgm__Q23PSM12Scene_GroundFUc=0x80469CC0 -changeEnvSE_Noon__Q23PSM12Scene_GroundFv=0x80469E44 -__ct__Q23PSM10Scene_CaveFUcPQ26PSGame9SceneInfo=0x80469E94 -getSceneFx__Q23PSM10Scene_CaveFv=0x8046A078 -isBossFloor__Q23PSM10Scene_CaveFv=0x8046A080 -exec__Q23PSM10Scene_CaveFv=0x8046A0B0 -stopPollutionSe__Q23PSM10Scene_CaveFv=0x8046A0F4 -startPollutUpSe__Q23PSM10Scene_CaveFv=0x8046A140 -startMainSeq__Q23PSM10Scene_CaveFv=0x8046A238 -init__Q23PSM10Scene_CaveFv=0x8046A37C -bossAppear__Q23PSM10Scene_CaveFPQ23PSM9EnemyBossUs=0x8046A5C8 -bossKilled__Q23PSM10Scene_CaveFPQ23PSM9EnemyBoss=0x8046A798 -akubiOK__Q23PSM10Scene_CaveFv=0x8046AAB0 -__ct__Q23PSM15Scene_ChallengeFUcPQ26PSGame9SceneInfo=0x8046AB84 -__dt__Q23PSM10Scene_CaveFv=0x8046AD70 -init__Q23PSM15Scene_ChallengeFv=0x8046AEE8 -startMainSeq__Q23PSM15Scene_ChallengeFv=0x8046B134 -akubiOK__Q23PSM15Scene_ChallengeFv=0x8046B330 -getCamDistVol__Q23PSM11Scene_ZukanFUc=0x8046B3A8 -getSeSceneGate__Q23PSM11Scene_ZukanFPQ23PSM7ObjBaseUl=0x8046B3B0 -__ct__Q23PSM14Scene_WorldMapFUcPQ26PSGame9SceneInfo=0x8046B46C -__dt__Q23PSM15Scene_NoObjectsFv=0x8046B540 -getCamDistVol__Q23PSM15Scene_NoObjectsFUc=0x8046B5B0 -PSChangeBgm_ChallengeGame__Fv=0x8046B5B8 -PSStart2DStream__FUl=0x8046B770 -PSStop2DStream__Fv=0x8046B870 -PSPause_StartMenuOn__Fv=0x8046B95C -PSPause_StartMenuOff__Fv=0x8046BB48 -PSPauseOn__FUcUc=0x8046BB68 -PSPauseOff__Fv=0x8046BC54 -PSStartChallengeTimeUpStream__Fv=0x8046BD20 -PSMuteSE_on2D__Fv=0x8046BEE8 -PSMuteOffSE_on2D__Fv=0x8046BF9C -__dt__Q23PSM10Scene_DemoFv=0x8046C050 -isCave__Q23PSM10Scene_CaveFv=0x8046C0C0 -getPollutUpTimer__Q23PSM10Scene_CaveCFv=0x8046C0C8 -isDemoScene__Q23PSM10Scene_GameFv=0x8046C0D0 -isGameScene__Q23PSM10Scene_GameFv=0x8046C0D8 -__dt__Q23PSM12Scene_GroundFv=0x8046C0E0 -isPollutUp__Q23PSM12Scene_GroundFv=0x8046C258 -getPollutUpTimer__Q23PSM12Scene_GroundCFv=0x8046C270 -isBossFloor__Q23PSM10Scene_GameFv=0x8046C278 -isPollutUp__Q23PSM10Scene_GameFv=0x8046C280 -getPollutUpTimer__Q23PSM10Scene_GameCFv=0x8046C288 -isDemoScene__Q23PSM10Scene_DemoFv=0x8046C290 -getSeSceneGate__Q23PSM12Scene_GlobalFPQ23PSM7ObjBaseUl=0x8046C298 -__dt__Q23PSM14Scene_WorldMapFv=0x8046C2D4 -__dt__Q23PSM11Scene_ZukanFv=0x8046C354 -__dt__Q23PSM15Scene_ChallengeFv=0x8046C468 -__dt__Q28PSSystem39SingletonBaseFv=0x8046C5F0 -__dt__Q28PSSystem34SingletonBaseFv=0x8046C640 -__sinit_PSMainSide_Scene_cpp=0x8046C690 -update__Q33PSM12BossBgmFader9TypedProcFv=0x8046C6B8 -update__Q33PSM12BossBgmFader17TypedProc_MidBossFv=0x8046C890 -__ct__Q33PSM12BossBgmFader3MgrFv=0x8046C8CC -appendTarget__Q33PSM12BossBgmFader3MgrFP25JSULink=0x8046C9B8 -exec__Q33PSM12BossBgmFader3MgrFv=0x8046C9DC -partInit__Q23PSM14ClusterFactoryFUc=0x8046D144 -__ct__Q23PSM14WorldMapRocketFv=0x8046D360 -__dt__Q23PSM14WorldMapRocketFv=0x8046D3D4 -startRocketSE__Q23PSM14WorldMapRocketFff=0x8046D434 -stateChange__Q23PSM14WorldMapRocketFQ33PSM14WorldMapRocket11rocketState=0x8046D8C4 -__ct__Q23PSM11PikiHummingFv=0x8046D8CC -__ct__Q23PSM14PikiHummingMgrFv=0x8046D8D0 -exec__Q23PSM14PikiHummingMgrFv=0x8046D9CC -play__Q23PSM14PikiHummingMgrFPQ23PSM4Piki=0x8046DFF0 -PSStartSoundVec__FUlP3Vec=0x8046E0B4 -newPSCluster_SijimiChou__FPQ24Game8Creature=0x8046E210 -PSStartEnemyGhostSE__FPQ24Game9EnemyBasef=0x8046E27C -PSStartEnemyFatalHitSE__FPQ24Game9EnemyBasef=0x8046E414 -PSStartEnemyDownSmokeSE__FPQ24Game9EnemyBasef=0x8046E690 -PSStartEnemyDownWatSE__FPQ24Game9EnemyBasef=0x8046E840 -PSStartTreasureLaderSE__Ff=0x8046EA40 -PSStartTresureLaderNoiseSE__FUcff=0x8046ECA0 -PSMGetWorldMapRocket__Fv=0x8046F0F0 -PSPlayCaveHoleSound__FPQ23PSM8Creature=0x8046F1A0 -identifyPart__Q23PSM14ClusterFactoryFUc=0x8046F21C -startSoundVecReturnHandleT<8JAISound>__8JAIBasicFPP8JAISoundUlP3VecUlUlUc=0x8046F24C -__ct__Q23PSM17DirectorMgr_SceneFPQ23PSM17DirectorMgr_SceneUc=0x8046F2BC -__dt__Q23PSM17DirectorMgr_SceneFv=0x8046F594 -initTrackMap__Q23PSM17DirectorMgr_SceneFRQ28PSSystem11DirectedBgm=0x8046F620 -newDirector__Q23PSM17DirectorMgr_SceneFUcRQ28PSSystem11DirectedBgm=0x8046F8B4 -adaptDirectorActor__Q23PSM17DirectorMgr_SceneFPQ28PSSystem12DirectorBaseUc=0x80470024 -newPikminNumberDirector__Q23PSM17DirectorMgr_SceneFiUcRQ28PSSystem11DirectedBgm=0x804700CC -newPikminNumberDirector__Q23PSM25DirectorMgr_Scene_AutoBgmFiUcRQ28PSSystem11DirectedBgm=0x80470160 -__ct__Q23PSM18DirectorMgr_BattleFv=0x804701F0 -newDirector__Q23PSM18DirectorMgr_BattleFUcRQ28PSSystem11DirectedBgm=0x80470240 -__ct__Q23PSM20DirectorMgr_2PBattleFv=0x80470484 -newDirector__Q23PSM20DirectorMgr_2PBattleFUcRQ28PSSystem11DirectedBgm=0x804704D4 -__dt__Q23PSM20DirectorMgr_2PBattleFv=0x80470B8C -__dt__Q23PSM18DirectorMgr_BattleFv=0x80470C18 -__dt__Q23PSM25DirectorMgr_Scene_AutoBgmFv=0x80470CA4 -isSlave__Q23PSM17DirectorMgr_SceneFv=0x80470D48 -__dt__Q23PSM15BgmTrackMapFileFv=0x80470D5C -__dt__Q23PSM19GroundDirector_CaveFv=0x80470DE4 -directOn__Q23PSM19GroundDirector_CaveFv=0x80470E94 -directOff__Q23PSM19GroundDirector_CaveFv=0x80470E98 -__dt__Q28PSSystem38SingletonBaseFv=0x80470E9C -@12@__dt__Q23PSM17DirectorMgr_SceneFv=0x80470EEC -@12@__dt__Q23PSM25DirectorMgr_Scene_AutoBgmFv=0x80470EF4 -@12@__dt__Q23PSM18DirectorMgr_BattleFv=0x80470EFC -@12@__dt__Q23PSM20DirectorMgr_2PBattleFv=0x80470F04 -makeSeSound__Q23PSM7SeSoundFv=0x80470F0C -onGet__Q23PSM7SeSoundFv=0x80470F84 -onRelease__Q23PSM7SeSoundFv=0x80470F88 -initParameter__Q23PSM7SeSoundFPvPQ27JAInter5ActorUlUlUcPQ27JAInter9SoundInfo=0x8047102C -setDistanceVolumeCommon__Q23PSM7SeSoundFfUc=0x80471180 -specializePerspCalc__Q23PSM7SeSoundFRCQ36PSGame10SoundTable11SePerspInfo=0x80471458 -calcVolumeSpecialized__Q23PSM7SeSoundFf=0x8047149C -calcVolume__Q23PSM7SeSoundFfUcUc=0x80471508 -setSeDistancePan__Q23PSM7SeSoundFUc=0x80471594 -calcPan__Q23PSM7SeSoundFRC3Vecf=0x8047164C -setSeDistanceDolby__Q23PSM7SeSoundFUc=0x80471714 -calcDolby__Q23PSM7SeSoundFRC3Vecf=0x8047179C -__sinit_PSMainSide_Sound_cpp=0x804718A8 -__ct__Q23PSM15BgmTrackMapFileFb=0x804718D0 -readTrackMap__Q23PSM15BgmTrackMapFileFPCc=0x80471978 -read__Q23PSM15BgmTrackMapFileFR6Stream=0x804720F4 -__ct__Q23PSM11BgmTrackMapFv=0x80472388 -@28@__dt__Q23PSM15BgmTrackMapFileFv=0x80472498 -setSetting__Q23PSM15THPDinamicsProcFQ23PSM6THP_ID=0x804724A0 -setSetting__Q23PSM15THPDinamicsProcFPQ23PSM15THPDemoDinamics=0x80472510 -dinamics__Q23PSM15THPDinamicsProcFf=0x80472620 -__dt__Q23PSM11CreaturePrmFv=0x80472750 -__dt__Q28PSSystem34SingletonBaseFv=0x804727B4 -__sinit_PSMainSide_CreaturePrm_cpp=0x80472804 -newInstance_SingleGame__Q23PSM18ObjCalc_SingleGameFv=0x804728A4 -getPlayerNo__Q23PSM18ObjCalc_SingleGameFPQ23PSM8Creature=0x80472904 -getPlayerNo__Q23PSM18ObjCalc_SingleGameFR3Vec=0x8047290C -newInstance_2PGame__Q23PSM14ObjCalc_2PGameFv=0x80472914 -getPlayerNo__Q23PSM14ObjCalc_2PGameFR3Vec=0x80472970 -getPlayerNo__Q23PSM14ObjCalc_2PGameFPQ23PSM8Creature=0x80472D2C -__dt__Q23PSM18ObjCalc_SingleGameFv=0x80472DF4 -__dt__Q23PSM14ObjCalc_2PGameFv=0x80472E68 -is1PGame__Q23PSM14ObjCalc_2PGameFv=0x80472EDC diff --git a/orig/GPVE01/.gitkeep b/orig/GPVE01/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/orig/GPVE01_D17/.gitkeep b/orig/GPVE01_D17/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/orig/GPVE01_D18/.gitkeep b/orig/GPVE01_D18/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/orig/GPVJ01/.gitkeep b/orig/GPVJ01/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/orig/GPVP01/.gitkeep b/orig/GPVP01/.gitkeep new file mode 100644 index 000000000..e69de29bb diff --git a/sha1/pikmin2.GPVE01.sha1 b/sha1/pikmin2.GPVE01.sha1 new file mode 100644 index 000000000..645cd98fb --- /dev/null +++ b/sha1/pikmin2.GPVE01.sha1 @@ -0,0 +1 @@ +90d328bf8f190c90472e8c19e7e53c6ad0fe0d1a build/pikmin2.GPVE01/main.dol \ No newline at end of file diff --git a/sha1/pikmin2.GPVE01_D17.sha1 b/sha1/pikmin2.GPVE01_D17.sha1 new file mode 100644 index 000000000..3d32114af --- /dev/null +++ b/sha1/pikmin2.GPVE01_D17.sha1 @@ -0,0 +1 @@ +3730939092688902af4866be66d4a8404ae752c7 build/pikmin2.GPVE01_D17/main.dol \ No newline at end of file diff --git a/sha1/pikmin2.usa.demo.sha1 b/sha1/pikmin2.usa.demo.sha1 deleted file mode 100644 index 42a5d9402..000000000 --- a/sha1/pikmin2.usa.demo.sha1 +++ /dev/null @@ -1 +0,0 @@ -3730939092688902af4866be66d4a8404ae752c7 build/pikmin2.usa.demo/main.dol \ No newline at end of file diff --git a/sha1/pikmin2.usa.sha1 b/sha1/pikmin2.usa.sha1 deleted file mode 100644 index 2afe5f874..000000000 --- a/sha1/pikmin2.usa.sha1 +++ /dev/null @@ -1 +0,0 @@ -90d328bf8f190c90472e8c19e7e53c6ad0fe0d1a build/pikmin2.usa/main.dol \ No newline at end of file diff --git a/src/Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c b/src/Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c index 659b20b06..dc1b5e9e8 100644 --- a/src/Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c +++ b/src/Dolphin/TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c @@ -1,7 +1,9 @@ #include "PowerPC_EABI_Support/MetroTRK/trk.h" #include "Dolphin/os.h" -BOOL _MetroTRK_Has_Framing; +BOOL _MetroTRK_Has_Framing; // UNUSED +// GPVE01 _MetroTRK_Has_Framing = .bss:0x804F4814; // type:object size:0x4 scope:global align:4 +// GPVE01_D17 _MetroTRK_Has_Framing = .bss:0x804F4754; // type:object size:0x4 scope:global align:4 u8 TRK_Use_BBA; DBCommTable gDBCommTable = { nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr }; diff --git a/src/Dolphin/os/OS.c b/src/Dolphin/os/OS.c index 6db07fb8e..2a3ee1b34 100644 --- a/src/Dolphin/os/OS.c +++ b/src/Dolphin/os/OS.c @@ -1,6 +1,7 @@ #include "types.h" #include "Dolphin/os.h" #include "Dolphin/PPCArch.h" +#include "Dolphin/hw_regs.h" DECL_SECT(".init") extern char _db_stack_end[]; @@ -747,7 +748,6 @@ void __OSPSInit(void) * @note Address: 0x800EBA74 * @note Size: 0x14 */ -extern vu32 __DIRegs[]; #define DI_CONFIG_IDX 0x9 #define DI_CONFIG_CONFIG_MASK 0xFF u32 __OSGetDIConfig(void) { return (__DIRegs[DI_CONFIG_IDX] & DI_CONFIG_CONFIG_MASK); } diff --git a/src/Dolphin/vi/vi.c b/src/Dolphin/vi/vi.c index fb3080b45..126809371 100644 --- a/src/Dolphin/vi/vi.c +++ b/src/Dolphin/vi/vi.c @@ -79,7 +79,7 @@ static VITimingInfo timing[10] = { }; // clang-format on -static u16 taps[26] = { 496, 476, 430, 372, 297, 219, 142, 70, 12, 226, 203, 192, 196, 207, 222, 236, 252, 8, 15, 19, 19, 15, 12, 8, 1, 0 }; +static u16 taps[25] = { 496, 476, 430, 372, 297, 219, 142, 70, 12, 226, 203, 192, 196, 207, 222, 236, 252, 8, 15, 19, 19, 15, 12, 8, 1}; // forward declaring statics static u32 getCurrentFieldEvenOdd(); diff --git a/src/JSystem/J3D/J3DPacket.cpp b/src/JSystem/J3D/J3DPacket.cpp index 59c37858f..59453d675 100644 --- a/src/JSystem/J3D/J3DPacket.cpp +++ b/src/JSystem/J3D/J3DPacket.cpp @@ -19,6 +19,7 @@ static u32 sDifferedRegister[7] = { J3DMDF_DiffMatColor, J3DMDF_DiffLight, static u32 sSizeOfDiffered[7] = { 0xD, 0x15, 0x78, 0x37, 0xF, 0x13, 0x2D }; int J3DDisplayListObj::sInterruptFlag; +GDCurrentDL J3DDisplayListObj::sGDLObj; /** * @note Address: 0x8005F82C @@ -97,8 +98,8 @@ void J3DDisplayListObj::beginDL() { swapBuffer(); sInterruptFlag = OSDisableInterrupts(); - GDInitGDLObj(&sGDLObj, mDisplayList[0], mCapacity); - __GDCurrentDL = &sGDLObj; + GDInitGDLObj(&J3DDisplayListObj::sGDLObj, mDisplayList[0], mCapacity); + __GDCurrentDL = &J3DDisplayListObj::sGDLObj; } /** diff --git a/src/plugProjectEbisawaU/ebiFileSelectMgr.cpp b/src/plugProjectEbisawaU/ebiFileSelectMgr.cpp index d5ac53d65..d66014d59 100644 --- a/src/plugProjectEbisawaU/ebiFileSelectMgr.cpp +++ b/src/plugProjectEbisawaU/ebiFileSelectMgr.cpp @@ -140,7 +140,7 @@ void FSMState_CardRequest::do_exec(TMgr* mgr) do_transitCardPlayerDataBroken(mgr); break; default: - JUT_PANICLINE(150, "¦ƒƒ‚ƒŠ[ƒJ[ƒhƒGƒ‰[:‘z’èŠO‚̃P[ƒX‚Å‚·\n"); + JUT_PANICLINE(150, "※メモリーカードエラー:想定外ã®ã‚±ãƒ¼ã‚¹ã§ã™\n"); JUT_PANICLINE(151, "P2Assert"); break; } @@ -258,7 +258,7 @@ void FSMState_CardRequest::do_transitCardPlayerDataBroken(TMgr* mgr) { do_transi */ void FSMState_CardRequest::do_transitCardSerialNoError(TMgr* mgr) { - JUT_PANICLINE(224, "¦ƒ[ƒh‚ŃVƒŠƒAƒ‹ƒGƒ‰[‚Í‚ ‚肦‚È‚¢\n"); // * There is no serial error during loading + JUT_PANICLINE(224, "※ロードã§ã‚·ãƒªã‚¢ãƒ«ã‚¨ãƒ©ãƒ¼ã¯ã‚ã‚Šãˆãªã„\n"); // * There is no serial error during loading JUT_PANICLINE(225, "P2Assert"); } @@ -358,7 +358,7 @@ void FSMState_CardError::do_exec(TMgr* mgr) mgr->start(); break; default: - JUT_PANICLINE(342, "¦@mgr->mCardErrorMgr->getEnd=%d ‚Á‚Ä‚ ‚肦‚È‚¢I\n", mgr->mCardErrorMgr.mEndStat); + JUT_PANICLINE(342, "※ mgr->mCardErrorMgr->getEnd=%d ã£ã¦ã‚ã‚Šãˆãªã„ï¼\n", mgr->mCardErrorMgr.mEndStat); JUT_PANICLINE(343, "P2Assert"); } } diff --git a/src/plugProjectEbisawaU/ebiOmakeMgr.cpp b/src/plugProjectEbisawaU/ebiOmakeMgr.cpp index aa7c5dcf7..17ac4858b 100644 --- a/src/plugProjectEbisawaU/ebiOmakeMgr.cpp +++ b/src/plugProjectEbisawaU/ebiOmakeMgr.cpp @@ -20,7 +20,7 @@ void FSMStateMachine::init(TMgr* mgr) registerState(new FSMState_OmakeScreen); registerState(new FSMState_CardEScreen); registerState(new FSMState_SelectGame); - registerState(new FSMState(Movie, "Movieó‘Ô")); + registerState(new FSMState(Movie, "Movie状態")); } /** diff --git a/src/plugProjectEbisawaU/ebiOptionMgr.cpp b/src/plugProjectEbisawaU/ebiOptionMgr.cpp index a82d5f602..a80f56ccd 100644 --- a/src/plugProjectEbisawaU/ebiOptionMgr.cpp +++ b/src/plugProjectEbisawaU/ebiOptionMgr.cpp @@ -13,7 +13,7 @@ * @note Address: N/A * @note Size: 0xE4 */ -void _Print(char* name, ...) { OSReport("ebiOptionMgr"); } +static void _Print(char* name, ...) { OSReport("ebiOptionMgr"); } namespace ebi { namespace Option { diff --git a/src/plugProjectEbisawaU/ebiP2Title.cpp b/src/plugProjectEbisawaU/ebiP2Title.cpp index d129fc3d2..4926ec0ad 100644 --- a/src/plugProjectEbisawaU/ebiP2Title.cpp +++ b/src/plugProjectEbisawaU/ebiP2Title.cpp @@ -6,7 +6,7 @@ #include "trig.h" #include "nans.h" -static const char idk[] = "\0\0\0\0\0\0\0\0\0"; +static const char idk[] = "\0\0\0\0\0\0\0\0\0"; static const char name[] = "ebiP2Title"; namespace ebi { diff --git a/src/plugProjectEbisawaU/ebiSaveMgr.cpp b/src/plugProjectEbisawaU/ebiSaveMgr.cpp index ddc246843..aae9f657c 100644 --- a/src/plugProjectEbisawaU/ebiSaveMgr.cpp +++ b/src/plugProjectEbisawaU/ebiSaveMgr.cpp @@ -558,7 +558,7 @@ void FSMState_CardError::do_exec(TMgr* mgr) transit(mgr, MountCheck, nullptr); break; default: - JUT_PANICLINE(621, "‘z’èŠO‚Å‚·B‚ ‚肦‚Ë[\0"); // "Unexpected. Impossible" + JUT_PANICLINE(621, "想定外ã§ã™ã€‚ã‚ã‚Šãˆã­ãƒ¼"); // "Unexpected. Impossible" JUT_PANICLINE(622, "P2Assert"); break; } diff --git a/src/plugProjectEbisawaU/ebiScreenOmakeGame.cpp b/src/plugProjectEbisawaU/ebiScreenOmakeGame.cpp index c6629829a..4183b82f3 100644 --- a/src/plugProjectEbisawaU/ebiScreenOmakeGame.cpp +++ b/src/plugProjectEbisawaU/ebiScreenOmakeGame.cpp @@ -408,28 +408,28 @@ bool TOmakeGame::openMsg(s32 id) case GameDesc: switch (mSelection) { case PikminPluck: - tag = '4800_00'; // "ƒIƒŠƒ}[‚Ü‚½‚̓‹[ƒC‚ð‘€ì‚µ‚ÄAƒsƒNƒ~ƒ“‚½‚¿‚ð‚·‚×‚Ä‚Ð‚Á‚±‚Ê‚­ƒQ[ƒ€‚Å‚·B" + tag = '4800_00'; // "オリマーã¾ãŸã¯ãƒ«ãƒ¼ã‚¤ã‚’æ“作ã—ã¦ã€ãƒ”クミンãŸã¡ã‚’ã™ã¹ã¦ã²ã£ã“ã¬ãゲームã§ã™ã€‚" break; // translates to "In this game, you control Olimar or Louie and take out all the Pikmin." case PikminPart: - tag = '4801_00'; // "“¯‚¶Œü‚«‚É“®‚­ƒsƒNƒ~ƒ“‚½‚¿‚ð‚ ‚â‚‚èA‚¨•ó‚Ì‚ ‚éꊂɘA‚ê‚Ä‚¢‚­ƒQ[ƒ€‚Å‚·B" + tag = '4801_00'; // "åŒã˜å‘ãã«å‹•ãピクミンãŸã¡ã‚’ã‚ã‚„ã¤ã‚Šã€ãŠå®ã®ã‚る場所ã«é€£ã‚Œã¦ã„ãゲームã§ã™ã€‚" break; // translates to "In this game, you control Pikmin that move in the same direction and lead them to treasure locations." case PikminPath: - tag = '4802_00'; // "ƒpƒlƒ‹‚ð“ü‚ê‚©‚¦‚È‚ª‚çAƒ|ƒbƒh‚Ü‚Å‚Ì“¹‚ðŠ®¬‚³‚¹AƒsƒNƒ~ƒ“‚½‚¿‚ð‚·‚×‚ÄƒS[ƒ‹‚³‚¹‚éƒQ[ƒ€‚Å‚·B" + tag = '4802_00'; // "パãƒãƒ«ã‚’入れã‹ãˆãªãŒã‚‰ã€ãƒãƒƒãƒ‰ã¾ã§ã®é“を完æˆã•ã›ã€ãƒ”クミンãŸã¡ã‚’ã™ã¹ã¦ã‚´ãƒ¼ãƒ«ã•ã›ã‚‹ã‚²ãƒ¼ãƒ ã§ã™ã€‚" break; // translates to "This is a game where you can complete the path to the pod by replacing the panels and get all the // Pikmin to the finish line." } break; case Transferring: - tag = '4823_00'; // "ƒQ[ƒ€‚ð“]‘—‚µ‚Ä‚¢‚Ü‚·B‚µ‚΂炭‚¨‘Ò‚¿‚­‚¾‚³‚¢B" + tag = '4823_00'; // "ゲームを転é€ã—ã¦ã„ã¾ã™ã€‚ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„。" break; // translates to "Transferring games. Please wait." case TransferFinished: - tag = '4824_00'; // "ƒQ[ƒ€‚Ì“]‘—‚ªI‚í‚è‚Ü‚µ‚½BƒP[ƒuƒ‹‚𔲂¢‚Ä‚àƒQ[ƒ€‚Í—V‚ׂ܂·B" + tag = '4824_00'; // "ゲームã®è»¢é€ãŒçµ‚ã‚ã‚Šã¾ã—ãŸã€‚ケーブルを抜ã„ã¦ã‚‚ゲームã¯éŠã¹ã¾ã™ã€‚" break; // translates to "Game transfer finished. You can play the game even if you unplug the cable." case TransferFailed: - tag = '4826_00'; // "ƒQ[ƒ€‚ð“]‘—‚Å‚«‚Ü‚¹‚ñ‚Å‚µ‚½BÚ‘±‚ÌŽd•û‚ðŠm”F‚µ‚Ä‚­‚¾‚³‚¢B" + tag = '4826_00'; // "ゲームを転é€ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚接続ã®ä»•æ–¹ã‚’確èªã—ã¦ãã ã•ã„。" break; // translates to "Failed to transfer game. Please check how to connect." case TransferUnable: - tag = '4825_00'; // "“]‘—‚Å‚«‚Ü‚¹‚ñII ‚Å‚à‚Ç‚Á‚ÄAÚ‘±‚ÌŽd•û‚â‘€ì‚ðŠm”F‚µ‚Ä‚­‚¾‚³‚¢B" + tag = '4825_00'; // "転é€ã§ãã¾ã›ã‚“ï¼ï¼ ã§ã‚‚ã©ã£ã¦ã€æŽ¥ç¶šã®ä»•æ–¹ã‚„æ“作を確èªã—ã¦ãã ã•ã„。" break; // translates to "Unable to transfer! ! But go back and check how to connect and how to operate." default: return false; diff --git a/src/plugProjectEbisawaU/ebiScreenOption.cpp b/src/plugProjectEbisawaU/ebiScreenOption.cpp index 549fd46fe..5b97a53ff 100644 --- a/src/plugProjectEbisawaU/ebiScreenOption.cpp +++ b/src/plugProjectEbisawaU/ebiScreenOption.cpp @@ -11,7 +11,7 @@ * @note Address: N/A * @note Size: 0xE4 */ -void _Print(char* name, ...) { OSReport("ebiScreenOption"); } +static void _Print(char* name, ...) { OSReport("ebiScreenOption"); } using namespace Game::CommonSaveData; @@ -237,7 +237,7 @@ bool TOption::doUpdateStateOpen() } mMainScreen->update(); -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo mOptionPanes[0]->hide(); #endif @@ -438,7 +438,7 @@ bool TOption::doUpdateStateWait() mPaneDeflickerYes->updateScale(mButtonPuruAnim[5].mScale); mPaneDeflickerNo->updateScale(mButtonPuruAnim[6].mScale); -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo mOptionPanes[0]->hide(); #endif @@ -516,7 +516,7 @@ void TOption::loadResource() sys->heapStatusStart("TOption::loadResource", nullptr); og::newScreen::makeLanguageResName(resName, "option_us.szs"); JKRArchive* archive = JKRMountArchive(resName, JKRArchive::EMM_Mem, nullptr, JKRArchive::EMD_Head); -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo P2ASSERTLINE(768, (archive != nullptr)); #else P2ASSERTLINE(757, (archive != nullptr)); diff --git a/src/plugProjectEbisawaU/ebiScreenSaveMenu.cpp b/src/plugProjectEbisawaU/ebiScreenSaveMenu.cpp index 6c5c8933e..0cff5f167 100644 --- a/src/plugProjectEbisawaU/ebiScreenSaveMenu.cpp +++ b/src/plugProjectEbisawaU/ebiScreenSaveMenu.cpp @@ -342,7 +342,7 @@ void TSaveMenu::startMsgState_(enumMsgState state) mAnimScreen[2]->close(); break; default: - JUT_PANICLINE(395, "‚ ‚肦‚È‚¢I‚ ‚肦‚È‚¢I‚½‚Í‚ ‚ÁI\n"); // "Impossible! Impossible! Tahaha" + JUT_PANICLINE(395, "ã‚ã‚Šãˆãªã„ï¼ã‚ã‚Šãˆãªã„ï¼ãŸã¯ã‚ã£ï¼\n"); // "Impossible! Impossible! Tahaha" } u32 count2 = 0.5f / sys->mDeltaTime; mTextCounter = count2; diff --git a/src/plugProjectEbisawaU/particle2dMgr.cpp b/src/plugProjectEbisawaU/particle2dMgr.cpp index 6ee8b7f24..d0e5fe1f9 100644 --- a/src/plugProjectEbisawaU/particle2dMgr.cpp +++ b/src/plugProjectEbisawaU/particle2dMgr.cpp @@ -9,15 +9,19 @@ #include "TParticle2dMgr.h" #include "nans.h" -static const char idk[] = "\0\0\0\0\0\0\0\0\0"; TParticle2dMgr* particle2dMgr; TParticle2dMgr* TParticle2dMgr::_instance; +static void strippedFunc_1() +{ + OSReport("\0\0\0\0\0\0\0\0\0\0\0"); +} + /** * @note Address: N/A * @note Size: 0xE4 */ -void _Print(char* name, ...) { OSReport("particle2dMgr"); } +static void _Print(char* name, ...) { OSReport("particle2dMgr"); } /** * @note Address: 0x803B9064 @@ -270,8 +274,10 @@ void TParticle2dMgr::killAll() { mActiveEmitter->forceDeleteAllEmitter(); } */ void TParticle2dMgr::killGroup(u8 p1) { mActiveEmitter->forceDeleteGroupEmitter((int)p1); } -static const char* dummy = "IP2_dummy"; - +static void strippedFunc_2() +{ + OSReport("IP2_dummy"); +} /** * @note Address: N/A * @note Size: 0x4 diff --git a/src/plugProjectHikinoU/PSAutoBgm.cpp b/src/plugProjectHikinoU/PSAutoBgm.cpp index 0d4bd9ecd..521494d54 100644 --- a/src/plugProjectHikinoU/PSAutoBgm.cpp +++ b/src/plugProjectHikinoU/PSAutoBgm.cpp @@ -235,7 +235,7 @@ u32 Track::seqCpuSync_AutoBgm_Track(JASTrack* track1, u16 cmd, u32 p2, JASTrack* if (_13C.mValue != 16) { //"Unison master track must be a lower numbered track than Unison track" JUT_ASSERTLINE(416, _13C.mValue < mIndex, - "ƒ†ƒjƒ]ƒ“ƒ}ƒXƒ^[ƒgƒ‰ƒbƒN‚̓†ƒjƒ]ƒ“ƒgƒ‰ƒbƒN‚æ‚èŽá‚¢”Ô†‚̃gƒ‰ƒbƒN‚Å‚ ‚é•K—v‚ª‚ ‚è‚Ü‚·"); + "ユニゾンマスタートラックã¯ãƒ¦ãƒ‹ã‚¾ãƒ³ãƒˆãƒ©ãƒƒã‚¯ã‚ˆã‚Šè‹¥ã„番å·ã®ãƒˆãƒ©ãƒƒã‚¯ã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™"); mUnisonTrack = static_cast*>(mTree.getParent()->getObjectPtr())->getChild(_13C.mValue); P2ASSERTLINE(418, mUnisonTrack); } else { diff --git a/src/plugProjectHikinoU/PSDirector.cpp b/src/plugProjectHikinoU/PSDirector.cpp index 9fb085d11..43f9db11d 100644 --- a/src/plugProjectHikinoU/PSDirector.cpp +++ b/src/plugProjectHikinoU/PSDirector.cpp @@ -261,7 +261,7 @@ void SwitcherDirector::doUpdateRequest() * @note Size: 0x88 */ DirectorMgrBase::DirectorMgrBase(u8 count) - : JADHioNode("ƒfƒBƒŒƒNƒ^[ƒ}ƒl[ƒWƒƒ") // "Director Manager" + : JADHioNode("ディレクターマãƒãƒ¼ã‚¸ãƒ£") // "Director Manager" { mDirectors = nullptr; mDirectorCount = count; diff --git a/src/plugProjectHikinoU/PSGame.cpp b/src/plugProjectHikinoU/PSGame.cpp index e5bbce38f..c97eb502f 100644 --- a/src/plugProjectHikinoU/PSGame.cpp +++ b/src/plugProjectHikinoU/PSGame.cpp @@ -526,7 +526,7 @@ void SceneInfo::setStageFlag(SceneInfo::FlagDef flag, SceneInfo::FlagBitShift sh } else if (flag == 1) { mStageFlags |= (1 << shift); } else { - JUT_PANICLINE(906, "flag‚Í0 or1‚Å‚·"); + JUT_PANICLINE(906, "flagã¯0 or1ã§ã™"); } } @@ -596,7 +596,7 @@ void PikScene::getJumpMainBgm() */ PSSystem::Scene* PikSceneMgr::newAndSetGlobalScene() { - JUT_ASSERTLINE(1002, !mScenes, "2d‚ɃOƒ[ƒoƒ‹ƒV[ƒ“‚ð쬂µ‚悤‚Æ‚µ‚½"); // 'I tried to create a global scene twice' + JUT_ASSERTLINE(1002, !mScenes, "2�d�ɃO���[�o���V�[�����ì¬ï¿½ï¿½ï¿½æ‚¤ï¿½Æ‚���"); // 'I tried to create a global scene twice' SceneInfo info; info.mSceneType = SceneInfo::SCENE_NULL; info.mCameras = 0; @@ -637,11 +637,11 @@ PSSystem::Scene* PikSceneMgr::newAndSetCurrentScene(SceneInfo& info) { u8 sceneType = info.getSceneType(); P2ASSERTLINE(1093, sceneType != SceneInfo::SCENE_NULL); - JUT_ASSERTLINE(1094, sceneType < SceneInfo::SCENE_COUNT, "scene no‚ª•s³"); // 'scene no is invalid' + JUT_ASSERTLINE(1094, sceneType < SceneInfo::SCENE_COUNT, "scene no���s��"); // 'scene no is invalid' checkScene(); - JUT_ASSERTLINE(1095, !mScenes->mChild, "‘O‰ñ‚ÌmCurrentScene‚̌㈗‚ª•s³"); // 'previous mCurrentScene post-processing is invalid + JUT_ASSERTLINE(1095, !mScenes->mChild, "�O���mCurrentScene�̌ãˆï¿½ï¿½ï¿½ï¿½ï¿½s��"); // 'previous mCurrentScene post-processing is invalid info.setStageCamera(); diff --git a/src/plugProjectHikinoU/PSSe.cpp b/src/plugProjectHikinoU/PSSe.cpp index cdab1e53a..2c8514c2b 100644 --- a/src/plugProjectHikinoU/PSSe.cpp +++ b/src/plugProjectHikinoU/PSSe.cpp @@ -25,14 +25,14 @@ SeMgr::SeMgr() mSetSeList[i] = nullptr; } - mSetSeList[0] = new SetSe("ƒsƒLSEŠÔˆø‚«Ý’è", 0, 3); // "Pixel SE thinning setting" - mSetSeList[1] = new SetSe("ƒsƒL•¨‰^‚щ¹", 9, 9); // "piki hauling sound" - mSetSeList[2] = new SetSe("ƒsƒLŽdŽ–’@‚«‰¹", 0, 5); // "Piki job tapping sound" - mSetSeList[4] = new SetSe("ƒsƒL“Û‚Ýž‚Ü‚ê‚à‚ª‚«º", 20, 20); // "Piki swallowed and struggle voice" - mSetSeList[5] = new SetSe("ƒ`ƒƒƒŒƒ“ƒWƒ‚[ƒh‚̃gƒbƒv‰æ–Ê—p", 0, 2); // "For challenge mode top screen" - mSetSeList[6] = new SetSe("ƒsƒL’……‰¹—p", 2, 5); // "For Piki landing sound" - mSetSeList[7] = new SetSe("ƒsƒLƒpƒjƒbƒNƒ‰ƒ“—p", 4, 10); // "For Piki Panic Run" - mSetSeList[3] = new SetSe("“G”Ä—p", 20, 9); // "Enemy General Purpose" + mSetSeList[0] = new SetSe("ピキSE間引ã設定", 0, 3); // "Pixel SE thinning setting" + mSetSeList[1] = new SetSe("ピキ物é‹ã³éŸ³", 9, 9); // "piki hauling sound" + mSetSeList[2] = new SetSe("ピキ仕事å©ã音", 0, 5); // "Piki job tapping sound" + mSetSeList[4] = new SetSe("ピキ呑ã¿è¾¼ã¾ã‚Œã‚‚ãŒã声", 20, 20); // "Piki swallowed and struggle voice" + mSetSeList[5] = new SetSe("ãƒãƒ£ãƒ¬ãƒ³ã‚¸ãƒ¢ãƒ¼ãƒ‰ã®ãƒˆãƒƒãƒ—ç”»é¢ç”¨", 0, 2); // "For challenge mode top screen" + mSetSeList[6] = new SetSe("ピキç€æ°´éŸ³ç”¨", 2, 5); // "For Piki landing sound" + mSetSeList[7] = new SetSe("ピキパニックラン用", 4, 10); // "For Piki Panic Run" + mSetSeList[3] = new SetSe("敵汎用", 20, 9); // "Enemy General Purpose" for (u8 i = 0; i < 8; i++) { P2ASSERTLINE(44, mSetSeList[i]); @@ -777,7 +777,7 @@ void Builder_EvnSe_Perspective::build(f32 p1, PSSystem::EnvSeMgr* mgr) // this panic needs to be an inline in PSCommon.h // its also terrible and idk if any of this is right - JUT_ASSERTLINE(210, mList.mNextLink, "ƒŠƒ“ƒN‚ª‚ ‚è‚Ü‚¹‚ñ"); // No link + JUT_ASSERTLINE(210, mList.mNextLink, "リンクãŒã‚ã‚Šã¾ã›ã‚“"); // No link PSSystem::IdLink* link = (PSSystem::IdLink*)mList.mNextLink; mList.mNextLink = (PSSystem::IdLink*)link->getNext(); if (!mList.mNextLink) { diff --git a/src/plugProjectKandoU/baseGameSection.cpp b/src/plugProjectKandoU/baseGameSection.cpp index 3f20c9bb0..e96898427 100644 --- a/src/plugProjectKandoU/baseGameSection.cpp +++ b/src/plugProjectKandoU/baseGameSection.cpp @@ -106,7 +106,7 @@ BaseGameSection::BaseGameSection(JKRHeap* heap) */ void BaseGameSection::useSpecificFBTexture(JUTTexture* texture) { - JUT_ASSERTLINE(1523, !mFbTexture, "‚Q‰ñ‚Í–³—‚—\n"); // 'it's impossible to do twice lol' + JUT_ASSERTLINE(1523, !mFbTexture, "2回ã¯ç„¡ç†ï½—\n"); // 'it's impossible to do twice lol' mFbTexture = mXfbImage; mXfbImage = texture; Game::gameSystem->mXfbTexture = mXfbImage; @@ -118,7 +118,7 @@ void BaseGameSection::useSpecificFBTexture(JUTTexture* texture) */ void BaseGameSection::restoreFBTexture() { - JUT_ASSERTLINE(1533, mFbTexture, "useSpecificFBTexture ‚µ‚Ä‚È‚¢‚—\n"); // 'i haven't used useSpecificFBTexture lol' + JUT_ASSERTLINE(1533, mFbTexture, "useSpecificFBTexture ã—ã¦ãªã„ï½—\n"); // 'i haven't used useSpecificFBTexture lol' mXfbImage = mFbTexture; mFbTexture = nullptr; Game::gameSystem->mXfbTexture = mXfbImage; @@ -597,7 +597,7 @@ void BaseGameSection::initGenerators() addGenNode(limitGeneratorMgr); plantsGeneratorMgr = new GeneratorMgr; - plantsGeneratorMgr->mName = "Generator(A•¨)"; + plantsGeneratorMgr->mName = "Generator(æ¤ç‰©)"; addGenNode(plantsGeneratorMgr); dayGeneratorMgr = new GeneratorMgr; @@ -1346,7 +1346,7 @@ void BaseGameSection::prepareFountainOn(Vector3f& suroundPos) */ void BaseGameSection::initLights() { - mLightMgr = new GameLightMgr("ƒQ[ƒ€ƒ‰ƒCƒgƒ}ƒl[ƒWƒƒ"); // game light manager + mLightMgr = new GameLightMgr("ゲームライトマãƒãƒ¼ã‚¸ãƒ£"); // game light manager mLightMgr->mTimeMgr = gameSystem->mTimeMgr; addGenNode(mLightMgr); particleMgr->mLightMgr = mLightMgr; @@ -1449,7 +1449,7 @@ void BaseGameSection::draw2D(Graphics& gfx) void BaseGameSection::setupViewportMatrix(Graphics&) { JUT_PANICLINE(0, "DON'T USE THIS !\n"); - JUT_PANICLINE(0, "Žg‚Á‚Ä‚È‚¢‚©‚à\n"); + JUT_PANICLINE(0, "使ã£ã¦ãªã„ã‹ã‚‚\n"); // UNUSED FUNCTION } diff --git a/src/plugProjectKandoU/cellPyramid.cpp b/src/plugProjectKandoU/cellPyramid.cpp index 9b0a0b712..252ad47f2 100644 --- a/src/plugProjectKandoU/cellPyramid.cpp +++ b/src/plugProjectKandoU/cellPyramid.cpp @@ -1544,7 +1544,7 @@ void CellPyramid::entry(CellObject* object, Sys::Sphere& sphere, int& layerIndex // Check if layerIndex is out of bounds if ((layerIndex < 0) || (mLayerCount <= layerIndex)) { - JUT_PANICLINE(1206, "illegal layerLevel %d : out of bounds 0`%d\n", layerIndex, mLayerCount); + JUT_PANICLINE(1206, "illegal layerLevel %d : out of bounds 0~%d\n", layerIndex, mLayerCount); return; } @@ -1918,7 +1918,7 @@ int CellPyramid::getPikiCount(int layerLevel, Recti& extent) if (disableAICulling) { return 1; } - JUT_ASSERTLINE(1565, (layerLevel >= 0) && (layerLevel < mLayerCount), "illegal layerLevel %d : out of bounds 0`%d\n", layerLevel, + JUT_ASSERTLINE(1565, (layerLevel >= 0) && (layerLevel < mLayerCount), "illegal layerLevel %d : out of bounds 0~%d\n", layerLevel, mLayerCount); CellLayer* layer = &mLayers[layerLevel]; int sum = 0; diff --git a/src/plugProjectKandoU/gameCaveInfo.cpp b/src/plugProjectKandoU/gameCaveInfo.cpp index 157b2613a..c7b5386cc 100644 --- a/src/plugProjectKandoU/gameCaveInfo.cpp +++ b/src/plugProjectKandoU/gameCaveInfo.cpp @@ -276,7 +276,7 @@ void ItemInfo::read(Stream& input) { char* name = input.readString(nullptr, 0); mCaveID = pelletMgr->getCaveID(name); - JUT_ASSERTLINE(659, mCaveID != -1, "•Ï‚ȃyƒŒƒbƒgƒl[ƒ€‚Å‚·!\n"); + JUT_ASSERTLINE(659, mCaveID != -1, "変ãªãƒšãƒ¬ãƒƒãƒˆãƒãƒ¼ãƒ ã§ã™!\n"); mWeight = input.readInt(); mName = name; } @@ -336,9 +336,9 @@ FloorInfo::FloorInfo() namespace { static char* enum_floor_alpha_types[] - = { "“y", "ƒƒ^ƒ‹", "ƒRƒ“ƒNƒŠ[ƒc", "ƒ^ƒCƒ‹", nullptr, nullptr }; // 'soil', 'metal', 'concrete', 'tile', -, - -static char* enum_floor_beta_types[] = { "’Êí", "ƒ{ƒX", "‚â‚·‚炬" }; // 'normal', 'boss', 'rest' -static char* enum_floor_hiddens[] = { "‚È‚µ", "‚ ‚è" }; // 'none', 'available' + = { "土", "メタル", "コンクリーツ", "タイル", nullptr, nullptr }; // 'soil', 'metal', 'concrete', 'tile', -, - +static char* enum_floor_beta_types[] = { "通常", "ボス", "ã‚„ã™ã‚‰ãŽ" }; // 'normal', 'boss', 'rest' +static char* enum_floor_hiddens[] = { "ãªã—", "ã‚ã‚Š" }; // 'none', 'available' } // namespace namespace Game { @@ -350,25 +350,25 @@ namespace Cave { */ FloorInfo::Parms::Parms() : Parameters(nullptr, "FloorInfo") - , mFloorIndex1(this, 'f000', "ŠK‚Í‚¶‚ß", 0, 0, 127) // 'first floor' - , mFloorIndex2(this, 'f001', "ŠK‚¨‚í‚è", 1, 0, 127) // 'end of floor' - , mTekiMax(this, 'f002', "“GÅ‘å”", 0, 0, 128) // 'maximum number of enemies' - , mItemMax(this, 'f003', "ƒAƒCƒeƒ€Å‘å”", 0, 0, 128) // 'maximum number of items' - , mGateMax(this, 'f004', "ƒQ[ƒgÅ‘å”", 0, 0, 32) // 'maximum number of gates' - , mCapMax(this, 'f014', "ƒLƒƒƒbƒvÅ‘å”", 0, 0, 128) // 'maximum number of caps' - , mRoomCount(this, 'f005', "ƒ‹[ƒ€”", 4, 1, 15) // 'number of rooms' - , mRouteRatio(this, 'f006', "ƒ‹[ƒg‚ÌŠ„‡", 0.0f, 0.0f, 1.0f) // 'root percentage' - , mHasEscapeFountain(this, 'f007', "‹AŠÒ•¬…(1=‚ ‚è)", 0, 0, 1) // 'return fountain (1=yes)' - , mCaveUnitFile(this, "units.txt", 64, 'f008', "Žg—pƒ†ƒjƒbƒg") // 'unit used' - , mLightingFile(this, "light.ini", 64, 'f009', "Žg—pƒ‰ƒCƒg") // 'light used' + , mFloorIndex1(this, 'f000', "階ã¯ã˜ã‚", 0, 0, 127) // 'first floor' + , mFloorIndex2(this, 'f001', "階ãŠã‚ã‚Š", 1, 0, 127) // 'end of floor' + , mTekiMax(this, 'f002', "敵最大数", 0, 0, 128) // 'maximum number of enemies' + , mItemMax(this, 'f003', "アイテム最大数", 0, 0, 128) // 'maximum number of items' + , mGateMax(this, 'f004', "ゲート最大数", 0, 0, 32) // 'maximum number of gates' + , mCapMax(this, 'f014', "キャップ最大数", 0, 0, 128) // 'maximum number of caps' + , mRoomCount(this, 'f005', "ルーム数", 4, 1, 15) // 'number of rooms' + , mRouteRatio(this, 'f006', "ルートã®å‰²åˆ", 0.0f, 0.0f, 1.0f) // 'root percentage' + , mHasEscapeFountain(this, 'f007', "帰還噴水(1=ã‚ã‚Š)", 0, 0, 1) // 'return fountain (1=yes)' + , mCaveUnitFile(this, "units.txt", 64, 'f008', "使用ユニット") // 'unit used' + , mLightingFile(this, "light.ini", 64, 'f009', "使用ライト") // 'light used' , mVrBox(this, "test", 64, 'f00A', "VRBOX") // 'VRBOX' - , mIsHoleClogged(this, 'f010', "ŠK’i‚ð‰ó‚·Šâ‚ʼnB‚·(0=ƒIƒt 1=ƒIƒ“)", 0, 0, 1) // 'hide stairs with rocks that break (0=off 1=on)' - , mFloorAlphaType(this, enum_floor_alpha_types, 0, 6, 'f011', "ƒ¿‘®«") // 'alpha attribute' - , mFloorBetaType(this, enum_floor_beta_types, 0, 3, 'f012', "ƒÀ‘®«") // 'beta attribute' - , mFloorHidden(this, enum_floor_hiddens, 0, 2, 'f013', "‰B‚µ°") // 'hidden floor' + , mIsHoleClogged(this, 'f010', "階段を壊ã™å²©ã§éš ã™(0=オフ 1=オン)", 0, 0, 1) // 'hide stairs with rocks that break (0=off 1=on)' + , mFloorAlphaType(this, enum_floor_alpha_types, 0, 6, 'f011', "α属性") // 'alpha attribute' + , mFloorBetaType(this, enum_floor_beta_types, 0, 3, 'f012', "β属性") // 'beta attribute' + , mFloorHidden(this, enum_floor_hiddens, 0, 2, 'f013', "éš ã—床") // 'hidden floor' , mVersion(this, 'f015', "Version", 0, 0, 10000) // 'Version' , mWaterwraithTimer(this, 'f016', "BlackManTimer", 0.0f, 0.0f, 10000.0f) // 'BlackManTimer' - , mGlitchySeesaw(this, 'f017', "’¾‚Þ•Ç", 0, 0, 1) // 'sinking wall' + , mGlitchySeesaw(this, 'f017', "沈むå£", 0, 0, 1) // 'sinking wall' { } diff --git a/src/plugProjectKandoU/gameDynamics.cpp b/src/plugProjectKandoU/gameDynamics.cpp index 7236dcdef..3d897ed31 100644 --- a/src/plugProjectKandoU/gameDynamics.cpp +++ b/src/plugProjectKandoU/gameDynamics.cpp @@ -10,18 +10,18 @@ DynamicsParms* DynamicsParms::mInstance; */ DynamicsParms::DynamicsParms() : Parameters(nullptr, "Dynamics") - , mNewFriction(this, 'd009', "VƒtƒŠƒNƒVƒ‡ƒ“", true, false, true) // 'new friction' + , mNewFriction(this, 'd009', "新フリクション", true, false, true) // 'new friction' , mStaParm(this, 'd011', "Sta-Parm", 140.0f, 0.0f, 5000.0f) , mStatic(this, 'd010', "Static", 10.0f, 0.0f, 5000.0f) , mMicroCollision(this, 'd000', "micro collision", 0.015f, 0.0f, 10.0f) - , mFrictionDuringResolve(this, 'd001', "ResolveŽž‚Ì–€ŽC", false, false, true) // 'friction during Resolve' + , mFrictionDuringResolve(this, 'd001', "Resolve時ã®æ‘©æ“¦", false, false, true) // 'friction during Resolve' , mElasticity(this, 'd002', "elasticity", 0.3f, 0.0f, 1.0f) - , mFriction(this, 'd003', "–€ŽC", true, false, true) // 'friction' - , mFrictionTangentVelocity(this, 'd004', "–€ŽC:tanvel", true, false, true) // 'friction:tanvel' - tangent velocity? - , mFixedFriction(this, 'd005', "ŒÅ’è–€ŽC", true, false, true) // 'fixed friction' - , mFixedFrictionValue(this, 'd006', "ŒÅ’è–€ŽC’l", 100.0f, 0.0f, 10000.0f) // 'fixed friction value' - , mNoRotationEffect(this, 'd007', "‰ñ“]‰e‹¿‚È‚µ‚É‚·‚é", true, false, true) // 'no rotation effect' - , mRotatingMomentDamp(this, 'd008', "‰ñ“]ƒ‚[ƒƒ“ƒg Damp", 0.05f, 0.0f, 1.0f) // 'rotating moment Damp' + , mFriction(this, 'd003', "摩擦", true, false, true) // 'friction' + , mFrictionTangentVelocity(this, 'd004', "摩擦:tanvel", true, false, true) // 'friction:tanvel' - tangent velocity? + , mFixedFriction(this, 'd005', "固定摩擦", true, false, true) // 'fixed friction' + , mFixedFrictionValue(this, 'd006', "固定摩擦値", 100.0f, 0.0f, 10000.0f) // 'fixed friction value' + , mNoRotationEffect(this, 'd007', "回転影響ãªã—ã«ã™ã‚‹", true, false, true) // 'no rotation effect' + , mRotatingMomentDamp(this, 'd008', "回転モーメント Damp", 0.05f, 0.0f, 1.0f) // 'rotating moment Damp' { mInstance = this; } diff --git a/src/plugProjectKandoU/gameGenerator.cpp b/src/plugProjectKandoU/gameGenerator.cpp index e6082875a..ff2223991 100644 --- a/src/plugProjectKandoU/gameGenerator.cpp +++ b/src/plugProjectKandoU/gameGenerator.cpp @@ -440,7 +440,7 @@ void Generator::write(Stream& output) output.textWriteTab(output.mTabCount); output.writeShort(mDaysTillResurrection); - output.textWriteText("\t# •œŠˆ“ú”\r\n"); // 'resurrection days' + output.textWriteText("\t# 復活日数\r\n"); // 'resurrection days' if (ramMode == RM_Disc) { // generator files as stored on disc diff --git a/src/plugProjectKandoU/gameMapParts.cpp b/src/plugProjectKandoU/gameMapParts.cpp index 6fd2fd6de..432891e59 100644 --- a/src/plugProjectKandoU/gameMapParts.cpp +++ b/src/plugProjectKandoU/gameMapParts.cpp @@ -211,7 +211,7 @@ MapUnit* MapUnitMgr::findMapUnit(char* unitName) */ void MapUnitMgr::testConstruct() { - JUT_PANICLINE(500, "‚à‚¤Žg‚í‚È‚¢\n"); // 'don't use it anymore' + JUT_PANICLINE(500, "ã‚‚ã†ä½¿ã‚ãªã„\n"); // 'don't use it anymore' JUT_PANICLINE(501, "%s : not found !\n", nullptr); // UNUSED FUNCTION } diff --git a/src/plugProjectKandoU/gamePlayData.cpp b/src/plugProjectKandoU/gamePlayData.cpp index 410bc2c6c..cbb0ac2c4 100644 --- a/src/plugProjectKandoU/gamePlayData.cpp +++ b/src/plugProjectKandoU/gamePlayData.cpp @@ -1235,7 +1235,7 @@ void PlayData::read_CaveOtakara(Stream& ram) */ void PlayData::write_CaveOtakara(Stream& ram) { - ram.textBeginGroup("–“´ŒAî•ñ–"); + ram.textBeginGroup("*洞窟情報*"); u16 max = stageList->getCourseCount(); for (int i = 0; i < max; i++) { mCaveOtakara[i].write(ram); @@ -1251,14 +1251,14 @@ void PlayData::CaveOtakara::write(Stream& output) { output.textWriteTab(output.mTabCount); output.writeByte(mCaveCount); - output.textWriteText("# cave”\r\n"); + output.textWriteText("# caveæ•°\r\n"); for (int i = 0; i < mCaveCount; i++) { output.textWriteTab(output.mTabCount); output.writeByte(mOtakaraCountsOld[i]); - output.textWriteText("# ŒÂ”\r\n"); + output.textWriteText("# 個数\r\n"); output.textWriteTab(output.mTabCount); output.writeByte(_08[i]); - output.textWriteText("# ó‘Ô\r\n"); + output.textWriteText("# 状態\r\n"); } } @@ -1270,7 +1270,7 @@ void PlayData::CaveOtakara::read(Stream& input) { u8 existingCaveCount = mCaveCount; mCaveCount = input.readByte(); - JUT_ASSERTLINE(1797, existingCaveCount == mCaveCount, "ƒZ[ƒu‚µ‚½‚Æ‚«‚Æ“´ŒA‚Ì”‚ª‚ ‚¢‚Ü‚¹‚ñ\n"); + JUT_ASSERTLINE(1797, existingCaveCount == mCaveCount, "セーブã—ãŸã¨ãã¨æ´žçªŸã®æ•°ãŒã‚ã„ã¾ã›ã‚“\n"); for (int i = 0; i < mCaveCount; i++) { mOtakaraCountsOld[i] = input.readByte(); _08[i] = input.readByte(); @@ -1586,8 +1586,8 @@ void PlayData::read_CaveOtakara_Old(Stream& ram) */ void PlayData::write_CaveOtakara_Old(Stream& ram) { - ram.textBeginGroup("–“´ŒAî•ñ(Old)–"); - u16 max = stageList->mCourseCount; + ram.textBeginGroup("*洞窟情報(Old)*"); + u16 max = stageList->getCourseCount(); for (int i = 0; i < max; i++) { CaveOtakara* ota = &mCaveOtakaraOld[i]; ota->write(ram); diff --git a/src/plugProjectKandoU/gamePlayDataMemCard.cpp b/src/plugProjectKandoU/gamePlayDataMemCard.cpp index 58216dd02..17b9e6251 100644 --- a/src/plugProjectKandoU/gamePlayDataMemCard.cpp +++ b/src/plugProjectKandoU/gamePlayDataMemCard.cpp @@ -43,22 +43,22 @@ void PlayData::write(Stream& output) IStack312.write(output); output.textEndGroup(); - output.textBeginGroup("* ‚¨•óŒÂ” *"); // 'number of treasures' + output.textBeginGroup("* ãŠå®å€‹æ•° *"); // 'number of treasures' output.writeInt(mTreasureCount); output.textEndGroup(); - output.textBeginGroup("* •ÔÏ“xƒtƒ‰ƒO *"); // 'repayment flag' + output.textBeginGroup("* 返済度フラグ *"); // 'repayment flag' u8* flags = &mDebtProgressFlags.typeView; for (u32 i = 0; i < 2; i++) { output.writeByte(flags[i]); } output.textEndGroup(); - output.textBeginGroup("* ƒNƒŠƒAƒtƒ‰ƒO *"); // 'clear flag' + output.textBeginGroup("* クリアフラグ *"); // 'clear flag' output.writeBytes(&mStoryFlags, 1); output.textEndGroup(); - output.textBeginGroup("* ƒZ[ƒuƒtƒ‰ƒO/ƒIƒjƒ‡ƒ“ƒtƒ‰ƒO *"); // 'save flag/onyon flag' + output.textBeginGroup("* セーブフラグ/オニョンフラグ *"); // 'save flag/onyon flag' output.textWriteTab(output.mTabCount); output.writeByte(mLoadType); output.textWriteText("\r\n"); @@ -73,56 +73,56 @@ void PlayData::write(Stream& output) output.textWriteText("# meet pikmin flag\r\n"); output.textEndGroup(); - output.textBeginGroup("* “ú‚É‚¿ *"); // 'date' (?) + output.textBeginGroup("* æ—¥ã«ã¡ *"); // 'date' (?) mTekiStatMgr.write(output); output.textEndGroup(); - output.textBeginGroup("* “ú‚É‚¿ *"); // 'date' (?) + output.textBeginGroup("* æ—¥ã«ã¡ *"); // 'date' (?) output.textWriteTab(output.mTabCount); output.writeInt(gameSystem->mTimeMgr->mDayCount); output.textWriteText("\r\n"); output.textEndGroup(); - output.textBeginGroup("* ƒIƒŠƒ}[‘•”õ‘¼/OlimarData *"); // 'olimar equipment etc./OlimarData' + output.textBeginGroup("* オリマー装備他/OlimarData *"); // 'olimar equipment etc./OlimarData' mOlimarData[0].write(output); mOlimarData[1].write(output); output.textEndGroup(); - output.textBeginGroup("* “´ŒAó‹µ/CaveSaveData *"); // 'cave situation/CaveSaveData' + output.textBeginGroup("* 洞窟状æ³/CaveSaveData *"); // 'cave situation/CaveSaveData' mCaveSaveData.write(output); output.textEndGroup(); - output.textBeginGroup("* ƒ[ƒ‹/MailSaveData *"); // 'email/MailSaveData' + output.textBeginGroup("* メール/MailSaveData *"); // 'email/MailSaveData' mMailSaveData.write(output); output.textEndGroup(); - output.textBeginGroup("* ƒRƒ“ƒeƒi/ContainerPikmin *"); // 'container/ContainerPikmin' + output.textBeginGroup("* コンテナ/ContainerPikmin *"); // 'container/ContainerPikmin' mPikiContainer.write(output); output.textEndGroup(); - output.textBeginGroup("* ƒyƒŒƒbƒg/PelletMemory *"); // 'pellet/PelletMemory' + output.textBeginGroup("* ペレット/PelletMemory *"); // 'pellet/PelletMemory' mZukanStat->write(output); output.textEndGroup(); - output.textBeginGroup("* ƒyƒŒƒbƒg/‚P“ú‚É‚Æ‚Á‚½‚à‚Ì(Main) *"); // 'pellets/taken in 1 day (Main)' + output.textBeginGroup("* ペレット/1日ã«ã¨ã£ãŸã‚‚ã®(Main) *"); // 'pellets/taken in 1 day (Main)' mMainCropMemory->write(output); output.textEndGroup(); - output.textBeginGroup("* ƒyƒŒƒbƒg/’n‰º‚Å‚Æ‚Á‚½‚à‚Ì(Cave) *"); // 'pellets/taken underground (Cave)' + output.textBeginGroup("* ペレット/地下ã§ã¨ã£ãŸã‚‚ã®(Cave) *"); // 'pellets/taken underground (Cave)' mCaveCropMemory->write(output); output.textEndGroup(); - output.textBeginGroup("* ƒh[ƒsƒ“ƒOî•ñ/Doping *"); // 'doping information/Doping' + output.textBeginGroup("* ドーピング情報/Doping *"); // 'doping information/Doping' char textBuffer[256]; writeSprayCounts(output, textBuffer); writeBerryCounts(output, textBuffer); output.textEndGroup(); - output.textBeginGroup("* ƒR[ƒXî•ñ *"); // 'course information' + output.textBeginGroup("* コース情報 *"); // 'course information' courseCount = stageList->getCourseCount(); output.textWriteTab(output.mTabCount); output.writeInt(courseCount); - output.textWriteText("\t# ƒR[ƒX”\r\n"); // 'number of courses' + output.textWriteText("\t# コース数\r\n"); // 'number of courses' for (int i = 0; i < courseCount; i++) { output.textWriteTab(output.mTabCount); output.writeByte(mBitfieldPerCourse[i]); @@ -134,7 +134,7 @@ void PlayData::write(Stream& output) } output.textEndGroup(); - output.textBeginGroup("* “´ŒA’B¬î•ñ *"); // 'cave achievement information' + output.textBeginGroup("* 洞窟é”æˆæƒ…å ± *"); // 'cave achievement information' write_CaveOtakara(output); output.textEndGroup(); @@ -145,22 +145,22 @@ void PlayData::write(Stream& output) } output.textEndGroup(); - output.textBeginGroup("* ‚¨‹à/“´ŒA‚Ŏ擾‚µ‚½ˆêŽž“I‚È‚¨‹à *"); // 'money/temporary money obtained in the cave' + output.textBeginGroup("* ãŠé‡‘/洞窟ã§å–å¾—ã—ãŸä¸€æ™‚çš„ãªãŠé‡‘ *"); // 'money/temporary money obtained in the cave' output.textWriteTab(output.mTabCount); output.writeInt(mPokoCount); output.writeInt(mCavePokoCount); output.textWriteText("\r\n"); output.textEndGroup(); - output.textBeginGroup("* o¶” *"); // 'number of births' + output.textBeginGroup("* 出生数 *"); // 'number of births' Game::BirthMgr::write(output); output.textEndGroup(); - output.textBeginGroup("* Ž€–S” *"); // 'number of deaths' + output.textBeginGroup("* 死亡数 *"); // 'number of deaths' Game::DeathMgr::write(output); output.textEndGroup(); - output.textBeginGroup("* ƒIƒŠƒ}[Ž€–Sƒtƒ‰ƒO *"); // 'olimar death flag' + output.textBeginGroup("* オリマー死亡フラグ *"); // 'olimar death flag' output.textWriteTab(output.mTabCount); output.writeBytes(&mDeadNaviID, 1); output.textWriteText("\r\n"); @@ -170,7 +170,7 @@ void PlayData::write(Stream& output) output.textWriteText("\r\n"); output.textEndGroup(); - output.textBeginGroup("* ƒfƒ‚ƒtƒ‰ƒO/“ÁŽê”­Œ©ƒfƒ‚ƒtƒ‰ƒO *"); // 'demo flag/special discovery demo flag' + output.textBeginGroup("* デモフラグ/特殊発見デモフラグ *"); // 'demo flag/special discovery demo flag' output.textWriteTab(output.mTabCount); mDemoFlags.write(output); mFindItemFlags.write(output); @@ -178,7 +178,7 @@ void PlayData::write(Stream& output) output.textEndGroup(); courseCount = stageList->mCourseCount; - output.textBeginGroup("* WorldMap ‰‰o—p *"); // 'WorldMap for performance' [staging?] + output.textBeginGroup("* WorldMap 演出用 *"); // 'WorldMap for performance' [staging?] for (int i = 0; i < courseCount; i++) { output.writeByte(mGroundOtakaraCollectedOld[i]); } @@ -187,7 +187,7 @@ void PlayData::write(Stream& output) output.textEndGroup(); int dataSize = getDataSize(output, startPosition); - output.textBeginGroup("* DayEndResult—p *"); // 'for DayEndResult' + output.textBeginGroup("* DayEndResult用 *"); // 'for DayEndResult' for (int i = FirstPikmin; i < StoredPikiCount + 1; i++) { output.writeInt(mPikminYesterday[i]); output.writeInt(mPikminToday[i]); @@ -195,7 +195,7 @@ void PlayData::write(Stream& output) } output.textEndGroup(); - output.textBeginGroup("* ƒWƒFƒlƒŒ[ƒ^ƒLƒƒƒbƒVƒ…/GeneratorCache *"); // 'generator cache/GeneratorCache' + output.textBeginGroup("* ジェãƒãƒ¬ãƒ¼ã‚¿ã‚­ãƒ£ãƒƒã‚·ãƒ¥/GeneratorCache *"); // 'generator cache/GeneratorCache' generatorCache->write(output); output.textEndGroup(); diff --git a/src/plugProjectKandoU/gameSeaMgr.cpp b/src/plugProjectKandoU/gameSeaMgr.cpp index e5c3d5f13..476ef905e 100644 --- a/src/plugProjectKandoU/gameSeaMgr.cpp +++ b/src/plugProjectKandoU/gameSeaMgr.cpp @@ -59,7 +59,7 @@ void AABBWaterBox::startDown(f32 diff) */ void AABBWaterBox::startUp(f32) { - JUT_PANICLINE(167, "‚Ü‚ñ‚¾! startUp\n"); // "Manda" + JUT_PANICLINE(167, "ã¾ã‚“ã ! startUp\n"); // "Manda" } /** diff --git a/src/plugProjectKandoU/gameSystem.cpp b/src/plugProjectKandoU/gameSystem.cpp index e34b78cc7..23c9f5a09 100644 --- a/src/plugProjectKandoU/gameSystem.cpp +++ b/src/plugProjectKandoU/gameSystem.cpp @@ -429,8 +429,8 @@ TObjectNode* GameSystem::detachObjectMgr_reuse(GenericObjectMg */ OptimiseController::OptimiseController() : Parameters(nullptr, "Dynamics") - , mPikminNeck(this, 'c000', "ƒsƒNƒ~ƒ“Žñ", true, false, true) // 'pikmin neck' - , mCollisionBufferEnabled(this, 'c001', "ƒRƒŠƒWƒ‡ƒ“ƒoƒbƒtƒ@—LŒø", false, false, true) // 'collision buffer enabled' + , mPikminNeck(this, 'c000', "ピクミン首", true, false, true) // 'pikmin neck' + , mCollisionBufferEnabled(this, 'c001', "コリジョンãƒãƒƒãƒ•ã‚¡æœ‰åŠ¹", false, false, true) // 'collision buffer enabled' { } diff --git a/src/plugProjectKandoU/genItem.cpp b/src/plugProjectKandoU/genItem.cpp index dc5cb6d9f..15ef98115 100644 --- a/src/plugProjectKandoU/genItem.cpp +++ b/src/plugProjectKandoU/genItem.cpp @@ -24,7 +24,7 @@ void GenItem::initialise() } GenObjectFactory::factory->mFactories[GenObjectFactory::factory->mCount].mTypeID = 'item'; factory->mFactories[factory->mCount].mMakeFunction = makeItem; - factory->mFactories[factory->mCount].mName = "ƒAƒCƒeƒ€‚ð”­¶"; // spawn item + factory->mFactories[factory->mCount].mName = "アイテムを発生"; // spawn item factory->mFactories[factory->mCount].mVersion = '0002'; factory->mCount++; @@ -174,5 +174,5 @@ Creature* GenItem::birth(Game::GenArg* arg) return baseItem; } -static const char unusedGenItemStr[] = "ƒIƒjƒ‡ƒ“‚ð”­¶"; +static const char unusedGenItemStr[] = "オニョンを発生"; } // namespace Game diff --git a/src/plugProjectKandoU/genNavi.cpp b/src/plugProjectKandoU/genNavi.cpp index 2ad5b86ed..cce0c2404 100644 --- a/src/plugProjectKandoU/genNavi.cpp +++ b/src/plugProjectKandoU/genNavi.cpp @@ -23,7 +23,7 @@ void GenObjectNavi::initialise() if (factory->mCount < factory->mLimit) { factory->mFactories[factory->mCount].mTypeID = 'navi'; factory->mFactories[factory->mCount].mMakeFunction = makeObjectNavi; - factory->mFactories[factory->mCount].mName = "ƒiƒr‚ð”­¶"; // generate navi(gation) + factory->mFactories[factory->mCount].mName = "ナビを発生"; // generate navi(gation) factory->mFactories[factory->mCount].mVersion = '0000'; factory->mCount++; } diff --git a/src/plugProjectKandoU/genPellet.cpp b/src/plugProjectKandoU/genPellet.cpp index a83e75fc5..aa12a2e1a 100644 --- a/src/plugProjectKandoU/genPellet.cpp +++ b/src/plugProjectKandoU/genPellet.cpp @@ -22,7 +22,7 @@ void GenPellet::initialise() GenObjectFactoryFactory* obj = GenObjectFactory::factory; obj->mFactories[obj->mCount].mTypeID = 'pelt'; obj->mFactories[obj->mCount].mMakeFunction = (GenObjectFactory::MakeFunction*)makePellet; - obj->mFactories[obj->mCount].mName = "PELLET‚ð”­¶"; + obj->mFactories[obj->mCount].mName = "PELLETを発生"; obj->mFactories[obj->mCount].mVersion = '0000'; obj->mCount++; } diff --git a/src/plugProjectKandoU/genPiki.cpp b/src/plugProjectKandoU/genPiki.cpp index 08434d99f..5389b583c 100644 --- a/src/plugProjectKandoU/genPiki.cpp +++ b/src/plugProjectKandoU/genPiki.cpp @@ -22,7 +22,7 @@ void GenObjectPiki::initialise() if (factory->mCount < factory->mLimit) { factory->mFactories[factory->mCount].mTypeID = 'piki'; factory->mFactories[factory->mCount].mMakeFunction = makeObjectPiki; - factory->mFactories[factory->mCount].mName = "ƒsƒNƒ~ƒ“‚ð”­¶"; // generate Pikmin + factory->mFactories[factory->mCount].mName = "ピクミンを発生"; // generate Pikmin factory->mFactories[factory->mCount].mVersion = '0001'; factory->mCount++; } diff --git a/src/plugProjectKandoU/itemBigFountain.cpp b/src/plugProjectKandoU/itemBigFountain.cpp index 1a057db38..f781858a8 100644 --- a/src/plugProjectKandoU/itemBigFountain.cpp +++ b/src/plugProjectKandoU/itemBigFountain.cpp @@ -497,7 +497,7 @@ Mgr::Mgr() { setModelSize(1); mObjectPathComponent = "user/Kando/objects/kanketusen"; - mItemName = "‹AŠÒŠÔŒ‡ò"; // 'return geyser' + mItemName = "帰還間欠泉"; // 'return geyser' mParms = new FountainParms(); void* data = JKRDvdRipper::loadToMainRAM("user/Abe/item/fountainParms.txt", nullptr, Switch_0, 0, nullptr, diff --git a/src/plugProjectKandoU/itemBridge.cpp b/src/plugProjectKandoU/itemBridge.cpp index b42ddc4ed..cf49ce79d 100644 --- a/src/plugProjectKandoU/itemBridge.cpp +++ b/src/plugProjectKandoU/itemBridge.cpp @@ -1167,7 +1167,7 @@ void Mgr::generatorWrite(Stream& output, GenItemParm* genParm) P2ASSERTLINE(940, genBridgeParm); output.textWriteTab(output.mTabCount); output.writeShort(genBridgeParm->mBridgeType); - output.textWriteText("\t#‹´ƒ^ƒCƒv\r\n"); // '#Bridge type' + output.textWriteText("\t#橋タイプ\r\n"); // '#Bridge type' } /** diff --git a/src/plugProjectKandoU/itemDownFloor.cpp b/src/plugProjectKandoU/itemDownFloor.cpp index a2288e8e1..df8666373 100644 --- a/src/plugProjectKandoU/itemDownFloor.cpp +++ b/src/plugProjectKandoU/itemDownFloor.cpp @@ -836,7 +836,7 @@ void Mgr::generatorWrite(Stream& input, GenItemParm* genParm) P2ASSERTLINE(1246, downParm); input.textWriteTab(input.mTabCount); input.writeShort(downParm->mBagWeight); - input.textWriteText("\t#’¾‚Ýl”\r\n"); // '#number of people sinking' + input.textWriteText("\t#沈ã¿äººæ•°\r\n"); // '#number of people sinking' input.textWriteTab(input.mTabCount); input.writeShort(downParm->mModelType); diff --git a/src/plugProjectKandoU/itemGate.cpp b/src/plugProjectKandoU/itemGate.cpp index cc6cbfaad..b7df6c81b 100644 --- a/src/plugProjectKandoU/itemGate.cpp +++ b/src/plugProjectKandoU/itemGate.cpp @@ -140,7 +140,7 @@ void ItemGate::doLoad(Stream& stream) mSegmentsDown = stream.readInt(); initMotion(); if (mSegmentsDown >= mMaxSegments) { - mCentrePlatInstance->setCollision(false); // Centre? ?\_(ãƒ?)_/? British + mCentrePlatInstance->setCollision(false); // Centre? ?\_(�?)_/? British setAlive(false); if (mIsElectric) { mEgateEfxA->forceKill(); @@ -870,7 +870,7 @@ void ItemGateMgr::generatorWrite(Stream& stream, Game::GenItemParm* param) GenGateParm* gateParam = static_cast(param); stream.textWriteTab(stream.mTabCount); stream.writeFloat(gateParam->mLife); - stream.textWriteText("\t#ƒ‰ƒCƒt\r\n"); // life + stream.textWriteText("\t#ライフ\r\n"); // life stream.textWriteTab(stream.mTabCount); stream.writeByte(gateParam->mColor); stream.textWriteText("\t#Color\r\n"); @@ -1091,7 +1091,7 @@ void GateDownState::onKeyEvent(Game::ItemGate* gate, const SysShape::KeyEvent& k */ ItemDengekiGate::Mgr::Mgr() { - mItemName = "“dŒ‚ƒQ[ƒg"; // electric shock gate + mItemName = "電撃ゲート"; // electric shock gate sys->heapStatusStart("ItemDengekiGate", nullptr); mObjectPathComponent = "user/Kando/objects/gates"; setModelSize(1); @@ -1170,7 +1170,7 @@ void ItemDengekiGate::Mgr::generatorWrite(Stream& stream, Game::GenItemParm* par GenGateParm* gateParam = static_cast(param); stream.textWriteTab(stream.mTabCount); stream.writeFloat(gateParam->mLife); - stream.textWriteText("\t#ƒ‰ƒCƒt\r\n"); // life + stream.textWriteText("\t#ライフ\r\n"); // life } /** diff --git a/src/plugProjectKandoU/itemMgr.cpp b/src/plugProjectKandoU/itemMgr.cpp index 620e3a604..c11b28db2 100644 --- a/src/plugProjectKandoU/itemMgr.cpp +++ b/src/plugProjectKandoU/itemMgr.cpp @@ -689,7 +689,7 @@ void TNodeItemMgr::killAll() */ ItemMgr::ItemMgr() { - mName = "ƒAƒCƒeƒ€ƒ}ƒl[ƒWƒƒ"; // "Item Manager" + mName = "アイテムマãƒãƒ¼ã‚¸ãƒ£"; // "Item Manager" } /** diff --git a/src/plugProjectKandoU/itemPikihead.cpp b/src/plugProjectKandoU/itemPikihead.cpp index e6185df52..f4e228d14 100644 --- a/src/plugProjectKandoU/itemPikihead.cpp +++ b/src/plugProjectKandoU/itemPikihead.cpp @@ -996,7 +996,7 @@ Item* Mgr::birth() break; case PikiMgr::PSM_Replace: // we should not be entering a cave floor and immediately making a sprout lol - JUT_PANICLINE(834, "‚±‚ê‚Í‚ ‚肦‚È‚¢‚æ\n"); // 'this is impossible' lol + JUT_PANICLINE(834, "ã“ã‚Œã¯ã‚ã‚Šãˆãªã„よ\n"); // 'this is impossible' lol break; } diff --git a/src/plugProjectKandoU/itemPlant.cpp b/src/plugProjectKandoU/itemPlant.cpp index 2899633dc..9a4c5a1b5 100644 --- a/src/plugProjectKandoU/itemPlant.cpp +++ b/src/plugProjectKandoU/itemPlant.cpp @@ -2380,7 +2380,7 @@ void Mgr::generatorWrite(Stream& input, GenItemParm* genParm) input.textWriteTab(input.mTabCount); input.writeShort(plantParm->mPlantType); - input.textWriteText("\t#ŽÀƒ^ƒCƒv\r\n"); // '#actual type' + input.textWriteText("\t#実タイプ\r\n"); // '#actual type' } /** diff --git a/src/plugProjectKandoU/itemRock.cpp b/src/plugProjectKandoU/itemRock.cpp index f4a29d0a0..17c3b46ff 100644 --- a/src/plugProjectKandoU/itemRock.cpp +++ b/src/plugProjectKandoU/itemRock.cpp @@ -625,7 +625,7 @@ f32 Item::getWorkRadius() Mgr::Mgr() : TNodeItemMgr() { - mItemName = "r”pƒIƒuƒWƒFƒNƒg"; // 'ruined object' + mItemName = "è’廃オブジェクト"; // 'ruined object' setModelSize(1); mObjectPathComponent = "user/Kando/objects/ojamarock"; mParms = new RockParms(); diff --git a/src/plugProjectKandoU/itemUjamushi.cpp b/src/plugProjectKandoU/itemUjamushi.cpp index 7669a59f4..b942c64f6 100644 --- a/src/plugProjectKandoU/itemUjamushi.cpp +++ b/src/plugProjectKandoU/itemUjamushi.cpp @@ -136,10 +136,10 @@ void BoidParameter::read(Stream& input) */ UjaParms::UjaParms() : Parameters(nullptr, "UjaParms") - , mDisplayScale(this, 'u001', "•\\Ž¦ƒXƒP[ƒ‹", 0.3f, 0.1f, 1.0f) // 'display scale' - , mMysteryMultiply(this, 'u002', "“ä Multiply", 1.0f, 0.0f, 200.0f) // 'mystery multiply' (lmao) - , mLife(this, 'u003', "ƒ‰ƒCƒt", 0.0f, 0.0f, 600.0f) // 'life' - , mMotionSpeed(this, 'u004', "ƒ‚[ƒVƒ‡ƒ“‘¬“x", 0.5f, 0.0f, 10.0f) // 'motion speed' + , mDisplayScale(this, 'u001', "表示スケール", 0.3f, 0.1f, 1.0f) // 'display scale' + , mMysteryMultiply(this, 'u002', "謎 Multiply", 1.0f, 0.0f, 200.0f) // 'mystery multiply' (lmao) + , mLife(this, 'u003', "ライフ", 0.0f, 0.0f, 600.0f) // 'life' + , mMotionSpeed(this, 'u004', "モーション速度", 0.5f, 0.0f, 10.0f) // 'motion speed' { } @@ -2278,7 +2278,7 @@ void Item::updateBoundSphere() mCollTree->mPart->mRadius = mBoundingSphere.mRadius; mBoundingSphere.mPosition = mPosition; if (isCollisionFlick()) { - JUT_PANICLINE(1137, "ƒ_ƒƒbƒN\n"); // 'damek' + JUT_PANICLINE(1137, "ダメック\n"); // 'damek' } } @@ -2591,7 +2591,7 @@ void Mgr::generatorWrite(Stream& output, GenItemParm* genParm) output.textWriteTab(output.mTabCount); output.writeShort(ujaParm->mCount); - output.textWriteText("\t#‚¤‚¶‚ቤ”\r\n"); // 'ujaoh number' + output.textWriteText("\t#ã†ã˜ã‚ƒçŽ‹æ•°\r\n"); // 'ujaoh number' } /** diff --git a/src/plugProjectKandoU/itemWeed.cpp b/src/plugProjectKandoU/itemWeed.cpp index e3cda5181..1a4ae467c 100644 --- a/src/plugProjectKandoU/itemWeed.cpp +++ b/src/plugProjectKandoU/itemWeed.cpp @@ -209,7 +209,7 @@ void Item::updateBoundSphere() { mCollTree->mPart->mRadius = mBoundingSphere.mRadius; mBoundingSphere.mPosition = mPosition; - JUT_ASSERTLINE(225, isCollisionFlick() == false, "ƒ_ƒƒbƒN\n"); // 'damek' + JUT_ASSERTLINE(225, isCollisionFlick() == false, "ダメック\n"); // 'damek' } /** @@ -273,7 +273,7 @@ void Item::doSimpleDraw(Viewport* viewport) { mFlockMgr->doSimpleDraw(viewport, */ Mgr::Mgr() { - mItemName = "‘‚ƬÎ"; + mItemName = "è‰ã¨å°çŸ³"; mObjectPathComponent = "user/Kando/objects/weed"; setModelSize(4); loadArchive("arc.szs"); @@ -367,10 +367,10 @@ void Mgr::generatorWrite(Stream& output, GenItemParm* genItemParm) P2ASSERTLINE(460, genWeedParm != nullptr); output.textWriteTab(output.mTabCount); output.writeShort(genWeedParm->mCount); - output.textWriteText("\t#‚¤‚¶‚ቤ”\r\n"); // 'uja-o number' + output.textWriteText("\t#ã†ã˜ã‚ƒçŽ‹æ•°\r\n"); // 'uja-o number' output.textWriteTab(output.mTabCount); output.writeShort(genWeedParm->mWeedType); - output.textWriteText("\t#΂©‘‚©\r\n"); // 'stone or grass' + output.textWriteText("\t#石ã‹è‰ã‹\r\n"); // 'stone or grass' } /** diff --git a/src/plugProjectKandoU/navi.cpp b/src/plugProjectKandoU/navi.cpp index 781e4543b..d079c7e9a 100644 --- a/src/plugProjectKandoU/navi.cpp +++ b/src/plugProjectKandoU/navi.cpp @@ -136,7 +136,7 @@ void Navi::onInit(Game::CreatureInitArg* arg) mCollTree->createFromFactory(mModel, naviMgr->mCollData, nullptr); JUT_ASSERTLINE(838, ((int)mCollTree->mPart) >= 0x80000000, - "ƒUƒ“[[iE„tEj[[ƒlƒ“\n"); // 'disappointttttt D: ?? ment' (lol) + "ザン?[?[(・д・)−−ãƒãƒ³\n"); // 'disappointttttt D: ?? ment' (lol) mCollTree->attachModel(mModel); mFsm->start(this, NSID_Walk, nullptr); diff --git a/src/plugProjectKandoU/onyonMgr.cpp b/src/plugProjectKandoU/onyonMgr.cpp index 57f372393..9070a7208 100644 --- a/src/plugProjectKandoU/onyonMgr.cpp +++ b/src/plugProjectKandoU/onyonMgr.cpp @@ -1752,7 +1752,7 @@ Vector3f Onyon::getOutStart_UFO() if (mPikiOutJoint) { return getJointPosition(mPikiOutJoint); } else { - JUT_PANICLINE(2569, "‚¾‚ß‚Å‚·"); + JUT_PANICLINE(2569, "ã ã‚ã§ã™"); return Vector3f::zero; } } diff --git a/src/plugProjectKandoU/pelletMgr.cpp b/src/plugProjectKandoU/pelletMgr.cpp index b19f077b6..b39444bb9 100644 --- a/src/plugProjectKandoU/pelletMgr.cpp +++ b/src/plugProjectKandoU/pelletMgr.cpp @@ -1727,7 +1727,7 @@ void Pellet::onSetPosition() item->setPosition(mPelletPosition, false); item->setTreasure(this); } else { - JUT_PANICLINE(2326, "‚ª‚Á‚©‚è\n"); // 'disappointed' lol + JUT_PANICLINE(2326, "ãŒã£ã‹ã‚Š\n"); // 'disappointed' lol } } } @@ -5042,7 +5042,7 @@ void PelletIterator::setFirst() */ PelletMgr::PelletMgr() { - mName = "ƒyƒŒƒbƒgƒ}ƒl[ƒWƒƒ"; // pellet manager + mName = "ペレットマãƒãƒ¼ã‚¸ãƒ£"; // pellet manager mMovieDrawDisabled = false; } @@ -5384,7 +5384,7 @@ void PelletMgr::OtakaraItemCode::write(Stream& stream) { stream.textWriteTab(stream.mTabCount); stream.writeShort(mValue); - stream.textWriteText("# ‚¨•óƒAƒCƒeƒ€ƒR[ƒh\r\n"); // 'treasure item code' + stream.textWriteText("# ãŠå®ã‚¢ã‚¤ãƒ†ãƒ ã‚³ãƒ¼ãƒ‰\r\n"); // 'treasure item code' } /** diff --git a/src/plugProjectKandoU/pikiState.cpp b/src/plugProjectKandoU/pikiState.cpp index 7cd672a5e..8e1566b7a 100644 --- a/src/plugProjectKandoU/pikiState.cpp +++ b/src/plugProjectKandoU/pikiState.cpp @@ -105,7 +105,7 @@ void PikiFSM::transit(Piki* piki, int stateID, StateArg* stateArg) if (!currentState->transittable(stateID)) { JUT_PANICLINE(701, "*Transit(%d)(%d)\n(%s)=>(%s)\n", currentState->mId, mIdToIndexArray[stateID], currentState->mName, static_cast(mStates[mIdToIndexArray[stateID]])->mName); - JUT_PANICLINE(702, "---------- ‚¾‚ß‚¾‚æ?\n"); + JUT_PANICLINE(702, "---------- ã ã‚ã ã‚ˆï½ž\n"); } } @@ -5612,7 +5612,7 @@ void PikiEmotionState::init(Piki* piki, StateArg* stateArg) } case 8: - JUT_PANICLINE(4112, "rapCnt ‚ÌŽg‚¢•û‚ª‚æ‚­‚È‚Ì‚Å“€Œ‹’†! (RAPTURE)\n"); + JUT_PANICLINE(4112, "rapCnt ã®ä½¿ã„æ–¹ãŒã‚ˆããªã®ã§å‡çµä¸­! (RAPTURE)\n"); break; } } diff --git a/src/plugProjectKandoU/singleGS_Zukan.cpp b/src/plugProjectKandoU/singleGS_Zukan.cpp index a9f4743b4..b2948cd84 100644 --- a/src/plugProjectKandoU/singleGS_Zukan.cpp +++ b/src/plugProjectKandoU/singleGS_Zukan.cpp @@ -46,7 +46,7 @@ namespace IllustratedBook { * @note Size: 0x98 */ DebugParms::DebugParms() - : CNode("}ŠÓƒfƒoƒbƒO") // "Illustrated Book Debugging" + : CNode("図鑑デãƒãƒƒã‚°") // "Illustrated Book Debugging" { mFlags.clear(); _18.set(32, 32, 10, 255); @@ -129,7 +129,7 @@ Camera::Camera(Controller* input) , mCameraShakeOffsetPos(Vector3f::zero) , mVibrationForce(1.0f, 0.0f, 0.0f) { - setName("}ŠÓƒJƒƒ‰"); // 'illustrated book camera' + setName("図鑑カメラ"); // 'illustrated book camera' move(Vector3f::zero); mCameraShakeFrequency = 0.5f; mCameraShakeBaseMagnitude = 0.5f; @@ -4819,9 +4819,9 @@ void ZukanState::dvdloadB_teki() { dvdloadB_common(); if (mCurrentEnemyIndex == Game::EnemyTypeID::EnemyID_Pelplant) { - OSReport("ƒyƒŒƒbƒg‘‚Ȃ̂ŃyƒŒƒbƒg‚ðƒ[ƒh‚µ‚Ü‚· free:%d \n", JKRGetCurrentHeap()->getFreeSize()); // "pellet grass so load pellets" + OSReport("ペレットè‰ãªã®ã§ãƒšãƒ¬ãƒƒãƒˆã‚’ロードã—ã¾ã™ free:%d \n", JKRGetCurrentHeap()->getFreeSize()); // "pellet grass so load pellets" PelletNumber::mgr->setupResources(); - OSReport("‚¾‚µ‚½ free:%d \n", JKRGetCurrentHeap()->getFreeSize()); // "started" + OSReport("ã ã—㟠free:%d \n", JKRGetCurrentHeap()->getFreeSize()); // "started" } P2ASSERTLINE(2747, !generalEnemyMgr); generalEnemyMgr = new GeneralEnemyMgr; @@ -4842,7 +4842,7 @@ void ZukanState::dvdloadB_teki() Vector3f posOffset; posOffset.set(posParms->mParms.mAppearPosX(), posParms->mParms.mAppearPosY(), posParms->mParms.mAppearPosZ()); // f30, f29, f28 - OSReport("“G‚ðƒAƒƒbƒN %d•C@free:%d \n", count, JKRGetCurrentHeap()->getFreeSize()); + OSReport("敵をアロック %d匹 free:%d \n", count, JKRGetCurrentHeap()->getFreeSize()); bool makeSpectralids = false; TekiStat::Info* info = playData->mTekiStatMgr.getTekiInfo(mCurrentEnemyIndex); if (info && info->mKilledTekiCount > 16) { diff --git a/src/plugProjectKandoU/vsGS_Game.cpp b/src/plugProjectKandoU/vsGS_Game.cpp index ee6493484..9a6a838cd 100644 --- a/src/plugProjectKandoU/vsGS_Game.cpp +++ b/src/plugProjectKandoU/vsGS_Game.cpp @@ -426,11 +426,11 @@ void GameState::checkSMenu(VsGameSection* section) return; case Screen::Game2DMgr::CHECK2D_SMenu_GoToSunset: - JUT_PANICLINE(617, "‚ ‚肦‚È‚¢‚Á‚·\n"); // 'impossible' + JUT_PANICLINE(617, "ã‚ã‚Šãˆãªã„ã£ã™\n"); // 'impossible' return; case Screen::Game2DMgr::CHECK2D_SMenu_ReturnToFileSelect: - JUT_PANICLINE(620, "‚È‚¢\n"); // 'no' + JUT_PANICLINE(620, "ãªã„\n"); // 'no' return; case Screen::Game2DMgr::CHECK2D_SMenu_QuitChallenge: diff --git a/src/plugProjectKandoU/vsGS_Result.cpp b/src/plugProjectKandoU/vsGS_Result.cpp index 4edb7a223..a81657a8e 100644 --- a/src/plugProjectKandoU/vsGS_Result.cpp +++ b/src/plugProjectKandoU/vsGS_Result.cpp @@ -113,7 +113,7 @@ void ResultState::prepareMorimuraInfo(VsGameSection* section) if (isNormalEnd()) { if (!sys->getPlayCommonData()->challenge_checkClear(stageIndex)) { int courseID = sys->getPlayCommonData()->challenge_openNewCourse(); - OSReport("——— Course %d Opened !!\n", courseID); + OSReport("ï¼ ï¼ ï¼  Course %d Opened !!\n", courseID); sys->getPlayCommonData()->challenge_setClear(stageIndex); } diff --git a/src/plugProjectKandoU/vsGS_Title.cpp b/src/plugProjectKandoU/vsGS_Title.cpp index d9418286e..fac7fb808 100644 --- a/src/plugProjectKandoU/vsGS_Title.cpp +++ b/src/plugProjectKandoU/vsGS_Title.cpp @@ -81,7 +81,7 @@ void TitleState::init(VsGameSection* section, StateArg* arg) section->mVsStageData = nullptr; } -static const char unusedVsTitleString[] = "ƒRƒ“ƒNƒŠ[ƒg"; // 'concrete' +static const char unusedVsTitleString[] = "コンクリート"; // 'concrete' /** * @note Address: 0x80228554 diff --git a/src/plugProjectKandoU/vsStageData.cpp b/src/plugProjectKandoU/vsStageData.cpp index ec0333baa..8301a3b3c 100644 --- a/src/plugProjectKandoU/vsStageData.cpp +++ b/src/plugProjectKandoU/vsStageData.cpp @@ -70,7 +70,7 @@ void StageData::read(Stream& stream) */ StageList::StageList() { - mName = "ƒ`ƒƒƒŒƒ“ƒWƒXƒe[ƒW"; // challenge stage + mName = "ãƒãƒ£ãƒ¬ãƒ³ã‚¸ã‚¹ãƒ†ãƒ¼ã‚¸"; // challenge stage } /** @@ -162,7 +162,7 @@ void StageData::read(Stream& stream) */ StageList::StageList() { - mName = "‘Îí—pƒXƒe[ƒW"; // battle stage + mName = "対戦用ステージ"; // battle stage } /** diff --git a/src/plugProjectKonoU/khFinalFloor.cpp b/src/plugProjectKonoU/khFinalFloor.cpp index 440f05833..ee817fb0d 100644 --- a/src/plugProjectKonoU/khFinalFloor.cpp +++ b/src/plugProjectKonoU/khFinalFloor.cpp @@ -8,7 +8,10 @@ #include "Screen/Game2DMgr.h" #include "JSystem/J2D/J2DAnmLoader.h" -static const char unused[] = "\0\0\0\0\0\0\0\0"; +static void strippedFunc() +{ + OSReport("\0\0\0\0\0\0\0\0\0\0\0"); +} namespace kh { namespace Screen { diff --git a/src/plugProjectMorimuraU/blackManMgr.cpp b/src/plugProjectMorimuraU/blackManMgr.cpp index 64f5414dc..ab82d0f8e 100644 --- a/src/plugProjectMorimuraU/blackManMgr.cpp +++ b/src/plugProjectMorimuraU/blackManMgr.cpp @@ -15,7 +15,7 @@ static const char blackManMgrName[] = "blackManMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "•‚¢lƒ}ƒl[ƒWƒƒ"; // black man manager + mName = "é»’ã„人マãƒãƒ¼ã‚¸ãƒ£"; // black man manager } /** diff --git a/src/plugProjectMorimuraU/bombMgr.cpp b/src/plugProjectMorimuraU/bombMgr.cpp index 41dde46c1..946abd63b 100644 --- a/src/plugProjectMorimuraU/bombMgr.cpp +++ b/src/plugProjectMorimuraU/bombMgr.cpp @@ -10,7 +10,7 @@ namespace Bomb { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "”š’eƒ}ƒl[ƒWƒƒ"; // bomb manager + mName = "爆弾マãƒãƒ¼ã‚¸ãƒ£"; // bomb manager } /** diff --git a/src/plugProjectMorimuraU/eggMgr.cpp b/src/plugProjectMorimuraU/eggMgr.cpp index b74a9c79c..ea1855ac4 100644 --- a/src/plugProjectMorimuraU/eggMgr.cpp +++ b/src/plugProjectMorimuraU/eggMgr.cpp @@ -10,7 +10,7 @@ namespace Egg { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ^ƒ}ƒSƒ}ƒl[ƒWƒƒ"; // egg manager + mName = "タマゴマãƒãƒ¼ã‚¸ãƒ£"; // egg manager } /** diff --git a/src/plugProjectMorimuraU/enemyNestMgr.cpp b/src/plugProjectMorimuraU/enemyNestMgr.cpp index 4bc2dc8bb..cf7405285 100644 --- a/src/plugProjectMorimuraU/enemyNestMgr.cpp +++ b/src/plugProjectMorimuraU/enemyNestMgr.cpp @@ -18,7 +18,7 @@ Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { mJigumoHouseData = nullptr; - mName = "‘ƒƒ}ƒl[ƒWƒƒ"; // 'nest manager' + mName = "巣マãƒãƒ¼ã‚¸ãƒ£"; // 'nest manager' mMatColor.a = 0xFF; mMatColor.b = 0xFF; mMatColor.g = 0xFF; diff --git a/src/plugProjectMorimuraU/jigumoMgr.cpp b/src/plugProjectMorimuraU/jigumoMgr.cpp index 255362d31..f91f059bd 100644 --- a/src/plugProjectMorimuraU/jigumoMgr.cpp +++ b/src/plugProjectMorimuraU/jigumoMgr.cpp @@ -12,7 +12,7 @@ static const char jigumoMgrName[] = "jigumoMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒWƒOƒ‚ƒ}ƒl[ƒWƒƒ"; // jigumo manager + mName = "ジグモマãƒãƒ¼ã‚¸ãƒ£"; // jigumo manager } /** diff --git a/src/plugProjectMorimuraU/kingChappyMgr.cpp b/src/plugProjectMorimuraU/kingChappyMgr.cpp index a60623332..55f089825 100644 --- a/src/plugProjectMorimuraU/kingChappyMgr.cpp +++ b/src/plugProjectMorimuraU/kingChappyMgr.cpp @@ -15,7 +15,7 @@ static const char kingChappyMgrName[] = "kingChappyMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒLƒ“ƒOƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ["; // king chappy manager + mName = "キングãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£ãƒ¼"; // king chappy manager } /** diff --git a/src/plugProjectMorimuraU/miulinMgr.cpp b/src/plugProjectMorimuraU/miulinMgr.cpp index 702cbf1f4..a064da01d 100644 --- a/src/plugProjectMorimuraU/miulinMgr.cpp +++ b/src/plugProjectMorimuraU/miulinMgr.cpp @@ -12,7 +12,7 @@ static const char miulinMgrName[] = "miulinMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ~ƒEƒŠƒ“ƒ}ƒl[ƒWƒƒ"; // miulin manager + mName = "ミウリンマãƒãƒ¼ã‚¸ãƒ£"; // miulin manager } /** diff --git a/src/plugProjectMorimuraU/panModokiMgr.cpp b/src/plugProjectMorimuraU/panModokiMgr.cpp index ec4e536e9..df0346f81 100644 --- a/src/plugProjectMorimuraU/panModokiMgr.cpp +++ b/src/plugProjectMorimuraU/panModokiMgr.cpp @@ -14,7 +14,7 @@ namespace PanModoki { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒpƒ“ƒ‚ƒhƒLƒ}ƒl[ƒWƒƒ"; // bread manager + mName = "パンモドキマãƒãƒ¼ã‚¸ãƒ£"; // bread manager } /** @@ -39,7 +39,7 @@ namespace OoPanModoki { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "‘åƒpƒ“ƒ‚ƒhƒLƒ}ƒl[ƒWƒƒ"; // big bread manager + mName = "大パンモドキマãƒãƒ¼ã‚¸ãƒ£"; // big bread manager } /** diff --git a/src/plugProjectMorimuraU/plantsMgr.cpp b/src/plugProjectMorimuraU/plantsMgr.cpp index 23a17591e..f0297e072 100644 --- a/src/plugProjectMorimuraU/plantsMgr.cpp +++ b/src/plugProjectMorimuraU/plantsMgr.cpp @@ -8,7 +8,7 @@ namespace Game { Tanpopo::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ƒ^ƒ“ƒ|ƒ|ƒ}ƒl[ƒWƒƒ"; // dandelion manager + mName = "タンãƒãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // dandelion manager } /** @@ -30,7 +30,7 @@ EnemyBase* Tanpopo::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase::b Clover::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ƒNƒ[ƒo[ƒ}ƒl[ƒWƒƒ"; // clover manager + mName = "クローãƒãƒ¼ãƒžãƒãƒ¼ã‚¸ãƒ£"; // clover manager } /** @@ -52,7 +52,7 @@ EnemyBase* Clover::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase::bi HikariKinoko::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ƒqƒJƒŠƒLƒmƒRƒ}ƒl[ƒWƒƒ"; // hikari mushroom manager + mName = "ヒカリキノコマãƒãƒ¼ã‚¸ãƒ£"; // hikari mushroom manager } /** @@ -74,7 +74,7 @@ EnemyBase* HikariKinoko::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBa Ooinu_s::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "‚¨‚¨‚¢‚Ê‚Ó‚®‚èi¬jƒ}ƒl[ƒWƒƒ"; // oinu fuguri (small) manager + mName = "ãŠãŠã„ã¬ãµãり(å°ï¼‰ãƒžãƒãƒ¼ã‚¸ãƒ£"; // oinu fuguri (small) manager } /** @@ -96,7 +96,7 @@ EnemyBase* Ooinu_s::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase::b KareOoinu_s::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ŒÍ‚ꂨ‚¨‚¢‚Ê‚Ó‚®‚èi¬jƒ}ƒl[ƒWƒƒ"; // withered dog fuguri (small) manager + mName = "枯れãŠãŠã„ã¬ãµãり(å°ï¼‰ãƒžãƒãƒ¼ã‚¸ãƒ£"; // withered dog fuguri (small) manager } /** @@ -118,7 +118,7 @@ EnemyBase* KareOoinu_s::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBas Ooinu_l::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "‚¨‚¨‚¢‚Ê‚Ó‚®‚èi‘åjƒ}ƒl[ƒWƒƒ"; // big dog fuguri (large) manager + mName = "ãŠãŠã„ã¬ãµãり(大)マãƒãƒ¼ã‚¸ãƒ£"; // big dog fuguri (large) manager } /** @@ -140,7 +140,7 @@ EnemyBase* Ooinu_l::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase::b KareOoinu_l::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ŒÍ‚ꂨ‚¨‚¢‚Ê‚Ó‚®‚èi‘åjƒ}ƒl[ƒWƒƒ"; // withered dog fuguri (large) manager + mName = "枯れãŠãŠã„ã¬ãµãり(大)マãƒãƒ¼ã‚¸ãƒ£"; // withered dog fuguri (large) manager } /** @@ -162,7 +162,7 @@ EnemyBase* KareOoinu_l::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBas Wakame_s::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "Žá‰èi¬jƒ}ƒl[ƒWƒƒ"; // sprout (small) manager + mName = "若芽(å°ï¼‰ãƒžãƒãƒ¼ã‚¸ãƒ£"; // sprout (small) manager } /** @@ -184,7 +184,7 @@ EnemyBase* Wakame_s::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase:: Wakame_l::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "Žá‰èi‘åjƒ}ƒl[ƒWƒƒ"; // sprout (large) manager + mName = "若芽(大)マãƒãƒ¼ã‚¸ãƒ£"; // sprout (large) manager } /** @@ -206,7 +206,7 @@ EnemyBase* Wakame_l::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase:: Tukushi::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "‚‚­‚µƒ}ƒl[ƒWƒƒ"; // tsukushi manager + mName = "ã¤ãã—マãƒãƒ¼ã‚¸ãƒ£"; // tsukushi manager } /** @@ -228,7 +228,7 @@ EnemyBase* Tukushi::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase::b Watage::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "–Ȗу}ƒl[ƒWƒƒ"; // fluff manager + mName = "綿毛マãƒãƒ¼ã‚¸ãƒ£"; // fluff manager } /** @@ -250,7 +250,7 @@ EnemyBase* Watage::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase::bi DiodeRed::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "Ôƒ_ƒCƒI[ƒhƒ}ƒl[ƒWƒƒ"; // red diode manager + mName = "赤ダイオードマãƒãƒ¼ã‚¸ãƒ£"; // red diode manager } /** @@ -272,7 +272,7 @@ EnemyBase* DiodeRed::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase:: DiodeGreen::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ƒ_ƒCƒI[ƒhƒ}ƒl[ƒWƒƒ"; // blue diode manager + mName = "é’ダイオードマãƒãƒ¼ã‚¸ãƒ£"; // blue diode manager } /** @@ -294,7 +294,7 @@ EnemyBase* DiodeGreen::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase Margaret::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ƒ}[ƒKƒŒƒbƒgƒ}ƒl[ƒWƒƒ"; // margaret manager + mName = "マーガレットマãƒãƒ¼ã‚¸ãƒ£"; // margaret manager } /** @@ -316,7 +316,7 @@ EnemyBase* Margaret::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase:: Nekojarashi::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "‚Ë‚±‚¶‚á‚炵ƒ}ƒl[ƒWƒƒ"; // nekojyarashi manager + mName = "ã­ã“ã˜ã‚ƒã‚‰ã—マãƒãƒ¼ã‚¸ãƒ£"; // nekojyarashi manager } /** @@ -338,7 +338,7 @@ EnemyBase* Nekojarashi::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBas Chiyogami::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ç‘㎆ƒ}ƒl[ƒWƒƒ"; // chiyogami manager + mName = "åƒä»£ç´™ãƒžãƒãƒ¼ã‚¸ãƒ£"; // chiyogami manager } /** @@ -360,7 +360,7 @@ EnemyBase* Chiyogami::Mgr::birth(EnemyBirthArg& birthArg) { return EnemyMgrBase: Zenmai::Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "‚º‚ñ‚Ü‚¢ƒ}ƒl[ƒWƒƒ"; // mainspring manager + mName = "ãœã‚“ã¾ã„マãƒãƒ¼ã‚¸ãƒ£"; // mainspring manager } /** diff --git a/src/plugProjectMorimuraU/shijimiChouMgr.cpp b/src/plugProjectMorimuraU/shijimiChouMgr.cpp index 04cbb06f5..9bf76c0f4 100644 --- a/src/plugProjectMorimuraU/shijimiChouMgr.cpp +++ b/src/plugProjectMorimuraU/shijimiChouMgr.cpp @@ -16,7 +16,7 @@ Mgr::Mgr(int objLimit, u8 modelType) { mUpdateMgr = nullptr; mGroupLeader = nullptr; - mName = "ƒVƒWƒ~’±ƒ}ƒl[ƒWƒƒ"; // clam butterfly manager + mName = "シジミè¶ãƒžãƒãƒ¼ã‚¸ãƒ£"; // clam butterfly manager } /** diff --git a/src/plugProjectMorimuraU/tamagoMushiMgr.cpp b/src/plugProjectMorimuraU/tamagoMushiMgr.cpp index 648abaec1..5136a3611 100644 --- a/src/plugProjectMorimuraU/tamagoMushiMgr.cpp +++ b/src/plugProjectMorimuraU/tamagoMushiMgr.cpp @@ -14,7 +14,7 @@ static const char tamagoMushiMgrName[] = "tamagoMushiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ^ƒ}ƒSƒ€ƒVƒ}ƒl[ƒWƒƒ"; // egg bug manager + mName = "タマゴムシマãƒãƒ¼ã‚¸ãƒ£"; // egg bug manager } /** diff --git a/src/plugProjectMorimuraU/tyreMgr.cpp b/src/plugProjectMorimuraU/tyreMgr.cpp index d59208f3c..0c957ac56 100644 --- a/src/plugProjectMorimuraU/tyreMgr.cpp +++ b/src/plugProjectMorimuraU/tyreMgr.cpp @@ -10,7 +10,7 @@ namespace Tyre { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ^ƒCƒ„ƒ}ƒl[ƒWƒƒ"; // tire manager + mName = "タイヤマãƒãƒ¼ã‚¸ãƒ£"; // tire manager } /** diff --git a/src/plugProjectMorimuraU/umiMushiMgr.cpp b/src/plugProjectMorimuraU/umiMushiMgr.cpp index cc9a5e837..44813ec23 100644 --- a/src/plugProjectMorimuraU/umiMushiMgr.cpp +++ b/src/plugProjectMorimuraU/umiMushiMgr.cpp @@ -14,7 +14,7 @@ static const char umiMushiMgrName[] = "umiMushiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒEƒ~ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // sea worm manager + mName = "ウミムシマãƒãƒ¼ã‚¸ãƒ£"; // sea worm manager } /** diff --git a/src/plugProjectNishimuraU/ArmorMgr.cpp b/src/plugProjectNishimuraU/ArmorMgr.cpp index 8bd91a0e5..4e4dd750d 100644 --- a/src/plugProjectNishimuraU/ArmorMgr.cpp +++ b/src/plugProjectNishimuraU/ArmorMgr.cpp @@ -12,7 +12,7 @@ static const char armorMgrName[] = "246-ArmorMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒˆƒƒCƒ€ƒVƒ}ƒl[ƒWƒƒ"; // worm manager + mName = "ヨロイムシマãƒãƒ¼ã‚¸ãƒ£"; // worm manager } /** diff --git a/src/plugProjectNishimuraU/BabyMgr.cpp b/src/plugProjectNishimuraU/BabyMgr.cpp index 09cb258d4..f57bdb106 100644 --- a/src/plugProjectNishimuraU/BabyMgr.cpp +++ b/src/plugProjectNishimuraU/BabyMgr.cpp @@ -12,7 +12,7 @@ static const char babyMgrName[] = "246-BabyMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒxƒr[ƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // baby chappy manager + mName = "ベビーãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // baby chappy manager } /** diff --git a/src/plugProjectNishimuraU/BigFootMgr.cpp b/src/plugProjectNishimuraU/BigFootMgr.cpp index a782bc7c1..45fcc8cc5 100644 --- a/src/plugProjectNishimuraU/BigFootMgr.cpp +++ b/src/plugProjectNishimuraU/BigFootMgr.cpp @@ -19,7 +19,7 @@ static const char* cMatAnimBrkTexName = "/enemy/data/BigFoot/ooashi_model.brk"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒIƒIƒAƒVƒ}ƒl[ƒWƒƒ"; // big foot manager + mName = "オオアシマãƒãƒ¼ã‚¸ãƒ£"; // big foot manager } /** diff --git a/src/plugProjectNishimuraU/BigTreasureMgr.cpp b/src/plugProjectNishimuraU/BigTreasureMgr.cpp index ab3a1c330..b6f89b18f 100644 --- a/src/plugProjectNishimuraU/BigTreasureMgr.cpp +++ b/src/plugProjectNishimuraU/BigTreasureMgr.cpp @@ -20,7 +20,7 @@ static const char cMatAnimBrkTexName[] = "/enemy/data/BigTreasure/oootakara_mode Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒIƒIƒIƒ^ƒJƒ‰ƒ}ƒl[ƒWƒƒ"; // big otakara manager + mName = "オオオタカラマãƒãƒ¼ã‚¸ãƒ£"; // big otakara manager char* treasures[] = { "elec", "fire", "gas", "water", "loozy" }; int treasureCount = sizeof(treasures) / sizeof(char*); diff --git a/src/plugProjectNishimuraU/BombOtakaraMgr.cpp b/src/plugProjectNishimuraU/BombOtakaraMgr.cpp index 28d997183..2d005faff 100644 --- a/src/plugProjectNishimuraU/BombOtakaraMgr.cpp +++ b/src/plugProjectNishimuraU/BombOtakaraMgr.cpp @@ -15,7 +15,7 @@ static const char* cOtakaraChangeTexName = "/enemy/data/BombOtakara/otakara_bomb Mgr::Mgr(int objLimit, u8 modelType) : OtakaraBase::Mgr(objLimit, modelType) { - mName = "ƒoƒNƒ_ƒ“ƒIƒ^ƒJƒ‰ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // starburst otakara manager + mName = "ãƒã‚¯ãƒ€ãƒ³ã‚ªã‚¿ã‚«ãƒ©ãƒ ã‚·ãƒžãƒãƒ¼ã‚¸ãƒ£"; // starburst otakara manager } /** diff --git a/src/plugProjectNishimuraU/BombSaraiMgr.cpp b/src/plugProjectNishimuraU/BombSaraiMgr.cpp index 2bbf0ec3b..5c93f29a0 100644 --- a/src/plugProjectNishimuraU/BombSaraiMgr.cpp +++ b/src/plugProjectNishimuraU/BombSaraiMgr.cpp @@ -12,7 +12,7 @@ static const char bombSaraiMgrName[] = "246-BombSaraiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒoƒNƒ_ƒ“ƒTƒ‰ƒCƒ}ƒl[ƒWƒƒ"; // bakudan sarai manager + mName = "ãƒã‚¯ãƒ€ãƒ³ã‚µãƒ©ã‚¤ãƒžãƒãƒ¼ã‚¸ãƒ£"; // bakudan sarai manager } /** diff --git a/src/plugProjectNishimuraU/CatfishMgr.cpp b/src/plugProjectNishimuraU/CatfishMgr.cpp index 507cd7f3a..37bedab57 100644 --- a/src/plugProjectNishimuraU/CatfishMgr.cpp +++ b/src/plugProjectNishimuraU/CatfishMgr.cpp @@ -11,7 +11,7 @@ namespace Catfish { Mgr::Mgr(int p1, u8 p2) : EnemyMgrBase(p1, p2) { - mName = "ƒiƒ}ƒYƒ}ƒl[ƒWƒƒ"; // catfish manager + mName = "ナマズマãƒãƒ¼ã‚¸ãƒ£"; // catfish manager } /** diff --git a/src/plugProjectNishimuraU/DamagumoMgr.cpp b/src/plugProjectNishimuraU/DamagumoMgr.cpp index af5185fbc..602fe4967 100644 --- a/src/plugProjectNishimuraU/DamagumoMgr.cpp +++ b/src/plugProjectNishimuraU/DamagumoMgr.cpp @@ -20,7 +20,7 @@ static const char* cMatAnimBrkTexName = "/enemy/data/Damagumo/damagumo_model.brk Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ_ƒ}ƒOƒ‚ƒ}ƒl[ƒWƒƒ"; // damagumo manager + mName = "ダマグモマãƒãƒ¼ã‚¸ãƒ£"; // damagumo manager } /** diff --git a/src/plugProjectNishimuraU/DangoMushiMgr.cpp b/src/plugProjectNishimuraU/DangoMushiMgr.cpp index 5164280a6..1e0d90bc0 100644 --- a/src/plugProjectNishimuraU/DangoMushiMgr.cpp +++ b/src/plugProjectNishimuraU/DangoMushiMgr.cpp @@ -20,7 +20,7 @@ static const char* cMatAnimBrkTexName = "/enemy/data/DangoMushi/dangomushi.brk"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ_ƒ“ƒSƒ€ƒVƒ}ƒl[ƒWƒƒ"; // pill bug manager + mName = "ダンゴムシマãƒãƒ¼ã‚¸ãƒ£"; // pill bug manager } /** diff --git a/src/plugProjectNishimuraU/DemonMgr.cpp b/src/plugProjectNishimuraU/DemonMgr.cpp index c510b81b1..89c3e14e6 100644 --- a/src/plugProjectNishimuraU/DemonMgr.cpp +++ b/src/plugProjectNishimuraU/DemonMgr.cpp @@ -10,7 +10,7 @@ namespace Demon { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒIƒjƒTƒ‰ƒCƒ}ƒl[ƒWƒƒ"; // onisarai manager + mName = "オニサライマãƒãƒ¼ã‚¸ãƒ£"; // onisarai manager } /** diff --git a/src/plugProjectNishimuraU/ElecBugMgr.cpp b/src/plugProjectNishimuraU/ElecBugMgr.cpp index 8f9a31548..d26408975 100644 --- a/src/plugProjectNishimuraU/ElecBugMgr.cpp +++ b/src/plugProjectNishimuraU/ElecBugMgr.cpp @@ -12,7 +12,7 @@ static const char elecBugMgrName[] = "246-ElecBugMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒfƒ“ƒLƒ€ƒVƒ}ƒl[ƒWƒƒ"; // electric beetle manager + mName = "デンキムシマãƒãƒ¼ã‚¸ãƒ£"; // electric beetle manager } /** diff --git a/src/plugProjectNishimuraU/ElecHibaMgr.cpp b/src/plugProjectNishimuraU/ElecHibaMgr.cpp index 94ea94d27..122b69a1f 100644 --- a/src/plugProjectNishimuraU/ElecHibaMgr.cpp +++ b/src/plugProjectNishimuraU/ElecHibaMgr.cpp @@ -10,7 +10,7 @@ static const char elecHibaMgrName[] = "246-ElecHibaMgr"; * @note Size: 0x8C */ Generator::Generator() - : EnemyGeneratorBase("“dŒ‚ƒqƒoƒWƒFƒlƒŒ[ƒ^") // electric hiba generator + : EnemyGeneratorBase("電撃ヒãƒã‚¸ã‚§ãƒãƒ¬ãƒ¼ã‚¿") // electric hiba generator , mDistance(100.0f) { } @@ -65,7 +65,7 @@ void Generator::doReadOldVersion(Stream&) { } Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "“dŒ‚ƒqƒoƒ}ƒl[ƒWƒƒ"; // electric hiba manager + mName = "電撃ヒãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // electric hiba manager } /** diff --git a/src/plugProjectNishimuraU/ElecOtakaraMgr.cpp b/src/plugProjectNishimuraU/ElecOtakaraMgr.cpp index 364aade43..b65871005 100644 --- a/src/plugProjectNishimuraU/ElecOtakaraMgr.cpp +++ b/src/plugProjectNishimuraU/ElecOtakaraMgr.cpp @@ -15,7 +15,7 @@ static const char* cOtakaraChangeTexName = "/enemy/data/ElecOtakara/otakara_yell Mgr::Mgr(int objLimit, u8 modelType) : OtakaraBase::Mgr(objLimit, modelType) { - mName = "“d‹CƒIƒ^ƒJƒ‰ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // electric otakara manager + mName = "電気オタカラムシマãƒãƒ¼ã‚¸ãƒ£"; // electric otakara manager } /** diff --git a/src/plugProjectNishimuraU/FartMgr.cpp b/src/plugProjectNishimuraU/FartMgr.cpp index c4fb72e74..ac5720e39 100644 --- a/src/plugProjectNishimuraU/FartMgr.cpp +++ b/src/plugProjectNishimuraU/FartMgr.cpp @@ -15,7 +15,7 @@ static const char* cKoganeChangeTexName = "/enemy/data/Fart/babakogane_s3tc.bti" Mgr::Mgr(int objLimit, u8 modelType) : Kogane::Mgr(objLimit, modelType) { - mName = "ƒoƒoƒRƒKƒlƒ}ƒl[ƒWƒƒ"; // baba kogane manager + mName = "ãƒãƒã‚³ã‚¬ãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // baba kogane manager } /** diff --git a/src/plugProjectNishimuraU/FireChappyMgr.cpp b/src/plugProjectNishimuraU/FireChappyMgr.cpp index dddd1dca7..fc6aeb706 100644 --- a/src/plugProjectNishimuraU/FireChappyMgr.cpp +++ b/src/plugProjectNishimuraU/FireChappyMgr.cpp @@ -18,7 +18,7 @@ static const char* cMatAnimBrkTexName = "/enemy/data/FireChappy/yakichappy.brk"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ„ƒLƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // yaki chappy manager + mName = "ヤキãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // yaki chappy manager } /** diff --git a/src/plugProjectNishimuraU/FireOtakaraMgr.cpp b/src/plugProjectNishimuraU/FireOtakaraMgr.cpp index 905901284..e95e1e979 100644 --- a/src/plugProjectNishimuraU/FireOtakaraMgr.cpp +++ b/src/plugProjectNishimuraU/FireOtakaraMgr.cpp @@ -17,7 +17,7 @@ static const char* cOtakaraChangeTexName = "/enemy/data/FireOtakara/otakara_red_ Mgr::Mgr(int objLimit, u8 modelType) : OtakaraBase::Mgr(objLimit, modelType) { - mName = "‰ÎƒIƒ^ƒJƒ‰ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // fire otakara manager + mName = "ç«ã‚ªã‚¿ã‚«ãƒ©ãƒ ã‚·ãƒžãƒãƒ¼ã‚¸ãƒ£"; // fire otakara manager } /** diff --git a/src/plugProjectNishimuraU/FixKabutoMgr.cpp b/src/plugProjectNishimuraU/FixKabutoMgr.cpp index 535036a47..2468cb4cf 100644 --- a/src/plugProjectNishimuraU/FixKabutoMgr.cpp +++ b/src/plugProjectNishimuraU/FixKabutoMgr.cpp @@ -16,7 +16,7 @@ char* cKabutoChangeTexName = "/enemy/data/Kabuto/babykabuto_green_s3tc.bti"; Mgr::Mgr(int p1, u8 p2) : Kabuto::Mgr(p1, p2) { - mName = "ŒÅ’èƒJƒuƒgƒ}ƒl[ƒWƒƒ"; // fixed beetle manager + mName = "固定カブトマãƒãƒ¼ã‚¸ãƒ£"; // fixed beetle manager } /** diff --git a/src/plugProjectNishimuraU/FixMiniHoudaiMgr.cpp b/src/plugProjectNishimuraU/FixMiniHoudaiMgr.cpp index 1c9e624f2..b10174e59 100644 --- a/src/plugProjectNishimuraU/FixMiniHoudaiMgr.cpp +++ b/src/plugProjectNishimuraU/FixMiniHoudaiMgr.cpp @@ -10,7 +10,7 @@ namespace FixMiniHoudai { Mgr::Mgr(int objLimit, u8 modelType) : MiniHoudai::Mgr(objLimit, modelType) { - mName = "ŒÅ’èƒ`ƒrƒzƒEƒ_ƒCƒ}ƒl[ƒWƒƒ"; // fixed little houdai manager + mName = "固定ãƒãƒ“ホウダイマãƒãƒ¼ã‚¸ãƒ£"; // fixed little houdai manager } /** diff --git a/src/plugProjectNishimuraU/FrogMgr.cpp b/src/plugProjectNishimuraU/FrogMgr.cpp index 9e3806949..a018e1c58 100644 --- a/src/plugProjectNishimuraU/FrogMgr.cpp +++ b/src/plugProjectNishimuraU/FrogMgr.cpp @@ -12,7 +12,7 @@ static const char frogMgrName[] = "246-FrogMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒCƒ‚ƒKƒGƒ‹ƒ}ƒl[ƒWƒƒ"; // tree frog manager + mName = "イモガエルマãƒãƒ¼ã‚¸ãƒ£"; // tree frog manager } /** diff --git a/src/plugProjectNishimuraU/FtankMgr.cpp b/src/plugProjectNishimuraU/FtankMgr.cpp index 29d7c5189..6714a29f9 100644 --- a/src/plugProjectNishimuraU/FtankMgr.cpp +++ b/src/plugProjectNishimuraU/FtankMgr.cpp @@ -15,7 +15,7 @@ static const char* cTankChangeTexName = "/enemy/data/Tank/fire_butadokkuri_main_ Mgr::Mgr(int objLimit, u8 modelType) : Tank::Mgr(objLimit, modelType) { - mName = "ƒuƒ^ƒhƒbƒNƒŠƒ}ƒl[ƒWƒƒ"; // pig dog manager + mName = "ブタドックリマãƒãƒ¼ã‚¸ãƒ£"; // pig dog manager } /** diff --git a/src/plugProjectNishimuraU/FuefukiMgr.cpp b/src/plugProjectNishimuraU/FuefukiMgr.cpp index d22ab35a5..7a9d21c12 100644 --- a/src/plugProjectNishimuraU/FuefukiMgr.cpp +++ b/src/plugProjectNishimuraU/FuefukiMgr.cpp @@ -12,7 +12,7 @@ static const char fuefukiMgrName[] = "246-FuefukiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒtƒGƒtƒLƒ€ƒVƒ}ƒl[ƒWƒƒ"; // flute player manager + mName = "フエフキムシマãƒãƒ¼ã‚¸ãƒ£"; // flute player manager } /** diff --git a/src/plugProjectNishimuraU/GasHibaMgr.cpp b/src/plugProjectNishimuraU/GasHibaMgr.cpp index c6609a126..bd49d18ff 100644 --- a/src/plugProjectNishimuraU/GasHibaMgr.cpp +++ b/src/plugProjectNishimuraU/GasHibaMgr.cpp @@ -12,7 +12,7 @@ static const char gasHibaMgrName[] = "246-GasHibaMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ƒKƒXƒqƒoƒ}ƒl[ƒWƒƒ"; // gas hiba manager + mName = "ガスヒãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // gas hiba manager } /** diff --git a/src/plugProjectNishimuraU/GasOtakaraMgr.cpp b/src/plugProjectNishimuraU/GasOtakaraMgr.cpp index df5cf9792..a1ba35786 100644 --- a/src/plugProjectNishimuraU/GasOtakaraMgr.cpp +++ b/src/plugProjectNishimuraU/GasOtakaraMgr.cpp @@ -15,7 +15,7 @@ static const char* cOtakaraChangeTexName = "/enemy/data/GasOtakara/otakara_purpl Mgr::Mgr(int objLimit, u8 modelType) : OtakaraBase::Mgr(objLimit, modelType) { - mName = "ƒKƒXƒIƒ^ƒJƒ‰ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // gas otakara manager + mName = "ガスオタカラムシマãƒãƒ¼ã‚¸ãƒ£"; // gas otakara manager } /** diff --git a/src/plugProjectNishimuraU/GreenKabutoMgr.cpp b/src/plugProjectNishimuraU/GreenKabutoMgr.cpp index d42368ee4..f5d5cdb93 100644 --- a/src/plugProjectNishimuraU/GreenKabutoMgr.cpp +++ b/src/plugProjectNishimuraU/GreenKabutoMgr.cpp @@ -16,7 +16,7 @@ char* cKabutoChangeTexName = "/enemy/data/Kabuto/babykabuto_green_s3tc.bti"; Mgr::Mgr(int p1, u8 p2) : Kabuto::Mgr(p1, p2) { - mName = "ƒOƒŠ[ƒ“ƒJƒuƒgƒ}ƒl[ƒWƒƒ"; // green beetle manager + mName = "グリーンカブトマãƒãƒ¼ã‚¸ãƒ£"; // green beetle manager } /** diff --git a/src/plugProjectNishimuraU/HanaMgr.cpp b/src/plugProjectNishimuraU/HanaMgr.cpp index bf1bc2acd..27a803872 100644 --- a/src/plugProjectNishimuraU/HanaMgr.cpp +++ b/src/plugProjectNishimuraU/HanaMgr.cpp @@ -10,7 +10,7 @@ namespace Hana { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒnƒiƒhƒbƒNƒŠƒ}ƒl[ƒWƒƒ"; // hanadokkuri manager + mName = "ãƒãƒŠãƒ‰ãƒƒã‚¯ãƒªãƒžãƒãƒ¼ã‚¸ãƒ£"; // hanadokkuri manager } /** diff --git a/src/plugProjectNishimuraU/HanachirashiMgr.cpp b/src/plugProjectNishimuraU/HanachirashiMgr.cpp index 85a005190..2b2fa188b 100644 --- a/src/plugProjectNishimuraU/HanachirashiMgr.cpp +++ b/src/plugProjectNishimuraU/HanachirashiMgr.cpp @@ -19,7 +19,7 @@ static const char* cMatAnimBrkTexName = "/enemy/data/Hanachirashi/hanachirashi_m Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒtƒEƒZƒ“ƒnƒiƒ`ƒ‰ƒVƒ}ƒl[ƒWƒƒ"; // blossom-scattering blimp manager + mName = "フウセンãƒãƒŠãƒãƒ©ã‚·ãƒžãƒãƒ¼ã‚¸ãƒ£"; // blossom-scattering blimp manager } /** diff --git a/src/plugProjectNishimuraU/HibaMgr.cpp b/src/plugProjectNishimuraU/HibaMgr.cpp index 6a04bf926..bbd39a4b0 100644 --- a/src/plugProjectNishimuraU/HibaMgr.cpp +++ b/src/plugProjectNishimuraU/HibaMgr.cpp @@ -12,7 +12,7 @@ static const char hibaMgrName[] = "246-HibaMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBaseAlwaysMovieActor(objLimit, modelType) { - mName = "ƒqƒoƒ}ƒl[ƒWƒƒ"; // hiba manager + mName = "ヒãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // hiba manager } /** diff --git a/src/plugProjectNishimuraU/HoudaiMgr.cpp b/src/plugProjectNishimuraU/HoudaiMgr.cpp index e59f9785d..3b6fd94f9 100644 --- a/src/plugProjectNishimuraU/HoudaiMgr.cpp +++ b/src/plugProjectNishimuraU/HoudaiMgr.cpp @@ -20,7 +20,7 @@ static const char* cMatAnimBrkTexName = "/enemy/data/Houdai/houdai_model.brk"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒzƒEƒ_ƒCƒ}ƒl[ƒWƒƒ"; // houdai manager + mName = "ホウダイマãƒãƒ¼ã‚¸ãƒ£"; // houdai manager } /** diff --git a/src/plugProjectNishimuraU/ImomushiMgr.cpp b/src/plugProjectNishimuraU/ImomushiMgr.cpp index 684aca5e4..ebc139d31 100644 --- a/src/plugProjectNishimuraU/ImomushiMgr.cpp +++ b/src/plugProjectNishimuraU/ImomushiMgr.cpp @@ -12,7 +12,7 @@ static const char imomushiMgrName[] = "246-ImomushiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒCƒ‚ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // caterpillar manager + mName = "イモムシマãƒãƒ¼ã‚¸ãƒ£"; // caterpillar manager } /** diff --git a/src/plugProjectNishimuraU/KabutoMgr.cpp b/src/plugProjectNishimuraU/KabutoMgr.cpp index a8fa3951d..90435a72a 100644 --- a/src/plugProjectNishimuraU/KabutoMgr.cpp +++ b/src/plugProjectNishimuraU/KabutoMgr.cpp @@ -16,7 +16,7 @@ const char filename[] = "246-KabutoMgr"; Mgr::Mgr(int p1, u8 p2) : EnemyMgrBase(p1, p2) { - mName = "ƒJƒuƒgƒ}ƒl[ƒWƒƒ"; // beetle manager + mName = "カブトマãƒãƒ¼ã‚¸ãƒ£"; // beetle manager } /** diff --git a/src/plugProjectNishimuraU/KoganeMgr.cpp b/src/plugProjectNishimuraU/KoganeMgr.cpp index 2c7dc3243..06d0914f0 100644 --- a/src/plugProjectNishimuraU/KoganeMgr.cpp +++ b/src/plugProjectNishimuraU/KoganeMgr.cpp @@ -12,7 +12,7 @@ namespace Kogane { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒRƒKƒlƒ}ƒl[ƒWƒƒ"; // kogane manager + mName = "コガãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // kogane manager } /** diff --git a/src/plugProjectNishimuraU/KoganemushiMgr.cpp b/src/plugProjectNishimuraU/KoganemushiMgr.cpp index 505e72a79..2d2b9a8d7 100644 --- a/src/plugProjectNishimuraU/KoganemushiMgr.cpp +++ b/src/plugProjectNishimuraU/KoganemushiMgr.cpp @@ -15,7 +15,7 @@ static const char* cKoganeChangeTexName = "/enemy/data/Kogane/kogane_s3tc.bti"; Mgr::Mgr(int objLimit, u8 modelType) : Kogane::Mgr(objLimit, modelType) { - mName = "ƒRƒKƒlƒ}ƒl[ƒWƒƒ"; // kogane manager + mName = "コガãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // kogane manager } /** diff --git a/src/plugProjectNishimuraU/KumaChappyMgr.cpp b/src/plugProjectNishimuraU/KumaChappyMgr.cpp index c3d4caa31..4de8c4c3e 100644 --- a/src/plugProjectNishimuraU/KumaChappyMgr.cpp +++ b/src/plugProjectNishimuraU/KumaChappyMgr.cpp @@ -12,7 +12,7 @@ static const char kumaChappyMgrName[] = "246-KumaChappyMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒNƒ}ƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // bear chappy manager + mName = "クマãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // bear chappy manager } /** diff --git a/src/plugProjectNishimuraU/KumaKochappyMgr.cpp b/src/plugProjectNishimuraU/KumaKochappyMgr.cpp index af864558d..68cfcfd0e 100644 --- a/src/plugProjectNishimuraU/KumaKochappyMgr.cpp +++ b/src/plugProjectNishimuraU/KumaKochappyMgr.cpp @@ -10,7 +10,7 @@ namespace KumaKochappy { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ`ƒrƒNƒ}ƒ}ƒl[ƒWƒƒ"; // little bear manager + mName = "ãƒãƒ“クママãƒãƒ¼ã‚¸ãƒ£"; // little bear manager } /** diff --git a/src/plugProjectNishimuraU/KurageMgr.cpp b/src/plugProjectNishimuraU/KurageMgr.cpp index 485ded849..8a09d4a98 100644 --- a/src/plugProjectNishimuraU/KurageMgr.cpp +++ b/src/plugProjectNishimuraU/KurageMgr.cpp @@ -12,7 +12,7 @@ static const char kurageMgrName[] = "246-KurageMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒNƒ‰ƒQƒhƒbƒNƒŠƒ}ƒl[ƒWƒƒ"; // jellyfish manager + mName = "クラゲドックリマãƒãƒ¼ã‚¸ãƒ£"; // jellyfish manager } /** diff --git a/src/plugProjectNishimuraU/LeafChappyMgr.cpp b/src/plugProjectNishimuraU/LeafChappyMgr.cpp index b015cab02..f969d069c 100644 --- a/src/plugProjectNishimuraU/LeafChappyMgr.cpp +++ b/src/plugProjectNishimuraU/LeafChappyMgr.cpp @@ -10,7 +10,7 @@ namespace LeafChappy { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "—t‚Á‚σ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // leaf chappy manager + mName = "葉ã£ã±ãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // leaf chappy manager } /** diff --git a/src/plugProjectNishimuraU/MarMgr.cpp b/src/plugProjectNishimuraU/MarMgr.cpp index 2c0b43fda..9912a7b25 100644 --- a/src/plugProjectNishimuraU/MarMgr.cpp +++ b/src/plugProjectNishimuraU/MarMgr.cpp @@ -19,7 +19,7 @@ static const char* cMatAnimBrkTexName = "/enemy/data/Mar/fuusen_model.brk"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒtƒEƒZƒ“ƒhƒbƒNƒŠƒ}ƒl[ƒWƒƒ"; // blimp manager + mName = "フウセンドックリマãƒãƒ¼ã‚¸ãƒ£"; // blimp manager } /** diff --git a/src/plugProjectNishimuraU/MaroFrogMgr.cpp b/src/plugProjectNishimuraU/MaroFrogMgr.cpp index 7dc71d323..b3e13a671 100644 --- a/src/plugProjectNishimuraU/MaroFrogMgr.cpp +++ b/src/plugProjectNishimuraU/MaroFrogMgr.cpp @@ -10,7 +10,7 @@ namespace MaroFrog { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ}ƒƒKƒGƒ‹ƒ}ƒl[ƒWƒƒ"; // maro frog manager + mName = "マロガエルマãƒãƒ¼ã‚¸ãƒ£"; // maro frog manager } /** diff --git a/src/plugProjectNishimuraU/MiniHoudaiMgr.cpp b/src/plugProjectNishimuraU/MiniHoudaiMgr.cpp index ba4c27ecc..a0f3b46d1 100644 --- a/src/plugProjectNishimuraU/MiniHoudaiMgr.cpp +++ b/src/plugProjectNishimuraU/MiniHoudaiMgr.cpp @@ -12,7 +12,7 @@ namespace MiniHoudai { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ`ƒrƒzƒEƒ_ƒCƒ}ƒl[ƒWƒƒ"; // little houdai manager + mName = "ãƒãƒ“ホウダイマãƒãƒ¼ã‚¸ãƒ£"; // little houdai manager } /** diff --git a/src/plugProjectNishimuraU/NormMiniHoudaiMgr.cpp b/src/plugProjectNishimuraU/NormMiniHoudaiMgr.cpp index 37cfcf375..f4242621d 100644 --- a/src/plugProjectNishimuraU/NormMiniHoudaiMgr.cpp +++ b/src/plugProjectNishimuraU/NormMiniHoudaiMgr.cpp @@ -12,7 +12,7 @@ static const char normMiniHoudaiMgrName[] = "246-NormMiniHoudaiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : MiniHoudai::Mgr(objLimit, modelType) { - mName = "ƒm[ƒ}ƒ‹ƒ`ƒrƒzƒEƒ_ƒCƒ}ƒl[ƒWƒƒ"; // normal little houdai manager + mName = "ノーマルãƒãƒ“ホウダイマãƒãƒ¼ã‚¸ãƒ£"; // normal little houdai manager } /** diff --git a/src/plugProjectNishimuraU/OniKurageMgr.cpp b/src/plugProjectNishimuraU/OniKurageMgr.cpp index 204956763..3e86cb850 100644 --- a/src/plugProjectNishimuraU/OniKurageMgr.cpp +++ b/src/plugProjectNishimuraU/OniKurageMgr.cpp @@ -12,7 +12,7 @@ static const char oniKurageMgrName[] = "246-OniKurageMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒIƒjƒNƒ‰ƒQƒ}ƒl[ƒWƒƒ"; // jellyfish manager + mName = "オニクラゲマãƒãƒ¼ã‚¸ãƒ£"; // jellyfish manager } /** diff --git a/src/plugProjectNishimuraU/OtakaraBaseMgr.cpp b/src/plugProjectNishimuraU/OtakaraBaseMgr.cpp index a9706446b..d735f5280 100644 --- a/src/plugProjectNishimuraU/OtakaraBaseMgr.cpp +++ b/src/plugProjectNishimuraU/OtakaraBaseMgr.cpp @@ -14,7 +14,7 @@ static const char otakaraBaseMgrName[] = "246-OtakaraBaseMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒIƒ^ƒJƒ‰ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // otakara manager + mName = "オタカラムシマãƒãƒ¼ã‚¸ãƒ£"; // otakara manager } /** diff --git a/src/plugProjectNishimuraU/PomMgr.cpp b/src/plugProjectNishimuraU/PomMgr.cpp index 2410f8d1d..b22009156 100644 --- a/src/plugProjectNishimuraU/PomMgr.cpp +++ b/src/plugProjectNishimuraU/PomMgr.cpp @@ -20,7 +20,7 @@ static const char pomMgrName[] = "246-PomMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ|ƒ“ƒKƒV‘ƒ}ƒl[ƒWƒƒ"; // pongashi plant manager + mName = "ãƒãƒ³ã‚¬ã‚·è‰ãƒžãƒãƒ¼ã‚¸ãƒ£"; // pongashi plant manager } /** diff --git a/src/plugProjectNishimuraU/QueenMgr.cpp b/src/plugProjectNishimuraU/QueenMgr.cpp index de8cd8d97..8b5ac45a8 100644 --- a/src/plugProjectNishimuraU/QueenMgr.cpp +++ b/src/plugProjectNishimuraU/QueenMgr.cpp @@ -19,7 +19,7 @@ static const char* cMatAnimBtkTexName = "/enemy/data/Queen/queenchappy_model.btk Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒNƒB[ƒ“ƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // queen chappy manager + mName = "クィーンãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // queen chappy manager } /** diff --git a/src/plugProjectNishimuraU/QurioneMgr.cpp b/src/plugProjectNishimuraU/QurioneMgr.cpp index ff81fbd70..53a00920a 100644 --- a/src/plugProjectNishimuraU/QurioneMgr.cpp +++ b/src/plugProjectNishimuraU/QurioneMgr.cpp @@ -10,7 +10,7 @@ static const char qurioneMgrName[] = "246-QurioneMgr"; * @note Size: 0x94 */ Generator::Generator() - : EnemyGeneratorBase("ƒNƒŠƒIƒlƒWƒFƒlƒŒ[ƒ^") // clione (sea angel) generator + : EnemyGeneratorBase("クリオãƒã‚¸ã‚§ãƒãƒ¬ãƒ¼ã‚¿") // clione (sea angel) generator , mInitialParam(200.0f, 30.0f) { } @@ -71,7 +71,7 @@ void Generator::doReadOldVersion(Stream&) { } Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒNƒŠƒIƒlƒ}ƒl[ƒWƒƒ"; // clione (sea angel) manager + mName = "クリオãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // clione (sea angel) manager } /** diff --git a/src/plugProjectNishimuraU/RedKabutoMgr.cpp b/src/plugProjectNishimuraU/RedKabutoMgr.cpp index b91a6eb84..efd0f4878 100644 --- a/src/plugProjectNishimuraU/RedKabutoMgr.cpp +++ b/src/plugProjectNishimuraU/RedKabutoMgr.cpp @@ -16,7 +16,7 @@ char* cKabutoChangeTexName = "/enemy/data/Rkabuto/babykabuto_red_s3tc.bti"; Mgr::Mgr(int p1, u8 p2) : Kabuto::Mgr(p1, p2) { - mName = "ƒŒƒbƒhƒJƒuƒgƒ}ƒl[ƒWƒƒ"; // red beetle manager + mName = "レッドカブトマãƒãƒ¼ã‚¸ãƒ£"; // red beetle manager } /** diff --git a/src/plugProjectNishimuraU/RockMgr.cpp b/src/plugProjectNishimuraU/RockMgr.cpp index df265f102..77dcc1ec2 100644 --- a/src/plugProjectNishimuraU/RockMgr.cpp +++ b/src/plugProjectNishimuraU/RockMgr.cpp @@ -11,7 +11,7 @@ static const char rockMgrName[] = "246-RockMgr"; * @note Size: 0x9C */ Generator::Generator() - : EnemyGeneratorBase("—ŽÎƒWƒFƒlƒŒ[ƒ^") // falling rock generator + : EnemyGeneratorBase("è½çŸ³ã‚¸ã‚§ãƒãƒ¬ãƒ¼ã‚¿") // falling rock generator , mSpeed(100.0f) , mOffset(500.0f) , mScale(0.4f) @@ -77,7 +77,7 @@ void Generator::doReadOldVersion(Stream&) { } Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "—ŽÎƒ}ƒl[ƒWƒƒ"; // rockfall manager + mName = "è½çŸ³ãƒžãƒãƒ¼ã‚¸ãƒ£"; // rockfall manager } /** diff --git a/src/plugProjectNishimuraU/SaraiMgr.cpp b/src/plugProjectNishimuraU/SaraiMgr.cpp index c2f43cee4..3b14990c7 100644 --- a/src/plugProjectNishimuraU/SaraiMgr.cpp +++ b/src/plugProjectNishimuraU/SaraiMgr.cpp @@ -12,7 +12,7 @@ static const char saraiMgrName[] = "246-SaraiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒTƒ‰ƒCƒ€ƒVƒ}ƒl[ƒWƒƒ"; // saraimushi/salamander manager (lol?) + mName = "サライムシマãƒãƒ¼ã‚¸ãƒ£"; // saraimushi/salamander manager (lol?) } /** diff --git a/src/plugProjectNishimuraU/SnakeCrowMgr.cpp b/src/plugProjectNishimuraU/SnakeCrowMgr.cpp index 0bd807ebb..b40976c2c 100644 --- a/src/plugProjectNishimuraU/SnakeCrowMgr.cpp +++ b/src/plugProjectNishimuraU/SnakeCrowMgr.cpp @@ -12,7 +12,7 @@ static const char snakeCrowMgrName[] = "246-SnakeCrowMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒwƒrƒKƒ‰ƒXƒ}ƒl[ƒWƒƒ"; // snake crow manager + mName = "ヘビガラスマãƒãƒ¼ã‚¸ãƒ£"; // snake crow manager } /** diff --git a/src/plugProjectNishimuraU/SnakeWholeMgr.cpp b/src/plugProjectNishimuraU/SnakeWholeMgr.cpp index ddd7c985d..22957e5e9 100644 --- a/src/plugProjectNishimuraU/SnakeWholeMgr.cpp +++ b/src/plugProjectNishimuraU/SnakeWholeMgr.cpp @@ -12,7 +12,7 @@ static const char snakeWholeMgrName[] = "246-SnakeWholeMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒwƒrƒKƒ‰ƒX‘Sgƒ}ƒl[ƒWƒƒ"; // snake crow whole body manager + mName = "ヘビガラス全身マãƒãƒ¼ã‚¸ãƒ£"; // snake crow whole body manager } /** diff --git a/src/plugProjectNishimuraU/SokkuriMgr.cpp b/src/plugProjectNishimuraU/SokkuriMgr.cpp index 20980a1bc..15a788c3d 100644 --- a/src/plugProjectNishimuraU/SokkuriMgr.cpp +++ b/src/plugProjectNishimuraU/SokkuriMgr.cpp @@ -12,7 +12,7 @@ static const char sokkuriMgrName[] = "246-SokkuriMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ\\ƒbƒNƒŠƒ}ƒl[ƒWƒƒ"; // look-alike manager + mName = "ソ\ックリマãƒãƒ¼ã‚¸ãƒ£"; // look-alike manager } /** diff --git a/src/plugProjectNishimuraU/TadpoleMgr.cpp b/src/plugProjectNishimuraU/TadpoleMgr.cpp index 8c27616c7..325508af5 100644 --- a/src/plugProjectNishimuraU/TadpoleMgr.cpp +++ b/src/plugProjectNishimuraU/TadpoleMgr.cpp @@ -10,7 +10,7 @@ namespace Tadpole { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒIƒ^ƒ}ƒ}ƒl[ƒWƒƒ"; // otama manager + mName = "オタママãƒãƒ¼ã‚¸ãƒ£"; // otama manager } /** diff --git a/src/plugProjectNishimuraU/TankMgr.cpp b/src/plugProjectNishimuraU/TankMgr.cpp index 505dfcf4f..de48c5d74 100644 --- a/src/plugProjectNishimuraU/TankMgr.cpp +++ b/src/plugProjectNishimuraU/TankMgr.cpp @@ -14,7 +14,7 @@ static const char tankMgrName[] = "246-TankMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒuƒ^ƒhƒbƒNƒŠƒ}ƒl[ƒWƒƒ"; // pig dog manager + mName = "ブタドックリマãƒãƒ¼ã‚¸ãƒ£"; // pig dog manager } /** diff --git a/src/plugProjectNishimuraU/TobiMgr.cpp b/src/plugProjectNishimuraU/TobiMgr.cpp index b531d27c0..b217266e4 100644 --- a/src/plugProjectNishimuraU/TobiMgr.cpp +++ b/src/plugProjectNishimuraU/TobiMgr.cpp @@ -12,7 +12,7 @@ static const char tobiMgrName[] = "246-TobiMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒgƒrƒ“ƒRƒ}ƒl[ƒWƒƒ"; // tobinko manager + mName = "トビンコマãƒãƒ¼ã‚¸ãƒ£"; // tobinko manager } /** diff --git a/src/plugProjectNishimuraU/UjiaMgr.cpp b/src/plugProjectNishimuraU/UjiaMgr.cpp index 0e49572a2..059d3102a 100644 --- a/src/plugProjectNishimuraU/UjiaMgr.cpp +++ b/src/plugProjectNishimuraU/UjiaMgr.cpp @@ -10,7 +10,7 @@ namespace Ujia { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒEƒWƒ“ƒRŠƒ}ƒl[ƒWƒƒ"; // ujinko Š manager + mName = "ウジンコ♀マãƒãƒ¼ã‚¸ãƒ£"; // ujinko ♀ manager } /** diff --git a/src/plugProjectNishimuraU/UjibMgr.cpp b/src/plugProjectNishimuraU/UjibMgr.cpp index 25321faa0..79044572b 100644 --- a/src/plugProjectNishimuraU/UjibMgr.cpp +++ b/src/plugProjectNishimuraU/UjibMgr.cpp @@ -12,7 +12,7 @@ static const char ujibMgrName[] = "246-UjibMgr"; Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒEƒWƒ“ƒR‰ƒ}ƒl[ƒWƒƒ"; // ujinko ‰ manager + mName = "ウジンコ♂マãƒãƒ¼ã‚¸ãƒ£"; // ujinko ♂ manager } /** diff --git a/src/plugProjectNishimuraU/WaterOtakaraMgr.cpp b/src/plugProjectNishimuraU/WaterOtakaraMgr.cpp index 2c82b5f52..fb1bc339f 100644 --- a/src/plugProjectNishimuraU/WaterOtakaraMgr.cpp +++ b/src/plugProjectNishimuraU/WaterOtakaraMgr.cpp @@ -15,7 +15,7 @@ static const char* cOtakaraChangeTexName = "/enemy/data/WaterOtakara/otakara_blu Mgr::Mgr(int objLimit, u8 modelType) : OtakaraBase::Mgr(objLimit, modelType) { - mName = "…ƒIƒ^ƒJƒ‰ƒ€ƒVƒ}ƒl[ƒWƒƒ"; // water otakara manager + mName = "水オタカラムシマãƒãƒ¼ã‚¸ãƒ£"; // water otakara manager } /** diff --git a/src/plugProjectNishimuraU/WealthyMgr.cpp b/src/plugProjectNishimuraU/WealthyMgr.cpp index d87afd235..995d8c66d 100644 --- a/src/plugProjectNishimuraU/WealthyMgr.cpp +++ b/src/plugProjectNishimuraU/WealthyMgr.cpp @@ -17,7 +17,7 @@ static const char* cKoganeChangeTexName = "/enemy/data/Wealthy/oogane_s3tc.bti"; Mgr::Mgr(int objLimit, u8 modelType) : Kogane::Mgr(objLimit, modelType) { - mName = "ƒIƒIƒKƒlƒ‚ƒ`ƒ}ƒl[ƒWƒƒ"; // oogane manager + mName = "オオガãƒãƒ¢ãƒãƒžãƒãƒ¼ã‚¸ãƒ£"; // oogane manager } /** diff --git a/src/plugProjectNishimuraU/WtankMgr.cpp b/src/plugProjectNishimuraU/WtankMgr.cpp index 40cf54964..84906acd3 100644 --- a/src/plugProjectNishimuraU/WtankMgr.cpp +++ b/src/plugProjectNishimuraU/WtankMgr.cpp @@ -15,7 +15,7 @@ static const char* cTankChangeTexName = "/enemy/data/Wtank/mizu_butadokkuri_main Mgr::Mgr(int objLimit, u8 modelType) : Tank::Mgr(objLimit, modelType) { - mName = "ƒ~ƒYƒuƒ^ƒhƒbƒNƒŠƒ}ƒl[ƒWƒƒ"; // water pig dog manager + mName = "ミズブタドックリマãƒãƒ¼ã‚¸ãƒ£"; // water pig dog manager } /** diff --git a/src/plugProjectOgawaU/ogObjAnaDemo.cpp b/src/plugProjectOgawaU/ogObjAnaDemo.cpp index b22959997..38d639488 100644 --- a/src/plugProjectOgawaU/ogObjAnaDemo.cpp +++ b/src/plugProjectOgawaU/ogObjAnaDemo.cpp @@ -200,7 +200,7 @@ void ObjAnaDemo::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberAnaDemo; } else { - JUT_PANICLINE(431, "ERR! in ObjAnaDemo CreateŽ¸”sI\n"); + JUT_PANICLINE(431, "ERR! in ObjAnaDemo Create失敗ï¼\n"); } mScreen = new P2DScreen::Mgr_tuning; @@ -698,7 +698,7 @@ void ObjAnaDemo::doUpdateFadeoutFinish() scene->endScene(nullptr); } else { if (scene->setBackupScene() && !scene->startScene(nullptr)) { - JUT_PANICLINE(994, "‚¾‚ß‚Å‚·\n"); + JUT_PANICLINE(994, "ã ã‚ã§ã™\n"); } } } diff --git a/src/plugProjectOgawaU/ogObjCave.cpp b/src/plugProjectOgawaU/ogObjCave.cpp index 451374baa..386b2c3d0 100644 --- a/src/plugProjectOgawaU/ogObjCave.cpp +++ b/src/plugProjectOgawaU/ogObjCave.cpp @@ -59,7 +59,7 @@ void ObjCave::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberCave; } else { - JUT_PANICLINE(189, "ERR! in ObjCave CreateŽ¸”sI\n"); + JUT_PANICLINE(189, "ERR! in ObjCave Create失敗ï¼\n"); } mDoping = new og::Screen::DopingScreen; diff --git a/src/plugProjectOgawaU/ogObjChallenge1P.cpp b/src/plugProjectOgawaU/ogObjChallenge1P.cpp index 80dd0a5a2..4ecd294f0 100644 --- a/src/plugProjectOgawaU/ogObjChallenge1P.cpp +++ b/src/plugProjectOgawaU/ogObjChallenge1P.cpp @@ -46,7 +46,7 @@ void ObjChallenge1P::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberChallenge1P; } else { - JUT_PANICLINE(122, "ERR! in ObjChallenge1P CreateŽ¸”sI\n"); + JUT_PANICLINE(122, "ERR! in ObjChallenge1P Create失敗ï¼\n"); } mDoping = new og::Screen::DopingScreen; diff --git a/src/plugProjectOgawaU/ogObjChallenge2P.cpp b/src/plugProjectOgawaU/ogObjChallenge2P.cpp index c8cd45a30..c866b6e67 100644 --- a/src/plugProjectOgawaU/ogObjChallenge2P.cpp +++ b/src/plugProjectOgawaU/ogObjChallenge2P.cpp @@ -41,7 +41,7 @@ void ObjChallenge2P::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberChallenge2P; } else { - JUT_PANICLINE(151, "ERR! in ObjChallenge2P CreateŽ¸”sI\n"); + JUT_PANICLINE(151, "ERR! in ObjChallenge2P Create失敗ï¼\n"); } mPokoScreen = new P2DScreen::Mgr_tuning; diff --git a/src/plugProjectOgawaU/ogObjContena.cpp b/src/plugProjectOgawaU/ogObjContena.cpp index 532799427..ae15c6f3a 100644 --- a/src/plugProjectOgawaU/ogObjContena.cpp +++ b/src/plugProjectOgawaU/ogObjContena.cpp @@ -124,7 +124,7 @@ void ObjContena::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberContena; } else { - JUT_PANICLINE(242, "ERR! in ObjContena CreateŽ¸”sI\n"); + JUT_PANICLINE(242, "ERR! in ObjContena Create失敗ï¼\n"); } og::Screen::DispMemberContena* disp2 = mDisp; @@ -1134,7 +1134,7 @@ bool ObjContena::doUpdateFadeout() ::Screen::SetSceneArg arg(SCENE_UFO_MENU, getDispMember()); arg.mDoCreateBackup = false; if (scene->setScene(arg) && !scene->startScene(nullptr)) { - JUT_PANICLINE(944, "‚¾‚ß‚Å‚·\n"); + JUT_PANICLINE(944, "ã ã‚ã§ã™\n"); } } return; diff --git a/src/plugProjectOgawaU/ogObjCourseName.cpp b/src/plugProjectOgawaU/ogObjCourseName.cpp index dbef8d008..3b7e423a5 100644 --- a/src/plugProjectOgawaU/ogObjCourseName.cpp +++ b/src/plugProjectOgawaU/ogObjCourseName.cpp @@ -56,7 +56,7 @@ void ObjCourseName::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberCourseName; } else { - JUT_PANICLINE(101, "ERR! in ObjCourseName CreateŽ¸”sI\n"); + JUT_PANICLINE(101, "ERR! in ObjCourseName Create失敗ï¼\n"); } CourseName* owner = static_cast(getOwner()); diff --git a/src/plugProjectOgawaU/ogObjFloor.cpp b/src/plugProjectOgawaU/ogObjFloor.cpp index 03d99b284..b7569ad35 100644 --- a/src/plugProjectOgawaU/ogObjFloor.cpp +++ b/src/plugProjectOgawaU/ogObjFloor.cpp @@ -349,7 +349,7 @@ void ObjFloor::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberFloor; } else { - JUT_PANICLINE(452, "ERR! in ObjFloor CreateŽ¸”sI\n"); + JUT_PANICLINE(452, "ERR! in ObjFloor Create失敗ï¼\n"); } mScreenFont = new P2DScreen::Mgr_tuning; diff --git a/src/plugProjectOgawaU/ogObjGround.cpp b/src/plugProjectOgawaU/ogObjGround.cpp index 3cd50fe10..96b2c2fd9 100644 --- a/src/plugProjectOgawaU/ogObjGround.cpp +++ b/src/plugProjectOgawaU/ogObjGround.cpp @@ -58,7 +58,7 @@ void ObjGround::doCreate(JKRArchive* arc) mDisp = new og::Screen::DispMemberGround; } else { - JUT_PANICLINE(186, "ERR! in ObjCave CreateŽ¸”sI\n"); // yes they used the wrong class name - lmao + JUT_PANICLINE(186, "ERR! in ObjCave Create失敗ï¼\n"); // yes they used the wrong class name - lmao } mSunMeter = new og::Screen::SunMeter; diff --git a/src/plugProjectOgawaU/ogObjKantei.cpp b/src/plugProjectOgawaU/ogObjKantei.cpp index 3a13c67c9..5eeaf0780 100644 --- a/src/plugProjectOgawaU/ogObjKantei.cpp +++ b/src/plugProjectOgawaU/ogObjKantei.cpp @@ -99,7 +99,7 @@ void ObjKantei::doCreate(JKRArchive* arc) if (disp->isID(OWNER_OGA, MEMBER_DUMMY)) { mDisp = new og::Screen::DispMemberKantei; } else { - JUT_PANICLINE(258, "ERR! in ObjKantei CreateŽ¸”sI\n"); + JUT_PANICLINE(258, "ERR! in ObjKantei Create失敗ï¼\n"); } } diff --git a/src/plugProjectOgawaU/ogObjSMenuBase.cpp b/src/plugProjectOgawaU/ogObjSMenuBase.cpp index ea9e15f7b..4b6956be7 100644 --- a/src/plugProjectOgawaU/ogObjSMenuBase.cpp +++ b/src/plugProjectOgawaU/ogObjSMenuBase.cpp @@ -176,7 +176,7 @@ void ObjSMenuBase::startBackupScene() { SceneSMenuBase* scene = static_cast(getOwner()); if (scene->setBackupScene() && !scene->startScene(nullptr)) { - JUT_PANICLINE(366, "‚¾‚ß‚Å‚·\n"); + JUT_PANICLINE(366, "ã ã‚ã§ã™\n"); } } @@ -194,7 +194,7 @@ void ObjSMenuBase::jump_LR(::Screen::SetSceneArg& arg, bool flag) sarg.mSceneType = arg.getSceneType(); sarg.mFlag = flag; if (!scene->startScene(&sarg)) { - JUT_PANICLINE(394, "‚¾‚ß‚Å‚·\n"); + JUT_PANICLINE(394, "ã ã‚ã§ã™\n"); } } } diff --git a/src/plugProjectOgawaU/ogObjSave.cpp b/src/plugProjectOgawaU/ogObjSave.cpp index dd895be5d..7bbc9053d 100644 --- a/src/plugProjectOgawaU/ogObjSave.cpp +++ b/src/plugProjectOgawaU/ogObjSave.cpp @@ -34,7 +34,7 @@ void ObjSave::doCreate(JKRArchive* arc) if (disp->isID(OWNER_OGA, MEMBER_SAVE)) { mDisp = disp; } else { - JUT_PANICLINE(84, "ERR! in ObjSave CreateŽ¸”sI\n"); + JUT_PANICLINE(84, "ERR! in ObjSave Create失敗ï¼\n"); } mState = SAVESTATE_StartDelay; mTimer = 0.0f; diff --git a/src/plugProjectOgawaU/ogObjSpecialItem.cpp b/src/plugProjectOgawaU/ogObjSpecialItem.cpp index 005a4abb0..c3fb14bcf 100644 --- a/src/plugProjectOgawaU/ogObjSpecialItem.cpp +++ b/src/plugProjectOgawaU/ogObjSpecialItem.cpp @@ -45,7 +45,7 @@ void ObjSpecialItem::doCreate(JKRArchive* arc) } else if (disp->isID(OWNER_OGA, MEMBER_DUMMY)) { mDisp = new og::Screen::DispMemberSpecialItem(); } else { - JUT_PANICLINE(81, "ERR! in ObjTest CreateŽ¸”sI\n"); + JUT_PANICLINE(81, "ERR! in ObjTest Create失敗ï¼\n"); } mScreen = new P2DScreen::Mgr_tuning; diff --git a/src/plugProjectOgawaU/ogObjUfo.cpp b/src/plugProjectOgawaU/ogObjUfo.cpp index 4a8a01231..fbe772450 100644 --- a/src/plugProjectOgawaU/ogObjUfo.cpp +++ b/src/plugProjectOgawaU/ogObjUfo.cpp @@ -179,7 +179,7 @@ bool ObjUfoMenu::doUpdate() bool check = base->setScene(arg); if (check) { check = base->startScene(nullptr); - JUT_ASSERTLINE(356, check, "‚¾‚ß‚Å‚·\n"); + JUT_ASSERTLINE(356, check, "ã ã‚ã§ã™\n"); } } else if (mSelectIndex == 1) { mDisp->mUfoMenu.mContenaType = 2; @@ -189,7 +189,7 @@ bool ObjUfoMenu::doUpdate() bool check = base->setScene(arg); if (check) { check = base->startScene(nullptr); - JUT_ASSERTLINE(372, check, "‚¾‚ß‚Å‚·\n"); + JUT_ASSERTLINE(372, check, "ã ã‚ã§ã™\n"); } } } else if (pad->getButtonDown() & Controller::PRESS_B) { @@ -212,7 +212,7 @@ void ObjUfoMenu::setBackupScene() ::Screen::SceneBase* base = getOwner(); if (base->setBackupScene()) { if (!base->startScene(nullptr)) { - JUT_PANICLINE(409, "‚¾‚ß‚Å‚·\n"); + JUT_PANICLINE(409, "ã ã‚ã§ã™\n"); } } mDoEnd = true; diff --git a/src/plugProjectOgawaU/ogObjVs.cpp b/src/plugProjectOgawaU/ogObjVs.cpp index a71cdabb9..cda15545c 100644 --- a/src/plugProjectOgawaU/ogObjVs.cpp +++ b/src/plugProjectOgawaU/ogObjVs.cpp @@ -76,7 +76,7 @@ void ObjVs::doCreate(JKRArchive* arc) if (disp->isID(OWNER_OGA, MEMBER_DUMMY)) { mDisp = new og::Screen::DispMemberVs; } else { - JUT_PANICLINE(246, "ERR! in ObjVs CreateŽ¸”sI\n"); + JUT_PANICLINE(246, "ERR! in ObjVs Create失敗ï¼\n"); } } diff --git a/src/plugProjectOgawaU/ogSceneAnaDemo.cpp b/src/plugProjectOgawaU/ogSceneAnaDemo.cpp index 15d9a4a03..518f53d7d 100644 --- a/src/plugProjectOgawaU/ogSceneAnaDemo.cpp +++ b/src/plugProjectOgawaU/ogSceneAnaDemo.cpp @@ -13,7 +13,7 @@ AnaDemo::AnaDemo(s32 sceneType) if (sceneType == SCENE_CAVE_IN_MENU || sceneType == SCENE_KANKETU_MENU || sceneType == SCENE_CAVE_MORE_MENU) { mSceneType = (SceneType)sceneType; } else { - JUT_PANICLINE(35, "“´ŒAƒƒjƒ…[‚Å‚Í‚ ‚è‚Ü‚¹‚ñI\n"); // Not a cave menu! + JUT_PANICLINE(35, "洞窟メニューã§ã¯ã‚ã‚Šã¾ã›ã‚“ï¼\n"); // Not a cave menu! } } diff --git a/src/plugProjectOgawaU/ogSceneSMenuMap.cpp b/src/plugProjectOgawaU/ogSceneSMenuMap.cpp index 4b64273cb..01c70c214 100644 --- a/src/plugProjectOgawaU/ogSceneSMenuMap.cpp +++ b/src/plugProjectOgawaU/ogSceneSMenuMap.cpp @@ -105,7 +105,7 @@ bool SMenuMap::doConfirmSetScene(::Screen::SetSceneArg& sceneArg) */ void SMenuMap::doSetBackupScene(::Screen::SetSceneArg& sceneArg) { sceneArg.mDoCreateBackup = false; } -static const char DONOTDOTHAT[] = "‚¾‚ß‚Å‚·"; // 'do not do that' lmao +static const char DONOTDOTHAT[] = "ã ã‚ã§ã™"; // 'do not do that' lmao } // namespace newScreen } // namespace og diff --git a/src/plugProjectOgawaU/ogTitleMsg.cpp b/src/plugProjectOgawaU/ogTitleMsg.cpp index 160a313d5..af420d40c 100644 --- a/src/plugProjectOgawaU/ogTitleMsg.cpp +++ b/src/plugProjectOgawaU/ogTitleMsg.cpp @@ -176,7 +176,7 @@ void TitleMsg::setCentering(EnumCentering center) size = 0.0f; } -#if VERNUM == USADEMO1 +#if BUILDTARGET == USADEMO1 f32 currX = 0.0f; // f25 for (int i = 0; i < mStringLength; i++) { J2DPane* pane = mPanes1[i]; @@ -189,7 +189,7 @@ void TitleMsg::setCentering(EnumCentering center) currX += (paneWidth - diff); } mXScale = scaleX; -#elif VERNUM == USAFINAL +#elif BUILDTARGET == USAFINAL f32 scaleY = 1.0f; f32 currX = 0.0f; for (int i = 0; i < mStringLength; i++) { diff --git a/src/plugProjectYamashitaU/BlueChappyMgr.cpp b/src/plugProjectYamashitaU/BlueChappyMgr.cpp index e7e63c78b..2151992ea 100644 --- a/src/plugProjectYamashitaU/BlueChappyMgr.cpp +++ b/src/plugProjectYamashitaU/BlueChappyMgr.cpp @@ -16,7 +16,7 @@ static const char* cChappyChangeTexName1 = "/enemy/data/BlueChappy/swallow_565.3 Mgr::Mgr(int objLimit, u8 modelType) : ChappyBase::Mgr(objLimit, modelType) { - mName = "ƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // blue chappy manager + mName = "é’ãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // blue chappy manager } /** diff --git a/src/plugProjectYamashitaU/BlueKochappyMgr.cpp b/src/plugProjectYamashitaU/BlueKochappyMgr.cpp index d2ae5fe2a..ab072a779 100644 --- a/src/plugProjectYamashitaU/BlueKochappyMgr.cpp +++ b/src/plugProjectYamashitaU/BlueKochappyMgr.cpp @@ -15,7 +15,7 @@ static const char* cKochappyChangeTexName = "/enemy/data/BlueKochappy/kochappy_b Mgr::Mgr(int objLimit, u8 modelType) : KochappyBase::Mgr(objLimit, modelType) { - mName = "ƒRƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // blue kochappy manager + mName = "é’コãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // blue kochappy manager } /** diff --git a/src/plugProjectYamashitaU/ChappyBaseMgr.cpp b/src/plugProjectYamashitaU/ChappyBaseMgr.cpp index 88066838e..b64323293 100644 --- a/src/plugProjectYamashitaU/ChappyBaseMgr.cpp +++ b/src/plugProjectYamashitaU/ChappyBaseMgr.cpp @@ -13,7 +13,7 @@ namespace ChappyBase { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒ`ƒƒƒbƒs[ƒx[ƒXƒ}ƒl[ƒWƒƒ"; // chappybase manager + mName = "ãƒãƒ£ãƒƒãƒ”ーベースマãƒãƒ¼ã‚¸ãƒ£"; // chappybase manager } /** diff --git a/src/plugProjectYamashitaU/KochappyBaseMgr.cpp b/src/plugProjectYamashitaU/KochappyBaseMgr.cpp index d6e650c33..e7c5d0518 100644 --- a/src/plugProjectYamashitaU/KochappyBaseMgr.cpp +++ b/src/plugProjectYamashitaU/KochappyBaseMgr.cpp @@ -13,7 +13,7 @@ namespace KochappyBase { Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒRƒ`ƒƒƒbƒs[ƒx[ƒXƒ}ƒl[ƒWƒƒ"; + mName = "コãƒãƒ£ãƒƒãƒ”ーベースマãƒãƒ¼ã‚¸ãƒ£"; } /** diff --git a/src/plugProjectYamashitaU/YellowChappyMgr.cpp b/src/plugProjectYamashitaU/YellowChappyMgr.cpp index b89dc504f..d586cae7c 100644 --- a/src/plugProjectYamashitaU/YellowChappyMgr.cpp +++ b/src/plugProjectYamashitaU/YellowChappyMgr.cpp @@ -16,7 +16,7 @@ static const char* cChappyChangeTexName1 = "/enemy/data/YellowChappy/swallow_565 Mgr::Mgr(int objLimit, u8 modelType) : ChappyBase::Mgr(objLimit, modelType) { - mName = "‰©ƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // yellow chappy manager + mName = "黄ãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // yellow chappy manager } /** diff --git a/src/plugProjectYamashitaU/YellowKochappyMgr.cpp b/src/plugProjectYamashitaU/YellowKochappyMgr.cpp index dd289f876..c02cd350b 100644 --- a/src/plugProjectYamashitaU/YellowKochappyMgr.cpp +++ b/src/plugProjectYamashitaU/YellowKochappyMgr.cpp @@ -15,7 +15,7 @@ static const char* cKochappyChangeTexName = "/enemy/data/YellowKochappy/kochappy Mgr::Mgr(int objLimit, u8 modelType) : KochappyBase::Mgr(objLimit, modelType) { - mName = "‰©ƒRƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // blue kochappy manager + mName = "黄コãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // yellow kochappy manager } /** diff --git a/src/plugProjectYamashitaU/chappyMgr.cpp b/src/plugProjectYamashitaU/chappyMgr.cpp index 23fd22d28..aa42e3318 100644 --- a/src/plugProjectYamashitaU/chappyMgr.cpp +++ b/src/plugProjectYamashitaU/chappyMgr.cpp @@ -18,7 +18,7 @@ static const char* cChappyChangeTexName1 = "/enemy/data/Chappy/swallow_565.1.bti Mgr::Mgr(int objLimit, u8 modelType) : ChappyBase::Mgr(objLimit, modelType) { - mName = "Ôƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // chappybase manager + mName = "赤ãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // chappybase manager } /** diff --git a/src/plugProjectYamashitaU/farm.cpp b/src/plugProjectYamashitaU/farm.cpp index 614895748..d03f99ba6 100644 --- a/src/plugProjectYamashitaU/farm.cpp +++ b/src/plugProjectYamashitaU/farm.cpp @@ -93,7 +93,7 @@ void Obstacle::doDebugDraw(Graphics& gfx) * @note Size: 0xBC */ Farm::Farm() - : CNode("”_k") + : CNode("農耕") , mModelData(nullptr) , mModel(nullptr) , mObstacleRootNode("ObstacleNode") diff --git a/src/plugProjectYamashitaU/farmMgr.cpp b/src/plugProjectYamashitaU/farmMgr.cpp index ad61cdab0..3a462c6b4 100644 --- a/src/plugProjectYamashitaU/farmMgr.cpp +++ b/src/plugProjectYamashitaU/farmMgr.cpp @@ -18,9 +18,9 @@ namespace Farm { */ FarmMgr::FarmMgr(u32 farmType) : GenericObjectMgr() - , CNode("”_kƒ}ƒl[ƒWƒƒ") + , CNode("農耕マãƒãƒ¼ã‚¸ãƒ£") , mModelType(farmType) - , mFarmsRootNode("”_kƒ|ƒCƒ“ƒg") + , mFarmsRootNode("農耕ãƒã‚¤ãƒ³ãƒˆ") , mDirectorUpdator(nullptr) , mUnused1(0) , mUnused2(0) diff --git a/src/plugProjectYamashitaU/gameLightMgr.cpp b/src/plugProjectYamashitaU/gameLightMgr.cpp index 59feecc15..b34adc934 100644 --- a/src/plugProjectYamashitaU/gameLightMgr.cpp +++ b/src/plugProjectYamashitaU/gameLightMgr.cpp @@ -33,11 +33,11 @@ void calcLightColor(Color4* lightColor, Color4& destColor, Color4& srcColor, f32 namespace { const char* GameLightMgrSettinglabel[SUNTIME_Count] = { - "–é", // 'night' - "’©", // 'morning' - "’‹", // 'noon' - "—[", // 'evening' - "ƒfƒ‚’†", // 'in demo' + "夜", // 'night' + "æœ", // 'morning' + "昼", // 'noon' + "夕", // 'evening' + "デモ中", // 'in demo' }; } // namespace @@ -118,11 +118,11 @@ void GameLightSpotSetting::read(Stream& stream) * @note Size: 0x1E0 */ GameLightMgrSetting::GameLightMgrSetting() - : CNode("Ý’è") // 'setting' + : CNode("設定") // 'setting' , mIsCave(false) - , mSunLight("‘¾—zƒ^ƒCƒvÝ’è") - , mStellarSpotLight("‰ù’†“d“”ƒAƒŠ") // 'yes flashlight' - , mRegularSpotLight("‰ù’†“d“”ƒiƒV") // 'no flashlight' + , mSunLight("太陽タイプ設定") + , mStellarSpotLight("æ‡ä¸­é›»ç¯ã‚¢ãƒª") // 'yes flashlight' + , mRegularSpotLight("æ‡ä¸­é›»ç¯ãƒŠã‚·") // 'no flashlight' { updateNode(); } @@ -396,19 +396,19 @@ GameLightMgr::GameLightMgr(char* name) start(); // setup main light - mMainLight = new LightObj("ƒƒCƒ“ƒ‰ƒCƒg", GX_LIGHT0, TYPE_Spot, JUtility::TColor(255, 255, 255, 255)); // 'main light' + mMainLight = new LightObj("メインライト", GX_LIGHT0, TYPE_Spot, JUtility::TColor(255, 255, 255, 255)); // 'main light' mMainLight->mSpotFn = GX_SP_OFF; mMainLight->mElevation = Vector3f(0.0f, -1.0f, 0.0f); registLightObj(mMainLight); // setup sub light - mSubLight = new LightObj("ƒTƒuƒ‰ƒCƒg", GX_LIGHT1, TYPE_Spot, JUtility::TColor(128, 64, 64, 255)); // 'sub light' + mSubLight = new LightObj("サブライト", GX_LIGHT1, TYPE_Spot, JUtility::TColor(128, 64, 64, 255)); // 'sub light' mSubLight->mSpotFn = GX_SP_OFF; mSubLight->mElevation = Vector3f(0.0f, 1.0f, 0.0f); registLightObj(mSubLight); // setup specular light - mSpecLight = new LightObj("ƒXƒyƒLƒ…ƒ‰-ƒ‰ƒCƒg", GX_LIGHT7, TYPE_Spec, JUtility::TColor(255, 255, 255, 255)); // 'specular light' + mSpecLight = new LightObj("スペキュラ-ライト", GX_LIGHT7, TYPE_Spec, JUtility::TColor(255, 255, 255, 255)); // 'specular light' mSpecLight->mKScale = 40.0f; registLightObj(mSpecLight); diff --git a/src/plugProjectYamashitaU/genEnemy.cpp b/src/plugProjectYamashitaU/genEnemy.cpp index ccc05105e..0cf512928 100644 --- a/src/plugProjectYamashitaU/genEnemy.cpp +++ b/src/plugProjectYamashitaU/genEnemy.cpp @@ -24,7 +24,7 @@ static GenObject* makeObjectEnemy() { return new GenObjectEnemy; } * @note Size: 0xD0 */ GenObjectEnemy::GenObjectEnemy() - : GenObject('teki', "object type", "“G‚ðƒZƒbƒg") + : GenObject('teki', "object type", "敵をセット") , mEnemyID(EnemyTypeID::EnemyID_Pelplant) , mSpawnType(1) , mTekiBirthType(0) @@ -56,7 +56,7 @@ void GenObjectEnemy::initialise() // Initialise the new factory with default teki parameters metafactory->mFactories[metafactory->mCount].mTypeID = 'teki'; metafactory->mFactories[metafactory->mCount].mMakeFunction = &makeObjectEnemy; - metafactory->mFactories[metafactory->mCount].mName = "“G‚ð”­¶"; + metafactory->mFactories[metafactory->mCount].mName = "敵を発生"; metafactory->mFactories[metafactory->mCount].mVersion = '0005'; metafactory->mCount++; } @@ -471,27 +471,27 @@ EnemyGeneratorBase* GenObjectEnemy::createEnemyGenerator() mEnemyGenerator = new Pelplant::Generator(); break; - GENERATOR_CASE(EnemyTypeID::EnemyID_Kochappy, "ÔƒRƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_BlueKochappy, "ƒRƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_YellowKochappy, "‰©ƒRƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_Chappy, "Ôƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_BlueChappy, "ƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_YellowChappy, "‰©ƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_BluePom, "ƒ|ƒ“ƒKƒV‘") - GENERATOR_CASE(EnemyTypeID::EnemyID_RedPom, "Ôƒ|ƒ“ƒKƒV‘") - GENERATOR_CASE(EnemyTypeID::EnemyID_YellowPom, "‰©ƒ|ƒ“ƒKƒV‘") - GENERATOR_CASE(EnemyTypeID::EnemyID_BlackPom, "•ƒ|ƒ“ƒKƒV‘") - GENERATOR_CASE(EnemyTypeID::EnemyID_WhitePom, "”’ƒ|ƒ“ƒKƒV‘") - GENERATOR_CASE(EnemyTypeID::EnemyID_RandPom, "ƒ|ƒ|ƒKƒV‘") - GENERATOR_CASE(EnemyTypeID::EnemyID_Kogane, "ƒRƒKƒl") - GENERATOR_CASE(EnemyTypeID::EnemyID_Wealthy, "ƒIƒIƒKƒlƒ‚ƒ`") - GENERATOR_CASE(EnemyTypeID::EnemyID_Fart, "ƒoƒoƒRƒKƒl") - GENERATOR_CASE(EnemyTypeID::EnemyID_Frog, "ƒCƒ‚ƒKƒGƒ‹") - GENERATOR_CASE(EnemyTypeID::EnemyID_MaroFrog, "ƒ}ƒƒKƒGƒ‹") - GENERATOR_CASE(EnemyTypeID::EnemyID_UjiA, "ƒEƒWƒ“ƒRŠ") - GENERATOR_CASE(EnemyTypeID::EnemyID_Tobi, "ƒgƒrƒ“ƒR") - GENERATOR_CASE(EnemyTypeID::EnemyID_UjiB, "ƒEƒWƒ“ƒR‰") - GENERATOR_CASE(EnemyTypeID::EnemyID_Armor, "ƒˆƒƒCƒ€ƒV") + GENERATOR_CASE(EnemyTypeID::EnemyID_Kochappy, "赤コãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_BlueKochappy, "é’コãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_YellowKochappy, "黄コãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_Chappy, "赤ãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_BlueChappy, "é’ãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_YellowChappy, "黄ãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_BluePom, "é’ãƒãƒ³ã‚¬ã‚·è‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_RedPom, "赤ãƒãƒ³ã‚¬ã‚·è‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_YellowPom, "黄ãƒãƒ³ã‚¬ã‚·è‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_BlackPom, "é»’ãƒãƒ³ã‚¬ã‚·è‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_WhitePom, "白ãƒãƒ³ã‚¬ã‚·è‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_RandPom, "ãƒãƒã‚¬ã‚·è‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_Kogane, "コガãƒ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Wealthy, "オオガãƒãƒ¢ãƒ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Fart, "ãƒãƒã‚³ã‚¬ãƒ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Frog, "イモガエル") + GENERATOR_CASE(EnemyTypeID::EnemyID_MaroFrog, "マロガエル") + GENERATOR_CASE(EnemyTypeID::EnemyID_UjiA, "ウジンコ♀") + GENERATOR_CASE(EnemyTypeID::EnemyID_Tobi, "トビンコ") + GENERATOR_CASE(EnemyTypeID::EnemyID_UjiB, "ウジンコ♂") + GENERATOR_CASE(EnemyTypeID::EnemyID_Armor, "ヨロイムシ") case EnemyTypeID::EnemyID_Qurione: mEnemyGenerator = new Qurione::Generator(); @@ -501,91 +501,91 @@ EnemyGeneratorBase* GenObjectEnemy::createEnemyGenerator() mEnemyGenerator = new Game::Rock::Generator(); break; - GENERATOR_CASE(EnemyTypeID::EnemyID_Hiba, "ƒqƒo") - GENERATOR_CASE(EnemyTypeID::EnemyID_GasHiba, "ƒKƒXƒqƒo") + GENERATOR_CASE(EnemyTypeID::EnemyID_Hiba, "ヒãƒ") + GENERATOR_CASE(EnemyTypeID::EnemyID_GasHiba, "ガスヒãƒ") case EnemyTypeID::EnemyID_ElecHiba: mEnemyGenerator = new Game::ElecHiba::Generator(); break; - GENERATOR_CASE(EnemyTypeID::EnemyID_Sarai, "ƒTƒ‰ƒCƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_Tank, "ƒuƒ^ƒhƒbƒNƒŠ") - GENERATOR_CASE(EnemyTypeID::EnemyID_Wtank, "ƒ~ƒYƒuƒ^ƒhƒbƒNƒŠ") - GENERATOR_CASE(EnemyTypeID::EnemyID_Catfish, "ƒiƒ}ƒY") - GENERATOR_CASE(EnemyTypeID::EnemyID_Tadpole, "ƒIƒ^ƒ}") - GENERATOR_CASE(EnemyTypeID::EnemyID_ElecBug, "ƒfƒ“ƒLƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_Mar, "ƒtƒEƒZƒ“ƒhƒbƒNƒŠ") - GENERATOR_CASE(EnemyTypeID::EnemyID_Queen, "ƒNƒC[ƒ“ƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_Baby, "ƒxƒr[ƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_Demon, "ƒIƒjƒTƒ‰ƒC") - GENERATOR_CASE(EnemyTypeID::EnemyID_FireChappy, "ƒ„ƒLƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_SnakeCrow, "ƒwƒrƒKƒ‰ƒX") - GENERATOR_CASE(EnemyTypeID::EnemyID_KumaChappy, "ƒNƒ}ƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_Bomb, "ƒoƒNƒ_ƒ“") - GENERATOR_CASE(EnemyTypeID::EnemyID_Egg, "ƒnƒeƒiƒ^ƒ}ƒS") - GENERATOR_CASE(EnemyTypeID::EnemyID_PanModoki, "ƒpƒ“ƒ‚ƒhƒL") - GENERATOR_CASE(EnemyTypeID::EnemyID_OoPanModoki, "‘åƒpƒ“ƒ‚ƒhƒL") - GENERATOR_CASE(EnemyTypeID::EnemyID_PanModokiNest, "ƒpƒ“ƒ‚ƒhƒL‘ƒ") - GENERATOR_CASE(EnemyTypeID::EnemyID_Fuefuki, "ƒtƒGƒtƒL") - GENERATOR_CASE(EnemyTypeID::EnemyID_Tanpopo, "ƒ^ƒ“ƒ|ƒ|") - GENERATOR_CASE(EnemyTypeID::EnemyID_Watage, "‚킽‚°") - GENERATOR_CASE(EnemyTypeID::EnemyID_Clover, "ƒNƒ[ƒo[") - GENERATOR_CASE(EnemyTypeID::EnemyID_HikariKinoko, "ƒqƒJƒŠƒLƒmƒR") - GENERATOR_CASE(EnemyTypeID::EnemyID_Ooinu_s, "‚¨‚¨‚¢‚Ê‚Ó‚®‚èi¬j") - GENERATOR_CASE(EnemyTypeID::EnemyID_KareOoinu_s, "ŒÍ‚ꂨ‚¨‚¢‚Ê‚Ó‚®‚èi¬j") - GENERATOR_CASE(EnemyTypeID::EnemyID_Ooinu_l, "‚¨‚¨‚¢‚Ê‚Ó‚®‚èi‘åj") - GENERATOR_CASE(EnemyTypeID::EnemyID_KareOoinu_l, "ŒÍ‚ꂨ‚¨‚¢‚Ê‚Ó‚®‚èi‘åj") - GENERATOR_CASE(EnemyTypeID::EnemyID_Wakame_s, "Žá‰èi¬j") - GENERATOR_CASE(EnemyTypeID::EnemyID_Wakame_l, "Žá‰èi‘åj") - GENERATOR_CASE(EnemyTypeID::EnemyID_Tukushi, "‚‚­‚µ") - GENERATOR_CASE(EnemyTypeID::EnemyID_DaiodoRed, "Ôƒ_ƒCƒI[ƒh") - GENERATOR_CASE(EnemyTypeID::EnemyID_DaiodoGreen, "ƒ_ƒCƒI[ƒh") - GENERATOR_CASE(EnemyTypeID::EnemyID_Magaret, "ƒ}[ƒKƒŒƒbƒg") - GENERATOR_CASE(EnemyTypeID::EnemyID_Nekojarashi, "‚Ë‚±‚¶‚á‚炵") - GENERATOR_CASE(EnemyTypeID::EnemyID_Chiyogami, "ç‘㎆") - GENERATOR_CASE(EnemyTypeID::EnemyID_Zenmai, "‚º‚ñ‚Ü‚¢") - GENERATOR_CASE(EnemyTypeID::EnemyID_KingChappy, "ƒLƒ“ƒOƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_Miulin, "ƒ~ƒEƒŠƒ“") - GENERATOR_CASE(EnemyTypeID::EnemyID_Hanachirashi, "ƒtƒEƒZƒ“ƒnƒiƒ`ƒ‰ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_Damagumo, "ƒ_ƒ}ƒOƒ‚") - GENERATOR_CASE(EnemyTypeID::EnemyID_Kurage, "ƒNƒ‰ƒQƒhƒbƒNƒŠ") - GENERATOR_CASE(EnemyTypeID::EnemyID_BombSarai, "ƒoƒNƒ_ƒ“ƒTƒ‰ƒC") - GENERATOR_CASE(EnemyTypeID::EnemyID_FireOtakara, "‰ÎƒIƒ^ƒJƒ‰ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_WaterOtakara, "…ƒIƒ^ƒJƒ‰ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_GasOtakara, "ƒKƒXƒIƒ^ƒJƒ‰ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_ElecOtakara, "“d‹CƒIƒ^ƒJƒ‰ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_BombOtakara, "”š’eƒIƒ^ƒJƒ‰ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_Jigumo, "ƒWƒOƒ‚") - GENERATOR_CASE(EnemyTypeID::EnemyID_JigumoNest, "ƒWƒOƒ‚‘ƒ") - GENERATOR_CASE(EnemyTypeID::EnemyID_Imomushi, "ƒCƒ‚ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_Houdai, "ƒzƒEƒ_ƒCƒ_ƒ}ƒOƒ‚") - GENERATOR_CASE(EnemyTypeID::EnemyID_LeafChappy, "ƒnƒbƒpƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_TamagoMushi, "ƒ^ƒ}ƒSƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_BigFoot, "ƒIƒIƒAƒVƒ_ƒ}ƒOƒ‚") - GENERATOR_CASE(EnemyTypeID::EnemyID_SnakeWhole, "ƒwƒrƒKƒ‰ƒX‘Sg") - GENERATOR_CASE(EnemyTypeID::EnemyID_UmiMushi, "ƒEƒ~ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_UmiMushiBlind, "–Ú‚È‚µƒEƒ~ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_OniKurage, "ƒIƒjƒNƒ‰ƒQ") - GENERATOR_CASE(EnemyTypeID::EnemyID_BigTreasure, "ƒIƒIƒIƒ^ƒJƒ‰ƒ€ƒV") - GENERATOR_CASE(EnemyTypeID::EnemyID_Kabuto, "ƒOƒŠ[ƒ“ƒJƒuƒg—c’Ž") - GENERATOR_CASE(EnemyTypeID::EnemyID_Rkabuto, "ƒŒƒbƒhƒJƒuƒg—c’Ž") - GENERATOR_CASE(EnemyTypeID::EnemyID_Fkabuto, "ŒÅ’èƒJƒuƒg—c’Ž") - GENERATOR_CASE(EnemyTypeID::EnemyID_KumaKochappy, "ƒNƒ}ƒRƒ`ƒƒƒbƒs[") - GENERATOR_CASE(EnemyTypeID::EnemyID_ShijimiChou, "ƒVƒWƒ~’±") - GENERATOR_CASE(EnemyTypeID::EnemyID_MiniHoudai, "ƒ`ƒrƒzƒEƒ_ƒC") - GENERATOR_CASE(EnemyTypeID::EnemyID_FminiHoudai, "ŒÅ’èƒ`ƒrƒzƒEƒ_ƒC") - GENERATOR_CASE(EnemyTypeID::EnemyID_Sokkuri, "ƒ\\ƒbƒNƒŠ") - GENERATOR_CASE(EnemyTypeID::EnemyID_Hana, "ƒnƒiƒhƒbƒNƒŠ") - GENERATOR_CASE(EnemyTypeID::EnemyID_BlackMan, "•‚¢l") - GENERATOR_CASE(EnemyTypeID::EnemyID_Tyre, "•‚¢lƒ^ƒCƒ„") - GENERATOR_CASE(EnemyTypeID::EnemyID_DangoMushi, "ƒ_ƒ“ƒSƒ€ƒV") + GENERATOR_CASE(EnemyTypeID::EnemyID_Sarai, "サライムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Tank, "ブタドックリ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Wtank, "ミズブタドックリ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Catfish, "ナマズ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Tadpole, "オタマ") + GENERATOR_CASE(EnemyTypeID::EnemyID_ElecBug, "デンキムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Mar, "フウセンドックリ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Queen, "クイーンãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_Baby, "ベビーãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_Demon, "オニサライ") + GENERATOR_CASE(EnemyTypeID::EnemyID_FireChappy, "ヤキãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_SnakeCrow, "ヘビガラス") + GENERATOR_CASE(EnemyTypeID::EnemyID_KumaChappy, "クマãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_Bomb, "ãƒã‚¯ãƒ€ãƒ³") + GENERATOR_CASE(EnemyTypeID::EnemyID_Egg, "ãƒãƒ†ãƒŠã‚¿ãƒžã‚´") + GENERATOR_CASE(EnemyTypeID::EnemyID_PanModoki, "パンモドキ") + GENERATOR_CASE(EnemyTypeID::EnemyID_OoPanModoki, "大パンモドキ") + GENERATOR_CASE(EnemyTypeID::EnemyID_PanModokiNest, "パンモドキ巣") + GENERATOR_CASE(EnemyTypeID::EnemyID_Fuefuki, "フエフキ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Tanpopo, "タンãƒãƒ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Watage, "ã‚ãŸã’") + GENERATOR_CASE(EnemyTypeID::EnemyID_Clover, "クローãƒãƒ¼") + GENERATOR_CASE(EnemyTypeID::EnemyID_HikariKinoko, "ヒカリキノコ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Ooinu_s, "ãŠãŠã„ã¬ãµãり(å°ï¼‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_KareOoinu_s, "枯れãŠãŠã„ã¬ãµãり(å°ï¼‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_Ooinu_l, "ãŠãŠã„ã¬ãµãり(大)") + GENERATOR_CASE(EnemyTypeID::EnemyID_KareOoinu_l, "枯れãŠãŠã„ã¬ãµãり(大)") + GENERATOR_CASE(EnemyTypeID::EnemyID_Wakame_s, "若芽(å°ï¼‰") + GENERATOR_CASE(EnemyTypeID::EnemyID_Wakame_l, "若芽(大)") + GENERATOR_CASE(EnemyTypeID::EnemyID_Tukushi, "ã¤ãã—") + GENERATOR_CASE(EnemyTypeID::EnemyID_DaiodoRed, "赤ダイオード") + GENERATOR_CASE(EnemyTypeID::EnemyID_DaiodoGreen, "é’ダイオード") + GENERATOR_CASE(EnemyTypeID::EnemyID_Magaret, "マーガレット") + GENERATOR_CASE(EnemyTypeID::EnemyID_Nekojarashi, "ã­ã“ã˜ã‚ƒã‚‰ã—") + GENERATOR_CASE(EnemyTypeID::EnemyID_Chiyogami, "åƒä»£ç´™") + GENERATOR_CASE(EnemyTypeID::EnemyID_Zenmai, "ãœã‚“ã¾ã„") + GENERATOR_CASE(EnemyTypeID::EnemyID_KingChappy, "キングãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_Miulin, "ミウリン") + GENERATOR_CASE(EnemyTypeID::EnemyID_Hanachirashi, "フウセンãƒãƒŠãƒãƒ©ã‚·") + GENERATOR_CASE(EnemyTypeID::EnemyID_Damagumo, "ダマグモ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Kurage, "クラゲドックリ") + GENERATOR_CASE(EnemyTypeID::EnemyID_BombSarai, "ãƒã‚¯ãƒ€ãƒ³ã‚µãƒ©ã‚¤") + GENERATOR_CASE(EnemyTypeID::EnemyID_FireOtakara, "ç«ã‚ªã‚¿ã‚«ãƒ©ãƒ ã‚·") + GENERATOR_CASE(EnemyTypeID::EnemyID_WaterOtakara, "水オタカラムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_GasOtakara, "ガスオタカラムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_ElecOtakara, "電気オタカラムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_BombOtakara, "爆弾オタカラムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Jigumo, "ジグモ") + GENERATOR_CASE(EnemyTypeID::EnemyID_JigumoNest, "ジグモ巣") + GENERATOR_CASE(EnemyTypeID::EnemyID_Imomushi, "イモムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Houdai, "ホウダイダマグモ") + GENERATOR_CASE(EnemyTypeID::EnemyID_LeafChappy, "ãƒãƒƒãƒ‘ãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_TamagoMushi, "タマゴムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_BigFoot, "オオアシダマグモ") + GENERATOR_CASE(EnemyTypeID::EnemyID_SnakeWhole, "ヘビガラス全身") + GENERATOR_CASE(EnemyTypeID::EnemyID_UmiMushi, "ウミムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_UmiMushiBlind, "ç›®ãªã—ウミムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_OniKurage, "オニクラゲ") + GENERATOR_CASE(EnemyTypeID::EnemyID_BigTreasure, "オオオタカラムシ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Kabuto, "グリーンカブト幼虫") + GENERATOR_CASE(EnemyTypeID::EnemyID_Rkabuto, "レッドカブト幼虫") + GENERATOR_CASE(EnemyTypeID::EnemyID_Fkabuto, "固定カブト幼虫") + GENERATOR_CASE(EnemyTypeID::EnemyID_KumaKochappy, "クマコãƒãƒ£ãƒƒãƒ”ー") + GENERATOR_CASE(EnemyTypeID::EnemyID_ShijimiChou, "シジミè¶") + GENERATOR_CASE(EnemyTypeID::EnemyID_MiniHoudai, "ãƒãƒ“ホウダイ") + GENERATOR_CASE(EnemyTypeID::EnemyID_FminiHoudai, "固定ãƒãƒ“ホウダイ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Sokkuri, "ソ\ックリ") + GENERATOR_CASE(EnemyTypeID::EnemyID_Hana, "ãƒãƒŠãƒ‰ãƒƒã‚¯ãƒª") + GENERATOR_CASE(EnemyTypeID::EnemyID_BlackMan, "é»’ã„人") + GENERATOR_CASE(EnemyTypeID::EnemyID_Tyre, "é»’ã„人タイヤ") + GENERATOR_CASE(EnemyTypeID::EnemyID_DangoMushi, "ダンゴムシ") case EnemyTypeID::EnemyID_Pom: case EnemyTypeID::EnemyID_PanHouse: case EnemyTypeID::EnemyID_UmiMushiBase: case EnemyTypeID::EnemyID_Stone: default: - mEnemyGenerator = new EnemyGeneratorBase("–¢“o˜^"); + mEnemyGenerator = new EnemyGeneratorBase("未登録"); break; } diff --git a/src/plugProjectYamashitaU/generalEnemyMgr.cpp b/src/plugProjectYamashitaU/generalEnemyMgr.cpp index c4821f69e..6870b0c4b 100644 --- a/src/plugProjectYamashitaU/generalEnemyMgr.cpp +++ b/src/plugProjectYamashitaU/generalEnemyMgr.cpp @@ -515,7 +515,7 @@ GeneralEnemyMgr::GeneralEnemyMgr() , mHeap(nullptr) { sys->heapStatusStart("GeneralEnemyMgr", nullptr); - mName = "“Gƒ}ƒl[ƒWƒƒ"; // enemy manager + mName = "敵マãƒãƒ¼ã‚¸ãƒ£"; // enemy manager mEnemyNumInfo.init(); diff --git a/src/plugProjectYamashitaU/kochappyMgr.cpp b/src/plugProjectYamashitaU/kochappyMgr.cpp index fa36c508b..a459eadc0 100644 --- a/src/plugProjectYamashitaU/kochappyMgr.cpp +++ b/src/plugProjectYamashitaU/kochappyMgr.cpp @@ -17,7 +17,7 @@ static const char* cKochappyChangeTexName = "/enemy/data/Kochappy/kochappy_body_ Mgr::Mgr(int objLimit, u8 modelType) : KochappyBase::Mgr(objLimit, modelType) { - mName = "ÔƒRƒ`ƒƒƒbƒs[ƒ}ƒl[ƒWƒƒ"; // red kochappy manager + mName = "赤コãƒãƒ£ãƒƒãƒ”ーマãƒãƒ¼ã‚¸ãƒ£"; // red kochappy manager } /** diff --git a/src/plugProjectYamashitaU/pelplant.cpp b/src/plugProjectYamashitaU/pelplant.cpp index 10a7bdd90..5f690e249 100644 --- a/src/plugProjectYamashitaU/pelplant.cpp +++ b/src/plugProjectYamashitaU/pelplant.cpp @@ -585,7 +585,7 @@ bool Obj::neckJointCallBack(J3DJoint* joint, int p2) Mgr::Mgr(int objLimit, u8 modelType) : EnemyMgrBase(objLimit, modelType) { - mName = "ƒyƒŒƒbƒg‘ƒ}ƒl[ƒWƒƒ"; // pellet plant manager + mName = "ペレットè‰ãƒžãƒãƒ¼ã‚¸ãƒ£"; // pellet plant manager } /** diff --git a/src/plugProjectYamashitaU/pelplantGenerator.cpp b/src/plugProjectYamashitaU/pelplantGenerator.cpp index fdcde8f2f..e14d6efcf 100644 --- a/src/plugProjectYamashitaU/pelplantGenerator.cpp +++ b/src/plugProjectYamashitaU/pelplantGenerator.cpp @@ -9,7 +9,7 @@ namespace Pelplant { * @note Size: 0x98 */ Generator::Generator() - : EnemyGeneratorBase("ƒyƒŒƒbƒg‘") + : EnemyGeneratorBase("ペレットè‰") { mInitialParam.mColor = PELCOLOR_BLUE; mInitialParam.mAmount = PELLET_NUMBER_ONE; diff --git a/src/plugProjectYamashitaU/singleGS_ZukanParms.cpp b/src/plugProjectYamashitaU/singleGS_ZukanParms.cpp index d162d69f9..56072552d 100644 --- a/src/plugProjectYamashitaU/singleGS_ZukanParms.cpp +++ b/src/plugProjectYamashitaU/singleGS_ZukanParms.cpp @@ -16,7 +16,7 @@ static const int unusedIllustratedBookArray[] = { 0, 0, 0 }; * @note Size: 0x1D0 */ ColorSetting::ColorSetting() - : CNode("FÝ’è") + : CNode("色設定") { mColorListA[0][0] = Color4(88, 91, 153, 255); mColorListA[0][1] = Color4(64, 64, 64, 255); @@ -721,7 +721,7 @@ void ColorSetting::update() PositionParms::PositionParms() : CNode(mEnemyName) { - sprintf(mEnemyName, "oŒ»êŠ–¼"); // 'appearance location name' + sprintf(mEnemyName, "出ç¾å ´æ‰€å"); // 'appearance location name' } /** @@ -739,7 +739,7 @@ void PositionParms::read(Stream& stream) * @note Size: 0xBC */ PositionParmsList::PositionParmsList() - : CNode("oŒ»ˆÊ’uƒŠƒXƒg") + : CNode("出ç¾ä½ç½®ãƒªã‚¹ãƒˆ") { for (u32 i = 0; i < 10; i++) { add(&mParms[i]); @@ -788,7 +788,7 @@ void EnemyParms::read(Stream& stream) * @note Size: 0xD0 */ EnemyModeParms::EnemyModeParms(PositionParmsList* list) - : CNode("“G}ŠÓ") // 'enemy encyclopedia' + : CNode("敵図鑑") // 'enemy encyclopedia' { for (int i = 0; i < EnemyTypeID::EnemyID_COUNT; i++) { mEnemyParms[i].mName = EnemyInfoFunc::getEnemyName(i, 0xFFFF); @@ -815,7 +815,7 @@ void EnemyModeParms::read(Stream& stream) * @note Size: 0x148 */ ItemParms::ItemParms() - : CNode("Ý’è") // 'setting' + : CNode("設定") // 'setting' { mIndex = -1; } @@ -836,7 +836,7 @@ void ItemParms::read(Stream& stream) * @note Size: 0x118 */ ItemModeParms::ItemModeParms(PositionParmsList* list) - : CNode("‚¨•ó}ŠÓ") // 'treasure book' + : CNode("ãŠå®å›³é‘‘") // 'treasure book' { mItemCount = SingleGame::ZukanState::getMaxPelletID(); mItemParms = new ItemParms[mItemCount]; @@ -866,7 +866,7 @@ void ItemModeParms::read(Stream& stream) * @note Size: 0x29C */ Parms::Parms() - : CNode("}ŠÓÝ’è") // 'picture book setting' + : CNode("図鑑設定") // 'picture book setting' , mEnemyParms(&mPosParmsList) , mItemParms(&mPosParmsList) { diff --git a/src/plugProjectYamashitaU/timeMgr.cpp b/src/plugProjectYamashitaU/timeMgr.cpp index 9d778f930..6e01f5b8a 100644 --- a/src/plugProjectYamashitaU/timeMgr.cpp +++ b/src/plugProjectYamashitaU/timeMgr.cpp @@ -10,7 +10,7 @@ namespace Game { * @note Size: 0x90 */ TimeMgr::TimeMgr() - : CNode("ƒ^ƒCƒ€ƒ}ƒl[ƒWƒƒ") + : CNode("タイムマãƒãƒ¼ã‚¸ãƒ£") , mSpeedFactor(1.0f) { init(); diff --git a/src/plugProjectYamashitaU/treasureLightMgr.cpp b/src/plugProjectYamashitaU/treasureLightMgr.cpp index af4ce53f3..beb0daf16 100644 --- a/src/plugProjectYamashitaU/treasureLightMgr.cpp +++ b/src/plugProjectYamashitaU/treasureLightMgr.cpp @@ -11,17 +11,17 @@ namespace TreasureLight { * @note Size: 0x150 */ Mgr::Mgr() - : LightMgr("‚¨•óƒ‰ƒCƒg") + : LightMgr("ãŠå®ãƒ©ã‚¤ãƒˆ") { mRotationAngle = 300.0f; mElevationAngle = 330.0f; - mMainLight = new LightObj("ƒƒCƒ“ƒ‰ƒCƒg", GX_LIGHT0, TYPE_Spot, JUtility::TColor(0xFF, 0xFF, 0xFF, 0xFF)); + mMainLight = new LightObj("メインライト", GX_LIGHT0, TYPE_Spot, JUtility::TColor(0xFF, 0xFF, 0xFF, 0xFF)); mMainLight->mSpotFn = 3; mMainLight->mElevation = Vector3f(0.0f, -1.0f, 0.0f); registLightObj(mMainLight); - mSpecLight = new LightObj("ƒXƒyƒLƒ…ƒ‰-ƒ‰ƒCƒg", GX_LIGHT7, TYPE_Spec, JUtility::TColor(0xFF, 0xFF, 0xFF, 0xFF)); + mSpecLight = new LightObj("スペキュラ-ライト", GX_LIGHT7, TYPE_Spec, JUtility::TColor(0xFF, 0xFF, 0xFF, 0xFF)); mSpecLight->mKScale = 40.0f; registLightObj(mSpecLight); @@ -60,22 +60,22 @@ void Mgr::set(Matrixf& mtx) * Credits: Altafen * * https://en.wikipedia.org/wiki/Spherical_coordinate_system - * You can convert an angle ƒÆ to its position on a circle of radius r: - * x = r * cos(ƒÆ) - * y = r * sin(ƒÆ) + * You can convert an angle θ to its position on a circle of radius r: + * x = r * cos(θ) + * y = r * sin(θ) * * So now imagine a line going in the direction of the 2D angle * where y is now height, x is now how far away it is from the center pole * - * height = r * sin(ƒÆ) - * distance = r * cos(ƒÆ) + * height = r * sin(θ) + * distance = r * cos(θ) * * Since the 2D x/y have to shrink a bit as the sphere gets smaller the higher you go, * use distance as the radius before putting them in the 2D equations, and you get * - * x = (r * cos(ƒÆ)) * cos(ƒÆ) - * y = (r * cos(ƒÆ)) * sin(ƒÆ) - * z = r * sin(ƒÆ) + * x = (r * cos(θ)) * cos(θ) + * y = (r * cos(θ)) * sin(θ) + * z = r * sin(θ) */ void Mgr::setCommonProc() { diff --git a/src/sysGCU/THPPlayer.c b/src/sysGCU/THPPlayer.c index 24530b87e..df0936581 100644 --- a/src/sysGCU/THPPlayer.c +++ b/src/sysGCU/THPPlayer.c @@ -467,7 +467,7 @@ BOOL THPPlayerPrepare(int frame, u8 flag, int audioTrack) OldVIPostCallback = VISetPostRetraceCallback(PlayControl); - OSReport("THPPlayerPrepare()I—¹\n"); // 'THPPlayerPrepare end' + OSReport("THPPlayerPrepare()終了\n"); // 'THPPlayerPrepare end' return TRUE; } @@ -515,7 +515,7 @@ void THPPlayerStop() AudioDecodeThreadCancel(); audioQuitWithMSound(); - OSReport("ƒI[ƒfƒBƒIŠÖŒW‚ð‰Šú‰»\n"); // 'initialize audio-related information' + OSReport("オーディオ関係をåˆæœŸåŒ–\n"); // 'initialize audio-related information' } while (PopUsedTextureSet() != 0) { diff --git a/src/sysGCU/bootSection.cpp b/src/sysGCU/bootSection.cpp index ef31d2b25..7af1f1e4c 100644 --- a/src/sysGCU/bootSection.cpp +++ b/src/sysGCU/bootSection.cpp @@ -435,7 +435,7 @@ BootSection::BootSection(JKRHeap* heap) sBootSection = this; Game::HIORootNode* node = new Game::HIORootNode(this); - node->setName("ƒu[ƒgƒZƒNƒVƒ‡ƒ“"); + node->setName("ブートセクション"); initHIO(node); setDisplay(JFWDisplay::createManager(nullptr, mDisplayHeap, JUTXfb::DoubleBuffer, false), 1); @@ -1438,7 +1438,7 @@ void BootSection::updateLoadResourceFirst() // THIS IS ALL FOR DEMO 1 #if BUILDTARGET == USADEMO1 PSSystem::SceneMgr* mgr = PSSystem::getSceneMgr(); - PSSystem::checkSceneMgr(mgr); + PSSystem::validateSceneMgr(mgr); PSM::Scene_Global* scene = static_cast(mgr->mScenes); P2ASSERTLINE(1723, scene); scene->startGlobalStream(P2_STREAM_SOUND_ID(PSSTR_PIKMIN_GREET)); diff --git a/src/sysGCU/captionMgr.cpp b/src/sysGCU/captionMgr.cpp index 6ccb1772d..aa0df508a 100644 --- a/src/sysGCU/captionMgr.cpp +++ b/src/sysGCU/captionMgr.cpp @@ -34,7 +34,7 @@ void Caption::Node::read(Stream& input) * __ct */ Caption::Mgr::Mgr() - : CNode("ƒLƒƒƒvƒVƒ‡ƒ“ƒ}ƒl[ƒWƒƒ") + : CNode("キャプションマãƒãƒ¼ã‚¸ãƒ£") { mNode = nullptr; _20[0] = 0; diff --git a/src/sysGCU/dvdErrorMessage.cpp b/src/sysGCU/dvdErrorMessage.cpp index 4458feed9..b017ec420 100644 --- a/src/sysGCU/dvdErrorMessage.cpp +++ b/src/sysGCU/dvdErrorMessage.cpp @@ -2,142 +2,64 @@ #include "DvdStatus.h" -#define DEM_REMOVE_CONST_CHAR(arr) const_cast(arr) -#define DEM_REMOVE_CONST_U32(arr) const_cast(arr) -#define DEM_U32_TO_CHAR(arr) reinterpret_cast(DEM_REMOVE_CONST_U32(arr)) - -// Japanese - -const extern u32 DEM_JPN_Loading[] = { 0x82E682DD, 0x8D9E82DD, 0x928682C5, 0x82B78142, 0x00000000 }; - -const extern u32 DEM_JPN_Error[] - = { 0x83478389, 0x815B82AA, 0x94AD90B6, 0x82B582DC, 0x82B582BD, 0x81420A96, 0x7B91CC82, 0xCC837083, 0x8F815B83, 0x7B835E83, - 0x9382F089, 0x9F82B582, 0xC493648C, 0xB982F00A, 0x4F464682, 0xC982B581, 0x41967B91, 0xCC82CC82, 0xC682E882, 0xA082C282, - 0xA982A290, 0xE096BE8F, 0x9182CC0A, 0x8E778EA6, 0x82C982B5, 0x82BD82AA, 0x82C182C4, 0x82AD82BE, 0x82B382A2, 0x81420000 }; - -const extern u32 DEM_JPN_DiscReadFail[] = { 0x83668342, 0x8358834E, 0x82F082E6, 0x82DF82DC, 0x82B982F1, 0x82C582B5, 0x82BD8142, 0x0A82AD82, - 0xED82B582, 0xAD82CD81, 0x41967B91, 0xCC82CC82, 0xC682E882, 0xA082C282, 0xA982A290, 0xE096BE8F, - 0x9182F00A, 0x82A882E6, 0x82DD82AD, 0x82BE82B3, 0x82A28142, 0x00000000 }; - -const extern u32 DEM_JPN_DiscAskInsert[] = { 0x8373834E, 0x837E8393, 0x825182CC, 0x83668342, 0x8358834E, 0x82F0835A, - 0x83628367, 0x82B582C4, 0x0A82AD82, 0xBE82B382, 0xA2814200 }; - -const extern u32 DEM_JPN_DiscCoverOpen[] = { - 0x83668342, 0x8358834E, 0x834A836F, 0x815B82AA, 0x8A4A82A2, 0x82C482A2, 0x82DC82B7, 0x81420A83, 0x51815B83, 0x8082F091, 0xB182AF82, - 0xE98FEA8D, 0x8782CD81, 0x41836683, 0x42835883, 0x4E834A83, 0x6F815B82, 0xF00A95C2, 0x82DF82C4, 0x82AD82BE, 0x82B382A2, 0x81420000, -}; - -// English - -const extern char DEM_ENG_Loading[] = { "Now loading." }; - -const extern char DEM_ENG_Error[] = { "An error has occurred.Turn the \npower off and refer to the " - "\nNintendo GameCube Instruction \nBooklet for further instructions." }; - -const extern char DEM_ENG_DiscReadFail[] = { "The Game Disc could not be read.\nPlease read the Nintendo \nGameCube " - "Instruction Booklet \nfor more information." }; - -const extern char DEM_ENG_DiscAskInsert[] = { "Please insert the PIKMIN 2 \nGame Disc." }; - -const extern char DEM_ENG_DiscCoverOpen[] = { "The Disc Cover is open. If you \nwant to continue the game, \nplease " - "close the Disc Cover." }; - -// German - -const extern char DEM_GER_Loading[] = { "\xF6Now loading." }; - -const extern char DEM_GER_Error[] = { "Ein Fehler ist aufgetreten.\nBitte schalten Sie den NINTENDO GAMECUBE " - "aus und lesen Sie die Bedienungsanleitung, um weitere Informationen " - "zu erhalten." }; - -const extern char DEM_GER_DiscReadFail[] = { "Diese Game Disc kann nicht gelesen werden.\nBitte lesen Sie die " - "Bedienungsanleitung, um weitere Informationen zu erhalten." }; - -const extern char DEM_GER_DiscAskInsert[] = { "Bitte legen Sie die PIKMIN 2 Game Disc ein." }; - -/** - * Der Disc-Deckel ist ge?¿½FFnet. - * Bitte den Disc-Deckel schlie?¿½en, - * um mit dem Spiel fortzufahren. - */ -const extern u32 DEM_GER_DiscCoverOpen[] - = { 0x44657220, 0x44697363, 0x2D446563, 0x6B656C20, 0x69737420, 0x6765F646, 0x466E6574, 0x2E0A4269, - 0x74746520, 0x64656E20, 0x44697363, 0x2D446563, 0x6B656C20, 0x7363686C, 0x6965DF65, 0x6E2C0A75, - 0x6D206D69, 0x74206465, 0x6D205370, 0x69656C20, 0x666F7274, 0x7A756661, 0x6872656E, 0x2E000000 }; - -// French - -const extern u32 DEM_FRA_Error[] - = { 0x556E6520, 0x65727265, 0x75722065, 0x73742073, 0x75727665, 0x6E75652E, 0x0A457465, 0x69676E65, 0x7A206C61, - 0x20636F6E, 0x736F6C65, 0x20657420, 0x72E966E9, 0x72657A2D, 0x766F7573, 0x20617520, 0x6D616E75, 0x656C2064, - 0x27696E73, 0x74727563, 0x74696F6E, 0x73204E49, 0x4E54454E, 0x444F2047, 0x414D4543, 0x55424520, 0x706F7572, - 0x20646520, 0x706C7573, 0x20616D70, 0x6C657320, 0x696E666F, 0x726D6174, 0x696F6E73, 0x2E000000 }; - -const extern u32 DEM_FRA_DiscReadFail[] = { 0x4C61206C, 0x65637475, 0x72652064, 0x75206469, 0x73717565, 0x206120E9, 0x63686F75, - 0xE92E0A56, 0x6575696C, 0x6C657A20, 0x766F7573, 0x2072E966, 0xE9726572, 0x20617520, - 0x6D616E75, 0x656C2064, 0x27696E73, 0x74727563, 0x74696F6E, 0x73204E49, 0x4E54454E, - 0x444F2047, 0x414D4543, 0x55424520, 0x706F7572, 0x20646520, 0x706C7573, 0x20616D70, - 0x6C657320, 0x696E666F, 0x726D6174, 0x696F6E73, 0x2E000000 }; - -const extern u32 DEM_FRA_DiscAskInsert[] - = { 0x56657569, 0x6C6C657A, 0x20696E73, 0xE9726572, 0x206C6520, 0x64697371, 0x75652050, 0x494B4D49, 0x4E20322E, 0x00000000 }; - -const extern u32 DEM_FRA_DiscCoverOpen[] - = { 0x4C652063, 0x6F757665, 0x72636C65, 0x20657374, 0x206F7576, 0x6572742E, 0x0A506F75, 0x7220636F, 0x6E74696E, 0x75657220, - 0xE0206A6F, 0x7565722C, 0x0A766575, 0x696C6C65, 0x7A206665, 0x726D6572, 0x206C6520, 0x636F7576, 0x6572636C, 0x652E0000 }; - -// Spanish - -const extern char DEM_SPA_Error[] = { "Se ha producido un error.\nApaga la consola y consulta el manual de " - "instrucciones de NINTENDO GAMECUBE para obtener mas informacion." }; - -const extern u32 DEM_SPA_DiscReadFail[] - = { 0x4E6F2073, 0x65207075, 0x65646520, 0x6C656572, 0x20656C20, 0x64697363, 0x6F2E0A43, 0x6F6E7375, 0x6C746120, 0x656C206D, - 0x616E7561, 0x6C206465, 0x20696E73, 0x74727563, 0x63696F6E, 0x65732064, 0x65204E49, 0x4E54454E, 0x444F2047, 0x414D4543, - 0x55424520, 0x70617261, 0x206F6274, 0x656E6572, 0x206DE173, 0x20696E66, 0x6F726D61, 0x6369D36E, 0x2E000000 }; - -const extern char DEM_SPA_DiscAskInsert[] = { "Coloca el disco de PIKMIN 2." }; - -const extern char DEM_SPA_DiscCoverOpen[] = { "La tapa esta abierta. \nSi quieres seguir jugando, debes cerrar la tapa." }; - -// Italian - -const extern u32 DEM_ITA_Error[] - = { 0x536920E8, 0x20766572, 0x69666963, 0x61746F20, 0x756E2065, 0x72726F72, 0x652E0A53, 0x7065676E, 0x6920284F, 0x46462920, 0x6520636F, - 0x6E74726F, 0x6C6C6120, 0x696C206D, 0x616E7561, 0x6C652064, 0x27697374, 0x72757A69, 0x6F6E6920, 0x64656C20, 0x4E494E54, 0x454E444F, - 0x2047414D, 0x45435542, 0x45207065, 0x7220756C, 0x74657269, 0x6F726920, 0x696E6469, 0x63617A69, 0x6F6E692E, 0x00000000 }; - -const extern char DEM_ITA_DiscReadFail[] = { "Impossibile leggere il disco di gioco.\nConsulta il manuale " - "d'istruzioni del NINTENDO GAMECUBE per ulteriori indicazioni." }; - -const extern char DEM_ITA_DiscAskInsert[] = { "Inserisci il disco di gioco PIKMIN 2." }; - -const extern char DEM_ITA_DiscCoverOpen[] = { "Il coperchio del disco e aperto.\nSe vuoi proseguire nel gioco, " - "chiudi il coperchio del disco." }; - -namespace DvdError { -char* gMessage_jpn[] - = { DEM_U32_TO_CHAR(DEM_JPN_Loading), DEM_U32_TO_CHAR(DEM_JPN_Error), DEM_U32_TO_CHAR(DEM_JPN_DiscReadFail), - DEM_U32_TO_CHAR(DEM_JPN_DiscAskInsert), DEM_U32_TO_CHAR(DEM_JPN_DiscCoverOpen), DEM_U32_TO_CHAR(DEM_JPN_DiscAskInsert) }; - -char* gMessage_eng[] = { DEM_REMOVE_CONST_CHAR(DEM_ENG_Loading), DEM_REMOVE_CONST_CHAR(DEM_ENG_Error), - DEM_REMOVE_CONST_CHAR(DEM_ENG_DiscReadFail), DEM_REMOVE_CONST_CHAR(DEM_ENG_DiscAskInsert), - DEM_REMOVE_CONST_CHAR(DEM_ENG_DiscCoverOpen), DEM_REMOVE_CONST_CHAR(DEM_ENG_DiscAskInsert) }; - -char* gMessage_ger[] = { DEM_REMOVE_CONST_CHAR(DEM_GER_Loading), DEM_REMOVE_CONST_CHAR(DEM_GER_Error), - DEM_REMOVE_CONST_CHAR(DEM_GER_DiscReadFail), DEM_REMOVE_CONST_CHAR(DEM_GER_DiscAskInsert), - DEM_U32_TO_CHAR(DEM_GER_DiscCoverOpen), DEM_REMOVE_CONST_CHAR(DEM_GER_DiscAskInsert) }; - -char* gMessage_fra[] - = { DEM_REMOVE_CONST_CHAR(DEM_ENG_Loading), DEM_U32_TO_CHAR(DEM_FRA_Error), DEM_U32_TO_CHAR(DEM_FRA_DiscReadFail), - DEM_U32_TO_CHAR(DEM_FRA_DiscAskInsert), DEM_U32_TO_CHAR(DEM_FRA_DiscCoverOpen), DEM_U32_TO_CHAR(DEM_FRA_DiscAskInsert) }; - -char* gMessage_spa[] = { DEM_REMOVE_CONST_CHAR(DEM_ENG_Loading), DEM_REMOVE_CONST_CHAR(DEM_SPA_Error), - DEM_U32_TO_CHAR(DEM_SPA_DiscReadFail), DEM_REMOVE_CONST_CHAR(DEM_SPA_DiscAskInsert), - DEM_REMOVE_CONST_CHAR(DEM_SPA_DiscCoverOpen), DEM_REMOVE_CONST_CHAR(DEM_SPA_DiscAskInsert) }; - -char* gMessage_ita[] = { DEM_REMOVE_CONST_CHAR(DEM_ENG_Loading), DEM_U32_TO_CHAR(DEM_ITA_Error), - DEM_REMOVE_CONST_CHAR(DEM_ITA_DiscReadFail), DEM_REMOVE_CONST_CHAR(DEM_ITA_DiscAskInsert), - DEM_REMOVE_CONST_CHAR(DEM_ITA_DiscCoverOpen), DEM_REMOVE_CONST_CHAR(DEM_ITA_DiscAskInsert) }; +namespace DvdError +{ + char *gMessage_jpn[] = { + "よã¿è¾¼ã¿ä¸­ã§ã™ã€‚", + "エラーãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚\n本体ã®ãƒ‘ワーボタンを押ã—ã¦é›»æºã‚’\nOFFã«ã—ã€æœ¬ä½“ã®ã¨ã‚Šã‚ã¤ã‹ã„説明書ã®\n指示ã«ã—ãŸãŒã£ã¦ãã ã•ã„。", + "ディスクをよã‚ã¾ã›ã‚“ã§ã—ãŸã€‚\nãã‚ã—ãã¯ã€æœ¬ä½“ã®ã¨ã‚Šã‚ã¤ã‹ã„説明書を\nãŠã‚ˆã¿ãã ã•ã„。", + "ピクミン2ã®ãƒ‡ã‚£ã‚¹ã‚¯ã‚’セットã—ã¦\nãã ã•ã„。", + "ディスクカãƒãƒ¼ãŒé–‹ã„ã¦ã„ã¾ã™ã€‚\nゲームを続ã‘ã‚‹å ´åˆã¯ã€ãƒ‡ã‚£ã‚¹ã‚¯ã‚«ãƒãƒ¼ã‚’\né–‰ã‚ã¦ãã ã•ã„。", + "ピクミン2ã®ãƒ‡ã‚£ã‚¹ã‚¯ã‚’セットã—ã¦\nãã ã•ã„。", + }; + + char *gMessage_eng[] = { + "Now loading.", + "An error has occurred.Turn the \npower off and refer to the " + "\nNintendo GameCube Instruction \nBooklet for further instructions.", + "The Game Disc could not be read.\nPlease read the Nintendo \nGameCube Instruction Booklet \nfor more information.", + "Please insert the PIKMIN 2 \nGame Disc.", + "The Disc Cover is open. If you \nwant to continue the game, \nplease close the Disc Cover.", + "Please insert the PIKMIN 2 \nGame Disc.", + }; + + char *gMessage_ger[] = { + "\xF6Now loading.", + "Ein Fehler ist aufgetreten.\nBitte schalten Sie den NINTENDO GAMECUBE " + "aus und lesen Sie die Bedienungsanleitung, um weitere Informationen " + "zu erhalten.", + "Diese Game Disc kann nicht gelesen werden.\nBitte lesen Sie die " + "Bedienungsanleitung, um weitere Informationen zu erhalten.", + "Bitte legen Sie die PIKMIN 2 Game Disc ein.", + "Der Disc-Deckel ist ge\xF6""FFnet.\nBitte den Disc-Deckel schlie\xDF""en,\num mit dem Spiel fortzufahren.", + "Bitte legen Sie die PIKMIN 2 Game Disc ein.", + }; + + char *gMessage_fra[] = { + "Now loading.", + "Une erreur est survenue.\nEteignez la console et r\xE9""f\xE9rez-vous au manuel d'instructions NINTENDO GAMECUBE pour de plus amples informations.", + "La lecture du disque a \xE9""chou\xE9.\nVeuillez vous r\xE9""f\xE9rer au manuel d'instructions NINTENDO GAMECUBE pour de plus amples informations.", + "Veuillez ins\xE9rer le disque PIKMIN 2.", + "Le couvercle est ouvert.\nPour continuer \xE0 jouer,\nveuillez fermer le couvercle.", + "Veuillez ins\xE9rer le disque PIKMIN 2.", + }; + + char *gMessage_spa[] = { + "Now loading.", + "Se ha producido un error.\nApaga la consola y consulta el manual de instrucciones de NINTENDO GAMECUBE para obtener mas informacion.", + "No se puede leer el disco.\nConsulta el manual de instrucciones de NINTENDO GAMECUBE para obtener m\xE1s informaci\xD3n.", + "Coloca el disco de PIKMIN 2.", + "La tapa esta abierta. \nSi quieres seguir jugando, debes cerrar la tapa.", + "Coloca el disco de PIKMIN 2.", + }; + + char *gMessage_ita[] = { + "Now loading.", + "Si \xE8 verificato un errore.\nSpegni (OFF) e controlla il manuale d'istruzioni del NINTENDO GAMECUBE per ulteriori indicazioni.", + "Impossibile leggere il disco di gioco.\nConsulta il manuale d'istruzioni del NINTENDO GAMECUBE per ulteriori indicazioni.", + "Inserisci il disco di gioco PIKMIN 2.", + "Il coperchio del disco e aperto.\nSe vuoi proseguire nel gioco, chiudi il coperchio del disco.", + "Inserisci il disco di gioco PIKMIN 2.", + }; } // namespace DvdError diff --git a/src/sysGCU/fogMgr.cpp b/src/sysGCU/fogMgr.cpp index 37469140f..26dcb802e 100644 --- a/src/sysGCU/fogMgr.cpp +++ b/src/sysGCU/fogMgr.cpp @@ -15,7 +15,7 @@ * @note Size: 0x74 */ FogMgr::FogMgr() - : CNode("ƒtƒHƒOƒ}ƒl[ƒWƒƒ") + : CNode("フォグマãƒãƒ¼ã‚¸ãƒ£") , mType(GX_FOG_LINEAR) , mNearZ(640.0f) , mFarZ(3024.0f) diff --git a/src/sysGCU/light.cpp b/src/sysGCU/light.cpp index c024d523c..864c5744d 100644 --- a/src/sysGCU/light.cpp +++ b/src/sysGCU/light.cpp @@ -172,8 +172,8 @@ void LightObj::drawPos(Graphics& gfx, Matrixf& transformationMtx) */ LightMgr::LightMgr(char* name) : CNode(name) - , mAmbientLight("ƒAƒ“ƒrƒGƒ“ƒgƒ‰ƒCƒg") - , mLightObjChain("ƒ‰ƒCƒg") + , mAmbientLight("アンビエントライト") + , mLightObjChain("ライト") , mLightCount(0) { add(&mAmbientLight); diff --git a/src/sysGCU/memoryCard.cpp b/src/sysGCU/memoryCard.cpp index 5597d3804..2e12aa01b 100644 --- a/src/sysGCU/memoryCard.cpp +++ b/src/sysGCU/memoryCard.cpp @@ -1268,7 +1268,7 @@ s32 MemoryCardMgr::checkSpace(ECardSlot cardSlot, int requiredSpace) void MemoryCardMgr::doMakeHeader(u8* header) { OSCalendarTime calendar; - snprintf((char*)header + 0x1c00, 0x20, "ƒsƒNƒ~ƒ“‚Q@ƒZ[ƒuƒf[ƒ^"); + snprintf((char*)header + 0x1c00, 0x20, "ピクミン2 セーブデータ "); OSTime osTime = OSGetTime(); OSTicksToCalendarTime(osTime, &calendar); snprintf((char*)header + 0x1c20, 0x20, "%04d/%02d/%02d %02d:%02d:%02d", calendar.year, calendar.mon + 1, calendar.mday, calendar.hour, diff --git a/src/sysGCU/messageMgr.cpp b/src/sysGCU/messageMgr.cpp index 68d7005c5..efc0c4c5d 100644 --- a/src/sysGCU/messageMgr.cpp +++ b/src/sysGCU/messageMgr.cpp @@ -162,9 +162,9 @@ void Mgr::setupFont(char const* path, JKRExpHeap* heap) P2ASSERTLINE(378, mFont->mIsValid); static_cast(mFont)->mPagingType = JUTCacheFont::CFPAGETYPE_Unk1; - static_cast(mFont)->loadCache_string("\t‚ ‚¢‚¤‚¦‚¨‚©‚«‚­‚¯‚±‚³‚µ‚·‚¹‚»‚½‚¿‚·‚ĂƂȂɂʂ˂̂͂Ђ·‚Ö‚Ù‚Ü‚Ý‚Þ‚ß‚à‚â‚ä‚æ" - "‚í‚ñ\tƒAƒCƒEƒGƒIƒJƒLƒNƒPƒRƒTƒVƒXƒZƒ\\ƒ^ƒ`ƒcƒeƒgƒi" - "ƒjƒkƒlƒmƒnƒqƒtƒwƒzƒ}ƒ~ƒ€ƒƒ‚ƒ„ƒ†ƒˆƒƒ“\t", + static_cast(mFont)->loadCache_string("\tã‚ã„ã†ãˆãŠã‹ããã‘ã“ã•ã—ã™ã›ããŸã¡ã™ã¦ã¨ãªã«ã¬ã­ã®ã¯ã²ã™ã¸ã»ã¾ã¿ã‚€ã‚もやゆよ" + "ã‚ã‚“\tアイウエオカキクケコサシスセソ\ã‚¿ãƒãƒ„テトナ" + "ニヌãƒãƒŽãƒãƒ’フヘホマミムメモヤユヨワン\t", true); // this is just all the characters in the japanese font sheet lol delete file; fontarc->unmount(); @@ -233,10 +233,10 @@ void Mgr::setupMessageResource(JKRArchive* arc, char const* path) P2ASSERTLINE(474, file); sys->heapStatusEnd("bmg"); - sys->heapStatusStart("ƒƒbƒZ[ƒW‚̃p[ƒX", nullptr); // "Message Parsing" + sys->heapStatusStart("メッセージã®ãƒ‘ース", nullptr); // "Message Parsing" JMessage::TParse parse(mResContainer); P2ASSERTLINE(484, parse.parse(file, 0)); - sys->heapStatusEnd("ƒƒbƒZ[ƒW‚̃p[ƒX"); // "Message Parsing" + sys->heapStatusEnd("メッセージã®ãƒ‘ース"); // "Message Parsing" } /** @@ -248,11 +248,11 @@ bool Mgr::setupColor(JKRArchive* arc, char const* path) const void* file = arc->getResource(path); P2ASSERTLINE(501, file); - sys->heapStatusStart("ƒƒbƒZ[ƒWƒJƒ‰[‚̃p[ƒX", nullptr); // "Message Parsing" + sys->heapStatusStart("メッセージカラーã®ãƒ‘ース", nullptr); // "Message Parsing" JMessage::TParse_color parse(mResContainer); bool success = parse.parse(file, 0x20); P2ASSERTLINE(510, success); - sys->heapStatusEnd("ƒƒbƒZ[ƒWƒJƒ‰[‚̃p[ƒX"); // "Message Parsing" + sys->heapStatusEnd("メッセージカラーã®ãƒ‘ース"); // "Message Parsing" return success; } diff --git a/src/sysGCU/messageObj.cpp b/src/sysGCU/messageObj.cpp index cc1f2b42d..8cb27abdf 100644 --- a/src/sysGCU/messageObj.cpp +++ b/src/sysGCU/messageObj.cpp @@ -65,23 +65,23 @@ bool TControl::setRubyFont(JUTFont* font) */ bool TControl::init() { - sys->heapStatusStart("JMessageŽÀ‘•ƒNƒ‰ƒX", nullptr); + sys->heapStatusStart("JMessage実装クラス", nullptr); createReference(); createResourceContainer(); createSequenceProcessor(); createRenderingProcessor(); - sys->heapStatusEnd("JMessageŽÀ‘•ƒNƒ‰ƒX"); + sys->heapStatusEnd("JMessage実装クラス"); mReference->mResource = mResContainer; mBaseProcSeq = mSequenceProc; mBaseProcRender = mTextRenderProc; - sys->heapStatusStart("ŒÂ•Ê‰Šú‰»", nullptr); // "Individual Initialization" + sys->heapStatusStart("個別åˆæœŸåŒ–", nullptr); // "Individual Initialization" bool ret = false; if (onInit()) { ret = true; } - sys->heapStatusEnd("ŒÂ•Ê‰Šú‰»"); + sys->heapStatusEnd("個別åˆæœŸåŒ–"); return ret; } diff --git a/src/sysGCU/messageReference.cpp b/src/sysGCU/messageReference.cpp index 44b5bde62..5ab3f3486 100644 --- a/src/sysGCU/messageReference.cpp +++ b/src/sysGCU/messageReference.cpp @@ -15,7 +15,7 @@ char* TReference::do_word(u32 arg) const frm++; if (arg == 0) { - return "ƒeƒXƒg"; + return "テスト"; } sprintf(str, "%d", frm); return str; diff --git a/src/sysGCU/modelMgr.cpp b/src/sysGCU/modelMgr.cpp index eac3f7c91..f237d5ac1 100644 --- a/src/sysGCU/modelMgr.cpp +++ b/src/sysGCU/modelMgr.cpp @@ -9,7 +9,7 @@ * @note Address: N/A * @note Size: 0xE4 */ -void _Print(char* name, ...) { OSReport("modelMgr"); } +static void _Print(char* name, ...) { OSReport("modelMgr"); } namespace SysShape { diff --git a/src/sysGCU/moviePlayer.cpp b/src/sysGCU/moviePlayer.cpp index 5d5668eb5..a3bccedff 100644 --- a/src/sysGCU/moviePlayer.cpp +++ b/src/sysGCU/moviePlayer.cpp @@ -150,7 +150,7 @@ int MoviePlayer::play(MovieConfig* config, MoviePlayArg& arg, bool flag) // if a movie is already playing, put the new cutscene in the queue instead MovieContext* context = getNewContext(); if (!context) { - JUT_PANICLINE(560, "******* šƒLƒ…[‚É‚Í‚¢‚è‚«‚ç‚ñ‚æ`II\n"); // "******* šDon't miss the queue! !" + JUT_PANICLINE(560, "******* ★キューã«ã¯ã„ã‚Šãらんよ~ï¼ï¼\n"); // "******* ★It won't fit in the queue!!" return MOVIEPLAY_QUEUEFAIL; } else { setContext(context, config, arg); @@ -366,7 +366,7 @@ void MoviePlayer::getSuspendedContext() // return false; } } else { - JUT_PANICLINE(772, " ƒLƒ…[‚É‚È‚É‚à‚È‚¢‚¼[[(T^T)\n"); // "there's nothing in the queue (T^T)" + JUT_PANICLINE(772, " キューã«ãªã«ã‚‚ãªã„ãžãƒ¼ãƒ¼(T^T)\n"); // "There's nothing in the queue (T^T)\n" } } @@ -456,9 +456,9 @@ void MoviePlayer::loadResource() sys->heapStatusStart("stb", nullptr); if (mArchive) { mStbFile = mArchive->getResource("demo.stb"); - JUT_ASSERTLINE(954, mStbFile, "‚Ü‚À‚©‚—\n"); // "Really? w" + JUT_ASSERTLINE(954, mStbFile, "ã¾ã¢ã‹ï½—\n"); // "Seriously?" } else { - JUT_PANICLINE(957, "demo.szs ‚ª‚È‚¢‚Æ‚¾‚ß‚¾‚æ‚—\n"); // "It's useless without it w" + JUT_PANICLINE(957, "demo.szs ãŒãªã„ã¨ã ã‚ã ã‚ˆï½—\n"); // "It's no good without it lol\n" } JUT_ASSERTLINE(960, mStbFile, "resource open failed!\n"); sys->heapStatusEnd("stb"); @@ -486,7 +486,7 @@ bool MoviePlayer::parse(bool flag) const void* file = mStbFile; if (!parse.parse_next(&file, test)) { - JUT_PANICLINE(1004, "ƒf[ƒ^‚ð‰ðŽß‚Å‚«‚Ü‚µ‚¥‚ñ\n"); // "I can interpret the data" + JUT_PANICLINE(1004, "データを解釈ã§ãã¾ã—ã‡ã‚“\n"); // "I can interpret the data\n" return false; } else { mObjectSystem->reset(); @@ -620,7 +620,7 @@ bool MoviePlayer::update(Controller* input1, Controller* input2) return false; } } else { - JUT_PANICLINE(772, " ƒLƒ…[‚É‚È‚É‚à‚È‚¢‚¼[[(T^T)\n"); // "there's nothing in the queue (T^T)" + JUT_PANICLINE(772, " キューã«ãªã«ã‚‚ãªã„ãžãƒ¼ãƒ¼(T^T)\n"); // "There's nothing in the queue (T^T)\n" } return false; } else if (mDemoState == DEMOSTATE_Loading || mDemoState == DEMOSTATE_Fadeout) { diff --git a/src/sysGCU/pikmin2THPPlayer.cpp b/src/sysGCU/pikmin2THPPlayer.cpp index 9169ba1ae..03601db78 100644 --- a/src/sysGCU/pikmin2THPPlayer.cpp +++ b/src/sysGCU/pikmin2THPPlayer.cpp @@ -11,7 +11,7 @@ namespace Game { namespace { -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo static const THPPlayer::THPPlayerFileSettingTable sTHPPlayerFileSettingTable[12] = { { "/thp/opening1.thp", "/thp/opening1.ini", 0, THPPlayer::OPENING_GameStart }, { "/thp/opening2.thp", "/thp/opening2.ini", 0, THPPlayer::OPENING_PostDebtStart }, @@ -86,9 +86,9 @@ void THPPlayer::load(EMovieIndex movieIdx) idCheck = true; } -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo P2ASSERTLINE(233, idCheck); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa P2ASSERTLINE(227, idCheck); #endif @@ -99,9 +99,9 @@ void THPPlayer::load(EMovieIndex movieIdx) load(); -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo P2ASSERTLINE(241, data->mThpID < 12); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa P2ASSERTLINE(235, data->mThpID < 12); #endif @@ -117,9 +117,9 @@ void THPPlayer::load() mState = STATE_Load; if (!THPPlayerInit(0)) { -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo JUT_PANICLINE(253, "THPPlayerInit failure."); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa JUT_PANICLINE(247, "THPPlayerInit failure."); #endif } @@ -160,9 +160,9 @@ void THPPlayer::loadResource(const THPPlayerLoadResourceArg& loadArg) sys->heapStatusStart("THPPlayr_caption", nullptr); void* handle = JKRDvdRipper::loadToMainRAM(loadArg.mCaptionFileName, nullptr, Switch_0, 0, nullptr, JKRDvdRipper::ALLOC_DIR_TOP, 0, nullptr, nullptr); -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo JUT_ASSERTLINE(317, handle, "fail to open the caption file\n[%s]\n", loadArg.mCaptionFileName); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa JUT_ASSERTLINE(311, handle, "fail to open the caption file\n[%s]\n", loadArg.mCaptionFileName); #endif @@ -176,9 +176,9 @@ void THPPlayer::loadResource(const THPPlayerLoadResourceArg& loadArg) if (loadArg.mThpFileName != nullptr) { sys->heapStatusStart("THPPlayerOpen", nullptr); if (!THPPlayerOpen(loadArg.mThpFileName, FALSE)) { -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo JUT_PANICLINE(331, "Fail to open the thp file\n[%s]\n", loadArg.mThpFileName); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa JUT_PANICLINE(325, "Fail to open the thp file\n[%s]\n", loadArg.mThpFileName); #endif } @@ -214,9 +214,9 @@ void THPPlayer::prepare() data = new (0x20) u8[THPPlayerCalcNeedMemory()]; if (!data) { -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo OSPanic("pikmin2THPPlayer.cpp", 373, "Can\'t allocate the memory"); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa OSPanic("pikmin2THPPlayer.cpp", 367, "Can\'t allocate the memory"); #endif } @@ -229,9 +229,9 @@ void THPPlayer::prepare() } if (!THPPlayerPrepare(0, 0, audioTrack)) { -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo JUT_PANICLINE(403, "Fail to prepare\n"); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa JUT_PANICLINE(397, "Fail to prepare\n"); #endif } @@ -243,9 +243,9 @@ void THPPlayer::prepare() */ void THPPlayer::init(JKRHeap* heap) { -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo P2ASSERTLINE(413, !mHeap); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa P2ASSERTLINE(407, !mHeap); #endif @@ -254,9 +254,9 @@ void THPPlayer::init(JKRHeap* heap) heap->becomeCurrentHeap(); mHeap = JKRSolidHeap::create(0x300000, heap, true); -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo P2ASSERTLINE(424, mHeap); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa P2ASSERTLINE(418, mHeap); #endif currHeap->becomeCurrentHeap(); @@ -327,11 +327,12 @@ void THPPlayer::update() mCaptionMgr->update(_34); break; default: -#if VERNUM == 1 // demo +#if BUILDTARGET == USADEMO1 // demo JUT_PANICLINE(510, "Unknown State : %d \n", mState); -#elif VERNUM == 2 // usa +#elif BUILDTARGET == USAFINAL // usa JUT_PANICLINE(504, "Unknown State : %d \n", mState); #endif + break; } } diff --git a/src/sysGCU/reset.cpp b/src/sysGCU/reset.cpp index 9abbde97e..8bb3af2df 100644 --- a/src/sysGCU/reset.cpp +++ b/src/sysGCU/reset.cpp @@ -72,26 +72,26 @@ void ResetManager::update() } else { if (isWritingMemoryCard()) { - OSReport("\tƒƒ‚ƒŠ[ƒJ[ƒh‘‚«ž‚ÝI—¹‘Ò‚¿\n"); // Waiting for memory card write completion + OSReport("\tメモリーカード書ãè¾¼ã¿çµ‚了待ã¡\n"); // Waiting for memory card write completion } if (!isSoundSystemStopped()) { if (++mCounter == 3) { THPPlayerStop(); } - OSReport("\tƒI[ƒfƒBƒII—¹‘Ò‚¿\n"); // Waiting for Audio end + OSReport("\tオーディオ終了待ã¡\n"); // Waiting for Audio end } if (isFlag(RESETFLAG_GPProcessing)) { - OSReport("\tGPˆ—I—¹‘Ò‚¿\n"); // GP processing end waiting + OSReport("\tGP処ç†çµ‚了待ã¡\n"); // GP processing end waiting } if (OSGetResetSwitchState()) { - OSReport("\tƒŠƒZƒbƒgƒ{ƒ^ƒ“‚ª‰Ÿ‚³‚ê‚Ä‚¢‚é\n"); // Reset button pressed + OSReport("\tリセットボタンãŒæŠ¼ã•ã‚Œã¦ã„ã‚‹\n"); // Reset button pressed } if (!check) { - OSReport("‹–‰Â‚ªo‚Ä‚¢‚È‚¢\n"); // Permission Denied + OSReport("許å¯ãŒå‡ºã¦ã„ãªã„\n"); // Permission Denied } } } else { diff --git a/src/sysGCU/resourceMgr.cpp b/src/sysGCU/resourceMgr.cpp index aa899e21e..6cee3b92f 100644 --- a/src/sysGCU/resourceMgr.cpp +++ b/src/sysGCU/resourceMgr.cpp @@ -216,7 +216,7 @@ void MgrCommand::setModeInvalid() void MgrCommand::memoryCallBackFunc() { mCommandNode.mNode->mHeap->changeGroupID(mCommandNode.mNode->mHeapGroupID); - JUT_PANICLINE(343, "—L‚肦‚È‚¢ó‘Ô‚Å‚²‚´‚¢‚Ü‚· \n"); // This is an impossible situation. + JUT_PANICLINE(343, "有りãˆãªã„状態ã§ã”ã–ã„ã¾ã™ \n"); // This is an impossible situation. } /** diff --git a/src/sysGCU/screenMgr.cpp b/src/sysGCU/screenMgr.cpp index 439251149..c9d7e974a 100644 --- a/src/sysGCU/screenMgr.cpp +++ b/src/sysGCU/screenMgr.cpp @@ -354,7 +354,7 @@ MgrCommand* Mgr::getNewCommand() mAvailableCommands.add(command); OSUnlockMutex(&command->mMutex); } else { - JUT_PANICLINE(626, "yƒGƒ‰[zƒRƒ}ƒ“ƒhƒoƒbƒtƒ@‚ª‘«‚è‚Ü‚¹‚ñ\n"); // "[Error] Not enough command buffer" + JUT_PANICLINE(626, "ã€ã‚¨ãƒ©ãƒ¼ã€‘コマンドãƒãƒƒãƒ•ã‚¡ãŒè¶³ã‚Šã¾ã›ã‚“\n"); // "[Error] Not enough command buffer" } return command; } @@ -489,7 +489,7 @@ SceneBase* Mgr::getSceneBase(s32 type) mCurrHeap->becomeCurrentHeap(); SceneBase* scene = doGetSceneBase(type); backupheap->becomeCurrentHeap(); - JUT_ASSERTLINE(843, scene, "ƒV[ƒ“‚̶¬‚ÉŽ¸”s"); + JUT_ASSERTLINE(843, scene, "シーンã®ç”Ÿæˆã«å¤±æ•—"); scene->mController = mController; return scene; } diff --git a/src/sysGCU/sysShapeAnimation.cpp b/src/sysGCU/sysShapeAnimation.cpp index 3d2dfce6e..eb8c9fb13 100644 --- a/src/sysGCU/sysShapeAnimation.cpp +++ b/src/sysGCU/sysShapeAnimation.cpp @@ -11,8 +11,12 @@ #include "nans.h" namespace SysShape { -static const char BLAH_[] = "\0\0\0\0\0\0\0\0"; -static const char BLAH[] = "sysShapeModel"; + +static void strippedFunc() +{ + OSReport("\0\0\0\0\0\0\0\0\0\0\0"); + OSReport("sysShapeModel"); +} /** * @note Address: 0x8043DCDC diff --git a/src/sysGCU/sysTimers.cpp b/src/sysGCU/sysTimers.cpp index 12e9f07c6..a1476b78a 100644 --- a/src/sysGCU/sysTimers.cpp +++ b/src/sysGCU/sysTimers.cpp @@ -52,7 +52,7 @@ TimerInf::~TimerInf() { sys->mTimers->remove(this); } * @note Address: 0x8042AAA0 * @note Size: 0x38 */ -void SysTimers::reset() { JUT_PANICLINE(136, "—L‚肦‚È‚¢[@—L‚肦‚È‚¢\\ ƒUƒ}ƒVƒƒbƒNII\n"); } +void SysTimers::reset() { JUT_PANICLINE(136, "有りãˆãªã„ー 有りãˆãªã„―\ ザマシメックï¼ï¼\n"); } /** * @note Address: 0x8042AAD8 diff --git a/src/sysGCU/system.cpp b/src/sysGCU/system.cpp index 5189e3543..4eb213485 100644 --- a/src/sysGCU/system.cpp +++ b/src/sysGCU/system.cpp @@ -305,7 +305,7 @@ void preUserCallback(u16, OSContext*, u32, u32) JUTException::sConsole->startPrint(3, "--- Game debug information ---\n"); JUTConsoleManager::sManager->drawDirect(true); } else { - OSReport("ƒRƒ“ƒ\\[ƒ‹‚ª‚ ‚è‚Ü‚¹‚ñ\n"); // 'no console' + OSReport("コンソールãŒã‚ã‚Šã¾ã›ã‚“\n"); // 'no console' } } diff --git a/src/sysGCU/titleSection.cpp b/src/sysGCU/titleSection.cpp index 0ef555c15..1ffa0de10 100644 --- a/src/sysGCU/titleSection.cpp +++ b/src/sysGCU/titleSection.cpp @@ -110,7 +110,7 @@ void Section::init() sys->heapStatusStart("JMANewSinTable", nullptr); sys->heapStatusEnd("JMANewSinTable"); - initHIO(new HIORootNode(this, "ƒ^ƒCƒgƒ‹ƒZƒNƒVƒ‡ƒ“")); // "Title Section" + initHIO(new HIORootNode(this, "タイトルセクション")); // "Title Section" sys->heapStatusStart("frameBuffer", nullptr); setDisplay(JFWDisplay::createManager(nullptr, mDisplayHeap, JUTXfb::DoubleBuffer, false), 1); diff --git a/src/utilityU/PSMainSide_Demo.cpp b/src/utilityU/PSMainSide_Demo.cpp index 1453502c4..9a3ab6b52 100644 --- a/src/utilityU/PSMainSide_Demo.cpp +++ b/src/utilityU/PSMainSide_Demo.cpp @@ -37,7 +37,7 @@ inline void DemoInitiator::setDefaultValues() P2ASSERTLINE(41, isInitialized()); mASTid = -1; - strcpy(mBuffer, ""); + strcpy(mBuffer, "\0"); *mByte = -1; } @@ -66,7 +66,7 @@ void DemoInitiator::equalSetStream(const char* buffer, u32 AST_ID, u8 byte) P2ASSERTLINE(41, check); mASTid = AST_ID; - strcpy((char*)buffer, ""); + strcpy((char*)buffer, "\0"); *mByte = byte; } diff --git a/src/utilityU/PSMainSide_Factory.cpp b/src/utilityU/PSMainSide_Factory.cpp index 56a60598c..e62b9e427 100644 --- a/src/utilityU/PSMainSide_Factory.cpp +++ b/src/utilityU/PSMainSide_Factory.cpp @@ -2906,7 +2906,7 @@ PSSystem::BgmSeq* SceneMgr::newAutoBgm(const char* conductorFileName, const char scene->initTrackMap(*bgm); scene->initAndAdaptToBgm(*bgm); - PSAutoBgm::MeloArr_RandomAvoid* melo = new PSAutoBgm::MeloArr_RandomAvoid("—”ˆÊ’uAvoid"); // 'random position Avoid' + PSAutoBgm::MeloArr_RandomAvoid* melo = new PSAutoBgm::MeloArr_RandomAvoid("乱数ä½ç½®Avoid"); // 'random position Avoid' melo->_18 = true; bgm->mMeloArr.mList.append(melo); return bgm; diff --git a/src/utilityU/PSMainSide_ObjCalc.cpp b/src/utilityU/PSMainSide_ObjCalc.cpp index f0419ea98..f18ffe144 100644 --- a/src/utilityU/PSMainSide_ObjCalc.cpp +++ b/src/utilityU/PSMainSide_ObjCalc.cpp @@ -359,8 +359,8 @@ u8 ObjCalc_2PGame::getPlayerNo(PSM::Creature* obj) case OBJCALC_0: return obj->mGameObj->getSound_AILOD()->mSoundVPID; default: - JUT_PANICLINE(125, "‚ ‚肦‚È‚¢ƒP[ƒX1"); - JUT_PANICLINE(128, "‚ ‚肦‚È‚¢ƒP[ƒX2"); + JUT_PANICLINE(125, "ã‚ã‚Šãˆãªã„ケース1"); + JUT_PANICLINE(128, "ã‚ã‚Šãˆãªã„ケース2"); return 0; } } diff --git a/src/utilityU/PSMainSide_ObjSound.cpp b/src/utilityU/PSMainSide_ObjSound.cpp index 9d0f96b65..713d4ecef 100644 --- a/src/utilityU/PSMainSide_ObjSound.cpp +++ b/src/utilityU/PSMainSide_ObjSound.cpp @@ -605,7 +605,7 @@ void CreatureObj::startSound(u8 id, u32 soundID, u32 a3) */ void CreatureObj::startSound(JAISound** se, u32 soundID, u32 a3) { - JUT_PANICLINE(395, "Žg—p‹ÖŽ~ĶŠÖ”"); // "Disabled playback functions" + JUT_PANICLINE(395, "使用ç¦æ­¢å†ç”Ÿé–¢æ•°"); // "Disabled playback functions" JAIBasic::msBasic->startSoundVecT(soundID, se, _24, a3, 0, PSSystem::SingletonBase::sInstance->getPlayerNo(this)); } @@ -669,7 +669,7 @@ JAISound* CreatureAnime::startSound(u32 soundID, u32 a2) */ void CreatureAnime::startSound(u8 id, u32 soundID, u32 a3) { - JUT_PANICLINE(466, "Žg—p‹ÖŽ~ĶŠÖ”"); // "Disabled playback functions" + JUT_PANICLINE(466, "使用ç¦æ­¢å†ç”Ÿé–¢æ•°"); // "Disabled playback functions" JAIBasic::msBasic->startSoundVecT(soundID, &mSounds[id], _24, a3, 0, PSSystem::SingletonBase::sInstance->getPlayerNo(this)); @@ -681,7 +681,7 @@ void CreatureAnime::startSound(u8 id, u32 soundID, u32 a3) */ void CreatureAnime::startSound(JAISound** se, u32 soundID, u32 a3) { - JUT_PANICLINE(482, "Žg—p‹ÖŽ~ĶŠÖ”"); // "Disabled playback functions" + JUT_PANICLINE(482, "使用ç¦æ­¢å†ç”Ÿé–¢æ•°"); // "Disabled playback functions" JAIBasic::msBasic->startSoundVecT(soundID, se, _24, a3, 0, PSSystem::SingletonBase::sInstance->getPlayerNo(this)); } @@ -707,7 +707,7 @@ void CreatureAnime::setAnime(JAIAnimeSoundData* data, u32 a1, f32 a2, f32 a3) */ void CreatureAnime::playActorAnimSound(JAInter::Actor* actor, f32 pitchmod, u8 a2) { - JUT_ASSERTLINE(549, mSoundData->mEntryNum < mAnimID, "JAIAnimeSound::playActorAnimSound dataCounter‚ªˆÙí‚Å‚·B\n"); + JUT_ASSERTLINE(549, mSoundData->mEntryNum < mAnimID, "JAIAnimeSound::playActorAnimSound dataCounterãŒç•°å¸¸ã§ã™ã€‚\n"); JAIAnimeSoundData* data = &mSoundData[mAnimID]; u8 max = mHandleCount; for (u8 i = 0; i < max; i++) { diff --git a/tools/asmdiff.sh b/tools/asmdiff.sh deleted file mode 100644 index 1f303f801..000000000 --- a/tools/asmdiff.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash -e - -VERSION="${VERSION:=usa}" -POWERPC="${POWERPC:=tools/powerpc}" -OBJDUMP="$POWERPC/powerpc-eabi-objdump -Dz -bbinary -EB -mpowerpc -M gekko" -if [ ! -z "$1" ]; then - OPTIONS="--start-address=$(($1)) --stop-address=$(($2))" -fi -$OBJDUMP $OPTIONS baserom.dol > baserom.dump -$OBJDUMP $OPTIONS build/pikmin2.$VERSION/main.dol > main.dump -diff -u --color=always baserom.dump main.dump diff --git a/tools/decompctx.py b/tools/decompctx.py index 0cb3c21e1..e86d5ef34 100644 --- a/tools/decompctx.py +++ b/tools/decompctx.py @@ -1,79 +1,119 @@ +#!/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 +from typing import List script_dir = os.path.dirname(os.path.realpath(__file__)) root_dir = os.path.abspath(os.path.join(script_dir, "..")) src_dir = os.path.join(root_dir, "src") -include_dir = os.path.join(root_dir, "include") -stl_dir = os.path.join(include_dir, "stl") +include_dirs = [ + os.path.join(root_dir, "include"), + # Add additional include directories here +] include_pattern = re.compile(r'^#include\s*[<"](.+?)[>"]$') guard_pattern = re.compile(r"^#ifndef\s+(.*)$") -defines: set[str] = set() -quiet = False +defines = set() -def import_h_file(in_file, r_path) -> str: +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) - inc_path = os.path.join(include_dir, in_file) - stl_path = os.path.join(stl_dir, in_file) if os.path.exists(rel_path): - return import_c_file(rel_path) - elif os.path.exists(inc_path): - return import_c_file(inc_path) - elif os.path.exists(stl_path): - return import_c_file(stl_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: - if not quiet: - print("Failed to locate", in_file) - exit(1) + print("Failed to locate", in_file) + return "" -def import_c_file(in_file) -> str: +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 = "" - with open(in_file, encoding="shift-jis") as file: - for idx, line in enumerate(file): - 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]) - if not quiet: - print("Processing file", in_file) - include_match = include_pattern.match(line.strip()) - if include_match: - out_text += f'/* "{in_file}" line {idx} "{include_match[1]}" */\n' - out_text += import_h_file(include_match[1], os.path.dirname(in_file)) - out_text += f'/* end "{include_match[1]}" */\n' - else: - out_text += line + 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 + + +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 return out_text +def sanitize_path(path: str) -> str: + return path.replace("\\", "/").replace(" ", "\\ ") + + def main(): - 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 = 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( - "--relative", "-r", dest="relative", help="Extract context relative to the source file", action="store_true" + "-d", + "--depfile", + help="""Dependency file""", ) - parser.add_argument("--quiet", "-q", dest="quiet", help="Don't output anything", action="store_true") args = parser.parse_args() - global quiet - quiet = args.quiet + deps = [] + output = import_c_file(args.c_file, deps) - c_file = args.c_file - content = import_c_file(c_file) - filename = f"{c_file}.ctx" if args.relative else os.path.join(root_dir, "ctx.c") + with open(os.path.join(root_dir, args.output), "w", encoding="utf-8") as f: + f.write(output) - with open(filename, "w", encoding="utf-8", newline="\n") as f: - f.write(content) + 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}") if __name__ == "__main__": diff --git a/tools/download_dtk.py b/tools/download_dtk.py deleted file mode 100644 index ae97da20e..000000000 --- a/tools/download_dtk.py +++ /dev/null @@ -1,50 +0,0 @@ -import argparse -import urllib.request -import sys -import os -import stat -import platform -from pathlib import Path - -if sys.platform == "cygwin": - sys.exit( - f"Cygwin/MSYS2 is not supported." - f"\nPlease use native Windows Python instead." - f"\nPlease run pacman -R python in msys2." - f"\n(Current path: {sys.executable})" - ) - -REPO = "https://github.com/encounter/decomp-toolkit" - - -def main(): - parser = argparse.ArgumentParser() - parser.add_argument("tag_file", help="file containing GitHub tag") - parser.add_argument("output", type=Path, help="output file path") - args = parser.parse_args() - - with open(args.tag_file, "r") as f: - tag = f.readline().rstrip() - - 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" - - url = f"{REPO}/releases/download/{tag}/dtk-{system}-{arch}{suffix}" - output = args.output - # print(f"Downloading {url} to {output}") - urllib.request.urlretrieve(url, output) - - st = os.stat(output) - os.chmod(output, st.st_mode | stat.S_IEXEC) - - -if __name__ == "__main__": - main() diff --git a/tools/download_mwcc.py b/tools/download_mwcc.py deleted file mode 100644 index 259f01868..000000000 --- a/tools/download_mwcc.py +++ /dev/null @@ -1,45 +0,0 @@ -import urllib.request -import sys -import os -import stat -import tempfile -import shutil -import zipfile - -if sys.platform == "cygwin": - sys.exit( - f"Cygwin/MSYS2 is not supported." - f"\nPlease use native Windows Python instead." - f"\nPlease run pacman -R python in msys2." - f"\n(Current path: {sys.executable})" - ) - -HARDLINK = "https://files.decomp.dev/compilers_20230715.zip" - - -def main() -> None: - output = f"{os.path.dirname(__file__)}/mwcc_compiler" - - with tempfile.TemporaryDirectory() as tmp_dir: - tmp_zip = f"{tmp_dir}/mwcc_compiler.zip" - tmp_gc = f"{tmp_dir}/GC" - - request = urllib.request.Request( - url=HARDLINK, - headers={"User-Agent": "Mozilla/5.0"}, - ) - - with urllib.request.urlopen(request) as src, open(tmp_zip, "wb") as dst: - shutil.copyfileobj(src, dst) - - with zipfile.ZipFile(tmp_zip) as zip_file: - zip_file.extractall(tmp_dir) - - shutil.move(tmp_gc, output) - - st = os.stat(output) - os.chmod(output, st.st_mode | stat.S_IEXEC) - - -if __name__ == "__main__": - main() diff --git a/tools/download_ppc.py b/tools/download_ppc.py deleted file mode 100644 index 50009c651..000000000 --- a/tools/download_ppc.py +++ /dev/null @@ -1,60 +0,0 @@ -import urllib.request -import sys -import os -import stat -import platform -import tempfile -import zipfile - -if sys.platform == "cygwin": - sys.exit( - f"Cygwin/MSYS2 is not supported." - f"\nPlease use native Windows Python instead." - f"\nPlease run pacman -R python in msys2." - f"\n(Current path: {sys.executable})" - ) - -REPO = "https://github.com/encounter/gc-wii-binutils" - - -def main() -> None: - output = f"{os.path.dirname(__file__)}/powerpc" - - uname = platform.uname() - system = uname.system.lower() - arch = uname.machine.lower() - if system == "darwin": - system = "macos" - arch = "universal" - if arch == "amd64": - arch = "x86_64" - if arch == "x86_32": - arch = "i686" - - with tempfile.TemporaryDirectory() as tmp_dir: - tmp_zip = f"{tmp_dir}/powerpc.zip" - url = f"{REPO}/releases/latest/download/{system}-{arch}.zip" - - urllib.request.urlretrieve(url, tmp_zip) - with zipfile.ZipFile(tmp_zip) as zip_file: - zip_file.extractall(output) - - #st = os.stat(output) - #os.chmod(output, st.st_mode | stat.S_IEXEC) - #FIXME: the above doesn't work for whatever reason - for filename in os.listdir(output): - f = os.path.join(output, filename) - #The Linux versions of encounter's dkp binutils are missing the prefix, - #so this is needed until the issue is fixed - if not filename.startswith("powerpc-eabi-"): - new_filename = "powerpc-eabi-" + filename - new_file = os.path.join(output, new_filename) - os.rename(f, new_file) - f = new_file - - st = os.stat(f) - os.chmod(f, st.st_mode | stat.S_IEXEC) - - -if __name__ == "__main__": - main() diff --git a/tools/download_tool.py b/tools/download_tool.py new file mode 100644 index 000000000..69ef96a70 --- /dev/null +++ b/tools/download_tool.py @@ -0,0 +1,124 @@ +#!/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/dtk_version b/tools/dtk_version deleted file mode 100644 index 576b77719..000000000 --- a/tools/dtk_version +++ /dev/null @@ -1 +0,0 @@ -v0.2.3 diff --git a/tools/ninja_syntax.py b/tools/ninja_syntax.py index ca73b5ba9..7306ee1da 100644 --- a/tools/ninja_syntax.py +++ b/tools/ninja_syntax.py @@ -1,5 +1,3 @@ -#!/usr/bin/python - # Copyright 2011 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -23,82 +21,129 @@ import re import textwrap +import os +from io import StringIO +from pathlib import Path +from typing import Dict, List, Match, Optional, Tuple, Union + +NinjaPath = Union[str, Path] +NinjaPaths = Union[ + List[str], + List[Path], + List[NinjaPath], + List[Optional[str]], + List[Optional[Path]], + List[Optional[NinjaPath]], +] +NinjaPathOrPaths = Union[NinjaPath, NinjaPaths] + + +def escape_path(word: str) -> str: + return word.replace("$ ", "$$ ").replace(" ", "$ ").replace(":", "$:") -def escape_path(word): - return word.replace('$ ', '$$ ').replace(' ', '$ ').replace(':', '$:') class Writer(object): - def __init__(self, output, width=78): + def __init__(self, output: StringIO, width: int = 78) -> None: self.output = output self.width = width - def newline(self): - self.output.write('\n') - - def comment(self, text): - 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, value, indent=0): - if value is None: - return - if isinstance(value, list): - value = ' '.join(filter(None, value)) # Filter out empty strings. - self._line('%s = %s' % (key, value), indent) - - def pool(self, name, depth): - self._line('pool %s' % name) - self.variable('depth', depth, indent=1) - - def rule(self, name, command, description=None, depfile=None, - generator=False, pool=None, restat=False, rspfile=None, - rspfile_content=None, deps=None): - self._line('rule %s' % name) - self.variable('command', command, indent=1) + 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) + self.variable("description", description, indent=1) if depfile: - self.variable('depfile', depfile, indent=1) + self.variable("depfile", depfile, indent=1) if generator: - self.variable('generator', '1', indent=1) + self.variable("generator", "1", indent=1) if pool: - self.variable('pool', pool, indent=1) + self.variable("pool", pool, indent=1) if restat: - self.variable('restat', '1', indent=1) + self.variable("restat", "1", indent=1) if rspfile: - self.variable('rspfile', rspfile, indent=1) + self.variable("rspfile", rspfile, indent=1) if rspfile_content: - self.variable('rspfile_content', rspfile_content, indent=1) + self.variable("rspfile_content", rspfile_content, indent=1) if deps: - self.variable('deps', deps, indent=1) - - def build(self, outputs, rule, inputs=None, implicit=None, order_only=None, - variables=None, implicit_outputs=None, pool=None, dyndep=None): - outputs = as_list(outputs) + 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]: + outputs = serialize_paths(outputs) out_outputs = [escape_path(x) for x in outputs] - all_inputs = [escape_path(x) for x in as_list(inputs)] + all_inputs = [escape_path(x) for x in serialize_paths(inputs)] if implicit: - implicit = [escape_path(x) for x in as_list(implicit)] - all_inputs.append('|') - all_inputs.extend(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 as_list(order_only)] - all_inputs.append('||') - all_inputs.extend(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 as_list(implicit_outputs)] - out_outputs.append('|') - out_outputs.extend(implicit_outputs) - - self._line('build %s: %s' % (' '.join(out_outputs), - ' '.join([rule] + all_inputs))) + 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) + self._line(" pool = %s" % pool) if dyndep is not None: - self._line(' dyndep = %s' % dyndep) + self._line(" dyndep = %s" % serialize_path(dyndep)) if variables: if isinstance(variables, dict): @@ -111,89 +156,99 @@ def build(self, outputs, rule, inputs=None, implicit=None, order_only=None, return outputs - def include(self, path): - self._line('include %s' % path) + def include(self, path: str) -> None: + self._line("include %s" % path) - def subninja(self, path): - self._line('subninja %s' % path) + def subninja(self, path: str) -> None: + self._line("subninja %s" % path) - def default(self, paths): - self._line('default %s' % ' '.join(as_list(paths))) + def default(self, paths: NinjaPathOrPaths) -> None: + self._line("default %s" % " ".join(serialize_paths(paths))) - def _count_dollars_before_index(self, s, i): + 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] == '$': + while dollar_index > 0 and s[dollar_index] == "$": dollar_count += 1 dollar_index -= 1 return dollar_count - def _line(self, text, indent=0): + def _line(self, text: str, indent: int = 0) -> None: """Write 'text' word-wrapped at self.width characters.""" - leading_space = ' ' * indent + 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(' $') + 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): + 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): + 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:] + self.output.write(leading_space + text[0:space] + " $\n") + text = text[space + 1 :] # Subsequent lines are continuations, so indent them. - leading_space = ' ' * (indent+2) + leading_space = " " * (indent + 2) - self.output.write(leading_space + text + '\n') + self.output.write(leading_space + text + "\n") - def close(self): + def close(self) -> None: self.output.close() -def as_list(input): - if input is None: - return [] +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, list): - return input - return [input] + return [serialize_path(path) for path in input if path] + return [serialize_path(input)] if input else [] -def escape(string): +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' + assert "\n" not in string, "Ninja syntax does not allow newlines" # We only have one special metacharacter: '$'. - return string.replace('$', '$$') + return string.replace("$", "$$") -def expand(string, vars, local_vars={}): +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): + + 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) + if var == "$": + return "$" + return local_vars.get(var, vars.get(var, "")) + + return re.sub(r"\$(\$|\w*)", exp, string) diff --git a/tools/project.py b/tools/project.py new file mode 100644 index 000000000..9c1aeaa39 --- /dev/null +++ b/tools/project.py @@ -0,0 +1,1429 @@ +### +# 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 Any, Dict, List, Optional, Set, Tuple, Union + +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})" + ) + + +class Object: + def __init__(self, completed: bool, name: str, **options: Any) -> None: + self.name = name + self.base_name = Path(name).with_suffix("") + self.completed = completed + self.options: Dict[str, Any] = { + "add_to_all": True, + "asflags": None, + "extra_asflags": None, + "cflags": None, + "extra_cflags": None, + "mw_version": None, + "shift_jis": None, + "source": name, + } + self.options.update(options) + + +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.debug: bool = False # Build with debug info + 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[Dict[str, Any]]] = 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"] + ) + + # Progress output and progress.json config + self.progress_all: bool = True # Include combined "all" category + self.progress_modules: bool = True # Include combined "modules" category + self.progress_each_module: bool = ( + True # Include individual modules, disable for large numbers of modules + ) + + # 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") + + def find_object(self, name: str) -> Optional[Tuple[Dict[str, Any], Object]]: + for lib in self.libs or {}: + for obj in lib["objects"]: + if obj.name == name: + return lib, obj + return None + + def out_path(self) -> Path: + return self.build_dir / str(self.version) + + +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 make_flags_str(cflags: Union[str, List[str]]) -> str: + if isinstance(cflags, list): + return " ".join(cflags) + else: + return cflags + + +# 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 not config_version: + # Invalid config.json + 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): + # Outdated config.json + f.close() + os.remove(build_config_path) + return None + + f.close() + return build_config + + +# Generate build.ninja and objdiff.json +def generate_build(config: ProjectConfig) -> None: + build_config = load_build_config(config, config.out_path() / "config.json") + generate_build_ninja(config, build_config) + generate_objdiff_config(config, build_config) + + +# Generate build.ninja +def generate_build_ninja( + config: ProjectConfig, build_config: Optional[Dict[str, Any]] +) -> None: + config.validate() + + 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") + ldflags = " ".join(config.ldflags or []) + if config.generate_map: + ldflags += " -mapunused" + if config.debug: + ldflags += " -g" + n.variable("ldflags", ldflags) + if not config.linker_version: + 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") + + # Only add an implicit dependency on wibo if we download it + wrapper = config.wrapper + wrapper_implicit: Optional[Path] = None + if ( + config.wibo_tag is not None + and sys.platform == "linux" + and platform.machine() in ("i386", "x86_64") + and config.wrapper is None + ): + wrapper = build_tools_path / "wibo" + wrapper_implicit = wrapper + n.build( + outputs=wrapper, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "wibo", + "tag": config.wibo_tag, + }, + ) + if not is_windows() and wrapper is None: + wrapper = Path("wine") + wrapper_cmd = f"{wrapper} " if wrapper else "" + + compilers_implicit: Optional[Path] = None + if config.compilers_path: + compilers = config.compilers_path + elif config.compilers_tag: + compilers = config.build_dir / "compilers" + compilers_implicit = compilers + n.build( + outputs=compilers, + rule="download_tool", + implicit=download_tool, + variables={ + "tool": "compilers", + "tag": config.compilers_tag, + }, + ) + else: + sys.exit("ProjectConfig.compilers_tag missing") + + 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=rule.get("name"), + command=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) -> List[str]: + implicit = [] + 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 = custom_step.get("outputs") + + if isinstance(outputs, list): + implicit.extend(outputs) + else: + implicit.append(outputs) + + n.build( + outputs=outputs, + rule=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() + return implicit + + 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) + precompile_implicit = write_custom_step("pre-compile") + + ### + # Source files + ### + n.comment("Source files") + build_asm_path = build_path / "mod" + build_src_path = build_path / "src" + build_host_path = build_path / "host" + build_config_path = build_path / "config.json" + + 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" + dol_path = build_path / f"{self.name}.dol" + 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=[ + *precompile_implicit, + self.ldscript, + *mwld_implicit, + *postcompile_implicit, + ], + implicit_outputs=elf_map, + variables={"ldflags": elf_ldflags}, + ) + 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}, + ) + 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}, + ) + 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, options: Dict[str, Any], lib_name: str, src_path: Path + ) -> Optional[Path]: + cflags_str = make_flags_str(options["cflags"]) + if options["extra_cflags"] is not None: + extra_cflags_str = make_flags_str(options["extra_cflags"]) + cflags_str += " " + extra_cflags_str + used_compiler_versions.add(options["mw_version"]) + + src_obj_path = build_src_path / f"{obj.base_name}.o" + src_base_path = build_src_path / obj.base_name + + # Avoid creating duplicate build rules + if src_obj_path in source_added: + return src_obj_path + source_added.add(src_obj_path) + + shift_jis = options["shift_jis"] + if shift_jis is None: + shift_jis = config.shift_jis + + # Add MWCC build rule + n.comment(f"{obj.name}: {lib_name} (linked {obj.completed})") + n.build( + outputs=src_obj_path, + rule="mwcc_sjis" if shift_jis else "mwcc", + inputs=src_path, + variables={ + "mw_version": Path(options["mw_version"]), + "cflags": cflags_str, + "basedir": os.path.dirname(src_base_path), + "basefile": src_base_path, + }, + implicit=mwcc_sjis_implicit if shift_jis else mwcc_implicit, + ) + + # Add ctx build rule + ctx_path = build_src_path / f"{obj.base_name}.ctx" + n.build( + outputs=ctx_path, + rule="decompctx", + inputs=src_path, + implicit=decompctx, + ) + + # Add host build rule + if options.get("host", False): + host_obj_path = build_host_path / f"{obj.base_name}.o" + host_base_path = build_host_path / obj.base_name + n.build( + outputs=host_obj_path, + rule="host_cc" if src_path.suffix == ".c" else "host_cpp", + inputs=src_path, + variables={ + "basedir": os.path.dirname(host_base_path), + "basefile": host_base_path, + }, + ) + if options["add_to_all"]: + host_source_inputs.append(host_obj_path) + n.newline() + + if options["add_to_all"]: + source_inputs.append(src_obj_path) + + return src_obj_path + + def asm_build( + obj: Object, + options: Dict[str, Any], + lib_name: str, + src_path: Path, + build_path: Path, + ) -> Optional[Path]: + asflags = options["asflags"] or config.asflags + if asflags is None: + sys.exit("ProjectConfig.asflags missing") + asflags_str = make_flags_str(asflags) + if options["extra_asflags"] is not None: + extra_asflags_str = make_flags_str(options["extra_asflags"]) + asflags_str += " " + extra_asflags_str + + asm_obj_path = build_path / f"{obj.base_name}.o" + + # Avoid creating duplicate build rules + if asm_obj_path in source_added: + return asm_obj_path + source_added.add(asm_obj_path) + + # Add assembler build rule + n.comment(f"{obj.name}: {lib_name} (linked {obj.completed})") + n.build( + outputs=asm_obj_path, + rule="as", + inputs=src_path, + variables={"asflags": asflags_str}, + implicit=gnu_as_implicit, + ) + n.newline() + + if options["add_to_all"]: + source_inputs.append(asm_obj_path) + + return asm_obj_path + + def add_unit(build_obj, link_step: LinkStep): + obj_path, obj_name = build_obj["object"], build_obj["name"] + result = config.find_object(obj_name) + if not result: + if config.warn_missing_config and not build_obj["autogenerated"]: + print(f"Missing configuration for {obj_name}") + link_step.add(obj_path) + return + + lib, obj = result + lib_name = lib["lib"] + + # Use object options, then library options + options = lib.copy() + for key, value in obj.options.items(): + if value is not None or key not in options: + options[key] = value + + unit_src_path = Path(lib.get("src_dir", config.src_dir)) / options["source"] + + unit_asm_path: Optional[Path] = None + if config.asm_dir is not None: + unit_asm_path = ( + Path(lib.get("asm_dir", config.asm_dir)) / options["source"] + ).with_suffix(".s") + + link_built_obj = obj.completed + built_obj_path: Optional[Path] = None + if unit_src_path.exists(): + if unit_src_path.suffix in (".c", ".cp", ".cpp", ".C"): + # Add MWCC & host build rules + built_obj_path = c_build(obj, options, lib_name, unit_src_path) + elif unit_src_path.suffix == ".s": + # Add assembler build rule + built_obj_path = asm_build( + obj, options, lib_name, unit_src_path, build_src_path + ) + else: + sys.exit(f"Unknown source file type {unit_src_path}") + else: + if config.warn_missing_source or obj.completed: + print(f"Missing source file {unit_src_path}") + link_built_obj = False + + # Assembly overrides + if unit_asm_path is not None and unit_asm_path.exists(): + link_built_obj = True + built_obj_path = asm_build( + obj, options, lib_name, unit_asm_path, build_asm_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: + sys.exit(f"Missing object for {obj_name}: {unit_src_path} {lib} {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 not config.rel_empty_file: + 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 + postcompile_implicit = 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 + postlink_implicit = write_custom_step("post-link") + + ### + # Generate DOL + ### + n.build( + outputs=link_steps[0].output(), + rule="elf2dol", + inputs=link_steps[0].partial_output(), + implicit=[*postlink_implicit, dtk], + ) + + ### + # 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 = [] + 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, + }, + ) + n.newline() + + # Add all build steps needed post-build (re-building archives and such) + postbuild_implicit = 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, *postbuild_implicit], + ) + 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, config.config_path], + ) + + ### + # 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"], + ) + + ### + # 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 + ### + 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) + else: + n.default(progress_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, build_config: Optional[Dict[str, Any]] +) -> None: + if not build_config: + return + + objdiff_config: Dict[str, Any] = { + "min_version": "1.0.0", + "custom_make": "ninja", + "build_target": False, + "watch_patterns": [ + "*.c", + "*.cp", + "*.cpp", + "*.h", + "*.hpp", + "*.inc", + "*.py", + "*.yml", + "*.txt", + "*.json", + ], + "units": [], + } + + # decomp.me compiler name mapping + # Commented out versions have not been added to decomp.me yet + 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.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", + } + + build_path = config.out_path() + + def add_unit(build_obj: Dict[str, Any], module_name: str) -> None: + if build_obj["autogenerated"]: + # Skip autogenerated objects + return + + obj_path, obj_name = build_obj["object"], build_obj["name"] + base_object = Path(obj_name).with_suffix("") + unit_config: Dict[str, Any] = { + "name": Path(module_name) / base_object, + "target_path": obj_path, + } + + result = config.find_object(obj_name) + if not result: + objdiff_config["units"].append(unit_config) + return + + lib, obj = result + src_dir = Path(lib.get("src_dir", config.src_dir)) + + # Use object options, then library options + options = lib.copy() + for key, value in obj.options.items(): + if value is not None or key not in options: + options[key] = value + + unit_src_path = src_dir / str(options["source"]) + + if not unit_src_path.exists(): + objdiff_config["units"].append(unit_config) + return + + cflags = options["cflags"] + src_obj_path = build_path / "src" / f"{obj.base_name}.o" + src_ctx_path = build_path / "src" / f"{obj.base_name}.ctx" + + reverse_fn_order = False + if type(cflags) is list: + 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)) + + # Add appropriate lang flag + if unit_src_path.suffix in (".cp", ".cpp"): + cflags.insert(0, "-lang=c++") + else: + cflags.insert(0, "-lang=c") + + unit_config["base_path"] = src_obj_path + unit_config["reverse_fn_order"] = reverse_fn_order + unit_config["complete"] = obj.completed + compiler_version = COMPILER_MAP.get(options["mw_version"]) + if compiler_version is None: + print(f"Missing scratch compiler mapping for {options['mw_version']}") + else: + cflags_str = make_flags_str(cflags) + if options["extra_cflags"] is not None: + extra_cflags_str = make_flags_str(options["extra_cflags"]) + cflags_str += " " + extra_cflags_str + unit_config["scratch"] = { + "platform": "gc_wii", + "compiler": compiler_version, + "c_flags": cflags_str, + "ctx_path": src_ctx_path, + "build_ctx": True, + } + objdiff_config["units"].append(unit_config) + + # Add DOL units + for unit in build_config["units"]: + add_unit(unit, build_config["name"]) + + # Add REL units + for module in build_config["modules"]: + for unit in module["units"]: + add_unit(unit, module["name"]) + + # 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(objdiff_config, w, indent=4, default=unix_path) + + +# Calculate, print and write progress to progress.json +def calculate_progress(config: ProjectConfig) -> None: + out_path = config.out_path() + build_config = load_build_config(config, out_path / "config.json") + if not build_config: + return + + class ProgressUnit: + def __init__(self, name: str) -> None: + self.name: str = name + self.code_total: int = 0 + self.code_fancy_frac: int = config.progress_code_fancy_frac + self.code_fancy_item: str = config.progress_code_fancy_item + self.code_progress: int = 0 + self.data_total: int = 0 + self.data_fancy_frac: int = config.progress_data_fancy_frac + self.data_fancy_item: str = config.progress_data_fancy_item + self.data_progress: int = 0 + self.objects_progress: int = 0 + self.objects_total: int = 0 + self.objects: Set[Object] = set() + + def add(self, build_obj: Dict[str, Any]) -> None: + self.code_total += build_obj["code_size"] + self.data_total += build_obj["data_size"] + + # Avoid counting the same object in different modules twice + include_object = build_obj["name"] not in self.objects + if include_object: + self.objects.add(build_obj["name"]) + self.objects_total += 1 + + if build_obj["autogenerated"]: + # Skip autogenerated objects + return + + result = config.find_object(build_obj["name"]) + if not result: + return + + _, obj = result + if not obj.completed: + return + + self.code_progress += build_obj["code_size"] + self.data_progress += build_obj["data_size"] + if include_object: + self.objects_progress += 1 + + def code_frac(self) -> float: + return self.code_progress / self.code_total + + def data_frac(self) -> float: + return self.data_progress / self.data_total + + # Add DOL units + all_progress = ProgressUnit("All") if config.progress_all else None + dol_progress = ProgressUnit("DOL") + for unit in build_config["units"]: + if all_progress: + all_progress.add(unit) + dol_progress.add(unit) + + # Add REL units + rels_progress = ProgressUnit("Modules") if config.progress_modules else None + modules_progress: List[ProgressUnit] = [] + for module in build_config["modules"]: + progress = ProgressUnit(module["name"]) + modules_progress.append(progress) + for unit in module["units"]: + if all_progress: + all_progress.add(unit) + if rels_progress: + rels_progress.add(unit) + progress.add(unit) + + # Print human-readable progress + print("Progress:") + + def print_category(unit: Optional[ProgressUnit]) -> None: + if unit is None: + return + + code_frac = unit.code_frac() + data_frac = unit.data_frac() + print( + f" {unit.name}: {code_frac:.2%} code, {data_frac:.2%} data ({unit.objects_progress} / {unit.objects_total} files)" + ) + print(f" Code: {unit.code_progress} / {unit.code_total} bytes") + print(f" Data: {unit.data_progress} / {unit.data_total} bytes") + if config.progress_use_fancy: + print( + "\nYou have {} out of {} {} and {} out of {} {}.".format( + math.floor(code_frac * unit.code_fancy_frac), + unit.code_fancy_frac, + unit.code_fancy_item, + math.floor(data_frac * unit.data_fancy_frac), + unit.data_fancy_frac, + unit.data_fancy_item, + ) + ) + + if all_progress: + print_category(all_progress) + print_category(dol_progress) + module_count = len(build_config["modules"]) + if module_count > 0: + print_category(rels_progress) + if config.progress_each_module: + for progress in modules_progress: + print_category(progress) + + # Generate and write progress.json + progress_json: Dict[str, Any] = {} + + def add_category(category: str, unit: ProgressUnit) -> None: + progress_json[category] = { + "code": unit.code_progress, + "code/total": unit.code_total, + "data": unit.data_progress, + "data/total": unit.data_total, + } + + if all_progress: + add_category("all", all_progress) + add_category("dol", dol_progress) + if len(build_config["modules"]) > 0: + if rels_progress: + add_category("modules", rels_progress) + if config.progress_each_module: + for progress in modules_progress: + add_category(progress.name, progress) + with open(out_path / "progress.json", "w", encoding="utf-8") as w: + json.dump(progress_json, w, indent=4) diff --git a/tools/ptr_checker.py b/tools/ptr_checker.py deleted file mode 100644 index c07c64dce..000000000 --- a/tools/ptr_checker.py +++ /dev/null @@ -1,206 +0,0 @@ -#!/usr/bin/env python3 - -# ==================================== -# Ptr checker v0.0.9 (by RevoSucks) -# ==================================== -# WARNING, seriously, get a puke bucket. This is just a file i am writing for my own sole use. -# If you want to use it, I have some advice for you: D.O.N.T. -# It stands for dooooooonnnnnn't use it. Ever. - -# ------------------ -# Imports -# ------------------ -import os, fnmatch, math - -# ------------------ -# Defines -# ------------------ - -# Path to baserom.dol -baserom_path = "baserom.dol" -map_path = "build/pikmin2.usa/pikmin2.map" - -# ------------------ -# Methods -# ------------------ - -# Return a list of searchable '.s' files in a given folder recursively. -def findExt(folder): - matches = [] - for root, dirnames, filenames in os.walk(folder): - for filename in filenames: - if filename.endswith('.s'): - matches.append(os.path.join(root, filename)) - #print(matches) - return matches - -# Name is passed in as the address initially. If we cannot find it, return the string of the address. -def getMatchingTextSymbolFromAddress(name): - # Strip the 0x from the start. - #print("DEBUG: ", str(hex(name))[2:].zfill(8)) - result = str(hex(name))[2:].zfill(8) - matches = [result, '(entry of '] - # First open the .map file. - map = open(map_path, 'r') - Lines = map.readlines() - # Parse over the map until a match is found. - for line in Lines: - # Does the line have the 2 expected strings? - if all(x in line for x in matches): - # We found the line. - #print("Match found! Line: ", line) - # Split the name out and return it. - return line.split(' ')[9] - # We're done, close it. - map.close() - return hex(name) - -# Build a list of the pointers and scan each word. -def dumpVirtualTable(line): - # Init the table. - table = "" - # Open baserom.dol for processing. - f = open(baserom_path, 'rb') - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - #print("ADDR: ", address) - #print("SIZE: ", size) - f.seek(int(address, 16)) - entries = int(size, 16) / 4 - while entries != 0: - entry = int.from_bytes(f.read(4), byteorder='big') - if entry == 0: - str_to_print = "0" - elif (entry & 0xFF000000) == 0x80000000: - str_to_print = str(getMatchingTextSymbolFromAddress(entry)) - else: - str_to_print = str(hex(entry)) - table = table + " .4byte " + str_to_print + "\n" - entries = entries - 1 - return table - -def isBaseromEntrySus(line): - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if (entry & 0xFF000000) == 0x80000000 and entry != 0x80000000: - print("Suspicious Ptr: ", str(hex(entry))) - return True - entries -= 1 - return False - -# Same as isBaseromEntrySus but check for rodata str. Man this file is a mess. -def isBaseromEntrySus_ShouldDump(line): - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if (entry & 0xFF000000) == 0x80000000 and entry != 0x80000000: - text_sym = getMatchingTextSymbolFromAddress(entry) - if text_sym != str(hex(entry)): - if text_sym[:2] == "$$": - return True - entries -= 1 - return False - -def isBaseromEntryPurePtrTable(line): - table = "" - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - # If any values are neither 0 nor a - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if entry == 0: - str_to_print = "0" - elif (entry & 0xFF000000) == 0x80000000: - str_to_print = getMatchingTextSymbolFromAddress(entry) - print("DEBUG: ", str_to_print) - elif entry == 0xFFFFFFFF: - str_to_print = "-1" - else: - return line # Not a pure pure table. Keep the entry. - if str_to_print[:2] == "0x": - return line # Not a pure pure table. Keep the entry. - table = table + " .4byte " + str_to_print + "\n" - entries = entries - 1 - return table - -def dumpActorTable(line): - table = "" - with open(baserom_path, 'rb') as f: # context management to close file for us - address = line.split(' ')[2][:-1] - size = line.split(' ')[3] - lower_four = 4 * math.floor(int(size, 16)/4) # Floor the size to the lower multiple of 4 if needed. - entries = int(size, 16) / 4 - f.seek(int(address, 16)) - # If any values are neither 0 nor a - while entries > 0: - entry = int.from_bytes(f.read(4), byteorder='big', signed=False) - if entry == 0: - str_to_print = "0" - elif (entry & 0xFF000000) == 0x80000000: - str_to_print = getMatchingTextSymbolFromAddress(entry) - print("DEBUG: ", str_to_print) - elif entry == 0xFFFFFFFF: - str_to_print = "-1" - else: - str_to_print = str(entry) - table = table + " .4byte " + str_to_print + "\n" - entries = entries - 1 - return table - -# ----------------------------------- -# Config -# ----------------------------------- -print_baserom_calls = True -# ----------------------------------- - -# ------------------ -# Main code -# ------------------ - -asm_files = findExt("asm") -#asm_files = ['/c/sms/asm/NPC/NpcInitData.s'] - -print("Checking all files for possible ptrs...") - -# Using readlines() -for i in asm_files: - file1 = open(i, 'r') - Lines = file1.readlines() - file1.close() - file1 = open(i, 'w') - count = 0 - line_array = [] #array of current line and last two lines - line_array.append("") - line_array.append("") - line_array.append("") - file_sus = False - for line in Lines: - line_array[0] = line_array[1] - line_array[1] = line_array[2] - line_array[2] = line - # Do something with the line here. Does the line belong to a baserom.dol call for a __vt__? - if "__vt__" in line_array[1] and "baserom.dol" in line: - file1.write(dumpVirtualTable(line)) - else: - file1.write(line) - if file_sus == True: - print("Sus: ", i, "Count: ", count, "\n") - file1.close() - -print("Done") -#print(os.getcwd()) diff --git a/tools/resolveLinkerErrors.py b/tools/resolveLinkerErrors.py deleted file mode 100644 index 89d3b2920..000000000 --- a/tools/resolveLinkerErrors.py +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env python3 - -# very experimental python script that goes through a linker error file and resolves any undefined labels while splitting - -with open("errors.txt", "r") as f: - lines = f.readlines() - -lbls = [] - -undefcount = 0 - -for line in lines: - if "undefined" in line: - undefcount = undefcount + 1 - splitLine = line.split(" ") - - for spl in splitLine: - if spl.startswith("\'lbl_"): - localstr = spl.strip("\n") - localstr = localstr.strip("\'lbl_") - lbls.append(localstr) - -with open("asm/utilityU/menu.s", "r") as asm: - asms = asm.readlines() - -prevLine = "" -output = [] - -for l in asms: - l = l.strip("\n") - - for lbl in lbls: - if l.startswith("/* " + lbl): - output.append("lbl_" + lbl + ":\n") - - #if prevLine.startswith("func_"): - # prevLine = l - # output.append(l + "\n") - # continue - #else: - # for lbl in lbls: - # lstr = l.strip(":") - # if lstr == lbl: - # output.append(f".global {lbl}\n") - # prevLine = l - # break - - output.append(l + "\n") - prevLine = l - -with open("output.asm", "w") as w: - for o in output: - w.write(o) diff --git a/tools/transform-dep.py b/tools/transform-dep.py deleted file mode 100755 index 5807ab1f2..000000000 --- a/tools/transform-dep.py +++ /dev/null @@ -1,77 +0,0 @@ -#!/usr/bin/env python3 -# borrowed from prime-decomp -import argparse -import os -from platform import uname -from typing import List - -if os.name != 'nt': - wineprefix = os.environ.get('WINEPREFIX', os.path.join(os.environ['HOME'], '.wine')) - winedevices = os.path.join(wineprefix, 'dosdevices') - - -def in_wsl() -> bool: - # wsl1 has Microsoft, wsl2 has microsoft-standard - release = uname().release - return 'microsoft-standard' in release or 'Microsoft' in release - - -def convert_path(path: str) -> str: - # lowercase drive letter - path = path[0].lower() + path[1:] - if os.name == 'nt': - return path.replace('\\', '/') - elif path[0] == 'z': - # shortcut for z: - return path[2:].replace('\\', '/') - elif in_wsl(): - if path.startswith(r'\\wsl'): - # first part could be wsl$ or wsl.localhost - pos = path.find('\\', 2) - pos = path.find('\\', pos + 1) - path = path[pos:] - return path.replace('\\', '/') - else: - path = path[0:1] + path[2:] - return os.path.join('/mnt', path.replace('\\', '/')) - else: - # use $WINEPREFIX/dosdevices to resolve path - return os.path.realpath(os.path.join(winedevices, path.replace('\\', '/'))) - - -def import_d_file(in_file: str) -> str: - out_lines: List[str] = [] - - with open(in_file, 'r') as file: - it = iter(file) - line = next(it) - if line.endswith(' \\\n'): - out_lines.append(line[:-3].replace('\\', '/') + " \\\n") - else: - out_lines.append(line.replace('\\', '/')) - - return ''.join(out_lines) - - -def main(): - 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/transform_dep.py b/tools/transform_dep.py new file mode 100644 index 000000000..124de04b9 --- /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/transform-win.py b/tools/transform_win.py similarity index 100% rename from tools/transform-win.py rename to tools/transform_win.py diff --git a/tools/upload-progress.py b/tools/upload-progress.py deleted file mode 100644 index 7ebd2678d..000000000 --- a/tools/upload-progress.py +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env python3 -import argparse -import json -import os -import subprocess -from pprint import pprint - -import requests - - -def get_git_commit_timestamp() -> int: - return int(subprocess.check_output(['git', 'show', '-s', '--format=%ct']).decode('ascii').rstrip()) - - -def get_git_commit_sha() -> str: - return subprocess.check_output(['git', 'rev-parse', 'HEAD']).decode('ascii').strip() - - -def generate_url(args: argparse.Namespace) -> str: - url_components = [args.base_url.rstrip('/'), 'data'] - - for arg in [args.project, args.version.replace('.', '-')]: - if arg != "": - url_components.append(arg) - - return str.join('/', url_components) + '/' - - -if __name__ == '__main__': - parser = argparse.ArgumentParser(description="Upload progress information.") - parser.add_argument("-b", "--base_url", help="API base URL", required=True) - parser.add_argument("-a", "--api_key", help="API key (env var PROGRESS_API_KEY)") - parser.add_argument("-p", "--project", help="Project slug", required=True) - parser.add_argument("-v", "--version", help="Version slug", required=True) - parser.add_argument("input", help="Progress JSON input") - - args = parser.parse_args() - api_key = args.api_key or os.environ.get("PROGRESS_API_KEY") - if not api_key: - raise "API key required" - url = generate_url(args) - - entries = [] - with open(args.input, "r") as f: - data = json.load(f) - entries.append({ - "timestamp": get_git_commit_timestamp(), - "git_hash": get_git_commit_sha(), - "categories": data, - }) - - print("Publishing entries to", url) - pprint(entries) - data = { - "api_key": api_key, - "entries": entries, - } - r = requests.post(url, json=data) - r.raise_for_status() - print("Done!") diff --git a/tools/upload_progress.py b/tools/upload_progress.py new file mode 100644 index 000000000..dc61d156e --- /dev/null +++ b/tools/upload_progress.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python3 + +### +# Uploads progress information to https://github.com/decompals/frogress. +# +# Usage: +# python3 tools/upload_progress.py -b https://progress.decomp.club/ -p [project] -v [version] build/[version]/progress.json +# +# If changes are made, please submit a PR to +# https://github.com/encounter/dtk-template +### + +import argparse +import json +import os +import requests +import subprocess +import sys + + +def get_git_commit_timestamp() -> int: + return int( + subprocess.check_output(["git", "show", "-s", "--format=%ct"]) + .decode("ascii") + .rstrip() + ) + + +def get_git_commit_sha() -> str: + return subprocess.check_output(["git", "rev-parse", "HEAD"]).decode("ascii").strip() + + +def generate_url(args: argparse.Namespace) -> str: + url_components = [args.base_url.rstrip("/"), "data"] + + for arg in [args.project, args.version]: + if arg != "": + url_components.append(arg) + + return str.join("/", url_components) + "/" + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Upload progress information.") + parser.add_argument("-b", "--base_url", help="API base URL", required=True) + parser.add_argument("-a", "--api_key", help="API key (env var PROGRESS_API_KEY)") + parser.add_argument("-p", "--project", help="Project slug", required=True) + parser.add_argument("-v", "--version", help="Version slug", required=True) + parser.add_argument("input", help="Progress JSON input") + + args = parser.parse_args() + api_key = args.api_key or os.environ.get("PROGRESS_API_KEY") + if not api_key: + raise KeyError("API key required") + url = generate_url(args) + + entries = [] + with open(args.input, "r") as f: + data = json.load(f) + entries.append( + { + "timestamp": get_git_commit_timestamp(), + "git_hash": get_git_commit_sha(), + "categories": data, + } + ) + + 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.raise_for_status() + print("Done!")